From 740f30d45b0df75d631c0f90ac49667cd80ad0bd Mon Sep 17 00:00:00 2001 From: carhaas Date: Thu, 16 Jul 2015 14:14:35 +0200 Subject: [PATCH 1/3] added extract_daemon --- cmake/Findnanomsg.cmake | 69 ++++++++ extractor/CMakeLists.txt | 28 ++- extractor/README.md | 25 +++ extractor/extract_daemon.cc | 320 +++++++++++++++++++++++++++++++++++ extractor/extract_request.cc | 35 ++++ extractor/extract_request.h | 27 +++ 6 files changed, 500 insertions(+), 4 deletions(-) create mode 100644 cmake/Findnanomsg.cmake create mode 100644 extractor/extract_daemon.cc create mode 100644 extractor/extract_request.cc create mode 100644 extractor/extract_request.h diff --git a/cmake/Findnanomsg.cmake b/cmake/Findnanomsg.cmake new file mode 100644 index 000000000..5af48310b --- /dev/null +++ b/cmake/Findnanomsg.cmake @@ -0,0 +1,69 @@ +# Locate nanomsg. +# (This file is based on the original FindGTest.cmake file, +# feel free to use it as it is or modify it for your own needs.) +# +# +# Defines the following variables: +# +# NANOMSG_FOUND - Found the Google Testing framework +# NANOMSG_INCLUDE_DIR - Include directory +# +# Also defines the library variables below as normal +# variables. +# +# NANOMSG_LIBRARIES - libnanomsg.so and libnanomsg.a +# +#----------------------- +# Example Usage: +# +# find_package(nanomsg REQUIRED) +# include_directories(${NANOMSG_INCLUDE_DIR}) +# +# add_executable(foo foo.cc) +# target_link_libraries(foo ${NANOMSG_LIBRARIES}) +# +#============================================================================= +# This file is released under the MIT licence: +# +# Copyright (c) 2011 Matej Svec +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. +#============================================================================= + +find_path(NANOMSG_INCLUDE_DIR NAMES nanomsg/bus.h nanomsg/inproc.h nanomsg/ipc.h nanomsg/nn.h nanomsg/pair.h nanomsg/pipeline.h nanomsg/pubsub.h nanomsg/reqrep.h nanomsg/survey.h nanomsg/tcp.h) +mark_as_advanced(NANOMSG_INCLUDE_DIR) + +find_library(NANOMSG_SHARED libnanomsg.so) +mark_as_advanced(NANOMSG_SHARED) + +find_library(NANOMSG_STATIC libnanomsg.a) +mark_as_advanced(NANOMSG_STATIC) + +if(NANOMSG_INCLUDE_DIR AND NANOMSG_SHARED AND NANOMSG_STATIC) + set(NANOMSG_FOUND TRUE) +else() + set(NANOMSG_FOUND FALSE) +endif() + +include(FindPackageHandleStandardArgs) +FIND_PACKAGE_HANDLE_STANDARD_ARGS(nanomsg DEFAULT_MSG NANOMSG_SHARED NANOMSG_STATIC NANOMSG_INCLUDE_DIR) + +if(NANOMSG_FOUND) + set(NANOMSG_LIBRARIES ${NANOMSG_STATIC} ${NANOMSG_SHARED}) +endif() diff --git a/extractor/CMakeLists.txt b/extractor/CMakeLists.txt index 5c73a279c..fb20d64f4 100644 --- a/extractor/CMakeLists.txt +++ b/extractor/CMakeLists.txt @@ -43,12 +43,12 @@ if(GTEST_FOUND) target_link_libraries(${testName} extractor ${GMOCK_BOTH_LIBRARIES} ${GTEST_BOTH_LIBRARIES} ${Boost_LIBRARIES} ${ZLIB_LIBRARIES}) #I like to move testing binaries into a testBin directory - set_target_properties(${testName} PROPERTIES + set_target_properties(${testName} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) - #Finally add it to test execution - + #Finally add it to test execution - #Notice the WORKING_DIRECTORY and COMMAND - add_test(NAME ${testName} COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/${testName} + add_test(NAME ${testName} COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/${testName} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) endforeach(testSrc) endif(GMOCK_FOUND) @@ -66,10 +66,30 @@ set(extract_SRCS extract.cc) add_executable(extract ${extract_SRCS}) target_link_libraries(extract extractor utils ${Boost_LIBRARIES} ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES} ${LIBLZMA_LIBRARIES}) +# nanomsg, use for the extractor daemon +# set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/extractor/cmake/Modules/") +find_package(nanomsg) +if(NANOMSG_FOUND) + include_directories(${NANOMSG_INCLUDE_DIR}) + + set(extract_request_STAT_SRCS extract_request.cc) + add_library(extract_request STATIC ${extract_request_STAT_SRCS}) + target_link_libraries(extract_request ${NANOMSG_STATIC}) + + #set(extract_request_test_SRCS extract_request_test.cc) + #add_executable(run_extractor_request_test ${extract_request_test_SRCS}) + #target_link_libraries(run_extractor_request_test extractor ${NANOMSG_LIBRARIES}) + + set(extract_daemon_SRCS extract_daemon.cc) + add_executable(extract_daemon ${extract_daemon_SRCS}) + target_link_libraries(extract_daemon extractor utils ${Boost_LIBRARIES} ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES} ${LIBLZMA_LIBRARIES} ${NANOMSG_LIBRARIES}) +endif(NANOMSG_FOUND) + set(extractor_STAT_SRCS alignment.cc backoff_sampler.cc data_array.cc + extract_request.cc fast_intersector.cc features/count_source_target.cc features/feature.cc @@ -111,6 +131,7 @@ set(extractor_STAT_SRCS alignment.h backoff_sampler.h data_array.h + extract_request.h fast_intersector.h grammar.h grammar_extractor.h @@ -136,4 +157,3 @@ set(extractor_STAT_SRCS vocabulary.h) add_library(extractor STATIC ${extractor_STAT_SRCS}) - diff --git a/extractor/README.md b/extractor/README.md index b83ff9003..cea7e1a06 100644 --- a/extractor/README.md +++ b/extractor/README.md @@ -18,3 +18,28 @@ Then, you simply need to: cd cdec/extractor make check + +To run the extractor as a daemon for online grammar extraction you need to compile with [nanomsg](http://nanomsg.org/download.html) in your system's PATH and then: + + cdec/extractor/extract_daemon -c -g -a
+ +It can be killed using the SID supplied in the log file. + +To then query the daemon you need to implement the Requester class supplied in +extractor/libextract_request.a. It's constructor takes the same address string as supplied for the daemon. E.g.: + + #include + + #include "extract_request.h" + + using namespace std; + + int main(int argc, char** argv) { + extractor::Requester requester("ipc:///tmp/extract_daemon.ipc"); + cout << requester.request_for_sentence("") << endl; + return 0; + } + +which can be compiled with: + + g++ extract_request_test.cc -o run_test -lextract_request -L/workspace/osm/cdec/extractor/ -I/workspace/osm/cdec/extractor/ -lnanomsg diff --git a/extractor/extract_daemon.cc b/extractor/extract_daemon.cc new file mode 100644 index 000000000..eebeb52ee --- /dev/null +++ b/extractor/extract_daemon.cc @@ -0,0 +1,320 @@ +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include + +#include +#include + +#include +#include +#include +#include +#if HAVE_OPEN_MP + #include +#else + const unsigned omp_get_num_threads() { return 1; } +#endif + +#include "filelib.h" +#include "alignment.h" +#include "data_array.h" +#include "features/count_source_target.h" +#include "features/feature.h" +#include "features/is_source_singleton.h" +#include "features/is_source_target_singleton.h" +#include "features/max_lex_source_given_target.h" +#include "features/max_lex_target_given_source.h" +#include "features/sample_source_count.h" +#include "features/target_given_source_coherent.h" +#include "grammar.h" +#include "grammar_extractor.h" +#include "precomputation.h" +#include "rule.h" +#include "scorer.h" +#include "suffix_array.h" +#include "time_util.h" +#include "translation_table.h" +#include "vocabulary.h" + +namespace ar = boost::archive; +namespace fs = boost::filesystem; +namespace po = boost::program_options; +using namespace extractor; +using namespace features; +using namespace std; + +// Returns the file path in which a given grammar should be written. +fs::path GetGrammarFilePath(const fs::path& grammar_path, int file_number, bool use_zip) { + string file_name = "grammar." + to_string(file_number) + (use_zip ? ".gz" : ""); + return grammar_path / file_name; +} + +GrammarExtractor read_data(po::variables_map &vm, ofstream &log_file){ + Clock::time_point start_time = Clock::now(); + log_file << "Reading target data in binary format..." << endl; + shared_ptr target_data_array = make_shared(); + ifstream target_fstream(vm["target"].as()); + ar::binary_iarchive target_stream(target_fstream); + target_stream >> *target_data_array; + Clock::time_point end_time = Clock::now(); + log_file << "Reading target data took " << GetDuration(start_time, end_time) + << " seconds" << endl; + + start_time = Clock::now(); + log_file << "Reading source suffix array in binary format..." << endl; + shared_ptr source_suffix_array = make_shared(); + ifstream source_fstream(vm["source"].as()); + ar::binary_iarchive source_stream(source_fstream); + source_stream >> *source_suffix_array; + end_time = Clock::now(); + log_file << "Reading source suffix array took " + << GetDuration(start_time, end_time) << " seconds" << endl; + + start_time = Clock::now(); + log_file << "Reading alignment in binary format..." << endl; + shared_ptr alignment = make_shared(); + ifstream alignment_fstream(vm["alignment"].as()); + ar::binary_iarchive alignment_stream(alignment_fstream); + alignment_stream >> *alignment; + end_time = Clock::now(); + log_file << "Reading alignment took " << GetDuration(start_time, end_time) + << " seconds" << endl; + + start_time = Clock::now(); + log_file << "Reading precomputation in binary format..." << endl; + shared_ptr precomputation = make_shared(); + ifstream precomputation_fstream(vm["precomputation"].as()); + ar::binary_iarchive precomputation_stream(precomputation_fstream); + precomputation_stream >> *precomputation; + end_time = Clock::now(); + log_file << "Reading precomputation took " << GetDuration(start_time, end_time) + << " seconds" << endl; + + start_time = Clock::now(); + log_file << "Reading vocabulary in binary format..." << endl; + shared_ptr vocabulary = make_shared(); + ifstream vocabulary_fstream(vm["vocabulary"].as()); + ar::binary_iarchive vocabulary_stream(vocabulary_fstream); + vocabulary_stream >> *vocabulary; + end_time = Clock::now(); + log_file << "Reading vocabulary took " << GetDuration(start_time, end_time) + << " seconds" << endl; + + start_time = Clock::now(); + log_file << "Reading translation table in binary format..." << endl; + shared_ptr table = make_shared(); + ifstream ttable_fstream(vm["ttable"].as()); + ar::binary_iarchive ttable_stream(ttable_fstream); + ttable_stream >> *table; + end_time = Clock::now(); + log_file << "Reading translation table took " << GetDuration(start_time, end_time) + << " seconds" << endl; + // Features used to score each grammar rule. + vector> features = { + make_shared(), + make_shared(), + make_shared(), + make_shared(table), + make_shared(table), + make_shared(), + make_shared() + }; + shared_ptr scorer = make_shared(features); + + GrammarExtractor extractor( + source_suffix_array, + target_data_array, + alignment, + precomputation, + scorer, + vocabulary, + vm["min_gap_size"].as(), + vm["max_rule_span"].as(), + vm["max_nonterminals"].as(), + vm["max_rule_symbols"].as(), + vm["max_samples"].as(), + vm["tight_phrases"].as()); + + return extractor; +} + +string extract_for_sentence(GrammarExtractor &extractor, po::variables_map &vm, const char* buf, int &i, bool use_zip){ + string sentence(buf); + + // Creates the grammars directory if it doesn't exist. + fs::path grammar_path = vm["grammars"].as(); + if (!fs::is_directory(grammar_path)) { + fs::create_directory(grammar_path); + } + grammar_path = fs::canonical(grammar_path); + + // Extracts the grammar for each sentence and saves it to a file. + bool leave_one_out = vm.count("leave_one_out"); + string suffix; + int position = sentence.find("|||"); + if (position != sentence.npos) { + suffix = sentence.substr(position); + sentence = sentence.substr(0, position); + } + + unordered_set blacklisted_sentence_ids; + if (leave_one_out) { + blacklisted_sentence_ids.insert(i); + } + + Grammar grammar = extractor.GetGrammar( + sentence, blacklisted_sentence_ids); + WriteFile wf(GetGrammarFilePath(grammar_path, i, use_zip).c_str()); + *wf.stream() << grammar; + + stringstream ss; + ss << " " << sentence << " " << suffix << endl; + + return ss.str(); +} + +int main(int argc, char** argv) { + po::options_description general_options("General options"); + int max_threads = 1; + #pragma omp parallel + max_threads = omp_get_num_threads(); + string threads_option = "Number of threads used for grammar extraction " + "max(" + to_string(max_threads) + ")"; + general_options.add_options() + ("threads,t", po::value()->required()->default_value(1), + threads_option.c_str()) + ("grammars,g", po::value()->required(), "Grammars (total) output path") + ("gzip,z", "Gzip grammars") + ("max_rule_span", po::value()->default_value(15), + "Maximum rule span") + ("max_rule_symbols", po::value()->default_value(5), + "Maximum number of symbols (terminals + nontermals) in a rule") + ("min_gap_size", po::value()->default_value(1), "Minimum gap size") + ("max_nonterminals", po::value()->default_value(2), + "Maximum number of nonterminals in a rule") + ("max_samples", po::value()->default_value(300), + "Maximum number of samples") + ("tight_phrases", po::value()->default_value(true), + "False if phrases may be loose (better, but slower)") + ("leave_one_out", po::value()->zero_tokens(), + "do leave-one-out estimation of grammars " + "(e.g. for extracting grammars for the training set") + ("adress,a", po::value()->required(), "Daemon adress") + ("log_file_location,l", po::value()->default_value("extract_daemon.log"), + "user specified location for the log file"); + + po::options_description cmdline_options("Command line options"); + cmdline_options.add_options() + ("help", "Show available options") + ("config,c", po::value()->required(), "Path to config file"); + cmdline_options.add(general_options); + + po::options_description config_options("Config file options"); + config_options.add_options() + ("target", po::value()->required(), + "Path to target data file in binary format") + ("source", po::value()->required(), + "Path to source suffix array file in binary format") + ("alignment", po::value()->required(), + "Path to alignment file in binary format") + ("precomputation", po::value()->required(), + "Path to precomputation file in binary format") + ("vocabulary", po::value()->required(), + "Path to vocabulary file in binary format") + ("ttable", po::value()->required(), + "Path to translation table in binary format"); + config_options.add(general_options); + + po::variables_map vm; + po::store(po::parse_command_line(argc, argv, cmdline_options), vm); + if (vm.count("help")) { + po::options_description all_options; + all_options.add(cmdline_options).add(config_options); + cout << all_options << endl; + return 0; + } + + po::notify(vm); + + ifstream config_stream(vm["config"].as()); + po::store(po::parse_config_file(config_stream, config_options), vm); + po::notify(vm); + + ofstream log_file; + log_file.open(vm["log_file_location"].as()); + + int num_threads = vm["threads"].as(); + + const bool use_zip = vm.count("gzip"); + + pid_t pid, sid; + pid = fork(); + if (pid < 0) { + exit(EXIT_FAILURE); + } + if (pid > 0) { + exit(EXIT_SUCCESS); + } + sid = setsid(); + if (sid < 0) { + exit(EXIT_FAILURE); + } + close(STDIN_FILENO); + close(STDOUT_FILENO); + close(STDERR_FILENO); + + log_file << "SID: " << sid << " (to kill me type \"kill " << sid << "\" on command line or \"killall run_extract_daemon\" to kill all instances)" << endl; + log_file << "Starting up...Please do not send any requests yet" << endl; + log_file << "Grammar extraction will use " << num_threads << " threads." << endl; + + string url = vm["adress"].as(); + int socket = nn_socket(AF_SP, NN_REP); + assert(socket >= 0); + assert(nn_bind(socket, url.c_str()) >= 0); + + Clock::time_point read_start_time = Clock::now(); + + GrammarExtractor extractor = read_data(vm, log_file); + + Clock::time_point read_end_time = Clock::now(); + log_file << "Total time spent loading data structures into memory: " + << GetDuration(read_start_time, read_end_time) << " seconds" << endl; + + int count = 0; + log_file << "Started up..."; + + while(1){ + log_file << "Ready to receive requests" << endl; + char *buf = NULL; + int bytes = nn_recv(socket, &buf, NN_MSG, 0); + assert (bytes >= 0); + + Clock::time_point extraction_start_time = Clock::now(); + log_file << "Extracting sentence number " << count + << " since the start of this daemon" << endl; + + string output_sentence = extract_for_sentence(extractor, vm, buf, count, use_zip); + const char *output_sentence_char = output_sentence.c_str(); + count++; + int size_msg = strlen(output_sentence_char) + 1; // '\0' too + bytes = nn_send(socket, output_sentence_char, size_msg, 0); + assert(bytes == size_msg); + + Clock::time_point extraction_stop_time = Clock::now(); + log_file << "Sentence extraction step took " + << GetDuration(extraction_start_time, extraction_stop_time) + << " seconds" << endl; + } + return 0; +} diff --git a/extractor/extract_request.cc b/extractor/extract_request.cc new file mode 100644 index 000000000..642beef0b --- /dev/null +++ b/extractor/extract_request.cc @@ -0,0 +1,35 @@ +#include "extract_request.h" + +#include +#include +#include +#include +#include +#include + +using namespace std; + +namespace extractor { + +Requester::Requester(const char* url) { + socket = nn_socket(AF_SP, NN_REQ); + assert(socket >= 0); + assert(nn_connect(socket, url) >= 0); +} + +Requester::~Requester() { + nn_shutdown(socket, 0); +} + +const char* Requester::request_for_sentence(const char* sentence){ + + int size_sentence = strlen(sentence) + 1; + int bytes = nn_send(socket, sentence, size_sentence, 0); + assert(bytes == size_sentence); + char *buf = NULL; + bytes = nn_recv(socket, &buf, NN_MSG, 0); + assert(bytes >= 0); + return buf; +} + +} // namespace extractor diff --git a/extractor/extract_request.h b/extractor/extract_request.h new file mode 100644 index 000000000..56c49c1ec --- /dev/null +++ b/extractor/extract_request.h @@ -0,0 +1,27 @@ +#ifndef EXTRACCT_REQUEST_H +#define EXTRACCT_REQUEST_H + + +using namespace std; + +namespace extractor { + + /** + * Data structure that can request grammar from the extract_daemon + */ +class Requester { + public: + // Sets up a Requester that will connect to the supplied url + Requester(const char *url); + + ~Requester(); + + const char* request_for_sentence(const char *sentence); + + private: + int socket; +}; + +} // namespace extractor + +#endif From e6f6f636128274ae3249adb588fe038fe0b7dc1a Mon Sep 17 00:00:00 2001 From: carhaas Date: Fri, 17 Jul 2015 14:32:40 +0200 Subject: [PATCH 2/3] fix typos --- cmake/Findnanomsg.cmake | 2 +- extractor/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/Findnanomsg.cmake b/cmake/Findnanomsg.cmake index 5af48310b..bf4eff750 100644 --- a/cmake/Findnanomsg.cmake +++ b/cmake/Findnanomsg.cmake @@ -5,7 +5,7 @@ # # Defines the following variables: # -# NANOMSG_FOUND - Found the Google Testing framework +# NANOMSG_FOUND - Found the nanomsg library # NANOMSG_INCLUDE_DIR - Include directory # # Also defines the library variables below as normal diff --git a/extractor/README.md b/extractor/README.md index cea7e1a06..7441747fc 100644 --- a/extractor/README.md +++ b/extractor/README.md @@ -23,7 +23,7 @@ To run the extractor as a daemon for online grammar extraction you need to compi cdec/extractor/extract_daemon -c -g -a
-It can be killed using the SID supplied in the log file. +Online here means that sentences are received in an online fashion and rather than loading the files from anew when a new sentence is received, they are stored in RAM and a new grammar can be requested via the daemon. The daemon can be killed using the SID supplied in the log file. To then query the daemon you need to implement the Requester class supplied in extractor/libextract_request.a. It's constructor takes the same address string as supplied for the daemon. E.g.: From d6b91244b17a032ceedf4623aa7848ffa2c07883 Mon Sep 17 00:00:00 2001 From: carhaas Date: Fri, 26 Feb 2016 08:36:42 +0100 Subject: [PATCH 3/3] restructured, copied to vicious today --- .../data/cfg/cfg_grammar_open_new_mrl | 377 +++ smtsemparsecpp/data/cfg_grammar_open_new_mrl | 377 +++ .../data/maybe_old/nlmaps.test.gold | 880 ++++++ .../data/maybe_old/nlmaps.train.gold | 1500 +++++++++++ smtsemparsecpp/data/nlmaps.de | 2380 +++++++++++++++++ smtsemparsecpp/data/nlmaps.en | 2380 +++++++++++++++++ smtsemparsecpp/data/nlmaps.id | 2380 +++++++++++++++++ smtsemparsecpp/data/nlmaps.mrl | 2380 +++++++++++++++++ smtsemparsecpp/data/nlmaps.test.counter | 880 ++++++ smtsemparsecpp/data/nlmaps.test.de | 880 ++++++ smtsemparsecpp/data/nlmaps.test.en | 880 ++++++ smtsemparsecpp/data/nlmaps.test.gold | 880 ++++++ smtsemparsecpp/data/nlmaps.test.gold_jan16 | 880 ++++++ smtsemparsecpp/data/nlmaps.test.id | 880 ++++++ smtsemparsecpp/data/nlmaps.test.line | 880 ++++++ smtsemparsecpp/data/nlmaps.test.mrl | 880 ++++++ smtsemparsecpp/data/nlmaps.train.counter | 1500 +++++++++++ smtsemparsecpp/data/nlmaps.train.de | 1500 +++++++++++ smtsemparsecpp/data/nlmaps.train.en | 1500 +++++++++++ smtsemparsecpp/data/nlmaps.train.gold | 1500 +++++++++++ smtsemparsecpp/data/nlmaps.train.gold_jan16 | 1500 +++++++++++ smtsemparsecpp/data/nlmaps.train.id | 1500 +++++++++++ smtsemparsecpp/data/nlmaps.train.line | 1500 +++++++++++ smtsemparsecpp/data/nlmaps.train.mrl | 1500 +++++++++++ smtsemparsecpp/src/name_lexicon/lfs.h | 56 + smtsemparsecpp/src/name_lexicon/mksary.c | 174 ++ .../src/name_lexicon/nominatim_check.cc | 56 + .../src/name_lexicon/nominatim_check.h | 25 + .../src/name_lexicon/run_nominatim_check.cc | 51 + smtsemparsecpp/src/name_lexicon/sa_daemon.cc | 216 ++ smtsemparsecpp/src/name_lexicon/sa_request.cc | 38 + smtsemparsecpp/src/name_lexicon/sa_request.h | 25 + .../src/name_lexicon/sa_request_test.cc | 13 + smtsemparsecpp/src/parser/decode_test.cc | 251 ++ smtsemparsecpp/src/parser/eval.cc | 116 + smtsemparsecpp/src/parser/external_command.cc | 85 + smtsemparsecpp/src/parser/extract_data.cc | 94 + smtsemparsecpp/src/parser/extractor.cc | 439 +++ smtsemparsecpp/src/parser/functionalizer.cc | 214 ++ smtsemparsecpp/src/parser/parse_nl.cc | 199 ++ smtsemparsecpp/src/parser/parse_nl.h | 51 + smtsemparsecpp/src/parser/parse_nl_file.cc | 165 ++ smtsemparsecpp/src/parser/porter2_stemmer.cc | 544 ++++ smtsemparsecpp/src/parser/porter2_stemmer.h | 89 + .../src/parser/smt_semparse_config.cc | 106 + .../src/parser/smt_semparse_config.h | 32 + smtsemparsecpp/src/parser/train_model.cc | 318 +++ smtsemparsecpp/src/spell/run_spell_check.cc | 55 + smtsemparsecpp/src/spell/spell_checker.cc | 51 + 49 files changed, 35157 insertions(+) create mode 100644 smtsemparsecpp/data/cfg/cfg_grammar_open_new_mrl create mode 100644 smtsemparsecpp/data/cfg_grammar_open_new_mrl create mode 100644 smtsemparsecpp/data/maybe_old/nlmaps.test.gold create mode 100644 smtsemparsecpp/data/maybe_old/nlmaps.train.gold create mode 100644 smtsemparsecpp/data/nlmaps.de create mode 100644 smtsemparsecpp/data/nlmaps.en create mode 100644 smtsemparsecpp/data/nlmaps.id create mode 100644 smtsemparsecpp/data/nlmaps.mrl create mode 100644 smtsemparsecpp/data/nlmaps.test.counter create mode 100644 smtsemparsecpp/data/nlmaps.test.de create mode 100644 smtsemparsecpp/data/nlmaps.test.en create mode 100644 smtsemparsecpp/data/nlmaps.test.gold create mode 100644 smtsemparsecpp/data/nlmaps.test.gold_jan16 create mode 100644 smtsemparsecpp/data/nlmaps.test.id create mode 100644 smtsemparsecpp/data/nlmaps.test.line create mode 100644 smtsemparsecpp/data/nlmaps.test.mrl create mode 100644 smtsemparsecpp/data/nlmaps.train.counter create mode 100644 smtsemparsecpp/data/nlmaps.train.de create mode 100644 smtsemparsecpp/data/nlmaps.train.en create mode 100644 smtsemparsecpp/data/nlmaps.train.gold create mode 100644 smtsemparsecpp/data/nlmaps.train.gold_jan16 create mode 100644 smtsemparsecpp/data/nlmaps.train.id create mode 100644 smtsemparsecpp/data/nlmaps.train.line create mode 100644 smtsemparsecpp/data/nlmaps.train.mrl create mode 100644 smtsemparsecpp/src/name_lexicon/lfs.h create mode 100644 smtsemparsecpp/src/name_lexicon/mksary.c create mode 100644 smtsemparsecpp/src/name_lexicon/nominatim_check.cc create mode 100644 smtsemparsecpp/src/name_lexicon/nominatim_check.h create mode 100644 smtsemparsecpp/src/name_lexicon/run_nominatim_check.cc create mode 100644 smtsemparsecpp/src/name_lexicon/sa_daemon.cc create mode 100644 smtsemparsecpp/src/name_lexicon/sa_request.cc create mode 100644 smtsemparsecpp/src/name_lexicon/sa_request.h create mode 100644 smtsemparsecpp/src/name_lexicon/sa_request_test.cc create mode 100644 smtsemparsecpp/src/parser/decode_test.cc create mode 100644 smtsemparsecpp/src/parser/eval.cc create mode 100644 smtsemparsecpp/src/parser/external_command.cc create mode 100644 smtsemparsecpp/src/parser/extract_data.cc create mode 100644 smtsemparsecpp/src/parser/extractor.cc create mode 100644 smtsemparsecpp/src/parser/functionalizer.cc create mode 100644 smtsemparsecpp/src/parser/parse_nl.cc create mode 100644 smtsemparsecpp/src/parser/parse_nl.h create mode 100644 smtsemparsecpp/src/parser/parse_nl_file.cc create mode 100644 smtsemparsecpp/src/parser/porter2_stemmer.cc create mode 100644 smtsemparsecpp/src/parser/porter2_stemmer.h create mode 100644 smtsemparsecpp/src/parser/smt_semparse_config.cc create mode 100644 smtsemparsecpp/src/parser/smt_semparse_config.h create mode 100644 smtsemparsecpp/src/parser/train_model.cc create mode 100644 smtsemparsecpp/src/spell/run_spell_check.cc create mode 100644 smtsemparsecpp/src/spell/spell_checker.cc diff --git a/smtsemparsecpp/data/cfg/cfg_grammar_open_new_mrl b/smtsemparsecpp/data/cfg/cfg_grammar_open_new_mrl new file mode 100644 index 000000000..e11103a6e --- /dev/null +++ b/smtsemparsecpp/data/cfg/cfg_grammar_open_new_mrl @@ -0,0 +1,377 @@ +[S] ||| [X,1] ||| [1] ||| logp=0 +[S] ||| dist( [X,1] , unit( [KMMI,2] ) ) ||| [1] [2] ||| logp=0 +[S] ||| dist( [X,1] , [X,2] , unit( [KMMI,3] ) ) ||| [1] [2] [3] ||| logp=0 +[S] ||| dist( [X,1] ) ||| [1] ||| logp=0 +[S] ||| dist( [X,1] , [X,2] ) ||| [1] [2] ||| logp=0 +[S] ||| dist( [X,1] , for( ' [CW,2] ' ) ) ||| [1] [2] ||| logp=0 +[S] ||| dist( [X,1] , [X,2] , for( ' [CW,3] ' ) ) ||| [1] [2] [3] ||| logp=0 +[X] ||| query( north( [AROUND,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( north( [QUERY,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( west( [AROUND,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( west( [QUERY,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( south( [AROUND,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( south( [QUERY,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( east( [AROUND,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( east( [QUERY,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( [AROUND,1] , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( [QUERY,1] , [META,2] ) ||| [1] [2] ||| logp=0 +[AROUND] ||| around( center( [QUERY,1] ) , search( [QUERY,2] ) , maxdist( [DIST,3] ) ) ||| [1] [2] [3] ||| logp=0 +[AROUND] ||| around( center( [QUERY,1] ) , search( [QUERY,2] ) , maxdist( [DIST,3] ) , [META_TOPX,4] ) ||| [1] [2] [3] [4] ||| logp=0 +[QUERY] ||| [AREA,1] , [OSM,2] ||| [1] [2] ||| logp=0 +[QUERY] ||| [OSM,1] ||| [1] ||| logp=0 +[META] ||| qtype( [META_REQ,1] ) ||| [1] ||| logp=0 +[META] ||| qtype( [META_POS,1] ) ||| [1] ||| logp=0 +[META_REQ] ||| [META_REQ,1] , [META_REQ,2] ||| [1] [2] ||| logp=0 +[META_REQ] ||| [META_REQ,1] , [META_POS,2] ||| [1] [2] ||| logp=0 +[META_REQ] ||| findkey( and( ' [KEY,1] ' , ' [KEY,2] ' ) ) ||| [1] [2] ||| logp=0 +[META_REQ] ||| findkey( ' [KEY,1] ' ) ||| [1] ||| logp=0 +[META_REQ] ||| findkey( ' [KEY,1] ' , [META_TOPX,2] ) ||| [1] [2] ||| logp=0 +[META_REQ] ||| count ||| ||| logp=0 +[META_REQ] ||| latlong ||| ||| logp=0 +[META_REQ] ||| latlong( [META_TOPX,1] ) ||| [1] ||| logp=0 +[META_REQ] ||| least( [META_TOPX,1] ) ||| [1] ||| logp=0 +[META_POS] ||| nodup( [META_REQ,1] ) ||| [1] ||| logp=0 +[META_TOPX] ||| topx( [INT,1] ) ||| [1] ||| logp=0 +[AREA] ||| area( [INNER,1] ) ||| [1] ||| logp=0 +[OSM] ||| nwr( [INNER,1] ) ||| [1] ||| logp=0 +[OSM] ||| nwr( [INNER,1] ) , [OSM,2] ||| [1] [2] ||| logp=0 +[INNER] ||| and( [INNER,1] , [INNER,2] ) ||| [1] [2] ||| logp=0 +[INNER] ||| or( [INNER,1] , [INNER,2] ) ||| [1] [2] ||| logp=0 +[INNER] ||| keyval( ' [KEY,1] ' , [VAL,2] ) , [INNER,3] ||| [1] [2] [3] ||| logp=0 +[INNER] ||| keyval( ' [KEY,1] ' , [VAL,2] ) ||| [1] [2] ||| logp=0 +[CW] ||| car ||| ||| logp=0 +[CW] ||| walk ||| ||| logp=0 +[KMMI] ||| km ||| ||| logp=0 +[KMMI] ||| mi ||| ||| logp=0 +[DIST] ||| WALKDING_DIST ||| ||| logp=0 +[DIST] ||| DIST_INTOWN ||| ||| logp=0 +[DIST] ||| DIST_OUTTOWN ||| ||| logp=0 +[DIST] ||| DIST_DAYTRIP ||| ||| logp=0 +[DIST] ||| [INT,1] ||| [1] ||| logp=0 +[VAL] ||| or( [VAL,1] , [VAL,2] ) ||| [1] [2] ||| logp=0 +[VAL] ||| and( [VAL,1] , [VAL,2] ) ||| [1] [2] ||| logp=0 +[VAL] ||| ' variablehere ' ||| ||| logp=0 +[KEY] ||| monitoring:bicycle ||| ||| logp=0 +[KEY] ||| fuel:diesel ||| ||| logp=0 +[KEY] ||| product ||| ||| logp=0 +[KEY] ||| social_facility:for ||| ||| logp=0 +[KEY] ||| hazard ||| ||| logp=0 +[KEY] ||| memorial:type ||| ||| logp=0 +[KEY] ||| person:date_of_birth ||| ||| logp=0 +[KEY] ||| Schalansky_ref ||| ||| logp=0 +[KEY] ||| tower:type ||| ||| logp=0 +[KEY] ||| sports ||| ||| logp=0 +[KEY] ||| school:de ||| ||| logp=0 +[KEY] ||| artwork_type ||| ||| logp=0 +[KEY] ||| artist_name ||| ||| logp=0 +[KEY] ||| fire_hydrant:type ||| ||| logp=0 +[KEY] ||| communication:mobile_phone ||| ||| logp=0 +[KEY] ||| advertising ||| ||| logp=0 +[KEY] ||| organic ||| ||| logp=0 +[KEY] ||| artwork:group ||| ||| logp=0 +[KEY] ||| collection_times ||| ||| logp=0 +[KEY] ||| abandoned:tourism ||| ||| logp=0 +[KEY] ||| network ||| ||| logp=0 +[KEY] ||| manufacturer ||| ||| logp=0 +[KEY] ||| generator:source ||| ||| logp=0 +[KEY] ||| station ||| ||| logp=0 +[KEY] ||| roof:colour ||| ||| logp=0 +[KEY] ||| internet_access:fee ||| ||| logp=0 +[KEY] ||| country ||| ||| logp=0 +[KEY] ||| shelter_type ||| ||| logp=0 +[KEY] ||| recycling:glass ||| ||| logp=0 +[KEY] ||| second_hand ||| ||| logp=0 +[KEY] ||| recycling:clothes ||| ||| logp=0 +[KEY] ||| ruins ||| ||| logp=0 +[KEY] ||| brand ||| ||| logp=0 +[KEY] ||| bicycle_parking ||| ||| logp=0 +[KEY] ||| capacity ||| ||| logp=0 +[KEY] ||| 4wd_only ||| ||| logp=0 +[KEY] ||| abutters ||| ||| logp=0 +[KEY] ||| access ||| ||| logp=0 +[KEY] ||| addr:city ||| ||| logp=0 +[KEY] ||| addr:country ||| ||| logp=0 +[KEY] ||| addr:district ||| ||| logp=0 +[KEY] ||| addr:flats ||| ||| logp=0 +[KEY] ||| addr:full ||| ||| logp=0 +[KEY] ||| addr:hamlet ||| ||| logp=0 +[KEY] ||| addr:housename ||| ||| logp=0 +[KEY] ||| addr:housenumber ||| ||| logp=0 +[KEY] ||| addr:inclusion ||| ||| logp=0 +[KEY] ||| addr:interpolation ||| ||| logp=0 +[KEY] ||| addr:place ||| ||| logp=0 +[KEY] ||| addr:postcode ||| ||| logp=0 +[KEY] ||| addr:province ||| ||| logp=0 +[KEY] ||| addr:state ||| ||| logp=0 +[KEY] ||| addr:street ||| ||| logp=0 +[KEY] ||| addr:street ||| ||| logp=0 +[KEY] ||| addr:subdistrict ||| ||| logp=0 +[KEY] ||| addr:suburb ||| ||| logp=0 +[KEY] ||| aerialway ||| ||| logp=0 +[KEY] ||| aerodrome ||| ||| logp=0 +[KEY] ||| aeroway ||| ||| logp=0 +[KEY] ||| agricultural ||| ||| logp=0 +[KEY] ||| alt_name ||| ||| logp=0 +[KEY] ||| alt_name:lg ||| ||| logp=0 +[KEY] ||| alt_name_1 ||| ||| logp=0 +[KEY] ||| amenity ||| ||| logp=0 +[KEY] ||| architect ||| ||| logp=0 +[KEY] ||| area ||| ||| logp=0 +[KEY] ||| atm ||| ||| logp=0 +[KEY] ||| attribution ||| ||| logp=0 +[KEY] ||| atv ||| ||| logp=0 +[KEY] ||| barrier ||| ||| logp=0 +[KEY] ||| bdouble ||| ||| logp=0 +[KEY] ||| bicycle ||| ||| logp=0 +[KEY] ||| bicycle ||| ||| logp=0 +[KEY] ||| bicycle_road ||| ||| logp=0 +[KEY] ||| boat ||| ||| logp=0 +[KEY] ||| boundary ||| ||| logp=0 +[KEY] ||| bridge ||| ||| logp=0 +[KEY] ||| building ||| ||| logp=0 +[KEY] ||| charge ||| ||| logp=0 +[KEY] ||| comments ||| ||| logp=0 +[KEY] ||| contact:diaspora ||| ||| logp=0 +[KEY] ||| contact:email ||| ||| logp=0 +[KEY] ||| contact:facebook ||| ||| logp=0 +[KEY] ||| contact:fax ||| ||| logp=0 +[KEY] ||| contact:google_plus ||| ||| logp=0 +[KEY] ||| contact:instagram ||| ||| logp=0 +[KEY] ||| contact:linkedin ||| ||| logp=0 +[KEY] ||| contact:phone ||| ||| logp=0 +[KEY] ||| contact:twitter ||| ||| logp=0 +[KEY] ||| contact:vhf ||| ||| logp=0 +[KEY] ||| contact:webcam ||| ||| logp=0 +[KEY] ||| contact:website ||| ||| logp=0 +[KEY] ||| contact:xing ||| ||| logp=0 +[KEY] ||| covered ||| ||| logp=0 +[KEY] ||| craft ||| ||| logp=0 +[KEY] ||| crossing ||| ||| logp=0 +[KEY] ||| cuisine ||| ||| logp=0 +[KEY] ||| cuisine ||| ||| logp=0 +[KEY] ||| cutting ||| ||| logp=0 +[KEY] ||| cycleway ||| ||| logp=0 +[KEY] ||| de:place ||| ||| logp=0 +[KEY] ||| de:amtlicher_gemeindeschluessel ||| ||| logp=0 +[KEY] ||| denomination ||| ||| logp=0 +[KEY] ||| description ||| ||| logp=0 +[KEY] ||| diaspora ||| ||| logp=0 +[KEY] ||| disused ||| ||| logp=0 +[KEY] ||| drive_in ||| ||| logp=0 +[KEY] ||| drive_through ||| ||| logp=0 +[KEY] ||| driving_side ||| ||| logp=0 +[KEY] ||| ele ||| ||| logp=0 +[KEY] ||| ele ||| ||| logp=0 +[KEY] ||| electrified ||| ||| logp=0 +[KEY] ||| email ||| ||| logp=0 +[KEY] ||| email ||| ||| logp=0 +[KEY] ||| embankment ||| ||| logp=0 +[KEY] ||| emergency ||| ||| logp=0 +[KEY] ||| end_date ||| ||| logp=0 +[KEY] ||| est_width ||| ||| logp=0 +[KEY] ||| facebook ||| ||| logp=0 +[KEY] ||| fax ||| ||| logp=0 +[KEY] ||| fire_object:type ||| ||| logp=0 +[KEY] ||| fire_operator ||| ||| logp=0 +[KEY] ||| fire_rank ||| ||| logp=0 +[KEY] ||| fireplace ||| ||| logp=0 +[KEY] ||| fixme ||| ||| logp=0 +[KEY] ||| foot ||| ||| logp=0 +[KEY] ||| ford ||| ||| logp=0 +[KEY] ||| forestry ||| ||| logp=0 +[KEY] ||| frequency ||| ||| logp=0 +[KEY] ||| geological ||| ||| logp=0 +[KEY] ||| goods ||| ||| logp=0 +[KEY] ||| google_plus ||| ||| logp=0 +[KEY] ||| hazmat ||| ||| logp=0 +[KEY] ||| height ||| ||| logp=0 +[KEY] ||| hgv ||| ||| logp=0 +[KEY] ||| highway ||| ||| logp=0 +[KEY] ||| highway ||| ||| logp=0 +[KEY] ||| hiking ||| ||| logp=0 +[KEY] ||| historic ||| ||| logp=0 +[KEY] ||| horse ||| ||| logp=0 +[KEY] ||| iata ||| ||| logp=0 +[KEY] ||| icao ||| ||| logp=0 +[KEY] ||| ice_road ||| ||| logp=0 +[KEY] ||| image ||| ||| logp=0 +[KEY] ||| incline ||| ||| logp=0 +[KEY] ||| information ||| ||| logp=0 +[KEY] ||| inline_skates ||| ||| logp=0 +[KEY] ||| inscription ||| ||| logp=0 +[KEY] ||| instagram ||| ||| logp=0 +[KEY] ||| int_name ||| ||| logp=0 +[KEY] ||| int_ref ||| ||| logp=0 +[KEY] ||| int_ref ||| ||| logp=0 +[KEY] ||| intermittent ||| ||| logp=0 +[KEY] ||| internet_access ||| ||| logp=0 +[KEY] ||| internet_access ||| ||| logp=0 +[KEY] ||| is_in:country ||| ||| logp=0 +[KEY] ||| is_in ||| ||| logp=0 +[KEY] ||| junction ||| ||| logp=0 +[KEY] ||| landuse ||| ||| logp=0 +[KEY] ||| lanes ||| ||| logp=0 +[KEY] ||| lanes ||| ||| logp=0 +[KEY] ||| layer ||| ||| logp=0 +[KEY] ||| lcn_ref ||| ||| logp=0 +[KEY] ||| leaf_cycle ||| ||| logp=0 +[KEY] ||| leaf_type ||| ||| logp=0 +[KEY] ||| leisure ||| ||| logp=0 +[KEY] ||| leisure ||| ||| logp=0 +[KEY] ||| lhv ||| ||| logp=0 +[KEY] ||| linkedin ||| ||| logp=0 +[KEY] ||| lit ||| ||| logp=0 +[KEY] ||| loc_name ||| ||| logp=0 +[KEY] ||| loc_ref ||| ||| logp=0 +[KEY] ||| location ||| ||| logp=0 +[KEY] ||| lock ||| ||| logp=0 +[KEY] ||| man_made ||| ||| logp=0 +[KEY] ||| maxheight ||| ||| logp=0 +[KEY] ||| maxlength ||| ||| logp=0 +[KEY] ||| maxspeed ||| ||| logp=0 +[KEY] ||| maxspeed ||| ||| logp=0 +[KEY] ||| maxstay ||| ||| logp=0 +[KEY] ||| maxweight ||| ||| logp=0 +[KEY] ||| maxwidth ||| ||| logp=0 +[KEY] ||| military ||| ||| logp=0 +[KEY] ||| minspeed ||| ||| logp=0 +[KEY] ||| mofa ||| ||| logp=0 +[KEY] ||| mooring ||| ||| logp=0 +[KEY] ||| moped ||| ||| logp=0 +[KEY] ||| motor_vehicle ||| ||| logp=0 +[KEY] ||| motorboat ||| ||| logp=0 +[KEY] ||| motorcar ||| ||| logp=0 +[KEY] ||| motorcycle ||| ||| logp=0 +[KEY] ||| motorroad ||| ||| logp=0 +[KEY] ||| mountain_pass ||| ||| logp=0 +[KEY] ||| mtb:description ||| ||| logp=0 +[KEY] ||| mtb:scale ||| ||| logp=0 +[KEY] ||| mtb:scale:imba ||| ||| logp=0 +[KEY] ||| mtb:scale:uphill ||| ||| logp=0 +[KEY] ||| name ||| ||| logp=0 +[KEY] ||| name ||| ||| logp=0 +[KEY] ||| name:lg ||| ||| logp=0 +[KEY] ||| name:left ||| ||| logp=0 +[KEY] ||| name:right ||| ||| logp=0 +[KEY] ||| narrow ||| ||| logp=0 +[KEY] ||| nat_name ||| ||| logp=0 +[KEY] ||| nat_ref ||| ||| logp=0 +[KEY] ||| natural ||| ||| logp=0 +[KEY] ||| ncn_ref ||| ||| logp=0 +[KEY] ||| noexit ||| ||| logp=0 +[KEY] ||| note ||| ||| logp=0 +[KEY] ||| note ||| ||| logp=0 +[KEY] ||| nudism ||| ||| logp=0 +[KEY] ||| office ||| ||| logp=0 +[KEY] ||| official_name ||| ||| logp=0 +[KEY] ||| old_name ||| ||| logp=0 +[KEY] ||| old_name:lg ||| ||| logp=0 +[KEY] ||| old_ref ||| ||| logp=0 +[KEY] ||| oneway ||| ||| logp=0 +[KEY] ||| oneway ||| ||| logp=0 +[KEY] ||| opening_hours ||| ||| logp=0 +[KEY] ||| operator ||| ||| logp=0 +[KEY] ||| operator ||| ||| logp=0 +[KEY] ||| outdoor_seating ||| ||| logp=0 +[KEY] ||| overtaking ||| ||| logp=0 +[KEY] ||| parking ||| ||| logp=0 +[KEY] ||| parking:condition ||| ||| logp=0 +[KEY] ||| parking:lane ||| ||| logp=0 +[KEY] ||| passing_places ||| ||| logp=0 +[KEY] ||| phone ||| ||| logp=0 +[KEY] ||| phone ||| ||| logp=0 +[KEY] ||| place ||| ||| logp=0 +[KEY] ||| place_numbers ||| ||| logp=0 +[KEY] ||| population ||| ||| logp=0 +[KEY] ||| population ||| ||| logp=0 +[KEY] ||| postal_code ||| ||| logp=0 +[KEY] ||| power ||| ||| logp=0 +[KEY] ||| psv ||| ||| logp=0 +[KEY] ||| public_transport ||| ||| logp=0 +[KEY] ||| railway ||| ||| logp=0 +[KEY] ||| rcn_ref ||| ||| logp=0 +[KEY] ||| ref ||| ||| logp=0 +[KEY] ||| ref ||| ||| logp=0 +[KEY] ||| reference_point ||| ||| logp=0 +[KEY] ||| reg_name ||| ||| logp=0 +[KEY] ||| reg_ref ||| ||| logp=0 +[KEY] ||| Relation:restriction ||| ||| logp=0 +[KEY] ||| religion ||| ||| logp=0 +[KEY] ||| restaurant ||| ||| logp=0 +[KEY] ||| roadtrain ||| ||| logp=0 +[KEY] ||| rooms ||| ||| logp=0 +[KEY] ||| route ||| ||| logp=0 +[KEY] ||| sac_scale ||| ||| logp=0 +[KEY] ||| service ||| ||| logp=0 +[KEY] ||| service_times ||| ||| logp=0 +[KEY] ||| shop ||| ||| logp=0 +[KEY] ||| short_name ||| ||| logp=0 +[KEY] ||| site_type ||| ||| logp=0 +[KEY] ||| ski ||| ||| logp=0 +[KEY] ||| smoking ||| ||| logp=0 +[KEY] ||| smoking ||| ||| logp=0 +[KEY] ||| smoothness ||| ||| logp=0 +[KEY] ||| sorting_name ||| ||| logp=0 +[KEY] ||| source ||| ||| logp=0 +[KEY] ||| source:name ||| ||| logp=0 +[KEY] ||| source:ref ||| ||| logp=0 +[KEY] ||| source_ref ||| ||| logp=0 +[KEY] ||| sport ||| ||| logp=0 +[KEY] ||| star ||| ||| logp=0 +[KEY] ||| stars ||| ||| logp=0 +[KEY] ||| stars ||| ||| logp=0 +[KEY] ||| start_date ||| ||| logp=0 +[KEY] ||| surface ||| ||| logp=0 +[KEY] ||| surface ||| ||| logp=0 +[KEY] ||| tactile_paving ||| ||| logp=0 +[KEY] ||| tank ||| ||| logp=0 +[KEY] ||| tidal ||| ||| logp=0 +[KEY] ||| TMC:LocationCode ||| ||| logp=0 +[KEY] ||| todo ||| ||| logp=0 +[KEY] ||| toilets:wheelchair ||| ||| logp=0 +[KEY] ||| toll ||| ||| logp=0 +[KEY] ||| tourism ||| ||| logp=0 +[KEY] ||| tracks ||| ||| logp=0 +[KEY] ||| tracktype ||| ||| logp=0 +[KEY] ||| traffic_calming ||| ||| logp=0 +[KEY] ||| traffic_sign ||| ||| logp=0 +[KEY] ||| trail_visibility ||| ||| logp=0 +[KEY] ||| tunnel ||| ||| logp=0 +[KEY] ||| twitter ||| ||| logp=0 +[KEY] ||| url ||| ||| logp=0 +[KEY] ||| usage ||| ||| logp=0 +[KEY] ||| vehicle ||| ||| logp=0 +[KEY] ||| vhf ||| ||| logp=0 +[KEY] ||| voltage ||| ||| logp=0 +[KEY] ||| waterway ||| ||| logp=0 +[KEY] ||| webcam ||| ||| logp=0 +[KEY] ||| website ||| ||| logp=0 +[KEY] ||| website ||| ||| logp=0 +[KEY] ||| wheelchair ||| ||| logp=0 +[KEY] ||| wheelchair ||| ||| logp=0 +[KEY] ||| width ||| ||| logp=0 +[KEY] ||| wifi ||| ||| logp=0 +[KEY] ||| wikipedia ||| ||| logp=0 +[KEY] ||| wikipedia ||| ||| logp=0 +[KEY] ||| winter_road ||| ||| logp=0 +[KEY] ||| xing ||| ||| logp=0 +[INT] ||| 0 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 1 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 2 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 3 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 4 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 5 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 6 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 7 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 8 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 9 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 0 ||| ||| logp=0 +[INT] ||| 1 ||| ||| logp=0 +[INT] ||| 2 ||| ||| logp=0 +[INT] ||| 3 ||| ||| logp=0 +[INT] ||| 4 ||| ||| logp=0 +[INT] ||| 5 ||| ||| logp=0 +[INT] ||| 6 ||| ||| logp=0 +[INT] ||| 7 ||| ||| logp=0 +[INT] ||| 8 ||| ||| logp=0 +[INT] ||| 9 ||| ||| logp=0 diff --git a/smtsemparsecpp/data/cfg_grammar_open_new_mrl b/smtsemparsecpp/data/cfg_grammar_open_new_mrl new file mode 100644 index 000000000..e11103a6e --- /dev/null +++ b/smtsemparsecpp/data/cfg_grammar_open_new_mrl @@ -0,0 +1,377 @@ +[S] ||| [X,1] ||| [1] ||| logp=0 +[S] ||| dist( [X,1] , unit( [KMMI,2] ) ) ||| [1] [2] ||| logp=0 +[S] ||| dist( [X,1] , [X,2] , unit( [KMMI,3] ) ) ||| [1] [2] [3] ||| logp=0 +[S] ||| dist( [X,1] ) ||| [1] ||| logp=0 +[S] ||| dist( [X,1] , [X,2] ) ||| [1] [2] ||| logp=0 +[S] ||| dist( [X,1] , for( ' [CW,2] ' ) ) ||| [1] [2] ||| logp=0 +[S] ||| dist( [X,1] , [X,2] , for( ' [CW,3] ' ) ) ||| [1] [2] [3] ||| logp=0 +[X] ||| query( north( [AROUND,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( north( [QUERY,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( west( [AROUND,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( west( [QUERY,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( south( [AROUND,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( south( [QUERY,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( east( [AROUND,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( east( [QUERY,1] ) , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( [AROUND,1] , [META,2] ) ||| [1] [2] ||| logp=0 +[X] ||| query( [QUERY,1] , [META,2] ) ||| [1] [2] ||| logp=0 +[AROUND] ||| around( center( [QUERY,1] ) , search( [QUERY,2] ) , maxdist( [DIST,3] ) ) ||| [1] [2] [3] ||| logp=0 +[AROUND] ||| around( center( [QUERY,1] ) , search( [QUERY,2] ) , maxdist( [DIST,3] ) , [META_TOPX,4] ) ||| [1] [2] [3] [4] ||| logp=0 +[QUERY] ||| [AREA,1] , [OSM,2] ||| [1] [2] ||| logp=0 +[QUERY] ||| [OSM,1] ||| [1] ||| logp=0 +[META] ||| qtype( [META_REQ,1] ) ||| [1] ||| logp=0 +[META] ||| qtype( [META_POS,1] ) ||| [1] ||| logp=0 +[META_REQ] ||| [META_REQ,1] , [META_REQ,2] ||| [1] [2] ||| logp=0 +[META_REQ] ||| [META_REQ,1] , [META_POS,2] ||| [1] [2] ||| logp=0 +[META_REQ] ||| findkey( and( ' [KEY,1] ' , ' [KEY,2] ' ) ) ||| [1] [2] ||| logp=0 +[META_REQ] ||| findkey( ' [KEY,1] ' ) ||| [1] ||| logp=0 +[META_REQ] ||| findkey( ' [KEY,1] ' , [META_TOPX,2] ) ||| [1] [2] ||| logp=0 +[META_REQ] ||| count ||| ||| logp=0 +[META_REQ] ||| latlong ||| ||| logp=0 +[META_REQ] ||| latlong( [META_TOPX,1] ) ||| [1] ||| logp=0 +[META_REQ] ||| least( [META_TOPX,1] ) ||| [1] ||| logp=0 +[META_POS] ||| nodup( [META_REQ,1] ) ||| [1] ||| logp=0 +[META_TOPX] ||| topx( [INT,1] ) ||| [1] ||| logp=0 +[AREA] ||| area( [INNER,1] ) ||| [1] ||| logp=0 +[OSM] ||| nwr( [INNER,1] ) ||| [1] ||| logp=0 +[OSM] ||| nwr( [INNER,1] ) , [OSM,2] ||| [1] [2] ||| logp=0 +[INNER] ||| and( [INNER,1] , [INNER,2] ) ||| [1] [2] ||| logp=0 +[INNER] ||| or( [INNER,1] , [INNER,2] ) ||| [1] [2] ||| logp=0 +[INNER] ||| keyval( ' [KEY,1] ' , [VAL,2] ) , [INNER,3] ||| [1] [2] [3] ||| logp=0 +[INNER] ||| keyval( ' [KEY,1] ' , [VAL,2] ) ||| [1] [2] ||| logp=0 +[CW] ||| car ||| ||| logp=0 +[CW] ||| walk ||| ||| logp=0 +[KMMI] ||| km ||| ||| logp=0 +[KMMI] ||| mi ||| ||| logp=0 +[DIST] ||| WALKDING_DIST ||| ||| logp=0 +[DIST] ||| DIST_INTOWN ||| ||| logp=0 +[DIST] ||| DIST_OUTTOWN ||| ||| logp=0 +[DIST] ||| DIST_DAYTRIP ||| ||| logp=0 +[DIST] ||| [INT,1] ||| [1] ||| logp=0 +[VAL] ||| or( [VAL,1] , [VAL,2] ) ||| [1] [2] ||| logp=0 +[VAL] ||| and( [VAL,1] , [VAL,2] ) ||| [1] [2] ||| logp=0 +[VAL] ||| ' variablehere ' ||| ||| logp=0 +[KEY] ||| monitoring:bicycle ||| ||| logp=0 +[KEY] ||| fuel:diesel ||| ||| logp=0 +[KEY] ||| product ||| ||| logp=0 +[KEY] ||| social_facility:for ||| ||| logp=0 +[KEY] ||| hazard ||| ||| logp=0 +[KEY] ||| memorial:type ||| ||| logp=0 +[KEY] ||| person:date_of_birth ||| ||| logp=0 +[KEY] ||| Schalansky_ref ||| ||| logp=0 +[KEY] ||| tower:type ||| ||| logp=0 +[KEY] ||| sports ||| ||| logp=0 +[KEY] ||| school:de ||| ||| logp=0 +[KEY] ||| artwork_type ||| ||| logp=0 +[KEY] ||| artist_name ||| ||| logp=0 +[KEY] ||| fire_hydrant:type ||| ||| logp=0 +[KEY] ||| communication:mobile_phone ||| ||| logp=0 +[KEY] ||| advertising ||| ||| logp=0 +[KEY] ||| organic ||| ||| logp=0 +[KEY] ||| artwork:group ||| ||| logp=0 +[KEY] ||| collection_times ||| ||| logp=0 +[KEY] ||| abandoned:tourism ||| ||| logp=0 +[KEY] ||| network ||| ||| logp=0 +[KEY] ||| manufacturer ||| ||| logp=0 +[KEY] ||| generator:source ||| ||| logp=0 +[KEY] ||| station ||| ||| logp=0 +[KEY] ||| roof:colour ||| ||| logp=0 +[KEY] ||| internet_access:fee ||| ||| logp=0 +[KEY] ||| country ||| ||| logp=0 +[KEY] ||| shelter_type ||| ||| logp=0 +[KEY] ||| recycling:glass ||| ||| logp=0 +[KEY] ||| second_hand ||| ||| logp=0 +[KEY] ||| recycling:clothes ||| ||| logp=0 +[KEY] ||| ruins ||| ||| logp=0 +[KEY] ||| brand ||| ||| logp=0 +[KEY] ||| bicycle_parking ||| ||| logp=0 +[KEY] ||| capacity ||| ||| logp=0 +[KEY] ||| 4wd_only ||| ||| logp=0 +[KEY] ||| abutters ||| ||| logp=0 +[KEY] ||| access ||| ||| logp=0 +[KEY] ||| addr:city ||| ||| logp=0 +[KEY] ||| addr:country ||| ||| logp=0 +[KEY] ||| addr:district ||| ||| logp=0 +[KEY] ||| addr:flats ||| ||| logp=0 +[KEY] ||| addr:full ||| ||| logp=0 +[KEY] ||| addr:hamlet ||| ||| logp=0 +[KEY] ||| addr:housename ||| ||| logp=0 +[KEY] ||| addr:housenumber ||| ||| logp=0 +[KEY] ||| addr:inclusion ||| ||| logp=0 +[KEY] ||| addr:interpolation ||| ||| logp=0 +[KEY] ||| addr:place ||| ||| logp=0 +[KEY] ||| addr:postcode ||| ||| logp=0 +[KEY] ||| addr:province ||| ||| logp=0 +[KEY] ||| addr:state ||| ||| logp=0 +[KEY] ||| addr:street ||| ||| logp=0 +[KEY] ||| addr:street ||| ||| logp=0 +[KEY] ||| addr:subdistrict ||| ||| logp=0 +[KEY] ||| addr:suburb ||| ||| logp=0 +[KEY] ||| aerialway ||| ||| logp=0 +[KEY] ||| aerodrome ||| ||| logp=0 +[KEY] ||| aeroway ||| ||| logp=0 +[KEY] ||| agricultural ||| ||| logp=0 +[KEY] ||| alt_name ||| ||| logp=0 +[KEY] ||| alt_name:lg ||| ||| logp=0 +[KEY] ||| alt_name_1 ||| ||| logp=0 +[KEY] ||| amenity ||| ||| logp=0 +[KEY] ||| architect ||| ||| logp=0 +[KEY] ||| area ||| ||| logp=0 +[KEY] ||| atm ||| ||| logp=0 +[KEY] ||| attribution ||| ||| logp=0 +[KEY] ||| atv ||| ||| logp=0 +[KEY] ||| barrier ||| ||| logp=0 +[KEY] ||| bdouble ||| ||| logp=0 +[KEY] ||| bicycle ||| ||| logp=0 +[KEY] ||| bicycle ||| ||| logp=0 +[KEY] ||| bicycle_road ||| ||| logp=0 +[KEY] ||| boat ||| ||| logp=0 +[KEY] ||| boundary ||| ||| logp=0 +[KEY] ||| bridge ||| ||| logp=0 +[KEY] ||| building ||| ||| logp=0 +[KEY] ||| charge ||| ||| logp=0 +[KEY] ||| comments ||| ||| logp=0 +[KEY] ||| contact:diaspora ||| ||| logp=0 +[KEY] ||| contact:email ||| ||| logp=0 +[KEY] ||| contact:facebook ||| ||| logp=0 +[KEY] ||| contact:fax ||| ||| logp=0 +[KEY] ||| contact:google_plus ||| ||| logp=0 +[KEY] ||| contact:instagram ||| ||| logp=0 +[KEY] ||| contact:linkedin ||| ||| logp=0 +[KEY] ||| contact:phone ||| ||| logp=0 +[KEY] ||| contact:twitter ||| ||| logp=0 +[KEY] ||| contact:vhf ||| ||| logp=0 +[KEY] ||| contact:webcam ||| ||| logp=0 +[KEY] ||| contact:website ||| ||| logp=0 +[KEY] ||| contact:xing ||| ||| logp=0 +[KEY] ||| covered ||| ||| logp=0 +[KEY] ||| craft ||| ||| logp=0 +[KEY] ||| crossing ||| ||| logp=0 +[KEY] ||| cuisine ||| ||| logp=0 +[KEY] ||| cuisine ||| ||| logp=0 +[KEY] ||| cutting ||| ||| logp=0 +[KEY] ||| cycleway ||| ||| logp=0 +[KEY] ||| de:place ||| ||| logp=0 +[KEY] ||| de:amtlicher_gemeindeschluessel ||| ||| logp=0 +[KEY] ||| denomination ||| ||| logp=0 +[KEY] ||| description ||| ||| logp=0 +[KEY] ||| diaspora ||| ||| logp=0 +[KEY] ||| disused ||| ||| logp=0 +[KEY] ||| drive_in ||| ||| logp=0 +[KEY] ||| drive_through ||| ||| logp=0 +[KEY] ||| driving_side ||| ||| logp=0 +[KEY] ||| ele ||| ||| logp=0 +[KEY] ||| ele ||| ||| logp=0 +[KEY] ||| electrified ||| ||| logp=0 +[KEY] ||| email ||| ||| logp=0 +[KEY] ||| email ||| ||| logp=0 +[KEY] ||| embankment ||| ||| logp=0 +[KEY] ||| emergency ||| ||| logp=0 +[KEY] ||| end_date ||| ||| logp=0 +[KEY] ||| est_width ||| ||| logp=0 +[KEY] ||| facebook ||| ||| logp=0 +[KEY] ||| fax ||| ||| logp=0 +[KEY] ||| fire_object:type ||| ||| logp=0 +[KEY] ||| fire_operator ||| ||| logp=0 +[KEY] ||| fire_rank ||| ||| logp=0 +[KEY] ||| fireplace ||| ||| logp=0 +[KEY] ||| fixme ||| ||| logp=0 +[KEY] ||| foot ||| ||| logp=0 +[KEY] ||| ford ||| ||| logp=0 +[KEY] ||| forestry ||| ||| logp=0 +[KEY] ||| frequency ||| ||| logp=0 +[KEY] ||| geological ||| ||| logp=0 +[KEY] ||| goods ||| ||| logp=0 +[KEY] ||| google_plus ||| ||| logp=0 +[KEY] ||| hazmat ||| ||| logp=0 +[KEY] ||| height ||| ||| logp=0 +[KEY] ||| hgv ||| ||| logp=0 +[KEY] ||| highway ||| ||| logp=0 +[KEY] ||| highway ||| ||| logp=0 +[KEY] ||| hiking ||| ||| logp=0 +[KEY] ||| historic ||| ||| logp=0 +[KEY] ||| horse ||| ||| logp=0 +[KEY] ||| iata ||| ||| logp=0 +[KEY] ||| icao ||| ||| logp=0 +[KEY] ||| ice_road ||| ||| logp=0 +[KEY] ||| image ||| ||| logp=0 +[KEY] ||| incline ||| ||| logp=0 +[KEY] ||| information ||| ||| logp=0 +[KEY] ||| inline_skates ||| ||| logp=0 +[KEY] ||| inscription ||| ||| logp=0 +[KEY] ||| instagram ||| ||| logp=0 +[KEY] ||| int_name ||| ||| logp=0 +[KEY] ||| int_ref ||| ||| logp=0 +[KEY] ||| int_ref ||| ||| logp=0 +[KEY] ||| intermittent ||| ||| logp=0 +[KEY] ||| internet_access ||| ||| logp=0 +[KEY] ||| internet_access ||| ||| logp=0 +[KEY] ||| is_in:country ||| ||| logp=0 +[KEY] ||| is_in ||| ||| logp=0 +[KEY] ||| junction ||| ||| logp=0 +[KEY] ||| landuse ||| ||| logp=0 +[KEY] ||| lanes ||| ||| logp=0 +[KEY] ||| lanes ||| ||| logp=0 +[KEY] ||| layer ||| ||| logp=0 +[KEY] ||| lcn_ref ||| ||| logp=0 +[KEY] ||| leaf_cycle ||| ||| logp=0 +[KEY] ||| leaf_type ||| ||| logp=0 +[KEY] ||| leisure ||| ||| logp=0 +[KEY] ||| leisure ||| ||| logp=0 +[KEY] ||| lhv ||| ||| logp=0 +[KEY] ||| linkedin ||| ||| logp=0 +[KEY] ||| lit ||| ||| logp=0 +[KEY] ||| loc_name ||| ||| logp=0 +[KEY] ||| loc_ref ||| ||| logp=0 +[KEY] ||| location ||| ||| logp=0 +[KEY] ||| lock ||| ||| logp=0 +[KEY] ||| man_made ||| ||| logp=0 +[KEY] ||| maxheight ||| ||| logp=0 +[KEY] ||| maxlength ||| ||| logp=0 +[KEY] ||| maxspeed ||| ||| logp=0 +[KEY] ||| maxspeed ||| ||| logp=0 +[KEY] ||| maxstay ||| ||| logp=0 +[KEY] ||| maxweight ||| ||| logp=0 +[KEY] ||| maxwidth ||| ||| logp=0 +[KEY] ||| military ||| ||| logp=0 +[KEY] ||| minspeed ||| ||| logp=0 +[KEY] ||| mofa ||| ||| logp=0 +[KEY] ||| mooring ||| ||| logp=0 +[KEY] ||| moped ||| ||| logp=0 +[KEY] ||| motor_vehicle ||| ||| logp=0 +[KEY] ||| motorboat ||| ||| logp=0 +[KEY] ||| motorcar ||| ||| logp=0 +[KEY] ||| motorcycle ||| ||| logp=0 +[KEY] ||| motorroad ||| ||| logp=0 +[KEY] ||| mountain_pass ||| ||| logp=0 +[KEY] ||| mtb:description ||| ||| logp=0 +[KEY] ||| mtb:scale ||| ||| logp=0 +[KEY] ||| mtb:scale:imba ||| ||| logp=0 +[KEY] ||| mtb:scale:uphill ||| ||| logp=0 +[KEY] ||| name ||| ||| logp=0 +[KEY] ||| name ||| ||| logp=0 +[KEY] ||| name:lg ||| ||| logp=0 +[KEY] ||| name:left ||| ||| logp=0 +[KEY] ||| name:right ||| ||| logp=0 +[KEY] ||| narrow ||| ||| logp=0 +[KEY] ||| nat_name ||| ||| logp=0 +[KEY] ||| nat_ref ||| ||| logp=0 +[KEY] ||| natural ||| ||| logp=0 +[KEY] ||| ncn_ref ||| ||| logp=0 +[KEY] ||| noexit ||| ||| logp=0 +[KEY] ||| note ||| ||| logp=0 +[KEY] ||| note ||| ||| logp=0 +[KEY] ||| nudism ||| ||| logp=0 +[KEY] ||| office ||| ||| logp=0 +[KEY] ||| official_name ||| ||| logp=0 +[KEY] ||| old_name ||| ||| logp=0 +[KEY] ||| old_name:lg ||| ||| logp=0 +[KEY] ||| old_ref ||| ||| logp=0 +[KEY] ||| oneway ||| ||| logp=0 +[KEY] ||| oneway ||| ||| logp=0 +[KEY] ||| opening_hours ||| ||| logp=0 +[KEY] ||| operator ||| ||| logp=0 +[KEY] ||| operator ||| ||| logp=0 +[KEY] ||| outdoor_seating ||| ||| logp=0 +[KEY] ||| overtaking ||| ||| logp=0 +[KEY] ||| parking ||| ||| logp=0 +[KEY] ||| parking:condition ||| ||| logp=0 +[KEY] ||| parking:lane ||| ||| logp=0 +[KEY] ||| passing_places ||| ||| logp=0 +[KEY] ||| phone ||| ||| logp=0 +[KEY] ||| phone ||| ||| logp=0 +[KEY] ||| place ||| ||| logp=0 +[KEY] ||| place_numbers ||| ||| logp=0 +[KEY] ||| population ||| ||| logp=0 +[KEY] ||| population ||| ||| logp=0 +[KEY] ||| postal_code ||| ||| logp=0 +[KEY] ||| power ||| ||| logp=0 +[KEY] ||| psv ||| ||| logp=0 +[KEY] ||| public_transport ||| ||| logp=0 +[KEY] ||| railway ||| ||| logp=0 +[KEY] ||| rcn_ref ||| ||| logp=0 +[KEY] ||| ref ||| ||| logp=0 +[KEY] ||| ref ||| ||| logp=0 +[KEY] ||| reference_point ||| ||| logp=0 +[KEY] ||| reg_name ||| ||| logp=0 +[KEY] ||| reg_ref ||| ||| logp=0 +[KEY] ||| Relation:restriction ||| ||| logp=0 +[KEY] ||| religion ||| ||| logp=0 +[KEY] ||| restaurant ||| ||| logp=0 +[KEY] ||| roadtrain ||| ||| logp=0 +[KEY] ||| rooms ||| ||| logp=0 +[KEY] ||| route ||| ||| logp=0 +[KEY] ||| sac_scale ||| ||| logp=0 +[KEY] ||| service ||| ||| logp=0 +[KEY] ||| service_times ||| ||| logp=0 +[KEY] ||| shop ||| ||| logp=0 +[KEY] ||| short_name ||| ||| logp=0 +[KEY] ||| site_type ||| ||| logp=0 +[KEY] ||| ski ||| ||| logp=0 +[KEY] ||| smoking ||| ||| logp=0 +[KEY] ||| smoking ||| ||| logp=0 +[KEY] ||| smoothness ||| ||| logp=0 +[KEY] ||| sorting_name ||| ||| logp=0 +[KEY] ||| source ||| ||| logp=0 +[KEY] ||| source:name ||| ||| logp=0 +[KEY] ||| source:ref ||| ||| logp=0 +[KEY] ||| source_ref ||| ||| logp=0 +[KEY] ||| sport ||| ||| logp=0 +[KEY] ||| star ||| ||| logp=0 +[KEY] ||| stars ||| ||| logp=0 +[KEY] ||| stars ||| ||| logp=0 +[KEY] ||| start_date ||| ||| logp=0 +[KEY] ||| surface ||| ||| logp=0 +[KEY] ||| surface ||| ||| logp=0 +[KEY] ||| tactile_paving ||| ||| logp=0 +[KEY] ||| tank ||| ||| logp=0 +[KEY] ||| tidal ||| ||| logp=0 +[KEY] ||| TMC:LocationCode ||| ||| logp=0 +[KEY] ||| todo ||| ||| logp=0 +[KEY] ||| toilets:wheelchair ||| ||| logp=0 +[KEY] ||| toll ||| ||| logp=0 +[KEY] ||| tourism ||| ||| logp=0 +[KEY] ||| tracks ||| ||| logp=0 +[KEY] ||| tracktype ||| ||| logp=0 +[KEY] ||| traffic_calming ||| ||| logp=0 +[KEY] ||| traffic_sign ||| ||| logp=0 +[KEY] ||| trail_visibility ||| ||| logp=0 +[KEY] ||| tunnel ||| ||| logp=0 +[KEY] ||| twitter ||| ||| logp=0 +[KEY] ||| url ||| ||| logp=0 +[KEY] ||| usage ||| ||| logp=0 +[KEY] ||| vehicle ||| ||| logp=0 +[KEY] ||| vhf ||| ||| logp=0 +[KEY] ||| voltage ||| ||| logp=0 +[KEY] ||| waterway ||| ||| logp=0 +[KEY] ||| webcam ||| ||| logp=0 +[KEY] ||| website ||| ||| logp=0 +[KEY] ||| website ||| ||| logp=0 +[KEY] ||| wheelchair ||| ||| logp=0 +[KEY] ||| wheelchair ||| ||| logp=0 +[KEY] ||| width ||| ||| logp=0 +[KEY] ||| wifi ||| ||| logp=0 +[KEY] ||| wikipedia ||| ||| logp=0 +[KEY] ||| wikipedia ||| ||| logp=0 +[KEY] ||| winter_road ||| ||| logp=0 +[KEY] ||| xing ||| ||| logp=0 +[INT] ||| 0 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 1 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 2 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 3 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 4 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 5 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 6 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 7 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 8 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 9 [INT,1] ||| [1] ||| logp=0 +[INT] ||| 0 ||| ||| logp=0 +[INT] ||| 1 ||| ||| logp=0 +[INT] ||| 2 ||| ||| logp=0 +[INT] ||| 3 ||| ||| logp=0 +[INT] ||| 4 ||| ||| logp=0 +[INT] ||| 5 ||| ||| logp=0 +[INT] ||| 6 ||| ||| logp=0 +[INT] ||| 7 ||| ||| logp=0 +[INT] ||| 8 ||| ||| logp=0 +[INT] ||| 9 ||| ||| logp=0 diff --git a/smtsemparsecpp/data/maybe_old/nlmaps.test.gold b/smtsemparsecpp/data/maybe_old/nlmaps.test.gold new file mode 100644 index 000000000..a999de60b --- /dev/null +++ b/smtsemparsecpp/data/maybe_old/nlmaps.test.gold @@ -0,0 +1,880 @@ +Städt. Gem. Grundschule - Dornberg, Städt. Gem. Grundschule - Südschule, Städt. Gem. Grundschule - Diesterwegschule, Städt. Gem. Grundschule Hillegossen, Städt. Gem. Grundschule - Brüder-Grimm-Schule, Städt. Gem. Grundschule - Am Waldschlößchen, Städt. Gem. Grundschule - Stiftsschule, Städt. Gem. Grundschule - Ummeln, Städt. Gem. Grundschule - Plaß-Schule, Städt. Gem. Grundschule Ubbedissen, Städt. Gem. Grundschule - Am Homersen, Städt. Gem. Grundschule - Wellbachschule, Städt. Gem. Grundschule - Heeperholz, Städt. Gem. Grundschule Milse, Städt. Gem. Grundschule - Hans-Christian-Andersen-Schule, Städt. Gem. Grundschule - Josefschule, Städt. Gem. Grundschule Altenhagen, Städt. Gem. Grundschule - Stieghorstschule, Städt. Gem. Grundschule Brake, Städt. Gem. Grundschule - Oldentrup, Städt. Gem. Grundschule - Schröttinghausen-Deppendorf, Städt. Gem. Grundschule - Hellingskampschule, Städt. Gem. Grundschule - Volkeningschule, Städt. Gem. Grundschule - Astrid-Lindgren-Schule, Städt. Gem. Grundschule - Eichendorffschule, Städt. Gem. Grundschule - Sudbrackschule, Städt. Gem. Grundschule - Fröbelschule, Städt. Gem. Grundschule - Brocker Schule, Städt. Gem. Grundschule - Frölenbergschule, Städt. Gem. Grundschule - Bückardtschule, Städt. Gem. Grundschule Theesen, Städt. Gem. Grundschule Vilsendorf, Städt. Gem. Grundschule - Martinschule, Städt. Gem. Grundschule - Windflöte, Städt. Gem. Grundschule - Osningschule, Städt. Gem. Grundschule - Quelle, Städt. Kath. Grundschule - Klosterschule +no +no +no +yes +Lower Granton Road +48.8337601 2.2980718, 48.8309772 2.2928903, 48.8339410 2.2950323, 48.8349198 2.2959694, 48.8385615 2.2891992, 48.8381491 2.2812684, 48.8811210 2.3732246, 48.8779567 2.3742972, 48.8781153 2.3727187, 48.8307104 2.3120538, 48.8367030 2.2977655, 48.8405834 2.2993396, 48.8463258 2.3017109, 48.8893373 2.3260663, 48.8822209 2.3332567, 48.8300409 2.3310810, 48.8332151 2.3611684, 48.8322056 2.3591376, 48.8712479 2.3628847, 48.8457070 2.3709161, 48.8778514 2.3653978, 48.8630548 2.3794488, 48.8563588 2.4021369, 48.8705460 2.3596280, 48.8297820 2.3231434, 48.8563936 2.4058269, 48.8560853 2.4051449, 48.8637600 2.3817121, 48.8316269 2.3219796, 48.8635138 2.4091631, 48.8518271 2.4017627, 48.8615895 2.3741154, 48.8602485 2.3756498, 48.8505112 2.3734697, 48.8460708 2.3737179, 48.8496820 2.3740608, 48.8490800 2.3750094, 48.8490486 2.3705522, 48.8551656 2.3600991, 48.8459906 2.3763165, 48.8474237 2.3715091, 48.8468588 2.3691970, 48.8934713 2.3255439, 48.8909446 2.3815154, 48.8472820 2.3181790, 48.8362003 2.3593757, 48.8863875 2.3186958, 48.8493049 2.3780822, 48.8493772 2.3775082, 48.8520216 2.4013947, 48.8521964 2.4026633, 48.8466612 2.3868559, 48.8475216 2.3868219, 48.8524263 2.3831212, 48.8538371 2.3820195, 48.8503861 2.3796236, 48.8495310 2.3784411, 48.8455986 2.3806304, 48.8507593 2.3788216, 48.8481410 2.3804390, 48.8824887 2.3152528, 48.8941438 2.3276936, 48.8332886 2.3557244, 48.8373701 2.2969471, 48.8662590 2.4060030, 48.8646392 2.4080329, 48.8651930 2.4052170, 48.8829824 2.3824508, 48.8541148 2.4028833, 48.8279466 2.3304154, 48.8619444 2.3516288, 48.8611025 2.3441314, 48.8500286 2.2891336, 48.8765487 2.3769364, 48.8752389 2.3825154, 48.8701184 2.3349370, 48.8773883 2.3713487, 48.8522577 2.3568176, 48.8443535 2.3549714, 48.8465773 2.3541793, 48.8618685 2.3509784, 48.8576627 2.3525871, 48.8587248 2.3501786, 48.8462572 2.3519644, 48.8637215 2.3528934, 48.8568317 2.3570851, 48.8572474 2.3590633, 48.8267666 2.3510620, 48.8257746 2.3474534, 48.8526580 2.3643423, 48.8658845 2.3575167, 48.8641612 2.3652384, 48.8885363 2.3534749, 48.8616550 2.3823490, 48.8405164 2.3219841, 48.8804129 2.3352691, 48.8794749 2.3336267, 48.8810172 2.3647737, 48.8814252 2.3658018, 48.8764651 2.3681086, 48.8383449 2.3457194, 48.8344303 2.3140331, 48.8620790 2.4013394, 48.8946928 2.3825532, 48.8943501 2.3144067, 48.8469243 2.3314911, 48.8721203 2.3123396, 48.8726364 2.3241496, 48.8804896 2.3190711, 48.8517936 2.3135511, 48.8466215 2.4086336, 48.8377558 2.3541054, 48.8387036 2.3509191, 48.8827594 2.3615206, 48.8830373 2.3593122, 48.8699837 2.3960859, 48.8790942 2.3629732, 48.8782374 2.3646053, 48.8825669 2.3666870, 48.8197848 2.3652117, 48.8448730 2.4055932, 48.8784075 2.3544102, 48.8410084 2.3943815, 48.8805633 2.3647086, 48.8796707 2.3636682, 48.8763896 2.3610152, 48.8803326 2.3639778, 48.8832959 2.3681138, 48.8859862 2.3714699, 48.8650067 2.2919269, 48.8374206 2.2895464, 48.8252367 2.3572513, 48.8671109 2.2875572, 48.8362585 2.3098681, 48.8503715 2.3790699, 48.8681484 2.2814134, 48.8662633 2.2740207, 48.8412244 2.3146196, 48.8416926 2.3144950, 48.8739761 2.3446348, 48.8525869 2.3545810, 48.8869795 2.3395686, 48.8556968 2.2748636, 48.8374709 2.3730609, 48.8314755 2.3541835, 48.8241809 2.3260188, 48.8232738 2.3262563, 48.8258667 2.3126560, 48.8468751 2.2700239, 48.8277034 2.3290464, 48.8714383 2.3749525, 48.8714917 2.3756604, 48.8425873 2.2683262, 48.8861537 2.3665372, 48.8291397 2.3173468, 48.8862628 2.3608446, 48.8899894 2.3635134, 48.8403968 2.2858802, 48.8451852 2.3793358, 48.8546996 2.3622532, 48.8873315 2.3475211, 48.8757382 2.2870119, 48.8427628 2.3131898, 48.8846035 2.3801294, 48.8287227 2.2733061, 48.8966748 2.3303545, 48.8957156 2.3308196, 48.8416043 2.3385745, 48.8282746 2.3160906, 48.8276845 2.3152274, 48.8471880 2.2956420, 48.8505880 2.3767286, 48.8573622 2.3923455, 48.8528949 2.2984341, 48.8451099 2.2604585, 48.8234260 2.3622734, 48.8237538 2.3645279, 48.8795652 2.3399721, 48.8782649 2.3446579, 48.8416777 2.3865802, 48.8356662 2.4056140, 48.8384665 2.3992857, 48.8390505 2.3976576, 48.8367225 2.4026707, 48.8420538 2.3352669, 48.8479330 2.3109984, 48.8400158 2.3885455, 48.8380676 2.3904670, 48.8372920 2.3914250, 48.8515655 2.3106825, 48.8573206 2.3799070, 48.8568774 2.3778976, 48.8791708 2.3545583, 48.8433099 2.2998521, 48.8422686 2.3028212, 48.8428121 2.3029849, 48.8766295 2.3386068, 48.8232376 2.3241574, 48.8623905 2.3858127, 48.8252485 2.3653047, 48.8235509 2.3617468, 48.8604567 2.3787781, 48.8941854 2.3817753, 48.8567231 2.3036505, 48.8316207 2.3444925, 48.8309991 2.3450497, 48.8448253 2.2941187, 48.8219529 2.3664594, 48.8241488 2.3575845, 48.8231660 2.3578863, 48.8264536 2.3293804, 48.8455609 2.2880163, 48.8703798 2.3425078, 48.8815370 2.2890680, 48.8814465 2.2860544, 48.8840798 2.2887768, 48.8642750 2.3750973, 48.8844394 2.3668122, 48.8279579 2.3273293, 48.8906856 2.3765193, 48.8328648 2.3160056, 48.8209152 2.3429194, 48.8217284 2.3424285, 48.8358292 2.2784139, 48.8465347 2.4059784, 48.8771396 2.3394367, 48.8777030 2.3395918, 48.8627753 2.2762117, 48.8627898 2.2765008, 48.8314375 2.3197845, 48.8378234 2.3078140, 48.8661247 2.3355594, 48.8767239 2.3326961, 48.8767816 2.3351954, 48.8747442 2.3555041, 48.8835914 2.3739721, 48.8649656 2.3746029, 48.8515852 2.2976307, 48.8695595 2.3743475, 48.8540049 2.4108468, 48.8580698 2.3901570, 48.8383400 2.3560643, 48.8466480 2.3513950, 48.8491900 2.3494261, 48.8286796 2.3431375, 48.8727378 2.3797947, 48.8942732 2.3207603, 48.8945377 2.3200415, 48.8934867 2.3227129, 48.8243403 2.3236549, 48.8273521 2.3254454, 48.8236051 2.3228034, 48.8314118 2.3268159, 48.8317243 2.3255633, 48.8730929 2.3615921, 48.8902931 2.3539796, 48.8912086 2.3476028, 48.8286520 2.3729316, 48.8443510 2.3492066, 48.8448929 2.3490511, 48.8947631 2.3433837, 48.8944528 2.3445585, 48.8931760 2.3432750, 48.8936140 2.3424950, 48.8699780 2.3603140, 48.8692770 2.3632250, 48.8689460 2.3599740, 48.8711600 2.3611170, 48.8718330 2.3625680, 48.8726030 2.3634490, 48.8551457 2.3064362, 48.8682200 2.3862795, 48.8569251 2.3724871, 48.8927820 2.3439810, 48.8652385 2.3467947, 48.8923110 2.3520290, 48.8442018 2.3394106, 48.8289915 2.3222506, 48.8593204 2.3472769, 48.8262063 2.3413104, 48.8856760 2.3378250, 48.8847970 2.3378803, 48.8528514 2.4064283, 48.8481389 2.4033143, 48.8285586 2.3331113, 48.8276535 2.3328559, 48.8513926 2.4064136, 48.8547850 2.2692675, 48.8651423 2.2891208, 48.8591269 2.4019235, 48.8600304 2.4040296, 48.8511503 2.3968083, 48.8863055 2.3474829, 48.8955331 2.3629901, 48.8523880 2.3766318, 48.8510502 2.3768840, 48.8507078 2.3790297, 48.8361116 2.3874192, 48.8235068 2.3533933, 48.8403649 2.3951878, 48.8907372 2.3457644, 48.8873229 2.3511583, 48.8376955 2.3463172, 48.8846893 2.3539417, 48.8416560 2.3224928, 48.8238291 2.3416075, 48.8577497 2.2739837, 48.8645340 2.4052672, 48.8780261 2.3268365, 48.8398765 2.2998351, 48.8816987 2.3281627, 48.8808802 2.3287802, 48.8360217 2.3527252, 48.8354391 2.3483666, 48.8498251 2.2722599, 48.8504305 2.2704038, 48.8528838 2.2756127, 48.8452361 2.4025749, 48.8805451 2.2927512, 48.8810529 2.2917751, 48.8872955 2.3492014, 48.8870640 2.3535779, 48.8825453 2.3671700, 48.8245686 2.3765029, 48.8813195 2.2953819, 48.8898589 2.3421554, 48.8906741 2.3434068, 48.8298993 2.3526634, 48.8281786 2.3525387, 48.8883534 2.3187513, 48.8890835 2.3224688, 48.8882779 2.2997302, 48.8939893 2.3329500, 48.8935546 2.3361391, 48.8947140 2.3351360, 48.8972639 2.3451996, 48.8979057 2.3340738, 48.8958814 2.3435581, 48.8912647 2.3345914, 48.8932962 2.3379872, 48.8493216 2.4063155, 48.8980433 2.3287001, 48.8979798 2.3377499, 48.8934867 2.3300359, 48.8928448 2.3280564, 48.8939770 2.3281101, 48.8942097 2.3280510, 48.8966030 2.3288474, 48.8932032 2.3271200, 48.8352792 2.2890637, 48.8220563 2.3588648, 48.8911913 2.3392274, 48.8499872 2.3478618, 48.8463001 2.3432338, 48.8498177 2.3482783, 48.8446190 2.3895985, 48.8497058 2.2914067, 48.8488722 2.2909525, 48.8516467 2.2919993, 48.8502983 2.2919285, 48.8430441 2.2833680, 48.8427407 2.2800381, 48.8569612 2.3997902, 48.8580950 2.4069089, 48.8574194 2.4075785, 48.8794256 2.3893510, 48.8824759 2.3233165, 48.8441370 2.3723808, 48.8533370 2.3079466, 48.8365811 2.3930159, 48.8457446 2.3932577, 48.8462449 2.3946154, 48.8682520 2.3960084, 48.8608742 2.3547652, 48.8644732 2.3715756, 48.8354190 2.3928675, 48.8389285 2.3961514, 48.8220200 2.3551611, 48.8713113 2.3039889, 48.8525737 2.3850093, 48.8777366 2.2878742, 48.8782149 2.3984639, 48.8761595 2.4036138, 48.8770014 2.4071325, 48.8814737 2.3729748, 48.8807820 2.3745741, 48.8843130 2.3091760, 48.8277275 2.3062018, 48.8287563 2.3015875, 48.8930590 2.3424350, 48.8750926 2.2837673, 48.8419136 2.3247626, 48.8385785 2.3227706, 48.8431110 2.2650609, 48.8594724 2.3491134, 48.8732334 2.3431543, 48.8774393 2.3494265, 48.8774984 2.3489986, 48.8849881 2.3071728, 48.8392226 2.3945147, 48.8446508 2.3731492, 48.8358462 2.2901616, 48.8852419 2.3788486, 48.8302344 2.3704299, 48.8814548 2.3450080, 48.8706548 2.3429479, 48.8657789 2.3469220, 48.8205834 2.3501740, 48.8234560 2.3498227, 48.8533833 2.3705439, 48.8239258 2.3642439, 48.8225364 2.3462505, 48.8227836 2.3470686, 48.8257161 2.3507275, 48.8257020 2.3460018, 48.8771653 2.3515517, 48.8763392 2.3556446, 48.8682998 2.4016012, 48.8697801 2.4028967, 48.8710424 2.4039943, 48.8720618 2.4046821, 48.8727710 2.3991263, 48.8650559 2.3971773, 48.8655264 2.3981686, 48.8344269 2.3672465, 48.8284908 2.3703198, 48.8258079 2.3604332, 48.8594207 2.3678969, 48.8248710 2.3196867, 48.8247915 2.3176000, 48.8301707 2.3337415, 48.8327495 2.3363992, 48.8333703 2.3323929, 48.8351459 2.3005345, 48.8353374 2.3022404, 48.8359317 2.3005525, 48.8440288 2.4105786, 48.8908851 2.3611676, 48.8263543 2.3123490, 48.8263472 2.3104526, 48.8274473 2.3073922, 48.8273336 2.3052629, 48.8372837 2.2784287, 48.8421188 2.2774869, 48.8260357 2.3595197, 48.8267984 2.3745150, 48.8276944 2.3706840, 48.8352679 2.2821201, 48.8558849 2.3751381, 48.8545384 2.3713228, 48.8287227 2.2995517, 48.8317316 2.3684804, 48.8395554 2.2619755, 48.8900586 2.3606383, 48.8715652 2.3861467, 48.8243982 2.3283690, 48.8437094 2.2827794, 48.8424843 2.2821195, 48.8418506 2.2815590, 48.8941162 2.3618889, 48.8933356 2.3615276, 48.8901273 2.3615642, 48.8397383 2.2615466, 48.8388211 2.2609376, 48.8900701 2.3596849, 48.8908274 2.3601975, 48.8903737 2.3602877, 48.8762839 2.3874942, 48.8258804 2.3538466, 48.8910933 2.3308427, 48.8840472 2.3777246, 48.8532483 2.3881569, 48.8310847 2.3808041, 48.8325943 2.3626569, 48.8276596 2.3564922, 48.8501827 2.3300326, 48.8729108 2.3892528, 48.8926192 2.3787994, 48.8594463 2.3795210, 48.8917249 2.3596358, 48.8933896 2.3598075, 48.8353878 2.3976074, 48.8393328 2.3898245, 48.8653879 2.3568423, 48.8858319 2.3683200, 48.8866975 2.3690587, 48.8918801 2.3632407, 48.8682722 2.3654615, 48.8557307 2.3714370, 48.8559510 2.3687418, 48.8632613 2.3690657, 48.8610703 2.3668902, 48.8615047 2.3648719, 48.8625898 2.3635210, 48.8624376 2.3641865, 48.8798043 2.3995910, 48.8294190 2.3760526, 48.8893342 2.3187256, 48.8435392 2.3876321, 48.8664075 2.3511385, 48.8752547 2.3898031, 48.8739410 2.3881658, 48.8740999 2.3854670, 48.8729667 2.3708014, 48.8536536 2.3652281, 48.8839440 2.2924260, 48.8841607 2.2936643, 48.8698850 2.3947954, 48.8869564 2.3228854, 48.8320028 2.3143006, 48.8764887 2.3444554, 48.8668204 2.3972017, 48.8708653 2.3088351, 48.8703111 2.3109794, 48.8438225 2.3306529, 48.8270270 2.3545480, 48.8441654 2.3422903, 48.8525204 2.3447674, 48.8436299 2.3520995, 48.8683492 2.3653361, 48.8444368 2.3317238, 48.8878098 2.3799348, 48.8455417 2.2847565, 48.8471374 2.2853376, 48.8640679 2.3650860, 48.8556183 2.3576323, 48.8725081 2.3789468, 48.8297066 2.3719377, 48.8658987 2.3445250, 48.8518380 2.3369161, 48.8368347 2.3064637, 48.8864904 2.3929252, 48.8409479 2.3520733, 48.8548553 2.3856848, 48.8551588 2.3869294, 48.8902682 2.3369864, 48.8648476 2.3661885, 48.8954171 2.3603570, 48.8462303 2.3082719, 48.8881816 2.3761106, 48.8224627 2.3258585, 48.8531572 2.3447239, 48.8495298 2.3495342, 48.8678864 2.3249680, 48.8406223 2.3162685, 48.8415260 2.3177790, 48.8516476 2.3430530, 48.8522113 2.3433310, 48.8799994 2.2917628, 48.8760421 2.3247263, 48.8259140 2.3418063, 48.8475433 2.3020749, 48.8848153 2.3335836, 48.8768943 2.3487181, 48.8340803 2.3449578, 48.8294924 2.3480229, 48.8483268 2.3315361, 48.8384271 2.3603013, 48.8718826 2.3260739, 48.8306192 2.3113448, 48.8708189 2.3031863, 48.8224695 2.3280079, 48.8867785 2.2961065, 48.8380124 2.3925384, 48.8393761 2.3972146, 48.8729941 2.3452007, 48.8363310 2.3511207, 48.8308373 2.3481222, 48.8328106 2.3467883, 48.8189800 2.3619660, 48.8852910 2.2958210, 48.8653095 2.3468349, 48.8780467 2.2960586, 48.8785810 2.2953365, 48.8785586 2.2954162, 48.8860217 2.2909345, 48.8342538 2.4039026, 48.8328046 2.3998654, 48.8897434 2.3684941, 48.8565550 2.3066461, 48.8662189 2.3411008, 48.8338577 2.3542234, 48.8588484 2.3622538, 48.8557977 2.3334124, 48.8537947 2.3371165, 48.8401916 2.3498220, 48.8405286 2.3497872, 48.8385999 2.2890636, 48.8410381 2.3194768, 48.8665493 2.2967911, 48.8732070 2.3032419, 48.8880020 2.3070560, 48.8894260 2.3021180, 48.8501962 2.3822724, 48.8469077 2.3843835, 48.8972873 2.3596764, 48.8588932 2.3539048, 48.8755295 2.3273771, 48.8757429 2.3272510, 48.8487020 2.3404334, 48.8341468 2.3292697, 48.8334796 2.3314573, 48.8772230 2.2922270, 48.8645795 2.2824038, 48.8338948 2.3299593, 48.8810540 2.2852110, 48.8839130 2.2907430, 48.8278199 2.3453108, 48.8746985 2.3800023, 48.8294976 2.3479900, 48.8746524 2.3059699, 48.8743208 2.3074302, 48.8798388 2.3745491, 48.8345685 2.3277223, 48.8824071 2.3708251, 48.8587325 2.3232162, 48.8736497 2.3266758, 48.8265944 2.3272409, 48.8538362 2.3322137, 48.8333843 2.3867041, 48.8808106 2.3727327, 48.8406281 2.3046706, 48.8533190 2.3669820, 48.8849774 2.3801611, 48.8854894 2.3815292, 48.8856226 2.3818987, 48.8830874 2.3878108, 48.8438379 2.3524738, 48.8438379 2.3524738, 48.8222496 2.3507278, 48.8851070 2.3036780, 48.8500752 2.3009300, 48.8496090 2.3539260, 48.8827302 2.3707486, 48.8609924 2.2838960, 48.8588106 2.2845183, 48.8306465 2.3335032, 48.8725875 2.3782042, 48.8755301 2.3910815, 48.8656747 2.3928548, 48.8827937 2.3812803, 48.8829828 2.3811149, 48.8755713 2.3983661, 48.8755863 2.3989012, 48.8767180 2.4047230, 48.8771405 2.4060238, 48.8591517 2.3557695, 48.8607522 2.3545715, 48.8608207 2.3543547, 48.8609593 2.3539532, 48.8610034 2.3538240, 48.8473351 2.3951813, 48.8472416 2.3961945, 48.8475546 2.3930901, 48.8476864 2.3973242, 48.8518800 2.3897180, 48.8505687 2.3925919, 48.8500483 2.3946347, 48.8575099 2.3809573, 48.8394381 2.3922677, 48.8395862 2.3939515, 48.8513422 2.3477785, 48.8745781 2.3873676, 48.8746258 2.3882005, 48.8753047 2.3926062, 48.8352480 2.2852870, 48.8583161 2.3282685, 48.8489230 2.3496710, 48.8367930 2.2958108, 48.8560138 2.2801813, 48.8568409 2.2789161, 48.8440022 2.2934092, 48.8642512 2.3689433, 48.8515116 2.3988887, 48.8907874 2.3784109, 48.8853720 2.2926050, 48.8583103 2.3822134, 48.8661157 2.3977226, 48.8671967 2.4092129, 48.8684503 2.4092879, 48.8621715 2.3774882, 48.8746232 2.3266224, 48.8467059 2.3087748, 48.8363398 2.2999746, 48.8653853 2.3686990, 48.8653218 2.3678518, 48.8413271 2.3076655, 48.8353741 2.3033228, 48.8477911 2.3189782, 48.8469433 2.3172689, 48.8685232 2.3413917, 48.8661744 2.3390884, 48.8833230 2.2987210, 48.8825490 2.2939790, 48.8615259 2.3704088, 48.8429707 2.3067870, 48.8642079 2.3555687, 48.8840313 2.3391067, 48.8616536 2.3637831, 48.8329453 2.2890084, 48.8670104 2.3443314, 48.8545691 2.3624284, 48.8410290 2.3406982, 48.8605092 2.3788107, 48.8547397 2.3848709, 48.8643859 2.3991316, 48.8298427 2.3644959, 48.8759393 2.2895530, 48.8619514 2.3325055, 48.8364245 2.3944189, 48.8770775 2.3600536, 48.8773723 2.3588805 +3 +48.8761391 2.3683073, 48.8722806 2.3695753, 48.8633521 2.3710595, 48.8633741 2.3663922, 48.8615468 2.3727192, 48.8717450 2.3763419, 48.8680319 2.3652462, 48.8658631 2.3695102, 48.8610722 2.3670951, 48.8655959 2.3652444, 48.8648944 2.3762643, 48.8684955 2.3674002, 48.8700553 2.3666721, 48.8738041 2.3703747, 48.8735031 2.3753876, 48.8722991 2.3766565 +49.3999791 8.6903579 +55.9082967 -3.3202293, 55.9101031 -3.3218843, 55.9102819 -3.3218516 +86 +49.4047830 8.6748233, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349 +48.8898010 2.2631730, 48.8488472 2.3218448, 48.9042834 2.3245110, 48.8343080 2.3572209, 48.8409458 2.3211307, 48.8912148 2.3413495, 48.8587314 2.3571857, 48.8857312 2.3605852, 48.8468885 2.3042494, 48.8451205 2.3179540, 48.8781729 2.3383243, 48.8958412 2.3317602, 48.8848959 2.2547563, 48.8277230 2.3275992, 48.8947570 2.3212156, 48.8869659 2.2870351, 48.8955708 2.3634069, 48.8850482 2.2942727, 48.8457586 2.3270884, 48.8529574 2.3648321, 48.8826020 2.2808120, 48.8686052 2.3443989, 48.8903038 2.3068904, 48.8852280 2.2812310, 48.8515711 2.3623262, 48.8512010 2.2689466, 48.8811804 2.2887869, 48.8424086 2.3513701, 48.8486340 2.2710840, 48.8825180 2.2782270, 48.8506640 2.3288086, 48.8718009 2.3486390, 48.8458790 2.3508800, 48.8527313 2.3035652, 48.8840568 2.3401680, 48.8461550 2.3472670, 48.8868850 2.2774260, 48.8868870 2.2774290, 48.8396279 2.2982746, 48.8509240 2.2966111, 48.8509826 2.3348581, 48.8287686 2.3270872, 48.8520914 2.3457231, 48.8520498 2.3471195, 48.8867960 2.3430272, 48.8432427 2.2926242, 48.8867143 2.3420696, 48.8366699 2.3085489, 48.8505880 2.3262612, 48.8399309 2.3505124, 48.8764338 2.3389235, 48.8616725 2.3400056, 48.8931401 2.3450441, 48.8653656 2.3326546, 48.8491582 2.3503166, 48.8814741 2.2832174, 48.8965261 2.3424350, 48.8773026 2.3313881, 48.8733469 2.3471633, 48.8447303 2.3253916, 48.8442129 2.2981973, 48.8446667 2.2793091, 48.8634023 2.3451770, 48.8595023 2.3413445, 48.8628813 2.3500673, 48.8486032 2.2912517, 48.8674454 2.3255009, 48.8700303 2.3244833, 48.8667853 2.3409551, 48.8695324 2.3500407, 48.8512807 2.3575810, 48.8465485 2.3480584, 48.8483547 2.3477114, 48.8494880 2.3471975, 48.8555103 2.3547440, 48.8590777 2.3508458, 48.8580098 2.3551110, 48.8589606 2.3577912, 48.8546118 2.3614419, 48.8542205 2.3613106, 48.8533048 2.3662366, 48.8654907 2.3542912, 48.8660191 2.3548825, 48.8661006 2.3605374, 48.8428826 2.3467101, 48.8608482 2.3604976, 48.8599672 2.3652140, 48.8405270 2.3419263, 48.8410301 2.3394202, 48.8436908 2.3411284, 48.8944110 2.2900374, 48.8842517 2.2713707, 48.8539667 2.3343780, 48.8547259 2.3309615, 48.8789795 2.3519205, 48.8747740 2.3583086, 48.8740835 2.3661993, 48.8700417 2.3629456, 48.8813655 2.3677357, 48.8772979 2.3532928, 48.8840257 2.3785053, 48.8810534 2.3798892, 48.8794623 2.3748343, 48.8485200 2.3302805, 48.8564112 2.3276604, 48.8612993 2.3760466, 48.8698301 2.3789769, 48.8700142 2.3783921, 48.8557998 2.3744188, 48.8558974 2.3697016, 48.8474963 2.3314096, 48.8893083 2.3797923, 48.8869224 2.3699944, 48.8434562 2.3271121, 48.8943860 2.2783554, 48.8927928 2.2841487, 48.8982598 2.2938030, 48.8583168 2.3192030, 48.8555836 2.3125833, 48.8589684 2.3183256, 48.8700842 2.3190066, 48.8732220 2.3198534, 48.8564528 2.3218645, 48.8762173 2.3188580, 48.8736950 2.3227605, 48.8815247 2.3258345, 48.8733405 2.3105570, 48.8735777 2.3103416, 48.8506595 2.3134348, 48.8760259 2.3039392, 48.8621157 2.3068946, 48.8596683 2.3051766, 48.8745162 2.3280282, 48.8794555 2.3310828, 48.8668072 2.3074982, 48.8654950 2.3060890, 48.8657975 2.3070013, 48.8675010 2.3006380, 48.8574433 2.3080496, 48.8726445 2.3819387, 48.8741680 2.3019883, 48.8734257 2.2991491, 48.8776180 2.3019924, 48.8754756 2.2984999, 48.9107538 2.2934354, 48.9065394 2.2786301, 48.9057281 2.3433234, 48.9067213 2.3326840, 48.9011517 2.3139807, 48.8935749 2.3205585, 48.8829281 2.3226645, 48.8890756 2.3246346, 48.8867932 2.3178582, 48.8948503 2.3340177, 48.8445961 2.3062818, 48.8842431 2.3378793, 48.8860532 2.3549746, 48.8950630 2.3500907, 48.8937115 2.3499835, 48.8313842 2.3453082, 48.8363739 2.3491795, 48.8300981 2.3497071, 48.8281048 2.3420248, 48.8373800 2.3594717, 48.8374878 2.3592366, 48.8389393 2.3641414, 48.8665953 2.2984346, 48.8676964 2.2984870, 48.8705973 2.2961633, 48.8320894 2.3350179, 48.8359370 2.3170768, 48.8343750 2.3166882, 48.8292677 2.3078658, 48.8274592 2.3274621, 48.8297428 2.2943273, 48.8338197 2.3000761, 48.8435148 2.3087965, 48.8426176 2.3045363, 48.8412280 2.3124626, 48.8691233 2.2846795, 48.8913761 2.2690108, 48.8871270 2.2780605, 48.8847742 2.2624168, 48.8767826 2.2512964, 48.8851384 2.2746989, 48.9043119 2.2705984, 48.8619110 2.2804834, 48.8624138 2.2754020, 48.9050688 2.2762869, 48.8556150 2.2665151, 48.8564447 2.2802338, 48.8913410 2.3603495, 48.8530450 2.2737818, 48.8516666 2.2709872, 48.8844851 2.3048254, 48.8855199 2.3157231, 48.8768832 2.2870709, 48.8871425 2.2927875, 48.8827050 2.3127686, 48.8786276 2.2908454, 48.8857930 2.3103556, 48.8848939 2.3050098, 48.8471651 2.2695111, 48.8478819 2.2687811, 48.8455075 2.2600500, 48.8385454 2.3357931, 48.8487775 2.3737984, 48.8484110 2.3432090, 48.8439710 2.3453279, 48.8518519 2.3229864, 48.8563283 2.2806650, 48.8499446 2.3217861, 48.8361319 2.2839215, 48.8684100 2.2864027, 48.8262227 2.3303813, 48.8837717 2.3316956, 48.8915499 2.3605260, 48.8550018 2.3125388, 48.8620284 2.2797894, 48.8689638 2.3733836, 48.9038936 2.3036986, 48.8297549 2.3118834, 48.8875038 2.3421102, 48.8410409 2.2994617, 48.8807628 2.3031693, 48.8351793 2.3380648, 48.8396505 2.2961266, 48.8834296 2.3531464, 48.8490871 2.3236292, 48.8908265 2.3499846, 48.8646767 2.2807027, 48.8827134 2.3392700, 48.8389100 2.2986886, 48.9118195 2.2920331, 48.8529376 2.3498716, 48.8462836 2.3235558, 48.9039189 2.3033583, 48.8508082 2.3229326, 48.8867662 2.2664861, 48.8464730 2.3488067, 48.8937959 2.3754227, 48.8337081 2.3004333, 48.8553966 2.3450136 +13 and Deanhaugh Street, 91 and Holyrood Road, 50 and Saint John's Road, 72 and Saint John's Road, 71 and George Street, 206 and Bruntsfield Place, 300 and Lawnmarket, 28 and Roseburn Terrace, 46 and Hanover Street, 144 and Marchmont Road, 29-31 and North Bridge, Whitehouse Road, 6 and Picardy Place, 2 and Biggar Road, 70 and St John's Road , 118 and Princes Street, 142-143-144 and Princes Street, 2-4 and Shandwick Place, 136 and Princes Street, 8 and George Street, 6 and George Street, 25-26 and West Maitland Street, 174-176 and Gorgie Road, 12 and North West Circus Place, 75 and George Street, 109 and George Street, 31-33 and Hanover Street, 3 and South Charlotte Street, 9 and Castle Street, 19 and Castle Street, 13 and New Kirkgate, 2 and Stafford Street, 19 and Freserick Street, 55 and George Street, 28-30 and Nicolson Street, 24 and Hanover Street, 61 and Forrest Road, 131 and Princes Street, 76 and Hanover Street, 24 and Saint Andrew Square, 28 and Saint Andrew Square, 120 and George Street, 72-74 and George Street, 20 and Hanover Street, 18 and South St Andrew Street, Morningside Road, 8 and Morningside Road, 163 and St John's Road, 28-30 and Hanover Street +Edinburgh Bicycle Co-operative, Sainsbury's Local, Tesco, Sign Design, Food & News, The Bike Station, Sainsbury's Local, C&G Cycles, Scotmid Co-operative, Margiotta, McColl's, Scotmid, Sainsbury's, Tesco, Marchmont Food & Wine, Loanhead Mini-Market, Freewheelin', Tills Books, Bilston Post Office, Tesco Metro, Margiotta, Londis, Fountain News, Falko Konditormeister, Sainsbury's Local, Scotmid, Vogue Video, W Armstrong & Son, Great Grog, Underground Solu'shn, Cafe Luca, Gourmet Pasta, Oxfam Book Shop, Oxfam, St. Columba's Hospice Book Shop (secondhand), Bodrum Fine Foods, Traditional Fire Surrounds, Prestige, Johnstons Cashmere, Thistle Do Nicely, Tesco Express, Present, Royal Mile Sweets, Reinkarnation, Tollcross Newsagent, H&T Pawnbrokers, Leatherwork, Peter Trainer - Corporate Services Ltd, The 3 Stooges, Direct Dry Cleaning, Zone Eros, Smooch, Cabaret, West Port News, Lily West, Edinburgh Books, Herman Brown, Boardwise, McAlister Matheson Music Ltd, GT II Newsagent, Tesco Metro, Costcutter, Sainsbury's Local, Eddie's Seafood Market, Flight Centre, Greggs, Sta Travel, Malone's Bakeries, SimplyFixIt, Coda Music, I Love Scotland, Best in Scotland, Peter Green, Gregg's, Scotmid, Word Power, Maqbools, Jordan Valley, Keystore Express, Timber Center, Natisse, Wangping Travel, Scotmid, Broadway Convenience Store, Poundsavers, Newstime & Party Planet, Scayles Music, Tesco Express, Freewheelin, Tesco Express, Sainsbury's, KB Shop, Pedals, Unknown Pleasures, Central Superstore, M.S. Newsagent, I J Mellis, Welch, Laid Back Bikes, La Croissanterie, Revitalize, Mathieson, Rose MacDonald, Spirit, Salon Dorcas, Mathiesons Bakers, Sideburns Barber Shop, Colinton Mains Convenience Store, Soul Cycles, Ideal Computing, Scotbet, C'est Si Bon, CHI, Craig Davidson Hair, Greggs, M.W. Christie, News Plus, Oddbins, A la carte, Albany Lettings, Bruntsfield Hoover Service, Cheynes, Tippie, Coco, Costcutter, Fabulous Jewels, Honeysuckle, Myles McCormick, Belquin Hearing, Rosie Brown, White Blossom Paper Boutique, All About Eve, Art Clay Scotland Jewellery Studio, Beauty Boutique, Fitnessbox, Framers, Halibut and Herring, Hollipop, R. C. Cunning, Stitches, Swinton, The Bay Tree Company, White Blossom Paper Boutique, esq barbers, 106, Accommodate Edinburgh, Davison Kilt Hire & Sales, Hill's, The Salvation Army, The Dress Fabric Company, Harlequin Antiques, Drinkmonger, Footworks, Inspire, JFK, Kilmour Thomson, MIss Dixiebelle, Melek's, Riva, Nordic Outdoor, Thrift Shop, Young Antiques, Zen Lifestyle, Jason Hall Hairdressing, Just Giles Too, The Zone, Earthy, Munro Glazing, National Tyres & Autocare, City Vintage, Everyone's Designs, Acanthus, Maddie & Mark's Shoes, The Edinburgh Bookshop, Trinity Factors, Vivaldi, George Hughes, ACE Property Management, Fifi Wilson, Gulliver's Toys and Gifts, Mosko, MvDonald Green, Links Barbers, Andiamo, Anderson Bain, Bruntsfield News, Indigo Hairdressing, Dig-in, ooh! ruby shoes, Sirs, Evans Cycles, Tesco Express, Hutchison Newsagent, Sandy's Barber Shop, University Gift Shop, Potter Shop, Charity Shop, High Spirit Co, Farmfoods, Planet X, Gordon Wilson, Crew, Choices, Klondyke Garden Centre, Brakesafe, Vino Wines, Vino Wines, Morrison's Bakery, Appellation Wines, Gregg's Bakery, Margiotta, EH11, Ink Shop Printing, Wallaces, Salvation Army, Scotts, Sainsbury's Local, Blackwells, Costcutter, The Bicycle Works, International Newsagents, Argos, Patisserie Valerie, J & S Newsagents, Premier, Lifestyle Express, Hamilton & Young Jewellery Desigers, Historic Connections Jewellery Designers, Murray's Tool Store, Maplin, Keir Street News, Fudge House, The Carson Clark Gallery, Bentley, Ferrari, Lamborghini, Bank, Vodafone, Mountain Warehouse, Thomas Cook, Card Factory, Three, Claire's, Phones 4U, O2, New Look, WH Smith, Republic, Superdrug, Monsoon, H Samuel, Game, Accesorize, Lochrin Autos, Afterz, Provenance Wines, View Forth Grocers, View Forth Glazing, Black & Lizars, Sainsbury's Local, Tattoo Studio, James Morrow, Bike Trax, Run 4 It, Specsavers, Age Scotland, Barnardo's, British Heart Foundation, Cancer Research UK, Capability Scotland, Chest, Heart and Stroke Scotland, Green Tara Charity Shop, Marie Curie Cancer Care, PDSA, Salvation Army, Visualise, Cork & Cask, A Touch of Silk, Andrew May, Aroosa Boutique, Chameleon, Costcutter, Crystal, Dough Re Mi, Simply Laundry, Glamour, Hospice of Hope, Romania, Dough Re Mi, Khyber, Pins & Needles, Swanson Decorators, The Pine Tree Bakery, Thrift Shop 2, Wallace Artworks Photography, Video Mahal, myBearpaw, 2U Beauty, Kami, Polwarth Garage, Shrub: Swap&ReuseHub, Tesco Express, EUSA JMCC Shop, The Chocolate Moose, Hawick, reddog music, Dunedin, Babu, Optical Express, Sheila's, Newcastle Furniture Company, Ishi, Marchmont Hardware, Michael Field, Salut, Fruit Corner, Nina's Mini market, Lyndsay Brown, Macintosh, Duke's, D Fraser McLeod, Jones, March Hair, W Armstrong & Son, Bohemia, Scotmid, Hewats, Futon Company, Napiers, TOAM, The Edge, Poundstretcher, Russell Paints, Fruitalicious, Richer Sounds, Specsavers, Schuh, Premier, Glamour Pooch, Barnardo's, Eden Aquatics And Reptiles, Clan House, Siller & Donaldson, Benny's, Greggs, Lidl, Poundland, Mc Coll's, Cashino, Hot Head, Tribe Tattoo, Digger, Crown Couture, Duncan McLaren, Timpson, EE, Body Shop, Outfit, Bubbles, Studio One, soren, Morningside Travel, Thomas Cook, Bakery Andante, Scotcleen, Newslink, Time & Tide, Bathstore, Bruntsfield Sports, Sofa So Good, Good Food, Home Hardware, Toys Galore, Johnsons, Sony Centre, Feather & Black, Rifkind & Brophy, Ann Brownlie, Costcutter, Laundrette, Merchiston Dry Cleaners, Peckhams, Internaçionale, Game, Peacocks, O2, Dorothy Perkins, Poundworld, 3 Store, Hallmark, Shoe Zone, Holland & Barrett, Semi-chem, Specsavers, Claire's, Thomson, Optical Express, Boots, Thomson, Barrhead Travel, Thomas Cook, Carphone Warehouse, EE, Thorntons, The Gift Shop, H Samuel, Bodycare, BHS, New Look, Blue Inc, WH Smith, Clarks, Waterstone's, Card Factory, Boscolo, AP Savile Stores, Ottavio, Deli Italia, Sainsbury's Local, The Harvest Garden, Comiston Store, Henderson Wines, Addiction, Elan Hairdressing, Kirkbrae Upholstery, Cochrane's Motor Company, Day-Today, Kurlz, Lasswade Newsplus, Margiotta Food & Wine, Amir & Sons, Bookworm, Cyrus Barbers, Flamingo Bathrooms, Muir & Sons DIY Store, Salon Fairnington, Shanas, The Scruffy Dog Co., Vulcan Gas Services, William Hill, The Nomads Tent, Dingwall Fabrics, Cameratiks, Capricorn, Jaxx, The Avenue Store, Be Inspired Fibres, EZ Sports, Marchmont Gallery, Jan de Vries, Carpet Rite, Sainsbury's Local, SK Gallery, Afrin Barber, Armchair Books, Peter Bell Books, Owl & Lion, Scottish Pictures, Day Today, News Trader, Omni Furnishing, Saltire Antiques, Andrew Stout Kitchens, Scotbet, Tiki Monki Tattoo, Edinburgh Golf Centre, High Spirit Co, Mr Man, fone customize, Belle Cheveaux, The Paint Shed, Nikki's Cakes, Craiglea Clocks, Edinburgh News, Harmonious & Healthy Chinese Clinic, LA hair solutions, Wright of Comiston, 2's Company, The Cycle Service, Greggs, Aytouns, Salon Sixty Nine, Barber Inc, Smith Bakery & Deli, Denis Equi, Goodfellow & Steven, Gwenne, Liberton Flowers, Liberton Food, News & Wine, Paper Rack, Scotmid Co-operative Funeral Directors, Mr Man, Simoly Clintons, Blinds, Cancer Research UK, Capital Cartridge, Capital Newsagents, Choco-latte, Cleaning Centre, Drum Cental, Dry Cleaners, Edinburgh Bakehouse, Edinburgh Bargain Stores, Edinburgh Fabrics, Eva's, First Class, Food for Thought, Greggs, H&T Pawnbrokers, Hifi & Video Repair Services, KHD, Cascade Guggling, Love Hate Tattoo, Lu's Tailor, Newington Stationers, Old and Newington, Pace Print, Ruby Rouge, Sainsbury's Local, Sumal's Newsagent, Tanz, The Edinburgh Framing Company, The Finishing Touch, The Tan Stand, Twice as Nice, Walton's, William Hill, William Hill, Wood Winters wines and whiskies, Your Store, baberfella, brew store, AA Bargain Store, Backtracks, Real Foods, Marchmont Garage No 1, Edinburgh Clothing Company, Flight Centre, Global News, House of Cashmere, Ladbrokes, Ladbrokes, Mode, Netversal, Pound Stretcher, Ripping Records, Rymans, Shoe Zone, Tailor Stop, The Scotland Shop, Yekta, A&E Locksmiths, Apothecary, Bailey's Barber Shop, Barbers 3-2-1, Barnardo's, Best-one, Bona Deli, Bonningtons, Browns, Cobblers Key, Ladbrokes, Leslie Deans & Co, Letslet, Medusa, Metro Barbers, Mobile Phone & Computer Repair Centre, Natural Foods etc, Polo Deli, Record Shack, Stitch Master, The Wee Boulangerie, Trumps, User 2, Warners, William Hill, Cash Generator, Forbidden Planet, Jacob, Mace, Allan K Jackson Antiques, Bodkin & Farrish, Bygone, Day-to-Day Express, Lorraine Graham Flowers, Majestic Wine Warehouse, The Bethany Shop, Hair Joy, Pan Pan Bridal, Development Direct, A Cunningham, Afrin Barbers, Amir & Son, Green House, Greggs, Niddrie Bargain Store, Polish Delicatessan, Shhh Hair & Beauty, Switch On Repairs, William Hill, iSee, Barber, Dalry hair stylists, M&D Caledonian, Allan Smith, Gregg's, Joe's Convenience Store, One to One, PC Clinic, R Brown & Son, Scotbet, Scotmid Co-op, Traditional Turkish Barbers, Urban Beauty, Jack's Grooming, Liberton Convenience Store, John Montgomery, Lady Muck, Meadow Deli & Bakery, rose & ammi flowers, Red Hot and Blue Tattoo, Big Ideas, Drift, The Mutts Nuts, Bacchus Antiques, Black Box, Golden Hare Books, The Christmas Shop, The Isle of Skye Candle Company, Bill Baber Knitwear, Costume Ha Ha, Sublime Hair Design, Analogue books, Avizandum, Deadhead Comics, Macdonadl Framing, Still Life, Transreal, Venus Flytrap Tattoo, Patrick Buckley Antiques, Antiques & Stuff, McKensie Knight Hairdressing, Lifestyle Express, Elle Hair & Beaty, Gilmerton Grocers, S D Wright, William Hill, Mama Said, Miss Katie Cupcake, Old Town Cotext, Swishprint, Whisky World, Cavanagh Antiques, Enchantment, Forever Scotland, Hair By Alfie, The Frayed Hem, Whiplash Trash, Cutie House, Eden, Kookie, Route One, The Scotsman, The Woollen Mill, Victor Scott Kilt Maker, Crest of Edinburgh, Ness, Mrs Stewarts Gift Shop, Games Workshop, McPherson, Iconic, News Experss, Purple Glamour, G-TEC, Hawick, Mr Wood's Fossils, W. Armstrong & Son, Cutz Barbers, Mail Boxes Etc., Marie Curie Cancer Care, Sally, The Phone Box, Buckstone News, Headturners, Ruth Ross, Ballantrae Cashmere, Best Of Scottish, Edinburgh Cashmere Boutique, Fudge Kitchen, Heritage of Scotland, House of Cashmere, Johnstons of Elgin, Palenque, Real Scot Shop, Really Scottish, Royal Mile Jewellery, The Nutcracker Christmas Shop, Ali Willmore Hairdressing, Antiques, Carson Clark Gallery, Kilberry Bagpipes, Tete a Tete Foto, Cycle Scotland, Old Town Tattoo, Chic, Cyan, Harmony Complementary Therapies, Scottish Regimental Store, Studio XIII Gallery, Tangram, Barnets, Celtic Craft Centre, Cashmere And Kilt Centre, Geoffrey (Tailor) Kiltmaker, John Morrison Kiltmakers, Ladbrokes, The Bonnie Blue, The Tappit Hen, Wee Gift Shop, Whisky & Wine, Hector Russell, Whisky & Wine, New Image, Whiski Rooms, Corniche, Aquila, Lickety Splits, Saks, The Scottish Grocer, Cranachan & Crowdie, Eyden, Demijohn, Howies, I.J. Mellis Cheesemonger, Swish, The Whisky Shop, Clarksons, Museum CONTEXT, Walker Slater, Bobs, Games Hub, The Vapour Lounge, John Saunderson, Lupe Pinto, Mr Bun's Bakery, Pekoe Tea, Tollcross Superstore, Nicolson, Prestige Scotland, Celtic, Chinese Doctor, Ye Olde Christmas Shoppe, Hair of the Dog, Keystore, Laidlaw's, Red Ox, Scotmid, Sun Factor, X-box Heat, Day-Today, Glenvarloch Bakery, Wash Hoose, I love Edinburgh, Neanie Scot, The Royal Mile Factory Outlet, Bonnie Scotland, Edinburgh Copy Shop, Kleen Cleaners, Lo Demore, Pinnies and Poppy Seeds, Psychomoda, Ragamuffin, Rene Walrus, Slanj, Solo, Thomas Marin Funeral Director, Tidalfire, Head Candy Style Boutique, Simply Bridsmaid, Call Print, Edinburgh Arts and Picture Framers, A.Jack, Myra Crawford, RJ's, Russia Travel, The Real. A.B. Cave, VIP's Barber, Viva, Cross Fitness Training, iQ, We Fix, Tattoo Haven, Myriad, N&N Barbers, Scotbet, Sandher & Sons, Ben's Newsagant, Cash Converters, Green Print, Easy Let Property, USA Nailz, Welch Fishmonger, Guaranteed Watch & Clock Repairs, Focus, The Royal Mile Gallery, Treasurer 1874, Tribal Body Art, Macraes of Edinburgh, Best Fae Scotland, Cadenhead's Whisky Shop, Canongate Crafts, Celtic Design Jewellery, Holyrood Cashmere, Simply Scottish, The Wyrd Shop, Backbeats Records, Cables and chips, Chu's Salon, Euronics, Events Armoury Design and print, Hollan and Barret, Oxfam, Oxfam, Richmond Barbers, Shelter, Southside Glazing and Joinery, The Clothing Bank, Adult Conceptions, Varsity Music, Woods, Ballantrae Cashmere, Clans Of Scotland, Edinburgh Cashmere & Lambswool, Elgin Cashmere, House Of Cashmere, Kiltane, Ness, The Whisky Trail, Victoria Regalia, Camera Obscura, Cashmere and Scarf Company, Castle Gift Shop, Highland House, House Of Scotland, J & S - Newsagent, The Court Curio Shop, The Wee Scotland Shop, Bingo, Cashmere House, Harris Tweed Hebrides, Heritage Of Scotland, Heritage Of Scotland, James Court City Refund, Jamie Scott’s Millshop, Royal Mile Factory Outlet, The Woolen Factory Outlet, Cheynes, Southside Books, Applejack, Arika, Boosh Boosh Boosh, Cowgate Newsagant, Crescent print LTD, KSI, Spectrum Graffiri shop, Antique Jewellers, House of Edinburgh, James Pringle Weavers, Marchbrae, Royal Mile Whiskies, The Cigar Box, House of Edinburgh, The Whisky Trail, Bridge Express, Greyfriars, The Golden Scissors, Dolly & Mop, Chest Heart & Stroke Scotland, Cheryl Irvine, New Leaf Co-op, The Opticians At Marchmont, Mo's Moroccan, Paper Tiger, Arden, Braemore, Hunters, Kristofferson, SH Jewellery, Shelter Scotland, Technik, The Salvation Army, Co-operative Food, Malone's Bakery, Duke's, Scotmid, Edinburgh Harley-Davidson, Tesco Express, Morisons, Tesco Colinton, IKEA, Smyths, Co-op, Western VW, Marks and Spencer, Sainsbury's, Costco, Waitrose, Lidl, Matalan, Jewson Timber, Homebase, Dobbies Garden Centre, The Avenue Store, Niddrie Community Store, Jazz Licenced Grocers, Scotmid, Tesco Metro, Boots, Waterstone's, Mothercare, Porsche, British Heart Foundation, Dobbies Garden Centre, Kevock Garden Plants, Homebase, Scotmid, Lidl, Co-operative Food, M&S Simply Food, ACE Car Repair Ltd, Morrisons, Honda Cars, Mercedes, Beaverbrooks, USC, Vision Express, Clarks, The Perfume Shop, Hobbycraft, H&M, Carphone Warehouse, Next, Victor Paris, Design Shop, ASDA, Grahams and Ceramic Tiles, Earthy, Cotterell Light Centres, Farmfoods, Edinburgh Triumph, Two Wheels, Two Wheels Motorcycle Training, Co-op, David Phillips Autos, Pentland Plants, Kwik Fit, Sterling Furniture, Martin & Frost, Mamas & Papas, SportsDirect.com, Superdrug, Aitken & Niven, Braid Hills Golf Course Pro Shop, Wee Braids Golf Course Shop, Angle Park Auto Centre, Edinburgh Taxi Services, Kwik Fit, Harveys, Comet, Dunelm, Argos, Halfords, Laura Ashley, Straiton Beds, Brantano, ponden home, Sports Direct, Harry Corry Interiors, Pets At Home, Oak Furniture Land, Carpet Right, Dreams, Nike Factory Store, Carphone Warehouse, Home Bargains, TK Maxx, Discount UK, Bed Shed, Next, Farmer, Cook, Sainsbury's Local, Costcutter, Edinburgh Harley-Davidson, Poundstretcher, JD, River Island, Norman Stuart Auto Services, Criterium Cycles, White's Auto Services, BR Autos, GBL Motors, The Co-operative Food, Blackford Avenue Post Office, Hoffman Motors, Nairne Convenience Store, Marion's hairdressing, Londis, Scott of Dalry (MOT), VW Van Centre, Tartan Weaving Mill, Tesco Express, Gilmerton Store, ASDA Chesser, Forall's garage, Sofaworks, Majestic Wine Warehouse, Bolly Wood The Coffee Box, Nairne Convenience Store +Da Claudia +H+G Bank +no +no +-37.7800215 144.9779631, 45.4198724 -75.6960180, 45.5279091 -73.5887289, 45.4211130 -75.7128255, -37.7723825 144.9906162, 49.2726880 -123.1453296, 48.4326103 -123.3782642, 49.2734016 -123.1023382, 51.1051852 -115.3671737, 19.4292171 -99.1620068, -34.5831335 -58.3925568, 43.0679530 -89.4121987, 45.4202979 -75.7121860, 47.6481146 -122.3499046, 47.5713131 -122.3494375, 37.7769589 -122.4167994, 34.0686430 -118.4459659, 40.0173629 -105.2784426, 38.8991880 -77.0721356, 45.5140728 -122.6737551 +48.8758196 2.3557131, 48.8510838 2.3409320, 48.8730354 2.3533915, 48.8569549 2.3497208, 48.8562998 2.3535246, 48.8414636 2.2996634, 48.8514966 2.3009053, 48.8542089 2.3049026, 48.8539589 2.3040725, 48.8494772 2.3513322, 48.8521302 2.3358217, 48.8553332 2.3464366, 48.8528715 2.3435491, 48.8614418 2.2990188, 48.8513763 2.3250565, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8327885 2.2772902, 48.8375553 2.3201124, 48.8391922 2.3168608, 48.8453963 2.3255943, 48.8405754 2.3213430, 48.8445885 2.3722564, 48.8439502 2.3728916, 48.8310773 2.2770656, 48.8616525 2.3535093, 48.8541427 2.3314320, 48.8501755 2.3620809, 48.8566284 2.3271644, 48.8406788 2.3548958, 48.8661306 2.2897626, 48.8813252 2.3220105, 48.8610917 2.3414339, 48.8706262 2.3242484, 48.8722447 2.3050374, 48.8820013 2.3330275, 48.8450073 2.3757975, 48.8442783 2.3769332, 48.8466279 2.2560360, 48.8351429 2.3731146, 48.8413725 2.3310575, 48.8694555 2.3406786, 48.8388399 2.2765067, 48.8398137 2.3124499, 48.8176870 2.3444409, 48.8398451 2.2739161, 48.8539232 2.3938833, 48.8742514 2.3675121, 48.8470632 2.3766059, 48.8566083 2.3533348, 48.8895985 2.3191714, 48.8632334 2.3399229, 48.8493535 2.3714981, 48.8651992 2.3333992, 48.8565989 2.4064934, 48.8584702 2.3501538, 48.8585293 2.3496680, 48.8534880 2.3040058, 48.8411654 2.3324666, 48.8463168 2.3872077, 48.8594652 2.3441791, 48.8596955 2.3406333, 48.8620104 2.3390904, 48.8611512 2.3495492, 48.8661000 2.3337438, 48.8652752 2.3332993, 48.8677297 2.3303206, 48.8670418 2.3496240, 48.8613539 2.3526643, 48.8563329 2.3553132, 48.8657000 2.3535311, 48.8652453 2.3533870, 48.8443992 2.3820174, 48.8691076 2.3112127, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8729875 2.3210140, 48.8726568 2.3215983, 48.8776040 2.3524312, 48.8741556 2.3274201, 48.8758310 2.3206114, 48.8819076 2.3140835, 48.8751556 2.3094294, 48.8749212 2.3089779, 48.8720777 2.3056372, 48.8715518 2.3062553, 48.8688688 2.3012670, 48.8720769 2.2997667, 48.8721868 2.3033146, 48.8707626 2.3051595, 48.8701277 2.3044062, 48.8674712 2.3054788, 48.8667016 2.3011326, 48.8655118 2.3015698, 48.8713039 2.2970137, 48.8741074 2.2994150, 48.8744570 2.3007315, 48.8763620 2.3015161, 48.8767241 2.3018198, 48.8782249 2.2965872, 48.8888115 2.3939896, 48.8972935 2.3883460, 48.8971965 2.3887591, 48.8952805 2.3850234, 48.8599671 2.3250425, 48.8705380 2.3685763, 48.8293967 2.3790084, 48.8401996 2.3509062, 48.8403358 2.3506549, 48.8725027 2.2851552, 48.8736890 2.2914977, 48.8768968 2.2823678, 48.8722856 2.2840680, 48.8693205 2.2843750, 48.8677158 2.2805552, 48.8581528 2.2756131, 48.8537034 2.3664740, 48.8749075 2.3418631, 48.8770209 2.3458704, 48.8837184 2.2879868, 48.8394916 2.2533681, 48.8396031 2.2624046, 48.8471492 2.3421620, 48.8925549 2.3269370, 48.8507465 2.3484894, 48.8470699 2.3417135, 48.8613479 2.3294517, 48.8420353 2.3432522, 48.8170906 2.3594427, 48.8623669 2.3098112, 48.8593696 2.3144127, 48.8414784 2.2515179, 48.8734234 2.3305255, 48.8715078 2.3339896, 48.8459424 2.3060603, 48.8707314 2.3497989, 48.8800493 2.3536899, 48.8820806 2.3518696, 48.8644441 2.3741599, 48.8539335 2.3775047, 48.8507314 2.3754330, 48.8540777 2.3579438, 48.8466539 2.3999463, 48.8319830 2.3768014, 48.8720026 2.3359899, 48.8543455 2.3561847, 48.8472625 2.3418020, 48.8703752 2.3029557, 48.8738314 2.3297043, 48.8240781 2.3667729, 48.8790223 2.2930687, 48.8246116 2.3235303, 48.8207875 2.3249534, 48.8824856 2.3440987, 48.8558178 2.3536690, 48.8647821 2.3501454, 48.8815254 2.3543330, 48.8313000 2.3882082, 48.8424224 2.3451614, 48.8632587 2.2533252, 48.8660712 2.2550204, 48.8634010 2.3478656, 48.8580953 2.3988158, 48.8353252 2.3805436, 48.8823708 2.3546777, 48.8671989 2.3667020, 48.8410399 2.3210471, 48.8429112 2.3235502, 48.8423484 2.3212962, 48.8320324 2.3866588, 48.8336457 2.2895795, 48.8539543 2.3320945, 48.8764091 2.3236995, 48.8476756 2.3411763, 48.8305332 2.3138423, 48.8763053 2.2944546, 48.8763219 2.2947532, 48.8788573 2.2928071, 48.8761984 2.2930848, 48.8760963 2.2927992, 48.8532277 2.3589001, 48.8817162 2.3010162, 48.8336788 2.3331356, 48.8863474 2.2875098, 48.8740366 2.4050675, 48.8780164 2.4108510, 48.8260635 2.3616139, 48.8239032 2.3657211, 48.8937054 2.3492738, 48.8893918 2.3447704, 48.8706840 2.3716682, 48.8832655 2.3157338, 48.8295968 2.3493740, 48.8892294 2.3935497, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8962268 2.3624023, 48.8381765 2.3815493, 48.8537886 2.3474561, 48.8731938 2.3290960, 48.8212980 2.3643164, 48.8549966 2.4012505, 48.8550533 2.3731077, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8292317 2.3084985, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8840501 2.3678392, 48.8465587 2.2612329, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8868617 2.3693195, 48.8698031 2.3099017, 48.8804349 2.3673901, 48.8343023 2.3639410, 48.8457219 2.3091127, 48.8852759 2.3287719, 48.8853098 2.3300207, 48.8411155 2.2644568, 48.8399853 2.4354878, 48.8720076 2.3153410, 48.8970228 2.3778045, 48.8335588 2.3347973, 48.8743552 2.4101245, 48.8459148 2.3453004, 48.8467486 2.3457052, 48.8464858 2.3468868, 48.8373806 2.3847107, 48.8949298 2.3437869, 48.8529015 2.2772159, 48.8641419 2.3059394, 48.8171104 2.3592722, 48.8706191 2.3164188, 48.8702691 2.3171729, 48.8812617 2.3221621, 48.8784814 2.3330760, 48.8456516 2.3465029, 48.8997033 2.3290489, 48.8413908 2.3722764, 48.8256327 2.3320576, 48.8655047 2.2723194, 48.8708239 2.3060540, 48.8441230 2.3564135, 48.8558123 2.3528997, 48.8562804 2.3531597, 48.8362151 2.2568329, 48.8388419 2.4599061, 48.8695357 2.3416876, 48.8694697 2.3420289, 48.8696274 2.3412758, 48.8626465 2.3146531, 48.8465734 2.3127269, 48.8565840 2.2986464, 48.8460758 2.3058827, 48.8204134 2.4518397, 48.8477097 2.3117779, 48.8477196 2.3115767, 48.8784451 2.2852017, 48.8624814 2.3328854, 48.8543462 2.3467503, 48.8252592 2.4120396, 48.8614367 2.2958080, 48.8605025 2.2943088, 48.8351030 2.4463930, 48.8632541 2.2402764, 48.8618634 2.4100811, 48.8361491 2.2692910, 48.8358166 2.2686689, 48.8222263 2.4483812, 48.8227496 2.4495152, 48.8662682 2.3974540, 48.8381010 2.3148758, 48.8374220 2.3149466, 48.8366275 2.4409423, 48.8999909 2.3448173, 48.9000149 2.3394792, 48.8410576 2.3578991, 48.8379027 2.3622168, 48.8351429 2.4475725, 48.8220818 2.3406030, 48.8531376 2.3591975, 48.8534868 2.3580109, 48.8633082 2.2839525, 48.8171862 2.3326710, 48.8435052 2.3798226, 48.8364120 2.2686709, 48.8764119 2.3969357, 48.8298857 2.3251080, 48.8341531 2.3029351, 48.8341115 2.3027113, 48.8773569 2.4091134, 48.8625518 2.2289847, 48.8686047 2.3172472, 48.8400598 2.2883156, 48.8299997 2.3587358, 48.8299341 2.3586911, 48.8464288 2.2486197, 48.8480791 2.2445917, 48.8947243 2.3931498, 48.8291320 2.4574737, 48.8236788 2.4563722, 48.8705811 2.3031146, 48.8387116 2.3423289, 48.8293120 2.2902026, 48.8321851 2.2870636, 48.8285252 2.2905906, 48.8281768 2.2910589, 48.8301724 2.2903291, 48.8284840 2.2907616, 48.8285477 2.2904442, 48.8294272 2.2900019, 48.8284711 2.2909813, 48.8302673 2.2901359, 48.8322580 2.2868131, 48.8516565 2.2795993, 48.8762399 2.3589688, 48.8640413 2.2547307, 48.8688683 2.2484552, 48.8522560 2.2872933, 48.8505461 2.2881984, 48.8507146 2.2878412, 48.8592142 2.2272202, 48.8944990 2.3592670, 48.8964589 2.3589627, 48.8526051 2.2917373, 48.8527475 2.2917705, 48.8524256 2.2914147, 48.8520645 2.2878286, 48.8530231 2.2902364, 48.8521480 2.2910880, 48.8461602 2.2777848, 48.8315682 2.3419531, 48.8844978 2.3727600, 48.8214447 2.3591422, 48.8210623 2.3592593, 48.8296129 2.3926750, 48.8953032 2.3950120, 48.8385749 2.3187258, 48.8621437 2.4083353, 48.8625288 2.4074996, 48.8622745 2.4082713, 48.8467200 2.3470841, 48.8594021 2.3997394, 48.9014459 2.3845889 +yes +12 +0 +20 +yes +55.9498298 -3.1876708, 55.9483392 -3.1987455, 55.9458479 -3.1861307, 55.9450120 -3.1915042, 55.9471021 -3.1971869, 55.9486422 -3.1962925, 55.9487023 -3.1964050, 55.9501209 -3.2050581 +2 +yes +129 +48.8542243 2.3500208, 48.8697525 2.3517557, 48.8606768 2.3486445, 48.8240998 2.3638457, 48.8214836 2.3639524, 48.8557761 2.3581437, 48.8804310 2.3540947, 48.8801870 2.3552631, 48.8613752 2.3532868 +9 +13 +49.4333190 8.6867073, 49.4189644 8.6822373, 49.4199838 8.7597906, 49.4227392 8.5971994, 49.4313284 8.6416542, 49.4216061 8.6481916, 49.4437124 8.7590947, 49.4213729 8.7461819, 49.4143929 8.7631903, 49.4078072 8.7077293, 49.4127417 8.7657609 +14 +10 +49.4081527 8.6735594, 49.4136373 8.6927118, 49.4095406 8.7032850, 49.4114566 8.7107312, 49.3812968 8.6894052, 49.4028742 8.6919803, 49.4047754 8.6846789, 49.3654480 8.6869739 +0.75472968250310635 +yes +48.8907119 2.3781803 +M & D`s Theme Park, Active Kid Adventure Park, Loudon Castle +Park Aquatico, Frontier Town, Heritage USA, Great Island Science and Adventure Park, Six Flags New Orleans (Historical), Fun Town, Ruins of Mr Marvel's Fun Park, Wonderland, Holy Land USA +48.8517205 2.3567051, 48.8435991 2.3495369, 48.8443095 2.3492103, 48.8530106 2.3457721, 48.8532232 2.3449207, 48.8396212 2.3497285, 48.8543470 2.3717003, 48.8692308 2.2856346 +yes +3 +Kurpfälzisches Museum, Heidelberg Marriott Hotel, EMBL ISG Hotel, S-Printing Horse, IBIS, Stadtansicht von Matthäus Merian, Goldener Falke, Hotel zum Ritter St. Georg, Europäischer Hof, Catenan, Dem Lebendigen Geist, Reisebüro Bechtel, Qube Hotel, Bunsenstatue, Kasse, Scheffelterrasse, NH Heidelberg, Hotel Kulturbrauerei Heidelberg, Hotel Holländer Hof, Arthotel Heidelberg, Hotel Backmulde, Hip Hotel, Myxomatose-Hase, Der Zeitungsleser, Wäscherinnenbrunnen, Bergheim 41, Holiday Inn Express Heidelberg City Centre, Jugendherberge Heidelberg International, Karlstor, Carl Bosch Museum, Heidelberg Suites, Crowne Plaza Heidelberg, Leonardo Hotel Heidelberg, Waldpiraten Camp, Alte Brücke, Museum am Ginkgo, Neu Heidelberg, Heidelberger Schloss and 49.4114718 8.7028414, 49.4091649 8.6726851, 49.3703369 8.7056886, 49.4048641 8.6772256, 49.4151131 8.6716059, 49.4033496 8.6774778, 49.4152002 8.7091846, 49.4118757 8.7108162, 49.4117371 8.7091875, 49.4079388 8.6952668, 49.4171164 8.6729011, 49.4167279 8.6721344, 49.4277422 8.6844557, 49.4080500 8.6812645, 49.4107178 8.6980284, 49.4149294 8.6640840, 49.4124856 8.7129396, 49.4121179 8.7180590, 49.4073921 8.6825502, 49.4131432 8.7133745, 49.4131065 8.7092091, 49.4095865 8.7066610, 49.4121564 8.7037030, 49.4115410 8.7046342, 49.4179402 8.6696532, 49.4180276 8.6704533, 49.4166963 8.6728921, 49.4097773 8.6939787, 49.4157564 8.7618968, 49.4162174 8.7624204, 49.4187291 8.7567160, 49.4083367 8.6887571, 49.4127706 8.7178630, 49.4058252 8.6861495, 49.4162463 8.6598488, 49.4141369 8.7180619, 49.4154642 8.7301120, 49.4151692 8.7066598, 49.4066053 8.6919726, 49.3870250 8.6611599, 49.3864727 8.6987364, 49.4142413 8.7095334, 49.4154357 8.7295799, 49.4006254 8.6417864, 49.4105621 8.7153069 +55.9516586 -3.1968492, 55.9899700 -3.3959164, 55.9498298 -3.1876708, 55.9483392 -3.1987455, 55.9875100 -3.4039888, 55.9539273 -3.1922043, 55.9902127 -3.3859837, 55.9906294 -3.3854450, 55.9450120 -3.1915042, 55.9521101 -3.1881430, 55.9471021 -3.1971869, 55.9906129 -3.3848526, 55.9504193 -3.2001988, 55.9505097 -3.1997700, 55.9486422 -3.1962925, 55.9487023 -3.1964050, 55.9501209 -3.2050581 +49.4047830 8.6748233, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349 +EE, Carphone Warehouse, O2, Phones 4 U, O2, Phones 4u, EE, Vodafone, 3 Store, Carphone Warehouse, Three, O2, EE, Carphone Warehouse, EE, O2, Carphone Warehouse, Phones 4U, EE, O2, 3 Store, Carphone Warehouse, EE, fone customize, AA Bargain Store, Adeel, Repair Centre, The Phone Box, Fones 2 You, Mac's Audios +St Margaret's Well, St Anthony's Well, Well, Well, Well, Well, Carlops Drinking Fountain, Well +86 +55.9849796 -3.1929699 +Schwan Apotheke +55.9545272 -3.4038139, 55.9848485 -3.4000740, 55.9895563 -3.3951093, 55.9494846 -3.2921322, 55.9263848 -3.3788125, 55.9087627 -3.3266637, 55.9776182 -3.2998389, 55.9242973 -3.3802986 +4 +22 +yes +7 +fr:Pech de Bugarach, ca:Carlit, ca:Puigmal, ca:Pic d'Eina, ca:Pic de Noufonts, ca:Puigpedrós, ca:Tosseta de l'Esquella, ca:Pic de Finestrelles, ca:Puig Peric, ca:Puig de Tres Vents, ca:Pic de Bastiments, ca:Pic de la Dona, ca:Puig de Coma Ermada (Setcases), fr:Salasc, ca:Puig d'Ombriaga, ca:Pic de l'Infern, ca:Comanegra, ca:Puig de la Llibertat +55.9358156 -3.2103653 +yes +49.3641303 8.7007952, 49.4141949 8.6492596, 49.4249111 8.6599633, 49.4225922 8.6610898, 49.4219827 8.6614068, 49.4211061 8.6602870, 49.4214429 8.6617205, 49.4246509 8.6581222, 49.4262527 8.6639370, 49.4313712 8.7044406, 49.3766520 8.6808039, 49.3698079 8.7065866, 49.3914129 8.6717410, 49.4251190 8.7424393, 49.3964286 8.6885028, 49.4004885 8.6442468, 49.4242274 8.6810082, 49.4145161 8.6481333, 49.4145807 8.6502220, 49.4149318 8.6512324, 49.3966637 8.6732063, 49.3971476 8.6732324, 49.3916938 8.6839480, 49.3968837 8.6544104, 49.3739291 8.6752906, 49.3752173 8.6756735, 49.3735327 8.7051808, 49.4097428 8.7101158, 49.3756496 8.6793690, 49.3837424 8.6829733, 49.4066140 8.6679554, 49.3932939 8.6684461, 49.3896124 8.6636980, 49.3905297 8.6647270, 49.3896390 8.6650346, 49.3640640 8.7009270, 49.3698079 8.7065866, 49.3909393 8.6664585, 49.4095754 8.6826250, 49.3925312 8.6704324, 49.3962482 8.6870602, 49.3837961 8.6623413, 49.3839957 8.6617176, 49.3963303 8.6519757, 49.4176154 8.6501589, 49.3970830 8.6531353, 49.4102687 8.7705371, 49.3802540 8.6911629, 49.3739883 8.6762475, 49.3923829 8.6822201, 49.3881369 8.6632941, 49.3914253 8.6716414, 49.3913986 8.6718394, 49.3769314 8.6774682, 49.3765788 8.6774418, 49.4289729 8.7487865, 49.4452550 8.7637570, 49.4220208 8.6778853, 49.3729768 8.6873389, 49.4209557 8.6602654, 49.4262584 8.6638649, 49.3933288 8.6683994, 49.3970682 8.6531104, 49.4102981 8.7704726, 49.3752194 8.6756422, 49.3881395 8.6632403, 49.4148634 8.6509295 +2 +http://www.carondebeaumarchais.com/, http://www.paris-hotel-lion.com, http://edenhotel-montmartre.com, http://www.solmelia.com, http://www.accorhotels.com/fr/hotel-1400-ibis-paris-tour-eiffel-cambronne-15eme/index.shtml, http://www.citadines.com, http://www.hotelbelorangerparis.com/, http://www.hovicha.com, hallehotel.fr, http://www.bestwestern-folkestoneopera.com/, http://www.hotelsydneyopera.com/, http://lewaltparis.com/fr, http://www.pershinghall.com, http://hotelmonnalisa.com/fr, http://www.hotel-faubourg-216-214-paris.federal-hotel.com/, http://hotel-montana-lafayette.com, http://www.marcianohotel-garedunord.com, http://www.paris-hotel-americain.com/, http://www.hotelgeorgette.com, http://www.raphael-hotel.com/, http://www.colordesign-hotel-paris.com, http://www.foch-paris-hotel.com/, http://www.hotel-studio.com/, http://hotelderbyalma.com/fr, http://www.astotel.com/hotel-acadia-opera-paris.php, http://www.hotelroncerayopera.fr, http://www.hoteldamiens.com/, http://www.hotel-delos-vaugirard-paris.com/, avalonparis.com, www.paris-saint-honore.com, http://www.hipotel.info/fr/hipotel-paris-nation, hotel-11.html, www.parishotellittleregina.com/, http://www.plaza-opera-paris.com/, http://www.villaoperalamartineparis.com/, http://www.hotel-montmartre-duperre.com, http://www.hotel-splendid-paris.com, http://www.novotel.com/fr/hotel-1834-novotel-paris-porte-d-orleans, http://www.shangri-la.com/paris, http://www.alesia-paris-hotel.com, http://www.61-paris-nation-hotel.com, http://www.amhotelitalie.com, http://hotelarian.com, http://www.hotel-meridional-paris.com/, http://www.pvhotel.com, http://www.clarisse-paris-hotel.com, http://parisportedeversailles.medianhotels.com, http://www.villa-royale-montsouris-paris.com, http://www.hotelvirgina.com, http://www.parishotelmontsouris.com, http://www.cecil-hotel-montparnasse.com, http://www.parc-hotel-paris.com, http://www.hotelduparcstcharles.com, http://www.sourcehotel.fr, http://www.hotelbellevue75.com, http:/http://www.hotel-turenne.com, http://www.hotel-petit-belloy-saint-germain.com/, http://www.hotel-paris-belloy.com/, http://www.cordelia-paris-hotel.com/, http://www.astotel.com/hotel-bergere-opera-paris.php, http://www.jardindevilliers.com, http://www.pavillon-monceau-etoile.com, http://www.leshotelsdeparis.com/fr/nos-hotels/fiche/20/pavillon-villiers-etoile.html, www.beausejour-montmartre.com, http://lemarquisparis.com/fr, http://www.hotelroyalsaintmichel.com/, http://www.hotelchopin.fr/, www.hotelparispaix.com, http://www.perreyve-hotel-paris-luxembourg.com, http://www.hoteldelavenir.com/fr/, http://www.hotel-istria-paris.com/, http://www.paris-hotel-lavallee.com, http://hotellabourdonnais.fr/, http://www.villa-montparnasse.com/, http://www.accorhotels.com/de/hotel-8465-ibis-styles-paris-pigalle-montmartre/index.shtml, http://www.accorhotels.com/de/hotel-8465-ibis-styles-paris-pigalle-montmartre/index.shtml, www.hotelfertel.com, http://www.hotelnovanox.com/, http://www.radissonblu.com/dokhanhotel-paristrocadero, www.academiehotel.com, http://www.hoteldutriangledor.com/, http://www.hoteldesers-paris.com, http://www.hotelbelami-paris.com, http://www.hoteledouard7-paris.com, http://paris.peninsula.com, http://www.amadeus-hotel-paris.com/, http://www.amadeus-hotel-paris.com/, http://www.pinkhotel.fr/en, hotelajiel.com, http://lerobinetdor.com, http://www.hoteldevenise.fr/, http://www.splendid-hotel-paris.com/, novotelparis.com, http://www.timhotel.com/, http://www.hotel-diana-paris.com/, http://www.hotel-bastille-speria.com/, http://www.paris-hotel-senlis.com/, http://www.ibishotel.com/gb/hotel-1399-ibis-paris-bastille-opera-11eme/index.shtml, http://www.choicehotels.fr/fr/comfort-hotel-fr260, http://www.ibishotel.com/fr/hotel-1401-ibis-paris-la-villette-cite-des-sciences-19eme/location.shtml, http://www.hoteloperamarignyparis.com, http://www.hotelducollectionneur.com/, http://www.hotel-rotary.fr/, http://www.hotel-touring.fr/, www.hotel-monterosa-opera.com, http://www.hotelvernet.com/, http://www.lilas-gambetta.com/, http://www.mercure.com/fr/hotel-0934-mercure-paris-austerlitz-bibliotheque/index.shtml, hotelroyalfromentin.com, http://www.solarhotel.fr/, http://www.paris-orleans-hotel.com, http://www.acropole-paris-hotel.com/, http://www.accorhotels.com/fr/hotel-3546-novotel-paris-tour-eiffel/, http://www.accorhotels.com/fr/hotel-6790-adagio-paris-tour-eiffel/, http://www.hotel-lilas-blanc-paris.fr/, http://www.paris-hotel-tourville.com/fr +yes +Crédit Agricole, Société Générale, Société Générale, Société Générale, LCL, Société Générale, LCL, Crédit Agricole, Caisse d'Épargne, LCL, Société Générale, Caisses Régionales de Crédit Agricole, Société Générale, Société Générale, Société Générale, Crédit Agricole, BNP Paribas, Société Générale, BNP Paribas, BNP Paribas, Société Générale, BNP Paribas, BNP Paribas, Crédit Agricole, Caisse d'Épargne, Société Générale, Société Générale, LCL, Caisse d'Épargne, Caisse d'Épargne, CIC, BNP Paribas, BNP Paribas, BNP Paribas, LCL, Caisse d'Épargne, LCL, BNP Paribas, LCL, Bred, LCL, Société Générale, Société Générale, Crédit Agricole, Société Générale, BNP Paribas, HSBC, LCL, LCL, LCL, BNP Paribas, CIC, Société Générale, LCL, BNP Paribas, Caisse d'Épargne, BRED, LCL, Société Générale, BNP Paribas, HSBC, Crédit Agricole, Caisse d'Épargne, LCL, Bred Banque Populaire, Société Générale, BNP Paribas, Crédit Agricole, HSBC, BNP Paribas, Caisse d'Épargne, LCL, Crédit Agricole, LCL, BNP Paribas, Crédit Agricole, BNP Paribas, BNP Paribas, BNP Paribas, Crédit Agricole, Société Générale, BNP Paribas, LCL, BNP Paribas, BNP Paribas, BNP Paribas, LCL, Caisse d'Épargne, Crédit Mutuel, LCL, Crédit Mutuel, Société Générale, Société Générale, Crédit Mutuel, Caisse d'Épargne, LCL, Société Générale, BNP Paribas, Société Générale, LCL, Crédit Agricole, BNP Paribas, CIC, Banque Populaire, Crédit Mutuel, BPE, Crédit Agricole, CIC, Crédit Agricole, LCL, CIC, CIC, Société Générale, Caisse d'Épargne, Caisse d'Épargne, BNP Paribas, CIC, CIC, BNP Paribas, Société Générale, Société Générale, Caisse d'Épargne, LCL, BNP Paribas, Société Générale, BNP Paribas, Société Générale, Caisse d'Épargne, BNP Paribas, CIC, BRED, Société Générale, Crédit Agricole, BNP Paribas, BNP Paribas, CIC, BNP Paribas, CIC, CIC, Crédit Agricole, LCL, Caisse d'Épargne, Crédit Agricole, BNP Paribas, LCL, Société Générale, LCL, Société Générale, Caisse d'Épargne, CIC, Société Générale, BNP Paribas, CIC, BNP Paribas, CIC, BNP Paribas, LCL, Crédit Mutuel, Société Générale, LCL, Société Générale, BNP Paribas, CIC, BNP Paribas, Caisse d'Épargne, Crédit Mutuel, Crédit Agricole, CIC, BNP Paribas, LCL, LCL, CIC, Société Générale, BNP Paribas, BNP Paribas, Société Générale, BNP Paribas, CIC, LCL, BNP Paribas, CIC, BNP Paribas, BNP Paribas, Crédit Agricole, CIC, Crédit du Nord, Caisse d'Épargne, Société Générale, CIC, Caisse d'Épargne, Société Générale, Société Générale, BNP Paribas, BNP Paribas, Société Générale, CIC, Crédit Agricole, LCL, BNP Paribas, CIC, Caisse d'Épargne, BNP Paribas, BNP Paribas, BNP Paribas, LCL, Crédit Agricole, CIC, LCL, Société Générale, LCL, BNP Paribas, BNP Paribas, Société Générale, BNP Paribas, BNP Paribas, Banque Populaire, LCL, LCL, BNP Paribas, LCL, BNP Paribas, BNP Paribas, Crédit Mutuel, BNP Paribas, CIC, Société Générale, LCL, LCL, CIC, Société Générale, BNP Paribas, LCL, Caisse d'Épargne, Société Générale, BNP Paribas, LCL, LCL, BNP Paribas, BNP Paribas, BNP Paribas, LCL, Société Générale, LCL, Caisse d'Épargne, Crédit Agricole, BNP Paribas, BNP Paribas, Société Générale, CIC, Crédit Agricole, Crédit Agricole, Crédit Agricole, LCL, Société Générale, Société Générale, LCL, CIC, Crédit Agricole, LCL, CIC, BNPP, LCL, Société Générale, Société Générale, BNP Paribas, LCL, Société Générale, LCL, BNP Paribas, BPCE, HSBC, Crédit Mutuel, Société Générale, Crédit Agricole, HSBC, Société Générale, CIC, LCL, LCL, CIC, Caisse d'Épargne, BNP Paribas, BNP Paribas, Société Générale, BRED, CIC, CIC, Crédit du Nord, Crédit Mutuel, LCL, LCL, LCL, BNP Paribas, LCL, Banque Populaire, Crédit du Nord, Société Générale, LCL, CIC, Crédit du Nord, Société Générale, Caisse d'Épargne, Société Générale, BNP Paribas, Crédit du Nord, Caisse d'Épargne, Crédit inductriel et commercial, BPCE, Crédit agricole SA, Caisses Régionales de Crédit Agricole, Crédit Mutuel Centre Est Europe, Crédit mutuel Centre Est Europe, LCL, Banque populaire, HSBC, Crédit du Nord, HSBC, LCL, Banque Populaire, BNP Paribas, Crédit Mutuel, HSBC, LCL, CIC, BPE, Banque Palatine, CIC, BNP Paribas, Caisse d'épargne, Crédit Agricole, LCL, LCL, Crédit Agricole, HSBC, Banque Palatine, LCL, Banque Populaire, Crédit Mutuel, BNP Paribas, LCL, Caisse d'Épargne, BRED, Barclays +30 +44 +55.9533748 -3.1895989 +yes +0 +no +Zanzibar Farm Airport, Brennan Farm Airport, Paris Municipal Airport, Samuel L Clemens Memorial Airport, Brazeale Farm Airport, Lake Village Airport, Henry County Airport, Stewart Airport, Cox Field, Flying Tigers Airport, Burress Airport, Paris Municipal Airport, Bear Lake County Airport +13 +no +55.9507141 -3.2047476 +yes +yes +2044 +50 mph, 70 mph, 70 mph, 70mph, 70mph, 70mph, 70 mph, 70mph, 70 mph, 70 mph, 70 mph, 70 mph, 50 mph, 70mph, 70 mph, 50mph, 70 mph, 50mph, 70 mph, 70 mph +yes +10 +491 +steak house, italian, chinese, sudanese, curry, indian, thai, spanish, japanese, regional, cantonese, pie, american, seafood, pizza, lebanese, french, vegetarian, Cantonese, mexican, mediterranean, mongolian, chargrill, kurdish, Lebanese, middle eastern, noodle, asian, turkish, korean, Malaysian, greek, brazilian, fish, international, sushi, arab, vietnamese, burger, latin american, caribbean, chicken, tapas, malaysian, Scotish, Punjabi, spanish tapas, british, portuguese, african, soup, Mediterranean, phillipino, Middle Eastern, fish and chips, nepali, sandwich, kebab +387 +55.9271435 -3.2363728, 55.9267165 -3.2386629, 55.9317481 -3.1148993, 55.9617756 -3.1654684, 55.9092916 -3.2372720, 55.9086969 -3.3166139, 55.9358069 -3.1285761, 55.9285078 -3.1536537, 55.9280931 -3.1542480, 55.9289856 -3.1524120, 55.9296930 -3.1573543, 55.9308854 -3.1490330, 55.9313446 -3.1501810, 55.9305381 -3.1507475, 55.9301365 -3.1519234, 55.9296254 -3.1163699, 55.9300136 -3.1147841, 55.9295135 -3.1143678, 55.9290339 -3.1140352, 55.9291168 -3.1159858, 55.9286204 -3.1155931, 55.9281972 -3.1171037, 55.9381802 -3.1376916, 55.9374343 -3.1178323, 55.9381022 -3.1166032, 55.9377101 -3.1207816, 55.9395918 -3.1433642, 55.9399577 -3.1399180, 55.9238265 -3.1591952, 55.9285647 -3.1337554, 55.9290844 -3.1371814, 55.9297626 -3.1373543, 55.9285023 -3.1366649, 55.9350829 -3.2524329, 55.9347267 -3.2533165, 55.9338964 -3.2544788, 55.9690552 -3.1927289, 55.9225182 -3.3763378, 55.9078363 -3.3154730, 55.9082957 -3.3144976, 55.9237418 -3.2169588, 55.9628071 -3.2843326, 55.9567295 -3.1549851, 55.9389766 -3.2324281, 55.9617670 -3.1652776, 55.9705936 -3.1599562, 55.9696930 -3.1649144, 55.9716069 -3.1643645, 55.9380999 -3.2729865, 55.9391695 -3.2856891, 55.9383416 -3.2718088, 55.9382288 -3.2723445, 55.9596231 -3.1580900, 55.9653178 -3.1368407, 55.9660030 -3.1385663, 55.9656849 -3.1377647, 55.9666198 -3.1395795, 55.9446645 -3.1105686, 55.9444874 -3.1123104, 55.9707140 -3.1621777, 55.9050822 -3.1576990, 55.9355775 -3.2509489, 55.9362971 -3.2489990, 55.9349382 -3.2502977, 55.9340731 -3.2519958, 55.9359295 -3.2498294, 55.9036470 -3.1544912, 55.9038978 -3.1545429, 55.9040532 -3.1549998, 55.9036002 -3.1541604, 55.9038281 -3.1540607, 55.9040058 -3.1539823, 55.9040754 -3.1544647, 55.9339860 -3.2908522, 55.9335477 -3.2911304, 55.9338068 -3.2899009, 55.9333632 -3.2901748, 55.9323425 -3.2898388, 55.8956129 -3.3229484, 55.8958402 -3.3216003, 55.8878435 -3.3373675, 55.9388790 -3.2733983, 55.9635581 -3.2781359, 55.9108532 -3.1647740, 55.9575364 -3.4153195, 55.9588764 -3.4147772, 55.9584655 -3.4151246, 55.9585135 -3.4153794, 55.9076485 -3.1762454 +870 +31 +yes +Tierheim Heidelberg +McDonald's, Wannaburger, Bell's Diner, Burger Meats Bun, Rascals, Burger King, Burger. +49.4238771 8.7063851 +1715 +Standing Stone, Caiy Stane, Standing Stone, Balm Well, Cup and Ring Marked Rocks, Stone, Hanging Stanes, The Buckstane, Cat Stane, Bonnington Mill Waterwheel (remains), Physic Well, Fort, Bonnington Weir, Hatton House and 55.9387357 -3.3996538, 55.9380963 -3.4051984, 55.9385221 -3.4040472, 55.9386848 -3.4052874, 55.9333966 -3.3543268, 55.9024677 -3.2131994, 55.9579939 -3.3233291, 55.9028966 -3.1642422, 55.9122291 -3.3948137, 55.8798835 -3.3439577, 55.9226836 -3.2094162, 55.9101467 -3.2093552, 55.9546676 -3.3637002, 55.9222410 -3.1492085, 55.9710480 -3.1879850, 55.9387885 -3.2890803, 55.8869268 -3.2813599, 55.9691744 -3.1898383, 55.9045439 -3.3952157, 55.9729762 -3.1721306 +no +16 +55.9007148 -3.2329556, 55.9031798 -3.2852677, 55.9073767 -3.2581589, 55.9075931 -3.2558164, 55.9082967 -3.3202293, 55.9101031 -3.3218843, 55.9102819 -3.3218516, 55.8838914 -3.3385867, 55.8840866 -3.3391023, 55.9045849 -3.2066586 +5 +yes +yes +9 +48.8626579 2.4087217, 48.8259806 2.3462229, 48.8456165 2.2872280, 48.8458916 2.2869967, 48.8461688 2.2871428, 48.8461114 2.2873693, 48.8460334 2.2876230, 48.8458951 2.2877900, 48.8945404 2.3437266, 48.8945867 2.3435634, 48.8286973 2.2729208, 48.8938893 2.3474384, 48.8406328 2.2820860, 48.8402998 2.2843573, 48.8396360 2.2833280, 48.8381144 2.2816798, 48.8377527 2.2807442, 48.8368318 2.2804326, 48.8371087 2.2807889, 48.8560161 2.3425271, 48.8354274 2.2891935, 48.8356940 2.2884563, 48.8355748 2.2885189, 48.8339470 2.2892638, 48.8359679 2.2915532, 48.8342477 2.2892262, 48.8352347 2.2914795, 48.8347999 2.2888232, 48.8352121 2.2886958, 48.8341796 2.2893277, 48.8353624 2.2891574, 48.8358336 2.2884148, 48.8340784 2.2889956, 48.8348947 2.2914239, 48.8354999 2.2906955, 48.8343212 2.2884484, 48.8341989 2.2872303, 48.8340298 2.2895416, 48.8353407 2.2913582, 48.8340810 2.2872939, 48.8350083 2.2912932, 48.8350881 2.2911310, 48.8353351 2.2886642, 48.8354938 2.2892404, 48.8344281 2.2888052, 48.8342630 2.2885863, 48.8352570 2.2893491, 48.8344113 2.2889885, 48.8350553 2.2887220, 48.8341310 2.2870379, 48.8355683 2.2893317, 48.8339501 2.2896850, 48.8346012 2.2885721, 48.8343312 2.2891146, 48.8356876 2.2894299, 48.8351103 2.2888302, 48.8351091 2.2877154, 48.8343517 2.2881843, 48.8350188 2.2907651, 48.8339247 2.2868767, 48.8338089 2.2866979, 48.8351414 2.2892600, 48.8357676 2.2904412, 48.8337879 2.2895489, 48.8341575 2.2888443, 48.8349264 2.2889776, 48.8345246 2.2887347, 48.8357278 2.2899455, 48.8341315 2.2894008, 48.8342180 2.2887046, 48.8352637 2.2909341, 48.8346952 2.2887176, 48.8354556 2.2885926, 48.8337467 2.2865260, 48.8375350 2.2913350, 48.8336777 2.2872161, 48.8335705 2.2869127, 48.8337434 2.2875413, 48.8369196 2.2921182, 48.8368855 2.2923268, 48.8364889 2.2928332, 48.8363937 2.2929303, 48.8367817 2.2921378, 48.8355582 2.2922200, 48.8363125 2.2930626, 48.8366181 2.2926689, 48.8366064 2.2923064, 48.8357751 2.2925615, 48.8359648 2.2920460, 48.8365265 2.2927826, 48.8365419 2.2923862, 48.8369093 2.2927447, 48.8354946 2.2924894, 48.8370175 2.2919841, 48.8362209 2.2932762, 48.8364400 2.2928974, 48.8371063 2.2918600, 48.8366669 2.2926054, 48.8367129 2.2925315, 48.8355570 2.2924077, 48.8362692 2.2931276, 48.8357309 2.2919526, 48.8368092 2.2924115, 48.8358821 2.2922313, 48.8363528 2.2930114, 48.8356847 2.2927260, 48.8372278 2.2923370, 48.8364767 2.2925068, 48.8366966 2.2921926, 48.8356536 2.2920669, 48.8365779 2.2927197, 48.8373276 2.2915933, 48.8371816 2.2917254, 48.8703749 2.3542325, 48.8789628 2.3681993, 48.8791741 2.3663545, 48.8799803 2.3666934, 48.8798303 2.3667814, 48.8786278 2.3674630, 48.8794612 2.3667058, 48.8789495 2.3661867, 48.8796490 2.3667502, 48.8800488 2.3665663, 48.8572139 2.3832347, 48.8650822 2.3661184, 48.8574662 2.3837533, 48.8554810 2.3772626, 48.8864767 2.3827802, 48.8679595 2.3233258, 48.8536747 2.4053296, 48.8586453 2.4019021, 48.8518072 2.4124809, 48.8531145 2.4036646, 48.8578352 2.4000440, 48.8589497 2.4088774, 48.8538663 2.4047101, 48.8552754 2.4007123, 48.8588681 2.4012265, 48.8590547 2.4025125, 48.8541262 2.4051957, 48.8513132 2.4124333, 48.8582204 2.3997539, 48.8582589 2.4007504, 48.8583258 2.4009450, 48.8545852 2.4008607, 48.8526913 2.4118934, 48.8623272 2.4101654, 48.8534197 2.4046530, 48.8586663 2.4014427, 48.8587829 2.4029033, 48.8540415 2.4054174, 48.8554223 2.4085278, 48.8587366 2.4011485, 48.8591422 2.4024156, 48.8578048 2.3927276, 48.8575845 2.3995526, 48.8581638 2.4006121, 48.8581343 2.3995216, 48.8587445 2.4009099, 48.8534712 2.4037410, 48.8581692 2.3989546, 48.8585714 2.4008779, 48.8578971 2.4002009, 48.8577393 2.3999088, 48.8591035 2.4013432, 48.8584365 2.4010685, 48.8578427 2.3994065, 48.8591071 2.4018052, 48.8580252 2.4003632, 48.8532348 2.4055479, 48.8590228 2.4016040, 48.8542374 2.4042895, 48.8583058 2.4003619, 48.8582833 2.3988622, 48.8545006 2.4007407, 48.8589422 2.4026958, 48.8581984 2.4001526, 48.8545367 2.4052799, 48.8515056 2.4120751, 48.8576055 2.3931989, 48.8524695 2.4123633, 48.8590370 2.4012515, 48.8585512 2.4068790, 48.8539310 2.4051830, 48.8583902 2.4005133, 48.8580786 2.4076181, 48.8593004 2.4078997, 48.8531478 2.4049036, 48.8606568 2.4018470, 48.8533070 2.4118122, 48.8586158 2.4030631, 48.8538479 2.4049766, 48.8543924 2.4053763, 48.8508785 2.4116177, 48.8587420 2.4059272, 48.8541953 2.4045624, 48.8537836 2.4048138, 48.8576761 2.3997142, 48.8529772 2.4121920, 48.8583789 2.4013933, 48.8581764 2.4023519, 48.8587069 2.4016236, 48.8520901 2.4120013, 48.8587301 2.4020076, 48.8535306 2.4052930, 48.8868999 2.3556815, 48.8868397 2.3535733, 48.8799710 2.3668489, 48.8223527 2.3707128, 48.8224095 2.3695039, 48.8294477 2.3741903, 48.8228263 2.3716917, 48.8228048 2.3704376, 48.8228388 2.3695339, 48.8229668 2.3722639, 48.8227555 2.3709624, 48.8220709 2.3699905, 48.8230456 2.3726148, 48.8225893 2.3709731, 48.8246659 2.3675739, 48.8223500 2.3702531, 48.8375792 2.2918796, 48.8376900 2.2918232, 48.8317883 2.3378530, 48.8312318 2.3364978, 48.8340640 2.3002838, 48.8340622 2.3008982, 48.8544572 2.2738459, 48.8914264 2.3616730, 48.8357490 2.2834497, 48.8357960 2.2845975, 48.8366264 2.2833601, 48.8357600 2.2860925, 48.8360655 2.2842645, 48.8366815 2.2835085, 48.8360570 2.2821210, 48.8366302 2.2836000, 48.8353570 2.2851005, 48.8361685 2.2864205, 48.8362375 2.2840533, 48.8367854 2.2843155, 48.8365994 2.2819655, 48.8352490 2.2851878, 48.8356380 2.2847705, 48.8365555 2.2836885, 48.8354955 2.2853870, 48.8371584 2.2838238, 48.8354250 2.2850228, 48.8362735 2.2826255, 48.8531773 2.4036029, 48.8536512 2.4044843, 48.8339022 2.2898349, 48.8358103 2.2918382, 48.8358773 2.2917189, 48.8540729 2.2899442, 48.8344297 2.2883294, 48.8350305 2.2886052, 48.8345592 2.2878723, 48.8346773 2.2880592, 48.8349377 2.2884552, 48.8348147 2.2882685, 48.8370509 2.2926787, 48.8371203 2.2924543, 48.8887845 2.3776515, 48.8865795 2.2862560, 48.8284544 2.2711488, 48.8282234 2.2718096, 48.8292333 2.2741387, 48.8284082 2.2724102, 48.8289689 2.2735589, 48.8906840 2.3312886, 48.8907742 2.3312960, 48.8916345 2.3631212, 48.8896273 2.3608608, 48.8627424 2.4085662, 48.8366915 2.2819093, 48.8369456 2.2829976, 48.8375484 2.2818108, 48.8363688 2.2811655, 48.8373703 2.2816463, 48.8374672 2.2817343, 48.8395842 2.2834488, 48.8357296 2.2834432, 48.8356900 2.2834710, 48.8404152 2.2824602, 48.8356754 2.2834246, 48.8358290 2.2829385, 48.8361395 2.2841886, 48.8365515 2.2835310, 48.8464460 2.2876737, 48.8372185 2.2862390, 48.8369510 2.2827549, 48.8369488 2.2828608, 48.8354141 2.2855175, 48.8355595 2.2846958, 48.8353937 2.2848900, 48.8324339 2.3195261, 48.8374995 2.2812255, 48.8376276 2.2809929, 48.8375720 2.2805654, 48.8378285 2.2810366, 48.8576363 2.4087780, 48.8583976 2.4082177, 48.8587785 2.4077670, 48.8375763 2.2810628, 48.8377174 2.2808375, 48.8375417 2.2811490, 48.8376679 2.2809007, 48.8743061 2.4017313, 48.8838481 2.3762235, 48.8567680 2.4073825, 48.8869052 2.3558214, 48.8603321 2.4025489 +yes +4 +43.6348557 3.8709154 +55.8957183 -3.2610295, 55.9772106 -3.2650677, 55.9047174 -3.1794599, 55.9122928 -3.4340796 +fr:Paris, en:Paris, Arkansas, en:Paris, Texas, en:Paris, Idaho, en:Paris, Illinois, en:Paris, Kentucky, en:Paris, Missouri, en:Paris, Tennessee +fr:Tour Eiffel +1 +Lothian Animal Welfare Centre +109 +yes +48.8831159 2.3425480, 48.8868146 2.3594625, 48.8668168 2.3257587, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8717742 2.2984126, 48.8668308 2.3028826, 48.8715217 2.3076937, 48.8884053 2.3785210, 48.8664199 2.2892440, 48.8604399 2.3007825, 48.8864077 2.2949505, 48.8710343 2.3234791, 48.8730243 2.3445449, 48.8606580 2.3469337, 48.8868980 2.3004690, 48.8683305 2.3330172, 48.8920470 2.3024290, 48.8609042 2.3467975, 48.8662424 2.3373468, 48.8814057 2.3282568, 48.8752556 2.2866823, 48.8704922 2.2798118, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8848968 2.3034428, 48.8802164 2.2842407 +9 +49.4028079 8.6877203, 49.4101353 8.6927154, 49.4099021 8.7003337 +yes +48.8454641 2.4140105 +330 +yes and 12 +yes +48.8346251 2.2657680, 48.8315802 2.3158225, 48.8455659 2.3086884, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8593908 2.3144172, 48.8299268 2.3465439, 48.8609726 2.2828299, 48.8563247 2.3152562, 48.8611046 2.3413657, 48.8475898 2.3031985, 48.8463297 2.2794951, 48.8402491 2.3214518, 48.8804901 2.2865619, 48.8635857 2.2722338, 48.8408422 2.3172666, 48.8387798 2.2536841, 48.8281523 2.2728394, 48.8595020 2.3116861, 48.8364028 2.2775659, 48.8519985 2.2908966, 48.8656358 2.2892405, 48.8797035 2.3026873, 48.8936152 2.3152934, 48.8522407 2.2805336, 48.9001725 2.3444887, 48.8711680 2.3244832, 48.8436106 2.3422313, 48.8233460 2.3160166, 48.8338034 2.2847592, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8206480 2.3248645, 48.8936129 2.3029112 +yes +49.4045856 8.6498671, 49.4042890 8.6482626, 49.4005255 8.6416909, 49.4046222 8.6868381, 49.4032452 8.6845637, 49.3783665 8.6932651, 49.3778590 8.6930131, 49.3777697 8.6932265, 49.3876769 8.6645282, 49.3915440 8.6790012, 49.3793134 8.6732898, 49.4040525 8.6844956, 49.3995165 8.6879132, 49.4055996 8.6889278, 49.3812968 8.6894052, 49.3864285 8.6696286, 49.3773672 8.6667238, 49.3834643 8.6624283, 49.3974698 8.6477849, 49.4007776 8.6911061, 49.4035568 8.6922425, 49.4058460 8.6924951, 49.4055314 8.6924048, 49.4014846 8.6914932, 49.4000859 8.6904108, 49.3997565 8.6902626, 49.3791702 8.6320031, 49.3995142 8.6850002, 49.3742086 8.7031163, 49.4041847 8.6844762, 49.4038715 8.6762894, 49.4003850 8.6920257, 49.4054553 8.6752473, 49.3975120 8.6522670, 49.3738871 8.7039058, 49.3896229 8.6900545, 49.3790377 8.6919226, 49.3786163 8.6868257, 49.3810024 8.6888615, 49.3799295 8.6843446, 49.3727648 8.7034774, 49.3744103 8.7047986, 49.3699337 8.6542672, 49.3787743 8.6924168, 49.3931903 8.6817010, 49.3801022 8.6812091, 49.3759036 8.6766890, 49.4016680 8.6740567, 49.3632402 8.6222259, 49.3772275 8.6672364, 49.3654480 8.6869739, 49.3865134 8.7038130, 49.3799233 8.6752091, 49.3796123 8.6875344, 49.3930474 8.6832081, 49.3998558 8.6384200, 49.3887612 8.6898215, 49.3780880 8.6666402, 49.3791746 8.6705116 +Hope Cottage Nursery School, Little Monkeys Nursery, Colinton Private Nursery, Rainbow Kindergarten, Molly's Nursery, Heriot Hill Nursery, Strawberry Hill Nursery, Bruntsfield Nursery, Busy Bees Nursery, Childcair @ Quartermile, The Edinburgh Nursery, Annandale Nursery, The Edinburgh Nursery, St. Leonards Nursery School, High School Yards Nursery, Melville Street Nursery, Jigsaw Childcare, Pinocchio's, Cherrytrees Children's Nursrey, Busy Bees Day Nursery, Grange Loan Nursery, Mr. Squirrel's Nursery, Suffolk House Nursery, Stanwell Nursery, Bruntsfield House Nursery, Carrick Knowe Primary, Baby Rainbow, Childsplay, Playdays, Chapter One Childcare, Forbes Childrens Nursery, Greenhill Montessori Nursery, Grassmarket Nursery, Kidzcare, Cameron House Nursery School, Priestfield Road Nursery, Kirkliston Nursery, Mother Goose Nursery, Arcadia +http://www.citycarclub.co.uk/locations/138/Cables-Wynd/, http://www.citycarclub.co.uk/locations/edinburgh-car-hire/81-granton-road/, http://www.citycarclub.co.uk/locations/edinburgh-car-hire/146-marchmont-crescent/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/ +55.9627269 -3.1775121 +45 +5 +yes and 3 +yes +Iwojima, Kokosinseln, Weihnachtsinsel, Kokos-Insel, Einsamkeit, Insel der Dreifaltigkeit, Tromelin, Clipperton-Insel, Bouvetinsel, Amsterdam-Insel, Sankt-Paul-Insel, Sankt Helena, Himmelfahrtsinsel, Südliche Shetlandinseln, Weihnachtsinsel, Atlassow-Insel, Peter-I.-Insel, Rudolf-Insel, Howlandinsel, Osterinsel, Robinsón Crusoe +1 +49.4238771 8.7063851 +La bobine de fil, Fresque du Demi-Millénaire - Part 2, Le mur des Canuts, Le quartier des Eats-Unis (mur 18), Fresque Histoire des transports Lyonnais, Fresque "Lyon, la santé, la vie", Lyon et sa région, terre de l’humanisme, Lyon et sa région, terre de l’humanisme, Le mur du cinéma, Fresque de Gerland, La Fresque Lumineuse - La ville dans le futur, Fresque "Mur Démo", Espace Diego Rivera, Une cité industrielle (mur 4), Fresque de Shangaï, Le Théâtre des Charpennes, Abattoirs de la Mouche (mur 17), Annonce du Musée (mur 3), Années 1900 (mur 3), Cité idéale d'Egypte (mur 19), Cité idéale de Russie (mur 23), Cité idéale de l'Inde (mur 20), Cité idéale de la Côte d'Ivoire (mur 22), Cité idéale des USA (mur 24), Cité idéale du Mexique (mur 21), École (mur 10), École (mur 10), Etablissements sanitaires (mur 12), Habitations en communs, vue d'ensemble (mur 7), Habitations, vue rapprochée (mur 8), Hôpital de Grange-Blanche (mur 16), La gare, une perspective (mur 6), La tour d'horloges (mur 11), Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Le stade de Gerland (mur 15), Les hauts fourneaux (mur 14), Les services publics (mur 5), Tony Garnier Visionnaire (mur 2), Vue des usines (mur 13), Camionnette Disques Wem, Cité idéale de la Côte d'Ivoire (mur 22), Rue des grands chefs - Restaurant Paul Bocuse, Paul Bocuse - Restaurant Paul Bocuse, Mur de la Cour des Loges, Fresque "La renaissance", Fresque "Montluc - Jean Moulin", Fresque "Art et Industrie", Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, La Fresque du Demi-Millenaire - Part 1, La fresque des Lyonnais, La Bibliotheque de la Cité "des écrivains en Rhône-Alpes", Boulevard de la B.D., Boulevard de la B.D., Boulevard de la B.D., La Dombes, Fresque de Meyzieu, Fresque des Fourchettes, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Fresque idéale de Québec, Charlie Chaplin Bubbles, Mayoud Honda, Fresque "Oullins Centre-ville", Fresque "Du Pont d'Oullins", Mur peint : L’auberge savoyarde, La Fresque du Foyer, La Fresque Art Déco, Fresque RTE Lyon La Mouche, Mur peint, Fresque, Fresque, Fresque, Fresque "Chez Jeanne", Fresque "Allée Arborée", Fresque "La Forge", Fresque "Les Diligences", Fresque "Les Vieux Métiers 1", Fresque "Les Vieux Métiers 2", Fresque "La Route de la Soie", La Fresque du Centenaire 1912-2012, La Fresque du Centenaire 1912-2012, Fresque "Gerland Biotechnologies", La "Fresque Végétale Lumière", Fresque des Vourlois", Fresque du Gymnase, Poster en facade gratte ciel, Fresque des Roses - St Priest, Fresque des Roses - Lyon, Av Santy, Fresque Agir pour la biodiversité, Tag 16m2, Fresque aerosol, Fresque "Les basiliques de Saint-Just", Fresque Le marathon de l'impossible, Fresque "La cité KAPS" and 45.7615378 4.9252989, 45.7242776 4.8539418, 45.7858145 4.8075880, 45.7779285 4.8279690, 45.7316295 4.8668787, 45.7484993 4.8788479, 45.7498654 4.8759864, 45.7698700 4.7879340, 45.7698985 4.7880655, 45.7549115 4.8434004, 45.7245886 4.8263897, 45.7433556 4.8405258, 45.7196057 4.8008161, 45.7318565 4.8358705, 45.7326668 4.8630359, 45.7375747 4.8616255, 45.7725199 4.8663498, 45.7321697 4.8664580, 45.7336465 4.8632348, 45.7328203 4.8629032, 45.7320947 4.8674966, 45.7330177 4.8657973, 45.7324535 4.8672057, 45.7331360 4.8666865, 45.7335600 4.8653728, 45.7325955 4.8671070, 45.7319545 4.8635870, 45.7321249 4.8634546, 45.7316965 4.8647521, 45.7323801 4.8642213, 45.7322374 4.8643323, 45.7323075 4.8663529, 45.7329498 4.8637779, 45.7314132 4.8640073, 45.7385048 4.8613236, 45.7387649 4.8607244, 45.7389336 4.8609359, 45.7328475 4.8659300, 45.7310051 4.8652929, 45.7331061 4.8636557, 45.7333891 4.8624614, 45.7315452 4.8648710, 45.7756330 4.7951910, 45.7332067 4.8666311, 45.8155738 4.8472165, 45.8156435 4.8475277, 45.7649855 4.8287925, 45.7165371 4.8098566, 45.7493533 4.8609118, 45.6634167 4.8424264, 45.7209120 4.8541671, 45.7235048 4.8539594, 45.7222175 4.8540626, 45.7227953 4.8540163, 45.7249477 4.8538288, 45.7681064 4.8280574, 45.7659207 4.8312600, 45.7759090 4.8015510, 45.7760780 4.7952180, 45.7764025 4.7984375, 45.8202824 4.8705136, 45.7664155 5.0049470, 45.7704495 4.8643856, 45.7617643 4.8152072, 45.7621030 4.8160960, 45.7618195 4.8162683, 45.7342924 4.8626980, 45.7745993 4.8606941, 45.8437735 4.7340205, 45.7150814 4.8078204, 45.7175164 4.8098900, 45.7450213 4.8660796, 45.7502318 4.8416473, 45.7513725 4.8390037, 45.7205996 4.8439283, 45.7690470 4.7998735, 45.7697129 4.9524500, 45.7714030 5.0001735, 45.5828000 4.6317350, 45.7083270 4.8272787, 45.7318628 4.9995743, 45.7316843 5.0009960, 45.7317208 4.9997166, 45.7322290 4.9975134, 45.7340142 4.9964253, 45.7337846 4.9972670, 45.7723084 4.8215466, 45.7449245 4.8424444, 45.7452687 4.8413678, 45.7252956 4.8413865, 45.7696009 4.8272315, 45.6584498 4.7736478, 45.7081288 4.7481631, 45.7680770 4.8801051, 45.6946293 4.9406443, 45.7296178 4.8752517, 45.7463509 4.8459884, 45.7677299 4.8312641, 45.7297744 4.8742560, 45.7551709 4.8469660, 45.8764848 4.8346205, 45.8684698 4.8394062, 45.7434934 4.8478974, 45.7559238 4.8169452, 45.7447945 4.9069783, 45.7179757 4.8174971, 45.7180962 4.8187223 +http://gloria-kamera-kinos.de +1 +55.9700633 -3.1697434 and 55.9801960 -3.1982556 +91 +64 +01 44 54 39 00 +indaba +yes +no +yes +48.8475254 2.3740095, 48.8461336 2.3944472, 48.8470535 2.3936319, 48.8758689 2.3483462, 48.8828001 2.3714770, 48.8820834 2.3282055, 48.8762091 2.3397990, 48.8473760 2.3414870, 48.8279402 2.3288089, 48.8579444 2.3717706, 48.8470191 2.3535114, 48.8927622 2.3434358, 48.8541702 2.3858665, 48.8532844 2.3390695, 48.8598488 2.3084707, 48.8855486 2.2906636, 48.8838490 2.2883840, 48.8842390 2.2945020, 48.8360380 2.3520261, 48.8755166 2.3946714, 48.8477091 2.3186906, 48.8584888 2.3703620, 48.8736719 2.3586685, 48.8471373 2.3529239 +43.6196177 3.8651667, 43.4635300 3.6888900, 43.6304227 3.8875373, 43.6248205 3.8690435, 43.6188170 3.8854467, 43.6354093 3.8774770, 43.6595006 3.8914075, 43.6592117 3.8922409, 43.6589289 3.8923654, 43.7703775 4.0223446, 43.6370866 3.8147100, 43.5603989 3.9342558, 43.5595844 3.9351869, 43.6118723 3.9244185, 43.6116804 3.9251287, 43.6124857 3.9234893, 43.6124114 3.9246155, 43.6131709 3.9241006, 43.6134617 3.9236637, 43.6053399 3.9092808, 43.6121035 3.9101962, 43.6119897 4.0122314, 43.6120349 4.0125591, 43.6676906 4.0188286, 43.6680062 4.0195422, 43.6293766 3.9043547, 43.6298566 3.9048257, 43.5324155 3.9297334, 43.6403045 3.8460831, 43.6125180 3.8884380, 43.6748706 4.1230635, 43.6745966 4.1230879, 43.6743846 4.1233491, 43.6740383 4.1241561, 43.5600406 3.8796149, 43.6499929 4.0097323, 43.6456026 4.0095082, 43.6181856 3.8939608, 43.6990930 3.8995231, 43.6463973 3.8634916, 43.6063473 3.8883414, 43.5971203 3.8380027, 43.6209565 3.8143041, 43.8576951 3.9064011, 43.3950979 3.6709474, 43.3950057 3.6711243, 43.3925472 3.6769695, 43.3924662 3.6771425, 43.4013858 3.6905370, 43.4043876 3.6870145, 43.4111663 3.6832801, 43.4110256 3.6831538, 43.4114924 3.6835248, 43.4173887 3.6694803, 43.4149746 3.6721276, 43.4128627 3.6872955, 43.4130923 3.6875689, 43.4013134 3.6684044, 43.3988445 3.6717365, 43.3986512 3.6715885, 43.3986047 3.6713708, 43.3982223 3.6715411, 43.3983194 3.6720080, 43.3982674 3.6717502, 43.3988763 3.6713845, 43.6062050 3.7849035, 43.6068900 3.7847798, 43.6066603 3.7843870, 43.5792410 3.7608490, 43.4439794 3.6146023, 43.4440020 3.6148260, 43.4477997 3.6107272, 43.5541925 3.7755402, 43.6190258 3.8859952, 43.6187130 3.8858420, 43.6183438 3.8853528, 43.6188514 3.8854599, 43.6184075 3.8851477, 43.6183055 3.8856168, 43.6190914 3.8858028, 43.6060735 3.9060022, 43.6060542 3.9062078, 43.6062323 3.9054241, 43.6060349 3.9064195, 43.6950162 3.7986461, 43.6960303 3.7984714, 43.6954260 3.7983572, 43.6950087 3.7984189, 43.6954369 3.7985825, 43.6946418 3.7986694, 43.6063922 3.9050274, 43.6504122 3.7880930, 43.6501715 3.7884041, 43.6505437 3.7882909, 43.6503037 3.7885951, 43.6295197 3.9051868, 43.6294484 3.9045513, 43.6298983 3.9050431, 43.6411686 3.8995370, 43.6299781 3.8876007, 43.6308722 3.8877903, 43.6303299 3.8879352, 43.6299259 3.8877818, 43.6303757 3.8877502, 43.6282390 3.8632221, 43.6279253 3.8628588, 43.6281890 3.8626720, 43.6284773 3.8628714, 43.6283834 3.8624119, 43.6351314 3.8636790, 43.6357512 3.8637785, 43.6355570 3.8631881, 43.6357011 3.8630681, 43.6355878 3.8638678, 43.6359183 3.8637031, 43.6189485 3.8849220, 43.6288024 3.8403341, 43.6289029 3.8407602, 43.6284504 3.8405007, 43.6288530 3.8405514, 43.6076001 3.7315334, 43.4879073 3.7167091, 43.4683633 3.6931744, 43.6588634 3.9204358, 43.6581442 3.9206383, 43.3386652 3.5768270, 43.6236490 3.8315918, 43.6094471 3.8297475, 43.5844279 3.8017618, 43.5841828 3.8014655, 43.5843069 3.8016160, 43.6106770 3.7719656, 43.5785707 3.8199856, 43.5782830 3.8203519, 43.5784668 3.8195274, 43.5786200 3.8202001, 43.5779101 3.8202660, 43.5782304 3.8201176, 43.5785146 3.8197423, 43.5779591 3.8204826, 43.5781786 3.8198865, 43.4928581 3.7064885, 43.4930357 3.7066242, 43.4931850 3.7062247, 43.5600752 3.8794021, 43.5603593 3.8797128, 43.5597995 3.8794261, 43.5603939 3.8795000, 43.5504876 3.8944674, 43.5564311 3.9032723, 43.6751515 4.0900251, 43.6750817 4.0894764, 43.6668274 3.7199569, 43.6666278 3.7197356, 43.5799783 3.8727698, 43.6720712 4.0327426, 43.6721119 4.0322913, 43.6720916 4.0325169, 43.6720509 4.0329683, 43.6353791 3.8775846, 43.6357761 3.8775156, 43.6355727 3.8769834, 43.6353122 3.8774070, 43.6357096 3.8773415, 43.6352450 3.8772303, 43.6354487 3.8777708, 43.6356421 3.8771621, 43.6309218 3.8876037, 43.6882097 3.8488092, 43.6880132 3.8480228, 43.6738209 3.8568172, 43.6881795 3.8476400, 43.6781106 3.8322225, 43.6882511 3.8486040, 43.6880961 3.8478320, 43.6881650 3.8490306, 43.6741370 3.8571353, 43.6739417 3.8566669, 43.6741742 3.8566460, 43.6743821 3.8569949, 43.6742411 3.8573063, 43.6740311 3.8576433, 43.7064517 3.8325226, 43.7063777 3.8328509, 43.7070562 3.8328148, 43.7069830 3.8331370, 43.7070191 3.8329779, 43.7064136 3.8326915, 43.6217351 3.8618153, 43.6216226 3.8616570, 43.6217803 3.8621502, 43.6218955 3.8623103, 43.6220479 3.8625355, 43.6224426 3.8630973, 43.6221637 3.8626977, 43.6225690 3.8632733, 43.6409414 3.8556108, 43.6409594 3.8548162, 43.6422883 3.8551424, 43.6411543 3.8552102, 43.6419907 3.8552750, 43.6408680 3.8554119, 43.6412277 3.8554091, 43.5532616 3.9489233, 43.5532974 3.9491384, 43.6359677 3.8694266, 43.4894010 3.7913702, 43.7503421 3.8339782, 43.5794492 3.7612027, 43.5791413 3.7606797, 43.5890731 3.7711550, 43.5793441 3.7610240, 43.6290239 3.8919122, 43.7246941 4.0330700, 43.7245541 4.0335370, 43.7249258 4.0330614, 43.7952051 3.9151039, 43.5939438 3.8765475, 43.6075937 3.7317590, 43.7175398 4.1022024, 43.7197650 4.0981102, 43.7956867 4.0147178, 43.5003715 3.5957101, 43.5004674 3.5958936, 43.5006117 3.5956098, 43.6577901 4.1177023, 43.6266979 3.8500060, 43.4408553 3.6742844, 43.4825306 3.7963600, 43.4401836 3.6741654, 43.4401727 3.6743853, 43.4825849 3.7961615, 43.4814082 3.7992087, 43.4813241 3.7993784, 43.4405130 3.6744022, 43.4405238 3.6741823, 43.7370776 3.8491298, 43.7371064 3.8489010, 43.4433930 3.7627096, 43.6817649 3.9322289, 43.6821852 3.9320918, 43.6818709 3.9319810, 43.6816766 3.9325695, 43.6823958 3.9324529, 43.6820802 3.9323412, 43.6166474 3.8573751, 43.6167778 3.8572293, 43.6169069 3.8570850, 43.7716572 3.8722038, 43.7716761 3.8719703, 43.7724779 3.8720061, 43.7725346 3.8717966, 43.7722445 3.8715355, 43.5540665 3.7837156, 43.5541597 3.7828249, 43.5541647 3.7832681, 43.5543769 3.7837090, 43.5541622 3.7830416, 43.7682376 3.7872300, 43.6290100 3.9048519, 43.6290802 3.9050569, 43.6294071 3.9049095, 43.6183627 3.8847348, 43.6185035 3.8848193, 43.6283249 3.8628727, 43.6280499 3.8630256, 43.6130980 3.9238985, 43.6118006 3.9242177, 43.6126299 3.9238979, 43.6119738 3.9246815, 43.6120459 3.9248824, 43.6125571 3.9236917, 43.6116072 3.9249305, 43.6205171 3.8141108, 43.6205201 3.8138910, 43.6212321 3.8139109, 43.6213614 3.8145985, 43.6215582 3.8141418, 43.6208948 3.8144744, 43.6212301 3.8141362, 43.6215603 3.8139165, 43.6941003 4.0250540, 43.6939020 4.0254235, 43.6939633 4.0252162, 43.6591711 3.8920214, 43.6594367 3.8911990, 43.6592207 3.8916314, 43.6582198 3.9208321, 43.6585163 3.9206162, 43.6584414 3.9204205, 43.6502896 4.0020405, 43.6503821 4.0022410, 43.6976763 4.0298756, 43.6976520 4.0301065, 43.7694986 3.9601400, 43.7693289 3.9603186, 43.7260197 3.9250952, 43.7000992 3.8594266, 43.7003850 3.8597603, 43.7000587 3.8596552, 43.6997828 3.8593306, 43.6965048 3.8786983, 43.6294286 3.9046473, 43.6448152 3.8921332, 43.6343720 3.8632498, 43.6343556 3.8634788, 43.6463379 3.8480120, 43.6467585 3.8483247, 43.5597563 4.0995359, 43.5596119 4.0998101, 43.6604955 3.9747815, 43.6594627 3.9742013, 43.6594763 3.9737579, 43.6608145 3.9746570, 43.6594699 3.9739801, 43.6596202 3.9744323, 43.6746623 4.1232810, 43.5974312 3.8380987, 43.6740097 4.1243981, 43.6579117 4.1175456, 43.4168131 3.6694501, 43.4172565 3.6696232, 43.4164954 3.6692387, 43.4168583 3.6700443, 43.4169644 3.6690133, 43.4166912 3.6695817, 43.4171201 3.6697691, 43.4169346 3.6693176, 43.4169869 3.6699090, 43.4166172 3.6691078, 43.4167390 3.6689766, 43.6135328 3.9238701, 43.6502939 3.7884170, 43.6548582 3.8290418, 43.6544437 3.8295423, 43.6551308 3.8292559, 43.6543658 3.8293324, 43.6548350 3.8298195, 43.6550246 3.8290868, 43.6545522 3.8281160, 43.6547179 3.8296633, 43.6551134 3.8301784, 43.6544308 3.8279535, 43.6546682 3.8282731, 43.6585316 3.9205300, 43.6820105 3.9318961, 43.6065649 3.7848199, 43.6067483 3.7845747, 43.6060702 3.7850291, 43.6069780 3.7849695, 43.6366983 3.8144978, 43.6366426 3.8147147, 43.6369515 3.8148659, 43.6370071 3.8146491, 43.6375223 3.8149350, 43.6201327 3.8663456, 43.6202534 3.8662341, 43.5660709 3.9179278, 43.5653267 3.9177283, 43.5657089 3.9181635, 43.5660758 3.9181490, 43.5657038 3.9179432, 43.5653314 3.9179537, 43.5656987 3.9177206, 43.5653359 3.9181710, 43.5594394 3.9353604, 43.5593159 3.9355081, 43.6125490 3.8887910, 43.6125337 3.8886176, 43.6667200 3.7198656, 43.6717176 3.7734568, 43.6718233 3.7736332, 43.6163192 3.8109776, 43.6158471 3.8105923, 43.6162129 3.8106240, 43.6159302 3.8103997, 43.6160496 3.8110096, 43.6161310 3.8108193, 43.6987464 3.8995404, 43.7121686 3.9029334, 43.4589297 3.7543175, 43.4589180 3.7543228, 43.6529933 3.8373619, 43.6508843 3.8950530, 43.6507315 3.8949607, 43.6917648 3.7418407, 43.6916172 3.7414689, 43.5330244 3.9296765, 43.5325136 3.9298770, 43.5319172 3.9294506, 43.5327018 3.9295051, 43.5321554 3.9296680, 43.5317997 3.9299491, 43.5317809 3.9293286, 43.5331588 3.9297991, 43.5327959 3.9293240, 43.5324221 3.9300685, 43.6647713 4.1735240, 43.6644515 4.1740862, 43.6718014 3.7734595, 43.6678568 4.0194153, 43.6676896 4.0190494, 43.6680045 4.0199905, 43.6680054 4.0197640, 43.5706356 3.7717279, 43.5707013 3.7719698, 43.5706593 3.7717486, 43.5705880 3.7714909, 43.5601438 3.8799605, 43.5598776 3.8800888, 43.5602721 3.8801987, 43.6534796 4.0787354, 43.6534317 4.0791374, 43.6536756 4.0789644, 43.6533702 4.0789204, 43.6533058 4.0787087, 43.6117787 4.0135982, 43.6116863 4.0123985, 43.6121020 4.0127582, 43.6117384 4.0139610, 43.6118546 4.0144096, 43.6117353 4.0141854, 43.6116189 4.0137355, 43.6118512 4.0146316, 43.4863784 3.6633661, 43.4861532 3.6635014, 43.4865046 3.6633688, 43.4862666 3.6636656, 43.4863943 3.6632003, 43.5135970 3.7024561, 43.5137281 3.7024700, 43.5135969 3.7025896, 43.4111348 3.6832726, 43.4404802 3.6742619, 43.7041672 3.8778252, 43.7043817 3.8765733, 43.6989479 3.8996243, 43.7510089 3.9579067, 43.5564255 3.7255180, 43.5565316 3.7256822, 43.5561942 3.7255914, 43.5562476 3.7253865, 43.4499685 3.7554268, 43.4497053 3.7558145, 43.4498173 3.7559766, 43.4500955 3.7554737, 43.4503964 3.7552773, 43.4501893 3.7556489, 43.4503038 3.7551231, 43.4504932 3.7554528, 43.5783240 3.8199268, 43.5589490 4.0996964, 43.5614867 4.0995915, 43.5588310 4.0993635, 43.5596108 4.1002065, 43.5597695 4.0986958, 43.5597730 4.0984753, 43.5624254 4.1036310, 43.5620442 4.1003093, 43.5620269 4.1000831, 43.5602270 4.0988930, 43.5593704 4.0990005, 43.5605977 4.1003848, 43.5616143 4.0999743, 43.5620069 4.0998154, 43.5609309 4.0992624, 43.5624036 4.1032228, 43.5608617 4.0990610, 43.5588993 4.0989235, 43.5599738 4.1002174, 43.5599024 4.0992665, 43.5599671 4.1004379, 43.5605764 4.1001632, 43.5596042 4.1004270, 43.5614382 4.0993717, 43.5615297 4.1002809, 43.5621104 4.1024670, 43.5620271 4.1027993, 43.4247055 3.7309961, 43.4245646 3.7307196, 43.4247311 3.7312122, 43.4248063 3.7314121, 43.4246551 3.7310234, 43.5842544 3.8016492, 43.5856187 3.7997940, 43.4202704 3.6017871, 43.4202032 3.6019092, 43.4203031 3.6017291, 43.4203982 3.6015433, 43.4201108 3.6020917, 43.4893128 3.7915575, 43.7290629 4.0219910, 43.6880968 3.8480179, 43.6740794 3.8571485, 43.5503801 3.7080438, 43.5502980 3.7075846, 43.5515883 3.7111717, 43.4518665 3.6671118, 43.4519636 3.6666861, 43.4518669 3.6668843, 43.6074111 3.7317379, 43.6916862 3.7416501, 43.6953369 3.7984780, 43.7000865 3.8595497, 43.7266072 3.8137397, 43.7267602 3.8136946, 43.7264437 3.8138412, 43.7265187 3.8140551, 43.7369980 3.8489882, 43.7540555 4.0857547, 43.7537782 4.0857441, 43.7541045 4.0857538, 43.6578444 4.1176745, 43.5793560 3.7609405, 43.5456398 3.9801941, 43.5458161 3.9801484, 43.5456517 3.9807165, 43.5459442 3.9805395, 43.5458803 3.9803437, 43.5455247 3.9803186, 43.5455884 3.9805195, 43.5454319 3.9799658, 43.5599096 3.9347799, 43.5602684 3.9344068, 43.5599643 3.9347572, 43.5600943 3.9346043, 43.5600705 4.0993804, 43.5585077 4.1002962, 43.5611173 4.1003120, 43.5584472 4.1000942, 43.5624139 4.1034196, 43.5619971 4.1029447, 43.5610838 4.0998280, 43.5611005 4.1000704, 43.5620562 4.1026588, 43.6647299 4.1737164, 43.6648186 4.1737358, 43.6437886 3.9326955, 43.6438246 3.9325862, 43.6437605 3.9323772, 43.6436966 3.9321708, 43.6439294 3.9331897, 43.6420229 3.9652582, 43.6420525 3.9651019, 43.6423123 3.9648226, 43.6416609 3.9656105, 43.6326924 3.9203179, 43.6324614 3.9206625, 43.6325256 3.9202485, 43.6324927 3.9204607, 43.6325587 3.9200353, 43.6324312 3.9208576, 43.6325919 3.9198208, 43.5332304 3.8568364, 43.5331289 3.8569602, 43.5331879 3.8566513, 43.5330500 3.8571583, 43.5332676 3.8564538, 43.5333451 3.8562666, 43.5333622 3.8574047, 43.5334463 3.8572051, 43.5541752 3.7832580, 43.4169272 3.6695844, 43.4166904 3.6703722, 43.4166020 3.6702162, 43.4440702 3.6146922, 43.4929523 3.7062178, 43.4894008 3.7913551, 43.5066852 3.7949573, 43.5069129 3.7953969, 43.5068145 3.7952143, 43.5066745 3.7949634, 43.5065692 3.7946525, 43.5657141 3.9180220, 43.5004148 3.5958581, 43.7332502 3.9784726, 43.7333323 3.9784376, 43.7330291 3.9787029, 43.7334207 3.9786342, 43.6601367 3.9743142, 43.6934582 3.9942613, 43.6808329 3.9787335, 43.6936998 3.9940968, 43.6931284 3.9946566, 43.6932108 3.9941027, 43.6932085 3.9938757, 43.6931306 3.9948836, 43.6936308 3.9942973, 43.6808180 3.9785086, 43.6420334 4.0411045, 43.6419417 4.0413061, 43.6418471 4.0411296, 43.6720304 4.0329420, 43.6976765 4.0299962, 43.7165169 4.0057307, 43.7164697 4.0057088, 43.7164689 4.0059373, 43.7244638 4.0337393, 43.7253609 4.0825098, 43.7254229 4.0824351, 43.7295622 4.0782655, 43.7252981 4.0825861, 43.6749657 4.0897835, 43.6748368 4.0901688, 43.6748687 4.0896909, 43.6743777 4.1237602, 43.7694351 3.9602823, 43.7720773 3.8720978, 43.3985241 3.6717778, 43.4129657 3.6874107, 43.6052566 3.9098621, 43.6052841 3.9096716, 43.6053119 3.9094788, 43.6287984 3.8406235, 43.6400821 3.8366862, 43.6400282 3.8368928, 43.4799000 3.6236197, 43.5461014 3.7057959, 43.5463898 3.7060715, 43.5466769 3.7063529, 43.4755840 3.6699958, 43.5108626 3.6937431, 43.6508025 3.8950000, 43.6167099 3.8112201, 43.6167856 3.8110244, 43.4452547 3.7008790, 43.5438846 3.9752045, 43.5439446 3.9754071, 43.5042450 3.7163324, 43.6241536 3.7670944, 43.6241724 3.7668722, 43.4847620 3.7931640, 43.4847416 3.7929669, 43.7267439 4.0279504, 43.6098109 3.9151256 +440 +183 +487500 +yes +ab conduite, École de conduite Lamartine, Centre de conduite auto-moto, ECF, Auto-École, ECF Trinité, Cluny - Saint-Germain, C.E.R. Brancion, Permis Malin, Alkris, Auto école Place de Rungis, Auto Moto École Alésia, Caser formations, École de conduite Saint-Charles, Auto-École, Fati Auto école, Auto-école du chêne, ecf, La Réussite, École de conduite, C.E.R. Auto-École, Auto moto école, Auto-école Manin, Tour Eiffel Permis, Auto moto ecolde des Buttes Chaumont, C.E.R. Porte des Lilas, Permis Express, Auto école, ABIR C.F.R., Auto-école Cosmos and 48.8425822 2.3123874, 48.8214455 2.3651681, 48.8384650 2.3928000, 48.8788491 2.3549176, 48.8444172 2.3902043, 48.8766806 2.3400707, 48.8908100 2.3757534, 48.8939590 2.3470250, 48.8509898 2.2929663, 48.8750750 2.3586783, 48.8791144 2.3365425, 48.8505220 2.3461000, 48.8281412 2.3023917, 48.8284745 2.3030751, 48.8451775 2.3885757, 48.8237890 2.3481077, 48.8229290 2.3469037, 48.8277073 2.3307027, 48.8733527 2.3993062, 48.8250029 2.3166081, 48.8410757 2.2808723, 48.8324177 2.3616433, 48.8759983 2.3280939, 48.8787222 2.3744794, 48.8917005 2.3612335, 48.8397868 2.3974178, 48.8343346 2.4041298, 48.8306699 2.3543176, 48.8800260 2.2873860, 48.8888340 2.3055800, 48.8792550 2.3846850, 48.8800423 2.3744552, 48.8835398 2.3889119, 48.8832858 2.3874568, 48.8886151 2.3731039, 48.8490335 2.3011623, 48.8826632 2.3810175, 48.8771545 2.4074241, 48.8732079 2.3741442, 48.8731711 2.3799152, 48.8902508 2.3794782, 48.8623682 2.3671929 +1 +48.8785620 2.3603690 +yes +2508 +54 and 16 +11 +49.4534124 8.7619617 +48.8569549 2.3497208, 48.8562998 2.3535246, 48.8521302 2.3358217, 48.8553332 2.3464366, 48.8513763 2.3250565, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8453963 2.3255943, 48.8566284 2.3271644, 48.8661306 2.2897626, 48.8722447 2.3050374, 48.8450073 2.3757975, 48.8466279 2.2560360, 48.8694555 2.3406786, 48.8388399 2.2765067, 48.8176870 2.3444409, 48.8398451 2.2739161, 48.8566083 2.3533348, 48.8632334 2.3399229, 48.8620104 2.3390904, 48.8670418 2.3496240, 48.8657000 2.3535311, 48.8652453 2.3533870, 48.8443992 2.3820174, 48.8691076 2.3112127, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8729875 2.3210140, 48.8726568 2.3215983, 48.8776040 2.3524312, 48.8758310 2.3206114, 48.8720777 2.3056372, 48.8715518 2.3062553, 48.8688688 2.3012670, 48.8720769 2.2997667, 48.8721868 2.3033146, 48.8707626 2.3051595, 48.8701277 2.3044062, 48.8674712 2.3054788, 48.8667016 2.3011326, 48.8655118 2.3015698, 48.8713039 2.2970137, 48.8741074 2.2994150, 48.8744570 2.3007315, 48.8763620 2.3015161, 48.8767241 2.3018198, 48.8782249 2.2965872, 48.8972935 2.3883460, 48.8952805 2.3850234, 48.8599671 2.3250425, 48.8705380 2.3685763, 48.8293967 2.3790084, 48.8403358 2.3506549, 48.8725027 2.2851552, 48.8736890 2.2914977, 48.8768968 2.2823678, 48.8722856 2.2840680, 48.8693205 2.2843750, 48.8677158 2.2805552, 48.8396031 2.2624046, 48.8471492 2.3421620, 48.8470699 2.3417135, 48.8613479 2.3294517, 48.8623669 2.3098112, 48.8593696 2.3144127, 48.8734234 2.3305255, 48.8715078 2.3339896, 48.8459424 2.3060603, 48.8319830 2.3768014, 48.8720026 2.3359899, 48.8703752 2.3029557, 48.8738314 2.3297043, 48.8790223 2.2930687, 48.8647821 2.3501454, 48.8815254 2.3543330, 48.8634010 2.3478656, 48.8580953 2.3988158, 48.8671989 2.3667020, 48.8410399 2.3210471, 48.8429112 2.3235502, 48.8423484 2.3212962, 48.8320324 2.3866588, 48.8336457 2.2895795, 48.8764091 2.3236995, 48.8476756 2.3411763, 48.8305332 2.3138423, 48.8763053 2.2944546, 48.8763219 2.2947532, 48.8788573 2.2928071, 48.8761984 2.2930848, 48.8760963 2.2927992, 48.8532277 2.3589001, 48.8863474 2.2875098, 48.8740366 2.4050675, 48.8780164 2.4108510, 48.8260635 2.3616139, 48.8239032 2.3657211, 48.8892294 2.3935497, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8381765 2.3815493, 48.8731938 2.3290960, 48.8212980 2.3643164, 48.8549966 2.4012505, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8292317 2.3084985, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8465587 2.2612329, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8868617 2.3693195, 48.8698031 2.3099017, 48.8343023 2.3639410, 48.8720076 2.3153410, 48.8624814 2.3328854 +37 +49.4123589 8.7022987, 49.3998237 8.6458733, 49.4430123 8.7521139, 49.3925852 8.6533247, 49.4255141 8.6477603, 49.4239759 8.6793816, 49.3976334 8.6709378, 49.3829854 8.6804822, 49.3865139 8.6621286, 49.4332539 8.6406705 +http://www.musee-armee.fr/, www.aphp.fr/, http://www.lesartsdecoratifs.fr/francais/arts-decoratifs/, http://www.arts-et-metiers.net/, http://www.tourjeansanspeur.com/, www.musee-moreau.fr, http://www.paris.fr/loisirs/musees-expos/musee-des-egouts/visite-publique-des-egouts-de-paris/rub 9691 stand 5943 port 23931, http://www.pasteur.fr/ip/easysite/pasteur/fr/institut-pasteur/musees/musee-pasteur, www.daliparis.com/, http://www.musee-en-herbe.com/, http://www.mep-fr.org, www.annehoguet.fr/musee.htm, http://www.museedelapoupeeparis.com/, http://www.espace-icare.net/, catacombes.paris.fr/, http://equipement.paris.fr/conservatoire-municipal-claude-debussy-site-la-jonquiere-3976, www.musee-erotisme.com, http://www.paris.fr/politiques/conservation-restauration/atelier-de-restauration-et-de-conservation-des-photographies-de-la-ville-de-paris/p7672#, http://www.petitpalais.paris.fr/, http://www.musee-legiondhonneur.fr/, http://conciergerie.monuments-nationaux.fr/, www.museeduvinparis.com, http://www.ladressemuseedelaposte.com/, http://www.baccarat.fr/fr/univers-baccarat/musees/gallery-opening-hours.htm, http://forumdesimages.fr/, http://www.fgo-barbara.fr, www.museeduchocolat.fr, http://www.citechaillot.fr/fr/, www.musee-marine.fr, http://www.museefm.org/, www.fondationlecorbusier.asso.fr, http://musee-contrefacon.com/, www.dapper.com.fr, www.mairie6.paris.fr, www.le-maf.com/, www.bibliotheque-polonaise-paris-shlp.fr, www.icp.fr, http://www.christofle.com/, www.musee-clemenceau.fr/, www.compagnons.org/, www.upmc.fr/, www.avh.asso.fr/, www.musee-henner.fr/, www.bium.univ-paris5.fr/musee/, www.museemaillol.com/, http://www.museedeslettres.fr/, www.museedumontparnasse.net/, http://www.mines-paristech.fr/, www.paris.fr/, crypte.paris.fr/, www.bnf.fr/, prefecturedepolice.interieur.gouv.fr, http://www.paris.fr/loisirs/musees-expos/memorial-leclerc-et-de-la-liberation-de-paris-musee-jean-moulin/p6923, http://www.centrepompidou.fr/cpv/ressource.action?param.id=FR R-89fd49e847165bc78d564f6dbeb6777¶m.idSource=FR E-2ab598d3369ad7a58ead7e6be32ba7b, http://www.maxims-musee-artnouveau.com/, http://www.henricartierbresson.org, http://www.avocatparis.org/home/presentation-et-missions/histoire-du-barreau-de-paris/musee-virtuel.html, http://www.quaibranly.fr/, http://www.museum-mineral.fr/, www.imarabe.org/, equipement.paris.fr/JARDIN TINO ROSSI, www.hallesaintpierre.org, http://equipement.paris.fr/conservatoire-municipal-w-a-mozart-1595, www.jeudepaume.org, www.musee-orangerie.fr/, http://www.cwb.fr/, www.curie.fr/, www.grandpalais.fr/, http://www.pavillon-arsenal.com/, http://www.gaite-lyrique.net/, www.musee-moyenage.fr/, www.mahj.org, http://www.archivesnationales.culture.gouv.fr/, http://www.museepicassoparis.fr/, http://www.paris.fr/loisirs/musees-expos/musee-cognacq-jay/p6466, www.musee-delacroix.fr, http://www.musee-orsay.fr, www.institutneerlandais.com/, www.pinacotheque.com/, www.lesartsdecoratifs.fr/, http://cernuschi.paris.fr/, www.musee-rodin.fr/, http://www.musee-jacquemart-andre.com/, equipement.paris.fr/Conservatoire Municipal Nadia et Lili Boulanger, https://www.sites.google.com/site/histoiregrouperenault/expos/expo-musee, http://www.ville-clichy.fr/382-le-pavillon-vendome-centre-d-art-contemporain.htm, http://www.le-bal.fr/, http://www.boulognebillancourt.com/previous/museepaulbelmondo/index.html, http://equipement.paris.fr/centre-d-animation-les-abbesses-1154, http://www.fondation-pb-ysl.net, www.mam.paris.fr/, www.palaisdetokyo.com/, fondation.cartier.com/, www.guimet.fr/, paris.fr/loisirs/musees-expos/musee-bourdelle/p6408, http://www.guimet.fr/fr/musee-dennery/informations-pratiques, mjcneuilly92.com, www.marmottan.com, http://vie-romantique.paris.fr, http://balzac.paris.fr, http://eaudeparis.fr/lespace-culture/pavillon-de-leau/, http://www.memorialdelashoah.org/, http://www.mcjp.fr/, http://zadkine.paris.fr, www.museedemontmartre.fr/, www.chassenature.org, http://www.mobiliernational.culture.gouv.fr/, www.museeduluxembourg.fr/, http://www.palais-decouverte.fr/, www.si.se/Paris/, http://www.fondationlouisvuitton.fr/, http://www.monnaiedeparis.fr/, http://palaisgalliera.paris.fr/, http://carnavalet.paris.fr/, http://www.louvre.fr/, http://sainte-chapelle.monuments-nationaux.fr/ +playground, sports centre, swimming pool, water park, pitch, park, miniature golf, dance, marina, horse riding, picnic table, garden, stadium, nature reserve, common, track, youth club, recreation ground, piste, club, firepit, dog park +yes +49.3819891 8.7064791, 49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.3903727 8.7038688, 49.3716601 8.7156918, 49.4157261 8.7004521, 49.4532301 8.7620686, 49.4129054 8.7286879, 49.4209333 8.7223854, 49.4221949 8.7060036, 49.4291183 8.7154588, 49.4157681 8.7006398, 49.4088360 8.7691224, 49.3882437 8.7497467, 49.4390162 8.7105044, 49.4305905 8.7775493, 49.4272716 8.7035465, 49.4393938 8.7104846, 49.4497204 8.7157564, 49.4428768 8.7011414, 49.4395208 8.7105611, 49.4326079 8.7091648, 49.4328392 8.7092032, 49.4342309 8.7101843, 49.4342740 8.7112555, 49.4442518 8.7151750, 49.4447625 8.7168293, 49.4468314 8.7142297, 49.4308426 8.7277671, 49.3795036 8.7459449, 49.3921408 8.7451114, 49.3950715 8.7223322, 49.3736364 8.7471636, 49.4311330 8.7033214, 49.4278439 8.6859389, 49.4082372 8.7465476, 49.4136970 8.7613615, 49.4238953 8.7651482 +53.7974026 -1.5888196, 52.5193429 -1.9956767, 51.4440363 0.2189902, 51.5082357 -0.2702788, 51.5271002 -0.0593109, -27.5314713 153.0241461, -37.8707434 145.2431359, -27.4457530 152.9935294, 52.7727382 -1.2061350, 52.9182441 -1.4749515, -26.1397921 27.9209351, 43.2092448 2.3257355, 52.8030223 -1.6298536, 52.5407303 -1.8844135, -37.8034410 144.9837020, 54.5622982 -1.3123694, 51.5449043 -0.1416992, 50.9199375 -1.4306764, 43.4360264 -80.5132918, 51.5842350 -2.9935927, 53.7988906 -1.5379273, 49.0749717 2.0780349, 51.3726774 -0.1000722, -37.9978007 145.0847359, -38.0207138 145.3038105, 52.2470692 0.7113915, -31.7415218 115.7626690, 51.6128466 -0.0650466, 43.6027465 1.4421408, -37.7844296 175.2784647, 57.1501326 -2.1016665, 47.2864345 5.0097571, 51.3656399 -0.1942536, -33.9168798 18.3889836, -34.8450340 138.5054716, -32.5353554 115.7406294, 55.9412241 -3.1809783, 28.4701750 -16.2500236, 52.0579419 1.1564266, 53.8020197 -1.5261661, -37.8501489 145.0917119, -37.7385625 145.0038051, 43.6080787 -79.6174984, 48.6581548 7.7300689, 48.8903264 2.1958847, 47.6164998 6.8531227, 52.6367410 1.3263925, 52.6341261 -1.6934881, 52.6312941 1.2882855, 52.6308935 1.2888212, 44.1201424 4.8408198, 52.2007041 0.1351282, 51.4839808 -0.2016925, 51.5811304 -0.0335441, 42.7757912 -71.4436183, -34.8765880 138.5513999, 52.9270411 -1.2156547, 51.3785518 -0.1035202, 51.7303181 0.4727366, 54.2812862 -0.4062226, 51.5361040 0.0770952, 51.5400520 0.0818832, 37.1296433 -76.5348145 +Trinity Apse +1 +55.9849796 -3.1929699 +Paroisse de Plaisance and 48.8343750 2.3166882 +277 +Heidelberg Marriott Hotel +48.8186338 2.3589337, 48.8370737 2.3788669, 48.9000609 2.3653350, 48.8563367 2.3884320, 48.8230158 2.3140310, 48.8685531 2.3429838, 48.8649072 2.2687029, 48.8723005 2.4127029 +161.26302111969574 +Bank of Scotland +10 +204 +yes +605 +yes +Bank of Scotland Halifax, Santander, Clydesdale Bank, Lloyds Banking Group, TSB, Royal Bank of Scotland, Bank of Scotland, LBG, Abbey, Nationwide Building Society, Royal Bank of Scotland, Lloyds Banking Group, Clydesdale Bank, Royal Bank of Scotland, Royal Bank of Scotland, Lloyds Banking Group, Clydesdale Bank, Lloyds Banking Group, Bank of Scotland, Halifax Bank of Scotland, Lloydes Banking Group, Lloydes Banking Group, Royal Bank of Scotland, Lloyds Banking Group, Lloyds Banking Group, Co-operative Bank, Nationwide, RBS, Lloyds Banking Group, Barclays Bank PLC, Barclays Bank PLC, TSB, HBOS, Lloyds Banking Group, Royal Bank of Scotland, Lloyds Banking Group, Clydesdale Bank, Lloyds Banking Group +no +Parc des Expositions de Paris - Porte de Versailles, Point zéro des Routes de France, Musée Grévin, Promenade du Canal Saint-Martin, Vedettes de Paris, Palais de Musique, Promenade Canal St. Martin, Plus Vieil Arbre de Paris, Place du Carrousel, Fontaine Cuvier, Le Centaure - César, Brasserie Bofinger, Renard des Steppes, Autruche, Takin, Markhor, Cheval de Przewalski, Dromadaire, Bharal, Flamant rose, Lama, casoar, Emeu, Antilope, Gaur, Poudou, Pécari, Baudet du Poitou, Raton laveur, Wallaby, Bouquetin, Takin, Anoa, Cabiai, Daim, Yak, Ara, Trompe-oeil Bach, Himalaya, Nouvelle-Calédonie, Cévennes, Maroc, Corse, Forêts Tropicales Humides, Rapaces, Espagne, Balkans, Chien des buissons, Provence, Préalpes, USA, Zone Arides des Déserts, Alpes, Histoire des Plantes, Petite Ferme, Caucase, La Galerie des Enfants, Japon - Chine, Tourbière, Faisanderie, Galliformes, Rapaces nocturnes, Panda roux, Oiseaux tropicaux, Binturong, Le Manoir de Paris, Lido, Chais et entrepôts de Bercy, Cinéma - Spectacle Centre Wallonie-Bruxelles, Tour de l'Horloge, Ancienne Crèmerie, Carrières des Capucins, Le Petit Train, Batobus, Maison de Madame Violet Trefusis, Canauxrama, Daim, Babouin de Guinée, Capucin, Capybara, Chien des buissons, Girafe, Glouton, Grand Koudou, Guanaco, Jaguar, Lion d'Afrique, Loup ibérique, Lynx d'Europe, Mara, Marabout d'Afrique, Oryx algazelle, Propithèque couronné, Poudou, Singe laineux, Tapir terrestre, Vautour fauve, Zèbre de Grévy, Autruche, Addax, Grand Calao terrestre, Grue couronnée, Manchot de Humboldt, Nandou de Darwin, Otarie à crinière, Puma, Rhinocéros blanc, Aigrette garzette, Ara hyacinthe, Avocette élégante, Calao trompette, Chevalier gambette, Cigogne d'Abdim, Dendrocygne fauve, Echasse blanche, Flamant rose, Fossa, Grand Hapalémur, Héron garde-bœuf, Ibis chauve, Ibis falcinelle, Loutre d'Europe, Lémur catta, Lémur couronné, Lémur vari roux, Lémur à ventre roux, Milan royal, Ombrette, Pigeon de Guinée, Roussette paillée africaine, Sarcelle hottentote, Souchet d'Europe, Spatule d'Afrique, Tantale ibis, Tortue rayonnée, Touraco violet, Vanneau armé, Vautour moine, Vautour percnoptère, Vivarium européen, Grille du Coq, Proust (dernier lieu de vie et décès), Bureau de Gustave Eiffel, Auditorium, La Sorbonne, Tour Eiffel, Cimetière du Père-Lachaise, Tour Montparnasse, Panthéon, Tour Saint-Jacques, Château de Vincennes, Basilique du Sacré-Cœur, Collège des Bernardins, Reptiles, Hôtel Lebrun, Pont Neuf, Pont Neuf, Église Saint-Eustache, Église de la Madeleine, Opéra Garnier, Hôtel de Lauzun, Presbytère, Centre Pompidou, Centre Wallonie-Bruxelles, Maison de Nicolas Flamel, Argonaute, Rotonde de la Villette, Cathédrale Saint-Louis des Invalides, Elysées Céramic, Maison de Tristan Tzara (Adolf LOOS Architecte), Moulin de la Galette, Palais de Chaillot, Palais de Chaillot, L'Orangerie de Bagatelle, Grande Volière, Dodo Carousel, Laboratoire Aérodynamique EIFFEL, Les Grandes Serres du Jardin des Plantes, École Militaire, Église du dôme, Place d'Aligre, École Nationale Supérieure des Beaux-Arts, Carrousel de Montmartre, Cavea des Arènes de Lutèce, Assemblée nationale, Bateaux-Mouches, Cathédrale Notre-Dame de Paris, Place de la République, Arc de Triomphe, Plan du quartier Jeanne d'Arc, Arc de Triomphe du Carrousel, Colonne de Juillet, Carrousel de la Tour Eiffel, Salle du Livre d'Or, Moulin de la Galette, pavillon Eiffel, pavillon Ferrié, Hippodrome de Longchamp, Hôtel de Ville, Palais de Justice, Palais de l’Élysée, Hôtel des Invalides, Place des Vosges, Petit Palais, Rotonde, Hôtel de Soubise +yes +yes +189 +yes +no +21 +55.9286779 -3.2096502, 55.9475295 -3.2065018, 55.9709217 -3.2085540, 55.9710794 -3.2083765, 55.9713224 -3.2074276, 55.9584008 -3.2092092, 55.9601757 -3.2559248, 55.9312309 -3.2523089, 55.9511924 -3.1760524, 55.9073786 -3.2585910, 55.9531081 -3.2008271, 55.9450251 -3.2048945, 55.9616053 -3.1809060, 55.9122939 -3.1636240, 55.9053215 -3.1319819, 55.9359156 -3.2099930, 55.9391016 -3.2261638, 55.9426048 -3.1828681, 55.9284825 -3.2096589, 55.9457396 -3.1854060, 55.9492055 -3.1928272, 55.9457630 -3.2348824, 55.9531031 -3.1974183, 55.9442023 -3.2038200, 55.9350165 -3.1943787, 55.9503960 -3.1873714, 55.9086565 -3.2096817, 55.9809058 -3.1784709, 55.9569588 -3.1874026, 55.9013749 -3.2048039, 55.9541472 -3.1916750, 55.9498996 -3.2091714, 55.9511059 -3.2031477, 55.9504209 -3.2072119, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9537368 -3.1946870, 55.9537500 -3.1946096, 55.9468356 -3.2159630, 55.9379488 -3.2323230, 55.9573609 -3.2064305, 55.9530711 -3.2010501, 55.9526098 -3.2039830, 55.9430480 -3.2039420, 55.9576925 -3.1843665, 55.9527506 -3.1965698, 55.9507785 -3.2057118, 55.9514350 -3.2026235, 55.9517068 -3.2027827, 55.9516311 -3.1963503, 55.9717098 -3.1715371, 55.9491465 -3.2108241, 55.9522247 -3.1996285, 55.9420700 -3.2221190, 55.9533643 -3.1992326, 55.9695931 -3.1723910, 55.9552824 -3.1886051, 55.9275226 -3.2095127, 55.9462004 -3.1850058, 55.9700768 -3.1718970, 55.9526548 -3.1971889, 55.9267933 -3.2094073, 55.9245093 -3.2096867, 55.9562269 -3.1380823, 55.9275049 -3.1644260, 55.9274977 -3.1640447, 55.9683279 -3.1734427, 55.9375948 -3.1784176, 55.9461675 -3.2083866, 55.9325351 -3.1397933, 55.9453646 -3.1914973, 55.9453776 -3.1916473, 55.9507459 -3.2052838, 55.9538645 -3.1977873, 55.9549461 -3.1936274, 55.9550466 -3.1929475, 55.9519378 -3.2048677, 55.9527501 -3.2005561, 55.9525006 -3.1971100, 55.9535447 -3.1920694, 55.9528295 -3.1149002, 55.9533094 -3.1146987, 55.9524703 -3.1136856, 55.9587335 -3.2260450, 55.9575370 -3.1698723, 55.9252818 -3.2099781, 55.9342963 -3.2105127, 55.9756176 -3.1666794, 55.9748270 -3.2379923, 55.9544888 -3.1913969, 55.9756625 -3.1668579, 55.9528337 -3.1973510, 55.9544909 -3.1908045 +no +Riegler, Bäckerei Rühle, Cafe Frisch, Mahlzahn, Mantei, Riegler, Paris, Mantei, Kamps, Der Kleine Gundel, Bäckerei Rodemer, Bäcker Tschakert, Bäckerei Riegler, Stefansbäck, Bäckerei Grimm, Grimminger, Mantei, Seip, Cafè Frisch, Bäckerei Tschakert, Grimminger, Mahlzahn Vollkornbäckerei, mantei, Bridi, Conditorei Zimmermann, Mantei, Grimminger, Bäckerei Tschakert, Riegler, Görtz, Rühle, Kamps, Göbes Sophie, Schlierbacher Schiff, Mantei, Riegler, Mahlzahn Vollkornbäckerei, Rühle Bäckerei, Riegler, Wiener Feinbäckerei Heberer, LE CROBAG, Helin Backwaren, Grimminger, Mantei, Pfänder, mantei, Mantei, Stefansbäck, Riegler, Patisserie La Flamm, Grimminger, Backshop, Lecker Bäcker, Breitenstein Bäckerei, K&U, Backwaren, Bäckerei Mantei, Bäckerei Wacker, Bäckerei & Konditorei Stahl, Bäckerei Siegel, Café Frisch, Goldkorn, Görtz, Görtz, Laib & Leben, Riegler, Bäckerei Bernauer, Kohlmann +yes +49.5526338 8.6554413, 49.5513229 8.6687450, 49.5554496 8.6699318, 49.5596224 8.6688235, 49.5462868 8.6715791, 49.5492546 8.6740750, 49.6390443 8.7586809, 49.6491519 8.7786154, 49.5496361 8.6716921, 49.6146080 8.6736398, 49.6015351 8.5181143, 49.6047659 8.4764246, 49.6458511 8.5671019, 49.6467494 8.5615748, 49.6566529 8.5677748, 49.6445836 8.5677274, 49.6417095 8.5631262, 49.5971548 8.4682347, 49.6052567 8.4710750, 49.6036653 8.4650992, 49.5192833 8.5023439, 49.5017017 8.5044127, 49.5273884 8.7489962, 49.5625744 8.6656969, 49.6468579 8.6317019, 49.4764727 8.5581500, 49.5001511 8.4141813, 49.4858432 8.3892989, 49.5954551 8.4634480, 49.5940946 8.4598127, 49.5299064 8.7421002, 49.5270569 8.7608652, 49.5435708 8.5967846, 49.5979747 8.4757516, 49.5988026 8.4845303, 49.5885363 8.4859606, 49.5845876 8.4879738, 49.5026807 8.4702380, 49.6017750 8.5148540, 49.5953600 8.5833630, 49.5989820 8.5839630, 49.4766349 8.5210604, 49.4766109 8.5210589, 49.4760288 8.4678779, 49.5279213 8.3955159, 49.6041485 8.7393504, 49.5271969 8.6651823, 49.6229182 8.6958850, 49.5976216 8.7371486, 49.5990671 8.7380614, 49.6233348 8.7592105, 49.6239213 8.7540220, 49.5693320 8.7183717, 49.5799659 8.7150421, 49.5836852 8.7060844, 49.5668665 8.7346098, 49.5987193 8.7329887, 49.4784646 8.4963955, 49.4822964 8.4896176, 49.4776805 8.4832901, 49.5900011 8.7564846, 49.5824512 8.7701378, 49.6499908 8.6340695, 49.5505849 8.8129790, 49.5497942 8.8086360, 49.6147886 8.7162592, 49.4815121 8.4828496, 49.5819364 8.7454907, 49.6424512 8.6384492, 49.5973081 8.7352102, 49.5596089 8.7845832, 49.5282525 8.3853190, 49.4806473 8.5961070, 49.5291303 8.3918875, 49.4785782 8.6564609, 49.6043110 8.7457135, 49.6044250 8.7292229, 49.5421727 8.6636876, 49.4869999 8.7367276, 49.5660788 8.7990762, 49.5532677 8.6658488, 49.5697702 8.7099088, 49.5637955 8.7072905, 49.5610225 8.6903218, 49.4805167 8.6715673, 49.5523081 8.5951882, 49.6118535 8.7753135, 49.6050755 8.7600210, 49.6091623 8.6418976, 49.4943601 8.7246887, 49.5454675 8.6298570, 49.6149320 8.6503966, 49.5002983 8.5498171, 49.6105522 8.6532369, 49.6020099 8.7677160, 49.4989775 8.4996107, 49.6150231 8.9143821, 49.5455206 8.7291779, 49.5078054 8.3629459, 49.4760467 8.6993112, 49.5361742 8.5642657, 49.5213559 8.4025971, 49.6726030 8.7316620, 49.5411428 8.6400552, 49.5449883 8.6380933, 49.6759656 8.7650417, 49.6696052 8.7669330, 49.4886950 8.5438017, 49.4865780 8.5341631, 49.4871974 8.5284071, 49.4842068 8.5321272, 49.4844998 8.5396275, 49.4813475 8.5392948, 49.4906189 8.5252295, 49.4928093 8.5231160, 49.4950978 8.5284279, 49.4823499 8.4795195, 49.6677528 8.7451867, 49.5145230 8.6578124, 49.6562702 8.7547711, 49.6469373 8.7735990, 49.5366820 8.6659671, 49.5909727 8.7236941, 49.5888987 8.6549457, 49.5358085 8.4971147, 49.6209834 8.9451249, 49.4805822 8.5566713, 49.4928618 8.4046445, 49.4957477 8.4153853, 49.5508996 8.6679749, 49.4845835 8.4861412, 49.4915516 8.3784579, 49.5127526 8.5766366, 49.4825657 8.4492995, 49.4982324 8.7655052, 49.4924928 8.3764937, 49.4786030 8.4903082, 49.6445901 8.7362064, 49.5793143 8.7544635, 49.5480018 8.3774413, 49.5411759 8.6979134, 49.5150489 8.7482457, 49.5418725 8.3751679, 49.5493313 8.6856291, 49.6476051 8.7947973, 49.6429053 8.7968483, 49.6642107 8.7970938, 49.5208026 8.6986241, 49.5416163 8.6583108, 49.5401579 8.6578378, 49.4868908 8.4676669, 49.4928220 8.4705420, 49.5020864 8.4704715, 49.5261504 8.8636211, 49.5139200 8.8528708, 49.5464780 8.7680625, 49.6098312 8.8122662, 49.5862746 8.8146330, 49.6518562 8.7848309, 49.5517497 8.8515418, 49.5661178 8.7025227, 49.4911119 8.3742960, 49.5832325 8.7940521, 49.5638706 8.7714332, 49.4768792 8.7597110, 49.5578177 8.7067432, 49.5486105 8.7553751, 49.5852926 8.7016688, 49.5785870 8.7199786, 49.5559207 8.6889238, 49.5273739 8.5651748, 49.5266308 8.5656324, 49.4797746 8.4391042, 49.4989805 8.4843058, 49.4941948 8.4844155, 49.5425908 8.4678925, 49.5001116 8.4803170, 49.5444562 8.4781503, 49.5037603 8.4961936, 49.5110301 8.4710668, 49.5330260 8.5941277, 49.4873169 8.4784566, 49.6656426 8.6609367, 49.6521423 8.6500108, 49.5114636 8.5350050, 49.6669516 8.8112186, 49.5424915 8.4717533, 49.6589466 8.8013252, 49.5391501 8.4773405, 49.4959898 8.4310922, 49.5110988 8.7443994, 49.4946219 8.3724195, 49.5181730 8.4097783, 49.5150107 8.4033010, 49.6388516 8.7691296, 49.5903819 8.6385883, 49.6269184 8.7623574, 49.5311679 8.3834222, 49.5109697 8.5390654, 49.6592860 8.8414793, 49.6333827 8.6325752, 49.5118162 8.6060150, 49.5613325 9.0150075, 49.5995733 8.8345813, 49.5050598 8.4882934, 49.4920089 8.4654110, 49.4891200 8.4631089, 49.4855525 8.4714451, 49.6717144 8.6238800, 49.6732916 8.6243610, 49.6212544 8.7673967, 49.4777080 8.4194033, 49.4826588 8.4298418, 49.4783913 8.5133178, 49.4787334 8.4823454, 49.4818243 8.4728248, 49.6251009 8.7584019, 49.5075555 8.5062085, 49.5123400 8.4990766, 49.4890790 8.3723447, 49.5003383 8.4681392, 49.4886025 8.5229300, 49.5048012 8.6049417, 49.5058154 8.5991281, 49.5109111 8.5175535, 49.5134609 8.5109622, 49.5038199 8.5124492, 49.5294880 8.4924719, 49.4982055 8.4910773, 49.4976749 8.4778943, 49.5033335 8.4634707, 49.4847637 8.4636093, 49.6675554 8.6315104, 49.4795588 8.4696925, 49.4972386 8.4722901, 49.4988236 8.4674949, 49.4966530 8.4866256, 49.5047040 8.4880834, 49.5124002 8.6565502, 49.6528838 8.5673290, 49.4782712 8.5070996, 49.4786515 8.5098927, 49.6273416 8.7269432, 49.5023852 8.4465135, 49.4938995 8.4579290, 49.5323131 8.4701018, 49.4989234 8.4484845, 49.5059134 8.5174984, 49.5080014 8.4776263, 49.4989638 8.5029609, 49.4779866 8.4958199, 49.5903363 8.6525815, 49.5941595 8.6540387, 49.4847568 8.4740166, 49.5138316 8.5479243, 49.4992414 8.4165235, 49.5918833 8.6618825, 49.4843868 8.5321396, 49.4853591 8.7967688, 49.4768109 8.4038972, 49.5676732 8.9734875, 49.5863527 8.6469574, 49.5619418 8.4791997, 49.4878267 8.5258092, 49.4786924 8.5981080, 49.5152437 8.5181165, 49.4871957 8.4669323, 49.5299515 8.5718285, 49.5314204 8.5765244, 49.4794425 8.5535035, 49.4831596 8.5610945, 49.4769338 8.5657223, 49.4774095 8.5619997, 49.4848515 8.4814311, 49.5051898 8.4935473, 49.5207522 8.4034862, 49.5517543 8.3782358, 49.4982790 8.6570508, 49.4981719 8.6521516, 49.4853666 8.4627430, 49.4804899 8.4860880, 49.4848495 8.4761497, 49.4880198 8.4642243, 49.4897409 8.4377712, 49.5075268 8.5062729, 49.5942259 8.6445664, 49.4975985 8.4900640, 49.4868107 8.4688548, 49.4778624 8.4536125, 49.4982857 8.5565417, 49.6750068 8.6450981, 49.5030146 8.6016449, 49.4858508 8.4824634, 49.4883473 8.4056724, 49.4765745 8.4860680, 49.5390884 8.4502362, 49.5056775 8.4842932, 49.5457099 8.4464512, 49.5031646 8.3819405, 49.4798502 8.4487432, 49.6334910 8.6209501, 49.6368541 8.6191745, 49.6389246 8.6189867, 49.5219624 8.6659217, 49.5253338 8.6668826, 49.5302210 8.8617403, 49.4995180 8.4905691, 49.5268383 8.6549756, 49.5028783 8.6616836, 49.5079175 8.6287307, 49.5105009 8.6634850, 49.4960866 8.5527532, 49.6427828 8.6512072, 49.6439529 8.7235692, 49.6460906 8.6869091, 49.4821573 8.4496006, 49.5109298 8.7312150, 49.5049826 8.7665026, 49.4876255 8.4685410, 49.4805032 8.4790806, 49.4807315 8.4835521, 49.5223778 8.3942438, 49.4789422 8.4404426, 49.4919017 8.3762136, 49.4928241 8.3719058, 49.4945002 8.3722348, 49.4965126 8.5478242, 49.4933598 8.4183256, 49.5933244 8.9889913, 49.5265918 8.4789790, 49.5049367 8.5273225, 49.6085770 8.6485202, 49.6083653 8.6527742, 49.5235488 8.4856429, 49.5308660 8.6481632, 49.5330110 8.6443614, 49.4924070 8.4196660, 49.4920108 8.4203004, 49.6392769 8.6309404, 49.5162649 8.4005627, 49.5306577 8.4999107, 49.4969376 8.4207200, 49.5386334 8.5790385, 49.5400345 8.5792127, 49.5267542 8.5619915, 49.5191389 8.4062496, 49.5289761 8.6181849, 49.5412571 8.5655589, 49.5465615 8.5675124, 49.5479095 8.5979610, 49.5901501 8.8932495, 49.5473900 8.5917604, 49.5328738 8.5840945, 49.5405306 8.5884183, 49.5416058 8.5883322, 49.6035142 8.4793012, 49.5010293 8.4763173, 49.5183424 8.4631446, 49.5293353 8.4507912, 49.5243872 8.4958207 +yes +primary, residential, primary, primary, primary, primary, primary, pedestrian +55.9517532 -3.2076351 +yes +55.9814339 -3.1885738 +de:Rathaus (Heidelberg) +55.9286779 -3.2096502, 55.9475295 -3.2065018, 55.9709217 -3.2085540, 55.9710794 -3.2083765, 55.9713224 -3.2074276, 55.9584008 -3.2092092, 55.9601757 -3.2559248, 55.9312309 -3.2523089, 55.9511924 -3.1760524, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9531081 -3.2008271, 55.9450251 -3.2048945, 55.9616053 -3.1809060, 55.9122939 -3.1636240, 55.9383223 -3.4081252, 55.9359156 -3.2099930, 55.9391016 -3.2261638, 55.9426048 -3.1828681, 55.9284825 -3.2096589, 55.9457396 -3.1854060, 55.9492055 -3.1928272, 55.9457630 -3.2348824, 55.9531031 -3.1974183, 55.9442023 -3.2038200, 55.9350165 -3.1943787, 55.9503960 -3.1873714, 55.9612140 -3.3062746, 55.9809058 -3.1784709, 55.9569588 -3.1874026, 55.9328871 -3.3087416, 55.9541472 -3.1916750, 55.9428244 -3.2815918, 55.9498996 -3.2091714, 55.9511059 -3.2031477, 55.9504209 -3.2072119, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9537368 -3.1946870, 55.9537500 -3.1946096, 55.9468356 -3.2159630, 55.9379488 -3.2323230, 55.9573609 -3.2064305, 55.9530711 -3.2010501, 55.9526098 -3.2039830, 55.9430480 -3.2039420, 55.9576925 -3.1843665, 55.9527506 -3.1965698, 55.9507785 -3.2057118, 55.9514350 -3.2026235, 55.9517068 -3.2027827, 55.9516311 -3.1963503, 55.9717098 -3.1715371, 55.9491465 -3.2108241, 55.9522247 -3.1996285, 55.9420700 -3.2221190, 55.9533643 -3.1992326, 55.9695931 -3.1723910, 55.9552824 -3.1886051, 55.9275226 -3.2095127, 55.9462004 -3.1850058, 55.9700768 -3.1718970, 55.9655823 -3.2732115, 55.9526548 -3.1971889, 55.9267933 -3.2094073, 55.9245093 -3.2096867, 55.9562269 -3.1380823, 55.9275049 -3.1644260, 55.9274977 -3.1640447, 55.9683279 -3.1734427, 55.9375948 -3.1784176, 55.9461675 -3.2083866, 55.9325351 -3.1397933, 55.9453646 -3.1914973, 55.9453776 -3.1916473, 55.9507459 -3.2052838, 55.9538645 -3.1977873, 55.9549461 -3.1936274, 55.9550466 -3.1929475, 55.9519378 -3.2048677, 55.9527501 -3.2005561, 55.9525006 -3.1971100, 55.9535447 -3.1920694, 55.9528295 -3.1149002, 55.9533094 -3.1146987, 55.9524703 -3.1136856, 55.9587335 -3.2260450, 55.9575370 -3.1698723, 55.9252818 -3.2099781, 55.9342963 -3.2105127, 55.9756176 -3.1666794, 55.9429604 -3.2929801, 55.9426525 -3.2829003, 55.9430016 -3.2880429, 55.9656482 -3.2744012, 55.9748270 -3.2379923, 55.9233852 -3.2910431, 55.9234641 -3.2913646, 55.9544888 -3.1913969, 55.9383988 -3.3146583, 55.9756625 -3.1668579, 55.9528337 -3.1973510, 55.9544909 -3.1908045 +55.9412176 -3.1828378, 55.9283544 -3.2096488, 55.9277999 -3.2091571, 55.9508266 -3.2048045, 55.9460465 -3.2016265, 55.9446069 -3.1855056, 55.9588659 -3.2111897, 55.9815168 -3.1763960, 55.9103355 -3.3217849, 55.9524411 -3.1952812, 55.9702278 -3.2078937, 55.9346065 -3.2098926, 55.9710931 -3.2094157, 55.9710703 -3.2098491, 55.9478310 -3.1861334, 55.9529704 -3.2016563, 55.9543069 -3.1885259, 55.9273534 -3.1644654, 55.9331077 -3.1661015, 55.9462803 -3.2000712, 55.9463119 -3.1999342, 55.9630490 -3.2006080, 55.9637163 -3.2016172, 55.9481674 -3.1942981, 55.9476177 -3.1925449, 55.9472836 -3.1920023, 55.9472570 -3.1916452, 55.9471176 -3.1917878, 55.9593444 -3.1839099, 55.9488012 -3.1931423, 55.9642562 -3.1769749, 55.9443038 -3.1834963, 55.9476854 -3.1860695, 55.9341951 -3.1068165, 55.9519038 -3.1896191, 55.9392059 -3.3146403 +2 +69 +48.8316089 2.3555656, 48.8699280 2.3499165, 48.8321351 2.3486444, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8293608 2.3803043, 48.8339810 2.3847461, 48.8562087 2.3767474, 48.8210197 2.3568688, 48.8789680 2.3090890, 48.8353270 2.3472350, 48.8450099 2.3109341, 48.8608218 2.3464552, 48.8296315 2.3814341, 48.8361094 2.3872805 +68 +55.9470365 -3.1966624, 55.9473807 -3.1953726, 55.9539470 -3.1868320 +101 +1231 and Pech de Bugarach, 2921 and Pic Carlit, 1211 and Pic de Nore, 2909.94 and Puigmal d'Err, 1663.38 and Montfalgars, 2784.66 and Pic du Canigou, 2572 and Puig Farinós, 2414.8 and Roca de Colom, 2692.4 and Puig Pedró de la Tossa, 1091 and Le Caroux, 2412 and Pic du Bernard Sauvage, 2292 and Puig d'Escoutou, 2362 and Pic Joffre, 1778 and Puig de l'Estelle, 1581.3, Mourral Blanc, 685 and Roc de l'Aigle, Mont Cayroux, 925 and Mont Sarrat, Roc du Couillou, 773 and Pic de la Matalena, 646 and Moun Camp, 682 and Moun Simel, 585 and Roc d'Agnel, Mont Péril, Pic de San Marti, Pic de Rey, Roc du Tonnerre, Mont Redon, 978 and Serre d'Alaric, 2786 and Pic d’Eyne, 2861 and Pic de les Nou Fonts, 2651 and Pic des Sept Hommes, 2714 and Puig del Roc Negre, 2266 and Pic de Cincreus, 175 and Mont Saint-Clair, 2507 and Roca Colom, 2690 and Petit Péric, 2818 and Pic d'Engorgs, 2915 and Puigpedrós, 2504.1 and Puig de la Llosa, 1640.9 and Puig de l'Artiga del Rei, 1640.7 and Puig Pedrissa, 1654.4 and Puig de la Clapa, 2863 and Tosseta de l'Esquella, Roc Sant Julia, 2039 and Roc des Trépassats, 2880.4, 1126 and Pic de la Falguerosa, 1062 and Pic de la Pena, Puig d'En Carol, 2827 and Pic de Finestrelles, 1009 and Pic de l'Alzina, Roc Rouge, 2469.4 and Pic de Madrès, 1430.4 and Roc du Casteldos, 1843.5 and Pic Dourmidou, 1555.93 and Serre de Caillong, 2027.4 and Picaucel, 707.28 and Montolier de Perellos, 433.46 and Caja, 685.83 and Roc de Nabant, 298.55 and Plan du Pal, 589.96 and Serre de Quintillan, 1220.7 and Le Karimal, 1595.4 and Montagne de Crabixa, 843.03 and Roque de Méric, 1494.8 and Pic d'Estable, 1143.2 and Tuc de Gaubeille, 1342 and Pech dels Escarabatets, 57, 878.85 and Montagne de Tauch, 916.52 and Pech de Fraysse, 104 and Puech de Grange, 55.4 and L'Esquino de Camel, 764.94, 623.2, 788.03, 764.06, 564 and Pic de Brau, 1014.63 and Pic Saint-Christophe, 1234.63 and Roc Saint-Sauveur, 2810.2 and Pic Péric, 2325.5 and Roc d'Aude, 2376 and Mont Llaret, 2804.3 and Pic Oriental de Coll Roig, 2671 and Puig de la Grava, 583.95 and Serre de Vergès, 532.8 and Roc Rodon, 982.5 and Pic de Sailfort, 1279.72 and Pilon de Belmatx, 1706.4 and Serrat dels Cabanats, 1995.2 and Serra de Clavera, 714.6 and Puig de la Calma, 322.5 and Martal, 130.52 and Puig de les Redoleres, 395.93 and Pic Haut, 377.37 and Pic Estelle, 695.46 and Puig de Boc, 774.67 and Mont Héléna, 345.98 and Serrat d'En Bougader, 265.98 and Serrat de la Devesa, 1024.72 and Pic de Bau, 1626.7 and Serrat del Cortal, 633.41 and Le Néret, 323.46 and Peyro d'Arquo, 540.52 and Pic Aubeill, 2112.6 and Pic de Dona Pa, 718.25 and Roc de l'Hirondelle, 903.7 and Tuc d'En Guinxe, 674.54 and Pic de la Garsa, 1333.31 and Pic de les Salines, 1092.64 and Pic de Fontfrède, 725.17 and Pic Mirailles, 247.11 and Puig Oriol, 291.56 and Montou, 794.1 and Serrat d'En Parrot, 930.08 and Puig de Sant Miquel, 2288.31 and Pic de Mollet, 339.45 and Pedra Blanca, 2581.1 and El Punxo, 1773.28 and Pic de Bena, 2349.83 and La Tossa d’Err, 2098.8 and Tres Esteles, 100.86 and Serrat de la Devesa, 1211.2 and Puig des Moros, 1159.9 and L'Estanyol, 2831 and La Tour d’Eyne, 2711.45 and Cambre d’Aze, 573.8 and Pic Lazerou, 1105.4 and Roc d'En Peillofo, 2726.79 and Pic Moneliet, 2624.11 and Pic du Gallinas, 2412.4 and Serra de Mauri, 2470.12 and Puig del Pam, 2061.72 and Roc de les Perxes Blanques, 814.04 and Puig Forcat, 925.85 and Puig de les Feixes, 2172.2 and Mont Coronat, 500.57 and Roch de Lansac, 424.5 and Sarrat del Coude, 2662.83 and Pic de la Serre Gallinière, 2456.61 and Cime de Pomarole, 2042.3 and El Dormidor, 2093.31 and Pic Bastard, 507.17 and Força Réal, 437.55 and Puig Pedrous, 448.31 and Roc del Mut, 1632.3 and Pic del Torn, 1723.8 and Serra d'Escales, 1376.8 and Serrat de Mirailles, 1313.9 and Pic du Roussillon, 200.16 and Roc Calbeil, 2345.4 and Pic de la Rouquette, 1797.8 and Pic de Portepas, 1451.2 and Pic de la Moscatosa, 2204.1 and Roc de la Calma, 424.41 and Mont Plat, 2051.9 and La Llabanère, 1655.9 and Lloumet, 673.5 and Pic de la Pouge, 2309.47 and Serrat de l'Escaldat, 2736.56 and Pic de Font Freda, 2876.87 and Pics de Font Negra, 1687 and Cim de Portavella, 1766.02 and Puig Caga Llops, 2403.29 and Puig de la Collada Verde, 1642.09 and Puig Sec, 1830.31 and Puig dels Sarraïs, 1313.85 and Puig Ferreol, 1147.06 and Puig Fabre, 770.6 and Roc del Nissol, 899.57 and Roc Paradet, 2134.8 and Serrat de la Mente, 1356.4 and Roc des Quarante Croix, 2006.46 and Puig d'Esquena d'Ase, 1450.26 and Roc de Frausa ou Roc de France (1409m), 1030.09 and Peyre Basse, 687.73 and Puig del Coll del Teixo, 530.25 and La Cougoulère, 823.33 and La Redoute, 1211.88 and Serre de la Garsa, 1194.41 and Mont Capell, 2059.74 and Pic d'Estaques, 597.5 and Le Devès, 566.43 and Serre de l'Artigue del Baurien, 2369.7 and Pic de la Pelade, 2034.18 and Pic de la Tossa, 1790.2 and La Tartera, 1425.26 and Mont Nègre (1425m), 871.97 and Serra del Bouchet, 1256.31 and Pic Néoulous, 794 and Garrabet, 2137.69 and Pic dels Moros, 2044.2 and La Soucarrade, 225.08 and Montrodon, 2731 and Puig dels Tres Vents, 1383.1, 800.63 and Sarrat d'Espinets, 1730.9 and Puig dels Bessis, 2461.4 and Pic Gallinasse, 2060.5 and Roc des Bassouses, 194.37 and Puig Janer, 454.95 and Mont d'Espira, 1309.9 and Sarrat Naout, 2108, Pic de Tantajo, 1901 and Roc Mosquit, 2006 and Pic de la Socarrada, Coll de la Fareille, 670 and Madeloc, 2881.3 and Puig de Bastiments, Roc de Journac, 2683 and Pic de la Mina, Roc de Jocavell, 2702 and Pic de la Dona, Roc de Salimanes, Roc Punchut, 2547 and Pic Mercader, Roc du Maure, 185 and Mont Saint-Bauzille, 2495.7 and Puig de Coma Ermada, Puig dels Pruners, Roc de la Campana, Roc de la Sentinella, Puig del Torn, 2532 and Puig de Terrers, 2597.1 and Pic de la Portella, 2333 and Roc de Nou Fonts, Roc Mary, Roc Campagna, 2673 and Tossal Colomer, 2450 and Roc Negre, Salt del Burro, Pic de la Fajolle, 60 and Mour, Roc de l'Aigle, El Roc Gros, 481 and Pic de Vissou, 1073 and Roc du Nouret, 1060 and Roquo d'Astié, 535 and Mont Liausson, 502 and Mont Mars, 2691 and Pic de Bacivers, 2638 and Puig d'Ombriaga, 2869.5 and Pic de l'Infern, 207 and Le Pech, 180 and La Roche Trouée, 125 and Pech Tenarel, 250 and Mont Grand, 155 and Pech Aigu, 225 and Saint-Jacques, Pech de l'Auzine, Pech des Combarelles, 65 and Pech Na Redorte, 200 and Plo de Maurou, Pech Tignoux, La Buissonière, 500 and Le Castelas, 430 and Roque Fumade, La Pique, Pech d'Aragnou, Pech Sarda, Pech de Brens, 1098.01 and Plo des Brus, 2013, Redoun, 500 and Roc de l'Aigle, 1918 and Pic de l'Orry, 1936 and Pic des Agrellons, Le Roc Troué, Sarrat de Labade, 2206 and Pic de la Calma, La Capsole, Coste Rouge, Plateau de Lacamp, 396 and Roc de la Vella (de l'abeille), pech de laure, 300, 1034 and Roc du Caroux, Roc de l'Escriban, Pech Counille, Pech Ginestié, Roc Rouge, La Cioutat, Milobre de Massac, Roc de Matefagine, Rocher de Béraud, La Clape, L'Aïrole, Pech Berles, Pech Lagardie, Pech de Bourrel, La Pique, Pech de Gouache, 793 and Massane, 2826 and Pic Inferior de la Vaca, Pech Cardou, 1081 and La Pique Grosse, Roc d'En Benoit, Roc Serret, 576 and La Serre, 356, 520, Pic du Porteil du Bech d'Ourteil, Roc de la Couillade del Peyroulet, Roc du Taillat del Bossut, Serrat du Roc Mary, Pic du Pla de Bernard, Pic de la Rouquette, Courtalets, Pic Barbet, Pic Bas del Canigo, Collet des Bessis, Roc Roig, Roc de Cardenius, Mont Courounat, Pic de la Créou, Roc Rodon, Roc Cante Lloups, Roc del Barry d'en Naudy, Roc del Soula de Mollere, Roc del Soula del Mix, Roc dit la Soucaillousse, Roc du Coll Diagre, Roc du Mont Courounat, Puig de Passadong, Roc dals Clots del Gourg, Couillade de la Rabadane, Roc des Cimbeils, Pic del Signor, Roc de la Roquette, Roc del Cim des Cums, Roc dels Lladres, 2040 and Pic de l'Orry, Crête des Sept Hommes, 2637 and Pic de Bassibès, Pic de Soule de Ramounet, Pic de la Solane de l'Ours, Pic des Gourgs, Pic du Bois de la Ville, Pic du Quazemi, Puig Sec, Roc de Mariailles, Roc de Terrellou, Roc de l'Aigle, 2724 and Pic Rougeat, Pic de Coumeille, Pic de Gallinasse, Pic de Serre Bernet, Puig Coulomb, Puig de las Coubynes, Roc Pointu de Coll Roig, Roc de la Cabane en Ribe, Pic Pastous, Roque Coucoulière, Pic de Pel de Ca, Pilon du Pla de la Pilote, Puig d'el Boulet, Roc Redou, Sarrat de Font Frede, Puig del Traucadou, Roc de la Roquette, Roc de Calamiche, Rocher du Palet de Rouland, Pech en Barthe, Montpeyrous, Au Mont Cal, Au Mont Long, 1557.7 and Coma Negra, 1289.4 and Puig de la Llibertat, Pech de la Vigne, Pech de l'Homme, Pech del Bousquet, Pech du Seigneur, Pech de Mont-Carretou, Roque Vacquière, Pech de Rie, 147, 187, 690 and Pic de la Coquillade, 2801 and Puigmal de Llo, 2663, 520 and Roc Traucat, 1629 and Castell Vidre, 2596 and Les Abelletes, 2714 and Pic dels Pedrons, 1015, 1182 and Pic des Sarrasis, 1179 and Pic du Midi, 1453, 670, 283, 112 and Mont Saint-Loup, 590 and Signal d'Alaric, 504, 455, 280, quiersboutou +yes +55.9575618 -3.1847902, 55.9491314 -3.1876537, 55.9757878 -3.2301721, 55.9621811 -3.2003284, 55.9526181 -3.1750774, 55.9471770 -3.1904575, 55.9254145 -3.2090883, 55.9764403 -3.1701500, 55.9504129 -3.2949801, 55.9601603 -3.2006854, 55.9299490 -3.2096090, 55.9592433 -3.2230171, 55.9481079 -3.1917724, 55.9034567 -3.1574061, 55.9808227 -3.2245927, 55.9479318 -3.1942157, 55.9166326 -3.2276420, 55.9467615 -3.2168254, 55.9524553 -3.1968363, 55.9501797 -3.1870275, 55.9428645 -3.2037697, 55.9484729 -3.1956543, 55.9478512 -3.2019348, 55.9452311 -3.1921670, 55.9449743 -3.1941250, 55.9701331 -3.1723584, 55.9411858 -3.2034013, 55.9558388 -3.1571446, 55.9250843 -3.2616025, 55.9473220 -3.2061120, 55.9382464 -3.1945920, 55.9356972 -3.2104575, 55.9457633 -3.2087758, 55.9458777 -3.2095906, 55.9466672 -3.2371272, 55.9308474 -3.2091419, 55.9461542 -3.1854391, 55.9057145 -3.2240658, 55.9618487 -3.1523081, 55.9499509 -3.2074622, 55.9379652 -3.1900697, 55.9487732 -3.1929905, 55.9164262 -3.2851068, 55.9724535 -3.2516505, 55.9626190 -3.2334642, 55.9477849 -3.3610098, 55.9486801 -3.3621149, 55.9459285 -3.2185692, 55.9523009 -3.1919415, 55.9491345 -3.1940862, 55.9512470 -3.1890625, 55.9527128 -3.2015822, 55.9282591 -3.2096099, 55.9518891 -3.1996221, 55.9520193 -3.2031623, 55.9509410 -3.2098198 +49.4091649 8.6726851, 49.4079210 8.6866720, 49.4117371 8.7091875, 49.4073921 8.6825502, 49.4095865 8.7066610, 49.4115410 8.7046342, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4066053 8.6919726 +Muni, 1AX, 18, 1, Megabus +49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.3988716 8.6899921, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.4240406 8.6385449, 49.3851489 8.6733031, 49.3848920 8.6803000, 49.3673694 8.6862886, 49.4061345 8.6593850, 49.3956207 8.6692054, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.3704305 8.7013213, 49.4296958 8.6455225, 49.3810973 8.6895578, 49.4172010 8.6768150, 49.3593333 8.6876382, 49.3810576 8.6896077 +no +yes and 55.9574046 -3.3230477, 55.9563697 -3.2376633, 55.9354331 -3.2242769, 55.9392424 -3.2010466, 55.9630348 -3.1740635, 55.9636752 -3.2167624, 55.9155151 -3.2156990, 55.9237589 -3.2171331, 55.9631503 -3.2832688, 55.9707352 -3.1568526, 55.9711168 -3.1640718, 55.9711895 -3.1683355, 55.9145033 -3.1296918, 55.9791781 -3.2011172, 55.9338646 -3.2264850, 55.9152441 -3.2516004, 55.9825353 -3.2514844, 55.9323450 -3.1584833, 55.9514018 -3.1936345, 55.9045650 -3.2720601, 55.9521243 -3.1789512, 55.9381330 -3.1218602, 55.9302907 -3.1173483, 55.9321591 -3.1257994, 55.9454147 -3.2890984, 55.9065021 -3.2613856, 55.9553731 -3.1825389, 55.9568292 -3.1779262, 55.9601227 -3.1513553, 55.9621472 -3.1499805, 55.9680426 -3.1805444, 55.9587614 -3.1443997, 55.9556803 -3.1479525, 55.9557299 -3.1456799, 55.9401990 -3.2267942, 55.9552162 -3.2365445, 55.9547756 -3.2373840, 55.9095872 -3.2393324, 55.9108572 -3.2270661, 55.9216235 -3.2249213, 55.9159985 -3.1400663, 55.9393204 -3.2846024, 55.9042417 -3.1960580, 55.9398320 -3.2898011, 55.9217421 -3.2554291, 55.9068162 -3.1630589, 55.9464304 -3.1464068, 55.9250180 -3.1583419, 55.9260352 -3.1459743, 55.9572078 -3.2873375, 55.9492991 -3.2859470, 55.9492670 -3.2867008, 55.9547419 -3.1749189, 55.9337511 -3.2052182, 55.9498517 -3.2814881, 55.9537350 -3.2785842, 55.9497199 -3.2870771, 55.9561182 -3.2944056, 55.9542000 -3.2958911, 55.9547440 -3.2934772, 55.9552269 -3.2911211, 55.9547217 -3.2988876, 55.9539944 -3.2980005, 55.9456834 -3.1821854, 55.9419515 -3.0776622, 55.9348121 -3.0907246, 55.9171604 -3.1354115, 55.9176342 -3.1349480, 55.9134042 -3.1432354, 55.9606809 -3.1599303, 55.9188473 -3.2404491, 55.9519339 -3.1197553, 55.9171100 -3.1237879, 55.9025400 -3.1724775, 55.9029149 -3.1462329, 55.9000899 -3.2205482, 55.9465352 -3.1840511, 55.9092765 -3.3232261, 55.9330079 -3.1427147, 55.9310330 -3.1255391, 55.9354998 -3.1220327, 55.9362482 -3.1261770, 55.9308759 -3.1319934, 55.9359705 -3.1279223, 55.9337571 -3.1254037, 55.9336105 -3.1252363, 55.9298596 -3.1760674, 55.9490596 -3.1276714, 55.9511916 -3.1060290, 55.9044556 -3.1570879, 55.9076488 -3.1760073, 55.9341278 -3.1169338, 55.9065155 -3.1451234, 55.9292281 -3.2209452, 55.9341796 -3.2490939, 55.9544529 -3.4121242, 55.9519963 -3.1039423, 55.9100473 -3.3260875, 55.9343630 -3.2060244, 55.9317398 -3.3087896, 55.9605626 -3.1972928, 55.9678833 -3.1879812, 55.9510616 -3.2914538, 55.9459761 -3.1856715, 55.9558587 -3.3031410, 55.9568286 -3.3072594, 55.9511189 -3.1747609, 55.9510749 -3.1753467, 55.9508298 -3.1753029, 55.9509457 -3.1749408, 55.9467014 -3.1636628, 55.9729020 -3.1735210, 55.9765107 -3.1721913, 55.9593059 -3.1742314, 55.9442578 -3.2403600, 55.9863800 -3.4014440, 55.9367665 -3.2420598, 55.9459205 -3.2905781, 55.9562802 -3.2807580, 55.9402317 -3.2875667, 55.9402275 -3.2879315, 55.9409941 -3.2876039, 55.9406671 -3.2872934, 55.9376102 -3.2318045, 55.9789111 -3.2482505, 55.9787761 -3.1967750, 55.9640660 -3.1728458, 55.9066017 -3.2144569, 55.9605387 -3.2087492, 55.9542012 -3.1931436, 55.9602994 -3.1953857, 55.9544319 -3.1917436, 55.9560954 -3.2106920, 55.9723070 -3.1912838, 55.9595234 -3.1758364, 55.9534180 -3.1785080, 55.9562867 -3.1872194, 55.9743198 -3.1704310, 55.9744808 -3.1743158, 55.9759885 -3.1715338, 55.9532846 -3.2921393, 55.9574984 -3.2083571, 55.9367964 -3.2406611, 55.9854599 -3.3436174, 55.9641493 -3.1938949, 55.9260372 -3.2090505, 55.9359966 -3.1572401, 55.9513474 -3.1158807, 55.9661759 -3.2702350, 55.9741295 -3.1797027, 55.9600724 -3.1741101, 55.9409110 -3.2215160, 55.9556979 -3.2548082, 55.9660701 -3.2463715, 55.9649029 -3.2457519, 55.9298237 -3.3877108, 55.9690676 -3.1888807, 55.9912413 -3.4109019, 55.9710046 -3.2619213, 55.9588466 -3.2249675, 55.9013500 -3.3024723, 55.9539142 -3.1403269, 55.9334908 -3.1705314, 55.9632425 -3.1766530, 55.9793809 -3.2828111, 55.9795804 -3.2784993, 55.9816315 -3.1875747, 55.9797956 -3.2652214, 55.9808614 -3.2575795, 55.9814929 -3.2544070, 55.9822488 -3.1871833, 55.9316920 -3.1706557, 55.9453307 -3.1872851, 55.9225757 -3.1742046, 55.9177995 -3.2258715, 55.9756731 -3.1795281, 55.9227390 -3.3878621, 55.9219586 -3.3846448, 55.9220190 -3.3812464, 55.9223012 -3.3874671, 55.9216403 -3.3816171, 55.9224466 -3.3896092, 55.9219085 -3.3878670, 55.9217658 -3.3815092, 55.9221310 -3.3812652, 55.9215846 -3.3896076, 55.9614838 -3.1460045, 55.9205305 -3.3862442, 55.9209136 -3.3848589, 55.9204525 -3.3866404, 55.9207333 -3.3855343, 55.9211430 -3.3830700, 55.9101232 -3.2870070, 55.9533991 -3.1420299, 55.9393913 -3.2534215, 55.9417229 -3.2570288, 55.9410585 -3.2869761, 55.9414229 -3.2802235, 55.9403326 -3.2912941, 55.9392116 -3.2900212, 55.9388929 -3.2894937, 55.9394656 -3.2916887, 55.9003682 -3.2260323, 55.9078725 -3.2025308, 55.9413880 -3.2720449, 55.9479806 -3.2795990, 55.9409754 -3.2880597, 55.9398516 -3.2924307, 55.9380193 -3.2920921, 55.9387183 -3.2926555, 55.9387868 -3.2929480, 55.9366056 -3.2907127, 55.9377042 -3.2917990, 55.9375382 -3.2918934, 55.9393838 -3.2932527, 55.9347378 -3.2880372, 55.8767909 -3.3429604, 55.8790540 -3.3446396, 55.9415087 -3.2766618, 55.9411196 -3.2733621, 55.9408019 -3.2733746, 55.9408596 -3.2729200, 55.9408838 -3.2732713, 55.9407669 -3.2756902, 55.9408599 -3.2749720, 55.9414728 -3.2789476, 55.9415149 -3.2790978, 55.9557755 -3.2303273, 55.9881664 -3.1866736, 55.9169928 -3.2576372, 55.9224796 -3.1752957, 55.9774772 -3.1705996, 55.9799920 -3.3737074, 55.9437668 -3.1487316, 55.9426095 -3.1482851, 55.9242307 -3.3725346, 55.9423402 -3.1917059, 55.9279755 -3.3560103, 55.8977026 -3.2948914, 55.9259968 -3.2680760, 55.9801710 -3.2538339, 55.9153515 -3.1580933, 55.9088820 -3.2029285, 55.9086694 -3.2053302, 55.9273464 -3.2730805, 55.9471726 -3.1356110, 55.9008412 -3.1501893, 55.9540581 -3.1906570, 55.9285195 -3.2042449, 55.9106623 -3.1659657, 55.9716565 -3.1684610, 55.9713135 -3.1704851, 55.9713620 -3.1704984, 55.9601499 -3.1693310, 55.9496802 -3.2006546, 55.9749996 -3.1933890, 55.9766171 -3.2091124, 55.8860219 -3.2116389 +33 +yes +Sixt, Sixt, E.On, Stadtwerke München, SWM, Stadtwerke München, BMWi/ChargeNow, BMWi/ChargeNow, Stadtwerke München, SWM, Landratsamt München +46 +24 +48.8108150 2.3016518, 48.8153367 2.2970255, 48.8812535 2.2714648, 48.8756694 2.2890915, 48.8719944 2.3006392, 48.8689763 2.3101131, 48.8664075 2.3221380, 48.8643585 2.3298436, 48.8623829 2.3361468, 48.8607697 2.3409358, 48.8587782 2.3474106, 48.8575436 2.3515947, 48.8552140 2.3606657, 48.8520122 2.3686542, 48.8457111 2.3727163, 48.8472696 2.3866995, 48.8475165 2.4063260, 48.8339081 2.2438908, 48.8487832 2.2988351, 48.8475338 2.3029524, 48.8504212 2.2936685, 48.7296445 2.3600059, 48.8242325 2.2730847, 48.8270162 2.2794048, 48.8326135 2.2884024, 48.8373212 2.2966299, 48.8919677 2.2377691, 48.8228800 2.3256282, 48.8280605 2.3269249, 48.8313954 2.3301258, 48.8340204 2.3325902, 48.8389018 2.3308032, 48.8330168 2.3366295, 48.8311288 2.3434842, 48.8297785 2.3504704, 48.8314217 2.3555589, 48.8331986 2.3628553, 48.8349549 2.3680817, 48.8370762 2.3729066, 48.8842870 2.3659442, 48.8480576 2.3960523, 48.8444696 2.4398829, 48.8454354 2.4293269, 48.8782117 2.3816608, 48.8808997 2.3738860, 48.8518166 2.4013757, 48.8463309 2.4190317, 48.8514736 2.3982446, 48.8664900 2.3833323, 48.8629761 2.3873271, 48.8582563 2.3901666, 48.8562640 2.3945621, 48.8720463 2.3769849, 48.8690586 2.3804560, 48.8774398 2.3708174, 48.8829026 2.3443344, 48.8823612 2.3373703, 48.8836162 2.3330841, 48.8835165 2.3274515, 48.8824462 2.3221220, 48.8812626 2.3155318, 48.8805420 2.3094230, 48.8737784 2.2950482, 48.8698038 2.2854485, 48.8714638 2.2768954, 48.8652545 2.4166605, 48.8645515 2.4088118, 48.8649326 2.3984802, 48.8643020 2.3794597, 48.8652193 2.3747542, 48.8666345 2.3614233, 48.8654878 2.3563464, 48.8663020 2.3524557, 48.8676419 2.3463248, 48.8686692 2.3412605, 48.8695654 2.3367072, 48.8707693 2.3322643, 48.8736019 2.3276269, 48.8754212 2.3255796, 48.8825292 2.3110507, 48.8839908 2.3042907, 48.8847948 2.2982623, 48.8856871 2.2926417, 48.8395785 2.3012923, 48.8415118 2.3080120, 48.8443954 2.3175634, 48.8468543 2.3166512, 48.8514000 2.3143901, 48.8568058 2.3151577, 48.8413343 2.4008998, 48.8905035 2.3598783, 48.9162246 2.2948689, 48.8707855 2.3611531, 48.8921077 2.2852229, 48.8579460 2.4357587, 48.8625988 2.4415690, 48.8971408 2.2803973, 48.8887892 2.2878755, 48.8526992 2.4061094, 48.8534759 2.4105242, 48.8558145 2.4237108, 48.8525808 2.3887914, 48.8547441 2.3853565, 48.8581580 2.3798044, 48.8610516 2.3747956, 48.8641314 2.3695694, 48.8694199 2.3544678, 48.8706004 2.3487793, 48.8715206 2.3432861, 48.8720176 2.3395091, 48.8730612 2.3333207, 48.8747030 2.3197963, 48.8464740 2.3659107, 48.8422880 2.3653598, 48.8460116 2.3549579, 48.8465082 2.3517283, 48.8499051 2.3487460, 48.8508926 2.3454617, 48.8521785 2.3394266, 48.8529427 2.3357457, 48.8363894 2.2784000, 48.8387450 2.2821427, 48.8410837 2.2879218, 48.8426906 2.2917758, 48.8389924 2.3896778, 48.8395253 2.3958919, 48.8401067 2.3799581, 48.8410654 2.3249923, 48.8429457 2.3126019, 48.8716770 2.2935098, 48.8669099 2.2902715, 48.8630266 2.2870524, 48.8573825 2.2859234, 48.8646725 2.2937783, 48.8640063 2.2780859, 48.8580816 2.2741958, 48.8555764 2.2702166, 48.8525598 2.2681802, 48.8480038 2.2641872, 48.8452505 2.2618802, 48.8430044 2.2600472, 48.8377707 2.2565741, 48.8649686 2.3006256, 48.8723362 2.3100827, 48.8736768 2.3145456, 48.8514587 2.3267159, 48.9038952 2.3053664, 48.8939640 2.3144204, 48.8905170 2.3201235, 48.8874127 2.3256961, 48.8470802 2.3076354, 48.8470463 2.2953101, 48.8606970 2.3210551, 48.8586775 2.3231168, 48.8481026 2.3277965, 48.8452766 2.3286613, 48.8656361 2.3227452, 48.8700644 2.3251637, 48.8446967 2.2937668, 48.8546428 2.3061015, 48.8575837 2.3102891, 48.8611770 2.3148333, 48.8633194 2.3666124, 48.8610965 2.3672267, 48.8575371 2.3679970, 48.8531361 2.3686313, 48.8511945 2.3759944, 48.8500259 2.3842705, 48.8444003 2.3899525, 48.8371074 2.4024837, 48.8266498 2.4057278, 48.8354584 2.4063451, 48.8450642 2.4010776, 48.8333461 2.3863163, 48.8269184 2.3662163, 48.8322556 2.3989811, 48.8656737 2.3344599, 48.8763705 2.3326310, 48.8760654 2.3385532, 48.8557241 2.3256659, 48.8784508 2.3374732, 48.8844760 2.3384377, 48.8898183 2.3386296, 48.8925606 2.3447103, 48.8977084 2.3592969, 48.8937935 2.3477372, 48.8873214 2.3497042, 48.8795577 2.3571375, 48.8762027 2.3579127, 48.8638408 2.3487041, 48.8723097 2.3558518, 48.8627762 2.3461709, 48.8551566 2.3471977, 48.8535657 2.3443622, 48.8536264 2.3333280, 48.8470711 2.3270822, 48.8421852 2.3289966, 48.8466102 2.2859257, 48.8461920 2.2786319, 48.8473202 2.2686743, 48.8477655 2.2583922, 48.8452670 2.2672606, 48.8470891 2.2728475, 48.8420002 2.2387333, 48.8406690 2.2287175, 48.8700162 2.3710617, 48.8612740 2.3535761, 48.8771276 2.4066804, 48.8754657 2.3990396, 48.8738469 2.3852526, 48.8750969 2.3893345, 48.8385876 2.3222085, 48.8317799 2.3140252, 48.8339551 2.3180764, 48.8225032 2.2984833, 48.8566177 2.3705298, 48.8602039 2.3721323, 48.8850187 2.3795672, 48.8869632 2.3867135, 48.8885434 2.3927045, 48.8911980 2.4025577, 48.8814188 2.3654808, 48.8772835 2.3492720, 48.8885069 2.3740693, 48.8908770 2.3772148, 48.8947998 2.3823744, 48.8974296 2.3854377, 48.8749537 2.3402103, 48.8759682 2.3441565, 48.8585901 2.3424101, 48.8512630 2.3622044, 48.8535245 2.3570872, 48.8429311 2.3521239, 48.8406731 2.3517801, 48.8356703 2.3525980, 48.8799166 2.3990372, 48.8819551 2.3933641, 48.8798096 2.4170873, 48.8715218 2.4043104, 48.8680997 2.4013152, 48.8382823 2.3608293, 48.8356584 2.3588519, 48.8927063 2.3274728, 48.8973715 2.3289008, 48.9061915 2.3320476, 48.8261434 2.3573719, 48.8225268 2.3585049, 48.8191302 2.3595477, 48.9231172 2.2862019, 48.9305465 2.2836436, 48.9142830 2.4036539, 48.9036536 2.3920966, 48.9207844 2.4106144, 48.8677590 2.3139517, 48.7963514 2.4492350, 48.7899066 2.4504803, 48.7797556 2.4594504, 48.8024711 2.4466949, 48.8090371 2.4347211, 48.8150770 2.4217740, 48.8214689 2.4136458, 48.9118944 2.3339725, 48.9196049 2.3429933, 48.8051317 2.3637903, 48.7869402 2.3673857, 48.7960877 2.3683672, 48.8103280 2.3622359, 48.8514725 2.3311829, 48.8439710 2.3243262, 48.8789208 2.3623079, 48.8844216 2.3602786, 48.8932382 2.4133209, 48.8795976 2.3270787, 48.9301278 2.3563841, 48.9368260 2.3590959, 48.9459311 2.3641518, 48.8538982 2.2893959, 48.8319438 2.2381100, 48.8296613 2.2308732, 48.8201086 2.3647992, 48.8216697 2.3693224, 48.8159011 2.3773455, 48.8109896 2.3839963, 48.8491398 2.3218984, 48.8756733 2.3273522, 48.8755336 2.3242020, 48.8780508 2.2982339, 48.7687211 2.4643844, 48.8837592 2.3495338, 48.8915769 2.3496679, 48.8663302 2.3215942, 48.8603937 2.3146892, 48.8537409 2.3693210, 48.8433310 2.3737787, 48.8456163 2.3095848, 48.9064052 2.4491919, 48.8975167 2.3446663, 48.8419339 2.3211592, 48.7290137 2.3699140, 48.8787548 2.3223081, 48.8767276 2.4064297, 48.8795817 2.3886032, 48.8825949 2.3703263, 48.8295791 2.3768615, 48.8767737 2.3935636, 48.8792625 2.3035538, 48.9068701 2.3657737, 48.8183938 2.3193550, 48.8956037 2.4251032, 48.8779888 2.2817745, 48.8582563 2.3901666, 48.8882249 2.2495172, 48.8849431 2.2599157, 48.8571078 2.3473222, 48.8596411 2.3468404, 48.8576652 2.3478702, 48.8589166 2.3467871, 48.8673076 2.3641562 +49.4005745 8.6876324, 49.4013101 8.6912413, 49.4018281 8.6889374, 49.4018800 8.6877769, 49.4133177 8.6889779, 49.4135514 8.6842391, 49.4146501 8.6879184, 49.4168731 8.6919549, 49.4171484 8.6930088, 49.4208847 8.6912002, 49.4093080 8.6997914, 49.4115405 8.7048863, 49.4123719 8.7105227, 49.4126424 8.7078375, 49.4121119 8.7079345, 49.4111163 8.6933102, 49.4133176 8.6889779, 49.4133176 8.6889788, 49.4133176 8.6889785, 49.4135508 8.6842393, 49.4133177 8.6889782, 49.4133176 8.6889782, 49.4133174 8.6889784, 49.4133177 8.6889788, 49.4208843 8.6912004, 49.4208840 8.6912006, 49.4168738 8.6919549, 49.4168732 8.6919560, 49.4208839 8.6912002, 49.4171481 8.6930091, 49.4168744 8.6919560, 49.4168739 8.6919560, 49.4208843 8.6911999, 49.4208846 8.6911997, 49.4168740 8.6919569, 49.4018302 8.6889341, 49.4013102 8.6912409, 49.4013098 8.6912411, 49.4005742 8.6876324, 49.4005743 8.6876329, 49.4013099 8.6912408, 49.4018301 8.6889373, 49.4005745 8.6876329, 49.4018280 8.6889343, 49.4123720 8.7105234, 49.4093080 8.6997912, 49.4115404 8.7048862, 49.4093082 8.6997910, 49.4115404 8.7048863, 49.4093082 8.6997914, 49.4146502 8.6879184, 49.4115403 8.7048862, 49.4034414 8.6858831, 49.4033425 8.6920344, 49.4034077 8.6864942, 49.4059416 8.6926646, 49.4053236 8.6938605, 49.4059413 8.6926655, 49.4059418 8.6926647, 49.4033423 8.6920342, 49.4034078 8.6864940, 49.4034077 8.6864940, 49.4059416 8.6926652, 49.4034078 8.6864942, 49.4059414 8.6926650, 49.4033423 8.6920344, 49.4196480 8.6881884, 49.4158083 8.7151936, 49.4087123 8.7054683, 49.4076130 8.7082748, 49.3832632 8.6902896, 49.4076136 8.7082749, 49.4087126 8.7054655, 49.4076135 8.7082758, 49.3832635 8.6902896, 49.4076129 8.7082756 +150 +55.9021949 -3.1741206, 55.9087627 -3.3266637, 55.9093414 -3.2564463, 55.9087839 -3.2561638, 55.9085715 -3.2558102 +2 +1 +48.8684366 2.2915095 and 48.8683863 2.2914212 +硫黄島 (Iwo Jima), Annobón, Tauu Island, Pagan Island, Taongi Island, Cocos (Keeling) Islands, Christmas Island, Pukapuka, Banaba, Brava, Tristan da Cunha, Norfolk Island, Saint George Island, Rapa Iti, Tikopia, Pingelap, Isla del Coco, Thule Island, Pitcairn, остров Уединения, Ilha da Trindade, Île Tromelin, Île de Clipperton, Bouvetøya, Antipodes Island, Île Amsterdam, Île Saint-Paul, Saint Helena, Ascension, South Shetland Islands, Semisopochnoi Island, Napuka, Fangataufa, Christmas Island, остров Атласова, Norfolk Island, Raoul Island, Campbell Island, Isla Floreana, Diego Garcia, Laurie Island, Peter I Island, Macquarie Island, Franklin Island, Possession Island, остров Рудольфа, Howland Island, Isla de Pascua (Rapa Nui), Isla Robinsón Crusoe, Socorro Island +yes +yes and 2 +yes +Fahrschule Formel 1 and 49.4285627 8.6458063 +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8169651 2.3597405, 48.9012005 2.3862959, 48.8801709 2.3706981, 48.8501676 2.3621707, 48.9003252 2.3734463, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8323948 2.3645635, 48.8645440 2.4097670, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.9007525 2.3748724, 48.8536267 2.3664311, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8168431 2.3604808, 48.8407841 2.3912112, 48.8607706 2.3747898, 48.8787212 2.3698437, 48.8586303 2.3897622, 48.8579937 2.3897210, 48.8558395 2.3835889, 48.8786755 2.3549221, 48.8478375 2.3535433, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8962481 2.3594957, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.8464060 2.3874300, 48.9007173 2.3745755 +yes +http://www.myvue.com/ +yes +Boulogne-Billancourt, Gonesse, Arcueil, Montmagny, Villepinte, Le Chesnay, Chatou, Gentilly, Palaiseau, Antony, Neuilly-Plaisance, Neuilly-sur-Marne, Viroflay, Aubervilliers, Athis-Mons, Franconville, Garches, Stains, Noisiel, Clichy, Le Blanc-Mesnil, Chelles, Verrières-le-Buisson, Le Plessis-Robinson, Vélizy-Villacoublay, Saint-Leu-la-Forêt, Savigny-sur-Orge, Le Vésinet, Maisons-Alfort, Bry-sur-Marne, Enghien-les-Bains, Aulnay-sous-Bois, Nanterre, Épinay-sur-Seine, Villiers-le-Bel, Chevilly-Larue, Les Lilas, Morangis, Deuil-la-Barre, Limeil-Brévannes, Villemomble, Montesson, Les Pavillons-sous-Bois, Villeneuve-le-Roi, Bois-Colombes, La Garenne-Colombes, Montmorency, Rosny-sous-Bois, Châtillon, Sannois, Saint-Brice-sous-Forêt, Vitry-sur-Seine, Neuilly-sur-Seine, Meudon, Joinville-le-Pont, Noisy-le-Grand, Bourg-la-Reine, La Celle-Saint-Cloud, Malakoff, Saint-Mandé, Le Bourget, Massy, Houilles, Le Plessis-Trévise, Courbevoie, Livry-Gargan, Gennevilliers, Sceaux, La Courneuve, Le Pré-Saint-Gervais, Suresnes, Villiers-sur-Marne, Montigny-lès-Cormeilles, L'Haÿ-les-Roses, Chaville, Saint-Gratien, Montfermeil, Saint-Maurice, Alfortville, Argenteuil, Sartrouville, Cormeilles-en-Parisis, Nogent-sur-Marne, Thiais, Fontenay-sous-Bois, Champigny-sur-Marne, Issy-les-Moulineaux, Créteil, Boissy-Saint-Léger, Longjumeau, Charenton-le-Pont, Rueil-Malmaison, Fresnes, Saint-Cloud, Noisy-le-Sec, Châtenay-Malabry, Bobigny, Domont, Soisy-sous-Montmorency, Marly-le-Roi, Sevran, Garges-lès-Gonesse, Vigneux-sur-Seine, Ermont, Cachan, Sucy-en-Brie, Bagnolet, Bezons, Carrières-sur-Seine, Le Raincy, Montreuil, Le Perreux-sur-Marne, Montgeron, Le Kremlin-Bicêtre, Arnouville, Champs-sur-Marne, Fontenay-aux-Roses, Yerres, Pierrefitte-sur-Seine, Villetaneuse, Bonneuil-sur-Marne, Sarcelles, Romainville, Saint-Denis, Gagny, Choisy-le-Roi, Vanves, Villejuif, Valenton, Versailles, Villeneuve-Saint-Georges, Maisons-Laffitte, Chennevières-sur-Marne, Ville-d'Avray, Ormesson-sur-Marne, Bagneux, Levallois-Perret, Chilly-Mazarin, Eaubonne, Montrouge, Colombes, Drancy, Sèvres, Villeneuve-la-Garenne, Bondy, La Queue-en-Brie, Villebon-sur-Yvette, Paris, Paris, Paris, Paris, Paris, Cynthiana, Saint-Germain-en-Laye, Saint-Maur-des-Fossés, Orly, Juvisy-sur-Orge, Le Pecq, Asnières-sur-Seine, Puteaux, Ivry-sur-Seine, Vincennes, Pantin, Saint-Ouen, Clichy-sous-Bois, Clamart, Denning, Subiaco, Morrison Bluff, Caulksville, Blue Mountain, Detroit, Universal, Goss, Henry, Cottage Grove, Big Sandy +48.8672925 2.3255509, 48.8659000 2.3372420, 48.8615254 2.3440287, 48.8674660 2.3326727, 48.8663903 2.3380844, 48.8660027 2.3646613, 48.8648091 2.3411291, 48.8687993 2.3373273, 48.8648222 2.3475072, 48.8689038 2.3422059, 48.8609918 2.3544137, 48.8710439 2.3094204, 48.8695157 2.3030346, 48.8714582 2.3357136, 48.8719507 2.3429771, 48.8718710 2.3418144, 48.8705409 2.3532213, 48.8711564 2.3649322, 48.8755778 2.3590863, 48.8759060 2.3588881, 48.8727960 2.3635124, 48.8635832 2.3671683, 48.8660128 2.3794462, 48.8638332 2.3670685, 48.8679153 2.3737355, 48.8656744 2.3707975, 48.8683924 2.3793396, 48.8645151 2.3730525, 48.8679409 2.3754781, 48.8667776 2.3826288, 48.8646895 2.2880988, 48.8869322 2.3399586, 48.8847049 2.3404648, 48.8654581 2.3446776, 48.8596461 2.3534386, 48.8755021 2.3103942, 48.8606089 2.3006648, 48.8604171 2.3059560, 48.8795968 2.3519355, 48.8673444 2.3739608, 48.8631427 2.3877152, 48.8694500 2.3047988, 48.8647212 2.3469127, 48.8693629 2.3549762, 48.8692952 2.3553367, 48.8658103 2.3452891, 48.8588835 2.3307705, 48.8697776 2.3105917, 48.8722601 2.3035046, 48.8686679 2.3066263, 48.8672098 2.3654644, 48.8667808 2.3656961, 48.8684771 2.3626799, 48.8666678 2.3662969, 48.8658039 2.3707172, 48.8657085 2.3712657, 48.8655987 2.3744866, 48.8630511 2.3852954, 48.8780431 2.3720976, 48.8721672 2.3266440, 48.8718873 2.3570864, 48.8845714 2.3233053, 48.8844355 2.3243334, 48.8867718 2.3236539, 48.8884368 2.3207195, 48.8886141 2.3198123, 48.8891033 2.3164088, 48.8879876 2.3341073, 48.8940712 2.3342515, 48.8886186 2.3167009, 48.8835953 2.3233585, 48.8858410 2.3405929, 48.8891314 2.3403708, 48.8776115 2.2679599, 48.8828817 2.3596543, 48.8641353 2.3676323, 48.8743115 2.3756487, 48.8882137 2.3785003, 48.8723344 2.3492288, 48.8630061 2.3625592, 48.8628927 2.3617428, 48.8672258 2.3079158, 48.8838862 2.3277689, 48.8861318 2.3340926, 48.8880361 2.3910565, 48.8621883 2.3485126, 48.8696045 2.3711651, 48.8718241 2.3676242, 48.8719097 2.3674864, 48.8664224 2.3652804, 48.8663460 2.3644859, 48.8674473 2.3626414, 48.8675118 2.3625438, 48.8652993 2.3734818, 48.8639802 2.3867074, 48.8642946 2.3862990, 48.8662357 2.3840946, 48.8667100 2.3812708, 48.8661982 2.3800386, 48.8650645 2.3775756, 48.8657840 2.3770479, 48.8661962 2.3766789, 48.8669356 2.3763865, 48.8680369 2.3754008, 48.8676267 2.3787920, 48.8598744 2.3476273, 48.8622962 2.3522413, 48.8739244 2.3454201, 48.8645230 2.3550690, 48.8627431 2.3531218, 48.8628573 2.3522080, 48.8613333 2.3538187, 48.8681798 2.3714175, 48.8748569 2.3825637, 48.8701181 2.2849979, 48.8860554 2.3188123, 48.8742269 2.3755468, 48.8664641 2.3722308, 48.8644029 2.4080476, 48.8650517 2.3018704, 48.8840850 2.3374869, 48.8663999 2.3328148, 48.8678174 2.3028593, 48.8693591 2.3567215, 48.8687850 2.3594780, 48.8865096 2.3452428, 48.8755523 2.3252222, 48.8905909 2.3820031, 48.8920861 2.3792943, 48.8922518 2.3794780, 48.8847020 2.3249240, 48.8759394 2.3585316, 48.8836330 2.3284520, 48.8803159 2.2995227, 48.8633934 2.3347841, 48.8707741 2.3411912, 48.8705661 2.3420906, 48.8709334 2.3427566, 48.8723362 2.3823271, 48.8661377 2.3353287, 48.8871654 2.3269257, 48.8861847 2.3270688, 48.8974129 2.3292183, 48.8830692 2.3825494, 48.8839003 2.3840684, 48.8605714 2.3454975, 48.8590672 2.3498178, 48.8768016 2.3394255, 48.8671282 2.3756094, 48.8720047 2.3455258, 48.8652131 2.3628703, 48.8649450 2.3550985, 48.8646517 2.3565127, 48.8646274 2.3569545, 48.8650523 2.3569392, 48.8730352 2.3796739, 48.8958230 2.3395842, 48.8794405 2.3338166, 48.8878588 2.3596648, 48.8600943 2.3451124, 48.8604674 2.3454225, 48.8599442 2.3474167, 48.8601724 2.3488956, 48.8603586 2.3484772, 48.8609295 2.3450073, 48.8612791 2.3423684, 48.8613359 2.3426577, 48.8612560 2.3431916, 48.8613382 2.3448649, 48.8617216 2.3432877, 48.8602965 2.3418540, 48.8588694 2.3415282, 48.8622902 2.3393649, 48.8620988 2.3398606, 48.8622685 2.3398888, 48.8626905 2.3414763, 48.8619643 2.3491461, 48.8625821 2.3483927, 48.8635373 2.3490562, 48.8631582 2.3498973, 48.8629810 2.3484703, 48.8644969 2.3453886, 48.8633332 2.3460793, 48.8633690 2.3462612, 48.8634242 2.3462790, 48.8641678 2.3467038, 48.8636473 2.3431563, 48.8640954 2.3438023, 48.8625475 2.3407883, 48.8647612 2.3406523, 48.8659486 2.3400023, 48.8644890 2.3404697, 48.8655554 2.3403846, 48.8660668 2.3390095, 48.8661019 2.3389239, 48.8650200 2.3366293, 48.8656093 2.3369261, 48.8663099 2.3374684, 48.8660066 2.3354463, 48.8660278 2.3340077, 48.8663930 2.3354840, 48.8663406 2.3354494, 48.8666001 2.3357750, 48.8646841 2.3338346, 48.8660273 2.3312781, 48.8658325 2.3324895, 48.8658744 2.3325173, 48.8659399 2.3325614, 48.8663779 2.3317318, 48.8669595 2.3323778, 48.8670401 2.3324272, 48.8676684 2.3316870, 48.8671882 2.3325179, 48.8675087 2.3324647, 48.8676565 2.3320208, 48.8675328 2.3323476, 48.8674795 2.3326070, 48.8678727 2.3316533, 48.8680817 2.3307073, 48.8744252 2.3738880, 48.8687898 2.3338477, 48.8677062 2.3374280, 48.8690695 2.3343056, 48.8706891 2.3340754, 48.8714078 2.3378085, 48.8690729 2.3399905, 48.8691872 2.3393294, 48.8691071 2.3397858, 48.8692514 2.3401242, 48.8716597 2.3407937, 48.8716249 2.3410422, 48.8688297 2.3421626, 48.8675928 2.3409167, 48.8664997 2.3400225, 48.8704135 2.3318678, 48.8691969 2.3433101, 48.8671729 2.3441962, 48.8705191 2.3428655, 48.8709276 2.3429934, 48.8647371 2.3502921, 48.8696741 2.3519506, 48.8703899 2.3484689, 48.8834373 2.3324889, 48.8590577 2.3501929, 48.8593929 2.3493115, 48.8595480 2.3490548, 48.8616594 2.3501884, 48.8794020 2.3884400, 48.8646409 2.3536613, 48.8635758 2.3531607, 48.8636089 2.3534360, 48.8640159 2.3502075, 48.8599753 2.3568642, 48.8633842 2.3464893, 48.8626959 2.3521061, 48.8619134 2.3509953, 48.8671336 2.3577810, 48.8645093 2.3542545, 48.8644805 2.3545447, 48.8646620 2.3539239, 48.8644591 2.3546214, 48.8682730 2.3614921, 48.8674734 2.3577982, 48.8661285 2.3594408, 48.8655917 2.3595983, 48.8651109 2.3571532, 48.8649701 2.3570435, 48.8751228 2.3939970, 48.8724707 2.3776998, 48.8717657 2.3765997, 48.8714128 2.3768852, 48.8613715 2.3542463, 48.8614471 2.3583969, 48.8628432 2.3600037, 48.8637749 2.3607964, 48.8638993 2.3606178, 48.8635375 2.3610562, 48.8649528 2.3628140, 48.8648961 2.3629259, 48.8652889 2.3632073, 48.8651842 2.3631892, 48.8647607 2.3633251, 48.8660249 2.3647181, 48.8663091 2.3639231, 48.8636551 2.3631224, 48.8636998 2.3626132, 48.8630524 2.3640855, 48.8621981 2.3629228, 48.8617499 2.3623904, 48.8622881 2.3631634, 48.8620347 2.3635571, 48.8639888 2.3639782, 48.8615020 2.3620520, 48.8594649 2.3600214, 48.8602716 2.3621222, 48.8590981 2.3594568, 48.8615090 2.3660863, 48.8617960 2.3778943, 48.8624536 2.3800165, 48.8881390 2.3534840, 48.8636510 2.3505320, 48.8643222 2.3548396, 48.8644140 2.3547850, 48.8687006 2.3354843, 48.8651140 2.3778720, 48.8821123 2.3666359, 48.8790715 2.3649117, 48.8792180 2.3665493, 48.8820420 2.3678327, 48.8820491 2.3660464, 48.8818956 2.3658787, 48.8782055 2.3656749, 48.8788300 2.3662059, 48.8815137 2.3659229, 48.8777011 2.3652544, 48.8803699 2.3667330, 48.8808723 2.3646162, 48.8760311 2.3700774, 48.8610786 2.3535904, 48.8671314 2.3577761, 48.8668458 2.3586800, 48.8668914 2.3584627, 48.8670160 2.3581568, 48.8670538 2.3582562, 48.8668315 2.3590233, 48.8668006 2.3582106, 48.8647030 2.3567983, 48.8647921 2.3568339, 48.8643639 2.3541873, 48.8668939 2.3583012, 48.8668657 2.3585775, 48.8801119 2.3535250, 48.8685624 2.3685743, 48.8690249 2.3683671, 48.8632239 2.3566007, 48.8685290 2.3895370, 48.8673734 2.3222301, 48.8693756 2.3206236, 48.8705692 2.3211241, 48.8727654 2.3210286, 48.8703638 2.3102774, 48.8723529 2.3102456, 48.8738587 2.3163169, 48.8737509 2.3196440, 48.8744903 2.3184375, 48.8736367 2.3223675, 48.8713058 2.3233311, 48.8724761 2.3240966, 48.8721839 2.3251685, 48.8751646 2.3250295, 48.8753241 2.3259291, 48.8752570 2.3254427, 48.8741599 2.3254911, 48.8761914 2.3213046, 48.8760259 2.3235129, 48.8801220 2.3241052, 48.8831176 2.3264261, 48.8820671 2.3242802, 48.8832767 2.3277563, 48.8834770 2.3281748, 48.8837504 2.3286298, 48.8829218 2.3256282, 48.8831342 2.3236837, 48.8801277 2.3203119, 48.8799079 2.3202876, 48.8805205 2.3183206, 48.8733445 2.3091989, 48.8745431 2.3093666, 48.8794607 2.3036933, 48.8724450 2.3072214, 48.8707572 2.3085752, 48.8696331 2.3067786, 48.8715784 2.3063992, 48.8713131 2.3073190, 48.8713952 2.3012394, 48.8697736 2.3021852, 48.8669256 2.3076130, 48.8668818 2.3076173, 48.8672769 2.3062806, 48.8670111 2.3076126, 48.8671369 2.3028950, 48.8681586 2.3027800, 48.8660598 2.3017043, 48.8651464 2.3005883, 48.8724390 2.3021296, 48.8706337 2.3954670, 48.8710202 2.3789233, 48.8788328 2.3896914, 48.8600728 2.4041262, 48.8597085 2.4049673, 48.8790339 2.2985581, 48.8787934 2.2983905, 48.8775425 2.2981350, 48.8783508 2.3004239, 48.8778323 2.2987883, 48.8690865 2.3022434, 48.8694700 2.3034453, 48.8699522 2.3058242, 48.8799166 2.3359231, 48.8614760 2.3530830, 48.8885830 2.3930712, 48.8831626 2.3618001, 48.8829824 2.3614134, 48.8827589 2.3595149, 48.8835628 2.3609310, 48.8733935 2.3902484, 48.8739298 2.3893471, 48.8821165 2.3636110, 48.8787523 2.3641791, 48.8775739 2.3642408, 48.8800819 2.3647141, 48.8801565 2.3594651, 48.8827513 2.3591491, 48.8797114 2.3574553, 48.8804717 2.3578445, 48.8784279 2.3643183, 48.8826930 2.3668426, 48.8753587 2.3261663, 48.8796547 2.3374136, 48.8753796 2.2958946, 48.8702381 2.3689388, 48.8827554 2.3649189, 48.8679999 2.3369853, 48.8802074 2.3638169, 48.8828408 2.3670033, 48.8831548 2.3679716, 48.8799198 2.3624384, 48.8801632 2.3624358, 48.8658930 2.2979628, 48.8721649 2.2948681, 48.8678330 2.2903912, 48.8670044 2.2897764, 48.8637238 2.2872368, 48.8740698 2.3727422, 48.8691923 2.2884450, 48.8730386 2.2928973, 48.8692540 2.2857812, 48.8664391 2.2859464, 48.8666202 2.2859162, 48.8741506 2.2926613, 48.8744699 2.2916401, 48.8748891 2.2837909, 48.8665016 2.2891682, 48.8766202 2.2833645, 48.8734052 2.2811173, 48.8702950 2.2830521, 48.8654332 2.2855483, 48.8652388 2.2832232, 48.8671985 2.2798899, 48.8700560 2.3301669, 48.8637574 2.2772598, 48.8707204 2.3239555, 48.8705451 2.3238330, 48.8706016 2.3238683, 48.8629342 2.2763103, 48.8632435 2.2744521, 48.8595315 2.2787013, 48.8741142 2.3446221, 48.8762130 2.3456817, 48.8776819 2.2846763, 48.8951764 2.3824259, 48.8801236 2.3667122, 48.8799930 2.3669160, 48.8815607 2.3646012, 48.8604747 2.3677991, 48.8655911 2.3030514, 48.8626372 2.2404388, 48.8707796 2.3732614, 48.8709201 2.3740599, 48.8710092 2.3742679, 48.8592147 2.3578986, 48.8672772 2.3368959, 48.8866286 2.3612403, 48.8795990 2.2908850, 48.8764826 2.2833917, 48.8618932 2.3433243, 48.8642832 2.3420572, 48.8773156 2.2850715, 48.8773806 2.2848829, 48.8774160 2.2847302, 48.8656690 2.3706000, 48.8773360 2.3157316, 48.8663775 2.3472549, 48.8696608 2.3393758, 48.8608198 2.3503260, 48.8603491 2.3508475, 48.8841171 2.3650610, 48.8602874 2.3097025, 48.8602217 2.3097138, 48.8859856 2.3190545, 48.8710024 2.3294337, 48.8717034 2.3766791, 48.8657517 2.3712388, 48.8655880 2.3691209, 48.8944130 2.3404956, 48.8752166 2.3329602, 48.8759120 2.3269790, 48.8830873 2.3292402, 48.8785075 2.2845239, 48.8786662 2.2845930, 48.8809300 2.3404709, 48.8818258 2.3395224, 48.8765185 2.3448908, 48.8718967 2.3415625, 48.8853691 2.3353615, 48.8857113 2.3355174, 48.8855561 2.3353079, 48.8855279 2.3354474, 48.8828690 2.3183304, 48.8823081 2.3158735, 48.8825903 2.3165065, 48.8829889 2.3183223, 48.8829466 2.3176571, 48.8714920 2.3541352, 48.8774236 2.4101645, 48.8775262 2.2949459, 48.8791462 2.3541109, 48.8796589 2.3543864, 48.8754540 2.2867414, 48.8756436 2.2866256, 48.8734790 2.3750462, 48.8732283 2.3745203, 48.8605552 2.3544304, 48.8726908 2.3752657, 48.8674203 2.3758861, 48.8682312 2.3751770, 48.8655345 2.3775152, 48.8890725 2.3179865, 48.8693522 2.3713516, 48.8692142 2.3714534, 48.8694819 2.3712557, 48.8673820 2.3728092, 48.8673041 2.3731992, 48.8678500 2.3687750, 48.8649857 2.3752785, 48.8660987 2.3722759, 48.8609387 2.3678708, 48.8633327 2.3688747, 48.8633817 2.3689965, 48.8663125 2.3723460, 48.8649676 2.3711282, 48.8661552 2.3797640, 48.8656909 2.3777859, 48.8639261 2.3703310, 48.8670939 2.3749249, 48.8639860 2.3704728, 48.8646935 2.3723809, 48.8644002 2.3730285, 48.8677794 2.3780026, 48.8646865 2.3738115, 48.8765188 2.3353132, 48.8767451 2.3353322, 48.8764727 2.3353018, 48.8764220 2.3352962, 48.8760923 2.3383718, 48.8745269 2.3383294, 48.8751689 2.3383360, 48.8646004 2.3751995, 48.8674715 2.3750082, 48.8632185 2.3775523, 48.8637330 2.3792298, 48.8766449 2.2886055, 48.8782254 2.2853949, 48.8777760 2.2847660, 48.8826774 2.3602875, 48.8958659 2.3827194, 48.8594440 2.3503990, 48.8594790 2.3504550, 48.8833475 2.2875083, 48.8744843 2.3304643, 48.8850543 2.3872280, 48.8820903 2.2863199, 48.8720949 2.3323339, 48.8705731 2.3103284, 48.8847919 2.3672165, 48.8713001 2.3766068, 48.8704762 2.3775322, 48.8704356 2.3764056, 48.8712066 2.3768241, 48.8776662 2.3398701, 48.8601399 2.2750024, 48.8764828 2.3370142, 48.8766560 2.3371844, 48.8703131 2.3487884, 48.8662293 2.3379767, 48.8675784 2.2807278, 48.8667500 2.2803710, 48.8687850 2.3380000, 48.8703423 2.3428105, 48.8731247 2.3808610, 48.8662137 2.3353607, 48.8660390 2.3352910, 48.8657884 2.3351488, 48.8649854 2.3569095, 48.8645459 2.3566348, 48.8635544 2.3694256, 48.8634434 2.3691079, 48.8719692 2.3361261, 48.8715773 2.3365388, 48.8714095 2.3355863, 48.8752025 2.3376055, 48.8751468 2.3355442, 48.8750364 2.3392304, 48.8766742 2.3373282, 48.8766460 2.3368602, 48.8769295 2.3383704, 48.8769349 2.3331592, 48.8767858 2.3369975, 48.8768072 2.3364970, 48.8758550 2.3388379, 48.8767868 2.3367967, 48.8767450 2.3377873, 48.8710277 2.3356624, 48.8708929 2.3349679, 48.8710045 2.3355038, 48.8716416 2.3409433, 48.8734969 2.3525798, 48.8706911 2.3467398, 48.8721862 2.3501755, 48.8708723 2.3480533, 48.8704690 2.3480544, 48.8716176 2.3411379, 48.8707327 2.3464923, 48.8714861 2.3419548, 48.8716074 2.3412011, 48.8751154 2.3557100, 48.8749802 2.3559340, 48.8744702 2.3552896, 48.8773577 2.3564531, 48.8785393 2.3568626, 48.8767619 2.3563475, 48.8786854 2.3569358, 48.8779934 2.3562593, 48.8782144 2.3566970, 48.8799927 2.3591789, 48.8812174 2.3638517, 48.8750088 2.3393609, 48.8796296 2.3553194, 48.8800642 2.3523843, 48.8809546 2.3510669, 48.8689508 2.3362959, 48.8667422 2.3365735, 48.8682398 2.3365168, 48.8696120 2.3356753, 48.8676561 2.3370904, 48.8675328 2.3370273, 48.8698393 2.3358297, 48.8708380 2.3349612, 48.8688219 2.3359090, 48.8688160 2.3362566, 48.8688035 2.3365534, 48.8666564 2.3369830, 48.8669153 2.3365074, 48.8702490 2.3349166, 48.8688150 2.3361103, 48.8676983 2.3366997, 48.8681903 2.3364995, 48.8678747 2.3364447, 48.8751334 2.3514260, 48.8658609 2.3370619, 48.8641660 2.3361960, 48.8656996 2.3366338, 48.8651667 2.3364852, 48.8652254 2.3367395, 48.8703362 2.3315753, 48.8597079 2.3182507, 48.8666350 2.3099131, 48.8703978 2.3225405, 48.8702620 2.3312290, 48.8702706 2.3312786, 48.8706031 2.3221827, 48.8707016 2.3218346, 48.8658900 2.3506042, 48.8658986 2.3742587, 48.8663671 2.3715603, 48.8648305 2.3731176, 48.8972266 2.3855240, 48.8796615 2.3550800, 48.8798780 2.3540920, 48.8613780 2.3495790, 48.8805044 2.3746913, 48.8697793 2.3750857, 48.8616152 2.3446790, 48.8616509 2.3443800, 48.8598716 2.3677862, 48.8640655 2.3345802, 48.8936313 2.3222087, 48.8943755 2.3204813, 48.8752927 2.3875604, 48.8732552 2.3604924, 48.8731705 2.3596985, 48.8720524 2.3605992, 48.8830455 2.3398008, 48.8910970 2.3741558, 48.8911479 2.3740014, 48.8907671 2.3759930, 48.8735546 2.3841519, 48.8908275 2.3460063, 48.8905461 2.3453913, 48.8911373 2.3471492, 48.8907355 2.3482159, 48.8851558 2.3360026, 48.8945691 2.3441669, 48.8944316 2.3452559, 48.8645796 2.3718543, 48.8936330 2.3428880, 48.8940560 2.3431940, 48.8941520 2.3429690, 48.8943730 2.3432450, 48.8951370 2.3433760, 48.8943990 2.3447720, 48.8942700 2.3458810, 48.8941300 2.3458060, 48.8928950 2.3433840, 48.8948510 2.3409210, 48.8691880 2.3617720, 48.8694980 2.3633100, 48.8693370 2.3635590, 48.8691390 2.3634440, 48.8691820 2.3631770, 48.8697450 2.3637220, 48.8686940 2.3597770, 48.8686410 2.3599800, 48.8689770 2.3602190, 48.8690369 2.3600697, 48.8701370 2.3610220, 48.8718820 2.3623620, 48.8721550 2.3626770, 48.8724460 2.3632870, 48.8726535 2.3631861, 48.8732160 2.3629280, 48.8931040 2.3440780, 48.8926550 2.3442290, 48.8937130 2.3451630, 48.8937300 2.3449020, 48.8731527 2.3385700, 48.8664049 2.3413812, 48.8687508 2.3345042, 48.8692412 2.3299818, 48.8707775 2.3387098, 48.8689281 2.3302927, 48.8695802 2.3230555, 48.8664844 2.3389311, 48.8700770 2.3223918, 48.8675314 2.3020548, 48.8696595 2.3052249, 48.8662502 2.3285392, 48.8739879 2.3430920, 48.8634808 2.3437738, 48.8718416 2.3144851, 48.8696738 2.3309961, 48.8724435 2.3281256, 48.8947860 2.3445300, 48.8724800 2.3404835, 48.8724927 2.3528401, 48.8714038 2.3104401, 48.8715946 2.3262057, 48.8669510 2.3270370, 48.8706950 2.3313289, 48.8673862 2.2911822, 48.8679841 2.3255481, 48.8706291 2.3297804, 48.8680526 2.3287936, 48.8684086 2.3268250, 48.8662803 2.3394262, 48.8710959 2.3416366, 48.8699813 2.3246311, 48.8597088 2.3086607, 48.8687853 2.3250184, 48.8688647 2.2646951, 48.8635574 2.2602856, 48.8660415 2.3361004, 48.8939174 2.3431529, 48.8911748 2.3607925, 48.8683505 2.3748549, 48.8873793 2.3371742, 48.8799295 2.3575665, 48.8864168 2.3442029, 48.8866377 2.3443434, 48.8899236 2.3398500, 48.8865304 2.3443480, 48.8615684 2.3783425, 48.8857166 2.3381509, 48.8743786 2.3636125, 48.8702183 2.2459747, 48.8690004 2.3384279, 48.8739830 2.3725892, 48.8742654 2.3727129, 48.8736424 2.3076398, 48.8984060 2.3445732, 48.8828717 2.3288427, 48.8827606 2.3283572, 48.8935993 2.3230562, 48.8668318 2.2544028, 48.8934373 2.3232735, 48.8795704 2.3522406, 48.8793693 2.3525786, 48.8865873 2.3128095, 48.8661411 2.3671105, 48.8714714 2.3280397, 48.8914883 2.3506742, 48.8867280 2.3409619, 48.8736230 2.3526886, 48.8789434 2.3780844, 48.8717406 2.3715881, 48.8733313 2.3530301, 48.8727613 2.3519183, 48.8727251 2.3521315, 48.8817044 2.3525759, 48.8928740 2.3287813, 48.8752613 2.3705179, 48.8801808 2.3373122, 48.8777152 2.3320765, 48.8777130 2.3318740, 48.8720797 2.3405228, 48.8717651 2.3403142, 48.8708172 2.3482539, 48.8710210 2.3469210, 48.8710522 2.3467304, 48.8829700 2.3205585, 48.8820557 2.3285353, 48.8801158 2.3291143, 48.8815002 2.3282628, 48.8742801 2.3357676, 48.8742391 2.3333145, 48.8742326 2.3334984, 48.8741848 2.3351560, 48.8743601 2.3329097, 48.8742439 2.3332327, 48.8742300 2.3335755, 48.8742269 2.3336382, 48.8728885 2.3451791, 48.8765391 2.3394762, 48.8762070 2.3400723, 48.8765114 2.3406889, 48.8766574 2.3401427, 48.8764750 2.3395753, 48.8766574 2.3405656, 48.8680574 2.3417881, 48.8698783 2.3425685, 48.8691169 2.3422291, 48.8702023 2.3421494, 48.8641319 2.3484339, 48.8872935 2.3361945, 48.8853856 2.3359893, 48.8873015 2.3360309, 48.8858892 2.3361945, 48.8883991 2.3510703, 48.8869141 2.3514696, 48.8635328 2.3632361, 48.8825806 2.3672397, 48.8857859 2.3452590, 48.8812525 2.3584914, 48.8830046 2.3650381, 48.8830637 2.3612591, 48.8728704 2.3813019, 48.8688487 2.2348654, 48.8834736 2.3604504, 48.8896591 2.3426912, 48.8857760 2.3287243, 48.8849775 2.3295394, 48.8902288 2.3476015, 48.8880810 2.2979280, 48.8974737 2.3312683, 48.8959871 2.3304855, 48.8872260 2.3324699, 48.8904006 2.3349160, 48.8905328 2.3349026, 48.8884483 2.3329205, 48.8875488 2.3327381, 48.8915645 2.3352835, 48.8953965 2.3375071, 48.8879853 2.3396455, 48.8947585 2.3282626, 48.8959929 2.3286918, 48.8961868 2.3389271, 48.8685514 2.3683075, 48.8825100 2.3378415, 48.8846868 2.3416679, 48.8843749 2.3411643, 48.8846003 2.3411844, 48.8753270 2.3689900, 48.8720517 2.3351032, 48.8662620 2.3356061, 48.8670216 2.3359869, 48.8781869 2.2884063, 48.8625297 2.3799298, 48.8590223 2.4024858, 48.8590692 2.4058632, 48.8793921 2.3895039, 48.8656739 2.3463704, 48.8973173 2.3848230, 48.8972521 2.3847586, 48.8970881 2.3845721, 48.8648559 2.3969632, 48.8731487 2.3445761, 48.8713070 2.3479965, 48.8724637 2.2980607, 48.8707216 2.3006611, 48.8682088 2.3014586, 48.8743665 2.3618973, 48.8742228 2.3624553, 48.8727849 2.3634181, 48.8729195 2.2988493, 48.8730465 2.2984497, 48.8617849 2.3518205, 48.8616656 2.3513122, 48.8619390 2.3509944, 48.8656555 2.2894172, 48.8652925 2.2891532, 48.8654719 2.2892837, 48.8595904 2.4050515, 48.8594938 2.4051634, 48.8708913 2.3580857, 48.8688368 2.3624724, 48.8691941 2.3573560, 48.8692734 2.3564413, 48.8699288 2.3950557, 48.8751640 2.3321790, 48.8598245 2.3479142, 48.8592985 2.3479258, 48.8601373 2.3481716, 48.8625488 2.3540088, 48.8600406 2.3484986, 48.8600556 2.3483497, 48.8601051 2.3500266, 48.8591455 2.3478511, 48.8602833 2.3482093, 48.8611395 2.3539719, 48.8592067 2.3534078, 48.8620249 2.3537411, 48.8621035 2.3535221, 48.8634711 2.3500128, 48.8601905 2.3476020, 48.8601948 2.3475156, 48.8596378 2.3474576, 48.8629250 2.3487647, 48.8636829 2.3493064, 48.8637682 2.3499143, 48.8634421 2.3485303, 48.8633388 2.3485138, 48.8848688 2.3069070, 48.8654002 2.3689374, 48.8614835 2.3771934, 48.8778735 2.2875843, 48.8705072 2.3019336, 48.8708689 2.3020289, 48.8697768 2.3036006, 48.8681112 2.3014721, 48.8704351 2.3043615, 48.8693740 2.3077196, 48.8777760 2.2877961, 48.8643014 2.4002976, 48.8720371 2.3481740, 48.8732358 2.3613894, 48.8732268 2.3624203, 48.8944510 2.3440420, 48.8754701 2.2836788, 48.8753925 2.2852613, 48.8750872 2.2865005, 48.8756941 2.2862216, 48.8727890 2.3429679, 48.8727157 2.3429899, 48.8851757 2.3075791, 48.8820348 2.3139529, 48.8719957 2.3430238, 48.8729655 2.3432485, 48.8718024 2.3432812, 48.8767250 2.3307380, 48.8610880 2.3512876, 48.8614615 2.3514586, 48.8841484 2.3227392, 48.8840708 2.3230235, 48.8861392 2.3337047, 48.8720846 2.3660947, 48.8716623 2.3681061, 48.8603639 2.3478222, 48.8603388 2.3480663, 48.8598889 2.3522642, 48.8848153 2.3229754, 48.8733188 2.3446580, 48.8752221 2.3038262, 48.8878312 2.3787631, 48.8701201 2.3491659, 48.8609895 2.3473093, 48.8730540 2.3435221, 48.8655913 2.3471265, 48.8852970 2.3163291, 48.8676507 2.3427272, 48.8771870 2.3513170, 48.8764165 2.3555503, 48.8764781 2.3553328, 48.8771434 2.3517304, 48.8764892 2.3552357, 48.8673359 2.3991033, 48.8665408 2.3996952, 48.8675264 2.4005840, 48.8729522 2.4050353, 48.8722236 2.4047280, 48.8772063 2.4094486, 48.8769898 2.4054164, 48.8711865 2.4001138, 48.8768593 2.4057793, 48.8762568 2.4026044, 48.8692292 2.3966523, 48.8690126 2.3971718, 48.8726193 2.3990837, 48.8723933 2.3993546, 48.8758552 2.4019932, 48.8645296 2.3999995, 48.8643290 2.3977966, 48.8641688 2.3976584, 48.8642835 2.3981370, 48.8650741 2.3972853, 48.8821571 2.3281764, 48.8661899 2.3718762, 48.8591372 2.3430272, 48.8622322 2.3573881, 48.8890315 2.3624318, 48.8909716 2.3611648, 48.8913537 2.3623037, 48.8912306 2.3619236, 48.8913500 2.3613552, 48.8684859 2.3702604, 48.8904554 2.3613786, 48.8911316 2.3641074, 48.8911480 2.3638611, 48.8710452 2.3583430, 48.8816643 2.3664685, 48.8901098 2.3596369, 48.8909114 2.3604949, 48.8909059 2.3606042, 48.8709254 2.3085765, 48.8662240 2.3388110, 48.8900400 2.3632191, 48.8682148 2.3979085, 48.8773588 2.2989656, 48.8774315 2.2986835, 48.8751593 2.3701002, 48.8741225 2.3893282, 48.8748365 2.3888937, 48.8909898 2.3608038, 48.8922565 2.3879668, 48.8896721 2.3596605, 48.8890437 2.3606481, 48.8890487 2.3604033, 48.8897921 2.3604602, 48.8910188 2.3609138, 48.8897517 2.3604732, 48.8931060 2.3282113, 48.8608042 2.3799887, 48.8605689 2.3786648, 48.8762181 2.3718774, 48.8854958 2.3656011, 48.8735521 2.3649705, 48.8861995 2.3567861, 48.8610209 2.3105163, 48.8610190 2.3113026, 48.8901495 2.3592264, 48.8745880 2.3309443, 48.8746973 2.3308647, 48.8745893 2.3308470, 48.8798304 2.3575115, 48.8789100 2.2874734, 48.8891501 2.3600864, 48.8623031 2.3667215, 48.8867265 2.3692541, 48.8749302 2.3555936, 48.8936132 2.3841788, 48.8659386 2.3788507, 48.8849455 2.3527050, 48.8850090 2.3595929, 48.8918519 2.3634768, 48.8916614 2.3634553, 48.8920015 2.3179046, 48.8690083 2.3564593, 48.8615300 2.3686675, 48.8760446 2.3484651, 48.8850314 2.3781308, 48.8946856 2.3193650, 48.8678207 2.3478985, 48.8667602 2.3505401, 48.8644860 2.3502765, 48.8736385 2.3889782, 48.8739867 2.3864968, 48.8718150 2.3717657, 48.8727815 2.3712192, 48.8729660 2.3702046, 48.8617341 2.3650289, 48.8642536 2.2721272, 48.8616662 2.3146849, 48.8849737 2.3369336, 48.8740700 2.3880327, 48.8599854 2.3672407, 48.8889949 2.3583055, 48.8860248 2.3369308, 48.8902739 2.3358959, 48.8874196 2.3791285, 48.8917305 2.3461501, 48.8906054 2.3436342, 48.8911601 2.3472858, 48.8905525 2.3481725, 48.8654434 2.3665508, 48.8614471 2.3729562, 48.8666976 2.3655874, 48.8661825 2.3452310, 48.8641592 2.3663881, 48.8624682 2.3635794, 48.8591882 2.3451519, 48.8588750 2.3449998, 48.8929579 2.3376602, 48.8788116 2.3448907, 48.8648741 2.3568648, 48.8647110 2.3556670, 48.8647065 2.3557113, 48.8688148 2.3556948, 48.8744006 2.3588789, 48.8598506 2.3506084, 48.8899908 2.3632081, 48.8611479 2.3689726, 48.8638679 2.3648260, 48.8710277 2.3356624, 48.8890796 2.3723602, 48.8756169 2.3280376, 48.8731075 2.3603509, 48.8748935 2.3811373, 48.8781923 2.3452434, 48.8767035 2.3442886, 48.8761220 2.3317510, 48.8798222 2.3536407, 48.8644516 2.3451744, 48.8665424 2.3444859, 48.8653520 2.3447568, 48.8689100 2.3859683, 48.8818977 2.3455167, 48.8809875 2.3406458, 48.8809240 2.3404741, 48.8762503 2.3384716, 48.8728060 2.3646742, 48.8722199 2.3662906, 48.8922563 2.3451633, 48.8818730 2.3810389, 48.8758373 2.3459265, 48.8795087 2.3434753, 48.8924455 2.3635357, 48.8750371 2.3453587, 48.8763927 2.3443424, 48.8841247 2.3209960, 48.8832982 2.3234280, 48.8860152 2.3193197, 48.8926082 2.3632978, 48.8647682 2.3664782, 48.8615352 2.3424505, 48.8606042 2.3677659, 48.8607123 2.3679772, 48.8845024 2.3699867, 48.8817691 2.3705494, 48.8676694 2.3433379, 48.8957541 2.3476530, 48.8957586 2.3475660, 48.8917666 2.3218705, 48.8654497 2.3690938, 48.8709594 2.3479984, 48.8829241 2.3432202, 48.8731139 2.3807450, 48.8690065 2.3742189, 48.8721796 2.3274785, 48.8715853 2.3272917, 48.8804973 2.2853562, 48.8827366 2.2912231, 48.8646577 2.3697145, 48.8961469 2.3382720, 48.8759290 2.3241447, 48.8764290 2.3259972, 48.8761420 2.3253990, 48.8667163 2.3367639, 48.8910518 2.3314128, 48.8754876 2.3480736, 48.8776068 2.3489868, 48.8813835 2.3281151, 48.8878510 2.3535887, 48.8826169 2.3296364, 48.8598677 2.3086797, 48.8678023 2.3499020, 48.8606025 2.3457538, 48.8601414 2.3453350, 48.8903544 2.3289917, 48.8853124 2.3253739, 48.8803653 2.2993106, 48.8855401 2.2976447, 48.8702188 2.3108394, 48.8715298 2.3681493, 48.8837483 2.3717520, 48.8846076 2.3697324, 48.8846076 2.3697324, 48.8674112 2.3229787, 48.8704742 2.3237783, 48.8697219 2.3226142, 48.8741108 2.3436798, 48.8805026 2.3961626, 48.8709398 2.3029345, 48.8593876 2.3489534, 48.8593594 2.3494831, 48.8592324 2.3496685, 48.8591582 2.3498992, 48.8589383 2.3514814, 48.8594394 2.3491586, 48.8815660 2.3478333, 48.8725291 2.3001145, 48.8724675 2.3003188, 48.8762025 2.3710966, 48.8666808 2.3456284, 48.8665292 2.3464186, 48.8665024 2.3465774, 48.8667552 2.3451020, 48.8667159 2.3453933, 48.8726851 2.3024789, 48.8737471 2.3451402, 48.8731623 2.3449978, 48.8719437 2.3446492, 48.8735309 2.3450913, 48.8705878 2.3425842, 48.8605209 2.3023944, 48.8902734 2.3546516, 48.8914921 2.3613348, 48.8680096 2.3435345, 48.8676664 2.3437165, 48.8679005 2.3435952, 48.8877980 2.2997590, 48.8811990 2.2897480, 48.8816790 2.2888680, 48.8817488 2.2888029, 48.8819610 2.2885470, 48.8814404 2.2894685, 48.8851028 2.2981721, 48.8848466 2.2963979, 48.8853809 2.2966584, 48.8845518 2.2979815, 48.8852175 2.2964748, 48.8834502 2.2938754, 48.8832548 2.2934886, 48.8822916 2.2913772, 48.8802886 2.2879403, 48.8733986 2.3215098, 48.8845738 2.2910473, 48.8847627 2.2913861, 48.8813094 2.2861348, 48.8815854 2.2860365, 48.8822997 2.2865952, 48.8843811 2.2910193, 48.8837693 2.2907507, 48.8849514 2.2959483, 48.8850091 2.2954626, 48.8849348 2.2961330, 48.8845891 2.2945570, 48.8843134 2.2943799, 48.8848608 2.2951371, 48.8850188 2.2939952, 48.8852107 2.2935244, 48.8788664 2.2847106, 48.8740226 2.3337460, 48.8786554 2.2999384, 48.8762947 2.2890603, 48.8802997 2.3577529, 48.8775890 2.2881553, 48.8619404 2.3145726, 48.8798757 2.2951878, 48.8796416 2.2949514, 48.8797688 2.2942800, 48.8799467 2.2942003, 48.8801083 2.2943052, 48.8805532 2.2934972, 48.8800771 2.2940804, 48.8815910 2.2925353, 48.8816270 2.2921775, 48.8841060 2.2909950, 48.8845760 2.2895318, 48.8826125 2.3011279, 48.8776740 2.2991918, 48.8776990 2.2990901, 48.8780258 2.2850956, 48.8846317 2.2893952, 48.8778621 2.2848987, 48.8802502 2.2957038, 48.8675021 2.3098437, 48.8885609 2.3172274, 48.8881694 2.3166376, 48.8883589 2.3169789, 48.8968374 2.3787112, 48.8971449 2.3819951, 48.8875090 2.2976290, 48.8871630 2.2970010, 48.8706152 2.3532598, 48.8876760 2.2983980, 48.8863430 2.2961140, 48.8859640 2.2915440, 48.8871530 2.2947410, 48.8853110 2.2955510, 48.8853440 2.2952310, 48.8850320 2.2952390, 48.8850780 2.2950060, 48.8840610 2.2937810, 48.8851190 2.2924220, 48.8852040 2.2920140, 48.8678227 2.3369768, 48.8809990 2.2857060, 48.8701642 2.3537129, 48.8590400 2.3622970, 48.8907611 2.3619378, 48.8814470 2.2951720, 48.8856370 2.2977760, 48.8849010 2.2988890, 48.8845430 2.2986640, 48.8846290 2.2984300, 48.8842560 2.2973050, 48.8842580 2.2968350, 48.8850869 2.3651538, 48.8749003 2.3428357, 48.8771460 2.2924640, 48.8769040 2.2919650, 48.8771270 2.2920750, 48.8772510 2.2920010, 48.8774500 2.2920680, 48.8774750 2.2918560, 48.8776900 2.2917270, 48.8777680 2.2918880, 48.8779330 2.2915640, 48.8786180 2.2913310, 48.8798280 2.2917160, 48.8813710 2.2894860, 48.8604075 2.3556155, 48.8601740 2.3563013, 48.8747214 2.3415841, 48.8705943 2.3429365, 48.8746840 2.3416410, 48.8699102 2.3115070, 48.8683555 2.3254379, 48.8684709 2.3254367, 48.8690272 2.3251599, 48.8700437 2.3257977, 48.8702250 2.3258823, 48.8840040 2.2933540, 48.8796560 2.2864960, 48.8804350 2.2856120, 48.8804320 2.2856580, 48.8804050 2.2857730, 48.8806940 2.2861620, 48.8805790 2.2866490, 48.8799990 2.2875200, 48.8797930 2.2884240, 48.8797640 2.2885180, 48.8769049 2.3270113, 48.8768180 2.3270140, 48.8770340 2.3271360, 48.8767510 2.3273100, 48.8766230 2.3273770, 48.8726661 2.3021404, 48.8727090 2.3021938, 48.8724271 2.3017769, 48.8695340 2.3049808, 48.8687825 2.3043355, 48.8723494 2.3607849, 48.8879180 2.3067900, 48.8880960 2.3065700, 48.8882020 2.3064360, 48.8882250 2.3064120, 48.8887260 2.3057200, 48.8883220 2.3062270, 48.8889330 2.3054700, 48.8889870 2.3053980, 48.8884000 2.2999400, 48.8799736 2.2892538, 48.8751250 2.2934560, 48.8752420 2.2940700, 48.8753410 2.2939710, 48.8770440 2.2917940, 48.8769630 2.2916430, 48.8767720 2.2915790, 48.8777980 2.2906200, 48.8792110 2.2907480, 48.8886086 2.3780545, 48.8618088 2.2825036, 48.8613662 2.2830289, 48.8613148 2.2830943, 48.8652864 2.2854968, 48.8653444 2.2836290, 48.8862020 2.3612523, 48.8758620 2.2937570, 48.8765293 2.3766762, 48.8765381 2.3785538, 48.8831467 2.3852056, 48.8793441 2.3856452, 48.8912644 2.3784340, 48.8645257 2.2825794, 48.8659302 2.2858805, 48.8657556 2.2858886, 48.8813580 2.2854140, 48.8603776 2.3434701, 48.8753759 2.3739351, 48.8751695 2.3739029, 48.8746244 2.3809330, 48.8765910 2.3232000, 48.8747470 2.3159270, 48.8810780 2.3126420, 48.8781141 2.3843466, 48.8779190 2.3852619, 48.8778925 2.3854242, 48.8782848 2.3854140, 48.8789083 2.3856186, 48.8789361 2.3851519, 48.8806716 2.3738195, 48.8820002 2.3711763, 48.8775700 2.2877800, 48.8899434 2.3710251, 48.8803750 2.3978486, 48.8811706 2.3719906, 48.8641699 2.4083715, 48.8757475 2.3857007, 48.8753418 2.3815392, 48.8747347 2.3813029, 48.8752868 2.3817360, 48.8755279 2.3821599, 48.8590719 2.3810909, 48.8740264 2.3839194, 48.8746078 2.3810324, 48.8739520 2.3822179, 48.8735701 2.3830856, 48.8736839 2.3828415, 48.8777223 2.3322319, 48.8787477 2.3711783, 48.8819062 2.3741667, 48.8841883 2.3779754, 48.8845623 2.3786634, 48.8851670 2.3806432, 48.8852067 2.3807525, 48.8589178 2.3234187, 48.8589724 2.3234632, 48.8855935 2.3818316, 48.8805386 2.3751052, 48.8806753 2.3748196, 48.8807035 2.3747471, 48.8808173 2.3744896, 48.8808967 2.3743140, 48.8830777 2.3876231, 48.8723326 2.3483178, 48.8864670 2.3115680, 48.8799610 2.3291770, 48.8868177 2.3744113, 48.8849000 2.3707095, 48.8883341 2.3761366, 48.8848937 2.3405138, 48.8842803 2.3395848, 48.8846433 2.3402443, 48.8675053 2.3352170, 48.8859211 2.3934465, 48.8847791 2.3925318, 48.8848752 2.3926673, 48.8862192 2.3936382, 48.8754744 2.3873297, 48.8754373 2.3874893, 48.8842800 2.3047290, 48.8834170 2.3045710, 48.8820840 2.3044120, 48.8651610 2.3726873, 48.8643341 2.3728778, 48.8826325 2.3446975, 48.8630357 2.3730890, 48.8756732 2.3873298, 48.8712417 2.3797804, 48.8708280 2.3787238, 48.8671652 2.3360497, 48.8672298 2.3360756, 48.8791599 2.3910656, 48.8804060 2.3026459, 48.8803576 2.3030073, 48.8808754 2.3021137, 48.8808069 2.3021832, 48.8827997 2.3733397, 48.8830186 2.3740035, 48.8826853 2.3804864, 48.8592799 2.2849225, 48.8623163 2.3093585, 48.8734806 2.3430215, 48.8729547 2.3799476, 48.8755208 2.3906946, 48.8619535 2.4014538, 48.8708629 2.3427230, 48.8707564 2.3426660, 48.8836015 2.3202065, 48.8795130 2.3360991, 48.8828915 2.3811913, 48.8830697 2.3810418, 48.8840675 2.3805918, 48.8758598 2.4006983, 48.8606889 2.3547690, 48.8607780 2.3544920, 48.8612688 2.3578488, 48.8659762 2.3835715, 48.8754888 2.3889719, 48.8716073 2.3573055, 48.8589855 2.3540028, 48.8752800 2.3929026, 48.8752271 2.3936912, 48.8751574 2.3942236, 48.8826800 2.2865110, 48.8864590 2.3404788, 48.8846800 2.3291860, 48.8819840 2.3187180, 48.8819360 2.3185630, 48.8816120 2.3160090, 48.8636468 2.3671522, 48.8822902 2.3395019, 48.8744920 2.3729505, 48.8741051 2.3720932, 48.8739847 2.3718055, 48.8738359 2.3717117, 48.8735359 2.3710279, 48.8741858 2.3715930, 48.8745316 2.3721362, 48.8716669 2.3719109, 48.8711993 2.3697018, 48.8736209 2.3748630, 48.8878559 2.3534540, 48.8628419 2.3413590, 48.8627761 2.3414067, 48.8753498 2.3460798, 48.8752300 2.3455656, 48.8643515 2.3547358, 48.8588998 2.2853182, 48.8659100 2.3367259, 48.8612115 2.3668968, 48.8596062 2.3680483, 48.8595048 2.3686879, 48.8591538 2.3688576, 48.8624329 2.3726841, 48.8618736 2.3728696, 48.8620891 2.3780066, 48.8940948 2.3515003, 48.8684376 2.3706209, 48.8643358 2.3688108, 48.8612224 2.3648477, 48.8734440 2.3641694, 48.8731953 2.3643525, 48.8714362 2.3657352, 48.8768960 2.3534930, 48.8920550 2.3461008, 48.8665545 2.3603936, 48.8926611 2.3805354, 48.8707266 2.3515964, 48.8904606 2.3790788, 48.8910196 2.3779829, 48.8907119 2.3781803, 48.8906831 2.3786293, 48.8786060 2.2895840, 48.8785190 2.2893290, 48.8709792 2.3597736, 48.8711489 2.3601690, 48.8649741 2.3359158, 48.8752070 2.3041468, 48.8592341 2.3681415, 48.8593853 2.3683292, 48.8603524 2.3676426, 48.8597890 2.4027381, 48.8599301 2.4026085, 48.8593962 2.4050659, 48.8780937 2.3647247, 48.8681030 2.4033390, 48.8609818 2.3809160, 48.8609042 2.3814382, 48.8615076 2.3805893, 48.8592360 2.3828098, 48.8666042 2.3853196, 48.8614564 2.3780635, 48.8614752 2.3781069, 48.8610647 2.3776241, 48.8615428 2.3776813, 48.8610882 2.3812893, 48.8608398 2.3800020, 48.8611517 2.3814385, 48.8616071 2.3823364, 48.8945524 2.3527710, 48.8623796 2.3727706, 48.8621341 2.3774006, 48.8626909 2.3786304, 48.8622688 2.3799159, 48.8623261 2.3800798, 48.8633812 2.3618041, 48.8768192 2.2635389, 48.8728789 2.3289009, 48.8594276 2.3683212, 48.8721402 2.3254288, 48.8721670 2.3253311, 48.8721199 2.3255281, 48.8995733 2.3524962, 48.8744634 2.3207611, 48.8758392 2.3442908, 48.8642540 2.3684778, 48.8646300 2.3665505, 48.8661085 2.3669813, 48.8722000 2.3397200, 48.8599164 2.3463862, 48.8689558 2.3348921, 48.8759088 2.3029263, 48.8615808 2.3421921, 48.8609420 2.3686815, 48.8741075 2.3445446, 48.8831840 2.2988520, 48.8822700 2.2945370, 48.8822490 2.2942850, 48.8821450 2.2944460, 48.8590641 2.3684194, 48.8620899 2.3661777, 48.8617952 2.3647367, 48.8633340 2.3613891, 48.8623729 2.3651197, 48.8627347 2.3662302, 48.8614130 2.3705083, 48.8615747 2.3706299, 48.8647430 2.3818722, 48.8620626 2.3672580, 48.8628461 2.3362666, 48.8644915 2.3656032, 48.8690385 2.3639054, 48.8679245 2.3658481, 48.8650522 2.3663679, 48.8619694 2.3673462, 48.8656106 2.3572726, 48.8626759 2.3636324, 48.8627659 2.3625185, 48.8780160 2.2938546, 48.8615576 2.3705429, 48.8633878 2.3694245, 48.8611497 2.3674810, 48.8626333 2.3674542, 48.8809048 2.3467209, 48.8642921 2.3657377, 48.8618200 2.3730192, 48.8617681 2.3611646, 48.8630387 2.3518815, 48.8632610 2.3511168, 48.8635550 2.3471565, 48.8659600 2.3653216, 48.8665862 2.3667443, 48.8661620 2.3675630, 48.8666335 2.3665296, 48.8663602 2.3680223, 48.8643746 2.3685025, 48.8641963 2.3679144, 48.8646177 2.3690280, 48.8628347 2.3675662, 48.8623144 2.3663745, 48.8708703 2.3415985, 48.8705728 2.3415832, 48.8711859 2.3417171, 48.8709869 2.3416777, 48.8620724 2.3658250, 48.8637272 2.3671164, 48.8614253 2.3643489, 48.8593585 2.3673596, 48.8599776 2.3643195, 48.8654352 2.3322141, 48.8731027 2.3586476, 48.8640444 2.3658805, 48.8641120 2.3658485, 48.8611118 2.3693564, 48.8814750 2.3580850, 48.8819434 2.2862186, 48.8654853 2.3686016, 48.8621731 2.3396914, 48.8675585 2.3352443, 48.8679678 2.3355626, 48.8678404 2.3435108, 48.8666855 2.3458176, 48.8667840 2.3448980, 48.8659951 2.3472997, 48.8596787 2.3549361, 48.8739698 2.3502828, 48.8807650 2.3809540, 48.8772540 2.3793034, 48.8768300 2.4049587, 48.8681170 2.3702881, 48.8692220 2.3131336, 48.8679417 2.3153003, 48.8718575 2.3096862, 48.8745552 2.3434968, 48.8775832 2.3381108, 48.8791560 2.3349351, 48.8786912 2.3329642, 48.8768273 2.4061935, 48.8916829 2.3361699, 48.8916676 2.3364729, 48.8750787 2.2865522, 48.8761844 2.2731721, 48.8769614 2.2666348, 48.8787683 2.2627725, 48.8639756 2.2506990, 48.8775380 2.2845027, 48.8783349 2.2845148, 48.8660959 2.3165080, 48.8853349 2.3222678, 48.8632940 2.3461861, 48.8787317 2.3451434, 48.8648781 2.3453619, 48.8680174 2.3629641, 48.8623556 2.3500864, 48.8772523 2.3138827, 48.8832336 2.3770248, 48.8645929 2.3574911, 48.8813196 2.2935688, 48.8778259 2.3969489, 48.8769600 2.3706426, 48.8782894 2.3331903, 48.8873550 2.3868767, 48.8660080 2.3494045, 48.8664194 2.3321315 +16 +109 +49.4079210 8.6866720, 49.4117371 8.7091875, 49.4095865 8.7066610, 49.4115410 8.7046342, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4066053 8.6919726 +Wiesloch, Sinsheim, Hirschhorn (Neckar), Eberbach, Östringen, Neckargemünd, Waibstadt +0.38074867737861279 +50, 50, 50, 50, 50 +55.9561550 -3.2435210, 55.9002100 -3.2321660, 55.9678281 -3.2362601 +10 and 49.4091649 8.6726851, 49.4079210 8.6866720, 49.4117371 8.7091875, 49.4073921 8.6825502, 49.4095865 8.7066610, 49.4115410 8.7046342, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4066053 8.6919726 +yes +46.3554455 -0.6680522, 46.3458003 -0.6849917, 46.6167350 -1.8692222, 47.2661765 -0.5769410, 47.0326315 -0.6067364, 47.4157721 -1.8539595, 46.9193815 -0.8487945, 47.2053637 -2.0487648, 46.6646452 -1.7570749, 46.6625119 -1.7637588, 46.4072147 -1.4060013, 47.2001295 -0.0915538, 47.1117065 -2.1078804, 47.0386966 -1.6404113, 47.1027718 -1.1206474, 47.1002886 -1.1228630, 47.2606386 -1.5123732, 47.1129029 -0.6325854, 47.2757188 -2.4265544, 46.7916310 -2.0633590, 46.5333900 -1.7720741, 47.3427522 -2.4270051, 46.5890791 -1.1245053, 46.5894219 -1.1237864, 47.0319246 -1.0921844, 46.8367326 -0.8835602, 46.3702547 -0.7025105, 46.5229325 -0.7565522, 46.4677815 -0.7739333, 46.4906189 -1.7944913, 46.7700629 -1.5054141, 47.1854515 -1.9446521, 46.5712586 -1.8264870, 47.2661676 -0.5769699, 47.3873095 0.0786502, 47.3639737 -1.0215598, 47.1335252 -2.2132604, 47.2451626 -0.7699908, 47.2194968 -1.5498408 +no +no +yes +21 +no +2 +W.H. Smith, Colette, Librairie Galignani, La Fontaine aux Vins, Gepetto & Vélos, L'Épée de Bois, Shakespeare and Company, Artazart, Distribution, New PC Charenton, Académie du bal costumé, Tang Frères, Galerie Vivienne, passages des Princes, Brentano's, Monoprix, Monoprix Lecourbe, Bio c' Bon, Franprix, G20, Casino Lecourbe, Marché U, Marché U, Jerome de Noirmont, Brentano's, G20, Carrefour City, Le Fournil de Lourmel, G20, Monoprix, Franprix, Au Réparateur de Bicyclettes, Vélo Electro, Intermarché, Franprix, Franprix, Lidl, Auchan, Franprix, Franprix, Franprix, Gil'Pressing, Moderne-Lavage, Beautés du Monde, En tete a tete, Martel bricolage, Clo Tournesol, La Boul'Ange, Jaguar - Range Rover - Land Rover, La Boulenge d'Antan, Fleurs de France, Franprix, Monoprix, Franprix, Ouistitipop, Carrefour City, Le Diplomate, Boulangerie - Pâtisserie Méri, Monoprix Convention, Dia, cora, DIA, Monoprix, Les Sourires de Dante, Springfield, Aapoum Bapoum, Franprix, Dia, Clean Pressing, Du Pain et des Idées, Monoprix, Mr Bricolage, Lidl, Monop', Gibert Joseph, Gibert Joseph, Franprix, Franprix, Boucherie Louis Blanc, Leroy Merlin, Franprix, Dia, Simply Market, Simply Market, Franprix, Go Sport, Dia, Simply Market, Franprix, Monoprix, Neovelo, Carrefour City, Castorama, Castorama, La Gerbe d'Or, Esprit Démarque, Picard, Les Petits Vélos de Maurice, Cycles Pliants Expansion, Velectris, Cycles Delcayre, Rando Cycles, BMG Baillou, Cycles Laurent, Paris à Vélo, c’est Sympa, Bicloune, Preya cycle, Au Point Vélo Hollandais, Vélo & Oxygen, Bike in Paris, Les Vélos Parisiens, Cycle Centre, Esprit Vélo, Cyclo Sport 34, Mountain Biker, Sri Kanaga Ambika Velo, AICV, Valmy Cycle, Le Petit Boyauteur, Cycles Saint-Honoré, ADV Atelier des Vélos, Lardais Patrick, Bouticycle du Château, Les Nouveaux Robinsons, Un vélo dans la ville, Ok Ça Roule, URBAN CYCLES 15, R B Cyclos, Thibault van der Straete, Spree, Franprix, Franprix, Franprix, Simply Market, Dia, marché Franprix, Franprix, G20, Franprix, Monoprix, Dia, A2pas Auchan, Chez Jean, Petit Casino, Boulangerie Hélène et Bernard Dorange, Carrefour Market, Europasie, Exquise, Franprix, La Terrasse de Gutenberg, Page 189, El Ksour, Franprix, L'Artisterie, Le Passage Clouté, Naturalia, Monoprix, DIA, Carrefour Market, Leader Price, 8 a huit, Shopi, Respiro, Naturalia, Librairie Compagnie, Dia, Renault, Optic 2000, La belle fleur, U Express, Simply Market, Bio C' Bon, Whim, Tabac de l'Europe, Casino, Optica, Tchip Coiffure, Monoprix, Mazhar Fleurs, La Clef des Voyages, Bricolex, Monoprix, Aux délices de l'étoile, Franprix, Franprix, Carrefour Express Paris Batignolles, Monoprix, Franprix, Franprix, La Victoire, Franprix, Simply Market, Monoprix, Carrefour Market, Franprix, Franprix, Franprix, Daily Monop', Picard, Franprix, Franprix, Monoprix, Gibert Jeune - Sciences Humaines, Gibert Jeune, Gibert Jeune, Franprix, Proxi super, Simply Market, Monoprix, DIA, Equipages, L'Étoile de Djurjura, Franprix, SimplyMarket, Naturalia, Naturalia Crussol, Lecaille, Les compagnons de Voltaire, Guesdon, Franprix, Monoprix, Monoprix, Franprix, Dia, Tati, Franprix, Franprix, Casino, Franprix, Biocoop, Bio Génération, Franprix, L'Atelier, L’atelier d’en face, DIA, G20, Le petit leader, Dhouailly et Cie, Lyon Pressing, Pharmacie du Train Bleu, Marché Daumesnil, Monop', Aux délices de Saint-Antoine, DIA, Jacques Bazin, Aux Délices de Manon, Dia, Marché Franprix, Chez Miha, Frank Provost, Paris Store, Youfeng (友风书店), Fnac, La maison du cerf volant, Le Vert Jade, Bureau +, Marché Franprix, Gastronome, Sergio Bossi, Presse Parrot, Aux Couleurs, Cinébank, Gourmand Gourmet, Paris Lyon, Petit Marché, Céline et Étienne, Monoprix, Franprix, Franprix, Librairie La Brèche, Françoise Leclant Fleurs, Le Bosquet, R Color, Pierre Michel, Papéterie-librairie de l'École militaire, Camille Albane, Carrefour City, Proxi, Au Nom de la Rose, Dia, Vitry d'Aubigny, produits exotiques, Boulangerie Thierry Renard, Carrefour Market, G20, Super U, Fnac, sephora, Moisan, Le Grenier à Pain, Cave Michel Renaud, Nature de pain, Carrefour Market, Leader Price, Boucherie de Saint-Ouen, Boucherie chevaline, CocciMarket, Boulangerie, Mag's Delices (ex Truillot Point Chaud), Les Moulins d'Ivry, Harley Davidson, Dia, Petit Casino, Simply Market, Naturalia, Franprix, Atol, Ambiance Florale, HyperCasino, Le chant du pain, Bricorama, Aït Baha, Picard, La Halle aux Blés, Au Coeur Des Pains, Picard, passage des Panoramas, Intermarché, Franprix, Le Canon de la Presse, Carrefour Market, Franprix, Picard, Canal Bio, Happy, SNCF La Boutique, SFR, A. et H. Jourdan, MJJ, Гастрономъ, Gastronomie Russe, Gastronomie Russe, Гастрономъ, Гастрономъ, Prestige, Гастрономъ, Carrefour City, Décathlon, Boucherie Raux, Casino, Vélo 18 Vintage, Franprix, Picard, Nicolas, Kiloutou, Linel, Linel, BHV Vélo, Intermarché, Carrefour Market, Bio C' Bon, Franprix, Renault Garage Saint-Georges Agent, Hervé Thoraval, Corentin Fleurs, Idlys, La fournée des isséens, mod's hair, Issy Pressing, Adom, Librairie Nation, Goumanyat et son Royaume, Supermarché Volta, Marks & Spencer Food, Le Pain d'Auguste, Boulangerie Topaze, Wing Seng, Lezarts, Carrefour Market, Paris Store, Les Nouvelles Halles - 新今日超市, Supermarché Bonjour - 新温州超市, Issy Clés, Didier, Super Miranda, Primeurs des Moulineaux, Vic' Optic, Nicolas Convention, Orse, Jacadi Convention, Etam Lingerie Convention, Marlina, Petit Bateau Convention, Descamps Convention, Monoprix, Graineterie, Fiat, Franprix, Via Scarpa, Laverie libre service SBD, Rando Boutique, Buzibi, BiCyCle Store, Roulez Champions, Franscoop, Eram, Bières Cultes, Boulanger Pâtissier Julien, Les Verges Primeurs, Franprix, A la Tête du Client, Naf naf, Compagnie du Forum, HEMA, Déco Relief, Franprix, Mondial City, Dubail, Franprix, LDLC, Boulangerie L'écureuil, Chez Paco, La baguette des Pyrenees, Les halles Bolivar, Franprix, Aux Délices de Sèvres, Boulangerie Patisserie, Picard, Boulangerie Pâtisserie des Deux ponts, Michelle coiffure, Coiffure Auffray Jérôme, Dia, Sajou, Mona Lisait, Pharmacie de l'Ile Saint-Louis, Epicerie de la rue Saint-Louis en l'Ile, Librairie Epona, Gwen Choc, Terre de Chine, Eden Rouge, Franprix, Der Tante Emma-Laden, Boulangerie Julien, Un jour Ailleurs, Calzedonia, Heyraud, Epicarie La Reynie, Fleux', BHV Homme, Fleux', Boulangerie Pâtisserie Gaumer, Boulangerie Malineau, Boulangerie Kahn, Alimentation Générale, Adidas Originals, Franprix, Boulangerie Blin, Galeria Basia Embiricos, Carrément Fleurs, Boulangerie Patrick et Christine, Le Moulin à Miel, Sandro Hommes, Maison du vélo, Atelier vélorutionnaire, Carrefour City, Rougier & Plé, Patrick Roger, Boggi Milano, Hello Kathy, Editions Guy Trédaniel, Aqua Rêves, The Broken Arm, Boulanger patissier, Franprix, Boucherie du marais, Simply Market, AU PARADIS CANIN, Le monde en tique, Altermundi, The Australia NZ Shop, Fleurs du Temps, Harmony Pressing, Garage Roubine, Biocoop Le retour à la Terre - Rive Gauche, Kitclope, Jean-Louis David, Franprix, Franprix, Potemkine, Les nouveaux Robinson, Lidl, L'Arc en Ciel, Scooter Center, Galeries Lafayette, FNAC Montparnasse, Zara, Presses de Sciences Po, Sonia Rykiel, Boulanger Patissier, h@ir & wave, DIA, Franprix, Nicolas, DIA, Franprix, Franprix, Le Moulin de la Vierge, Franprix, L'épi d'or, Basic Beauty, Nuance Coiffure, Franprix, Franprix, Naturalia, Franprix, Monop', Franprix, Franprix, Aqua Spa Sun, Lavomatique, Aux saveurs d'Arcueil, Modern'Boucherie, La tonelle, Servotel Voyages, Maison de la Presse, Art'cueille, Le Cintre Chic, S.T. & Co. Arcueil, Arcueil Télé Ménager, Dany vêtements, Éram, Au bon tabac, Optique Services, Renault, Maison de la literie, Dekra, Paul, Partir pas cher, Mondial City, Marché Franprix, SNCF la boutique, Traiteur asiatique, Franprix, Proxi, DIA, Franprix, Carrefour Express, Gilles Vérot, Bread & Roses, Swildens, Les Nouveaux Robinson, JL Coquet, Cartier, La Kremlinoise, Au Saint-Honoré, Hayari Couture, Monoprix, Boulangerie "Les Caprices de Charlotte", Le Marché d'à côté, Monceau Fleurs, Supermarché G20, Le Prestige, Boucherie Frank Lecoeur, Lidl, Le Boulanger des Invalides, Monoprix, Adidas, La Maison du Caviar, Picard Surgelés, Montceau Fleurs, Holland Bikes, L'Ère du Vélo, Holland Bikes, J.M. Weston, À Livr'Ouvert, Galerie de la Voûte, Darty, Lepape, Cartier (fermé), Quicksilver, Grand Optical, Mercedes, Bulgari, A.Testoni, Saint-Louis, Lalique, Bernardaud, glashutte et heurgon, Cristofle, Crockett & Jones, H & M, Promod, Citroën, L'Atelier Renault, Gap, Disney Store, Häagen-Dazs, PSG, Zara, L'Atelier SFR, NAF NAF, Jacadi, Avant Premiere, Carrefour Market, Boulangerie de l'Entr'acte, Picard, Optic 2000, Le Boulanger de Monge, Jean-Louis David, André, Okaidi, Monoprix, Monoprix, Franprix, Monop', Le Marché de Rungis, Casino, Naturalia, Librairie des jardins, franprix, Maison Bichon, La Rame, G20, Franprix, Cycles Jean, Yamaha, Aux Gamins de Ménilmontant, Litote en Tête, Le Géant Des Beaux-Arts, Carrefour City, L'Epi d'Or, Ly Kuang, Giant, Centre Commercial, Asie Fabuleuse Voyages, Carrefour Express, Boulangerie Yan Chantelle, Bazar Éthic, Naturalia, Monceau Fleurs, Ideal Optic, Darty, Camaïeu, La grande épicerie de Paris, ETS Maleville, Les Petites Emplettes, Tati, Boucherie Saint-Martin, Peugeot, Bragard, Le Pélican, Franprix, Monceau Fleurs, Valée de Vinales, L'Invit' à-lire, Meubles Pascal, G20, Tabac, Boucherie de Chaillot, Hermes Fleurs, Monceau Fleurs, Supermarché Franprix, Boulangerie Bonon, Bio c'Bon, Maison Dault, La Grignotière, Issy Pas Cher, Naturalia, Librairie Papeterie Gutenberg, Librairie Caractères, L'Échoppée Locale, Optic 2000, Le Marché Bonnetier, Laverie, Nicolas, Carrefour City, SPA Évasion Beauté, Salsa Studio, Le Badine de Martine, Bricolage de A à Z, Sabah Épicerie, Éditions Franciscaines, Bechu, Teenflo, Aquarelle, Renoma, Pimlico, Maison de la Truffe, Baccarat, Hédiard, Caviar House & Prunier, Kaspia, Comptoirs de Paris, Fleurs de Passy, Franprix, Les coiffeurs de la rue, Des Gâteaux et du Pain, Franck Provost, Jossé, Optic 2000, Boulangerie Saint-Louis, Le Fournil Du Village, Proxy, Aux Sucreries de ma Mie, La Délicieuse, Librairie Fontaine Passy, Le Quai du Pain, Motori Italiani, Huré Boulanger Patissier, Marché Franprix, Franprix, Librairie des Orphelins Apprentis d'Auteuil, Cycles GUILLOCHON Gérard, Cycles Rebierre, DIA, Kelly Angel, Copy Express, Immobilière G.T.I., Calymotos Pasteur, Exavue, Franprix, Boulangerie Thevenin, Longtemps..., Franprix, Boulangerie Pascal & Sylvie Robin, Laverie, Aux délices du palais, Simply Market Paris Brune, Franprix, Go Sport Vélo, Boulangerie Gontier, Le 5e As, Les Guetteurs De Vent, Drouot Montaigne, Boulangerie Laurent Roperh, Boutique SNCF, La Friche, Dia, Naturalia, Préférence, Arc en Ciel, La Boite à Much', Atome micro, The Phone House, Les Fantaisies, Star, Soleil Sucré, Magnifique Mode, Romi, JNT Chaussures, Denisor, Loona, Miss Lola, Délices de Belleville, Fifi, Meli Shop, Froc, Le Temple d'Or, Shinel, Vic Fel, Princesse, Sarah Bijoux, Patiserie des Sultans, Carrefour Market, Bricolex, Franprix, Autour du Fournil, La Tlemcenienne, Le Grenier de Félix, Nicolas, Paul, Naturalia, Vélo services, Coiffure, Librairie Dalloz, Biocoop Catalogne, Biocoop Paris XVII, Biocoop Grenelle, Dia, Laverie Camagne Première, Chocolatier Pierre Marcolini, Chez Sam, charcuterie, Au 7 Armand Carrel, Boulangerie Patisserie, Librairie Beaujean, Album, Little Tokyo, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Coifhom, CocciMarket, Erol Pressing, Casa-Immo, Interflora, Laforêt Immobilier, Franck Provost, La Grande Récré, Fnac, Franprix, Carrefour Express, Le boulanger du parc, Franprix, Dia, Sammels B., Boutique, Alimentation générale, Les Délices Vauvenargues, Boulangerie, Le Jardin de l'Etoile, Franprix, Boucherie Duret, Boulangerie du Val de Grâce, L'Arbre à Lettres - Mouffetard, Pharmacie Monge, Pharmacie Ducellier, Les Alizés, Aux délices de Christine, Mondial Or, DPAM, Monoprix, Gerard Darel, Générale D'optique, Moisan, Nicolas, LOFT design by ..., Ted Baker, Double Pensée, Franprix, Paul Beuscher, La Vie Claire, Monop', Blé sucré, Point Soleil, Naturalia, G20, Mr Bricolage, Les gourmandises de Catherine, Optic 2000, Exo Store, Dong Nam A, Big Store, L'épicerie Exotique, Leader Price, Franprix, Diagonal, La Jardinerie, Paris Pêche, Darty, Tati, Nouvelles Frontières, The Phone House, Epicerie Turbigo, Tabac du Temple, Patisserie de Choisy, Patisserie Saison, Diagonal, Carrefour Market, Arnaud DELMONTEL, La Maubeugeoise, Monoprix, Franprix, JouéClub, Carrefour Express, Team Outdoor, Intermarché Super, Alain Afflelou, La Fleurothèque, Franprix, Square Pressing, Skoda Paris Est, Au Bec Sucré, Midas, Speedy, Franprix, Happy, Picard, Electricité - Plomberie - Vitrerie, Boulangerie Eric Kayser, À la Bonne Viande, Au Jardin de Bellart, Page 18, Editions Eyrolles, Michel Deschamps, Le Home de Saxe, Alimentation Générale, New Beauty, Namaskaar, Rose & Théo, Mr et Mme Duciel, Carrefour, Jérome Lamaze, Mega Sun, Banco Cash, Roc-Eclerc, La Fromagerie de Paris, TTA Paris Est, Stincel, Sport Discount, Nicolas, Leduc, Épicerie, Le Monde des cartes, Pains et Gourmandises, Paris Optique, Les Saveurs de Charenton, Studio James, Lutèce, Ligne & Beauté, Body, Le Beau Verger, Amazon, L'Alinéa, Chaussure Néo, Sand & Jo, J. Maillet, Yves Benoît, Marché U, Trois Jeunes Tambours, LR Coiffure, Institut de Ségur, Presse et Vidéo, Apartment Living, Ségur Immobilier, Salle de Vente Caplot, Les Vergers Duquesne, Au Pain d'Autrefois, Proxi, Les Vins du Terroir, Paris Duquesne, Fève, Breteuil Immobilier, A. Laurans, Maison de la Cave, Rêves Institut, Monceau Fleurs, Franprix, Optic Maubert, Landemaine, Sitis Market, Boulangerie Maison Ellini, Mercedes-Benz Como, Relay, Bébé Cash, Natalys, Papeterie Perjac, Librairie Forhom, Cristal Zen It, Institut Marie Estrella, Votre marché, Le Village, Magma, Como, La Grande Récré, Bhai Bhai Sweets, Leader price, Marionnaud, monop, Note-X, au naturel, Leonidas, 2M Lingerie-PàP, Institut A. Trianon, Antiquités, Dia, Zerzour, Pichard, Dossemont, La Petite Chocolatière, CopyHouse, Librairie de Sèvres, G20, La Cave du Daron, Moto Pasteur, Franprix, Moisan, Reprographie Numérique, Librairie Ancienne du Montparnasse, Daily Monop', Motor village, La Truffe Noire, Picard, Le Marché Franprix, Carré Noir pour Hommes, Ecolopressing, Mateïs, Apple premium reseller, Le Marché Franprix, ECM Car Premium, Librairie Boutique, Store plaisance, GREEN line, Thierry, DIA, La Cave, à la Bastille, Dagobert, Versade Fleurs, Bonheur de Mode, Alimentation Générale, Mori Yoshida, Da Stuzzi, Alimentation de Breteuil, Roland Gosselin et Associés, France Conseil, Consultants Immobilier, Fair-Play Breteuil, Rouxel Joailliers, Mes Chaussettes Rouges, Monoprix, Franprix, Patate Records, Bio-C-Bon, Le Saint-Georges, Carrefour Market Paris Monge, Saint Algue, Murit, Roger Petit, Malthiery Fleurs, Week, Le bar floral, Atout fleurs, L'Herbe Rouge, A l'heure mauve, Pharmacie centrale du XIeme, Papeterie librairie, Librairie journaux, Franprix, Picard, Franprix, Artiyz, Cyclades Électronique, Detrad, Monoprix, Del Duca, Institut Karité, Roméo et Juliette, Les Gourmandises D'Eiffel, FNAC, Franprix, Franprix, Bastille moquette, Armorino, Dia, Eric Kayser, Krys, La Tranche Dorée, Maison Gosselin, Nicolas, La mutuelle du Mans Assurances, Sephora, La Fromagerie, Monoprix, Paul Soulabaille, Maxi Viande, Ford, Peugeot, Peugeot, TCHIP Coiffure, L'Intendant du Roy, Cordonnerie du Plateau, Carrefour Market, Cyclo Paris 15, H&M, Ecox, Franprix, HEMA, Franprix, Monop', De Carvalho, Dynamic Sports, Jean Louis David, Le Prestige, Franprix, Ecgig & Zen, Velovia, DIA, Carrefour City Market, Franprix, Boulangerie Abdel Jalil, Boulangerie Idhsaine, Boulangerie Leroy, La Flûte des pains, La Fournée vanvéenne, Le Moulin des lavandières, Boulangerie de la Gare, Boulangerie Patisserie de la Villette, Michon Robinetterie, Alimentation générale, Boucherie Aamar Hadad, La Craquante, Elecson, FLM, Laverie, Nicolas, Profil +, Réparation, Splendid Coiffure, Teinturerie Pressing Marly, Dominique Saibron, Truffaut, Truffaut, Talents - Gallerie d'art, La fournée d'Augustine, Le Pain de Jacques, Hennou's, Inforama, La Compagnie du Lit, Leader Price, Relay, Tchip, Via, JouéClub Pintel, Au Plaisir du Pain, Kmart, Optic 2000, Toys Garage, L'Arbre à Lettres - Bastille, Fontaine Kléber, Itinéraires, Fontaine Haussmann, Dédale, Imagigraphe, L'Arbre à Lettres - Denfert, Comme un Roman, Fontaine Villiers, BD Net, Autant en Emporte le Vent, Librairie Droit Economie Lettres, Atout Livre, L'Arbre à Lettres - République, L'Ecume des Pages, L'Arbre du Voyageur, L'Oeil Ecoute, La Plume Vagabonde, La Boucherie, La 25e Heure, L'Attrape-Coeurs, L'Œil au Vert, La Manoeuvre, Le Chat Pitre, Lamartine, Le Livre Ecarlate, Le Genre Urbain, Libralire, Librairie des Abbesses, Violette and Co, Village Voice, Voyelle, Le Phénix, Librairie Portugaise Michel Chandeigne, Librairie Gourmande, Librairie Nation, Librairie du Temple, Librairie Vigot Maloine, Les Mots à la Bouche, Librairie Nordest, Le Rideau Rouge, Palimpseste, Les Buveurs d'Encre, Librairie Maritime et Outremer, Les Cahiers de Colette, Librairie Tropiques, Librairie des Orgues, Librairie des Arts et Métiers, Lipsy, Librairie du Globe, Librairie de l'Escalier, L'Arbre à Fruit, Fromagerie du Rendez-Vous, Picard, Boucherie de l'Avenir, Poissonnerie Abyss, Franprix, Boucherie du Rendez-vous, Pressing, Doudou et Loulou, Laverie, Boulangerie Feu de Bois, Franprix, Simply Market, Darty, Du Pareil Au Même, Liner Coiffure, Maralex, Mon Cadeau Préféré, Muette Intérieurs, Picard, À La Plage, French and the City, Troc de la Muette, Têtes à Croquer, Dia, Futur Carrefour, Marks and Spencer, Au Levain des Martyrs, Droguerie des Martyrs, Frank Provost, Picard, Sergent Major, Le Pied de biche, Qee, Bio Génération, teeshirtplace.com, Axe Services, San Francisco Book Company, Dédicace 89, PFG, Roblot, Réciproque, Réciproque, Savini, Wan, Eric Stipa, Au duc de Valmy, Simply Market, Namobio, Graine d'Amour, Le Chenil de Paris, Réciproque, Réciproque, USA Concept Sport, IKKS Junior, Institut Sarah, Lucie Saint-Clair, Sandro, American Retro, John Demersay, Les Petites..., Nina, Paraboot, Philippe Ferrandis, Prestige, Scarlet Ross, Victoria, Votre Nom, Monoprix, Freemoos, Biocoop, Ecox, En Selle Marcel, freemos, Comptoirs Richard, Harrison, Heyraud, It-Shoes, La Maison du Chocolat, Oliver Grant, Opticien Francis Lelouch, Salaün Holidays, André, Anti-Crise, Bel Air, Picard, Promod, Atelier de Courcelles, Au Nom de la Rose, Bang & Olufsen, Caroll, Club Med, Espace SFR, L'Affaire des Doubles Rideaux, Marco Serussi, Shoemark, Stepha, The Phone House, Tout Compte Fait, Benjamin Opticien, Club Bouygues Telecom, Destray, Doré Doré, Etam, Jonak, Kickers, Marionnaud, Sergent Major, Un Jour Ailleurs, optigal, Du Pareil Au Même, J.M. Weston, Jeff de Bruges, Lehembre, Les Envahisseurs, Petit Page Junior, Till, Yves Rocher, Intermarché Express, American Apparel, Clayeux, Daniel Féau, Librairie Fontaine, Nicolas, SIA, Brico Vaugirard, Carrefour Market, Garage Meyer, La Ruche Gourmande, Aki boulanger, K-mart, Digixo, Millèsime, Centre Faguet Optique, Liz & lorens, Charly Coup'Hair, Divini Kreol, Jean-Claude Biguine, Les Opticiens Mutualistes, Meubles & Atmosphère, PA Design, Pharmacie Sebag-Meimoun, Retoucherie, Optique Job, Antony, Crystal Optical, Dharma Sangh, Jean Louis David, L'Ouvre-Boîte, Levi's Store, Marché Franprix, Motus, Optical'in, designOptic, espace SFR, Boulangerie du Fauborg, Dia, Alexia Lingerie, Asia Pacific Trade, Caves Bardou, Coiffure Meliani, John Paul, Sitis, Boulanger Patissier, Franprix, Franprix, Office Depot, Generale d'optique, Bocoray, Cordonnier, Naturalia, Institut Li Ping, Marionnaud, Bio c'Bon, DIA, Mr. Bricolage, Ace Mart, Copy-Top, Nicolas, Opera Market, Shop, Picard, Basler, Franprix, Franprix, Monoprix, Association Microlithe, Monoprix Gourmet Lafayette, La Maison du Vitrail, Tardif, Jiajia tofu - 家家食品豆腐店, Franprix, Franprix, Renault, Foot locker, Du pareil au meme, corner shop, arredamento, La boutique, Locomotiv Gaeland, Librairie Henri IV, Island Tours, Jean-Louis David, Pharmacie Henrie IV, Bexley, Jean-Claude Biguine, Daisy Simon, Ford, Poissonerie Secrétan, Daily Monop, H&M, Mango, Minelli, Boulangerie Patisserie du théatre, Deli'Kasher, La Vie Claire, Al Madina, Altavic-Bio, DB Alimentation, Espérance, GO2 Santé, JLK, Ramesh, Serrurerie Générale, A l'herbe folle, Boulangerie Patisserie S. P. Flandrin, Arnaud Camu, Les nouveaux Robinsons, L'Air des Champs, Boulangerie Magnelli, Franprix, Bazar Zedi, La Parisienne, Maison Kayser, Laverie libre-service, Juji Ya, Kioko, Monoprix, Picard, Boulangerie des Epinettes, Aux Epis d'Or, Franprix, DIA, Franprix, Boulangerie F. Comyn, Proxi, Boucherie des 3 Portes, Arcane Livres, Franck Provost, Picard Alésia, Nicolas, Sapori d'Italia, Le Bouquet d'Orléans, Coiffure Sylvie, Nicolas, Palais d'Orléans, Au Jardin de Murcie, Prox Nour, Boulangerie Pâtisserie L'Escale, Boucherie de la Porte d'Orléans, Primo Fruits, Marché Franprix, Ici-même, Monoprix, Feuille d'Automne, Garage de l’île Saint-Louis, Conforama, Armoire lit diffusion, Fora voyages, Naturalia, Franprix, atelier floral, Les Caves d'argent, Boulanger Ounissi, Conforama - dépot Nation, Darty, U Express, Alimentation Générale, LST, Laverie Libre Service, Marionnaud, Myriam Coiffure, Music Guest, Hamm, La Pelle à Bois, Électronique Diffusion, Franprix, Arcade Fleurie, Au plaisir du pain, Bijouterie Benjamin, Clean Pressing, Harmonie Décor, Havas Voyages, Ling's Mode, Lissac, Ryval Chausseur, Scoop, La lettre et la plume, Franprix, Castorama, Boulangerie des Arcades, Estheti-chien, Primeurs 2000, Saint-Algue, Supérette Tilila, Librairie Chroniques, Optique Desmoulins, Video Futur, Tatanka, Au jardin de Bolivar, Home Hair, oeufs et lait Duprès, Arc-en-ciel, Ermenegildo Zegna, Fauchon, AppleStore, Naruralia, Saint-Maclou, Puma Store, Alimentana Liviu (Roumaine), Tchip, Coiffure, Christophe & Muriel, coiffure, épicerie de quartier, Librairie-presse, Carrefour Market, Laverie, Petit Casino, Atelier Gustave, La Tonnelle, G20, Monoprix, Les Halles de Montmartre, Fromagerie Duhesme, Boucheries Bernard, Hårig, Tabac Le Reinitas, Dionis, Paris Coiffeur, Vinum Picatum, Versigny Immobilier, La fée qui cloche, La prospérité, Radio Lyrel, JB Afro coiffure, Le flash, Intermarché, Boucherie Pinon, Charcuterie de Montmartre, Megaflore, Quatrehomme, Saint's, Monceau fleurs, Royer Montmartre, Boucherie moderne, Mac-Caroni, Le petit creux, Traiteur grec, Nicolas, boucherie Toualbi, Franprix, Cousin, Mister Minit, Le roi du saucisson, Carrefour Express, Saga des marques, Chaussures Roger, Optique du centre, Du pareil au même, Isabelle, L'humeur vagabonde, Gigastore, Naturalia, Chauss'Biz, occasion, Agence étoile, American Apparel, Boxingshop, Marché Franprix, HSV Sécurité, Yi Fan Shun, Street video, Proxi, Les halles de Lancry, Les Vergers de Lancry, La cave de Noé, Les îles grecques, Martel immobilier, Noix de coco, body minute, Rouge kaki, Mutant, Le verre volé, Burma, Lancel, Le Notre, Mango, Marionnaud, Mini Market, Naturalia, Orange, Promod, Zara, Le Souk Botanique, Super U, Laverie, Marché Franprix, Carrefour City, Generali, C.S Assurances, Video Futur, Picard, Biguine, Pompes Funèbres Roblot, Dixhuitieme Avenue, Top Design, Body minute, Bulles en tête !, Nalola..., Le 5e Disque, Espace SFR, Maison Cosnier, Newspaper kiosk, Boulangerie Alia, BP, Boucherie Normande, Stohrer, Franprix, Le fournil d'Andrézieux, Picard, Pompes funèbres musulmanes, Cabinet Martignac, Étude Gestel, Boulangerie de la Gare, V.O. Boutik, Diwali, Vidéosphère (La Vidéothèque du Cinéma), Friends, Abimedia, Led-on, Lagoa Pressing, Jouets Bass, Audition Santé, Leonidas, Retoucherie, Galerie Anatome, Au point du jour, A chacun son style, Pressing Luiza, Legrand Filles et Fils, Kiosque à journaux, Village JouéClub, Librairie/Papeterie/tabac, Le Monte en l’Air, Libre Service, Boucherie du marché, Le Décanteur, La Goélette, Par'ici, CKAB -- hackable:Devices, Intermarché, De Fursac, A la Mère de Famille, A la mère de Famille, Franck Provost, Espace Ménager, Franprix, Dia, Accessorie's, L'atelier, Leonidas, Alimentation, Boucherie Taine, Patisserie Honoré, Boulangerie Jean-Olivier Rondot, Aux Tenailles d'Or, Devialet, La Grande Récré, Obj'ai trouvé, Lidl, Monop', Monop', Boucherie Kacher, Coté Jardin, Boucherie Atlas, Claude Piat, Clean Discount, Frynet, Gérard Mulot, Point Presse, L'impérial, Librairie des Editeurs associés, Royal Primeur, Tang Frères, Peugeot Avenue, Mondial moquette, Rive gauche motos, Sabre, Boulangerie Ravignan, Coquelicot, Beauty Monop', Hall' shop, Le 41, Monop, Boucherie du Square - Le Bourdais, M'Effleure la muse, Crazy Rock Circus, Boulangerie Fantasiiia, Floo, boucherie hallal, Mutuelle du Mans Assurance (MMA), Au Levain de Pyrénées, Belleville Lowrider, Fat Tire Bike Tours, Françoise Le Net, Free Scoot, Boucherie Ducoeur, Proxi, 8 à 8, Retour à la Terre, Demeter, Illel, Carrosserie Mazet AD, Castellane, Coiffure Théatre, Coiffure, Estetika, Leader Price, O mille et une fèves, Le Merle Moqueur, Monop', Alimentation Générale, Salon de coiffure, Wash'n dry, La carte des Vins, CashExpress, Martine Fleuriste, L'Usage du Monde, Boulinier Jourdan, Option Scooter, Pressing, Chevrolet, Bruno Romain, Laverie Libre Service, La Cave au Bon Plaisir, Le Verger des Maraîchers, Leader Price, Boulangerie, Art Tabac, Le Lotus, Au Duc de la Chapelle, Poissonnerie de la Porte Dorée, Naturalia, La mandragore, L'ami du pain, Boucherie de la place, Votre marché, Alimentation Gle des Peupliers, Pressing des Peupliers, Garage Renault, La Boulange du 12e, Carrefour Market, Darty, Bio c' Bon, Carrefour City, Monop', Franprix, Le Petit Bleu, Le pain d'antan, Boulangerie, Cordonnier, Sadaharu Aoki, Épicerie anglaise, La Do Ré, Cuisines Schmidt, Festival des Pains, Frederic Moreno, Maison Champin, La Gourmandise, Cocci Market, Monceau Fleurs, Guy Rouez, 8 à Huit, La Cure Gourmande, La Flûte Enchantée, N.Y.P. Supermarche, DIA, Graphi Dessin, Beauty Zen, Visite de la Tour Montparnasse, Celio, Tabac de la Tour, La bagagerie, Promod, Orange, NAFNAF, SFR, Carrefour City, Midoré, J.C.K. Beauty, Yilpa Telecom, Ting Supermarché Chinois, Franprix, Nicolas, C&A, Boulangerie Pão Quente, Moustaches, La Tranche Dorée, Librairie La Martinière Le Seuil, Nicolas Antoine Artisan Fleuriste, Aquarium Tropical, Carrefour Market, Franprix, Démocratie, La Vie Claire, Institut de Bruxelles Relaxation, Saud Sai Spa, Appear Coiffure, Du Vin et des Bulles, Garden Optique, Institut Trinité, Jardin de Trinité, La Bonbonnière, Pronuptia, Royal Coiffure, Smart Store, Tapis d'Orient, cylia l., Atmosp'Hair, Châteaudun Reprographie, Agences Vaneau, Planitour, i ♥ optic, Le Nouveau Calumet, Boutique SNCF, La Grande Récré, Orange, Le Boulevard du Scooter, Royal Viande, Alimentation Générale, Amplifon, Artisan Boulanger, Cadran Bleu, Café Coton, Climats, Frank Provost, G. D'Audrey Antiquités, ID Prestige, Interburo, Le Mobilier d'Art, Le Repaire de Bacchus, Maison Lendemaine, Natalys, Open Shop, Optical Corner, Planète Rasoir, Pressing 3000, Primeurs Clichy, Rêves de Femme, Sansha, Sellerie Vintimille, Serrurerie, Sister, Un Temps Pour Tout, L'Atelier R.G., À l'Opéra, AJC, André, Arnaud Dalens, Aux Merveilles de Paris, Boutique SNCF, Carré Soleil, Citadium, Citron Vert, Degrif des Stocks, Délices de Fleurs, Image de France, Itinéraires Lointains, L'Atelier du Sourcil, Mika & Elle, La Gobelinoise, Boulangerie Akiko et Philippe Bruere, Cadoceur, Cours des Halles, Laverie Éclat, Laverie, Mademoiselle Bio, Majuscule, Monceau Fleurs, Na Na, Nana, New Star, Optical Service, Pampilles, Paris-France Immobilier, Slim Price, À Fleurs et à Mesure, 5 à Sec, Picard, Les Cyclistes Branchés, Franprix, Uniqlo, Âme et esprit du vin, COS, Franck Besson, La Charmille, DLM Paris, E. Dehillerin, Jardin du Louvre, Au Cœur Immaculé de Marie, Franprix, Franprix, Monop', Monoprix, Leader Express, Monop' Austerlitz, Picard, Franprix, Paul, Lebon, Woodbrass, Franprix, Le Fournil de Paris, Auchan, Nicolas, Bricorama, KIA, Hyundai, Phillipe Motos RN7, GAM, Franprix, Hair Jungle, Tembely, Picard, Retromotion, Le Fournil de Julien, Franprix, Carrefour Market, Louis Vuitton, Peinture en gros, Coiffure Stalingrad, The Chennai Silks, Minivague, Chennai, Kobal cash and carry, Le marché exotique, STR Alimentation Générale, Makkal Kadai, Vijay, Copie Press, SCS Informatique, Laverie - Repasser - Retouche, Aux armes de Niel, Errances, Le Grenier à Pains, Monoprix, Boucherie Bourdin, Au pain complet de Paris, Librairie de Paris, Monoprix, Franprix, Simply Market, Boulangerie Pavard, Halle 4000, JPCycles, La Moulinoise, Maison Legendre, Brewberry, Franprix, La nef des fous, Lidl, Monoprix, Franprix, Monceaux fleurs, Carrefour Express, Jardin papillon, Picard Surgelés, Utrillo, Paris Vert, DIA, Leader price, Del Pressing - Blanchisserie, Franprix, Bricorama, Franprix, A la pointe, Moto Champion, Dam Dim Dom, Balile, Cocci Market, Delmontel, Arnaud Larher, Franprix, Dia, Franprix, Franprix, Laverie, Épicerie Cadix, Allianz Services, Techniques Études Plomberie Couverture Chauffage, Laurence Coiffure, Lavo-Cadix, Culture et bibliothèques pour tous, Déco Cadix, Techniques Études Plomberie Couverture Chauffage, Martine, Lavo-Cadix, La Ruche d'Alésia, Bio c'bon, Librairie Saint-Paul, Maya-Frih, Cyber Gun, Festival des pains, Suzuki, Forum du bâtiment, Volkswagen, Picard, Honda Bike, La folie des fleurs, Pepone poissonerie, La femme de Pepone, Boucherie de l'Europe, Jeff de Bruges, St-Ouen primeurs, Picard Surgelé, Mega fleur, Naturalia, Boucherie S. Lefeuvre, V.I.P. Street, Vaudron, LEAUTEY Traiteur, L'annexe, Les Vins Guy Jeunemaitre, Pressing, Intermarché, Leader Price, Franprix, Gino Gina, Pascal Gaudain, Maman bébé, Basoge, Picard, Aux normes, Maison du Bijou français, Maria Galland, Chez Max Fils, Ets. Desnouettes, Le Panier du Hameau, unknown, Location Taxi Relais, Exelmans, SCA Piernet, Concorde Gestion, Les Sept Épis, Élysée Avenue, Choki Choki, Légis France, Les Sept Épis, Le Comptoir de Chalosse, Poissonnerie du Hameau, Voyages culturels Clio, Bières Cultes, Pains et Passion, A.D.L. 154, Picard, Carrefour Express, Les Vins d'Alexandre, Franprix, Franprix, Garage Dekra, Miss Papillon, A. Pedone Éditeur, Jacques Gabay, Album, Caves du Panthéon, Celio, Coutard, Jennyfer, Nike Running, Derby, Dylanium Le Cuir., EDSON, Espace Micro, GAP, GINKGO, JP, Jules, Latin Optique, Le Temps Retrouvé, Les Délices du Fournil, Librairie EYROLLES, Maryline, Marks & Spencer Food, NAFNAF, Nepalaya, New Shop, Nicolas, RG512, Salamander, Sinéquanone, Six, Souvenirs de Paris, Stock André, Sud et Express, Troifoirien, Trop Bien !, United Colors of Benetton, francesca, Papeterie Latine, Librairie philosophique J. Vrin, pimkie, Leroy Merlin, BMW, DIP, Carrefour City, Home Studio, Star's Music, Star's Music, Star's Music, Le Passage Clouté, Monop, Boulangerie Alsacienne Benoît Maeder, Vent d'Ouest, Bernard Delattre, Poilane, Rouiller, Chez Pépette, Au cochon rose, Franprix, Lidl, Page à page, Chocolat thé, Feuille à feuille, Le Cellier Saint-Charles, Studio 148, Carl Marletti, Mavrommatis, Supermarché Diagonal, La Tradition, Oum Coiffure, Sitis Market, Le Bel Épi, Franprix, Kelly's Fleurs, La Gerbe de Blé, Leader Price, Decathlon, Franprix, La boulangerie des buttes Chaumont, Franprix, Franprix, Naturalia, Les Nouveaux Robinsons - Ecoproduits, Atelier des Pains, Kiloutou, Monceau Fleurs, Paul, Polymex International, Monoprix, Be Disc, Harmony Pressing, Cyrillus, Elan, Kenzo, Lancel, Nespresso, Bang & Olufsen, Celio, I love Paris, Mont-Blanc, Swarovski, Fournil de Wattignies, Mobalpa, Halles Optique, Franprix, Havas Voyages, Optic 2000, SOS Master, Copy-Top, Copy-Top, Espace Trocadéro, Franprix, Gap, Nicolas, Lexus / Smart, Tesla, Gloria Coiffure, Intermarché Express, La Cyclofficine de Paris, Le Comptoir des Mots, Maison Guérard, Essalam, Passage du Havre, Franprix, Pressing Menilmontant, La Petite Rose, Aux sept merveilles, Valentino, Harry Winston, Chanel, Printemps homme, Wash'n dry, Mega Affaires, Éco-lampes, Mair mesures, L'endroit, Monop, PASS Technologie - Conseil informatique, Boutique Auto Moto, Copystar, G20, Halles 3000, Marché Franprix, Marché Franprix, Marissal Bücher, Nicolas, La Bonne Pomme, Bio C'Bon, Huré, Beaubourg Optic, Design Librairie, Le Marché des Halles, Monop', Passage du Désir, Coiffure mixte, The Phone House, Corep Jussieu, La Grande Récré, Franck provost, Maison de la litterie, Marché Franprix, Casino Supermarché, G20, Jardin Daumesnil, La Chocolatine, Micro Relais, OSX Informatik, TDI, Ultimate, WL, aac, Direct Optic, Franprix, Moulin de Provence, Garage AD, Cachecache, Bonobo, Monceau Fleurs, Chantal et Hugo Roggio, Stop au 22, L'Art du Pain, Miss Coiffure, Conforama, Scooter Avenue, À l'ourson, Lidl, M. coiffure, Le goût des saisons, Le Vent des pages, La Fleur, Le Marché Franprix, Givenchy, Hermès, Toyota, Cartier, Louis Vuitton, Gianfranco Ferre, Bruce Field Femme, Bruce Field Homme, La Maison du Chocolat, Sony Style George V, Tara Jarmon, Tommy Hilfiger, Nike, Paul, Le comptoir du motard, Au Club Market, Avenue Aristide Briand, DIA, Le jardin d'Éden, Love♥n Flower, La Marchande de chaussures, Yakimono, La Do Ré, Okaïb, Miss coquines, Lidl, Boulangerie-Patisserie, Super U, Franprix, Picard, By Cyril Lignac, Pharmacie Paul Bert, Laverie Paul Bert, Nicolas, Smile, Fromage, rouge, L'art du verger, Orange, La vie moins chère, Valérie Tomas, Laurence Coiffure, Monoprix, Lady die, Aux delices des Lilas, Superette Montrouge, Boucherie Lesage, BD et compagnie, La Roseraie de la Mairie, Étoile d'or, D'Hair, Couronnes Fleur, Numéricable VHD, Fabio Salsa, Montrouge Musique, The phone house, Défini'tif, Carrefour City, Carli Paris, Monop', Naturalia, Boulangerie Benoist, Secrétan Ménager, Optic 2000, Euroline Mode, 8 à huit, Boulangerie Patisserie, Halles Secrétan, O'net Pressing, Fromagerie Secrétan, SNCF la boutique, Etoile Pressing, Ear-Well Lab, Monorom, G20, Just Clean Pressing, Actuel Pressing, Franprix, Le Fournil de Paris, Quai d'Art, Le pétrin alsacien, Carrefour Market, L'humeur vagabonde (jeunesse), La fournée Duhesme, Franprix, Boucherie Menguellet, Boucherie Villette Sud, Coccinnelle, Coiffure, Comptoir d'Italie, Dray Plus - Pulsat, Euro Bazar, KB 35, Surplus américain Nr 94, Nicolas, Cave 18, Picard Surgeles, Dia, Monoprix, ESPERANTO - langue internationale, Magasin/Kebab, 83, Gibert Joseph, Monceau Fleurs, MG Coiffure, Les Gourmandises du marché, Peugeot motocycles, DIA, Franprix, Robin, Au Fournil Gaité, M. & N. Petitot, Quadro, Boulangerie des Lombards, DIA, Zazou, L’Ourson en bois, Le Fournil de Paris, Boucherie Chayma, Du Pareil au Même, Le Triomphe, Picard, Bosch Service, Alimentation Générale, Laverie libre service, Primeur Thong, Boucherie Laurent Dumont, Franprix, Casitalia, Picard, Printemps Nation, Boucherie Thiebot, Hapsatousy, Institut Lys Blanc, Les Opticiens Mutualistes, Hair Styliste, Carrefour City, Minelli, Dia, Boule De Neige, Carrefour City, Copilote, L'Orée de Montmartre, Peugeot Motocycles, R'Mode, Salon de Massage, Bricolex, La Cocotte, Tage coiffure, Librairie Jonas, Monoprix, Junkudo, librairie japonaise, Centre Wallonie-Bruxelles, DOD – Dish of the day, Le XXe Siècle & ses Sources, Campers, Citadium, Factory, Monop', Nike, Nicolas, Naturalia, Vidéo Futur, Naturalia, LD informatique, Mobalpa, Hi!Tech, Yottacom, Millies Cookies, 3F computer, Billy The Kid, Ines d'Alexis, 2a Voyages, Biguine, Silver Creek, Missliu8, FranckOptique, happy, Produits exotiques, Beauté d'ange, Franck Provost, Picard, L'Océane, Kookaï, Redskins, Schott, 44th Square, Au Pain Gourmand, Leader Team, 4 Murs, Franprix, Isabelle Turgis, Le Triomphe, Optic 2000, Primeurs Saint-Mandé, La Saint-Mandéenne, La Boul'Ange, unknown, Sauvel Natal, Huguet primeur, La ferme de Chloé, Boucherie maison Desfresnes, Huguet primeur, Le péché des gourmets, Franprix, Naturalia, Foot Locker, Claude Maxime, Paul, Votre Marché, Daily Monop', Paul, Best Mountain, Kusmi Tea, Marks & Spencer Food, Monop', Le Barbier des Faubourgs, Galerie Thuillier, EPI Service, Boite à surprises, Monoprix, Atome Micro, Boulangeir Pâtisserie Kellerman, Laverie libre service, Ti Beauté, Lanzt motorisation, Proxi, Tonyshop, Les Salons MG, Alimentation Générale Tamazini Frères, Laverie 2001, Nicole, Audionova, Amorino, Eliecotto, Optique Voltaire, Contact audition, Audika, Le saloon coiffure, Or´ Optik, Orchidée, Kim Thanh, Pakkai, Yv Nghy, Saing Heng, Anny, Mo Ny, Hoa Ly, Asia Cadeaux, Erawan, Goyona, Asia Tresor, Diététique et Forme, A la calebasse verte, Au Vieux Campeur, Gepetto & Vélos, Cash Express, Nutritiel, Patrice Renouard Coiffure, Boucherie Tadfousse, Krys, Top Coiffure, Boulangerie Patisserie SAS Penain, Yuying Beauté, La Petite Fruitière, Le Potager de Montsouris, Banana Republic, Sidi Brahim Alimentation, Proxi, Garage des Peupliers, Beauté Zen, Aux Matelas Choisis, VitaMin&Co, Ronde de nuit, 1001 piles, Axone automobiles, PGM Italie, La Tonnelle, Boucherie Anezi, Stop Phone, Coiffure K.Y., Tati, Platinium, Patricia B., Optical discount, Albert, Usina literie, Les trésors Sucrés, Krys, Centre commercial Grand Sud, La station des affaires, Paradis D' griff, Thomas Cook voyages, Lacama, JN Coiffure esthétique, JN Espace mariage, Anas voyages, Kremlin Bagages, Kremlin Phone, Pêle Mêle, MAAF assurances, A la Renommée, Jean's Maverick, Cab Nation Paris 13, Bricorama, Super Cacher Koskas, Boucherie Koskas, A-Z Pc, China Moutai, Chinaco Travel, Franprix, Coiffure Roulot Michel, L'Artisan du Pain, Boucherie de la Passerelle, Coiffure Pretty Hair, Librairie Emmanuel Lhermitte, Halte épicerie, Chin Chin Salon, Lav' club, Orpi Montsouris PL, Pressing Arc en ciel, Espace canin, Alimentation Générale Daighami, BMW Motorrad Bobillot, Bazar Bobillot, Maison Cipolli, Bijouterie Bobillot, Boulangerie Patisserie Sainte-Anne, Salon de Beauté Lisa, Nicolas Tolbiac, MZR Chic, Connexion Tolbiac, Art et Végétal, Body Minute, Picard Sainte-Anne, Opium, Alixe Fougères, Lavomatique, Tangka voyages, Camille Albane, Première Optique, Paris Affaires, Fanny et Joseph, Charcuterie Pellé, Franck Provost, Pressing de l'Espérance, Quatrehomme, L'Éloge du Vin, Verger de Tolbiac, Saint Algue, Artisan Boucher Claude Doguet, Tchip, La Crac'ante, Le Phare du Ponant, Peigne Fin, Allo Phone, Jean-Claude Biguine, sarl ACDO, Librairie - Papeterie, EurObsèques, Maison Simoneau, Hollywood nails, DN moto scoot, Mya Isai, Nicolas, Bio Génération, Chabrol Pressing, G20, Paris Mixte, Tchip, La boutique du déménagement, GMSA Alésia Multi Service, Allianz, L'Agence du Chalet Keops, GMSA Alésia Multi Services, Perles sur ongle, Mediabank, Droguerie, L'hair dans le vert, Lilas, Century 21 Alésia, Ping Ping Beauté, Martine, Nadia Lenne, Luc Gaspard, Xin Xin Alésia, Affinité Beauté, Paris Télé Secours, Mutuelle Générale de Paris Alésia, Scoti Immobilier, Abidis, Castim Immobilier, Jourdan Coiffure, Alésia Fleurs, Laforêt, Office Depot, Nicolas, Matmut, Librairie Ithaque, Garance Immobilier, La beauté des ongles, Optique Jorion, Etude A.M.I, Lilina, Promod, Phone House, Smart stock, Celio, Emmaüs, L'ortie blanche, Librairie Nicole Maruani, Wash Service, Franprix, Marché Franprix, Bruno Melgani, Optique 2000, Franprix, Monoprix, Jacadi, Boulangerie Belazi, Autos Gambetta, Carrefour Express, La Gambette à Pain, Rapid' Market, A2pas, Maison Hébert, Optical Center, Biérocratie, Cleoni institut de beauté, Charcuterie traiteur et cuisine asiatique, Lucia Coiffure, Salon Orchidée Sun, Retouches, Rose d'Or, Droguerie Quincaillerie Bricolage, Attica - La librairie des langues, Nathalie N, Kiddyland, Des mains et des pieds, Agence Montsouris, Laverie Libre Service, Petit Casino, SBI - Gefimo, L'Amiral Primeur, Retouche Gazel, La Boutique Gourmande, Maison Kevest, Rebillon, Famille Les Opticiens mutualistes, Century 21 Lutèce Immobilier, Libre service du Parc, Presse Universitaire de France, La maison des marquises, Chez Sophie, Maison de l'Astronomie, Orange, San Than Thai Massage, Boucherie Économique, Franck Provost, Nicolas, Primeurs Jeanne D'Arc, Biocoiff, Franprix, Lena Beauty, IBF minéraux, JC 2000, Miss & Men Coiffure, Agnès K., Meubles You, Le Paradis des Ongles, Cung Dinh, Tahiti immobilier, Amasia, Europasie, Kampoul Pich, Weng Se, Tran Nhan Ky, Tif' Folie, Choisy immobilier, Sun Salon Coiffure, Poly China, Wa Quan bazar, Allianz, China Europe, La petite merveille, Stasia, Thai DVD, Asia Immo Conseil, Embest Chaussures, My My Onglerie, Aviva Paris Olympiades, Delphine Beauté, Hoa Ly, Petit Para, Kim Hair Line, Kawa, Alpha immobilier, Coiffure en vogue, Western Union, Optic Tolbiac, Lava'tronic, Discount Beauté, Picard Tolbiac, Ivry Coiffure, Leader Immobilier, Vivre Mobile, Au Petit Saigon Nhơ, Aux Merveilles d'Asie, L'empire des thés, Mydo Mod's, Kim Fashion, Khai Tri, Boulangerie Patisserie Sandwicherie, Kiloutou, Elysse coiffure, Boucherie Jourdan, Bazar de la Porte d'Orléans, Le Verger d'Orléans, Fabio Salsa, Century 21 Alésia Montsouris, Dany Boutique, Matériel de coiffure professionnel n°128, Assu 2000, Coiffure, Galerie du luminaire, Diagonal, Agence Alin - Porte de Châtillon, Oneclop, Le fournil du moulin, FPA Paris Brune, Pic Cuisines, Schmidt Paris 14, Alesia Moto, Arilux, La vicomte, Sublimatorium Florian Leclerc, Les amis de l'automobile, Franprix, Alimentation générale, Le Marché d'à côté, Boulangerie de la cité, Franprix, Bonjour Backery, Paul, Selectronic Paris, Super nettoyage à sec, Joalric, Halles Convention, Antonelle, La fromagerie, Point Presse, Albax, Pressing, Picard, Pressing, Fifty Fifty, Biguine, Les éleveurs gastronomes, Bijou, Boucherie Donné, Fleurs d'Auteuil, franck Provost, Proxi, Laurent Duchêne, La Bretagne, Le repaire de Bacchus, DIA, Jeu d'encre, Bébé Brune, Lady's colours, Le lavoir du 14e, Coiffure Messieurs, Boulangerie Brune 77, Pressing 75, Bethania hair coiffure, GDV informatique, Midas Paris 14 - Brune, Agence Axa - James Luzon, Salon Christine, Atelier Garnero, Le relais du fruit, Sonogar, Boulangerie L. Paulin, Argana, Culture indoor, Little zoo, Beauty spot, Maria, Coiffeur homme, Carrefour City, Le fournil de Vanves, Franprix, Monoprix, Halles Balard, Maison Lefaure, Maison de la Détection, KYF Cigarette électronique, SYSTA Informatique, Au Sport, Bio c' Bon, Key Largo, Allo Bureautique, Rapid Market, La Cabane, Le Jardin des Pains, Salon américain, Patrick Guedj, Premibel, Boulangerie Pâtisserie Yelles, Franprix, Tolbiac Pressing, Oriento Market, Concorde Love store, Laverie libre service, Fashion coiffure, Latino market, Anita Coiffure, Beauty bar, Private SPA, Thyda Apsara, 8 à Huit, Mi Prix, MNAM Harmonie Mutuelles, Des griffes boulevard, Annie & Gilles Boulangerie, Bunny ongles, Libramoto, Des griffes boulevard, AGPM, La France Mutualiste, Century 21 Quai ouest, Aux délices de la roquette, La tradition du pain, Carrefour City, Office Depot, Casino, Be 9, Hamza, Boucherie Atlas, Tchip coiffure, Ober, Proxinour, Pressing Fer d'or, Citroën Paris Rive Gauche, Coiffe' Mod, Au chat botté, M scoot, Gayomart, L'âme soeur, Paris scoot service, Lefebvre essence, Institut Minceur & Point Sourire, Les déménageurs bretons, Déménagements, La saveur du pain, Relais de Stalingrad, Gosselin, Marguerite, Fromages Laurent Dubois, Nicolas, Biocoop, Sacrés Vins Dieux, Boucherie Ibrahim, En vrac, La Huche Normande, Nicolas, La Balustrade, Thaï Sympathie Krisana, La boutique SNCF, Adecco, Pascal Atwe, Carrefour City, K Optik Balard, Déva institut de beauté, La Bicyclette, Les Affranchiz, Square de Belleville, Clean City, Naely, L'Atelier 67, Radiocomsat, Monop', Sofiane Coiffure, Arthurimmo, Clair obsèques, Au Bois d'Orléans, Nexity, Coiff 21, Massage Thai, Les jardins de Paul'ha, Leila Coiffure, Laverie libre service, Boucherie du Père Corentin, Bel' Dam, Mutuelle Bleue, Marionnaud, Anaïs de Paris, Caprices..., Leonidas, Loisir & Culture, Salon de coiffure, Worktopfactory, Alimentation générale, Les sirènes d'Asie, Cordonnerie - Clés, Laverie éclat, Nicolas, Jean Louis David, Le bonhomme de bois, Le grenier à pain, Weinberg, Kenzie, CPH Immobilier, Millenium boutique, Gautier, Sélection primeurs, Vision du 15e, Alice Son's, Bedros, Boucherie du rond point, Eric Stipa, Boulangerie Saint-Charles, Picard, Franck Provost, Gold company, Elegantissimo, Photo Saint-Charles, Boulangerie Flandrin, Boucherie Saint-Charles, La boutonnerie, L'Angelus, S.B.S, Sap men's Diffusion, Bazar Riquet, Boucherie Riquet, Paris Meubles, Khagi Supermarché, La Corbeille Royale, Photo Olive, Pressing Riquet, Riquet Fashion, Garage Pajol, Bazar L'Olive, Miss Moni, Amiral Store, Boulangerie de Mogador, Camaïeu, Coiffure Céline, Le Palais des Affaires, MZEL, 38 gourmet, Mo.Mo Prix, Boulangerie Patisserie, Lavatronic, Motos 13, Amazing Beauty, Ilakiya, MiMi Market, Riquet Alimentation, Riquet Phone, Clopinette, Franprix, Christian Echardour, Stephane Pressing, Chez Laurent, Ingencia, Marché Franprix, Pressing Paris, Jean Louis David, Jean-Claude Biguine, Au Nom de la Rose, M.G. Espace Lourmel, L'Attrape-Coeurs, Gihon, La Cave De Lourmel, Serrurerie Dépannage, Garrice Stock, Agence Dupleix, Mille et Une Déco, Supérette De Lourmel, Laverie Libre Service, Le Prince, La Volga, Vins & Délices, Franprix, Album, Patisserie Poncet, Franprix, Marché Franprix, La Dînade, Tienda Esquipulas, Dia, Atol, DIA, Franprix, Optic 2000, Les Drogueries d'Aujourd'hui, Eric Kayser, Tout Noté, Mona Lisait, Yankee, Carrefour bio, Naturalia, Aux Saveurs Naturelles, Chocolat de Paris, 203, Boulangerie Pascal Chevret, Coté Photographie, Couture, Genty Gastronomie, Institut Camélia Coiffure, Nissan Bayard Nationale, Pressing Anna, Rambert Optique, Salon Marhaba, Accoustic Center, Club Med, Home & Bath, Maisons du Monde, Menting, Numéricable, Optical Service, Salimar de Grandes Marques, Tabac club, Zedi, China Art, Chinaco, Copies Services Hexamedia, Copies Services Hexamedia, Jeanny.M, Shanghai, Sigue, Allo La Place, Azote Voyages, Cadeaux Montres Maroquinerie, Chantours, Coiffure, Delta Electronic, Jean Louis David, Lav'Italie 64, Le Grenier à Pain, Lingerie Lisa, Léna, Maroquinerie Chagal, Mobeco, Naturalia, Nouvelles Frontières, Phone House, Place des Marques, Satland, Selectour, Terres Nouvelles, Viva'Son, Wanli, Boulangerie, L'Atelier d'à côté, Marc Page Fleurs, Franprix, Monoprix, Au cœur du Marché, Cycles Minutes, Rapid Vélos, Comtel, Lan Coiffure, Optique Torcy, Prarani Coiffure, Riquet Phone, Swanny Coiffure, Torcy House, Vert d'O, Euroconcert, Printemps (2014), Espace Bazar, Paris Store, C&A, A.N.T Laverie, Au Bon Coin, Au Régulateur, Bruno Optique, Chausse Confort, Hair Marine, Horloger, Istanbul Oriental, La Chapelle Bazar, M.S. Fleuriste, For N'FrianD's, Jérôme B., Le Fournil Parmentier, Fournil de Pierre, Fournier Fleurs, Chop'in, De Thé en Thé, Boucherie Haissoun, Bio c bon, Van Cleef & Arpels, Boucherie Salam, papeterie presse, La baguettine d'or, Simply Market, Superette Nova, Mon dé rouge, SBS, Didier Poussin, Jean-Philippe Audebert, L'institut, La Cabane à Presse, Chris, Cyclope, Christelle M, Facile & Accessible, Georgia P Retouches, Picard, Un Look pour Tous, Gislaine Coiffure, Julian, Natsumi et Jérôme, Les délices de la Chapelle, Le Celtic, Publico, Bien-être, Folicils, New Look, Soit dit en passant..., Dormoy Pressing, Le Blanco, Opticly, Smarty Travel, Cante, Au Caprice du Chien, Charcuterie, Mur & Sol, Medya, Voyages Montparnasse, Hédiard, Librairie du Centre, carrefour express, Les Pénélopes, Saco Coiffure, Décathlon, G20, Boulangerie Marceaux, Gant store, Krys, Boucherie Manu, Franprix, Boucherie Marx Dormoy, Éric Gara, Carrefour City, Du Pareil au Même, Maison d'Ennour, Nicolas, Curling, Le Nemrod, Expe, Vépi, Bata, Célio, Etam Lingerie, Marionnaud, Orange, SFR, Yves Rocher, Aux Péchés Normands, SNCF La Boutique, Saint Algue, Boulangerie, Cline'Net, Aubergine & Go, Renault, agence Gesmier, La ronde des pains, Franprix, Caves Fillot, Guy's Barber, blonde de pain, Mr Bricolage, Gizelle Elegance, Merci, Augys Copy Service, Carrefour Express, Laverie G. Eastman, La Baguette Sedaine, Monop', Boulangerie, Le pain d'autrefois, Rudy Père Et Fils, Boulangerie Onfroy, Boulangerie Poilâne, Picard, G20, Franck Provost, Immanence, Orchestra, Aubert, Boucherie des Fins Gourmets, Charcuterie du Panthéon, Au marché d'Abidjan et de Bamako, Boesner, Boucherie Pilote, La Boulangerie, La Tonnelle, Françoise Coiffure, Office Depot, Alimentation Générale, Honda, Kremlin, La Halle aux Chaussures, Chotty, La Forêt, Chaussures Noubar, L'épicerie du 104, Boulangerie Patisserie, LOPHYL FLEURS, Lynda Coifure, Melocotone, Péchés Mignons, Le Garde Robe, Midoré, Franprix, Vivaldi, Aquafleur, Boulangerie Patisserie au 140, La Cartouche, Nouvelle ère, Pâtisserie de l'Église, Paul Beuscher, Stock griffes, Garage Thierry Fromentin, Princillya, Eden coiffure, Saint-Maur coiffure, Au bel arôme, Coiffure, Coiffeur élégance, Globus star, Darty, Habitat, Deby Debo, Alessandro, Zadig&Voltaire, The kooples, Chris Matthioux, Birague Cleaning, Ubu galery, Valeria Fara, Modella, Tera bora, Jeff de Bruges, Photo center, Boulangerie Saint-Antoine, Du pareil au même, Jonak, Les Petites parisiennes, My e-case, Halles Saint-Antoine, Lenôtre Paris, Rynshu, Dammann frères, Galerie Michel Estades, Galerie du Marais, Modus, Art symbol gallery, Galerie Mickael Marciano, Galerie d'Art Colette Clavreul, Mark Hachem, Galerie Lisette Alibert, Sibman gallery, Galerie 26, L'archange, Galerie Mickael Marciano, Galerie Ariel Sibony, Art symbol gallery, Galerie Artima, Deborah Chock, Parfums et senteurs du pays basque, Galerie de Medicis, Galerie Bluman, Galerie Mouvances, Galerie Neel, Pourchet, Galerie Ph Magmoire, Cécile & Jeanne, Le marché de Turenne, Souvenirs du Marais, Bobbi brown, Karen Millen, Aqua di parma, Upside, Les ateliers de la Maille, Yellow corner, Hier pour demain, Aridza Bross, L'objet, Camper, Monic, Majestic filatures, Home, Guerlain, American vintage, Swatch, L'occitane en Provence, Metal pointus, Cécile & Jeanne, Solaris, Jo Malone London, Autour du monde, BGN, Eva Tralala, Ekyog, Satellite, Aventure, Spontini, Princesse tam-tam, La chaise longue, Pandora, ba&sh, maje, Aubade, Comptoir des cotonniers, Gérard Darel, Les Petites..., Nicolas, Claudie Pierlot, mellow yellow, Biscotte, Chattawak, Esteban, Muji, Sandro, Zadig&Voltaire, Marionnaud, Fragonard, April may, Les Bourgeoises, Antoine&Lili, Waldone, Destock, Amorino, Grolle, SFR, Proxy market, Supermarché Bonjour - 新温州超市, G20, G20, New Star Coiffure, ACZ, Air France, Gold Foot, Oprah Paris, Vintage Story 66, Cabinet J. Raimon, épicerie ledru, ASVS Alarme Auto-surveillance, Cordonnerie, Futur Transactions, Féerie du bain, Vins et Saveurs, Roche bobois, Immobilière des arcades, Royal tabac, Sie Matic, Ceprima, Fred coiffure, L'empereur chemisier, Jp Champroux, Roche bobois, Roche bobois, Ma Cave, Monoprix, Picard, avas-voyage.com, Carrefour Express, Coiffure Bel Hair, GlobaeroShop, Mephisto, Tabac Saint-Mandé Presse, Boutique SNCF des Olympiades, Dunes Traiteur, France Archerie, Franprix, ImmoSoult, ZM Coiffure, La flûte Gana, Colisée Gourmet, La fabrique de lunettes, Picard, Maraîcher, Plaisir d'équiThé, A première vue, Salle de bain et design, Garage Gazi, La souris verte, Kiabi, Moulin Rory, Nicolas, Le Repaire de Bacchus, Franprix, Etoile nails, Claudie Fleurs, L'univer Informatique, La Bichonnerie, Rio Brazil, NSS Auto, 1001 piles, Franprix, Jallerat Ivry, Mini Market, Saint-Honoré, MSL, Toto-Exo, Boulangerie Patisserie de la Poste, Boucherie Samiry, Coiffeur Parisien, Alimentation Générale, L'olifant, Franprix, Librairie Papeterie Presse, Franprix, Net Pressing, Coiffure Karim, Boucherie Inara, MotoscootKB, Hédonie, Eurotribal, La Bicyclette Électrique, La Boulange Ve, Maryline, Sud Tunisien, Celio*, Artisan Boulanger, Au Papyrus, Aux Péchés Normands BIO, La Fournée d'Augustine, Amorin0, Dog's Discount, Media, Wella, Le Village Gourmand, Liberty Travel, Le bon Panneton, Eram, Lynn Adler, ID elle, Marionnaud, Cousin, JD, Jean Fernand, Maison de la Presse, Zola Color, Picard, Imprimerie Beaugrenelle, Body Minute, Georges, La Charmerie, Michele Greco, LDLC, Franprix, Macway, Chine store - 新今日超市, La Civette Dorée, Leader Price Express, La Treille D'Or, Retoucherie Etoile Saint-Jacques, Sélection de la Mode, Tendance, Giovanni, Boulangerie, Passage Bleu, Passage Bleu, Micromania, Générale d'Optique, Boutique Orange, Pressing, Carrefour City, Terroir d'Auvergne, Linge de maison, Jean-Claude Biguine, Le Coin des Marques, Gill's, JMS Optique, Bergamote et Chocolats, Le Coin des Marques - Hommes, Nota Bene, Atmosphère, Dister, New Marx Store Marché Exotique, Pascale coiff', SARL Sri Exotique, CRC Cycles, Librairie Gallimard, betino's record shop, Benny, La République pâtissière, Au petit Versailles du Marais, G20, Bricorama Chatillon, Patisserie Bonjour - 你好, G20, Ryad, POINT.P, vacant, Nature et Découvertes, Promod, Casino, Bata, Camaïeu, Casa, Celio, Delaveine, Eden, France Loisir, Joffo, Marceline, Marionnaud, Nation Literie, Tati Or, Tati, Go Sport, Maine Fleurs, 5 à Sec, ChocoLatitudes, Fanfan, Rolland, La Rotonde Hébertine, Peintures de Paris, S. Gardenat, Safameca, Picard, Afflelou, Brulerie des Gobelins, Games in Blue, Peugeot, Aux Quatre Saisons, Carrefour express, Au Blé d'or, Le Chant du Pain, Antoine & Lili, Bel Air, Berenice, COS, Carréblanc, Coccinelle, Cocoon, Colin Régis, Cotélac, Dans le noir, Free Lance, Fleurs de Rhum, Foie Gras Luxe, HO+X, Istella forest, JONAK, Laforêt, Lola Keim, MAX & Co., Marithé François GIRBAUD, Optic 2000, REDSKINS, REPLAY, Richard Gampel, Un amour de Lingerie, Wine Sitting, Yaya-Store, Zadig & Voltaire, a. simon, a. simon, minelli, 50m., La maison du bouton, Franprix, Franprix, Franprix, Franprix, Leader Price, La Folie du Pain, TATI, Picard, Devos, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Fleurs en couleur, De Lucia, châteaux, AlterSmoke, AlterSmoke, AlterSmoke, Ecig & Zen, Chocolat De Neuville, Cigartex, Clop' Stop, Coin des Affaires, Mobalpa, clean, Toys "R" Us, Sephora, Jean Louis David, Monceau Fleurs, Savane, Monop', Copilote, Le plaisir de la marche, Tabac de l'Est, Lily Valley, Hamm, Brulerie Maubert, Librairie Notre-Dame de France, La Boutique SNCF, Lidl, Au Chai du Chat, Pressing, Acuitis, Gérard Mulot, Optique de Seine, Vercourt, Georges Larnicol, Ocean Nails, 13 Affaires, Mefisto, L'Echoppe, Acuitis, Eram, Foncia, Gabor, Gentleman Gallery, Gigi, Générale d'Optique, Hong Lien, Isambert, Jacqueline Riu, Jean-Marc Philippe, La Vaissellerie, Micromania, Princesse Tam-Tam, Rayon d'Or, Stock Linge, Un Jour Ailleurs, Valege, Yves Dorsey, europtical, marché franprix, méo, Coton Doux, 1001 Piles, Pharmacie Coty-Issoire, Droguerie de la Tour, Zara Home, Salon Steve, Action Bike, Boucherie Lulu, Céline Coiffure, L'Atelier Jessica, Pompes Funèbres Générales, Pressing Blanqui Service, Supérette Avenue Laumière, marché Franprix, La maison fleurie, Optique Laumiere, Espace Zen et Beauté, Le Repaire de Bacchus, Au Petit Fromager, Aux Vergers de Brancion, Boucherie Brancion, Au Palais des Roses, Brico Fassy, Clean Shop, Dia, Ding-Fring, Franck Provost, Jean-Louis David, Jeff de Bruges, Krys, Maison Guénard, Paris Bonzaï, Pressing des deux Cœurs, Prim' Alleray, Tang Frères, François Priet fromager, Josy Coiffure, Aliantis Lecourbe, Proxi, marché Franprix, Électricité A. Poelger, Boulangerie Metayer, Bill Bazar, Charles Traiteur, Bazar Brancion, Marionnaud, Attirance, Amazing Beauty, Bijouterie Horlogerie, Papeterie Mercerie Journaux, Élodie, Exo Market, Kangfu massage, Laverie M G, Paris Travel, Muriel Labro, Le Tabarium, Laverie Trevisse, motrio, Éric Nivot, Marché Franprix, Book-Off, Pages après pages, DIA, Artisan boulanger pâtissier, Banette, Krys, Nicolas, Boucherie de Charonne, Au jardin des délices, M. Bazar, Bianco Constantina, Optic 2000, Optical €r€t, Office dépôt, Naturalia, Bricolex, Décorasol, Mariciel, Le Panier Gourmet - Franprix, Popmarket, Homies, Pressing, Milo, Le blé royal, BH Optic, Les Jumeaux, Cam'Arine, Ronde des Pains, Marché des Saveurs, Maison de la Presse, Kim, Délice Pain, Supermarché Asie - Exo, Carrefour City Lecourbe, Eyes, Boucherie Jacky Lesourd, Le Moulin De la vierge, Franprix, Galerie Magda Danysz, Darty, Nicolas, Diagonal, Ulysse Discount, Souvenirs de Paris, Anoki, Symphonie florale, Gift Shop, Le Marché Franprix, Mas, L'autre Démarche, expert, Amarante, dan exotic, Fedra Coiffure, Le Fournil, Le Duc, Les Fleurs de Bicêtre, Casino, EG Alimentation Générale, Franprix, Golden Bread, EVA, Jolie, Lissac, Optic Charron, Beretta, Diwalis, Gallerie de la Huchette, La Boulangerie de Papa, La Mémoire de Paris, Souvenir Paris Night, Starplayer, Grim'art, Daniel Montesantos, Jadis et Gourmande, Les Opticiens du Marais, Georges Larnicol, Grohe, Podologue Pedicure, La Halle, epi d or, Ciel, Optic2000, Fonciere Italie, MF 2000, Midas, Lidl Olympiades, Aux Délices de Manon, La Maison du Whisky, Aliantis Porte d'Orléans, O'Clean, Bella Nails, Franprix, Foulon, Androuet Fromager, Dia, Pressing, Mac Rayan, Axel, Mobalpa, Iveco, Ceramic Design, Honda, La Retoucherie, Mouss'Coif, Piaggio, Speedy, jo Matellj, André, Boulinier, Librairie des Loisirs, Bouygues, Brioche Dorée, Claire's, Côte à côte, Eram, Etam, Général d'Optique, Lewis, Minelli, Orange, Paul, Produits Basques, Promod, San Marina, Tabac de la Fontaine, Texto, The Body Shop, Valege, Le Puits Fleuri, Librairie Blanqui, Ets Dupleix Confiserie en gros, JMB Optique, La Plateforme du Batiment, Picard, Stock'shop, Dèmonia, Modern Pressing, Casa, Fleurs d'Auteuil, Espace Topper, Affaires Plus, Stock, Alixe Fougères, C & M, BMW Paris, Retouche Orchidée, BD et Compagnie, Salon de Relaxation Chen Zen, Élixir, Ongles de Star, Inside Multimedia, Retouche tout vêtement, Leclerc, Coiffeur Homme, Laverie L'Eclat, Dog Shop, Desgranges, Naf Naf, B&B - Bio indépendant, Abbey bookshop, Côte à côte, Nicolas, Un Monde Vegan, Dia, Garage Péripherie, Quicksilver, Champion, Nicolas, Confo Déco, Fréquence Beauté Coiffure, Unic Optic, DynaMicro, EasyConfig, MicroShop, Montgastar, Net-Ultra, Royal Micro, SCI, Xtra PC, 3DMultimedia, L'Établisienne, Superette 21, Muji, Muji, Aigle, Celio, Cordonnerie Noé, Du Bruit dans la Cuisine, Felice Plus, Grand Optical, Guess, Izac, Kiko, Kusmi Tea, L'Occitane, La Chaise Longue, La Mode est à Vous, Lacoste, Muji, Muji, Pandora, Petit Bateau, Promod, Puro Gusto, Relay, Relay, Relay, Relay, Salsa, Segafredo Zanetti, Sephora, Six, Solaris, Swarovski, Swatch, Venizi, Yellow Korner, Esprit, Heller, Hema, Jeff de Bruges, Laboratoire d’Analyses Médicales, Lush, Mephisto, Muji, Parfois, Passionata, Paul, Pylones, Relay, Relay, Starbucks Coffee, Starbucks Coffee, Sud Express, Yves Rocher, Camaieu, Devred, Dim, Du Pareil au Même, Foot Locker, Histoire d’Or, Jack & Jones, Jean-Claude Aubry Basic, Jean-Claude Aubry shopping, Kickers, Mary Paz, Micromania, The Cotton Gallery, Undiz, Bullez Zen, Angela C., First Clean, Optical, Marks and Spencer, Domone Coiffure, Tryba, Hackspark, Aux Caves de l'Amiral Mouchez, Charcuterie du Parc Montsouris, Boucherie Buffalo, SITIS, Isabelle et Christophe, Optical Center, Carglass, Speedy, Emeraude, JFC Duffort, Au Levain, Colin Montrouge SAS, Picard, Volkswagen Paris Est, Carrefour Market, Les Nouveaux Robinsons, Doc'Biker, mistigriff, Le Boudoir de Joséphine, Librairie J.N. Santon, M&G Segas, L'amoncel, L'éclair de génie, Les délices de l'Atlantique, La Dînade, Paul, Picard, Hair Tendance, PSS, Nicolas, Le Grenier à Pain, Dia, Tang Freres, FM Hair, Celio, Boulangerie Patisserie, Boutique Zen, Miss Coquines, Ba&sh, Blanc des Vosges, Eden, Le Coin des Marques, Le Moulin de la Vierge, Papeterie Plume, SFR, Tome 7, DIA, Eurolav, Cyril Franck, Miroir, Retoucherie, Traiteur Italien, Carrefour Express, Boulangerie Patisserie, G20, Au Bonbon Royal, Bricolex, Frank L., G20, Optic 2000, Kiloutou, Cogeferm, CTA Perception, Pharmacycle, Prêt à partir, PRIVILEGES VOYAGES, Boucherie du Marché, Aux Pures Gourmandises, Cyprès des Fleurs, Le Grand Buffet, Votre Marché, Movie Store, GrosBill, copie service, Prometour, Au Plaisir du Pain, Fleurs, Monoprix, Orientation Carrière, L'atelier du sourcil, Caviste, Carel, Centrale d'optique, L'Oréal, Petit bateau, Catimi, Dieleth, Arthur, Olivier Grant, Etam lingerie, Aubade, Princesse Tam-Tam, Rodier, Charles Cotonay, Sophie-flore, Nespresso, Comptoir des cotonniers, Marionnaud, Devernois, Djula, Pierre Cuvex, Madura, Fairmount, Christine Laure, Salamander, La bagagerie, Yves Thuriès Chocolat, The Kooples, La Vie claire, Firmabo, Caroll, Gants Helion, Chassagnard, Ema Piazi, Wimona, Nicolas, Gigi Chaussures, Ekyog, Concurrence Samsung, Mariage frère, Lucas Carton, Louis Pion, Odiot, Toto, Patrick Roger, Cerruti 1881, Ralph Lauren, Massimo Dutti, Maille, Tru Trussardi, Marthan Lorand, Maison de Famille, Kenzo, Orange, Marella, Alain figaret, Sephora, Fauchon, Swarovcki, Yves Delore Punis, Traiteur chez Catherine, Giambattista Valli, Minelli, Promovacances, Heurgon, Petit bateau, Démocratie Prêt-à-porter, Optical Discount, Midas, Picard, Magma, Clarks, Maronnaud, Musika, Viviane, Choc Fleurs, Guerrisol, Promotion 7, Norbert Bottier, veo shop, copy-top, Au Paradis du Gourmand, Le Marché d'à Côté, G20, Groupauto Mesnil, Ladurée, Hugo Boss, Franprix, LOXAM CITY NATION, Ecox, Prim'Market, Carrefour City, Librairie Mona Lisait, Monop', Monop', Franprix, Mondial Pare-Brise, Superette Bisson, Nicolas, Les délices de taine, Milady, Midas, Léopold Coiffure, thai center, Van Hoods & Sons, Aux Gourmandises d'Arago, Roblot, Services Funéraires de la Ville de Paris, Mephisto, Carrefour Market, Harry Cover, Liolà, Picard Surgelés, Docteur iPhone, Cuirs et Fourrures du Front de Seine, Boulangerie Evrard, Mon Oeil, Sandra, Charcutier - Traiteur, Vendeur d'épices, Charcutier - Traiteur, Europ Video & Photo Studio, Pantheone, Horloger - Bijoutier, Garage Porsche, deNeuville, Coiffure Montesantos, A. Becquerel, Boucherie des gourmets, Bilatéral, I Love Optic, Verger Saint- Paul, Mariaunnaud, Caves Saint-Antoine, 5 à sec, Au nom de la rose, Koutchi (bijoux et objets artisanaux d'Asie centrale et d'Inde), Mali, Galerie Pamyr (Asie), Galerie binôme, Artistes coiffeurs, coloristes, Elodie Cohen, Aux Comptoires du Chineur, Le cygne rose, Bien-être Saint-Paul (diététique), As'art, Inspirations, Les Neiges d'Antan, Lyczak, Frank Provost, Casino, Le Boulanger de Monge, Tabac Presse, Les Provinces, Les jardin d'ilham, Ditac, Chez Aude, National Exotique, Victoria, Vision Plus, Globus Star, Leader Price, Thomas Cook Voyages, Franprix, Fromager Bruno Deslandes, Bel Hair, Hadi Coiffure, La Caverne Fromagère, Napoli Fleurs, Relay, Croisière, Asia market, Dia, SNCF Boutique, Burburry, Daniel Crémieux, Loiseau Aycardi, Ralph Lauren, Tag Heuer, Mercerie Au mètre à ruban, Mise en Demeure, Fleurs Delangle, Grand Optical, Manfield, Eram, Acuitis, Etam, Eric Kayser, Gap, Celio, Oliver Grant, Monoprix, Kookaï, Paul, Pou, Exclusif, Minelli, Bianca, J. Martin, C. G. de Mauriac, Lacoste, Sandro, Opsine, Darty, Nicolas, Sara Lina, La baguette, France 4G Télécom, Au Nom de la Rose, Chez Affaires, Cler Fleur, Kerrymara, Leader Price, Leonidas, Les Floralies, Les Halles Bosquet, Les Quatre Saisons, Mademoiselle Bio, Roger Biliebault, Valises Delsey, Anne Sémonin, Cyrillus, Le Moulin de la Vierge, Maison Bleue, Orchi Déiste, Atol, Cave des Gobelins, Lunda, Asselin, Catex, Photo-Ciné, Baechler, Beauty Stores, Bio C'Bon, In Verde, KC, Les Faits Main d'Autrefois, Optical City, Point Smoke, Vince Or, Prince Coiffure, Dia, Dia, Marché Franprix, Choisy Flor, MD Mode, Saigon Nailux, Berlutti, Bob Design, Brykalski, Ego Paris, La Boutique des Inventions, Le Chef d'Œuvre Inconnu, NATACHA PAN, Venus sur Cour, Atmosphères et Curiosités, La Petite Caverne, Sopaz, FZ Coiffure, 5 à Sec, Géant Casino, Le petit marché de Riquet, Guy Degrenne, Antiquités, Derya, Animal's, Pressing Sarrette, Yada & AJ, Pressing, Polo, La Maison du Convertible, Mondial griff.com, Nicolas, Opticien des Gobelins, Redken, Rochebobois, Scott & Fox, Stock André, Yuka, L'Étoile des Gobelins, Papeterie des Gobelins, Chic Life, Micromania, G20, Mert Pâtisserie, Picard, Les Chics de Claire, Tiffany & Co, Optical plus, Vins Guy Jeunemaître, Boutique SNCF, Little Shop, Christine Boulben, Picard, Cartier, Pereire Fleurs, Internity, Beauty White, Joséphine Bakery, Paul, Petit Marché, Autovision, Modern Coiffure, Citroën Félix Faure, Pomi, Boucherie Laurent Vincent, Fromagerie Androuet, Karl Marc John, Culture of Color Nail Bar, L'Occitane en Provence, Boucherie J. Bellenfant, Oliviers & Co, Le 137, Poissonnerie Saint-Médard, Marchand de couleurs, La Fromagerie, Le Marché Franprix, Maison Morange, Picard, Fromagerie Beilleverre, Pomi Halles Mouffetard, Boucherie Saint-Médard, Les Chants de Blé, Jeff de Bruges, Nicolas, Pacific Prêt-à-porter féminin, Poissonnerie Quoniam, Brûlerie des Ternes, Marionnaud, Pierre Champion, Nicolsen Chocolatier, Le Repaire de Bacchus, de Neuville Chocolatier, Fée des Lilas, Moeti, Anoki, Patrick Véron - Fromager indépendant, Les Petites Parisiennes, Zinc de Fleurs, Rose & Charles, 5 à Sec, Dammann Frères, Tavernier, Or'in, Sherpa, Kin, Naturalia, Mococha Chocolatier, Rapid Clés, Chromatic, Nina Kendosa, Optique Lentilles de Contact, Les Précieuses de M., Modyline, Accessorie's, Vade Retro, Chromatic, Phil Defer, Ultra Orange, Hanuman, L'Autre Thé, Joker, Boutique des Cahiers, Loding, Rose & Rouge, L'Écluse, Zen Élisée, Salon B&P, Art Religieux, Alpaga, Votre Salon, Delitaly, Eglatine, La Maison de Ville, Les Fromages de Raphaële, OK Tours, Daly Coiffure, Amaryllis, B. Leduc, Biguine, Carline, Carnaval des Affaires, Cartridge World, Celianthe Medus, Clean Express, Conversons, Diane Selliers Éditeur, Eric C., La Panetière, LiliPuce, Nicolas, Pressing, Retoucheur Qualifié, Telecom, Timbres Monnaies, La Réserve des Arts, Father & Sons, Paul QUAI, Bcbgmaxazria, C&A, Lucie Saint-Clair, Marionnaud, MinaPoe, Optique de la Madeleine, Point Vision Plus, Zwilling JA Henckels, Anna Marchetti, Camille Albane, Cyclable 12e, Alain Choukroun - Haute-Fidélité, Franprix, Optic2000, La Tradition, Boucherie Brancion, Vans, Selectprimeur, La Cave d'Ivry, Pompes Funèbres Générales, Le Bercy, Flash Mode, Art Fleurs et Nature, France Liquide, Funny'Hair, Pooupies Valley, Midas, Rinachento, Androuet, Galerie Endora, Un deux trois, Edelweiss, Etam, Parashop, Madlyne, Tab, Orchestra, Sergent Major, eclop, René Coudari, Bréal, Caprices d'Antin, Stradivarius, Gigi, Catherine Gérard, Optic 2000, Morgan, Eurodif, Calzedonia, La Chausseria, Yves Rocher, Empire du Mariage, Sinéquanone, Carys, Shirley, Lola Jones, Maracamicie, Copy Self, Valege, Antonelle, Narda, Me, Optic d'Antin, Du pareil au même, Sephora, C ma vision, Nicolas, Miss Bolsos, Tradition des Vosges, Jeff de Bruges, Shangaï, Reality Pear, Vedam, Franprix, Première Pression Provence, Games, Orange, Santiago, La Vie du Rail, Tivoli, Le Petit Marché, L'appartement Emmaüs, Le Marigny, Le Merle Moqueur, Valege, Les Jardins de Provence, Nicolas, Cycles Sport Urbain, Bioline, Camille Albane, Mottier, Opticien d'exeption, Proxi, Amine Coiffure, Eurodiscount, Ho's kfe, Hair Fashion Style, Mercato, La bande des cinés, Carrefour, Darty, Garage Raspail, Le quartier du pain, Jacky, Pressing du 17e, La Belle Vie, Turpin, Delcros, Lisa, BMW Motorrad, Loxamcity, Esthetic Center, La Compagnie de l'Optique, La Halle, Monbilier Center, Passion Scooter, Teissa Cuisines, Urgence Mac, Bulthaup, Franprix, Aime Ces Cuisines, L'Artisan de la Vue, L'Atelier du Bonzaï, Rêves et Calins, Au royaume du pain, Boucherie Malitourne, Boulangerie, Caviste, Délices Viandes, Huit à 8, Bio c Bon, Alternative Bike, Boutique, Caisse, La Trésorerie, Boucherie musulmane, Mini-Market, Mayette Magie Moderne, Pierre Brunet, Archives Mini-Market, agora, Le Gay Choc, Proxi, Money II, Torréfaction Guiraud, Sans Commentaire...Ou Avec, Trader, Sat.Elite Games (Playstation), Maxxi Games, Square Games, Stock Games, Play, Fun, Games, Jacques Dessange, Le Dilettante, Boucherie Chevy, Boucherie Brossard, Cave Peret, Fromagerie Vacroux & Fils, Planet Fruits, La Maison du Bain, En privé, Boucherie de l'Etoile, Carnot Micro-Informatique, Marlène Ferreire, Panier Sympa, François B., Nad, Fraza, Les Sources de l'Orient, Good Deal, TBS, Lidl, Jaqk, Boutique ephemere, Geox, Levi's, Mason Pradier, Pains & Friandises, Bouygues Telecom, Tie Rack, Sephora, La Bonne Managere, Brossard, Daguerre Marée, Nicolas, La Pyramide du prince, Coiffure, Armonia C, 8 à Huit, Service Audi Occasion Plus, Tabac Le Drugstore, Audi Aliantis Trocadero Service Après-Vente, Beryte, épicerie orientale, Mercedes Benz, Six pieds trois pouces, Gossip City, Swish, New Season, SNCF, Famille Mary, ChicOptic, Leonidas, Paradis des Fruits, Le Pain Au Naturel, Superette, Maison Hardel, Franprix, Le Repaire De Bacchus, Point Fleurs, Paris Store, Carrosserie du centre, I Love My Blender, Ines et Waho, Ripaille, Clin d'oeil, Point Fort Fichet, Point Laverie, La coifiere, Retoucherie et repassage, tangOpium, Aba Serrurerie, 8 a Huit, Epicerie de l'Orient, First Optique, Mozaik Coiffure, Tchip, Kayen, Mélodies Graphiques, La civette du parc, Institut du parc, Pressing du parc, Laverie du parc, ADR Assistance, Assive, Jc Keller, Picard Surgeles, Naouri Market, Castorama Crimée, Boulangerie Ricquer, Nouez-moi - Linge de maison, Naturalia, Maison de The Theodor, Coiffure Martine, Institut 26, Au jardin des Sablons, Boucherie Picard, Jean Claude Biguine, Thevenin, G20, La Tour Câline, Espace Zen, Franprix, Carrefour Market, Patisserie, Bières Cultes, Laurent Duchêne, Image Photo Express, La caverne aux pains, Le Petit Fumeur, Paris Affaires, Nicolaï, Au Nom de la Rose, L'essentiel, Le pain du faubourg, Boulangerie Estaëlle, Epicerie du plateau, Opti'miste, Contini, Artibat, New Lifting, Coiffure ADS, Passion chocolat, Ecologie 2000, Lara Coiffure, Opticien Ness, Tabac, Achat or et diamants, Tendance secret, Cactus & Maison-Cado, Alexis, Bel Air, Jeff de Bruges, Cariel, Sultana, La malleterie, Bijouterie Noah, SFR, Bouygues Telecom, Le coin des marques, Yan & Van Hairdressing, Du Pareil au meme, Marionnaud, Ludo Primeurs, MC Boutique, Orange, Optical Service O+, Karl Marc John, Monoprix, Sarko Chaussures, Ethan'Or, Tabac, Optique Secretan, Generation Z Enfant, Franprix, Supermarché G20, Gosselin, Librairie Julliard, Tartine et Chocolat, Knoll International France, Havas Voyages, Christine Laure, Devernois, Espace Alesia, Valege, matinbleus, 123, L'autre vue, Le Nôtre, Picard, elan nature, Café Coton, La Carpe, La Maroquinerie Parisienne, Madura, Paul, Saint-James Madeleine, André, Obrey, L'Atelier 14, La Corbeille Daudet, Pabois, Café Pouchkine, FNAC Gare Montparnasse, franprix, L'Atelier, Elegance Coiffure, Golden Delices, G&M Chaussures, Ets Andre pere & fils, Boutique Chez Papa, L'Argilerie, Labo Photo Numérique, Orange, Miamophile, Les gueules de Lou, SARL Fangyuan, Galerie du Roi, Carole Beaute, Clop' Story, Amplifon - Solutions auditives, Vins & huiles d'olive de France, Les intondables, L'optique du parc, Bricorama, Axel Fleurs, Elisa boutique, Librairie Polonaise, Pharmacie St. Maur - Desmoulins, Animalis, Bercy Village, Boardriders, Club Med' - Voyage, Dammann' Frère, Eric Kayser, Fnac, Fragonnard, Loisirs et Création, Monop Store, Nature et Découvertes, Nicolas, Partie de Campagne, Sephora, Cash Express, L'optique du parc, RS Location, Picard Surgeles, Benichon, Bella Minceur, Pressing Pyrenees, Copy Bolivar, La cour des miracles, Eurostore, Sarah bijoux, Cosm' up, A nous les marques, Abz optique, Place des marques, Botzaris Gourmet, Baradji Tresse, HB Coiffure, France Comores Voyages, Atelier Ness, Les alizes opticiens, Cosmetique afro et mediterraneen, Ma relookeuse, Royal Price, Adöm, Adöm, Garage Rebeval, Chapeau Melon, Dekra Controle technique automobile, Europaorp, mini clean, Francine Maraut, L'Échoppe Marine, Nicolas, Saisons, Jardin aux 4 saisons, Dany Cash, Martel Bricolage, Prestige Coiffure, L'eden des bebes, Body' Minute, Raja Bazar, La coiffure au naturel, No smoking, Marchandes de couleurs, Degrif des stocks, Boulangerie Patistory, Degrif des stocks, Opti' Claire, Pressing, Jialy's, Christian Brice coiffure, Saveurs d'Italie, Boucherie Leclerc Carboell, Boucherie Cambronne, L'Angle, Naturalia, Dia, Picard, Volkswagen, Toyota, La Truffe Noire, Loterie - Cafe les favorites, Marché Franprix, Nicolas, Monop', La petitte Rockette, La caverne du bricolo.com, Au dela du PC, Optic' all Avenue, Salon de massage thailandais Jia Jia, Coiff 19, Satelex Services, Saniz, Saniz, Leader Price, Autovision, La rose des vents, Pressing Uni-Press, Delphine Store, Les gentlemen du demenagement, Miss Divina, Point Fort Fichet, Maison Hilaire, The Kooples, Comme ça, Nicolas, Marie-Hélène Coiffure, Esthetic Beaute, L'auto jaune, Globe-Depann, Jean-Claude Biguine, Aux delices d'Oceane, Krishna, Vent et maree, Coupe coiffe, Nicolas, Picard Surgeles, Smakq, Le pavillon aux fleurs, Chocalats belges, Rotisserie, Boucherie Durand, Annick Goutal, Carrefour Express, L'Appartement, 5 à Sec, New Baby, Star orientale, La flute de Meaux, Biba Coiffure, Cavavin, RG pret a porter, Jad voyages, Pompes funebres de la communaute juive, Epicerie Sarah, Naouri city, Frankodech, Renault, Yarden, Andre Krief, Agence de voyages Hanna Tours, M&L, Seat, Beaute sculpturale, Pompes funebres Bertrand SA, Gossip Salon, Palais des fleurs, coccimarket, Cours des halles, Tony Karcenty, L'artisan boulanger Maison Maaned, Optic Chaumont, Serrurerie Manin, Institut Manin, Beaute express, Au Jardin de Lutece, Boucherie de la Place Monge, Pascal Pinaud, Poissonnerie Monge, Sapori d'Italia, Vin et Whisky, Au Jardin de Lutece, Boucherie de la Place Monge, Pascal Pinaud, Poissonnerie Monge, Sapori d'Italia, Vin et Whisky, Leban Jacques, Les Halles de Cambronne, Poissonnerie Etelloise, Primeur fruits, Laverie Libre, Boucherie Pinel, Couleurs de Tollens, Dia, Elite Coiffure, Toutconfort, Librairie de l'Orient, Bedi Thomas, Picard, Le Fournil de Kuss, Naturalia, Mini-Market, Le Passé Composé, Aux Viandes, Yalouna Boutique, La Boulangerie, Mademoiselle Bambû, Mademoiselle Montmartre, Miss Cupcake, See Non Optic, Concorde, Franprix, L'Occitane, Le Marché d'à côté, Leather & Rubber, Paris Touch, Petit Pont Souvenirs, Ryhana Souvenirs, Dia, Franprix, King Meubles, monPetitZoreol.fr, Woodbrass, Naouri Market, Hypercacher, Kosher Discount, Centre optique Manin, Chocolats Damyel, Opti'zien, Ardelys, Tendance, Beaute & Liss, Des etendues, Pollen, Minowa Concept, Pataluna, L'atelier de la Vilette, Why not, L'epicerie du 4, L'embellie Design, Serrurerie des Buttes Chaumont, Emporio Armani, Primfleur, M. de G., Jacques Franck, Librairie Relais La Procure, Lamot, Nicolas, L. Langlais, Ludmila Création, Ludik Bazar, L'Orientale, La Croquandise, Padd, Waseng, Victory Lane, Pianos International, Alimentation, Clos de Lias, Fillles de saison, Krisco, Velos et bicyclettes, Antica Box, Mon epicerie, La petite maison dans la villette, Le dragon savant, Le comptoir, Yves Mugnier, Luce coiffure, La boutique du caban, Yarden Gel, Optic 2000, Cyber Espace, Hair & Nails, Heracles, La Générale D'Optique, Renaissance, Pomme d'amour, Pompes funebres musulmanes, LN & Cie, SAV, Carrosserie de l'Adour, L'atelier Toucha services, Les mains savantes, Espace France Asie - Salon de Massage Thaï, Boutique Marathon, Kam's Coiffure, Beauty Ambassade, Est'air Voyages, Le boudoir du regard, In Bar, Pompes funebres nouvelles, A.G.E., Assitance Bati Services, Nina Meubles & Deco, La grange aux pains, Tele-Pop-Musik, L'avenue des bebes, Le XXV, natalmarket.com, The Phone House, Franprix, Chez Max, Blanchisserie blanc bleu, KA International, LBSA Laboratoire, Fleurs, fruits, feuillages, Boulangerie Malineau, Perene, Abat-jour, Lovely Spa, Bulthaup, Laboratoire auditif Anthony Athuil, Franklin optique, Le soleil de Franklin, Fit & Slim, Antiquites, Bioline, Livres anciens, Lagonda, Laurence Tavernier, Photocopie, Jean-Louis David, Di-Castri, G20, La Cinquième Saison, Laverie Eclat, Le Monde, Cyber Kaliam bazar, Saint-Maclou, www.novaliterie.fr, Elegance Coiffure, Le bon coin, Tabi-Dov' Imprim, Kiloutou, Marie France Pret a porter, Lav & Go, Bangla Trade International, Ades motos, Villette coiffure, Boucherie Sodivillette, Cathay Voyages, Bio Belle-Ville, Coiffure Alice, Compagnie franco-asiatique de voyages, Serrurerie depannages, La plateforme du batiment compact, Anexo, Supermarche de Stalingrad, Etoile d'Afrique Voyages, Jack Boutique, A&M Distribution, Gouraya Music, COFI La Commerciale, Thai DVD, Chine-Asie Diffusion, DMB, Univ-Fresh, Bubble Tea, Boulangerie Patisserie, Achat or, Atol, Montgolfiere bijoux, Karpieres, Sandrell, Atout coeur, Boucherie Mezouari, Carol' voyages, Idecostore, Mes dessus dessous, Eliote 105, Boucherie La Celloise, Beauty Queen, Aux ecailles d'argent, J & 3N, Coiffure by Christian Lacout, Institut de beaute by Christian Lacout, Bouygues Telecom, Belleville primeurs, Sergent Major, Orange, Jeff de Bruges, Belleville primeurs, Invito, Yves Rocher, Boucherie bellevilloise, L'opticien du village, Minceur esthetique, Jean-Claude Biguine, Tout le monde en parle..., J Well, La delicieuse, Aux deux mille pates, Bijouterie calin'or, Love, Expert, La Halle, Boulangerie Patisserie, Le Grand Litier, Boutique Debauve et Gallais, Fuxia, Causses, Heat, Relooking, Boulangerie Patisserie, Gila presse, Vieille France, Institut de beaute Laumiere, Parfumerie Laumiere, Laumiere voyages, Les createurs opticiens, Dia, Franck Provost, Florentin, La Halle aux Chaussures, Ness Beauty, Madison, La boite a lunettes, Jacques Dumont, Masha boutique, Coupe coiffe, Au marche du Jourdain, Yarden, Mille et un objets, Office Depot, Chiteau, Mobeco, Mobeco literie, Laverie Telegraphe, Boulangerie Patisserie, Le fournil de Paris, Tabac - Carterie, Sun' Set, Roc-Eclerc, Syl' Crea' Tif, Tele Gregoire Reparation, Produits exotiques, The a la menthe, 3P Computer, Art du rideau, Optique Bellevue, Boulangerie Patisserie, Glamour, Le paradis du pain, La Chaise Longue, Archivio, Nicolas, Orange, Roganel, La Cabane du Pêcheur, Les Fées Pâtissières, Stanz, Halles du Marais, Munoz, Proxy, Dimitris, Provins, Pralus, Terroir d'Auvergne, Vision KA, Inde Authentique, espace SFR, jucadi, linvosges, KN'L, La Poupée Merveilleuse, brunomelgani, texaffaires, Free'P'Star, La Verrerie, Spontini, Boucherie du Garnd Maghreb, Garage M.C.A., Le dépot de pain de l'autre Boulange, P. Garnier, R. Fougault, Aristo, Auto Primo, Carol, Au Vieux Campeur, Au Vieux Campeur, Rimat, Carrefour Market, Shanny coiffure, Boutique Meynadier Street, Acces Services, Power Cash, Manga Story, Tronix, Sat.Elite Games (Nintendo), Sat.Elite Games (Xbox), Hobby One, Level up, Recycle Store, Game Heaven, Bexley, La délicieuse, Le puits d'amour, Nicolle, Shanthi Cash & Carry, J & C, Agir informatique, Peintres sans frontieres, Epicerie traiteur, Chrono Bat Services, S.P.S., Institut Hit Beaute, A2pas, motrio, Alimentation Générale, BonPlan, France Photo, terre sauvage, C.T.R., La Flûte de Pan, La Flûte de Pan, La Flûte de Pan, Les lunettes de Belleville, Institut Guinot, Serrurerie bellevilloise, Body Minute, Gerard Cosme l'artisan chocolatier, SNCF La boutique, Boulangerie Patisserie Gregory Desfoux, I ♥ smoke, Votre shopping 112, Du pareil... au meme, GS Optic, Panic, Fromagerie Beaufils, Boucherie des Buttes, Boulangerie Patisserie, Caty, Mobil S, Couleur cerise, Anne Ar Breiz, deNeuville, O divin l'epicerie, Jean-Louis David, Brulerie du Jourdain, Beillevaire, Paris Saint-Bière, Serrurerie, Optic'al, Le coin des marques, Boucherie Caidi, Pressing, Franprix, C. Louise, Coriel bis..., Images & Music, Le reve de bebe, Coriel..., Lise France, Coupe coiffe, Boulangerie Patisserie, Soleil Exo, AJM, La source, Optical Shop, Electromenager hifi tv meubles, Clean pressing, Lézard Créatif, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Optical Center, Sport Jeunes, Boulangerie, Eric Kayser, Bricomonge, Éric Kayser, L'Harmattan, L'Île aux Fleurs, Sizard, Boulangerie Patisserie Chocolaterie, Les dessous d'Apollon, Les dessous d'Apollon, Monoprix, Le Globe d'Or, Cours des Halles, Picard, De Vinis Illustribus, Bazar Oriental Samiry, Terra Corsa, Cavavin Malakoff, Selena Caftan, Diarra Exotic, Allo Fenêtres, maintennance et dépannage informatique, svm, Le 31, Angelo Aversa Gravures sur bois, Ground Zero, Ciclop Belleville, Le conservatoire, Sadio Bee, Atelier Rebecca Guibert, Lula Lifestyleshop, La tete dans les olives, Music Please, Chez Robert M. Smith, Delicatessen, Atelier Nathalie Lemaitre, Bazar de la Villette, Hair Beauty, Salon de thé bubble, San yi, Extra Loco, Gul, Confort Meubles, Lisse Fleur, Fuu, Institut Santé Nature et Sens, Petite Pologne, Peyrole Philippe, Ege tours, Boucherie Hour Heng, Agence Franchine, L'atelier des 3 coups, Coiffure et Nature, G20, Kids Fashion, Flash Coiffure, Les Quatre saisons - 新中华商场, Sazanka, Boulangerie Patisserie, Zapa, The Body Shop, Mellow Yellow, Orange, Z Génération, 1 2 3, Franprix, Abacard, Kenka, Carrefour Express, Dewerpe-Sonique, Dr. Pierre Ricaud, Le monde de Bébé, Princesse tam.tam, Mensch, Exclusif..., Rudolph, Oliviers & Co, Dim, Etam, Bagadie, Patrick Juignet, Scissors, L'arbre à Sev, Bouygues Telecom, Sud express, Liu, Richard Nabet, Takara, Thierry 21, Kiehl's, Numericable, Somewhere, Le paradis des gourmands, Carline's, Jeff de Bruges, Côte anglaise, Ocho, Harding, Idécostore, Cigusto, MGC, Dam Dom, L'Entrepôt, Souvenirs de Paris, Galerie Maillet, Les Métamorphoses, Tertio, Passage du Désir, Carrefour, Fragola, Shana, Descamps, Sylvie & Olivier Donné, First Optic, La Jeanerie, Le Briard, Le Repaire de Bacchus, Nicolas, Gaia, Nicolas, Sun & Beauty, Jean Louis David, La Farandole des Pains, Léonidas, Jean Louis David, L'îlot Pages, La Farandole des Pains, Léonidas, Optic 2000, Point P, Astie co, Okros Tunde, AC matière, Transflux, Maison aux Artistes - Galerie du Génie, Tanneur & cie, Hai Kai, Loulou les ames arts, Tangara le club, Ets Schweitzer, C.O.P. Centre des objets perdus, Jerem, Optique mutualiste centre, Rock Hair, Bob et ses amis, U Express, La vache dans les vignes, Graphic Design, Squatter shop, Nicolas, Jean Louis David, Kasap, Flowered by, Free Center, Au Vieux Campeur, Caraibean, Nes Coiffure, Croustil Pain, Hugo Optique, La Ferme d'Avron, Hannael, Fleurs d'Eden, Cuirs et fourrures du front de Seine, Johnny, Carrefour City, GADS-EXO, La laverie, La boucherie, Espace Tabac, Info Max, Media Compustar, Easy Multimedia, Estheti chien, Laverie Pressing, Mongallet 21, PL Config, Bonjour, Micro Media City, À nous les marques, Eden, Crimée, Xin Shi, Patricia, Seng Ky 19, Carole, Le salon de marriage, vintage, Eye's heaven, Laverie du marché, .Y.D., Long Chang, Le cadre noir, SH, Elegance, Tropicosmetique, Coiffure Style, L'or Dely, La coeur des pains, AMJ Batiment, Carrefour Express, Carrefour Express, Carrefour City, Carrefour City, Dia, Office Dépôt, Boucherie Gouraya, Gaignard Millon, Bio C' Bon, Primeur Saint-Jacques, Milord Men, Gommes, Happy birthday for kids, Emma Green, Occhio, Orange, Le Verger de Saint-Ferdinand, La Vigne au Verre, Baum, Marco Serussi, Astéri, Richmond, Marché Franprix, Bio c' Bon, Anthony Garçon, Mon petit poulet, Coiffure Masculine, Jacadi, La Passion du Jouet, Pétard, Pressing, Étoile des Mers, SBS, Lenôtre, Yousr, AZ, Coiffeur Perfect, newvision, Symphonie Florale, Les Tignasses, Nicolas, Dia, Picard, Nicolas, Le petit poucet, Boucherie des écoles, Interflora, GA, François Priet, Bouquet des vins, Bertothi, Portobello, Boucherie nouvelle des Pyrénées, Gastronomie du Périgord, Halles Gatines, Le Repaire de Bacchus, Miel et Nature, Paul, Trapani, Bio c'Bon, Jacques Dumont, Buffets, Buffets, Buffets, Franck Provost, Hyper Cacher, La Boucherie Gourmet, Pressing, Retouches Idylle, Speedy, Nicolas, Lucil Coiff, Pressing, Ma campagne à Paris, Laverie libre service, Rubinya, Au Nom de la Rose, Blanc des Champs, Boucherie Normande, C'est Tout Naturel, Crinoline, Jeff de Bruge, L'Atelier du Sourcil, La Florangerie, Les Heures..., Métamorphose Feeling, Nathalie Tuil, Nicolas, Office Depot, Paris Discount, Point Soleil, Reine, Rose de Noël, Saint-Mandé Services, Tabac de Luxe, Yann' Optic, Atoucar, Au Palais de la Femme, B Happy, BM, Bossetti, Clean Planet, Dia, Europtical, Fairplay Voyages, Le Bar à Vernis, Le Monde, Tang Huy, Écoute et Vous, Casque House, Variations végétales, Le Vin de bohême, Bureau Vallée, Franprix, Fleuriste, La Lorraine, Fish Karaib, Proxi, Produits de la ferme, Merlan&Co, Bazar 14, Bio c' bon, Chanel, Didier Collado, Julémie, Les Modeuses, Mobalpa, Mondial City, Pressing de la Tourelle, Serrurerie SMT, Tchip, Body Minute, Chocolats etc..., AGIR Communication, Atelier Citroën, Citroën Select, Citroën, Thé-Troc, Paul, M coiff, Pressing Baccara, Picard Surgelés, Paris Prestige Cars, Nicolas, Les gourmandises de Nathalie, Librairie Fontaine, Optic Duroc, Les Chants de Blé, Proxy, Nicolas, Pop Culture, Aga, Le Pélican, Nicolas, Folie Méricourt, Boulangerie Patisserie Chocolatier, Doursoux, Lindt, Claudie Pierlot, À l'Hair libre, Julie Coiffure, 7 avril, Tribal act, Optic 2000, Bricorama, Darty, Fnac, Librairie - Caisses, Lidl, Parapharmacie, Dr Pierre Ricaud, Antoine Artisan Boulanger Pâtissier, Lidl, Le gâteau battu, Librairie 52, Garage de la Villa, Dessange Paris, Galerie Pégah, mitabaya, Camaïeu, Picard, Opoptic, Sèvres Pressing, A Fleur de Pot, Aux Délices de Sèvres, La Maison du Fromage, Au nom de la Rose, Boucherie Limousine, Bours'Or, Chocolat de Neuville, Coco Star, Comptoir de la Vaisselle, Eric Kayser, Gerlane, L'orangerie du Vieux Sèvres, La Maison de l'Optique, Laura Sokol, Marionnaud, Mr & Mme Fontaine, My Shop, Patrick Coiffure, Place des Marques, Saveur de Sèvres, Sev Voyages, Racine Carée, Mak Optique, 5 à Sec, Picard, Optic 2000, Puyricard, Librairie du Compagnonage, Kimonoya, Librairie Michèle Ignazi, Christophe Bruno, Chupi Boots, Quatre fois cinq, 11eme art, First Optic, Picard, Maxi primer, Comptoir du désert, Épicerie fine, Uptown, Eric Kayser, Le Mille Pâtes, Le Pain Quotidien, Le verger du marais, Kitchen bazaar, Mood, Les succulents cactus, Act'tif, Prodromus, Ary's, Lohezic, Ch. Pozzi, Jean Durst, Archiduchesse, Deli Drop, Bleu de France, Krys, Alimentation générale, Monop', Sœur, Melindagloss, Ongles dynamiques, Houppette et compagnie, A La Civette, Delamain, L'habibliothèque, Fleurs, Maison Kitsuné, Pressing du Carreau du Temple, La Halle aux Chaussures, Boutique solidaire, Ponsard, Boreau, Eden Flor, Jet Set Coiffure, Optic 2000, Qualite Pressing, Voyages l'Escale, Naturalia, Pharmacycle, Monop', APC, bibi, Nyza, Aussialso, Swildens, Onze, Au forum du bâtiment, Salon de manucure, City-troc, Bien., Comptoir des cotonniers, Palmaccio, Soria, Les invasions éphémères, Shine, Helmut Lang, Swildens, Ne Sweet, Le comptoir du terroir, XO, Agnès B, Marie sixtine, Jones + Jones, Antoine et Lili, Sail bags, Anne Élisabeth, Princesse tam-tam, Manoush, Les petites, Le coq sportif, coeur de rose, Monop, La fée maraboutée, Franprix, Monop' daily, Piaggio, Swatch, Volvo, Body minute, Zazen, Edwin, Quincaillerie d'Alembert, Aliments express, Tchi, Appel, Système-bike, Hair et eau, Thaï, Habitat, Rocker, Les vignoles, l'atelier, Mini Mialy, Harmony, Sam Daniel, Proxy, Vesna, Johann, Man of art, Jack Gomme, Franprix, La boutique, à demain, Zoé Lee, La maison du Hui Na, Bien, Renault, Paul&Jo, G20, Picard, Coiffeur Gregor, Au levain d'antan, Sandro, León&Harper, Le monde sauvage, La cave, Atelier Carlier, Mike Paul, Rougier et Plé, Honda, Office Depot, Go Sport, El Mïlda, Bedo, Édouard de Seine, RoyalCheese, Le slip français, ie, La panoplie, Weber, Mireille, Outre mer, The north face, L'air du bain, Holy Planet, Kate Mack, Epicerie, Chez Dentelles, Bazar d'Électricité, Legallais, L'enfant lyre, Scandilodge, OCD, Le Chocolate, Bicycland, Chocolatier Confiseur A. Trianon, Jean Maisonneuve, Oli & Joy, Papyros, Princesse Tamtam, Sorbonne Cuir, Aux Stocks Permanents, Le Mayol, Nicolas, Nissan Exotique Marché, Franck provoqt, Camille albane, Picard, Bazar de l'Hôtel de Ville, Monoprix, Monoprix, Speedy, Bières Cultes, Daisy, Galerie Nikki Diana Marquard, Le Bon Marché, Beaugrenelle - Magnetic, Beaugrenelle - Panoramic, Le Damier Gourmand, La Capsule, Radical, Touba Vision, Le Panier Gourmet - Franprix, Marché Saint-Honoré, R Canelle, Jeux Descartes, Tabac la Corona, Au Vieux Campeur, Bü, Miss Manon, L'ivre d'Antan, Beaubien, Agence de l'Hôtel de ville, Toyota, Universal Moto, Centre commercial Forum 20, Lapeyre, Centre commercial de la Vache Noire, Saint-Quentin Radio, Motor Village, Monoprix, Franprix, La Procure, Galerie J. Kugel, Picard, Franprix, U Express, Selectronic, Monoprix, Franprix, Picard, Simply Market, Garage Paris Villette, casino, Monoprix, Lancôme, Cartier, Chanel, René Caovilla, Valentino & Roger Vivier, Berluti, Moncler, Façonnable, office panerai, Dolce & Gabbana, Paul Smith, Startore, Lanvin, Massimmo Duti, Vertu, The Kooples - Ralph Lauren, Marina Rinaldi, Ladurée, Leonard, Coiff1rst, blumarine, blugirl, bally, Comme des Garçons, Moschino, Salvador Feragamo, Hermes, Aramis, Yves Saint-Laurent, Givenchy, Boucheron, Jun Ashida, Cerruti, Saint-Honore Market, Pinko, Prada, Bottega Veneta, Gucci, Saint-Honore Market, Gucci, Lanvin, La perla, Centre Commercial E. Leclerc, Le Bon Marché, Monoprix Alimentation, Monop, La Halle, Galeries Lafayette, Printemps, Printemps, Printemps, L'Oeuf Chaussures, L'Oeuf, Pattes Blanches, Atelier Pivoine, Librairie Cler, La Cyclofficine de Paris, La Girafe et la Lune, La Truite Enchantée, Decathlon, StanScoot, Marché des Batignolles, Dia, Franprix, Tati, Tati, Mr Bricolage, Picard, Carrefour Market, JVF, Centre commercial Italie 2, Centre commercial Italie 2, Carrefour City, Marché Franprix, L'Épi de Blé, Naturalia, Centre Commercial Quais d'Ivry, Franprix, Monoprix, Monoprix, Marché du Livre ancien et d'occasion de Paris, Franprix, Intermarché, Renault, Speedy, Garage SN Marceau, Kiosque, Kiosque, Kiosque, 8 à Huit, Darl'Mat Malakoff, Vaysse Pneus, Dia, Passy Plaza, Kiosque à journaux, FNAC, Monoprix, Legendre Moto Concept, Or'Tour, Boulangerie Patisserie, Contrôle Technique Automobile, Dia (Ed), Darty, Total, Paul, Garage Gervais, Kiosque, Kiosque, Kiosque, FLY, Conforama, Metro, Orange, Forum les Halles, AMG +, Monoprix, Darl'Mat, Casino, Centre Commercial Bercy 2, Centre commercial OKABÉ, Saint-Lazare Paris, Station Service E. Leclerc, Abeille Repro, Atelier Pan Helio, La Maison du Toutou, La Reserve, Le Terroir Max, Lola Jones, Poissonnerie Blomet, S. Gloire, Séphora, pulp's, Cash Express, Leroy Merlin, Tang Frères Vitry, L'Univers de Leo, Naturalia, Galerie Lafayette Voyages, Link, Librairie Flammarion Centre, Crèmerie Rochechouart, L'Atelier du Bricolage, Fromagerie de Saint-Mandé, Or Achat Vente, Kenzo, Beaubourg Souvenirs, PMU, Comptoir des Abbayes, Optic 2000, Nicolas, La Banque de l'Image, Parkway, Saint Maclou, Size?, Avant Garde, Forever In, Sephora, Pearl, Décathlon, Bio C Bon, Abercrombie & Fitch, Sephora, Eva Koshka, Fruits Legumes Fleurs, Joker, La carte Chance, Rôtisserie Dufrenoy, Self Bazar, Clif, JT 26, Marco Serussi, OopsHome, Orange, Tabatière Odéon, Loxam City, Bazar, Souvenirs de Paris, Empire Sono, Nouvelle Mode, RUSH, San Marina, Show sur Stock, 49 Street, Bazar, Boulanger Patissier, Franprix, Le Verger de Wattignies, Leonidas, Lyllou, Mercerie Gérard, Miss Tu, One Coiffure, Priscy's, So Fashion, Sylhet.com, TRD, Épicerie automatique, Marks & Spencer Food, Micromania, Retouche Shop, Laverie, Matériel Médical, Photocopie, Roc Eclerc, 1Primeur, Optical, GrosBill, Harmony Pressing, Percing Stalingrad, Harmony Pressing, Percing Stalingrad, Yves Salomon, Zadig & Voltaire, Barbara Bui, Richmond, Blugirl, Atelier Mire, Galerie Hayasaki, Les Sismo, Metropolis, Von d'Art, La Virtuose de la Réclame, L'Astrée d'Or, Fuchsia Dentelles, Francine dentelles, Patch'World, Art Formel, Au Passe-Partout, Niou, Au Petit Bonheur la Chance, Mayerling, Limaselect, Galerie des Syrtes de Florence, Côté Cailloux, Courant Verre, H. Dalloz-Bourguignon, Galerie Bureau d'Art, Véronique André, EW, Monde Secret, Aux Trois Singes, Au Passe Partout, Au Bon Usage, L de O & Co, Au Débotté, Imag'In Air, Décor et Style, Il Giardino Segreto, Stua, Folle du Logis, Objets Trouvés, Olivia Clétienne, La Souris Verte, Des Photographies, Le Flat, Centre commercial Masséna 13, Kiosque, Carrousel du Louvre, Brioche Dorée, Co & Bag, Découvrir Paris, Flo Prestige, Guichet Grandes Lignes, Guichet Île de France, Guichet Île de France, Happy, Jeff de Bruges, Pain à la Ligne, Relay, San Marina, The Body Shop, VitaminWater Station, Kiosque, La Maison des Pieds, Relay, Safran, Conforama, Printemps +49.4099305 8.7067124 +Regard de la Roquette, Thermes de Cluny, L'enceinte de Philippe Auguste, Cavea des Arènes de Lutèce +yes +48.8652569 2.3516674, 48.8300663 2.3232285, 48.8595728 2.3896050, 48.8525398 2.3683116, 48.8513093 2.3691996, 48.8555874 2.3684232, 48.8674536 2.3536254, 48.8476495 2.3658974, 48.8459217 2.3669243, 48.8461560 2.3704219, 48.8770907 2.3512337, 48.8607606 2.3756443, 48.8649605 2.3450799, 48.8670451 2.3482613, 48.8562234 2.2750311, 48.8583046 2.2742742, 48.8594216 2.2764553, 48.8616790 2.2753896, 48.8640840 2.2768625, 48.8276899 2.3209286, 48.8629889 2.2687254, 48.8686944 2.3502259, 48.8751549 2.3379848, 48.8733432 2.3379745, 48.8661215 2.3507823, 48.8739628 2.3483713, 48.8717201 2.3371530, 48.8699489 2.3360007, 48.8728819 2.3542143, 48.8745507 2.3567836, 48.8763320 2.3353305, 48.8840331 2.3599166, 48.8634544 2.3348757, 48.8707881 2.3459106, 48.8713990 2.3457625, 48.8701667 2.3511661, 48.8626616 2.3670401, 48.8581081 2.3677623, 48.8687918 2.3397996, 48.8520874 2.3738549, 48.8404349 2.2955433, 48.8481380 2.2899628, 48.8479201 2.2842966, 48.8527419 2.2755239, 48.8573503 2.2644192, 48.8637136 2.2674578, 48.8782159 2.2992711, 48.8816564 2.3009719, 48.8733559 2.2975655, 48.8729359 2.3000303, 48.8297704 2.2755357, 48.8761730 2.2880129, 48.8746595 2.3016427, 48.8820575 2.3366575, 48.8827175 2.3362016, 48.8793895 2.3033872, 48.8811478 2.3095138, 48.8835708 2.3131759, 48.8510188 2.2724703, 48.8317250 2.3147515, 48.8396010 2.3006606, 48.8376563 2.2955961, 48.8836348 2.2952377, 48.8855813 2.2907242, 48.8859370 2.2933295, 48.8878412 2.3000818, 48.8375791 2.2579573, 48.8903781 2.3036102, 48.8870991 2.3042454, 48.8852028 2.2982227, 48.8825614 2.3090776, 48.8528489 2.2684422, 48.8498671 2.2682466, 48.8822341 2.3195753, 48.8871464 2.3144863, 48.8881291 2.3107924, 48.8881700 2.3101267, 48.8877377 2.3203217, 48.8554752 2.2703856, 48.8609664 2.2731965, 48.8513369 2.2919266, 48.8499385 2.2945842, 48.8451891 2.2620196, 48.8452685 2.2571105, 48.8386832 2.2525085, 48.8405981 2.2584000, 48.8474983 2.2684825, 48.8674490 2.2908704, 48.8569125 2.2822403, 48.8522469 2.3266487, 48.8531701 2.3263925, 48.8762160 2.3198347, 48.8759240 2.3229225, 48.8754510 2.3155141, 48.8766073 2.3132319, 48.8796223 2.3145554, 48.8809530 2.3244796, 48.8524074 2.3414445, 48.8511757 2.2845792, 48.8506511 2.2872112, 48.8448185 2.2905662, 48.8424585 2.2921723, 48.8444549 2.2939163, 48.8468420 2.2956823, 48.8416839 2.2986279, 48.8637261 2.3340606, 48.8727422 2.3099714, 48.8716299 2.3140084, 48.8732165 2.3236650, 48.8735130 2.3204415, 48.8782458 2.3053392, 48.8748180 2.3083063, 48.8715224 2.3074911, 48.8704701 2.3076472, 48.8463015 2.2804650, 48.8461828 2.2784995, 48.8777420 2.2844157, 48.8802481 2.2854595, 48.8817043 2.2836999, 48.8193344 2.3436498, 48.8697269 2.3107378, 48.8836443 2.2821627, 48.8364602 2.3723041, 48.8326142 2.3712146, 48.8294557 2.3759783, 48.8917578 2.3000357, 48.8966717 2.3106040, 48.9017698 2.3727634, 48.8904568 2.3984851, 48.8858277 2.3979326, 48.8892044 2.3949432, 48.8341153 2.3087657, 48.8300931 2.2958772, 48.8702788 2.3842745, 48.8782964 2.4109300, 48.8680300 2.3851169, 48.8700483 2.3490020, 48.8638253 2.3808706, 48.8611898 2.3813091, 48.8749656 2.3048145, 48.8703043 2.3008415, 48.8704362 2.3010631, 48.8523266 2.4155894, 48.8470542 2.4160413, 48.8464606 2.4154979, 48.8439439 2.4149475, 48.8467984 2.3769382, 48.8456871 2.3741212, 48.8482055 2.3763201, 48.8462392 2.3793434, 48.8442424 2.3717797, 48.8211748 2.3337795, 48.8509876 2.3461191, 48.8443452 2.4393747, 48.8513322 2.3097491, 48.8405382 2.3537295, 48.8411143 2.3555601, 48.8492146 2.3916803, 48.8521875 2.3889688, 48.8389853 2.4375942, 48.8371010 2.4404301, 48.8354329 2.4314376, 48.8250001 2.3885505, 48.8211687 2.3786713, 48.8202354 2.3234198, 48.8280671 2.2924227, 48.8314413 2.3409219, 48.8332267 2.3368964, 48.8331702 2.3326392, 48.8182194 2.3532369, 48.8162232 2.3442349, 48.8525749 2.3316556, 48.8516359 2.3307926, 48.8533286 2.3346314, 48.8212529 2.3213669, 48.8236089 2.3080736, 48.8779202 2.2791408, 48.8787672 2.2706318, 48.8801135 2.2586312, 48.8841355 2.3287497, 48.8889153 2.3930360, 48.8882804 2.3908204, 48.8412499 2.2887600, 48.8442635 2.2774236, 48.8433931 2.2751214, 48.8406480 2.2780472, 48.8377045 2.2753703, 48.8360266 2.2812068, 48.8367146 2.2836745, 48.8347180 2.2841645, 48.8359069 2.2934202, 48.8380535 2.2878802, 48.8389960 2.2914567, 48.8385251 2.2782878, 48.8383082 2.2701372, 48.8549220 2.3872314, 48.8543661 2.3848507, 48.8503080 2.3839716, 48.8492760 2.3949290, 48.8564633 2.3790389, 48.8525384 2.3807630, 48.8941847 2.3125567, 48.8988455 2.3220238, 48.8995170 2.3201098, 48.8947998 2.3186936, 48.8928002 2.3270094, 48.8796218 2.3265596, 48.8779635 2.3272883, 48.8767294 2.3305305, 48.8768744 2.3327773, 48.8777601 2.3273644, 48.8747962 2.3265054, 48.8742093 2.3255963, 48.8751600 2.3319950, 48.8693736 2.3204383, 48.8691755 2.3245526, 48.8668994 2.3066488, 48.8649899 2.3027111, 48.8693643 2.3026790, 48.8707450 2.3032755, 48.8652497 2.3101782, 48.8668521 2.3157882, 48.8715167 2.3000286, 48.8713248 2.3002088, 48.8720928 2.3297590, 48.8728662 2.3283943, 48.8729832 2.3294159, 48.8514094 2.2965704, 48.8564180 2.2929958, 48.8535709 2.4057993, 48.8532189 2.4059066, 48.8570643 2.4044749, 48.8525358 2.4040103, 48.8516489 2.3984431, 48.8542199 2.3960813, 48.8375393 2.3360135, 48.8402279 2.3373018, 48.8427433 2.3125629, 48.8405803 2.3153009, 48.8653041 2.3760609, 48.8679081 2.3779048, 48.8642583 2.3781838, 48.8717635 2.3722590, 48.8743760 2.3738893, 48.8775727 2.3697840, 48.8793418 2.3684468, 48.8774951 2.3660254, 48.8761335 2.3680786, 48.8746849 2.3665197, 48.8734003 2.3641075, 48.8710868 2.3661930, 48.8713012 2.3699655, 48.8433627 2.3377702, 48.8343356 2.3292251, 48.8447927 2.2975997, 48.8325468 2.3622967, 48.8315083 2.3567419, 48.8319231 2.3546881, 48.8299156 2.3543416, 48.8284954 2.3531059, 48.8830400 2.3466469, 48.8826393 2.3448094, 48.8821036 2.3462700, 48.8806743 2.3516188, 48.8803621 2.3527476, 48.8808367 2.3523965, 48.8767124 2.4051857, 48.8754784 2.4059676, 48.8756268 2.3994827, 48.8805125 2.3980130, 48.8818468 2.4029049, 48.8778919 2.3959017, 48.8731764 2.4132389, 48.8733436 2.4105571, 48.8277658 2.4184354, 48.8328402 2.4028704, 48.8294130 2.4015885, 48.8312754 2.3988833, 48.8254543 2.4099127, 48.8833656 2.3710732, 48.8837907 2.3764722, 48.8372429 2.3177892, 48.8613834 2.3525372, 48.8635331 2.3476629, 48.8640524 2.3476114, 48.8392766 2.3208448, 48.8617066 2.3445035, 48.8612681 2.3493661, 48.8624112 2.3480599, 48.8599405 2.3466434, 48.8589421 2.3475982, 48.8588348 2.3518897, 48.8572632 2.3514945, 48.8561847 2.3532145, 48.8655904 2.3564268, 48.8661173 2.3596343, 48.8683793 2.3679055, 48.8664719 2.3693573, 48.8658257 2.3693390, 48.8634351 2.3712286, 48.8616617 2.3727419, 48.8600810 2.3710999, 48.8569493 2.3706558, 48.8538990 2.3697241, 48.8663247 2.3710849, 48.8644965 2.3730964, 48.8632938 2.3872069, 48.8664996 2.3830714, 48.8686598 2.3815066, 48.8711417 2.3782119, 48.8727055 2.3764695, 48.8719039 2.3850869, 48.8701140 2.3966278, 48.8706874 2.3989838, 48.8678503 2.4009656, 48.8653208 2.3990687, 48.8643044 2.3982089, 48.8653996 2.3977973, 48.8651813 2.3944221, 48.8662129 2.3890609, 48.8656935 2.3876189, 48.8694311 2.3950347, 48.8673873 2.3963565, 48.8712622 2.4039026, 48.8737273 2.3960303, 48.8754660 2.3929490, 48.8754434 2.3890467, 48.8739926 2.3894557, 48.8764991 2.3923568, 48.8743201 2.3860568, 48.8750539 2.3826407, 48.8764595 2.3793277, 48.8778573 2.3813972, 48.8796002 2.3888045, 48.8774643 2.3860740, 48.8819518 2.3925799, 48.8791126 2.3785037, 48.8797928 2.3748927, 48.8814004 2.3733460, 48.8827127 2.3746701, 48.8847298 2.3801436, 48.8862604 2.3774382, 48.8862942 2.3825537, 48.8891556 2.3835322, 48.8771673 2.3743225, 48.8731252 2.3798302, 48.8645976 2.3751492, 48.8621139 2.3771509, 48.8588447 2.3789316, 48.8579887 2.3818494, 48.8586573 2.3836132, 48.8570456 2.3728609, 48.8479765 2.2966394, 48.8645209 2.3464137, 48.8637982 2.3425857, 48.8585540 2.3586704, 48.8645325 2.3616659, 48.8625383 2.3596046, 48.8616570 2.3566882, 48.8621158 2.3649459, 48.8580787 2.3502718, 48.8594346 2.3558245, 48.8691099 2.3622572, 48.8685184 2.3599117, 48.8707796 2.3431008, 48.8758064 2.3472929, 48.8661857 2.3449657, 48.8724202 2.3554241, 48.8613324 2.3672902, 48.8644708 2.3660442, 48.8657197 2.3652646, 48.8645282 2.3695189, 48.8678878 2.3727490, 48.8691580 2.3718028, 48.8727830 2.3700050, 48.8740363 2.3624556, 48.8709568 2.3611877, 48.8750670 2.3596454, 48.8756963 2.3594622, 48.8761479 2.3608784, 48.8767569 2.3560938, 48.8755329 2.3562073, 48.8720809 2.3576446, 48.8686256 2.3557047, 48.8696775 2.3543727, 48.8610006 2.3534840, 48.8631013 2.3527609, 48.8571905 2.3539864, 48.8599108 2.3609341, 48.8581811 2.3646296, 48.8557177 2.3579066, 48.8427458 2.3524509, 48.8793536 2.3584016, 48.8795963 2.3570245, 48.8497477 2.3435781, 48.8502811 2.3449753, 48.8489015 2.3412990, 48.8736110 2.3032060, 48.8239534 2.3165091, 48.8245932 2.3184383, 48.8243515 2.3193929, 48.8335546 2.2856665, 48.8227462 2.3249989, 48.8427362 2.3297851, 48.8425183 2.3350723, 48.8440936 2.3330640, 48.8601207 2.2808695, 48.8374501 2.3974695, 48.8351057 2.3855326, 48.8332585 2.3858128, 48.8323315 2.3862257, 48.8347892 2.4008341, 48.8366987 2.3918047, 48.8403103 2.3946599, 48.8375405 2.4016838, 48.8647135 2.4083257, 48.8645193 2.4105979, 48.8879678 2.3259712, 48.8623679 2.4111234, 48.8615965 2.4057488, 48.8626997 2.4034148, 48.8393156 2.3801287, 48.8337437 2.3886482, 48.8375435 2.3824463, 48.8420158 2.3412105, 48.8465305 2.3431266, 48.8384599 2.3406020, 48.8395192 2.3610330, 48.8355111 2.3025520, 48.8358706 2.3021959, 48.8427677 2.3244722, 48.8411388 2.3244182, 48.8368320 2.3312845, 48.8350879 2.3415777, 48.8402870 2.3794757, 48.8350103 2.3759945, 48.8376967 2.3825388, 48.8337873 2.3947302, 48.8323342 2.4046376, 48.8570745 2.3418077, 48.8402654 2.2950283, 48.8309193 2.3795654, 48.8269199 2.3653028, 48.8528829 2.3425509, 48.8531182 2.3429777, 48.8638814 2.2818570, 48.8657937 2.2830850, 48.8711878 2.2937312, 48.8426501 2.3861170, 48.8513720 2.2778196, 48.8575556 2.2800238, 48.8512318 2.4017230, 48.8578656 2.2774577, 48.8476397 2.2735592, 48.8491930 2.3705959, 48.8507729 2.3759001, 48.8658946 2.2758019, 48.8680759 2.2814412, 48.8727724 2.2915517, 48.8703465 2.2850813, 48.8331772 2.2703285, 48.8832613 2.3264678, 48.8592458 2.3868272, 48.8583848 2.3904386, 48.8346976 2.3971134, 48.8388270 2.3896712, 48.8327416 2.3788209, 48.8835907 2.3332827, 48.8748125 2.3251922, 48.8673311 2.3076664, 48.8620791 2.2617340, 48.8346333 2.2957466, 48.8331253 2.2993734, 48.8322106 2.3023731, 48.8353914 2.4079102, 48.8199090 2.3593459, 48.8309699 2.3641295, 48.8285441 2.3803051, 48.8284008 2.3842784, 48.8791806 2.3542322, 48.8796019 2.3544582, 48.8844476 2.3388182, 48.8872379 2.3326374, 48.8875505 2.3343018, 48.8643854 2.2724591, 48.8681505 2.3013315, 48.8740799 2.2997640, 48.8472783 2.3856965, 48.8516369 2.3837296, 48.8504806 2.3788351, 48.8516180 2.4015641, 48.8539136 2.4024675, 48.8539293 2.4000508, 48.8304077 2.3343316, 48.8511987 2.3837123, 48.8274915 2.3316869, 48.8199327 2.3650855, 48.8456771 2.3745689, 48.8499590 2.3632112, 48.8513238 2.3624304, 48.8526693 2.3608308, 48.8836715 2.3491968, 48.8852026 2.3499755, 48.8852293 2.3471969, 48.8516794 2.3474841, 48.8771445 2.3224363, 48.8376830 2.3448082, 48.8823429 2.3140860, 48.8455904 2.3558120, 48.8381135 2.3571067, 48.8570345 2.3629840, 48.8549662 2.3612793, 48.8354147 2.3582479, 48.8475869 2.3900296, 48.8472771 2.3956036, 48.8488604 2.3968465, 48.8483749 2.3994783, 48.8443280 2.3896931, 48.8390850 2.3568747, 48.8312654 2.3772757, 48.8243928 2.3770244, 48.8257118 2.3749729, 48.8329907 2.2869621, 48.8580090 2.3004777, 48.8278209 2.3706492, 48.8438654 2.3518035, 48.8980360 2.3337142, 48.8958294 2.3281637, 48.8978467 2.3285070, 48.8988412 2.3296764, 48.8801859 2.3312932, 48.8542757 2.3194575, 48.8570901 2.3152530, 48.8515609 2.3146168, 48.8450873 2.4015561, 48.8455770 2.3958841, 48.8468380 2.4001158, 48.8478151 2.3161845, 48.8470337 2.3212693, 48.8754466 2.2938148, 48.8806125 2.3769485, 48.8583969 2.2841520, 48.8825820 2.3812532, 48.8695049 2.3065969, 48.8485805 2.2655695, 48.8450781 2.2661861, 48.8365140 2.2786782, 48.8259800 2.3574792, 48.8259306 2.3602462, 48.8233030 2.3659003, 48.8246654 2.3631367, 48.8279577 2.3586262, 48.8419264 2.3635292, 48.8236413 2.3615505, 48.8219370 2.3633250, 48.8437079 2.3657319, 48.8560717 2.3021776, 48.8550972 2.3053909, 48.8586100 2.3037057, 48.8615949 2.3022747, 48.8306926 2.3359923, 48.8248112 2.3677360, 48.8625821 2.3543114, 48.8609931 2.4003293, 48.8448840 2.3824674, 48.8309475 2.2852917, 48.8431538 2.3637431, 48.8737596 2.3158539, 48.8211710 2.3587038, 48.8505179 2.3931013, 48.8841654 2.3220842, 48.8794250 2.3337401, 48.8821959 2.3406004, 48.8812335 2.3681216, 48.8204792 2.3667808, 48.8202218 2.3721389, 48.8217969 2.3688453, 48.8291806 2.3561302, 48.8430624 2.2598915, 48.8838324 2.2984885, 48.8799051 2.2881111, 48.8818604 2.2920888, 48.8388149 2.2819094, 48.8629792 2.3415194, 48.8634426 2.3400377, 48.8669921 2.3366321, 48.8708415 2.3535560, 48.8447284 2.3419203, 48.8425031 2.3446224, 48.8560385 2.4049110, 48.8605425 2.4091699, 48.8516010 2.3437321, 48.8508150 2.3422269, 48.8516511 2.3354386, 48.8517582 2.3381629, 48.8704217 2.3232384, 48.8419172 2.3589420, 48.8494338 2.3377819, 48.8576071 2.3358845, 48.8455626 2.3726390, 48.8502811 2.3276257, 48.8466468 2.3323592, 48.8416922 2.3314753, 48.8486047 2.2993357, 48.8991726 2.3710434, 48.8413457 2.3655792, 48.8461325 2.3412680, 48.8674254 2.3444285, 48.8604478 2.3444956, 48.8799360 2.3212877, 48.8779762 2.3183300, 48.8223980 2.3278952, 48.8749238 2.3194549, 48.8737572 2.3063309, 48.8229279 2.3305939, 48.8602188 2.3423098, 48.8613591 2.3400077, 48.8448202 2.3293072, 48.8433715 2.3266113, 48.8760794 2.3011982, 48.8893758 2.3334530, 48.8397720 2.3826569, 48.8820288 2.3635484, 48.8838331 2.3670954, 48.8682247 2.3381270, 48.8471866 2.3534537, 48.8491388 2.3559696, 48.8390129 2.3499462, 48.8635083 2.2864664, 48.8766836 2.2834669, 48.8707206 2.2811510, 48.8433254 2.3023574, 48.8435384 2.3065535, 48.8366110 2.3126681, 48.8404224 2.3130691, 48.8388336 2.3158922, 48.8325290 2.3252190, 48.8276699 2.3261967, 48.8736518 2.2816369, 48.8987007 2.3645291, 48.8989558 2.3743498, 48.8985341 2.3861761, 48.9012620 2.3875624, 48.8526057 2.2629154, 48.8842153 2.3560766, 48.8845445 2.3602834, 48.8664544 2.3344768, 48.8667755 2.3343748, 48.8676389 2.3332399, 48.8691704 2.3325104, 48.8928637 2.3634518, 48.8962560 2.3589998, 48.8907716 2.3308685, 48.8914267 2.3486643, 48.8950968 2.3687029, 48.8912142 2.3513181, 48.8992745 2.3429645, 48.8937350 2.3474870, 48.8994097 2.3458849, 48.8841667 2.3418884, 48.8894575 2.3334080, 48.8888295 2.3559941, 48.8928646 2.3401075, 48.8966990 2.3380370, 48.8866760 2.3532946, 48.8951369 2.3599640, 48.8866165 2.3262539, 48.8883502 2.3535905, 48.8910569 2.3398224, 48.8990308 2.3365543, 48.8864478 2.3329208, 48.8901247 2.3605177, 48.8954760 2.3497870, 48.8896461 2.3382212, 48.8911223 2.3267442, 48.8846860 2.3536867, 48.8904472 2.3492576, 48.8852757 2.3345602, 48.8944930 2.3415130, 48.8867353 2.3613685, 48.8918507 2.3354184, 48.8928650 2.3444840, 48.8895980 2.3628765, 48.8975116 2.3442590, 48.8957920 2.3455810, 48.8944869 2.3522760, 48.8846342 2.3441510, 48.8877079 2.3504076, 48.8935221 2.3365539, 48.8962291 2.3333688, 48.8861209 2.3568514, 48.8870108 2.3668702, 48.8899467 2.3427294, 48.8974237 2.3526006, 48.8885796 2.3472110, 48.8908959 2.3450395, 48.8940382 2.3322317, 48.8437364 2.3392987, 48.8408726 2.3875568, 48.8555569 2.4090964, 48.8535427 2.4096248, 48.8661570 2.3251630, 48.8648196 2.3294492, 48.8539346 2.3493079, 48.8529322 2.3520857, 48.8482231 2.3417751, 48.8296114 2.3182270, 48.8497262 2.3529879, 48.8466399 2.3489993, 48.8415362 2.3502718, 48.8563141 2.3830600, 48.8597545 2.4033363, 48.8563540 2.3948325, 48.8418032 2.3767741, 48.8795478 2.3371494, 48.8766106 2.3457504, 48.8472092 2.3070017, 48.8218802 2.3268475, 48.8250195 2.3264168, 48.8819418 2.3521616, 48.8368662 2.3071536, 48.8383079 2.3085101, 48.8615137 2.3197027, 48.8578293 2.3192199, 48.8474837 2.3126225, 48.8512536 2.3251315, 48.8556397 2.3256421, 48.8590997 2.3185547, 48.8486555 2.3203894, 48.8608678 2.2956977, 48.8520795 2.3018025, 48.8569538 2.3096130, 48.8614149 2.3094414, 48.8606986 2.3148434, 48.8583091 2.3237904, 48.8566893 2.3067753, 48.8588632 2.3319175, 48.8597138 2.3258235, 48.8752771 2.2494139, 48.8446117 2.3178842, 48.8766241 2.3397060, 48.8528721 2.3890596, 48.8555740 2.3904061, 48.8639822 2.3355945, 48.8963398 2.3844708, 48.8828620 2.2876210, 48.8794462 2.2915207, 48.8781329 2.2884576, 48.8537524 2.3572131, 48.8416546 2.3484221, 48.8580159 2.3469052, 48.8201860 2.3400152, 48.8248017 2.3362648, 48.8685182 2.3898030, 48.8426319 2.3973692, 48.8814802 2.2949812, 48.8539886 2.4120537, 48.8777824 2.3398244, 48.8791352 2.3437478, 48.8257108 2.3218692, 48.8508939 2.3012223, 48.8305349 2.3455551, 48.8258967 2.3573107, 48.8288239 2.3418815, 48.8740909 2.3274858, 48.8261137 2.3420629, 48.8264627 2.3442784, 48.8358630 2.3380882, 48.8172529 2.3602221, 48.8224891 2.3474392, 48.8222126 2.3504401, 48.8256278 2.3503006, 48.8275490 2.3490346, 48.8233280 2.3543382, 48.8299328 2.3501105, 48.8311758 2.3480989, 48.8371959 2.3514837, 48.8527113 2.3442100, 48.8552739 2.3473751, 48.8624252 2.3386199, 48.8639956 2.3355407, 48.8674261 2.3406263, 48.8659581 2.3419245, 48.8212269 2.3421677, 48.8266942 2.3386593, 48.8493100 2.3284272, 48.8205245 2.3513062, 48.8733496 2.3352682, 48.8742744 2.3329601, 48.8705692 2.3341202, 48.8482512 2.3292214, 48.8420697 2.2859200, 48.8432520 2.2833768, 48.8476438 2.3027692, 48.8361875 2.3193936, 48.8315372 2.3291516, 48.8354101 2.3485767, 48.8351279 2.3535099, 48.8348276 2.3668095, 48.8290119 2.3742988, 48.8476750 2.3269685, 48.8527675 2.2978750, 48.8419411 2.3897697, 48.8792482 2.3624736, 48.8732753 2.3592374, 48.8462637 2.3522618, 48.8234660 2.3229699, 48.8378904 2.3224575, 48.8907110 2.3761517, 48.8763666 2.3587710, 48.8532340 2.3831638, 48.8692762 2.2899202, 48.8436817 2.3546669, 48.8441122 2.3786311, 48.8726701 2.4079021, 48.8559235 2.3925572, 48.8707816 2.3496418, 48.8290907 2.3609632, 48.8849106 2.3109771, 48.8227101 2.3777404, 48.8253199 2.3107012, 48.8779977 2.3266274, 48.8920979 2.3233014, 48.8712019 2.3413851, 48.8812596 2.3282561, 48.8843107 2.3903306, 48.8863919 2.3865004, 48.8702948 2.3422163, 48.8878425 2.3243054, 48.8322708 2.3674245, 48.8934099 2.3363041, 48.8432413 2.3224129, 48.8438502 2.3225577, 48.8795791 2.4011974, 48.8720302 2.3920402, 48.8570206 2.4087900, 48.8333122 2.2766050, 48.8753952 2.3433018, 48.8502723 2.4063088, 48.8493210 2.4123278, 48.8855144 2.3166106, 48.8363345 2.3104066, 48.8933121 2.3848968, 48.8946426 2.3818500, 48.8926684 2.3791196, 48.8932861 2.3844526, 48.8626544 2.3497602, 48.8450449 2.3494549, 48.8378158 2.3970726, 48.8814585 2.3701955, 48.8888444 2.3785107, 48.8648903 2.2927818, 48.8652776 2.3001217, 48.8756781 2.3992089, 48.8446470 2.4049516, 48.8295616 2.3691128, 48.8293003 2.3686112, 48.8798447 2.3453589, 48.8846966 2.3919640, 48.8780658 2.4109854, 48.8649879 2.3978217, 48.8342051 2.3135017, 48.8469391 2.4103030, 48.8552405 2.3375518, 48.8552856 2.3399457, 48.8555538 2.3334871, 48.8542055 2.3303219, 48.8959172 2.3812055, 48.8987981 2.3790742, 48.8689060 2.3919843, 48.8540164 2.2895145, 48.8451325 2.3454414, 48.8843507 2.3642047, 48.8882204 2.3169268, 48.8903863 2.3198232, 48.8959081 2.3226654, 48.8973994 2.3959893, 48.8473899 2.4102789, 48.8862633 2.3689061, 48.8380011 2.3605213, 48.8678874 2.3648918, 48.8667598 2.3654966, 48.8671087 2.3634985, 48.8901111 2.3173828, 48.8961823 2.3180562, 48.8941973 2.3125096, 48.8941445 2.3146952, 48.8926085 2.3173077, 48.8400857 2.2716780, 48.8635520 2.3425906, 48.8766714 2.3443634, 48.8389598 2.3704270, 48.8623327 2.3527653, 48.8812197 2.3164987, 48.8328697 2.3068297, 48.8430898 2.2953215, 48.8939441 2.3979076, 48.8423612 2.2812102, 48.8708161 2.2749183, 48.8845071 2.3703915, 48.8867667 2.3745936, 48.8985255 2.3605044, 48.8984477 2.3690228, 48.8746584 2.3661215, 48.8843525 2.2882367, 48.8926487 2.3594311, 48.8443704 2.4109328, 48.8493274 2.2819715, 48.8348733 2.3446364, 48.8372276 2.3646862, 48.8714017 2.3382665, 48.8732628 2.3407395, 48.8305280 2.2920390, 48.8394868 2.3971498, 48.8564317 2.3347979, 48.8911611 2.3865761, 48.8757336 2.3266104, 48.8357249 2.3282524, 48.8341118 2.4546530, 48.8774420 2.3096108, 48.8752933 2.3228773, 48.8571019 2.3984066, 48.8550829 2.3733686, 48.8401634 2.3044521, 48.8412701 2.3081103, 48.8678836 2.3493991, 48.8470236 2.3465004, 48.8707294 2.3587247, 48.8400642 2.4091298, 48.8410816 2.4113084, 48.8811450 2.3367110, 48.8458439 2.3017831, 48.8694428 2.4054011, 48.8691390 2.4092451, 48.8680339 2.4109234, 48.8478853 2.4061185, 48.8518476 2.3933111, 48.8831240 2.3238175, 48.8600843 2.3501442, 48.8400060 2.4004934, 48.8408728 2.4043717, 48.8431180 2.3203628, 48.8290070 2.3014163, 48.8266009 2.3093286, 48.8548318 2.2950502, 48.8819276 2.3203338, 48.8528083 2.2930618, 48.8865799 2.2886246, 48.8386975 2.3110254, 48.8425337 2.3640099, 48.8418066 2.3195355, 48.8774678 2.2945061, 48.8763624 2.2642685, 48.8559651 2.3563778, 48.8537639 2.3391067, 48.8484157 2.3501294, 48.8503045 2.3303232, 48.8850584 2.3071779, 48.8414902 2.3233159, 48.8553652 2.3997587, 48.8371072 2.3743837, 48.8392820 2.3298973, 48.8491858 2.3251494, 48.8832127 2.3308278, 48.8810507 2.3407852, 48.8170107 2.3324779, 48.8461470 2.3242143, 48.8413329 2.3183133, 48.8842391 2.3054323, 48.8489310 2.3471707, 48.8449041 2.3110205, 48.8309355 2.3188357, 48.8169801 2.3326668, 48.8279124 2.3056890, 48.8280162 2.3056133, 48.8601711 2.3501538, 48.8529233 2.2804514, 48.8618144 2.3501671 +Hôtel Montpensier +yes +0.38294676811798339 +45 +yes +6 +-22.9361218 -42.9102436, 43.9506744 -73.7328113, 35.0600842 -80.9103370, 46.4695153 -63.4456615, 30.0527050 -89.9343829, 29.4025791 -98.5563219, 54.2943996 -0.4104927, 40.2339282 116.1635814, 41.5467427 -73.0297334 +89 +406 +0 +P8 Kongresshaus +49.4136373 8.6927118 +42 +8 +yes +55.9529398 -3.1154068, 55.9501836 -3.1903813 +48.8656637 2.3778893 +49.4083031 8.6962179 +city gate, wayside shrine, wayside shrine, wayside cross, ruins, monument, castle, wayside shrine, wayside cross, technical monument, technical monument, ruins, castle, castle, castle, castle, city gate, castle, castle, wayside shrine, ruins, ruins, castle, tower, ruins, memorial, castle, towngate, castle, monument, castle, castle, memorial, house, building, castle, monument, monument, boundary stone, castle, castle, monument, monument, castle, castle, memorial, ruins, city gate, archaeological site, castle, castle, monument, monument, memorial, monument, memorial, monastery, ruins, memorial, ruins, castle, monument, memorial, memorial, castle, ruins, ruins, wayside cross, wayside shrine, yes, monument, ruins, castle, castle, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, memorial, memorial, memorial, castle, memorial, memorial, monument, wayside cross, archaeological site, ruins, yes, monument, castle, castle, memorial, castle, memorial, wayside shrine, archaeological site, memorial, building, castle, memorial, castle, memorial, memorial, wayside shrine, monument, memorial, wayside cross, memorial, ruins, castle, memorial, memorial, ruins, memorial, city gate, castle, wayside cross, monument, monument, yes, monastery, university, wayside cross, wayside cross, wayside cross, memorial, monastery, castle, wayside cross, wayside cross, wayside cross, memorial, castle, tomb, wayside cross, wayside cross, memorial, wayside cross, castle, castle, wayside cross, castle, memorial, castle, boundary stone, boundary stone, ruins, ruins, castle, memorial, castle, memorial, city gate, memorial, memorial, memorial, memorial, memorial, wayside cross, monument, castle, memorial, castle, archaeological site, memorial, memorial, memorial, wayside cross, heritage, memorial, wayside cross, memorial, memorial, archaeological site, archaeological site, memorial, memorial, memorial, memorial, church, stone, ruins, memorial, castle, memorial, castle, memorial, castle, castle, wayside cross, memorial, memorial, castle, monument, memorial, castle, ruins, memorial, castle, castle, memorial, memorial, memorial, memorial, wayside cross, castle, castle, castle, yes, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, castle, ruins, memorial, wayside shrine, wayside cross, memorial, memorial, ruins, wayside cross, wayside cross, castle, memorial, boundary stone, monument, monument, memorial, memorial, wayside cross, memorial, castle, wayside cross, memorial, wayside shrine, memorial, memorial, memorial, ruins, yes, castle, boundary stone, memorial, castle, memorial, heritage, memorial, castle, castle, castle, city gate, memorial, memorial, memorial, heritage, memorial, wayside cross, memorial, memorial, monument, castle, city gate, memorial, Brennereigenossenschaft Gronsdorf eG, wayside cross, castle, monument, memorial, memorial, wayside cross, wayside cross, castle, wayside shrine, memorial, memorial, memorial, memorial, church, castle, memorial, memorial, castle, castle, ruins, ruins, memorial, ruins, wayside cross, memorial, ruins, boundary stone, ruins, wayside shrine, church, memorial, wayside cross, wayside cross, memorial, memorial, memorial, castle, ruins, archaeological site, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, archaeological site, memorial, castle, castle, wayside shrine, memorial, memorial, wayside cross, city gate, attraction, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, memorial, monument, memorial, memorial, wayside shrine, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside chapel, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, wayside shrine, memorial, memorial, yes, wayside cross, wayside cross, memorial, wayside chapel, wayside cross, monument, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, castle, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, milestone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, castle, memorial, castle, monument, castle, monument, memorial, wayside shrine, memorial, castle, memorial, memorial, memorial, memorial, memorial, archaeological site, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, castle, castle, castle, castle, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, archaeological site, archaeological site, wayside cross, wayside cross, castle, wayside cross, wayside shrine, castle, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, castle, castle, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, yes, wayside cross, wayside cross, memorial, memorial, archaeological site, ruins, memorial, memorial, wayside cross, monument, monument, castle, monument, memorial, memorial, memorial, castle, memorial, wayside cross, castle, wayside shrine, memorial, wayside cross, wayside shrine, castle, memorial, wayside cross, memorial, castle, wayside cross, wayside cross, memorial, memorial, memorial, memorial, archaeological site, ruins, archaeological site, wayside cross, wayside shrine, memorial, city gate, wayside cross, boundary stone, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, castle, memorial, monument, memorial, wayside cross, memorial, castle, castle, castle, memorial, castle, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, place, monument, wayside shrine, memorial, wayside cross, memorial, castle, castle, wayside cross, memorial, memorial, wayside shrine, wayside cross, castle, wayside cross, wayside shrine, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, memorial, castle, milestone, archaeological site, memorial, memorial, ruins, quarry, wayside cross, ruins, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, castle, castle, wayside cross, wayside cross, monument, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, monument, ruins, wayside shrine, wayside cross, castle, castle, castle, wayside cross, stone, wayside cross, wayside shrine, castle, wayside cross, archaeological site, memorial, monument, castle, castle, wayside cross, memorial, castle, monument, ruins, memorial, wayside cross, castle, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, ruins, wayside cross, memorial, wayside shrine, monument, city gate, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, archaeological site, wayside cross, ruins, memorial, yes, wayside cross, memorial, memorial, castle, castle, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, memorial, wayside shrine, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, ruins, memorial, memorial, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, swimming, wayside cross, memorial, monument, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, memorial, memorial, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, castle, castle, memorial, wayside shrine, castle, monument, ruins, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, castle, memorial, wayside cross, wayside cross, castle, city gate, archaeological site, memorial, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, castle, yes, memorial, wayside cross, ruins, memorial, wayside cross, wayside cross, city gate, memorial, wayside cross, wayside cross, castle, memorial, wayside cross, wayside shrine, wayside cross, memorial, stone, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, monument, wayside cross, castle, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, memorial, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, monument, wayside cross, wayside cross, wayside cross, technical monument, technical monument, technical monument, technical monument, technical monument, memorial, wayside cross, memorial, wayside cross, yes, memorial, wayside cross, wayside cross, ruins, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, castle, monument, ruins, wayside shrine, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside shrine, monument, memorial, wayside cross, wayside cross, memorial, wayside cross, monument, monastery, monument, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, castle, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, memorial, wayside cross, castle, wayside shrine, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside shrine, memorial, wayside cross, ruins, technical monument, memorial, castle, castle, ruins, ruins, wayside shrine, wayside cross, ruins, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, monument, monument, monument, wayside cross, monument, monument, monument, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, ruins, monument, ruins, yes, yes, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, memorial, wayside cross, memorial, castle, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, monument, wayside cross, wayside shrine, stone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, castle, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside cross, memorial, archaeological site, memorial, wayside cross, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, monument, wayside cross, wayside cross, archaeological site, memorial, wayside shrine, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, battlefield, battlefield, wayside cross, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, monument, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, ruins, memorial, ruins, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, wayside shrine, wayside cross, wayside cross, castle, ruins, memorial, wayside shrine, wayside cross, memorial, wayside cross, archaeological site, archaeological site, castle, heritage, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, castle, memorial, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, archaeological site, razed:watermill, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, castle, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, archaeological site, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, archaeological site, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, wayside cross, wayside cross, stone, wayside shrine, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, archaeological site, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside cross, wayside cross, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, ruins, wayside cross, wayside cross, memorial, memorial, castle, wayside cross, wayside cross, wayside cross, tower, tower, memorial, memorial, wayside cross, wayside shrine, wayside shrine, stone, wayside shrine, castle, monument, wayside cross, church, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, monument, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, monument, memorial, tower, archaeological site, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, monument, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, yes, wayside cross, monument, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, ruins, memorial, monument, wayside cross, monument, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, tower, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, monument, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, archaeological site, wayside cross, wayside shrine, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, wayside cross, castle, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, monument, wayside cross, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, milestone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, memorial, monument, wayside cross, wayside cross, castle, monument, wayside cross, castle, memorial, wayside cross, memorial, wayside shrine, wayside cross, boundary stone, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, castle, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, archaeological site, archaeological site, wayside cross, memorial, wayside cross, wayside cross, memorial, boundary stone, wayside shrine, wayside cross, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, wayside shrine, wayside shrine, yes, yes, yes, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, ruins, memorial, memorial, memorial, wayside cross, memorial, wayside cross, memorial, farm, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, memorial, archaeological site, wayside shrine, battlefield, wayside cross, memorial, wayside cross, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside shrine, wayside cross, wayside cross, ruins, memorial, battlefield, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, ruins, castle, wayside shrine, wayside shrine, wayside shrine, archaeological site, memorial, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, ruins, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, monument, wayside cross, wayside cross, wayside cross, memorial, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, archaeological site, wayside cross, memorial, memorial, stone, wayside shrine, memorial, heritage, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, memorial, memorial, archaeological site, wayside cross, memorial, memorial, wayside shrine, memorial, memorial, memorial, monument, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, castle, wayside cross, wayside cross, memorial, archaeological site, archaeological site, memorial, wayside shrine, wayside cross, castle, ruins, memorial, wayside cross, wayside shrine, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, Alter Getreidekasten, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, monument, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside shrine, wayside cross, wayside cross, archaeological site, memorial, wayside cross, archaeological site, archaeological site, wayside shrine, ruins, yes, yes, wayside cross, wayside shrine, wayside shrine, milestone, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, memorial, wayside cross, ruins, monument, memorial, memorial, wayside cross, castle, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside chapel, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, archaeological site, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside shrine, wayside shrine, memorial, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, castle, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, castle, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, archaeological site, memorial, wayside shrine, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, castle, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, monument, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, battlefield, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, archaeological site, archaeological site, archaeological site, stone, archaeological site, memorial, wayside cross, wayside cross, monument, monument, wayside cross, wayside shrine, wayside cross, castle, stone, wayside cross, archaeological site, wayside cross, memorial, wayside cross, memorial, memorial, milestone, stone, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, memorial, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, monument, monument, monument, castle, memorial, monument, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, stone, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside chapel, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, boundary stone, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, castle, archaeological site, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, boundary stone, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, yes, monument, monument, wayside cross, archaeological site, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, industrial, wayside shrine, castle, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, castle, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, ruins, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, memorial, memorial, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, archaeological site, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, heritage, city gate, castle, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, city gate, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, monument, castle, yes, yes, boundary stone, wayside shrine, wayside shrine, archaeological site, wayside shrine, wayside shrine, wayside shrine, archaeological site, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, archaeological site, wayside shrine, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside shrine, monument, memorial, wayside cross, wayside cross, boundary stone, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, archaeological site, wayside shrine, memorial, memorial, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, gallows, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, monument, wayside cross, wayside cross, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside shrine, monument, wayside cross, ruins, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, yes, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, wayside shrine, Altstraße, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, ruins, wayside cross, monument, wayside shrine, wayside shrine, wayside cross, memorial, memorial, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, quarry, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, archaeological site, archaeological site, wayside shrine, ruins, castle, monument, ruins, memorial, archaeological site, stone, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, ruins, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, archaeological site, archaeological site, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, memorial, archaeological site, castle, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside chapel, memorial, memorial, memorial, ruins, wayside cross, castle, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, archaeological site, archaeological site, castle, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, castle, wayside cross, city gate, city gate, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, castle, boundary stone, wayside cross, wayside cross, ruins, wayside cross, memorial, wayside cross, wayside cross, ruins, wayside cross, memorial, memorial, wayside shrine, memorial, yes, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, castle, wayside cross, wayside shrine, archaeological site, milestone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, monument, castle, wayside cross, monument, archaeological site, wayside cross, stone, ruins, monument, monument, monument, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, monument, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, memorial, wayside cross, memorial, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, ruins, wayside cross, boundary stone, archaeological site, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, memorial, ruins, archaeological site, memorial, wayside cross, wayside cross, memorial, wayside cross, monument, memorial, memorial, monument, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, monument, memorial, memorial, memorial, wayside cross, wayside shrine, ruins, memorial, memorial, memorial, memorial, ruins, memorial, wayside shrine, memorial, castle, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, yes, yes, yes, yes, yes, yes, yes, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, archaeological site, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, monument, wayside cross, wayside cross, wayside shrine, memorial, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, yes, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, memorial, castle, wayside cross, wayside shrine, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, memorial, wayside cross, wayside chapel, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, milestone, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, monument, yes, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, heritage, wayside cross, ruins, castle, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, castle, wayside cross, wayside shrine, ruins, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, boundary stone, wayside cross, memorial, wayside shrine, monument, memorial, memorial, wayside cross, wayside cross, wayside shrine, castle, stone, stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, memorial, wayside cross, memorial, wayside shrine, castle, memorial, memorial, ruins, memorial, wayside cross, monument, wayside cross, memorial, wayside cross, monument, memorial, wayside shrine, monument, wayside shrine, wayside cross, wayside cross, monument, memorial, wayside cross, wayside cross, ruins, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, brewery, wayside cross, wayside cross, castle, memorial, wayside cross, memorial, wayside cross, farm, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, castle, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, castle, memorial, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, tower, memorial, building, wayside cross, marker, marker, marker, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, ruins, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, memorial, wayside shrine, wayside shrine, wayside cross, monument, memorial, wayside cross, castle, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wreck, wayside shrine, wayside cross, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside shrine, stone, wayside cross, wayside shrine, boundary stone, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside shrine, wayside cross, castle, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, memorial, memorial, archaeological site, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, memorial, monument, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, ruins, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, monument, monument, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, wayside shrine, wayside shrine, memorial, archaeological site, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, stone, stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, undefined, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, stone, wayside cross, stone, ruins, wayside cross, wayside cross, wayside shrine, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, monument, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, memorial, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, yes, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, yes, wayside cross, wayside shrine, memorial, wayside cross, monument, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, ruins, wayside cross, stone, wayside shrine, industrial, archaeological site, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, stone, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, memorial, memorial, memorial, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, memorial, wayside cross, boundary stone, wayside cross, memorial, wayside cross, ruins, memorial, ruins, wayside cross, wayside cross, archaeological site, wayside shrine, monument, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside shrine, wayside cross, wayside cross, wayside shrine, stone, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, castle, yes, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, stone, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, ruins, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, city gate, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, wayside shrine, memorial, castle, memorial, monument, wayside cross, wayside shrine, wayside cross, wayside cross, city gate, memorial, memorial, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, boundary stone, boundary stone, church, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, memorial, wayside shrine, wayside cross, memorial, wayside cross, boundary stone, memorial, wayside cross, wayside cross, memorial, wayside cross, monument, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, castle, castle, wayside shrine, memorial, wayside chapel, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, monument, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside chapel, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, ruins, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, memorial, building, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, battlefield, wayside chapel, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, monument, monument, monument, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, ruins, monument, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, bunker, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, castle, boundary stone, castle, memorial, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, water well, castle, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, church, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, monument, wayside cross, monument, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, undefined, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, boundary stone, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, laundry fountain, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, ruins, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, boundary stone, memorial, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, monument, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, memorial, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, yes, wayside cross, wayside cross, memorial, memorial, memorial, mine, mine, mine, mine, mine, mine, mine, archaeological site, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, castle, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, monument, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, ruins, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, monument, ruins, boundary stone, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, memorial, monument, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, archaeological site, archaeological site, stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, ruins, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, ruins, yes, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, archaeological site, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside shrine, memorial, yes, wayside cross, memorial, archaeological site, ruins, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, archaeological site, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, memorial, Alter Ringlockschuppen, wayside cross, wayside cross, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, ruins, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, ruins, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, archaeological site, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, ruins, ruins, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, monument, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, monument, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, castle, wayside chapel, wayside cross, archaeological site, archaeological site, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, wayside chapel, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, stone, wayside cross, stone, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, Stausee Büchlberg, wayside cross, memorial, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, archaeological site, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, memorial, archaeological site, wayside shrine, monument, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, stone, wayside cross, stone, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, watermill, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, yes, memorial, memorial, wayside shrine, memorial, wayside cross, memorial, memorial, ruins, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, monument, memorial, castle, wayside cross, memorial, wayside shrine, castle, memorial, wayside cross, castle, monument, castle, wayside cross, wayside shrine, castle, castle, memorial, wayside cross, ruins, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside cross, memorial, archaeological site, tower, tower, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, boundary stone, wayside shrine, castle, castle, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, archaeological site, archaeological site, archaeological site, wayside cross, wayside cross, wayside shrine, memorial, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, heritage, memorial, wayside cross, castle, castle, wayside chapel, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, memorial, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, church, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, Dossenberger-Pfarrhof (Pfarrhof von Billenhausen (erbaut von Joseph Dossenberger), Landauer-Haus (Haus eines jüdischen Pferdehändlers), wayside cross, wayside cross, archaeological site, castle, wayside cross, wayside cross, ruins, wayside shrine, ruins, archaeological site, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, memorial, memorial, memorial, archaeological site, archaeological site, wayside cross, ruins, wayside cross, ruins, ruins, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, archaeological site, wayside cross, yes, yes, wayside cross, castle, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside cross, memorial, monument, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, monument, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, heritage, wayside shrine, tower, ruins, ruins, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside cross, wayside shrine, castle, castle, ruins, archaeological site, wayside shrine, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, memorial, yes, ruins, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, ruins, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, stone, stone, wayside shrine, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, wayside cross, wayside cross, building, memorial, wayside cross, ruins, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, church, city gate, memorial, wayside cross, wayside cross, wayside cross, ruins, ruins, archaeological site, ruins, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, ruins, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, ruins, ruins, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, memorial, wayside cross, memorial, boundary stone, monument, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, archaeological site, yes, wayside cross, battlefield, wayside cross, wayside cross, wayside cross, wayside cross, yes, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, memorial, wayside shrine, stone, stone, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside shrine, wayside shrine, stone, stone, memorial, memorial, memorial, wayside cross, wayside chapel, wayside shrine, memorial, memorial, stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside shrine, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, archaeological site, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, castle, stone, memorial, memorial, memorial, wayside cross, memorial, wayside cross, ruins, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, wayside shrine, monument, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, ruins, archaeological site, archaeological site, wayside cross, wayside cross, memorial, building, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, stone, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, archaeological site, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside chapel, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, memorial, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, memorial, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, archaeological site, ruins, memorial, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, monument, memorial, wayside cross, wayside shrine, ruins, wayside shrine, memorial, memorial, archaeological site, archaeological site, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, archaeological site, wayside shrine, monument, wayside cross, wayside cross, wayside cross, Rote Marter, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, yes, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, yes, ruins, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, stone, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, archaeological site, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, memorial, memorial, memorial, wayside cross, wayside cross, monument, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, wayside cross, boundary stone, boundary stone, memorial, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, monument, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside cross, memorial, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, ruins, wayside cross, wayside shrine, memorial, wayside cross, city gate, city gate, memorial, wayside cross, ruins, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, chapel, wayside cross, wayside cross, city gate, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, yes, memorial, wayside cross, monument, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, memorial, memorial, archaeological site, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, church, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside chapel, archaeological site, archaeological site, archaeological site, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, ruins, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, ruins, memorial, memorial, church, wayside cross, memorial, wayside cross, ruins, castle, wayside cross, castle, wayside cross, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, archaeological site, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, ruins, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, monument, memorial, wayside cross, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, memorial, ruins, ruins, wayside cross, wayside shrine, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, ruins, monument, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, memorial, boundary stone, monument, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, memorial, wayside shrine, memorial, archaeological site, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, boundary stone, wayside cross, castle, wayside cross, monument, boundary stone, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, boundary stone, wayside cross, wayside shrine, memorial, memorial, archaeological site, archaeological site, wayside shrine, wayside shrine, memorial, castle, wayside cross, wayside shrine, wayside shrine, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, pillory, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, archaeological site, monument, wayside cross, memorial, building, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, boundary stone, boundary stone, memorial, boundary stone, monument, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, monument, wayside cross, wayside cross, memorial, monument, archaeological site, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, memorial, boundary stone, wayside cross, archaeological site, ruins, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, monument, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, archaeological site, ruins, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, boundary stone, boundary stone, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, milestone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, ruins, wayside shrine, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside chapel, wayside cross, wayside chapel, wayside chapel, yes, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, boundary stone, wayside shrine, monument, archaeological site, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, memorial, archaeological site, archaeological site, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, yes, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside shrine, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, wayside cross, memorial, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, monument, memorial, wayside shrine, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, boundary stone, boundary stone, city gate, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, statue, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, memorial, archaeological site, wayside cross, wayside cross, wayside chapel, ruins, memorial, wayside cross, memorial, wayside chapel, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, boundary stone, boundary stone, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, heritage, city gate, city gate, city gate, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, ruins, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, castle, memorial, memorial, memorial, ruins, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, archaeological site, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, castle, memorial, stone, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, monument, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, castle, wayside cross, archaeological site, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside chapel, wayside chapel, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, archaeological site, wayside cross, wayside shrine, ruins, wayside cross, memorial, wayside chapel, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside cross, memorial, wayside cross, wayside cross, wayside cross, archaeological site, wayside shrine, monument, wayside cross, memorial, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, castle, boundary stone, archaeological site, wayside cross, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside shrine, boundary stone, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, yes, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, ruins, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, monument, archaeological site, wayside cross, ruins, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, memorial, boundary stone, wayside cross, memorial, memorial, wayside shrine, archaeological site, archaeological site, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, memorial, castle, wayside cross, memorial, wayside shrine, wayside cross, boundary stone, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, archaeological site, memorial, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, memorial, stone, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, wayside chapel, yes, wayside chapel, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, archaeological site, memorial, memorial, wayside shrine, wayside shrine, boundary stone, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, monument, castle, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, boundary stone, ruins, archaeological site, battlefield, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, memorial, church, memorial, boundary stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside chapel, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, wayside cross, stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, castle, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, castle, castle, wayside cross, archaeological site, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, memorial, memorial, archaeological site, wayside cross, memorial, monument, wayside cross, ruins, wayside chapel, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, archaeological site, wayside cross, memorial, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, industrial, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, archaeological site, archaeological site, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside shrine, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, church, monument, memorial, wayside shrine, wayside shrine, ruins, wayside cross, wayside shrine, memorial, castle, wayside shrine, memorial, yes, memorial, castle, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, memorial, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, tower, ruins, castle, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, castle, memorial, memorial, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, castle, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, monument, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, tower, memorial, wayside shrine, wayside shrine, wayside shrine, memorial, building, wayside cross, yes, yes, stone, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, monument, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside chapel, ruins, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, archaeological site, archaeological site, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, monument, wayside shrine, boundary stone, ruins, wayside shrine, boundary stone, wayside cross, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside shrine, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, monument, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, monastery, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, city gate, wayside chapel, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, milestone, ruins, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, yes, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside chapel, wayside chapel, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, ruins, memorial, memorial, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, archaeological site, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, monument, archaeological site, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, ruins, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, archaeological site, wayside cross, wayside cross, archaeological site, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside chapel, tower, memorial, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, boundary stone, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, memorial, memorial, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, fountain, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, fountain, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside chapel, wayside cross, wayside chapel, wayside chapel, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, yes, wayside cross, milestone, wayside cross, wayside shrine, milestone, wayside cross, wayside cross, boundary stone, wayside cross, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, boundary stone, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside cross, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, memorial, memorial, ruins, wayside cross, archaeological site, wayside cross, memorial, wayside cross, wayside cross, gallows, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, stone, memorial, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, tomb, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, memorial, memorial, memorial, wayside cross, monument, castle, wayside cross, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, ruins, wayside cross, wayside cross, memorial, archaeological site, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, boundary stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, archaeological site, memorial, memorial, ruins, ruins, wayside cross, memorial, wayside cross, memorial, monument, wayside cross, wayside cross, wayside cross, wayside cross, ruins, castle, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside cross, memorial, archaeological site, memorial, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, monument, wayside shrine, wayside cross, memorial, monument, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, ruins, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, ruins, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside chapel, wayside chapel, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, castle, castle, castle, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, castle, castle, castle, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, church, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside shrine, memorial, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside shrine, tunnel, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, castle, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, castle, wayside cross, ruins, wayside cross, ruins, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, wayside cross, stone, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, stone, stone, wayside cross, wayside cross, stone, wayside shrine, wayside shrine, wayside cross, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, monument, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, yes, yes, yes, yes, yes, yes, yes, memorial, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, memorial, stone, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, stone, archaeological site, archaeological site, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, archaeological site, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, boundary stone, wayside cross, wayside cross, castle, wayside cross, wayside shrine, boundary stone, wayside cross, wayside cross, boundary stone, wayside cross, memorial, memorial, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, battlefield, archaeological site, city gate, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside shrine, memorial, memorial, memorial, wayside cross, ruins, ruins, monument, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, archaeological site, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, boundary stone, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, milestone, boundary stone, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, boundary stone, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, castle, stone, stone, stone, stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, ruins, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, 2 Kreuze, wayside cross, wayside shrine, memorial, memorial, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside cross, boundary stone, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, ruins, wayside cross, wayside chapel, wayside chapel, stone, stone, stone, wayside cross, stone, stone, stone, stone, stone, stone, wayside shrine, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, castle, memorial, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, memorial, wayside shrine, castle, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, wayside shrine, memorial, wayside cross, wayside cross, boundary stone, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, battlefield, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, boundary stone, memorial, memorial, wayside cross, memorial, castle, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, city gate, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, monument, wayside cross, wayside shrine, archaeological site, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, memorial, ruins, castle, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, stone, stone, stone, wayside shrine, stone, stone, stone, stone, monument, monument, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, monument, wayside cross, archaeological site, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, yes, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, castle, wayside cross, wayside cross, archaeological site, wayside shrine, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, memorial, ruins, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, archaeological site, wayside shrine, castle, archaeological site, memorial, memorial, wayside cross, memorial, wayside chapel, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, stone, stone, wayside cross, memorial, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, ruins, ruins, ruins, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, monument, monument, monument, monument, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, memorial, memorial, ruins, wayside cross, memorial, wayside cross, wayside cross, ruins, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, milestone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, church, memorial, memorial, memorial, ruins, ruins, ruins, wayside cross, wayside cross, memorial, wayside cross, archaeological site, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, monument, wayside cross, castle, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, castle, memorial, boundary stone, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, stone, stone, memorial, stone, wayside cross, wayside cross, archaeological site, archaeological site, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, tomb, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, archaeological site, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, heritage, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, monument, memorial, wayside cross, wayside shrine, monument, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, archaeological site, archaeological site, wayside cross, wayside cross, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside chapel, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, ruins, wayside cross, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, church, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside shrine, wayside cross, wayside chapel, wayside cross, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, monument, boundary stone, stone, stone, stone, boundary stone, yes, wayside cross, stone, wayside cross, wayside cross, stone, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, yes, monument, memorial, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, stone, stone, stone, stone, wayside cross, stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, city gate, city gate, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, memorial, stone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, stone, memorial, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, archaeological site, archaeological site, stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, castle, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, boundary stone, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, wayside cross, archaeological site, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside cross, memorial, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, castle, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, tree, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, ruins, ruins, wayside cross, archaeological site, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, ruins, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, castle, archaeological site, wayside cross, ruins, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, technical monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, ruins, castle, ruins, memorial, memorial, memorial, wayside cross, boundary stone, memorial, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, castle, milestone, wayside cross, memorial, memorial, memorial, boundary stone, boundary stone, monument, wayside shrine, archaeological site, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, memorial, memorial, memorial, memorial, memorial, yes, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, milestone, milestone, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, archaeological site, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, ruins, monument, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, prayer site, memorial, stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, archaeological site, ruins, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, way-side cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside shrine, wayside cross, ruins, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, castle, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, yes, memorial, yes, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, monument, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, castle, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, archaeological site, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, memorial, memorial, wayside cross, memorial, memorial, memorial, technical monument, memorial, wayside cross, memorial, memorial, wayside cross, ruins, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, boundary stone, monument, wayside shrine, yes, wayside shrine, wayside cross, yes, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, church, church, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, boundary stone, wayside cross, wayside cross, castle, wayside cross, wayside chapel, wayside cross, monument, boundary stone, memorial, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside shrine, wayside shrine, wayside cross, wayside cross, monument, memorial, wayside cross, wayside cross, memorial, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, archaeological site, wayside cross, wayside cross, tomb, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, castle, archaeological site, archaeological site, archaeological site, archaeological site, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, archaeological site, wayside shrine, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, castle, wayside cross, memorial, wayside cross, wayside cross, wayside cross, ruins, wayside cross, ruins, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, attraction, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, pillory, pillory, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, monument, monument, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, ruins, castle, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside chapel, memorial, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, ruins, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, Maderla, Maderla, Maderla, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, battlefield, wayside cross, wayside cross, boundary stone, memorial, wayside shrine, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, ruins, ruins, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, obelisk, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, yes, memorial, wayside cross, wayside cross, wayside shrine, wayside chapel, wayside chapel, wayside chapel, wayside chapel, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, monument, archaeological site, archaeological site, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, yes, memorial, memorial, yes, memorial, memorial, memorial, heritage, wayside shrine, tomb, tomb, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, yes, yes, yes, yes, yes, yes, yes, yes, yes, castle, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, monument, monument, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, boundary stone, aircraft, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, castle, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, archaeological site, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, boundary stone, boundary stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, monument, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, yes, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, wayside shrine, wayside chapel, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, monument, wayside shrine, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, church, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, battlefield, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, milestone, building, door, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, stone, wayside shrine, wayside shrine, stone, stone, stone, stone, stone, stone, memorial, wayside cross, wayside chapel, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, ruins, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, city gate, church, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, door, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, stone, stone, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside shrine, archaeological site, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, industrial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, yes, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, way-side cross, wayside cross, memorial, memorial, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, monument, wayside shrine, wayside cross, ruins, palace, wayside cross, boundary stone, wayside cross, archaeological site, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, boundary stone, wayside cross, church, wayside cross, castle, wayside cross, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, memorial, memorial, archaeological site, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, yes, memorial, archaeological site, wayside cross, archaeological site, wayside cross, stone, stone, stone, stone, stone, stone, stone, battlefield, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, milestone, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, memorial, wayside chapel, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, memorial, boundary stone, memorial, memorial, wayside cross, ruins, ruins, ruins, boundary stone, boundary stone, ruins, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, boundary stone, wayside chapel, wayside chapel, wayside cross, wayside cross, memorial, milestone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, archaeological site, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, memorial, memorial, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, memorial, stone, stone, monument, stone, mine adit, stone, stone, wayside cross, wayside shrine, memorial, boundary stone, memorial, memorial, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, memorial, stone, wayside cross, stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, stone, stone, wayside shrine, stone, stone, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, ruins, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, ruins, wayside cross, monument, wayside cross, wayside shrine, monument, wayside shrine, archaeological site, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, stone, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, tomb, tower, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, way side cross, wayside cross, wayside shrine, wayside cross, castle, wayside chapel, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, city gate, city gate, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, mining waggons, industrial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, archaeological site, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, monument, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside cross, tree shrine, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, memorial, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, archaeological site, wayside cross, wayside cross, boundary stone, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, city wall, building, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, monument, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, castle, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, heritage, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, memorial, boundary stone, wayside cross, wayside cross, wayside shrine, wayside shrine, archaeological site, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, memorial, wayside shrine, memorial, memorial, memorial, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, castle, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, milestone, wayside cross, wayside cross, memorial, ruins, milestone, stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, archaeological site, yes, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, boundary stone, memorial, memorial, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, yes, yes, ruins, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, archaeological site, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, boundary stone, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, memorial, aircraft, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, milestone, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, ruins, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, tomb, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, yes, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, memorial, wayside cross, memorial, memorial, wayside shrine, wayside shrine, technical monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, monument, monument, wayside cross, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, boundary stone, wayside cross, wayside shrine, wayside shrine, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, milestone, memorial, memorial, wayside cross, farm, memorial, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, manor, wayside cross, memorial, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, heritage, memorial, memorial, memorial, memorial, wayside cross, stone, wayside shrine, monument, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside shrine, wayside cross, wayside shrine, ruins, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, monument, yes, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, ruins, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, battlefield, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside shrine, castle, wayside cross, milestone, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, memorial, heritage, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, boundary stone, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside chapel, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, yes, wayside chapel, monument, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, monument, boundary stone, milestone, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside shrine, Water pump, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, wayside shrine, memorial, wayside shrine, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, stone, wayside shrine, wayside cross, waside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside chapel, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, boundary stone, memorial, memorial, boundary stone, wayside cross, memorial, heritage, memorial, wayside cross, memorial, milestone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, ruins, ruins, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside chapel, wayside cross, wayside cross, memorial, memorial, archaeological site, ruins, wayside cross, ruins, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside chapel, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, tumulus, boundary stone, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, building, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside chapel, wayside shrine, wayside shrine, stone, wayside cross, wayside cross, stone, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, milestone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, archaeological site, archaeological site, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, monument, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, boundary stone, memorial, memorial, wayside cross, wayside cross, archaeological site, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, archaeological site, boundary stone, memorial, wayside cross, wayside cross, wayside cross, memorial, heritage, city gate, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, way side cross, memorial, stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, castle, tomb, tomb, tomb, memorial, tomb, memorial, tomb, memorial, memorial, memorial, memorial, memorial, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, archaeological site, milestone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, milestone, tomb, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, stone, memorial, memorial, memorial, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, boundary stone, wayside cross, wayside cross, memorial, wayside cross, stone, stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, yes, wayside cross, stone, stone, stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, stone, stone, stone, ruins, wayside shrine, stone, memorial, memorial, ruins, wayside cross, memorial, archaeological site, stone, stone, stone, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, stone, stone, wayside shrine, stone, stone, memorial, castle, castle, wayside shrine, stone, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, stone, stone, stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, stone, stone, memorial, memorial, castle, wayside cross, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, archaeological site, memorial, memorial, wayside shrine, wayside cross, wayside cross, stone, stone, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, yes, stone, stone, stone, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, stone, stone, archaeological site, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, cemetery, city gate, memorial, yes, castle, castle, castle, castle, yes, castle, castle, yes, building, church, church, yes, yes, archaeological site, castle, yes, archaeological site, archaeological site, yes, castle, archaeological site, building, yes, building, building, archaeological site, church, castle, castle, heritage, citywalls, citywalls, citywalls, citywalls, yes, heritage, military, yes, highway, yes, tomb, memorial, heritage, heritage, castle, archaeological site, castle, ruins, monument, castle, monument, ruins, yes, heritage, castle, yes, archaeological site, castle, castle, castle, citywalls, castle, yes, yes, castle, citywalls, castle, citywalls, memorial, building, building, yes, building, yes, yes, castle, castle, castle, archaeological site, ruins, citywalls, citywalls, archaeological site, battlefield, castle, castle, castle, castle, castle, heritage, heritage, memorial, castle, ruins, ruins, church, building, building, building, technical monument, Competition site of the Olympic Games 1972, castle, yes, industrial, castle, ruins, castle, castle, building, castle, heritage, city gate, city gate, yes, yes, yes, citywalls, yes, citywalls, castle, yes, castle, heritage, castle, castle, building, building, monastery, castle, city gate, citywalls, citywalls, citywalls, castle, yes, castle, castle, monument, castle, ruins, ruins, track, building, castle, castle, castle, castle, castle, ruins, castle, castle, building, castle, monument, track, yes, castle, castle, Altstraße, Altstraße, castle, castle, monument, yes, church, powerline, castle, castle, castle, castle, castle, castle, Altstraße, monument, wayside cross, castle, track, ruins, yes, yes, steps, ruins, ruins, church, castle, ruins, monument, castle, castle, castle, building, castle, yes, building, building, building, building, building, building, city gate, castle, yes, yes, guesthouse, yes, building, building, building, building, building, yes, building, monument, castle, archaeological site, archaeological site, city wall, castle, castle, castle, yes, monument, yes, castle, yes, yes, yes, yes, yes, yes, yes, yes, castle, yes, citywalls, church, yes, building, yes, citywalls, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, house, church, citywalls, citywalls, citywalls, building, building, building, building, building, building, building, building, building, building, building, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, building, citywalls, house, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, yes, castle, ruins, yes, castle, watermill, castle, building, building, castle, castle, building, wayside shrine, castle, yes, building, castle, memorial, archaeological site, wayside shrine, castle, monument, castle, building, building, castle, building, yes, castle, ruins, yes, hollow lane, wayside shrine, ruins, city gate, castle, castle, castle, castle, building, castle, yes, city gate, city gate, castle, archaeological site, ruins, ruins, ruins, Driftlehrpfad, castle, heritage, castle, castle, castle, castle, castle, yes, yes, yes, ruins, yes, yes, building, yes, yes, archaeological site, building, building, building, building, building, building, building, building, monument, memorial, castle, ruins, railway station, archaeological site, archaeological site, citywalls, heritage, castle, ruins, yes, monument, yes, city gate, building, building, memorial, yes, monument, citywalls, ruins, ruins, castle, monument, tomb, castle, archaeological site, monastery, archaeological site, building, building, building, building, citywalls, building, 1935-1945:Reichszeugmeisterei, citywalls, yes, yes, memorial, castle, heritage, railway station, ruins, heritage, footway, memorial, cityhall, castle, castle, castle, castle, castle, castle, castle, castle, yes, castle, ruins, hollow lane, Autobahnruine Strecke 46, yes, citywalls, castle, wayside cross, yes, yes, yes, monument, castle, castle, monument, castle, castle, castle, building, monument, yes, yes, archaeological site, archaeological site, archaeological site, archaeological site, monument, castle, building, building, castle, yes, building, building, building, monument, memorial, track, track, church, yes, castle, castle, castle, Altstraße, yes, ruins, castle, Altstrasse, Altstrasse, Altstraße, hollow way, hollow way, Altstraße, Altstraße, Altstraße, Altstraße, Altstraße, Highway, Altstraße, yes, archaeological site, archaeological site, monument, railway station, heritage, heritage, street, Altstraße, castle, yes, building, building, monument, building, building, building, building, building, building, building, building, building, Altstraße, ruins, ruins, building, building, building, building, castle, Altstraße, Altstraße, Altstraße, Altstraße, building, building, heritage, heritage, building, building, building, building, building, building, heritage, monument, Altstraße, Altstraße, Altstraße, Altstraße, Altstraße, castle, building, building, building, building, building, building, hollow way, Altstraße, citywalls, ruins, building, city gate, yes, city gate, city gate, church, Altstrasse, Altstraße, Altstraße, wayside shrine, building, building, building, building, building, building, castle, Altstraße, castle, castle, castle, citywalls, building, building, castle, ruins, castle, archaeological site, castle, castle, yes, tollhouse, hollow lane, ruins, castle, monument, castle, Altstraße, building, building, city gate, building, memorial, ruins, building, building, building, building, building, building, building, building, memorial, yes, city gate, ruins, archaeological site, castle, castle, building, building, building, building, building, building, building, building, building, castle, yes, tower, yes, ruins, memorial, archaeological site, castle, monument, castle, yes, yes, yes, yes, yes, castle, building, Altstraße, wayside shrine, monument, castle, building, tower, Altstrasse, Altstrasse, Altstrasse, Altstrasse, Altstrasse, heritage, archaeological site, ruins, ruins, ruins, ruins, building, memorial, ship, castle, monument, Altstrasse, Altstraße, Altstraße, Altstraße, castle, Altstrasse, Altstraße, Altstraße, Altstraße, castle, archaeological site, building, yes, castle, yes, Altstraße, Altstraße, Altstraße, Altstraße, castle, castle, Altstraße, building, memorial, ruins, archaeological site, castle, castle, building, castle, building, archaeological site, memorial, ship, archaeological site, memorial, yes, building, memorial, building, building, building, archaeological site, archaeological site, archaeological site, archaeological site, building, building, building, building, building, building, building, building, building, building, building, castle, yes, archaeological site, castle, castle, castle, castle, yes, yes, Altstraße, castle, ruins, memorial, tower, archaeological site, castle, Altstraße, Altstraße, Altstraße, Altstraße, hollow way, hollow way, Altstraße, Altstraße, hollow way, hollow way, hollow way, hollow way, hollow way, hollow way, Altstraße, hollow way, castle, yes, yes, yes, yes, yes, yes, Autobahnruine Strecke 46, memorial, archaeological site, archaeological site, ruins, castle, yes, yes, yes, yes, archaeological site, citywalls, church, hollow way, Altstraße, Altstraße, hollow way, hollow way, Altstraße, Altstraße, Altstraße, Altstraße, hollow way, hollow way, Altstraße, hollow way, Altstraße, Altstraße, castle, Altstraße, hollow way, hollow way, Altstraße, Altstraße, ruins, ruins, yes, memorial, castle, castle, castle, ruins, city gate, Altstraße, Altstraße, Altstraße, wayside shrine, castle, archaeological site, archaeological site, hollow lane, house, memorial, castle, yes, yes, yes, castle, monument, castle, castle, yes, castle, archaeological site, castle, castle, heritage, ruins, yes, castle, heritage, monastery, church, heritage, monastery, heritage, castle, railway station, monastery, building, castle, boundary stone, bridge, archaeological site, building, monastery, blacksmith, ruins, yes, monument, monument, building, quarry, heritage, castle, monastery, monastery, monastery, monastery, monastery, monastery, castle, castle, castle, castle, ruins, castle, heritage, archaeological site, castle, monument, ruins, yes, monument, castle, monument, hollow way, hollow way, hollow way, monument, hollow lane, ruins, wayside cross, ruins, ruins, castle, building, castle, city gate, heritage, yes, yes, yes, castle, building, yes, castle, archaeological site, bridge, bridge, castle, heritage, archaeological site, archaeological site, archaeological site, building, castle, archaeological site, monument, castle, yes, yes, church, archaeological site, castle, archaeological site, archaeological site, building, building, monument, castle, ruins, castle, castle, monastery, wayside cross, archaeological site, building, heritage, castle, heritage, monument, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, church, castle, castle, castle, castle, castle, castle, castle, monument, castle, monument, yes, castle, heritage, castle, castle, yes, building, building, castle, monument, yes, castle, track, heritage, archaeological site, archaeological site, archaeological site, archaeological site, heritage, heritage, heritage, heritage, heritage, monument, heritage, memorial, castle, heritage, city gate, heritage, city gate, yes, castle, building, heritage, heritage, heritage, city gate, city gate, heritage, castle, yes, citywalls, yes, citywalls, castle, archaeological site, yes, yes, yes, heritage, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, manor, heritage, castle, archaeological site, castle, castle, castle, monument, castle, yes, castle, monument, archaeological site, castle, castle, Altstraße, heritage, heritage, wayside shrine, city gate, monument, heritage, heritage, memorial, castle, heritage, monument, heritage, monument, heritage, building, building, castle, yes, yes, building, yes, castle, heritage, monument, ruins, ruins, Altstraße, Altstraße, ruins, monument, yes, building, castle, castle, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, building, heritage, yes, yes, yes, heritage, yes, building, building, building, yes, building, building, building, building, building, building, building, building, building, building, archaeological site, yes, archaeological site, building, monument, heritage, monument, castle, heritage, ruins, castle, monument, heritage, yes, yes, yes, heritage, heritage, castle, memorial, building, ruins, heritage, church, heritage, heritage, heritage, heritage, building, archaeological site, heritage, heritage, heritage, heritage, manor, ruins, monument, heritage, yes, yes, ruins, city gate, castle, castle, ruins, city gate, yes, castle, yes, yes, monument, castle, hollow lane, monastery, ruins, citywalls, monument, monument, monument, citywalls, castle, yes, yes, yes, yes, yes, ruins, memorial, memorial, memorial, memorial, castle, ruins, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, ruins, archaeological site, archaeological site, ruins, ruins, ruins, archaeological site, archaeological site, ruins, ruins, archaeological site, ruins, archaeological site, building, heritage, castle, heritage, church, castle, building, building, city gate, ruins, castle, memorial, Altstrasse, Altstraße, castle, castle, castle, castle, castle, castle, citywalls, yes, castle, Altstraße, Altstraße, altstraße, heritage, city gate, castle, memorial, citywalls, monument, monument, monument, castle, castle, castle, yes, Altstraße, archaeological site, castle, ruins, ruins, ruins, castle, castle, castle, tower, building, castle, castle, monument, city gate, castle, ruins, castle, memorial, archaeological site, castle, castle, railway station, heritage, castle, ruins, ruins, ruins, industrial, monument, heritage, heritage, heritage, heritage, memorial, heritage, castle, castle, city wall, city wall, city wall, city wall, city wall, city wall, city gate, city gate, castle, ruins, ruins, ruins, ruins, ruins, ruins, yes, yes, yes, yes, archaeological site, yes, monastery, citywalls, heritage, industrial, heritage, building, yes, city gate, building, building, city gate, city gate, citywalls, citywalls, building, building, building, wayside cross, tower, memorial, heritage, heritage, church, Volksschule Passau-Auerbach, castle, monastery, monastery, monastery, castle, castle, castle, Glashütte, castle, heritage, heritage, ruins, church, castle, yes, yes, yes, yes, yes, yes, castle, yes, monument, heritage, monument, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, castle, yes, yes, yes, yes, castle, castle, heritage, castle, building, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, heritage, memorial, building, building, synagoge, castle, heritage, heritage, yes, heritage, yes, city gate, monument, city gate, building, building, building, castle, lake, castle, ruins, building, yes, ruins, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, building, heritage, heritage, heritage, heritage, heritage, monument, heritage, building, building, heritage, heritage, building, archaeological site, castle, monument, building, heritage, citywalls, heritage, city gate, castle, heritage, heritage, building, building, building, heritage, castle, castle, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, castle, monument, church, building, building, building, building, building, building, building, building, monument, city gate, building, heritage, heritage, ruins, memorial, wayside shrine, heritage, heritage, monument, yes, building, wayside shrine, archaeological site, heritage, heritage, heritage, heritage, building, building, archaeological site, archaeological site, building, building, archaeological site, ruins, citywalls, citywalls, city gate, archaeological site, wayside shrine, yes, hollow way, archaeological site, castle, ruins, ruins, archaeological site, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, wayside shrine, yes, monument, castle, castle, castle, castle, archaeological site, heritage, monument, yes, yes, yes, yes, building, castle, monument, church, castle, archaeological site, citywalls, citywalls, Volksschule Passau-Auerbach, heritage, archaeological site, archaeological site, heritage, heritage, building, building, building, building, building, building, building, castle, wayside shrine, manor, monument, citywalls, citywalls, building, cutting way, wayside shrine, wayside shrine, wayside shrine, heritage, heritage, yes, heritage, yes, monument, castle, heritage, monument, monument, citywalls, citywalls, ruins, city gate, archaeological site, castle, citywalls, heritage, heritage, castle, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, citywalls, citywalls, citywalls, memorial, citywalls, chapel, citywalls, citywalls, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, castle, citywalls, citywalls, citywalls, church, citywalls, citywalls, ruins, ruins, ruins, Highway (Autobahn), castle, castle, heritage, building, church, citywalls, castle, building, castle, memorial, castle, memorial, yes, yes, city gate, yes, yes, citywalls, archaeological site, cityhall, citywalls, citywalls, citywalls, heritage, yes, citywalls, castle, castle, castle, castle, city gate, citywalls, castle, castle, castle, castle, tower, citywalls, yes, heritage, ship, heritage, heritage, heritage, church, archaeological site, archaeological site, archaeological site, memorial, castle, castle, yes, heritage, archaeological site, tower, archaeological site, church, castle, heritage, building, yes, heritage, ruins, castle, castle, castle, castle, building, heritage, monument, castle, citywalls, building, heritage, memorial, castle, building, building, building, building, building, building, building, battlefield, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, ruins, memorial, castle, castle, heritage, castle, archaeological site, building, park, castle, castle, yes, building, heritage, heritage, heritage, castle, wayside shrine, building, heritage, heritage, castle, building, monument, heritage, heritage, yes, heritage, ruins, archaeological site, archaeological site, archaeological site, ruins, archaeological site, castle, castle, building, building, city gate, ruins, yes, castle, archaeological site, archaeological site, memorial, castle, archaeological site, ruins, wayside shrine, ruins, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, tower, memorial, archaeological site, ruins, memorial, yes, wayside shrine, castle, castle, castle, yes, wayside shrine, hollow way, city wall, city wall, citywalls, citywalls, citywalls, heritage, castle, archaeological site, ruins, ruins, castle, heritage, ruins, ruins, castle, castle, castle, castle, castle, city gate, archaeological site, castle, castle, memorial, castle, monument, castle, castle, castle, track, castle, hollow way, memorial, heritage, castle, castle, castle, yes, memorial, wayside shrine, monument, heritage, church, ruins, ruins, building, building, monument, ruins, ruins, yes, yes, castle, castle, church, yes, yes, yes, yes, building, castle, monument, heritage, castle, wayside shrine, church, ship, church, castle, castle, castle, yes, building, memorial, castle, railway station, heritage, citywalls, citywalls, citywalls, citywalls, Altstraße, Altstraße, building, yes, castle, building, yes, castle, castle, archaeological site, farmhouse, yes, yes, wayside shrine, wayside shrine, wayside shrine, castle, archaeological site, wayside shrine, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, castle, city gate, boundary stone, building, tower, railway station, memorial, archaeological site, city gate, heritage, city gate, city gate, heritage, citywalls, citywalls, citywalls, heritage, city gate, castle, heritage, yes, ruins, heritage, castle, heritage, monument, yes, yes, ruins, ruins, castle, ruins, yes, city gate, city gate, yes, castle, yes, ruins, citywalls, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, castle, ruins, yes, yes, city gate, heritage, monument, memorial, archaeological site, heritage, castle, yes, city gate, yes, building, building, building, building, building, building, building, archaeological site, yes, church, church, castle, wayside chapel, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, ruins, memorial, ruins, castle, castle, castle, building, citywalls, building, building, building, citywalls, building, building, building, building, building, building, building, building, building, building, building, building, castle, city gate, castle, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, city gate, city gate, city gate, city gate, yes, city gate, city gate, yes, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, city gate, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, building, building, building, building, building, building, building, building, building, ruins, heritage, heritage, heritage, archaeological site, battlefield, castle, ruins, castle, hollow way, castle, ruins, ruins, castle, heritage, castle, heritage, yes, castle, citywalls, citywalls, citywalls, memorial, ruins, heritage, yes, yes, yes, yes, city gate, yes, city gate, yes, yes, yes, yes, yes, citywalls, citywalls, citywalls, memorial, city gate, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, memorial, tomb, monument, castle, ruins, yes, heritage, heritage, citywalls, citywalls, citywalls, castle, castle, castle, castle, castle, castle, heritage, heritage, building, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, castle, heritage, heritage, monastery, heritage, heritage, monument, heritage, monument, memorial, heritage, heritage, monument, monument, monument, castle, monument, castle, building, city gate, heritage, city gate, city gate, citywalls, citywalls, citywalls, castle, heritage, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, monument, monument, monument, castle, building, castle, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, yes, building, yes, city gate, building, heritage, heritage, heritage, archaeological site, building, building, building, building, building, building, building, building, building, yes, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, citywalls, memorial, city gate, heritage, heritage, building, building, ruins, heritage, heritage, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, ruins, heritage, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, city wall, ruins, citywalls, citywalls, citywalls, citywalls, castle, castle, memorial, ruins, castle, ruins, castle, yes, yes, yes, yes, city gate, yes, yes, yes, monument, yes, city gate, city gate, yes, yes, city gate, heritage, yes, ruins, heritage, city gate, heritage, city gate, yes, building, building, building, building, yes, yes, yes, archaeological site, archaeological site, yes, towngate, ruins, archaeological site, castle, citywalls, yes, heritage, yes, citywalls, citywalls, citywalls, citywalls, citywalls, castle, yes, building, building, building, building, building, building, building, building, heritage, wayside shrine, castle, castle, castle, ruins, heritage, ruins, ruins, railway station, city gate, city gate, castle, yes, yes, building, tower, yes, yes, yes, yes, yes, archaeological site, no, citywalls, citywalls, citywalls, citywalls, building, yes, castle, building, building, heritage, citywalls, citywalls, heritage, citywalls, citywalls, spital, memorial, castle, archaeological site, citywalls, archaeological site, ruins, city gate, city gate, city gate, yes, city gate, castle, building, yes, quarry, yes, yes, yes, yes, yes, monument, memorial, wayside chapel, building, building, church, building, heritage, city gate, castle, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, castle, building, wayside chapel, archaeological site, citywalls, heritage, archaeological site, archaeological site, building, building, building, building, building, monument, castle, castle, castle, building, building, building, building, building, building, building, building, building, heritage, ruins, heritage, heritage, city gate, building, building, building, building, building, castle, heritage, church, yes, yes, watermill, castle, castle, heritage, building, heritage, castle, building, building, castle, building, castle, citywalls, building, city gate, castle, church, church, ruins, yes, yes, building, building, yes, yes, castle, yes, yes, yes, wayside chapel, chapel, heritage, castle, castle, heritage, heritage, yes, building, building, building, heritage, yes, city gate, city gate, building, building, building, building, building, building, building, city wall, yes, yes, yes, building, building, building, building, building, yes, memorial, building, building, building, building, building, castle, monument, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, citywalls, heritage, castle, city gate, castle, building, monument, castle, heritage, memorial, building, heritage, city wall, city wall, citywalls, heritage, city gate, citywalls, citywalls, memorial, ruins, ruins, wayside shrine, heritage, church, wayside shrine, ship, heritage, heritage, heritage, yes, castle, ruins, aircraft, aircraft, aircraft, monastery, wayside chapel, heritage, heritage, castle, heritage, heritage, heritage, heritage, heritage, heritage, heritage, castle, monument, yes, castle, yes, wayside shrine, heritage, archaeological site, archaeological site, archaeological site, heritage, archaeological site, memorial, building, castle, heritage, heritage, heritage, castle, memorial, heritage, heritage, yes, heritage, heritage, heritage, castle, railway station, building, building, building, building, building, building, tower, yes, heritage, archaeological site, wayside chapel, citywalls, citywalls, citywalls, heritage, yes, yes, yes, heritage, yes, castle, yes, city wall, city wall, archaeological site, heritage, citywalls, heritage, heritage, castle, castle, citywalls, citywalls, citywalls, yes, heritage, yes, city gate, yes, yes, yes, yes, yes, heritage, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, yes, yes, city gate, city gate, city gate, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, yes, yes, yes, yes, yes, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, monastery, yes, yes, citywalls, memorial, heritage, heritage, memorial, yes, heritage, memorial, memorial, ruins, castle, castle, castle, castle, castle, yes, wayside shrine, castle, citywalls, memorial, wayside shrine, memorial, castle, monument, yes, yes, yes, yes, building, castle, archaeological site, ruins, yes, Highway (Autobahn), Highway (Autobahn), castle, yes, railway station, monastery, castle, wayside chapel, archaeological site, castle, castle, citywalls, building, heritage, building, castle, castle, wayside chapel, heritage, archaeological site, heritage, castle, castle, ruins, heritage, wayside cross, wayside shrine, wayside shrine, castle, wayside shrine, yes, ruins, yes, yes, yes, yes, yes, building, heritage, castle, archaeological site, castle, city gate, city gate, city gate, yes, yes, yes, yes, archaeological site, yes, heritage, heritage, heritage, building, roman road, ruins, memorial, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, chapel, memorial, memorial, citywalls, citywalls, archaeological site, heritage, heritage, yes, monastery, yes, building, ship, ruins, monument, heritage, yes, heritage, memorial, ruins, railway station, heritage, monastery, castle, Altstraße, Altstraße, citywalls, heritage, citywalls, yes, citywalls, castle, castle, citywalls, citywalls, archaeological site, ruins, ruins, memorial, monastery, railway station, yes, building, building, heritage, heritage, heritage, heritage, heritage, city wall, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, castle, building, citywalls, citywalls, manor, heritage, city gate, railway station, wayside shrine, heritage, citywalls, building, building, building, building, tower, heritage, archaeological site, castle, castle, building, castle, castle, building, castle, castle, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, memorial, heritage, yes, building, building, castle, citywalls, citywalls, archaeological site, heritage, city gate, citywalls, city gate, memorial, yes, yes, yes, ruins, heritage, heritage, heritage, heritage, yes, heritage, building, archaeological site, archaeological site, archaeological site, archaeological site, chapel, chapel, castle, heritage, heritage, heritage, ruins, castle, castle, ruins, ruins, castle, archaeological site, citywalls, ruins, city gate, ruins, citywalls, archaeological site, castle, wayside shrine, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, building, citywalls, heritage, yes, yes, yes, yes, yes, ruins, yes, heritage, ruins, yes, wayside shrine, memorial, heritage, wayside shrine, memorial, underground fortifications, yes, yes, yes, castle, yes, industrial, yes, yes, yes, archaeological site, castle, ship, monument, monument, memorial, memorial, ruins, archaeological site, heritage, yes, ruins, wall, track, wall, path, archaeological site, archaeological site, tomb, archaeological site, memorial, citywalls, citywalls, citywalls, citywalls, citywalls, heritage, heritage, heritage, archaeological site, monument, building, building, castle, heritage, castle, castle, heritage, castle, castle, castle, heritage, building, castle, castle, castle, castle, castle, castle, quarry, castle, military, ruins, castle, castle, castle, castle, castle, castle, castle, castle, castle, yes, castle, castle, castle, castle, building, city gate, castle, monastery, castle, monastery, yes, building, building, castle, castle, building, yes, building, castle, castle, road, railway, railway, railway, building, building, building, castle, heritage, building, archaeological site, castle, heritage, castle, castle, yes, castle, heritage, castle, castle, castle, heritage, castle +Musée de l'Armée, Musée de l'Assistance Publique Hôpitaux de Paris, Musée des Arts Décoratifs - Musée de la Publicité, Musée national des Arts et Métiers, Tour de Jean-sans-Peur, Musée Gustave Moreau, Les Égouts de Paris, Musée Edith Piaf, Musée Pasteur, Espace Dali, Cité des Sciences et de l'Industrie, Maison de Victor Hugo, Musée en Herbe, Maison Européenne de la Photographie, Musée de l'Eventail, Cité des Enfants, Musée de la Poupée, Catacombes de Paris, Musée de l'Erotisme, Musée du Petit Palais, Musée de la Légion d'Honneur et des Ordres de Chevalerie, Conciergerie, Musée du Vin, Musée de la Poste, galerie-musée Baccarat, Salle des collections, Musée du Service de Santé des Armées, Choco-Story - Le musée gourmand du chocolat, Cité de l'architecture et du patrimoine, Musée de la Marine, Musée de la franc-maçonnerie, Espace des Sciences Pierre-Gilles de Gennes, Deyrolle, Fondation Le Corbusier, Musée de la Contrefaçon, Musée Dapper, Musée des Arts Forains, Musée Adzak - Espace d'Art International, Musée d'Anatomie Delmas-Orfila-Rouvière, Musée Arménien de France, Musée Boleslas Biegas - Musée Adam Mickiewicz, Musée Bible et Terre Sainte, Musée Bouilhet-Christofle - Musée d'Orfèvrerie, Musée Clemenceau, Musée-Librairie du Compagnonnage, Musée d'Anatomie Pathologique Dupuytren, Musée Valentin Haüy, Musée Henner, Musée d'histoire de la Médecine, Musée Maillol, Musée des Lettres et Manuscrits, Musée du Montparnasse, Musée de Minéralogie, Musée Moissan, Crypte Archéologique du Parvis Notre-Dame, Bibliothèque-Musée de l'Opéra, Musée Pierre Marly - Lunettes et Lorgnettes, Musée de la Préfecture de Police, Centre Culturel Suisse, Tour de la Cathédrale, Le trésor de Notre-Dame de Paris, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin, Musée national d'art moderne, Maxim's Art Nouveau "Collection 1900", Carrefour Numérique, Art Ludique - Le Musée, Collection des minéraux - Jussieu, Fondation Henri Cartier-Bresson, Galerie Royale, Académie de la Magie, Espace Reine de Saba, Musée du Barreau, Maison de la RATP, Katakomben von Paris, Institut des Lettres et Manuscrits, Musée du quai Branly, Galerie de Minéralogie et de Géologie, Galeries de Paléontologie et d'Anatomie comparée, Institut du Monde Arabe, Jardin Tino Rossi - Musée de la Sculpture en Plein Air, Halle Saint-Pierre, Hôtel de Sully, Jeu de Paume, Musée de l'Orangerie, Atelier Brancusi, Futur Fondation Galeries Lafayette, Musée Curie, Grand Palais, Pavillon de l'Arsenal, Musée National du Moyen Âge, Musée d'Art et d'Histoire du Judaïsme, Archives Nationales, Musée de la Serrure, Musée Picasso, Musée Cognacq-Jay, Musée national Eugène Delacroix, Cité Nationale de l'Histoire de l'Immigration, Orangerie du Sénat, Musée d'Orsay, Le Musée du Fumeur, Musée national Ernest-Hébert, Institut Néerlandais, Immeuble Molitor, Pinacothèque de Paris, Musée Nissim de Camondo, Musée Cernuschi, Musée Rodin, Musée Jacquemart-André, Cinémathèque Française, Fondation Pierre Bergé Yves Saint-Laurent, Musée d'Art Moderne de la Ville de Paris, Palais de Tokyo, Fondation Cartier, Musée Guimet, Maison Chana Orloff, Musée Bourdelle, Musée d'Ennery, Musée Marmottan, Grande Galerie de l'Évolution, Musée de la Vie Romantique, Maison de Balzac, Pavillon de l'eau, Mémorial de la Shoah, Maison de la Culture du Japon, Musée Zadkine, Musée de Montmartre, Musée de la chasse et de la nature, Manufacture des Gobelins, Musée du Luxembourg, Palais de la Découverte, Centre Culturel Suédois, Musée de la magie, Fondation Louis Vuitton, Hôtel des Monnaies, Musée Galliera, Musée Carnavalet, Le Louvre, Sainte-Chapelle +49.4026602 8.7297882, 49.4658809 8.7540689, 49.4269174 8.7219719, 49.4035191 8.7047078, 49.4261495 8.7062630, 49.4580313 8.7464236, 49.3828404 8.6974716 +49.3868564 8.6629939, 49.4122382 8.7129316 +yes +42 +1966 +55.9813666 -3.1776197, 55.9372632 -3.2070698, 55.9555027 -3.1887801, 55.9589676 -3.2124402, 55.9589390 -3.2120876, 55.9410478 -3.1808355, 55.9469052 -3.1861162, 55.9261476 -3.3062378 +Musée de l'Armée, Musée de l'Assistance Publique Hôpitaux de Paris and 01.40.27.50.05, Musée des Arts Décoratifs - Musée de la Publicité and 01.44.55.57.50, Musée national des Arts et Métiers and +33 (0)1 53 01 82 00, Tour de Jean-sans-Peur, Musée Gustave Moreau and 01.48.74.38.50, Les Égouts de Paris and 01.53.68.27.81, Musée Edith Piaf and 01.43.55.52.72, Musée Pasteur and 01.45.68.82.83, Espace Dali and 01.42.64.40.10, Cité des Sciences et de l'Industrie and +33 1 40 05 70 00, Maison de Victor Hugo and 01.42.72.10.16, Musée de la carte à Jouer, Musée en Herbe and 01.40.67.97.66, Maison Européenne de la Photographie and +33 1 44 78 75 00, Musée de l'Eventail and 01.42.08.90.20, Cité des Enfants, Musée de la Poupée and 01.44.54.04.48, Catacombes de Paris and +33 1 43224763, Musée de l'Erotisme and 01.42.58.28.73, Musée des années 30, Musée du Petit Palais and 01.53.43.40.00, Musée de la Légion d'Honneur et des Ordres de Chevalerie and 01.40.62.84.25, Conciergerie, Musée du Vin and 01.45.25.63.26, Musée de la Poste and +33 1 42 79 24 24, galerie-musée Baccarat and +33 1 40 22 11 00, Salle des collections, Musée du Service de Santé des Armées, Musée de la Défense, Choco-Story - Le musée gourmand du chocolat and 00.33.(0)1.42.29.68.60, Musée-Jardin Paul Landowski, Cité de l'architecture et du patrimoine and 01.58.51.52.00, Musée de la Marine and +33 (0)1 53 65 69 69, +33 (0)1 53 65 69 53, Musée de la franc-maçonnerie and 01.45.23.74.09, Espace des Sciences Pierre-Gilles de Gennes, Deyrolle, Fondation Le Corbusier and 01.42.88.41.53, Musée de la Contrefaçon and +33 1 56 26 14 03, Musée Dapper and 01.45.00.91.75, Musée des Arts Forains and 01.43.40.16.22, Musée Adzak - Espace d'Art International and 01.45.43.06.98, Musée d'Anatomie Delmas-Orfila-Rouvière and 01.42.86.20.47, Musée Arménien de France, Musée Boleslas Biegas - Musée Adam Mickiewicz and 01.43.54.35.61, Musée Bible et Terre Sainte and 01.45.44.09.55, Musée Bouilhet-Christofle - Musée d'Orfèvrerie and 01.49.22.41.15, Musée Clemenceau and 01.45.20.53.41, Musée-Librairie du Compagnonnage and 01.43.26.25.03, Musée d'Anatomie Pathologique Dupuytren and 01.42.34.68.60, Musée Valentin Haüy, Musée Henner and 01.47.63.42.73, Musée d'histoire de la Médecine, Musée Maillol and 01.42.22.59.58, Musée des Lettres et Manuscrits and +33 1 42 22 48 48, Musée du Montparnasse and +33 1 42229196, Musée de Minéralogie and 01.40.51.92.90, Musée Moissan, Crypte Archéologique du Parvis Notre-Dame and 01.55.42.50.10, Bibliothèque-Musée de l'Opéra and 01.53.79.37.47, Musée Pierre Marly - Lunettes et Lorgnettes, Musée de la Préfecture de Police and 01.44.41.52.50, Centre Culturel Suisse, Musée de l'Ile-de-France and 01.41.87.29.50, Tour de la Cathédrale and 01.53.10.07.00, Musée d'art et d'histoire de Saint-Denis, Musée de Nogent-sur-Marne, Maison de la Pêche et de la Nature, Le trésor de Notre-Dame de Paris, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin and 01.40.64.39.44, Galerie municipale Julio Gonzalez, Musée national d'art moderne, Maxim's Art Nouveau "Collection 1900" and 01.42.65.30.47, Carrefour Numérique, Art Ludique - Le Musée, Collection des minéraux - Jussieu, Fondation Henri Cartier-Bresson and +33156802700, Galerie Royale, Musée Albert Kahn and 01.55.19.28.00, Académie de la Magie, Musée Fragonard, Espace Reine de Saba, Musée du Barreau and +33 1 44 32 47 48, Maison de la RATP, Katakomben von Paris, Institut des Lettres et Manuscrits, Musée du quai Branly and 01.56.61.70.00, Galerie de Minéralogie et de Géologie and 01.40.79.54.79, Galeries de Paléontologie et d'Anatomie comparée and +331 40 79 54 79, +331 40 79 56 01, Institut du Monde Arabe and 01.40.51.38.38, Jardin Tino Rossi - Musée de la Sculpture en Plein Air, Musée national de céramique and +33 1 46292200, Halle Saint-Pierre and 01.42.58.72.89, Hôtel de Sully, Jeu de Paume and +33 1 47031250, Musée de l'Orangerie and 01.44.50.43.00, Atelier Brancusi, Futur Fondation Galeries Lafayette, Musée Curie and 01.56.24.55.33, Grand Palais, Pavillon de l'Arsenal and 01.42.76.33.97, 01.42.76.26.32, Musée National du Moyen Âge and 01.53.73.78.13, Musée d'Art et d'Histoire du Judaïsme and 01.53.01.86.53, Archives Nationales and 01.40.27.60.96, Musée de la Serrure, Musée Picasso and 01.85.56.00.36, Musée Cognacq-Jay and 01.40.27.07.21, Musée national Eugène Delacroix and 01.44.41.86.50, Cité Nationale de l'Histoire de l'Immigration and 01 53 59 58 60, Orangerie du Sénat, Musée d'Orsay, Le Musée du Fumeur and 01.46.59.05.51, Musée national Ernest-Hébert, Mastaba 1, Institut Néerlandais and 01.53.59.12.40, Immeuble Molitor, Pinacothèque de Paris and 01.42.68.02.01, Musée Nissim de Camondo and 01.44.55.57.50, Musée Cernuschi and 01.53.96.21.50, Musée Rodin and 01.44.18.61.10, Musée Jacquemart-André and 01.45.42.11.59, Musée De Dion-Bouton, Château d'Asnières and 01.71.07.82.25, Musée d'Histoire Urbaine et Sociale and 01.41.18.37.37, Musée Renault and 01.46.05.21.58, Pavillon de Vendôme and 01 .47 .15 .31 .05, Musée Paul-Belmondo, Cinémathèque Française and 01.71.19.33.33, Fondation Pierre Bergé Yves Saint-Laurent, Musée d'Art Moderne de la Ville de Paris and 01.53.67.40.00, Palais de Tokyo and 01.47.23.54.01, Fondation Cartier and 01.42.18.56.50, Musée Guimet and 01.58.52.53.00, Maison Chana Orloff, Musée Bourdelle and 01.49.54.73.73, Musée d'Ennery and +33 1 45535796, Maison de la Photographie - Robert Doisneau, Le 116, Musée Roybet Fould, Musée Marmottan and 01.44.96.50.33, Grande Galerie de l'Évolution and 01.40.79.54.79, 01.40.79.56.01, Musée de la Vie Romantique and 01.55.31.95.67, Maison de Balzac and +33 1 55744180, Pavillon de l'eau and 01.42.24.54.02, Mémorial de la Shoah and +33 1 42 77 44 72, Musée Rodin - Villa des Brillants and 01 41 14 35 00, Musée d'Art et d'Histoire and +33 1 46238713, MACval, Explor@dome, Maison de la Culture du Japon and 01.44.37.95 .01, Musée Zadkine and 01.55.42.77.20, Musée de Montmartre and 01.49.25.89.39, Musée de la chasse et de la nature and 01.53.01.92.40, Manufacture des Gobelins, Musée du Luxembourg and 01.40.13.62.00, Palais de la Découverte, Centre Culturel Suédois and 01.44.78.80.20, Musée de la magie, Fondation Louis Vuitton and 01.40.69.96.00, Hôtel des Monnaies, Musée Galliera and 01.56.52.86.00, Musée Carnavalet and 01.44.59.58.58, Le Louvre, Sainte-Chapelle and 01.53.40.60.80 +55.9310291 -3.2926211, 55.9795875 -3.3736290, 55.9795051 -3.3731411, 55.9180092 -3.2165117, 55.9177141 -3.2165232, 55.9197720 -3.2124574, 55.9207338 -3.2118519, 55.9211412 -3.2116770, 55.9232188 -3.2713110, 55.9193964 -3.2652222, 55.9298845 -3.2574967, 55.9292814 -3.2489744, 55.9273778 -3.2470826, 55.9325370 -3.2367186, 55.9398773 -3.2212237, 55.9282956 -3.2653245, 55.9429729 -3.3606339, 55.9392334 -3.3585545, 55.9387072 -3.3255217, 55.9359494 -3.3132810, 55.9342846 -3.3041605, 55.9335044 -3.3000747, 55.9330499 -3.2976344, 55.9298627 -3.2917640, 55.9261970 -3.2931549, 55.9343011 -3.3157894, 55.9540684 -3.4023688, 55.9191802 -3.2890802, 55.9090891 -3.2730290, 55.8926301 -3.3208572, 55.8916068 -3.3241899, 55.8882461 -3.3383885, 55.8856304 -3.3394973, 55.8788746 -3.3382465, 55.8765909 -3.3374744, 55.8753688 -3.3413701, 55.8746010 -3.3433669, 55.8754442 -3.3466839, 55.8814805 -3.3478538, 55.8838740 -3.3428988, 55.8859699 -3.3400941, 55.8901905 -3.3297626, 55.8920125 -3.3230644, 55.8931149 -3.3199173, 55.8941254 -3.3159226, 55.8954119 -3.3123968, 55.9498881 -3.2791635, 55.9406557 -3.1162756, 55.9385166 -3.1253393, 55.9361033 -3.1147220, 55.9336898 -3.1102159, 55.9334013 -3.1069114, 55.9334013 -3.1065252, 55.9441838 -3.1105250, 55.9440924 -3.1125421, 55.9439146 -3.1129970, 55.9388607 -3.4078678, 55.9377182 -3.4079403, 55.9563398 -3.1384528, 55.9583672 -3.1380034, 55.9586133 -3.1379125, 55.9365290 -3.3384035, 55.9333191 -3.2042555, 55.9256371 -3.2116654, 55.9249494 -3.2166522, 55.9253583 -3.2137897, 55.9683134 -3.2696868, 55.9372490 -3.2352906, 55.9401171 -3.2189968, 55.9346530 -3.2340923, 55.9360087 -3.2361093, 55.9309707 -3.1902664, 55.9470233 -3.2136778, 55.8765022 -3.3371475, 55.8765000 -3.3373552, 55.8798477 -3.3390718, 55.8820038 -3.3394309, 55.8840269 -3.3376620, 55.8741154 -3.3459044, 55.8787487 -3.3494977, 55.8833876 -3.3443867, 55.8818437 -3.3475147, 55.8845740 -3.3414649, 55.8856523 -3.3402440, 55.8883945 -3.3384518, 55.8902435 -3.3295290, 55.8919937 -3.3230485, 55.8931715 -3.3196345, 55.8944882 -3.3148529, 55.8964300 -3.3090140, 55.8964580 -3.3261033, 55.8977443 -3.3138562, 55.8986910 -3.3135523, 55.9011623 -3.3101650, 55.9101614 -3.3175337, 55.9090028 -3.3198201, 55.9112244 -3.3154319, 55.9122074 -3.3244850, 55.9147717 -3.3243147, 55.9172476 -3.3141716, 55.9082667 -3.3683320, 55.9119985 -3.3559041, 55.9175244 -3.3201689, 55.9179307 -3.3146584, 55.9214822 -3.2963197, 55.9232591 -3.3033567, 55.9231926 -3.2917517, 55.9249172 -3.2926733, 55.9259239 -3.3020377, 55.9264071 -3.2988209, 55.9270654 -3.2943294, 55.9280466 -3.2924574, 55.9278292 -3.3011572, 55.9295108 -3.2867840, 55.9329365 -3.3067870, 55.9312693 -3.3055464, 55.9298014 -3.3024558, 55.9316935 -3.3112913, 55.9277828 -3.3072378, 55.9277718 -3.3082778, 55.9301102 -3.2995850, 55.9307299 -3.2962123, 55.9382064 -3.3148414, 55.9382451 -3.3146688, 55.9380732 -3.3142761, 55.9379534 -3.3143254, 55.9377484 -3.3146111, 55.9360561 -3.3134078, 55.9342693 -3.3039664, 55.9349237 -3.3159468, 55.9331713 -3.3134382, 55.9331991 -3.3091330, 55.9335973 -3.3003901, 55.9330872 -3.2976357, 55.9315908 -3.2929596, 55.9186868 -3.2886896, 55.9178902 -3.2909673, 55.9188275 -3.2898464, 55.9176148 -3.2949425, 55.9181261 -3.2984479, 55.9175513 -3.2864277, 55.9197426 -3.2908369, 55.9198437 -3.2966171, 55.9208961 -3.2948119, 55.9194596 -3.2989566, 55.9144242 -3.2907241, 55.9084080 -3.2842852, 55.9320455 -3.3119915, 55.9092294 -3.2890958, 55.9108851 -3.2914545, 55.9144770 -3.2865339, 55.9113035 -3.2806372, 55.9176018 -3.2815810, 55.9147125 -3.2811816, 55.9168398 -3.2788196, 55.9142131 -3.2764932, 55.9132762 -3.2715025, 55.9102188 -3.2717224, 55.9103270 -3.2777573, 55.9119824 -3.2772230, 55.9099554 -3.2745935, 55.9100741 -3.2726776, 55.9131048 -3.2706969, 55.9142655 -3.2766389, 55.9109880 -3.2798749, 55.9117706 -3.2823805, 55.9128869 -3.2847693, 55.9173957 -3.2772058, 55.9183229 -3.2735719, 55.9200063 -3.2724109, 55.9215230 -3.2717245, 55.9200023 -3.2762674, 55.9199340 -3.2819773, 55.9215018 -3.2763807, 55.9232615 -3.2713173, 55.9246922 -3.2676352, 55.8967812 -3.3064030, 55.8977378 -3.3026287, 55.9144150 -3.2864518, 55.8992750 -3.2982293, 55.9003271 -3.2948303, 55.9019412 -3.2891579, 55.9019029 -3.2893806, 55.9025521 -3.2874507, 55.9033558 -3.2853499, 55.9049846 -3.2814342, 55.9062367 -3.2779268, 55.9071600 -3.2755416, 55.9087373 -3.2724738, 55.9083182 -3.2712923, 55.9099442 -3.2687218, 55.9124955 -3.2644213, 55.9136201 -3.2625380, 55.9174527 -3.2647107, 55.9144997 -3.2626305, 55.9193076 -3.2652191, 55.9216247 -3.2635823, 55.9230814 -3.2617413, 55.9248078 -3.2598769, 55.9153154 -3.2610730, 55.9171788 -3.2598694, 55.9187731 -3.2586250, 55.9210676 -3.2544637, 55.9226847 -3.2900244, 55.9233399 -3.2854032, 55.9419880 -3.2928830, 55.9408815 -3.2923753, 55.9376001 -3.2917115, 55.9356141 -3.2897478, 55.9325054 -3.2871313, 55.9284150 -3.2844156, 55.9249025 -3.2820460, 55.9401249 -3.2906181, 55.9400465 -3.2883675, 55.9402382 -3.2817236, 55.9378727 -3.2799768, 55.9351374 -3.2777255, 55.9301790 -3.2844611, 55.9311452 -3.2805554, 55.9313553 -3.2763774, 55.9307812 -3.2731963, 55.9273000 -3.2709374, 55.9243364 -3.2794506, 55.9251074 -3.2761631, 55.9257039 -3.2688686, 55.9251946 -3.2633464, 55.9254459 -3.2589853, 55.9239420 -3.2522469, 55.9322101 -3.2731791, 55.9329010 -3.2706725, 55.9336393 -3.2661665, 55.9335638 -3.2630104, 55.9268539 -3.2688901, 55.9284959 -3.2656306, 55.9329631 -3.2593732, 55.9346628 -3.2557144, 55.9359082 -3.2525369, 55.9296933 -3.2610278, 55.9298555 -3.2574636, 55.9318854 -3.2504862, 55.9328062 -3.2474104, 55.9368775 -3.2482297, 55.9343430 -3.2459680, 55.9358793 -3.2456362, 55.9373768 -3.2432828, 55.9405632 -3.2391741, 55.9391600 -3.2410985, 55.9371045 -3.2399842, 55.9342017 -3.2445104, 55.9364631 -3.2403239, 55.9383204 -3.2307453, 55.9388822 -3.2284737, 55.9360470 -3.2361323, 55.9345851 -3.2340527, 55.9075589 -3.2708515, 55.9071600 -3.2668392, 55.9073712 -3.2576318, 55.9011959 -3.2683402, 55.9031765 -3.2679730, 55.9035475 -3.2651059, 55.9042009 -3.2627278, 55.9046664 -3.2611433, 55.9041265 -3.2612218, 55.9068600 -3.2575352, 55.9082530 -3.2531010, 55.9094816 -3.2506930, 55.9118271 -3.2471367, 55.9138617 -3.2432021, 55.9149167 -3.2410599, 55.9065703 -3.2462482, 55.9055392 -3.2415762, 55.9047280 -3.2373593, 55.9040043 -3.2313244, 55.9040174 -3.2248441, 55.9044388 -3.2231298, 55.9055392 -3.2245241, 55.9070009 -3.2266338, 55.9085623 -3.2295466, 55.9095589 -3.2332257, 55.9102457 -3.2355353, 55.9118191 -3.2381291, 55.9134355 -3.2391246, 55.9158634 -3.2407381, 55.9172358 -3.2418700, 55.9053964 -3.2512493, 55.9189038 -3.2413153, 55.9207759 -3.2419032, 55.9220612 -3.2436566, 55.9231454 -3.2483964, 55.9246759 -3.2461586, 55.9271942 -3.2433326, 55.9283635 -3.2415537, 55.9299545 -3.2397158, 55.9324105 -3.2367528, 55.9210460 -3.2391754, 55.9239408 -3.2363550, 55.9255077 -3.2342283, 55.9277091 -3.2306058, 55.9294767 -3.2273118, 55.9327262 -3.2285510, 55.9305694 -3.2249613, 55.9292058 -3.2265349, 55.9300937 -3.2230896, 55.9310002 -3.2195807, 55.9314292 -3.2179935, 55.9337225 -3.2114222, 55.9279217 -3.2237414, 55.9226556 -3.2237835, 55.9226931 -3.2257646, 55.9256341 -3.2242615, 55.9246017 -3.2223565, 55.9247037 -3.2193189, 55.9247925 -3.2176092, 55.9249824 -3.2160535, 55.9254761 -3.2111649, 55.9353980 -3.2309408, 55.9366122 -3.2281297, 55.9380129 -3.2265545, 55.9378441 -3.2253350, 55.9391409 -3.2250558, 55.9397575 -3.2256219, 55.9414410 -3.2232711, 55.9435081 -3.2199229, 55.9454900 -3.2173512, 55.9577324 -3.4028820, 55.9565716 -3.4124666, 55.9565443 -3.4054179, 55.9562304 -3.4030038, 55.9578366 -3.4032061, 55.9550446 -3.4011165, 55.9537434 -3.4028178, 55.9529605 -3.4044776, 55.9462687 -3.4123717, 55.9399631 -3.4079627, 55.9387883 -3.4077527, 55.9377144 -3.4044543, 55.9391423 -3.3995092, 55.9376264 -3.3913805, 55.9389283 -3.3906747, 55.9383711 -3.3742204, 55.9378177 -3.3662518, 55.9371957 -3.3599381, 55.9429929 -3.3606376, 55.9368804 -3.3506686, 55.9369634 -3.3359957, 55.9390922 -3.3260946, 55.9229613 -3.3781642, 55.9089054 -3.4073417, 55.9206810 -3.3895891, 55.9207749 -3.3849287, 55.9214328 -3.3815675, 55.9209944 -3.3792944, 55.9156365 -3.3746719, 55.9213537 -3.3394115, 55.9216109 -3.3364117, 55.9214877 -3.3394801, 55.9218609 -3.3357322, 55.9190122 -3.3141327, 55.9524334 -3.3528166, 55.9518454 -3.3474309, 55.9512679 -3.3402359, 55.9497345 -3.3341454, 55.9466451 -3.3273295, 55.9453465 -3.3244188, 55.9418947 -3.3169838, 55.9520847 -3.3035079, 55.9518762 -3.3070246, 55.9503885 -3.3080662, 55.9493412 -3.3121920, 55.9469832 -3.3142260, 55.9418512 -3.3126432, 55.9408369 -3.3116963, 55.9412025 -3.3060407, 55.9416783 -3.3009811, 55.9423026 -3.2963106, 55.9587957 -3.3001937, 55.9572858 -3.2993742, 55.9499052 -3.2790606, 55.9536582 -3.2784957, 55.9370630 -3.3919366, 55.9561814 -3.2814307, 55.9558569 -3.2848148, 55.9555580 -3.2872051, 55.9553282 -3.2889777, 55.9544876 -3.2937387, 55.9537810 -3.2968384, 55.9525607 -3.2968986, 55.9496808 -3.2953881, 55.9486982 -3.2948268, 55.9452390 -3.2939428, 55.9429096 -3.2918926, 55.9431922 -3.2870802, 55.9429288 -3.2837142, 55.9425070 -3.2793090, 55.9418960 -3.2734651, 55.9422550 -3.2680807, 55.9425265 -3.2652716, 55.9439641 -3.2573764, 55.9444582 -3.2547504, 55.9376372 -3.2495189, 55.9393336 -3.2514787, 55.9418735 -3.2517848, 55.9432225 -3.2516682, 55.9450042 -3.2500326, 55.9453832 -3.2441638, 55.9457364 -3.2403321, 55.9457885 -3.2351456, 55.9457795 -3.2288522, 55.9460094 -3.2229027, 55.9459397 -3.2196471, 55.9467297 -3.2160853, 55.9468911 -3.2157329, 55.9495730 -3.2096804, 55.9498456 -3.2090591, 55.9470251 -3.2128783, 55.9466831 -3.2111062, 55.9457511 -3.2083497, 55.9407674 -3.2171557, 55.9414929 -3.2189566, 55.9420067 -3.2142265, 55.9429862 -3.2105745, 55.9435721 -3.2079032, 55.9452599 -3.2068906, 55.9458494 -3.2043614, 55.9463849 -3.2002560, 55.9473655 -3.1962398, 55.9476701 -3.1928242, 55.9476671 -3.2034432, 55.9476364 -3.2015298, 55.9486521 -3.1951042, 55.9486914 -3.1982744, 55.9493803 -3.1935304, 55.9826102 -3.3849972, 55.9819929 -3.3895432, 55.9819242 -3.3908551, 55.9825780 -3.3942285, 55.9839641 -3.4097289, 55.9845935 -3.4129431, 55.9866836 -3.4194026, 55.9873161 -3.4160882, 55.9886532 -3.4138927, 55.9895768 -3.4098735, 55.9899607 -3.4056361, 55.9846372 -3.3964826, 55.9867620 -3.3969118, 55.9890911 -3.3975569, 55.9909234 -3.3992102, 55.9871450 -3.3956272, 55.9875380 -3.3902711, 55.9873152 -3.3869128, 55.9868637 -3.3823120, 55.9044487 -3.1454869, 55.9903465 -3.3854493, 55.9905394 -3.3854731, 55.9865016 -3.3761275, 55.9824804 -3.3733079, 55.9842326 -3.3635923, 55.9842318 -3.3579661, 55.9802903 -3.3478429, 55.9876179 -3.4043614, 55.9796190 -3.3736553, 55.9717085 -3.3279954, 55.9679830 -3.3226445, 55.9654902 -3.3179614, 55.9619999 -3.3132611, 55.9609748 -3.3074114, 55.9583863 -3.3074683, 55.9607983 -3.3054190, 55.9603677 -3.2993974, 55.9606855 -3.2948105, 55.9612294 -3.2900709, 55.9619792 -3.2836720, 55.9588557 -3.2798684, 55.9615690 -3.2825324, 55.9627081 -3.2757823, 55.9624444 -3.2699904, 55.9621094 -3.2667435, 55.9639498 -3.2738847, 55.9616143 -3.3064237, 55.9632763 -3.3073127, 55.9667125 -3.3078131, 55.9713376 -3.3004221, 55.9698871 -3.3075677, 55.9718166 -3.3061105, 55.9733660 -3.3040475, 55.9752612 -3.2990153, 55.9744680 -3.2975465, 55.9733639 -3.2957308, 55.9736867 -3.2897965, 55.9728924 -3.2866934, 55.9703170 -3.2811761, 55.9683876 -3.2783405, 55.9663230 -3.2755327, 55.9657954 -3.2744099, 55.9655002 -3.2725418, 55.9656142 -3.2695552, 55.9713952 -3.2719557, 55.9691832 -3.2700510, 55.9665452 -3.2666823, 55.9661404 -3.2644720, 55.9659675 -3.2603008, 55.9663975 -3.2551399, 55.9669130 -3.2516956, 55.9735812 -3.2757555, 55.9730117 -3.2734774, 55.9722077 -3.2714362, 55.9729455 -3.2668252, 55.9735675 -3.2631278, 55.9742485 -3.2589195, 55.9748610 -3.2552537, 55.9743594 -3.2533305, 55.9740185 -3.2532714, 55.9723304 -3.2610845, 55.9725024 -3.2535321, 55.9721395 -3.2524896, 55.9701437 -3.2508068, 55.9675855 -3.2487696, 55.9648925 -3.2493877, 55.9623997 -3.2479778, 55.9644818 -3.2676060, 55.9630502 -3.2643872, 55.9551721 -3.2579960, 55.9613037 -3.2716832, 55.9580495 -3.2683248, 55.9599376 -3.2664803, 55.9600324 -3.2616137, 55.9604236 -3.2585027, 55.9616357 -3.2629955, 55.9601785 -3.2561080, 55.9591002 -3.2534620, 55.9580627 -3.2508709, 55.9570634 -3.2482852, 55.9462547 -3.2503888, 55.9467499 -3.2476345, 55.9482887 -3.2483085, 55.9548507 -3.2577933, 55.9504434 -3.2502676, 55.9506589 -3.2467353, 55.9510521 -3.2416071, 55.9515904 -3.2479183, 55.9515662 -3.2440899, 55.9560438 -3.2447140, 55.9578918 -3.2417264, 55.9515515 -3.2375231, 55.9520270 -3.2340149, 55.9525865 -3.2301729, 55.9525057 -3.2266066, 55.9522993 -3.2247346, 55.9517980 -3.2257601, 55.9509222 -3.2222408, 55.9500692 -3.2194594, 55.9500952 -3.2159210, 55.9514349 -3.2130963, 55.9564424 -3.2435095, 55.9556979 -3.2404269, 55.9546994 -3.2327545, 55.9547623 -3.2291528, 55.9549100 -3.2260503, 55.9565634 -3.2380647, 55.9571584 -3.2342742, 55.9581693 -3.2284212, 55.9607560 -3.2558704, 55.9607241 -3.2492855, 55.9612008 -3.2447994, 55.9622742 -3.2408290, 55.9639764 -3.2386566, 55.9668601 -3.2378355, 55.9674008 -3.2472135, 55.9678600 -3.2429464, 55.9684348 -3.2376134, 55.9809011 -3.2361106, 55.9819186 -3.2299179, 55.9835884 -3.2255631, 55.9820443 -3.2236070, 55.9755146 -3.2528390, 55.9763614 -3.2499658, 55.9765987 -3.2451657, 55.9766945 -3.2433686, 55.9787460 -3.2416288, 55.9766506 -3.2391257, 55.9746085 -3.2384675, 55.9728249 -3.2380100, 55.9698270 -3.2367766, 55.9676125 -3.2353921, 55.9654876 -3.2338032, 55.9639658 -3.2328402, 55.9630665 -3.2338676, 55.9614915 -3.2301671, 55.9601435 -3.2283783, 55.9580206 -3.2254421, 55.9563691 -3.2233567, 55.9552380 -3.2192535, 55.9577146 -3.2175590, 55.9544860 -3.2153379, 55.9558088 -3.2163084, 55.9574409 -3.2136525, 55.9577176 -3.2110983, 55.9587670 -3.2249388, 55.9592419 -3.2214458, 55.9594385 -3.2162145, 55.9591627 -3.2129430, 55.9587082 -3.2097806, 55.9582498 -3.2083579, 55.9601149 -3.2048779, 55.9605028 -3.2019585, 55.9776003 -3.2376176, 55.9780587 -3.2358053, 55.9785473 -3.2327758, 55.9798702 -3.2307825, 55.9807570 -3.2248233, 55.9807136 -3.2239533, 55.9791444 -3.2133545, 55.9750509 -3.2382573, 55.9753610 -3.2351103, 55.9770716 -3.2212544, 55.9756199 -3.2316891, 55.9766181 -3.2307113, 55.9786796 -3.2294305, 55.9790730 -3.2251158, 55.9783022 -3.2231042, 55.9758021 -3.2269354, 55.9760093 -3.2241696, 55.9777793 -3.2187446, 55.9768282 -3.2158782, 55.9746908 -3.2152599, 55.9720616 -3.2144788, 55.9686890 -3.2346734, 55.9691570 -3.2301059, 55.9698341 -3.2234619, 55.9702408 -3.2195972, 55.9709671 -3.2128859, 55.9700933 -3.2078462, 55.9689465 -3.2067624, 55.9677907 -3.2055970, 55.9661868 -3.2040897, 55.9648275 -3.2026212, 55.9625463 -3.1985152, 55.9623519 -3.1999659, 55.9612708 -3.1979256, 55.9590746 -3.2001052, 55.9574525 -3.1992269, 55.9576308 -3.2078827, 55.9571589 -3.2057631, 55.9570635 -3.2040021, 55.9579700 -3.1990768, 55.9589149 -3.1952296, 55.9516292 -3.2116129, 55.9505151 -3.2088197, 55.9516840 -3.2088535, 55.9565296 -3.2022609, 55.9551067 -3.2015189, 55.9026109 -3.2208010, 55.9022133 -3.2164859, 55.9021871 -3.2127583, 55.9021851 -3.2083916, 55.9018727 -3.2063506, 55.8969766 -3.2036602, 55.8992966 -3.2042234, 55.9020303 -3.2049319, 55.9042298 -3.2071980, 55.9067134 -3.2084524, 55.9090267 -3.2098842, 55.9104665 -3.2114969, 55.9128718 -3.2136198, 55.9152539 -3.2135342, 55.9171693 -3.2133860, 55.9001253 -3.2003306, 55.8991537 -3.1958384, 55.8989540 -3.1941849, 55.8992204 -3.1898748, 55.8997708 -3.1756092, 55.8997328 -3.1720575, 55.8996750 -3.1705683, 55.8999131 -3.1644178, 55.9079326 -3.2251115, 55.9091271 -3.2224615, 55.9102950 -3.2206745, 55.9115037 -3.2193046, 55.9208769 -3.2949233, 55.9137133 -3.2175820, 55.9157854 -3.2170389, 55.9180646 -3.2164542, 55.9198187 -3.2126207, 55.9212009 -3.2118637, 55.9234619 -3.2106294, 55.9167866 -3.2304883, 55.9167305 -3.2277411, 55.9167656 -3.2233099, 55.9189490 -3.2224186, 55.9210591 -3.2216689, 55.9214794 -3.2218741, 55.9223199 -3.2213885, 55.9226498 -3.2171100, 55.9231082 -3.2143717, 55.9244036 -3.2105713, 55.9247198 -3.2085646, 55.9248235 -3.2034785, 55.9332773 -3.1804495, 55.9256145 -3.1997740, 55.9261116 -3.1939316, 55.9262593 -3.1898070, 55.9263697 -3.1876817, 55.9274933 -3.1875312, 55.9290961 -3.1887496, 55.9314124 -3.1865714, 55.9315635 -3.1867361, 55.9327292 -3.1841946, 55.9335945 -3.1857897, 55.9298810 -3.1906863, 55.9322050 -3.1928865, 55.9304941 -3.1923377, 55.9259667 -3.2093706, 55.9281335 -3.2095336, 55.9303294 -3.2098783, 55.9325309 -3.2101524, 55.9312888 -3.1882004, 55.9321908 -3.2093061, 55.9333100 -3.2046099, 55.9337875 -3.2001867, 55.9342178 -3.1974967, 55.9309516 -3.2025800, 55.9352614 -3.1942899, 55.9360447 -3.1944235, 55.9385819 -3.1950517, 55.9398783 -3.1952903, 55.9366483 -3.1940225, 55.9381677 -3.1922430, 55.9397207 -3.1863782, 55.9396831 -3.1901910, 55.9415623 -3.2000095, 55.9432237 -3.2023940, 55.9346560 -3.2102493, 55.9360542 -3.2094587, 55.9371071 -3.2072084, 55.9398797 -3.2045183, 55.9413443 -3.2035998, 55.9428297 -3.2037418, 55.9312988 -3.2257047, 55.9340812 -3.2232566, 55.9363884 -3.2200155, 55.9372212 -3.2174708, 55.9385605 -3.2146951, 55.9399009 -3.2118071, 55.9409026 -3.2095928, 55.9418569 -3.2046167, 55.9451034 -3.2054205, 55.9464821 -3.2059437, 55.9479806 -3.2093194, 55.9480111 -3.2070831, 55.9492390 -3.2069040, 55.9415413 -3.1997466, 55.9397680 -3.1895210, 55.9398950 -3.1857881, 55.9443353 -3.2022970, 55.9449518 -3.1965229, 55.9507141 -3.2047476, 55.9508345 -3.2040132, 55.9509544 -3.2033403, 55.9512832 -3.2014235, 55.9513658 -3.2009238, 55.9534513 -3.1984184, 55.9545267 -3.1976404, 55.9530617 -3.1968880, 55.9525579 -3.1966188, 55.9514556 -3.1965060, 55.9502363 -3.1950715, 55.9515098 -3.1917476, 55.9518015 -3.1918652, 55.9523041 -3.1921025, 55.9487161 -3.1921254, 55.9473980 -3.1913002, 55.9475336 -3.1896852, 55.9461587 -3.1899395, 55.9461484 -3.1857678, 55.9446725 -3.1868648, 55.9426946 -3.1843831, 55.9415201 -3.1833659, 55.9523582 -3.1952481, 55.9524140 -3.1949299, 55.9530238 -3.1937098, 55.9548982 -3.1930798, 55.9531749 -3.1905850, 55.9561036 -3.1918150, 55.9566140 -3.1887839, 55.9713422 -3.2069188, 55.9776927 -3.2092865, 55.9762411 -3.2097861, 55.9749320 -3.2095049, 55.9745820 -3.2067057, 55.9732970 -3.2057714, 55.9719948 -3.2047984, 55.9718053 -3.2036348, 55.9725638 -3.1985396, 55.9733278 -3.1933986, 55.9807961 -3.2226219, 55.9803223 -3.2203380, 55.9802704 -3.2158099, 55.9804176 -3.2108942, 55.9800908 -3.2075664, 55.9799677 -3.2036199, 55.9795467 -3.1979494, 55.9778986 -3.1964721, 55.9776734 -3.1928273, 55.9756180 -3.1908614, 55.9619191 -3.1954207, 55.9597614 -3.1911416, 55.9587469 -3.1900917, 55.9574145 -3.1883681, 55.9540301 -3.1883045, 55.9542782 -3.1877994, 55.9553364 -3.1870704, 55.9555140 -3.1882376, 55.9607383 -3.1852653, 55.9588728 -3.1841437, 55.9619623 -3.1801852, 55.9633092 -3.1784891, 55.9631120 -3.1956917, 55.9641164 -3.1934996, 55.9659262 -3.1894058, 55.9647774 -3.1864708, 55.9623731 -3.1823283, 55.9676984 -3.1873293, 55.9736920 -3.1887826, 55.9727435 -3.1878363, 55.9700983 -3.1863293, 55.9686812 -3.1841284, 55.9672532 -3.1822368, 55.9655560 -3.1802465, 55.9806970 -3.1970073, 55.9808524 -3.1939509, 55.9803117 -3.1904556, 55.9799157 -3.1886011, 55.9791442 -3.1838015, 55.9773724 -3.1798230, 55.9740475 -3.1882178, 55.9745333 -3.1848625, 55.9749728 -3.1821357, 55.9692348 -3.1839771, 55.9706590 -3.1803378, 55.9722461 -3.1760338, 55.9719668 -3.1730260, 55.9760045 -3.1700682, 55.9801664 -3.1773603, 55.9800397 -3.1776022, 55.9799062 -3.1778409, 55.9788191 -3.1802177, 55.9780301 -3.1791039, 55.9771964 -3.1743509, 55.9771466 -3.1737565, 55.9765391 -3.1705490, 55.9759268 -3.1678383, 55.9755202 -3.1648177, 55.9721151 -3.1537189, 55.9641711 -3.1775450, 55.9664640 -3.1754998, 55.9681128 -3.1740918, 55.9696714 -3.1727130, 55.9711134 -3.1726962, 55.9713906 -3.1702867, 55.9729980 -3.1685221, 55.9504910 -3.1854886, 55.9510338 -3.1816628, 55.9515984 -3.1790606, 55.9524685 -3.1756629, 55.9501355 -3.1837930, 55.9500542 -3.1787108, 55.9507088 -3.1770555, 55.9507849 -3.1747798, 55.9539076 -3.1739661, 55.9537308 -3.1871585, 55.9538854 -3.1830563, 55.9534691 -3.1798335, 55.9559116 -3.1730017, 55.9561660 -3.1727051, 55.9568104 -3.1728667, 55.9579461 -3.1831271, 55.9579339 -3.1826673, 55.9578767 -3.1789396, 55.9578185 -3.1765672, 55.9577142 -3.1730479, 55.9581423 -3.1720186, 55.9605915 -3.1714539, 55.9629055 -3.1709645, 55.9641540 -3.1706475, 55.9660986 -3.1701035, 55.9680651 -3.1686162, 55.9696734 -3.1682011, 55.9733850 -3.1663395, 55.9719455 -3.1622063, 55.9649390 -3.1745777, 55.9645748 -3.1721004, 55.9644946 -3.1699298, 55.9630926 -3.1658419, 55.9633070 -3.1615949, 55.9682171 -3.1659398, 55.9660539 -3.1637920, 55.9646916 -3.1624694, 55.9628215 -3.1597221, 55.9617629 -3.1585851, 55.9597776 -3.1556585, 55.9613297 -3.1539907, 55.9691573 -3.1661209, 55.9694518 -3.1635218, 55.9630141 -3.1573889, 55.9695434 -3.1596508, 55.9674340 -3.1575049, 55.9651571 -3.1550017, 55.9656331 -3.1511869, 55.9656313 -3.1484954, 55.9634291 -3.1466359, 55.9635847 -3.1540418, 55.9622804 -3.1561015, 55.9574085 -3.1686582, 55.9573428 -3.1680155, 55.9570980 -3.1653973, 55.9573086 -3.1630811, 55.9587596 -3.1568936, 55.9592305 -3.1555460, 55.9594930 -3.1515012, 55.9699420 -3.1593102, 55.9700232 -3.1573578, 55.9617219 -3.1524164, 55.9606175 -3.1513584, 55.9573263 -3.1468079, 55.9571410 -3.1435348, 55.9566243 -3.1391790, 55.9702604 -3.1531509, 55.9737969 -3.1583519, 55.9710112 -3.1497283, 55.9692879 -3.1437169, 55.9622638 -3.1521121, 55.9624755 -3.1486902, 55.9626125 -3.1455545, 55.9612620 -3.1429355, 55.9600832 -3.1420268, 55.9588210 -3.1435684, 55.9573206 -3.1406410, 55.9591989 -3.1435154, 55.9601857 -3.1399160, 55.9602178 -3.1373142, 55.9655172 -3.1346180, 55.9625515 -3.1356365, 55.9605891 -3.1360276, 55.9582972 -3.1380268, 55.9568904 -3.1638169, 55.9561712 -3.1598115, 55.9557947 -3.1568532, 55.9551375 -3.1512278, 55.9551965 -3.1477860, 55.9552066 -3.1457361, 55.9554578 -3.1419156, 55.9558481 -3.1395406, 55.9604618 -3.1352069, 55.9609238 -3.1308953, 55.9603584 -3.1278833, 55.9576672 -3.1248964, 55.9561914 -3.1374044, 55.9564983 -3.1333450, 55.9568488 -3.1304081, 55.9573861 -3.1256986, 55.9575075 -3.1242125, 55.9530939 -3.1224190, 55.9566670 -3.1207925, 55.9566223 -3.1207752, 55.9550055 -3.1177334, 55.9534948 -3.1152918, 55.9531548 -3.1147172, 55.9522016 -3.1118231, 55.9545671 -3.1400955, 55.9529070 -3.1379006, 55.9504050 -3.1363860, 55.9478951 -3.1366968, 55.9521591 -3.1344970, 55.9514733 -3.1306358, 55.9500064 -3.1279347, 55.9482035 -3.1266012, 55.9541352 -3.1478987, 55.9518317 -3.1434104, 55.9501708 -3.1403347, 55.9492291 -3.1391700, 55.9474440 -3.1371825, 55.9462397 -3.1359437, 55.9524812 -3.1884943, 55.9517665 -3.1881346, 55.9512784 -3.1879129, 55.9489276 -3.1868532, 55.9484886 -3.1866438, 55.9457222 -3.1847309, 55.9454420 -3.1844541, 55.9459249 -3.1824225, 55.9431937 -3.1796005, 55.9415447 -3.1780319, 55.9406915 -3.1765923, 55.9430769 -3.1830456, 55.9428271 -3.1828112, 55.9413427 -3.1812830, 55.9399611 -3.1824940, 55.9375604 -3.1807719, 55.9405823 -3.1806167, 55.9393125 -3.1783897, 55.9349560 -3.1933400, 55.9364318 -3.1841475, 55.9355213 -3.1900428, 55.9359617 -3.1872388, 55.9362963 -3.1842234, 55.9369103 -3.1811043, 55.9369174 -3.1773439, 55.9348651 -3.1752487, 55.9326016 -3.1729391, 55.9307156 -3.1710012, 55.9290917 -3.1693572, 55.9269439 -3.1671709, 55.9346850 -3.1788915, 55.9328299 -3.1774425, 55.9293197 -3.1752233, 55.9275577 -3.1825611, 55.9284165 -3.1799312, 55.9291620 -3.1776194, 55.9273709 -3.1741560, 55.9249059 -3.1725771, 55.9262514 -3.1842179, 55.9246734 -3.1790517, 55.9244575 -3.1734277, 55.9261166 -3.1671560, 55.9231702 -3.1708443, 55.9403137 -3.1729254, 55.9383803 -3.1730161, 55.9368395 -3.1706322, 55.9341108 -3.1674764, 55.9325696 -3.1651250, 55.9296541 -3.1617563, 55.9271971 -3.1659721, 55.9283742 -3.1636257, 55.9302384 -3.1588606, 55.9315113 -3.1563215, 55.9335259 -3.1647215, 55.9336500 -3.1610915, 55.9329893 -3.1577742, 55.9322356 -3.1548702, 55.9323715 -3.1508247, 55.9320585 -3.1448768, 55.9324564 -3.1423049, 55.9334715 -3.1417330, 55.9371605 -3.1441148, 55.9421915 -3.1450760, 55.9435893 -3.1417424, 55.9447367 -3.1371807, 55.9258061 -3.1666267, 55.9238546 -3.1668960, 55.9213084 -3.1672356, 55.9185947 -3.1672340, 55.9157790 -3.1666214, 55.9142340 -3.1646711, 55.9130586 -3.1635319, 55.9116965 -3.1631391, 55.9174991 -3.1643209, 55.9149970 -3.1618939, 55.9136550 -3.1603178, 55.9128738 -3.1621664, 55.9090851 -3.1632404, 55.9070880 -3.1639610, 55.9042217 -3.1658426, 55.9010257 -3.1637208, 55.8996725 -3.1622995, 55.8981742 -3.1611032, 55.8961816 -3.1611818, 55.8938088 -3.1614281, 55.9011723 -3.1595293, 55.9020957 -3.1556311, 55.9029463 -3.1524165, 55.9035170 -3.1500021, 55.9118084 -3.1584580, 55.9101066 -3.1569506, 55.9084138 -3.1552983, 55.9063969 -3.1524068, 55.9054049 -3.1508738, 55.9042647 -3.1488406, 55.9003169 -3.1443415, 55.8982632 -3.1419781, 55.8958406 -3.1386765, 55.9240396 -3.1660970, 55.9233103 -3.1645912, 55.9210613 -3.1606007, 55.9188740 -3.1556833, 55.9176859 -3.1532867, 55.9149695 -3.1492635, 55.9136116 -3.1457571, 55.9148831 -3.1449609, 55.9163996 -3.1435672, 55.9188633 -3.1390654, 55.9133388 -3.1465021, 55.9134458 -3.1394164, 55.9150827 -3.1378569, 55.9165472 -3.1373313, 55.9183824 -3.1388347, 55.9116524 -3.1422642, 55.9102585 -3.1400862, 55.9087401 -3.1368944, 55.9063511 -3.1337589, 55.9038561 -3.1415666, 55.9037285 -3.1398193, 55.9046264 -3.1360067, 55.9050285 -3.1313637, 55.9041843 -3.1274042, 55.9029199 -3.1235102, 55.9000125 -3.1132722, 55.9066649 -3.1322431, 55.9081087 -3.1296137, 55.9124487 -3.1266841, 55.9285045 -3.1597852, 55.9275461 -3.1565876, 55.9232264 -3.1496095, 55.9215912 -3.1466966, 55.9211218 -3.1440263, 55.9183485 -3.1349359, 55.9150244 -3.1447410, 55.9135589 -3.1456275, 55.9151883 -3.1287635, 55.9137742 -3.1261785, 55.9327215 -3.1402382, 55.9329222 -3.1379711, 55.9327641 -3.1346917, 55.9324727 -3.1331238, 55.9319582 -3.1294592, 55.9305181 -3.1267762, 55.9293936 -3.1231475, 55.9328743 -3.1275489, 55.9337366 -3.1236521, 55.9342426 -3.1203851, 55.9340574 -3.1179891, 55.9339027 -3.1152528, 55.9458672 -3.1344436, 55.9470928 -3.1301399, 55.9478743 -3.1252625, 55.9483048 -3.1223925, 55.9434695 -3.1313473, 55.9413212 -3.1275061, 55.9388161 -3.1253361, 55.9426890 -3.1272897, 55.9429617 -3.1230065, 55.9472040 -3.1258516, 55.9452097 -3.1238242, 55.9435147 -3.1224781, 55.9408637 -3.1194718, 55.9407244 -3.1160733, 55.9433746 -3.1193395, 55.9344133 -3.1144351, 55.9357843 -3.1148587, 55.9380236 -3.1152253, 55.9392495 -3.1151223, 55.9411150 -3.1156042, 55.9426971 -3.1165303, 55.9389787 -3.1123728, 55.9395400 -3.1082678, 55.9397389 -3.1057825, 55.9468361 -3.1188912, 55.9498521 -3.1192344, 55.9513654 -3.1168438, 55.9525057 -3.1149548, 55.9517068 -3.1098871, 55.9507964 -3.1062097, 55.9500163 -3.1030166, 55.9493234 -3.1001144, 55.9488748 -3.0949933, 55.9487100 -3.0912894, 55.9184116 -3.2249619, 55.9485886 -3.0867221, 55.9487029 -3.0870136, 55.9477970 -3.0827446, 55.9440627 -3.1122184, 55.9443608 -3.1094208, 55.9442841 -3.1059600, 55.9444109 -3.1008238, 55.9448284 -3.0964920, 55.9452578 -3.0934432, 55.9457972 -3.0904389, 55.9463270 -3.0874274, 55.9467525 -3.0840125, 55.9466644 -3.0817683, 55.9327730 -3.1139878, 55.9337031 -3.1104929, 55.9336271 -3.1089539, 55.9348872 -3.1022740, 55.9333574 -3.1019670, 55.9338002 -3.0996745, 55.9345981 -3.0938221, 55.9351027 -3.0906187, 55.9358019 -3.0877568, 55.9369793 -3.0856927, 55.9182126 -3.2268918, 55.9195407 -3.2387433, 55.9191616 -3.2381110, 55.9851761 -3.1897689, 55.9828922 -3.1939496, 55.9814659 -3.1909085, 55.9365429 -3.0862728, 55.9358310 -3.0875175, 55.9348857 -3.0916731, 55.9345115 -3.0934515, 55.9337249 -3.0919727, 55.9335685 -3.0996143, 55.9332608 -3.1017081, 55.9347718 -3.1031813, 55.9334621 -3.1083249, 55.9335903 -3.1110499, 55.9327294 -3.1138425, 55.9465275 -3.0820046, 55.9465931 -3.0847607, 55.9460980 -3.0879174, 55.9454827 -3.0914549, 55.9448685 -3.0948482, 55.9443970 -3.0990533, 55.9441321 -3.1058756, 55.9441375 -3.1102630, 55.9438700 -3.1130254, 55.9436640 -3.1149409, 55.9469740 -3.0812965, 55.9480459 -3.0840647, 55.9484863 -3.0881285, 55.9485396 -3.0912526, 55.9487362 -3.0944129, 55.9492575 -3.1004488, 55.9322565 -3.1611619, 55.9322142 -3.1627933, 55.9333600 -3.1647608, 55.9500203 -3.1035773, 55.9508004 -3.1067703, 55.9515630 -3.1098990, 55.9521088 -3.1121407, 55.9516506 -3.1161153, 55.9486979 -3.1196816, 55.9464983 -3.1184812, 55.9442902 -3.1172326, 55.9405943 -3.1155572, 55.9411746 -3.1209215, 55.9449944 -3.1237859, 55.9387816 -3.1046926, 55.9386947 -3.1052026, 55.9395300 -3.1060327, 55.9394153 -3.1085088, 55.9387324 -3.1127820, 55.9417785 -3.1157674, 55.9407328 -3.1151449, 55.9390990 -3.1149699, 55.9351824 -3.1147189, 55.9343168 -3.1141762, 55.9430442 -3.1208634, 55.9454379 -3.1244233, 55.9426315 -3.1257189, 55.9375420 -3.1241465, 55.9385017 -3.1253270, 55.9410608 -3.1274826, 55.9426698 -3.1303633, 55.9437932 -3.1325388, 55.9489148 -3.1205366, 55.9474434 -3.1271876, 55.9465923 -3.1318067, 55.9338651 -3.1168303, 55.9340391 -3.1200271, 55.9336765 -3.1233462, 55.9326166 -3.1282137, 55.9302325 -3.1265598, 55.9321246 -3.1306062, 55.9324674 -3.1336999, 55.9326522 -3.1394240, 55.9139400 -3.1267273, 55.9185387 -3.1356912, 55.9155121 -3.1296735, 55.9215921 -3.1375193, 55.9187972 -3.1389581, 55.9208845 -3.1434592, 55.9217098 -3.1474682, 55.9238711 -3.1508128, 55.9272641 -3.1560030, 55.9283368 -3.1617553, 55.9124056 -3.1264908, 55.9081402 -3.1291187, 55.9069794 -3.1312605, 55.9001501 -3.1143357, 55.9028163 -3.1241578, 55.9042957 -3.1285179, 55.9052763 -3.1323346, 55.9053399 -3.1346359, 55.9036494 -3.1376896, 55.9036449 -3.1401208, 55.9040533 -3.1435558, 55.9041279 -3.1471250, 55.9085559 -3.1368622, 55.9163352 -3.1434213, 55.9098097 -3.1396048, 55.9173894 -3.1366200, 55.9163322 -3.1372610, 55.9143183 -3.1373781, 55.9137779 -3.1345943, 55.9132135 -3.1402416, 55.9122286 -3.1444287, 55.9135327 -3.1472625, 55.9150704 -3.1497274, 55.9174499 -3.1530936, 55.9186680 -3.1556511, 55.9195122 -3.1576477, 55.9211555 -3.1609401, 55.9230253 -3.1643266, 55.9239711 -3.1662740, 55.8958061 -3.1375560, 55.8981045 -3.1419933, 55.9001346 -3.1443537, 55.9045252 -3.1498080, 55.9057028 -3.1516824, 55.9070754 -3.1538016, 55.9089055 -3.1560807, 55.9102064 -3.1572552, 55.9121326 -3.1588165, 55.9031764 -3.1508718, 55.9022551 -3.1544616, 55.9012747 -3.1581888, 55.8938714 -3.1619022, 55.8995925 -3.1622011, 55.8998476 -3.1627845, 55.9010755 -3.1640688, 55.9035000 -3.1661408, 55.9058085 -3.1652823, 55.9073292 -3.1641122, 55.9091429 -3.1634886, 55.9115595 -3.1633750, 55.9145960 -3.1615459, 55.9178537 -3.1648276, 55.9135281 -3.1642499, 55.9153239 -3.1662878, 55.9181514 -3.1675567, 55.9209916 -3.1674821, 55.9238706 -3.1671045, 55.9259533 -3.1668815, 55.9451610 -3.1359397, 55.9436407 -3.1410394, 55.9429081 -3.1432174, 55.9371271 -3.1438416, 55.9336787 -3.1416750, 55.9323444 -3.1421480, 55.9318072 -3.1458138, 55.9320983 -3.1502563, 55.9327321 -3.1574144, 55.9334320 -3.1603807, 55.9335825 -3.1625302, 55.9310551 -3.1569770, 55.9299760 -3.1590609, 55.9276757 -3.1645867, 55.9301942 -3.1626048, 55.9335171 -3.1665942, 55.9352278 -3.1690789, 55.9362943 -3.1703276, 55.9380056 -3.1727326, 55.9234523 -3.1714129, 55.9257061 -3.1677999, 55.9243710 -3.1740173, 55.9222245 -3.1769786, 55.9245930 -3.1795592, 55.9250644 -3.1729179, 55.9281383 -3.1747234, 55.9294062 -3.1765064, 55.9284436 -3.1795355, 55.9274586 -3.1825436, 55.9304679 -3.1763625, 55.9324076 -3.1774297, 55.9349862 -3.1793489, 55.9365575 -3.1804052, 55.9273238 -3.1678350, 55.9287603 -3.1693022, 55.9308016 -3.1713795, 55.9333761 -3.1740032, 55.9345443 -3.1751968, 55.9359412 -3.1766219, 55.9378596 -3.1785699, 55.9371680 -3.1785827, 55.9364376 -3.1835393, 55.9361605 -3.1852598, 55.9350575 -3.1868910, 55.9334041 -3.1850316, 55.9327512 -3.1837791, 55.9316014 -3.1856008, 55.9357290 -3.1880801, 55.9352794 -3.1908999, 55.9347514 -3.1934610, 55.9392124 -3.1781004, 55.9403904 -3.1806688, 55.9380758 -3.1813799, 55.9406842 -3.1776524, 55.9417310 -3.1818531, 55.9432691 -3.1832993, 55.9401121 -3.1759873, 55.9416881 -3.1786246, 55.9430330 -3.1796430, 55.9442893 -3.1810875, 55.9456619 -3.1831172, 55.9457698 -3.1849764, 55.9488929 -3.1870504, 55.9492763 -3.1872419, 55.9513723 -3.1882358, 55.9521151 -3.1886009, 55.9460412 -3.1360340, 55.9477331 -3.1377009, 55.9495818 -3.1399010, 55.9506764 -3.1410542, 55.9529056 -3.1458123, 55.9536640 -3.1473562, 55.9479602 -3.1266742, 55.9498886 -3.1280595, 55.9515212 -3.1312938, 55.9520218 -3.1344697, 55.9483951 -3.1370477, 55.9507527 -3.1366844, 55.9527612 -3.1381206, 55.9550194 -3.1407335, 55.9535321 -3.1157210, 55.9534084 -3.1154933, 55.9549542 -3.1180265, 55.9567874 -3.1213887, 55.9572446 -3.1258367, 55.9570083 -3.1277058, 55.9565426 -3.1314563, 55.9562689 -3.1348439, 55.9576607 -3.1251460, 55.9601254 -3.1278125, 55.9606760 -3.1314648, 55.9603409 -3.1346748, 55.9537924 -3.1226794, 55.9566744 -3.1386198, 55.9585592 -3.1378743, 55.9609292 -3.1361657, 55.9631511 -3.1359104, 55.9653780 -3.1350945, 55.9601011 -3.1372948, 55.9600487 -3.1400484, 55.9564001 -3.1391243, 55.9573867 -3.1412676, 55.9587207 -3.1437256, 55.9586697 -3.1434197, 55.9592475 -3.1440935, 55.9606921 -3.1423741, 55.9622214 -3.1450944, 55.9623357 -3.1492308, 55.9611520 -3.1537771, 55.9617355 -3.1586323, 55.9598518 -3.1573266, 55.9616167 -3.1588370, 55.9668014 -3.1337263, 55.9690756 -3.1433581, 55.9704333 -3.1519544, 55.9700124 -3.1556431, 55.9558380 -3.1386914, 55.9550460 -3.1447760, 55.9550213 -3.1476460, 55.9550728 -3.1523790, 55.9548118 -3.1629421, 55.9555903 -3.1566068, 55.9563198 -3.1613807, 55.9566895 -3.1639274, 55.9611674 -3.1521276, 55.9593457 -3.1509202, 55.9591348 -3.1552068, 55.9579853 -3.1583596, 55.9574531 -3.1601382, 55.9572537 -3.1679186, 55.9620617 -3.1535479, 55.9621329 -3.1564976, 55.9625914 -3.1535957, 55.9643118 -3.1546889, 55.9658854 -3.1559206, 55.9678849 -3.1582874, 55.9636025 -3.1550195, 55.9627401 -3.1578613, 55.9697011 -3.1609259, 55.9692382 -3.1643280, 55.9634122 -3.1609252, 55.9648755 -3.1629309, 55.9664000 -3.1642510, 55.9684815 -3.1664925, 55.9631222 -3.1611889, 55.9632266 -3.1663024, 55.9643722 -3.1699129, 55.9644808 -3.1717362, 55.9649261 -3.1753058, 55.9702256 -3.1606806, 55.9721901 -3.1629507, 55.9734772 -3.1676223, 55.9730686 -3.1650762, 55.9694878 -3.1680589, 55.9692232 -3.1683674, 55.9700545 -3.1702250, 55.9680366 -3.1683145, 55.9662435 -3.1698675, 55.9641358 -3.1704804, 55.9611738 -3.1711284, 55.9586476 -3.1715948, 55.9575346 -3.1733551, 55.9576423 -3.1767165, 55.9577127 -3.1801199, 55.9577689 -3.1829548, 55.9564976 -3.1718502, 55.9560238 -3.1725406, 55.9598986 -3.1836144, 55.9533445 -3.1792984, 55.9538702 -3.1838294, 55.9538082 -3.1860623, 55.9537460 -3.1864288, 55.9536090 -3.1872578, 55.9570795 -3.1725344, 55.9560575 -3.1718369, 55.9542177 -3.1734790, 55.9505239 -3.1770528, 55.9471148 -3.1782693, 55.9486335 -3.1780633, 55.9498991 -3.1788399, 55.9488002 -3.1790809, 55.9492792 -3.1822951, 55.9501804 -3.1839664, 55.9512348 -3.1865851, 55.9510428 -3.1899310, 55.9517661 -3.1736932, 55.9521941 -3.1764060, 55.9513995 -3.1796348, 55.9508278 -3.1825636, 55.9503437 -3.1858623, 55.9739384 -3.1675454, 55.9716823 -3.1695986, 55.9710945 -3.1729414, 55.9696926 -3.1723772, 55.9675371 -3.1742485, 55.9652851 -3.1761642, 55.9753350 -3.1670805, 55.9767364 -3.1725205, 55.9772973 -3.1758604, 55.9779032 -3.1792122, 55.9750843 -3.1712339, 55.9738978 -3.1727490, 55.9719290 -3.1728798, 55.9722046 -3.1746804, 55.9721384 -3.1759763, 55.9697936 -3.1815612, 55.9747119 -3.1831053, 55.9743289 -3.1855614, 55.9787681 -3.1799116, 55.9803325 -3.1776103, 55.9802536 -3.1818535, 55.9807529 -3.1767871, 55.9784516 -3.1820015, 55.9794446 -3.1861987, 55.9799416 -3.1897567, 55.9807036 -3.1944752, 55.9805155 -3.1971940, 55.9657942 -3.1807024, 55.9675800 -3.1828235, 55.9684568 -3.1840135, 55.9716943 -3.1876119, 55.9725807 -3.1879435, 55.9687365 -3.1849738, 55.9675923 -3.1871498, 55.9659016 -3.1891647, 55.9642904 -3.1922393, 55.9635860 -3.1943270, 55.9622037 -3.1793755, 55.9627392 -3.1787031, 55.9618397 -3.1798451, 55.9622890 -3.1826621, 55.9645359 -3.1863513, 55.9587684 -3.1837830, 55.9585718 -3.1839897, 55.9556859 -3.1866515, 55.9540735 -3.1877177, 55.9572218 -3.1884308, 55.9597602 -3.1915275, 55.9606648 -3.1931837, 55.9618206 -3.1955056, 55.9620775 -3.1961605, 55.9744173 -3.1897628, 55.9757115 -3.1912766, 55.9778758 -3.1932662, 55.9778282 -3.1960220, 55.9796119 -3.1977110, 55.9798541 -3.2042094, 55.9801147 -3.2088012, 55.9803840 -3.2115662, 55.9801054 -3.2161413, 55.9802572 -3.2206212, 55.9808168 -3.2232477, 55.9737117 -3.1899332, 55.9731967 -3.1935301, 55.9724352 -3.1987820, 55.9716446 -3.2041100, 55.9719126 -3.2049401, 55.9731446 -3.2058360, 55.9748834 -3.2071317, 55.9763183 -3.2083302, 55.9712913 -3.2063993, 55.9564422 -3.1886008, 55.9516360 -3.1915621, 55.9511728 -3.1894775, 55.9513768 -3.1853034, 55.9530038 -3.1904535, 55.9529734 -3.1906361, 55.9550011 -3.1944896, 55.9523721 -3.1941529, 55.9522306 -3.1949546, 55.9521243 -3.1955713, 55.9413619 -3.1834545, 55.9439756 -3.1855145, 55.9457447 -3.1858708, 55.9459185 -3.1889928, 55.9462149 -3.1911216, 55.9474608 -3.1915894, 55.9483990 -3.1921221, 55.9491051 -3.1925562, 55.9499555 -3.1941302, 55.9513921 -3.1967362, 55.9563095 -3.1988813, 55.9543603 -3.1978922, 55.9530372 -3.1971862, 55.9518480 -3.1998550, 55.9512810 -3.2003210, 55.9511317 -3.2011985, 55.9510603 -3.2016272, 55.9507178 -3.2036019, 55.9505841 -3.2043884, 55.9451215 -3.1923158, 55.9448465 -3.1948923, 55.9448398 -3.1982337, 55.9495373 -3.2067189, 55.9492326 -3.2066015, 55.9483042 -3.2035260, 55.9477777 -3.2074310, 55.9470945 -3.2058026, 55.9462523 -3.2055522, 55.9451884 -3.2051208, 55.9428068 -3.2035039, 55.9425641 -3.2034299, 55.9417455 -3.2046015, 55.9407315 -3.2096840, 55.9393435 -3.2127503, 55.9381500 -3.2153226, 55.9368830 -3.2180525, 55.9360677 -3.2206086, 55.9338713 -3.2232572, 55.9413134 -3.2033814, 55.9391987 -3.2046868, 55.9364506 -3.2080648, 55.9348230 -3.2100408, 55.9431515 -3.2018817, 55.9380639 -3.1919459, 55.9368177 -3.1935085, 55.9393298 -3.1949761, 55.9378804 -3.1946691, 55.9368007 -3.1944119, 55.9352311 -3.1940360, 55.9308908 -3.2069640, 55.9343964 -3.1957873, 55.9338607 -3.1991324, 55.9332178 -3.2042350, 55.9316658 -3.2098633, 55.9255180 -3.2092824, 55.9343401 -3.1937110, 55.9324314 -3.1928183, 55.9307981 -3.1906344, 55.9288165 -3.1883328, 55.9268551 -3.1866336, 55.9262609 -3.1868462, 55.9260332 -3.1918166, 55.9260226 -3.1956894, 55.9252810 -3.2008040, 55.9245993 -3.2043518, 55.9245810 -3.2080642, 55.9241842 -3.2109485, 55.9228987 -3.2146532, 55.9225156 -3.2170578, 55.9221869 -3.2212083, 55.9206392 -3.2214316, 55.9191376 -3.2215284, 55.9166716 -3.2237230, 55.9166491 -3.2286985, 55.9224516 -3.2109624, 55.9207784 -3.2118825, 55.9192136 -3.2133503, 55.9176425 -3.2164250, 55.9150152 -3.2167748, 55.9131617 -3.2179327, 55.9117618 -3.2186153, 55.9105601 -3.2202188, 55.9089266 -3.2227432, 55.9076164 -3.2261893, 55.8999546 -3.1638273, 55.8995340 -3.1702762, 55.8996425 -3.1730463, 55.8989771 -3.1908750, 55.8989296 -3.1948559, 55.8992800 -3.1976335, 55.9004541 -3.2016363, 55.9185850 -3.2128862, 55.9174509 -3.2130748, 55.9153185 -3.2133602, 55.9128108 -3.2134259, 55.9111623 -3.2120145, 55.9091712 -3.2098087, 55.9068224 -3.2083279, 55.9036702 -3.2062550, 55.9022918 -3.2048441, 55.8993754 -3.2039298, 55.8975587 -3.2035692, 55.9017236 -3.2059781, 55.9020682 -3.2084040, 55.9020822 -3.2133788, 55.9020983 -3.2181138, 55.9024927 -3.2209412, 55.9538170 -3.2010786, 55.9557714 -3.2021464, 55.9519898 -3.2056255, 55.9506446 -3.2093738, 55.9504970 -3.2090293, 55.9515635 -3.2119466, 55.9590112 -3.1954889, 55.9578837 -3.1987058, 55.9569531 -3.2042594, 55.9573600 -3.2073453, 55.9581370 -3.1998753, 55.9595344 -3.2006164, 55.9611948 -3.1982635, 55.9612444 -3.2015410, 55.9622843 -3.2005526, 55.9634933 -3.2012181, 55.9646539 -3.2129972, 55.9654477 -3.2035216, 55.9669436 -3.2050472, 55.9683045 -3.2063198, 55.9696149 -3.2076181, 55.9706091 -3.2085738, 55.9709352 -3.2119099, 55.9704174 -3.2167020, 55.9701671 -3.2188738, 55.9696091 -3.2244001, 55.9693067 -3.2276608, 55.9689314 -3.2315056, 55.9685250 -3.2348925, 55.9712946 -3.2144423, 55.9732621 -3.2150362, 55.9756585 -3.2157626, 55.9775440 -3.2163025, 55.9765164 -3.2203214, 55.9757819 -3.2253483, 55.9756463 -3.2272350, 55.9771543 -3.2210647, 55.9785634 -3.2239458, 55.9787849 -3.2278793, 55.9785446 -3.2303558, 55.9754414 -3.2324687, 55.9752064 -3.2352977, 55.9792990 -3.2131670, 55.9800457 -3.2230791, 55.9804847 -3.2259297, 55.9806269 -3.2293776, 55.9765935 -3.2304701, 55.9784683 -3.2325970, 55.9778127 -3.2361500, 55.9772858 -3.2385050, 55.9602477 -3.2031604, 55.9599422 -3.2050807, 55.9584545 -3.2079471, 55.9589660 -3.2114386, 55.9592891 -3.2157462, 55.9577015 -3.2172967, 55.9592592 -3.2207431, 55.9587913 -3.2241128, 55.9573790 -3.2117285, 55.9566490 -3.2146849, 55.9557623 -3.2162108, 55.9543230 -3.2154609, 55.9551079 -3.2193216, 55.9577741 -3.2253880, 55.9599993 -3.2284217, 55.9618699 -3.2309640, 55.9632492 -3.2339433, 55.9633694 -3.2324315, 55.9664241 -3.2347134, 55.9694408 -3.2367643, 55.9731091 -3.2383395, 55.9751261 -3.2388206, 55.9767114 -3.2393360, 55.9788284 -3.2423686, 55.9765998 -3.2429397, 55.9764404 -3.2466030, 55.9753612 -3.2528982, 55.9778044 -3.2565189, 55.9775609 -3.2662709, 55.9779349 -3.2692159, 55.9682289 -3.2375427, 55.9678257 -3.2418878, 55.9673384 -3.2465506, 55.9672975 -3.2372246, 55.9661966 -3.2376861, 55.9633638 -3.2388133, 55.9618160 -3.2413074, 55.9608667 -3.2458460, 55.9605217 -3.2524027, 55.9606097 -3.2561219, 55.9578389 -3.2295517, 55.9572859 -3.2327712, 55.9565236 -3.2376280, 55.9548640 -3.2243511, 55.9546493 -3.2287648, 55.9546692 -3.2357647, 55.9552559 -3.2390179, 55.9562727 -3.2434691, 55.9509150 -3.2138808, 55.9498016 -3.2162253, 55.9493877 -3.2175003, 55.9495686 -3.2189589, 55.9505731 -3.2230145, 55.9514713 -3.2255762, 55.9527412 -3.2281759, 55.9524215 -3.2305040, 55.9518539 -3.2342496, 55.9515204 -3.2370417, 55.9556231 -3.2445563, 55.9534575 -3.2436700, 55.9507021 -3.2442383, 55.9504559 -3.2472572, 55.9503401 -3.2498159, 55.9481068 -3.2476301, 55.9460978 -3.2508001, 55.9571515 -3.2489141, 55.9583681 -3.2521089, 55.9593674 -3.2545759, 55.9601292 -3.2565389, 55.9602989 -3.2584026, 55.9613231 -3.2619280, 55.9597973 -3.2591231, 55.9598916 -3.2622018, 55.9597990 -3.2668442, 55.9579196 -3.2678560, 55.9625566 -3.2713077, 55.9620642 -3.2641468, 55.9631875 -3.2650165, 55.9645665 -3.2681054, 55.9612273 -3.2475075, 55.9627641 -3.2483740, 55.9655873 -3.2499869, 55.9677421 -3.2492713, 55.9694716 -3.2506410, 55.9715923 -3.2523918, 55.9723523 -3.2534784, 55.9719651 -3.2590216, 55.9721512 -3.2610306, 55.9736573 -3.2534520, 55.9738185 -3.2535053, 55.9746114 -3.2552767, 55.9739088 -3.2596296, 55.9732957 -3.2633433, 55.9726441 -3.2672961, 55.9719985 -3.2715213, 55.9666249 -3.2528329, 55.9661313 -3.2556920, 55.9657429 -3.2611747, 55.9661436 -3.2650328, 55.9669045 -3.2679416, 55.9682263 -3.2696030, 55.9694054 -3.2705672, 55.9655849 -3.2678183, 55.9654369 -3.2708414, 55.9653772 -3.2731465, 55.9667898 -3.2764453, 55.9657775 -3.2744093, 55.9684197 -3.2787100, 55.9702703 -3.2813508, 55.9731093 -3.2874377, 55.9729198 -3.2952352, 55.9745355 -3.2979654, 55.9753143 -3.2999465, 55.9731404 -3.3041361, 55.9715725 -3.3062465, 55.9687840 -3.3073703, 55.9698187 -3.3067247, 55.9715389 -3.2992270, 55.9665978 -3.3076170, 55.9630646 -3.3069371, 55.9614840 -3.3060028, 55.9636839 -3.2735235, 55.9617919 -3.2652914, 55.9620711 -3.2678476, 55.9622731 -3.2700489, 55.9625577 -3.2755530, 55.9613943 -3.2821462, 55.9585894 -3.2795552, 55.9617795 -3.2842000, 55.9610464 -3.2903852, 55.9605635 -3.2944540, 55.9602624 -3.3000026, 55.9604971 -3.3033104, 55.9576021 -3.3076981, 55.9609343 -3.3086915, 55.9625535 -3.3144333, 55.9650880 -3.3178766, 55.9679579 -3.3215985, 55.9717087 -3.3296458, 55.9793970 -3.3726056, 55.9876225 -3.4053402, 55.9796650 -3.3475006, 55.9841890 -3.3585897, 55.9841576 -3.3630607, 55.9822616 -3.3735887, 55.9865963 -3.3764995, 55.9867144 -3.3820021, 55.9871401 -3.3873073, 55.9874589 -3.3909095, 55.9870411 -3.3960723, 55.9907091 -3.3983046, 55.9901075 -3.4037978, 55.9900975 -3.3975611, 55.9863873 -3.3966739, 55.9843886 -3.3962171, 55.9891253 -3.4109545, 55.9882163 -3.4151592, 55.9866294 -3.4191943, 55.9847835 -3.4128218, 55.9842063 -3.4098674, 55.9827390 -3.3942984, 55.9821321 -3.3899489, 55.9822851 -3.3883355, 55.9828080 -3.3849883, 55.9492297 -3.1934848, 55.9485101 -3.1950625, 55.9466052 -3.2025367, 55.9483763 -3.1903144, 55.9458867 -3.2015396, 55.9450777 -3.2041637, 55.9434137 -3.2080661, 55.9424851 -3.2120231, 55.9411818 -3.2158659, 55.9413277 -3.2188601, 55.9456681 -3.2081800, 55.9460697 -3.2125273, 55.9496579 -3.2091165, 55.9491712 -3.2102205, 55.9478015 -3.2132758, 55.9458699 -3.2215692, 55.9458558 -3.2248034, 55.9457052 -3.2281933, 55.9455773 -3.2302069, 55.9458663 -3.2359237, 55.9455816 -3.2405353, 55.9455000 -3.2414934, 55.9451612 -3.2452583, 55.9445781 -3.2509113, 55.9415174 -3.2514531, 55.9397225 -3.2512351, 55.9445971 -3.2523768, 55.9432896 -3.2591959, 55.9423640 -3.2644657, 55.9420784 -3.2677707, 55.9416489 -3.2710870, 55.9418636 -3.2748424, 55.9422212 -3.2779592, 55.9426632 -3.2817824, 55.9430420 -3.2868775, 55.9428655 -3.2912301, 55.9449232 -3.2940603, 55.9472006 -3.2945366, 55.9486955 -3.2950830, 55.9512965 -3.2964030, 55.9531823 -3.2973789, 55.9539468 -3.2964595, 55.9547471 -3.2929786, 55.9555149 -3.2883112, 55.9557800 -3.2861577, 55.9562439 -3.2830337, 55.9566686 -3.2802126, 55.9545585 -3.2783331, 55.9513042 -3.2784661, 55.9485655 -3.2791445, 55.9575519 -3.2997035, 55.9422013 -3.2956988, 55.9417161 -3.2991090, 55.9413296 -3.3025225, 55.9409367 -3.3073767, 55.9406682 -3.3114984, 55.9417940 -3.3129455, 55.9478442 -3.3143833, 55.9494570 -3.3122920, 55.9498066 -3.3088206, 55.9517191 -3.3074357, 55.9542153 -3.3070451, 55.9412755 -3.3160661, 55.9425036 -3.3188618, 55.9451319 -3.3243154, 55.9468180 -3.3279600, 55.9497433 -3.3349945, 55.9512870 -3.3409573, 55.9515812 -3.3469413, 55.9188475 -3.3142913, 55.9230531 -3.3784073, 55.9214617 -3.3800951, 55.9215057 -3.3809769, 55.9206547 -3.3847393, 55.9205292 -3.3887035, 55.9087321 -3.4067755, 55.9219922 -3.3892326, 55.9211811 -3.3906632, 55.9387400 -3.3254261, 55.9365641 -3.3371827, 55.9353684 -3.3322588, 55.9366259 -3.3521055, 55.9385758 -3.3586963, 55.9434911 -3.3610874, 55.9410783 -3.3688003, 55.9389078 -3.3558459, 55.9483246 -3.3636111, 55.9483490 -3.3626191, 55.9483659 -3.3626754, 55.9483241 -3.3625360, 55.9483051 -3.3624727, 55.9367999 -3.3577973, 55.9482658 -3.3623417, 55.9482321 -3.3622291, 55.9481974 -3.3621136, 55.9481583 -3.3619833, 55.9376105 -3.3671090, 55.9481182 -3.3618496, 55.9480884 -3.3617501, 55.9480530 -3.3616322, 55.9480146 -3.3615042, 55.9479823 -3.3613965, 55.9380851 -3.3737218, 55.9386598 -3.3897845, 55.9377706 -3.3913376, 55.9369683 -3.3915650, 55.9388978 -3.3997195, 55.9378057 -3.4080213, 55.9397489 -3.4080649, 55.9479626 -3.3613307, 55.9479431 -3.3612657, 55.9479282 -3.3612161, 55.9479066 -3.3611442, 55.9407080 -3.4096156, 55.9460331 -3.4132676, 55.9528355 -3.4046126, 55.9538869 -3.4028390, 55.9553388 -3.4014279, 55.9560834 -3.4032868, 55.9564934 -3.4059446, 55.9565314 -3.4128336, 55.9456796 -3.2170439, 55.9455214 -3.2171400, 55.9425730 -3.2214556, 55.9413678 -3.2230988, 55.9395990 -3.2256413, 55.9390979 -3.2257588, 55.9386491 -3.2239035, 55.9387242 -3.2262914, 55.9367349 -3.2275413, 55.9351448 -3.2311496, 55.9252015 -3.2107562, 55.9253987 -3.2135471, 55.9249840 -3.2155027, 55.9244926 -3.2215848, 55.9258313 -3.2243157, 55.9285042 -3.2239038, 55.9334398 -3.2118455, 55.9314723 -3.2172745, 55.9308274 -3.2197833, 55.9296136 -3.2243870, 55.9304433 -3.2249894, 55.9325555 -3.2285456, 55.9307023 -3.2260540, 55.9286787 -3.2280388, 55.9279324 -3.2298879, 55.9257645 -3.2337083, 55.9229368 -3.2370112, 55.9213123 -3.2386078, 55.9336198 -3.2343954, 55.9336115 -3.2344115, 55.9306860 -3.2384586, 55.9294123 -3.2400186, 55.9280488 -3.2415756, 55.9271722 -3.2429560, 55.9250339 -3.2455923, 55.9232151 -3.2477265, 55.9218937 -3.2433312, 55.9191327 -3.2408905, 55.9174821 -3.2416601, 55.9155442 -3.2403119, 55.9122777 -3.2380957, 55.9122601 -3.2380632, 55.9100844 -3.2345862, 55.9085928 -3.2291957, 55.9064805 -3.2256576, 55.9059136 -3.2239281, 55.9055130 -3.2235475, 55.9051874 -3.2237612, 55.9042466 -3.2225799, 55.9012188 -3.2216370, 55.9009964 -3.2259325, 55.9011654 -3.2224830, 55.9038972 -3.2233847, 55.9038681 -3.2263110, 55.9038755 -3.2309659, 55.9044653 -3.2366791, 55.9057286 -3.2432938, 55.9341148 -3.0936004, 55.9132235 -3.2441097, 55.9112979 -3.2479197, 55.9088099 -3.2513593, 55.9079240 -3.2536503, 55.9075266 -3.2503101, 55.9064316 -3.2475235, 55.9052864 -3.2496942, 55.9064491 -3.2528829, 55.9075503 -3.2541662, 55.9065856 -3.2580063, 55.9013113 -3.2588432, 55.9041193 -3.2619254, 55.9033613 -3.2657397, 55.9029773 -3.2681264, 55.9011080 -3.2681454, 55.8997717 -3.2704607, 55.9071539 -3.2586645, 55.9071090 -3.2674294, 55.9345120 -3.2341784, 55.9362852 -3.2365721, 55.9387653 -3.2284860, 55.9378215 -3.2321064, 55.9372383 -3.2347134, 55.9363561 -3.2402404, 55.9340199 -3.2444985, 55.9369187 -3.2398280, 55.9390173 -3.2409979, 55.9404615 -3.2385624, 55.9374075 -3.2429156, 55.9358564 -3.2453451, 55.9347466 -3.2465763, 55.9329425 -3.2463743, 55.9322531 -3.2487853, 55.9318154 -3.2503079, 55.9306922 -3.2538412, 55.9297023 -3.2575067, 55.9295709 -3.2606877, 55.9368265 -3.2497169, 55.9354514 -3.2532746, 55.9338935 -3.2571302, 55.9329021 -3.2591791, 55.9282277 -3.2654938, 55.9332232 -3.2620549, 55.9335359 -3.2657309, 55.9324873 -3.2715714, 55.9235566 -3.2517874, 55.9252370 -3.2583224, 55.9250412 -3.2634054, 55.9253327 -3.2670045, 55.9256990 -3.2693485, 55.9259551 -3.2716316, 55.9273067 -3.2711617, 55.9310201 -3.2735562, 55.9312253 -3.2770271, 55.9309727 -3.2807258, 55.9305956 -3.2824260, 55.9341348 -3.2764919, 55.9359415 -3.2790327, 55.9384695 -3.2804768, 55.9404129 -3.2844133, 55.9399151 -3.2882897, 55.9400197 -3.2915504, 55.9262292 -3.2831711, 55.9285408 -3.2847270, 55.9332649 -3.2879535, 55.9363412 -3.2906844, 55.9383402 -3.2926493, 55.9419631 -3.2931250, 55.9235128 -3.2826349, 55.9228999 -3.2862368, 55.9222758 -3.2502543, 55.9208367 -3.2545312, 55.9187043 -3.2583187, 55.9163065 -3.2599371, 55.9149834 -3.2610302, 55.9248456 -3.2596861, 55.9229556 -3.2617372, 55.9216262 -3.2634383, 55.9192373 -3.2650568, 55.9168804 -3.2644360, 55.9145188 -3.2625192, 55.9130499 -3.2629354, 55.9118773 -3.2651211, 55.9098652 -3.2685432, 55.9083877 -3.2706547, 55.9075292 -3.2737300, 55.9059536 -3.2783654, 55.9047878 -3.2815902, 55.9039296 -3.2837533, 55.9045093 -3.2858999, 55.9023366 -3.2891550, 55.9033691 -3.2849345, 55.9017224 -3.2894546, 55.9003774 -3.2943202, 55.8990734 -3.2986221, 55.8974456 -3.3030667, 55.8967760 -3.3060509, 55.9089844 -3.2729139, 55.9243397 -3.2678317, 55.9222409 -3.2735564, 55.9194599 -3.2731131, 55.9222182 -3.2722754, 55.9203149 -3.2712369, 55.9180945 -3.2739325, 55.9200764 -3.2810447, 55.9193096 -3.2754765, 55.9173795 -3.2761652, 55.9124636 -3.2770917, 55.9111903 -3.2811615, 55.9140301 -3.2768072, 55.9169695 -3.2793039, 55.9182065 -3.2899377, 55.9174875 -3.2823698, 55.9180111 -3.2982681, 55.9177938 -3.2950125, 55.9186001 -3.2901108, 55.9199001 -3.2912422, 55.9207503 -3.2949991, 55.9201416 -3.2964830, 55.9192788 -3.2990625, 55.9164383 -3.2854468, 55.9163450 -3.2857797, 55.9138800 -3.2912021, 55.9109496 -3.2912967, 55.9114544 -3.2877137, 55.9095492 -3.2825632, 55.9164543 -3.2856393, 55.9164165 -3.2858141, 55.9145344 -3.2869570, 55.9199398 -3.2900273, 55.9318454 -3.2935283, 55.9327811 -3.2976895, 55.9334086 -3.3003838, 55.9340968 -3.3041367, 55.9330951 -3.3087774, 55.9332338 -3.3143208, 55.9345802 -3.3161433, 55.9313620 -3.2950649, 55.9299963 -3.2993091, 55.9195397 -3.2981751, 55.9297250 -3.3020246, 55.9276961 -3.3082193, 55.9311156 -3.3056373, 55.9322299 -3.3064751, 55.9340229 -3.3077201, 55.9355926 -3.3122074, 55.9361695 -3.2993236, 55.9292786 -3.2872164, 55.9289897 -3.2899278, 55.9277979 -3.2921770, 55.9269314 -3.2942609, 55.9264818 -3.2977030, 55.9257125 -3.3024787, 55.9246333 -3.2923278, 55.9261437 -3.2931143, 55.9231767 -3.2915592, 55.9221988 -3.3025049, 55.9281300 -3.2973419, 55.9218602 -3.2928436, 55.9208065 -3.2982015, 55.9207966 -3.2982812, 55.9207760 -3.2985365, 55.9171544 -3.3140322, 55.9171492 -3.3213619, 55.9120572 -3.3546582, 55.9221643 -3.2722736, 55.9181038 -3.2739008, 55.9079617 -3.3690892, 55.9144831 -3.3248672, 55.9125487 -3.3239700, 55.9007886 -3.3098165, 55.8987034 -3.3132329, 55.8967963 -3.3125927, 55.8957425 -3.3139442, 55.8949242 -3.3162397, 55.8938281 -3.3178977, 55.8960867 -3.3100259, 55.8950017 -3.3131878, 55.8933968 -3.3178990, 55.8916415 -3.3240439, 55.8901158 -3.3297005, 55.8882427 -3.3383666, 55.8865763 -3.3395564, 55.8839809 -3.3427125, 55.8803230 -3.3452399, 55.8786965 -3.3492422, 55.8754988 -3.3467674, 55.8749254 -3.3424958, 55.8760688 -3.3398180, 55.8856460 -3.3391726, 55.8841917 -3.3373799, 55.8822863 -3.3390729, 55.8788332 -3.3383954, 55.8671502 -3.3344450, 55.9195504 -3.2377835, 55.9183386 -3.2271225, 55.9188051 -3.2242383, 55.9814895 -3.1912619, 55.9817769 -3.2297051, 55.9808740 -3.2353244, 55.9790705 -3.2414093, 55.9830254 -3.1941140, 55.9781461 -3.1735303, 55.8997405 -3.1444845, 55.9481124 -3.3641161, 55.9850192 -3.4297896, 55.9293780 -3.2496372, 55.9303174 -3.2518123, 55.9303651 -3.2515417, 55.9290038 -3.2484407, 55.9508673 -3.1752354, 55.9553235 -3.1920547, 55.9553332 -3.1919926, 55.9553429 -3.1919304, 55.9553525 -3.1918683, 55.9553622 -3.1918061, 55.9553719 -3.1917440, 55.9553816 -3.1916819, 55.9553913 -3.1916197, 55.9554010 -3.1915576, 55.9554107 -3.1914955, 55.9554204 -3.1914333, 55.9554301 -3.1913712, 55.9554398 -3.1913091, 55.9554495 -3.1912469, 55.9554592 -3.1911848, 55.9554688 -3.1911227, 55.9554785 -3.1910605, 55.9554882 -3.1909984, 55.9837906 -3.4014050, 55.9838562 -3.4011669, 55.9472325 -3.1901311, 55.9440850 -3.1328436, 55.9700089 -3.2511164, 55.9423696 -3.2696941, 55.9479136 -3.2671815, 55.9323871 -3.2055924, 55.9856357 -3.4235129, 55.9558460 -3.2630716, 55.9557687 -3.2636778, 55.9228559 -3.3994491, 55.9066525 -3.1343463, 55.9766740 -3.1797325, 55.9270622 -3.2468023, 55.9438324 -3.2142584, 55.9434037 -3.2147753, 55.9466143 -3.2479373, 55.9602002 -3.2007101, 55.9562981 -3.1986248, 55.9131604 -3.2751589, 55.9103046 -3.3174695, 55.9475607 -3.1861653, 55.9400038 -3.4063741, 55.9403783 -3.4069026, 55.9536715 -3.1868832, 55.9525909 -3.2000321, 55.9476032 -3.2085057, 55.9464631 -3.1990798, 55.9699159 -3.1695202, 55.9514733 -3.2002938, 55.9525341 -3.1942530, 55.9539398 -3.1954762, 55.9458721 -3.1870265, 55.9452545 -3.1868374, 55.9439698 -3.1852609, 55.9288032 -3.2094222, 55.9247503 -3.2765469, 55.9700600 -3.1864505, 55.9493416 -3.2102159, 55.9651187 -3.2337410, 55.9458574 -3.2195136, 55.9458637 -3.2199619, 55.9493651 -3.2098050, 55.9522213 -3.1920622, 55.9595000 -3.4128903, 55.9596259 -3.4129832, 55.9598444 -3.4081902, 55.9165190 -3.2788074, 55.9272107 -3.3071587, 55.9345077 -3.1677307, 55.9256755 -3.1530955, 55.9259223 -3.1537352, 55.9221296 -3.1327542, 55.9221359 -3.1326473, 55.9223250 -3.1327710, 55.9223281 -3.1326530, 55.9225187 -3.1327823, 55.9225203 -3.1326754, 55.9704312 -3.3338225, 55.9037305 -3.1382383, 55.9287865 -3.3858749, 55.9288710 -3.3856678, 55.9338658 -3.3904702, 55.9199735 -3.1388470, 55.9525355 -3.2025587, 55.9612165 -3.4036848, 55.9897500 -3.4060327, 55.9507195 -3.1921655, 55.9532131 -3.1997985, 55.9541367 -3.1918691, 55.9547528 -3.1939230, 55.9387978 -3.1791123, 55.9632674 -3.1638738, 55.9606525 -3.2004675, 55.9708849 -3.1791326, 55.9074215 -3.1540164 +0 +yes +504 +Mo-Sa 09:30-12:30, Tu, Th, Fr 15:00-18:00 and 49.3791000 8.6912322 +61 +shoemaker, printery, electrician, plumber, locksmith, tailor, key cutter, dressmaker, traitor, painter, painting restoration, heating engineer, beekeeper, hvac, watchmaker, upholsterer, framer, photographer, jeweller, heating, photographic laboratory, caterer, brewery, clockmaker, builder, handicraft, glaziery, confectionery, bookbinder, optician, tiler, roofer, carpenter, window construction, gardener, carpet layer +yes +49.4133177 8.6889779, 49.4135514 8.6842391, 49.4146501 8.6879184, 49.4168731 8.6919549, 49.4171484 8.6930088, 49.4208847 8.6912002, 49.4093080 8.6997914, 49.4115405 8.7048863, 49.4123719 8.7105227, 49.4126424 8.7078375, 49.4121119 8.7079345, 49.4111163 8.6933102, 49.4133176 8.6889779, 49.4133176 8.6889788, 49.4133176 8.6889785, 49.4135508 8.6842393, 49.4133177 8.6889782, 49.4133176 8.6889782, 49.4133174 8.6889784, 49.4133177 8.6889788, 49.4208843 8.6912004, 49.4208840 8.6912006, 49.4168738 8.6919549, 49.4168732 8.6919560, 49.4208839 8.6912002, 49.4171481 8.6930091, 49.4168744 8.6919560, 49.4168739 8.6919560, 49.4208843 8.6911999, 49.4208846 8.6911997, 49.4168740 8.6919569, 49.4123720 8.7105234, 49.4093080 8.6997912, 49.4115404 8.7048862, 49.4093082 8.6997910, 49.4115404 8.7048863, 49.4093082 8.6997914, 49.4146502 8.6879184, 49.4115403 8.7048862, 49.4059416 8.6926646, 49.4059413 8.6926655, 49.4059418 8.6926647, 49.4059416 8.6926652, 49.4059414 8.6926650, 49.4196480 8.6881884, 49.4158083 8.7151936, 49.4087123 8.7054683, 49.4076130 8.7082748, 49.4076136 8.7082749, 49.4087126 8.7054655, 49.4076135 8.7082758, 49.4076129 8.7082756 +Corstorphine Hill, Arthur's Seat, Blackford Hill, Allermuir Hill, Haggis Knowe, Crow Hill, Dunsapie Crag, Easter Craiglockhart Hill, Capelaw Hill, White Hill, Torduff Hill, Wester Craiglockhart, Buckstone Snab, The Braids, East Cairn Hill, Caerketton Hill, Whinny Hill, Mons Hill, Warklaw Hill, Calton Hill, Salisbury Crags, The Nether Hill, Dalmahoy Hill, Mansion Hill, New England +yes +55.9426063 -3.2085087 +48.8651191 2.3417893, 48.8776904 2.2687637, 48.8889479 2.3316294, 48.8678821 2.3921769, 48.8844316 2.3506830, 48.8551205 2.3589562, 48.8424054 2.3895404, 48.8947814 2.3190669, 48.8549238 2.3592860, 48.8698923 2.3755947, 48.8832324 2.3637211, 48.8842940 2.3538553, 48.8245519 2.3668617, 48.8442654 2.3304438, 48.8595500 2.3794207, 48.8476483 2.3769905, 48.8425237 2.3899126, 48.8776787 2.3858246, 48.8770064 2.3684202, 48.8683317 2.3921668, 48.8522237 2.3452202, 48.8947391 2.3190753, 48.8903302 2.3647026, 48.8951201 2.3923772, 48.8676645 2.3368980, 48.8541107 2.3568241, 48.8892150 2.3050790, 48.8519784 2.3354942, 48.8784073 2.3854415, 48.8782913 2.3861269, 48.8838102 2.3718772, 48.8875552 2.3794980, 48.8480906 2.3770269, 48.8698453 2.3669656, 48.8766670 2.2637973, 48.8488289 2.3520343, 48.8640121 2.3431386, 48.8605119 2.3524278, 48.8609964 2.3511217, 48.8581282 2.3585957, 48.8665653 2.3534157, 48.8748621 2.3640685, 48.8714289 2.3586492, 48.8491305 2.3324247, 48.8616442 2.3214269, 48.8942221 2.3932346, 48.8909125 2.3908221, 48.8914135 2.3730389, 48.8523494 2.3282306, 48.8775032 2.3443702, 48.8660241 2.3891973, 48.8700810 2.3939859, 48.8852691 2.3273520, 48.8852591 2.3385563, 48.8480847 2.3771241, 48.8312041 2.3702611, 48.8520334 2.2747877, 48.8497046 2.3472459, 48.8582260 2.3619639, 48.8310687 2.3580834, 48.8902445 2.3700712, 48.8673569 2.3780427 +55.9432488 -3.1817167, 55.9280547 -3.2292838, 55.9058039 -3.2543852, 55.9409114 -3.2097700, 55.9703622 -3.1822317, 55.9629073 -3.1944999, 55.9358754 -3.1760269, 55.9344353 -3.2125210, 55.9416804 -3.2026036, 55.9438526 -3.1964947, 55.9592778 -3.1901889, 55.9613996 -3.1820673, 55.9580853 -3.1891489, 55.9468876 -3.1828168, 55.9488813 -3.1834652, 55.9492101 -3.2153200, 55.9544768 -3.1997466, 55.9489685 -3.1194874, 55.9309502 -3.1942179, 55.9741682 -3.2117651, 55.9296473 -3.1707716, 55.9718479 -3.1748613, 55.9390126 -3.2052535, 55.9410176 -3.2095848, 55.9292876 -3.2059198, 55.9598760 -3.2111177, 55.9296228 -3.1686332, 55.9167292 -3.1640730, 55.9351051 -3.2071646, 55.9335197 -3.2097268, 55.9462699 -3.1973167, 55.9324830 -3.1925693, 55.9310878 -3.1608248, 55.9344607 -3.1586816, 55.9350533 -3.2069968, 55.9350865 -3.2070121, 55.9335280 -3.2095487, 55.9408795 -3.2097114, 55.9016895 -3.1650816, 55.9242811 -3.1768126 +http://canmore.rcahms.gov.uk/en/site/50719/details/the+cat+stane/ +49.4785782 8.6564609, 49.4869999 8.7367276, 49.4805167 8.6715673, 49.4943601 8.7246887 +48.8410120 2.3066005, 48.8570028 2.3007925, 48.8579137 2.3005660, 48.8782645 2.3740462, 48.8318670 2.3144693, 48.8276825 2.3271004, 48.8501002 2.3428094, 48.8327092 2.3625620, 48.8304784 2.3562767, 48.8326050 2.3544168, 48.8554073 2.3268543, 48.8697474 2.3709540, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8703950 2.3709651, 48.8778843 2.3510144, 48.8529470 2.3434116, 48.8488712 2.2873446, 48.8189960 2.3382666, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8521024 2.4034631, 48.8651078 2.3744344, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8653000 2.3752307, 48.8651925 2.3758399, 48.8629074 2.3860380, 48.8668485 2.3837377, 48.8318807 2.3568124, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8507286 2.3779068, 48.8330519 2.3316747, 48.8732053 2.3585526, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8367776 2.2983375, 48.8357338 2.3020633, 48.8605667 2.3751425, 48.8644747 2.2879509, 48.8645963 2.2880351, 48.8649321 2.2883111, 48.8654525 2.2886812, 48.8667948 2.2896169, 48.8677281 2.2909720, 48.8369085 2.4021711, 48.8396803 2.3945209, 48.8393074 2.3970077, 48.8743920 2.3574266, 48.8482696 2.3715140, 48.8470790 2.3740473, 48.8469009 2.3721664, 48.8479197 2.3716692, 48.8461048 2.3740873, 48.8477030 2.3740290, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8457782 2.3745532, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8344235 2.3052236, 48.8563547 2.3050003, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8546797 2.3051724, 48.8839932 2.3218563, 48.8830031 2.2877361, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8402359 2.3617231, 48.8648840 2.4053930, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8806821 2.3741833, 48.8855270 2.2969790, 48.8846750 2.2981530, 48.8773919 2.3395256, 48.8737979 2.3160522, 48.8388963 2.2993041, 48.8807958 2.3003045, 48.8423511 2.2814155, 48.8529207 2.3436323, 48.8386703 2.2822723, 48.8648693 2.3427189, 48.8742798 2.3760564, 48.8686652 2.3421761, 48.8578234 2.2746494, 48.8660916 2.3526753, 48.8612900 2.3499825, 48.8612937 2.3537009, 48.8669898 2.3620443, 48.8667188 2.3611850, 48.8518893 2.3417124, 48.8652895 2.3605043, 48.8621296 2.3644112, 48.8614452 2.3647591, 48.8630803 2.3510377, 48.8421221 2.3217245, 48.8592743 2.3796462, 48.8521680 2.3314230, 48.8447287 2.3244719, 48.8428059 2.3239714, 48.8883530 2.3917794, 48.8904247 2.3760144, 48.8296558 2.3789838, 48.8687291 2.3014159, 48.8698436 2.3061758, 48.8284669 2.3791072, 48.8287974 2.3821578, 48.8293821 2.3782449, 48.8444634 2.4058653, 48.8749903 2.2860127, 48.8759692 2.2834989, 48.8459991 2.3734585, 48.8593999 2.2774250, 48.8411414 2.3136506, 48.8760516 2.3450644, 48.8417733 2.3185097, 48.8394820 2.3097854, 48.8781855 2.2878593, 48.8362844 2.3061932, 48.8233119 2.3260789, 48.8475928 2.2669653, 48.8454405 2.2582420, 48.8606979 2.3554288, 48.8605259 2.3552067, 48.8717642 2.3765169, 48.8399984 2.2627388, 48.8307191 2.3193023, 48.8304006 2.3192272, 48.8824125 2.3814642, 48.8758150 2.2867065, 48.8504365 2.3250405, 48.8480122 2.2605847, 48.8555518 2.3602965, 48.8585424 2.3554995, 48.8661318 2.3536080, 48.8417910 2.3293787, 48.8685310 2.3627215, 48.8645339 2.3458426, 48.8671863 2.3624934, 48.8471366 2.3867728, 48.8382469 2.3985623, 48.8356227 2.4057366, 48.8417549 2.3864187, 48.8455537 2.3108109, 48.8450445 2.3104567, 48.8394375 2.2918836, 48.8794747 2.3547243, 48.8431097 2.3128917, 48.8673662 2.3064825, 48.8256887 2.3653770, 48.8695383 2.3950747, 48.8263809 2.3414522, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8278525 2.3262538, 48.8953387 2.3825799, 48.8388287 2.2816271, 48.8367957 2.3917944, 48.8234162 2.3578095, 48.8223317 2.3587958, 48.8283319 2.3249564, 48.8500696 2.2886536, 48.8560015 2.3425743, 48.8544203 2.3257043, 48.8488537 2.3789042, 48.8459220 2.4058540, 48.8585344 2.2751198, 48.8768988 2.3387135, 48.8620598 2.2758197, 48.8768502 2.3324723, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8751634 2.3407635, 48.8468273 2.3109956, 48.8727906 2.3327950, 48.8540420 2.4102463, 48.8465399 2.3518782, 48.8256754 2.3500062, 48.8260463 2.3458083, 48.8275711 2.3258960, 48.8274068 2.3262715, 48.8369096 2.3712028, 48.8312779 2.3775666, 48.8549374 2.3061290, 48.8433669 2.3494429, 48.8570621 2.3817062, 48.8790699 2.3540350, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8481085 2.4036760, 48.8509779 2.2927923, 48.8550471 2.2699500, 48.8442816 2.3244689, 48.8358185 2.3869346, 48.8430494 2.2949889, 48.8416006 2.3224232, 48.8430431 2.3223965, 48.8850396 2.3205857, 48.8860872 2.3177587, 48.8468610 2.3536998, 48.8201698 2.3641255, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8804253 2.3287401, 48.8743336 2.3345374, 48.8301847 2.3456951, 48.8340558 2.2901416, 48.8330244 2.2891177, 48.8334343 2.2890580, 48.8642191 2.3423423, 48.8815429 2.2914706, 48.8838668 2.3274744, 48.8889565 2.3226941, 48.8937935 2.3362303, 48.8975742 2.3374320, 48.8959308 2.3457254, 48.8906192 2.3344868, 48.8929700 2.3402831, 48.8931959 2.3273644, 48.8938006 2.3360065, 48.8928237 2.3276058, 48.8927037 2.3270855, 48.8950865 2.3279515, 48.8927798 2.3416901, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8507185 2.3452276, 48.8506024 2.2921760, 48.8434041 2.2832488, 48.8441583 2.2814225, 48.8601040 2.2800860, 48.8358361 2.3959436, 48.8620103 2.3504016, 48.8555902 2.2705124, 48.8607663 2.2829855, 48.8742509 2.3267610, 48.8760737 2.3314470, 48.8607520 2.3551307, 48.8599332 2.3492544, 48.8314530 2.3131078, 48.8366420 2.3235880, 48.8798460 2.2882480, 48.8706907 2.3018397, 48.8711468 2.3021857, 48.8750168 2.2842019, 48.8271902 2.3689921, 48.8274443 2.3054531, 48.8259715 2.3507845, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8260781 2.3450782, 48.8690375 2.4018799, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8709768 2.4035156, 48.8711831 2.4041560, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8650286 2.3978764, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8661206 2.3993734, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8646156 2.3980291, 48.8575448 2.3507955, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8265662 2.3114209, 48.8266741 2.3089333, 48.8348018 2.2835149, 48.8898740 2.3601766, 48.8289555 2.3008177, 48.8309472 2.3666202, 48.8900866 2.3603615, 48.8425217 2.2605998, 48.8399979 2.2631418, 48.8393773 2.2626930, 48.8445716 2.2773781, 48.8457722 2.3952172, 48.8423827 2.2779816, 48.8393433 2.2612518, 48.8382522 2.2590990, 48.8911754 2.3596165, 48.8912089 2.3601196, 48.8556190 2.3071441, 48.8267862 2.3639559, 48.8275456 2.3565272, 48.8292086 2.3568667, 48.8895540 2.3596572, 48.8601780 2.3784708, 48.8918470 2.3497087, 48.8394408 2.3901626, 48.8634536 2.3668626, 48.8621628 2.3647719, 48.8643458 2.3599234, 48.8304530 2.3781049, 48.8358783 2.3528351, 48.8448082 2.4018695, 48.8577037 2.3677906, 48.8547650 2.3703199, 48.8419262 2.3651705, 48.8370898 2.3512464, 48.8439360 2.3521362, 48.8466920 2.2861937, 48.8464464 2.2864898, 48.8471256 2.2857626, 48.8467862 2.2850085, 48.8687439 2.3725567, 48.8757911 2.3276502, 48.8666300 2.3441053, 48.8751073 2.3063372, 48.8473180 2.3512660, 48.8761128 2.3302242, 48.8760136 2.3310108, 48.8628914 2.2767409, 48.8836091 2.3810186, 48.8326928 2.3011680, 48.8367477 2.3065081, 48.8396815 2.2927792, 48.8364615 2.3516931, 48.8759800 2.3435799, 48.8602282 2.3444320, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8442882 2.3080071, 48.8528372 2.2900682, 48.8524061 2.2912571, 48.8529003 2.2907372, 48.8504014 2.2929658, 48.8781331 2.2973879, 48.8466594 2.4106749, 48.8474387 2.3948976, 48.8558171 2.3591925, 48.8843398 2.3684081, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8605440 2.3490975, 48.8235069 2.3253377, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8314166 2.3251141, 48.8747610 2.3399353, 48.8610529 2.3020976, 48.8742737 2.3172451, 48.8335336 2.4018517, 48.8329666 2.3548590, 48.8860790 2.2927720, 48.8862920 2.2922300, 48.8860610 2.2916910, 48.8815650 2.2950420, 48.8816640 2.2951850, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8767675 2.3414635, 48.8801010 2.2887410, 48.8518237 2.3263371, 48.8520482 2.3269387, 48.8896590 2.3042630, 48.8459597 2.3544163, 48.8523174 2.3400938, 48.8480411 2.3409988, 48.8487519 2.3414295, 48.8763180 2.3309180, 48.8570274 2.3983184, 48.8694492 2.3546663, 48.8841050 2.3049810, 48.8840570 2.3045230, 48.8835710 2.3045840, 48.8837420 2.3043460, 48.8493470 2.3529650, 48.8818980 2.3374100, 48.8485190 2.3493440, 48.8401997 2.3954293, 48.8448871 2.2941778, 48.8452118 2.2941040, 48.8454696 2.2946866, 48.8651944 2.3554408, 48.8650138 2.3556963, 48.8895142 2.3498344, 48.8349994 2.3046409, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8619859 2.3647571, 48.8625029 2.3716831, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8455488 2.4110597, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8778905 2.3549883, 48.8488552 2.3942325, 48.8489972 2.3942887, 48.8505758 2.3948498, 48.8494165 2.3948501, 48.8643045 2.3993897, 48.8347313 2.3458453, 48.8388397 2.3227192, 48.8791073 2.2907296, 48.8766198 2.2875734, 48.8359858 2.3961013 +0 +french, indian, vegetarian, mexican, pasta, chinese, thai, regional, vietnamese, japanese, couscous, grill, belgian, italian, arab, international, Vietnamese, pizza, New-french, libre, Corse, american, sichuan, Lanzhou, lebanese, peruvian, sushi-yakitori, turkish, crepe, Lebanon, sushi, asian, kebab, Sushi-yakitori, shandong, traditional, Sardaigne, steak house, Persan (Iranien), Vietnamien, mediteranean, japonais, seafood, korean, latin american, Lao, spanish, burger, corsican, moroccan, algerian, Bistrot gastronome, sandwich, gastronomic, jewish, corean, bagel, polish, argentinian, belgium, tibetan, marocan, vietnamien-cambodgien, tapas, see food, vietnam, Lebanese, brunch, senegalese, kosher, Hangzhou, smart traditional, fish, marocain, brasilian, berber, greek, ivoirian, libanese, polonese, african, chineses (Teochew) - 中国潮州, Océan indien, latino, fondue, Cambodgien, basque, crêpe, local, maltese, chinese - Fondue pékinoise, ethiopian, Sud-Ouest France, creole, mediterranean, brasserie, crepes, coffee shop, coréen, breton, magreb, malaysian, indonesian, thai fruit juces, bistro, brazilian, cocktails, crèpes, morrocan, Indian, iranian, traiteur japonais, Coréen, Grec, ramen, brazil, American, Lyonnaise, Amérique du Sud - Argentine, Japanese, pâtisserie sans gluten, mongol, Cap Vert, portuguese, ukrainian, meat, française, pizza bio, lao, cambodgian, mauritian, Kebab, salad, caribbean, Oriental Couscous, oriental, Jiangxi, international (Francaise, sud americaine), berbere, oriental couscous, colombian, marocaine, classique, paella, Française, african caribbean, new york pizza, north african, indian pakistanese, Chinese, Sichuan, Burger, Armenian, ouïghour, irak, cuisine nissarde, salade, bio, cake, gluten free, Thai, seasonal, Kazakh, Russe, Italiano, huoguo, bento, maroc, crèpe, mediterean, mediterrneen, russian, Sandwich, organic, régional, vegan, salon de thé, restaurant +55.9395567 -3.2208158, 55.9318108 -3.2374274, 55.9480977 -3.1860003, 55.9471995 -3.1855061, 55.9434664 -3.1831055, 55.9434196 -3.1842460, 55.9434281 -3.1802599, 55.9385215 -3.1946814, 55.9748068 -3.1719428, 55.9764963 -3.1714060, 55.9584860 -3.2082072, 55.9771770 -3.1718400, 55.9624799 -3.1788559, 55.9356483 -3.2096691, 55.9450873 -3.2046445, 55.9461895 -3.1912537, 55.9454993 -3.2344943, 55.9445731 -3.1850966, 55.9707533 -3.2083928, 55.9465573 -3.2166040, 55.9594927 -3.1561524, 55.9506835 -3.1901263, 55.9425676 -3.2218450, 55.9376421 -3.2063586, 55.9364334 -3.2079099, 55.9454688 -3.1847519, 55.9453153 -3.1845999, 55.9750744 -3.1805743, 55.9462869 -3.2159227, 55.9495552 -3.2091699, 55.9582298 -3.2268150, 55.9462622 -3.2145897, 55.9462614 -3.2149075, 55.9589630 -3.2123829, 55.9589427 -3.2121340, 55.9425916 -3.2009298, 55.9420344 -3.2038063, 55.9418227 -3.2036511, 55.9447213 -3.2505249, 55.9460417 -3.2226604, 55.9479040 -3.2136850, 55.9462100 -3.2053390, 55.9499013 -3.1834760, 55.9573001 -3.2497968, 55.9435020 -3.2024352, 55.9518969 -3.2025598, 55.9556173 -3.1925320, 55.9423736 -3.2037017, 55.9426584 -3.2803285, 55.9429213 -3.2881096, 55.9544769 -3.1974573, 55.9604422 -3.2566980, 55.9534512 -3.2963903, 55.9656127 -3.2709323, 55.9573525 -3.1857881, 55.9581118 -3.1850848, 55.9574938 -3.1856190, 55.9290803 -3.2097412, 55.9246481 -3.2100800, 55.9375777 -3.1779460, 55.9354709 -3.1798259, 55.9323952 -3.2102340, 55.9321089 -3.2101997, 55.9309744 -3.2100917, 55.9308794 -3.2100746, 55.9710599 -3.2100066, 55.9629763 -3.2004815, 55.9596608 -3.1714218, 55.9469467 -3.1868746, 55.9453485 -3.2171316, 55.9224536 -3.2108475, 55.9906648 -3.3973688, 55.9302432 -3.1758973, 55.9429144 -3.1826352, 55.9416801 -3.1819013, 55.9418646 -3.1820790, 55.9497766 -3.1880920, 55.9348643 -3.1686663, 55.9254914 -3.2593484, 55.9562823 -3.1983948, 55.9595195 -3.1827244, 55.9580202 -3.1851749, 55.9383738 -3.2308953, 55.9368627 -3.2362988, 55.8838914 -3.3385867, 55.9695051 -3.1724684, 55.9221123 -3.1536690, 55.9420479 -3.1791611, 55.9443287 -3.1812574, 55.9468472 -3.1856084, 55.9895667 -3.3989278, 55.9624134 -3.1789821, 55.9783017 -3.1800235, 55.9205723 -3.1672281, 55.9475057 -3.2948807 +no +yes +49.4220712 8.6747880, 49.4338914 8.6803397, 49.4248554 8.6842438, 49.4134671 8.6923500, 49.3811106 8.6779339, 49.4116285 8.6967738, 49.4112877 8.7120306, 49.4124821 8.7116749, 49.4105746 8.7045338, 49.4088982 8.6985594, 49.4181588 8.6814978, 49.4183470 8.6872741, 49.4197789 8.6871221, 49.4207750 8.6845900, 49.4220217 8.6830623, 49.4248833 8.6877871, 49.4283894 8.6851615, 49.4312787 8.6910498, 49.4329833 8.6806293, 49.4036198 8.6878647, 49.4143251 8.7187531, 49.3777874 8.6694462, 49.3739035 8.6831040, 49.3769857 8.6847203, 49.3763424 8.6904918, 49.3806318 8.6903397, 49.3845467 8.6890952, 49.3867100 8.6889664, 49.3940819 8.6861279, 49.3995012 8.6869038, 49.4024228 8.6765906, 49.4056017 8.6751788, 49.4277498 8.6794326, 49.4376060 8.6778079, 49.4064554 8.6918633, 49.4075653 8.6902108, 49.4151221 8.7620371, 49.4087408 8.6948581, 49.4057652 8.6829089, 49.4145642 8.6791001, 49.4135694 8.6925166, 49.4159532 8.6836921, 49.4156740 8.6813317, 49.3862379 8.6927467, 49.4093291 8.6596550, 49.4010895 8.6737918, 49.4171231 8.7603742, 49.4017075 8.6672838, 49.4083514 8.6761325, 49.4036104 8.6814823, 49.4175762 8.7619090 +49.4171401 8.7614553, 49.4094471 8.6926160, 49.4124142 8.7039688, 49.3850068 8.7105357, 49.4189919 8.6724909, 49.4163242 8.6709589, 49.4184386 8.6731024, 49.4168333 8.6710769, 49.4176281 8.6686596, 49.4160594 8.6702239, 49.4179870 8.6685214, 49.4190025 8.6711938, 49.4190342 8.6719873, 49.4095987 8.7061446, 49.3982405 8.6891686, 49.4154939 8.6674299, 49.4182906 8.7276732, 49.3984918 8.6889404, 49.4226030 8.6895511, 49.4244226 8.6879745, 49.4185216 8.6704497, 49.4197235 8.6766060, 49.4181936 8.6739962, 49.4224691 8.6894885, 49.4347006 8.6819337, 49.4225331 8.6895176, 49.4223934 8.6894683, 49.4275117 8.6831905, 49.4196417 8.6694271, 49.4189698 8.6760286, 49.4222653 8.6894258, 49.4249703 8.6863835, 49.4219203 8.6893430, 49.4221212 8.6893922, 49.4177747 8.6690561, 49.4163577 8.6686492, 49.4174980 8.6687653, 49.4179060 8.6686309, 49.4180660 8.6682820, 49.4157661 8.6686751, 49.4174626 8.6687152, 49.4150725 8.6664167, 49.4139804 8.6668520, 49.4136878 8.6671227, 49.4155211 8.6676755, 49.4136571 8.6671084, 49.4155891 8.6676755, 49.4146634 8.6664310, 49.4140866 8.6673605, 49.4128509 8.6667672, 49.4130842 8.6668825, 49.4128068 8.6670431, 49.4157404 8.6712736, 49.4131056 8.6680418, 49.4126825 8.6678074, 49.4173371 8.6738318, 49.4170607 8.6768911, 49.4126952 8.6699440, 49.4134424 8.6679610, 49.4165443 8.6709680, 49.4134657 8.6678164, 49.4169024 8.6778674, 49.4171297 8.6738951, 49.4145377 8.6712997, 49.4142973 8.6712224, 49.4162063 8.6713780, 49.4171308 8.6741457, 49.4126713 8.6675754, 49.4146104 8.6715231, 49.4129993 8.6676842, 49.4125591 8.6685224, 49.4038678 8.6826012, 49.4080959 8.6940082, 49.4132083 8.7150483, 49.4098495 8.7063675, 49.4092833 8.6937547, 49.4136521 8.7166234, 49.4086730 8.6937919, 49.4147825 8.7194810, 49.4146757 8.7188519, 49.4099904 8.6934756, 49.4137247 8.7168421, 49.4114575 8.7112332, 49.4117561 8.7110802, 49.4130935 8.7055063, 49.4085662 8.6938769, 49.4082925 8.6939399, 49.4049071 8.6846843, 49.4050950 8.6832018, 49.4046753 8.6751003, 49.4049813 8.6825344, 49.4047830 8.6748233, 49.4079701 8.6806978, 49.4081724 8.6765377, 49.3800680 8.6869647, 49.3803092 8.6877522, 49.3800398 8.6875371, 49.4133013 8.6913417, 49.3991167 8.6880237, 49.4003093 8.6865238, 49.3994136 8.6901411, 49.4125736 8.6667755, 49.4156475 8.7425316, 49.3942172 8.6898680, 49.4001704 8.6873707, 49.4008461 8.6862974, 49.4015034 8.6855723, 49.4018481 8.6853596, 49.4140326 8.6921865, 49.4147881 8.6920796, 49.4161519 8.6920141, 49.4164194 8.6920050, 49.3736369 8.6882014, 49.3771070 8.6871386, 49.3805777 8.6884357, 49.3956314 8.6891619, 49.4064459 8.6893600, 49.4076652 8.6925139, 49.4146958 8.6922296, 49.4126385 8.6691299, 49.4175773 8.6740734, 49.4106683 8.6974887, 49.4111306 8.6979715, 49.4127554 8.6742068, 49.4187340 8.6766656, 49.4113889 8.7076937, 49.4105563 8.7059593, 49.4101441 8.7052242, 49.4112034 8.7047612, 49.4089283 8.6982133, 49.4089648 8.6986876, 49.4093783 8.7008163, 49.4094359 8.7023071, 49.4089641 8.6955780, 49.4093310 8.6934805, 49.4096811 8.6934485, 49.4107724 8.7039613, 49.4097754 8.7076634, 49.4100334 8.7081249, 49.4094319 8.6910307, 49.4095376 8.6908723, 49.4096347 8.6903912, 49.4098329 8.6894963, 49.4098809 8.6909403, 49.4099807 8.6890051, 49.4101452 8.6899150, 49.4102122 8.6904965, 49.4103847 8.6887271, 49.4105137 8.6896038, 49.4105215 8.6905059, 49.4106282 8.6901065, 49.4126702 8.6805338, 49.4159805 8.6920165, 49.4164705 8.6920883, 49.4172314 8.6911451, 49.4173345 8.6841594, 49.4090210 8.6862339, 49.4091822 8.6858735, 49.4095605 8.6872645, 49.4088652 8.6800974, 49.4098279 8.6817194, 49.4083809 8.6789361, 49.4056745 8.6881477, 49.4061925 8.6915180, 49.4063357 8.6898884, 49.4072240 8.6872972, 49.4075178 8.6824857, 49.4075631 8.6890160, 49.4079188 8.6902159, 49.4088250 8.6844653, 49.4092552 8.6744026, 49.4111078 8.7122962, 49.4039935 8.7273740, 49.3976409 8.6521041, 49.4229888 8.6430964, 49.4187340 8.6766656, 49.4032317 8.6471408, 49.4027493 8.6441103, 49.4121441 8.6411840, 49.4121197 8.6413318, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349, 49.4151012 8.6731211, 49.4158568 8.6728207, 49.4035624 8.6765204, 49.4279707 8.6838908, 49.4111900 8.7704641, 49.4101378 8.7039303, 49.4161640 8.6686617, 49.4138118 8.6719647, 49.4108048 8.6946155, 49.4157085 8.7420436, 49.4161193 8.6695151, 49.4059837 8.6870296, 49.4014465 8.6714876, 49.4016021 8.6707184, 49.4017318 8.6700873, 49.4019718 8.6690844, 49.4201274 8.6592504, 49.4194061 8.6615040, 49.4175471 8.6615820, 49.4133488 8.6736185, 49.4149163 8.6654747, 49.3787958 8.6752564, 49.3787513 8.6752582, 49.4168939 8.6715527, 49.4182453 8.6691484, 49.4083411 8.6839428, 49.4045486 8.6762865, 49.4176645 8.6590769, 49.4150320 8.7620828, 49.3892845 8.6883551, 49.4176061 8.6615500, 49.4159754 8.6729830, 49.4158552 8.6727509, 49.4032152 8.6746268, 49.4071473 8.6720042, 49.3999783 8.6914430, 49.3659380 8.6888680, 49.4019576 8.6811178, 49.4019323 8.6807736, 49.4019771 8.6810189, 49.4019064 8.6809317, 49.4045857 8.6750253, 49.3870086 8.6664502, 49.4209713 8.6746499, 49.4061766 8.6754688, 49.4103125 8.7748332, 49.4235022 8.6459331, 49.4048709 8.6753023 +55.9381717 -3.2059291 +yes +8 ++44 131 221 9779 +no +Le trésor de Notre-Dame de Paris +yes +no +Léon de Bruxelles +90 +48.8184662 2.3501586, 48.8611385 2.3941583, 48.8370749 2.4110506, 48.8749189 2.4002158, 48.8327412 2.3975487, 48.8256492 2.4145211, 48.8607252 2.4037124, 48.8866268 2.3732545, 48.8439975 2.4003952, 48.8301712 2.3992796, 48.8192381 2.4359906, 48.8848404 2.3887566 +0 +13 +Dossenheimer Landstraße, 5 and Willy-Brandt-Platz, 1 and Adenauerplatz, 30 and Brückenstraße, 8 and Rohrbacher Straße, Karlsruher Straße, 40 and Brückenstraße, 37 and Mönchhofstraße, Breslauer Straße, 32 and Brückenstraße, 18-20 and Poststraße, 59 and Mönchhofstraße, 4 and Schwetzinger Terrasse, Karlsruher Straße, 6-8 and Poststraße, 37 and Dossenheimer Landstraße +248 +6 +École de conduite Lamartine, Centre de conduite auto-moto, Auto-École, ECF Trinité, Auto-École, Fati Auto école, Auto-école du chêne, ecf, La Réussite, École de conduite, C.E.R. Auto-École, Auto moto école, Auto-école Manin, Auto moto ecolde des Buttes Chaumont, C.E.R. Porte des Lilas, Permis Express, Auto école, ABIR C.F.R., Auto-école Cosmos and +331 48 78 09 98 +yes +Grill Afro Akwaba +21 and Rue Hérold, 2 and Rue de la Barrière Blanche, 5-7 and Rue de Fourcy, 19 and Rue Antoine-Julien Hénard, 10 and Rue de Fourcy, 18 and Rue de l'Orillon, 14 and Avenue Parmentier, 88 and Rue de la Jonquière, 123 and Rue de Tocqueville, 127/129 and Rue Saint-Martin, 6 and Rue Récamier, 22 and Rue Pierre Gourdault, 11 and Rue Jean de La Fontaine +yes +231 +4 +no +St. Giles' Cathedral and 55.9494705 -3.1908525 +793 +City Car Club +55.9455830 -3.1876260, 55.9666311 -3.1963169, 55.9164420 -3.3136067, 55.9690950 -3.1689790, 55.9752483 -3.2153052, 55.9008723 -3.3189823, 55.9710850 -3.2302781, 55.9278249 -3.1233349, 55.9018528 -3.2249445, 55.9194696 -3.2656157, 55.9200972 -3.2944514, 55.9183885 -3.2959833 +Lochheim +Conservatoire Francis Poulenc +55.8958820 -3.3106749, 55.9583533 -3.2082826, 55.9794554 -3.2794113, 55.9516586 -3.1968492, 55.9899700 -3.3959164, 55.9530290 -3.1141130, 55.9498298 -3.1876708, 55.9483392 -3.1987455, 55.9033628 -3.2848004, 55.9574011 -3.1728671, 55.9361328 -3.1040998, 55.9195933 -3.2025852, 55.9710589 -3.2774742, 55.9544151 -3.1094907, 55.9490376 -3.0947794, 55.9562075 -3.1143007, 55.9434584 -3.2046928, 55.9458479 -3.1861307, 55.9744303 -3.1776966, 55.9699428 -3.1720727, 55.9875100 -3.4039888, 55.9450054 -3.2718056, 55.9260049 -3.1416514, 55.9425700 -3.2686698, 55.9435751 -3.2689147, 55.9434933 -3.2688802, 55.9451248 -3.2679627, 55.9472851 -3.2706337, 55.9443505 -3.2706792, 55.9079031 -3.2547777, 55.9774386 -3.2624501, 55.9772339 -3.2660670, 55.9018609 -3.1707018, 55.9018157 -3.1717612, 55.9539273 -3.1922043, 55.9647720 -3.2042289, 55.9646282 -3.2123860, 55.9807522 -3.1787546, 55.9804391 -3.1785758, 55.9902127 -3.3859837, 55.9906294 -3.3854450, 55.9014970 -3.2224341, 55.9411936 -3.1485976, 55.9250810 -3.3061410, 55.9450120 -3.1915042, 55.9526370 -3.1734364, 55.9596395 -3.3190414, 55.9402730 -3.1715946, 55.9521101 -3.1881430, 55.9382378 -3.3140197, 55.9393607 -3.3159294, 55.9264292 -3.1646478, 55.9471021 -3.1971869, 55.9906129 -3.3848526, 55.9504193 -3.2001988, 55.9505097 -3.1997700, 55.9526834 -3.1734548, 55.9486422 -3.1962925, 55.9487023 -3.1964050, 55.9807254 -3.2242925, 55.9663393 -3.2086646, 55.9450592 -3.2712300, 55.9626676 -3.2000599, 55.9371467 -3.2065090, 55.9800422 -3.2999163, 55.9410173 -3.1832050, 55.9389958 -3.2265743, 55.9278315 -3.2088719, 55.9428951 -3.2860475, 55.9315854 -3.2267880, 55.9501209 -3.2050581 +165 +Jeffrey Street +49.4122382 8.7129316 +92 +yes +3 +Hotel Etab +yes +49.3788109 8.6919767, 49.4052150 8.6872450, 49.4118434 8.7084139, 49.4117760 8.7068775, 49.4117663 8.7064409 +55.9378000 -3.1771354, 55.9539470 -3.1868320, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9543521 -3.1879033, 55.9285894 -3.1685115, 55.9821414 -3.4001668 +48.8376960 2.3062844, 48.8831159 2.3425480, 48.8481953 2.3419715, 48.8668168 2.3257587, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8717742 2.2984126, 48.8668308 2.3028826, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8715217 2.3076937, 48.8664199 2.2892440, 48.8604399 2.3007825, 48.8864077 2.2949505, 48.8710343 2.3234791, 48.8730243 2.3445449, 48.8606580 2.3469337, 48.8330539 2.2881095, 48.8234693 2.3306543, 48.8516696 2.2978180, 48.8528343 2.3441184, 48.8504483 2.2926945, 48.8518053 2.3448347, 48.8549752 2.3046163, 48.8868980 2.3004690, 48.8487972 2.3410105, 48.8683305 2.3330172, 48.8920470 2.3024290, 48.8609042 2.3467975, 48.8662424 2.3373468, 48.8814057 2.3282568, 48.8238179 2.3241127, 48.8752556 2.2866823, 48.8704922 2.2798118, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8848968 2.3034428, 48.8542680 2.3078406, 48.8802164 2.2842407 +401 +yes +48.8883391 2.3034488, 48.8417871 2.2993261, 48.8608910 2.3527350, 48.8267459 2.3664051, 48.8425359 2.3619057, 48.8311601 2.3117228, 48.8308701 2.3570791, 48.8390699 2.3214477, 48.8454696 2.3871278, 48.8459092 2.3777264, 48.8515628 2.3840327, 48.8601187 2.3790729, 48.8533975 2.3591296, 48.8515139 2.3573256, 48.8465258 2.3513354, 48.8848656 2.3830530, 48.8513211 2.3556751, 48.8479918 2.3275469, 48.8572964 2.3373427, 48.8580602 2.3089956, 48.8905420 2.3939914, 48.8624940 2.3445634, 48.8949558 2.3870960, 48.8850074 2.3674278, 48.8843615 2.3542291, 48.8780917 2.3027106, 48.8619020 2.2845127, 48.8460501 2.3109746, 48.8695100 2.3602240, 48.8533051 2.4010825, 48.8866611 2.3713511, 48.8401777 2.2788755, 48.8779906 2.3450959, 48.8301597 2.3816491, 48.8232707 2.3553092, 48.8600805 2.3520305, 48.8247112 2.3199067, 48.8421613 2.2631956, 48.8585418 2.3648460, 48.8267977 2.3663149, 48.8349953 2.3170932, 48.8636991 2.3600389, 48.8273570 2.3419023, 48.8772018 2.3707749, 48.8949090 2.3637139, 48.8500551 2.2863669, 48.8794010 2.3973642, 48.8520545 2.3450880, 48.8659387 2.3929440, 48.8463242 2.2672050, 48.8714000 2.4083505, 48.8701190 2.3851060, 48.8471209 2.3451247, 48.8425009 2.3496614, 48.8207702 2.3440653, 48.8270960 2.3756517, 48.8720638 2.3998952, 48.8761197 2.3896217, 48.8844548 2.3219231, 48.8665219 2.3404139, 48.8927627 2.3791089, 48.8896131 2.3199428, 48.8717681 2.3573818, 48.8567195 2.3532017, 48.9004776 2.3361193, 48.8328125 2.3452788, 48.8524437 2.3031358, 48.8473520 2.3544890, 48.8622102 2.3775622, 48.8338228 2.3257312, 48.8426154 2.3558949, 48.8915823 2.3442872, 48.8672834 2.3384559, 48.8477242 2.3463368, 48.8471642 2.3459531, 48.8473765 2.3454667, 48.8568692 2.3618963, 48.8568692 2.3619825, 48.8336577 2.3758171, 48.8502323 2.3636287, 48.8394063 2.3388487, 48.8341301 2.3741390, 48.8347819 2.3752986, 48.8324684 2.3762548, 48.8331207 2.3774143, 48.8762900 2.3881904, 48.8542728 2.3281460, 48.8424786 2.3972916, 48.8370023 2.3036518, 48.8533080 2.4010815, 48.8815116 2.3323814, 48.8558814 2.3436259, 48.8889374 2.3632101, 48.8416997 2.3451499, 48.8418628 2.3455995, 48.8416292 2.3454839, 48.8601141 2.4028795, 48.8398451 2.3417030 +Saravanaa Bhavan +Odeon, Filmhouse, Vue Cinema +49.4077140 8.6927035, 49.4068403 8.6904933, 49.4127267 8.6759075, 49.4129744 8.6753927, 49.4159882 8.7159505, 49.4152724 8.7089320, 49.4152263 8.7091544, 49.4161997 8.7168545, 49.4136480 8.7107879, 49.4137160 8.7131886, 49.3999244 8.6912464, 49.4002825 8.6911005, 49.4061329 8.6714869, 49.4043662 8.6769558, 49.4042794 8.6767159, 49.4043928 8.6767032, 49.4040938 8.6777606, 49.4041378 8.6780055, 49.4041963 8.6783706, 49.4075933 8.6747057, 49.4075056 8.6748798, 49.4078534 8.6762963, 49.4079283 8.6756934, 49.4078625 8.6803507, 49.4079068 8.6803518, 49.4079150 8.6852124, 49.4079624 8.6851808, 49.4084050 8.6884254, 49.4084670 8.6883986, 49.4101809 8.6928995, 49.4099846 8.6928532, 49.4095745 8.6932967, 49.4093811 8.6931694, 49.4092112 8.6929959, 49.4090525 8.6927592, 49.4111209 8.7057655, 49.4129809 8.7053485, 49.4132415 8.7055842, 49.4133149 8.7054986, 49.4119771 8.6972359, 49.4120763 8.6972060, 49.4055633 8.6828676, 49.4049949 8.6822918, 49.4129282 8.7027762, 49.4126418 8.7016223, 49.4090720 8.7054522, 49.4083347 8.6981500, 49.4138680 8.6938162, 49.4069337 8.6900774, 49.4068742 8.6934775, 49.4088905 8.7053904, 49.4092125 8.7080457, 49.4095401 8.7091480, 49.4133887 8.7086161, 49.4151598 8.7205422, 49.4136898 8.7167012, 49.4124611 8.7128500, 49.4114089 8.7119309, 49.4112562 8.7115057, 49.4080587 8.6999304, 49.4066901 8.6710527, 49.4051217 8.6683796, 49.4005092 8.6783953, 49.4016334 8.6747771, 49.4014940 8.6745939, 49.3971927 8.6809442, 49.3961103 8.6778109, 49.3961779 8.6783236, 49.4054462 8.6926553, 49.4055795 8.6925319, 49.4020433 8.6916031, 49.4025059 8.6915946, 49.4137204 8.6940432, 49.4129531 8.6764014, 49.4128723 8.6767666, 49.3984594 8.6893414, 49.4068321 8.7149530, 49.4070152 8.7149103, 49.4062811 8.7145104, 49.3998313 8.6768307, 49.4150504 8.7200383, 49.4064011 8.6905312, 49.4064324 8.6907065, 49.4064641 8.6908840, 49.4064968 8.6910579, 49.4088954 8.7128442, 49.4098287 8.6928288, 49.4131082 8.7212285, 49.4049329 8.6756419, 49.4012204 8.6724017, 49.3962812 8.6769601, 49.3993531 8.6716017, 49.3994314 8.6716997, 49.4042522 8.6786859, 49.4038577 8.6765425, 49.4047148 8.6787123, 49.4048572 8.6761515, 49.4049714 8.6760919, 49.4050841 8.6755115, 49.4016551 8.6733745, 49.4063962 8.6915499, 49.4050422 8.6812130 +49.4064728 8.6918564, 49.4089660 8.6724358, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4037954 8.6793653, 49.4214832 8.6754845, 49.4140422 8.6704577, 49.4228639 8.6764796, 49.4080031 8.6948451, 49.4187759 8.6518124, 49.4064148 8.6829502, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.4124163 8.7017576, 49.4186616 8.6453088, 49.4191927 8.6451544, 49.4186552 8.6479768, 49.4108612 8.6928690, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4101694 8.6916552, 49.4119501 8.7000203, 49.4096598 8.6875604, 49.4056131 8.6868331, 49.4108200 8.6949938, 49.3962000 8.7085445, 49.4174427 8.7569407, 49.4088000 8.6984868, 49.4154951 8.7332007, 49.3748097 8.6779817, 49.4056935 8.6753617, 49.4073436 8.6889011 +5 +83 +yes +denn's Biomarkt, Fair & Quer, Mahlzahn Vollkornbäckerei, Masala, Apfel und Korn, Heil's Feinschmeckerladen, Alnatura, Reformhaus Escher (Vita Nova), Lebe Gesund, Alnatura, denn's Biomarkt +yes +Salvatore's, The Gorgie Fish Bar, The Fountain, Jacob's chippy, pizza + kebabs, Globetrotter, Pierinos, Javits and Mo-Th 12:00-00:00, Fr 12:00-01:00, Sa 16:00-01:00, Su 16:00-00:00, Jubilee Supper Room and Mo-Th 11:30-00:00, Fr 11:30-01:00, Sa 16:00-01:00, Su 16:00-00:00, Comiston Fry, L'Alba D'Oro, Franco's and Mo-Th 11:30-13:30, Fr 11:30-24:00, Sa 00:00-01:00, 11:30-24:00, Su 00:00-01:00, 11:30-13:30, Gino's Fish Bridge Bar, Corbie, Angelo's, Concord Fish Bar, Chip Inn, The Chip King and Mo-Su 16:30-23:00, The Gold Sea, Valletta Fish Bar, Monte Bianco, Rambo's, Deep Sea, Stefanos, The Codfather, Tony's, Gino's, Clameshell, Castle Rock Take Away, The Friery, Bene's Fish & Chips, Taste of Scotland, The Town House, Giovanni's +yes +20, 15, 15, 20, 15, 15, 15, 15, 15, 15, 15, 15, 15 +55.9387357 -3.3996538, 55.9380963 -3.4051984, 55.9385221 -3.4040472, 55.9386848 -3.4052874, 55.9333966 -3.3543268, 55.9024677 -3.2131994, 55.9579939 -3.3233291, 55.9028966 -3.1642422, 55.9122291 -3.3948137, 55.8798835 -3.3439577, 55.9226836 -3.2094162, 55.9101467 -3.2093552, 55.9546676 -3.3637002, 55.9222410 -3.1492085, 55.9710480 -3.1879850, 55.9387885 -3.2890803, 55.8869268 -3.2813599, 55.9691744 -3.1898383, 55.9045439 -3.3952157, 55.9729762 -3.1721306 +no +48.8715303 2.3852468 +15 +49.3819891 8.7064791, 49.3696607 8.7091979, 49.3877298 8.7446960, 49.3946455 8.7166681, 49.4052183 8.7807063, 49.4040784 8.7535968, 49.4040547 8.7550178, 49.3925114 8.7464235, 49.3936499 8.7467333, 49.4005231 8.7520710 +48.8577996 2.3607146 +2 +0.72396396008536001 +Rue Robert Blache +2 +49.3999791 8.6903579, 49.4183136 8.7570658, 49.4128139 8.6783720, 49.4145117 8.6907695, 49.4077612 8.6774779, 49.4072855 8.6846071, 49.4071494 8.6862981, 49.4085419 8.6884195, 49.4114880 8.7036708, 49.4112467 8.7056121, 49.3803180 8.6917254, 49.3789548 8.6920168, 49.3789551 8.6697358, 49.4118400 8.7103033, 49.4101180 8.6997470, 49.3932913 8.6898491, 49.3999572 8.6849703, 49.4055340 8.6909414, 49.4284757 8.6833956, 49.4298020 8.6813390, 49.3813862 8.6715525, 49.3801053 8.6879890, 49.4055840 8.6658584, 49.3805484 8.6587871, 49.4019559 8.6916056, 49.4035568 8.6918554, 49.4089227 8.6927850, 49.3788705 8.6685559, 49.3821598 8.6632293, 49.4076785 8.6917122, 49.4211891 8.6800261, 49.3746688 8.7035666, 49.4103729 8.6964923, 49.3744114 8.6827527, 49.3734828 8.6803866, 49.4089710 8.6939315, 49.4152187 8.7476376, 49.4122637 8.7077964, 49.4034041 8.6828344, 49.4283328 8.6876890, 49.4297175 8.6854401, 49.4294006 8.6822101, 49.4045550 8.6757234, 49.4042051 8.6757454, 49.4055602 8.6759168, 49.3773301 8.6643950, 49.4247182 8.6873975, 49.4254190 8.6871690, 49.4211737 8.7557530, 49.4152481 8.6922641, 49.3804318 8.6878275, 49.3803620 8.6881463, 49.4145068 8.6907391, 49.4148749 8.6923202, 49.4090710 8.6596269, 49.3797613 8.6848437, 49.4230594 8.6488328, 49.4059598 8.6868733, 49.3772126 8.6700382, 49.3782446 8.6730115, 49.4270878 8.6470653, 49.4278529 8.6465726, 49.4188086 8.6517772, 49.3974830 8.6464426, 49.3976777 8.6479965, 49.4073819 8.6570319, 49.4014703 8.6683127, 49.4023052 8.6665425, 49.4081778 8.6881317, 49.4179480 8.7596452, 49.4146130 8.6710105 +12 +Fahrschule Jung +49.5526338 8.6554413, 49.5513229 8.6687450, 49.5554496 8.6699318, 49.5596224 8.6688235, 49.5462868 8.6715791, 49.5492546 8.6740750, 49.5496361 8.6716921, 49.6146080 8.6736398, 49.6015351 8.5181143, 49.6047659 8.4764246, 49.6458511 8.5671019, 49.6467494 8.5615748, 49.6566529 8.5677748, 49.6445836 8.5677274, 49.6417095 8.5631262, 49.5971548 8.4682347, 49.6052567 8.4710750, 49.6036653 8.4650992, 49.5192833 8.5023439, 49.5017017 8.5044127, 49.5625744 8.6656969, 49.6468579 8.6317019, 49.3779472 8.6930196, 49.3791086 8.6917106, 49.3738873 8.6885987, 49.4764727 8.5581500, 49.5001511 8.4141813, 49.4858432 8.3892989, 49.3761590 8.5674826, 49.3191887 8.5595067, 49.3726645 8.5718770, 49.3785813 8.5766583, 49.3417457 8.6549932, 49.3378610 8.6613039, 49.3481526 8.6539714, 49.3445704 8.6640475, 49.3839393 8.5721238, 49.3265417 8.5563625, 49.3191315 8.5470156, 49.3147158 8.5519038, 49.5954551 8.4634480, 49.4295856 8.6906085, 49.4242374 8.6490409, 49.5940946 8.4598127, 49.4347876 8.6782371, 49.4426103 8.6658751, 49.3138326 8.5606145, 49.5435708 8.5967846, 49.5979747 8.4757516, 49.3927830 8.5980107, 49.3923799 8.5946401, 49.5988026 8.4845303, 49.5885363 8.4859606, 49.5845876 8.4879738, 49.5026807 8.4702380, 49.6017750 8.5148540, 49.5953600 8.5833630, 49.5989820 8.5839630, 49.4046422 8.6758721, 49.4188030 8.6627721, 49.4215394 8.6751324, 49.4230903 8.6848004, 49.4423017 8.5790531, 49.4300762 8.6800795, 49.4766349 8.5210604, 49.4766109 8.5210589, 49.4760288 8.4678779, 49.4722315 8.4693491, 49.3945090 8.6898249, 49.5279213 8.3955159, 49.4036423 8.6351457, 49.4303419 8.6447639, 49.4199824 8.6516327, 49.5271969 8.6651823, 49.4641062 8.6650466, 49.4471459 8.6743543, 49.4428444 8.6214405, 49.4784646 8.4963955, 49.4707059 8.6520153, 49.4822964 8.4896176, 49.4776805 8.4832901, 49.4039244 8.6201112, 49.3976600 8.6462271, 49.3835628 8.6905633, 49.4016060 8.6295678, 49.3993345 8.6272386, 49.6499908 8.6340695, 49.3931195 8.6279937, 49.4751871 8.6837099, 49.4102743 8.6522076, 49.3186598 8.5512647, 49.4536423 8.6751502, 49.4519728 8.6778784, 49.4065263 8.6402454, 49.4077957 8.6403731, 49.4815121 8.4828496, 49.3950783 8.6433081, 49.4536254 8.3815384, 49.6424512 8.6384492, 49.4056159 8.6307388, 49.3973715 8.6486924, 49.4024942 8.6473792, 49.4229184 8.6449762, 49.4085533 8.6680811, 49.4077532 8.6729299, 49.4083422 8.6884456, 49.4096328 8.6933428, 49.4001133 8.6852761, 49.4444884 8.6271478, 49.3785544 8.6593079, 49.2999064 8.5654315, 49.5282525 8.3853190, 49.4806473 8.5961070, 49.2905479 8.5632348, 49.5291303 8.3918875, 49.3263000 8.5468316, 49.3166684 8.5493592, 49.3182722 8.5439702, 49.4714810 8.6083963, 49.4785782 8.6564609, 49.3084609 8.6351584, 49.2950357 8.5641504, 49.3225437 8.5335892, 49.3736487 8.5775117, 49.3896002 8.5660555, 49.2961664 8.5700349, 49.5421727 8.6636876, 49.3045372 8.6466441, 49.3687498 8.5800586, 49.3726561 8.5798363, 49.4002513 8.6905301, 49.3575085 8.6891721, 49.4079380 8.6845118, 49.4079623 8.6804555, 49.5532677 8.6658488, 49.5610225 8.6903218, 49.4805167 8.6715673, 49.4016967 8.6842645, 49.4152930 8.6919888, 49.5523081 8.5951882, 49.3753209 8.5842061, 49.6091623 8.6418976, 49.5454675 8.6298570, 49.6149320 8.6503966, 49.5002983 8.5498171, 49.6105522 8.6532369, 49.2956896 8.5694190, 49.4435052 8.6332139, 49.4989775 8.4996107, 49.4175155 8.6749548, 49.4280288 8.6874096, 49.4226519 8.6906789, 49.4237741 8.3796665, 49.4243637 8.3901006, 49.4198160 8.3955221, 49.3291477 8.5397666, 49.3413286 8.6690896, 49.4654862 8.5630507, 49.4503171 8.5233143, 49.4309897 8.4978410, 49.4282986 8.4891901, 49.4313129 8.4959077, 49.5078054 8.3629459, 49.3504070 8.6321551, 49.4541025 8.5375578, 49.3978519 8.5349890, 49.4036804 8.5358143, 49.4706173 8.4699685, 49.3960032 8.5914393, 49.4210265 8.4208975, 49.4213716 8.4206943, 49.5361742 8.5642657, 49.5213559 8.4025971, 49.3796214 8.6698422, 49.5411428 8.6400552, 49.5449883 8.6380933, 49.3021886 8.6429316, 49.4642584 8.4844414, 49.4631679 8.4950194, 49.4622735 8.4845749, 49.3750123 8.4535196, 49.4708285 8.6603546, 49.4886950 8.5438017, 49.4865780 8.5341631, 49.4871974 8.5284071, 49.4842068 8.5321272, 49.4844998 8.5396275, 49.4813475 8.5392948, 49.4906189 8.5252295, 49.4928093 8.5231160, 49.4950978 8.5284279, 49.3904944 8.6883092, 49.3915993 8.6903930, 49.4823499 8.4795195, 49.4680044 8.4830290, 49.5145230 8.6578124, 49.4542685 8.4945230, 49.2944361 8.6843096, 49.4636413 8.4884577, 49.4743659 8.4653835, 49.5366820 8.6659671, 49.4471734 8.5061272, 49.3937049 8.5661427, 49.3099035 8.5447741, 49.5888987 8.6549457, 49.4213023 8.6891575, 49.5358085 8.4971147, 49.4621470 8.4065063, 49.4309258 8.4206618, 49.4409798 8.4175989, 49.4437479 8.4140917, 49.4805822 8.5566713, 49.4928618 8.4046445, 49.4957477 8.4153853, 49.4205029 8.6846704, 49.4174372 8.6854637, 49.4399326 8.4449762, 49.5508996 8.6679749, 49.4845835 8.4861412, 49.4425602 8.4277767, 49.4915516 8.3784579, 49.4693839 8.4558664, 49.4268458 8.4233321, 49.4454678 8.4182004, 49.4717141 8.6047118, 49.4131348 8.5458560, 49.5127526 8.5766366, 49.4245561 8.6872574, 49.4186207 8.6905302, 49.4129911 8.6528439, 49.4554171 8.3842872, 49.4723798 8.4402139, 49.4825657 8.4492995, 49.4924928 8.3764937, 49.4786030 8.4903082, 49.4331943 8.5277059, 49.4308480 8.5291667, 49.3386748 8.5339113, 49.4038073 8.6922073, 49.5480018 8.3774413, 49.4205644 8.3883875, 49.3414114 8.6467625, 49.5418725 8.3751679, 49.5493313 8.6856291, 49.3993575 8.5843395, 49.4546515 8.4766580, 49.4066139 8.5537714, 49.3128737 8.5545772, 49.5416163 8.6583108, 49.5401579 8.6578378, 49.4868908 8.4676669, 49.4928220 8.4705420, 49.5020864 8.4704715, 49.4052607 8.6659933, 49.4055766 8.6654953, 49.3204781 8.5682552, 49.3714420 8.5346515, 49.3784076 8.5391735, 49.4560487 8.3748093, 49.3173043 8.5376593, 49.3116456 8.5379711, 49.2921862 8.6910743, 49.4911119 8.3742960, 49.3712535 8.5910730, 49.4416867 8.6147618, 49.4404471 8.5201007, 49.4376888 8.5274582, 49.4252292 8.4170772, 49.3482256 8.5307489, 49.4070710 8.4073373, 49.4541296 8.4822180, 49.4307088 8.6826152, 49.5559207 8.6889238, 49.3260347 8.6879653, 49.3234377 8.6867731, 49.5273739 8.5651748, 49.5266308 8.5656324, 49.4797746 8.4391042, 49.4989805 8.4843058, 49.4941948 8.4844155, 49.5425908 8.4678925, 49.5001116 8.4803170, 49.5444562 8.4781503, 49.5037603 8.4961936, 49.3982142 8.4388742, 49.5110301 8.4710668, 49.5330260 8.5941277, 49.4873169 8.4784566, 49.4487633 8.6041107, 49.6656426 8.6609367, 49.6521423 8.6500108, 49.3787048 8.6764500, 49.5114636 8.5350050, 49.4543736 8.6291869, 49.5424915 8.4717533, 49.4475131 8.4261958, 49.4481810 8.4188422, 49.5391501 8.4773405, 49.4959898 8.4310922, 49.3970452 8.6830144, 49.4946219 8.3724195, 49.4671705 8.5629531, 49.5181730 8.4097783, 49.5150107 8.4033010, 49.5903819 8.6385883, 49.3507170 8.6892282, 49.5311679 8.3834222, 49.5109697 8.5390654, 49.6333827 8.6325752, 49.4226763 8.4281591, 49.5118162 8.6060150, 49.3452242 8.6743498, 49.5050598 8.4882934, 49.4445636 8.5816251, 49.4459377 8.5730972, 49.4639703 8.5662392, 49.4920089 8.4654110, 49.4891200 8.4631089, 49.4855525 8.4714451, 49.6717144 8.6238800, 49.6732916 8.6243610, 49.4755522 8.5060354, 49.4777080 8.4194033, 49.4826588 8.4298418, 49.4783913 8.5133178, 49.4787334 8.4823454, 49.4818243 8.4728248, 49.5075555 8.5062085, 49.5123400 8.4990766, 49.4890790 8.3723447, 49.5003383 8.4681392, 49.4886025 8.5229300, 49.4509911 8.6718847, 49.4687302 8.5596994, 49.4668508 8.5541279, 49.5048012 8.6049417, 49.5058154 8.5991281, 49.4720637 8.5678457, 49.3935169 8.4374510, 49.5109111 8.5175535, 49.5134609 8.5109622, 49.5038199 8.5124492, 49.5294880 8.4924719, 49.4535628 8.4905741, 49.4564320 8.4890877, 49.4543568 8.4824181, 49.4982055 8.4910773, 49.4976749 8.4778943, 49.5033335 8.4634707, 49.4741811 8.4824969, 49.4847637 8.4636093, 49.6675554 8.6315104, 49.4648656 8.5102909, 49.4795588 8.4696925, 49.4972386 8.4722901, 49.4988236 8.4674949, 49.4966530 8.4866256, 49.4620122 8.4741993, 49.4574234 8.4851237, 49.4593083 8.4706277, 49.5047040 8.4880834, 49.5124002 8.6565502, 49.6528838 8.5673290, 49.4782712 8.5070996, 49.4786515 8.5098927, 49.4460279 8.5227546, 49.4428953 8.5184434, 49.4554270 8.5697767, 49.4603642 8.5698463, 49.5023852 8.4465135, 49.4938995 8.4579290, 49.5323131 8.4701018, 49.4989234 8.4484845, 49.4650782 8.4660830, 49.3804529 8.6874252, 49.5059134 8.5174984, 49.5080014 8.4776263, 49.4054299 8.6767260, 49.4054501 8.6767490, 49.4423442 8.5141178, 49.4989638 8.5029609, 49.3390847 8.6564963, 49.4779866 8.4958199, 49.5903363 8.6525815, 49.5941595 8.6540387, 49.4847568 8.4740166, 49.5138316 8.5479243, 49.4992414 8.4165235, 49.5918833 8.6618825, 49.4843868 8.5321396, 49.3610799 8.5359529, 49.4740411 8.6173826, 49.4279082 8.6839585, 49.3929187 8.5615782, 49.4127839 8.6732119, 49.4182810 8.6660747, 49.4167698 8.6778109, 49.2913518 8.6644581, 49.4140135 8.6829496, 49.3734559 8.6824541, 49.3734280 8.6804585, 49.3745737 8.6766391, 49.3795300 8.6822909, 49.3843561 8.6673425, 49.4156948 8.6877018, 49.4186333 8.6903397, 49.3816846 8.6868958, 49.3778358 8.6889772, 49.4096346 8.6933512, 49.4026410 8.6888163, 49.4047864 8.6845518, 49.4044472 8.6883811, 49.4062695 8.6913666, 49.4062653 8.6913679, 49.4085166 8.6926281, 49.4015292 8.6757972, 49.4751215 8.4447538, 49.4753090 8.4439781, 49.4723115 8.4446306, 49.4316305 8.5715242, 49.4722987 8.4498631, 49.4694596 8.4459163, 49.4684341 8.4346313, 49.4655353 8.4193218, 49.4768109 8.4038972, 49.4717681 8.4043309, 49.3994162 8.6880161, 49.3827614 8.6820305, 49.3687133 8.5309255, 49.5863527 8.6469574, 49.4512831 8.5851445, 49.4415950 8.5774993, 49.5619418 8.4791997, 49.4179179 8.5341440, 49.4191927 8.5147809, 49.4273374 8.5318674, 49.4878267 8.5258092, 49.4186575 8.5259343, 49.4120750 8.5220648, 49.4088197 8.5218682, 49.4062567 8.5209778, 49.4786924 8.5981080, 49.5152437 8.5181165, 49.3855700 8.5712429, 49.3305410 8.6722973, 49.3845397 8.5737947, 49.3841541 8.5774672, 49.4871957 8.4669323, 49.5299515 8.5718285, 49.5314204 8.5765244, 49.4675791 8.6133121, 49.4794425 8.5535035, 49.4831596 8.5610945, 49.4769338 8.5657223, 49.4774095 8.5619997, 49.4848515 8.4814311, 49.5051898 8.4935473, 49.5207522 8.4034862, 49.5517543 8.3782358, 49.4982790 8.6570508, 49.4981719 8.6521516, 49.4853666 8.4627430, 49.4804899 8.4860880, 49.4848495 8.4761497, 49.4721189 8.5496779, 49.4880198 8.4642243, 49.4642559 8.5572445, 49.4897409 8.4377712, 49.5075268 8.5062729, 49.5942259 8.6445664, 49.4975985 8.4900640, 49.4868107 8.4688548, 49.4778624 8.4536125, 49.4982857 8.5565417, 49.6750068 8.6450981, 49.4693227 8.4691927, 49.5030146 8.6016449, 49.4858508 8.4824634, 49.4744092 8.4860415, 49.4883473 8.4056724, 49.4548446 8.4036445, 49.4765745 8.4860680, 49.5390884 8.4502362, 49.5056775 8.4842932, 49.5457099 8.4464512, 49.3967764 8.5349193, 49.3947340 8.5341881, 49.4441798 8.5316600, 49.4498003 8.4787972, 49.4316207 8.5715985, 49.4015439 8.5564859, 49.4641295 8.6024278, 49.5031646 8.3819405, 49.4798502 8.4487432, 49.6334910 8.6209501, 49.6368541 8.6191745, 49.6389246 8.6189867, 49.3568753 8.4479584, 49.5219624 8.6659217, 49.4180049 8.4304703, 49.5253338 8.6668826, 49.4995180 8.4905691, 49.5268383 8.6549756, 49.3923418 8.5869300, 49.3897621 8.5866301, 49.3900106 8.5951082, 49.4703095 8.6676207, 49.3454195 8.6833029, 49.2805051 8.6730134, 49.4417734 8.4209918, 49.5028783 8.6616836, 49.5079175 8.6287307, 49.4438650 8.6097575, 49.5105009 8.6634850, 49.4960866 8.5527532, 49.6427828 8.6512072, 49.6460906 8.6869091, 49.4821573 8.4496006, 49.3840294 8.5818336, 49.3869098 8.5828680, 49.4006673 8.6308209, 49.4876255 8.4685410, 49.4805032 8.4790806, 49.4807315 8.4835521, 49.5223778 8.3942438, 49.4789422 8.4404426, 49.4919017 8.3762136, 49.4928241 8.3719058, 49.4945002 8.3722348, 49.4965126 8.5478242, 49.4933598 8.4183256, 49.3651468 8.6848614, 49.3748990 8.6769370, 49.5265918 8.4789790, 49.4533307 8.3761199, 49.5049367 8.5273225, 49.6085770 8.6485202, 49.6083653 8.6527742, 49.4616961 8.4823765, 49.4542475 8.4825095, 49.4609738 8.5695179, 49.5235488 8.4856429, 49.3794228 8.6676503, 49.4646409 8.4719323, 49.4464192 8.6113850, 49.4453340 8.5709402, 49.3751050 8.5886594, 49.4459998 8.6035076, 49.5308660 8.6481632, 49.5330110 8.6443614, 49.4924070 8.4196660, 49.4920108 8.4203004, 49.6392769 8.6309404, 49.5162649 8.4005627, 49.5306577 8.4999107, 49.4969376 8.4207200, 49.5386334 8.5790385, 49.5400345 8.5792127, 49.3442868 8.6897159, 49.3470840 8.6884135, 49.5267542 8.5619915, 49.3425441 8.6599382, 49.5191389 8.4062496, 49.4750609 8.6692928, 49.5289761 8.6181849, 49.5412571 8.5655589, 49.5465615 8.5675124, 49.5479095 8.5979610, 49.5473900 8.5917604, 49.5328738 8.5840945, 49.3111150 8.6481530, 49.5405306 8.5884183, 49.5416058 8.5883322, 49.6035142 8.4793012, 49.5010293 8.4763173, 49.5183424 8.4631446, 49.5293353 8.4507912, 49.5243872 8.4958207, 49.4491677 8.4946723 +55.9524898 -3.1736491, 55.9525959 -3.1925077 +24.7891123 141.3146697, -1.4309167 5.6350749, -4.7738085 157.0316686, 18.1108333 145.7722222, 14.5661111 168.9566667, -12.1691894 96.8301442, -10.4878279 105.6329821, -10.8565567 -165.8461748, -0.8564844 169.5355321, 14.8522683 -24.7075971, -37.1156907 -12.2828246, -29.0260120 167.9556525, 56.5736061 -169.6263149, -27.6083244 -144.3429876, -12.2952834 168.8295414, 6.2091635 160.7089153, 5.5280950 -87.0612001, -59.4370027 -27.3584626, -25.0696325 -130.1053040, 77.4956092 82.4334344, -20.5044623 -29.3209289, -15.8917495 54.5231076, 10.3033619 -109.2171990, -54.4189432 3.3604943, -49.6814062 178.7699280, -37.8365206 77.5549248, -38.7206736 77.5263243, -15.9672556 -5.7107062, -7.9410339 -14.3578255, -62.1687476 -58.3613060, 51.9494289 179.6228852, -14.1721262 -141.2252651, -22.2385304 -138.7472529, -10.4888425 105.6262024, 50.8628415 155.5676832, -29.0289934 167.9556525, -29.2693250 -177.9335285, -52.5374577 169.1416709, -1.2902111 -90.4317786, -7.3385866 72.4242323, -60.7213362 -44.6289196, -68.8422683 -90.5797344, -54.6318119 158.8625822, -76.0771107 168.3006656, -71.8869791 171.1877520, 81.7741030 58.6051449, 0.8075422 -176.6180734, -27.1259837 -109.3386817, -33.6444743 -78.8591275, 18.7927589 -110.9813295 +Kulturzentrum Karlstorbahnhof, Deutsch-Amerikanisches Institut and http://www.dai-heidelberg.de, Dezernat 16 and http://www.dezernat16.de +48.8655959 2.3652444 +yes +2012-11-15, 2012-11-15, 2013-03-17, 2012-11-15, 2012-11-15, 2010-10-12, 2010-10-12, 2010-10-12, 2012-11-15, 2012-11-15, 2012-11-15, 2013-03-17, 2012-11-15, 2012-11-15, 2012-11-15, 2012-11-15, 2010-10-12, 2010-10-12, 2012-11-15, 2012-11-15, 2010-10-12, 2010-10-12, 2012-11-15, 2012-11-15, 2010-10-12, 2010-10-12, 2012-11-15, 2012-11-15, 2011-11-29, 2013-03-17, 2012-11-15, 2011-11-28, 2010-10-12, 2011-11-28, 2011-11-28, 2013-03-17, 2012-11-15, 2012-11-15, 2011-11-28, 2012-11-15, 2011-11-28, 2013-03-17, 2013-03-17, 2012-11-15, 2013-03-17, 2013-03-17, 2013-03-15, 2012-11-15, 2011-11-29, 2013-03-15, 2013-03-15, 2013-03-17, 2013-03-17, 2013-03-17, 2011-11-29, 2013-03-17, 2013-03-15, 2013-03-15 +11.854201048423009 +Städt. Gem. Grundschule - Dornberg, Priv. Rudolf-Steiner-Schule and http://www.waldorfschule-bielefeld.de/, Kinderverkehrsschule, Leineweberschule, Städt. Gem. Grundschule - Südschule, Städt. Gem. Hauptschule - Marktschule, Städt. Gem. Grundschule - Diesterwegschule, Städt. Gem. Grundschule Hillegossen, Städt. Gem. Grundschule - Brüder-Grimm-Schule, Städt. Gem. Grundschule - Am Waldschlößchen and http://www.gs-waldschloesschen.de/, Bildungszentrum Franziskus Hospital, Städt. Gem. Grundschule - Stiftsschule and http://www.stiftsschule-bielefeld.de/, Mamre-Patmos-Schule and http://www.mps-bethel.de/, Städt. Gem. Grundschule - Ummeln, Städt. Gem. Grundschule - Plaß-Schule, Städt. Gem. Grundschule Ubbedissen, Gymnasium Heepen and http://www.gymnasiumheepen.de/, Realschule Heepen and http://www.realschuleheepen.de/, Städt. Gem. Hauptschule - Heepen and http://www.hauptschule-heepen.de/, Städt. Gem. Grundschule - Am Homersen, Tieplatzschule, Städt. Gem. Hauptschule - Baumheideschule, Städt. Gem. Grundschule - Wellbachschule, Brackweder Gymnasium, Städt. Gem. Grundschule - Heeperholz, Städt. Gem. Grundschule Milse, Städt. Gem. Grundschule - Hans-Christian-Andersen-Schule, Friedrich Wilhelm Murnau-Gesamtschule - Städt. Schule Bielefeld-Stieghorst, Carl-Severing-Berufskolleg für Wirtschaft und Verwaltung, Außenstelle, Städt. Gem. Grundschule Babenhausen, Städt. Gem. Grundschule - Josefschule, Städt. Gem. Hauptschule - Lutherschule, Bonifatiusschule, Städt. Gem. Grundschule Altenhagen, Westfalen-Kolleg Bielefeld, Städt. Gem. Grundschule - Russheideschule, Städt. Gem. Grundschule - Stieghorstschule, Städt. Gem. Grundschule Brake, Städt. Gem. Grundschule - Oldentrup, Städt. Gem. Grundschule - Schröttinghausen-Deppendorf, Städt. Gem. Hauptschule - Oldentrup and http://www.hauptschule-oldentrup.de/, Städt. Gem. Grundschule - Hellingskampschule, Städt. Gem. Grundschule - Volkeningschule, Städt. Gem. Grundschule - Astrid-Lindgren-Schule, Städt. Gesamtschule Brackwede, Hans-Ehrenberg-Schule, Luisenschule, Realschule Brackwede, Städt. Martin-Niemöller-Gesamtschule, Helmholtz-Gymnasium and http://www.helmholtz-bi.de/, Realschule Jöllenbeck, Städt. Gem. Hauptschule Jöllenbeck, Verein Sonnenhellweg-Schule e.V., Städt. Gem. Grundschule - Eichendorffschule, Brodhagenschule and http://www.brodhagenschule.de/, Bosseschule, Städt. Gem. Grundschule - Sudbrackschule, Abendgymnasium - Gutenbergschule and http://www.abendgymnasium-bielefeld.de/, Gertrud-Bäumer-Schule, Max-Planck-Gymnasium and http://www.mpg-bielefeld.de, Städt. Cecilien-Gymnasium and http://www.ceciliengymnasium.de/, Städt. Gem. Grundschule - Fröbelschule, Schule am Kupferhammer, Städt. Gem. Grundschule - Brocker Schule, Städt. Gem. Grundschule - Bültmannshofschule, Ganztagsschule am Lönkert, Städt. Gem. Grundschule - Frölenbergschule, Carl-Severing-Berufskolleg für Handwerk und Technik and http://www.carl-severing-berufskolleg.de/csb-ht/, Carl-Severing-Berufskolleg für Metall- und Elektrotechnik and http://www.csbme.de/, Carl-Severing-Berufskolleg für Wirtschaft und Verwaltung and http://www.carl-severing-berufskolleg.de/csb-ht/, Maria-Stemme-Berufskolleg, Städt. Realschule - Kuhloschule, Falkschule, Ratsgymnasium zu Bielefeld, Gymnasium am Waldhof, Comeniusschule, Schule am Schlepperweg, Städt. Gem. Grundschule - Bückardtschule, Abendgymnasium jetzt Gutenbergstr. 19, Evangelische Bekenntnisgrundschule Hoberge-Uerentrup der Stadt Bielefeld, Hamfeldschule, Städt. Gem. Grundschule Theesen, Städt. Gem. Grundschule Vilsendorf, Fachseminar für Altenpflege, Friedrich-von-Bodelschwingh Schulen Bethel - Berufskolleg and http://www.berufskolleg-bethel.de/, Städt. Gem. Grundschule - Martinschule, Hedwig Dornbusch Schule, Berufskolleg, Kerschensteiner Berufskolleg and http://www.gymnasium-bethel.de/, Bibelschule Mennoniten-Gemeinde Bielefeld e.V., Schule am Möllerstift, Berufskolleg Senne, Gesamtschule Rosenhöhe, Rudolf-Rempel-Berufskolleg, Johannes-Rau-Schule, Theodor-Heuss-Schule, Realschule Senne, Sekundarschule Bethel Sekundarstufe I and http://www.fvbschulen.de/, Städt. Gem. Hauptschule Bielefeld - Hauptschule Senne, Öffentlich-Stiftisches Gymnasium der v. Bodelschwinghschen Stiftungen, Musik- und Kunstschule and http://www.muku-bielefeld.de/, Städt. Gem. Grundschule - Windflöte, Albatros-Schule, Berufskolleg der AWO Fachschule für Sozialpädagogik, Georg-Müller-Schule Senne, Georg-Müller-Schule and http://www.gms-net.de/, Georg-Müller-Schule and http://www.gms-net.de/, Georg-Müller-Schule and http://www.gms-net.de/, Griechische Ergänzungsschule (Lyzeum), Städt. Gem. Grundschule - Bahnhofschule, Städt. Gem. Grundschule - Buschkampschule, Städt. Gem. Grundschule - Osningschule, Städt. Gem. Grundschule - Quelle, Städt. Gem. Grundschule - Vogelruthschule, Städt. Kath. Grundschule - Klosterschule, Westkampschule, Schule für Ergotherapie Eckardtsheim and http://www.evkb.de/ergotherapieschule/, Ev. Krankenhaus Bielefeld (EvKB) - Haus Burgblick and http://www.evkb.de, Laborschule Haus 1, Hauptschule Nebengebäude, Turnhalle, Wellensiekschule (Grundschule Wellensiek) and http://www.wellensiekschule.de/, Klosterschule, Marienschule Bielefeld, Hundeschule Tuxhorn and http://www.bielefelder-hundeschule-tuxhorn.de/, Stapenhorstschule +365 +121 +436 +no +http://www.hotel-etab.de, http://www.marriott.de, http://www.auerstein.de/, http://www.hotels-in-heidelberg.de, http://www.gaestehaus-endrich.de, http://www.parkhotelatlantic.de, www.leonardo-hotels.com, www.bayrischer-hof-heidelberg.com, www.hackteufel.de, http://www.hotels-in-heidelberg.de, www.dublinerheidelberg.com, www.ibis-hotel.de, http://hotelneckartal.de, www.goldener-falke-heidelberg.de, www.ritter-heidelberg.de, www.europaeischerhof.com, http://www.hotel-elite-heidelberg.de, http://qube-hotel-heidelberg.de/, www.hotel-central-heidelberg.de, http://www.denner-hotel.de, www.hotel-acor.de, www.hotel-monpti.de, http://www.hotelamkornmarkt.de, http://www.nh-hotels.de/nh/de/hotels/deutschland/heidelberg.html, www.hotel-goldene-rose.de, www.hotel-nassauer-hof.de, http://www.hotels-in-heidelberg.de, http://www.hotels-in-heidelberg.de, http://www.heidelberger-kulturbrauerei.de/, www.villamarstall.de, www.hotel-goldener-hecht.de, www.hollaender-hof.de, http://www.schnookeloch.de, www.arthotel.de, www.weisserbock.de, http://www.gasthaus-backmulde-hotel.de, www.hip-hotel.de, www.hd-altstadt-hotel.de, www.krokodil-heidelberg.de, www.blume-hotel.de, www.hotel-classic-inn.de, www.garnihoteldiana.de, http://www.bergheim41.de, http://www.hotel-kranich-heidelberg.de, http://www.ihg.com/holidayinnexpress/hotels/de/de/heidelberg/hdbex/hoteldetail, http://www.molkenkur.de, www.gaestehaus.srh.de/, www.heidelbergsuites.com, www.lamm-heidelberg.de, http://www.heidelberg-astoria.de/, www.hirschgasse.de, http://www.crowneplaza-heidelberg.de/, http://www.exzellenzhotel.de, www.boardinghouse-hd.de, http://www.hotel-anlage.de, www.panorama-heidelberg.de, http://www.leonardo-hotels.de/deutschland-hotels/hotel-heidelberg/leonardo-heidelberg-hotel, www.hotel-schmitt-heidelberg.de, http://www.goldenerose-hd.de, http://www.hotelheidelberg.com, www.hotel-rose-heidelberg.com, http://www.hotel-neu-heidelberg.de, https://hotelo-heidelberg.de, http://www.hotel-ambiente-heidelberg.de, http://www.cafe-frisch.de, http://www.hoteldenriko-hd.de/, http://www.adler-heidelberg.de, http://www.zum-waldhorn.de, http://www.hotelbb.de/de/heidelberg +yes +yes +48.1326162 11.5725116 +yes + +Kita Philipp-Reis-Straße, Katholischer Kindergarten St. Joseph, Waldkindergarten, Privater Kindergarten Neuenheim, Kindertageseinrichtung des Studentenwerkes, Krabbelstube des Studentenwerkes, Katholischer Kindergarten St. Raphael, Evangelischer Kindergarten der Johannesgemeinde, Städtische Kindertagesstätte Lutherstraße, Katholischer Kindergarten St. Christophorus, Evangelischer Kindergarten, Sonderschulkindergarten für gehörlose und gehörgeschädigte Kinder, Kinderkrippe Studentenwerk, Waldorfkindergarten Heidelberg, Evangelischer Kindergarten, Glückskinder Betreuungsservices GmbH, Kindernest, AWO - Kindertagesstätte Bergheim, Evangelische Tageseinrichtung für Kinder, Kinderkrippe Bullerbü, Kindergarten St. Albert, Tagesstätte für Kinder, Tagesstätte für Kinder, Arche, Kindertagesstätte Fliegenpilz, Kindertagesstätte, Kindertagesstätte Blumenstraße, EVA.KITA, Sankt Elisabeth, Kinderladen Heuhüpfer e.V., Haus für Kinder, Kindergruppe Plöck, Städtische Kindertagesstätte Karolinger Weg, INF 685, Kindergarten, Diakonisches Werk, Krippenhaus, Evangelische Kindertagesstätte Handschuhsheim-West, Kleine Pusteblume KiGa, Katholischer Kindergarten St. Vitus, Kindertagesstätte Handschuhsheimer Landstraße, Evangelischer Jakobuskindergarten, Evangelischer Kindergarten Lindenweg, Städtische Kindertagesstätte Vangerowstraße, Kath. Kindergarten St. Bartholomäus, Evangelischer Kindergarten Panamahaus, Musikkindergarten Sankt Paul, Städtische Kita Adolf-Engelhardt-Straße, Städtische Kindertagesstätte Klingenteichstraße, Kindertagesstätte Kanzleigasse, Waldkindergarten Heidelberg, Waldkindergarten Riesenstein, Waldkindergarten Heidelberg, Waldkindergarten Heidelberg, Kinderkrippe Kinderkiste, Waldkindergarten Heidelberg, Kindertagesstätte Jägerpfad, Evangelischer Kindergarten "Paula Heck", Kindertagesstätte Schwetzinger Terrasse, Kinderladen Heuhüpfer, Kiku Kinderland, Champini Sport- & Bewegungskita Heidelberg Schlierbach, Kinderhaus, Kids' Club, Im Spitzgewann +567.8, 446, 481, 480, 376, 375.5, 439.9, 486.9, 449, 539, 296, 258 +BNP Paribas +wayside shrine, memorial, archaeological site, castle, wayside cross, stone, yes, boundary stone, ruins, monument, city gate, tower, tracks +49.5625091 8.6652144, 49.3632716 8.6822796, 49.2904856 8.6711957, 49.2293107 8.5154631, 49.4886708 8.4342383, 49.3874604 8.3743606, 49.4981414 8.4878822, 49.4348566 8.5221896, 49.4914529 8.4686192, 49.4429579 8.3536220, 49.4952463 8.3716996, 49.4740787 8.3281191, 49.4872738 8.4399863, 49.4833258 8.4437414, 49.5024486 8.4718364, 49.4431050 8.3538899, 49.4938895 8.4613373, 49.4548799 8.5945594, 49.4941761 8.4587661, 49.4611243 8.4946413, 49.3388954 8.4209382, 49.5501019 8.4725871, 49.4440236 8.8973087, 49.3322201 8.5330358, 49.3820239 8.3934831, 49.4764694 8.4207773 +48.3908215 -4.4845938, 48.6510102 -2.0245876, 48.6084394 -4.3313468 +yes +793 +yes and 3 +Mo-Sa 10:00-18:30, We 14:30-18:30 +yes +55.8969575 -3.3064520, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9383223 -3.4081252, 55.9612140 -3.3062746, 55.9103533 -3.3220087, 55.9328871 -3.3087416, 55.9428244 -3.2815918, 55.9035407 -3.2854196, 55.9655823 -3.2732115, 55.9429604 -3.2929801, 55.9426525 -3.2829003, 55.9430016 -3.2880429, 55.9656482 -3.2744012, 55.9233852 -3.2910431, 55.9234641 -3.2913646, 55.9383988 -3.3146583 +Le Boyard +55.9501318 -3.1886125 +gardener, electrician, carpenter, paver, plumber, brewery, stonemason, hvac, photographer, roofer, saddler, caterer +Sainsbury's Local, Tesco, Scotmid, Scotmid Co-operative, Co-Op, Scotmid Co-operative, Scotmid, Tesco, Tesco Metro, Bodrum Fine Foods, Tesco Express, Tesco Metro, Sainsbury's Local, Sainsbury's, Maqbools, Scotmid, Scotmid, Scotmid Co-operative, Scotmid, Scotmid, Tesco Express, Sainsbury's, Tesco Express, Tesco Express, Co-operative, Farmfoods, Sainsburys Local, Morrisons Local, Sainsbury's Local, Tesco Express, Co-operative Food, Sainsbury's Local, Iceland, LIDL, Sainsbury's Local, Lidl, Matthew's Foods, Sainsbury's, Iceland, Scotmid, Sainsbury's Local, Liberton Food, News & Wine, Sainsbury's Local, Rajah's Supermarket, Farmfoods, Co-operative Food, Morisons, Tesco Colinton, Tesco Corstorphine Extra 24hr, Morrisons Ferry Road, Tesco Home Plus, Waitrose, Co-op, Tesco, Waitrose, Lidl, Tesco, Aldi, The Jewel, Asda Leith Superstore, Tesco, Scotmid, Lidl, Sainsbury's Longstone, Sainsbury's, Co-operative Food, M&S Simply Food, Morrisons Supermarket, Sainsbury's Murrayfield, Morrisons, Morrisons, Iceland, Tesco Metro, Scotmid, Scotmid, Farmfoods, Scotmid Co-operative, Cook, Sainsbury's Local, Scotmid, Scotmid, Tesco Express, Tesco Express, Sainsbury's Local, Scotmid Co-op, ASDA Chesser, Scotmid, Tesco Hermiston Gait, Morrisons, Iceland, Lidl +Vulpius-Hütte and 49.4007958 8.7275016 +712 +yes +55.8969575 -3.3064520, 55.9286779 -3.2096502, 55.9709217 -3.2085540, 55.9710794 -3.2083765, 55.9713224 -3.2074276, 55.9584008 -3.2092092, 55.9601757 -3.2559248, 55.9312309 -3.2523089, 55.9511924 -3.1760524, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9073786 -3.2585910, 55.9531081 -3.2008271, 55.9450251 -3.2048945, 55.9616053 -3.1809060, 55.9122939 -3.1636240, 55.9391016 -3.2261638, 55.9426048 -3.1828681, 55.9284825 -3.2096589, 55.9492055 -3.1928272, 55.9457630 -3.2348824, 55.9531031 -3.1974183, 55.9442023 -3.2038200, 55.9503960 -3.1873714, 55.9086565 -3.2096817, 55.9612140 -3.3062746, 55.9809058 -3.1784709, 55.9541472 -3.1916750, 55.9428244 -3.2815918, 55.9498996 -3.2091714, 55.9511059 -3.2031477, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9537368 -3.1946870, 55.9468356 -3.2159630, 55.9379488 -3.2323230, 55.9573609 -3.2064305, 55.9530711 -3.2010501, 55.9526098 -3.2039830, 55.9430480 -3.2039420, 55.9576925 -3.1843665, 55.9527506 -3.1965698, 55.9507785 -3.2057118, 55.9717098 -3.1715371, 55.9695931 -3.1723910, 55.9552824 -3.1886051, 55.9275226 -3.2095127, 55.9462004 -3.1850058, 55.9700768 -3.1718970, 55.9267933 -3.2094073, 55.9245093 -3.2096867, 55.9562269 -3.1380823, 55.9683279 -3.1734427, 55.9325351 -3.1397933, 55.9453646 -3.1914973, 55.9453776 -3.1916473, 55.9507459 -3.2052838, 55.9527501 -3.2005561, 55.9528295 -3.1149002, 55.9533094 -3.1146987, 55.9524703 -3.1136856, 55.9587335 -3.2260450, 55.9252818 -3.2099781, 55.9429604 -3.2929801, 55.9656482 -3.2744012, 55.9233852 -3.2910431, 55.9234641 -3.2913646, 55.9383988 -3.3146583, 55.9528337 -3.1973510 +Sparkasse Heidelberg, H + G Bank, Sparkasse Heidelberg, H+G Bank, H+G Bank, Sparda-Bank Baden-Württemberg eG, Targobank, H+G Bank, Commerzbank, SEB, Deutsche Bank, Postbank, Heidelberger Volksbank, Heidelberger Volksbank, Heidelberger Volksbank, Commerzbank, BW Bank, GE Money Bank, Postbank, Volksbank Heidelberg, Sparkasse Heidelberg, H+G Bank, Sparkasse, Commerzbank, H+G Bank, H+G Bank, Sparkasse Heidelberg, Deutsche Bank, Badische Beamten Bank, Volksbank Kurpfalz H + G BANK eG, Commerzbank, Badische-Beamten-Bank, Sparkasse Heidelberg, PSD Bank Karlsruhe-Neustadt eG, Postbank ++49 6221 29406 +48.8798114 2.3837139, 48.8798183 2.3835960 +3.6128066103214249 +365 +Tang Frères, Monoprix Lecourbe, Franprix, G20, Casino Lecourbe, Marché U, Marché U, Dia, G20, Carrefour City, G20, Monoprix, Franprix, Intermarché, Franprix, Franprix, Lidl, Franprix, Franprix, Franprix, Franprix, Franprix, Carrefour City, Monoprix Convention, Dia, DIA, Monoprix, Monoprix, Lidl, Monop', Franprix, Dia, Simply Market, Simply Market, Franprix, Dia, Simply Market, Franprix, Monoprix, Carrefour City, Franprix, Simply Market, Dia, marché Franprix, Franprix, G20, Franprix, Monoprix, Dia, A2pas Auchan, Petit Casino, Carrefour Market, Europasie, Franprix, Franprix, Monoprix, DIA, 8 a huit, Naturalia, Casino, Franprix, Franprix, Monoprix, Franprix, Franprix, Simply Market, Monoprix, Carrefour Market, Franprix, Franprix, Franprix, Franprix, Franprix, Monoprix, Franprix, Proxi super, Monoprix, DIA, Franprix, SimplyMarket, Naturalia, Naturalia Crussol, Franprix, Monoprix, Monoprix, Franprix, Dia, Tati, Franprix, Franprix, Casino, Franprix, Biocoop, Franprix, G20, Monop', DIA, Dia, Marché Franprix, Paris Store, Marché Franprix, Monoprix, Franprix, Franprix, Carrefour City, Proxi, Dia, Carrefour Market, G20, Super U, Carrefour Market, Leader Price, Franprix, Carrefour City, Dia, Petit Casino, Naturalia, Franprix, HyperCasino, Franprix, Carrefour Market, Canal Bio, Carrefour City, Franprix, Intermarché, Carrefour Market, Bio C' Bon, Franprix, Wing Seng, Carrefour Market, Paris Store, Les Nouvelles Halles - 新今日超市, Supermarché Bonjour - 新温州超市, Franprix, Franprix, Franprix, Franprix, Picard, Dia, Terre de Chine, Franprix, Carrefour City, Franprix, Simply Market, Biocoop Le retour à la Terre - Rive Gauche, Franprix, Franprix, Lidl, DIA, Franprix, DIA, Franprix, Franprix, Franprix, Franprix, Franprix, Naturalia, Franprix, Monop', Franprix, Franprix, Marché Franprix, DIA, Carrefour Express, Les Nouveaux Robinson, Monoprix, Le Marché d'à côté, Supermarché G20, Lidl, Monoprix, Carrefour Market, Franprix, Monop', Le Marché de Rungis, Casino, franprix, Carrefour City, Naturalia, La grande épicerie de Paris, G20, Supermarché Franprix, Bio c'Bon, Pimlico, Franprix, Marché Franprix, DIA, Franprix, Supermarché G20, Franprix, Simply Market Paris Brune, Carrefour, Franprix, Monoprix, Franprix, Dia, Carrefour Market, Franprix, Biocoop Grenelle, Dia, Franprix, Carrefour Express, Franprix, Dia, Franprix, CarrefourCity, Monoprix, Franprix, Monop', G20, Leader Price, Franprix, Diagonal, Carrefour Market, Monoprix, Franprix, Intermarché Super, Franprix, Franprix, Picard, Carrefour, Marché U, Leader price, Dia, G20, Franprix, Le Marché Franprix, Le Marché Franprix, DIA, Monoprix, Franprix, Carrefour Market Paris Monge, Franprix, Franprix, Franprix, Franprix, Monoprix, Dia, Simply Market, Monoprix, Franprix, Franprix, Franprix, DIA, Carrefour City Market, Franprix, Leader Price, Franprix, Franprix, Simply Market, Dia, Futur Carrefour, Casino, Monoprix, Intermarché Express, Carrefour Market, K-mart, Marché Franprix, Dia, Sitis, Franprix, Franprix, Bio c'Bon, Franprix, Monoprix, Franprix, Franprix, Monoprix, Franprix, Marché Franprix, Monoprix, U Express, Franprix, Carrefour City, Franprix, Carrefour Market, G20, Monoprix, Intermarché, Franprix, Carrefour Express, Marché Franprix, Super U, Marché Franprix, Carrefour City, Franprix, Franprix, Lidl, Monop', Tang Frères, Hall' shop, 8 à 8, Retour à la Terre, Leader Price, Monop', Leader Price, Naturalia, Franprix, Bio c' Bon, Carrefour City, Franprix, Épicerie anglaise, N.Y.P. Supermarche, DIA, Carrefour City, Ting Supermarché Chinois, Franprix, Franprix, Monoprix, Monop' Austerlitz, Franprix, Franprix, Carrefour Market, Monoprix, Monoprix, Franprix, Simply Market, Franprix, Lidl, Monoprix, Franprix, DIA, Leader price, Franprix, Franprix, Franprix, Bio c'bon, Franprix, Carrefour City, Monop, Franprix, Lidl, Franprix, Leader Price, Franprix, Monoprix, Franprix, Franprix, Intermarché Express, Franprix, G20, Marché Franprix, Marché Franprix, Monop', Marché Franprix, Casino Supermarché, G20, Franprix, Lidl, DIA, Super U, Franprix, Carrefour City, Monop', Naturalia, 8 à huit, G20, Franprix, Carrefour Market, Franprix, Picard Surgeles, Dia, Monoprix, DIA, Franprix, Franprix, DIA, Franprix, Casitalia, Carrefour City, Carrefour City, Monop', Franprix, Votre Marché, Daily Monop', Monop', Monoprix, Bio Génération, G20, Franprix, Monoprix, Carrefour Express, A2pas, Franprix, DIA, Carrefour City, Franprix, Monoprix, Bio c' Bon, Franprix, Carrefour City, Casino, Biocoop, Carrefour City, Franprix, Franprix, Franprix, Marché Franprix, Franprix, Franprix, Marché Franprix, Dia, Carrefour bio, Naturalia, Naturalia, Franprix, Monoprix, Printemps (2014), Paris Store, Bio c bon, G20, Franprix, Carrefour City, Carrefour Express, Monop', Franprix, Proxy market, G20, G20, Monoprix, Carrefour City, Franprix, Franprix, Franprix, Zola Color, Chine store - 新今日超市, Carrefour City, G20, Casino, Picard, Carrefour express, Coccinelle, Franprix, Picard, Monop', marché franprix, marché Franprix, Dia, Tang Frères, marché Franprix, Marché Franprix, DIA, Naturalia, Le Panier Gourmet - Franprix, Carrefour City Lecourbe, Franprix, Diagonal, Le Marché Franprix, Franprix, Lidl Olympiades, Franprix, Dia, Picard, Dia, Marks and Spencer, Dia, Tang Freres, DIA, Carrefour Express, G20, G20, Monoprix, La Vie claire, Picard, G20, Franprix, Carrefour City, Monop', Monop', Franprix, Carrefour Market, Picard Surgelés, Casino, Leader Price, Franprix, Dia, Leader Price, Dia, Dia, Marché Franprix, Géant Casino, Carrefour Express, Hyper Cacher, Le Marché Franprix, Picard, Naturalia, Neuilly Cacher, Franprix, Galeries Gourmandes, Bienvenue Superette Champerret, Cocci Market, Huit à 8, Bio c Bon, Lidl, Franprix, Paris Store, Picard Surgeles, Naouri Market, Naturalia, Franprix, Monoprix, elan nature, franprix, Monop Store, Picard Surgeles, Dia, Marché Franprix, Monop', Leader Price, Picard Surgeles, Carrefour Express, Yarden, coccimarket, Picard, Franprix, Le Marché d'à côté, Dia, Franprix, Naouri Market, Hypercacher, Yarden Gel, G20, Supermarche de Stalingrad, Univ-Fresh, Causses, Dia, Yarden, Carrefour Market, A2pas, Franprix, Monoprix, Picard, G20, Les Quatre saisons - 新中华商场, Franprix, Carrefour Express, Carrefour, U Express, Carrefour City, Eden, Carrefour City, Carrefour City, Dia, Marché Franprix, Dia, Picard, Hyper Cacher, Franprix, Bio c' bon, Lidl, Lidl, Picard, Picard, Monop', Naturalia, Monop', Monop, Franprix, Franprix, Bien, G20, Holy Planet, Nissan Exotique Marché, Picard, Monoprix, Monoprix, Le Panier Gourmet - Franprix, Monoprix, Franprix, Franprix, U Express, Monoprix, Franprix, Monoprix Alimentation, Monop, Dia, Franprix, Carrefour Market, Carrefour City, Marché Franprix, Naturalia, Monoprix, Monoprix, Franprix, Monoprix, Centre Commercial E. Leclerc, Franprix +yes +0.31693520791766788 +138 +48.8671035 2.3471909, 48.8782645 2.3740462, 48.8774801 2.3700505, 48.8327092 2.3625620, 48.8304784 2.3562767, 48.8334332 2.3545467, 48.8326050 2.3544168, 48.8530182 2.4058632, 48.8697474 2.3709540, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8703950 2.3709651, 48.8778843 2.3510144, 48.8535279 2.3681762, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8521024 2.4034631, 48.8651078 2.3744344, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8695951 2.3715600, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8653000 2.3752307, 48.8673441 2.3627982, 48.8651925 2.3758399, 48.8629074 2.3860380, 48.8668485 2.3837377, 48.8672012 2.3825153, 48.8645121 2.3683814, 48.8318807 2.3568124, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8501765 2.3792170, 48.8507286 2.3779068, 48.8509545 2.3780414, 48.8502726 2.3811628, 48.8732053 2.3585526, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8605667 2.3751425, 48.8637354 2.3705262, 48.8369085 2.4021711, 48.8370521 2.4018326, 48.8396803 2.3945209, 48.8400366 2.3946968, 48.8397862 2.3968956, 48.8368227 2.4037506, 48.8368603 2.3917906, 48.8393074 2.3970077, 48.8743920 2.3574266, 48.8482696 2.3715140, 48.8470790 2.3740473, 48.8469009 2.3721664, 48.8479197 2.3716692, 48.8461048 2.3740873, 48.8477030 2.3740290, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8457782 2.3745532, 48.8574421 2.3793069, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8402359 2.3617231, 48.8648840 2.4053930, 48.8806821 2.3741833, 48.8591202 2.3475207, 48.8742798 2.3760564, 48.8660916 2.3526753, 48.8645295 2.3512403, 48.8685043 2.3498910, 48.8641253 2.3698504, 48.8518531 2.3567202, 48.8612900 2.3499825, 48.8612937 2.3537009, 48.8560141 2.3571788, 48.8595500 2.3565735, 48.8549508 2.3624309, 48.8552557 2.3616146, 48.8538346 2.3644665, 48.8543409 2.3691660, 48.8650455 2.3535907, 48.8669898 2.3620443, 48.8667188 2.3611850, 48.8662353 2.3610229, 48.8652895 2.3605043, 48.8633001 2.3620149, 48.8632099 2.3622012, 48.8626516 2.3633443, 48.8621296 2.3644112, 48.8614452 2.3647591, 48.8630803 2.3510377, 48.8592743 2.3796462, 48.8809308 2.3651881, 48.8812888 2.3651008, 48.8808303 2.3650793, 48.8883530 2.3917794, 48.8568213 2.3685042, 48.8904247 2.3760144, 48.8296558 2.3789838, 48.8382008 2.3505003, 48.8378958 2.3507127, 48.8377870 2.3508117, 48.8378570 2.3515198, 48.8376483 2.3516414, 48.8727273 2.3786615, 48.8284669 2.3791072, 48.8287974 2.3821578, 48.8293821 2.3782449, 48.8444634 2.4058653, 48.8806637 2.3648615, 48.8822323 2.3662711, 48.8459991 2.3734585, 48.8533487 2.3667989, 48.8949842 2.3821818, 48.8846806 2.3623964, 48.8797648 2.3567638, 48.8810016 2.3640265, 48.8606979 2.3554288, 48.8605259 2.3552067, 48.8765046 2.3790929, 48.8717642 2.3765169, 48.8824125 2.3814642, 48.8505969 2.3487384, 48.8388735 2.3499896, 48.8430873 2.3523909, 48.8433167 2.3520295, 48.8446194 2.3521389, 48.8387237 2.3571215, 48.8555518 2.3602965, 48.8585424 2.3554995, 48.8661318 2.3536080, 48.8685310 2.3627215, 48.8664790 2.3612544, 48.8671863 2.3624934, 48.8471366 2.3867728, 48.8382469 2.3985623, 48.8356227 2.4057366, 48.8417549 2.3864187, 48.8794747 2.3547243, 48.8592377 2.3714158, 48.8256887 2.3653770, 48.8695383 2.3950747, 48.8953387 2.3825799, 48.8367957 2.3917944, 48.8234162 2.3578095, 48.8223317 2.3587958, 48.8230555 2.3585643, 48.8454338 2.3886185, 48.8503640 2.3847349, 48.8446673 2.3830913, 48.8488537 2.3789042, 48.8459220 2.4058540, 48.8383753 2.3982048, 48.8636110 2.3699568, 48.8707193 2.3495070, 48.8761304 2.3564812, 48.8754523 2.3562375, 48.8834234 2.3734013, 48.8570504 2.3810504, 48.8540420 2.4102463, 48.8631926 2.3875837, 48.8465399 2.3518782, 48.8256754 2.3500062, 48.8369096 2.3712028, 48.8312779 2.3775666, 48.8731847 2.3591245, 48.8902005 2.3757322, 48.8706510 2.3613960, 48.8433669 2.3494429, 48.8570621 2.3817062, 48.8372502 2.3914765, 48.8790699 2.3540350, 48.8481085 2.4036760, 48.8482530 2.4016764, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8337153 2.3863338, 48.8468610 2.3536998, 48.8201698 2.3641255, 48.8525391 2.4047416, 48.8525041 2.4054710, 48.8358361 2.3959436, 48.8620103 2.3504016, 48.8776629 2.3503063, 48.8607520 2.3551307, 48.8599332 2.3492544, 48.8616973 2.3497749, 48.8808570 2.3744052, 48.8816465 2.3719957, 48.8810026 2.3740798, 48.8809708 2.3734937, 48.8808782 2.3736050, 48.8271902 2.3689921, 48.8456435 2.3883893, 48.8467978 2.3874491, 48.8463910 2.3878730, 48.8240842 2.3636888, 48.8226659 2.3580445, 48.8259715 2.3507845, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8690375 2.4018799, 48.8681245 2.4017154, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8709768 2.4035156, 48.8718932 2.4046138, 48.8711831 2.4041560, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8650286 2.3978764, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8661206 2.3993734, 48.8647416 2.4000331, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8646156 2.3980291, 48.8385802 2.3568194, 48.8575448 2.3507955, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8260853 2.3604941, 48.8276987 2.3717961, 48.8898740 2.3601766, 48.8309472 2.3666202, 48.8900866 2.3603615, 48.8457722 2.3952172, 48.8315085 2.3570011, 48.8294497 2.3691497, 48.8911754 2.3596165, 48.8912089 2.3601196, 48.8267862 2.3639559, 48.8275456 2.3565272, 48.8292086 2.3568667, 48.8895540 2.3596572, 48.8601780 2.3784708, 48.8918470 2.3497087, 48.8394408 2.3901626, 48.8634536 2.3668626, 48.8621628 2.3647719, 48.8643458 2.3599234, 48.8304530 2.3781049, 48.8561136 2.3566520, 48.8740405 2.3857795, 48.8749608 2.3892009, 48.8739345 2.3878755, 48.8794344 2.3881410, 48.8536688 2.3651544, 48.8801930 2.3906171, 48.8750094 2.3896199, 48.8755856 2.3816591, 48.8358783 2.3528351, 48.8737724 2.3861774, 48.8469948 2.3720795, 48.8741080 2.3859246, 48.8448082 2.4018695, 48.8776217 2.3939651, 48.8776968 2.3952330, 48.8775224 2.3930979, 48.8577037 2.3677906, 48.8547650 2.3703199, 48.8419262 2.3651705, 48.8370898 2.3512464, 48.8439360 2.3521362, 48.8687439 2.3725567, 48.8473180 2.3512660, 48.8836091 2.3810186, 48.8364615 2.3516931, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8331060 2.3547764, 48.8275383 2.3571726, 48.8466594 2.4106749, 48.8474387 2.3948976, 48.8475088 2.4104704, 48.8293214 2.3692986, 48.8558171 2.3591925, 48.8843398 2.3684081, 48.8295478 2.3565241, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8605440 2.3490975, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8551235 2.3603692, 48.8335336 2.4018517, 48.8344090 2.3538607, 48.8329666 2.3548590, 48.8524475 2.3894597, 48.8426473 2.3496219, 48.8459597 2.3544163, 48.8370786 2.3520317, 48.8570274 2.3983184, 48.8851905 2.3788177, 48.8694492 2.3546663, 48.8803860 2.3748678, 48.8493470 2.3529650, 48.8747781 2.3879795, 48.8755246 2.3943562, 48.8828185 2.3827206, 48.8753559 2.3919799, 48.8752306 2.3934592, 48.8491590 2.3498700, 48.8485190 2.3493440, 48.8401997 2.3954293, 48.8651944 2.3554408, 48.8650138 2.3556963, 48.8895142 2.3498344, 48.8578346 2.3793123, 48.8619859 2.3647571, 48.8664714 2.3673929, 48.8625029 2.3716831, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8455488 2.4110597, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8778905 2.3549883, 48.8488552 2.3942325, 48.8489972 2.3942887, 48.8505758 2.3948498, 48.8494165 2.3948501, 48.8643045 2.3993897, 48.8449899 2.4047731, 48.8351835 2.3533874, 48.8406761 2.3933858, 48.8359858 2.3961013 +51.4399233 7.3193298, 51.4400849 7.3193098, 51.4428113 7.3879060, 51.4390018 7.3650791 +49.4073928 8.7041148, 49.4068507 8.7042612, 49.4161569 8.7709138, 49.4052714 8.7185373, 49.3862413 8.6792308, 49.3894429 8.6658909, 49.4085991 8.7816352, 49.4116596 8.7793796 +Greggs, Malone's Bakeries, Gregg's, Douglas's Bakery, Masons Bakery, Roll Up, Gregg's, Barnton Fine Foods, La Croissanterie, Mathiesons Bakers, Greggs, Storries Home Bakery, Morrison's Bakery, Greggs, Gregg's Bakery, Greggs, Greggs, Patissier Maxine, Patisserie Valerie, Bibi's Cake Boutique, Greggs, Dough Re Mi, Dough Re Mi, The Pine Tree Bakery, Donachie Bakers, Bayne's, Goodfellow & Steven, Greggs, Bakery Andante, Greggs, Greggs, Bayne's, Artisan Bakehouse, Nikki's Cakes, Goodfellow & Steven, Edinburgh Bakehouse, Greggs, Greggs, Bonningtons, The Wee Boulangerie, Jacob, Licks Cake Design, Greggs, Greggs, Mr Bun's Bakery, Glenvarloch Bakery, Archipelago Bakery, Sicilian Pastry Shop, Melinda's Cake Boutique, Malone's Bakery, Greggs, 1, Greggs +1663 +1910 +69 +yes +207 and 48.8534705 2.3029031, 48.8528568 2.3020177, 48.8393301 2.3500747, 48.8420566 2.2965838, 48.8578708 2.3103454, 48.8495920 2.3118988, 48.8649951 2.3377982, 48.8387859 2.3504803, 48.8463542 2.3546880, 48.8391823 2.3706120, 48.8350620 2.4078967, 48.8506752 2.3329343, 48.8451544 2.3536617, 48.8803039 2.3798878, 48.8636678 2.3350046, 48.8637726 2.3355646, 48.8670925 2.3387264, 48.8540659 2.3616249, 48.8540729 2.3612004, 48.8645550 2.3645938, 48.8480587 2.3392944, 48.8806819 2.3876000, 48.8583933 2.3023795, 48.8669641 2.3142243, 48.8651920 2.3140147, 48.8670174 2.3136289, 48.8651787 2.3134167, 48.8316177 2.3780517, 48.8436874 2.3302939, 48.8483332 2.2576994, 48.8452340 2.3448440, 48.8429501 2.3517845, 48.8589666 2.4059365, 48.8616904 2.3160412, 48.8658377 2.3554835, 48.8612301 2.2900306, 48.8784002 2.3375553, 48.8772426 2.3277376, 48.8812329 2.3301337, 48.8410891 2.3368145, 48.8314280 2.3555815, 48.8396015 2.3958093, 48.8449573 2.4022523, 48.8828326 2.3719171, 48.8838484 2.3703052, 48.8546899 2.3251122, 48.8751011 2.3616070, 48.8681435 2.2454284, 48.8649019 2.3984981, 48.8557457 2.4009907, 48.8620414 2.3297804, 48.8628867 2.3292924, 48.8631141 2.3305616, 48.8645244 2.3241300, 48.8522608 2.4040943, 48.8923038 2.3388466, 48.8383839 2.2786491, 48.8673541 2.3180025, 48.8689632 2.3129455, 48.8683826 2.3147872, 48.8687522 2.3154832, 48.8649600 2.3207507, 48.8659920 2.3215075, 48.8668835 2.3116323, 48.8686692 2.3103634, 48.8686841 2.3099161, 48.8689059 2.3096161, 48.8690546 2.3106303, 48.8692789 2.3103348, 48.8692931 2.3098862, 48.8508700 2.3332751, 48.8559534 2.2977197, 48.8562003 2.2980848, 48.8679715 2.3375806, 48.8696713 2.2853395, 48.8448267 2.3832538, 48.8612184 2.3359626, 48.8607940 2.3357198, 48.8611505 2.3363233, 48.8609255 2.3361637, 48.8613287 2.3357359, 48.8606908 2.3360605, 48.8608125 2.3354395, 48.8185747 2.3602641, 48.8633424 2.3714600, 48.8670465 2.3537266, 48.8672803 2.3538862, 48.8854126 2.3770897, 48.8469168 2.3372024, 48.8544579 2.3112189, 48.8525635 2.3513635, 48.8727300 2.4014992, 48.8956082 2.3863617, 48.8963229 2.3877822, 48.8966783 2.3884868, 48.8468849 2.3100155, 48.8543573 2.3136915, 48.8572041 2.3519819, 48.8572192 2.3519137, 48.8572350 2.3518428, 48.8572508 2.3517719, 48.8572661 2.3517033, 48.8560656 2.3513775, 48.8560820 2.3513063, 48.8560988 2.3512327, 48.8561157 2.3511592, 48.8561320 2.3510885, 48.8608242 2.2903788, 48.8608319 2.2903145, 48.8608723 2.2903038, 48.8609002 2.2904933, 48.8609205 2.2902287, 48.8609280 2.2901652, 48.8609419 2.2904783, 48.8609483 2.2904183, 48.8609686 2.2901537, 48.8609965 2.2903433, 48.8610167 2.2900786, 48.8610241 2.2900160, 48.8610380 2.2903290, 48.8610446 2.2902682, 48.8610648 2.2900036, 48.8610927 2.2901932, 48.8611130 2.2899286, 48.8611201 2.2898668, 48.8611341 2.2901798, 48.8611409 2.2901181, 48.8611611 2.2898535, 48.8611890 2.2900431, 48.8612092 2.2897785, 48.8612162 2.2897176, 48.8612371 2.2899680, 48.8612497 2.2892815, 48.8612573 2.2897034, 48.8612824 2.2892324, 48.8612852 2.2898930, 48.8613055 2.2896284, 48.8613058 2.2892652, 48.8613122 2.2895684, 48.8613262 2.2898814, 48.8613291 2.2892979, 48.8613334 2.2898179, 48.8613524 2.2893307, 48.8613536 2.2895533, 48.8613757 2.2893634, 48.8613815 2.2897429, 48.8614008 2.2893441, 48.8614222 2.2897322, 48.8614289 2.2893337, 48.8614296 2.2896679, 48.8614303 2.2894240, 48.8614569 2.2893330, 48.8614859 2.2893444, 48.8615086 2.2895426, 48.8615509 2.2896317, 48.8615627 2.2895858, 48.8615655 2.2894571, 48.8615688 2.2894995, 48.8615690 2.2895426, 48.8615734 2.2896657, 48.8615959 2.2896998, 48.8616108 2.2898138, 48.8616184 2.2897338, 48.8616409 2.2897679, 48.8821377 2.3372542, 48.8536817 2.3714996, 48.8696605 2.2853294, 48.8696606 2.2853482, 48.8594868 2.4062620, 48.8532110 2.3437278, 48.8669190 2.3151373, 48.8676892 2.3127232, 48.8444725 2.3494231, 48.8554490 2.3650796, 48.8553288 2.3657869, 48.8559134 2.3652568, 48.8557971 2.3659661, 48.8606366 2.3480234, 48.8603630 2.3385405, 48.8482401 2.3355377, 48.8474005 2.3405897, 48.8484960 2.3353412, 48.8556092 2.3748547, 48.8661998 2.3078190, 48.8433657 2.3114422, 48.8895890 2.3922761, 48.8378349 2.2570480, 48.8380419 2.2569108, 48.8407370 2.3407878, 48.8410188 2.3409683, 48.8624628 2.3173680, 48.8428842 2.2923159, 48.8473182 2.3484905, 48.8465020 2.2521838, 48.8614879 2.3185384, 48.8767410 2.3938898, 48.8968701 2.3795734, 48.8402590 2.2767481, 48.8362746 2.3799012, 48.8914572 2.3139757, 48.8522672 2.3477182, 48.8823814 2.3993385, 48.8575005 2.3472864, 48.8371783 2.3183145, 48.8652746 2.2967165, 48.8653830 2.3165628, 48.8708153 2.3962847 +4 +79 +49.4181786 8.7569634, 49.4145277 8.6909495, 49.4111212 8.7021704, 49.4210980 8.7559586 +01.40.27.50.05, 01.44.55.57.50, +33 (0)1 53 01 82 00, 01.48.74.38.50, 01.53.68.27.81, 01.43.55.52.72, 01.45.68.82.83, 01.42.64.40.10, +33 1 40 05 70 00, 01.42.72.10.16, 01.40.67.97.66, +33 1 44 78 75 00, 01.42.08.90.20, 01.44.54.04.48, +33 1 43224763, 01.42.58.28.73, 01.53.43.40.00, 01.40.62.84.25, 01.45.25.63.26, +33 1 42 79 24 24, +33 1 40 22 11 00, 00.33.(0)1.42.29.68.60, 01.58.51.52.00, +33 (0)1 53 65 69 69, +33 (0)1 53 65 69 53, 01.45.23.74.09, 01.42.88.41.53, +33 1 56 26 14 03, 01.45.00.91.75, 01.43.40.16.22, 01.45.43.06.98, 01.42.86.20.47, 01.43.54.35.61, 01.45.44.09.55, 01.49.22.41.15, 01.45.20.53.41, 01.43.26.25.03, 01.42.34.68.60, 01.47.63.42.73, 01.42.22.59.58, +33 1 42 22 48 48, +33 1 42229196, 01.40.51.92.90, 01.55.42.50.10, 01.53.79.37.47, 01.44.41.52.50, 01.53.10.07.00, 01.40.64.39.44, 01.42.65.30.47, +33156802700, +33 1 44 32 47 48, 01.56.61.70.00, 01.40.79.54.79, +331 40 79 54 79, +331 40 79 56 01, 01.40.51.38.38, 01.42.58.72.89, +33 1 47031250, 01.44.50.43.00, 01.56.24.55.33, 01.42.76.33.97, 01.42.76.26.32, 01.53.73.78.13, 01.53.01.86.53, 01.40.27.60.96, 01.85.56.00.36, 01.40.27.07.21, 01.44.41.86.50, 01 53 59 58 60, 01.46.59.05.51, 01.53.59.12.40, 01.42.68.02.01, 01.44.55.57.50, 01.53.96.21.50, 01.44.18.61.10, 01.45.42.11.59, 01.71.19.33.33, 01.53.67.40.00, 01.47.23.54.01, 01.42.18.56.50, 01.58.52.53.00, 01.49.54.73.73, +33 1 45535796, 01.44.96.50.33, 01.40.79.54.79, 01.40.79.56.01, 01.55.31.95.67, +33 1 55744180, 01.42.24.54.02, +33 1 42 77 44 72, 01.44.37.95 .01, 01.55.42.77.20, 01.49.25.89.39, 01.53.01.92.40, 01.40.13.62.00, 01.44.78.80.20, 01.40.69.96.00, 01.56.52.86.00, 01.44.59.58.58, 01.53.40.60.80 +yes +96 +attraction, information, museum, hostel, hotel, viewpoint, camp site, picnic site, artwork, guest house, apartments, gallery, tourism-attraction, apartment, zoo +978 +49.4037439 8.7284305 +43.6260277 1.4337743, 43.5871216 1.4469197, 43.6004488 1.4466659, 43.6114742 1.4144774, 43.6647905 1.5056744, 43.5967890 1.4457753, 43.5999376 1.4422424, 43.6201770 1.4574680, 43.6122292 1.4482664, 43.6193979 1.4690227, 43.5864701 1.4831213, 43.6105977 1.4363721, 43.6049920 1.4447714, 43.6064342 1.4445347, 43.5574068 1.3810477, 43.5974538 1.4205152, 43.5809519 1.4133291, 43.5793278 1.4840653, 43.4550373 1.6140315, 43.6028177 1.4544543, 43.6101165 1.3299920, 43.5893965 1.3783877, 43.5546511 1.5324505, 43.7053345 1.4665124, 43.7173181 1.4809987, 43.5710456 1.5186221, 43.5820633 1.3880789, 43.6360716 1.4636776, 43.4487189 1.8882110, 43.5664794 1.2964127, 43.5989789 1.2322484, 43.8117875 1.5436643, 43.6346708 1.3948893, 43.5462877 1.4538291, 43.3903464 1.6838497, 43.6818127 1.3179512, 43.4581595 2.0019087, 43.3667678 1.7843111, 43.5849055 1.5280232, 43.6914739 1.2305422, 43.7786407 1.4800521, 43.4575062 1.5737466, 43.4360729 1.6606592, 43.6670205 1.4292515, 43.6741677 1.4556899, 43.6087629 1.4938148, 43.5303105 1.5349250, 43.5517425 1.5059205, 43.6002570 1.7130996, 43.6822986 1.5835960, 43.4592110 1.9807588, 43.6580006 1.6628788, 43.7195481 1.5891637, 43.7218275 1.5866159, 43.6783699 1.5313559, 43.7222363 1.4316614, 43.7204174 1.2983690, 43.6459833 1.3699157, 43.5763208 1.2745944, 43.6090446 1.3391380, 43.5752874 1.4017612, 43.6452108 1.5279713, 43.6478942 1.4328650, 43.6090253 1.3808650, 43.5969070 1.6015882, 43.4164919 1.6289473, 43.5867726 1.4626783, 43.6380313 1.4439756, 43.5777154 1.4397126, 43.5655754 1.3998805, 43.5646197 1.4104300, 43.5593873 1.6541737, 43.5859541 1.4277228, 43.6858360 1.4477308, 43.6679680 1.3788912, 43.7275892 1.0481378, 43.8629244 1.5063181, 43.7426228 1.1837502, 43.6645799 1.1942727, 43.7804119 1.3603119, 43.6702842 1.2889952, 43.6930091 1.4135998, 43.7114127 1.3925324, 43.7427777 1.3702527, 43.7675496 1.5302985, 43.5046309 1.4113176, 43.5254276 1.8271350, 43.5177621 1.5609976, 43.5296702 1.4837001, 43.6040278 1.4544668, 43.5972281 1.4309605, 43.6558407 1.3708003, 43.3569222 1.6235878, 43.5737470 1.4624103, 43.7795463 1.4048893, 43.5150853 1.4955195, 43.7981453 1.6065723, 43.6803668 1.3919733, 43.7269867 1.4122198, 43.7793622 1.6321404, 43.5509646 1.5131319, 43.4822135 1.6647297, 43.5371019 1.3463012, 43.6955968 1.4302320, 43.6510153 1.3262337, 43.7598279 1.0439680, 43.5479174 1.4719372, 43.8389189 1.3926761, 43.5685393 1.4972514, 43.7722482 1.2941146, 43.5826647 1.3459461, 43.3568545 1.6236983, 43.6010734 1.4764907, 43.6176235 1.2836665, 43.4007911 1.7150650, 43.6193800 1.3971976, 43.8298665 1.4312785, 43.6573515 1.4830800, 43.2864605 1.6332455, 43.5288720 1.7616672 +yes +57.5223776 -4.4756277 +53 +Standing Stone, Standing Stone, Cup and Ring Marked Rocks, Stone, Cat Stane, Physic Well, Fort, Hatton House +Consulate General of the United States, Consulate General of India, Consulate General of the Federal Republic of Germany, Consulate General of France, Consulate General of Ireland, Consulate General of Italy, Consulate General of Japan, Consulate General of Spain, Consulate General of Switzerland, Consulate General of the Russian Federation, Consulate of the Kingdom of the Netherlands, Honorary Consulate of the Republic of Latvia, Royal Norwegian Consulate General, Taipei Representative Office +yes +49.4125622 8.6856608, 49.4032579 8.6471303, 49.4028079 8.6877203, 49.4132392 8.6920033, 49.4101353 8.6927154, 49.4044206 8.6749529, 49.4148114 8.7196509, 49.4102178 8.7150766, 49.4148865 8.6633752, 49.4144262 8.6605991, 49.4157782 8.6615636, 49.3985275 8.6890932, 49.4135237 8.7132879, 49.3670614 8.6852351, 49.4015634 8.6546617, 49.4080292 8.6761951, 49.4072190 8.7145767, 49.4175156 8.7606234, 49.4149077 8.6641649, 49.4180002 8.7565605, 49.4122451 8.7658820, 49.4094639 8.7149578, 49.4102265 8.6939011, 49.4157103 8.6706413, 49.4099021 8.7003337, 49.4171332 8.6926969, 49.4131244 8.6897970, 49.4122418 8.6816335 +ADAC +fr:1er arrondissement de Paris, fr:1er arrondissement de Paris +outside +Copy Express, CopyHouse, Reprographie Numérique, Copy-Top, Châteaudun Reprographie, Copie Press, Copy-Top, Copy-Top, Copystar, Corep Jussieu, Copies Services Hexamedia, Copies Services Hexamedia, Augys Copy Service, Imprimerie Beaugrenelle, copie service, copy-top, Copy Self, Galerie du Roi, Copy Bolivar, Cyber Espace, l'atelier, Papyros, Abeille Repro, Atelier Pan Helio, Photocopie, 1Primeur and 48.8408505 2.3133434, 48.8404547 2.3878653, 48.8457749 2.3129290, 48.8452297 2.3188481, 48.8774276 2.3561126, 48.8821459 2.3673459, 48.8695360 2.3360734, 48.8457067 2.3803643, 48.8616301 2.3525055, 48.8618476 2.3525472, 48.8761027 2.3348516, 48.8675534 2.3414224, 48.8833415 2.3607843, 48.8650685 2.2882779, 48.8695647 2.2917098, 48.8611375 2.3498977, 48.8620177 2.3530439, 48.8631069 2.3516394, 48.8467332 2.3539043, 48.8268815 2.3637663, 48.8274182 2.3663727, 48.8299013 2.3593931, 48.8462783 2.2861424, 48.8325636 2.3355609, 48.8851530 2.3747032, 48.8661621 2.3657400, 48.8758780 2.3318830, 48.8748194 2.3813364, 48.8740625 2.3838135, 48.8326766 2.3313459, 48.8456610 2.3548687, 48.8457841 2.3550712, 48.8618518 2.3653403, 48.8487264 2.3427817, 48.8454855 2.2973275, 48.8454352 2.2974755, 48.8376923 2.3597409, 48.8375496 2.3596345 +Imperial Palace +110 +Union Place +0 +1 and 6 +55.9533748 -3.1895989 +no +yes +49.4274974 8.6861291 +Standing Stone, Standing Stone, Cup and Ring Marked Rocks, Hanging Stanes, Cat Stane, Bonnington Mill Waterwheel (remains), Physic Well, Bonnington Weir +0 +Towerbank Primary School, Dalmeny Primary School, Rudolf Steiner School, Little City Nursery, City Nursery, Pirniehall Primary School, Fettes College Preparatory School, Saint Mark's School, Pilrig Park School, Haywired, Bun-sgoil Taobh na Pairce, St. George's, St. George's, Blackhall Primary School, St David's RC Primary School, Kirkliston Nursery School, Mannafields Christian School, Dalmeny Nursery School, Currie Community High School, Queensferry High School, EDETA Training Services, Craigour Park Primary School, Liberton Primary School, St Thomas of Aquins, James Gillespie's High School, George Watson's College, South Morningside Primary School, Granton Primary School, Fettes College, Murrayburn Primary School, Westburn Primary School (Closed July 2009), Flora Stevenson's Primary School, Firrhill High School, Craigroyston Community High School, George Heriot's School, Niddrie Mill Primary School (Closed), Hermitage Park Primary School, Leith Academy, Lorne Primary School, Drummond Community High School, Stewart's Melville College, Craigentinny Primary School, St Ninians RC Primary School, Bruntsfield Primary School, George Watson's College Primary, Currie Primary School, Tynecastle High School, James Gillespie Primary School, St Peter's Primary School, Castlebrae High School, Gracemount High School, Buckstone Primary School, Liberton High School, Lismore Primary School‎ (Closed July 2009), Fox Covert Primary School and RC Primary School, Greengables Nursery, Leith Primary School, Craigmillar Childrens Centre, Prestonfield Primary School, St Francis and Niddrie Mills Primary schools Campus, Holy Rood High School, Brunstane Primary School, Royal High Primary School, Newcraighall Primary School, Tiler Training School, Merchiston Castle School, The Mary Erskine School, Ratho Primary School, Craigmount High School, Colinton Primary, Hillwood Primary School, The Yard, Nether Currie Primary School, Sighthill Primary School, Royal Blind School, Royal Blind School, Duddingston Primary School, East Craigs Primary, Royal Mile Primary School, Edinburgh School of English, Panmure St Anne's, Trinity Academy, Gorgie Mills School, Craiglockhart Primary, Sciennes Primary School, Education Centre, Victoria Primary School, Broughton High School, Trinity Academy, The Royal High School, Clermiston Primary School, Westerlea School, Fort Primary School (Closed July 2010), Longston Primary School, Pentland Primary, Edinburgh Academy, Stockbridge Primary School, Broughton Primary School, Rowanfield School, Tollcross Primary School, Prospect Bank School, St Mary's RC Primary School, Leith Walk Primary School, St Johns RC Primary School, Portobello High School, Balgreen Primary School, Harmeny School, Preston Street Primary School, Davidson's Mains Primary School, Dalry Primary School, Roseburn Primary, Ferryhill Primary School, Wardie Primary School, School, Abbeyhill Primary School, Oaklands School, Craigroyston Primary School, Carrick Knowe Primary, Arbor Green Nursery, Moffat Early Years Campus, Carrick Knowe Primary, St Augustines High School, Forrester High School, Broomhouse Primary School, Edinburgh Academy Junior School, Corstorphine Primary, St. John Vianney Roman Catholic Primary, Darroch Annex, Cargilfield School, Juniper Green Primary, Kaimes School, Stenhouse Primary, Balerno High School, Bonaly Primary School, Dean Park Primary School Annexe, Clifton Hall School, Gylemuir Primary School, Boroughmuir High School, Trinity Primary school, Fort Primary, Cramond Primary School, Holy Cross Primary School, Wardie Primary School +14 +no +Caiy Stane, Balm Well, Hanging Stanes, The Buckstane, Bonnington Mill Waterwheel (remains), Bonnington Weir +62 +Le Cambodge, Royal Montgallet - 新富园, Au couvert d'asie, Le Bristrot ZEN, Palace Châtelet, Tong Fan, Come and Wok, Tian He, Suave, La Cascade, Au Vietnam, Melinda, Da Lat, Traiteur Asiatique, Côté Asie, Hello Sushi, Jix Xin Lou, Deliceo, Mian Fan, Délice Impérial, Couronne d'argent, Express Bonne Nouvelle, Enquan, Qi Hong, Jin Long, Little Hanoi, Auberge du Bonheur, Chamroeun Crimée, Le Palais du Bonheur, Exo Exquis, Jardin de Montsouris, Fan Sin, Sourire d'Asie, Aloes Traiteur, Le Françis, Le Printemps de Jade, Traiteur Chez Victor, Traiteur Paris Gourmand, Kung Fu, Traiteur Nihao, Shun Fa, Long Hoa, Hang Meas, Palace Thaï, Asian, New Shangaï, Ting Ting, Fukuoka, WoknNoodles, Le Bonheur, Muki Sushi, Chen Regal, Délice Zheng, Chez Jin, Heng Long, Feng Sheng, Asian Grill, Le Lotus, Au Village de Choisy, Trésor d'Asie, Gourmet d'Asie, Hanouman, New Locomotive, New Thai San, Thaï Papaya, Ba Miền, Zhen Fa, Hauky, Délice 18, Restaurant mandarin du marché, Mustang, La Maison de Thé de Mademoiselle Li, Les Délices du Bonheur, Douraku, Délices Asiatiques, Bangkok Express, Traiteur Délice Cadet, Gourmet d'asie, Inagiku, Pho Bida Viet Nam, Traiteur Ji Li, Restaurant Raviolis – Guo Xin, Angkor.Monorom, Aux Délices d'Asie, restaurant traiteur, Asie Prestige, Royal Mouffetard, Délices d'Asie, Chez Zhao, Les Pâtes Vivantes, C'trobon, La Fontaine céleste, Le Jardin, Dat Viet, Paris, Tricotin 2, Ju You, Traiteur Jin Xin Lou, Au chalet du bonheur, Cathay House, L'origami, Delices de la mer, Delicieux Monge, Delicieux Monge, Délices d'Or, Shinzzo, Guo Min, Jing hua cheng, Traiteur Asiatique, Le dragon d'or, Xia's Fast Food, Rong Fa Sushi, Maison des saveurs, Traiteur Asiatique, Bang Loan, Chez Chung, Kyotori, Petit Hong Kong +144 +A 4, A 86, A 13 +48.8417539 2.3228265, 48.8417906 2.3194104, 48.8455266 2.3019080, 48.8465149 2.3169266, 48.8496947 2.3229620, 48.8529756 2.3361563, 48.8513775 2.3427806, 48.8477633 2.3023462, 48.8371669 2.2968355, 48.8359376 2.2934703, 48.8391271 2.2825599, 48.8446716 2.3110739, 48.8452432 2.3693333, 48.8428726 2.2978113, 48.8472412 2.3109555, 48.8516223 2.3251656, 48.8426689 2.3210349, 48.8454014 2.2921884, 48.8553049 2.4152098, 48.8582001 2.3497997, 48.8784404 2.3739693, 48.8396457 2.3020004, 48.8465313 2.2847495, 48.8491445 2.3035292, 48.8543529 2.3051441, 48.8461467 2.3400524, 48.8570374 2.4045098, 48.8860526 2.3426933, 48.8826497 2.3364419, 48.8672307 2.3169458, 48.8316492 2.2999377, 48.8583893 2.4147064, 48.8547572 2.3940413, 48.8761391 2.3683073, 48.8722806 2.3695753, 48.8681927 2.3630580, 48.8650417 2.3850337, 48.8468335 2.3820503, 48.8748801 2.3637951, 48.8633521 2.3710595, 48.8761999 2.3804521, 48.8777890 2.3812354, 48.8826601 2.3752883, 48.8586939 2.3840128, 48.8633741 2.3663922, 48.8710381 2.3610667, 48.8426016 2.2921367, 48.8356606 2.3026082, 48.8425344 2.2977018, 48.8268013 2.3644366, 48.8267042 2.3418398, 48.8313314 2.3159690, 48.8325651 2.3114089, 48.8326373 2.3560872, 48.8397551 2.3618303, 48.8430740 2.3643198, 48.8833178 2.3262875, 48.8615468 2.3727192, 48.8331323 2.2995011, 48.8490609 2.2878691, 48.8844475 2.3427325, 48.8833472 2.3495749, 48.8822817 2.3504868, 48.8827033 2.3434430, 48.8822885 2.3414974, 48.8820176 2.3394460, 48.8817974 2.3532647, 48.8771098 2.3551079, 48.8477369 2.3279061, 48.8883776 2.3495011, 48.8866559 2.3493852, 48.8538990 2.3696060, 48.8757902 2.3561915, 48.8791100 2.3541841, 48.8866553 2.3168809, 48.8884411 2.3158504, 48.8492375 2.3711135, 48.8568075 2.3541182, 48.8602512 2.3502694, 48.8546459 2.3450877, 48.8462262 2.3548763, 48.8843315 2.3304472, 48.8460104 2.3669740, 48.8840058 2.3529245, 48.8374833 2.3535202, 48.8379005 2.3555967, 48.8392465 2.3387222, 48.8382197 2.3418042, 48.8502113 2.3668644, 48.8453387 2.3377568, 48.8474704 2.3718474, 48.8881036 2.3258701, 48.8862612 2.3438540, 48.8444030 2.3753907, 48.8412568 2.3561020, 48.8802722 2.3675063, 48.8743118 2.3204772, 48.8844890 2.3447472, 48.8841058 2.3521880, 48.8858346 2.3758518, 48.8588810 2.3417760, 48.8694746 2.3247589, 48.8722562 2.3773810, 48.8700309 2.3292678, 48.8702717 2.3306225, 48.8687745 2.3432434, 48.8667885 2.3495539, 48.8648587 2.3516262, 48.8683427 2.3501494, 48.8681440 2.3484373, 48.8914586 2.3497646, 48.8268925 2.3513505, 48.8659826 2.3540443, 48.8792700 2.3844462, 48.8840145 2.3317743, 48.8542244 2.3561302, 48.8443855 2.3606510, 48.8612709 2.3498777, 48.8552582 2.3605246, 48.8455093 2.3329557, 48.8475334 2.3382332, 48.8238740 2.3180838, 48.8510705 2.2951132, 48.8780661 2.3700636, 48.8313804 2.3480743, 48.8296767 2.3796195, 48.8279138 2.3225247, 48.8759721 2.3267452, 48.8754098 2.3151509, 48.8313695 2.3205695, 48.8684390 2.2990680, 48.8716186 2.4041500, 48.8746281 2.3022896, 48.8780563 2.2975311, 48.8379492 2.3512092, 48.8199140 2.3618618, 48.8242035 2.3397900, 48.8244362 2.3385188, 48.8770173 2.3640220, 48.8605186 2.3511396, 48.8607908 2.3512861, 48.8409048 2.3002716, 48.8781096 2.3616482, 48.8682772 2.2938009, 48.8621497 2.2864059, 48.8483838 2.2603636, 48.8878856 2.3659310, 48.8774224 2.2614000, 48.8280956 2.3585627, 48.8293080 2.3652192, 48.8717450 2.3763419, 48.8423236 2.2561943, 48.8846348 2.3590969, 48.8920738 2.3615515, 48.8857831 2.3704180, 48.8882670 2.3737456, 48.8842463 2.3674355, 48.8886939 2.3740545, 48.8835852 2.3687084, 48.8323241 2.3308583, 48.8478006 2.3440011, 48.8757565 2.3604345, 48.8659123 2.3250771, 48.8495867 2.3963351, 48.8694855 2.3127606, 48.8648568 2.3224814, 48.8316539 2.3201884, 48.8584294 2.2957348, 48.8474359 2.3956182, 48.8441490 2.4410460, 48.8594767 2.3890495, 48.8571807 2.2995618, 48.8680319 2.3652462, 48.8658957 2.3524620, 48.8470892 2.3842101, 48.8449275 2.3804850, 48.8389160 2.3896782, 48.8570795 2.3793482, 48.8527591 2.3685273, 48.8630663 2.3527335, 48.8601693 2.3891491, 48.8599140 2.3909353, 48.8509100 2.3440225, 48.8651560 2.3002462, 48.8801931 2.3090971, 48.8668874 2.3528247, 48.8769493 2.2859070, 48.8412710 2.2855359, 48.8528709 2.3486106, 48.8306412 2.2918306, 48.8413192 2.2547825, 48.8384448 2.2588960, 48.8432911 2.2695096, 48.8363724 2.2819007, 48.8442938 2.2814436, 48.8485380 2.2573725, 48.8458645 2.2564076, 48.8572259 2.2668689, 48.8544526 2.2693573, 48.8459313 2.2692557, 48.8512448 2.2756544, 48.8509007 2.2779357, 48.8477025 2.2738262, 48.8200408 2.3479644, 48.8212446 2.3690189, 48.8226584 2.3668672, 48.8190929 2.3443682, 48.8195872 2.3642183, 48.8407510 2.3161284, 48.8408847 2.3255233, 48.8357296 2.3158704, 48.8323111 2.3252588, 48.8289690 2.3280388, 48.8296366 2.3263748, 48.8240050 2.3260887, 48.8257339 2.3264008, 48.8447616 2.2905846, 48.8256825 2.3151865, 48.8250160 2.3112381, 48.8279762 2.3057040, 48.8282568 2.3034035, 48.8590513 2.2891298, 48.8574201 2.3243023, 48.8459313 2.3090188, 48.8496408 2.2962215, 48.8523475 2.2907877, 48.8528387 2.2979972, 48.8550663 2.2959776, 48.8457977 2.3185660, 48.8469673 2.2921080, 48.8505096 2.3274022, 48.8311741 2.3447143, 48.8330426 2.3312889, 48.8330416 2.3357290, 48.8305266 2.3291048, 48.8347199 2.3367751, 48.8348054 2.3320949, 48.8346868 2.3410351, 48.8376293 2.3387512, 48.8369790 2.3350851, 48.8349524 2.3463908, 48.8394809 2.3371526, 48.8417537 2.3377112, 48.8416255 2.3485536, 48.8281988 2.3566483, 48.8239378 2.3581173, 48.8340823 2.3537029, 48.8240665 2.3530961, 48.8297239 2.3690723, 48.8404168 2.3535555, 48.8520468 2.3397933, 48.8558630 2.3465049, 48.8528153 2.3347150, 48.8544526 2.3311094, 48.8580548 2.3474799, 48.8598724 2.3490644, 48.8623038 2.3502010, 48.8625013 2.3507772, 48.8636772 2.3510372, 48.8580013 2.3464643, 48.8623046 2.3423204, 48.8603000 2.3464643, 48.8636409 2.3426454, 48.8631527 2.3417623, 48.8650306 2.3407360, 48.8549469 2.3729734, 48.8477025 2.3536570, 48.8658631 2.3695102, 48.8610722 2.3670951, 48.8655959 2.3652444, 48.8655288 2.3523437, 48.8669313 2.3543718, 48.8613680 2.3530523, 48.8626723 2.3594550, 48.8600851 2.3608850, 48.8650242 2.3602350, 48.8437230 2.4019904, 48.8445383 2.3775163, 48.8405196 2.4047985, 48.8395307 2.3783327, 48.8406003 2.3922472, 48.8387954 2.3810242, 48.8537699 2.3826458, 48.8556078 2.3835929, 48.8541941 2.3777992, 48.8495092 2.3936775, 48.8521926 2.3936896, 48.8532589 2.3878909, 48.8504312 2.3841184, 48.8460954 2.3766582, 48.8455898 2.3850416, 48.8649600 2.3947898, 48.8648944 2.3762643, 48.8657274 2.3810297, 48.8575027 2.3926652, 48.8608171 2.3885376, 48.8571820 2.3811598, 48.8582893 2.3802180, 48.8622924 2.3792422, 48.8642156 2.3796666, 48.8634043 2.3873675, 48.8635967 2.3838899, 48.8662870 2.3897869, 48.8490543 2.4025492, 48.8548100 2.3960622, 48.8556270 2.4100482, 48.8544980 2.4122851, 48.8600077 2.4010312, 48.8641235 2.4090336, 48.8649012 2.4008295, 48.8649070 2.3998063, 48.8769312 2.2849408, 48.8754537 2.2797323, 48.8753771 2.2991851, 48.8750050 2.2958071, 48.8746876 2.3040608, 48.8747971 2.3033120, 48.8750816 2.3064737, 48.8779490 2.3049095, 48.8688553 2.3011783, 48.8678567 2.3013134, 48.8815385 2.2956906, 48.8789650 2.2944900, 48.8840444 2.3042439, 48.8839678 2.3023801, 48.8875816 2.2944455, 48.8818996 2.2861056, 48.8860578 2.3041773, 48.8699848 2.3287478, 48.8750248 2.3145888, 48.8851026 2.3266307, 48.8853192 2.3267751, 48.8833981 2.3265291, 48.8815640 2.3207727, 48.8814950 2.3154241, 48.8958618 2.3281541, 48.8908274 2.3196997, 48.8919542 2.3272320, 48.8894716 2.3189974, 48.8905833 2.3035017, 48.8948720 2.3143780, 48.8727102 2.3345720, 48.8707655 2.3471293, 48.8689559 2.3407457, 48.8712959 2.3437499, 48.8844160 2.3292308, 48.8835474 2.3336949, 48.8816820 2.3456299, 48.8832578 2.3459960, 48.8834110 2.3475269, 48.8837284 2.3488082, 48.8763445 2.3614950, 48.8684955 2.3674002, 48.8700553 2.3666721, 48.8762256 2.3723091, 48.8725652 2.3640736, 48.8738041 2.3703747, 48.8774841 2.3709987, 48.8705409 2.3514636, 48.8707624 2.3546578, 48.8690350 2.3562439, 48.8794220 2.3546823, 48.8850648 2.3549532, 48.8818932 2.3663627, 48.8934493 2.3369256, 48.8917911 2.3353655, 48.8990071 2.3376842, 48.8994040 2.3445085, 48.8992399 2.3440425, 48.8965488 2.3383847, 48.8957759 2.3460150, 48.8979185 2.3294720, 48.8964168 2.3349069, 48.8891775 2.3451972, 48.9005952 2.3351144, 48.9011543 2.3445750, 48.9008261 2.3438595, 48.8904593 2.3545937, 48.8950801 2.3589964, 48.8751448 2.3735780, 48.8683632 2.3815998, 48.8685956 2.3900339, 48.8735031 2.3753876, 48.8722991 2.3766565, 48.8703700 2.3791942, 48.8770727 2.3925548, 48.8736648 2.3896765, 48.8719517 2.3920209, 48.8891494 2.3933914, 48.8822173 2.3934544, 48.8872647 2.3758855, 48.8888297 2.3790479, 48.8829941 2.3814519, 48.8786649 2.3784063, 48.8855727 2.3811520, 48.8834799 2.3835649, 48.8863045 2.3939114, 48.8709467 2.4091775, 48.8755868 2.3978758, 48.8706206 2.3982918, 48.8759333 2.4069996, 48.8839109 2.3979467, 48.8989432 2.3869214, 48.8538420 2.3492906, 48.8337840 2.3198864, 48.8363741 2.3098652, 48.8823434 2.3703224, 48.8533006 2.4091489, 48.8537801 2.4114641, 48.8674613 2.3438214, 48.8499500 2.3769797, 48.8470284 2.4077647, 48.8655973 2.2521957, 48.8683976 2.2458347, 48.8704442 2.2461780, 48.8688316 2.2477983, 48.8520184 2.4094142, 48.8623378 2.2682175, 48.8496205 2.4036764, 48.8558805 2.4016616, 48.8898813 2.3155227, 48.8445744 2.3876337, 48.8917397 2.3142884, 48.8864203 2.3325703, 48.8854403 2.3309916, 48.8888432 2.2975858, 48.8189926 2.3575382, 48.8721179 2.3385859, 48.8539073 2.4012043, 48.8339369 2.3145520, 48.8776027 2.3270929, 48.8347274 2.3935263, 48.8641893 2.3299462, 48.8262224 2.3748278, 48.8222866 2.3235525, 48.8422384 2.3371968, 48.8245328 2.3394230, 48.8564210 2.3497120, 48.8303448 2.3338271, 48.8371726 2.2967406, 48.8252648 2.3158680, 48.8346411 2.2842123, 48.8380766 2.2780055, 48.8377037 2.2774821, 48.8636364 2.3968839, 48.8303577 2.3751842, 48.8624480 2.2893920, 48.8324846 2.3616424, 48.8976429 2.3589492, 48.8859544 2.3562670, 48.8210556 2.3567317, 48.8683870 2.3633979, 48.8806519 2.4004273, 48.8283295 2.3766600, 48.8393953 2.2709608, 48.8572681 2.2911573, 48.8625031 2.3009633, 48.8883177 2.3371911, 48.8445790 2.3614939, 48.8725060 2.3265052, 48.8856373 2.3263659, 48.8783887 2.2690382, 48.8771192 2.2618218, 48.8319874 2.3777146, 48.8262191 2.3053681, 48.8865752 2.3770595, 48.8411112 2.3657854, 48.8294677 2.3494266, 48.8320219 2.3028314, 48.8309632 2.2918204, 48.8545746 2.3446665, 48.8550316 2.3449206, 48.8550827 2.3439980, 48.8528590 2.3510623, 48.8792041 2.3039281, 48.8342486 2.3425441, 48.8255813 2.3041840, 48.8483378 2.3594757, 48.8745891 2.3627432, 48.8754929 2.3615609, 48.8890079 2.3632043, 48.8364059 2.4010293, 48.8947397 2.3820270, 48.8950270 2.3539258, 48.8323359 2.4200595, 48.8322107 2.4176394, 48.8330064 2.4147766, 48.8337431 2.4190611, 48.8625107 2.3109476, 48.8894902 2.3806301, 48.8347529 2.3577560, 48.8488854 2.3676323, 48.8254239 2.3694610, 48.8275704 2.3672600, 48.8336951 2.3651195, 48.8338003 2.3625255, 48.8582183 2.3633569, 48.8395113 2.4061466, 48.8409893 2.4021854, 48.8419636 2.4099074, 48.8428499 2.3882529, 48.8443380 2.3820200, 48.8465345 2.4039066, 48.8519692 2.3809344, 48.8521453 2.3853886, 48.8363138 2.3737506, 48.8767105 2.3931022, 48.8708961 2.3969286, 48.8440626 2.4113218, 48.8622381 2.3454960, 48.8454362 2.3531891, 48.8389126 2.3825734, 48.8378588 2.4114608, 48.8327062 2.3968887, 48.8623435 2.4069746, 48.8403137 2.3203018, 48.8407586 2.3208814, 48.8769804 2.3588987, 48.8450228 2.3738335, 48.8237712 2.3188140, 48.8187381 2.3603132, 48.8382416 2.4446399, 48.8399257 2.4407658, 48.8480293 2.3335576, 48.8464818 2.3340282, 48.8823771 2.3827729, 48.8549799 2.3152238, 48.8705165 2.3847431, 48.8230296 2.3485201, 48.8278250 2.3617461, 48.8222813 2.3365890, 48.8392359 2.3063319, 48.8791228 2.2634314, 48.8786255 2.2671376, 48.8769408 2.2659712, 48.8821613 2.2906191, 48.8582512 2.2683212, 48.8279457 2.3056505, 48.8668278 2.3572924, 48.8516542 2.2871063, 48.8516808 2.2870709, 48.8517036 2.2871224, 48.8516646 2.2871187, 48.8516831 2.2871003, 48.8516707 2.2870906, 48.8518764 2.2866092, 48.8519081 2.2866142, 48.8518764 2.2866092, 48.8519081 2.2866142, 48.8518731 2.2866452, 48.8519155 2.2865522, 48.8519155 2.2865527, 48.8517799 2.2871988, 48.8530404 2.3610674, 48.8917906 2.3880857, 48.8430807 2.3520816, 48.8423553 2.3450638, 48.8420396 2.3453568, 48.8424163 2.3444687, 48.8414902 2.3449983 +yes +yes +487500 +13 +49.4194835 8.7033812, 49.4258222 8.7062319, 49.3551484 8.6336513, 49.4270542 8.7105990, 49.4184666 8.7052069, 49.4245168 8.7056416, 49.4235710 8.7025718, 49.4242799 8.7072520, 49.4224817 8.7024542, 49.4229479 8.7068545, 49.4193290 8.7035781, 49.4221380 8.7051571, 49.4263381 8.7055314, 49.4188706 8.7007961, 49.4276600 8.7101416, 49.4243184 8.7025688, 49.4189138 8.7068425, 49.4254814 8.7024102, 49.4213140 8.7019771, 49.4268509 8.7026924, 49.4254256 8.7051858, 49.4195009 8.7025277, 49.4201952 8.7010712, 49.4208217 8.7059731, 49.4233178 8.7053934, 49.4276906 8.7058352, 49.4238991 8.7095045, 49.4206459 8.7039110, 49.4265814 8.7086544, 49.4256259 8.7093622, 49.4257275 8.7070484, 49.4179403 8.7025717, 49.4207145 8.7089359, 49.4222472 8.7095805, 49.4248984 8.7025175 +55.9268506 -3.2089249 +55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9002100 -3.2321660, 55.9579565 -3.2439627, 55.9297115 -3.2566004, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9344345 -3.1791228, 55.9100535 -3.1423251, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9826346 -3.1875882, 55.9248058 -3.2496194, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9051775 -3.1653894, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9695021 -3.2293678, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9102318 -3.2377415, 55.9781314 -3.1744029, 55.9242943 -3.2525824, 55.9398424 -3.2041012 +yes +0 +55.9566271 -3.2720552, 55.9418294 -3.1502506, 55.9201209 -3.2500686, 55.9232770 -3.2473521, 55.9256887 -3.2299616, 55.9216082 -3.1959071, 55.9190764 -3.1843258 +166 +48.8678615 2.3515176, 48.8681982 2.3520494, 48.8742181 2.3379134, 48.8797487 2.3564752, 48.8827832 2.3594133, 48.8327554 2.3711889, 48.8294304 2.3758918, 48.8322707 2.3582796, 48.8704428 2.3883722, 48.8703637 2.3893764, 48.8695013 2.3822447, 48.8701522 2.3848448, 48.8705756 2.3882952, 48.8726648 2.3889559, 48.8692544 2.3857069, 48.8732512 2.3826034, 48.8719640 2.3809798, 48.8715124 2.3812630, 48.8707876 2.3814258, 48.8701383 2.3797607, 48.8703047 2.3816624, 48.8689756 2.3829202, 48.8674174 2.3831948, 48.8681056 2.3856641, 48.8692096 2.3486800, 48.8675048 2.3473847, 48.8674736 2.3471342, 48.8702235 2.3490322, 48.8818782 2.3342987, 48.8404563 2.3540242, 48.8457501 2.3710340, 48.8507318 2.3902220, 48.8273026 2.3137753, 48.8321419 2.3413424, 48.8330200 2.3329456, 48.8529986 2.3973185, 48.8537772 2.3960030, 48.8411229 2.3744020, 48.8713839 2.3723624, 48.8720555 2.3717928, 48.8725878 2.3713798, 48.8734747 2.3704890, 48.8741515 2.3743018, 48.8747572 2.3721336, 48.8756416 2.3688091, 48.8761685 2.3706316, 48.8767824 2.3701809, 48.8766895 2.3672800, 48.8750608 2.3672145, 48.8735860 2.3650243, 48.8718184 2.3654608, 48.8717399 2.3675792, 48.8714321 2.3669323, 48.8715550 2.3681089, 48.8696638 2.3693259, 48.8715040 2.3760459, 48.8700440 2.3716713, 48.8687232 2.3723495, 48.8683112 2.3698916, 48.8680322 2.3727849, 48.8631317 2.3869263, 48.8640310 2.3863813, 48.8665041 2.3812744, 48.8656858 2.3776485, 48.8674450 2.3750281, 48.8686005 2.3800123, 48.8681319 2.3792398, 48.8543046 2.3285742, 48.8520050 2.3739783, 48.8456295 2.4033753, 48.8663147 2.3719752, 48.8769811 2.4048559, 48.8749761 2.4031141, 48.8777348 2.3959932, 48.8758342 2.4011315, 48.8703695 2.3665503, 48.8748068 2.3638809, 48.8753882 2.3643616, 48.8831646 2.3720227, 48.8833551 2.3721300, 48.8836055 2.3731171, 48.8836902 2.3740022, 48.8840147 2.3752146, 48.8844169 2.3762767, 48.8849729 2.3784198, 48.8850377 2.3791735, 48.8851153 2.3790072, 48.8855033 2.3809706, 48.8856762 2.3815928, 48.8865051 2.3847954, 48.8873411 2.3873650, 48.8876230 2.3883824, 48.8878308 2.3891184, 48.8889239 2.3944490, 48.8827251 2.3816969, 48.8725474 2.3766326, 48.8739080 2.3960132, 48.8775377 2.3857736, 48.8831878 2.3714050, 48.8640393 2.3755646, 48.8706620 2.3611950, 48.8734580 2.3584123, 48.8732312 2.3586224, 48.8755934 2.3832701, 48.8756530 2.3832155, 48.8482774 2.3428253, 48.8784345 2.3578878, 48.8783277 2.3564922, 48.8703209 2.2825197, 48.8268477 2.3647861, 48.8541564 2.4000911, 48.8465229 2.3686904, 48.8463083 2.3680521, 48.8469932 2.3727161, 48.8467819 2.3725108, 48.8459580 2.3724556, 48.8455779 2.3697051, 48.8663510 2.3672959, 48.8658303 2.3698488, 48.8657851 2.3771616, 48.8665079 2.3800178, 48.8653617 2.3809810, 48.8760867 2.3599561, 48.8829095 2.3591741, 48.8834606 2.3606563, 48.8826329 2.3615224, 48.8854259 2.3538571, 48.8884161 2.3532369, 48.8841015 2.3597869, 48.8874152 2.3671866, 48.8853281 2.3720155, 48.8905441 2.3545731, 48.8902032 2.3626104, 48.8896626 2.3678766, 48.8830418 2.3799420, 48.8839897 2.3776750, 48.8839192 2.3777877, 48.8793674 2.3913866, 48.8642121 2.3813367, 48.8549764 2.3705401, 48.8491281 2.3756993, 48.8907340 2.3442268, 48.8482547 2.3739915, 48.8476489 2.3756562, 48.8505462 2.3785256, 48.8495764 2.3778022, 48.8488506 2.3771667, 48.8490151 2.3766595, 48.8493081 2.3747820, 48.8485986 2.3761016, 48.8466357 2.3723850, 48.8376761 2.3448921, 48.8355075 2.3583356, 48.8464369 2.3792454, 48.8584489 2.3792058, 48.8945048 2.3474462, 48.8929338 2.3489373, 48.8919373 2.3499061, 48.8943845 2.3506181, 48.8938805 2.3498536, 48.8953235 2.3467399, 48.8953754 2.3495531, 48.8995258 2.3457476, 48.8909128 2.3454738, 48.8916063 2.3445324, 48.8921962 2.3448571, 48.8923204 2.3442537, 48.8902437 2.3476818, 48.8906398 2.3495092, 48.8907675 2.3495020, 48.8923427 2.3461089, 48.8949846 2.3408277, 48.8842461 2.3613088, 48.8840672 2.3616073, 48.8841745 2.3614072, 48.8882926 2.3599384, 48.8845099 2.3646309, 48.8856332 2.3659515, 48.8920952 2.3613649, 48.8883041 2.3506540, 48.8883196 2.3501401, 48.8883144 2.3520272, 48.8883763 2.3527059, 48.8886896 2.3559132, 48.8886090 2.3548159, 48.8889395 2.3584021, 48.8890178 2.3582290, 48.8890523 2.3595116, 48.8866144 2.3504214, 48.8858198 2.3551215, 48.8863622 2.3561844, 48.8878527 2.3515748, 48.8872861 2.3561221, 48.8839769 2.3509507, 48.8850544 2.3495979, 48.8857811 2.3496248, 48.8861021 2.3496301, 48.8863490 2.3496462, 48.8876294 2.3496373, 48.8885253 2.3496748, 48.8890580 2.3496748, 48.8887476 2.3496695, 48.8889098 2.3496802, 48.8841020 2.3522661, 48.8840538 2.3519670, 48.8840388 2.3514774, 48.8892343 2.3496802, 48.8896364 2.3496856, 48.8847017 2.3493780, 48.8847898 2.3493834, 48.8848569 2.3493834, 48.8852449 2.3493834, 48.8851108 2.3493834, 48.8863243 2.3494209, 48.8860562 2.3494048, 48.8857987 2.3494048, 48.8866171 2.3494388, 48.8873464 2.3494796, 48.8876365 2.3494656, 48.8887125 2.3494781, 48.8889239 2.3494603, 48.8891003 2.3494710, 48.8884971 2.3494495, 48.8880001 2.3494761, 48.8904052 2.3495068, 48.8897932 2.3494533, 48.8892625 2.3494710, 48.8830632 2.3383743, 48.8857316 2.3349375, 48.8857096 2.3352645, 48.8854435 2.3359469, 48.8859008 2.3346803, 48.8853035 2.3363355, 48.8851642 2.3366575, 48.8843335 2.3382618, 48.8886961 2.3390540, 48.8851431 2.3383441, 48.8865032 2.3356719, 48.8885778 2.3354686, 48.8888861 2.3383196, 48.8842610 2.3413414, 48.8845571 2.3411073, 48.8847258 2.3403346, 48.8849081 2.3418344, 48.8895658 2.3377576, 48.8850086 2.3604185, 48.8907312 2.3639595, 48.8961106 2.3318024, 48.8991268 2.3345829, 48.8952517 2.3371563, 48.8962344 2.3344485, 48.8965875 2.3360980, 48.8956272 2.3391536, 48.8966215 2.3385776, 48.8983862 2.3383214, 48.8944354 2.3403228, 48.8944213 2.3442287, 48.9000243 2.3455555, 48.8996339 2.3501097, 48.8837052 2.3395939, 48.8832400 2.3421635, 48.8834792 2.3421669, 48.8839647 2.3413568, 48.8865870 2.3452064, 48.8832262 2.3499505, 48.8846010 2.3470099, 48.8881281 2.3463794, 48.8883520 2.3487355, 48.8869557 2.3324658, 48.8869663 2.3326053, 48.8890733 2.3333345, 48.8903665 2.3341127, 48.8903277 2.3330237, 48.8903732 2.3369030, 48.8916342 2.3355210, 48.8908322 2.3375902, 48.8908023 2.3394033, 48.8910048 2.3400771, 48.8912851 2.3396007, 48.8926693 2.3356185, 48.8934479 2.3366141, 48.8928829 2.3373736, 48.8929557 2.3385657, 48.8923455 2.3400044, 48.8904263 2.3404251, 48.8913682 2.3472930, 48.8603661 2.3754100, 48.8900474 2.3613408, 48.8314088 2.3488132, 48.8487505 2.3777984, 48.8503027 2.3774477, 48.8626941 2.3877054, 48.8785891 2.3856103, 48.8810145 2.3891669, 48.8321125 2.3499256, 48.8774636 2.3705618, 48.8682585 2.2932381, 48.8782580 2.3987300, 48.8832583 2.3346263, 48.8832465 2.3341658, 48.8831954 2.3348376, 48.8842151 2.3311538, 48.8830070 2.3349691, 48.8833032 2.3455032, 48.8841705 2.3313488, 48.8826156 2.3432538, 48.8834306 2.3335452, 48.8841164 2.3315750, 48.8824079 2.3419280, 48.8834666 2.3339320, 48.8831738 2.3344061, 48.8821954 2.3389929, 48.8836632 2.3332864, 48.8831695 2.3452574, 48.8824739 2.3367661, 48.8829388 2.3356827, 48.8831317 2.3458945, 48.8843696 2.3305004, 48.8842302 2.3305121, 48.8826517 2.3426287, 48.8827762 2.3362216, 48.8839947 2.3320999, 48.8842717 2.3309204, 48.8824891 2.3425994, 48.8830995 2.3449030, 48.8829578 2.3351297, 48.8832939 2.3340079, 48.8830087 2.3354500, 48.8840806 2.3311362, 48.8827159 2.3359415, 48.8828527 2.3354881, 48.8840902 2.3316931, 48.8911573 2.3437849, 48.8841548 2.3308314, 48.8839884 2.3315392, 48.8827419 2.3443694, 48.8824955 2.3419279, 48.8842291 2.3288540, 48.8840681 2.3286855, 48.8841801 2.3289398, 48.8859483 2.3285578, 48.8851713 2.3293553, 48.8576992 2.2797776, 48.8298513 2.2961748, 48.8373832 2.3826403, 48.8799725 2.3588623, 48.8800272 2.3588101, 48.8829349 2.3636381, 48.8829772 2.3594750, 48.8826392 2.3667648, 48.8770806 2.3638519, 48.8809351 2.3625812, 48.8809545 2.3624632, 48.8831311 2.3654083, 48.8830941 2.3655236, 48.8839358 2.3671407, 48.8289786 2.3807812, 48.8280552 2.3808361, 48.8292843 2.3823232, 48.8294517 2.3827405, 48.8291010 2.3833382, 48.8297120 2.3791681, 48.8809954 2.3651002, 48.8812463 2.3652224, 48.8827050 2.3670033, 48.8465800 2.3730993, 48.8839900 2.3286046, 48.8839605 2.3284938, 48.8763431 2.4041075, 48.8880685 2.3769540, 48.8888236 2.3460678, 48.8955600 2.3458430, 48.8909736 2.3451546, 48.8857875 2.3376754, 48.8856834 2.3380986, 48.8908443 2.3617886, 48.8850609 2.3402076, 48.8569556 2.3980459, 48.8564650 2.4027024, 48.8892956 2.3534520, 48.8883918 2.3276047, 48.8433038 2.3543255, 48.8418031 2.3029041, 48.8414214 2.2514890, 48.8665787 2.3687395, 48.8677539 2.3647162, 48.8672442 2.3624249, 48.8919172 2.3436860, 48.8917691 2.3440528, 48.8423698 2.3854379, 48.8469303 2.3075499, 48.8475588 2.3088840, 48.8486504 2.3085581, 48.8448872 2.3142661, 48.8446342 2.3148283, 48.8488629 2.3113707, 48.8543766 2.3286669, 48.8752295 2.2843527, 48.8531440 2.3776869, 48.8595596 2.2753644, 48.8595734 2.2750496, 48.8616150 2.2754832, 48.8659680 2.2795955, 48.8672885 2.2809372, 48.8680280 2.2809252, 48.8683971 2.2825564, 48.8473600 2.3864659, 48.8698073 2.3749191, 48.8698594 2.3755160, 48.8624876 2.3424711, 48.8650939 2.3440997, 48.8652964 2.3432812, 48.8659653 2.3433342, 48.8683868 2.3418763, 48.8671550 2.3566053, 48.8751636 2.4061686, 48.8904492 2.3770876, 48.8384989 2.2572066, 48.8396082 2.2579126, 48.8398593 2.2580096, 48.8651576 2.3510916, 48.8751432 2.3825052, 48.8750868 2.3823845, 48.8425813 2.3448154, 48.8940561 2.3541965, 48.8917696 2.3461211, 48.8918716 2.3465917, 48.8751867 2.4062512, 48.8968424 2.3818049, 48.8499326 2.3631550, 48.8688265 2.2482135, 48.8462126 2.4118560, 48.8437424 2.2986106, 48.8455688 2.3253845, 48.8459243 2.3259674, 48.8460036 2.3258028, 48.8464844 2.3265135, 48.8917516 2.3438452, 48.8911967 2.3437988, 48.8933614 2.3614463, 48.8861681 2.3474404, 48.8462352 2.3927786, 48.8935766 2.3294235, 48.8878878 2.3544913, 48.8880271 2.3560550, 48.8812030 2.3284499, 48.8742437 2.3321727, 48.8942439 2.3352879, 48.8988973 2.3399388, 48.8997428 2.3522502, 48.8921164 2.3345008, 48.8911613 2.3319378, 48.8921939 2.3316488, 48.8856755 2.3448166, 48.8930350 2.3633966, 48.8900140 2.3602197, 48.8762979 2.3397799, 48.8766916 2.3405068, 48.8933200 2.3491176, 48.8246903 2.3553751, 48.8377773 2.3494970, 48.8895988 2.3163725, 48.8825981 2.3645629, 48.8928809 2.3504734, 48.8920706 2.3346881, 48.8933750 2.3385392, 48.8413779 2.3118977, 48.8433854 2.3736074, 48.8510517 2.3092163, 48.8518484 2.3096816, 48.8369959 2.3933620, 48.8545431 2.2743043, 48.8589523 2.2771588, 48.8599813 2.3497684, 48.8968971 2.3856504, 48.8278579 2.3057957, 48.8302062 2.3335779, 48.8254086 2.3802466, 48.8984327 2.3695091, 48.8394454 2.3963015, 48.8605989 2.3512022, 48.8983279 2.3618983, 48.8983261 2.3617173, 48.8983518 2.3649038, 48.8982617 2.3563907, 48.8750935 2.3351732, 48.8436342 2.3043290, 48.8431682 2.3046133, 48.8918524 2.3632899, 48.8919900 2.3631317, 48.8756176 2.3432285, 48.8760560 2.3438036, 48.8762724 2.3440214, 48.8429539 2.4085434, 48.8443890 2.4068429, 48.8418110 2.4082929, 48.8257982 2.3468029, 48.8266018 2.3354681, 48.8272551 2.3352458, 48.8330622 2.3958487, 48.8336114 2.3861569, 48.8337322 2.3983467, 48.8337623 2.3951877, 48.8342999 2.3975412, 48.8343797 2.3963938, 48.8345191 2.3966361, 48.8348254 2.3934365, 48.8348947 2.3972942, 48.8349022 2.3933477, 48.8349654 2.3960429, 48.8358704 2.3961786, 48.8359891 2.3974455, 48.8360813 2.3872238, 48.8361353 2.3948924, 48.8361988 2.3988969, 48.8364221 2.3949270, 48.8364309 2.3988951, 48.8365523 2.3982569, 48.8366252 2.3929585, 48.8366508 2.3952223, 48.8366989 2.3943677, 48.8369456 2.4019945, 48.8370471 2.3917506, 48.8375850 2.3971765, 48.8376090 2.3907850, 48.8380876 2.3941069, 48.8382060 2.3900510, 48.8382377 2.3966077, 48.8384334 2.3930799, 48.8392532 2.4005400, 48.8393971 2.4089227, 48.8394590 2.3963160, 48.8398776 2.4385198, 48.8401062 2.4087456, 48.8403121 2.4025153, 48.8403240 2.3922740, 48.8404000 2.3925410, 48.8405290 2.3878980, 48.8406298 2.4087338, 48.8408716 2.4093998, 48.8408973 2.4043894, 48.8411011 2.3894090, 48.8411636 2.4011997, 48.8412990 2.3878120, 48.8414464 2.4049212, 48.8415076 2.4114849, 48.8415328 2.3867030, 48.8416660 2.4012796, 48.8419094 2.4012356, 48.8421054 2.4051399, 48.8422686 2.4130852, 48.8427012 2.4099683, 48.8430070 2.4049900, 48.8432746 2.4053848, 48.8435321 2.4018263, 48.8435985 2.3849459, 48.8438772 2.4055537, 48.8438822 2.4018602, 48.8441184 2.4107116, 48.8445290 2.4022130, 48.8445690 2.3838350, 48.8447684 2.4039094, 48.8450108 2.3819449, 48.8450601 2.4059175, 48.8451489 2.3992116, 48.8456490 2.4058577, 48.8458140 2.3781933, 48.8460195 2.4011318, 48.8464795 2.3973596, 48.8468250 2.3761200, 48.8469175 2.3998635, 48.8470370 2.3752130, 48.8473365 2.3968804, 48.8475637 2.3772093, 48.8476803 2.3969131, 48.8478107 2.3769587, 48.8486250 2.3761890, 48.8486464 2.3760764, 48.8486500 2.3759526, 48.8486995 2.3922091, 48.8488565 2.3718825, 48.8491107 2.3914645, 48.8491891 2.3706453, 48.8492039 2.3749537, 48.8493182 2.3945344, 48.8494100 2.3666950, 48.8495420 2.3885630, 48.8496199 2.3992270, 48.8496430 2.3879630, 48.8497090 2.3874500, 48.8499140 2.3738580, 48.8500548 2.3704157, 48.8501440 2.3736032, 48.8501956 2.3990356, 48.8507639 2.3673484, 48.8517110 2.3618880, 48.8517771 2.3894115, 48.8518450 2.3616490, 48.8521525 2.3608127, 48.8522346 2.3609020, 48.8526930 2.3593190, 48.8527195 2.3598976, 48.8527480 2.3589640, 48.8531388 2.3585705, 48.8532690 2.3582420, 48.8535826 2.3671894, 48.8536386 2.3574595, 48.8536840 2.3653980, 48.8540083 2.3867106, 48.8542800 2.3558000, 48.8543900 2.3585670, 48.8546430 2.3624970, 48.8551500 2.3611171, 48.8551661 2.3610199, 48.8553710 2.3839922, 48.8554533 2.3526702, 48.8555080 2.3530370, 48.8557740 2.3511230, 48.8557940 2.3561690, 48.8559788 2.3536549, 48.8576042 2.3453235, 48.8576673 2.3795437, 48.8578611 2.3794239, 48.8580233 2.3793056, 48.8588686 2.3399492, 48.8593222 2.3528610, 48.8597358 2.3468419, 48.8618647 2.3406148, 48.8659038 2.3352738, 48.8664823 2.3650887, 48.8680548 2.3339763, 48.8682365 2.3599800, 48.8683243 2.3611065, 48.8693195 2.3570045, 48.8692824 2.3567025, 48.8701819 2.3507724, 48.8703411 2.3499916, 48.8703632 2.3498715, 48.8704864 2.3493477, 48.8705032 2.3492529, 48.8716194 2.3500035, 48.8721225 2.3499157, 48.8721226 2.3502025, 48.8722370 2.3500383, 48.8737185 2.3504412, 48.8741816 2.3506318, 48.8747445 2.3507850, 48.8752900 2.3395820, 48.8758873 2.3483293, 48.8760619 2.3511508, 48.8762909 2.3511140, 48.8779921 2.3512114, 48.8784568 2.3428425, 48.8787058 2.3506082, 48.8792051 2.3494881, 48.8792478 2.3478686, 48.8794000 2.3508120, 48.8795410 2.3488399, 48.8798786 2.3436312, 48.8799663 2.3473845, 48.8339632 2.2872487, 48.8359881 2.2902310, 48.8372786 2.2895116, 48.8449733 2.3955604, 48.8452920 2.3209130, 48.8452821 2.3979496, 48.8463896 2.3943133, 48.8471562 2.3938782, 48.8489640 2.3916850, 48.8493880 2.3888810, 48.8496070 2.3873440, 48.8502461 2.3827334, 48.8504940 2.3815430, 48.8505009 2.3846476, 48.8513150 2.3816100, 48.8518018 2.3280805, 48.8525120 2.3807800, 48.8533500 2.3805110, 48.8537880 2.3957560, 48.8541520 2.3797770, 48.8561260 2.3783390, 48.8576484 2.3771545, 48.8584759 2.3764078, 48.8603270 2.3754070, 48.8618492 2.3647130, 48.8621758 2.3636326, 48.8622764 2.3665452, 48.8633235 2.3689417, 48.8645520 2.3597753, 48.8671223 2.3513757, 48.8700760 2.3506120, 48.8736310 2.3479604, 48.8755325 2.3482416, 48.8758100 2.3397850, 48.8760265 2.3400514, 48.8760800 2.3403660, 48.8768678 2.3487512, 48.8389060 2.3767670, 48.8390010 2.3874480, 48.8396552 2.3779295, 48.8543680 2.3547701, 48.8239017 2.3229235, 48.8242472 2.3213940, 48.8245758 2.3199505, 48.8255285 2.3158189, 48.8256468 2.3482018, 48.8258238 2.3144135, 48.8260929 2.3588377, 48.8261054 2.3131480, 48.8275286 2.3318231, 48.8290970 2.2993460, 48.8296899 2.2967192, 48.8300150 2.2961350, 48.8325027 2.2889045, 48.8366313 2.2763322, 48.8431275 2.2603574, 48.8451702 2.3983100, 48.8475546 2.3889290, 48.8478588 2.3908091, 48.8482240 2.3808030, 48.8482720 2.3787290, 48.8490260 2.3810470, 48.8492020 2.3781220, 48.8498208 2.3768806, 48.8499970 2.3791060, 48.8520364 2.3739698, 48.8540329 2.3736919, 48.8545885 2.3714719, 48.8546118 2.3729736, 48.8546280 2.3710930, 48.8550337 2.3704743, 48.8574091 2.3612872, 48.8577110 2.3608910, 48.8618100 2.3539090, 48.8627772 2.3535227, 48.8646021 2.3531390, 48.8700440 2.3507020, 48.8726232 2.2763923, 48.8737450 2.3479740, 48.8738400 2.3446450, 48.8761660 2.3441530, 48.8791390 2.3535520, 48.8798180 2.3528100, 48.8820870 2.3509300, 48.8861322 2.3494762, 48.8866800 2.3495020, 48.8876420 2.3494764, 48.8878870 2.3494964, 48.8906598 2.3495186, 48.8909454 2.3495172, 48.8989647 2.3237481, 48.8715019 2.4045081, 48.8762240 2.4062991, 48.8763811 2.4061703, 48.8769447 2.4050363, 48.8776734 2.4065084, 48.8779210 2.4059297, 48.8781032 2.4108393, 48.8782650 2.4058287, 48.8657823 2.3994721, 48.8572967 2.3515291, 48.8522308 2.3678097, 48.8242892 2.3764902, 48.8243395 2.3766423, 48.8259590 2.3538780, 48.8333535 2.3991671, 48.8378748 2.3573539, 48.8367172 2.3580385, 48.8370906 2.3578084, 48.8469222 2.3993098, 48.8490463 2.3989425, 48.8563665 2.3939744, 48.8572552 2.3854799, 48.8572776 2.3855905, 48.8576754 2.3919847, 48.8594350 2.3870127, 48.8722210 2.3643307, 48.8261039 2.3582769, 48.8468249 2.4104107, 48.8468448 2.4101919, 48.8468528 2.4101033, 48.8471654 2.4071583, 48.8472069 2.4066764, 48.8513516 2.4062448, 48.8517143 2.4071448, 48.8664981 2.3243419, 48.8941417 2.3326946, 48.8715688 2.4022351, 48.8949489 2.3601209, 48.8911550 2.3633069, 48.8394801 2.3713759, 48.8391251 2.3715959, 48.8378949 2.3555704, 48.8240305 2.3234209, 48.8275253 2.3261423, 48.8295090 2.3482501, 48.8296744 2.3329116, 48.8296889 2.3480032, 48.8300287 2.3471023, 48.8306286 2.3439710, 48.8307741 2.3363033, 48.8309276 2.3553044, 48.8309560 2.3563203, 48.8313659 2.3419868, 48.8314521 2.3413377, 48.8337067 2.3652426, 48.8343505 2.3671081, 48.8349875 2.3690185, 48.8369558 2.3731388, 48.8372547 2.3741922, 48.8389808 2.3876834, 48.8400503 2.3966865, 48.8405435 2.3976638, 48.8419125 2.3931180, 48.8425378 2.3971712, 48.8431508 2.3868501, 48.8438225 2.3907961, 48.8438547 2.3884184, 48.8441353 2.3903995, 48.8448504 2.3956453, 48.8449655 2.3825373, 48.8450610 2.3817030, 48.8455335 2.4059659, 48.8457371 2.3744755, 48.8458882 2.3745674, 48.8460421 2.3746885, 48.8461407 2.3758102, 48.8461570 2.3756299, 48.8462020 2.3762720, 48.8463517 2.4060121, 48.8463588 2.3819651, 48.8469945 2.3695400, 48.8469983 2.3840650, 48.8470022 2.3692654, 48.8485165 2.3710817, 48.8493154 2.3681094, 48.8494375 2.3698324, 48.8497678 2.3690872, 48.8499439 2.3739778, 48.8502341 2.3736347, 48.8502976 2.3687576, 48.8538513 2.4054931, 48.8636158 2.3993948, 48.8639863 2.3992574, 48.8652421 2.3951007, 48.8655085 2.3946733, 48.8677329 2.3907031, 48.8684805 2.3898741, 48.8688786 2.3895491, 48.8702670 2.3890490, 48.8704853 2.3883060, 48.8714250 2.3861474, 48.8717558 2.3890342, 48.8994665 2.3362669, 48.9005443 2.3357066, 48.8320164 2.4039323, 48.8320207 2.4038132, 48.8341445 2.4013757, 48.8351942 2.4016328, 48.8372220 2.4037368, 48.8314328 2.3873778, 48.8317821 2.3857254, 48.8320640 2.3883288, 48.8350055 2.3874833, 48.8358666 2.3847168, 48.8373190 2.3826641, 48.8374528 2.3917533, 48.8380369 2.3818677, 48.8387612 2.3810831, 48.8388667 2.3937811, 48.8389421 2.3806421, 48.8394110 2.3802556, 48.8573040 2.3514977, 48.8614181 2.3533893, 48.8616790 2.3513642, 48.8617384 2.3511100, 48.8617679 2.3509583, 48.8619491 2.3505495, 48.8620204 2.3499051, 48.8620520 2.3497369, 48.8638474 2.3430292, 48.8643157 2.3474095, 48.8648065 2.3458024, 48.8810201 2.3499806, 48.8472316 2.4033307, 48.8474060 2.3985801, 48.8475134 2.3982539, 48.8476893 2.3944332, 48.8480152 2.3982806, 48.8523912 2.3718273, 48.8678628 2.3622500, 48.8682145 2.3624441, 48.8753496 2.3569996, 48.8757151 2.3564916, 48.8759340 2.3562965, 48.8763508 2.3558909, 48.8769505 2.3553665, 48.8776793 2.3547127, 48.8779306 2.3546949, 48.8779709 2.3544608, 48.8789523 2.3541157, 48.8798131 2.3564484, 48.8287082 2.3506786, 48.8297015 2.3756891, 48.8297318 2.3756639, 48.8302556 2.3763483, 48.8302884 2.3764082, 48.8303257 2.3764732, 48.8554738 2.3844934, 48.8558003 2.3750398, 48.8563070 2.3766560, 48.8563443 2.3735148, 48.8563892 2.3736140, 48.8573040 2.3791655, 48.8575988 2.3723727, 48.8580871 2.3720646, 48.8599833 2.3751511, 48.8606643 2.3672378, 48.8612261 2.3646636, 48.8612423 2.3694822, 48.8615175 2.3633665, 48.8620657 2.3606971, 48.8625682 2.3596478, 48.8658847 2.3446913, 48.8659713 2.3446586, 48.8669646 2.3445039, 48.8486198 2.2907379, 48.8241171 2.3356096, 48.8251709 2.3747800, 48.8262226 2.3733016, 48.8265738 2.3354498, 48.8270035 2.3668285, 48.8275458 2.3738970, 48.8276171 2.3715500, 48.8279688 2.3733478, 48.8280437 2.3734448, 48.8303701 2.3343029, 48.8324259 2.3797103, 48.8328426 2.3359068, 48.8348268 2.3999659, 48.8363410 2.4027533, 48.8363547 2.4029753, 48.8367250 2.4043293, 48.8367567 2.3928042, 48.8375039 2.3386695, 48.8380611 2.4053828, 48.8381721 2.4055291, 48.8420689 2.3415277, 48.8298782 2.3572786, 48.8517163 2.4061866, 48.8523080 2.4042254, 48.8534161 2.4030439, 48.8310093 2.3571815, 48.8268348 2.3665087, 48.8272788 2.3567770, 48.8278792 2.3659999, 48.8282237 2.3563309, 48.8285149 2.3563221, 48.8291592 2.3654668, 48.8296502 2.3647788, 48.8268291 2.3641616, 48.8522322 2.3898977, 48.8524976 2.3895606, 48.8539546 2.3825521, 48.8544392 2.3816128, 48.8569327 2.3799755, 48.8585657 2.3781777, 48.8633818 2.3710966, 48.8671029 2.3655043, 48.8683370 2.3634922, 48.8699682 2.3607540, 48.8706171 2.3596295, 48.8708012 2.3598095, 48.8712575 2.3602178, 48.8713074 2.3601361, 48.8718731 2.3599327, 48.8724770 2.3594063, 48.8730997 2.3588306, 48.8734420 2.3585204, 48.8742775 2.3577777, 48.8785606 2.3557407, 48.8481543 2.3934076, 48.8542868 2.3877696, 48.8569986 2.3852716, 48.8575346 2.3847601, 48.8580303 2.3809765, 48.8581695 2.3807581, 48.8583918 2.3804386, 48.8608624 2.3805635, 48.8611746 2.3809999, 48.8452169 2.4120881, 48.8461924 2.4121067, 48.8466376 2.4114577, 48.8473580 2.4106924, 48.8473835 2.4103563, 48.8524722 2.4106454, 48.8526979 2.4111873, 48.8557704 2.4107086, 48.8574629 2.4101809, 48.8581256 2.4099841, 48.8587706 2.4100076, 48.8592004 2.4098008, 48.8608587 2.4094863, 48.8649243 2.4085167, 48.8651848 2.4086243, 48.8669825 2.4087455, 48.8681301 2.4072046, 48.8708037 2.4048775, 48.8748416 2.4030830, 48.8800875 2.3982376, 48.8801636 2.3979290, 48.8822748 2.3961932, 48.8897519 2.3898235, 48.8897859 2.3901176, 48.8900562 2.3906182, 48.8908981 2.3898028, 48.8924246 2.3879304, 48.8928662 2.3878039, 48.8931913 2.3928220, 48.8332843 2.3172595, 48.8257570 2.3480755, 48.8257663 2.3482098, 48.8276817 2.3715635, 48.8277542 2.3314326, 48.8277569 2.3294975, 48.8325094 2.3123346, 48.8338839 2.3082929, 48.8340082 2.3078231, 48.8347282 2.3054035, 48.8361022 2.3004952, 48.8362679 2.2934700, 48.8376932 2.4037117, 48.8397308 2.3978085, 48.8420906 2.3894385, 48.8425267 2.3896625, 48.8445646 2.3180923, 48.8470920 2.3268174, 48.8521103 2.3659956, 48.8555817 2.3636375, 48.8592929 2.3562507, 48.8596838 2.3565776, 48.8618200 2.3569043, 48.8746673 2.3308647, 48.8735099 2.3310689, 48.8323649 2.4042508, 48.8319766 2.3145168, 48.8325060 2.3158066, 48.8334834 2.3173462, 48.8338586 2.3183718, 48.8340668 2.3182365, 48.8341266 2.3177915, 48.8347650 2.3425150, 48.8349068 2.3452703, 48.8350373 2.3453379, 48.8350577 2.3457523, 48.8350801 2.3462140, 48.8361574 2.3222159, 48.8383431 2.2893686, 48.8389031 2.3587665, 48.8392803 2.3599626, 48.8394354 2.3604664, 48.8442862 2.2943443, 48.8444182 2.2937030, 48.8469994 2.2956834, 48.8472148 2.3034083, 48.8527070 2.3336447, 48.8228812 2.3586455, 48.8250947 2.3203976, 48.8266929 2.3240664, 48.8276403 2.3263672, 48.8366568 2.3904615, 48.8377732 2.2978996, 48.8390555 2.3541961, 48.8391729 2.3879459, 48.8393615 2.3547196, 48.8394955 2.3009500, 48.8395273 2.3563297, 48.8403152 2.3627036, 48.8403371 2.3598998, 48.8403767 2.3612985, 48.8421501 2.3099414, 48.8431512 2.3481982, 48.8442099 2.3456920, 48.8451757 2.3455730, 48.8457102 2.3460054, 48.8488355 2.3252187, 48.8506988 2.3354533, 48.8254520 2.3540117, 48.8320288 2.2933775, 48.8330901 2.2875209, 48.8338287 2.2951996, 48.8352845 2.3006101, 48.8353138 2.3004808, 48.8355333 2.3008990, 48.8375206 2.3108341, 48.8377213 2.3092594, 48.8380900 2.3040826, 48.8383431 2.3045795, 48.8384042 2.3046605, 48.8386443 2.3051222, 48.8396738 2.3028038, 48.8403607 2.4028757, 48.8406684 2.3153202, 48.8409914 2.3133930, 48.8414293 2.3136925, 48.8419801 2.3147584, 48.8471459 2.3017502, 48.8529188 2.3087416, 48.8560088 2.3152292, 48.8584188 2.3146004, 48.8664898 2.3645091, 48.8669961 2.3635905, 48.8670152 2.3630804, 48.8670361 2.3631640, 48.8674351 2.3629732, 48.8679849 2.3651178, 48.8686416 2.3633147, 48.8686663 2.3632144, 48.8488706 2.4054308, 48.8489816 2.4056570, 48.8494687 2.4051936, 48.8600707 2.3247081, 48.8297590 2.3779170, 48.8250371 2.3884441, 48.8275044 2.3763133, 48.8295479 2.3793241, 48.8312982 2.3805156, 48.8535184 2.3767685, 48.8567309 2.3731009, 48.8567919 2.3727131, 48.8596630 2.4036667, 48.8597113 2.4032404, 48.8672556 2.3729520, 48.8678310 2.3962785, 48.8712975 2.3932942, 48.8736717 2.3893707, 48.8752326 2.3699504, 48.8785201 2.3757987, 48.8785987 2.3756111, 48.8839930 2.3680663, 48.8841702 2.3653361, 48.8809813 2.3738144, 48.8813033 2.3729918, 48.8330219 2.3641260, 48.8337653 2.3094048, 48.8342723 2.3283804, 48.8354533 2.3258265, 48.8357486 2.3110952, 48.8366678 2.3127785, 48.8368862 2.3126418, 48.8408789 2.3214931, 48.8475924 2.3949477, 48.8480651 2.3944560, 48.8484606 2.3943801, 48.8489226 2.3946004, 48.8530598 2.3535567, 48.8552774 2.3345202, 48.8555651 2.3608523, 48.8570886 2.3297266, 48.8585185 2.3298224, 48.8586963 2.3287531, 48.8761034 2.3355444, 48.8762920 2.3325923, 48.8217293 2.3329753, 48.8342289 2.3218797, 48.8343205 2.2844154, 48.8348748 2.2829273, 48.8355558 2.2807022, 48.8360155 2.2791843, 48.8366129 2.3508583, 48.8372702 2.3535459, 48.8379882 2.3433930, 48.8382061 2.3565243, 48.8385318 2.3366177, 48.8396083 2.3376405, 48.8411746 2.3066119, 48.8412714 2.3397958, 48.8414201 2.3390745, 48.8452811 2.3694044, 48.8246139 2.3297884, 48.8248448 2.3309724, 48.8248677 2.3167742, 48.8249619 2.3287697, 48.8249980 2.3313844, 48.8257400 2.3120275, 48.8259545 2.3126700, 48.8260495 2.3309436, 48.8285948 2.3330627, 48.8290174 2.3328655, 48.8326036 2.3623992, 48.8334174 2.3642162, 48.8359245 2.3856627, 48.8401447 2.3704675, 48.8403742 2.3701490, 48.8409627 2.3362290, 48.8415305 2.3538584, 48.8419422 2.3357262, 48.8430208 2.3525662, 48.8432035 2.3315463, 48.8441253 2.3305131, 48.8452074 2.3522138, 48.8467725 2.3266058, 48.8484788 2.3326047, 48.8493788 2.3389951, 48.8500333 2.3399942, 48.8445302 2.3291617, 48.8496464 2.3378520, 48.8462036 2.2991334, 48.8466880 2.3668924, 48.8504922 2.3892597, 48.8506002 2.3865799, 48.8508572 2.3411144, 48.8515666 2.3400541, 48.8517508 2.3398717, 48.8521001 2.3863956, 48.8528464 2.3842636, 48.8529129 2.3851769, 48.8532221 2.3833883, 48.8545205 2.3824395, 48.8560866 2.3825736, 48.8610854 2.3101169, 48.8742389 2.3553630, 48.8744853 2.3555219, 48.8767135 2.3539984, 48.8767602 2.3536655, 48.8773020 2.3497131, 48.8780538 2.3450154, 48.8222079 2.3512623, 48.8221465 2.3506206, 48.8403122 2.2839206, 48.8421802 2.2856456, 48.8446133 2.2871390, 48.8459908 2.2882261, 48.8465650 2.3875568, 48.8481839 2.2902622, 48.8868930 2.3555588, 48.8332913 2.3012392, 48.8319028 2.3045724, 48.8763704 2.3313223, 48.8813097 2.3805063, 48.8407025 2.2998297, 48.8408105 2.3005583, 48.8428691 2.2953585, 48.8691839 2.3358994, 48.8419850 2.2935384, 48.8420971 2.3007593, 48.8432807 2.3001298, 48.8435688 2.2937775, 48.8452755 2.2974744, 48.8469016 2.2922005, 48.8469813 2.2932207, 48.8470332 2.2925959, 48.8471729 2.2924922, 48.8481405 2.2934613, 48.8488766 2.3550116, 48.8489122 2.3193174, 48.8489272 2.3523931, 48.8491216 2.3136783, 48.8491775 2.3141515, 48.8492908 2.3146445, 48.8493554 2.3527922, 48.8499990 2.3166689, 48.8508919 2.2958074, 48.8511850 2.2966292, 48.8454208 2.2917026, 48.8473674 2.2962615, 48.8475073 2.2831429, 48.8477824 2.2824011, 48.8682969 2.3657074, 48.8685578 2.3665766, 48.8351811 2.4063529, 48.8389376 2.2789040, 48.8416959 2.2795090, 48.8450469 2.2801242, 48.8454304 2.2845227, 48.8459998 2.2813073, 48.8462807 2.2851535, 48.8894150 2.3628554, 48.8850120 2.3563702, 48.8762217 2.3586964, 48.8433449 2.3251164, 48.8550540 2.3941000, 48.8560955 2.3926896, 48.8578050 2.3996283, 48.8582358 2.3823367, 48.8586186 2.3835107, 48.8592411 2.3830225, 48.8601008 2.3822123, 48.8626812 2.3797075, 48.8630453 2.3672473, 48.8633485 2.3671490, 48.8634092 2.3790356, 48.8644595 2.3839203, 48.8648530 2.3666639, 48.8657480 2.3705095, 48.8680948 2.3655417, 48.8682070 2.3654610, 48.8687325 2.3631261, 48.8740998 2.3453668, 48.8903381 2.3486643, 48.8905361 2.3482493, 48.8481499 2.3941327, 48.8277079 2.3495286, 48.8314922 2.3442625, 48.8320979 2.3443846, 48.8367757 2.3452596, 48.8548426 2.3031870, 48.8548827 2.3032421, 48.8567726 2.3001849, 48.8568344 2.3001716, 48.8569127 2.2999765, 48.8577877 2.3006194, 48.8596013 2.3072329, 48.8600760 2.3280535, 48.8612403 2.3243984, 48.8615577 2.3576761, 48.8617439 2.2982592, 48.8626940 2.3099487, 48.8627569 2.3393126, 48.8629258 2.3030795, 48.8629949 2.3080187, 48.8630650 2.3165032, 48.8635613 2.3394544, 48.8265121 2.3465625, 48.8321818 2.3392750, 48.8508705 2.3623119, 48.8512015 2.3822530, 48.8514794 2.3101353, 48.8540997 2.3239460, 48.8541902 2.3194979, 48.8550561 2.3402771, 48.8600928 2.3731117, 48.8535790 2.3638481, 48.8571030 2.3539440, 48.8571580 2.2667766, 48.8573414 2.3540716, 48.8574462 2.3575428, 48.8584854 2.2792832, 48.8597267 2.2821320, 48.8630086 2.3362399, 48.8631579 2.3415886, 48.8632373 2.3412593, 48.8653506 2.3423662, 48.8670831 2.3356438, 48.8682396 2.2933172, 48.8697732 2.2938530, 48.8744871 2.3117910, 48.8747123 2.3133715, 48.8747243 2.3027090, 48.8759626 2.2965087, 48.8308265 2.3530126, 48.8359247 2.2814968, 48.8381961 2.2812162, 48.8466206 2.4134552, 48.8530692 2.4125589, 48.8569190 2.4110486, 48.8647596 2.4089845, 48.8671280 2.4091658, 48.8673068 2.4087318, 48.8678522 2.4092408, 48.8718692 2.4084946, 48.8729156 2.4089018, 48.8730227 2.4088436, 48.8774817 2.4062578, 48.8799062 2.4010873, 48.8808314 2.4005187, 48.8827476 2.3997867, 48.8837604 2.3973570, 48.8853759 2.3967693, 48.8891501 2.3919739, 48.8921011 2.3883839, 48.8939074 2.3869648, 48.8950741 2.3853043, 48.8965893 2.3846935, 48.8974790 2.3852300, 48.8355408 2.3093378, 48.8413240 2.2886217, 48.8592270 2.3236594, 48.8624657 2.3115669, 48.8779515 2.3440896, 48.8380661 2.2876899, 48.8454913 2.3116790, 48.8455110 2.3111536, 48.8669202 2.3834926, 48.8689269 2.3715327, 48.8759321 2.3727655, 48.8984073 2.3709403, 48.8526033 2.3136415, 48.8357816 2.3023056, 48.8363872 2.3030756, 48.8365194 2.3011778, 48.8368720 2.3025022, 48.8369553 2.3024373, 48.8370310 2.3025696, 48.8388883 2.3004061, 48.8489669 2.2876751, 48.8689288 2.3715403, 48.8402950 2.3002166, 48.8404916 2.2780605, 48.8424961 2.3064436, 48.8433477 2.2798969, 48.8440160 2.3238242, 48.8471428 2.2860305, 48.8474003 2.2951465, 48.8480350 2.2869182, 48.8490968 2.2877519, 48.8249781 2.3039567, 48.8257243 2.3052770, 48.8265928 2.3048244, 48.8213106 2.3411460, 48.8239590 2.3308277, 48.8239711 2.3514442, 48.8239998 2.3510117, 48.8241733 2.3533935, 48.8244865 2.3278048, 48.8245804 2.3396886, 48.8246044 2.3382584, 48.8248799 2.3536513, 48.8256032 2.3217938, 48.8260622 2.3105582, 48.8266135 2.3534752, 48.8269262 2.3513163, 48.8281250 2.3216386, 48.8281819 2.3155262, 48.8289185 2.3222763, 48.8296026 2.3178273, 48.8322116 2.2883420, 48.8324706 2.3133021, 48.8329583 2.2774040, 48.8330016 2.2770756, 48.8330898 2.2768283, 48.8331174 2.2765291, 48.8333400 2.3145004, 48.8337099 2.3148700, 48.8337885 2.3608913, 48.8356331 2.4060202, 48.8360628 2.4058718, 48.8367584 2.3566102, 48.8368296 2.3568351, 48.8459364 2.3679712, 48.8488033 2.3687487, 48.8384611 2.3605477, 48.8671353 2.3480000, 48.8938413 2.3472931, 48.8942404 2.3460471, 48.8942255 2.3458385, 48.8466055 2.3466048, 48.8934234 2.3381216, 48.8929811 2.3381482, 48.8839216 2.3271785, 48.8839775 2.3271608, 48.8839670 2.3273081, 48.8841275 2.3270884, 48.8845343 2.3268965, 48.8846683 2.3268418, 48.8855156 2.3264429, 48.8862771 2.3262148, 48.8861526 2.3261584, 48.8865223 2.3259623, 48.8869014 2.3259253, 48.8871792 2.3257982, 48.8875030 2.3256728, 48.8874194 2.3255802, 48.8189427 2.3623110, 48.8193375 2.3442401, 48.8193930 2.3452226, 48.8200280 2.3394747, 48.8202391 2.3395613, 48.8205079 2.3556087, 48.8205508 2.3372668, 48.8205989 2.3495983, 48.8211121 2.3347051, 48.8215967 2.3323735, 48.8292229 2.3255814, 48.8292882 2.2971394, 48.8313803 2.3349575, 48.8316633 2.3221401, 48.8325886 2.3203616, 48.8357379 2.3250590, 48.8369802 2.2739149, 48.8386159 2.3222156, 48.8344865 2.4691570, 48.8357568 2.3008708, 48.8360131 2.3100586, 48.8369650 2.3090961, 48.8375624 2.3080571, 48.8385808 2.3067130, 48.8395895 2.3092578, 48.8714897 2.3427273, 48.8205058 2.3593321, 48.8505602 2.3001391, 48.8427552 2.2924068, 48.8434280 2.2929776, 48.8518541 2.2999378, 48.8526008 2.2998174, 48.8526618 2.2999032, 48.8560465 2.2944608, 48.8561074 2.2945466, 48.8566822 2.2923833, 48.8568355 2.2938443, 48.8582848 2.3558481, 48.8595125 2.3524319, 48.8608732 2.2962429, 48.8610323 2.2965408, 48.8613476 2.2971959, 48.8630993 2.3180109, 48.8348722 2.4086899, 48.8358883 2.4089442, 48.8360619 2.4087881, 48.8425612 2.3139626, 48.8475557 2.4085227, 48.8415102 2.4131166, 48.8416826 2.4130896, 48.8319771 2.3979134, 48.8323454 2.3551969, 48.8974525 2.3959552, 48.8678050 2.3496900, 48.8681841 2.3484645, 48.8682787 2.3487909, 48.8685115 2.3495915, 48.8690548 2.3514051, 48.8293654 2.3598900, 48.8312517 2.3580440, 48.8225167 2.3571540, 48.8897765 2.3719886, 48.8437894 2.2772811, 48.8441585 2.2771994, 48.8485264 2.2810711, 48.8487304 2.2813632, 48.8489564 2.2816880, 48.8512111 2.3987159, 48.8512690 2.4044346, 48.8514506 2.4058799, 48.8514709 2.3995095, 48.8515803 2.4001141, 48.8543196 2.3962849, 48.8568402 2.4046511, 48.8580682 2.3877975, 48.8600706 2.3886064, 48.8604792 2.4008059, 48.8611195 2.3880530, 48.8631905 2.3883955, 48.8650677 2.3956244, 48.8651291 2.3943708, 48.8654133 2.3895489, 48.8660045 2.3873365, 48.8662887 2.3905433, 48.8682334 2.3864308, 48.8686568 2.3866090, 48.8690384 2.3861855, 48.8704416 2.3841005, 48.8704583 2.3841770, 48.8726164 2.3842276, 48.8734281 2.3825503, 48.8735409 2.3833038, 48.8274961 2.3770388, 48.8883372 2.3743635, 48.8966561 2.3798725, 48.8301525 2.3594415, 48.8465069 2.4099879, 48.8757435 2.3262717, 48.8836814 2.3499178, 48.8201088 2.3481923, 48.8201319 2.3478823, 48.8202012 2.3481361, 48.8205445 2.3494030, 48.8233285 2.3741842, 48.8217463 2.3258742, 48.8219887 2.3306289, 48.8349501 2.4072247, 48.8351659 2.4069054, 48.8708394 2.3465254, 48.8736212 2.2769315, 48.8816472 2.3154087, 48.8824542 2.2862966, 48.8837737 2.2909262, 48.8843309 2.2884576, 48.8853037 2.2956381, 48.8892808 2.2928055, 48.8346342 2.3606245, 48.8550678 2.3246859, 48.8843190 2.3697260, 48.8849215 2.3709154, 48.8871420 2.3755550, 48.8488878 2.4063145, 48.8826421 2.3444926, 48.8618141 2.3222918, 48.8649047 2.3105605, 48.8649598 2.3105563, 48.8707207 2.3458677, 48.8710108 2.3455226, 48.8748858 2.3191940, 48.8814710 2.3009002, 48.8836868 2.2986830, 48.8845223 2.3081683, 48.8848975 2.3067652, 48.8871423 2.3009349, 48.8873797 2.3010160, 48.8688331 2.3251265, 48.8871184 2.2983257, 48.8887957 2.2976069, 48.8833935 2.3195861, 48.8845689 2.3194756, 48.8847283 2.3200247, 48.8848321 2.3192257, 48.8854073 2.2987197, 48.8862629 2.3178705, 48.8862908 2.3178312, 48.8874366 2.3136254, 48.8418848 2.2853423, 48.8507831 2.3944957, 48.8518835 2.3934531, 48.8520017 2.3935558, 48.8523499 2.3931181, 48.8617792 2.3745107, 48.8622369 2.3739210, 48.8623819 2.3639950, 48.8740920 2.3388296, 48.8754273 2.3247309, 48.8394875 2.2840062, 48.8397475 2.2846463, 48.8427503 2.2863046, 48.8468131 2.2904315, 48.8500437 2.3954755, 48.8391079 2.3390778, 48.8422773 2.3762540, 48.8391187 2.4008037, 48.8397181 2.4041355, 48.8423773 2.3977129, 48.8432024 2.3913685, 48.8449650 2.3837024, 48.8526582 2.2904698, 48.8577122 2.2791705, 48.8581675 2.2754001, 48.8516727 2.3995074, 48.8317848 2.3580564, 48.8331084 2.3230703, 48.8629913 2.4001471, 48.8332462 2.4027150, 48.8422716 2.3666416, 48.8425115 2.3664241, 48.8425602 2.3663854, 48.8432847 2.3745921, 48.8611021 2.3537247, 48.8459524 2.3314941, 48.8467856 2.2815796, 48.8473038 2.3299657, 48.8822077 2.3636469, 48.8822937 2.3628730, 48.8826834 2.3615248, 48.8842662 2.3384857, 48.8843570 2.3383511, 48.8843580 2.3554674, 48.8855628 2.3868905, 48.8973410 2.3866230, 48.8480167 2.2901082, 48.8654197 2.3615883, 48.8659969 2.3276111, 48.8453920 2.3132117, 48.8602828 2.3469501, 48.8771319 2.3510066, 48.8431362 2.3363642, 48.8778732 2.3448763 +89 +49.4296874 8.6826637, 49.4279757 8.6835849, 49.4147764 8.6710359, 49.4278053 8.7495282, 49.4178891 8.7605933, 49.4075919 8.6845735, 49.4092177 8.6922359, 49.4084542 8.6927289, 49.4078943 8.6929172, 49.4083041 8.6927592, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4158218 8.6922416, 49.4072954 8.6910173, 49.4082595 8.6914326, 49.4082829 8.6916558, 49.4076226 8.6923209, 49.4103158 8.6974936, 49.4165191 8.6921856, 49.4120923 8.7117858, 49.4151725 8.6902594, 49.4071068 8.6898761, 49.4172306 8.6824331, 49.4108200 8.6918918, 49.4227158 8.6483350, 49.4160126 8.6922256, 49.4278746 8.6871277, 49.4277708 8.6843289, 49.4077632 8.6922107, 49.4101101 8.6935285, 49.4080641 8.6904292, 49.4168755 8.6790034, 49.4283321 8.6836841, 49.4228152 8.6504004, 49.4082494 8.6913249, 49.4278253 8.6839436, 49.4278064 8.7495089 +55.9606990 -3.2496993, 55.9400545 -3.1930414, 55.9494596 -3.1096499, 55.9138280 -3.1645331, 55.9376548 -3.1781132, 55.9403771 -3.4162904, 55.9195401 -3.1576764, 55.9259844 -3.2829976, 55.9351037 -3.2894757, 55.9502710 -3.2958592, 55.9732511 -3.1566940 +55.9840691 -3.2228676 +62 +yes and 49.3716107 8.7013677 +37.7500651 -122.4340964, 37.7494950 -122.4338475, 37.7481784 -122.4318047, 37.7482870 -122.4317704, 37.7879001 -122.4032530, 37.7879882 -122.4037767, 37.7876404 -122.4065068, 37.7873775 -122.4085239, 37.7869825 -122.4117339, 37.7868400 -122.4132360, 37.7867454 -122.4133988, 37.7865280 -122.4151500, 37.7863839 -122.4147044, 37.8074857 -122.4122331, 37.8065738 -122.4141681, 37.7858381 -122.4208295, 37.7860823 -122.4213101, 37.7858443 -122.4215600, 37.8058156 -122.4201928, 37.8061825 -122.4173877, 37.8050741 -122.4248113, 37.8049424 -122.4251017, 37.8047238 -122.4253684, 37.8049272 -122.4254027, 37.8053138 -122.4240294, 37.8024234 -122.4249055, 37.8002533 -122.4244764, 37.7986934 -122.4241845, 37.7964948 -122.4237345, 37.7949360 -122.4234292, 37.7914294 -122.4227083, 37.7873203 -122.4218983, 37.7872205 -122.4163915, 37.7873494 -122.4149152, 37.7874377 -122.4147865, 37.7878071 -122.4133072, 37.7876377 -122.4131357, 37.7878614 -122.4114361, 37.7883158 -122.4080030, 37.7885668 -122.4059259, 37.7894553 -122.4072305, 37.7892383 -122.4089471, 37.7890348 -122.4105779, 37.7888245 -122.4122344, 37.7887296 -122.4136334, 37.7886349 -122.4137618, 37.7882480 -122.4150753, 37.7884387 -122.4153902, 37.7882006 -122.4170495, 37.7936864 -122.4231765, 37.7895224 -122.4223268, 37.8077705 -122.4105938, 37.7858278 -122.4058393, 37.7866147 -122.4049381, 37.7864654 -122.4047321, 37.7874083 -122.4036077, 37.7879204 -122.4029268, 37.7885919 -122.4024548, 37.7884698 -122.4023003, 37.7894632 -122.4012427, 37.7904738 -122.3996977, 37.7909147 -122.3992085, 37.7912199 -122.3990282, 37.7915447 -122.3981096, 37.7919524 -122.3981442, 37.7926895 -122.3975313, 37.7925538 -122.3970849, 37.7942766 -122.3948018, 37.7920324 -122.3977043, 37.7944131 -122.3950607, 37.8075184 -122.4123666, 37.8065215 -122.4134910, 37.8059994 -122.4172590, 37.8056529 -122.4205190, 37.8054155 -122.4221927, 37.8052527 -122.4234200, 37.8051442 -122.4236947, 37.8044396 -122.4250053, 37.8025001 -122.4246362, 37.8006419 -122.4242586, 37.7984038 -122.4237608, 37.7960775 -122.4233316, 37.7940496 -122.4227651, 37.7942082 -122.4229370, 37.7923946 -122.4225591, 37.7913958 -122.4222349, 37.8056122 -122.4218837, 37.7992825 -122.4189061, 37.7991130 -122.4192065, 37.7955320 -122.4181508, 37.7945850 -122.4183350, 37.7946664 -122.4163695, 37.7938050 -122.4096919, 37.7930318 -122.4092112, 37.7853492 -122.4055185, 37.7843469 -122.4045150, 37.7846454 -122.4039142, 37.7847539 -122.4037597, 37.7842316 -122.4041030, 37.7835261 -122.4025151, 37.7829902 -122.4025495, 37.7821627 -122.4008414, 37.7818193 -122.4010039, 37.7806363 -122.3999660, 37.7784384 -122.3966529, 37.7781331 -122.3964297, 37.7771698 -122.3952195, 37.7769255 -122.3950736, 37.7772943 -122.3949229, 37.7772672 -122.3946225, 37.7777963 -122.3939702, 37.7768533 -122.3945023, 37.7755323 -122.3971419, 37.7764838 -122.3985209, 37.7761242 -122.4022631, 37.7779104 -122.4000014, 37.7793078 -122.4020012, 37.7789483 -122.4020957, 37.7771439 -122.4044132, 37.7757191 -122.4064044, 37.7754274 -122.4065417, 37.7739280 -122.4084815, 37.7724490 -122.4103612, 37.7708168 -122.4125663, 37.7703632 -122.4123180, 37.7716591 -122.4138973, 37.7719508 -122.4138029, 37.7721001 -122.4141720, 37.7729006 -122.4154423, 37.7733145 -122.4156912, 37.7741303 -122.4169989, 37.7741981 -122.4173765, 37.7752700 -122.4184494, 37.7754464 -122.4183893, 37.7757381 -122.4191960, 37.7754939 -122.4189385, 37.7736011 -122.4186209, 37.7782225 -122.4194551, 37.7786688 -122.4197882, 37.7798628 -122.4200286, 37.7799849 -122.4198998, 37.7821995 -122.4204866, 37.7828778 -122.4204179, 37.7830062 -122.4205011, 37.7830848 -122.4206947, 37.7849708 -122.4210499, 37.7889845 -122.4026340, 37.7901947 -122.4014023, 37.7896588 -122.4037282, 37.7897402 -122.4049985, 37.7863305 -122.4167890, 37.7861298 -122.4184176, 37.7855735 -122.4228551, 37.7854718 -122.4252669, 37.7851733 -122.4278504, 37.7847663 -122.4281594, 37.7843186 -122.4315412, 37.7848206 -122.4309318, 37.7844196 -122.4328463, 37.7843178 -122.4330266, 37.7845281 -122.4332841, 37.7840872 -122.4333871, 37.7835504 -122.4375282, 37.7839167 -122.4376655, 37.7834826 -122.4392963, 37.7836386 -122.4394164, 37.7831231 -122.4396482, 37.7829535 -122.4395280, 37.7828042 -122.4423433, 37.7829874 -122.4431329, 37.7827913 -122.4458030, 37.7827599 -122.4459811, 37.7823299 -122.4459653, 37.7825329 -122.4467635, 37.7820784 -122.4472957, 37.7820558 -122.4476543, 37.7821802 -122.4476390, 37.7820053 -122.4498532, 37.7822868 -122.4499499, 37.7818988 -122.4530106, 37.7815563 -122.4534053, 37.7798354 -122.4931351, 37.7799168 -122.4934183, 37.7794962 -122.4932037, 37.7794826 -122.4933926, 37.7798191 -122.4936557, 37.7795573 -122.4935814, 37.7799507 -122.4932381, 37.7796794 -122.4963537, 37.7794148 -122.4967056, 37.7792724 -122.4998814, 37.7796794 -122.5028254, 37.7791570 -122.5025164, 37.7798610 -122.5049869, 37.7797389 -122.5052873, 37.7800577 -122.5076563, 37.7798949 -122.5074503, 37.7799221 -122.5099050, 37.7797796 -122.5096304, 37.7791216 -122.5094930, 37.7756617 -122.5003177, 37.7754785 -122.5007383, 37.7754989 -122.5035793, 37.7753293 -122.5039398, 37.7751597 -122.5057852, 37.7750986 -122.5059311, 37.7891981 -122.4152653, 37.7893134 -122.4150078, 37.7910097 -122.4156423, 37.7922029 -122.4157974, 37.7924132 -122.4141495, 37.7927048 -122.4118492, 37.7934544 -122.4078526, 37.7932474 -122.4075663, 37.7934120 -122.4063181, 37.7936086 -122.4047989, 37.7938053 -122.4031510, 37.8070654 -122.4103449, 37.8068551 -122.4106453, 37.8066448 -122.4120271, 37.8065364 -122.4122160, 37.8050377 -122.4118813, 37.8047668 -122.4116465, 37.8027867 -122.4114233, 37.8006774 -122.4105478, 37.8004101 -122.4099889, 37.8002162 -122.4105649, 37.8004332 -122.4105306, 37.7991379 -122.4088569, 37.7992532 -122.4090286, 37.7991922 -122.4087624, 37.7993480 -122.4086509, 37.7971439 -122.4085909, 37.7967709 -122.4082646, 37.7962894 -122.4082732, 37.7953670 -122.4082476, 37.7937799 -122.4077582, 37.8063855 -122.4232325, 37.8036726 -122.4232484, 37.8035574 -122.4233771, 37.8016788 -122.4230252, 37.8014415 -122.4228020, 37.7989229 -122.4224728, 37.7987940 -122.4226445, 37.7986719 -122.4225157, 37.7990178 -122.4223012, 37.7977224 -122.4220351, 37.7970239 -122.4220608, 37.7962210 -122.4217512, 37.7957734 -122.4218285, 37.7952240 -122.4215366, 37.7951087 -122.4214336, 37.7949934 -122.4212963, 37.7942338 -122.4212620, 37.7934741 -122.4211933, 37.7931961 -122.4213478, 37.7923618 -122.4206697, 37.7919217 -122.4210500, 37.7915343 -122.4211418, 37.7908357 -122.4206440, 37.7907543 -122.4207813, 37.7894452 -122.4205410, 37.7895062 -122.4203951, 37.7877969 -122.4203780, 37.7878987 -122.4202148, 37.7879258 -122.4200518, 37.7865827 -122.4199745, 37.7867116 -122.4198114, 37.7868068 -122.4194985, 37.7850972 -122.4196741, 37.8073496 -122.4079591, 37.8072682 -122.4075728, 37.8022905 -122.4029208, 37.8014157 -122.4027320, 37.7996185 -122.4023972, 37.7977263 -122.4020024, 37.7947114 -122.4015355, 37.7951558 -122.4014788, 37.7946810 -122.4013501, 37.7926335 -122.3958328, 37.7943350 -122.3945488, 37.7932952 -122.3934198, 37.7924067 -122.3943554, 37.7919997 -122.3948618, 37.7910162 -122.3961063, 37.7901209 -122.3969646, 37.7899445 -122.3975054, 37.7878245 -122.4001786, 37.7878381 -122.3998524, 37.7864031 -122.4017275, 37.7861318 -122.4023197, 37.7829558 -122.4066225, 37.7827998 -122.4067084, 37.7825217 -122.4068886, 37.7825488 -122.4065625, 37.7823996 -122.4070345, 37.7811378 -122.4083649, 37.7808122 -122.4090258, 37.7793876 -122.4105793, 37.7790281 -122.4113003, 37.7775322 -122.4128952, 37.7771862 -122.4129896, 37.7773219 -122.4134703, 37.7764060 -122.4143114, 37.7761075 -122.4150066, 37.7727900 -122.4191952, 37.7731428 -122.4182596, 37.7703747 -122.4197788, 37.7707614 -122.4203453, 37.7680204 -122.4200621, 37.7670705 -122.4197531, 37.7663920 -122.4198732, 37.7653010 -122.4195354, 37.7651503 -122.4193840, 37.7649400 -122.4199505, 37.7648246 -122.4197531, 37.7618662 -122.4197445, 37.7620562 -122.4192896, 37.7616287 -122.4194612, 37.7605363 -122.4191351, 37.7600545 -122.4193153, 37.7584056 -122.4191522, 37.7589009 -122.4189892, 37.7573130 -122.4188433, 37.7568991 -122.4189892, 37.7557658 -122.4186802, 37.7551890 -122.4188518, 37.7541440 -122.4185343, 37.7535875 -122.4186630, 37.7524610 -122.4183540, 37.7523117 -122.4181566, 37.7521692 -122.4186716, 37.7520334 -122.4185343, 37.7494003 -122.4180794, 37.7490202 -122.4178648, 37.7488845 -122.4182253, 37.7482533 -122.4186802, 37.7468756 -122.4191608, 37.7469774 -122.4188862, 37.7452468 -122.4202165, 37.7702405 -122.4456788, 37.7815477 -122.4557681, 37.7812324 -122.4564824, 37.7814265 -122.4586356, 37.7811374 -122.4585605, 37.7810466 -122.4587536, 37.7815096 -122.4590144, 37.7813234 -122.4609038, 37.7810177 -122.4612687, 37.7811823 -122.4641071, 37.7807956 -122.4641973, 37.7807845 -122.4643617, 37.7808764 -122.4644255, 37.7807541 -122.4671566, 37.7809983 -122.4678003, 37.7808931 -122.4704703, 37.7805778 -122.4708931, 37.7810594 -122.4721634, 37.7803132 -122.4724209, 37.7804958 -122.4725340, 37.7807715 -122.4726936, 37.7806388 -122.4759657, 37.7803132 -122.4764378, 37.7804922 -122.4791912, 37.7801791 -122.4795855, 37.7800298 -122.4827784, 37.7798738 -122.4845980, 37.7803080 -122.4848555, 37.7802469 -122.4845465, 37.7799349 -122.4849328, 37.7801045 -122.4877394, 37.7797924 -122.4881085, 37.7800027 -122.4899024, 37.7796974 -122.4902800, 37.7795957 -122.4919966, 37.7799552 -122.4923228, 37.7850328 -122.4240337, 37.7846530 -122.4214931, 37.7845512 -122.4213300, 37.7850919 -122.4181325, 37.7850396 -122.4177938, 37.7853788 -122.4158712, 37.7854466 -122.4144979, 37.7855823 -122.4142146, 37.7858650 -122.4121391, 37.7860368 -122.4097600, 37.7863556 -122.4081893, 37.7866812 -122.4056144, 37.7870169 -122.4179793, 37.7866235 -122.4210522, 37.7861695 -122.4245155, 37.7859114 -122.4264595, 37.7857487 -122.4278070, 37.7867524 -122.4285794, 37.7866167 -122.4285538, 37.7864675 -122.4297640, 37.7865965 -122.4297039, 37.7861826 -122.4330771, 37.7860469 -122.4330340, 37.7859385 -122.4331370, 37.7858910 -122.4333344, 37.7859723 -122.4346907, 37.7857893 -122.4350941, 37.7855452 -122.4380551, 37.7853687 -122.4384070, 37.7852332 -122.4395228, 37.7852534 -122.4393683, 37.7853485 -122.4396517, 37.7854773 -122.4398147, 37.7850228 -122.4399262, 37.7849142 -122.4430247, 37.7847380 -122.4433766, 37.7844192 -122.4458487, 37.7841884 -122.4463035, 37.7846498 -122.4461747, 37.7864066 -122.4400121, 37.7826267 -122.4209352, 37.7821927 -122.4192077, 37.7831831 -122.4189845, 37.7830542 -122.4189502, 37.7833323 -122.4177486, 37.7831356 -122.4174224, 37.7832848 -122.4172336, 37.7834951 -122.4156457, 37.7837190 -122.4139463, 37.7839225 -122.4123155, 37.7333439 -122.4341146, 37.7336018 -122.4339773, 37.7333778 -122.4337627, 37.7306904 -122.4313129, 37.7285513 -122.4313423, 37.7286056 -122.4315569, 37.7287414 -122.4310075, 37.7285928 -122.4310211, 37.7164063 -122.4407726, 37.7162841 -122.4412790, 37.7147304 -122.4426465, 37.7296110 -122.4331926, 37.7261179 -122.4335362, 37.7725629 -122.4271208, 37.7724886 -122.4271971, 37.7727613 -122.4255587, 37.7728240 -122.4254941, 37.7750096 -122.4193518, 37.7752830 -122.4191695, 37.7237397 -122.4527763, 37.8026615 -122.4058342, 37.7602500 -122.4381220, 37.8000731 -122.4427175, 37.8000773 -122.4429777, 37.8002766 -122.4410592, 37.8001123 -122.4413201, 37.7998569 -122.4443992, 37.7991938 -122.4517479, 37.7982490 -122.4474040, 37.7938960 -122.3962630, 37.7350442 -122.4750296, 37.7348192 -122.4745190, 37.7348959 -122.4718603, 37.7826712 -122.4715165, 37.7900779 -122.3973324, 37.8063946 -122.4755980, 37.8066743 -122.4754598, 37.8073122 -122.4750992, 37.8077451 -122.4747013, 37.7985742 -122.4470382, 37.8003316 -122.4468364, 37.8015284 -122.4299080, 37.7698835 -122.4483879, 37.7696842 -122.4487848, 37.7734369 -122.4495198, 37.7736095 -122.4491588, 37.7759209 -122.4462621, 37.7754086 -122.4499596, 37.7753704 -122.4494447, 37.7750352 -122.4531023, 37.7749600 -122.4525772, 37.7744927 -122.4582852, 37.7742595 -122.4580599, 37.7743273 -122.4587090, 37.7752263 -122.4651517, 37.7770368 -122.4639232, 37.8051033 -122.4322388, 37.8070241 -122.4071695, 37.7268052 -122.4756978, 37.7270758 -122.4757595, 37.7273213 -122.4751556, 37.7767196 -122.4262286, 37.7877082 -122.4066920, 37.7877749 -122.4435048, 37.7875969 -122.4435646, 37.7853936 -122.4093312, 37.7621911 -122.4352428, 37.7623119 -122.4350524, 37.7624107 -122.4359472, 37.7623663 -122.4355805, 37.7624148 -122.4374826, 37.7628952 -122.4350231, 37.7638864 -122.4332716, 37.7639457 -122.4336524, 37.7677871 -122.4291506, 37.7676579 -122.4291238, 37.7672427 -122.4291913, 37.7678942 -122.4291010, 37.7672911 -122.4288313, 37.7678572 -122.4287240, 37.7882810 -122.4034650, 37.7920316 -122.4158514, 37.7890998 -122.4166329, 37.7929197 -122.4160112, 37.7956283 -122.4167948, 37.7623781 -122.3973643, 37.7659491 -122.4499203, 37.7777491 -122.4166993, 37.7784932 -122.4145772, 37.7996086 -122.4360904, 37.7997022 -122.4362285, 37.7995695 -122.4391803, 37.8004874 -122.4475303, 37.7990605 -122.4430620, 37.7999719 -122.4359078, 37.7988819 -122.4428431, 37.8006033 -122.4309704, 37.7993017 -122.4395074, 37.7920664 -122.4230774, 37.7939521 -122.4233809, 37.7984888 -122.4242871, 37.7228751 -122.4492993, 37.7843417 -122.4083799, 37.7732193 -122.5094719, 37.7730526 -122.5100823, 37.7713376 -122.5094780, 37.7730623 -122.5099524, 37.7736359 -122.5098469, 37.7510820 -122.4365124, 37.7902660 -122.4225849, 37.7809200 -122.4207186, 37.7734715 -122.4716467, 37.7732222 -122.4720004, 37.7767410 -122.4722999, 37.7845288 -122.4729578, 37.7730544 -122.4719870, 37.7769513 -122.4723886, 37.7765902 -122.4721548, 37.7843461 -122.4727748, 37.7733124 -122.4719545, 37.7824738 -122.4731577, 37.7772126 -122.4718860, 37.7846952 -122.4724611, 37.7842309 -122.4726881, 37.7653711 -122.4768439, 37.7637253 -122.4773406, 37.7651265 -122.4774410, 37.7651763 -122.4771473, 37.7655195 -122.4775619, 37.7981369 -122.4040437, 37.7984038 -122.4019150, 37.7864698 -122.3980058, 37.7898678 -122.4007776, 37.7846489 -122.4070405, 37.7841266 -122.4084047, 37.7559775 -122.4764013, 37.7601283 -122.4767065, 37.7483732 -122.4761739, 37.7599874 -122.4769846, 37.7526487 -122.4761825, 37.7487336 -122.4758329, 37.7562359 -122.4767119, 37.7503718 -122.4760331, 37.7451990 -122.4756672, 37.7464646 -122.4760287, 37.7540793 -122.4765228, 37.7502718 -122.4762798, 37.7485093 -122.4758701, 37.7485547 -122.4762718, 37.7521106 -122.4764229, 37.7577989 -122.4768064, 37.7450879 -122.4759346, 37.7466328 -122.4757654, 37.7578031 -122.4765444, 37.7540943 -122.4762690, 37.7373068 -122.4751533, 37.7271849 -122.4746491, 37.7413368 -122.4756969, 37.7414759 -122.4754270, 37.7391897 -122.4752419, 37.7309279 -122.4747158, 37.7433289 -122.4758221, 37.7263033 -122.4752117, 37.7433139 -122.4754986, 37.7391607 -122.4755616, 37.7376007 -122.4754212, 37.7311504 -122.4746276, 37.7310304 -122.4745228, 37.7312595 -122.4750192, 37.7216548 -122.4754813, 37.7173134 -122.4730047, 37.7645489 -122.4431699, 37.7774736 -122.4588050, 37.7769033 -122.4586521, 37.7771471 -122.4583141, 37.7693989 -122.4293944, 37.7934341 -122.3952982, 37.7860637 -122.4568864, 37.7875574 -122.4467799, 37.7875773 -122.4469696, 37.7865288 -122.4532785, 37.7879454 -122.4407257, 37.7862633 -122.4553541, 37.7863128 -122.4536142, 37.7846320 -122.4644747, 37.7869618 -122.4499244, 37.7871212 -122.4472522, 37.7856633 -122.4588196, 37.7881142 -122.4408796, 37.7508325 -122.4439701, 37.7511656 -122.4385830, 37.7471736 -122.4441832, 37.7704174 -122.4452853, 37.7741217 -122.4463069, 37.7757135 -122.4466914, 37.7669041 -122.4479460, 37.7700367 -122.4454051, 37.7673187 -122.4464799, 37.7739565 -122.4465032, 37.7702021 -122.4449433, 37.7788494 -122.4469825, 37.7672489 -122.4466451, 37.7718076 -122.4457938, 37.7719176 -122.4456066, 37.7756581 -122.4463390, 37.7785087 -122.4472714, 37.7671329 -122.4465199, 37.7786914 -122.4474453, 37.7774219 -122.4469247, 37.7670424 -122.4462687, 37.7670868 -122.4479048, 37.7739120 -122.4458712, 37.7675684 -122.4448406, 37.7787954 -122.4472048, 37.7673422 -122.4448799, 37.7146481 -122.4719381, 37.7244830 -122.4024083, 37.7169648 -122.3891600, 37.8014600 -122.4315507, 37.8015624 -122.4313898, 37.7352745 -122.5045674, 37.7351796 -122.5004996, 37.7352755 -122.5026037, 37.7098977 -122.3930198, 37.7167597 -122.4413933, 37.7165622 -122.4408255, 37.7324082 -122.4059021, 37.7293737 -122.4150047, 37.7692570 -122.4291174, 37.7291475 -122.4193716, 37.7339634 -122.3907499, 37.7343056 -122.3907340, 37.7900667 -122.3942010, 37.7904673 -122.3932275, 37.7885774 -122.3909566, 37.7899382 -122.3923940, 37.7892706 -122.3935798, 37.7485022 -122.4589160, 37.7467379 -122.4583284, 37.7689281 -122.4356947, 37.7721358 -122.4307953, 37.7720055 -122.4303556, 37.7722134 -122.4305711, 37.7720894 -122.4301052, 37.7920140 -122.4815698, 37.7378001 -122.4514647, 37.7377651 -122.4517551, 37.7716459 -122.5036197, 37.7535905 -122.4954095, 37.7532925 -122.4955658, 37.7607702 -122.4960244, 37.7844955 -122.3952726, 37.7628573 -122.3908626, 37.7877434 -122.4216333, 37.7587055 -122.4631292, 37.7585995 -122.4640519, 37.7584595 -122.4639124, 37.7582899 -122.4638427, 37.7605076 -122.4406247, 8.5077722 125.9789017, 37.7240697 -122.4522341, 37.7259918 -122.4522582, 37.7240485 -122.4524859, 37.7254488 -122.4525023, 37.7208496 -122.4474323, 37.7211045 -122.4473020, 37.7345842 -122.4719275, 37.7675843 -122.4355739, 37.7730240 -122.4528432, 37.7732066 -122.4524004, 37.8056765 -122.4371753, 37.7791532 -122.5129411, 37.7653828 -122.4156514, 37.7655458 -122.4128777, 37.7758058 -122.4971516, 37.7770300 -122.4640939, 37.7771635 -122.4636541, 37.7773038 -122.4642640, 37.7811799 -122.4122670, 37.7901405 -122.3932844, 37.7897441 -122.3935526, 37.7900769 -122.3938342, 37.7900303 -122.3929249, 37.7898479 -122.3929436, 37.7900153 -122.3936678, 37.7902698 -122.3932093, 37.7897844 -122.3938369, 37.7896339 -122.3928472, 37.7895788 -122.3933326, 37.7902549 -122.3935874, 37.7896742 -122.3936921, 37.7899687 -122.3930777, 37.7898459 -122.3936974, 37.7901977 -122.3934346, 37.7895215 -122.3929732, 37.7645161 -122.4327886, 37.7774211 -122.4160269, 37.7646988 -122.4244233, 37.7517598 -122.4254173, 37.7518770 -122.4255434, 37.7518932 -122.4231645, 37.7520190 -122.4226923, 37.7520780 -122.4202115, 37.7521821 -122.4204097, 37.7846325 -122.4668493, 37.7848927 -122.4647404, 37.7847936 -122.4669432, 37.7848461 -122.4651260, 37.7850597 -122.4648309, 37.7687493 -122.4030378, 37.7661987 -122.4028340, 37.7698985 -122.4034375, 37.7664574 -122.4026543, 37.7674763 -122.4028943, 37.7685627 -122.4028608, 37.7672368 -122.4026933, 37.7697585 -122.4032336, 37.7933155 -122.4011185, 37.7940361 -122.4014297, 37.7948174 -122.4012457, 37.7937309 -122.4011453, 37.7941718 -122.4012902, 37.7953841 -122.3969718, 37.7945999 -122.4030014, 37.7951679 -122.3989406, 37.7946423 -122.4047127, 37.7943922 -122.4045947, 37.7945109 -122.3977014, 37.7957783 -122.4035808, 37.7932052 -122.4012151, 37.7941845 -122.4002602, 37.7409957 -122.4661951, 37.7412300 -122.4662434, 37.7420207 -122.4942784, 37.7423984 -122.4946065, 37.7481450 -122.4139340, 37.7485740 -122.4136090, 37.7483690 -122.4140740, 37.7470478 -122.4135113, 37.8015930 -122.4295070, 37.7693241 -122.4529187, 37.7691502 -122.4531333, 37.7779590 -122.4382840, 37.7486563 -122.4707231, 37.7779013 -122.4381208, 37.7488826 -122.4686623, 37.7490207 -122.4684000, 37.7764755 -122.4261860, 37.7624054 -122.4149348, 37.7985693 -122.4243300, 37.7452070 -122.4133817, 37.7988554 -122.4523659, 8.5070910 125.9786762, 37.7229652 -122.4525001, 37.7237354 -122.4562527, 37.7479625 -122.4589779, 37.7316164 -122.4533024, 37.7236887 -122.4560891, 37.7585862 -122.4660394, 37.7583654 -122.4701243, 37.7340666 -122.4990233, 37.7339718 -122.4968714, 37.7368504 -122.4537673, 37.7729932 -122.4769430, 37.7728380 -122.4764588, 37.7748147 -122.4548948, 37.7767640 -122.4757735, 37.7766315 -122.4760914, 37.7655815 -122.4152362, 37.7650043 -122.4193576, 37.7652037 -122.4161172, 37.7618958 -122.4151034, 37.7650786 -122.4153876, 37.7337604 -122.4934171, 37.7339214 -122.4896757, 37.7338345 -122.4917168, 37.7869084 -122.4565151, 37.7529699 -122.4341555, 37.7316291 -122.4513250, 37.7299803 -122.4512285, 37.7314275 -122.4532403, 37.8082789 -122.4141009, 37.7693980 -122.4521124, 37.7734254 -122.4663049, 37.8005296 -122.4475648, 37.7997086 -122.4362667, 37.8008427 -122.4276089, 37.7881551 -122.4090877, 37.7904499 -122.4055375, 37.7927644 -122.3927085, 37.8084123 -122.4100480, 37.8071167 -122.4156479, 37.8004525 -122.4105821, 37.7950657 -122.3999088, 37.7874729 -122.4078678, 37.7857365 -122.4096385, 37.7800009 -122.4167733, 37.7761697 -122.4215410, 37.7745791 -122.4341180, 37.7936998 -122.4213961, 37.7707344 -122.4660864, 37.8020728 -122.4125753, 37.7902111 -122.4076489, 37.7899758 -122.4071611, 21.4076261 -77.8795289, 37.7763563 -122.3958020, 37.7844521 -122.4711623, 37.7846142 -122.4708404, 37.7818385 -122.4923290, 37.7834186 -122.4924440, 37.7836006 -122.4901440, 37.7836650 -122.4884266, 37.7839554 -122.4820021, 37.7837954 -122.4853763, 37.7840959 -122.4787941, 37.7929233 -122.4178901, 37.7814696 -122.4933616, 37.7834210 -122.4925857, 37.7837098 -122.4905627, 37.7838163 -122.4880702, 37.7839687 -122.4848702, 37.7841139 -122.4816301, 37.7818213 -122.4924756, 37.7815116 -122.4935222, 37.7716631 -122.4016977, 37.7980264 -122.4502029 +P8 Kongresshaus +Boucherie Louis Blanc, El Ksour, L'Étoile de Djurjura, Lecaille, Boucherie de Saint-Ouen, Boucherie chevaline, Boucherie du marais, Gilles Vérot, Boucherie Frank Lecoeur, Boucherie Saint-Martin, Boucherie de Chaillot, Boucherie de l'Église, charcuterie, Boucherie Duret, À la Bonne Viande, Mr et Mme Duciel, J. Maillet, Maxi Viande, Boucherie Aamar Hadad, Boucherie de l'Avenir, Boucherie du Rendez-vous, Boucherie de la Tour, P. Dupont, Boucherie des 3 Portes, Boucherie de la Porte d'Orléans, Boucheries Bernard, Boucherie Pinon, Charcuterie de Montmartre, Boucherie moderne, boucherie Toualbi, Le roi du saucisson, Boucherie Taine, Boucherie Kacher, Boucherie Atlas, Boucherie du Square - Le Bourdais, boucherie hallal, Boucherie Ducoeur, Boucherie de la place, Boucherie Bourdin, Boucherie de l'Europe, Boucherie S. Lefeuvre, LEAUTEY Traiteur, Le Comptoir de Chalosse, Boucherie Menguellet, M. & N. Petitot, Boucherie Chayma, Boucherie Laurent Dumont, Boucherie Thiebot, unknown, Boucherie maison Desfresnes, Saing Heng, Boucherie Tadfousse, Boucherie Anezi, Boucherie Koskas, Boucherie de la Passerelle, Charcuterie Pellé, Artisan Boucher Claude Doguet, Charcuterie traiteur et cuisine asiatique, Boucherie Économique, Boucherie Jourdan, Boucherie Donné, Boucherie Atlas, Marguerite, Boucherie Ibrahim, Boucherie du Père Corentin, Boucherie du rond point, Boucherie Saint-Charles, Boucherie Riquet, Boucherie Petard, Chez Laurent, Charcuterie, Charcuterie Champerret 03, Boucherie Manu, Boucherie Marx Dormoy, Boucherie des Fins Gourmets, Charcuterie du Panthéon, Boucherie Pilote, Terroir d'Auvergne, Foie Gras Luxe, Boucherie Lulu, Boucherie Brancion, Éric Nivot, Boucherie de Charonne, Milo, Boucherie Jacky Lesourd, Mas, Produits Basques, Charcuterie du Parc Montsouris, Boucherie du Marché, Traiteur chez Catherine, Charcutier - Traiteur, Charcutier - Traiteur, A. Becquerel, Boucherie des gourmets, Boucherie du Limousin, Les Provinces, Roger Biliebault, Au Bouvier Normand, Christophe M, Boucherie Laurent Vincent, Boucherie J. Bellenfant, Boucherie Saint-Médard, B. Leduc, Boucherie Brancion, Boucherie Malitourne, Délices Viandes, Boucherie musulmane, Boucherie Chevy, Boucherie Brossard, Boucherie de l'Etoile, Boucherie Picard, Boucherie Leclerc Carboell, Boucherie Cambronne, Boucherie Durand, Andre Krief, Boucherie de la Place Monge, Boucherie de la Place Monge, Leban Jacques, Boucherie Pinel, Aux Viandes, Kosher Discount, L. Langlais, Boucherie Sodivillette, Boucherie Mezouari, Boucherie La Celloise, Boucherie bellevilloise, Provins, Boucherie des Buttes, Boucherie Caidi, Boucherie Hour Heng, Patrick Juignet, Sylvie & Olivier Donné, Kasap, La boucherie, SH, Boucherie Gouraya, Mon petit poulet, Pétard, Boucherie des écoles, Boucherie nouvelle des Pyrénées, Boucherie Limousine, Mr & Mme Fontaine, Rôtisserie Dufrenoy +38, 1008, 38, 1008 +7 +48.8327214 2.2760964, 48.8603916 2.3509546, 48.8968959 2.3816601, 48.8971573 2.3816889, 48.8944359 2.3921105, 48.8963293 2.3809167, 48.8964706 2.3824606, 48.8803216 2.3555510, 48.8804209 2.3551550, 48.8420645 2.3669152, 48.8700092 2.3544453, 48.8704779 2.3594577, 48.8708352 2.3536253, 48.8710508 2.3532908, 48.8711319 2.3608919, 48.8712985 2.3603301, 48.8719672 2.3578958, 48.8732120 2.3604731, 48.8771513 2.3577741, 48.8796187 2.3586844, 48.8796271 2.3569957, 48.8796716 2.3557085, 48.8796874 2.3567074, 48.8827872 2.3593240, 48.8840883 2.3598171 +Hermann Böning +Heidelberg Marriott Hotel, Schwimmverein Mannheim e.V., Nichtschwimmerbecken, Babybecken, Schwimmerbecken, Babybecken, Schwimmbad Siegfriedbrunnen, Hallenbad, Pension Berger, Heidelberg Suites, Hotel Die Hirschgasse Heidelberg, Crowne Plaza Heidelberg, Wellenbad, Außenbecken, Kinderschwimmbecken, Duttweiler Freibad, Hallen-Freibad, Grosses Schwimmerbecken (50m Bahnen) + Sprungbecken (1er, 3er), Nichtschwimmerbecken mit Edelstahl Wasserrutsche, AQWA Freibad, Nichtschwimmerbecken, Mümlingtal Bad Hetzbach, Hallenbad Kirchardt, Warmstrudelbecken, Hallenbad Badespaß St. Leon-Rot, Hallenbad Einhausen +1 +Pavilion Coffee House, Cafe Arista, Peter's Yard, Olly Bongo's, Caffe Nero, Cafe Marmalade, Starbucks, Snax Corner, WRVS, Aroma Coffee Bar, Starbucks, The Treehouse Cafe, Cafe Grande, Starbucks Coffee, Zulu Lounge, Starbucks, Rocket, Pavilion Cafe, Cafe Luca, No. 39 Coffee House, Traverse Theatre Bar/cafe, Cafe Domenico's, Relish, Rocksalt Café Deli, Cafe Truva, The Roamin' Nose, Shore Deli Co, Clock Cafe, Renroc, Mitchaell's Cafe, Caffè Nero, Coffee Mavi, Scoff, Alexander's, Lovecrumbs, Preacher's Patisserie, Starbucks, Toast, Baguette Express, Frisky, St. Giles' Cathedral Café, Patisserie Valerie, Caffe Espress, Starbucks Coffee, Glass & Thompson, Costa Coffee, Costa, Bluebird, Cafe Camino, Tiki Cafe, O'Briens, Starbucks, Costa Coffee, Dovecot Cafe, Firth of Froth, Redcoat cafe, City Cafe, Loudon's Cafe & Bakery, Black Medicine, Artisan Roast, Nardini, La Barantine, Project Coffee, Costa, Foodies, The Pastures, The Haven, The Gardener's Cottage, Caffe e Cucina, Milk Cafe, Pickle & Custard, Taste of Italy, Pep & Fodder, Baguette Express, Caffe Nero, Starbucks Coffee, Caffe Centro, Eteaket Tea Boutique, Piece Box, Two Thin Laddies, Clock Cafe & Grill, Le Petit Repas, Jacob, Starbucks, Caffe Nero, Fit Food Bistro, Bakehouse, Artisan Roast, Caffe Nero, Starbucks, Cafe Braw, Caffe Nero, Saint Giles Cafe, Wellington Coffee, Wee Coffee Bar, mint cafe, Caffe Nero, Costa, Castello Coffee Co, VinCaffe, Costa, Coffee House, Southern Cross Cafe, Royal Cafe, Circus Cafe, Cafe Jacques, Starbucks, Mimi's Bakehouse, Cafe Truva, Brass & Copper, Patisserie Valerie, Cafe Vivo, Clarinda's Tearoom, Looking Glass Books, Cafe on the Corner, The Forest, Asti, Nom De Plume, Costa, Cafe Class, The Purple Pig Cafe, Made In France, Embo, I love Cafe, Costa, Blackwoods, La Cerise, Let Me Eat, Serenity Cafe, Library Cafe, Crumbs Cafe, Casa Angelina, Street Bar, Happiee Daze, Peter's Yard, Empire Cafe, Cafe Florentine, Fountain Cafe, Affogato, Leaf & Bean, The Open Door, Clock Cafe, Cafe Blush, Cafe Brunchies, Henri's, Broughton Delicatessan, French Press, Printworks Coffee Company, Locanda, Deacon's House Cafe, Starbucks, Costa, Marie Delices, The Manna House, Snax Cafe, curious tea room, Machina Espresso, Costa, Le Cafe Bleu, The Chocolate Tree, Undercroft, Starbucks, Fair Trade Coffee Shop, Georgian Tearoom, The Square, Mimi's Bakehouse, Gran Caffe, The Hideout, Hula Juice Bar and Gallery, The Corner Coffee Bar, The Elephant House, Salt Cafe, Fortitude Coffee Merchants, FYUL, Cafe Cockburn, Toddle-In, Arts Cafe, Caffe Piccolo, Castlerock View Cafe, Cafe Keno, Just the Ticket, Forsyth's Tea Room, Globe Cafe, Zebra Coffee Co., Has Beans, Cuttea Sark, Caffeine Drip, Cafe Truva, The Genuine Article, Cafe Tartine, Cairngorm, Favorit, Cortado, The Little Inn, Castle Cafe, Glenha's Deli and Café, Parliament Cafe, Waka, Colletti & Co, Copper Bird, Bramble, Cafe Casablanca, GAIA Italian Delicatessen, Yellow Bench, Sandwich Express, Word of Mouth Bistro Cafe, Pera, Starbucks Coffee, Fazeli's Deli, Frederick Coffee House, Latitude Coffee, Valvona and Crolla, Fruitmarket Gallery, Scottish Storytelling Centre, Starbucks, Gorgie Farm Cafe +de:Heidelberg, de:Heidelberg +Sainsbury's Local, Holder Planning, Underground Solu'shn, Waterstones, Johnstons Cashmere, Thistle Do Nicely, News Corner, D.J. Alexander, Present, Royal Mile Sweets, Tollcross Newsagent, Leatherwork, Peter Trainer - Corporate Services Ltd, The 3 Stooges, Direct Dry Cleaning, Zone Eros, Smooch, Cabaret, West Port News, Lily West, Edinburgh Books, Herman Brown, Boardwise, McAlister Matheson Music Ltd, GT II Newsagent, Tesco Metro, Sainsbury's Local, Thomas Cook, The Scotsman, Flight Centre, Greggs, Sta Travel, SimplyFixIt, Coda Music, I Love Scotland, Best in Scotland, Bonkers, Ernest Jones, Twenty Twenty, Jordan Valley, Scotmid, Alpine Bikes, I.J. Mellis, Margiotta, Edinburgh Bicycle Co-operative, John Hall, Phase, Christopher Ness Jewellery, Sandy Jones, Tesco Express, Harvey Nichols, Louis Vuitton, Central Superstore, Egg, Real Foods, Something Fishy, lifestyle express, M&S Simply Food, Accessorize, BHS, Great Scot, Holland & Barrett, Fraser Hart, H&M, Kanoo Travel, M&S, Monsoon, O2, Phones 4u, Romanes & Paterson, Swatch, EE, The Works, Topshop / Topman, Vodafone, Dr. Martens, Whittard, 3 Store, Cotswold, Tiso, Next, Potter Shop, John Lewis, Sainsbury's Local, Margiotta, Edina Lock & Key Co. Ltd., Build-a-bear Workshop, Carphone Warehouse, Coral, Currys PCWorld, Flight Centre, Three, HMV, Holland & Barrett, Rae Macintosh, Morrisons Local, McGraths, Mountain Warehouse, New Look, O2, Oddbins, Optical Express, EE, Patissier Maxine, Sainsbury's Local, Scotbet, Specsavers Opticians, Thomson, Urban Outfitters, WHSmith, Edinburgh Woollen Mill, Allsaints, Ann Summers, Clarks, Carphone Warehouse, Footlocker, Gap, H&M, Hotter, Levis, Office, Russell Bromley, Size?, Superdrug, The Body Shop, The Perfume Shop, Lush Spa, Thomas Sabo, Ben's Cookies, USC, Zara, fat face, Cath Kidston, Charles Tyrwhitt, Jones, Kiehl's, Lakeland, TM Lewin, Trotters opticians, Co-operative Food, Westend Store, Crombie's of Edinburgh, Blackwells, Waterstone's, High & Mighty, Trailfinders, Day-Today, Paperchase, Links, Anne Fontaine, Burberry, Mulberry, G-Star, Nespresso, Reiss, JoJo Maman Bebe, Tommy Hilfiger, North America Travel Service, Kurt Geiger, Boss, Swarovski, Pandora, Pepperberry, Sole, Miss Selfridge, Virgin Media, JD, Crabtree & Evelyn, River Island, Swarovski, EE, International Newsagents, Argos, Patisserie Valerie, J & S Newsagents, Premier, Lifestyle Express, Historic Connections Jewellery Designers, Castle Fine Art, Pen Shop, Whistles, Jo Malone, White Stuff, Hamilton & Inches, Cambridge Satchel Company, Jack Wills, Sweaty Betty, Co-operative Food, Space.NK, Anta, schuh, The North Face, McColl's, Spirited Wines, Barbour, Radley, Alistir Wood Tait, Robert Anthony, Black & Lizars, Goodwins, Rogerson Footwear, ecco, Watch, John Whyte, Trespass, Laings, Jigsaw, Moss, Hobbs, LK Bennett, Anthropologie, Ede & Ravenscroft, Brora, Sassoon, Keir Street News, Fudge House, Laura Ashley, Left Luggage, Coast, Mint Velvet, Phase Eight, East, Brooks Brothers, McColl's, Church's, Bibi's Cake Boutique, Karen Millen, Molton Brown, The Kooples, Goodwins, Duncanson & Edwards, Ottimo Lighting, Harvey Jones, Fired Earth, Greggs, Nevisport, Farrow & Ball, Craighead & Woolf, Belle-Eve, Run And Become, City Barbers, James Ness, James Alexander, Ruffians, Shuropidy, Ian Smith Design, Vincent Bell, Jeffreys Interiors, Duo, Cheynes, Villeneuve Wines, Natural Selection Food, Life Story, Alex Hair Studio, Stringers, Vino, Broughton News, Narcissus, Coco Chocolate, Allan Hair, Curiouser, O2, Thorntons, AMERIkandy, Ice Store, H Samuel, Burton, Warren James, Bank, Next, Accessorize, Mountain Warehouse, JD, Perfume Shop, McColl's, Carphone Warehouse, Razor Sharp, Clintons, Garage, Claire's, Millie's Cookies, Card Factory, Tiger, Sports Direct, Game, Phones 4U, River Island, Books4Less, Superdrug, Ryman, Michael Kors, Barrhead Travel, EE, Wallis, Poundland, Dorothy Perkins, ManKind, Officers Club, Hawkin's Bazaar, Quiz, Vision Express, Ernest Jones, Shrub: Swap&ReuseHub, Sculleries, Gordon Fraser, Barnardo's, Sharon Robertson Hair, Green Grocer, Chic & Unique, Boombarbers, Stockbridge Store, debra, Just Dogs, Eden, Dick's, Sheila Fleet, Catalog Ltd, Gorgeous, Spanish Fine Foods, relove, Frank Lindsay, Vagabond, Reiss, Alpha Art, Vino, Paul James, New Town Desigh, Bethany, The Floatarium, Rose Street Barbers, The Players Lounge, Joules, Daniel Henderson, Hawick, Hawes & Curtis, reddog music, Oliver Bonas, Dunedin, Diva, Rox, Kitchens International, Elements, Treehouse, Salut, W Armstrong & Son, Hewats, Napiers, Richer Sounds, Specsavers, Schuh, Premier, bath store, La Novia, James Scott, Ian Dickson Travel, Vans, Beerhive, Penhaligon's, Duncan McLaren, Dickson Reid, Pride, Joseph Bonnar, Floritalia, Xile, Argento, Dune, Ottavio, Orvis, Scribbler, FOPP, STA Travel, amplifon, Johnsons, Poundstretcher, Moleta Munro, Tesco Express, Game, Stewart Travel, L'Occitaine, Serve, shakeaway, Artisan Bakehouse, The Brotique, Sainsbury's Local, Afrin Barber, Armchair Books, Peter Bell Books, Owl & Lion, Scottish Pictures, savers, Edinburgh Clothing Company, Flight Centre, Global News, House of Cashmere, Ladbrokes, Netversal, Pound Stretcher, Ripping Records, Rymans, Shoe Zone, The Scotland Shop, Yekta, Cash Generator, Forbidden Planet, Jacob, Mace, Bamboo Boutique, Knights Barber, Licks Cake Design, Ling Ling Massage, The Colour Room, Bacco Wine, Blue, Trigg, Zen Kichen, Edina Paint Co, Futur Property Auctions, Gamefish, Handbag Heaven, Sally, George Pirie Antiques, Urban, Lonsdale & Dutch, McAree Brother, McLean Forth Properties, Newtown Interiors, Prontaprint, The Wind Section, designer-lights.com, Arden Propert Management, Rachel Scott Bridal Couture, Ritz, Sturrock, Armstrong &Thomson, Antiques, Mr Purves, The Remedy Rooms, Ampersand, Linzi Crawford, Aitken Nairn, Dunpark, Carolyn Baxtre Dress and Hair Boutique, Coline Blaikie and Co, London Street Grocery, Absolute Nail and Beauty, And So To Bed, Dj Alexanders, Marwick Solicitor and Estates, The Ringmaker, Arthaus, Broughton Place Hair and Beauty, Dragonfly, Lamesley Briddal, Big Ideas, Drift, The Mutts Nuts, Bacchus Antiques, Black Box, Golden Hare Books, The Christmas Shop, The Isle of Skye Candle Company, Bill Baber Knitwear, Costume Ha Ha, Sublime Hair Design, Concrete wardrobe, JoeD Edi, Shamoon's, boombarbers, Analogue books, Avizandum, Deadhead Comics, Macdonadl Framing, Still Life, Transreal, Venus Flytrap Tattoo, Mama Said, Miss Katie Cupcake, Old Town Cotext, Swishprint, Whisky World, Broughton Property Management, Den of Iniquity, Cavanagh Antiques, Enchantment, Forever Scotland, Hair By Alfie, The Frayed Hem, Whiplash Trash, Cutie House, Eden, Kookie, Route One, The Scotsman, The Woollen Mill, Victor Scott Kilt Maker, Crest of Edinburgh, Ness, Mrs Stewarts Gift Shop, Games Workshop, Hi-Fi Corner, Picture Framer, Powerhouse Fitness, Ladbrokes, mC'm, Iconic, News Experss, Purple Glamour, G-TEC, Hawick, Mr Wood's Fossils, W. Armstrong & Son, Cutz Barbers, Mail Boxes Etc., Marie Curie Cancer Care, Sally, The Phone Box, Ballantrae Cashmere, Best Of Scottish, Edinburgh Cashmere Boutique, Fudge Kitchen, Heritage of Scotland, House of Cashmere, Johnstons of Elgin, Palenque, Real Scot Shop, Really Scottish, Royal Mile Jewellery, The Nutcracker Christmas Shop, Ali Willmore Hairdressing, Antiques, Carson Clark Gallery, Kilberry Bagpipes, Tete a Tete Foto, Cycle Scotland, Old Town Tattoo, Chic, Cyan, Harmony Complementary Therapies, Scottish Regimental Store, Studio XIII Gallery, Tangram, Barnets, Celtic Craft Centre, Cashmere And Kilt Centre, Geoffrey (Tailor) Kiltmaker, John Morrison Kiltmakers, Ladbrokes, The Bonnie Blue, The Tappit Hen, Wee Gift Shop, Whisky & Wine, Hector Russell, Whisky & Wine, Whiski Rooms, Corniche, Aquila, Lickety Splits, Saks, The Scottish Grocer, Cranachan & Crowdie, Eyden, Demijohn, Howies, I.J. Mellis Cheesemonger, Swish, The Whisky Shop, Clarksons, Museum CONTEXT, Walker Slater, Boyd Property, British Heart Foundation, Cheynes, Direct Lettings, Exclusive Barbers, Extravaganza, Fast Frame, Mr James, Save The Children, St Columba's Hospice, boombarbers, Nicolson, Prestige Scotland, Bonnie Scotland, Edinburgh Copy Shop, Kleen Cleaners, Lo Demore, Pinnies and Poppy Seeds, Psychomoda, Ragamuffin, Rene Walrus, Slanj, Solo, Thomas Marin Funeral Director, Tidalfire, Call Print, Edinburgh Arts and Picture Framers, Guaranteed Watch & Clock Repairs, Focus, The Royal Mile Gallery, Treasurer 1874, Tribal Body Art, Macraes of Edinburgh, Adult Conceptions, Varsity Music, Woods, Ballantrae Cashmere, Clans Of Scotland, Edinburgh Cashmere & Lambswool, Elgin Cashmere, House Of Cashmere, Kiltane, Ness, The Whisky Trail, Victoria Regalia, Camera Obscura, Cashmere and Scarf Company, Castle Gift Shop, Highland House, House Of Scotland, J & S - Newsagent, The Court Curio Shop, The Wee Scotland Shop, Cashmere House, Harris Tweed Hebrides, Heritage Of Scotland, Heritage Of Scotland, James Court City Refund, Jamie Scott’s Millshop, Royal Mile Factory Outlet, The Woolen Factory Outlet, Cheynes, Southside Books, Applejack, Arika, Boosh Boosh Boosh, Cowgate Newsagant, Crescent print LTD, KSI, Spectrum Graffiri shop, Antique Jewellers, House of Edinburgh, James Pringle Weavers, Marchbrae, Royal Mile Whiskies, The Cigar Box, House of Edinburgh, The Whisky Trail, Bridge Express, Greyfriars, The Golden Scissors, Archipelago Bakery, Berketex Bride, HIM, Stock Xchange, Crystal Eyecare, London1 Barber, Marshmallow Lady, Paper Tiger, Brian Drumm, AGA, Charlie Miller, Zen Beauty, Neal's Yard, Ryden Lettings, ALC, Alchemia Studio, City alteration, Howie R Nicholsby 21st Century Kilt, Jane Davidson, Kakao by K, Murray & Currie, Pam Jenkins, Samsung support centre, eye, ishi, The Salvation Army, Pink, CeX, Dance Wear, Robert Graham, The Wax Bar, Thou shalt Covet, Toni and Guy, Austin Reed, Black & Lizars, Cruise, Gant, Hackett, Hollister, Jaeger, Rohan, Slaters, The White Company, Viyella, French Connection, Creative cookware, Cute-icle nail spa, Forever Flawless, Ladbrokes, Planque, Pride of Scotland, Rockcandy Gallery, Tartan Gift and Souvenirs, Ticket Scotland, Viking Optical Centre, madefromscotland, Accesoriz, Maurdo Mcleans, Prid of Scotland, CC, Hector Russel Kiltmakers, Arran Aromatics, Cheynes, Hanover Health Foods, Temple, Holland & Barrett, William Hill, Camper, Prettygreen, Jenners, Bulthaup, Coulters, Hadden Rankin, Merchant Lettings, Simpson & Marwick, connoly, Kleen Care, Selenita, Sweet Service, WHSmith, Lothian Buses, Primark, Sainsbury's Local, Scott's In The Park, House of Fraser, Jenners, Tartan Weaving Mill, Debenhams, Frisky +9 +yes +yes +5 +Evangelische Friedenskirche, Peterskirche, Heiliggeistkirche, Jakobuskirche, Johanneskirche, Markushaus, Evangelisches Gemeindezentrum, Providenzkirche, Lutherkirche, Kreuzkirche, Christuskirche, Bergkirche, Emmaus-Gemeinde, Evangelische Studierendengemeinde (Karl-Jaspers-Haus), Die ARCHE - Evangelische Wichern-Gemeinde, Melanchthonkirche, Peterskirche +49.4126021 8.6894511 +no +Ristorante / Enoteca Akademie +55.9899019 -3.3868462 +yes +18.714666719476902 +yes and 35 +1 and 55.9436353 -3.2027965 +yes and 20 +tower, memorial, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, castle, ruins, ruins, wayside cross, wayside cross, wayside cross, ruins, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, castle, castle, wayside cross, castle, wayside cross, castle, castle, castle, castle, castle, lavoir, wayside cross, archaeological site, castle, castle, castle, castle, castle, castle, castle, yes, wayside cross, memorial, memorial, monument, memorial, monument, memorial, memorial, castle, wayside cross, yes, abbey, archaeological site, archaeological site, archaeological site, ruins, memorial, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, castle, castle, castle, wayside cross, castle, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, track, ruins, wayside cross, wayside cross, wayside cross, building, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, memorial, wayside shrine, wayside cross, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, memorial, stone, tomb, tomb, tomb, tomb, tomb, tomb, memorial, wayside shrine, wayside shrine, wayside shrine, castle, ruins, wayside shrine, memorial, archaeological site, manor, ruins, castle, yes, castle, wayside shrine, castle, castle, castle, castle, castle, castle, castle, castle, church, castle, wayside shrine, ruins, castle, ruins, castle, ruins, yes, manor, yes, manor, wayside shrine, ship, ruins, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, yes, castle, castle, monument, city gate, castle, castle, castle, yes, yes, memorial, memorial, memorial, memorial, building, wayside shrine, ruins, ruins, ruins, ruins, citywalls, archaeological site, tomb, tomb, tomb, tomb, tomb, citywalls, citywalls, memorial, tomb, memorial +49.4127706 8.7178630 +0 +italian +http://lemondehotel.co.uk/, http://www.placeshilton.com/edinburgh-city-centre, http://www.hot-el-apartments.com/edinburgh-waterfront-apartments/, http://www.jurysinns.com/hotels/edinburgh, http://www.apexhotels.co.uk/hotels/edinburgh-waterloo-place/?source=adwords mis1&gclid=CPyo uiJiqQCFVf-2AodJ02fJQ, http://www.travelodge.co.uk/search and book/hotel overview.php?hotel id=428, http://www.radissonblu.co.uk/hotel-edinburgh?facilitator=BIGMOUTHMEDIAREZIDOR&csref=g en sk brand 3 ediza, http://www.macdonaldhotels.co.uk/holyrood/, http://www.thistle.com/en/hotels/united kingdom/edinburgh/the king james/index.html, http://www.oceanservicedapts.com/index.php?gclid=COTK4ISGzKUCFYIe4QodBwiXjg, http://www.sandaigguesthouse.co.uk/, http://www.theglasshousehotel.co.uk/, http://www.oldwaverley.co.uk/, http://www.royalbritishhotel.com/, http://edinburgh.frasershospitality.com, http://niracaledonia.com/en/, http://www.hotelceilidh-donia.co.uk/, http://www.edinburghthistlehotel.com/, http://www.chester-residence.com/, http://www.thegrassmarkethotel.co.uk/, http://www.ibis.com/gb/hotel-2039-ibis-edinburgh-centre-royal-mile/index.shtml, http://www.thescotsmanhotel.co.uk/, http://www.thenorthumberlandhotel.co.uk, http://www.edinburghmintohotel.co.uk, http://www.kildonanlodgehotel.co.uk, http://www.cairnedinburgh.com/, http://www.rosehallhotel.co.uk, www.motel-one.com/en/hotels/edinburgh/edinburgh-princes, www.parliamenthouse-hotel.co.uk, www.royalmilemansions.com/, http://www.royalscotsclub.com/, http://www.travelodge.co.uk/hotels/353/Edinburgh-Haymarket-hotel, http://www.fountaincourtapartments.com/eq2.html, http://www.edinburghcityhotel.com/, http://www.townhousecompany.com/theedinburghresidence/, www.tunehotels.com/our-hotels/haymarket-edinburgh, http://www.rockvillehotel.co.uk, http://www.channings.co.uk, http://www.robertburnshotel.com, http://www.ibis.com, http://www.thegeorgehoteledinburgh.co.uk/ +8 +55.8969575 -3.3064520, 55.9073786 -3.2585910, 55.9053215 -3.1319819, 55.9086565 -3.2096817, 55.9103533 -3.3220087, 55.9013749 -3.2048039, 55.9035407 -3.2854196 +55 +1 +0 +55.9509478 -3.2066848 +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8169651 2.3597405, 48.8346251 2.2657680, 48.9012005 2.3862959, 48.8801709 2.3706981, 48.8315802 2.3158225, 48.8455659 2.3086884, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8501676 2.3621707, 48.8593908 2.3144172, 48.8299268 2.3465439, 48.8609726 2.2828299, 48.8563247 2.3152562, 48.8611046 2.3413657, 48.8475898 2.3031985, 48.8463297 2.2794951, 48.9003252 2.3734463, 48.8402491 2.3214518, 48.8804901 2.2865619, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8323948 2.3645635, 48.8645440 2.4097670, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.9007525 2.3748724, 48.8635857 2.2722338, 48.8536267 2.3664311, 48.8408422 2.3172666, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8387798 2.2536841, 48.8281523 2.2728394, 48.8168431 2.3604808, 48.8595020 2.3116861, 48.8407841 2.3912112, 48.8607706 2.3747898, 48.8787212 2.3698437, 48.8586303 2.3897622, 48.8579937 2.3897210, 48.8364028 2.2775659, 48.8558395 2.3835889, 48.8519985 2.2908966, 48.8656358 2.2892405, 48.8786755 2.3549221, 48.8797035 2.3026873, 48.8478375 2.3535433, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8936152 2.3152934, 48.8522407 2.2805336, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8711680 2.3244832, 48.8436106 2.3422313, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.8233460 2.3160166, 48.8338034 2.2847592, 48.8464060 2.3874300, 48.9007173 2.3745755, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8206480 2.3248645, 48.8936129 2.3029112 +Ambulances, Ambulances Regence, Cavendish Ambulances, Ambulances Lilas Valerie J.M.S., Malone ambulances, Ambulances Sainte Marthe, Dahlia ambulances +28 +245 +48.8316492 2.2999377, 48.8681927 2.3630580, 48.8748801 2.3637951, 48.8710381 2.3610667, 48.8757902 2.3561915, 48.8667885 2.3495539, 48.8648587 2.3516262, 48.8683427 2.3501494, 48.8659826 2.3540443, 48.8770173 2.3640220, 48.8757565 2.3604345, 48.8658957 2.3524620, 48.8630663 2.3527335, 48.8668874 2.3528247, 48.8256825 2.3151865, 48.8250160 2.3112381, 48.8279762 2.3057040, 48.8282568 2.3034035, 48.8636772 2.3510372, 48.8655288 2.3523437, 48.8669313 2.3543718, 48.8613680 2.3530523, 48.8626723 2.3594550, 48.8600851 2.3608850, 48.8650242 2.3602350, 48.8763445 2.3614950, 48.8725652 2.3640736, 48.8705409 2.3514636, 48.8707624 2.3546578, 48.8690350 2.3562439, 48.8252648 2.3158680, 48.8683870 2.3633979, 48.8262191 2.3053681, 48.8320219 2.3028314, 48.8255813 2.3041840, 48.8745891 2.3627432, 48.8754929 2.3615609, 48.8582183 2.3633569, 48.8227669 2.3087009, 48.8215858 2.3017380, 48.8769804 2.3588987, 48.8279457 2.3056505, 48.8668278 2.3572924 +49.3999791 8.6903579 +142 +Collège Privé Saint-Louis, École maternelle publique Souzy, École primaire, École maternelle Charles Baudelaire, École primaire, École maternelle & primaire, École maternelle Le Vau, École élémentaire B, École élémentaire A, Collège Pierre Mendès France, École maternelle Olivier de Serre, École primaire, École maternelle des Grands Champs, Collège Léon Gambetta, Collège Wolfgang Amadeus Mozart, Lycée Dorian, Collège Georges Courteline, École primaire Chaptal, École maternelle, École élémentaire, École Primaire, Collège César Franck, Centre Inter Entreprise de Formation en Alternance, École élémentaire Compans, École élémentaire Brunet, École maternelle Brunet, Lycée général et technologique Henri Bergson, École maternelle, BTS Henri Bergson, LPMA, École privée Saint-Laurent, Conservatoire de musique du 14e Arrondissement, École maternelle, École élémentaire Chernoviz, École élémentaire de Belleville, École maternelle, École Polyvalente Pajol, École 56 Avenue Félix Faure, École primaire, Lycée technique Louis Armand, École Nornal Catholique Blomet, Cours Diderot, Lisaa, EIPDCE, École élémentaire Charles Baudelaire, Lycée des métiers d'art, d'architecture intérieur et du design BOULLE, École maternelle Élisa Lemonnier, École primaire, École élémentaire privée L'Immaculée-Conception, Colegio Español Frederico Garcia Lorca, École Élémentaire Hyppolite Maindron, École maternelle Maurice Ripoche, École élémentaire Beaudricourt, College Lycée Stanislas, Actif Tutor, École élémentaire de l'Évangile, École maternelle Tchaïkovski, École élémentaire Maurice Genevoix, École élémentaire de Torcy, École maternelle de Torcy, École élémentaire Doudeauville, École maternelle Marx Dormoy, École polyvalente de la Goutte d'Or, École maternelle Goutte d'Or, École maternelle des Amiraux, École polyvalente des Poissonniers, Collège Chaptal, Collège Jules Ferry, Collège privé Saint-Michel de Picpus, Lycée général privé Saint-Michel de Picpus, Section d'enseignement général et professionnel adapté du Collège Vincent d'Indy, École maternelle Picpus, École primaire A, École primaire B, École primaire, École élémentaire de la Plaine, École primaire Publique Laugier, Wall Street Institute, Collège Henri Bergson, Collège Louise Michel, Collège privé Lucien de Hirsch, Section d'enseignement général et professionnel adapté du Collège Edouard Pailleron, École maternelle, École primaire, École primaire, École élémentaire privée Lucien de Hirsch, Cours Clapeyron, École maternelle Carrel, Lycée professionnel Armand Carrel, École élémentaire Armand Carrel, IPAG Paris, École maternelle et école élémentaire, Insititut d'Osthéopathie Dauphine, Collège Sonia Delaunay, École primaire Mathis, École primaire Tandou, Sciences Po, École maternelle Belliard, École élémentaire Belliard, Collège Hector Berlioz, École maternelle Paul Abadie, Polynotes, l'école de musiques, École primaire, École maternelle, École supérieure d'études cinématographiques, École maternelle Bruxelles, École Elémentaire Bruxelles, EFAP Paris, École primaire, École maternelle Colonel Moll, Lycée professionnel Suzanne Valadon, Lycée Camille Jenatzy, Cours Nation Bauchat (École secondaire privée), École maternelle, École maternelle, École maternelle, École élémentaire Picpus, École primaire, École primaire, École élémentaire privée Eugène Napoléon, École primaire Jean Jaurès, Lycée général et technologique privé Les Petits Champs, École élémentaire privée Montessori Kids, École primaire Privé École du Cerene, Collège privé Soeur Rosalie, Lycée général privé Louise de Marillac, École élémentaire privée Soeur Rosalie, Collège Victor Hugo, École primaire B, École Louise De Bettignie (Sainte-Ursule), École maternelle, École maternelle, Collège Georges Duhamel, École maternelle Antoine Chantin, École maternelle Volontaires, École maternelle, École élémentaire Télégraphe, École maternelle Auguste Perret, École élémentaire Auguste Perret, Section d'enseignement professionnel du Lycée polyvalent Elisa Lemonnier, École privée française d'Enseigement technique, Collège Lucie Faure, École maternelle publique Maraîchers, École primaire publique Pyrénées T, Collège privé Saint-Louis de Gonzague, École maternelle, Collège Paul Valéry, Lycée général Paul Valéry, Collège Buffon, Collège privé Saint-Jean de Passy, Lycée des métiers de l'optique FRESNEL, Lycée privé Saint-Jean de Passy, École élémentaire privée La Bruyère-Sainte-Isabelle, École élémentaire privée Saint-Jean de Passy, Living School, Section d'enseignement professionnel du Lycée polyvalent Louis Armand, École Active bilingue Jeannine Manuel (École élémentaire privée), Collège de Staël, Lycée général Buffon, École primaire, École maternelle Gutenberg, École maternelle Simone Weil, École maternelle Brochant, Inlingua, École Gaston Tenoudji, École élémentaire Lemercier, École élémentaire, École maternelle, École Privée Charles Peguy, École maternelle Simon Bolivar, École maternelle et primaire Henri Schili, Paris II - Panthéon Assas - Centre Vaugirard, École maternelle Eugénie Cotton, Écoles élémentaires Eugénie Cotton, École élémentaire, École maternelle Merlin, École Supérieure de Gestion, Collège Camille Sée, Lycée général Camille Sée, École maternelle, École primaire, Lycée professionnel privé Marcel Lamy, Sup de pub, Sup career, Campus langues, École Ganénou, Collège Honoré de Balzac, Lycée général et technologique Honoré de Balzac, Collège Maurice Ravel, Lycée général et technologique Maurice Ravel, Cours Tocqueville, École Marseille, Lycée Municipal d'Adultes Philippe Leclerc de Hauteclocque, École privée Bossuet, Collège Jacques Prévert, École maternelle, École primaire, Collège privé Notre-Dame de France, Cours privé Alfred de Musset, Lycée général privé Notre-Dame de France, École maternelle, École maternelle, École primaire, École élémentaire privée Notre-Dame de France, École maternelle Pierre Foncin, École maternelle Surmelin, École primaire Bretonneau, École polyvalente, École élémentaire Manin, Collège Victor Duruy, Collège d'Hulst (École secondaire privée ), Collège privé d'Hulst, Cours Montaigne (École secondaire privée), Cours Thérèse Chappuis (École secondaire privée), Lycée polyvalent Maximilien Vox-Art-Dessin, Lycée polyvalent privé Albert de Mun, Section d'enseignement professionnel du Lycée polyvalent Maximilien Vox, Section d'enseignement professionnel du Lycée polyvalent privé Saint-Nicolas, École maternelle, École maternelle, École maternelle, École primaire privée Saint-Jean Bosco, École primaire, Collège Guillaume Apollinaire, Collège Privé L'Alma, Collège privé La Rochefoucauld, Collège privé Sainte-Elisabeth, Cours Fidès (École secondaire privée), Institut Privé de l'Alma (École Secondaire Privée ), L'École (École secondaire privée), Lycée général et technologique Roger Verlomme, Lycée général privé La Rochefoucauld, Lycée général privé Sainte-Elisabeth, Section d'enseignement général et professionnel adapté du Collège Guillaume Apollinaire, Section d'enseignement professionnel du Lycée polyvalent privé Albert de Mun, École élementaire privée the lennen bilingual school, École Active Bilingue Jeannine Manuel (Collège privé), École Active Bilingue Jeannine Manuel (Lycée général privé), École du Champ de Mars (École secondaire privée), École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École primaire, École primaire, École primaire, École primaire, École primaire, École primaire, École Élémentaire Privée L'Alma, École élémentaire privée La Rochefoucauld, Lycée professionnel, École maternelle, École élémentaire, École polyvalente Bernard Buffet, École maternelle Planchat K, École élémentaire Planchat, École maternelle, École Maternelle Sarrette, École privée Saint-Jean-Baptiste de Belleville - Maternelle et Primaires, École maternelle, École Multimedia, École élementaire, École et Collège Saint-Georges (privé), École maternelle et primaire Saint-Georges (privé), Inalco, École Dentaire Française, École maternelle Prévoyance, École de Boulangerie et de Pâtisserie, École maternelle Delambre, École élémentaire Delambre, École privée catholique Sainte Marguerite, Collége privé Notre-Dame de Lourdes, École primaire privée Notre-Dame de Lourdes, École privée Sainte-Marthe, Living school, Lycee Beth Haya Mouchka, Conservatoire Municipal Paul Dukas, Cours Florent, École élémentaire du Clos, École élémentaire 14 Riblette, École élémentaire 16 Riblette, École primaire privée Montessori, Lycée technologique École Nationale Supérieure des Arts Appliqués, Crèche Crimée, Cours Spinoza, Collège privé La Bruyère-Sainte-Isabelle, École Élémentaire, Lycée polyvalent privé Catherine Labouré, École et Collège Modigliani, École maternelle, École Lacordaire, École primaire, Lycée général et technologique Chaptal, Collège Edouard Pailleron, Lycée général Paul Bert, École Maternelle Alain Fournier, Lycée François Villon, Collège et Lycée Stanislas, Lycée général et technologique Emile Dubois, École Wurtz, École Élémentaire, École, Collège Georges Braque, École Glacière, Lycée Lazare Ponticelli, École Primaire, École primaire publique Kuss, Lycée Professionnel Tolbiac, Collège Gabriel Fauré, École primaire, École primaire, École primaire, École maternelle, Lycée Autogéré de Paris, École primaire Saint-Jean, École maternelle, Collège Saint-Exupéry, Collège George Sand, Collège Marie Curie, Collège Parmentier, Lycée Lavoisier, École élémentaire de la Victoire, École Élémentaire, Lycée professionnel Pierre Lescot, École maternelle Eupatoria, Collège Henri Matisse, Collège La Grange aux Belles, École primaire d'application, École maternelle Domrémy, École Saint-Jacques, École maternelle privée Diwan, Collège Georges Rouault, École élémentaire Cheminets, Lycée technique Diderot, Lycée polyvalent Martin Nadaud, École maternelle Fagon, Collège Edmond Michelet, Lycée professionnel Hector Guimard, Ancien lycée Jean Quarré, Collège Guillaume Budé, École maternelle, Collège Flora Tristan, Lycée Professionnel Maria Deraismes, École élémentaire Curial, École élémentaire Ourq, Section d'enseignement professionnel du Lycée polyvalent D'Alembert, Collège Maurice Utrillo, Lycée Rabelais, Lycée professionnel agricole du Breuil-École privée d'Horticulture et Arboriculture, École primaire d'application, Lycée Jean de La Fontaine, École maternelle, Lycée général et technologique Arago, Lycée général Fénelon, École Primaire Convention, École Jongkind, École Élémentaire d'Argenteuil, École primaire, École maternelle, École Maternelle et Élémentaire Beauregard, École Maternelle et Primaire, École primaire Saint-Louis-en-l'Île, Lycée général et technologique Sophie Germain, École élémentaire Saint-Merri, École Primaire Moussy, Groupe Scolaire Archives, École Élémentaire Hospitalière Saint-Gervais, École élémentaire, Lycée général Louis Le Grand, Collège Charlemagne, École primaire Charlemagne, École Massillon, École élémentaire privée Massillon, École primaire, École des Francs-Bourgeois, École primaire, École Élémentaire et Collège Montgolfier, École Élémentaire, École maternelle Chapon, Annexe Lycée Professionnel Nicolas Flamel, École maternelle Paul Dubois, École Élémentaire, Lycée et Collège Henri IV, Lycée général Saint-Louis, Lycée polyvalent François Truffaut, École Primaire des Quatre Fils, École Maternelle Perle, Collège Victor Hugo - Annexe, Lycée général Victor Hugo, École primaire Turenne, École Maternelle et Élémentaire, École primaire, Collège Louise Michel, Lycée professionnel Marie Laurencin, École maternelle Legouvé, Collège Charles Péguy, Lycée Georges Brassens, Conservatoire municipal du XIXe Jacques Ibert, École Maternelle et Primaire Madame, École élémentaire Froment, Collège et Lycée Montaigne, École Alsacienne, École maternelle Tandou, Collège Georges Méliès, École Élémentaire, École Primaire Surène, Lycée général et technologique Racine, École Élémentaire, Collège Octave Gréard, Lycée Polyvalent Racine (Annexe), École maternelle, La Rochefoucauld, Lycée étranger privé Léonard de Vinci, Lycée Jules Ferry, École Élementaire Privée The Lennen Bilingual School, École maternelle Bretonneau, École primaire Pelleport, Collège Colette Besson, Collège Jean-Baptiste Clément, Centre des Formations Industrielles, École élémentaire Alquier-Debrousse, Lycée professionnel Charles de Gaulle, École primaire Pierre Girard, École maternelle Dautancourt, École élémentaire Truffaut, École polonaise, Lycée Auguste Renoir, École maternelle Léon Schwartzenberg, Lycée Technologique Bachelard, École des Récollets, Lycée technologique Jules Siegfried, École élémentaire, Écoles maternelle et élémentaire Miollis, Lycée des métiers de l'hôtellerie Belliard, Institut National des Jeunes Aveugles, Lycée professionnel Gustave Ferrié, École primaire Paul Bert, École élémentaire Richomme, École de Sage-Femme de Saint-Antoine, Cité scolaire Rodin, Lycée Jean Lurçat, École maternelle Martel, École Élémentaire Faubourg-Saint-Denis, École Sainte-Anne Sainte-Marie, École maternelle Château des Rentiers, École élémentaire avenue d'Ivry (école B), École maternelle de la Pointe d'Ivry, École Château des Rentiers, École Primaire, Lycée Professionnel Galilée, Collège Gustave Flaubert, École Blanche Jeanne d'Arc, Atelier beaux-arts Montparnasse, Saint-Lambert - Théodore deck, Lycée technique du Bâtiment, École primaire Prisse d'Avennes, École, École Élémentaire Porte Brancion, École Maternelle Porte Brancion, École Maternelle et Élémentaire, École Saint-Honoré d'Eylau, École Polyvalente, École Maternelle et Élémentaire, Institution Notre-Dame de Sainte-Croix, Lycée général Janson de Sailly, Collège Eugène Delacroix, Lycée et Collège Gerson, Lycée privé Saint-Louis de Gonzague, Lycée Professionnel Octave Feuillet, École Élémentaire, École Maternelle et Élémentaire, Collège et Lycée Molière, École maternelle Gros, École Élémentaire, Centre Interprofessionnel de Formation des Commerces de l'Alimentation, Lycée général et technologique privé Charles de Foucauld, École suédoise de Paris, Collège André Malraux, École maternelle et élémentaire, Cours Sainte-Ursule, École de Paris des Métiers de la Table, École maternelle publique Bayen, École élémentaire publique Berthier, École élémentaire Vigée-Lebrun, École Léman-Belleville, École publique élémentaire, Lycée Jean-Baptiste Say, École Elementaire Simon Bolivar, École Maternelle et Élémentaire du Parc des Princes, École Lamazou, École Universelle, Lycée professionnel René Cassin, École Maternelle et Élémentaire, Institut National des Jeunes Sourds, École primaire publique Frères Voisin, École Maternelle Privée Montessori Rive Gauche, Lycée général Victor Duruy, École primaire, Lycée professionnel Gustave Eiffel, Collège Paul Gauguin, Lycée Edgar Quinet, École maternelle Cour des Noues, Section d'enseignement professionnel du Lycée polyvalent Fresnel, École Maternelle et Élémentaire Aqueduc, École Élémentaire Eugène Varlin, École Maternelle et Élémentaire Louis Blanc, Collège Georges Brassens, École Élémentaire et Maternelle des Trois Bornes, École Maternale et Élémentaire Parmentier, École élémentaire République, École Sainte-Elisabeth, Cours Hattemer (École secondaire privée), École Robert Estienne, École Saint-Pierre de Chaillot, Collège Aimé Césaire, Collège Jean Moulin, École Élémentaire Severo, Lycée professionnel Erik Satie, Collège Alphonse Daudet, Collège François Couperin, Lycée général Charlemagne, Collège Pierre Alviset, École Élémentaire Gerty-Archimède, Collège Jean François Oeben, École élémentaire privée Saint-Michel de Picpus, Groupe Scolaire Fénelon Sainte-Marie, Lycée Condorcet, Collège Vincent d'Indy, Collège des Écossais, Lycée polyvalent Elisa Lemonnier, École Primaire La Providence - Collège et Lycée La Tour, École primaire, Lycée général et technologique Passy-Saint-Honoré, Collège privé Rocroy Saint-Vincent-de-Paul, École primaire privée Saint-Vincent-de-Paul, Collège-Lycée Lamartine, École élémentaire Dussoubs, Collège Thomas Mann, École Élémentaire Belzunce, École élémentaire, Section d'enseignement professionnel du Lycée polyvalent Lucas de Nehou, École du Mont Cenis, École publique Sainte-Isaure, Collège et Lycée Jacques Decour, Collège Bossuet - Notre-Dame, École élémentaire privée Bossuet-Notre-Dame, Lycée Bossuet - Notre-Dame, École primaire, École des Enfants du spectacle, École maternelle, École élémentaire, École primaire, École maternelle, Lycée polyvalent Jacques Monod, École maternelle, École maternelle, Groupe scolaire, École primaire, École primaire, Collège Raymond-Queneau, Annexe du collège Pierre-Alviset, École primaire, École maternelle, École élémentaire Ramponeau, École maternelle, École élémentaire Levert, Écoles maternelle et élémentaire, Lycée Théophile Gautier, École Notre-Dame-de-Sion, École Sainte-Marie, Annexe du lycée Maximilien-Vox, Lycée Carcado-Saisseval, Collège et Lycée Saint-Sulpice, Institut Sainte-Geneviève, École élémentaire, École maternelle, Lycée professionnel Corvisart-Arts Graphiques et des Arts du Livre, École élémentaire, École Maternelle et Élementaire Publique Vandrezanne, Groupe Scolaire Privé Saint-Vincent-de-Paul, École Élémentaire Ricaut, École Maternelle Ricaut, École nationale de chimie physique et biologie de Paris, Groupe scolaire Saint-Jean de Montmartre, École élémentaire Belleville, Collège Françoise Dolto, École maternelle, Collège Claude Chappe, École élémentaire, Lycée polyvalent privé Jules Richard Microtechniques, Collège Lycée Stéphane Mallarmé, École Primaire Pouchet, École polyvalente, Collège Boris Vian, École élémentaire Ferdinand Flocon, École élémentaire Hermel, Lycée Colbert, École élémentaire Gerbert, École primaire Primo Levi, École élémentaire Buffault, École polyvalente Simplon, Collège Jules Verne, École Élémentaire, École élémentaire, École maternelle Roquette, École maternelle Popincourt, Lycée professionnel Marcel Deprez, École élémentaire Étienne Dolet, École maternelle, Lycée Carnot, Lycée général et technologique Voltaire, École maternelle Amiraux, École maternelle et élémentaire Louis-Blanc, Lycée général Claude Monet, École élémentaire Cavé, École maternelle Saint-Luc, École René Binet, École et Collège Privés Saint-Germain de Charonne, École élémentaire des Pyrénées, École privée de la Providence, École polyvalente Champagne, École Vitruve, École élémentaire privée Fénelon-Sainte-Marie, École maternelle Richomme, Collège Georges Clemenceau, École primaire, Groupe scolaire Jeanne d'Arc, École Saint-Éloi, Collège privé Sainte-Clotilde, École Saint-Éloi, École primaire Blanche, École élémentaire, Collège Lycée Saint-Louis, Groupe scolaire Milton, École Notre-Dame de Lorette, École primaire Pommard, École élémentaire, École élémentaire, École élémentaire, Annexe du Lycée Fénelon, École maternelle Saint-André des Arts, Lycée polyvalent Lucas de Nehou, Lycée technologique privé La Plaine Monceau, École élémentaire privée Fénelon-Sainte-Marie, École élémentaire privée Sainte-Clotilde, Lycée privé catholique Fénelon-Sainte-Marie, Institut de Physique du Globe de Paris, École Suzanne Valadon, École primaire d'application Houdon, École Élémentaire Asseline, École Maternelle Relais Saussure, École élémentaire Jean-François Lépine, École maternelle Charlemagne, École élémentaire d'Oran, École élémentaire Pierre Budin, École Élémentaire Mairie de Paris, École Varet, Collège Jules Romains, École Maternelle Saint-Dominique, École maternelle Roquepine, École Monceau, ENSCI - Les Ateliers, École primaire Tournelles, École primaire, Collège Roland Dorgelès, École Élémentaire Bienfaisance, Institut de l'Assomption (École secondaire privée, École Primaire, École Primaire, École Active bilingue Lamartine, École Primaire, École primaire, École primaire d'application, École Pereire, École primaire, École élémentaire privée du Saint-Esprit, École primaire, Collège Guy Flavien, École maternelle, Cité Scolaire Henri Bergson, Lycée général et technologique jacquard, Lycée polyvalent l'Initiative, École élémentaire privée Saint-Marcel, Collège André Citroën, École maternelle Ballard, École primaire Balard, École primaire Gourdault, École Sainte-Jeanne d'Arc, École élémentaire de la Guadeloupe, École maternelle Paradis, Lycée polyvalent privé Saint-Nicolas, Conservatoire municipal du 13ème Maurice Ravel, École, École élémentaire Championnet, Collège Condorcet, Collège Bernard Palissy, École maternelle, Écoles Grégoire-Ferrandi CCIP (École secondaire professionnelle privée), École Joseph de Maistre, Collège Antoine Coysevox, Lycée Professionnel Étienne Dolet, Lycée Turgot, École élémentaire Philippe de Girard, École Polyvalente du Moulin de la Pointe, École primaire, École maternelle Alphonse Baudin, Collège Paul Verlaine, Ateliers des beaux-arts de la ville de Paris - Centre Sévigné, École Primaire Fagon, École maternelle Vincent Auriol, École primaire, École maternelle Sarrette A, École primaire privée Saint-Joseph, Groupe scolaire Saint-Jean-Gabriel, Collège privé Thérèse Chappuis, Lycée général privé Saint-Thomas d'Aquin, Lycée professionnel Beaugrenelle, École primaire, École élémentaire privée Fidès, École Maternelle des Longues Raies, École élémentaire Belleville H, Collège Moulin des Prés, École maternelle Bobillot, Collège et Lycée Hélène Boucher, École élémentaire publique Claude Bernard, École du Soleil, École privée catholique de la Trinité, École polyvalente Olivier Métra, École élémentaire Olivier Métra, École maternelle Général Lasalle, École élementaire Goubet, EREA Édith Piaf, École maternelle Retrait, École élémentaire Pyrénées Eb, École élémentaire Pyrénées, Collège et lycée privés Sainte-Louise, École primaire privée Sainte-Louise, École maternelle Darius Milhaud, École maternelle Manin, École élémentaire Manin Eb, École maternelle Pali-Kao, École élémentaire Tourtille, École maternelle Tourtille, École polyvalente Émile Duployé, École Saint-Paul, École maternelle 7e Art, École élémentaire Tourelles, École maternelle Championnet D, École élémentaire Championnet, École élémentaire Claude Vellefaux, École maternelle Gambetta, Lycée professionnel Théophile Gautier, École élémentaire Charenton, École élémentaire 11 Lesseps, École élémentaire 9 Lesseps, Collège Robert Doisneau, École maternelle Amandiers, École élémentaire Amandiers, Collège Alain Fournier, École maternelle Reuilly X, École élémentaire Reuilly A, École élémentaire Reuilly B, Rocroy Saint-Vincent-de-Paul, École primaire Cugnot, Collège Daniel Mayer, École Massillon, Lycée Bonaparte +2 +457 and 55.9340759 -3.0969078, 55.9520383 -3.1884477, 55.9479503 -3.1917952, 55.9530458 -3.2143273, 55.9478203 -3.2081650, 55.9387180 -3.2183133, 55.9400382 -3.2218792, 55.9448047 -3.2121910, 55.9455627 -3.2319955, 55.9536641 -3.2412247, 55.9393979 -3.2226079, 55.9339735 -3.2242241, 55.9485590 -3.1984660, 55.9233928 -3.2495641, 55.9075397 -3.2601949, 55.9201830 -3.2569089, 55.9235850 -3.2498898, 55.9234055 -3.2496291, 55.9290815 -3.1622154, 55.9287446 -3.1606910, 55.9258250 -3.2453116, 55.9195055 -3.2619115, 55.9282449 -3.2552516, 55.9383057 -3.2503683, 55.9415244 -3.1005066, 55.9487280 -3.1868685, 55.9681946 -3.2394189, 55.9750105 -3.1786523, 55.9727141 -3.1970524, 55.9603081 -3.2107045, 55.9625415 -3.2038104, 55.9623749 -3.2065598, 55.9736475 -3.1827669, 55.8985834 -3.2593352, 55.9675354 -3.1918069, 55.9688791 -3.1950694, 55.9725812 -3.1878462, 55.9764203 -3.1968704, 55.9757382 -3.1965357, 55.9709295 -3.2290845, 55.9606932 -3.2487359, 55.9536682 -3.1872515, 55.9565250 -3.2442832, 55.9559532 -3.2438904, 55.9689404 -3.1949893, 55.9628484 -3.2000133, 55.9696691 -3.2005994, 55.9679404 -3.1368303, 55.9245026 -3.2462826, 55.9245495 -3.2462640, 55.9232137 -3.2481025, 55.9192286 -3.1386957, 55.9197007 -3.1380226, 55.9137536 -3.1474495, 55.8994919 -3.2311487, 55.9272696 -3.2320395, 55.9515857 -3.2367549, 55.9430287 -3.2292834, 55.9149327 -3.2153760, 55.9126347 -3.2166853, 55.9715640 -3.2396371, 55.9253227 -3.2038994, 55.9409626 -3.2385035, 55.9409129 -3.2364482, 55.9614256 -3.2177089, 55.9563828 -3.1500518, 55.9567793 -3.1501599, 55.9640660 -3.1617691, 55.9711047 -3.1519140, 55.9700990 -3.1476178, 55.9699440 -3.1474063, 55.9794652 -3.1720778, 55.9791423 -3.1705469, 55.9776508 -3.1930509, 55.9271391 -3.1870984, 55.9312243 -3.1716568, 55.9217665 -3.1317079, 55.9196528 -3.1357238, 55.9452392 -3.0932492, 55.9763746 -3.1700963, 55.9727144 -3.2084850, 55.9731806 -3.2057712, 55.9458977 -3.2359608, 55.9476217 -3.2333004, 55.9421078 -3.2471068, 55.9787645 -3.1700105, 55.9447609 -3.2434052, 55.9498104 -3.2219947, 55.9579656 -3.2087925, 55.9368513 -3.2372248, 55.9659135 -3.1340343, 55.9672533 -3.1958655, 55.9519232 -3.2180493, 55.8897636 -3.1620915, 55.8898633 -3.1619972, 55.8928258 -3.1331472, 55.8929168 -3.1332421, 55.9148733 -3.2566448, 55.8984427 -3.2164902, 55.9357768 -3.2273343, 55.9346242 -3.2323823, 55.9412319 -3.2280853, 55.9501324 -3.2294339, 55.9494024 -3.2030628, 55.9592735 -3.2449240, 55.9637680 -3.2418855, 55.9520377 -3.1910636, 55.9614168 -3.1711787, 55.9367364 -3.1436706, 55.9352124 -3.1425254, 55.9253309 -3.2094851, 55.9509409 -3.2218060, 55.9516114 -3.2220274, 55.9443411 -3.1018614, 55.9475141 -3.2014767, 55.9523425 -3.2166808, 55.9329088 -3.2359326, 55.9316744 -3.2342577, 55.9314312 -3.2338362, 55.9197142 -3.2569063, 55.9119663 -3.2594709, 55.9073595 -3.2601185, 55.9305915 -3.2544337, 55.9501605 -3.1999414, 55.9607015 -3.1685085, 55.9662929 -3.1561624, 55.9547517 -3.1871067, 55.9580989 -3.1581939, 55.9663264 -3.1333091, 55.9409672 -3.2238982, 55.9274924 -3.2238424, 55.9355624 -3.2470808, 55.9719076 -3.2186281, 55.9336243 -3.2302100, 55.9388897 -3.2376855, 55.9389643 -3.2370370, 55.8957908 -3.2027523, 55.9340400 -3.0971256, 55.9027043 -3.2317298, 55.9048951 -3.2401465, 55.8983131 -3.2529409, 55.8982152 -3.2529759, 55.8967785 -3.2616868, 55.9505782 -3.1643798, 55.9364742 -3.1442593, 55.9364251 -3.1442736, 55.9516309 -3.1916638, 55.9182088 -3.2391527, 55.9460274 -3.2355654, 55.9415224 -3.1008781, 55.9414721 -3.1006880, 55.9485231 -3.1092860, 55.9185755 -3.2543017, 55.9381683 -3.1188638, 55.9245837 -3.2400577, 55.9529526 -3.1871425, 55.9256057 -3.2110033, 55.8988106 -3.1122530, 55.9676469 -3.1938769, 55.9383632 -3.2504469, 55.9722254 -3.2146091, 55.9724552 -3.2119012, 55.9612213 -3.2440717, 55.9308244 -3.1518837, 55.9297330 -3.1533386, 55.9316562 -3.1507078, 55.9318814 -3.1463309, 55.9277241 -3.1234427, 55.9720619 -3.2015799, 55.9466747 -3.0987444, 55.9575057 -3.1234489, 55.9197247 -3.1913944, 55.8957287 -3.2025538, 55.9258669 -3.2241737, 55.9413787 -3.0870066, 55.9449791 -3.0819470, 55.9455686 -3.0809735, 55.9638514 -3.1833342, 55.9377687 -3.0829248, 55.9563240 -3.1167910, 55.9553208 -3.1347976, 55.9523666 -3.1216397, 55.9121634 -3.2269803, 55.9386700 -3.2294127, 55.9408297 -3.2281101, 55.9314045 -3.2266827, 55.9082024 -3.1450986, 55.9719867 -3.1819929, 55.9729155 -3.1797103, 55.9781114 -3.2484720, 55.9776632 -3.1715933, 55.9129316 -3.2587696, 55.9481947 -3.1326994, 55.9496979 -3.1282542, 55.9505798 -3.1256483, 55.9315629 -3.0896016, 55.9316842 -3.0896474, 55.9524166 -3.1898362, 55.9356573 -3.0894033, 55.9357351 -3.0893738, 55.9357644 -3.0895096, 55.9517230 -3.1626551, 55.9195263 -3.1315612, 55.9204725 -3.1296564, 55.9271898 -3.2322404, 55.9752701 -3.1721362, 55.9369948 -3.1150582, 55.9498020 -3.1279042, 55.9335311 -3.2460168, 55.9655017 -3.1987663, 55.9414288 -3.2607445, 55.9492160 -3.2339763, 55.9492137 -3.2340282, 55.9401509 -3.1051771, 55.9185615 -3.2564239, 55.9182467 -3.2558059, 55.9255939 -3.2592967, 55.9621338 -3.2357562, 55.9550072 -3.1721666, 55.9554953 -3.1694437, 55.9557105 -3.1678403, 55.9198790 -3.2500668, 55.9491095 -3.1886633, 55.9483181 -3.1921400, 55.8985472 -3.2526169, 55.9347539 -3.0927986, 55.9264412 -3.2440999, 55.9545824 -3.1236067, 55.9502050 -3.1185776, 55.9503672 -3.1183641, 55.9502919 -3.1184525, 55.9514019 -3.1213054, 55.9515864 -3.1214448, 55.9384573 -3.2506124, 55.9781360 -3.2042135, 55.9384983 -3.1011659, 55.9383994 -3.1013350, 55.9360595 -3.0997430, 55.9360181 -3.0994647, 55.9352687 -3.0936685, 55.9604056 -3.1691746, 55.9385531 -3.2456125, 55.9203567 -3.2494068, 55.8936687 -3.1341152, 55.9523112 -3.2197346, 55.9062132 -3.1443033, 55.9410985 -3.2191428, 55.9800561 -3.1685204, 55.9186191 -3.2133230, 55.9197518 -3.1694474, 55.9195114 -3.1713437, 55.9189800 -3.1809284, 55.9200112 -3.1691248, 55.9201390 -3.1981185, 55.9191575 -3.2099986, 55.9203639 -3.1969606, 55.9265630 -3.1932263, 55.9188974 -3.1826016, 55.9189592 -3.1842633, 55.9202821 -3.1940116, 55.9398079 -3.2219646, 55.9784752 -3.2465952, 55.9789044 -3.2447848, 55.9679775 -3.1369332, 55.9717821 -3.1844100, 55.9717093 -3.1860244, 55.9717076 -3.1875125, 55.9681145 -3.1895803, 55.9442882 -3.1018500, 55.9399673 -3.2399943, 55.9394933 -3.2453748, 55.9559483 -3.1383567, 55.9572590 -3.1673552, 55.9516244 -3.1908922, 55.9514059 -3.1888093, 55.9670658 -3.1880808, 55.9081994 -3.2566236, 55.9151194 -3.2550825, 55.9122549 -3.2233845, 55.9364645 -3.0866076, 55.9622791 -3.2012126, 55.9421801 -3.2471095, 55.9354120 -3.1193612, 55.9393811 -3.2455628, 55.9383946 -3.2504900, 55.9382808 -3.2503344, 55.9407555 -3.1334453, 55.9536468 -3.1183721, 55.9521945 -3.1196977, 55.9523374 -3.1199969, 55.9389764 -3.2564267, 55.9028769 -3.1704602, 55.9403251 -3.1711216, 55.9559244 -3.1689031, 55.8943845 -3.1612267, 55.9457633 -3.1036022, 55.9471038 -3.1039051, 55.9501220 -3.1187317, 55.9512778 -3.1212874, 55.9506598 -3.1233359, 55.9372017 -3.1058578, 55.9553192 -3.1595172, 55.9650413 -3.2056001, 55.9639941 -3.2050491, 55.9640506 -3.2037879, 55.9644677 -3.2053237, 55.9768122 -3.1695301, 55.9460367 -3.0786225, 55.9641866 -3.2051688, 55.9698896 -3.2368187, 55.9414313 -3.0989766, 55.9784045 -3.1624012, 55.9436659 -3.0898885, 55.9714931 -3.1855918, 55.9644884 -3.2607345, 55.9528270 -3.1190826, 55.9496106 -3.2250631, 55.9360819 -3.0998763, 55.9116079 -3.2325243, 55.9093972 -3.2356124, 55.9024688 -3.2478207, 55.9793014 -3.1868073, 55.9301289 -3.1759929, 55.9523329 -3.1219744, 55.9523473 -3.1218286, 55.9237523 -3.2486106, 55.9667609 -3.1986965, 55.9612817 -3.2180808, 55.9394512 -3.2452451, 55.9431085 -3.2293645, 55.9430025 -3.2292568, 55.9409323 -3.2384857, 55.9430616 -3.2293168, 55.9395239 -3.2453984, 55.9393795 -3.2453481, 55.9394029 -3.2453236, 55.9819463 -3.1774723, 55.9172828 -3.2148269, 55.9733364 -3.1998767, 55.9082028 -3.1062073, 55.9064191 -3.2363051, 55.9089283 -3.2357059, 55.9026053 -3.2453772, 55.9226886 -3.1659385, 55.9289089 -3.2483770, 55.9596457 -3.1649121, 55.9518333 -3.2180730, 55.9404913 -3.2132648, 55.9412112 -3.2385524, 55.9395609 -3.2454472, 55.9433784 -3.2295944, 55.9203199 -3.1339112, 55.9434087 -3.2296013, 55.9384884 -3.2506410, 55.9410200 -3.2385372, 55.9395943 -3.2454714, 55.9412402 -3.2385785, 55.9399507 -3.2400017, 55.9409900 -3.2385210, 55.9410979 -3.2385587, 55.9330752 -3.2518749, 55.9044032 -3.1455205, 55.9195813 -3.1706208, 55.9352633 -3.0935375, 55.9347372 -3.0928218, 55.8956840 -3.2110087, 55.8948418 -3.2158308, 55.8946710 -3.2156575, 55.8949531 -3.2113167, 55.8939386 -3.2155602, 55.8951467 -3.2161873, 55.8948458 -3.2116936, 55.8951646 -3.2111469, 55.8906180 -3.2303624, 55.8924010 -3.2267274, 55.8934535 -3.2249209, 55.8904695 -3.2299954, 55.9171429 -3.1435645, 55.9174253 -3.1426070, 55.9501752 -3.1186403, 55.9502514 -3.1185072, 55.9025541 -3.1224669, 55.9734337 -3.1921970, 55.9481275 -3.2086529, 55.9486679 -3.2080093, 55.9413168 -3.2110594, 55.9562630 -3.2104579, 55.9514557 -3.1889452, 55.9527669 -3.1872478, 55.9639844 -3.2293081, 55.9431363 -3.2293927, 55.9431629 -3.2294198, 55.9432761 -3.2295356, 55.9432343 -3.2294925, 55.9431947 -3.2294521, 55.9563108 -3.2104273, 55.9198136 -3.1910370, 55.9198330 -3.1912323, 55.9519638 -3.1893881, 55.9513717 -3.1889027, 55.9444560 -3.2438143, 55.9276018 -3.1242863, 55.9401029 -3.2459404, 55.9400509 -3.2458788, 55.9556775 -3.1678207, 55.9549782 -3.1721413, 55.9554652 -3.1694213, 55.9550351 -3.1719805, 55.9563502 -3.1500510, 55.9552887 -3.1595205, 55.9550418 -3.1721874, 55.9231423 -3.1317251, 55.9263765 -3.1245977, 55.9320392 -3.1186143, 55.9230920 -3.1288480, 55.9264003 -3.1245253, 55.9238791 -3.1301288, 55.9249092 -3.1317835, 55.9574633 -3.1234478, 55.9450755 -3.0796893, 55.9442484 -3.1018255, 55.9699278 -3.1455846, 55.9013948 -3.1244584, 55.8988473 -3.1283552, 55.9231539 -3.2480582, 55.9164084 -3.1849654, 55.9177937 -3.1846644, 55.9240254 -3.2490676, 55.9370530 -3.1415506, 55.9517467 -3.2180959, 55.9446512 -3.0880046, 55.9021342 -3.2501766, 55.8943042 -3.1626305, 55.9038648 -3.1462199, 55.9121932 -3.1484610, 55.9074964 -3.1559715, 55.9071592 -3.1590133, 55.8988194 -3.1121826, 55.9025795 -3.1224539, 55.9469959 -3.1020369, 55.9408433 -3.2281719, 55.9195311 -3.2619429, 55.9258506 -3.2453444, 55.9386774 -3.2294745, 55.9316864 -3.2343155, 55.9236107 -3.2499213, 55.9513043 -3.1888663, 55.9506990 -3.1783969, 55.9513642 -3.1213511, 55.9436387 -3.0899418, 55.9776667 -3.1692630, 55.9773820 -3.1693259, 55.9772501 -3.1693673, 55.9766189 -3.1695907, 55.9777727 -3.1692450, 55.9774930 -3.1693036, 55.9256594 -3.2520596 +yes +318 +MM, TZ, CN, CO, UZ, QA, SE, ML, RS, CN, SN, SR, GE, PY, AU, BI, CH, PL, IL, CO, US, BE, LK, EC, KR, SY, IT, DZ, SG, BF, UA, ET, FI, ZA, AT, LU, BG, CA, DE, BR, CN, ES, RO, PK, VA, IR, EG, YE, OM, DK, SO, CY, GR, UY, BH, KW, AR, VE, MX, KE, BJ, LB, PE, LA, BJ, CI, AO, IE, CD, KM, DE, LV, CA, GH, HU, TD, LT, DJ, AL, PT, PK, MA, MY, NE, GN, MR, NG, UG, ID, KH, RU, IN, MG, AF, MC, SK, PH, SC, MA, TR, BE, AM, LR, PT, CM, DZ, VN, CL, ZA, SN, TN, NL, NO, GB, ML +451 +no +102 +yes +48.8600225 2.3936303 +エディンバラ +Fresque du Demi-Millénaire - Part 2, Le quartier des Eats-Unis (mur 18), Fresque Histoire des transports Lyonnais, Fresque "Lyon, la santé, la vie", Le mur du cinéma, Fresque de Gerland, La Fresque Lumineuse - La ville dans le futur, Fresque "Mur Démo", Espace Diego Rivera, Une cité industrielle (mur 4), Fresque de Shangaï, Abattoirs de la Mouche (mur 17), Annonce du Musée (mur 3), Années 1900 (mur 3), Cité idéale d'Egypte (mur 19), Cité idéale de Russie (mur 23), Cité idéale de l'Inde (mur 20), Cité idéale de la Côte d'Ivoire (mur 22), Cité idéale des USA (mur 24), Cité idéale du Mexique (mur 21), École (mur 10), École (mur 10), Etablissements sanitaires (mur 12), Habitations en communs, vue d'ensemble (mur 7), Habitations, vue rapprochée (mur 8), Hôpital de Grange-Blanche (mur 16), La gare, une perspective (mur 6), La tour d'horloges (mur 11), Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Le stade de Gerland (mur 15), Les hauts fourneaux (mur 14), Les services publics (mur 5), Tony Garnier Visionnaire (mur 2), Vue des usines (mur 13), Cité idéale de la Côte d'Ivoire (mur 22), Fresque "La renaissance", Fresque "Montluc - Jean Moulin", Fresque "Art et Industrie", Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, La Fresque du Demi-Millenaire - Part 1, Fresque idéale de Québec, Fresque "Oullins Centre-ville", Fresque "Du Pont d'Oullins", Mur peint : L’auberge savoyarde, La Fresque du Foyer, La Fresque Art Déco, Fresque RTE Lyon La Mouche, Fresque, Fresque "Chez Jeanne", Fresque "Allée Arborée", Fresque "La Forge", Fresque "Les Diligences", Fresque "Les Vieux Métiers 1", Fresque "Les Vieux Métiers 2", La Fresque du Centenaire 1912-2012, La Fresque du Centenaire 1912-2012, Fresque "Gerland Biotechnologies", Fresque des Vourlois", Fresque du Gymnase, Fresque des Roses - St Priest, Fresque des Roses - Lyon, Av Santy, Fresque Agir pour la biodiversité, Fresque aerosol, Fresque "Les basiliques de Saint-Just", Fresque Le marathon de l'impossible, Fresque "La cité KAPS" and 45.7242776 4.8539418, 45.7316295 4.8668787, 45.7484993 4.8788479, 45.7498654 4.8759864, 45.7549115 4.8434004, 45.7245886 4.8263897, 45.7433556 4.8405258, 45.7196057 4.8008161, 45.7318565 4.8358705, 45.7326668 4.8630359, 45.7375747 4.8616255, 45.7321697 4.8664580, 45.7336465 4.8632348, 45.7328203 4.8629032, 45.7320947 4.8674966, 45.7330177 4.8657973, 45.7324535 4.8672057, 45.7331360 4.8666865, 45.7335600 4.8653728, 45.7325955 4.8671070, 45.7319545 4.8635870, 45.7321249 4.8634546, 45.7316965 4.8647521, 45.7323801 4.8642213, 45.7322374 4.8643323, 45.7323075 4.8663529, 45.7329498 4.8637779, 45.7314132 4.8640073, 45.7385048 4.8613236, 45.7387649 4.8607244, 45.7389336 4.8609359, 45.7328475 4.8659300, 45.7310051 4.8652929, 45.7331061 4.8636557, 45.7333891 4.8624614, 45.7315452 4.8648710, 45.7332067 4.8666311, 45.7165371 4.8098566, 45.7493533 4.8609118, 45.6634167 4.8424264, 45.7209120 4.8541671, 45.7235048 4.8539594, 45.7222175 4.8540626, 45.7227953 4.8540163, 45.7249477 4.8538288, 45.7342924 4.8626980, 45.7150814 4.8078204, 45.7175164 4.8098900, 45.7450213 4.8660796, 45.7502318 4.8416473, 45.7513725 4.8390037, 45.7205996 4.8439283, 45.5828000 4.6317350, 45.7083270 4.8272787, 45.7318628 4.9995743, 45.7316843 5.0009960, 45.7317208 4.9997166, 45.7322290 4.9975134, 45.7340142 4.9964253, 45.7337846 4.9972670, 45.7449245 4.8424444, 45.7452687 4.8413678, 45.7252956 4.8413865, 45.6584498 4.7736478, 45.7081288 4.7481631, 45.6946293 4.9406443, 45.7296178 4.8752517, 45.7463509 4.8459884, 45.7297744 4.8742560, 45.7551709 4.8469660, 45.7434934 4.8478974, 45.7559238 4.8169452, 45.7447945 4.9069783, 45.7179757 4.8174971, 45.7180962 4.8187223 +post office, post box, kindergarten, park, parking, school, telephone, pub, place of worship, bus station, recycling, library, bank, fuel, restaurant, bicycle parking, toilets, atm, cinema, doctors, pharmacy, cafe, police, fast food, bar, nightclub, car rental, Forestry Commission staff bicycle shed, leisure, community hall, college, medical centre, dentist, third sector offices, community project, public building, arts centre, car sharing, bureau de change, theatre, biergarten, fire station, masonic lodge, bench, bbq, parking entrance, university, taxi, marketplace, grit bin, stripclub, social facility, conference centre, dressmaker, gambling, consulate, brothel, veterinary, clock, waste basket, fountain, shop, vending machine, shelter, posts, dance hall, picnic bench, car wash, Austrian cosulate, swimming pool, Botanic House Hotel, grave yard, motorcycle parking, chiropodist, juice bar, waste transfer station, chiropractor, bookmakers, waste disposal, fitness center, drinking water, photo booth, clinic, vacuum, jet wash, Rhythms of Resistance practice, casino, ice cream, tourism, embassy, charging station, courthouse, community centre, register office, bingo, hairdressing, Renaissance Restoration, patisserie, printer, Haircutting, finanacial advisor, Hairdressing, Nailcare, physiotherapy, Sauna, studio, yes, spa, Yoga, food court, Cabaret, funeral, academi, hotel, financial advice, internet cafe, sauna, language centre, prison, disused, hospital, bandstand, health centre, nursing home, ammusements, townhall, amusements, crematorium, mortuary, pontoon, parking lane, RBGE Lecture theater, post depot, harbour master, kiosk, Music Shop, social centre, reception area, scout hall, childcare, animal shelter, animal boarding, common, nursery, care home +49.4118566 8.7016009 +Standing Stone, Caiy Stane, Standing Stone, Balm Well, Cup and Ring Marked Rocks, Stone, Hanging Stanes, The Buckstane, Cat Stane, Bonnington Mill Waterwheel (remains), Physic Well, Fort, Bonnington Weir, Hatton House +55.9387357 -3.3996538, 55.9380963 -3.4051984, 55.9385221 -3.4040472, 55.9386848 -3.4052874, 55.9333966 -3.3543268, 55.9024677 -3.2131994, 55.9579939 -3.3233291, 55.9028966 -3.1642422, 55.9122291 -3.3948137, 55.8798835 -3.3439577, 55.9226836 -3.2094162, 55.9101467 -3.2093552, 55.9546676 -3.3637002, 55.9222410 -3.1492085, 55.9710480 -3.1879850, 55.9387885 -3.2890803, 55.8869268 -3.2813599, 55.9691744 -3.1898383, 55.9045439 -3.3952157, 55.9729762 -3.1721306 +5 +yes +52 +french, indian, vegetarian, mexican, pasta, chinese, thai, regional, vietnamese, japanese, couscous, grill, belgian, italian, arab, international, Vietnamese, pizza, New-french, libre, Corse, american, sichuan, Lanzhou, lebanese, peruvian, sushi-yakitori, turkish, crepe, Lebanon, sushi, asian, kebab, Sushi-yakitori, shandong, traditional, Sardaigne, steak house, Persan (Iranien), Vietnamien, mediteranean, japonais, seafood, korean, latin american, Lao, spanish, burger, corsican, moroccan, algerian, Bistrot gastronome, sandwich, gastronomic, jewish, corean, bagel, polish, argentinian, belgium, tibetan, marocan, vietnamien-cambodgien, tapas, see food, vietnam, Lebanese, brunch, senegalese, kosher, Hangzhou, smart traditional, fish, marocain, brasilian, berber, greek, ivoirian, libanese, polonese, african, chineses (Teochew) - 中国潮州, Océan indien, latino, fondue, Cambodgien, basque, crêpe, local, maltese, chinese - Fondue pékinoise, ethiopian, Sud-Ouest France, creole, mediterranean, brasserie, crepes, coffee shop, coréen, breton, magreb, malaysian, indonesian, thai fruit juces, bistro, brazilian, cocktails, crèpes, morrocan, Indian, iranian, traiteur japonais, Coréen, Grec, ramen, brazil, American, Lyonnaise, Amérique du Sud - Argentine, Japanese, pâtisserie sans gluten, mongol, Cap Vert, portuguese, ukrainian, meat, française, pizza bio, lao, cambodgian, mauritian, Kebab, salad, caribbean, Oriental Couscous, oriental, Jiangxi, international (Francaise, sud americaine), berbere, oriental couscous, colombian, marocaine, classique, paella, Française, african caribbean, new york pizza, north african, indian pakistanese, Chinese, Sichuan, Burger, Armenian, ouïghour, irak, cuisine nissarde, salade, bio, cake, gluten free, Thai, seasonal, Kazakh, Russe, Italiano, huoguo, bento, maroc, crèpe, mediterean, mediterrneen, russian, Sandwich, organic, régional, vegan, salon de thé, restaurant +49.3826654 8.6703241, 49.3795039 8.6788777, 49.3994731 8.6498961, 49.3795039 8.6788791, 49.3795039 8.6788799, 49.3795039 8.6788784, 49.3795039 8.6788807 +no +yes +yes ++496221166707 +48.8560795 2.3115715, 48.8660977 2.3554138, 48.8957518 2.3879761, 48.8957352 2.3886935, 48.8660456 2.3145051, 48.8414574 2.3172246, 48.8677629 2.2935696, 48.8625016 2.3453019, 48.8705899 2.3500828, 48.8618163 2.2873421, 48.8404563 2.3198526, 48.8607161 2.3525007, 48.8960350 2.3884154, 48.8609823 2.2977973, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8661515 2.3122667, 48.8505164 2.3621847, 48.8599188 2.3265259, 48.8794667 2.3125380, 48.8553042 2.3158566, 48.8755169 2.3105465, 48.8373190 2.3319319, 48.8432079 2.3186583, 48.8421181 2.3562419, 48.8344502 2.3520875, 48.8657061 2.2966614, 48.8576820 2.3627148, 48.8614768 2.3351679 +55.9440035 -3.1620073 +48.8547859 2.3941295 +49.4125622 8.6856608, 49.4028079 8.6877203, 49.4132392 8.6920033, 49.4101353 8.6927154, 49.4171332 8.6926969, 49.4131244 8.6897970, 49.4122418 8.6816335 +12 +Greyfriars Bobby Statue +no +17 +yes +yes +49.4176558 8.6587085, 49.4146001 8.7738410, 49.4162757 8.6922037, 49.4306151 8.6467040, 49.4055996 8.6889278, 49.3773672 8.6667238, 49.3834643 8.6624283, 49.3974698 8.6477849, 49.4121728 8.7080504, 49.4123763 8.7095125, 49.4089611 8.6957225, 49.4083867 8.6927384, 49.4115665 8.7029371, 49.4091521 8.6979357, 49.4178759 8.6766696, 49.3995142 8.6850002, 49.4070439 8.6949350, 49.3742086 8.7031163, 49.4061045 8.6919006, 49.4087049 8.7054045, 49.4136428 8.6936066, 49.4079188 8.6896894, 49.4071802 8.6893369, 49.4278664 8.6462916, 49.4269602 8.6468617, 49.3896229 8.6900545, 49.3790377 8.6919226, 49.3810024 8.6888615, 49.4118680 8.7106616, 49.4085554 8.6900358, 49.3772275 8.6672364, 49.3799233 8.6752091, 49.4254663 8.6892002, 49.4317284 8.6827286, 49.4235631 8.6886029, 49.3887612 8.6898215, 49.4143279 8.6877116 +Viernheim, Schifferstadt, Walldorf, Hemsbach, Speyer, Bad Schönborn, Philippsburg, Eppelheim, Leimen, Weinheim, Waghäusel, Sandhausen, Neuhofen, Edingen-Neckarhausen, Dossenheim, Hockenheim, Schriesheim, Schwetzingen, Ladenburg +15 +52.5069115 13.3228318, 52.5062394 13.3173230, 52.5087263 13.3203546, 52.5063184 13.2846256, 52.5701303 13.3098188, 52.5044686 13.3827465, 52.5152342 13.3889227, 52.5235613 13.4109816, 52.5827216 13.2901148, 52.5655612 13.3209279, 52.5308522 13.4125641, 52.5399180 13.4177150, 52.4900267 13.3607275, 52.4874148 13.3493595, 52.5028483 13.3315231, 52.4878837 13.2628406, 52.5082357 13.2578049, 52.4877481 13.3204876, 52.5193671 13.4276134, 52.5275249 13.3992376, 52.4969768 13.3128491, 52.5194671 13.3556992, 52.4304694 13.2304081, 52.4881781 13.3703210, 52.4911781 13.3684657, 52.4339812 13.3592913, 52.4751067 13.3234171, 52.5083325 13.4531621, 52.4900350 13.3827424, 52.4897481 13.3832833, 52.4747650 13.4469205, 52.6350882 13.4995196, 52.5095363 13.4580560, 52.5160850 13.4564770, 52.5179670 13.4676240, 52.5153376 13.4718582, 52.4982357 13.3189482, 52.4919428 13.4211845, 52.5073540 13.3204878, 52.5076500 13.3180837, 52.5552143 13.4388386, 52.5924426 13.3263936, 52.4948730 13.4155705, 52.5210713 13.3573605, 52.4814692 13.3483659, 52.6331209 13.2886358, 52.5881097 13.2855979, 52.5442796 13.2040241, 52.5213052 13.3852660, 52.5201055 13.4499899, 52.5147963 13.3811044, 52.5298163 13.4448184, 52.4133800 13.3624524, 52.5096866 13.1801984, 52.5335195 13.4036376, 52.4885454 13.4073498, 52.4821596 13.3825900, 52.5210049 13.3850412, 52.5101889 13.3763490, 52.5228146 13.3824135, 52.5250993 13.3871462, 52.4391233 13.3440738, 52.5052560 13.3197902, 52.4576996 13.2907097, 52.4726336 13.3216954, 52.4246828 13.3307770, 52.5192482 13.2984365, 52.5140665 13.2973768, 52.4999586 13.4755158, 52.4559667 13.5510826, 52.4270030 13.2180894, 52.5231246 13.3595877, 52.5113636 13.3078414, 52.5452910 13.4214510, 52.5320137 13.3964652, 52.5339232 13.4020087, 52.5018111 13.3556523, 52.5931545 13.3819714, 52.5000304 13.3041273, 52.4508283 13.1466473, 52.4363046 13.7171060, 52.5351839 13.2710239, 52.4597976 13.3220647, 52.4992112 13.3016415, 52.4585397 13.3166172, 52.4994281 13.4454712, 52.6202937 13.3137992, 52.5419282 13.4204549, 52.5439069 13.4176124, 52.4874902 13.3545389, 52.4873504 13.3541267, 52.4438246 13.2933907, 52.5263442 13.2977323, 52.5122149 13.4954972, 52.4467398 13.3150321, 52.5266828 13.3968336, 52.5236397 13.4027624, 52.4994296 13.3068697, 52.5190043 13.4092910, 52.5190513 13.4295589, 52.5018008 13.3008448, 52.5328024 13.4245980, 52.5365752 13.2046599, 52.4975767 13.2918904, 52.4988369 13.2994295, 52.4439488 13.4323140, 52.5217320 13.3250972, 52.5531442 13.4140118, 52.5529712 13.4139794, 52.5378953 13.2030051, 52.4531819 13.4522533, 52.4407417 13.4592066, 52.4238137 13.4854959, 52.5298871 13.4713873, 52.4405190 13.3878949, 52.4553115 13.3747762, 52.4210262 13.2976603, 52.5073215 13.3138562, 52.4863289 13.4651538, 52.4300110 13.2238749, 52.4556040 13.3173913, 52.4853846 13.3477060, 52.5152881 13.4683393, 52.4820229 13.3169195, 52.4864004 13.3189983, 52.4861530 13.3228290, 52.4860835 13.3290663, 52.5874017 13.2855961, 52.5063136 13.3769923, 52.4115692 13.3424025, 52.5034406 13.3062941, 52.5037231 13.3050833, 52.5467849 13.4178351, 52.4897934 13.3795333, 52.5436877 13.4166071, 52.4900743 13.4245113, 52.4837246 13.2667894, 52.5452558 13.4173243, 52.5458583 13.4178349, 52.5152520 13.4676370, 52.3868165 13.3950979, 52.5874767 13.2846426, 52.3920720 13.4020275, 52.5278460 13.4034219, 52.5016068 13.3253374, 52.5271255 13.3298305, 52.5297533 13.3284790, 52.5275792 13.3303878, 52.5520716 13.4081330, 52.5236838 13.3874161, 52.5087225 13.2681911, 52.4868832 13.2846499, 52.4757170 13.2907370, 52.5010184 13.4974647, 52.4899162 13.3117635, 52.4233415 13.4362432, 52.5248544 13.3381275, 52.5004111 13.4317600, 52.4837200 13.2829887, 52.5204821 13.3939696, 52.5123526 13.2678588, 52.5113071 13.3983307, 52.5113327 13.2695740, 52.5164118 13.2598493, 52.5385110 13.4162100, 52.5263187 13.3927162, 52.5226906 13.5567986, 52.5082551 13.2584459, 52.5473004 13.3893260, 52.5531314 13.1990761, 52.6212404 13.3136198, 52.6012705 13.2467275, 52.5178177 13.2932026, 52.4452085 13.2933119, 52.4467726 13.3062338, 52.4523308 13.3200626, 52.5026881 13.3091942, 52.5026355 13.3086870, 52.5044147 13.3153971, 52.5064745 13.3203237, 52.5299462 13.4042591, 52.4215057 13.4945968, 52.4196696 13.4934625, 52.4873581 13.3228612, 52.5032428 13.3155784, 52.5031733 13.3168532, 52.5097710 13.3041806, 52.5042380 13.2947598, 52.5072909 13.2267518, 52.5006731 13.2963304, 52.5166214 13.2957794, 52.5114074 13.3007945, 52.3759416 13.6488756, 52.4931077 13.3473957, 52.4896709 13.4339609, 52.5773500 13.3980944, 52.5874952 13.4020387, 52.4890372 13.1808833, 52.5140829 13.4686228, 52.5105480 13.4575340, 52.4979365 13.3377335, 52.4978697 13.3339609, 52.4258695 13.4781647, 52.4355861 13.5481059, 52.4346528 13.5433155, 52.4774025 13.2875429, 52.4947897 13.4144665, 52.4962071 13.3427033, 52.4994710 13.3423629, 52.4951994 13.3397676, 52.5036107 13.3428877, 52.5011283 13.3248922, 52.5020516 13.3274590, 52.5019174 13.3149696, 52.5037050 13.3137120, 52.5387878 13.4102285, 52.5404869 13.4115154, 52.5372942 13.4081004, 52.5372945 13.3965114, 52.5560901 13.5584639, 52.4896443 13.4073191, 52.5865820 13.4017960, 52.4193446 13.2652215, 52.5011858 13.4165717, 52.4928059 13.4162032, 52.4938330 13.4138351, 52.4959732 13.3388640, 52.4596179 13.3637266, 52.4137912 13.1440820, 52.5094177 13.3918636, 52.5137798 13.3867873, 52.5190936 13.2936265, 52.4823860 13.2889504, 52.5088670 13.3886297, 52.5116312 13.2935277, 52.5135524 13.3067557, 52.5091159 13.3231962, 52.5084112 13.3230343, 52.4782413 13.4480833, 52.4630360 13.3192411, 52.4947349 13.3354157, 52.5086626 13.3233372, 52.4896266 13.4087372, 52.5121323 13.3111276, 52.5009630 13.4308196, 52.4918249 13.4138554, 52.4909534 13.4133602, 52.5274294 13.3865661, 52.4916792 13.3908912, 52.4887560 13.3973908, 52.4878619 13.4192284, 52.5123284 13.4174384, 52.5226711 13.3999181, 52.4362446 13.2599715, 52.4377056 13.2572691, 52.5194461 13.1715958, 52.4402291 13.4163377, 52.4167016 13.3386462, 52.5200759 13.3912892, 52.4156660 13.3038181, 52.4654911 13.3838958, 52.4167232 13.3150006, 52.4601320 13.3250202, 52.4378895 13.2951160, 52.5109054 13.2925759, 52.5889692 13.2808143, 52.5142787 13.4934208, 52.5241670 13.3495977, 52.4380752 13.2619078, 52.5098693 13.4555970, 52.4289520 13.2594051, 52.4388951 13.2620348, 52.4146202 13.2667181, 52.4526569 13.3712229, 52.5052060 13.4671770, 52.5682194 13.4397025, 52.4476546 13.3889907, 52.5653066 13.4040842, 52.5264091 13.3878587, 52.5475111 13.3539858, 52.5196031 13.3006048, 52.5047787 13.3281340, 52.4611303 13.3208711, 52.4653532 13.3261806, 52.4050239 13.5732228, 52.5283027 13.4250842, 52.4695855 13.3436400, 52.4646458 13.3386915, 52.4510479 13.3410754, 52.4888808 13.4514304, 52.5713143 13.3772117, 52.5024545 13.3235066, 52.4658535 13.4325440, 52.5069310 13.3001008, 52.5522064 13.4194146, 52.5274628 13.4034075, 52.5490461 13.3539211, 52.5614452 13.2087194, 52.4376800 13.2334683, 52.5052427 13.3276748, 52.4705900 13.4683231, 52.4527994 13.2878293, 52.4781316 13.3130289, 52.5255247 13.3087669, 52.5555648 13.3418651, 52.4894064 13.3170840, 52.5893322 13.3346494, 52.4714028 13.3850943, 52.5420950 13.3978570, 52.5839059 13.3027831, 52.5077312 13.3108621, 52.4996151 13.4258374, 52.5360798 13.4179449, 52.4754702 13.3397296, 52.4662347 13.3839426, 52.5186770 13.3856040, 52.5188432 13.3855752, 52.5228090 13.4014188, 52.4542633 13.5174410, 52.4771684 13.2900752, 52.5345549 13.3538560, 52.5289034 13.3949740, 52.5282595 13.3935979, 52.4771310 13.4211842, 52.5111668 13.4565932, 52.4881604 13.3396191, 52.4787252 13.3449806, 52.5089982 13.2222587, 52.5103714 13.3785200, 52.4876209 13.3908878, 52.5369310 13.2667883, 52.5363712 13.2703134, 52.5368276 13.2710080, 52.4267629 13.3738584, 52.4815005 13.4264323, 52.5222512 13.3845929, 52.5073189 13.3258386, 52.3993983 13.4099124, 52.5026176 13.3851524, 52.4476904 13.5756307, 52.4932741 13.5064620, 52.5057403 13.3263663, 52.4922732 13.4255285, 52.4192490 13.3428855, 52.5361571 13.4180559, 52.5229923 13.4006601, 52.4294113 13.3225497, 52.4491222 13.3524470, 52.4496117 13.3486078, 52.4959130 13.4677778, 52.5390377 13.4213263, 52.5014913 13.4189492, 52.6097807 13.3295938, 52.5429358 13.5711923, 52.5280126 13.4100471, 52.4946934 13.3384248, 52.4864504 13.3514701, 52.4424028 13.2834388, 52.4816526 13.4310556, 52.4326111 13.3000801, 52.4699508 13.3253463, 52.5493102 13.3615754, 52.4546344 13.5765736, 52.4634443 13.3388174, 52.4201088 13.5004855, 52.5415299 13.3499703, 52.5222734 13.4498672, 52.4774287 13.3306646, 52.4900931 13.3837738, 52.4449480 13.3745728, 52.5374786 13.4176373, 52.4990616 13.3107853, 52.5036578 13.3467190, 52.5322498 13.3951179, 52.4936308 13.3229806, 52.4202395 13.4917437, 52.5258997 13.3904417, 52.5258840 13.3903475, 52.4970593 13.3558268, 52.5504924 13.4582409, 52.4417913 13.3540066, 52.5712732 13.4100235, 52.5641446 13.3921067, 52.4579728 13.3289151, 52.5001369 13.3499859, 52.4967905 13.3513753, 52.4853686 13.3623514, 52.4999022 13.3140264, 52.4998037 13.3193377, 52.5022762 13.3292750, 52.5036377 13.3346609, 52.5039022 13.3349181, 52.5089504 13.4597844, 52.5223761 13.3244308, 52.4976201 13.3245734, 52.4972963 13.3240386, 52.4986838 13.3244008, 52.4994685 13.3250047, 52.4935279 13.3217261, 52.4980199 13.3188341, 52.5028066 13.4546539, 52.4980348 13.3266685, 52.4998461 13.3272413, 52.4975750 13.3541708, 52.4986907 13.3134634, 52.4383812 13.5497315, 52.5050216 13.3213128, 52.5049376 13.3229348, 52.5031210 13.3222555, 52.5098870 13.3009280, 52.5259324 13.3121837, 52.4845244 13.4279564, 52.5030064 13.3163054, 52.4908268 13.3249581, 52.4839434 13.3615848, 52.5067881 13.3984014, 52.4986531 13.4316113, 52.5032919 13.3173579, 52.4947170 13.3046819, 52.4511407 13.3394316, 52.4467908 13.3430905, 52.5157794 13.3901013, 52.4737374 13.4236238, 52.5486148 13.4204475, 52.4860426 13.3942041, 52.5038063 13.3478626, 52.4993795 13.3124574, 52.5025765 13.3362913, 52.5026543 13.3369574, 52.5018623 13.3542508, 52.5192960 13.5555643, 52.5277674 13.4013573, 52.4901678 13.3859053, 52.4723227 13.4427795, 52.5093777 13.4122062, 52.6376588 13.4916475, 52.4819439 13.3209658, 52.4996078 13.3017208, 52.5610130 13.4108304, 52.5111411 13.4524069, 52.5264284 13.3495377, 52.5077054 13.3224097, 52.4533015 13.1446473, 52.5052029 13.3213508, 52.5053698 13.3213997, 52.5052522 13.3206141, 52.5026008 13.4541578, 52.5039396 13.4496705, 52.4742122 13.3225369, 52.4967594 13.2927776, 52.4964959 13.2925474, 52.4651273 13.3211790, 52.5044862 13.3572887, 52.5680460 13.3297663, 52.4516240 13.6245675, 52.5097763 13.2743919, 52.4802446 13.3474984, 52.5058808 13.2998222, 52.5052101 13.2994779, 52.5048823 13.2989499, 52.5051950 13.3010238, 52.5050908 13.2982867, 52.4783394 13.3302113, 52.4783316 13.3280731, 52.5016581 13.3215066, 52.4901661 13.3879453, 52.5232387 13.4083649, 52.5069262 13.3046572, 52.5069351 13.3041941, 52.5332160 13.4068670, 52.5344093 13.4862470, 52.4943580 13.4338436, 52.5033917 13.3194823, 52.5076652 13.3092003, 52.5914706 13.2987461, 52.5322456 13.4288704, 52.5196349 13.3922870, 52.4376187 13.2154785, 52.4427186 13.5064825, 52.4379660 13.5486403, 52.5023777 13.4306011, 52.5257634 13.3876676, 52.4661421 13.3066430, 52.4470205 13.4017563, 52.5262627 13.3937995, 52.5252240 13.3045958, 52.5150743 13.4542099, 52.5053500 13.3382000, 52.5324240 13.4097060, 52.5115672 13.2928275, 52.4933373 13.4346900, 52.5071988 13.4710171, 52.5191259 13.4373449, 52.5269167 13.4078023, 52.5282859 13.3305850, 52.5384039 13.4194694, 52.5398010 13.4069520, 52.4530487 13.5104700, 52.4894382 13.3967172, 52.5182854 13.3231069, 52.5020333 13.3292818, 52.5413988 13.4096054, 52.5008974 13.3076421, 52.5016957 13.3097274, 52.4981925 13.3003248, 52.5285182 13.3944661, 52.5038119 13.3298485, 52.5750390 13.5182607, 52.4984908 13.3577298, 52.5419431 13.3565439, 52.4186690 13.3991784, 52.4888557 13.3290126, 52.4878185 13.3313451, 52.4911897 13.3312448, 52.5358328 13.4226530, 52.4705605 13.3346022, 52.4688809 13.3333144, 52.5127542 13.4172149, 52.4968455 13.3848640, 52.4789536 13.3439700, 52.4792535 13.3445743, 52.4927046 13.3872113, 38.3255285 -75.2196085, 52.5044321 13.3375029, 52.4552268 13.4447934, 52.5223558 13.3842198, 52.5101364 13.2799067, 52.5258909 13.3942026, 52.5082660 13.3750140, 52.4259332 13.3927884, 52.5284097 13.3789426, 52.4888517 13.3290677, 52.5367899 13.5872268, 52.4467074 13.5619791, 52.5970445 13.2960778, 52.4821129 13.3578265, 52.5870901 13.2257923, 52.4828435 13.2666188, 52.4771940 13.2799944, 52.4442621 13.2908896, 52.5227419 13.3946251, 52.5443211 13.1691522, 52.4170312 13.3992234, 52.4315102 13.2309184, 52.4239574 13.3715960 +Apex Edinburgh International +49.4095367 8.7037082, 49.4132139 8.7078103 +98 +49.4071068 8.6898761, 49.4168755 8.6790034 +yes +55.9492055 -3.1928272 and 55.9505405 -3.1879922 +55.9048041 -3.1580079 +yes +memorial +95 +48.8379921 2.2782892, 48.8817403 2.3808725, 48.8820166 2.3809080, 48.8758342 2.4007667, 48.8841787 2.3817284, 48.8742878 2.3724982, 48.8707937 2.3688435 +BNP Paribas +191.68858023944512 +12 +49.3999791 8.6903579, 49.4183136 8.7570658, 49.4128139 8.6783720, 49.4145117 8.6907695, 49.4077612 8.6774779, 49.4072855 8.6846071, 49.4071494 8.6862981, 49.4085419 8.6884195, 49.4114880 8.7036708, 49.4112467 8.7056121, 49.3803180 8.6917254, 49.3789548 8.6920168, 49.3789551 8.6697358, 49.4118400 8.7103033, 49.4101180 8.6997470, 49.3932913 8.6898491, 49.3999572 8.6849703, 49.4055340 8.6909414, 49.4284757 8.6833956, 49.4298020 8.6813390, 49.3813862 8.6715525, 49.3801053 8.6879890, 49.4055840 8.6658584, 49.3805484 8.6587871, 49.4019559 8.6916056, 49.4035568 8.6918554, 49.4089227 8.6927850, 49.3788705 8.6685559, 49.3821598 8.6632293, 49.4076785 8.6917122, 49.4211891 8.6800261, 49.3746688 8.7035666, 49.4103729 8.6964923, 49.3744114 8.6827527, 49.3734828 8.6803866, 49.4089710 8.6939315, 49.4152187 8.7476376, 49.4122637 8.7077964, 49.4034041 8.6828344, 49.4283328 8.6876890, 49.4297175 8.6854401, 49.4294006 8.6822101, 49.4045550 8.6757234, 49.4042051 8.6757454, 49.4055602 8.6759168, 49.3773301 8.6643950, 49.4247182 8.6873975, 49.4254190 8.6871690, 49.4211737 8.7557530, 49.4152481 8.6922641, 49.3804318 8.6878275, 49.3803620 8.6881463, 49.4145068 8.6907391, 49.4148749 8.6923202, 49.4090710 8.6596269, 49.3797613 8.6848437, 49.4230594 8.6488328, 49.4059598 8.6868733, 49.3772126 8.6700382, 49.3782446 8.6730115, 49.4270878 8.6470653, 49.4278529 8.6465726, 49.4188086 8.6517772, 49.3974830 8.6464426, 49.3976777 8.6479965, 49.4073819 8.6570319, 49.4014703 8.6683127, 49.4023052 8.6665425, 49.4081778 8.6881317, 49.4179480 8.7596452, 49.4146130 8.6710105 +fr:Musée en Herbe, fr:La Bellevilloise, fr:Maison européenne de la photographie, fr:Centre musical Fleury Goutte d'Or-Barbara, fr:Le Plateau (centre d'art contemporain), fr:La Bellevilloise, fr:Centre national d'art et de culture Georges-Pompidou, fr:Théâtre de la Gaîté, fr:Hôtel Gouthière, fr:Le Zénith (Paris), fr:Grande halle de la Villette, fr:Pavillon Carré de Baudouin, fr:Centre culturel suédois, fr:Maison des Métallos +48.8224506 2.2983765 +Cameo Bar +yes +yes +49.4004143 8.6826744 +75 +48.8956082 2.3863617 +Gonesse, Villepinte, Neuilly-Plaisance, Neuilly-sur-Marne, Aubervilliers, Athis-Mons, Stains, Noisiel, Le Blanc-Mesnil, Chelles, Maisons-Alfort, Bry-sur-Marne, Aulnay-sous-Bois, Villiers-le-Bel, Chevilly-Larue, Les Lilas, Limeil-Brévannes, Villemomble, Les Pavillons-sous-Bois, Villeneuve-le-Roi, Rosny-sous-Bois, Saint-Brice-sous-Forêt, Vitry-sur-Seine, Joinville-le-Pont, Noisy-le-Grand, Saint-Mandé, Le Bourget, Le Plessis-Trévise, Livry-Gargan, La Courneuve, Le Pré-Saint-Gervais, Villiers-sur-Marne, Montfermeil, Saint-Maurice, Alfortville, Nogent-sur-Marne, Thiais, Fontenay-sous-Bois, Champigny-sur-Marne, Créteil, Boissy-Saint-Léger, Charenton-le-Pont, Noisy-le-Sec, Bobigny, Sevran, Garges-lès-Gonesse, Vigneux-sur-Seine, Sucy-en-Brie, Bagnolet, Le Raincy, Montreuil, Le Perreux-sur-Marne, Montgeron, Le Kremlin-Bicêtre, Arnouville, Champs-sur-Marne, Yerres, Pierrefitte-sur-Seine, Bonneuil-sur-Marne, Sarcelles, Romainville, Saint-Denis, Gagny, Choisy-le-Roi, Villejuif, Valenton, Villeneuve-Saint-Georges, Chennevières-sur-Marne, Ormesson-sur-Marne, Drancy, Bondy, La Queue-en-Brie, Saint-Maur-des-Fossés, Orly, Juvisy-sur-Orge, Ivry-sur-Seine, Vincennes, Pantin, Clichy-sous-Bois +250.5 +44.7695203 -72.0464788 +yes +55.9524898 -3.1736491, 55.9525959 -3.1925077 +48.8373758 2.3176784, 48.8379602 2.2583959, 48.8410120 2.3066005, 48.8570028 2.3007925, 48.8579137 2.3005660, 48.8318670 2.3144693, 48.8395609 2.3021892, 48.8375207 2.2967192, 48.8375266 2.2960585, 48.8276825 2.3271004, 48.8501002 2.3428094, 48.8327092 2.3625620, 48.8304784 2.3562767, 48.8334332 2.3545467, 48.8326050 2.3544168, 48.8530182 2.4058632, 48.8554073 2.3268543, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8529470 2.3434116, 48.8535279 2.3681762, 48.8488712 2.2873446, 48.8189960 2.3382666, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8521024 2.4034631, 48.8318807 2.3568124, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8501765 2.3792170, 48.8507286 2.3779068, 48.8509545 2.3780414, 48.8502726 2.3811628, 48.8330519 2.3316747, 48.8367776 2.2983375, 48.8357338 2.3020633, 48.8369085 2.4021711, 48.8370521 2.4018326, 48.8396803 2.3945209, 48.8400366 2.3946968, 48.8397862 2.3968956, 48.8368227 2.4037506, 48.8368603 2.3917906, 48.8393074 2.3970077, 48.8482696 2.3715140, 48.8470790 2.3740473, 48.8469009 2.3721664, 48.8479197 2.3716692, 48.8461048 2.3740873, 48.8477030 2.3740290, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8457782 2.3745532, 48.8574421 2.3793069, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8344235 2.3052236, 48.8563547 2.3050003, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8546797 2.3051724, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8374001 2.2957684, 48.8402359 2.3617231, 48.8384262 2.2988961, 48.8379252 2.2975063, 48.8384650 2.2984232, 48.8386614 2.2988499, 48.8388963 2.2993041, 48.8423511 2.2814155, 48.8529207 2.3436323, 48.8386703 2.2822723, 48.8578234 2.2746494, 48.8583112 2.2754219, 48.8518531 2.3567202, 48.8560141 2.3571788, 48.8549508 2.3624309, 48.8552557 2.3616146, 48.8538346 2.3644665, 48.8543409 2.3691660, 48.8518893 2.3417124, 48.8421221 2.3217245, 48.8521680 2.3314230, 48.8447287 2.3244719, 48.8428059 2.3239714, 48.8489183 2.3392705, 48.8506265 2.3304803, 48.8485082 2.3285161, 48.8508389 2.3266905, 48.8568213 2.3685042, 48.8427653 2.3300120, 48.8420145 2.3302544, 48.8440612 2.3225950, 48.8442156 2.3244262, 48.8473522 2.3183754, 48.8296558 2.3789838, 48.8382008 2.3505003, 48.8378958 2.3507127, 48.8377870 2.3508117, 48.8378570 2.3515198, 48.8376483 2.3516414, 48.8284669 2.3791072, 48.8287974 2.3821578, 48.8293821 2.3782449, 48.8444634 2.4058653, 48.8459991 2.3734585, 48.8583220 2.2745520, 48.8584493 2.2748476, 48.8580404 2.2776736, 48.8411414 2.3136506, 48.8533487 2.3667989, 48.8557164 2.2701238, 48.8417733 2.3185097, 48.8559683 2.2711042, 48.8369684 2.2533009, 48.8394820 2.3097854, 48.8502874 2.2762982, 48.8362844 2.3061932, 48.8535026 2.2653555, 48.8491712 2.2665706, 48.8233119 2.3260789, 48.8475928 2.2669653, 48.8484138 2.2647127, 48.8478601 2.2637874, 48.8485576 2.2650178, 48.8454405 2.2582420, 48.8485516 2.2751179, 48.8415500 2.2669376, 48.8399984 2.2627388, 48.8307191 2.3193023, 48.8304006 2.3192272, 48.8505969 2.3487384, 48.8465904 2.3434584, 48.8481836 2.3416278, 48.8504365 2.3250405, 48.8439434 2.3420437, 48.8461211 2.3404463, 48.8388735 2.3499896, 48.8430873 2.3523909, 48.8433167 2.3520295, 48.8446194 2.3521389, 48.8387237 2.3571215, 48.8480122 2.2605847, 48.8555518 2.3602965, 48.8585424 2.3554995, 48.8417910 2.3293787, 48.8474457 2.3180776, 48.8478498 2.3111276, 48.8452289 2.2582589, 48.8471366 2.3867728, 48.8382469 2.3985623, 48.8356227 2.4057366, 48.8417549 2.3864187, 48.8455537 2.3108109, 48.8450445 2.3104567, 48.8474933 2.3107909, 48.8394375 2.2918836, 48.8514163 2.3135568, 48.8426729 2.3023971, 48.8431492 2.3040014, 48.8431097 2.3128917, 48.8256887 2.3653770, 48.8263809 2.3414522, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8278525 2.3262538, 48.8388287 2.2816271, 48.8367957 2.3917944, 48.8397112 2.3025357, 48.8396385 2.3018330, 48.8234162 2.3578095, 48.8223317 2.3587958, 48.8230555 2.3585643, 48.8283319 2.3249564, 48.8500696 2.2886536, 48.8454338 2.3886185, 48.8560015 2.3425743, 48.8544203 2.3257043, 48.8503640 2.3847349, 48.8446673 2.3830913, 48.8488537 2.3789042, 48.8459220 2.4058540, 48.8585344 2.2751198, 48.8383753 2.3982048, 48.8580367 2.3228472, 48.8570504 2.3810504, 48.8468273 2.3109956, 48.8540420 2.4102463, 48.8465399 2.3518782, 48.8371620 2.2788430, 48.8256754 2.3500062, 48.8260463 2.3458083, 48.8275711 2.3258960, 48.8274068 2.3262715, 48.8369096 2.3712028, 48.8312779 2.3775666, 48.8390681 2.2569423, 48.8549374 2.3061290, 48.8433669 2.3494429, 48.8570621 2.3817062, 48.8372502 2.3914765, 48.8481085 2.4036760, 48.8509779 2.2927923, 48.8550471 2.2699500, 48.8418785 2.2997087, 48.8442816 2.3244689, 48.8482530 2.4016764, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8391384 2.2822010, 48.8276838 2.3319307, 48.8430494 2.2949889, 48.8416006 2.3224232, 48.8337153 2.3863338, 48.8430431 2.3223965, 48.8468610 2.3536998, 48.8201698 2.3641255, 48.8301847 2.3456951, 48.8425418 2.2920002, 48.8340558 2.2901416, 48.8330244 2.2891177, 48.8334343 2.2890580, 48.8357045 2.2898603, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8507185 2.3452276, 48.8506024 2.2921760, 48.8434041 2.2832488, 48.8441583 2.2814225, 48.8525391 2.4047416, 48.8525041 2.4054710, 48.8358361 2.3959436, 48.8555902 2.2705124, 48.8314530 2.3131078, 48.8366420 2.3235880, 48.8442760 2.3236880, 48.8443641 2.3231615, 48.8412683 2.3182655, 48.8271902 2.3689921, 48.8274443 2.3054531, 48.8456435 2.3883893, 48.8467978 2.3874491, 48.8463910 2.3878730, 48.8240842 2.3636888, 48.8226659 2.3580445, 48.8259715 2.3507845, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8260781 2.3450782, 48.8257972 2.3453018, 48.8385802 2.3568194, 48.8575448 2.3507955, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8260853 2.3604941, 48.8265662 2.3114209, 48.8266741 2.3089333, 48.8276987 2.3717961, 48.8348018 2.2835149, 48.8289555 2.3008177, 48.8309472 2.3666202, 48.8425217 2.2605998, 48.8399979 2.2631418, 48.8393773 2.2626930, 48.8445716 2.2773781, 48.8457722 2.3952172, 48.8423827 2.2779816, 48.8315085 2.3570011, 48.8393433 2.2612518, 48.8382522 2.2590990, 48.8294497 2.3691497, 48.8556190 2.3071441, 48.8267862 2.3639559, 48.8275456 2.3565272, 48.8292086 2.3568667, 48.8394408 2.3901626, 48.8304530 2.3781049, 48.8561136 2.3566520, 48.8536688 2.3651544, 48.8358783 2.3528351, 48.8469948 2.3720795, 48.8448082 2.4018695, 48.8577037 2.3677906, 48.8547650 2.3703199, 48.8522552 2.3385407, 48.8419262 2.3651705, 48.8370898 2.3512464, 48.8439360 2.3521362, 48.8466920 2.2861937, 48.8464464 2.2864898, 48.8462140 2.2863069, 48.8471256 2.2857626, 48.8467862 2.2850085, 48.8473180 2.3512660, 48.8326928 2.3011680, 48.8434103 2.2931530, 48.8367477 2.3065081, 48.8396815 2.2927792, 48.8364615 2.3516931, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8442882 2.3080071, 48.8528372 2.2900682, 48.8524061 2.2912571, 48.8529003 2.2907372, 48.8331060 2.3547764, 48.8275383 2.3571726, 48.8504014 2.2929658, 48.8466594 2.4106749, 48.8474387 2.3948976, 48.8475088 2.4104704, 48.8293214 2.3692986, 48.8558171 2.3591925, 48.8310392 2.3425080, 48.8295478 2.3565241, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8235069 2.3253377, 48.8314166 2.3251141, 48.8551235 2.3603692, 48.8335336 2.4018517, 48.8344090 2.3538607, 48.8329666 2.3548590, 48.8524475 2.3894597, 48.8426473 2.3496219, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8518237 2.3263371, 48.8518410 2.3270180, 48.8520482 2.3269387, 48.8459597 2.3544163, 48.8523174 2.3400938, 48.8370786 2.3520317, 48.8480411 2.3409988, 48.8487519 2.3414295, 48.8260443 2.3266660, 48.8255907 2.3265438, 48.8570274 2.3983184, 48.8493470 2.3529650, 48.8315966 2.3304662, 48.8497330 2.3457635, 48.8491590 2.3498700, 48.8485190 2.3493440, 48.8401997 2.3954293, 48.8448871 2.2941778, 48.8452118 2.2941040, 48.8454696 2.2946866, 48.8578346 2.3793123, 48.8403727 2.3337448, 48.8349994 2.3046409, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8313376 2.3296145, 48.8455488 2.4110597, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8512137 2.3425994, 48.8488552 2.3942325, 48.8489972 2.3942887, 48.8505758 2.3948498, 48.8494165 2.3948501, 48.8449899 2.4047731, 48.8347313 2.3458453, 48.8351835 2.3533874, 48.8388397 2.3227192, 48.8406761 2.3933858, 48.8359858 2.3961013 +49.4641062 8.6650466, 49.4707059 8.6520153, 49.4751871 8.6837099, 49.4785782 8.6564609, 49.4805167 8.6715673, 49.4760467 8.6993112, 49.4708285 8.6603546, 49.4703095 8.6676207, 49.4750609 8.6692928 +57.4542486 -3.1285642, 55.8834034 -6.1271617, 57.3024853 -6.3568033, 57.5223776 -4.4756277, 55.7569648 -6.2896939, 54.8587333 -4.4629463, 55.6978487 -5.2756058, 55.7661694 -6.3618742, 55.7870810 -6.4309463, 52.3472337 9.2793924, 54.2718195 10.5219966, 55.8538475 -6.1086342, 57.6883368 -4.2387842, 51.1127444 13.7669099, 50.9570510 14.0821619, 51.6056697 12.5660378, 47.7377817 11.8606277, 19.6779250 -72.0190560, 51.6491451 8.1322169, 39.2994322 -75.6084788, 47.8805389 7.7309643, 47.7382628 11.8561188, 57.5466316 -2.9539288, 43.9560756 0.3734684, 18.4229704 -64.6585212, 17.1508415 -25.0151935, 17.0165122 -96.5647291, 53.0858724 8.7794585, 47.7154486 7.5507400, 47.6573658 7.5616578, 48.1565486 12.8317267, 14.4377636 -60.8333445, 14.6018539 -60.9068867, 14.6901502 -61.0141987, 14.5891040 -60.8679840, 45.8447477 -122.8281437, 38.2575362 -85.7632828, 34.5472284 -112.4607113, 44.1602815 -121.3590756, 14.7836679 -60.9970984, 0.4592119 33.2016341, 38.0563465 -84.5191318, 48.5956956 8.8698258, 47.6567058 13.0407186, 53.5436085 9.6062248, 45.7326576 -0.3782353, 57.6353335 -3.2870129, 57.6450306 -3.3421110, 57.6101458 -3.2894032, 57.5992245 -3.2784059, 57.6009715 -3.3129796, 57.5993208 -3.3172323, 45.0361300 1.6054555, 56.8348734 -5.0738994, 57.5265535 -3.2167789, 57.5262020 -3.2099339, 57.5300526 -3.2110120, 57.5295183 -3.2067185, 57.5365006 -3.2152563, 57.4667732 -3.2280843, 57.6137233 -3.6206951, 57.8273602 -4.0782856, 51.7638075 -3.5209769, 57.4566016 -3.3429798, 57.4591122 -3.3533078, 57.4839604 -3.2091318, 57.4265098 -3.3144275, 57.3432180 -3.3390260, 56.6986205 -3.7208573, 52.4507978 0.9154400, 56.2574204 -3.7854861, 58.0248615 -3.8678057, 56.0141643 -4.3632000, 56.6206674 -6.0701909, 57.3390471 -4.0097785, 55.8328855 -5.9514638, 55.8913208 -2.8909475, 50.3675798 -4.1372484, 56.6244764 -3.8498805, 50.3679106 -4.1373766, 51.4537192 8.4186344, 56.9400822 -4.2393214, 57.3436880 -3.3377192, 51.3491807 7.4299280, 37.7876056 -122.3092605, 49.2301167 0.2149744, 49.2308275 0.2150060, 40.5899876 -105.0766115, 36.2050811 -89.1913579, 58.1708039 -7.0446706, 56.4149472 -5.4717893, 57.3975178 -3.4079486, 55.6406131 -6.1079234, 55.6354771 -6.1264917, 12.5777223 -87.0240762, 44.9450440 -93.2345327, 14.4796587 -60.9647768, 14.5069529 -60.9065836, 24.7142042 121.6901667, 43.8347339 -70.1268733, 50.3677538 -4.1366720, 52.1560692 7.3187114 +7 +Maria Luisa, Piccola Italia, Casa Naktel, I quattro mori, Chez Peppe, Ristorante Pellicano, Da Attilio, La Maffiosa, Tina, Caffé Vito, La Piazza Ristorante Pizza, Restorante Verdi, Ristorante Tavola Calda, Pastapapa, La Perla, Deliziefollie, Sens'o, Fuxia, La Comedia, L'Osteria, Le Caruso, Soprano, Auberge de Venise, La Massara, Ristorante Pizza Sarno, Mezzomezzo, Mmmozza, Les Vitelloni, La Dolce Vita, Ristorante Caffe Toscano, La Bocca Della Verita, Oenosteria, Pompei, Trevoli, Ziti, Ô Soleil de Naples, Mama Luna, Le Rialto, Iannello, Il Maestro, Quartier Latin, Le Mondelo, Swan & Vincent, Fontanarosa, La Fabbrica, Da Maurizio, Italian Style Café, Angelo & Jacqueline, La Gondola, Amores, Del'Arte, Il Gallo Nero, Pastapapà, VILLA DEL PADRE, Casanova, I Fratelli, Pulcinella, Pizza Caratello, La tour de Pise, Fuxia, Pizzeria Santa Lucia, Golosino, Mezzo di Pasta, Café Reale, Nouï, L'Assagio, Babalou, Acqualina in bocca, Les Patios, Portobello, Gioia Mia, Stan & Co, L'authentique Panini, La Prima, Divinamente Italiano, L'Arôme Antique, Pizzeria, Pucinella, Le Patio, Trattoria Victoria, Casa Nostra, Il Piccolo Rifugio, Pastapapa, L'Altra, Restaurant Marco Polo, Cinecitta, Sapori, Pizzeria Monte Bianco, Chez Thomas, Sole di Sardegna, Café Cotta, Da Fabio, Les associés, Maison Cipolli, San Giovanni, Momento, Il Pinocchio, Casa di Cervaro, Bistrot 32, L'auberge calabraise, Fiori, Trattoria Silviano, Al Gusto della Pasta, Il Farniente, Monteleone, Caffè Corto, Paris Milan, Da Pïppo, Pizzeria Straciatella, La divina, Pizza Pronto, Il Suppli, Il seguito, Origin, Naturellement, Il Gigolo, Pizza Rustica, Rim Café, La Dolce Vita, Pizza Loriana, Rossini, l'angolo 42, Traiteur Italien, Da Franco, La Rosa, Da Ugo, Ricci, Pescatore, La Strada, Fame da Lupo, Pizzeria Palermo, Delizius, Bistro Italien, Bistro I Ghiotti, Delitaly, La Famiglia, Trattoria di Bellagio, Gianni Bommarito, Ô Güsto, Pizza Flora, Coccodrillo, Caffe Caesar, Italian Trattoria, Molto Gusto, Andiamo Pizza, Villa Palatine, Di Vino, Autentico, Pink Flamingo, Il Bosco, La Gazetta, Sogoosto, La Toscane, Osteria Sicilia, Pizzeria Bella Italia, Restaurant de la Tour, l'autre Via Mela, Restaurant Marco-Roma, PastaPaPá, La Cucina, Spaccanapoli, Girasole, La suite, Buono sano bello, Emporio Armani Caffe, Le Colisée Wagram, Mie & You, Pizza Maria, L'écumoire, La Trottinette, Enoteca, L'Italy Cafė Ristorante Pizza Cafė, Casa Cristo, La Lucania, Bacino, Gustibus, Tappo, Caffè Stern, Le petit italien, Il Pacificio, Little Italy, Il Goto, Green Cafe +49.4171072 8.6773196, 49.4171621 8.6765719, 49.4177493 8.6779095, 49.4179042 8.6765456, 49.4183971 8.6765049, 49.4184718 8.6774518, 49.4190800 8.6770270, 49.4173101 8.6911592, 49.4173141 8.6856590, 49.4173841 8.6864299, 49.4173964 8.6887825, 49.4174192 8.6903041, 49.4168113 8.6765908, 49.4168113 8.6771056, 49.4169219 8.6787272, 49.4169748 8.6791607, 49.4170266 8.6795511, 49.4171525 8.6805099, 49.4172388 8.6826853, 49.4172827 8.6814338, 49.4173167 8.6834999, 49.4173345 8.6846458, 49.4179636 8.6792876, 49.4179993 8.6797629, 49.4181166 8.6806061, 49.4182615 8.6814568, 49.4184562 8.6827889, 49.4184996 8.6830345, 49.4187424 8.6793683, 49.4188816 8.6811640, 49.4189906 8.6808338, 49.4190085 8.6811738, 49.4193919 8.6778301, 49.4126783 8.6843825, 49.4126857 8.6858934, 49.4127125 8.6852240, 49.4128201 8.6864315, 49.4129308 8.6871682, 49.4132152 8.6882157, 49.4133058 8.6894895, 49.4133283 8.6902455, 49.4133726 8.6914495, 49.4117100 8.6785021, 49.4117171 8.6787048, 49.4119478 8.6798767, 49.4121911 8.6809383, 49.4123972 8.6818428, 49.4125796 8.6830848, 49.4130381 8.6829093, 49.4131441 8.6842989, 49.4117429 8.6768667, 49.4126418 8.6770005, 49.4126658 8.6805331, 49.4127054 8.6796956, 49.4127667 8.6781474, 49.4127764 8.6817686, 49.4133372 8.6813782, 49.4134270 8.6813115, 49.4129906 8.6768393, 49.4130462 8.6795215, 49.4132321 8.6806359, 49.4134560 8.6768246, 49.4140773 8.6767907, 49.4143370 8.6767573, 49.4149687 8.6767513, 49.4153969 8.6770975, 49.4154763 8.6767218, 49.4134732 8.6780167, 49.4143331 8.6784643, 49.4154251 8.6780426, 49.4160812 8.6765800, 49.4161384 8.6779769, 49.4166481 8.6779973, 49.4136631 8.6792108, 49.4139712 8.6812406, 49.4143640 8.6792347, 49.4145629 8.6804670, 49.4146015 8.6814504, 49.4154028 8.6787457, 49.4154304 8.6791703, 49.4157628 8.6803714, 49.4162426 8.6792175, 49.4164053 8.6803686, 49.4166151 8.6816138, 49.4148907 8.6823809, 49.4157135 8.6838270, 49.4157371 8.6825679, 49.4164509 8.6825931, 49.4164769 8.6820833, 49.4164883 8.6826074, 49.4165324 8.6837830, 49.4138171 8.6830288, 49.4138905 8.6841593, 49.4140673 8.6831303, 49.4143492 8.6848301, 49.4143982 8.6833887, 49.4148836 8.6836697, 49.4134000 8.6861630, 49.4138148 8.6881061, 49.4139567 8.6853638, 49.4139909 8.6860589, 49.4141876 8.6870872, 49.4142824 8.6879866, 49.4148833 8.6848069, 49.4149785 8.6858235, 49.4150166 8.6858318, 49.4137510 8.6912462, 49.4138984 8.6901677, 49.4140122 8.6915610, 49.4142111 8.6891822, 49.4143633 8.6890907, 49.4144550 8.6901875, 49.4145297 8.6910089, 49.4146438 8.6901960, 49.4149569 8.6908041, 49.4151322 8.6902740, 49.4153158 8.6909838, 49.4157243 8.6847764, 49.4157844 8.6855831, 49.4157934 8.6864461, 49.4158135 8.6903357, 49.4158328 8.6876589, 49.4158376 8.6902771, 49.4164423 8.6876319, 49.4164544 8.6865144, 49.4165771 8.6855422, 49.4166179 8.6903268, 49.4138995 8.6921339, 49.4146709 8.6921591, 49.4147814 8.6922098, 49.4151601 8.6921549, 49.4151722 8.6920865, 49.4158539 8.6910356, 49.4158861 8.6921393, 49.4159558 8.6921390, 49.4162860 8.6919730, 49.4165142 8.6921010, 49.4169007 8.6921351, 49.4170872 8.6918724, 49.4171258 8.6778744, 49.4173600 8.6919318, 49.4173614 8.6916050, 49.4177943 8.6783487, 49.4183327 8.6910378, 49.4184227 8.6909561, 49.4186264 8.6783589, 49.4190205 8.6906815, 49.4194515 8.6790135, 49.4195903 8.6904161, 49.4196892 8.6901030, 49.4202648 8.6899350, 49.4203690 8.6825543, 49.4203815 8.6828030, 49.4204759 8.6896128, 49.4209753 8.6825183, 49.4212350 8.6821598, 49.4212780 8.6891664, 49.4219154 8.6821734, 49.4220812 8.6837966, 49.4221339 8.6830765, 49.4222189 8.6844817, 49.4222397 8.6888096, 49.4223212 8.6853320, 49.4225675 8.6863407, 49.4226992 8.6818875, 49.4227731 8.6868755, 49.4227835 8.6875590, 49.4227907 8.6827089, 49.4229471 8.6883512, 49.4231098 8.6884074, 49.4244197 8.6874057, 49.4244545 8.6876235, 49.4250439 8.6862252, 49.4250896 8.6864045, 49.4254807 8.6850680, 49.4256032 8.6851066, 49.4258098 8.6843351, 49.4259545 8.6843125, 49.4261921 8.6834366, 49.4124675 8.6722192, 49.4129302 8.6721550, 49.4131552 8.6738690, 49.4136853 8.6735943, 49.4137196 8.6725106, 49.4137645 8.6746386, 49.4145431 8.6738210, 49.4149545 8.6714849, 49.4149778 8.6726757, 49.4150096 8.6750823, 49.4158607 8.6714529, 49.4126730 8.6690534, 49.4132936 8.6693274, 49.4132628 8.6670083, 49.4135612 8.6677150, 49.4135964 8.6715064, 49.4139734 8.6723081, 49.4142219 8.6712401, 49.4142964 8.6702560, 49.4143168 8.6702199, 49.4139596 8.6662087, 49.4142991 8.6674911, 49.4154226 8.6668475, 49.4154248 8.6675290, 49.4156968 8.6675995, 49.4162451 8.6675949, 49.4166577 8.6676273, 49.4169215 8.6672607, 49.4169911 8.6662984, 49.4139814 8.6645669, 49.4143214 8.6646612, 49.4147333 8.6648772, 49.4152605 8.6652064, 49.4154416 8.6660364, 49.4157157 8.6657664, 49.4159235 8.6654553, 49.4160820 8.6654569, 49.4169391 8.6654729, 49.4169806 8.6617282, 49.4170334 8.6658721, 49.4174280 8.6662762, 49.4175246 8.6618665, 49.4171948 8.6651903, 49.4173511 8.6636609, 49.4176121 8.6647998, 49.4178309 8.6632609, 49.4181704 8.6647260, 49.4184312 8.6674382, 49.4186818 8.6640511, 49.4187556 8.6655096, 49.4187648 8.6648676, 49.4188060 8.6672546, 49.4155953 8.6697454, 49.4159497 8.6698497, 49.4160843 8.6689231, 49.4165496 8.6696429, 49.4168408 8.6689980, 49.4170012 8.6677061, 49.4171707 8.6686342, 49.4172298 8.6676984, 49.4174128 8.6693715, 49.4178480 8.6676654, 49.4178524 8.6687706, 49.4171535 8.6709421, 49.4172348 8.6701536, 49.4172921 8.6695818, 49.4173364 8.6700629, 49.4190007 8.6705905, 49.4166659 8.6726028, 49.4166670 8.6735494, 49.4169240 8.6723938, 49.4171472 8.6737932, 49.4183404 8.6705952, 49.4185070 8.6724018, 49.4185338 8.6749625, 49.4192472 8.6749265, 49.4195758 8.6747658, 49.4133440 8.6764079, 49.4138880 8.6763877, 49.4163830 8.6760030, 49.4182300 8.6834061, 49.4182520 8.6851810, 49.4183900 8.6910820, 49.4184010 8.6886120, 49.4185321 8.6872289, 49.4185782 8.6871771, 49.4185920 8.6904127, 49.4186311 8.6885736, 49.4189790 8.6833159, 49.4190300 8.6884598, 49.4192380 8.6841289, 49.4192800 8.6849949, 49.4195050 8.6866570, 49.4195140 8.6870830, 49.4195370 8.6884649, 49.4196581 8.6826459, 49.4199600 8.6773080, 49.4199961 8.6783739, 49.4200970 8.6848350, 49.4201581 8.6863238, 49.4202170 8.6869468, 49.4202830 8.6764509, 49.4203471 8.6828670, 49.4204150 8.6809190, 49.4204550 8.6780810, 49.4205870 8.6772420, 49.4206200 8.6838998, 49.4207260 8.6847269, 49.4209180 8.6789200, 49.4209610 8.6813179, 49.4209711 8.6793159, 49.4209852 8.6862147, 49.4210510 8.6824740, 49.4210640 8.6789419, 49.4210830 8.6780970, 49.4210860 8.6807959, 49.4211021 8.6798378, 49.4211090 8.6871899, 49.4211559 8.6772780, 49.4212910 8.6820829, 49.4213399 8.6842469, 49.4214270 8.6893360, 49.4214319 8.6845956, 49.4215220 8.6822390, 49.4216181 8.6858356, 49.4216560 8.6805150, 49.4217220 8.6805970, 49.4217970 8.6865979, 49.4218148 8.6793050, 49.4218230 8.6776541, 49.4218351 8.6821330, 49.4218390 8.6782120, 49.4219112 8.6873225, 49.4219192 8.6771650, 49.4220090 8.6767740, 49.4220961 8.6836650, 49.4221081 8.6837649, 49.4221211 8.6831559, 49.4222170 8.6807629, 49.4223591 8.6853211, 49.4222961 8.6804661, 49.4226130 8.6847709, 49.4227970 8.6819088, 49.4229871 8.6805259, 49.4230670 8.6848431, 49.4232990 8.6894080, 49.4234651 8.6846938, 49.4234681 8.6865040, 49.4234910 8.6796409, 49.4236171 8.6827640, 49.4237360 8.6879330, 49.4237580 8.6812619, 49.4238011 8.6844951, 49.4239440 8.6892690, 49.4239580 8.6803100, 49.4240080 8.6893380, 49.4241530 8.6823040, 49.4241661 8.6860290, 49.4242310 8.6801610, 49.4244160 8.6839109, 49.4244380 8.6829640, 49.4245780 8.6882290, 49.4246100 8.6889189, 49.4246640 8.6818110, 49.4246781 8.6890690, 49.4248031 8.6797470, 49.4248249 8.6809710, 49.4248621 8.6816269, 49.4249760 8.6846130, 49.4250750 8.6832560, 49.4253311 8.6822080, 49.4254600 8.6792840, 49.4255210 8.6889629, 49.4256210 8.6819569, 49.4257190 8.6827099, 49.4257411 8.6841829, 49.4259246 8.6862592, 49.4259050 8.6854009, 49.4259540 8.6807890, 49.4260250 8.6825349, 49.4261240 8.6788169, 49.4262660 8.6793190, 49.4264071 8.6821287, 49.4265490 8.6847520, 49.4265521 8.6803830, 49.4266771 8.6784878, 49.4268582 8.6817330, 49.4269550 8.6819368, 49.4271950 8.6825720, 49.4273762 8.6784086, 49.4274400 8.6784900, 49.4280311 8.6783430, 49.4289440 8.6789069, 49.4296015 8.6786695, 49.4303140 8.6784310, 49.4193061 8.6662789, 49.4196582 8.6599549, 49.4201491 8.6671790, 49.4204980 8.6593060, 49.4218560 8.6590330, 49.4223230 8.6586590, 49.4227041 8.6599350, 49.4239290 8.6613409, 49.4239240 8.6891660, 49.4245260 8.6889749, 49.4247110 8.6903420, 49.4247340 8.6891350, 49.4252520 8.6874410, 49.4254530 8.6902880, 49.4258831 8.6854929, 49.4260181 8.6863257, 49.4260640 8.6901700, 49.4260850 8.6870670, 49.4262320 8.6878290, 49.4263340 8.6885170, 49.4263691 8.6917450, 49.4264151 8.6837788, 49.4264409 8.6888950, 49.4264640 8.6868940, 49.4265440 8.6909910, 49.4266889 8.6877150, 49.4268370 8.6877030, 49.4268390 8.6899869, 49.4269100 8.6870850, 49.4269660 8.6843329, 49.4271270 8.6887639, 49.4272970 8.6896680, 49.4274455 8.6878665, 49.4274440 8.6865619, 49.4276170 8.6855049, 49.4277320 8.6850120, 49.4277480 8.6858580, 49.4277490 8.6894119, 49.4277910 8.6883539, 49.4277979 8.6883870, 49.4278640 8.6904159, 49.4278730 8.6872199, 49.4279140 8.6867310, 49.4279880 8.6871899, 49.4282450 8.6892880, 49.4282630 8.6877620, 49.4287530 8.6894728, 49.4139021 8.6934089, 49.4151030 8.6933070, 49.4154360 8.6932489, 49.4159440 8.6931880, 49.4165520 8.6930700, 49.4172660 8.6928049, 49.4185620 8.6918969, 49.4186210 8.6921849, 49.4191279 8.6919820, 49.4198090 8.6916480, 49.4204880 8.6913349, 49.4213850 8.6932749, 49.4214290 8.6908230, 49.4225571 8.6906010, 49.4225910 8.6904319, 49.4239790 8.6903530, 49.4291700 8.6895049, 49.4173111 8.6930110, 49.4173880 8.6934880, 49.4179160 8.6925329, 49.4184710 8.6922600, 49.4186231 8.6929789, 49.4187120 8.6957600, 49.4192260 8.6919350, 49.4192870 8.6948570, 49.4197900 8.6916599, 49.4198320 8.6947620, 49.4198420 8.6932200, 49.4206940 8.6927889, 49.4208080 8.6949000, 49.4213620 8.6923480, 49.4214950 8.6908100, 49.4218850 8.6917680, 49.4219620 8.6949180, 49.4220110 8.6940240, 49.4220850 8.6929870, 49.4225010 8.6913139, 49.4225410 8.6920930, 49.4229250 8.6905690, 49.4232010 8.6906370, 49.4239177 8.6908126, 49.4247140 8.6911789, 49.4247610 8.6911489, 49.4248240 8.6926430, 49.4248711 8.6920369, 49.4261260 8.6912390, 49.4263200 8.6913639, 49.4272860 8.6912040, 49.4277800 8.6910779, 49.4281380 8.6910150, 49.4288690 8.6905680, 49.4295050 8.6905550, 49.3943040 8.6900800, 49.4108350 8.7039470, 49.3963305 8.7237131, 49.4157600 8.6814287, 49.4146025 8.6823832, 49.4101824 8.7154497, 49.4105755 8.7157261, 49.4077012 8.6585784, 49.4079501 8.6566361, 49.3651164 8.6827392, 49.3651733 8.6848917, 49.4110482 8.7185034, 49.4121488 8.7072459, 49.4125818 8.7119156, 49.4126987 8.7122689, 49.4102866 8.6968609, 49.4108310 8.6996879, 49.4112467 8.7022475, 49.4114477 8.7039217, 49.4116976 8.7061712, 49.4117235 8.7076903, 49.4117880 8.7080450, 49.4118104 8.7096705, 49.4118220 8.7086061, 49.4118622 8.7093208, 49.4119135 8.7104339, 49.4119976 8.7109244, 49.4120232 8.7106718, 49.4122631 8.7097191, 49.3992691 8.6805010, 49.3848121 8.6636880, 49.3832266 8.6637256, 49.3775602 8.6428499, 49.3777209 8.6401945, 49.3655232 8.6243373, 49.3764111 8.6167172, 49.3739958 8.6152527, 49.3764094 8.6167172, 49.3631440 8.6217088, 49.3655232 8.6243373, 49.3639825 8.6226422, 49.3647231 8.6234790, 49.3695056 8.6543941, 49.3690584 8.6536270, 49.3727297 8.6503655, 49.3684296 8.6524147, 49.3707421 8.6528707, 49.3716503 8.6517656, 49.3725620 8.6506015, 49.3735191 8.6494213 +1674 +yes +steak house, italian, chinese, sudanese, curry, indian, thai, spanish, japanese, regional, cantonese, pie, american, seafood, pizza, lebanese, french, vegetarian, Cantonese, mexican, mediterranean, mongolian, chargrill, kurdish, Lebanese, middle eastern, noodle, asian, turkish, korean, Malaysian, greek, brazilian, fish, international, sushi, arab, vietnamese, burger, latin american, caribbean, chicken, tapas, malaysian, Scotish, Punjabi, spanish tapas, british, portuguese, african, soup, Mediterranean, phillipino, Middle Eastern, fish and chips, nepali, sandwich, kebab +0 +Heidelberg +no +49.4091649 8.6726851, 49.4093716 8.6801667, 49.4092201 8.6801589, 49.4180684 8.6889644, 49.4151692 8.7066598, 49.4168638 8.7149130, 49.4066053 8.6919726, 49.4149496 8.7239163, 49.4205986 8.7368660, 49.3899847 8.6546401 +roman temple, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification +49.4101353 8.6927154 ++49 6221 89800 +49.4117816 8.7062296 +48.8403064 2.3155776 +48.8662200 2.3249104, 48.8650379 2.3286066, 48.8525775 2.3471111, 48.8700157 2.3323221, 48.8681204 2.3330906, 48.8511629 2.3461411, 48.8505858 2.3424689, 48.8501915 2.3422706, 48.8491091 2.3761310, 48.8504878 2.3820336, 48.8501724 2.3435882, 48.8533251 2.3447071, 48.8531776 2.3444036, 48.8535396 2.3433463, 48.8574614 2.3987906, 48.8742770 2.3896380, 48.8743044 2.3892719, 48.8491809 2.3755427, 48.8254296 2.3625833, 48.8514676 2.3419895, 48.8387188 2.3931980, 48.8545533 2.3063815, 48.8529173 2.3925273, 48.8507085 2.3989753, 48.8715019 2.3828091, 48.8723416 2.3801805, 48.8382546 2.2981240, 48.8698462 2.3511474, 48.8533293 2.3537801, 48.8525744 2.3443077, 48.8509038 2.3499006, 48.8541721 2.3282003, 48.8544576 2.3860329, 48.8652240 2.3226798, 48.8801560 2.3645743, 48.8803220 2.3624411, 48.8264498 2.3300888, 48.8569747 2.2789476, 48.8509994 2.2716479, 48.8367744 2.3106015, 48.8781326 2.3729131, 48.8670191 2.3734737, 48.8553246 2.3870617, 48.8472720 2.3419460, 48.8512259 2.3463004, 48.8513241 2.3465595, 48.8393482 2.3496204, 48.8447885 2.3495957, 48.8662422 2.3531014, 48.8451782 2.2607665, 48.8502962 2.3467993, 48.8581704 2.3526545, 48.8380223 2.3905149, 48.8830930 2.3182419, 48.8455527 2.3122101, 48.8458285 2.3180784, 48.8251412 2.3653488, 48.8264707 2.3409799, 48.8399670 2.3932678, 48.8362897 2.3941894, 48.8750645 2.3432258, 48.8714964 2.3360288, 48.8518501 2.3734396, 48.8657672 2.2895091, 48.8613020 2.3436850, 48.8754689 2.3160711, 48.8479470 2.3518746, 48.8653166 2.3764191, 48.8343427 2.3291566, 48.8629626 2.3620980, 48.8832937 2.3141714, 48.8531950 2.3754215, 48.8472217 2.3997508, 48.8352586 2.2921097, 48.8389972 2.3978830, 48.8656850 2.3648977, 48.8542021 2.3323694, 48.8432473 2.3496205, 48.8437015 2.3252275, 48.8685177 2.3700123, 48.8424552 2.3519375, 48.8417849 2.3027944, 48.8891440 2.3384231, 48.8220789 2.3422051, 48.8550650 2.3736566, 48.8314386 2.3693373, 48.8665900 2.2802703, 48.8297529 2.3232406, 48.8726981 2.3796622, 48.8670640 2.3762600, 48.8843529 2.3389708, 48.8543689 2.3844927, 48.8524626 2.3344163, 48.8437952 2.2924901, 48.8647194 2.3519904, 48.8438946 2.3480265, 48.8670326 2.3442625, 48.8505064 2.3990388, 48.8578215 2.3585267, 48.8514788 2.3399912, 48.8577488 2.3574229, 48.8809778 2.3506944, 48.8913689 2.3617657, 48.8401899 2.3544829, 48.8390221 2.2602403, 48.8817199 2.3736232, 48.8756587 2.2879128, 48.8607962 2.3544296, 48.8350134 2.3203089, 48.8895561 2.3758782, 48.8655527 2.3550525, 48.8484473 2.3486979, 48.8578192 2.3677027, 48.8506487 2.3394886, 48.8592808 2.2750466, 48.8536640 2.3812458, 48.8614660 2.2754877, 48.8621668 2.2760986, 48.8511985 2.3394291, 48.8691209 2.2843412, 48.8768373 2.3360674, 48.8736234 2.3521787, 48.8515260 2.3631350, 48.8238315 2.3237941, 48.8454093 2.3799968, 48.8455314 2.3807867, 48.8909365 2.3459092, 48.8946930 2.3411100, 48.8661636 2.4056122, 48.8506983 2.3768187, 48.8838523 2.3212469, 48.8423736 2.3428351, 48.8443967 2.3484123, 48.8685177 2.3885331, 48.8262892 2.3413948, 48.8440902 2.3479892, 48.8270505 2.3323348, 48.8406225 2.2998537, 48.8571270 2.3979136, 48.8935922 2.3238984, 48.8198098 2.3426440, 48.8410729 2.3068009, 48.8801130 2.3288983, 48.8803277 2.3288040, 48.8662042 2.3409974, 48.8843073 2.3722714, 48.8837994 2.3268783, 48.8511798 2.3383451, 48.8340824 2.2894102, 48.8761555 2.3374709, 48.8340089 2.3599820, 48.8390780 2.3825910, 48.8353393 2.2891615, 48.8468370 2.3423807, 48.8465142 2.3433389, 48.8505990 2.3456055, 48.8465728 2.3430664, 48.8504723 2.3461960, 48.8488167 2.3424782, 48.8500519 2.3478861, 48.8430083 2.2821288, 48.8643193 2.3987773, 48.8664792 2.3830247, 48.8614107 2.3530384, 48.8634341 2.3488612, 48.8944610 2.3410230, 48.8328942 2.3612036, 48.8287848 2.3797951, 48.8260378 2.3589252, 48.8655088 2.3336403, 48.8610286 2.3506049, 48.8603680 2.3507537, 48.8430117 2.3895138, 48.8238470 2.3485801, 48.8261136 2.3448083, 48.8277194 2.3285997, 48.8319785 2.3603654, 48.8233115 2.3452510, 48.8249394 2.3621629, 48.8354021 2.2817071, 48.8779928 2.3581823, 48.8241761 2.3255140, 48.8503487 2.2919735, 48.8510260 2.3454319, 48.8470854 2.3534067, 48.8302628 2.3570676, 48.8743514 2.3892317, 48.8286429 2.3818342, 48.8650907 2.3663328, 48.8356500 2.3982873, 48.8871092 2.3696248, 48.8746003 2.3892694, 48.8544041 2.3263101, 48.8763280 2.3281599, 48.8475171 2.3511154, 48.8688115 2.3351558, 48.8842818 2.3240276, 48.8517905 2.3431197, 48.8521627 2.3432953, 48.8458061 2.2882640, 48.8517963 2.3444980, 48.8734347 2.3423380, 48.8597263 2.3084052, 48.8588644 2.3499502, 48.8546846 2.3623086, 48.8495810 2.3432900, 48.8785100 2.2913980, 48.8708175 2.3215271, 48.8771010 2.3264720, 48.8901988 2.3711496, 48.8927180 2.3633290, 48.8486860 2.3472380, 48.8496985 2.3391523, 48.8495401 2.3379890, 48.8596285 2.3543087, 48.8586710 2.3226860, 48.8528086 2.3367891, 48.8336859 2.3868686, 48.8793718 2.3771217, 48.8485950 2.3547820, 48.8482600 2.3542670, 48.8809912 2.3271773, 48.8849202 2.3922140, 48.8843340 2.3042300, 48.8592269 2.2848863, 48.8727028 2.3774431, 48.8844882 2.3797443, 48.8483070 2.3491750, 48.8766668 2.2631854, 48.8471227 2.3170343, 48.8551206 2.3754858, 48.8755206 2.3107673, 48.8550364 2.3537242, 48.8552629 2.3577442, 48.8629068 2.3360400, 48.8650605 2.3675907, 48.8606690 2.3649892, 48.8611982 2.3691660, 48.8484698 2.3422948, 48.8457286 2.3439757, 48.8526768 2.3603455, 48.8501731 2.3321278, 48.8557624 2.3071037, 48.8311200 2.3020623, 48.8602537 2.3521242 +yes +49.4126418 8.7016223 +55.9338797 -3.0920141, 55.9274598 -3.3076072 +55.9456427 -3.1913637 +6 +no +french +Kirkcaldy, Polton, Bonnyrigg, Loanhead, Haddington, Penicuik, Musselburgh, Cockenzie and Port Seton, Gullane, Dalkeith, Prestonpans, Tranent, Gorebridge, Mayfield, Newtongrange, Eskbank, Lasswade +49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.3988716 8.6899921, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.4240406 8.6385449, 49.3851489 8.6733031, 49.3848920 8.6803000, 49.3673694 8.6862886, 49.4061345 8.6593850, 49.3956207 8.6692054, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.3704305 8.7013213, 49.4296958 8.6455225, 49.3810973 8.6895578, 49.4172010 8.6768150, 49.3593333 8.6876382, 49.3810576 8.6896077 +55.9432488 -3.1817167, 55.9280547 -3.2292838, 55.9409114 -3.2097700, 55.9703622 -3.1822317, 55.9629073 -3.1944999, 55.9358754 -3.1760269, 55.9344353 -3.2125210, 55.9416804 -3.2026036, 55.9438526 -3.1964947, 55.9592778 -3.1901889, 55.9613996 -3.1820673, 55.9580853 -3.1891489, 55.9468876 -3.1828168, 55.9488813 -3.1834652, 55.9492101 -3.2153200, 55.9544768 -3.1997466, 55.9126235 -3.3200599, 55.9489685 -3.1194874, 55.9328025 -3.3133858, 55.9309502 -3.1942179, 55.9741682 -3.2117651, 55.9296473 -3.1707716, 55.9718479 -3.1748613, 55.9390126 -3.2052535, 55.9379190 -3.2748726, 55.9410176 -3.2095848, 55.9292876 -3.2059198, 55.9598760 -3.2111177, 55.9296228 -3.1686332, 55.9167292 -3.1640730, 55.9351051 -3.2071646, 55.9335197 -3.2097268, 55.9462699 -3.1973167, 55.9324830 -3.1925693, 55.9310878 -3.1608248, 55.9344607 -3.1586816, 55.9350533 -3.2069968, 55.9350865 -3.2070121, 55.9492741 -3.4056494, 55.9335280 -3.2095487, 55.9408795 -3.2097114, 55.9242811 -3.1768126 +55.9340640 -3.1225496 +1 +609 +Maison de Victor Hugo, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin, Musée Cernuschi, Musée d'Art Moderne de la Ville de Paris, Musée Bourdelle, Maison de Balzac, Musée Carnavalet +Gedenkstein Synagoge, ehemalige Synagoge, Bunsenstatue, Johann Wolfgang Goethe, Joseph Victor von Scheffel, Alfred Hettner, Albert Fritz, Dr. Maximilian Neu, Gustav Bopp, Dr. Anna Hamburger, Salomon Deutsch, Simon Hochherrr, Betty Blum, Michael 'Michel' Liebhold, Leopold Oppenheimer, Ludwig Brummer, Alice Hochherr, Anneliese Weil, Arthur Weil, Frieda Hochherr, Ilse Weil, Ingeborg Weil, Julius Weil, Amalie 'Mally' Liebhold, Bertha 'Berthel' Marx, Ella Hochherr, Heinrich 'Heinz' Hochherr, Klaus Liebhold, Leni Blumenthal, Liselotte Hochherr, Margot Hochherr, Martin Liebhold, Ruth Liebhhold, Susanne Hochherr, Adele Bock, Clara Freund, Heinrich Freund, Jeanette Schneider, Louise Neu, Babette Oppenheimer, Hermann Durlacher, Paula Deutsch, Walter Durlacher, Hermann Böning, Ludwig Snopek, Ferdinand Hochherr, Karoline Kaufmann geb. Hess, Leontine Goldschmidt, Albert Kaufmann, Alfred Flor, Betty Snopek, Erika Hochherrr, Eva Hochherr geb. Mainzer, Gerda Kaufmann geb. Fleischhacker, Jella Hochherr, Ludwig Kaufmann, Sara Snopek geb. Isaak, Dr. Johanna Geissmar, Julius Rinklin, Alfred Mombert, Jakob Geissmar, Wasilij Skorkin, Maja Bitsch, Alfred Seitz, Aleksej Bjelow, Anatolij Bachatschow, Elisabeth Geissmar geb. Hirsch, Ella Gutman geb. Mombert, Else Geissmar, Käthe Seitz geb. Brunnemer, Martha Geissmar, Nikolaj Ewdokimow, Pawel Chrebor, Den Toten der Kriege 1914-1918 und 1939-1945, Dokumentations- und Kulturzentrum Deutscher Sinti und Roma +yes +48.8783323 2.3732739, 48.8882750 2.3740777, 48.8773675 2.4068219, 48.8649034 2.3999667, 48.8766834 2.4067529, 48.8358842 2.3867689, 48.8742769 2.3568951, 48.8757672 2.3581886, 48.8648183 2.3992191 +35 +43.5871216 1.4469197 +Tombe du Soldat inconnu +yes +48.1133979 11.5580798, 48.2167392 11.5288862, 49.9606475 11.6260343, 48.1672232 11.5486553, 49.2234454 12.6611867, 48.0529514 11.6690600, 48.0652614 11.6606034, 48.1502805 11.5678752, 49.4141881 12.4140633, 49.7934099 12.2899120, 50.0060004 11.4141590, 48.1724666 11.5709000, 50.3759930 11.7382095, 48.1395725 11.6047921, 48.0954169 11.5566816, 48.0913305 11.6784142, 47.8527854 12.3359177, 49.2915039 11.4151762, 49.2943053 11.4096947, 50.3177512 12.1012234, 50.3176182 12.1006372, 47.6768601 11.8377311, 49.7835917 12.3094464, 48.1106870 12.1546587, 48.1128273 12.1503231, 48.6589620 13.2511100, 48.5745332 13.4639931, 48.1452629 11.4616156, 48.1101440 11.5418164, 48.1188084 11.4450399, 48.1169283 11.4307756, 48.1121499 11.6495213, 49.8693054 11.8872381, 47.8376039 11.7570497, 48.0087205 11.7329256, 48.0216058 11.7817301, 48.4036435 11.9891592, 48.5330823 12.1608939, 47.9110333 11.6747920, 48.5335696 12.1598458, 47.8670880 12.7062222, 47.8282218 12.9077877, 48.0481813 11.7018372, 48.0771391 11.7151740, 48.0772066 11.7150615, 48.1436359 11.5777273, 48.1433386 11.5761135, 48.0955077 11.7278751, 48.7136659 13.2701615, 48.1144089 11.7961741, 48.0597408 11.6211259, 48.0672766 11.6621456, 48.3649975 11.4598175, 49.4491408 11.8705906, 47.9837849 11.7003225, 48.0199151 11.7286030, 49.6241375 12.2242896, 48.1439897 11.5890544, 48.1504174 11.5926415, 48.1425164 11.5819824, 48.1413020 11.5773712, 50.0606042 11.8190607, 48.7256870 13.6028288, 48.7279362 13.6020419, 48.7365394 13.5593114, 48.7345934 13.5963213, 48.7364847 13.5964511, 48.7382158 13.6078165, 49.4275675 11.9755052, 48.7302984 13.6011798, 48.1029807 11.8361371, 48.1350817 11.8749388, 49.3437809 12.3643806, 48.8323467 12.1397113, 48.9733293 12.8819444, 48.2061893 11.5287483, 48.7223938 13.6179050, 48.1011013 11.6307959, 48.2372271 11.5475541, 48.2509071 11.5479241, 49.3771405 12.7026831, 47.8632158 12.0083649, 50.0420746 11.6720609, 49.3618383 12.4477189, 48.0760825 11.5427810, 47.8977079 11.7820554, 50.1048363 11.8889127, 48.1358816 11.5497163, 48.1273073 11.5451210, 48.1365137 11.5736815, 48.9954252 12.0237005, 50.1096264 11.4141541, 48.3455521 12.1317089, 48.0002694 11.7956966, 48.5982247 13.5518268, 48.2568821 11.4533336, 50.3733173 11.5112514, 47.5806808 12.9900205, 48.1010084 11.5468015, 50.0428392 11.4838079, 48.1684687 11.5687037, 48.1711863 11.7155717, 48.6457043 13.5429788, 49.9284665 11.5112743, 48.7163700 13.6172725, 49.0075578 13.4083931, 49.4527997 11.4905453, 48.0766582 11.6626169, 48.6167866 11.9930003, 47.9125378 11.4195676, 49.7497963 11.5185637, 49.0106437 12.4811226, 48.1782705 11.6260539, 49.2660036 12.6113604, 49.5350217 11.8060476, 48.1418146 11.5678012, 48.1372350 11.5755354, 48.8581460 12.2279055, 48.4051825 11.9906620, 48.1350984 11.5760826, 47.7647020 12.3237407, 48.4676545 11.9380643, 48.4683631 11.9372170, 48.4675850 11.9354037, 48.1162625 11.5773134, 48.1155748 11.5803688, 48.2868645 11.4176679, 48.1489142 11.4594334, 48.0960216 11.4131009, 50.0062150 11.4624009, 50.0010014 11.4376082, 50.0346299 11.4677444, 48.2731929 11.4236388, 49.8882725 11.5570158, 48.1637344 11.4579506, 48.1476363 11.6010835, 48.2849053 11.4363469, 48.1799294 11.5750893, 47.8639011 12.6442624, 48.3046921 11.5429995, 48.1798173 11.5493366, 48.1767245 11.5477536, 47.8729654 12.1972526, 48.5308012 11.4964571, 49.7329267 12.0697249, 49.7310450 12.0683404, 48.1596505 11.9979333, 48.0774058 12.0911230, 48.1189200 11.4453575, 47.7684577 11.6491787, 48.7011673 12.0279415, 47.7602384 11.7365376, 47.9707197 11.7805174, 47.7501179 11.6777269, 48.1256571 11.6629814, 49.8294448 11.7475129, 47.7041339 12.0283575, 49.9328745 11.5121784, 47.6520979 11.4211323, 49.2788252 11.4634516, 50.2214645 11.9356910, 48.0742257 11.6533857, 48.0596775 11.6671957, 48.1287664 11.4349115, 47.6824907 11.5717732, 50.2855025 12.1008402, 48.3591440 12.6093476, 48.1403023 11.5739691, 48.2510565 11.5076920, 48.0480677 11.7024896, 49.9961847 11.4216082, 48.0313078 11.6009454, 47.8825405 12.3323531, 47.7086603 11.7559246, 48.1598332 11.5978295, 48.1609141 11.5986413, 50.1443874 11.9537653, 47.6172547 11.7431278, 49.0511001 11.7847275, 49.3243011 12.8922854, 49.3497904 12.8859420, 48.1540535 11.5364883, 48.1577100 11.5604800, 49.5191482 11.5071905, 48.3195203 11.6884744, 50.2548425 12.0280849, 49.9531135 11.4272279, 48.1431039 11.5739255, 47.7518380 11.5542307, 48.1094874 11.6715247, 49.9672770 11.7432501, 49.9909971 11.7468775, 49.9947925 11.7477127, 48.0436899 11.6184000, 50.3302575 12.0690000, 50.0170225 11.7056704, 48.1695372 11.5704440, 48.1951367 11.5726760, 49.9601080 11.8330026, 49.9826914 11.9467996, 48.6105657 13.6209883, 48.7976268 11.5458268, 48.5368053 11.4792245, 48.8988008 11.6460326, 48.8406685 11.8248245, 47.7196300 13.0070178, 47.5031642 13.0178510, 47.5763930 12.9428503, 47.5858088 12.9880887, 50.0418210 11.6710138, 49.0445983 11.4760465, 50.0467669 11.6732356, 47.7945484 11.8652626, 48.8228747 11.8710406, 49.3389467 12.8146818, 48.9651063 12.3820209, 49.6236211 11.4208589, 47.5336896 12.9724350, 47.5301100 12.9619598, 47.5031123 12.9328624, 48.5606131 13.2960716, 49.1260615 12.1333535, 49.1256211 12.1361069, 49.1255453 12.1369761, 49.1044233 11.8101537, 49.0308094 12.0929987, 49.3131522 12.2445134, 49.3422506 12.2848751, 48.8211211 11.5141945, 47.8516723 12.0615827, 47.8485888 12.0672963, 49.2233186 12.1547666, 49.2331221 11.9525808, 50.0948613 11.7333105, 48.1508584 11.6433653, 50.0502973 12.0609370, 48.0377230 11.4622667, 50.0254865 11.6880247, 49.9687258 11.5747570, 49.5032451 11.7435371, 50.0997781 11.6086337, 50.1054293 11.6083476, 49.0116277 13.2042654, 48.1469931 11.6257305, 48.0686738 11.6615712, 49.1844101 12.0257204, 48.6328788 13.1769786, 48.1635399 11.5422013, 48.4554508 13.2099038, 48.1201768 11.6588925, 49.1645854 11.9617084, 48.8284245 12.7200960, 48.8833939 11.7772066, 47.9828283 11.5203806, 48.3081584 12.3332939, 47.8125152 12.1214531, 47.8648888 12.7820620, 47.8519085 12.7832926, 48.3710829 13.2776572, 48.2201211 11.6774482, 48.2245882 11.6741143, 49.4297829 11.5457238, 48.2263875 11.6752754, 48.2137470 11.8802685, 48.1386282 11.5783400, 48.1258240 11.6768961, 49.5129971 11.4296031, 48.5730213 12.5785231, 49.4894386 11.4795879, 49.4894042 11.4795580, 48.9295466 13.5781872, 48.0876973 11.6096828, 48.0713652 11.6061007, 49.4904322 11.4787933, 47.7838440 12.2774723, 48.0645494 11.6250396, 48.1477907 11.6012806, 48.1411124 11.5911449, 48.1420419 11.5694098, 48.6018811 12.3128591, 48.0125422 11.5154911, 47.7705922 11.6748336, 48.5946076 12.4311920, 49.8616405 11.6570392, 49.5466339 11.9989292, 49.5475287 12.0005339, 48.1187522 11.6097745, 49.1624256 12.0837400, 49.1648372 12.0804576, 49.1650022 12.1008606, 49.1641694 12.0801967, 49.2050461 12.0387575, 49.5455014 12.0005665, 48.1012876 11.6309166, 48.1216394 11.5816197, 48.1400779 11.5683717, 47.6753407 11.4912807, 48.1338649 11.5674133, 48.1424482 11.5727949, 48.1225592 11.5679070, 48.0790364 11.7432694, 48.1114620 11.7728378, 48.0217457 11.8128583, 48.0045195 11.8446675, 48.9964840 12.1112392, 49.9123877 11.5130613, 48.1586030 11.5801588, 48.4990785 12.0623824, 48.9742962 13.1352720, 48.2385309 11.5735864, 49.8907112 11.5576850, 49.8988856 11.5412436, 49.5503094 12.0325901, 49.0409666 12.1261312, 48.1136230 11.4812146, 48.1308581 11.5826367, 48.1766390 11.7434041, 48.2167506 11.5288939, 48.2169135 11.5289632, 50.3300146 11.6693425, 48.1970602 11.8109996, 48.1936977 11.4594269, 49.8624559 12.0950023, 49.1593765 11.9394701, 48.1052088 11.4596178, 48.6612244 12.5310457, 50.2247998 12.1446066, 50.2699412 12.1148272, 48.1516220 11.5525356, 48.1619407 11.5761975, 48.1619237 11.5760965, 48.1619235 11.5760954, 48.1618271 11.5756350, 48.1619234 11.5760944, 48.1420322 11.5715095, 48.1425078 11.5724864, 48.1417931 11.5707416, 48.1431184 11.5721749, 48.1388639 11.5739365, 47.8045823 12.2214612, 47.7144504 12.1290737, 47.9098136 11.6754772, 48.1508795 11.5801207, 47.8733749 11.8703542, 49.0079067 12.1165366, 49.3710655 12.2559091, 50.1213622 11.9904154, 47.9029318 12.2354760, 50.3665316 11.9524574, 49.2309993 12.6565069, 49.2309058 12.6607232, 50.3628917 11.9370021, 49.0165046 12.0887646, 49.5129283 11.4823227, 49.4535459 12.1806422, 49.4535406 12.1806536, 49.4535421 12.1806457, 49.4535570 12.1806551, 49.4535474 12.1806465, 49.4535439 12.1806499, 49.6072418 11.6332576, 49.5713889 11.9282692, 48.2484642 11.6828738, 48.1581096 11.6156226, 48.3591631 12.5094907, 48.3586447 12.5343924, 47.7275214 12.1230949, 48.1166096 11.7662870, 50.3113074 11.9095828, 48.0631239 12.2330584, 48.1566658 11.6254379, 49.9523438 11.8670610, 48.2418607 12.4527747, 48.8389038 13.4055938, 48.0007322 12.4072228, 48.3327301 11.6172233, 48.5734486 13.4640106, 48.1598066 11.4148877, 48.1687944 11.4573356, 49.3518845 11.4485073, 50.1421473 11.9753124, 49.0806939 12.0824892, 48.1433520 11.5818825, 48.1440058 11.5811138, 48.1440394 11.5811862, 48.1441172 11.5805089, 48.1435307 11.5821849, 49.6848998 11.5026780, 49.3175931 12.8435562, 48.4010364 13.3712269, 48.0835944 11.8228819, 49.1669984 11.9955209, 49.2813735 12.0377887, 48.5377879 11.8593020, 49.9711209 11.7503505, 49.0070924 12.3792350, 49.9724725 11.7387437, 49.9567536 12.1214341, 48.4732128 13.2135492, 49.9392269 11.4453954, 47.8046498 12.3714877, 48.9002004 13.0360209, 48.3222795 11.8443135, 47.7027468 11.7615738, 48.1491588 11.4340765, 50.3275697 11.8592399, 48.1916228 11.8684710, 48.5435989 13.2387134, 49.1657640 12.0997544, 50.3802233 11.7655001, 47.9160513 11.5805505, 47.9005583 11.6080856, 47.8914385 11.5880742, 47.8662085 11.5423723, 50.3933146 11.6886249, 49.0490274 12.6476381, 47.9480348 11.5977988, 47.9538922 11.4985415, 47.9081813 11.5466083, 47.9375040 11.5280923, 47.9516801 11.4760690, 47.9463678 11.6443382, 50.0888918 11.7391512, 48.1416278 11.5902260, 47.4769809 12.9616386, 48.1617099 11.5810683, 48.0159193 11.8961216, 49.7569832 11.5351092, 47.6174194 11.7819493, 48.0182478 11.7123423, 48.7636807 11.7840985, 48.6352619 13.1810639, 48.6332943 13.1730816, 50.1067324 11.6086009, 48.5166731 12.1256140, 48.6989114 11.8723543, 48.5436782 12.1537502, 48.1266612 11.6705674, 47.8670370 12.0073600, 48.1641322 11.5315335, 49.8668080 11.4201143, 48.2344666 11.6737996, 47.9211183 11.4202190, 48.3057015 11.4866372, 48.1460001 11.5805266, 48.1768831 11.6030792, 49.5281851 11.4954622, 48.1966964 11.8107166, 48.6333358 12.4004686, 48.1200168 11.6770560, 48.1192391 11.6769136, 47.8477656 11.5822566, 48.1953186 11.5755861, 47.8627828 12.3682165, 48.9872511 13.1747092, 50.2303774 11.6747940, 48.6913587 12.2076836, 48.6904770 12.2075236, 49.3391485 12.1214552, 49.3252029 12.1130808, 49.6470044 12.0474891, 48.3041089 11.8588743, 48.5682510 12.3257440, 48.6183133 13.3896849, 47.9844666 11.7161086, 47.8664443 11.7837703, 50.2224054 12.0285376, 49.3115707 12.0782223, 47.9806706 11.5715732, 47.6407172 11.8119658, 50.1586517 12.0450508, 50.3959147 11.7517171, 50.0754361 11.6758203, 48.1811702 11.5169736, 48.1477773 11.7316890, 48.1478657 11.7322591, 49.5120207 11.4438338, 49.5030032 11.5429371, 48.8938835 13.0411789, 49.1640074 13.1074417, 48.7416090 11.4478339, 49.9233769 11.6005430, 48.5741240 12.5789391, 48.5553424 12.4154760, 48.7499032 12.3372814, 47.8177812 11.5831907, 50.2481179 12.0346542, 47.7181107 11.7940329, 50.0244804 12.3084366, 48.0605044 12.2198648, 50.1755442 11.7976128, 47.7560236 11.7451567, 47.7340849 11.7658323, 48.1307110 11.5923150, 47.8593309 12.1240177, 50.0379127 12.0038680, 49.9946339 11.7861359, 49.5583611 11.9772712, 50.1907032 11.6789749, 47.9313740 11.4208664, 49.3271140 12.1141460, 50.1082542 11.6047778, 49.0205921 12.0952396, 49.2250749 11.5402651, 49.3424310 12.5290121, 48.2069696 11.6425405, 48.0587790 11.7725479, 50.0131184 11.5462805, 47.6420716 12.1021865, 49.8671429 11.9362476, 50.2052252 12.1457506, 48.8633623 13.6780136, 48.0969582 11.5924226, 47.8252837 12.0966772, 47.8521215 12.0634403, 49.9086379 11.7596314, 49.3262209 12.9527050, 50.0328796 11.7627971, 49.9491040 11.9686054, 50.0150071 11.8553126, 50.0325244 11.7628357, 47.6434474 11.7466035, 49.6753801 11.4191505, 47.6450803 11.7423983, 47.8463854 12.2296970, 48.8136490 11.5110770, 48.4008166 11.7440251, 47.9339678 12.7348143, 47.9337012 12.7343361, 49.2434542 12.9349168, 49.0351785 11.5424379, 49.2241870 12.6609190, 48.1344222 11.5961059, 48.1509192 11.5766855, 47.7408140 12.7027315, 48.0901367 11.6484822, 49.7273904 11.4744562, 49.6686464 12.0996487, 47.6734563 11.5974212, 48.4987681 12.1754338, 48.9399526 13.6174750, 47.8307822 11.8016392, 48.8115053 12.2818893, 49.8984450 12.0457164, 48.9577183 12.8734443, 48.5821928 13.2391059, 48.5148832 11.5443784, 48.5114077 11.5445715, 49.0348960 12.6122460, 49.2132941 12.6724124, 49.2223433 12.6878565, 48.9670759 13.3186444, 48.9608782 13.3116962, 48.9602160 13.3124150, 48.9796758 13.3094109, 49.0242625 12.1398854, 49.0535718 12.6805814, 49.0535391 12.6763560, 48.9562504 13.4658944, 50.0226249 11.8149188, 49.0188390 12.0832940, 47.7528561 12.5191508, 50.0967401 11.5404060, 49.8170477 11.8481107, 49.8174632 11.8597217, 49.8262324 11.8368387, 48.3225772 11.6015380, 48.2303373 11.5684865, 48.5502505 11.9452100, 48.1479010 11.8192123, 48.1522516 11.8536961, 48.1579435 11.8151236, 48.1687671 11.9126528, 48.9652790 13.5883822, 48.8272520 12.3966062, 48.1739333 11.5481724, 49.5254924 11.9614494, 50.1223636 11.7840136, 50.0395891 11.9515272, 50.0480085 11.9954977, 47.6254457 12.5110784, 48.9426280 12.4692627, 48.5634852 11.9882072, 48.8265783 13.7752130, 48.9667118 12.8349224, 49.8210346 11.7431909, 47.8083086 12.5920009, 48.9701961 12.3265193, 48.7957646 12.6424422, 48.8838557 12.5678186, 50.0615527 11.8200016, 49.0246651 12.6579342, 48.1481073 11.7289669, 47.8993548 12.8624100, 47.8673146 12.1277265, 48.2766485 12.3846048, 49.9473973 11.6150938, 49.5225359 12.2661674, 49.8873532 11.4850110, 49.9627815 11.4660231, 48.1674911 11.5451430, 49.6514341 11.4676563, 49.6772117 12.1660213, 49.5444496 11.9443589, 49.5447464 11.9443084, 48.0937782 11.4886530, 49.6059368 11.5082344, 48.1408800 11.5640079, 48.9650564 13.5881898, 48.7565516 13.5148193, 49.5435705 11.9422976, 47.6210461 12.1777480, 49.4477239 11.6857625, 49.4460554 11.6835686, 49.8879820 12.4296686, 49.0139001 13.2324271, 47.9822735 11.4885352, 48.1094506 11.7266607, 50.3106075 11.9096814, 48.2477983 11.4401776, 48.2511189 11.4408524, 48.2511196 11.4408547, 48.2471125 11.4395942, 48.2471134 11.4395935, 48.2511207 11.4408524, 49.5019190 12.0527679, 49.7315595 12.3461012, 49.5100108 12.5477321, 48.2927027 11.4798357, 48.2352747 12.8234436, 49.6767965 12.1612248, 49.9090658 12.5278358, 49.6821913 12.1675909, 50.0497889 11.6009071, 47.8502657 12.9639733, 47.8941448 12.1380495, 48.7635782 11.4224738, 48.7633148 11.4204362, 48.7638216 11.4214954, 48.7646048 11.4293850, 48.7633155 11.4204348, 48.7659842 11.4300553, 48.7638215 11.4214919, 48.7638216 11.4214937, 48.7646069 11.4293837, 48.7646059 11.4293843, 48.7646054 11.4293827, 49.7772736 12.0910176, 48.0831501 11.5408608, 49.0152337 12.1047908, 49.8986046 11.8430735, 48.1200261 11.5495680, 48.1200218 11.5495670, 48.1200271 11.5495696, 48.1311897 11.5566510, 48.1200196 11.5495694, 48.1200271 11.5495680, 48.1200217 11.5495702, 48.1200228 11.5495654, 48.1200218 11.5495654, 48.1311905 11.5566500, 48.1200218 11.5495718, 48.1200260 11.5495696, 48.1200228 11.5495687, 48.1200228 11.5495718, 47.9829128 12.1298784, 49.0148423 12.0988033, 49.8970555 11.7010378, 48.3073913 11.9294207, 49.5220581 12.0202369, 49.0188010 12.0865158, 49.0196418 12.1076991, 49.0224799 12.0972137, 49.0086624 12.1140073, 49.0079845 12.0596346, 49.0063004 12.0842723, 48.0643201 11.4200679, 49.9852673 12.4733816, 49.5182739 12.0223498, 49.0161006 12.0649200, 48.1554042 11.5459282, 49.5036987 11.5105657, 49.5039492 11.5098909, 47.8169133 12.3425923, 49.0155580 12.1020225, 48.8160063 13.3690565, 48.2104282 11.6748380, 49.0186698 12.0861070, 49.0143791 12.0568333, 49.0128154 12.0501601, 47.7242216 12.8623232, 49.9480493 11.5152437, 47.7185209 12.1322924, 49.0135863 12.0980858, 49.0141433 12.0909775, 48.9616275 13.3707694, 50.0571318 12.1630188, 48.5352936 12.1538950, 49.0230406 12.0759531, 49.9695730 11.8248926, 47.8692224 12.6550306, 49.0139872 12.0993480, 50.0456727 12.1526067, 48.0827435 11.8239421, 48.7789409 13.4416277, 48.0701021 11.8683821, 49.2279800 12.3591491, 49.5978247 12.1277408, 49.9636948 11.4430543, 48.6567340 12.3030025, 48.0829495 11.8239749, 47.7892014 12.3063237, 48.9213941 13.3631052, 50.0468919 11.7900887, 48.1275732 11.7411203, 50.1018467 11.9289190, 47.9808205 11.5709699, 48.8722097 13.3716860, 48.0189284 11.5913994, 47.9712056 11.5651943, 50.0720623 11.7343687, 49.5057702 12.0479512, 49.0701610 12.3965810, 49.0088027 12.2709315, 48.1433019 11.6171321, 47.7394301 12.0912820, 48.2748956 11.4707489, 47.7658961 12.3264238, 48.0606524 11.8506605, 48.0225887 11.9300372, 50.0608396 12.1181770, 47.8852671 11.6003827, 47.8423723 11.5854156, 47.9290227 11.4768712, 48.8410570 11.5318713, 47.6534906 11.5020849, 50.0798842 12.1424534, 49.9405337 11.5815981, 48.1525638 11.7410681, 48.1253719 12.6753670, 49.2820607 11.4621282, 49.2767281 11.4605954, 49.2752957 11.4611307, 49.2737454 11.4693648, 49.2791542 11.4630600, 48.2355809 12.4317737, 48.2225206 12.4269633, 50.0096304 11.5342528, 50.0091730 11.5180114, 47.5883957 12.9893172, 47.8480477 11.4745505, 48.0620830 11.5214274, 49.1519360 12.1734992, 49.7531999 11.8335514, 48.0465646 11.5142681, 47.6410480 11.9992875, 48.0397728 11.5225044, 47.6257705 11.7093124, 49.8782430 12.3371545, 48.5308753 13.1752456, 48.6353244 13.4786526, 48.0827751 11.8241935, 49.2069877 12.0869222, 48.2681020 11.4687779, 49.0961493 12.0473105, 49.5687334 11.5124981, 47.6623215 11.4890566, 47.6615700 11.4886820, 47.6528220 11.4593720, 48.1678123 11.9108847, 48.4803108 11.9459449, 48.4801120 11.9405859, 47.7615614 12.1850432, 48.4001496 11.7431475, 48.4001523 11.7431449, 48.4001532 11.7431439, 48.4001514 11.7431458, 48.4001559 11.7431412, 48.4001541 11.7431430, 48.4007607 11.7445270, 48.3995132 11.7424412, 48.4001505 11.7431466, 48.4001550 11.7431421, 48.0302320 11.5198002, 50.1335623 11.6582094, 49.0900685 13.3194516, 48.1636994 11.4992629, 48.1638954 11.5006114, 49.8268841 12.4254832, 49.7736898 11.4977477, 47.7334230 12.8910243, 49.6730978 12.1569376, 49.4450506 11.8566044, 49.4450517 11.8566084, 50.0343837 12.0057082, 50.0389404 12.0059588, 50.0901476 11.9226350, 49.9046225 11.5856532, 49.0196241 12.0926982, 49.0196255 12.0926983, 49.0211080 12.0903255, 49.0312029 12.1063028, 49.0312049 12.1062961, 49.0312084 12.1063023, 49.0325759 12.1057144, 49.0185305 12.0953889, 49.0185345 12.0953894, 49.0190701 12.0946023, 49.0176917 12.0961121, 49.0185908 12.0921057, 49.0185915 12.0921105, 49.0185924 12.0921057, 49.0185926 12.0921125, 49.0185929 12.0921080, 49.0185929 12.0921105, 49.0185931 12.0921031, 49.0185934 12.0921144, 49.0185941 12.0921007, 49.0185951 12.0921031, 49.0185952 12.0921079, 49.0199275 12.0918002, 49.0199275 12.0918026, 49.0207086 12.0971412, 49.0178839 12.0974031, 49.0170893 12.1040414, 49.0197670 12.0892004, 49.0197695 12.0892010, 49.0197721 12.0892016, 49.0148994 12.0776648, 49.0149005 12.0776669, 49.0149008 12.0776631, 49.0149019 12.0776653, 49.0194381 12.0923903, 49.0197664 12.0922483, 49.0197664 12.0922513, 49.0197669 12.0922536, 49.0185726 12.0948193, 49.0185728 12.0948165, 49.0185744 12.0948225, 49.0185745 12.0948195, 49.0185746 12.0948167, 49.0183173 12.0948407, 49.0180503 12.0962374, 49.0180507 12.0962358, 49.0180522 12.0962387, 49.0180527 12.0962370, 49.0180531 12.0962355, 49.0168881 12.0944982, 49.0168905 12.0945030, 49.0168908 12.0944989, 49.0168935 12.0944996, 49.0169572 12.0964730, 49.0187855 12.0866987, 49.0187856 12.0866955, 49.0187871 12.0866972, 49.0196952 12.0908512, 49.0196955 12.0908472, 49.0196970 12.0908553, 49.0196980 12.0908517, 49.0196983 12.0908477, 47.6718840 11.6473889, 49.0244130 12.0975018, 48.0607948 11.6184129, 47.6484915 12.0931252, 48.6862566 11.6120963, 48.1513324 11.5941030, 47.6772885 12.4698671, 47.8572809 11.7969272, 50.0185900 11.5947993, 50.0415115 11.6710379, 50.0455047 11.6729648, 50.0572140 11.6809567, 47.6681210 11.7064390, 47.6677988 11.7053201, 47.6609640 11.7055680, 49.6728265 12.1490093, 48.9675009 12.3906760, 50.1159200 11.8631050, 47.6471760 11.9526540, 48.6122223 12.1926004, 50.0182437 11.8324940, 50.0190952 11.8331859, 49.9335870 11.7378440, 49.9329190 11.7325956, 50.0909091 12.0894665, 48.2808759 11.6737437, 49.5247695 11.9030735, 48.9718495 13.4328515, 50.1586640 11.5704392, 49.9850909 11.6517051, 50.0125545 11.6992003, 47.7269118 12.1058124, 49.4938239 12.1796909, 49.2736602 12.5400565, 48.4825420 11.6301966, 47.6831295 11.5763012, 48.3986459 11.7457661, 48.5949122 11.6561854, 47.8697313 12.6394417, 49.0180645 12.0899199, 48.5415771 12.1614274, 49.5063706 12.0586238, 48.0769911 11.5173999, 49.5392559 12.1610923, 48.0257085 11.5959285, 49.9347352 11.5927808, 50.1764459 11.7554872, 48.7262394 11.4138936, 49.5136483 11.9690411, 49.5108070 11.9702656, 48.2336061 12.7101152, 49.2954987 12.3550665, 48.1060045 11.4224434, 48.1164516 11.7457503, 47.7227471 12.8663906, 48.0816872 12.0609230, 50.2152548 12.0074059, 50.2320320 11.9824924, 48.3291750 11.9250679, 48.5052660 13.4522395, 48.2398892 12.6898530, 47.7347322 12.8876517, 47.6648917 11.8866486, 47.7224481 12.8774277, 50.1253347 11.5988929, 49.0373017 11.4713987, 48.4045914 11.9889563, 48.3659809 11.6092197, 49.9061473 11.7649973, 48.1125639 11.7873969, 48.8035706 11.4955081, 48.8017857 11.4931013, 49.7661741 11.9355854, 48.8378723 12.1833660, 49.8506179 11.5871782, 48.1263201 11.8782617, 48.0432704 11.5177994, 47.7260291 12.1109024, 48.0957791 11.7622930, 47.7351805 12.1103036, 47.7502995 12.0906760, 47.6631098 11.9347543, 49.3619592 12.3332809, 48.4552782 11.9126341, 48.1247230 11.9803220, 48.5728017 13.4633595, 48.1405104 11.5935655, 48.1220763 11.5438001, 48.1405112 11.5935605, 48.1405097 11.5935706, 48.1220770 11.5437989, 48.3070385 11.9079993, 49.8813986 12.3387714, 49.8843655 12.3365134, 47.6923168 12.2660427, 48.1580588 11.4442607, 49.8556988 12.2213404, 47.6931296 12.3891410, 47.6502013 11.9345166, 47.6501599 11.9345446, 47.6485872 11.9324325, 48.2985551 11.9050355, 48.9239093 13.4441838, 48.1647650 11.5899480, 48.1282133 11.5527531, 48.1255776 11.6306425, 50.0129397 12.0050924, 50.1047922 12.1674481, 47.8567739 11.6863454, 48.2490350 11.5586567, 49.0006194 12.3996130, 48.9993664 12.3982370, 48.0739860 11.5144815, 48.4306622 11.5979945, 48.8303475 12.9625458, 48.8303482 12.9625450, 48.8303492 12.9625441, 48.8342572 12.9618574, 48.8342580 12.9618573, 48.8342589 12.9618574, 48.9700616 13.5641641, 47.8454487 12.3706689, 47.9519330 12.2752926, 49.3528140 12.3797332, 49.3790168 12.3987072, 49.5561735 11.5420028, 48.3234735 11.5329278, 48.5324057 12.1498019, 48.1290254 11.6311058, 49.5458338 11.5409081, 49.5564497 11.5434917, 48.3251363 11.8655590, 47.7186656 12.8727953, 47.7283278 12.8874375, 48.2176073 11.6301119, 47.6097012 12.8662571, 50.1338452 11.4297540, 49.5048933 12.6154745, 49.9358251 11.5223760, 48.8453913 12.9581656, 48.1385566 11.5968928, 48.2936431 11.6542585, 49.0757627 11.9068162, 49.4786149 12.4996766, 48.1815609 11.5157431, 48.8482307 12.9391855, 48.1300418 11.6068213, 49.9689695 11.5310708, 48.8815221 12.5648911, 48.8818937 12.5646408, 49.3567688 12.4175171, 48.1965731 11.5757210, 49.1026763 13.1112906, 47.8040137 12.8559330, 49.4258166 12.6794486, 48.9941475 13.2205163, 47.5953829 11.7822341, 47.6044414 12.9864303, 47.7498419 12.8495333, 47.7545069 12.8488217, 47.7551318 12.8493986, 47.9900882 11.6446685, 48.0493957 11.4506929, 47.5823437 12.8658692, 47.5823262 12.8659575, 48.1615304 11.5918723, 47.5421323 12.9394960, 47.5444136 12.9527252, 49.7647053 11.7962899, 49.8618788 11.8979045, 50.1152569 12.1216525, 50.1046531 12.1021386, 50.1035974 12.1287697, 49.5111470 11.4098766, 47.8564924 12.4847039, 47.7053568 12.0322933, 47.7092784 12.0441586, 47.7039798 12.0231242, 48.2682507 11.4695839, 48.2721605 11.4646675, 48.2718239 11.4652688, 48.2716386 11.4650139, 48.2721166 11.4647511, 48.2724362 11.4649601, 47.7292845 12.4392342, 47.7634284 12.4516572, 49.9618409 11.6711507, 49.0108389 12.4811544, 47.7468620 12.2479646, 47.7400398 12.2332605, 49.6406789 12.4388138, 49.1798457 11.7586122, 49.8006520 12.3857626, 49.9514872 12.1060524, 48.0313595 11.5868381, 47.7267192 12.8687083, 47.6686694 11.6625171, 48.1342423 11.5700387, 49.7830222 11.4348553, 48.0260123 11.5251821, 47.6604914 11.5080991, 47.6614539 11.5187932, 47.6593777 11.5030454, 47.6498945 11.4676288, 47.6601322 11.5051051, 48.9513267 13.4829135, 48.8736549 12.0076293, 48.1349504 11.5943735, 48.0271457 12.5541518, 47.6433999 12.1751083, 47.6407574 12.1696156, 47.6411215 12.1703695, 47.6403878 12.1635277, 48.3996544 11.8520538, 49.9587512 11.5802173, 49.9447427 11.5773091, 49.9442251 11.5776919, 49.9443692 11.5763951, 49.9410438 11.5748716, 47.8659427 12.0111514, 48.4056651 11.9909489, 48.0784519 12.5696682, 47.9165852 12.0318879, 47.7232401 12.8761185, 47.6431611 11.9170922, 47.8662840 12.0159958, 47.6173936 11.7076257, 49.8788169 12.3370226, 47.6996482 12.2430712, 49.2150275 12.7622283, 49.7516975 11.7265102, 48.6835709 11.6132535, 48.6848902 11.6136339, 47.8393271 11.9691096, 47.7020991 12.0130841, 48.3479535 11.9235535, 47.7021170 12.0131818, 47.9718784 11.6528135, 47.7200677 12.8755116, 47.7581962 12.2737426, 47.6493815 11.9316988, 48.8049165 11.8889334, 48.0040033 11.5136520, 48.0397308 11.5226714, 47.9367272 12.9322049, 47.7108046 12.1251726, 47.6339493 13.0038067, 47.6442786 12.0466307, 49.2791168 11.4474779, 49.2765759 11.4603898, 47.8032737 11.5000786, 48.8311137 13.4591452, 49.2784356 11.4552455, 49.2800695 11.4584632, 48.3996250 11.7420086, 49.2804964 11.4619377, 49.4913726 11.7661043, 47.6472166 11.9289408, 49.0135720 12.1459346, 49.1071095 13.2047136, 48.1073936 11.4528835, 49.6592217 11.5167515, 49.9394884 11.5305029, 49.3329703 11.4406888, 49.0317793 12.0933680, 48.1521700 11.5278539, 48.1497300 11.5273092, 47.7197728 12.8759652, 48.7841110 13.5796127, 47.8826998 11.9182081, 48.3415480 11.9222212, 48.1627561 11.5861396, 49.8050396 11.5284272, 49.0512827 11.8145616, 48.7864857 13.3751383, 49.6899734 12.1492885, 48.9446626 13.6012764, 48.9402070 13.5950476, 48.0795080 11.5270511, 48.8156148 11.8875333, 49.6458378 12.2104212, 49.6369228 12.2020412, 47.7180909 11.6534598, 49.8234349 11.6667095, 49.1737777 12.8528844, 48.1970574 11.4581073, 49.6766225 12.1607203, 49.6769325 12.1608543, 49.6772034 12.1609933, 49.1778799 11.4136321, 49.6833617 12.1507245, 48.1717682 11.7160853, 49.1784941 11.6516372, 48.5259749 12.3142889, 49.3778005 12.7064711, 48.5330205 12.1628553, 48.5305960 12.1578907, 48.7356699 11.5492059, 47.8508053 12.7851381, 47.6764212 11.8710364, 48.1424597 11.5822622, 49.8247899 12.1940792, 48.1450137 11.5810073, 48.2393390 11.4385684, 48.2564046 11.4654355, 48.2596082 11.4451115, 48.2605838 11.4347639, 48.1678985 11.7149075, 47.7873372 11.8339232, 47.7200996 12.7699376, 47.6054977 12.9858304, 47.6241300 12.9745039, 47.7900190 12.0771110, 48.7548713 13.8178262, 47.7101114 12.1139656, 47.6945682 13.0460095, 49.8841615 11.9164322, 49.3432447 12.3640770, 49.3300666 12.4136162, 47.7641979 11.9958704, 50.3416351 11.7143397, 50.0666062 12.0711517, 49.9480885 11.8915341, 48.1366177 11.5770164, 48.6879045 12.2017217, 49.7220245 12.1913195, 49.7204497 12.1998025, 49.7154331 12.2107545, 49.5983479 12.2578390, 50.0777379 11.9240709, 47.9417533 12.9357259, 47.9422619 12.9367666, 47.9424226 12.9368673, 47.9386089 12.9354309, 48.7557813 12.5888625, 50.0964003 11.6507085, 49.0165313 12.0929675, 49.0142314 12.0978208, 49.0142509 12.0983715, 49.0145444 12.0943274, 49.0148619 12.0936434, 50.1071864 11.6113150, 48.1788331 11.4617680, 49.8308091 11.9002786, 49.8121183 11.6156822, 48.3049382 11.9087780, 48.6919369 11.7130487, 48.1636845 11.4571067, 48.9389978 13.5126937, 49.6626801 11.9936761, 48.9435067 12.0285624, 47.7561605 12.0417945, 49.8026070 12.1691206, 49.8075440 12.1639654, 49.8033895 12.1561119, 49.8018280 12.1559349, 47.7409841 12.0154738, 47.7481852 12.0511155, 47.7349927 12.0534271, 50.0966697 12.2230986, 50.0974045 12.2239071, 50.0965526 12.2228208, 48.3710824 13.2773536, 47.6056995 12.9094085, 47.6057338 12.9091081, 49.8555425 12.2214595, 47.7601898 12.4233394, 47.7608375 12.4316584, 47.8611631 12.1264453, 49.9758154 11.7336493, 47.6453043 12.0985512, 47.6452987 12.0985287, 47.6537812 12.0983658, 49.9590090 11.5788897, 49.9589325 11.5810671, 47.7224967 12.8480335, 49.7633614 11.4467299, 47.7063746 12.0346578, 47.6900275 12.7995463, 47.6900364 12.7994766, 47.6900311 12.7995088, 49.9462668 11.5753721, 48.2889659 11.4600298, 48.2866384 11.4602750, 48.2860387 11.4609057, 48.2863124 11.4604083, 48.8822337 12.5741336, 47.7670520 12.2581243, 47.7766786 12.2687321, 48.5106716 13.4421507, 47.9241734 12.0134157, 47.7210112 12.8922962, 47.7786600 11.7336551, 48.1019055 11.5954917, 48.2671203 11.4312604, 48.2720955 11.4679281, 49.7343649 12.3586803, 48.9678967 12.3917663, 48.0683448 11.6098579, 49.3663032 11.9178031, 48.7588183 13.0169252, 47.8544613 12.1599328, 47.7221913 12.1894134, 47.7246273 12.1709999, 47.5401994 11.5451552, 49.4706490 11.9408120, 47.6579035 11.9415792, 49.5018247 12.5383206, 48.1398408 11.5780689, 48.1671028 11.5483431, 48.2700458 11.4683333, 48.7845193 13.8019909, 49.0518566 11.7822209, 49.4932776 11.4751642, 48.1413436 11.5969927, 48.1428635 11.4125410, 48.1940954 11.4600752, 48.7656923 11.5351364, 48.4067613 11.7574390, 47.7259635 12.1148467, 50.3199340 11.9165126, 49.0413060 11.4708290, 48.1403638 11.5719644, 48.1400691 11.5731123, 48.1401611 11.5727358, 48.1402587 11.5723472, 47.7730997 11.5727335, 49.0190540 12.0985788, 48.0938038 11.4659904, 47.9414011 12.6023026, 49.7354916 12.3568963, 50.3121132 11.9174085, 49.0183174 12.0958518, 48.2350566 12.4315667, 48.1532035 12.8174680, 48.1570952 12.8253903, 50.1509972 12.0529393, 47.7777085 12.3663525, 47.9707607 11.7802007, 48.2934356 11.9067051, 47.6673450 11.7145331, 47.8657489 12.0113892, 49.1974796 12.7466092, 48.1375637 11.5880668, 49.4206070 11.8806656, 49.8621215 11.9530041, 48.0991170 11.4784139, 48.0978106 11.4892883, 49.2841959 11.4810539, 48.9057654 12.6920206, 48.1039524 11.5792060, 48.2874464 11.4608564, 47.7785483 11.7334497, 47.7788087 11.7333363, 49.0063017 12.0967461 +55.9502048 -3.1904658 +1 +yes and 8 and 55.9354769 -3.1317550, 55.9368505 -3.2110421, 55.9773363 -3.1760364, 55.9574672 -3.1996888, 55.9378769 -3.1933451, 55.9401022 -3.1817999, 55.9712125 -3.2539350, 55.9342476 -3.2456539 +yes +1 +yes +120 +John Redpath Electrical Contractor +190 +no +20 +48.8760867 2.3599561, 48.8968424 2.3818049, 48.8433854 2.3736074, 48.8242892 2.3764902, 48.8243395 2.3766423, 48.8798131 2.3564484, 48.8762217 2.3586964, 48.8966561 2.3798725 +49.4126021 8.6894511 +no +2410 +58 +52.0455273 8.4506902, 52.0583801 8.5520281, 52.0441674 8.5341281, 52.0579438 8.4922378, 52.0929733 8.5326795, 52.0238436 8.5234911, 52.0555549 8.5378820, 52.0498292 8.5592441, 52.0292398 8.6021218, 52.0292227 8.6009951, 52.0272514 8.5957092, 52.0306293 8.6106186, 52.0321219 8.6054609, 52.0473461 8.5908186, 52.0469513 8.5887087, 52.0231198 8.6053870, 52.0580464 8.6142089, 52.0205860 8.5678184, 52.0581150 8.4919573, 52.0312632 8.5407538, 52.0319234 8.5420151, 52.0462690 8.6409561, 52.0191448 8.5779535, 52.0184508 8.5657079, 52.0743431 8.6025251, 52.0754057 8.4694042, 52.0386901 8.5655696, 52.0318962 8.5656184, 52.0273349 8.5382436, 52.0542712 8.5439409, 52.0181631 8.5466796, 52.0980842 8.5181968, 52.0949444 8.5198350, 52.0522750 8.5245659, 52.0456077 8.5212121, 52.0419948 8.5160247, 52.0292851 8.5181917, 52.0418895 8.5307595, 52.0327138 8.5227649, 52.0314754 8.5141184, 52.0295337 8.5150115, 52.0157211 8.5484732, 52.0306430 8.5117068, 52.0226396 8.5511428, 52.0223364 8.5495579, 52.0233884 8.5519795, 52.0234840 8.5536985, 52.0265557 8.5458287, 52.0185875 8.5275250, 52.0186597 8.5289951, 52.0209783 8.5457695, 52.0294891 8.5129716, 52.0267434 8.4659864, 52.0459901 8.5425345, 52.0682897 8.5224152, 52.0719588 8.5498716, 52.0442328 8.5433584, 52.0563214 8.5500007, 52.0205357 8.5287442, 52.0926733 8.5329308, 52.0981428 8.5181712, 52.0359476 8.4981338, 52.0327367 8.5222372, 52.0719981 8.5498472, 52.0184308 8.5473987, 52.0208455 8.5454983, 52.0385624 8.4870408, 52.0946122 8.5195110, 52.0586804 8.5511665, 52.0230297 8.5524206, 52.0307135 8.5117101, 52.0267458 8.4660597, 52.0459428 8.5203701, 52.0207097 8.5292682, 52.0261594 8.5241168, 52.0312156 8.5405749, 52.0272333 8.5379784, 52.0315830 8.5423173, 52.0526516 8.5253445, 52.0468920 8.5467931, 52.0186691 8.5656539, 52.0472610 8.5893105, 52.0391035 8.5656780, 52.0315635 8.5657826, 52.0543651 8.5447212, 52.0462874 8.6407281, 52.0579586 8.6142140, 52.0742793 8.6022273, 52.0293357 8.5180617, 52.0206603 8.5676185, 52.0425290 8.5168560, 52.0270594 8.5966793, 52.0323486 8.6056893, 52.0307766 8.6106210, 52.0230896 8.6059771, 52.0500810 8.5586981, 52.0580908 8.4924175, 52.0455684 8.4510738, 52.0421599 8.5307527, 52.0294960 8.5152776, 52.0314045 8.5141317, 52.0586095 8.5515568, 52.0156406 8.5480803, 52.0556849 8.5374131, 52.0308117 8.5117948, 52.0262032 8.6392966, 52.0265579 8.5454510, 52.0150885 8.5416301, 52.0184126 8.5282924, 52.0459863 8.5425744, 52.0754750 8.4692456, 52.0679871 8.5225050, 52.0691401 8.4845397, 52.0191169 8.5773881, 52.0297068 8.6015894, 52.0261594 8.5241168, 52.0363421 8.4985163 +429 +166 +memorial +4 +49.4236325 8.6489134, 49.4054825 8.6765974, 49.4085411 8.6936835, 49.4178011 8.7610141, 49.3796459 8.6697617, 49.4278793 8.6839291, 49.4013876 8.6762755, 49.3743789 8.7031911, 49.3734822 8.6802951, 49.4367405 8.6791812, 49.4328280 8.6823664, 49.4276958 8.6865270, 49.4306638 8.6826578, 49.4094722 8.7027714, 49.3790081 8.6915773, 49.4044750 8.6884416, 49.4024782 8.6846927, 49.3989037 8.6901330, 49.3805544 8.6588755, 49.4060908 8.6592832, 49.3734275 8.6805145, 49.3758039 8.6636769, 49.4080460 8.6903558, 49.4088898 8.6922599 +Heidenloch, Römischer Tempel, Lochheim, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall +no +yes +48.8600225 2.3936303, 48.8631279 2.3912635, 48.8597319 2.3936651, 48.8598029 2.3985154, 48.8597855 2.3942322, 48.8591071 2.3914902, 48.8596833 2.3988939, 48.8627870 2.3936382, 48.8601213 2.3928080, 48.8588033 2.3945025, 48.8623244 2.3917870, 48.8599553 2.3920732, 48.8623521 2.3905310, 48.8611410 2.3949350, 48.8626557 2.3947199, 48.8627718 2.3931199, 48.8624253 2.3954178, 48.8600462 2.3938832, 48.8599858 2.3940879, 48.8592676 2.3937520, 48.8630712 2.3949750, 48.8622181 2.3963152, 48.8597856 2.3928042, 48.8618038 2.3979473, 48.8601567 2.3927356, 48.8745532 2.3997688, 48.8636700 2.3961570, 48.8631900 2.3959850, 48.8640090 2.3946760, 48.8631340 2.3951910, 48.8630490 2.3970150, 48.8629220 2.3974440, 48.8623290 2.3973160, 48.8620890 2.3973800, 48.8619200 2.3982600, 48.8608190 2.3965430, 48.8621460 2.3960710, 48.8627670 2.3962430, 48.8625690 2.3953630, 48.8625410 2.3953840, 48.8621740 2.3956630, 48.8612420 2.3984100, 48.8608330 2.3978950, 48.8606210 2.3980880, 48.8605360 2.3986240, 48.8607900 2.3993750, 48.8604800 2.3994180, 48.8610160 2.3990960, 48.8601410 2.3998690, 48.8599860 2.3999120, 48.8599430 2.3998900, 48.8599157 2.3998601, 48.8598870 2.3998260, 48.8597460 2.3996760, 48.8597030 2.3996110, 48.8595760 2.3988820, 48.8596330 2.3988390, 48.8593930 2.3981520, 48.8601690 2.3998480, 48.8380895 2.2848918, 48.8381983 2.2846836, 48.8392283 2.2918126, 48.8383179 2.2847059, 48.8603950 2.3968860, 48.8602820 2.3969940, 48.8602260 2.3982600, 48.8612140 2.3960710, 48.8613270 2.3953840, 48.8614820 2.3946980, 48.8616660 2.3945260, 48.8611655 2.3949235, 48.8612140 2.3948910, 48.8611860 2.3949120, 48.8618070 2.3951910, 48.8618920 2.3955350, 48.8611290 2.3953200, 48.8611570 2.3952770, 48.8610590 2.3953630, 48.8606490 2.3953200, 48.8605360 2.3954060, 48.8593650 2.3971870, 48.8589830 2.3970370, 48.8584032 2.3956762, 48.8628940 2.3934100, 48.8627390 2.3931740, 48.8623570 2.3934100, 48.8620890 2.3935600, 48.8625690 2.3930450, 48.8622870 2.3931960, 48.8615250 2.3925090, 48.8615530 2.3925730, 48.8624140 2.3921230, 48.8635010 2.3912640, 48.8633310 2.3906640, 48.8622020 2.3918220, 48.8613550 2.3923590, 48.8616940 2.3901270, 48.8622870 2.3903420, 48.8617790 2.3912860, 48.8607200 2.3892260, 48.8601130 2.3904280, 48.8605360 2.3911140, 48.8607060 2.3915650, 48.8607223 2.3916025, 48.8607340 2.3916510, 48.8608750 2.3921870, 48.8607480 2.3911790, 48.8607200 2.3911140, 48.8607060 2.3910500, 48.8606490 2.3908780, 48.8605790 2.3905780, 48.8608890 2.3922300, 48.8614120 2.3939470, 48.8609600 2.3928310, 48.8614120 2.3943330, 48.8613527 2.3946884, 48.8609030 2.3946120, 48.8608750 2.3946980, 48.8607900 2.3942040, 48.8611150 2.3943540, 48.8607200 2.3949340, 48.8605650 2.3950620, 48.8605360 2.3951050, 48.8601410 2.3954920, 48.8592520 2.3964570, 48.8590680 2.3966720, 48.8593510 2.3969290, 48.8596890 2.3960710, 48.8588000 2.3963500, 48.8587580 2.3962000, 48.8589830 2.3966720, 48.8588850 2.3968010, 48.8580380 2.3955560, 48.8587290 2.3935170, 48.8587580 2.3930880, 48.8591810 2.3935600, 48.8594350 2.3923590, 48.8593510 2.3912860, 48.8595620 2.3911140, 48.8590400 2.3917370, 48.8593220 2.3914790, 48.8593650 2.3914790, 48.8607620 2.3921660, 48.8605360 2.3924230, 48.8604520 2.3925520, 48.8600560 2.3928090, 48.8605080 2.3931310, 48.8604380 2.3930240, 48.8606350 2.3928090, 48.8604230 2.3929170, 48.8600560 2.3928740, 48.8601705 2.3927894, 48.8602540 2.3934100, 48.8606350 2.3935820, 48.8602120 2.3936030, 48.8601410 2.3939040, 48.8597740 2.3945690, 48.8585320 2.3955990, 48.8601980 2.3952770, 48.8606490 2.3946550, 48.8604800 2.3943760, 48.8598300 2.3954060, 48.8597030 2.3952980, 48.8605360 2.3942900, 48.8594630 2.3950620, 48.8594630 2.3949550, 48.8595200 2.3949980, 48.8597180 2.3947830, 48.8590680 2.3951480, 48.8590960 2.3954700, 48.8587720 2.3960710, 48.8590260 2.3954920, 48.8590960 2.3955770, 48.8597740 2.3955130, 48.8596890 2.3956420, 48.8590120 2.3965860, 48.8589314 2.3964384, 48.8590400 2.3965860, 48.8588420 2.3962640, 48.8590400 2.3957060, 48.8591390 2.3959850, 48.8590400 2.3960920, 48.8591670 2.3962000, 48.8588990 2.3963070, 48.8599400 2.3929300, 48.8611450 2.3938920, 48.8581960 2.3952270, 48.8605580 2.3925470, 48.8621020 2.3942670, 48.8596730 2.3927980, 48.8610650 2.3949100, 48.8601070 2.3930030, 48.8611720 2.3939770, 48.8614040 2.3952430, 48.8608790 2.3933140, 48.8636050 2.3964430, 48.8591120 2.3946450, 48.8597030 2.3956510, 48.8607600 2.3938000, 48.8593520 2.3939080, 48.8610650 2.3934180, 48.8585032 2.3954149, 48.8584651 2.3953018, 48.8583980 2.3953650, 48.8592830 2.3947420, 48.8593664 2.3947165, 48.8596270 2.3943920, 48.8597115 2.3945144, 48.8584840 2.3952396, 48.8585550 2.3961900, 48.8585740 2.3948400, 48.8587570 2.3965220, 48.8586237 2.3963910, 48.8587457 2.3966952, 48.8585780 2.3963770, 48.8590510 2.3971380, 48.8595280 2.3972980, 48.8592570 2.3974000, 48.8595920 2.3973830, 48.8594170 2.3990380, 48.8615073 2.3918887, 48.8611069 2.3916616, 48.8615364 2.3918726, 48.8609848 2.3913417, 48.8629618 2.3902204, 48.8616640 2.3912770, 48.8617058 2.3884516, 48.8596730 2.3944650, 48.8615530 2.3981050, 48.8597415 2.3943819, 48.8609620 2.3968630, 48.8611260 2.3963200, 48.8628596 2.3928690, 48.8613050 2.3968980, 48.8628120 2.3929370, 48.8614690 2.3970200, 48.8610990 2.3973950, 48.8628360 2.3931780, 48.8618534 2.3934719, 48.8603710 2.3963320, 48.8614688 2.3925529, 48.8589100 2.3968930, 48.8630280 2.3949170, 48.8586723 2.3951535, 48.8587444 2.3947978, 48.8585366 2.3952915, 48.8584981 2.3952292, 48.8584645 2.3952683, 48.8588825 2.3967505, 48.8611197 2.3929716, 48.8595742 2.3949400, 48.8623225 2.3943663, 48.8631335 2.3933669, 48.8583882 2.3956719, 48.8591916 2.3918972 +49.4102265 8.6939011, 49.4099021 8.7003337 +95 +48.8834296 2.3531464 +55.9918052 -3.3860654, 55.9951617 -3.3732725, 55.9950208 -3.4111205, 55.9938394 -3.4136276, 55.9833096 -3.1759451, 55.9405506 -3.2128984, 55.9408017 -3.2123133, 55.9408588 -3.2121518, 55.9406762 -3.2125446, 55.9409715 -3.2118284, 55.9409148 -3.2119933, 55.9406135 -3.2127202, 55.9834389 -3.1722248, 55.9901233 -3.1821068, 55.9742425 -3.1800365, 55.9776299 -3.1714526, 55.9942065 -3.4103941, 55.9426649 -3.2081341, 55.9425769 -3.2079585, 55.9235675 -3.2338755, 55.9244798 -3.2473711, 55.9232306 -3.3792832, 55.9414442 -3.2104954 +1 +49.4333190 8.6867073, 49.4199838 8.7597906, 49.3967496 8.6929283, 49.3758602 8.6941971, 49.4437124 8.7590947, 49.4213729 8.7461819, 49.3924724 8.6994716, 49.4143929 8.7631903, 49.4078072 8.7077293, 49.4127417 8.7657609 +48.8832844 2.3022074, 48.8556200 2.3068506, 48.8950280 2.3447570, 48.8456181 2.3051375, 48.8673061 2.3458878, 48.8702836 2.3508959, 48.8363545 2.3536716, 48.8522718 2.3406371, 48.8346500 2.3172863, 48.8319392 2.3309271, 48.8445352 2.3242726, 48.8414313 2.3069539, 48.8378972 2.3017072, 48.8355703 2.2859671, 48.8476672 2.3527426, 48.8460795 2.3742445, 48.8438213 2.3729021, 48.8526670 2.3323656, 48.8494031 2.3370695, 48.8249137 2.3571341, 48.8260261 2.3459422, 48.8501935 2.3250319, 48.8227135 2.3260702, 48.8189756 2.3612028, 48.8469142 2.3813987, 48.8842024 2.3388617, 48.8448696 2.2974529, 48.8568210 2.3523008, 48.8500524 2.3076923, 48.8586271 2.3007824, 48.8296368 2.2975779, 48.8697560 2.3414883, 48.8797179 2.3570269, 48.8413622 2.3437999, 48.8415875 2.3505588, 48.8686452 2.3957029, 48.8728505 2.3993800, 48.8352367 2.3263118, 48.8742224 2.3396921, 48.8337013 2.3466308, 48.8463962 2.3870738, 48.8632649 2.3858206, 48.8414439 2.2869114, 48.8767699 2.2867318, 48.8802563 2.2982452, 48.8294672 2.3084779, 48.8587218 2.4028880, 48.8521928 2.4013589, 48.8467299 2.2847703, 48.8481913 2.2901149, 48.8724892 2.3267639, 48.8835954 2.3291657, 48.8923205 2.3416630, 48.8770457 2.4050940, 48.8659081 2.3781743, 48.8593821 2.3790898, 48.8743224 2.3737632, 48.8305048 2.3677879, 48.8518448 2.3890950, 48.8198243 2.3386394, 48.8624613 2.3594619, 48.8529864 2.3827830, 48.8212165 2.3424964, 48.8747784 2.3848811, 48.8398751 2.3939229, 48.8394177 2.3984809, 48.8354853 2.3854944, 48.8646806 2.4060380, 48.8239587 2.3634647, 48.8910508 2.3191148, 48.8914069 2.3267388, 48.8833930 2.3812455, 48.8708265 2.3779442, 48.8557679 2.3464388, 48.8594808 2.3467106, 48.8625411 2.3496651, 48.8521023 2.3568721, 48.8577587 2.3558712, 48.8777176 2.3937456, 48.8656120 2.3608400, 48.8639803 2.3651991, 48.8476074 2.3428362, 48.8575593 2.3848465, 48.8418918 2.3218739, 48.8807422 2.3649558, 48.8694004 2.3648970, 48.8688629 2.3592316, 48.8590770 2.3279978, 48.8478715 2.3198313, 48.8299220 2.3787029, 48.8701399 2.3208052, 48.8791820 2.3141155, 48.8707001 2.3083322, 48.8738936 2.3008712, 48.8461742 2.4105318, 48.8765925 2.3611628, 48.8687959 2.2895729, 48.8681029 2.2819378, 48.8612043 2.2751645, 48.8759825 2.3462270, 48.8256117 2.3156483, 48.8846736 2.3626003, 48.8412041 2.3167359, 48.8838977 2.2893818, 48.8447043 2.2574488, 48.8388336 2.2570514, 48.8562928 2.4086751, 48.8613711 2.3348960, 48.8724460 2.3296815, 48.8770249 2.3413662, 48.8673989 2.3038079, 48.8768924 2.3218191, 48.8626137 2.3716303, 48.8577490 2.3740410, 48.8544587 2.3716617, 48.8434438 2.2775683, 48.8465081 2.4010506, 48.8383375 2.4059297, 48.8917628 2.3346006, 48.8982438 2.3586188, 48.8722045 2.3371834, 48.8677158 2.3837011, 48.8485984 2.2616822, 48.8581577 2.2877816, 48.8658810 2.2957521, 48.8524932 2.2753573, 48.8671349 2.2739152, 48.8565975 2.2717002, 48.8640768 2.2926880, 48.8649634 2.2873793, 48.8414706 2.2667764, 48.8369118 2.2971635, 48.8523889 2.2926023, 48.8348381 2.3051360, 48.8608328 2.3202142, 48.8609201 2.3180354, 48.8555779 2.3258692, 48.8570577 2.3190096, 48.8688688 2.3293533, 48.8617696 2.3477277, 48.8750802 2.3235709, 48.8561278 2.3314027, 48.8491689 2.3364515, 48.8842439 2.3208990, 48.8963707 2.3196241, 48.8891032 2.3083901, 48.8839542 2.3137640, 48.8799650 2.2946628, 48.8602476 2.3525764, 48.8648255 2.3978523, 48.8987342 2.3363211, 48.8933357 2.3510120, 48.8878706 2.3493757, 48.8847676 2.3506962, 48.8900150 2.3386297, 48.8975447 2.3343783, 48.8995298 2.3700602, 48.8722691 2.3468122, 48.8831291 2.3341159, 48.8810244 2.3451276, 48.8251672 2.3753747, 48.8410007 2.3779168, 48.8768622 2.3589369, 48.8758269 2.3554902, 48.8843019 2.3905346, 48.8927700 2.3745823, 48.8839103 2.3739430, 48.8886607 2.3737892, 48.8691728 2.4085455, 48.8361192 2.2976662, 48.8692088 2.4085611, 48.8886357 2.3901364, 48.8928033 2.3785257, 48.8725254 2.3564163, 48.8904169 2.3596324, 48.8420324 2.3637585, 48.8666934 2.3539857, 48.8572232 2.3616056, 48.8947703 2.3652163, 48.8478953 2.3316238, 48.8407489 2.3325635, 48.8297226 2.3219729, 48.8579662 2.2945015, 48.8647293 2.3437855, 48.8646150 2.3358501, 48.8531446 2.3665394, 48.8691228 2.3722077, 48.8731641 2.3135886, 48.8769406 2.3357171, 48.8499033 2.3749234, 48.8568674 2.2763388, 48.8286079 2.3568587, 48.8368162 2.3928761 +30 mph +48.9012005 2.3862959, 48.8801709 2.3706981, 48.8593908 2.3144172, 48.8609726 2.2828299, 48.8611046 2.3413657, 48.9003252 2.3734463, 48.8804901 2.2865619, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8645440 2.4097670, 48.9007525 2.3748724, 48.8635857 2.2722338, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8595020 2.3116861, 48.8607706 2.3747898, 48.8787212 2.3698437, 48.8656358 2.2892405, 48.8786755 2.3549221, 48.8797035 2.3026873, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8936152 2.3152934, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.8711680 2.3244832, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.9007173 2.3745755, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8936129 2.3029112 +Kirkcaldy, Cowdenbeath, Dunfermline, South Queensferry, Linlithgow, Kincardine, Broxburn, Bathgate, Polton, Grangemouth, Bo'ness, Inverkeithing, Dalgety Bay, Rosyth, Bonnyrigg, Loanhead, Haddington, Penicuik, Musselburgh, Cockenzie and Port Seton, Gullane, Dalkeith, Livingston, Prestonpans, Tranent, Armadale, Gorebridge, Mayfield, Newtongrange, Eskbank, Polmont, Lasswade +48.0843405 1.8516661, 48.0842975 1.8516532, 48.3634720 1.4444762, 48.3633107 1.4440969, 48.3090898 0.8101983, 48.4391987 1.4310492, 48.4438257 1.2435743, 48.4551854 1.5391428, 48.4550506 1.5390148, 48.2034817 1.3965458, 48.7450953 1.3465073, 48.7450288 1.3465364, 48.2041014 1.8493980, 48.2999243 1.2898661, 48.2856652 1.2503363, 48.2806148 1.2225198, 48.2800124 1.6183789, 48.0715557 1.3225880, 48.1293202 1.8532335, 48.2693592 1.1573085, 48.3892052 1.4934020, 48.3895541 1.4932054, 48.4271283 1.5158383, 48.4272198 1.5156725, 48.1637493 1.2648026, 48.3576867 1.4338803, 48.2544911 1.5705116, 48.0964603 1.8517115, 48.4156457 1.4892388, 48.4162429 1.5034164, 48.4143664 1.5057059, 48.1825735 1.3757520, 48.2632013 1.5930746, 48.3532908 1.4265631, 48.1806158 1.3747250, 48.0675193 1.2906117, 48.2069451 1.8485104, 48.4781262 1.4607501, 48.4535767 1.2953431, 48.7640966 1.3132549, 48.2832224 1.6280084, 48.4383314 1.5246435, 48.4468667 1.4788401, 48.3902446 1.7298333, 48.1105340 1.3319487, 48.4632188 1.4998341, 48.4659463 1.5066438, 48.3785954 1.4828822, 48.4161166 1.4771368, 48.0740104 1.3616631, 48.4568587 1.4826879, 48.2469000 1.5444200, 48.4513703 1.4448174, 48.2401186 1.5169750, 48.4492426 1.4904726, 48.2486754 1.1179446, 48.2331152 1.4901573, 48.3203704 0.8052871, 48.4458166 1.2350335, 48.4433598 1.2420607, 48.4391932 1.4309164, 48.4570303 1.4509779, 48.1904387 1.3353826, 48.3223013 1.8632060, 48.2543249 1.5705688, 48.2757180 1.6234395, 48.1775018 1.3793555, 48.2040697 1.8494049, 48.3348687 0.8176667, 48.1872713 1.3202539, 48.2168785 1.4325393, 48.1962959 1.0911905, 48.1794824 1.2987246, 48.2106265 1.1624752, 48.2084923 1.1591442, 48.3218713 1.6682497, 48.4731048 1.6040268, 48.4894113 1.5380927, 48.1963001 1.0981460, 48.1968889 1.0975920, 48.1947865 1.0689477, 48.1935748 1.0698455, 48.1871866 1.0458453, 48.1871223 1.0509226, 48.1900625 1.0581630, 48.2106023 1.1100587, 48.1995584 1.1160835, 48.2004834 1.1155760, 48.2010401 1.1152619, 48.2059666 1.1275207, 48.2078779 1.1355348, 48.2084109 1.1207323, 48.2103535 1.1013451, 48.2100796 1.1121090, 48.2096161 1.1402341, 48.2120405 1.1473697, 48.2121332 1.1532022, 48.2125462 1.1593680, 48.2098871 1.0867530, 48.2334847 1.0399341, 48.2333927 1.0401108, 48.2322909 1.0341270, 48.1862854 1.0086807, 48.1727366 0.9992126, 48.1724930 0.9979646, 48.1729260 1.0214302, 48.1842903 1.0479504, 48.1871074 1.0206582, 48.1868218 1.0387459, 48.2287753 1.4736893, 48.3294431 1.3825318, 48.5275940 1.0273486, 48.4645219 1.4828255, 48.4691914 1.5145482, 48.4615172 1.4943654, 48.4374840 1.4150964, 48.4520187 1.4458254, 48.4460522 1.4725078, 48.4465773 1.4671375, 48.4460603 1.4673988, 48.4439314 1.4657609, 48.4542788 1.4483370, 48.4614819 1.4553185, 48.4381387 1.4532784, 48.4424128 1.4516460, 48.2988415 1.8615469, 48.3288402 0.7988397, 48.3346487 0.8179752, 48.8598809 1.4038341, 48.4465792 1.5307528, 48.4521257 1.4838056, 48.4584810 1.4876866, 48.4330586 1.4924879, 48.1806344 1.3817390, 48.1833120 1.3838413, 48.4454252 1.4926736, 48.4469583 1.4918402, 48.4469302 1.4936845, 48.4469151 1.4933052, 48.4546304 1.4839991, 48.4624190 1.4819697, 48.4640214 1.4831040, 48.4631220 1.4841448, 48.4592278 1.4898047, 48.4588196 1.4907004, 48.4529511 1.4903462, 48.5498237 1.0300964, 48.1935903 1.3917793, 48.2257416 1.1758624, 48.1964900 1.3716225, 48.1931395 1.3528577, 48.1577871 1.2501317, 48.2082347 1.1898048, 48.2214721 1.4461878, 48.1943683 1.3608186, 48.2087707 1.1646492, 48.2731424 1.6079429, 48.4424555 1.4942771, 48.1720956 1.0168141, 48.1830829 0.9645850, 48.1859763 0.9810924, 48.1862491 0.9967439, 48.1823985 0.9559790, 48.1780392 1.8542274, 48.4393078 1.5002210, 48.4419654 1.4987456, 48.4436044 1.4961478, 48.3618146 1.1357971, 48.9173361 1.4926155, 48.7150723 1.3677673, 48.1903936 0.9341271, 48.1909690 0.9328489, 48.1718135 0.9804996, 48.1718313 0.9720534, 48.1722624 0.9651040, 48.1720555 0.9492426, 48.1735595 0.9562174, 48.2206300 0.9624339, 48.2093787 0.9308883, 48.1980415 1.8512274, 48.1895642 1.8532898, 48.1093173 1.3374097, 48.2318147 1.8488774, 48.7395328 1.3689272, 48.7418660 1.3757489, 48.8201457 1.3593555, 48.8612797 1.4229397, 48.4543906 1.4904051, 48.4537794 1.4911526, 48.4538725 1.4910121, 48.1807804 1.3891995, 48.1820987 1.3888362, 48.1798285 1.3871839, 48.1798161 1.3890830, 48.2136652 1.2309553, 48.2105588 1.2490264, 48.2153970 1.0554300, 48.2132553 1.0632878, 48.2176213 1.0391332, 48.2171034 1.0130321, 48.2308790 1.0204333, 48.2241358 0.9796079, 48.1961479 1.0898435, 48.2031035 0.8932700, 48.1672194 0.9358151, 48.3384590 1.8674987, 48.4281982 1.7642604, 48.4486735 1.7908682, 48.4508879 1.7860990, 48.2394174 1.0726545, 48.1851974 1.0426517, 48.7601426 1.5150503, 48.2095275 1.1638064, 48.2086614 1.1654995, 48.2087279 1.1647970, 48.4708045 1.4931683, 48.2057211 1.1797547, 48.2080503 1.1698283, 48.2086619 1.1660235, 48.4438562 1.4656888, 48.3983559 1.4872365, 48.4914849 1.5904823, 48.4934615 1.6778847, 48.5115889 1.7632885, 48.6004922 1.6755514, 48.4656778 1.5717267, 48.4866511 1.6594969, 48.7374396 1.4154121, 48.5682771 1.5933435, 48.7212106 1.4179156, 48.7019630 1.3445490, 48.7082444 1.4239005, 48.2802436 1.8585158, 48.2654306 1.8528604, 48.5620146 1.0299899, 48.1423995 1.9132167, 48.0792039 1.1332806, 48.0769466 1.1403842, 48.0760918 1.1413983, 48.0886169 1.1227140, 48.0887950 1.1232395, 48.0770609 1.1248878, 48.0690723 1.1303498, 48.0879298 1.1206693, 48.0878998 1.1207246, 48.0861427 1.1228627, 48.0861026 1.1228238, 48.0911631 1.1217791, 48.0969602 1.1259293, 48.0957659 1.1434943, 48.0810642 1.3318138, 48.0840192 1.3389711, 48.0359084 1.2736162, 48.0878308 1.3301961, 48.0739971 1.3213741, 48.0601380 1.3451955, 48.0865275 1.3528589, 48.0677895 1.2950501, 48.0954226 1.3365682, 48.4516192 1.4901383, 48.4499351 1.4902463, 48.4509817 1.4916513, 48.4482826 1.4911159, 48.4445900 1.4937793, 48.4438310 1.4959260, 48.4448610 1.4955440, 48.4500930 1.4913781, 48.4336756 1.4929244, 48.4585193 1.4909708, 48.4616415 1.4832882, 48.4607283 1.4839313, 48.4624299 1.4819197, 48.5071496 1.4635719, 48.4555452 1.7960234, 48.4539982 1.7981341, 48.4619596 1.8122235, 48.6307434 1.4126334, 48.2632102 1.7617362, 48.3573699 1.6104690, 48.2400520 1.0829658, 48.4290111 1.9028543, 48.1358374 0.9775138, 48.1363663 0.9815642, 48.7427023 1.5888652, 48.7727834 1.5546424, 48.7830689 1.5755487, 48.7829459 1.5755817, 48.1377511 0.9875665, 48.6744694 1.3835015, 48.7508848 1.4455038, 48.7507738 1.4455127, 48.7621381 1.4131696, 48.7540891 1.4568896, 48.4987577 1.6903064, 47.9906514 1.2545075, 47.9962698 1.2597897, 47.9861315 1.2470133, 48.2483407 1.8515642, 48.2485162 1.8513487, 48.2133566 1.8471773, 48.2400078 1.8507771, 48.8349270 1.3651623, 48.3617964 1.8792363, 48.4073062 1.8953031, 48.3532037 1.8740723, 48.4143368 1.8974174, 48.4451318 1.7437038, 48.3761868 1.7140004, 48.3288262 1.6733771, 48.3559260 1.6932028, 48.6433866 1.4033215, 48.7170492 1.3771616, 48.8436645 1.3810541, 48.7317495 1.3627510, 48.7347146 1.3628805, 48.4794759 1.4610359, 48.4795088 1.4608291, 47.9871247 1.2489563, 48.2006359 0.8817417, 48.3903413 1.7296169, 48.4383703 1.7739517, 48.4357387 1.7264684, 48.6044852 1.6764659, 48.6047343 1.6776367, 48.6056601 1.6786023, 48.6076342 1.6811250, 48.6094321 1.7073012, 48.7895005 1.5760710, 48.7368700 1.3836098, 48.8616552 1.4175168, 48.8658673 1.4291425, 48.8431789 1.3815951, 48.8627873 1.4400855, 48.7644535 1.3137446, 48.1436327 1.0479263, 48.1446398 1.0438524, 48.3784586 1.8879329, 48.5327602 1.4551824, 48.5964679 1.6344924, 48.2943438 1.2784344, 48.1238755 1.1830063, 48.1203418 1.1789078, 48.2646069 1.1464120, 48.4665860 0.9721291, 48.4680964 0.9833235, 48.4692749 0.9917513, 48.9178051 1.5163564, 48.7687669 1.4010983, 48.4432797 1.4586460, 48.4263803 1.4345241, 48.4263450 1.4343908, 48.2783751 1.2038212, 48.2785049 1.2038943, 48.2859335 1.2109996, 48.3028844 1.2394689, 48.3028596 1.2394869, 48.2330824 1.1841121, 48.3909110 1.2074193, 48.8165842 1.5626415, 48.8227708 1.5562821, 48.8230971 1.5568726, 48.5892604 1.5785545, 48.5860031 1.5774820, 48.1499364 1.3998178, 48.1511375 1.4008810, 48.1283145 1.1895873, 48.2687237 1.7554738, 48.2687963 1.7555788, 48.7607313 1.3283222, 48.1200348 1.5164207, 48.7571201 1.0593963, 48.7630168 1.2330016, 48.7619868 1.2307431, 48.7697041 1.1973535, 48.7594087 1.2197692, 48.7690072 1.1998653, 48.7633865 1.2243158, 48.7568745 1.4817572, 48.2758000 1.6233580, 48.2758830 1.6233161, 48.2757436 1.6234125, 48.2757673 1.6233850, 48.8413849 1.4922311, 48.7618946 1.1344644, 48.6035213 1.6962877, 48.6038889 1.6958545, 48.7492012 1.4084464, 48.7508203 1.4157200, 48.7492740 1.4083049, 48.7509154 1.4156900, 48.7459726 1.3960136, 48.7456448 1.3952102, 48.0758120 1.1250113, 48.0759294 1.1249783, 48.4420751 1.4989362, 48.4556997 1.4915385, 48.4706119 1.4894945, 48.5962086 1.6154260, 48.9189505 1.4642931, 48.5800278 1.5814336, 48.5883483 1.5791331, 48.5850681 1.5781057, 48.5817149 1.5806846, 48.5828744 1.5864487, 48.5846561 1.5791234, 48.5852779 1.5783029, 48.5857035 1.5781314, 48.5845146 1.5783536, 48.5785051 1.5814940, 48.5781910 1.5842706, 48.5855768 1.5840847, 48.5891156 1.5937111, 48.5796458 1.5936179, 48.5887061 1.5730446, 48.6303549 1.5123061, 48.4858586 1.5268474, 48.7387647 1.3344359, 48.5612943 1.5099262, 48.5562795 1.5088278, 48.5417197 1.4933979, 48.5629140 1.5082652, 48.5686432 1.5014794, 48.3402518 1.3474079, 48.3193902 1.3433670, 48.3144491 1.3216928, 48.3330130 1.3910728, 48.6458105 1.5425043, 48.6500512 1.5445534, 47.9960173 1.2330143, 48.0110352 1.2352850, 48.4783101 1.6303488, 48.4678695 1.5800519, 48.5098261 1.7453193, 48.3484299 1.6877878, 48.0663212 1.3379550, 48.0663284 1.3379163, 48.0866822 1.3250947, 48.1932315 0.8532599, 48.4860872 1.0589912, 48.4766655 1.1449504, 48.4516866 1.2313903, 48.4157788 1.4872052, 48.4156604 1.4871839, 48.4161089 1.4788356, 48.4159687 1.4788327, 48.4158166 1.4827704, 48.4159441 1.4828103, 48.4237280 1.4843067, 48.4350351 1.4850487, 48.3693543 1.2313848, 48.3777903 1.2321079, 48.4242698 1.2319935, 48.4264831 1.2401531, 48.4270678 1.2534320, 48.4292906 1.2736696, 48.4517014 1.4862557, 48.4495182 1.4936334, 48.4832358 1.0361872, 48.5042208 1.0253641, 48.4794856 1.0191569, 48.4791294 1.0197163, 48.4640670 1.1943546, 48.4654472 1.1961144, 48.4522688 1.4910912, 48.1385666 1.2067109, 48.2898283 1.2665462, 48.0755319 1.0697377, 48.4492264 1.2905124, 48.5081392 1.0206523, 48.4433783 1.2104106, 48.4798510 1.1597339, 48.4459606 1.2314837, 48.6762682 1.4636271, 48.6769680 1.4741718, 48.5153087 0.9895117, 48.4737212 1.1610821, 48.4918766 1.5327846, 48.6446760 0.9342008, 48.4478748 1.3303765, 48.6683749 1.4977366, 48.3115381 0.8206080, 48.3244094 0.8089485, 48.3168358 0.7971910, 48.3178707 0.7961281, 48.1027073 1.8514071, 48.7422926 1.3190808, 48.7422202 1.3192275, 48.1723267 1.2834454, 48.4436345 1.9087713, 48.3688085 1.4580360, 48.3734994 1.4701515, 48.4110738 1.7493703, 48.4458999 1.7865767, 48.5031177 1.6190068, 48.4997925 1.6114044, 48.5141816 1.6446348, 48.5962346 1.4239362, 48.1994847 1.3819149, 48.7512742 1.4156030, 48.7528348 1.4506420, 48.7467213 1.4173998, 48.7494643 1.4300620, 48.7517949 1.4184551, 48.7512294 1.4156355, 48.7517671 1.4184670, 48.7317079 1.4184431, 48.7335716 1.4179845, 48.7297375 1.3668655, 48.7297739 1.3668588, 48.7298138 1.3668454, 48.2692940 1.2680420, 48.2579330 1.2720985, 48.2687176 1.2673716, 48.2623531 1.2806883, 48.2789350 1.2539336, 48.2586986 1.2748530, 48.2743759 1.2567214, 48.2901657 1.3180781, 48.2761530 1.2744818, 48.7148629 1.4327769, 48.7279706 1.3889336, 48.7368287 1.3836394, 48.7367890 1.3836644, 48.7453826 1.3949182, 48.6353577 1.5607061, 48.7745640 1.3465635, 48.3148678 0.7992779, 48.5170758 0.9794413, 48.7676694 1.2452570, 48.7675029 1.2442214, 48.7666867 1.2454401, 48.7465105 1.3828935, 48.7465709 1.3830411, 48.7460069 1.3895928, 48.7156463 1.3528618, 48.7156000 1.3527496, 48.7426978 1.3459456, 48.7342605 1.3866265, 48.0942882 1.5129314, 48.1345344 0.9722245, 48.5922934 0.9086983, 48.3875106 1.1212244, 48.1923446 1.9394272, 48.1525637 1.5978859, 48.1208939 1.5450524, 48.1090935 1.4823789, 48.1099283 1.5068616, 48.1298953 1.5697194, 48.1156238 1.4399875, 48.1101000 1.4290050, 48.1497723 1.6558110, 48.1540567 1.6317286, 48.6547891 1.2565297, 48.6506087 1.2157617, 48.7029078 1.3434978, 48.6780679 1.3176014, 48.6347988 0.9888437, 48.6503313 1.0131508, 48.3470506 1.6269478, 48.4468210 1.4789483, 48.4661452 1.4851003, 48.4506123 1.4902125, 48.4438475 1.4944572, 48.4430415 1.4980146, 48.4437026 1.4969840, 48.4438425 1.4973813, 48.4431599 1.4974032, 48.4435666 1.4962377, 48.2846129 1.6271386, 48.2350735 1.4972417, 48.4301542 1.5048448, 48.4308430 1.5009460, 48.7378384 1.3688163, 48.7392265 1.3684309, 48.6078989 1.6842001, 48.6072486 1.6864655, 48.6079177 1.6841421, 48.6013821 1.7031632, 47.9830400 1.2822379, 47.9856150 1.3046469, 47.9778729 1.2582126, 47.9763162 1.3275978, 48.7605248 1.5700487, 48.7597408 1.5660632, 48.2078487 1.3291624, 48.1950572 1.3644793, 48.1920857 1.3709906, 48.2067039 1.2896780, 48.2069438 1.3077202, 48.2105979 1.2932806, 48.2071428 1.2858757, 48.2063321 1.2877849, 48.2835395 1.1526792, 48.4223116 1.2140030, 48.5056070 1.3493083, 48.4871113 1.0118267, 48.4939038 1.0189164, 48.4951571 1.0185534, 48.5259370 1.6932314, 48.5244027 1.6915195, 48.5241091 1.6857225, 48.5273462 1.6732396, 48.5240703 1.6856085, 48.4470362 1.4960230, 48.2835308 1.2394677, 48.6864403 1.0667075, 48.6951770 1.0795658, 48.7108230 1.0904478, 48.4364319 1.4796590, 48.4382006 1.4730734, 48.4356740 1.4825941, 48.4864109 1.7406431, 48.4899994 1.7323690, 48.4345946 1.4946684, 48.5211991 1.7449406, 48.5217091 1.7446465, 48.5218901 1.7482961, 48.5176104 1.7101297, 48.5179251 1.6992604, 48.4456719 1.4947115, 48.3288874 1.6516814, 48.4640366 1.4830712, 48.4519148 1.4837828, 48.4521306 1.4837572, 48.4521410 1.4836582, 48.5762793 1.5041534, 48.3855704 1.2336704, 48.3962604 1.2154725, 48.4975346 1.0581854, 48.6032959 1.6731815, 48.3861744 1.4775925, 48.7156819 0.8768385, 48.7744560 1.3466811, 48.7663261 1.1583551, 48.7613934 1.2297404, 48.4896866 1.5836171, 47.9764661 1.2539912, 47.9865523 1.2477317, 47.9967724 1.2406049, 48.4656554 0.9647699, 48.4644066 0.9558621, 48.4684584 0.9854847, 48.7628494 1.2379548, 48.3506384 0.8488761, 48.6705305 0.8481390, 48.6726304 0.8494744, 48.6826076 0.8796183, 48.6789010 0.8649456, 48.6816088 0.8754314, 48.5190320 1.6822693, 48.1973693 1.0909382, 48.6517761 1.5264590, 48.6486478 1.5432671, 48.6506818 1.5361150, 48.2845737 1.6271678, 48.2867483 1.6317388, 48.2867953 1.6317369, 48.4991412 1.0150051, 48.2844343 1.2444990, 48.2845456 1.2443652, 48.8482297 1.4642728, 48.1838759 1.9348874, 48.4335596 1.4928141, 48.5925868 1.5964286, 48.4681980 1.4830354, 48.4679911 1.4837896, 48.4452476 1.4839687, 48.4453889 1.4841059, 48.6065464 1.4208198, 48.4621636 1.4853747, 48.5023629 1.1954425, 48.4801501 1.1295117, 48.0273443 1.2560778, 48.4544846 1.2967169, 48.4569679 1.2921342, 48.6518352 1.2078313, 48.4791682 1.5045178, 48.4791482 1.5045576, 48.4165775 1.3554040, 48.1802252 1.3840426, 48.5202181 1.7651459, 48.2168699 1.3818879, 48.2923823 0.8237943, 48.5489066 1.4929922, 48.5452650 1.4735723, 48.5260206 1.4884351, 48.6979977 0.9481873, 48.2080683 1.4122761, 48.1435030 1.4020243, 48.1456024 1.2171474, 48.1073837 1.1664543, 48.1521740 1.2310816, 48.2057749 1.2041528, 48.3018738 1.0823795, 48.1302205 1.0827274, 48.7356230 1.3421397, 48.7344321 1.3446478, 48.7355864 1.3422558, 47.9923659 1.2324185, 48.1820644 1.3847079, 48.1827878 1.3874679, 48.1808744 1.3857293, 48.1831851 1.3862120, 48.1818889 1.3785094, 48.3918449 1.1738434, 48.3925420 1.1776216, 48.3922627 1.1758879, 48.3935885 1.1826232, 48.3033115 1.2413287, 48.3033413 1.2413118, 48.2996998 1.2392848, 48.2971299 1.2450944, 48.2969691 1.2433349, 48.2929930 1.2440721, 48.2508997 1.3145256, 48.2096402 1.3464606, 48.2089588 1.3462590, 48.3948106 1.2056395, 48.3228600 1.2242280, 48.3843620 1.2192812, 48.3967433 1.2191649, 48.3571979 1.2290984, 48.3459692 1.2343988, 48.3507879 1.2307415, 48.0581930 1.6146145, 48.3398197 1.1533005, 48.3426300 1.1767847, 48.3430034 1.1830786, 48.3162632 1.1975847, 48.3141275 1.2138854, 48.3111882 1.2177123, 48.3405978 1.1148765, 48.3190842 1.1455771, 48.3298151 1.1265662, 48.3159454 1.1490037, 48.3236823 1.1050243, 48.3234195 1.1077313, 48.3143590 1.1320817, 48.3077813 1.1464594, 48.2969161 1.0635728, 48.2949570 1.0980591, 48.2493747 1.3214720, 48.4453734 1.2417600, 48.4466196 1.2421721, 48.3274753 1.0502716, 48.3394223 1.0562486, 48.3260051 1.0650136, 48.3094305 1.0935407, 48.2975177 1.0961476, 48.2958931 1.0981971, 48.2852393 1.2102351, 48.2637294 1.0964816, 48.2629211 1.0989440, 48.2633169 1.1138636, 48.2531858 1.1912039, 48.2583755 1.2154481, 48.2283113 1.3639843, 48.2295675 1.3697276, 48.2316442 1.3657649, 48.2209826 1.3762353, 48.3323300 1.3288791, 48.4621308 1.1909610, 48.1963451 1.3821766, 48.7445525 1.0461831, 48.7317320 1.0190795, 48.7646261 1.1483258, 48.6481986 1.5304508, 48.6526936 1.5255837, 48.6538123 1.5210418, 48.6008347 1.6649601, 48.5995716 1.6763886, 48.6010618 1.6647018, 48.3271155 0.8171662, 48.0842385 1.3611118, 48.0943510 1.3474342, 48.0598249 1.3375592, 48.1103175 1.3384734, 48.1122911 1.3416004, 48.1071474 1.3360773, 48.1108405 1.3301120, 48.1785145 1.3862871, 48.5837204 1.4286469 +Monument aux héros et victimes de la mer, Château des Creissauds, Mémorial des Camps de la Mort, Obélisque, Statue Virgo Mirarabilis, Stèle du 24 Avril 1915, Stèle du 24 Avril 1915, Porte d'Aix, Palais Longchamp, Monument des Rapatriés +52 +48.8560795 2.3115715, 48.8631692 2.3329513, 48.8779237 2.3345515, 48.8626245 2.3025393, 48.8403827 2.3113658, 48.8864800 2.3399022, 48.8651191 2.3417893, 48.8339752 2.3324559, 48.8836865 2.3338083, 48.8660456 2.3145051, 48.8602845 2.3247488, 48.8559492 2.3460263, 48.8575222 2.2845690, 48.8414574 2.3172246, 48.8677629 2.2935696, 48.8625016 2.3453019, 48.8403652 2.3414281, 48.8629386 2.2890051, 48.8618163 2.2873421, 48.8749151 2.3431481, 48.8565109 2.3263842, 48.8519070 2.2652250, 48.8703234 2.2765175, 48.8716440 2.2881063, 48.8302877 2.3141843, 48.8557584 2.3320096, 48.8716204 2.2814131, 48.8483211 2.3294718, 48.8677268 2.3223990, 48.8591945 2.2851420, 48.8522269 2.3350050, 48.8506815 2.3410772, 48.8476741 2.3140391, 48.8830345 2.3077236, 48.8513629 2.3410046, 48.8547304 2.3248616, 48.8554427 2.3276941, 48.8434645 2.3207843, 48.8456499 2.3395974, 48.8434624 2.3362665, 48.8718820 2.3312120, 48.8656784 2.3307909, 48.8404563 2.3198526, 48.8672999 2.3221942, 48.8367685 2.3218491, 48.8678618 2.3225499, 48.8640279 2.3450171, 48.8340000 2.3323000, 48.8573239 2.3286291, 48.8609823 2.2977973, 48.8848436 2.3445206, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8442282 2.3447813, 48.8661515 2.3122667, 48.8506605 2.3437398, 48.8545855 2.3356172, 48.8483248 2.3344265, 48.8599188 2.3265259, 48.8473326 2.3227159, 48.8613305 2.3197359, 48.8433913 2.2512835, 48.8707890 2.3259075, 48.8791676 2.3124361, 48.8794667 2.3125380, 48.8553042 2.3158566, 48.8755169 2.3105465, 48.8655978 2.2993165, 48.8643054 2.2977930, 48.8641085 2.2964123, 48.8373190 2.3319319, 48.8653887 2.2935591, 48.8260871 2.3327019, 48.8432079 2.3186583, 48.8715060 2.2814214, 48.8594040 2.2672517, 48.8812030 2.3335190, 48.8551953 2.2808684, 48.8463579 2.2732198, 48.8547299 2.2897642, 48.8428133 2.3337722, 48.8880654 2.3406347, 48.8485953 2.3340184, 48.8662091 2.3108575, 48.8766546 2.2633259, 48.8563449 2.3387717, 48.8657061 2.2966614, 48.8614768 2.3351679, 48.8553966 2.3450136 +48.8830752 2.3125555 +Buchhandlung Schmitt & Hahn, Thalia, Jokers, Buchhandlung Schmitt, Eichendorff, Buchbinderei Dyroff, Buchhandlung Himmelheber, Reisebuchladen-Heidelberg.de, Buchladen - artes liberales, Bücherstube an der Tiefburg, Hassbeckers Galerie & Buchhandlung, Buch-Markt, Antiquariat Friedrich Welz, Schmitt & Hahn, Wieblinger Buchladen +49.4146460 8.6905719 +yes +0 +yes +Avenue Victoria +2 +Messe Berlin, Messe Dortmund, Messe Dresden, Parc des Expositions Paris Villepinte, Leipziger Messe, Neue Messe München, PALEXPO, Messe Karlsruhe, Pavillon 1, Messegelände Köln, Messegelände Saarbrücken, Messegelände Hannover, Pavillon 8, Pavillon 6, Messe Kassel, Pavillon 2, Messe Husum, Messe Augsburg, Messe Magdeburg, Olympia, Messe Hamburg, National Exhibition Centre, Messehalle, Messegelände Ulm, Messehalle, Messe Offenbach, Pavillon 5, Pavillon 4, Messe Stuttgart, Metropolishalle, Maimarkthalle, Damascus International Fairground, Messe Friedrichshafen, Messe Halle/Saale, Eurexpo, Rhein-Main-Hallen, Messezentrum Nürnberg, Messe Erfurt, Messe Düsseldorf, Messezentrum Bad Salzuflen, Messe Essen, Weser-Ems-Hallen, Paris Nord Villepinte, Messe Bremen, Messe Chemnitz, Recinto Ferial Macají, Hessischer Agrartag Neukirchen, Messe Frankfurt, agra-Messegelände (Leipzig), Halle Münsterland +Aral, Esso, Shell, Total, Independent, Agip, OMV, Avia and 49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.3988716 8.6899921, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.4240406 8.6385449, 49.3851489 8.6733031, 49.3848920 8.6803000, 49.3673694 8.6862886, 49.4061345 8.6593850, 49.3956207 8.6692054, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.3704305 8.7013213, 49.4296958 8.6455225, 49.3810973 8.6895578, 49.4172010 8.6768150, 49.3593333 8.6876382, 49.3810576 8.6896077 +49.4081091 8.6783361, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.4240406 8.6385449, 49.4061345 8.6593850, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.4296958 8.6455225, 49.4172010 8.6768150 +49 +48.8390959 2.2748832 +48.8687993 2.3373273, 48.8710439 2.3094204, 48.8274124 2.3148434, 48.8540343 2.4058858, 48.8703138 2.3531191, 48.8828817 2.3596543, 48.8669356 2.3763865, 48.8420168 2.3896839, 48.8324911 2.2973690, 48.8288878 2.3328361, 48.8600943 2.3451124, 48.8831342 2.3236837, 48.8671369 2.3028950, 48.8831626 2.3618001, 48.8829824 2.3614134, 48.8827589 2.3595149, 48.8835628 2.3609310, 48.8827513 2.3591491, 48.8397936 2.3818812, 48.8875165 2.3520499, 48.8342294 2.3264332, 48.8714920 2.3541352, 48.8438107 2.3152002, 48.8682312 2.3751770, 48.8826774 2.3602875, 48.8567777 2.3726141, 48.8545648 2.3719500, 48.8594440 2.3503990, 48.8341870 2.3157058, 48.8768072 2.3364970, 48.8361075 2.3240698, 48.8907355 2.3482159, 48.8449670 2.3488185, 48.8939174 2.3431529, 48.8799295 2.3575665, 48.8570416 2.3726643, 48.8509119 2.2937166, 48.8935993 2.3230562, 48.8240405 2.3250200, 48.8830637 2.3612591, 48.8344267 2.2884194, 48.8961868 2.3389271, 48.8355850 2.3240208, 48.8363755 2.3920736, 48.8435173 2.3219294, 48.8393146 2.3237992, 48.8466620 2.2831751, 48.8701201 2.3491659, 48.8852970 2.3163291, 48.8673359 2.3991033, 48.8237982 2.3450583, 48.8641688 2.3976584, 48.8240750 2.3283368, 48.8741225 2.3893282, 48.8890437 2.3606481, 48.8890487 2.3604033, 48.8296037 2.3747044, 48.8818730 2.3810389, 48.8459218 2.2883699, 48.8527658 2.3454086, 48.8849514 2.2959483, 48.8343901 2.3531943, 48.8786180 2.2913310, 48.8797930 2.2884240, 48.8777980 2.2906200, 48.8862020 2.3612523, 48.8845623 2.3786634, 48.8808754 2.3021137, 48.8541359 2.3719456, 48.8707266 2.3515964, 48.8629894 2.3679436, 48.8814750 2.3580850, 48.8464207 2.3056421, 48.8303084 2.3537927 +17 +St Mary's Episcopal Cathedral, St Mary's Metropolitan Cathedral (RC) and 55.9486145 -3.2162817, 55.9560907 -3.1878581 +142889 +yes +Kopierladen E. Müller, Textstudio Gross and 49.4127737 8.6762760, 49.4175276 8.7614856 +yes +49.3825748 8.6819524, 49.4044470 8.6760982 +2 +yes +yes +11 +48.8266377 9.1840977, 48.8274672 9.1858535, 48.7995897 9.1471380, 48.7210662 9.0907708, 48.8368900 9.1424577, 48.7365807 9.0884143, 48.8072609 9.1145761, 48.7746889 9.1591284, 48.7607867 9.1731311, 48.7632032 9.1104345, 48.7420005 9.1357855, 48.8288194 9.1584861, 48.7592714 9.1414993, 48.7628009 9.1770306, 48.7391872 9.1019369, 48.7356266 9.0884092, 48.8175257 9.2449749, 48.7640439 9.1597973, 48.7595438 9.1774796, 48.8002406 9.0895116, 48.7789395 9.1251513, 48.7687253 9.1526426, 48.7680451 9.1492725, 48.8018079 9.1772330, 48.7701846 9.1396353, 48.7894569 9.2569712, 48.7870973 9.2545468, 48.7907133 9.2573534, 48.7932684 9.2601204, 48.7891137 9.2624515, 48.7639249 9.1680146, 48.7084205 9.2117984, 48.7332638 9.1395737, 48.7329962 9.1387316, 48.7276835 9.1087426, 48.7859048 9.1981187, 48.7926570 9.2096756, 48.7294246 9.1656576, 48.7654891 9.1709268, 48.7655516 9.1706606, 48.7368577 9.2271867, 48.7401197 9.2308934, 48.7670335 9.1823919, 48.7800860 9.1633248, 48.8194598 9.2224883, 48.8108804 9.0954110, 48.7322352 9.1377111, 48.7822231 9.1366622, 48.8073484 9.1590099, 48.7729263 9.1422456, 48.7676498 9.1774891, 48.7560843 9.2453564, 48.7637979 9.2084589, 48.7949013 9.1912992, 48.7961031 9.1911908, 48.7242834 9.1022678, 48.7768952 9.1197768, 48.8083000 9.2194447, 48.7413789 9.1248427, 48.7745727 9.2415359, 48.7688755 9.2441238, 48.7666474 9.2415359, 48.7554850 9.1899509, 48.7165072 9.1971033, 48.7233809 9.1577786, 48.7160561 9.2011485, 48.7159995 9.1968655, 48.7170981 9.2013115, 48.7138515 9.1965289, 48.7666676 9.2460021, 48.7815012 9.2111514, 48.8180458 9.1878364, 48.7884986 9.1882810, 48.7563639 9.1450595, 48.7645870 9.1790033, 48.7802290 9.2205449, 48.7793145 9.2145778, 48.7177504 9.0903203, 48.7217493 9.0906470, 48.7746884 9.2185224, 48.8186514 9.1903173, 48.8176924 9.2126264, 48.8166158 9.2133627, 48.7410037 9.1880643, 48.7878337 9.1734858, 48.7667769 9.1777628, 48.8214409 9.1838807, 48.8209323 9.1861981, 48.8221080 9.1864585, 48.8197625 9.1883439, 48.8193500 9.1850308, 48.8252510 9.1910397, 48.8260647 9.1920028, 48.8199278 9.1906552, 48.8230059 9.1973316, 48.8233111 9.1968938, 48.8227177 9.1963188, 48.7826664 9.1339847, 48.7593799 9.1838496, 48.7508769 9.2198901, 48.7796113 9.1969177, 48.7452380 9.1696763, 48.7452810 9.1715740, 48.7406173 9.2178894, 48.7295759 9.1970490, 48.7369809 9.2191710, 48.7381733 9.2194275, 48.7622472 9.1308637, 48.7578261 9.2370157, 48.7367641 9.2205799, 48.7839150 9.1572630, 48.7757122 9.1641515, 48.7752849 9.1192939, 48.7715042 9.1853889, 48.7736445 9.1964059, 48.7575769 9.2388906, 48.7304258 9.1432916, 48.8089550 9.1820390, 48.7390675 9.1316012, 48.7439412 9.2071733, 48.7370951 9.2197467, 48.8265520 9.1607642, 48.7525561 9.1756229, 48.7404105 9.1054389, 48.7410545 9.1054709, 48.7481843 9.1483115, 48.8370298 9.1702902, 48.7993978 9.0860783, 48.8077296 9.1205803, 48.8076711 9.1225829, 48.8086376 9.1172926, 48.8182959 9.1903252, 48.7887924 9.2642856, 48.8122456 9.1179810, 48.8131232 9.1189432, 48.7487655 9.1069716, 48.7392521 9.1025062, 48.7394250 9.1030131, 48.7395350 9.1034031, 48.7396715 9.1038998, 48.7788072 9.2205227, 48.7839443 9.1601364, 48.7834631 9.1287185, 48.7843358 9.1238844, 48.7916399 9.1781621, 48.7149832 9.1540579, 48.8388199 9.1578288, 48.7774924 9.1692669, 48.7750793 9.1663017, 48.7751830 9.1661607, 48.7502500 9.1859833, 48.8262448 9.1757557, 48.7411561 9.1260443, 48.7555505 9.2220026, 48.8048381 9.2160853, 48.8054996 9.2020247, 48.8234829 9.1130457, 48.7752130 9.2832684, 48.7746120 9.2829572, 48.7743327 9.2794113, 48.8138974 9.1121863, 48.7530309 9.1014541, 48.7843224 9.2165759, 48.7831510 9.2172907, 48.7785138 9.2086178, 48.7839139 9.2106372, 48.7790514 9.2057946, 48.8060904 9.1133314, 48.8162900 9.0840537, 48.8165125 9.0834346, 48.8146796 9.0810644, 48.8152745 9.0835875, 48.8160842 9.0868605, 48.7786322 9.2456524, 48.7718238 9.2626929, 48.8146602 9.1096755, 48.7809227 9.1806028, 48.7060395 9.2185219, 48.7071249 9.2227690, 48.7044404 9.2136152, 48.6968403 9.2143132, 48.7182280 9.1545775, 48.7191411 9.1471746, 48.8046901 9.2349995, 48.8188647 9.2481858, 48.8206470 9.2456598, 48.8331868 9.2293397, 48.8347645 9.2331793, 48.8356983 9.2329175, 48.8309543 9.2250457, 48.8305769 9.2283573, 48.8307974 9.2299852, 48.8358608 9.2248547, 48.8170499 9.1992551, 48.8107298 9.2118431, 48.7343433 9.0879666, 48.7551923 9.2530678, 48.8061920 9.2517194, 48.8064869 9.2510487, 48.8137307 9.1253132, 48.8079341 9.1205874, 48.8120298 9.1246418, 48.8128560 9.1239832, 48.8413219 9.1544918, 48.7805244 9.1271053, 48.8435362 9.2223596, 48.8370737 9.1704442, 48.7822257 9.2544192, 48.8054532 9.2320141, 48.8056405 9.2327579, 48.8171001 9.1874488, 48.7768972 9.1189405, 48.7338058 9.0886242, 48.8332911 9.1684064, 48.8354403 9.2184495, 48.7057162 9.2176827, 48.8289383 9.1748132, 48.8268277 9.1747844, 48.8268769 9.1741223, 48.8300230 9.1687489, 48.8055366 9.2324050, 48.8500553 9.1488691, 48.7824450 9.1914402, 48.8052514 9.1587936, 48.7202910 9.1609103, 48.8142090 9.1481160, 48.8121989 9.1435521, 48.8079225 9.2357497, 48.7456862 9.2049071, 48.7198885 9.1496536, 48.7945720 9.2080750, 48.7950033 9.2072260, 48.7661961 9.0969154, 48.8028868 9.2343907, 48.8356794 9.2376729, 48.8313302 9.2366779, 48.7705330 9.1185784, 48.7887572 9.1837958, 48.8084196 9.1186212, 48.8236860 9.2103348, 48.8150484 9.2102456, 48.8374600 9.2044225, 48.8374634 9.2040761, 48.8409245 9.2153278, 48.8388606 9.2056806, 48.8396473 9.2048209, 48.8393347 9.2045834, 48.7980345 9.2121395, 48.7257465 9.1788694, 48.8081986 9.2366770, 48.7439226 9.1083014, 48.7478255 9.1270444, 48.8353670 9.2373126, 48.8356297 9.2340838, 48.8314969 9.2258363, 48.8318341 9.2264183, 48.8036870 9.2104630, 48.7790513 9.1185036, 48.8444373 9.2242491, 48.8445387 9.2244230, 48.7333414 9.1263614, 48.7283946 9.1387608, 48.8304955 9.2241243, 48.8352716 9.2418323, 48.7666439 9.1806411, 48.7773542 9.1168251, 48.8434080 9.1612555, 48.8410924 9.1477487, 48.8413121 9.1525671, 48.8471852 9.1700770, 48.7898540 9.2143644, 48.8086360 9.2376287, 48.7273902 9.1117501, 48.7645889 9.1733372, 48.8045633 9.2308930, 48.8037302 9.2277588, 48.8018342 9.2303856, 48.8072533 9.2270114, 48.8037215 9.2104640, 48.8074978 9.2191098, 48.8124576 9.2217400, 48.8125945 9.2217420, 48.7075520 9.2011028, 48.7148133 9.1194638, 48.7185828 9.1154232, 48.7172949 9.1054408, 48.7172567 9.1029189, 48.8158067 9.2443148, 48.8176857 9.2487742, 48.7712404 9.1547659, 48.8118293 9.2351643, 48.7905987 9.2605609, 48.8333184 9.1873643, 48.8341294 9.1905283, 48.8334775 9.1794198, 48.8447076 9.2077794, 48.7862159 9.1694763, 48.7839006 9.1573870, 48.7808338 9.1593382, 48.7521248 9.2419563, 48.7300954 9.1404549, 48.7284923 9.1444964, 48.8080764 9.0936132, 48.7324649 9.1772340, 48.7334669 9.1823238, 48.7288626 9.1681428, 48.7706954 9.1512908, 48.7347608 9.1838793, 48.7723082 9.0917874, 48.7763145 9.2491292, 48.7756492 9.1426027, 48.7767829 9.1545653, 48.7767803 9.1554165, 48.7739885 9.1583727, 48.7219175 9.1167139, 48.7704774 9.1240234, 48.8165376 9.1551303, 48.8117988 9.1625976, 48.7276867 9.1024524, 48.8321003 9.2322653, 48.8326631 9.2326698, 48.8332878 9.2313485, 48.7594363 9.1532356, 48.7935643 9.1608362, 48.7694406 9.1690311, 48.7696653 9.1683555, 48.8171509 9.0903048, 48.7815166 9.1518155, 48.7712936 9.2162328, 48.7607339 9.1537406, 48.7600113 9.1521808, 48.7595816 9.1556686, 48.8263731 9.2366065, 48.8294446 9.2391274, 48.7829242 9.2062334, 48.7623804 9.1772834, 48.7646171 9.1434123, 48.7633222 9.1697771, 48.7630903 9.1700913, 48.7204005 9.0968405, 48.7480084 9.1272809, 48.7312314 9.1274441, 48.7324783 9.1225136, 48.7448834 9.1198033, 48.7253897 9.1367571, 48.7273313 9.1579700, 48.7315670 9.1084216, 48.7506025 9.0861736, 48.7446333 9.0611926, 48.7786974 9.1393207, 48.8365280 9.2217044, 48.7813051 9.1689915, 48.7765392 9.1579724, 48.7744522 9.1458280, 48.7361292 9.2318532, 48.7776266 9.1480593, 48.7898372 9.2007663, 48.8123543 9.1589288, 48.7420560 9.2311052, 48.7446788 9.2331679, 48.7842006 9.2878565, 48.7673531 9.1999049, 48.7498990 9.2156633, 48.7383712 9.1228988, 48.7800747 9.1931414, 48.7920253 9.1954565, 48.7908121 9.1937594, 48.7838586 9.2741572, 48.7114554 9.1634521, 48.7881335 9.2663343, 48.7370982 9.1144251, 48.7363026 9.1093466, 48.7130076 9.1585263, 48.7150329 9.1539437, 48.7098982 9.1485498, 48.7451817 9.2038319, 48.7362682 9.2147899, 48.7439861 9.1648276, 48.7470010 9.1608184, 48.8392216 9.1664665, 48.8188392 9.2382554, 48.8049992 9.1866992, 48.8060945 9.0873080, 48.8028102 9.1066768, 48.8204892 9.1196116, 48.8011361 9.0939236, 48.7955992 9.1813365, 48.8000632 9.2268497, 48.7642724 9.0908693, 48.7728345 9.0914895, 48.8043980 9.1924354, 48.7821801 9.2518655, 48.7357866 9.0928556, 48.8168682 9.1152268, 48.8176972 9.1198242, 48.8154007 9.1200702, 48.8153503 9.1123796, 48.8168770 9.1123473, 48.8098351 9.1466309, 48.7199402 9.0976200, 48.8065816 9.1468318, 48.8045414 9.1778666, 48.8155354 9.1078630, 48.7739387 9.1823385, 48.8076483 9.1122119, 48.8169176 9.2077469, 48.8185846 9.2107450, 48.8155686 9.0848061, 48.8137525 9.0822193, 48.7690958 9.1644412, 48.7673641 9.1642521, 48.7633749 9.2692990, 48.7223376 9.1573845, 48.7274898 9.0988236, 48.8044435 9.1091905, 48.7326952 9.0995469, 48.8434809 9.2310416, 48.7638079 9.1718809, 48.7017227 9.2042496, 48.8230217 9.2187817, 48.7733470 9.1534804, 48.7719578 9.1539280, 48.8058990 9.0874108, 48.8180005 9.2335228, 48.8307733 9.2341712, 48.8331629 9.2380752, 48.7435824 9.1408036, 48.7705843 9.1606059, 48.8343450 9.2339347, 48.8308551 9.2260656, 48.7812806 9.1949048, 48.8103608 9.2121063, 48.8087963 9.2136793, 48.7240693 9.1930107, 48.7255371 9.1991398, 48.8076188 9.2102143, 48.8062301 9.2081052, 48.8105291 9.2148008, 48.7643208 9.1709397, 48.8136709 9.2278711, 48.8150081 9.2299158, 48.8125624 9.1694969, 48.7194776 9.2054499, 48.8521068 9.1588256, 48.8007260 9.2382458, 48.7644345 9.1715715, 48.7565516 9.1606251, 48.7590074 9.1626262, 48.7619942 9.1613615, 48.7629149 9.1624495, 48.8436496 9.1956404, 48.8340493 9.2051857, 48.8371998 9.2058005, 48.7193315 9.2107441, 48.8306017 9.2020589, 48.7005838 9.2090522, 48.7801931 9.1422537, 48.7771497 9.1468615, 48.7738640 9.1461596, 48.8331441 9.1989771, 48.7689675 9.1781807, 48.7274729 9.1457170, 48.7455359 9.1544761, 48.7802104 9.1933560, 48.8317406 9.2161584, 48.7911933 9.1977305, 48.7092210 9.1564480, 48.7252514 9.1396022, 48.7610661 9.1737504, 48.7591576 9.1730067, 48.8349567 9.1672216, 48.7216336 9.1576307, 48.7244705 9.1491328, 48.7803793 9.1882891, 48.8114655 9.1366803, 48.7877288 9.2486707, 48.7822603 9.1730816, 48.7772829 9.2329886, 48.7777141 9.2242777, 48.8268718 9.1785649, 48.7669215 9.2457439, 48.8258919 9.1763678, 48.8255869 9.1756592, 48.8339379 9.1948377, 48.8156196 9.2158408, 48.8346243 9.1950374, 48.8297902 9.1944334, 48.8119814 9.2376803, 48.8245747 9.2144553, 48.7825401 9.1635644, 48.7381037 9.1020154, 48.8336814 9.1948442, 48.7099569 9.1529370, 48.7407211 9.1763493, 48.7426073 9.1724399, 48.7089631 9.1507678, 48.7090052 9.1519172, 48.7089714 9.1514099, 48.7092569 9.1512621, 48.7237992 9.1587663, 48.8363137 9.2230187, 48.8395941 9.2135911, 48.7866941 9.2146286, 48.7823164 9.2519854, 48.7848897 9.2508569, 48.7777861 9.2548671, 48.8183226 9.2019666, 48.7826648 9.2517310, 48.7400670 9.1490404, 48.8166071 9.1883914, 48.7113978 9.1227160, 48.7571646 9.1597673, 48.8075661 9.1713501, 48.7484681 9.1718397, 48.7897170 9.2673255, 48.7690349 9.2648510, 48.7646059 9.1904563, 48.7783606 9.1223325, 48.7784968 9.1620721, 48.8055200 9.1524939, 48.8076644 9.2449565, 48.8122579 9.2334897, 48.7691810 9.1801868, 48.7558646 9.1694060, 48.7257282 9.1788525, 48.8076526 9.2056148, 48.8068482 9.2022284, 48.8425623 9.2088898, 48.8427337 9.2085867, 48.8426262 9.2106905, 48.7884315 9.1797690, 48.7625410 9.1582979, 48.7443115 9.1090715, 48.8367968 9.2332124, 48.7655226 9.1821093, 48.7361247 9.1822587, 48.8066682 9.1122013, 48.7984164 9.0956065, 48.7855092 9.2118888, 48.8492672 9.1400666, 48.7710845 9.1857416, 48.7808338 9.1593382 +yes +01.43.41.09.70, ab conduite, Centre de conduite auto-moto, Auto-École, Alkris, Fati Auto école, Auto-école du chêne, École de conduite, C.E.R. Auto-École, Auto moto école, Auto-école Manin, Auto moto ecolde des Buttes Chaumont, C.E.R. Porte des Lilas, Permis Express, Auto école, ABIR C.F.R., Auto-école Cosmos and +331 48 78 09 98 +0.030262550579005898 +55.9533414 -3.1913502 +157 +no +38 +http://www.ept.org.uk, www.leitheatre.com, www.lyceum.org.uk, http://www.leiththeatretrust.org +1683 +55 +Piscine Blomet, Espace nautique Auguste Delaune, Piscine Communale, Piscine Château Landon, Piscine Salvador Allende, Piscine Paul Valeyre, Piscine municipale Bernard Lafay, Aquapol, Aqua Sénart, Les nymphéas, Oberkampf, Centre sportif Saint-Germain, Piscine municipal de Guyancourt, Bassin-école Vitruve, Piscine intercommunale, Piscine de Brunoy, Piscine Alex Jany, Piscine Fernand-Blanluet, Piscine Georges Hermant, Piscine municipale, Piscine Jean Taris, Centre nautique, Piscine de Marville, Piscine Intercommunale du Kremlin-Bicêtre, Piscine Georges Vallerey, Piscine Athis Paray, Piscine des Ulis, Piscine Levrière, Piscine Château des Rentiers, Piscine Municipale d'Ivry sur Seine, Piscine Lionel-Terray, Piscine Édouard Herriot, Piscine Hébert, Piscine de Fresnes, Piscine Molitor, Piscine Marcel Dumesnil, Piscine Jean Guimier, Piscine municipale Franck Esposito, Piscine, Piscine municipale, Piscine Joséphine Baker, Centre Aquatique Arthur Hévette, Paris Swimming Pool, Centre Aquatique de Saint-Cyr, Piscine Roger Le Gall, Piscine Intercommunale de Fosses, Espace nautique du Val-d'Orge, Centre aquatique Dôme de Vincennes, Pateaugeoire, Piscine, Piscine de Morsang, Piscine Christine Caron, Piscine Intercommunale, Robert Belvaux, Piscine Bertrand Dauvin, La vague, Oakland Swimming Pool, Piscine Champerret, Piscine, Piscine de Villaine, Centre aquatique d’Alfortville, La vague, Piscine Municipale Catherine Plewinski, Piscine Maurice Thorez, Piscine de Marville, Le Nautil, Piscine Pierre Bonningue, Piscine Montbauron, Berry Hill Pool, Piscine Alex Jany, Bassin reservé aux habitants du domaine du golf, Piscine Roger Avenau, Piscine de La Celle-Saint-Cloud, Newtown Townhomes Public Pool, Pool +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8169651 2.3597405, 48.8346251 2.2657680, 48.8315802 2.3158225, 48.8455659 2.3086884, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8501676 2.3621707, 48.8299268 2.3465439, 48.8563247 2.3152562, 48.8475898 2.3031985, 48.8463297 2.2794951, 48.8402491 2.3214518, 48.8323948 2.3645635, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.8536267 2.3664311, 48.8408422 2.3172666, 48.8387798 2.2536841, 48.8281523 2.2728394, 48.8168431 2.3604808, 48.8407841 2.3912112, 48.8586303 2.3897622, 48.8579937 2.3897210, 48.8364028 2.2775659, 48.8558395 2.3835889, 48.8519985 2.2908966, 48.8478375 2.3535433, 48.8522407 2.2805336, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8436106 2.3422313, 48.8233460 2.3160166, 48.8338034 2.2847592, 48.8464060 2.3874300, 48.8206480 2.3248645 +St. Albert and 49.4085805 8.6761541 +49.4066800 8.6851295, 49.4123932 8.7103247, 49.4022609 8.6800427, 49.4131657 8.7074358, 49.4115371 8.7077542, 49.4123530 8.7087690 +7 +yes +48.8707489 2.3907280, 48.8506016 2.3432743, 48.8459665 2.3500377, 48.8535359 2.3481924, 48.8450745 2.3528309 +0 +49.3788109 8.6919767, 49.4052150 8.6872450, 49.4118434 8.7084139, 49.4117760 8.7068775, 49.4117663 8.7064409 +259.51167152149065 +no +yes +Lochheim +yes +http://www.myvue.com/ +no +yes +yes +no +49.3988716 8.6899921, 49.3673694 8.6862886, 49.3704305 8.7013213, 49.3810973 8.6895578, 49.3593333 8.6876382, 49.3810576 8.6896077 +29 +Zoologisches Museum +22 +23 +45 and 48.8376960 2.3062844, 48.8831159 2.3425480, 48.8868146 2.3594625, 48.8481953 2.3419715, 48.8467471 2.3717077, 48.8668168 2.3257587, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8717742 2.2984126, 48.8668308 2.3028826, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8715217 2.3076937, 48.8884053 2.3785210, 48.8278753 2.3796701, 48.8664199 2.2892440, 48.8604399 2.3007825, 48.8864077 2.2949505, 48.8710343 2.3234791, 48.8730243 2.3445449, 48.8606580 2.3469337, 48.8330539 2.2881095, 48.8234693 2.3306543, 48.8562375 2.3660049, 48.8516696 2.2978180, 48.8528343 2.3441184, 48.8504483 2.2926945, 48.8518053 2.3448347, 48.8549752 2.3046163, 48.8868980 2.3004690, 48.8487972 2.3410105, 48.8683305 2.3330172, 48.8920470 2.3024290, 48.8609042 2.3467975, 48.8662424 2.3373468, 48.8814057 2.3282568, 48.8495763 2.3798752, 48.8238179 2.3241127, 48.8752556 2.2866823, 48.8704922 2.2798118, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8848968 2.3034428, 48.8542680 2.3078406, 48.8802164 2.2842407 +yes +55.9406104 -3.2945168, 55.9579671 -3.2416031, 55.9099988 -3.3187446, 55.9335740 -3.2140903, 55.9452785 -3.1910772, 55.9432977 -3.1864231, 55.9274173 -3.3075858, 55.9455180 -3.2068971, 55.9558479 -3.1868996, 55.9385133 -3.1977770, 55.9364081 -3.4051737, 55.9387724 -3.3554816, 55.9411930 -3.2700299, 55.9326592 -3.3137139, 55.9581549 -3.4146320, 55.9259159 -3.2475077, 55.9340106 -3.3057008, 55.9532891 -3.1942347, 55.9528215 -3.1966476, 55.9577481 -3.1745891, 55.9523152 -3.1996825, 55.9512080 -3.2029850, 55.9505306 -3.2060289, 55.9360698 -3.1801396, 55.9431462 -3.2098500, 55.9424957 -3.2178326, 55.9430404 -3.2209823, 55.9431450 -3.1777930, 55.9473014 -3.2066559, 55.9382479 -3.2288358, 55.9493199 -3.2107221, 55.9371375 -3.2021480, 55.9416831 -3.1813332, 55.9399477 -3.1799875, 55.9400554 -3.1800410, 55.9383873 -3.1947438, 55.9381286 -3.1934756, 55.9532580 -3.2007176, 55.9574289 -3.1707713, 55.9498239 -3.1879473, 55.9457420 -3.2062080, 55.9361540 -3.2091272, 55.9367921 -3.2080082, 55.9519655 -3.2019557, 55.9456455 -3.2052495, 55.9420725 -3.2685561, 55.9526727 -3.1905474, 55.9499553 -3.1886925, 55.9483500 -3.1918487, 55.9534890 -3.1892336, 55.9564328 -3.1863322, 55.9462158 -3.1854968, 55.9448431 -3.2048049, 55.9426898 -3.2037234, 55.9472487 -3.1909778, 55.9475118 -3.1893161, 55.9479802 -3.1868691, 55.9462178 -3.1884860, 55.9445944 -3.1837358, 55.9447090 -3.1838238, 55.9390205 -3.1796146, 55.9391727 -3.1798248, 55.9901108 -3.3958456, 55.9382045 -3.1790187, 55.9393085 -3.1795319, 55.9299097 -3.2092576, 55.9362743 -3.1942603, 55.9364425 -3.1941118, 55.9364298 -3.1945475, 55.9381921 -3.1929355, 55.9380470 -3.1915010, 55.9447005 -3.1877270, 55.9428356 -3.1884222, 55.9454993 -3.1874399, 55.9780196 -3.1734148, 55.9341605 -3.2104863, 55.9454998 -3.1881337, 55.9450783 -3.1887212, 55.9480103 -3.1837600, 55.9486091 -3.1831054, 55.9381703 -3.1892079, 55.9382556 -3.1704864, 55.9404236 -3.1696109, 55.9517036 -3.1735044, 55.9444953 -3.1872925, 55.9457242 -3.1982021, 55.9357656 -3.2102949, 55.9634754 -3.1970678, 55.9608923 -3.1970860, 55.9571867 -3.1639997, 55.9594665 -3.1504625, 55.9754036 -3.1792572, 55.9780588 -3.1803331, 55.9781026 -3.1779536, 55.9779864 -3.1732444, 55.9779219 -3.1732147, 55.9779507 -3.1735468, 55.9780888 -3.1742385, 55.9781653 -3.1742810, 55.9781945 -3.1744492, 55.9781519 -3.1745615, 55.9657634 -3.1762911, 55.9648030 -3.1769642, 55.9618573 -3.1797874, 55.9614066 -3.1810341, 55.9282699 -3.1971794, 55.9300538 -3.2006041, 55.9291787 -3.1994540, 55.9288531 -3.2399727, 55.9444072 -3.1838777, 55.9432514 -3.2138686, 55.9434340 -3.2137230, 55.9382190 -3.1871150, 55.9453045 -3.2316341, 55.9163168 -3.3178016, 55.9342480 -3.2099670, 55.9250348 -3.2099016, 55.9556996 -3.1881309, 55.9288850 -3.2096120, 55.9268034 -3.2091405, 55.9599520 -3.1873930, 55.9511210 -3.2277490, 55.9369030 -3.3008559, 55.9760995 -3.1730677, 55.9690233 -3.1728199, 55.9473560 -3.1862560, 55.9472450 -3.1859400, 55.9471464 -3.1859252, 55.9532957 -3.1984157, 55.9727023 -3.1754426, 55.9447520 -3.1840600, 55.9645394 -3.2127643, 55.9360200 -3.2090070, 55.9425943 -3.2128320, 55.9429739 -3.2134360, 55.9425021 -3.1970043, 55.9173034 -3.2149399, 55.9371649 -3.2025037, 55.9363800 -3.1997880, 55.9368530 -3.2004540, 55.9191956 -3.2130499, 55.8967480 -3.3189972, 55.9459933 -3.2231784, 55.9366703 -3.2079324, 55.9536450 -3.1936151, 55.9471310 -3.1906350, 55.9433250 -3.2363632, 55.9436340 -3.1927890, 55.9131941 -3.3215704, 55.9267768 -3.2325501, 55.9265880 -3.2362930, 55.9479871 -3.1862306, 55.9478974 -3.1862047, 55.9670709 -3.1749630, 55.9455865 -3.2342233, 55.9455978 -3.2346741, 55.9372962 -3.2491878, 55.9372632 -3.2492416, 55.9399014 -3.1712062, 55.9275895 -3.1645483, 55.9241128 -3.1723545, 55.9321255 -3.1800006, 55.9334491 -3.1664892, 55.9819333 -3.3968976, 55.9824701 -3.3972270, 55.9517351 -3.1896593, 55.9526200 -3.1872149, 55.9514550 -3.1958932, 55.9113288 -3.3221174, 55.9379636 -3.2403672, 55.9371924 -3.2382206, 55.9772777 -3.2461729, 55.9005835 -3.3187680, 55.9504487 -3.1855770, 55.9481787 -3.1818614, 55.9469357 -3.2061870, 55.9468336 -3.2067128, 55.9510529 -3.1895716, 55.9474405 -3.2025897, 55.9469842 -3.2055924, 55.9484546 -3.2033792, 55.9477666 -3.2049354, 55.9519571 -3.1962325, 55.9475027 -3.1864955, 55.9450666 -3.1879264, 55.9173837 -3.3145666, 55.9650759 -3.2031617, 55.9807357 -3.1771531, 55.9801105 -3.1784204, 55.9803382 -3.1778904, 55.9509532 -3.1703030, 55.9449293 -3.1531235, 55.9426622 -3.1700360, 55.9536680 -3.1591788, 55.9510831 -3.1696039, 55.9471411 -3.1970342, 55.9472696 -3.1965989, 55.9476455 -3.1953503, 55.9470721 -3.1972816, 55.9444791 -3.1881383, 55.9441090 -3.1902632, 55.9441665 -3.1899295, 55.9431021 -3.1885851, 55.9442010 -3.1896725, 55.9442375 -3.1894117, 55.9434877 -3.1870683, 55.9411521 -3.2175600, 55.9416473 -3.2167635, 55.9417417 -3.2166027, 55.9412822 -3.2173787, 55.9414839 -3.2157963, 55.9533340 -3.1882867, 55.9535985 -3.1880495, 55.9540940 -3.1883181, 55.9647669 -3.1742071, 55.9550392 -3.1900725, 55.9551557 -3.1901442, 55.9626030 -3.2336790, 55.9718556 -3.1742189, 55.9598707 -3.1836010, 55.9596341 -3.1834611, 55.9632066 -3.1785776, 55.9606353 -3.1818678, 55.9571142 -3.1859300, 55.9583267 -3.1846366, 55.9591802 -3.1838027, 55.9615406 -3.1806868, 55.9702777 -3.1722352, 55.9714725 -3.1735772, 55.9649663 -3.1768207, 55.9645028 -3.1902250, 55.9585203 -3.1837638, 55.9589264 -3.1833589, 55.9658761 -3.1755965, 55.9758546 -3.1700490, 55.9698878 -3.1717364, 55.9698710 -3.1719035, 55.9673457 -3.1743716, 55.9608269 -3.1809491, 55.9626007 -3.1788719, 55.9456193 -3.2178696, 55.9666564 -3.2048348, 55.9896602 -3.3989461, 55.9897226 -3.3892617, 55.9904018 -3.3860921, 55.9316272 -3.2648845, 55.9459387 -3.2172281, 55.9261122 -3.1387785, 55.9535442 -3.2058828, 55.9468426 -3.2042839, 55.9122985 -3.3155498, 55.9418064 -3.1502056, 55.9366240 -3.1802622, 55.9259084 -3.1931834, 55.9234603 -3.2480989, 55.9111503 -3.3240497, 55.9386253 -3.2265154, 55.9311720 -3.2951988, 55.9014700 -3.2230460, 55.9635314 -3.2337201, 55.9623235 -3.2362031, 55.9400736 -3.1717606, 55.9808127 -3.2595224, 55.9514755 -3.1782823, 55.9511672 -3.1780596, 55.9509125 -3.1777434, 55.9486026 -3.1924520, 55.9426281 -3.2128809, 55.9430915 -3.2136268, 55.9480325 -3.1815054, 55.9480039 -3.1817137, 55.9089361 -3.3201414, 55.9094368 -3.3204754, 55.9092872 -3.3205265, 55.9085739 -3.3187295, 55.9117444 -3.3246249, 55.9114205 -3.3241848, 55.9691533 -3.2784692, 55.9163294 -3.3174640, 55.9437913 -3.2075720, 55.9438322 -3.2058300, 55.9439569 -3.2059882, 55.9141250 -3.3250705, 55.9140139 -3.3251617, 55.9414930 -3.1764095, 55.9501068 -3.1901274, 55.9502048 -3.1904658, 55.9502374 -3.1901476, 55.9777985 -3.2431662, 55.9341031 -3.3103280, 55.9338808 -3.3104461, 55.9505032 -3.1770192, 55.9644079 -3.2126470, 55.9509705 -3.1758549, 55.9353260 -3.1974910, 55.9359590 -3.1944058, 55.8843050 -3.3391037, 55.9439543 -3.2071456, 55.9319254 -3.2512353, 55.9173812 -3.3147110, 55.9482625 -3.1920719, 55.9122188 -3.3171913, 55.9228018 -3.1364902, 55.9552280 -3.1478679, 55.9549996 -3.1445229, 55.9355007 -3.1026548, 55.9135725 -3.3140139, 55.9167553 -3.3178746, 55.9218026 -3.1745330, 55.9220250 -3.1740037, 55.9222596 -3.1746208, 55.9451505 -3.1872267, 55.9426518 -3.1008380, 55.9338262 -3.0919845, 55.9338797 -3.0920141, 55.9189185 -3.2647989, 55.9214872 -3.3034840, 55.9344336 -3.1226594, 55.9503499 -3.1810630, 55.9516064 -3.1841709, 55.9237248 -3.2366306, 55.9833943 -3.2415959, 55.9347829 -3.1798219, 55.9122663 -3.3242829, 55.9154236 -3.3172381, 55.9676214 -3.1664619, 55.9247393 -3.2762275, 55.9834316 -3.2423890, 55.9836698 -3.2462331, 55.9836844 -3.2504406, 55.9837405 -3.2490698, 55.9265395 -3.2441561, 55.9358853 -3.2101222, 55.9495537 -3.1836402, 55.9229086 -3.3978162, 55.9095509 -3.2288170, 55.9086019 -3.2094913, 55.9503720 -3.1813833, 55.9504108 -3.1802868, 55.9507721 -3.1811578, 55.9658637 -3.1761995, 55.9527684 -3.2488426, 55.9812296 -3.1751262, 55.9812432 -3.1752913, 55.9614848 -3.1812115, 55.9503954 -3.3029550, 55.9395842 -3.2047515, 55.9395958 -3.2047474, 55.9376968 -3.2030817, 55.9089416 -3.3164123, 55.9308207 -3.2096951, 55.9743623 -3.1997016, 55.9330618 -3.1065999, 55.9335680 -3.1067948, 55.9375488 -3.3118506, 55.9728634 -3.3514884, 55.9429037 -3.2078542, 55.9475883 -3.3646294, 55.9459800 -3.2223160, 55.9593810 -3.2409668, 55.9561231 -3.1987844, 55.9463571 -3.2082808, 55.9231651 -3.2343395, 55.9561721 -3.1565201, 55.9378482 -3.3327076, 55.9445564 -3.2071394, 55.9524023 -3.1867211, 55.9525000 -3.1872298, 55.9423834 -3.1891736, 55.9396025 -3.1913584, 55.9383523 -3.2265410, 55.9350508 -3.1940011, 55.9585188 -3.1644249, 55.9517703 -3.2028837, 55.9395810 -3.1916680, 55.9457233 -3.1826212, 55.9625044 -3.2362710, 55.9627903 -3.2341275, 55.9414710 -3.2036216, 55.9295687 -3.1756519, 55.9242094 -3.1728587, 55.9239552 -3.1723571, 55.9240756 -3.1746808, 55.9241838 -3.1735301, 55.9230650 -3.1714407, 55.9232656 -3.1716767, 55.9519102 -3.2244910, 55.9386901 -3.3172128, 55.9387953 -3.3165959, 55.9268426 -3.1666054, 55.9413339 -3.2710077, 55.9413445 -3.2708146, 55.9443702 -3.1853406, 55.9409652 -3.1851060, 55.9411294 -3.1853959, 55.9548088 -3.1927863, 55.9273713 -3.1874512, 55.9441079 -3.1919941, 55.9265863 -3.2092898, 55.9509401 -3.1790287, 55.9632358 -3.1796142, 55.9274324 -3.1996630, 55.9303417 -3.2637536, 55.9303636 -3.2638502, 55.9305298 -3.2635743, 55.9308144 -3.2639192, 55.9583318 -3.1187044, 55.9140621 -3.2840381, 55.9532656 -3.1152143, 55.9533715 -3.1154926, 55.9536925 -3.1156095, 55.9523964 -3.1125548, 55.9531590 -3.1065611, 55.9569152 -3.1168216, 55.9545977 -3.1418305, 55.9374032 -3.1711512, 55.9392787 -3.1786578, 55.9392916 -3.1784800, 55.9410201 -3.1806656, 55.9409384 -3.1805218, 55.9435127 -3.1836307, 55.9446441 -3.1839145, 55.9353259 -3.1974274, 55.9356823 -3.2014008, 55.9372592 -3.2021206, 55.9429165 -3.1831794, 55.9121573 -3.3216925, 55.9312185 -3.1718146, 55.9274598 -3.3076072, 55.9276450 -3.3080783, 55.9276631 -3.3081360, 55.9239739 -3.2513488, 55.9340161 -3.1746636, 55.9258469 -3.1648168, 55.9539972 -3.1945597, 55.9230518 -3.1726728, 55.9233383 -3.1720153, 55.9624754 -3.2326403, 55.9551794 -3.4015311, 55.9383407 -3.3187573, 55.9310730 -3.3145350, 55.9311471 -3.3142171, 55.9157480 -3.2864086, 55.9159814 -3.2865221, 55.9484210 -3.1872643, 55.9503683 -3.2078227, 55.9305617 -3.1761991, 55.9192762 -3.1670567, 55.9448310 -3.1949994, 55.9446376 -3.1965778, 55.9445589 -3.1947495, 55.9444142 -3.1965059, 55.9258509 -3.1647719, 55.9447377 -3.1971839, 55.9442766 -3.1978649, 55.9324266 -3.1585275, 55.9417129 -3.1849464, 55.9417884 -3.1851916, 55.9418282 -3.1853346, 55.9418526 -3.1852528, 55.9418744 -3.1849589, 55.9418899 -3.1847817, 55.9418905 -3.1855192, 55.9419227 -3.1854387, 55.9420262 -3.1854659, 55.9421747 -3.1855648, 55.9412750 -3.1446800, 55.9330745 -3.2607364, 55.9207513 -3.1600951, 55.9520027 -3.2062005, 55.9523984 -3.2038646, 55.9530497 -3.2000438, 55.9534470 -3.1976948, 55.9535975 -3.1968237, 55.9331086 -3.1362248, 55.9328125 -3.1366963, 55.9221224 -3.1339138, 55.9223185 -3.1339297, 55.9225101 -3.1339536, 55.9230177 -3.3792156, 55.9447090 -3.1977550, 55.9354932 -3.2368783, 55.9811288 -3.1900190, 55.9687011 -3.1415142, 55.9611799 -3.1900622, 55.9443966 -3.1836641, 55.9389888 -3.1717191, 55.9390958 -3.1739542, 55.9396811 -3.1731682, 55.9400456 -3.1761228, 55.9408960 -3.1768412, 55.9044458 -3.1561935, 55.9369677 -3.2108383, 55.9219280 -3.1788973, 55.9551528 -3.1962671, 55.9332627 -3.2293915, 55.9217192 -3.1545460, 55.9220531 -3.1536922, 55.9538687 -3.1922380, 55.9773393 -3.1724494, 55.9789535 -3.2110248, 55.9449763 -3.1994667, 55.9440570 -3.0985717, 55.9308970 -3.2761417, 55.9308699 -3.2764985, 55.9449994 -3.1905191, 55.9450146 -3.1904231, 55.9450298 -3.1903272, 55.9450449 -3.1902313, 55.9451338 -3.1906532, 55.9471706 -3.1875904, 55.9472333 -3.1877797, 55.9473065 -3.1867806, 55.9474310 -3.1878868, 55.9475351 -3.1877754, 55.9476704 -3.1869573, 55.9466232 -3.1903104, 55.9227217 -3.1743920, 55.9228810 -3.1754273, 55.9231124 -3.1754193, 55.9229249 -3.1782458, 55.9499694 -3.1797507, 55.9499757 -3.1798160, 55.9500637 -3.1794660, 55.9500938 -3.1794485, 55.9229601 -3.1790391, 55.9234202 -3.1790544, 55.9496737 -3.1953225, 55.9496093 -3.1936827, 55.9324201 -3.2283154, 55.9332542 -3.2297846, 55.9540835 -3.1946291, 55.9538883 -3.1945191, 55.9332338 -3.3059686, 55.9461074 -3.1908473, 55.9219330 -3.1748598, 55.9218016 -3.1748987, 55.9219960 -3.1749734, 55.9744239 -3.1691820, 55.9728088 -3.1726327, 55.9357218 -3.3185706, 55.9415743 -3.1747965, 55.9415635 -3.1757823, 55.9116844 -3.3222899, 55.9119672 -3.3224414, 55.9239634 -3.1724671, 55.9220936 -3.1720186 +US, IN, DE +yes +48.8914267 2.4345090, 48.9303011 2.2689297, 48.6997370 2.3739749, 48.8735147 2.3546804, 48.8725743 2.3544129, 48.8454320 2.2826721, 48.8679601 2.3808000, 48.9339922 2.3313679, 48.9053922 2.3819002, 48.9094672 2.2166278, 48.9516594 2.5645141, 48.9294308 2.4038695, 48.9659991 2.3902127, 49.0017114 2.3713145, 48.8876260 2.3607080, 48.8874370 2.3698420, 48.7112625 2.2604075, 48.8198429 2.2571666, 48.7958766 2.3159566, 48.8076552 2.2964862, 48.8431118 2.5325015, 48.7723428 2.4068085, 48.8819623 2.4866656, 48.9020602 2.2405931, 48.8953252 2.2983414, 48.9499377 2.4966883, 48.8985762 2.2000173, 48.7813956 2.4460465, 48.8420784 2.3551117, 48.8707111 2.3526824, 48.8742511 2.3562294, 48.8679659 2.3772772, 48.8690173 2.3800602, 48.9196348 2.3033098, 48.8725697 2.3037667, 48.9521895 2.2347921, 48.9255385 2.2792899, 48.7856167 2.2510412, 48.8853542 2.4002846, 48.7959103 2.1395452, 48.9506037 2.3920534, 48.8873605 2.3541200, 48.8885339 2.3563367, 48.8172877 2.3936138, 48.9199822 2.4253046, 48.8986515 2.6018540, 48.7055664 2.4096044, 48.8816642 2.2404690, 48.7818134 2.3570405, 48.8896443 2.2189544, 48.7261722 2.2720548, 48.9458719 2.3715656, 48.9761310 2.3837075, 48.9717304 2.3907479, 48.9774026 2.4109439, 48.9724538 2.3933323, 48.9670268 2.3975092, 48.9792955 2.3972390, 48.9703955 2.3947230, 49.0085298 2.3947059, 48.9934635 2.2467040 +yes +250.5, 164, 493, 118, 103, 82 +1 +Le Fournil de Lourmel, La Boul'Ange, La Boulenge d'Antan, Boulangerie - Pâtisserie Méri, Les Sourires de Dante, Du Pain et des Idées, La Gerbe d'Or, Boulangerie Hélène et Bernard Dorange, Les compagnons de Voltaire, Guesdon, Aux délices de Saint-Antoine, Jacques Bazin, Aux Délices de Manon, Céline et Étienne, Vitry d'Aubigny, Boulangerie Thierry Renard, Moisan, Le Grenier à Pain, Nature de pain, Le chant du pain, A. et H. Jourdan, Le Pain d'Auguste, Boulangerie Topaze, Boulanger Pâtissier Julien, Chez Paco, La baguette des Pyrenees, Aux Délices de Sèvres, Boulangerie Patisserie, Boulangerie Pâtisserie des Deux ponts, Gwen Choc, Boulangerie Julien, Boulangerie Pâtisserie Gaumer, Boulangerie Malineau, Boulangerie Kahn, Boulangerie Blin, Boulangerie Patrick et Christine, Boulanger patissier, Boulanger Patissier, Le Moulin de la Vierge, L'Univers du Pain, Bread & Roses, Au Saint-Honoré, Boulangerie "Les Caprices de Charlotte", Le Boulanger des Invalides, Boulangerie de l'Entr'acte, Le Boulanger de Monge, Maison Bichon, Aux Gamins de Ménilmontant, L'Epi d'Or, Boulangerie Yan Chantelle, Boulangerie Bonon, Maison Dault, La Grignotière, Le Badine de Martine, Bechu, Boulangerie Schou, Des Gâteaux et du Pain, Jossé, Boulangerie Saint-Louis, Le Fournil Du Village, Aux Sucreries de ma Mie, Le Quai du Pain, Huré Boulanger Patissier, Boulangerie Thevenin, Boulangerie Pascal & Sylvie Robin, Aux délices du palais, Boulangerie Gontier, Boulangerie Laurent Roperh, Les petits mitrons, Patiserie des Sultans, Autour du Fournil, La Tlemcenienne, Le Grenier de Félix, Paul, Boulangerie Patisserie, Le boulanger du parc, Les Délices Vauvenargues, Boulangerie, Boulangerie du Val de Grâce, Aux délices de Christine, Moisan, Blé sucré, Christian et Myckie, Patisserie de Choisy, Patisserie Saison, Arnaud DELMONTEL, La Maubeugeoise, Au Bec Sucré, Boulangerie Eric Kayser, Michel Deschamps, Leduc, Pains et Gourmandises, Les Saveurs de Charenton, Au Pain d'Autrefois, Landemaine, Boulangerie Maison Ellini, au naturel, Zerzour, Pichard, Dossemont, Moisan, La Truffe Noire, Le Saint-Georges, Les Gourmandises D'Eiffel, Eric Kayser, Paul Soulabaille, De Carvalho, Le Prestige, Au Coin de la Rue, Hissine, Boulangerie Patisserie de la Villette, Dominique Saibron, La fournée d'Augustine, Le Pain de Jacques, Au Plaisir du Pain, Boulangerie Feu de Bois, Au Levain des Martyrs, Paul, La Pompadour, La Ruche Gourmande, Aki boulanger, Boulangerie du Fauborg, Boulanger Patissier, Boulangerie Magnelli, La Parisienne, Maison Kayser, Boulangerie des Epinettes, Aux Epis d'Or, Boulangerie F. Comyn, Boulangerie Pâtisserie L'Escale, Boulanger Ounissi, Christophe & Muriel, Le petit creux, Cousin, Le Notre, Stohrer, Le fournil d'Andrézieux, Friends, Boulangerie Jean-Olivier Rondot, L'impérial, Boulangerie Ravignan, Coquelicot, Le 41, Boulangerie Fantasiiia, Au Levain de Pyrénées, A la baguette de Mozart, Boulangerie, Au Duc de la Chapelle, L'ami du pain, La Boulange du 12e, Le pain d'antan, Boulangerie, Sadaharu Aoki, Maison Champin, La Gourmandise, La Flûte Enchantée, Midoré, La Tranche Dorée, Artisan Boulanger, Maison Lendemaine, La Gobelinoise, Boulangerie Akiko et Philippe Bruere, Paul, Lebon, Tembely, Le Fournil de Julien, Aux armes de Niel, Le Grenier à Pains, Au pain complet de Paris, La Moulinoise, Maison Legendre, Boulangerie, Delmontel, Festival des pains, Artisan boulanger, Vaudron, Les Sept Épis, Pains et Passion, Les Délices du Fournil, francesca, Boulangerie Alsacienne Benoît Maeder, Bernard Delattre, Poilane, Rouiller, La Tradition, Le Bel Épi, La Gerbe de Blé, La boulangerie des buttes Chaumont, Atelier des Pains, Paul, Fournil de Wattignies, Huré, La Chocolatine, L'Art du Pain, Paul, By Cyril Lignac, Aux delices des Lilas, Boulangerie Benoist, Boulangerie Patisserie, Le Fournil de Paris, Le pétrin alsacien, La fournée Duhesme, Robin, Au Fournil Gaité, Au Chardon d'Argent, Boulangerie des Lombards, Zazou, Le Fournil de Paris, Millies Cookies, La Boul'Ange, Le péché des gourmets, Paul, Paul, Boulangeir Pâtisserie Kellerman, Amorino, Yv Nghy, Boulangerie Patisserie SAS Penain, L'Artisan du Pain, Boulangerie Patisserie Sainte-Anne, La Crac'ante, La Gambette à Pain, Maison Hébert, Maison Kevest, Boulangerie Patisserie Sandwicherie, Le fournil du moulin, La vicomte, Bonjour Backery, Paul, Fifty Fifty, Laurent Duchêne, La Bretagne, Boulangerie Brune 77, Boulangerie L. Paulin, Le fournil de Vanves, Maison Lefaure, Le Jardin des Pains, Boulangerie Pâtisserie Yelles, Annie & Gilles Boulangerie, Aux délices de la roquette, La tradition du pain, La saveur du pain, La Huche Normande, Square de Belleville, Les jardins de Paul'ha, Le grenier à pain, Boulangerie Saint-Charles, Boulangerie Flandrin, L'Angelus, Guillaume Delcourt, Boulangerie de Mogador, Boulangerie Patisserie, Patisserie Poncet, Eric Kayser, Boulangerie Pascal Chevret, Le Grenier à Pain, Boulangerie, Le Fournil Parmentier, Les délices de la Chapelle, Boulangerie Marceaux, Aux Péchés Normands, La Baguette Sedaine, Boulangerie, Le pain d'autrefois, Rudy Père Et Fils, Boulangerie Onfroy, Boulangerie Poilâne, La Boulangerie, Boulangerie Patisserie, Midoré, Boulangerie Patisserie au 140, Au bel arôme, Boulangerie Saint-Antoine, Bernard Telhier, La flûte Gana, Colisée Gourmet, La Boulange Ve, Sud Tunisien, Artisan Boulanger, Aux Péchés Normands BIO, La Fournée d'Augustine, Le bon Panneton, Boulangerie, La République pâtissière, Au petit Versailles du Marais, Patisserie Bonjour - 你好, Au Blé d'or, Colin Régis, Gérard Mulot, Maison Guénard, Boulangerie Metayer, Artisan boulanger pâtissier, Banette, Le blé royal, Délice Pain, Le Moulin De la vierge, Golden Bread, EVA, La Boulangerie de Papa, Ciel, Aux Délices de Manon, Foulon, Brioche Dorée, Paul, Desgranges, Paul, Paul, Le Grenier à Pain, Boulangerie Patisserie, Boulangerie Patisserie, Au Plaisir du Pain, Yves Thuriès Chocolat, Au Paradis du Gourmand, Ladurée, Boulangerie Alsacienne, Les délices de taine, Aux Gourmandises d'Arago, Boulangerie Evrard, Le Boulanger de Monge, Eric Kayser, Paul, Pou, Sara Lina, La baguette, Le Moulin de la Vierge, Asselin, Mert Pâtisserie, Joséphine Bakery, Paul, Maison Morange, Les Chants de Blé, La Panetière, Paul QUAI, Mottier, Le quartier du pain, Morieux, Au royaume du pain, Boulangerie, Le Gay Choc, Mason Pradier, Pains & Friandises, La Pyramide du prince, Le Pain Au Naturel, Maison Hardel, Boulangerie Ricquer, Thevenin, Au Petit Duc, Aux Surprises, Laurent Duchêne, La caverne aux pains, L'essentiel, Le pain du faubourg, Boulangerie Estaëlle, Contini, Gosselin, Paul, Pabois, Café Pouchkine, Eric Kayser, Boulangerie Patistory, La Truffe Noire, Maison Hilaire, Aux delices d'Oceane, La flute de Meaux, L'artisan boulanger Maison Maaned, Le Fournil de Kuss, La Croquandise, La grange aux pains, Le XXV, Boulangerie Malineau, Boulangerie Patisserie, La delicieuse, Boulangerie Patisserie, Boulangerie Patisserie, Vieille France, Boulangerie Patisserie, Le fournil de Paris, Boulangerie Patisserie, Le paradis du pain, Les Fées Pâtissières, Stanz, Pralus, Le dépot de pain de l'autre Boulange, La délicieuse, Le puits d'amour, Nicolle, Boulangerie Patisserie Gregory Desfoux, Boulangerie Patisserie, Boulangerie Patisserie, Boulangerie, Eric Kayser, Éric Kayser, Boulangerie Patisserie Chocolaterie, Sazanka, Boulangerie Patisserie, Le paradis des gourmands, Gaia, La coeur des pains, Tout chaud, Le petit poucet, Paul, Paul, Les Chants de Blé, Boulangerie Patisserie Chocolatier, Antoine Artisan Boulanger Pâtissier, Le gâteau battu, Aux Délices de Sèvres, Eric Kayser, Eric Kayser, Le Pain Quotidien, Lohezic, Au levain d'antan, Mireille, Le Damier Gourmand, R Canelle, Miss Manon, L'Épi de Blé, Boulangerie Patisserie, Paul, Boulanger Patissier, Brioche Dorée, Pain à la Ligne +55.9381717 -3.2059291 +726 +yes +yes +19 +yes +48.8611385 2.3941583, 48.8875758 2.3303180, 48.8749189 2.4002158, 48.8979156 2.3166483, 48.8890374 2.3392764, 48.8607252 2.4037124, 48.8624937 2.2850289, 48.8866268 2.3732545, 48.8868716 2.3419216, 48.8848404 2.3887566 +yes +15 +55.9451817 -3.1797665, 55.9519194 -3.1206685, 55.9358911 -3.1317799, 55.9374522 -3.1226785, 55.9244123 -3.1588931, 55.9835999 -3.1958115, 55.9641435 -3.1730936, 55.9742767 -3.1702118, 55.9731159 -3.1739750, 55.9574184 -3.1562247, 55.9099801 -3.2277882, 55.9191282 -3.2765048, 55.9643785 -3.1730529 +51.0844645 13.6487103, 51.0273756 13.7474285, 51.0823918 13.7335753, 51.0824545 13.7336039, 51.0825170 13.7336323, 51.0829896 13.7332707, 51.0828616 13.7332262, 51.0827595 13.7331813, 51.0826580 13.7331399, 51.0825999 13.7331126, 51.0825362 13.7330866, 51.0827583 13.7327555, 51.0832603 13.7324804, 51.0831002 13.7336158, 51.0795251 13.6564388, 51.0803520 13.6560575, 51.0797631 13.6570269, 51.0805189 13.6559334, 51.0798370 13.6570887, 51.0801264 13.6570556, 51.0798991 13.6571398, 51.0798900 13.6567596, 51.0800585 13.6558509, 51.0795075 13.6568246, 51.0800106 13.6572306, 51.0802644 13.6565229, 51.0801590 13.6559327, 51.0796771 13.6569580, 51.0801474 13.6574467, 51.0795919 13.6568858, 51.0799591 13.6557717, 51.0806719 13.6547946, 51.0844031 13.6492495, 51.0844377 13.6491173, 51.0845865 13.6492686, 51.0848005 13.6481637, 51.0560319 13.6534353, 51.1129021 13.7134784, 51.0870850 13.7344070, 51.0879019 13.7346740, 51.0872746 13.7345070, 51.0400501 13.6372683, 51.0400368 13.6376398, 51.0397949 13.6376750, 51.0398668 13.6372683, 51.0396860 13.6366848, 51.0395593 13.6369259, 51.0392180 13.6369677, 51.0396431 13.6373610, 51.0396199 13.6371140, 51.0392895 13.6367341, 51.1523082 13.7957194, 51.1532344 13.7957454, 51.1521680 13.7957598, 51.1520584 13.7957188, 51.1536728 13.7955165, 51.1520531 13.7963601, 51.1522370 13.7957382, 51.0847930 13.6490593, 51.0849131 13.6491394, 51.0845156 13.6488769, 51.0847316 13.6490137, 51.0849792 13.6491835, 51.0844573 13.6488382, 51.0848531 13.6490969, 51.0685627 13.6241474, 51.0695246 13.6253081, 51.0699998 13.6237618, 51.0683859 13.6251032, 51.0701737 13.6247207, 51.0683173 13.6249097, 51.0694974 13.6255021, 51.0679836 13.6227283, 51.0698285 13.6245618, 51.0682702 13.6249019, 51.0700321 13.6235780, 51.0699302 13.6241295, 51.0706362 13.6240940, 51.0699677 13.6239464, 51.0699803 13.6233425, 51.0698958 13.6243490, 51.0683476 13.6228519, 51.0703047 13.6239192, 51.0681631 13.6226829, 51.0681586 13.6222257, 51.0705447 13.6245614, 51.0704860 13.6238946, 51.1190382 13.7795044, 51.0400538 13.6374139, 51.0422774 13.6356744, 51.0419915 13.6350658, 51.0422431 13.6350551, 51.0423833 13.6350452, 51.0422138 13.6356743, 51.0424026 13.6345030, 51.0424536 13.6356798, 51.0419222 13.6347316, 51.0425869 13.6359640, 51.0424255 13.6347004, 51.0423683 13.6356861, 51.0419113 13.6345174, 51.0423088 13.6353555, 51.0432389 13.7577645, 51.0436111 13.7590246, 51.1521334 13.7973645, 51.1521117 13.7971177, 51.1520977 13.7967766, 51.1526180 13.7960916, 51.1531397 13.7962202, 51.1521522 13.7975794, 51.0542981 13.6500944, 51.0444714 13.6375970, 51.0445916 13.6380352, 51.0452089 13.6382144, 51.0448329 13.6384755, 51.0420013 13.6356697, 51.0419801 13.6353571, 51.0449595 13.6381873, 51.0450957 13.6377784, 51.0451578 13.6382089, 51.0451645 13.6385095, 51.0445991 13.6376131, 51.0447789 13.6380437, 51.0449673 13.6384880, 51.0451001 13.6385027, 51.0450315 13.6384948, 51.0450594 13.6382009, 51.0416818 13.6350996, 51.0450879 13.6379787, 51.0454522 13.6334655, 51.0444342 13.6335000, 51.0444346 13.6335829, 51.0453155 13.6342072, 51.0453139 13.6338984, 51.0446628 13.6337701, 51.0446591 13.6334707, 51.0453174 13.6340041, 51.0453155 13.6341049, 51.0451033 13.6335278, 51.0444341 13.6336615, 51.0288807 13.7029059, 51.0288738 13.7030353, 51.0644000 13.6702199, 51.0645429 13.6701187, 51.0634300 13.6708257, 51.0629448 13.6704116, 51.0631020 13.6703333, 51.0643496 13.6698018, 51.0644680 13.6697240, 51.0644477 13.6701873, 51.0636715 13.6706991, 51.0634927 13.6708243, 51.0635567 13.6707778, 51.0643411 13.6702497, 51.0644908 13.6701611, 51.0644102 13.6697624, 51.0630231 13.6703734, 51.0641429 13.6701305, 51.0634263 13.6702687, 51.0639096 13.6702519, 51.0091874 13.7517437, 51.0791960 13.7360348, 51.0794212 13.7358213, 51.0870710 13.7344832, 51.0142964 13.7502569, 51.0640528 13.6635614, 51.0638879 13.6639550, 51.0641915 13.6639163, 51.0641879 13.6640152, 51.0638942 13.6637425, 51.0641939 13.6638145, 51.0639733 13.6633695, 51.0638080 13.6677778, 51.0632291 13.6683586, 51.0629009 13.6680561, 51.0636169 13.6676692, 51.0631196 13.6683612, 51.0628342 13.6680588, 51.0636968 13.6679241, 51.0545652 13.6571661, 51.0544809 13.6571568, 51.0545984 13.6575051, 51.0565349 13.6490424, 51.0580882 13.6488216, 51.0546570 13.6508731, 51.0571567 13.6545872, 51.0556063 13.6475528, 51.0569011 13.6540618, 51.0561655 13.6542541, 51.0546351 13.6507613, 51.0559429 13.6545543, 51.0571677 13.6557061, 51.0545624 13.6504539, 51.0568417 13.6544648, 51.0569245 13.6550228, 51.0568989 13.6556656, 51.0570603 13.6550313, 51.0567548 13.6539175, 51.0569839 13.6545736, 51.0570223 13.6555839, 51.0563415 13.6551338, 51.0557576 13.6480748, 51.0560964 13.6490288, 51.0556641 13.6496888, 51.0559435 13.6495665, 51.0561604 13.6490052, 51.0559214 13.6494670, 51.0561791 13.6494340, 51.0557350 13.6491827, 51.0562316 13.6494131, 51.0561324 13.6494525, 51.0562531 13.6489722, 51.0414360 13.6346991, 51.0537377 13.6809286, 51.0869121 13.6263809, 51.0864569 13.6264478, 51.0868109 13.6272543, 51.0865604 13.6261106, 51.0868648 13.6272874, 51.0863500 13.6267865, 51.0863754 13.6267068, 51.0864006 13.6266273, 51.0865935 13.6259527, 51.0865248 13.6262863, 51.0869641 13.6261298, 51.0869379 13.6262564, 51.0864323 13.6265290, 51.0687005 13.7630620, 51.0645983 13.6700479 +yes +3 +55.9424798 -3.2815897 +22 +49.3872050 8.6620109, 49.3988716 8.6899921, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.3851489 8.6733031, 49.3848920 8.6803000, 49.3673694 8.6862886, 49.3956207 8.6692054, 49.3704305 8.7013213, 49.3810973 8.6895578, 49.3593333 8.6876382, 49.3810576 8.6896077 +55.8994270 -3.2972350, 55.9232575 -3.2877434, 55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9002100 -3.2321660, 55.9579565 -3.2439627, 55.9297115 -3.2566004, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9372727 -3.3656602, 55.9344345 -3.1791228, 55.9100535 -3.1423251, 55.9377502 -3.4029754, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9365550 -3.3142140, 55.9836311 -3.3989193, 55.9826346 -3.1875882, 55.9248058 -3.2496194, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9051775 -3.1653894, 55.8839472 -3.3405441, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9695021 -3.2293678, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9102318 -3.2377415, 55.9781314 -3.1744029, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9242943 -3.2525824, 55.9398424 -3.2041012, 55.9397193 -3.2934475 +Mo-Sa 10:30-20:00, Su 14:00-20:00, Sa-Su 09:00-18:00 and 48.8198098 2.3426440, 48.8486860 2.3472380, 48.8809912 2.3271773, 48.8311200 2.3020623 +Dufftown, Gottesgabe, Dresden, Kurort Rathen, Smyrna, Condom, Bremen, Bad Bellingen, Efringen-Kirchen, St. Helens, Lexington, Herrenberg, Berchtesgaden, Guderhandsviertel, Dalwhinnie, Hagen, Fort Collins, Oban, Minneapolis, 員山鄉宜蘭縣, Freeport +16 +49.4181786 8.7569634, 49.4145277 8.6909495, 49.4111212 8.7021704, 49.4210980 8.7559586 +yes +10 +Mo-Sa 09:30-20:00 +49.4120976 8.7096738 +yes +no +55.9248874 -3.1446384 +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8169651 2.3597405, 48.8346251 2.2657680, 48.9012005 2.3862959, 48.8801709 2.3706981, 48.8315802 2.3158225, 48.8455659 2.3086884, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8501676 2.3621707, 48.8593908 2.3144172, 48.8299268 2.3465439, 48.8609726 2.2828299, 48.8563247 2.3152562, 48.8611046 2.3413657, 48.8475898 2.3031985, 48.8463297 2.2794951, 48.9003252 2.3734463, 48.8402491 2.3214518, 48.8804901 2.2865619, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8323948 2.3645635, 48.8645440 2.4097670, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.9007525 2.3748724, 48.8635857 2.2722338, 48.8536267 2.3664311, 48.8408422 2.3172666, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8387798 2.2536841, 48.8281523 2.2728394, 48.8168431 2.3604808, 48.8595020 2.3116861, 48.8407841 2.3912112, 48.8607706 2.3747898, 48.8787212 2.3698437, 48.8586303 2.3897622, 48.8579937 2.3897210, 48.8364028 2.2775659, 48.8558395 2.3835889, 48.8519985 2.2908966, 48.8656358 2.2892405, 48.8786755 2.3549221, 48.8797035 2.3026873, 48.8478375 2.3535433, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8936152 2.3152934, 48.8522407 2.2805336, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8711680 2.3244832, 48.8436106 2.3422313, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.8233460 2.3160166, 48.8338034 2.2847592, 48.8464060 2.3874300, 48.9007173 2.3745755, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8206480 2.3248645, 48.8936129 2.3029112 +78 +49.4073193 8.7078225 +yes + +49.4869999 8.7367276, 49.4943601 8.7246887 +La bobine de fil and www.cite-creation.com, Fresque du Demi-Millénaire - Part 2, Le mur des Canuts and http://cite-creation.com/, Le quartier des Eats-Unis (mur 18), Fresque Histoire des transports Lyonnais, Fresque "Lyon, la santé, la vie" and http://cite-creation.com/, Lyon et sa région, terre de l’humanisme and http://cite-creation.com/, Lyon et sa région, terre de l’humanisme and http://cite-creation.com/, Le mur du cinéma and http://cite-creation.com/, Fresque de Gerland and http://cite-creation.com/, La Fresque Lumineuse - La ville dans le futur and http://cite-creation.com/, Fresque "Mur Démo" and http://cite-creation.com/, Espace Diego Rivera, Une cité industrielle (mur 4), Fresque de Shangaï, Le Théâtre des Charpennes and http://cite-creation.com/, Abattoirs de la Mouche (mur 17), Annonce du Musée (mur 3), Années 1900 (mur 3), Cité idéale d'Egypte (mur 19), Cité idéale de Russie (mur 23), Cité idéale de l'Inde (mur 20), Cité idéale de la Côte d'Ivoire (mur 22), Cité idéale des USA (mur 24), Cité idéale du Mexique (mur 21), École (mur 10), École (mur 10), Etablissements sanitaires (mur 12), Habitations en communs, vue d'ensemble (mur 7), Habitations, vue rapprochée (mur 8), Hôpital de Grange-Blanche (mur 16), La gare, une perspective (mur 6), La tour d'horloges (mur 11), Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Le stade de Gerland (mur 15), Les hauts fourneaux (mur 14), Les services publics (mur 5), Tony Garnier Visionnaire (mur 2), Vue des usines (mur 13), Camionnette Disques Wem, Cité idéale de la Côte d'Ivoire (mur 22), Rue des grands chefs - Restaurant Paul Bocuse and http://cite-creation.com/, Paul Bocuse - Restaurant Paul Bocuse and http://cite-creation.com/, Mur de la Cour des Loges, Fresque "La renaissance" and http://cite-creation.com/, Fresque "Montluc - Jean Moulin" and http://cite-creation.com/, Fresque "Art et Industrie" and http://cite-creation.com/, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, La Fresque du Demi-Millenaire - Part 1, La fresque des Lyonnais and http://cite-creation.com/, La Bibliotheque de la Cité "des écrivains en Rhône-Alpes" and http://cite-creation.com/, Boulevard de la B.D., Boulevard de la B.D., Boulevard de la B.D., La Dombes, Fresque de Meyzieu and www.7e-sens.fr, Fresque des Fourchettes and http://www.gerard-gasquet.com/, Fresque La Résidence de la Sarra and http://cite-creation.com/, Fresque La Résidence de la Sarra and http://cite-creation.com/, Fresque La Résidence de la Sarra and http://cite-creation.com/, Fresque idéale de Québec and http://cite-creation.com/, Charlie Chaplin Bubbles and http://www.7e-sens.fr, Mayoud Honda, Fresque "Oullins Centre-ville" and http://cite-creation.com/, Fresque "Du Pont d'Oullins" and http://cite-creation.com/, Mur peint : L’auberge savoyarde and http://www.7e-sens.fr, La Fresque du Foyer and http://cite-creation.com/, La Fresque Art Déco and http://cite-creation.com/, Fresque RTE Lyon La Mouche and http://cite-creation.com/, Mur peint and http://cite-creation.com/, Fresque and http://cite-creation.com/, Fresque and http://cite-creation.com/, http://tomassi.chez-alice.fr/, Fresque and http://cite-creation.com/, Fresque "Chez Jeanne" and http://cite-creation.com/, Fresque "Allée Arborée" and http://cite-creation.com/, Fresque "La Forge" and http://cite-creation.com/, Fresque "Les Diligences" and http://cite-creation.com/, Fresque "Les Vieux Métiers 1" and http://cite-creation.com/, Fresque "Les Vieux Métiers 2" and http://cite-creation.com/, Fresque "La Route de la Soie" and http://cite-creation.com/, La Fresque du Centenaire 1912-2012, La Fresque du Centenaire 1912-2012, Fresque "Gerland Biotechnologies" and http://cite-creation.com/, La "Fresque Végétale Lumière" and http://cite-creation.com/, Fresque des Vourlois" and http://cite-creation.com/, Fresque du Gymnase and www.7e-sens.fr, Poster en facade gratte ciel and http://www.guillaume.bottazzi.org/fr/art-public/villeurbanne.html, Fresque des Roses - St Priest and http://cite-creation.com/, Fresque des Roses - Lyon, Av Santy and http://cite-creation.com/, Fresque Agir pour la biodiversité and http://cite-creation.com/, Tag 16m2 and http://artdekaley.blogspot.fr/p/street-art.html, Fresque aerosol and http://artdekaley.blogspot.fr/p/street-art.html, Fresque "Les basiliques de Saint-Just" and http://cite-creation.com/, Fresque Le marathon de l'impossible and www.7e-sens.fr, Fresque "La cité KAPS" and http://cite-creation.com/ +52 +yes +48.8318676 2.2884097 +362 and 53.2761342 10.4887315, 53.2785461 10.4325550, 53.2788878 10.4304511, 53.2789685 10.4288410, 53.2790665 10.4275363, 53.2793515 10.4296426, 53.2795102 10.4307986, 53.2799998 10.4311699, 53.2800388 10.4305360, 53.2802531 10.4298171, 53.2809568 10.4325528, 53.2811750 10.4273023, 53.2815625 10.4295745, 53.2819911 10.4325519, 53.2826269 10.4275353, 53.2826725 10.4291199, 53.2826929 10.4307084, 53.2830280 10.4271192, 53.2831022 10.4287052, 53.2831150 10.4325998, 53.2837288 10.4279036, 53.2838773 10.4307180, 53.2839650 10.4284990, 53.2841272 10.4300084, 53.2844130 10.4326432, 53.2845618 10.4317124, 53.2848592 10.4268501, 53.2849266 10.4286468, 53.2852440 10.4326785, 53.2853993 10.4312437, 53.2862019 10.4312152, 53.2862903 10.4296828, 53.2863750 10.4281667, 53.2755425 10.4331058, 53.2761180 10.4342194, 53.2777425 10.4325522, 53.2784206 10.4363617, 53.2787675 10.4341599, 53.2792207 10.4369299, 53.2797841 10.4352717, 53.2798691 10.4329383, 53.2802341 10.4377177, 53.2804318 10.4357138, 53.2804958 10.4341054, 53.2809025 10.4367483, 53.2810767 10.4351505, 53.2811385 10.4383054, 53.2815542 10.4387704, 53.2818275 10.4359059, 53.2818582 10.4345100, 53.2819239 10.4373488, 53.2823376 10.4392990, 53.2825169 10.4360569, 53.2830035 10.4345927, 53.2833004 10.4377685, 53.2833131 10.4391705, 53.2835717 10.4400953, 53.2836192 10.4362508, 53.2840499 10.4383614, 53.2841091 10.4371511, 53.2842429 10.4346390, 53.2852186 10.4350928, 53.2859174 10.4342212, 53.2861266 10.4418947, 53.2863287 10.4367179, 53.2864599 10.4407835, 53.2866391 10.4384732, 53.2867455 10.4400080, 53.2710726 10.4382947, 53.2712649 10.4401709, 53.2715637 10.4389128, 53.2715925 10.4369872, 53.2716948 10.4356207, 53.2718374 10.4407911, 53.2719692 10.4318737, 53.2722286 10.4381808, 53.2723073 10.4283180, 53.2723904 10.4339771, 53.2724363 10.4306150, 53.2726881 10.4386844, 53.2728290 10.4358632, 53.2729874 10.4377402, 53.2730720 10.4325897, 53.2732284 10.4344339, 53.2734787 10.4368595, 53.2735875 10.4305386, 53.2736198 10.4281482, 53.2737720 10.4388769, 53.2741165 10.4378899, 53.2742165 10.4350736, 53.2744418 10.4333647, 53.2744887 10.4302344, 53.2745759 10.4321830, 53.2747589 10.4355519, 53.2750037 10.4313911, 53.2750244 10.4339792, 53.2756698 10.4357777, 53.2762404 10.4301091, 53.2769792 10.4292635, 53.2770442 10.4300230, 53.2772394 10.4288761, 53.2777241 10.4276349, 53.2779813 10.4305866, 53.2726055 10.4416071, 53.2728502 10.4404349, 53.2734544 10.4426876, 53.2743250 10.4409690, 53.2744621 10.4388953, 53.2747879 10.4443669, 53.2750500 10.4378589, 53.2751288 10.4397836, 53.2751450 10.4422597, 53.2757981 10.4406575, 53.2760134 10.4424302, 53.2760164 10.4368845, 53.2761627 10.4389881, 53.2761796 10.4452081, 53.2763269 10.4435753, 53.2766362 10.4424130, 53.2766704 10.4390843, 53.2771652 10.4411989, 53.2772523 10.4373479, 53.2774570 10.4432890, 53.2774622 10.4454378, 53.2776832 10.4389597, 53.2780373 10.4403893, 53.2780504 10.4415209, 53.2781549 10.4473295, 53.2783446 10.4438912, 53.2784492 10.4458331, 53.2788437 10.4415770, 53.2789054 10.4449397, 53.2789458 10.4393966, 53.2794086 10.4432135, 53.2794484 10.4380709, 53.2795354 10.4453708, 53.2796264 10.4421588, 53.2800367 10.4398083, 53.2800561 10.4433928, 53.2801021 10.4465008, 53.2804990 10.4442490, 53.2805738 10.4408210, 53.2810142 10.4458552, 53.2815482 10.4424549, 53.2820320 10.4405398, 53.2797657 10.4502715, 53.2800199 10.4497269, 53.2801004 10.4492386, 53.2806957 10.4514076, 53.2809171 10.4481633, 53.2809629 10.4492709, 53.2813039 10.4508782, 53.2813871 10.4469217, 53.2814826 10.4528633, 53.2816343 10.4403479, 53.2817669 10.4438881, 53.2818878 10.4501453, 53.2819890 10.4484668, 53.2822309 10.4530921, 53.2823413 10.4472747, 53.2824481 10.4497679, 53.2825917 10.4423832, 53.2828899 10.4517158, 53.2830861 10.4532008, 53.2832324 10.4444640, 53.2832644 10.4490285, 53.2833666 10.4420578, 53.2837859 10.4440672, 53.2840219 10.4478656, 53.2840421 10.4427225, 53.2845804 10.4425334, 53.2848516 10.4434057, 53.2853521 10.4442130, 53.2858661 10.4462832, 53.2858796 10.4480533, 53.2859562 10.4447281, 53.2845328 10.4543058, 53.2846452 10.4532757, 53.2856692 10.4514935, 53.2859074 10.4541269, 53.2859706 10.4326894, 53.2860876 10.4504262, 53.2860891 10.4516431, 53.2862331 10.4551076, 53.2864368 10.4486951, 53.2865416 10.4522857, 53.2865468 10.4341588, 53.2867524 10.4442833, 53.2868220 10.4349471, 53.2868925 10.4499564, 53.2869911 10.4489239, 53.2871062 10.4438475, 53.2871192 10.4506975, 53.2871194 10.4520651, 53.2872992 10.4574875, 53.2873154 10.4546493, 53.2874758 10.4563049, 53.2875741 10.4457860, 53.2877174 10.4444075, 53.2878229 10.4555057, 53.2878324 10.4429645, 53.2880147 10.4430071, 53.2881349 10.4550950, 53.2884875 10.4437367, 53.2888166 10.4526623, 53.2889339 10.4538563, 53.2881558 10.4478585, 53.2882657 10.4469997, 53.2888313 10.4496181, 53.2890622 10.4467478, 53.2896048 10.4486217, 53.2897562 10.4474893, 53.2899887 10.4449804, 53.2906473 10.4474064, 53.2906569 10.4510389, 53.2907103 10.4449384, 53.2907284 10.4465969, 53.2907509 10.4479661, 53.2914642 10.4483187, 53.2914817 10.4489736, 53.2916190 10.4504909, 53.2921300 10.4494183, 53.2844239 10.4552791, 53.2856557 10.4564919, 53.2877152 10.4596216, 53.2883024 10.4565032, 53.2883276 10.4601175, 53.2886603 10.4570435, 53.2886754 10.4588919, 53.2891997 10.4551672, 53.2892513 10.4569805, 53.2895030 10.4592396, 53.2897695 10.4619477, 53.2909285 10.4582108, 53.2863131 10.4265248, 53.2872355 10.4327684, 53.2876366 10.4262801, 53.2877399 10.4345791, 53.2878013 10.4389019, 53.2878291 10.4355610, 53.2878367 10.4372062, 53.2880742 10.4416461, 53.2884106 10.4402480, 53.2884385 10.4351391, 53.2884497 10.4361964, 53.2887476 10.4287357, 53.2889652 10.4273053, 53.2892675 10.4423403, 53.2893199 10.4371074, 53.2893432 10.4387193, 53.2893811 10.4401862, 53.2894471 10.4338566, 53.2899882 10.4279237, 53.2900173 10.4351990, 53.2901080 10.4370574, 53.2902004 10.4393046, 53.2902606 10.4383364, 53.2902934 10.4335554, 53.2904159 10.4364033, 53.2905766 10.4328178, 53.2905819 10.4283490, 53.2906678 10.4351769, 53.2907212 10.4262747, 53.2908081 10.4379270, 53.2908976 10.4336480, 53.2909769 10.4366348, 53.2910409 10.4305047, 53.2913822 10.4286086, 53.2930728 10.4263859, 53.2932250 10.4288652, 53.2932524 10.4316868, 53.2936115 10.4273995, 53.2943354 10.4293190, 53.2945085 10.4266900, 53.2950907 10.4276795, 53.2772158 10.4658264, 53.2777014 10.4641203, 53.2780024 10.4621416, 53.2782612 10.4585624, 53.2782945 10.4498138, 53.2782958 10.4652568, 53.2784461 10.4657086, 53.2785414 10.4547227, 53.2786263 10.4641222, 53.2786328 10.4520188, 53.2787736 10.4557550, 53.2787924 10.4670508, 53.2790828 10.4662430, 53.2791022 10.4648568, 53.2791640 10.4630981, 53.2792677 10.4514601, 53.2793765 10.4674115, 53.2794189 10.4528188, 53.2794217 10.4637224, 53.2795526 10.4585785, 53.2796594 10.4660088, 53.2797526 10.4542423, 53.2798863 10.4626378, 53.2799338 10.4677675, 53.2800722 10.4608966, 53.2801571 10.4519139, 53.2803121 10.4666314, 53.2806292 10.4644867, 53.2806672 10.4593631, 53.2810451 10.4657299, 53.2811282 10.4604347, 53.2811311 10.4631622, 53.2815557 10.4641010, 53.2816662 10.4552491, 53.2818042 10.4539243, 53.2818947 10.4607963, 53.2821785 10.4631616, 53.2821829 10.4561119, 53.2824551 10.4585111, 53.2824798 10.4621966, 53.2827543 10.4647244, 53.2828941 10.4598433, 53.2832188 10.4557112, 53.2834286 10.4540762, 53.2834431 10.4682343, 53.2836004 10.4666031, 53.2836872 10.4638191, 53.2837723 10.4609960, 53.2843918 10.4648994, 53.2965086 10.4505225, 53.2970659 10.4507086, 53.2972331 10.4482649, 53.2972909 10.4465259, 53.2980193 10.4288210, 53.2722859 10.4750874, 53.2734158 10.4819874, 53.2735252 10.4819483, 53.2735569 10.4819370, 53.2736634 10.4801685, 53.2738513 10.4776452, 53.2739393 10.4759802, 53.2740538 10.4816901, 53.2740773 10.4816892, 53.2741338 10.4816490, 53.2742179 10.4516208, 53.2744281 10.4771164, 53.2745874 10.4742626, 53.2746080 10.4707787, 53.2746293 10.4736401, 53.2746485 10.4656168, 53.2755292 10.4821798, 53.2756433 10.4783543, 53.2756842 10.4805945, 53.2760968 10.4743407, 53.2761750 10.4827802, 53.2769644 10.4708135, 53.2769781 10.4833074, 53.2772690 10.4745942, 53.2682855 10.4693710, 53.2859902 10.4520524, 53.2851469 10.4511304, 53.2871487 10.4462649, 53.2882270 10.4453029, 53.2872393 10.4408913, 53.2912110 10.4482268, 53.2895850 10.4328281, 53.2834187 10.4575743 +48.8298344 2.3228877, 48.8319942 2.3245602, 48.8585872 2.3458523, 48.8573191 2.3660431, 48.8580708 2.3643313, 48.8577996 2.3607146, 48.8483622 2.3739893, 48.8557612 2.3561274, 48.8533876 2.3620076, 48.8575825 2.3562566, 48.8577181 2.3586116, 48.8555902 2.3628384, 48.8437435 2.3544856, 48.8498300 2.3549148, 48.8446680 2.3483159, 48.8405040 2.3347917, 48.8556694 2.3399888, 48.8555375 2.3409454, 48.8537528 2.3324105, 48.8533939 2.3394107, 48.8493501 2.3391528, 48.8546811 2.3332029, 48.8497831 2.3401650, 48.8441458 2.3298957, 48.8468341 2.3265156, 48.8550882 2.3414828, 48.8442966 2.3310034, 48.8554631 2.3741053, 48.8533962 2.3787654, 48.8554359 2.3744522, 48.8533316 2.3759759, 48.8561021 2.3751898, 48.8450730 2.3795209, 48.8263535 2.3601541, 48.8264524 2.3594353, 48.8346687 2.3775990, 48.8278970 2.3505521, 48.8349997 2.3270026, 48.8332286 2.3157120, 48.8234665 2.3685489, 48.8413291 2.2990993, 48.8408025 2.2883022, 48.8581641 2.2723388, 48.8523143 2.3350471, 48.8516415 2.3185465, 48.8482525 2.3194882, 48.8537038 2.3235630, 48.8449146 2.3734371, 48.8584187 2.2875657, 48.8523799 2.4036853, 48.8544589 2.4006544, 48.8475463 2.3713427, 48.8449916 2.3240393, 48.8395978 2.2669106, 48.8274124 2.3148434, 48.8570811 2.3559832, 48.8588049 2.3266129, 48.8334988 2.3198962, 48.8527753 2.4059315, 48.8551966 2.4016334, 48.8540343 2.4058858, 48.8373556 2.2574212, 48.8378434 2.2578634, 48.8381218 2.2586505, 48.8488333 2.3253506, 48.8461967 2.3783357, 48.8360044 2.3574926, 48.8237611 2.3626525, 48.8477733 2.3484340, 48.8415272 2.3511512, 48.8288139 2.3506397, 48.8492934 2.3349249, 48.8414290 2.2990451, 48.8517156 2.3336409, 48.8566933 2.4002542, 48.8455384 2.3288228, 48.8519626 2.3388319, 48.8300409 2.3310810, 48.8374507 2.3523064, 48.8334069 2.3555105, 48.8457083 2.3191961, 48.8523526 2.3444419, 48.8568120 2.3062305, 48.8537402 2.4056302, 48.8538057 2.4056125, 48.8484568 2.3995601, 48.8478160 2.3975417, 48.8540277 2.3358692, 48.8404976 2.3244044, 48.8491586 2.2872491, 48.8472243 2.3185062, 48.8514886 2.3986829, 48.8300837 2.3230365, 48.8528282 2.4062488, 48.8474511 2.3483430, 48.8518792 2.3487076, 48.8514969 2.3476094, 48.8518241 2.3377078, 48.8393461 2.2989248, 48.8378680 2.3520336, 48.8491407 2.3785568, 48.8467150 2.3839386, 48.8479594 2.3771753, 48.8468326 2.3790947, 48.8509991 2.3778569, 48.8484434 2.3726021, 48.8490503 2.3712312, 48.8477004 2.3736634, 48.8500663 2.3739032, 48.8447706 2.3779554, 48.8451286 2.3836536, 48.8541173 2.3674450, 48.8489304 2.3762840, 48.8462620 2.3786885, 48.8453283 2.3813011, 48.8446037 2.3833732, 48.8477398 2.3888781, 48.8476122 2.3930340, 48.8420168 2.3896839, 48.8367142 2.3522749, 48.8296427 2.3513003, 48.8275755 2.3532310, 48.8473878 2.3433434, 48.8361883 2.4001628, 48.8361733 2.3992550, 48.8355057 2.3978609, 48.8381280 2.3966112, 48.8385750 2.3962263, 48.8360911 2.4057236, 48.8400454 2.3808140, 48.8399906 2.3811474, 48.8347357 2.3876562, 48.8396394 2.3801031, 48.8394044 2.3805434, 48.8465303 2.3834704, 48.8463112 2.3834371, 48.8519093 2.3341886, 48.8396241 2.4024373, 48.8477533 2.3981316, 48.8485668 2.3983079, 48.8284622 2.3428564, 48.8319371 2.3141252, 48.8327575 2.3159370, 48.8318327 2.3145828, 48.8330455 2.3162946, 48.8332491 2.3170528, 48.8362254 2.3224012, 48.8364089 2.3224024, 48.8324709 2.3200140, 48.8324257 2.3207007, 48.8324031 2.3208037, 48.8323749 2.3209067, 48.8514297 2.3722999, 48.8544625 2.3823250, 48.8507756 2.3816053, 48.8464081 2.3717860, 48.8367172 2.3924117, 48.8366661 2.3926576, 48.8366787 2.3933514, 48.8440901 2.3896786, 48.8432477 2.3892875, 48.8450283 2.3826090, 48.8453967 2.3826032, 48.8470342 2.3868537, 48.8469567 2.3869061, 48.8466891 2.3824558, 48.8467101 2.3827554, 48.8508333 2.3797344, 48.8494049 2.3783024, 48.8481949 2.3766544, 48.8482849 2.3767134, 48.8498295 2.3739314, 48.8456109 2.3933509, 48.8410573 2.3873134, 48.8478582 2.3735429, 48.8483197 2.3742134, 48.8462275 2.3737111, 48.8458407 2.3720988, 48.8459184 2.3726478, 48.8484256 2.3742938, 48.8491474 2.3746104, 48.8471402 2.3725177, 48.8490161 2.3747617, 48.8470772 2.3727405, 48.8475609 2.3752480, 48.8459741 2.3725698, 48.8459507 2.3730386, 48.8458244 2.3719271, 48.8464620 2.3718673, 48.8501253 2.3762844, 48.8493623 2.3902888, 48.8497475 2.3788828, 48.8468146 2.3805349, 48.8442266 2.3492264, 48.8310200 2.3347804, 48.8252128 2.3624715, 48.8251313 2.3623868, 48.8248667 2.3622623, 48.8462167 2.3753959, 48.8460708 2.3770013, 48.8458252 2.3749543, 48.8469247 2.3730534, 48.8472565 2.3708817, 48.8471819 2.3707631, 48.8467280 2.3702882, 48.8465554 2.3692393, 48.8463534 2.3689294, 48.8456188 2.3700692, 48.8453198 2.3707747, 48.8457141 2.3704736, 48.8274542 2.3356985, 48.8324911 2.2973690, 48.8342552 2.3021401, 48.8331822 2.3057910, 48.8330642 2.3057247, 48.8370250 2.2962718, 48.8320429 2.3030516, 48.8567473 2.3041925, 48.8562200 2.3044115, 48.8560475 2.3045247, 48.8555290 2.3047711, 48.8555382 2.3054236, 48.8553164 2.3055412, 48.8549906 2.3050099, 48.8547805 2.3051304, 48.8487705 2.3484391, 48.8488367 2.3472494, 48.8454096 2.3428012, 48.8451686 2.3207087, 48.8522230 2.3849242, 48.8510651 2.3842956, 48.8525445 2.3847726, 48.8452457 2.3838856, 48.8239780 2.3622896, 48.8368051 2.3525786, 48.8524629 2.4041332, 48.8576438 2.3546760, 48.8577293 2.3547383, 48.8578549 2.3549208, 48.8343459 2.3060180, 48.8343850 2.3935686, 48.8331731 2.3864450, 48.8330278 2.3862477, 48.8330119 2.3635033, 48.8322800 2.3612312, 48.8331196 2.3540446, 48.8321701 2.3590298, 48.8319327 2.3582100, 48.8330825 2.3614982, 48.8332640 2.3561912, 48.8321364 2.3546768, 48.8505276 2.3447826, 48.8513045 2.3459712, 48.8355997 2.3589131, 48.8353091 2.3587223, 48.8534095 2.3799147, 48.8253500 2.3613456, 48.8392195 2.3712618, 48.8321878 2.3587424, 48.8375411 2.3916661, 48.8538840 2.3375740, 48.8459719 2.2775704, 48.8286167 2.3222750, 48.8291859 2.3226894, 48.8445390 2.3211809, 48.8305262 2.3381265, 48.8496002 2.3981379, 48.8528829 2.3864220, 48.8530453 2.3745559, 48.8479680 2.3710745, 48.8485260 2.3720544, 48.8504050 2.3701018, 48.8517234 2.3993213, 48.8289443 2.3298857, 48.8289302 2.3293063, 48.8288878 2.3328361, 48.8376310 2.2974210, 48.8461025 2.3834255, 48.8430137 2.3209354, 48.8386044 2.2987363, 48.8472505 2.3480517, 48.8565275 2.3420348, 48.8568716 2.3421327, 48.8563329 2.3422554, 48.8569183 2.3418674, 48.8333386 2.2983800, 48.8319312 2.3029513, 48.8577895 2.3468656, 48.8583659 2.3474922, 48.8542020 2.3503178, 48.8380436 2.2819311, 48.8447774 2.2964422, 48.8475784 2.2858410, 48.8499929 2.2889519, 48.8517565 2.2895333, 48.8527624 2.2872737, 48.8496754 2.3496176, 48.8518091 2.3568234, 48.8519507 2.3561108, 48.8527730 2.3537103, 48.8515128 2.3437930, 48.8555040 2.3574259, 48.8583173 2.3517204, 48.8274198 2.3518171, 48.8572208 2.3551092, 48.8571117 2.3550358, 48.8571384 2.3549764, 48.8572463 2.3550135, 48.8568296 2.3551652, 48.8569458 2.3554337, 48.8271315 2.3323734, 48.8581626 2.3561038, 48.8579512 2.3567221, 48.8564037 2.3572215, 48.8569706 2.3578174, 48.8570944 2.3576266, 48.8573873 2.3589592, 48.8575151 2.3587307, 48.8580313 2.3580479, 48.8574097 2.3590501, 48.8422251 2.3519017, 48.8259202 2.3471664, 48.8569391 2.3587226, 48.8562824 2.3592731, 48.8562386 2.3592343, 48.8558049 2.3600410, 48.8402209 2.3517797, 48.8555549 2.3612781, 48.8559169 2.3603985, 48.8556266 2.3621786, 48.8554988 2.3630222, 48.8550149 2.3631694, 48.8556083 2.3627374, 48.8552888 2.3629682, 48.8553171 2.3630156, 48.8552064 2.3625817, 48.8557023 2.3630589, 48.8555544 2.3581927, 48.8549470 2.3612543, 48.8557611 2.3570094, 48.8556412 2.3606593, 48.8260343 2.3476244, 48.8540797 2.3659063, 48.8562566 2.3646932, 48.8539723 2.3672909, 48.8549472 2.3633131, 48.8537619 2.3675235, 48.8549776 2.3673407, 48.8540510 2.3686163, 48.8538949 2.3685489, 48.8554539 2.3579276, 48.8548402 2.3583739, 48.8551687 2.3602451, 48.8543977 2.3599670, 48.8521583 2.3613070, 48.8525480 2.3641850, 48.8532015 2.3640647, 48.8544815 2.3628958, 48.8536886 2.3643812, 48.8545334 2.3627527, 48.8539861 2.3622411, 48.8519412 2.3645366, 48.8498781 2.3644772, 48.8477690 2.3654853, 48.8189632 2.3613966, 48.8208495 2.3637354, 48.8235845 2.3656863, 48.8262413 2.3615997, 48.8237603 2.3652263, 48.8521687 2.3444775, 48.8533184 2.3416729, 48.8449381 2.3496655, 48.8577749 2.3606479, 48.8516494 2.3469103, 48.8526479 2.3470482, 48.8560432 2.3669557, 48.8559327 2.3681748, 48.8544692 2.3379604, 48.8468855 2.3408953, 48.8459422 2.3434742, 48.8422162 2.3202513, 48.8438796 2.3245430, 48.8382008 2.3515664, 48.8417641 2.3556159, 48.8429787 2.3633417, 48.8359676 2.3585104, 48.8400778 2.3373997, 48.8413087 2.3389738, 48.8413263 2.3391080, 48.8382571 2.3458273, 48.8536730 2.3797768, 48.8543308 2.3402565, 48.8546432 2.3327719, 48.8533032 2.3340213, 48.8529586 2.3360296, 48.8516089 2.3354609, 48.8514421 2.3272954, 48.8551090 2.3306870, 48.8487629 2.3975462, 48.8416177 2.3314774, 48.8419379 2.3304718, 48.8422661 2.3280738, 48.8424306 2.3290349, 48.8471137 2.3267431, 48.8467204 2.3172126, 48.8530169 2.3313456, 48.8521220 2.3374608, 48.8396584 2.3567615, 48.8558538 2.3252896, 48.8411028 2.2875550, 48.8583918 2.4006119, 48.8390096 2.3532786, 48.8389664 2.3530576, 48.8384933 2.3512141, 48.8193723 2.3655267, 48.8296146 2.3822728, 48.8296210 2.3809399, 48.8282637 2.3802920, 48.8314453 2.3762846, 48.8511260 2.3460443, 48.8517830 2.3177917, 48.8425329 2.3202995, 48.8397936 2.3818812, 48.8387533 2.3310982, 48.8395777 2.3302123, 48.8490162 2.3701002, 48.8498772 2.3811118, 48.8495091 2.3797387, 48.8463681 2.3733407, 48.8542991 2.3674061, 48.8538841 2.3681040, 48.8396268 2.3145492, 48.8430176 2.3242123, 48.8410422 2.3148300, 48.8479223 2.3736079, 48.8516854 2.3468389, 48.8411418 2.3133493, 48.8575743 2.2745958, 48.8564304 2.2797283, 48.8546720 2.2831002, 48.8556834 2.2695115, 48.8445537 2.3572323, 48.8438344 2.3546970, 48.8406209 2.3131425, 48.8408995 2.3133856, 48.8377889 2.3112404, 48.8510948 2.2675935, 48.8485486 2.2609653, 48.8485892 2.2607508, 48.8495519 2.2685978, 48.8478164 2.2424927, 48.8483714 2.2664428, 48.8243361 2.3260774, 48.8235176 2.3258353, 48.8410150 2.3160260, 48.8482315 2.2642376, 48.8473334 2.2588597, 48.8286456 2.3651923, 48.8454540 2.2578610, 48.8505335 2.3887324, 48.8453467 2.3836640, 48.8369274 2.3592628, 48.8513298 2.3837511, 48.8449412 2.2575407, 48.8452233 2.2577704, 48.8394586 2.2616545, 48.8403523 2.2652749, 48.8402456 2.2655127, 48.8407348 2.2646847, 48.8475082 2.3756380, 48.8378544 2.2962158, 48.8296616 2.3177920, 48.8283684 2.3161973, 48.8397098 2.2848132, 48.8412353 2.2879283, 48.8347149 2.3277467, 48.8354063 2.3258802, 48.8358672 2.3242187, 48.8355698 2.3250292, 48.8348588 2.3273891, 48.8350846 2.3267608, 48.8341036 2.3294199, 48.8324180 2.3247172, 48.8342294 2.3264332, 48.8463464 2.3945644, 48.8368961 2.3177487, 48.8367758 2.3180171, 48.8396082 2.3324972, 48.8559760 2.3666852, 48.8499857 2.3459367, 48.8485371 2.3779078, 48.8511475 2.3804023, 48.8533661 2.3445967, 48.8527336 2.3464352, 48.8525998 2.3463499, 48.8510655 2.3458688, 48.8515005 2.3480197, 48.8505010 2.3475831, 48.8508738 2.3460187, 48.8414932 2.3132873, 48.8425813 2.3133329, 48.8425225 2.3124389, 48.8566502 2.3266740, 48.8485654 2.3482310, 48.8496798 2.3526713, 48.8515559 2.3496810, 48.8472106 2.3483382, 48.8471676 2.3484712, 48.8407751 2.3245796, 48.8431709 2.3416539, 48.8426788 2.3414503, 48.8575636 2.3501179, 48.8463554 2.3405710, 48.8430338 2.3494597, 48.8431709 2.3494420, 48.8428285 2.3484260, 48.8450551 2.3490236, 48.8455001 2.3492453, 48.8449589 2.3493182, 48.8452352 2.3492038, 48.8453933 2.3492411, 48.8452357 2.3490360, 48.8451938 2.3492149, 48.8449425 2.3498446, 48.8449041 2.3498515, 48.8384619 2.3563683, 48.8384169 2.3562199, 48.8387726 2.3573303, 48.8395766 2.3564711, 48.8558414 2.3601168, 48.8580164 2.3612756, 48.8584177 2.3025456, 48.8569221 2.3035938, 48.8464241 2.2954995, 48.8359122 2.3596749, 48.8530145 2.3117479, 48.8501505 2.3397562, 48.8507370 2.3741124, 48.8499922 2.3740320, 48.8516089 2.3778622, 48.8503505 2.3762126, 48.8465347 2.3810262, 48.8452145 2.3770818, 48.8353460 2.2854410, 48.8247155 2.3622282, 48.8245453 2.3629329, 48.8217881 2.3649842, 48.8462262 2.3142889, 48.8299382 2.3626544, 48.8567106 2.3947298, 48.8577097 2.3005438, 48.8515887 2.3004692, 48.8568923 2.2921973, 48.8516581 2.3996110, 48.8512398 2.3832978, 48.8502779 2.3906229, 48.8502002 2.3918245, 48.8507491 2.3956735, 48.8399742 2.3934259, 48.8366296 2.4029905, 48.8385089 2.3991495, 48.8426310 2.3854954, 48.8347163 2.4076218, 48.8479740 2.3007339, 48.8468451 2.3046139, 48.8475414 2.3012068, 48.8467540 2.3049111, 48.8390560 2.3924535, 48.8378894 2.3906889, 48.8397585 2.3884230, 48.8390438 2.3923714, 48.8482418 2.3105178, 48.8505805 2.3092017, 48.8517546 2.3104073, 48.8514424 2.3108980, 48.8517685 2.3133289, 48.8498367 2.3124580, 48.8517506 2.3131416, 48.8470660 2.3954688, 48.8446026 2.3117965, 48.8445056 2.3203943, 48.8446279 2.3203361, 48.8458069 2.3492233, 48.8503634 2.3868517, 48.8438107 2.3152002, 48.8437516 2.3150319, 48.8333957 2.3653856, 48.8449195 2.3183472, 48.8453227 2.3190283, 48.8546701 2.3693933, 48.8323092 2.3130666, 48.8254617 2.3652375, 48.8555583 2.3708327, 48.8569621 2.3721314, 48.8567777 2.3726141, 48.8558410 2.3721540, 48.8545648 2.3719500, 48.8536042 2.3707268, 48.8538783 2.3707951, 48.8546993 2.3708799, 48.8480733 2.3112387, 48.8345104 2.3934103, 48.8455102 2.3829497, 48.8553433 2.3747935, 48.8538434 2.3724806, 48.8418339 2.3497835, 48.8549268 2.3539661, 48.8264546 2.3410881, 48.8570588 2.3798634, 48.8524031 2.3825246, 48.8303551 2.3540212, 48.8546913 2.3857584, 48.8564566 2.3025481, 48.8314493 2.3411256, 48.8380307 2.2817398, 48.8503931 2.3688912, 48.8506208 2.3689945, 48.8453517 2.2976315, 48.8493300 2.3749472, 48.8341870 2.3157058, 48.8224620 2.3587564, 48.8452541 2.2717989, 48.8400603 2.2864594, 48.8437006 2.2963141, 48.8449901 2.2972313, 48.8502257 2.3782954, 48.8503235 2.3783645, 48.8495013 2.3784402, 48.8515963 2.3430149, 48.8492402 2.2880111, 48.8401706 2.3924398, 48.8290910 2.3744112, 48.8283297 2.3816403, 48.8351017 2.3201496, 48.8351935 2.3203079, 48.8218202 2.3423613, 48.8444522 2.3901640, 48.8443813 2.3902545, 48.8260323 2.3598011, 48.8226689 2.3629591, 48.8432368 2.3854870, 48.8370059 2.2837291, 48.8365516 2.2821427, 48.8356895 2.2807712, 48.8354976 2.2815391, 48.8370362 2.2836115, 48.8449997 2.4059414, 48.8470725 2.4064857, 48.8391796 2.3955829, 48.8387420 2.3963264, 48.8390768 2.3942535, 48.8370556 2.3918823, 48.8372166 2.3915674, 48.8387373 2.3961225, 48.8516698 2.3805401, 48.8385818 2.2889747, 48.8383246 2.2880446, 48.8381278 2.2872162, 48.8377112 2.2593212, 48.8566013 2.3030438, 48.8447537 2.3186687, 48.8277214 2.3493461, 48.8582656 2.3882446, 48.8543675 2.3835627, 48.8575110 2.3466500, 48.8549950 2.3458720, 48.8543860 2.3452440, 48.8538530 2.3437110, 48.8526640 2.3534610, 48.8530320 2.3533850, 48.8523740 2.3670920, 48.8361075 2.3240698, 48.8537952 2.4109052, 48.8498873 2.3503879, 48.8377658 2.3556217, 48.8373866 2.2787503, 48.8376849 2.2783476, 48.8370124 2.2782827, 48.8373420 2.2787571, 48.8584947 2.3265348, 48.8248377 2.3236483, 48.8238612 2.3234793, 48.8243856 2.3234123, 48.8242408 2.3233372, 48.8280919 2.3264056, 48.8290544 2.3276046, 48.8403734 2.3690860, 48.8388484 2.3702978, 48.8376057 2.3732965, 48.8365782 2.3714028, 48.8397347 2.3696009, 48.8359107 2.3720037, 48.8315850 2.3242790, 48.8521286 2.3374207, 48.8469541 2.4077243, 48.8485558 2.3279413, 48.8390548 2.2577341, 48.8388575 2.2576602, 48.8404902 2.2580804, 48.8476438 2.3479747, 48.8495928 2.3812853, 48.8295186 2.3712567, 48.8410271 2.2662469, 48.8420173 2.3480157, 48.8431426 2.3492259, 48.8428742 2.3485446, 48.8430296 2.3492151, 48.8430013 2.3491186, 48.8528026 2.3743383, 48.8300641 2.3145322, 48.8285724 2.3161086, 48.8508024 2.3768778, 48.8502524 2.3764928, 48.8417557 2.3487402, 48.8566955 2.3731518, 48.8570910 2.3727607, 48.8505156 2.3091488, 48.8410914 2.3489485, 48.8446176 2.3491298, 48.8442421 2.2944260, 48.8486566 2.2967202, 48.8419574 2.3290304, 48.8529638 2.3701915, 48.8521273 2.3846642, 48.8436740 2.3495038, 48.8451117 2.3493401, 48.8449670 2.3488185, 48.8448364 2.3492811, 48.8448928 2.3492758, 48.8445379 2.3489273, 48.8445159 2.3485397, 48.8529952 2.3376020, 48.8501520 2.3419436, 48.8434300 2.3494242, 48.8432628 2.3494718, 48.8447332 2.3491164, 48.8446591 2.3491299, 48.8437358 2.3472026, 48.8384430 2.3563154, 48.8349766 2.2830210, 48.8327742 2.2887456, 48.8447791 2.3492894, 48.8435770 2.3493886, 48.8377834 2.3909830, 48.8442707 2.3492157, 48.8401572 2.3240577, 48.8412056 2.3941921, 48.8418196 2.3905033, 48.8294590 2.3017660, 48.8441758 2.3479878, 48.8445200 2.3486356, 48.8445253 2.3488180, 48.8570416 2.3726643, 48.8475785 2.4004192, 48.8274320 2.3314214, 48.8510173 2.2932405, 48.8509119 2.2937166, 48.8508690 2.2932272, 48.8535259 2.4120078, 48.8439446 2.3493055, 48.8438873 2.3493114, 48.8485015 2.3421189, 48.8501669 2.3420537, 48.8455001 2.3427289, 48.8334129 2.3092754, 48.8434049 2.2987789, 48.8566315 2.4020574, 48.8433712 2.3246895, 48.8435643 2.3254572, 48.8476850 2.4080780, 48.8402155 2.3458349, 48.8508424 2.4062247, 48.8356633 2.3751497, 48.8489864 2.3403461, 48.8555899 2.3867736, 48.8560496 2.3884378, 48.8531504 2.3773721, 48.8513051 2.3765410, 48.8349006 2.3856248, 48.8427645 2.2780599, 48.8404972 2.3950481, 48.8286998 2.3507416, 48.8286000 2.3506267, 48.8427006 2.2950967, 48.8332740 2.3869138, 48.8412651 2.3237285, 48.8412198 2.3236119, 48.8276701 2.3500783, 48.8423579 2.3222342, 48.8426136 2.3217510, 48.8425995 2.3220085, 48.8426424 2.3222812, 48.8421833 2.3220777, 48.8526377 2.4062734, 48.8418212 2.3214760, 48.8211226 2.3412820, 48.8333002 2.3325229, 48.8488761 2.3682264, 48.8211831 2.3635911, 48.8509430 2.3489714, 48.8476389 2.3773813, 48.8380973 2.3926743, 48.8395564 2.3497363, 48.8500694 2.2761219, 48.8498994 2.2724503, 48.8514931 2.2777343, 48.8512248 2.2780374, 48.8506071 2.2713372, 48.8400881 2.3806431, 48.8240405 2.3250200, 48.8517277 2.3664938, 48.8359510 2.3274377, 48.8337887 2.2902462, 48.8339105 2.2899243, 48.8332825 2.2894710, 48.8331362 2.2888144, 48.8515069 2.4066855, 48.8351363 2.3445567, 48.8260954 2.3467344, 48.8304114 2.3551773, 48.8245551 2.3763634, 48.8248510 2.3607452, 48.8416788 2.3272221, 48.8556751 2.3337849, 48.8344267 2.2884194, 48.8338498 2.2894608, 48.8396619 2.3229538, 48.8518599 2.3446879, 48.8527027 2.3467086, 48.8514101 2.4052556, 48.8514486 2.4064449, 48.8491856 2.4063562, 48.8480831 2.4040261, 48.8222536 2.3618120, 48.8221935 2.3616081, 48.8221264 2.3613884, 48.8222287 2.3611417, 48.8221688 2.3609429, 48.8221335 2.3607766, 48.8347833 2.2887478, 48.8342967 2.2879777, 48.8341388 2.2878870, 48.8335658 2.2868046, 48.8221897 2.3589982, 48.8354116 2.2892340, 48.8337101 2.2863906, 48.8219714 2.3582637, 48.8220277 2.3582482, 48.8234610 2.3537855, 48.8298312 2.3567979, 48.8484873 2.3463043, 48.8500822 2.3477323, 48.8507620 2.3449853, 48.8463607 2.3432591, 48.8464051 2.3430548, 48.8308414 2.3123480, 48.8311654 2.3137963, 48.8471824 2.3866402, 48.8502006 2.2918459, 48.8501155 2.2920291, 48.8420674 2.3760001, 48.8496451 2.3534642, 48.8570961 2.3998935, 48.8571003 2.4079730, 48.8514439 2.3380763, 48.8371809 2.3497368, 48.8516647 2.3719912, 48.8530064 2.2754461, 48.8511636 2.2783753, 48.8526949 2.3089511, 48.8448163 2.3733745, 48.8522713 2.3728858, 48.8541526 2.2759522, 48.8283068 2.3264318, 48.8348517 2.2891489, 48.8349806 2.2890202, 48.8355850 2.3240208, 48.8364355 2.3230794, 48.8363755 2.3920736, 48.8363401 2.3920991, 48.8476343 2.3974001, 48.8452414 2.3792066, 48.8388762 2.3961905, 48.8440274 2.3842239, 48.8400356 2.3360672, 48.8395556 2.3365605, 48.8217455 2.3523997, 48.8221973 2.3554703, 48.8495790 2.3543056, 48.8310397 2.3791345, 48.8360032 2.2916086, 48.8354526 2.2925379, 48.8360026 2.2919856, 48.8444056 2.3230253, 48.8398470 2.3238410, 48.8519848 2.3846342, 48.8405177 2.3236190, 48.8294447 2.3791512, 48.8288966 2.3760626, 48.8486397 2.3653776, 48.8281574 2.3022904, 48.8417263 2.3245973, 48.8419109 2.3245351, 48.8435173 2.3219294, 48.8416495 2.3246134, 48.8417952 2.3245691, 48.8419805 2.3245034, 48.8404349 2.3156482, 48.8429231 2.3260926, 48.8405515 2.3159715, 48.8427732 2.3210206, 48.8405038 2.3158186, 48.8415277 2.3195025, 48.8404090 2.3155450, 48.8408520 2.3154700, 48.8416910 2.3246067, 48.8410405 2.3217676, 48.8371723 2.3209043, 48.8450620 2.2639791, 48.8404449 2.3243133, 48.8393146 2.3237992, 48.8466620 2.2831751, 48.8465418 2.2833721, 48.8420648 2.2629254, 48.8239202 2.3655030, 48.8231449 2.3164243, 48.8274421 2.3056058, 48.8272767 2.3063130, 48.8273081 2.3061699, 48.8579931 2.4032941, 48.8495349 2.2915103, 48.8494723 2.2914581, 48.8193061 2.3373740, 48.8396713 2.3471300, 48.8318467 2.3029070, 48.8515798 2.3992009, 48.8515911 2.3992945, 48.8448238 2.3691876, 48.8471374 2.3947373, 48.8416499 2.3895371, 48.8447328 2.3894590, 48.8462215 2.3870803, 48.8470847 2.3868148, 48.8275287 2.3149795, 48.8412254 2.3738186, 48.8405967 2.2643349, 48.8470601 2.2681655, 48.8467068 2.2996176, 48.8238476 2.3506828, 48.8402963 2.3339966, 48.8207235 2.3507707, 48.8341834 2.3261480, 48.8199467 2.3483675, 48.8233348 2.3532089, 48.8480339 2.3711696, 48.8515203 2.3696022, 48.8537094 2.3705397, 48.8537227 2.3702879, 48.8534314 2.3706101, 48.8502098 2.3923579, 48.8497025 2.3932209, 48.8494363 2.3945868, 48.8385781 2.3705346, 48.8392685 2.3708042, 48.8489499 2.3541277, 48.8221895 2.3632536, 48.8223064 2.3631664, 48.8222916 2.3627648, 48.8222392 2.3628073, 48.8223782 2.3631115, 48.8223716 2.3627130, 48.8230753 2.3626307, 48.8234533 2.3618634, 48.8229485 2.3577916, 48.8229254 2.3569509, 48.8211212 2.3425439, 48.8202708 2.3594105, 48.8202117 2.3594306, 48.8193606 2.3601238, 48.8506918 2.3841353, 48.8410733 2.2637691, 48.8409491 2.2637071, 48.8258771 2.3495257, 48.8258284 2.3486459, 48.8255453 2.3475405, 48.8264077 2.3428246, 48.8266961 2.3392484, 48.8268524 2.3383549, 48.8279313 2.3307106, 48.8277088 2.3287499, 48.8277300 2.3277843, 48.8463247 2.3542973, 48.8248691 2.3468871, 48.8250908 2.3464880, 48.8237982 2.3450583, 48.8230883 2.3447901, 48.8237048 2.3451996, 48.8219312 2.3422877, 48.8333333 2.3556520, 48.8226287 2.3606739, 48.8226746 2.3608366, 48.8226533 2.3607500, 48.8229131 2.3618148, 48.8231151 2.3621098, 48.8209801 2.3644246, 48.8243498 2.3621084, 48.8244278 2.3621405, 48.8244847 2.3621306, 48.8245544 2.3621635, 48.8239970 2.3618533, 48.8245778 2.3614015, 48.8250784 2.3610028, 48.8247279 2.3612848, 48.8249548 2.3611007, 48.8257664 2.3605166, 48.8257097 2.3600718, 48.8253582 2.3607812, 48.8254715 2.3606886, 48.8256982 2.3612634, 48.8255348 2.3609777, 48.8256127 2.3614328, 48.8254727 2.3611014, 48.8255281 2.3616006, 48.8254308 2.3611848, 48.8253116 2.3614221, 48.8249807 2.3620807, 48.8250256 2.3619913, 48.8213603 2.3347178, 48.8216005 2.3337522, 48.8233935 2.3258237, 48.8387916 2.3812873, 48.8328265 2.3361398, 48.8334329 2.3320275, 48.8367785 2.2975889, 48.8353295 2.3023316, 48.8355400 2.3018828, 48.8536438 2.3402017, 48.8526953 2.3470942, 48.8250589 2.3163847, 48.8256612 2.3136542, 48.8262642 2.3127271, 48.8263278 2.3124589, 48.8269282 2.3097177, 48.8533715 2.3422551, 48.8372157 2.2784595, 48.8373662 2.2784119, 48.8374744 2.2783898, 48.8377489 2.2783295, 48.8378835 2.2783147, 48.8409791 2.2776487, 48.8415966 2.2775907, 48.8417106 2.2775691, 48.8430969 2.2772758, 48.8264842 2.3599429, 48.8313589 2.2922508, 48.8312406 2.2923850, 48.8313819 2.2919236, 48.8318056 2.2909044, 48.8321693 2.2900809, 48.8333911 2.2872190, 48.8333311 2.2873692, 48.8334759 2.2870071, 48.8347594 2.2843303, 48.8344487 2.2844456, 48.8343110 2.2848131, 48.8350242 2.2828765, 48.8348954 2.2832036, 48.8309240 2.2930315, 48.8288796 2.2990421, 48.8435115 2.2940634, 48.8316365 2.2921115, 48.8337223 2.2896712, 48.8437437 2.2775524, 48.8426810 2.2779896, 48.8426051 2.2779253, 48.8418037 2.2778904, 48.8416325 2.2779601, 48.8521711 2.3714010, 48.8240750 2.3283368, 48.8235152 2.3304799, 48.8245642 2.3282644, 48.8250198 2.3200783, 48.8249015 2.3203760, 48.8372695 2.2771628, 48.8378574 2.2780721, 48.8377480 2.2779702, 48.8431163 2.2826694, 48.8423890 2.2820525, 48.8416776 2.2810225, 48.8490942 2.3396105, 48.8322843 2.3152081, 48.8563012 2.2797681, 48.8281212 2.3500641, 48.8278444 2.3497300, 48.8541163 2.3390471, 48.8426080 2.3301580, 48.8309399 2.3810186, 48.8339877 2.3859431, 48.8370765 2.3521704, 48.8515332 2.3460413, 48.8516027 2.3460829, 48.8280428 2.3570384, 48.8300151 2.3572624, 48.8300765 2.3566608, 48.8511846 2.3478208, 48.8329514 2.3692712, 48.8487835 2.2875266, 48.8402141 2.2853650, 48.8445983 2.3417212, 48.8354567 2.3766787, 48.8288129 2.3816584, 48.8306388 2.3813576, 48.8360293 2.3987610, 48.8352730 2.3987266, 48.8358656 2.3983311, 48.8329971 2.3865539, 48.8454138 2.3449157, 48.8419273 2.3255444, 48.8419458 2.3253394, 48.8420169 2.3254159, 48.8264604 2.3691548, 48.8327810 2.3359512, 48.8487274 2.3758510, 48.8292182 2.3745377, 48.8373155 2.3746781, 48.8563545 2.3025991, 48.8562747 2.3028390, 48.8557667 2.3453212, 48.8456597 2.3425776, 48.8465513 2.2796735, 48.8296037 2.3747044, 48.8286016 2.3219064, 48.8530641 2.3387326, 48.8554103 2.3643002, 48.8409358 2.3247136, 48.8542640 2.3651059, 48.8537965 2.3646707, 48.8563379 2.3653392, 48.8555655 2.3665858, 48.8549123 2.3654914, 48.8580971 2.3653667, 48.8470631 2.3700997, 48.8471459 2.3702456, 48.8474998 2.3708712, 48.8482512 2.3721967, 48.8471795 2.3719974, 48.8198771 2.3422222, 48.8469506 2.3967840, 48.8450981 2.4030570, 48.8445374 2.4047983, 48.8459401 2.3981714, 48.8469580 2.4075011, 48.8431170 2.4096136, 48.8181346 2.3609207, 48.8193633 2.3602971, 48.8193706 2.3607627, 48.8472632 2.3686633, 48.8539102 2.3699317, 48.8470293 2.3690164, 48.8462686 2.3631462, 48.8584285 2.3451526, 48.8466386 2.3740238, 48.8515572 2.3384274, 48.8516756 2.3382308, 48.8467985 2.3747872, 48.8438542 2.3424632, 48.8523071 2.3446538, 48.8523579 2.3447087, 48.8222822 2.3596195, 48.8510597 2.3686542, 48.8454616 2.2846288, 48.8464151 2.2854902, 48.8576256 2.3683245, 48.8573074 2.3684033, 48.8566728 2.3031742, 48.8327372 2.3358964, 48.8326973 2.3358705, 48.8471599 2.2855769, 48.8459727 2.2850778, 48.8425193 2.3260648, 48.8394722 2.3232687, 48.8395348 2.3235658, 48.8390409 2.3209288, 48.8389034 2.3510109, 48.8444716 2.3118167, 48.8493078 2.3774714, 48.8520540 2.3392420, 48.8509886 2.3003532, 48.8381318 2.3517955, 48.8387946 2.3486773, 48.8318806 2.3042643, 48.8329686 2.3010817, 48.8319851 2.3034469, 48.8436104 2.2938618, 48.8374438 2.3009990, 48.8428377 2.2917440, 48.8367552 2.2993610, 48.8368605 2.3030920, 48.8386895 2.3004673, 48.8392782 2.3008123, 48.8431037 2.2954369, 48.8436199 2.2939852, 48.8369700 2.2985824, 48.8317774 2.3387153, 48.8528114 2.3539541, 48.8437191 2.2967019, 48.8208030 2.3633818, 48.8274435 2.3705955, 48.8205400 2.3633918, 48.8205631 2.3634931, 48.8545629 2.3851571, 48.8498132 2.3518796, 48.8490910 2.2871941, 48.8515765 2.3436771, 48.8521735 2.3442731, 48.8520404 2.3443625, 48.8515776 2.3438599, 48.8520835 2.3444093, 48.8518887 2.3442140, 48.8524757 2.3445678, 48.8529435 2.3456985, 48.8528864 2.3462159, 48.8535544 2.2900587, 48.8533015 2.2903128, 48.8529010 2.3458674, 48.8530967 2.3453771, 48.8528548 2.3460331, 48.8530912 2.3454025, 48.8529158 2.3458178, 48.8528801 2.3459362, 48.8530593 2.3452208, 48.8531271 2.3452514, 48.8530349 2.3453279, 48.8528985 2.3461598, 48.8531949 2.3450333, 48.8531460 2.3451752, 48.8528383 2.3461107, 48.8529227 2.3457849, 48.8531071 2.3449244, 48.8530259 2.3454331, 48.8531325 2.3389945, 48.8528398 2.3392414, 48.8534928 2.3391049, 48.8497401 2.3508144, 48.8494708 2.3495778, 48.8533652 2.2880737, 48.8491265 2.3038627, 48.8506165 2.3004771, 48.8290807 2.3169825, 48.8519408 2.2889178, 48.8531583 2.2878252, 48.8527669 2.3446610, 48.8521288 2.3444359, 48.8528975 2.3446411, 48.8527110 2.3446730, 48.8528195 2.3446512, 48.8529973 2.3446935, 48.8526334 2.3445601, 48.8243545 2.3680684, 48.8501590 2.2937116, 48.8501219 2.2938863, 48.8540526 2.3381367, 48.8527451 2.2909129, 48.8482224 2.2951925, 48.8501040 2.2917529, 48.8478257 2.2897580, 48.8477463 2.2896869, 48.8459218 2.2883699, 48.8453388 2.2878488, 48.8350277 2.3205989, 48.8528174 2.3454656, 48.8524768 2.3451560, 48.8528047 2.3455506, 48.8524991 2.3448569, 48.8523811 2.3455175, 48.8523985 2.3454156, 48.8526936 2.3454400, 48.8518297 2.3444041, 48.8524942 2.3450079, 48.8525154 2.3452198, 48.8525300 2.3444340, 48.8524984 2.3449165, 48.8523948 2.3451403, 48.8526323 2.3452414, 48.8525589 2.3451535, 48.8523556 2.3455883, 48.8527431 2.3454930, 48.8525232 2.3451020, 48.8526255 2.3453560, 48.8524246 2.3449029, 48.8526532 2.3453925, 48.8527658 2.3454086, 48.8524155 2.3453426, 48.8527323 2.3453722, 48.8564012 2.2779632, 48.8330093 2.3868281, 48.8437820 2.3881621, 48.8485041 2.3805544, 48.8222398 2.3591920, 48.8444922 2.3906935, 48.8274032 2.3423677, 48.8254379 2.3417367, 48.8322518 2.3505076, 48.8274091 2.3702950, 48.8339084 2.3226213, 48.8394410 2.3322130, 48.8302211 2.3529383, 48.8490077 2.3495940, 48.8461806 2.3049798, 48.8454569 2.3021602, 48.8461901 2.3512999, 48.8479950 2.3233385, 48.8434408 2.2933619, 48.8534312 2.3389430, 48.8581170 2.3176186, 48.8316555 2.2928196, 48.8235887 2.3709824, 48.8366915 2.3872945, 48.8347265 2.3446963, 48.8378379 2.3473550, 48.8484552 2.3315803, 48.8502142 2.3307201, 48.8484725 2.2893525, 48.8455223 2.3425685, 48.8536307 2.3312600, 48.8471339 2.3781711, 48.8433447 2.3026630, 48.8309698 2.3120278, 48.8321210 2.3246559, 48.8337101 2.3186360, 48.8532271 2.3906633, 48.8319258 2.3247528, 48.8346470 2.3196240, 48.8532124 2.3749112, 48.8587506 2.3498885, 48.8585618 2.3501138, 48.8584400 2.3500508, 48.8582309 2.3499153, 48.8586577 2.3512239, 48.8585324 2.3516236, 48.8584636 2.3518059, 48.8295801 2.3570095, 48.8555154 2.3007432, 48.8310133 2.3479849, 48.8362085 2.3507215, 48.8457271 2.2773879, 48.8277176 2.3503583, 48.8303310 2.3543233, 48.8304313 2.3542566, 48.8301931 2.3538796, 48.8550776 2.3606106, 48.8538565 2.3611419, 48.8539037 2.3621825, 48.8493157 2.3784984, 48.8312746 2.3688607, 48.8295989 2.3477981, 48.8358990 2.3466845, 48.8546823 2.3502166, 48.8334394 2.3321755, 48.8484830 2.3465489, 48.8280833 2.3518785, 48.8345869 2.4046238, 48.8489944 2.3476761, 48.8558979 2.3067417, 48.8498557 2.3451858, 48.8339315 2.3535154, 48.8343358 2.3532328, 48.8334871 2.3538301, 48.8343901 2.3531943, 48.8538689 2.3274803, 48.8335872 2.2986473, 48.8281734 2.3581151, 48.8281213 2.3581379, 48.8282088 2.3580869, 48.8298944 2.3567517, 48.8279789 2.3582481, 48.8514668 2.3336573, 48.8306371 2.3542033, 48.8301553 2.3526298, 48.8304963 2.3537726, 48.8488823 2.3702261, 48.8468258 2.4090233, 48.8458824 2.3754339, 48.8538600 2.3320680, 48.8423637 2.3259492, 48.8396674 2.3497245, 48.8416725 2.3497548, 48.8417916 2.3497766, 48.8418859 2.3497875, 48.8419165 2.3497914, 48.8418378 2.3496214, 48.8420720 2.3498351, 48.8421234 2.3498351, 48.8424383 2.3496720, 48.8426011 2.3496377, 48.8427514 2.3496041, 48.8429466 2.3495606, 48.8440708 2.3494232, 48.8445679 2.3496772, 48.8445191 2.3496762, 48.8267542 2.3240551, 48.8383528 2.3897390, 48.8571765 2.3589357, 48.8347921 2.2897514, 48.8351951 2.2896751, 48.8517041 2.3505648, 48.8408366 2.3037928, 48.8323064 2.3247729, 48.8574751 2.3504537, 48.8265827 2.3745998, 48.8375062 2.4444441, 48.8454864 2.3196693, 48.8522732 2.3263458, 48.8520072 2.3255283, 48.8251232 2.3579151, 48.8473882 2.3059953, 48.8338061 2.3177640, 48.8412345 2.3039106, 48.8447679 2.3497792, 48.8550250 2.3290640, 48.8311018 2.3750269, 48.8303119 2.3757398, 48.8306923 2.3753998, 48.8310217 2.3759342, 48.8471340 2.3864431, 48.8467506 2.3832061, 48.8329435 2.4149758, 48.8323315 2.4178175, 48.8312932 2.3735896, 48.8311417 2.3739163, 48.8549171 2.3551866, 48.8383546 2.3930656, 48.8394477 2.3924756, 48.8394195 2.3921135, 48.8531969 2.3783676, 48.8501139 2.3385275, 48.8335611 2.3308711, 48.8478589 2.3407967, 48.8421984 2.3516249, 48.8336470 2.3315763, 48.8335273 2.3314999, 48.8362062 2.3237133, 48.8349296 2.3296602, 48.8484295 2.3424166, 48.8526874 2.3539909, 48.8446809 2.3466783, 48.8336698 2.3296041, 48.8337502 2.3300015, 48.8481127 2.3756890, 48.8492365 2.3739525, 48.8495930 2.3774565, 48.8495553 2.3786800, 48.8500160 2.3788251, 48.8496527 2.3779307, 48.8465400 2.3811858, 48.8503285 2.3781973, 48.8481611 2.3766463, 48.8460012 2.3764202, 48.8553144 2.3878881, 48.8434604 2.4022375, 48.8496167 2.3700570, 48.8481689 2.3925595, 48.8469569 2.3847760, 48.8464179 2.3800872, 48.8359839 2.2844143, 48.8300301 2.3296176, 48.8337668 2.3278330, 48.8354148 2.3235123, 48.8490915 2.3487987, 48.8529290 2.3314950, 48.8498887 2.3433647, 48.8519361 2.2987977, 48.8567608 2.3945887, 48.8372979 2.3511170, 48.8516564 2.3473784, 48.8335564 2.3869198, 48.8334907 2.3868335, 48.8337569 2.3871813, 48.8329726 2.3861326, 48.8338510 2.3872594, 48.8206809 2.3635646, 48.8207494 2.3637471, 48.8203146 2.3640270, 48.8552012 2.3739399, 48.8546611 2.3726793, 48.8407193 2.3049672, 48.8418070 2.3034131, 48.8546868 2.2950925, 48.8545526 2.2952974, 48.8409660 2.3058020, 48.8445280 2.3226454, 48.8445064 2.3227126, 48.8445876 2.3224605, 48.8443285 2.3232584, 48.8446976 2.3221192, 48.8446671 2.3222139, 48.8588292 2.3233490, 48.8431753 2.3523678, 48.8431753 2.3523678, 48.8466756 2.3050730, 48.8466342 2.3052128, 48.8337390 2.3618054, 48.8343386 2.3607778, 48.8481870 2.3541570, 48.8485630 2.3547360, 48.8486600 2.3548950, 48.8488030 2.3550960, 48.8585600 2.3535180, 48.8359828 2.3592084, 48.8582564 2.3530692, 48.8579136 2.3528123, 48.8506291 2.3395396, 48.8527723 2.3849647, 48.8528254 2.3852671, 48.8439032 2.3546898, 48.8537312 2.3325450, 48.8470633 2.3037370, 48.8450557 2.3057641, 48.8473348 2.3028088, 48.8495520 2.3551790, 48.8495960 2.3546780, 48.8493090 2.3539520, 48.8470580 2.3520490, 48.8468240 2.3516360, 48.8209363 2.3710302, 48.8400915 2.3026528, 48.8473631 2.2860341, 48.8583141 2.3549137, 48.8579708 2.3528081, 48.8353583 2.4058762, 48.8322089 2.3384309, 48.8409004 2.3218248, 48.8460163 2.3825296, 48.8300151 2.3572215, 48.8325523 2.3205074, 48.8327672 2.3201392, 48.8311012 2.3195882, 48.8545486 2.3843630, 48.8320470 2.3201850, 48.8361138 2.2912062, 48.8372803 2.2893133, 48.8502351 2.3456241, 48.8527246 2.3060632, 48.8426923 2.3634778, 48.8310513 2.3195553, 48.8325941 2.3183175, 48.8543921 2.3426853, 48.8541359 2.3719456, 48.8542108 2.3674171, 48.8544297 2.3673782, 48.8555777 2.3673888, 48.8558432 2.3674030, 48.8416174 2.3913852, 48.8582325 2.3718450, 48.8324657 2.3375075, 48.8439086 2.2933248, 48.8522615 2.3461534, 48.8522996 2.3459479, 48.8567447 2.3780076, 48.8569233 2.3783614, 48.8559378 2.3789593, 48.8572892 2.3686817, 48.8584433 2.3828023, 48.8580910 2.3814281, 48.8586116 2.3834178, 48.8541661 2.3685390, 48.8557389 2.3682126, 48.8565384 2.3685512, 48.8584554 2.3675609, 48.8389090 2.3816630, 48.8357533 2.3521704, 48.8328552 2.3251354, 48.8577162 2.3793963, 48.8413733 2.3746037, 48.8581328 2.2944968, 48.8556111 2.3402066, 48.8556266 2.3621786, 48.8556266 2.3621786, 48.8556266 2.3621786, 48.8477523 2.3131717, 48.8476019 2.3124307, 48.8442862 2.3237918, 48.8443083 2.3239728, 48.8488626 2.3712412, 48.8571998 2.3686785, 48.8467371 2.3102329, 48.8547937 2.3759343, 48.8537976 2.3699213, 48.8537389 2.3700602, 48.8471804 2.3954861, 48.8435005 2.2942188, 48.8436406 2.2945169, 48.8436647 2.2952514, 48.8436712 2.2953928, 48.8517000 2.3431200, 48.8425000 2.3216700, 48.8369503 2.2962225, 48.8414376 2.3081178, 48.8422788 2.3101359, 48.8425076 2.3118940, 48.8365104 2.3100891, 48.8341782 2.3066372, 48.8354947 2.3020460, 48.8490626 2.3191414, 48.8501266 2.3186024, 48.8501791 2.3187017, 48.8547424 2.3544531, 48.8549834 2.3538154, 48.8547359 2.3551293, 48.8570133 2.3782712, 48.8566264 2.3772226, 48.8563976 2.3765843, 48.8560776 2.3757039, 48.8558521 2.3750899, 48.8534957 2.3378664, 48.8465511 2.3138238, 48.8321324 2.3033719, 48.8378987 2.3453148, 48.8440980 2.3080783, 48.8587772 2.3712220, 48.8578407 2.3769477, 48.8580013 2.3652526, 48.8584347 2.3637448, 48.8586082 2.3675198, 48.8578247 2.3662529, 48.8578018 2.3672245, 48.8575285 2.3645936, 48.8567071 2.3672138, 48.8581319 2.3686779, 48.8580112 2.3685170, 48.8535896 2.3766260, 48.8548638 2.3756068, 48.8440870 2.4099235, 48.8279596 2.3690455, 48.8279577 2.3690363, 48.8468373 2.3601741, 48.8483086 2.2872193, 48.8487087 2.3407361, 48.8527859 2.3429879, 48.8462135 2.3676679, 48.8477461 2.3511419, 48.8527860 2.3433192, 48.8416188 2.2808890, 48.8529099 2.2868719, 48.8566620 2.3563500, 48.8554458 2.3617217, 48.8408224 2.3556248, 48.8388681 2.3562783, 48.8540956 2.3386733, 48.8384220 2.4593519, 48.8305866 2.4133509, 48.8201104 2.4442417, 48.8573667 2.3785302, 48.8532758 2.3834775, 48.8582151 2.3817585, 48.8464207 2.3056421, 48.8408375 2.3874300, 48.8330343 2.3541878, 48.8280243 2.3513291, 48.8303084 2.3537927, 48.8302539 2.3536052, 48.8255087 2.3537284, 48.8289425 2.3568654, 48.8294977 2.3226115, 48.8315293 2.3138951, 48.8222354 2.3405407, 48.8430967 2.3047973, 48.8417016 2.3220312, 48.8451240 2.3151945, 48.8422835 2.3705897, 48.8279032 2.3155377, 48.8527947 2.3434202, 48.8367701 2.3930789, 48.8311227 2.3287719, 48.8376458 2.3597357, 48.8377834 2.3597919, 48.8380568 2.3599624, 48.8527093 2.3602879, 48.8534305 2.3611806, 48.8419025 2.3689354, 48.8421950 2.3453702, 48.8584113 2.2942650, 48.8565883 2.3770985 +55.9378000 -3.1771354, 55.9539470 -3.1868320, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9543521 -3.1879033, 55.9285894 -3.1685115, 55.9821414 -3.4001668 +2 +32 +12 +33 +4, 10, 32, 88, 72, 96, 20, 16, 6, 70, 62, 48, 42, 24, 2, 8, 14, 44, 46, 2, 12, 2, 2, 38, 182, 22, 2, 14, 2, 2, 24, 54, 32, 42, 32, 64, 56, 40, 40, 8, 106, 30, 40, 48, 8, 84, 16, 56, 24, 50, 10, 32, 12, 16, 30, 64, 28, 10, 24, 26, 44, 100, 96, 10, 28, 10, 24, 7, 17, 6, 10, 104, 8, 20, 42, 30, 121, 12, 11, 23, 42, 7, 15, 10, 12, 92, 13, 43, 22, 24, 10, 8, 6, 15, 22, 14, 7, 30, 7, 10, 10, 6, 10, 18, 6, 6, 6, 6, 16, 30, 8, 60, 16, 60, 4, 44, 80, 16, 16, 14, 16, 23, 20, 20, 66, 47, 10, 9, 5, 21, 39, 64, 24, 16, 12, 24, 24, 10, 16, 16, 28, 15, 16, 10, 12, 6, 6, 5, 18, 13, 18, 18, 36, 32, 30, 24, 20, 42, 24, 16, 30, 10, 6, 40, 13, 16, 43, 20, 8, 6, 25, 96, 20, 30, 6, 14, 10, 10, 10, 150, 72, 120, 48, 60, 250, 30, 100, 24, 20, 22, 16, 520, 12, 20, 26 +49 +2.0652769148611698 +1 +48.8323660 2.2749612 +Rue Marie et Louise +32 +yes +49.4018281 8.6889374, 49.4018800 8.6877769, 49.4135514 8.6842391, 49.4146501 8.6879184, 49.4168731 8.6919549, 49.4171484 8.6930088, 49.4208847 8.6912002, 49.4123719 8.7105227, 49.4121119 8.7079345, 49.4133176 8.6889779, 49.4133176 8.6889788, 49.4133176 8.6889785, 49.4133177 8.6889782, 49.4133176 8.6889782, 49.4133174 8.6889784, 49.4133177 8.6889788, 49.4208843 8.6912004, 49.4208840 8.6912006, 49.4168738 8.6919549, 49.4168732 8.6919560, 49.4208839 8.6912002, 49.4171481 8.6930091, 49.4168744 8.6919560, 49.4168739 8.6919560, 49.4208843 8.6911999, 49.4208846 8.6911997, 49.4168740 8.6919569, 49.4018302 8.6889341, 49.4013098 8.6912411, 49.4013099 8.6912408, 49.4018301 8.6889373, 49.4018280 8.6889343, 49.4123720 8.7105234, 49.4115404 8.7048862, 49.4146502 8.6879184, 49.4115403 8.7048862, 49.4034414 8.6858831, 49.4033425 8.6920344, 49.4034077 8.6864942, 49.4059416 8.6926646, 49.4053236 8.6938605, 49.4059413 8.6926655, 49.4059418 8.6926647, 49.4033423 8.6920342, 49.4034078 8.6864940, 49.4034077 8.6864940, 49.4059416 8.6926652, 49.4034078 8.6864942, 49.4059414 8.6926650, 49.4033423 8.6920344, 49.4196480 8.6881884, 49.4158083 8.7151936, 49.4087123 8.7054683, 49.4076130 8.7082748, 49.3832632 8.6902896, 49.4076136 8.7082749, 49.4087126 8.7054655, 49.4076135 8.7082758, 49.3832635 8.6902896, 49.4076129 8.7082756 +39 +yes +19 +48.8503975 2.3429508, 48.8542243 2.3500208, 48.8240998 2.3638457, 48.8214836 2.3639524, 48.8516699 2.3435357, 48.8530171 2.3437086, 48.8557761 2.3581437 +55.9458479 -3.1861307, 55.9526370 -3.1734364, 55.9526834 -3.1734548 +yes +0 +Ibis +1, 1, 1, 1, 1, 1, 1, 1, 1, 1 +49.4091649 8.6726851, 49.4079210 8.6866720, 49.4117371 8.7091875, 49.4073921 8.6825502, 49.4095865 8.7066610, 49.4115410 8.7046342, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4066053 8.6919726 +16, 10, 8, 20, 20, 16, 22, 28, 10, 40, 16, 20, 42, 14, 8, 8, 20, 8, 8, 16, 16, 12, 12, 8, 10, 10, 20, 8, 10, 10, 10, 20, 20, 38, 28, 10, 18, 20, 20, 10, 24, 18, 8, 10, 6, 10, 34, 6, 8, 12, 12, 12, 20, 6, 10, 20, 12, 20, 24, 10, 8, 4, 12, 30, 12, 10, 16, 10, 8, 8, 18, 10, 10, 12, 16, 12, 10, 32, 26, 24, 16, 6, 26, 10, 22, 12, 36, 16, 28, 20, 16, 12, 28, 16, 18, 8, 8, 10, 26, 18, 24, 16, 4, 12, 12, 4, 2, 2, 8, 8, 8, 6, 20, 4, 16, 12, 8, 2, 28, 18, 20, 14, 26, 12, 4, 6, 6, 4, 4, 10, 12, 6, 14, 6, 20, 10, 12, 8, 14, 10, 12, 10, 8, 18, 26, 20, 12, 16, 14, 10, 8, 8, 12, 56, 10, 8, 28, 10, 8, 6, 8, 22, 14, 14, 10, 18, 10, 8, 16, 8, 10, 8, 14, 4, 8, 10, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 10, 10, 8, 10, 18, 8, 40, 30, 18, 20, 20, 20, 4, 4, 12, 4, 10, 6, 4, 4, 4, 2, 22, 4, 4, 6, 4, 10, 4, 4, 6, 16, 16, 6, 4, 4, 4, 6, 4, 4, 4, 4, 2, 4, 4, 4, 10, 4, 4, 10, 30, 10, 12, 10, 8, 8, 8, 9, 24, 26, 16, 16, 10, 10, 20, 16, 10, 10, 6, 8, 10, 8, 12, 20, 36, 8, 10, 26, 14, 12, 8, 8, 8, 10, 6, 20, 30, 16, 14, 10, 16, 14, 8, 6, 8, 6, 10, 10, 16, 10, 10, 10, 12, 14, 6, 8, 10, 34, 8, 8, 12, 10, 8, 10, 8, 10, 16, 18, 32, 30, 18, 20, 20, 54, 12, 10, 8, 8, 8, 26, 8, 10, 10, 10, 6, 14, 12, 6, 8, 12, 20, 10, 12, 10, 20, 8, 12, 8, 22, 10, 8, 4, 16, 8, 10, 6, 6, 12, 6, 6, 16, 24, 10, 8, 20, 20, 20, 12, 18, 10, 10, 8, 68, 18, 6, 6, 8, 8, 10, 34, 14, 10, 6, 10, 10, 20, 4, 8, 4, 8, 8, 12, 8, 6, 6, 6, 8, 12, 12, 6, 14, 8, 18, 10, 20, 14, 22, 22, 22, 16, 10, 20, 12, 12, 10, 18, 6, 14, 20, 8, 18, 10, 10, 12, 12, 20, 20, 4, 12, 20, 18, 16, 6, 20, 30, 12, 8, 12, 10, 10, 14, 4, 12, 16, 8, 10, 4, 2, 12, 22, 10, 12, 22, 8, 6, 8, 18, 26, 14, 16, 16, 12, 14, 20, 10, 20, 14, 20, 16, 32, 18, 26, 10, 8, 20, 18, 8, 18, 10, 6, 6, 6, 16, 12, 10, 14, 16, 16, 22, 16, 8, 18, 10, 4, 6, 12, 28, 20, 18, 22, 10, 8, 8, 10, 8, 12, 12, 16, 16, 22, 30, 12, 14, 12, 8, 8, 6, 20, 24, 10, 10, 10, 20, 12, 8, 8, 8, 8, 10, 6, 10, 10, 10, 10, 12, 10, 10, 20, 10, 12, 16, 14, 12, 24, 8, 8, 10, 12, 36, 6, 10, 20, 24, 12, 12, 30, 20, 10, 10, 4, 10, 6, 10, 20, 10, 4, 12, 10, 10, 28, 10, 28, 18, 6, 14, 8, 10, 16, 26, 10, 8, 8, 10, 6, 10, 10, 8, 10, 8, 6, 10, 10, 16, 10, 6, 18, 10, 18, 12, 12, 14, 12, 20, 8, 4, 6, 22, 4, 12, 8, 24, 12, 4, 20, 14, 20, 10, 40, 14, 4, 6, 6, 6, 4, 6, 10, 44, 12, 14, 24, 22, 8, 8, 12, 26, 26, 16, 6, 6, 10, 6, 10, 14, 16, 28, 32, 10, 14, 14, 14, 14, 22, 14, 10, 8, 16, 20, 12, 10, 36, 10, 12, 22, 6, 12, 12, 12, 22, 2, 8, 6, 12, 6, 26, 18, 10, 8, 8, 12, 30, 12, 6, 12, 10, 12, 6, 16, 6, 6, 14, 15, 4, 16, 8, 10, 12, 10, 10, 20, 8, 18, 16, 22, 10, 6, 6, 6, 6, 12, 10, 8, 14, 8, 8, 14, 12, 10, 12, 20, 20, 24, 8, 10, 12, 8, 30, 16, 8, 24, 20, 16, 8, 8, 8, 10, 14, 8, 18, 18, 6, 8, 24, 10, 8, 8, 20, 20, 36, 20, 8, 12, 10, 4, 14, 18, 10, 10, 8, 10, 12, 16, 12, 8, 8, 8, 12, 8, 8, 38, 12, 18, 12, 20, 12, 10, 10, 24, 10, 10, 10, 12, 8, 8, 6, 8, 6, 12, 8, 10, 24, 8, 8, 6, 14, 8, 12, 8, 8, 14, 12, 14, 4, 14, 20, 8, 36, 10, 10, 14, 12, 24, 10, 20, 18, 30, 8, 8, 14, 8, 8, 10, 20, 10, 30, 12, 10, 14, 14, 16, 12, 12, 10, 14, 22, 40, 32, 12, 16, 10, 8, 8, 14, 8, 28, 4, 6, 8, 12, 4, 22, 12, 4, 8, 8, 10, 20, 10, 40, 20, 12, 8, 30, 24, 8, 10, 10, 32, 16, 14, 10, 16, 18, 12, 12, 24, 16, 12, 12, 12, 22, 8, 12, 28, 4, 12, 22, 6, 10, 20, 24, 14, 10, 34, 12, 16, 10, 10, 10, 12, 14, 18, 14, 10, 24, 10, 24, 14, 8, 14, 6, 14, 14, 10, 12, 6, 14, 18, 24, 20, 12, 14, 10, 14, 28, 6, 8, 8, 14, 8, 12, 12, 12, 8, 6, 10, 6, 18, 30, 20, 10, 10, 8, 8, 24, 12, 10, 8, 10, 4, 6, 12, 6, 8, 8, 10, 24, 10, 6, 20, 8, 8, 10, 8, 12, 20, 8, 20, 12, 20, 14, 28, 8, 8, 16, 8, 24, 8, 18, 26, 14, 8, 10, 8, 8, 8, 6, 12, 6, 12, 16, 8, 26, 10, 10, 10, 12, 16, 10, 12, 14, 20, 14, 8, 8, 10, 10, 10, 10, 10, 22, 16, 10, 14, 16, 60, 14, 20, 20, 22, 30, 22, 4, 8, 6, 8, 24, 12, 6, 12, 6, 8, 46, 22, 4, 14, 8, 6, 10, 6, 16, 8, 14, 40, 8, 8, 20, 24, 12, 30, 14, 8, 10, 14, 8, 10, 20, 14, 14, 18, 12, 14, 16, 12, 12, 20, 16, 8, 14, 16, 10, 8, 10, 10, 16, 8, 8, 18, 18, 10, 26, 14, 12, 8, 18, 20, 8, 12, 10, 20, 18, 8, 14, 8, 8, 22, 16, 34, 6, 6, 72, 18, 4, 8, 6, 6, 6, 6, 12, 10, 12, 16, 8, 10, 18, 24, 8, 20, 14, 14, 64, 16, 8, 20, 12, 6, 14, 8, 6, 10, 8, 34, 48, 16, 14, 6, 12, 10, 10, 32, 14, 10, 12, 6, 8, 8, 8, 6, 8, 8, 8, 10, 8, 8, 6, 8, 24, 42, 20, 18, 16, 16, 22, 20, 18, 26, 14, 36, 14, 12, 10, 10, 12, 10, 10, 10, 6, 8, 4, 26, 8, 16, 20, 24, 10, 10, 10, 10, 18, 62, 8, 10, 16, 16, 16, 50, 22, 16, 10, 10, 10, 12, 8, 30, 10, 14, 12, 8, 10, 10, 15, 14, 10, 26, 20, 30, 22, 8, 10, 16, 16, 16, 14, 24, 8, 18, 20, 18, 10, 4, 12, 8, 12, 12, 14, 12, 32, 32, 8, 8, 6, 13, 10, 16, 30, 20, 12, 12, 8, 16, 30, 10, 16, 8, 12, 8, 10, 44, 8, 8, 24, 16, 18, 10, 10, 16, 8, 8, 10, 16, 16, 14, 26, 12, 10, 8, 14, 20, 8, 8, 10, 8, 10, 8, 10, 8, 16, 10, 14, 20, 14, 8, 8, 8, 12, 6, 8, 12, 14, 12, 14, 16, 14, 14, 20, 8, 20, 20, 18, 26, 10, 8, 8, 8, 16, 10, 14, 16, 4, 4, 18, 24, 10, 12, 24, 42, 10, 12, 24, 12, 10, 36, 8, 20, 14, 20, 54, 70 +yes +2175 and 47.8931595 7.9220044, 47.6706257 9.6099451, 48.8409034 9.1608485, 49.5114392 8.6601812, 48.6525503 9.3971910, 49.7635857 9.6215330, 49.7711879 9.5730596, 49.7592849 9.5493504, 48.8085947 9.1086907, 48.8084453 9.1083882, 48.7672340 9.1634636, 48.7646487 9.1455060, 48.8517845 9.1905506, 47.7572746 9.4550989, 48.8048250 9.1776074, 48.7975239 9.1823227, 48.7764455 9.2484665, 49.7438132 9.5591926, 48.5441691 10.0649595, 48.5481307 10.0299806, 48.0859164 8.6731360, 48.0941243 8.6558902, 48.1009818 8.7502162, 48.3855242 8.4343050, 48.4254364 8.9771979, 48.7896840 9.2403361, 48.7898028 9.2401816, 48.7987295 9.2671029, 48.7877576 9.2251651, 48.7720412 9.1018571, 48.7714189 9.1039857, 48.7548168 9.1609347, 48.7393742 9.1043352, 48.7331011 9.0916034, 48.7294036 9.0792362, 48.7127340 9.0963494, 48.7061888 9.1632435, 48.6921724 9.3046368, 48.6844604 9.3243976, 48.6197323 9.4551205, 48.4917874 9.4829183, 48.4313237 9.4652398, 48.4024099 9.4114303, 48.4766686 9.8814611, 48.2380029 8.1766286, 48.7850407 9.1860670, 48.8431211 9.6562274, 48.6307794 9.4154575, 48.0319228 8.4105207, 48.0468749 8.4196097, 47.8638812 9.1743006, 48.4226168 8.9110413, 48.7841199 9.0904498, 48.0698826 8.3504215, 48.8047324 9.1919671, 49.3929098 8.7766872, 48.7219890 9.0756901, 48.7093678 9.1402100, 48.7063494 9.1632880, 48.6935525 9.2233254, 48.6938888 9.2230679, 48.6956216 9.2628339, 48.6944266 9.2857314, 48.6948056 9.2857019, 48.6586541 9.3789196, 48.6529244 9.3974295, 48.6306373 9.4582064, 48.6310225 9.4580187, 48.6296852 9.4774326, 48.6300159 9.4774419, 48.6288271 9.4974811, 48.6286715 9.5206816, 48.6316019 9.5381045, 48.6319392 9.5378497, 48.6333417 9.5538473, 48.6185241 9.5910600, 48.5837682 9.6626361, 48.5774390 9.6630037, 48.5654624 9.6356449, 48.5467301 9.6424113, 48.5336488 9.6575403, 48.5324382 9.6697929, 48.5275597 9.7174851, 48.5185011 9.7592517, 48.5182325 9.7572384, 48.5181465 9.7821863, 48.5183786 9.7822118, 48.5174461 9.8169719, 48.5108829 9.8343256, 48.5110458 9.8346520, 48.4773580 9.8789721, 48.4719735 9.8971941, 48.6614547 8.9975223, 48.4654321 9.9177765, 48.4568656 9.9471097, 48.4566115 9.9731268, 48.4575723 9.9853023, 48.4575380 10.0128756, 48.4578922 10.0113024, 48.4566193 10.0241328, 48.1830256 9.7816113, 48.4569309 10.0238267, 48.4568614 9.9728885, 48.4571568 9.9473354, 48.4775320 9.8792836, 48.5176649 9.8171648, 48.5199916 9.8076880, 48.5228113 9.7372686, 48.5275062 9.7199164, 48.5311230 9.6960245, 48.5333133 9.6642932, 48.5466820 9.6483292, 48.5636428 9.6740108, 48.5770570 9.6749696, 48.5840802 9.6628951, 48.6143628 9.6120035, 48.6186112 9.5926055, 48.6336256 9.5515051, 48.6287221 9.5185340, 48.6291371 9.4980277, 48.6402661 9.4329496, 48.6532481 9.3976460, 48.6589208 9.3792326, 48.6665530 9.3662042, 48.6754390 9.3458767, 48.6846579 9.3248490, 48.6925264 9.3047185, 48.6957928 9.2643366, 48.7024660 9.1783020, 48.7068672 9.1631451, 48.7069591 9.1634389, 48.7099095 9.1403554, 48.8871970 9.0451463, 48.8776217 9.0839978, 48.1612777 9.7900051, 48.6283215 9.5740630, 48.9168298 8.9430269, 48.4120306 8.4067443, 48.7156317 8.2268140, 48.0783822 8.4461271, 48.9607189 9.2194538, 48.9606145 9.2187767, 49.1769947 9.9318229, 48.7783246 9.5110956, 48.4587660 9.9811761, 48.6623908 9.2255884, 48.6218504 9.2494700, 48.5949915 9.2530806, 48.8361387 8.5909962, 47.8659661 7.7484426, 48.6208580 9.4555416, 49.4738271 9.7966510, 48.8164045 8.5799195, 48.6355511 9.2927221, 48.9546798 9.2502443, 48.7913607 8.1911997, 48.7290336 8.1554927, 48.6648842 9.2107380, 48.5758515 9.2289882, 48.6997566 9.4094867, 48.6938675 9.1999755, 48.5478154 9.2643058, 48.5806508 9.1736055, 48.5586863 9.1737419, 48.5435954 9.1493859, 49.5618613 9.6229111, 49.5614784 9.6227222, 49.5585167 9.6153308, 49.5404830 9.5884578, 49.5323399 9.5784239, 49.5323111 9.5778313, 49.5372729 9.5834493, 49.4242922 9.4869280, 49.4246245 9.4865582, 48.9800359 9.2295550, 48.9690446 9.2262070, 48.5415003 8.8029163, 48.7522067 8.2485351, 48.7535173 8.2447141, 48.7677441 8.2305067, 48.5339160 9.2339354, 49.0641753 9.8706185, 48.6971369 9.2439721, 48.6975218 9.2437986, 48.6751085 9.3456470, 48.6934507 9.2025498, 48.6930968 9.2025100, 48.6765698 9.3688639, 48.6763806 9.3691866, 48.7024629 9.4396321, 48.7038033 9.4501905, 48.7071589 9.4739798, 48.7068984 9.4739726, 48.7160960 9.5495317, 48.7030443 9.6013973, 48.7114471 9.5003428, 48.4005596 9.3164813, 48.4013004 9.3400954, 48.8219767 8.8342570, 49.0835719 9.8669593, 48.6119127 8.8048547, 48.8379781 8.6962629, 48.8664890 8.6819781, 49.0280176 9.8739938, 48.6160097 9.2200212, 48.6157890 9.2201356, 48.5787567 9.1741510, 48.5587099 9.1732797, 48.5341206 9.1897357, 49.0518476 9.8853764, 49.4534124 8.7619617, 49.0104277 8.4145748, 49.0683492 9.8995733, 48.4284117 8.6254017, 48.3301529 8.3967477, 48.9446845 8.4982423, 48.9420376 8.5063840, 48.9416725 8.5063002, 48.9248065 8.5977004, 48.9127357 8.6194374, 48.9086000 8.6501571, 48.8953199 8.7844283, 48.8803882 8.7880004, 48.8650961 9.2405642, 48.7089158 9.1148538, 48.8282641 8.8712993, 48.7644963 9.0315801, 48.8459831 8.4682949, 49.0294081 9.8404404, 48.5135967 9.7471919, 48.8381885 8.7479090, 48.7472998 9.0342151, 48.7421470 9.0351020, 48.7334551 9.0451019, 48.7290626 9.0800494, 48.6983948 9.6468413, 48.6992687 9.6445523, 48.6507051 8.2149644, 48.9704136 9.8727094, 48.6482872 9.4175625, 48.6479386 9.4174626, 48.6401517 9.4323574, 48.6107285 9.5013356, 48.6755332 9.5140860, 48.8797804 8.7885918, 48.8285183 8.8716562, 48.8107839 8.9226049, 48.7284217 9.0564560, 49.4964212 9.8159753, 49.5643411 9.8957718, 48.7509336 9.7392346, 48.7654033 9.7760138, 48.7092477 9.1149016, 48.7127753 9.0976601, 48.7224250 9.0759774, 48.7288647 9.0561891, 48.7337038 9.0454766, 48.7423208 9.0355761, 48.7473445 9.0346415, 48.7645813 9.0322451, 48.7844212 9.0003039, 48.8106073 8.9221678, 48.8955466 8.7849848, 48.9090368 8.6494218, 48.9464307 8.4929472, 48.9251683 8.5976789, 48.9155805 8.6166065, 48.9126798 8.6288162, 48.8955930 8.6334932, 48.1738882 9.9243238, 48.7359768 9.9564593, 49.5271869 9.4744451, 48.6341570 10.0297153, 47.7067101 8.9539274, 48.7406791 9.0358330, 47.9861753 9.9541146, 48.7097609 9.1403874, 48.7204349 9.0570947, 48.7048575 9.0466886, 48.7026191 9.0310935, 48.6956734 9.0150770, 48.6954821 9.0154086, 49.0826807 9.9068846, 48.5820337 9.5361343, 48.5712605 9.5309834, 48.6286557 9.5742425, 48.6140017 9.6120933, 48.6022552 9.7936233, 48.7511871 8.0194252, 48.7114985 9.5118429, 48.7122053 9.5620039, 48.7030671 9.6118484, 48.6989434 9.6444299, 48.6993800 9.6425167, 48.5459412 9.6258707, 48.3089635 9.2492758, 48.5153202 9.0859236, 48.5170905 9.0891957, 48.8348623 8.1815513, 47.6235849 9.5546946, 48.8386810 9.9568035, 48.4287133 9.6526070, 48.5798562 9.4316519, 48.0406218 8.5867569, 49.2734493 8.6948297, 48.0472287 8.5367557, 48.0868626 8.5904310, 48.0964731 8.5900449, 48.0962888 8.5896869, 48.1271981 8.5738132, 48.1273707 8.5741961, 48.2063358 8.6250931, 48.2056876 8.6226666, 48.2166201 8.6418668, 48.2167189 8.6414624, 48.2289745 8.6503769, 48.2289399 8.6499782, 48.2430476 8.6475682, 48.2431946 8.6479274, 48.2530209 8.6435126, 48.2531765 8.6438750, 48.2644203 8.6389933, 48.2645575 8.6393495, 48.2813956 8.6412975, 48.2813341 8.6408543, 48.2977146 8.6351507, 48.2972932 8.6347804, 48.3242880 8.6472160, 48.3243877 8.6476748, 48.3373584 8.6487786, 48.3373826 8.6483555, 48.3442700 8.6558343, 48.3469514 8.6618212, 48.3520586 8.6725316, 48.3522059 8.6721901, 48.3618750 8.6853301, 48.3619453 8.6849173, 48.3713676 8.6946796, 48.3714747 8.6942675, 48.3771842 8.7089372, 48.3774259 8.7087457, 48.4015796 8.7280541, 48.4011997 8.7277379, 48.4099417 8.7261467, 48.4099143 8.7265573, 48.4189313 8.7323191, 48.4189389 8.7328924, 48.4322851 8.7485039, 48.4288649 8.7451607, 48.4438641 8.7598648, 48.4440497 8.7595431, 48.4559934 8.7754291, 48.4717159 8.7892318, 48.4718223 8.7889048, 48.4561276 8.7750251, 48.4826991 8.8074012, 48.4829142 8.8071597, 48.4900488 8.8276497, 48.4900638 8.8270884, 48.5042436 8.8447640, 48.5037320 8.8430924, 48.5144951 8.8663899, 48.5147165 8.8661081, 48.5246719 8.8856662, 48.5255121 8.8869187, 48.5793415 8.8991287, 48.5792420 8.8996092, 48.5897158 8.8973723, 48.5898831 8.8977661, 48.6007304 8.8955808, 48.6008778 8.8962924, 48.6077084 8.8980109, 48.6079663 8.8972585, 48.6154948 8.9060911, 48.6151912 8.9052045, 48.6258039 8.9133937, 48.6258196 8.9129671, 48.6416668 8.9325258, 48.6424929 8.9331792, 48.6463972 8.9402165, 48.6475180 8.9443391, 48.6544979 8.9553375, 48.6546364 8.9549938, 48.6660811 8.9634531, 48.6642502 8.9625290, 48.6859489 8.9803457, 48.6861202 8.9800142, 48.7052895 9.0487083, 48.9563601 8.4816797, 48.9628669 8.4705850, 48.9720450 8.4492261, 48.9800139 8.4373000, 48.9918759 8.4366585, 49.0226256 8.4738843, 49.0395003 8.4872545, 49.0579562 8.5001354, 49.0715988 8.5098925, 49.1278148 8.5510693, 49.1616098 8.5690687, 49.1619321 8.5685770, 49.1730981 8.5754146, 49.1863209 8.5834869, 49.1990464 8.5921852, 49.1981135 8.5909866, 49.2128827 8.6012971, 49.2246552 8.6038684, 49.2362134 8.6022889, 49.2481139 8.6006746, 49.2662926 8.6102057, 49.2712965 8.6143221, 48.9062510 9.1542529, 48.9060983 9.1547569, 48.8583446 9.1257738, 48.8584252 9.1252132, 48.8046855 9.0395252, 48.8044203 9.0399424, 48.9524256 9.2073550, 48.9522036 9.2076234, 49.2743678 8.7629605, 49.2717609 8.6653623, 49.2727646 8.6477288, 49.2895781 8.6241046, 48.6937396 8.9998316, 48.6934591 9.0005857, 49.3127537 8.6293798, 49.3227278 8.6300450, 49.3238313 8.6296606, 49.3493381 8.6314983, 49.3506615 8.6310836, 49.3624388 8.6321377, 49.3777679 8.6340671, 49.3996042 8.6379323, 49.3995595 8.6374762, 49.4242619 8.6344464, 49.4415225 8.6440635, 49.4478965 8.6458733, 49.4497988 8.6467003, 49.4629951 8.6455334, 49.4767567 8.6402530, 49.4791177 8.6400463, 49.4935411 8.6393382, 49.4935774 8.6389413, 49.5081718 8.6398428, 49.5097612 8.6392983, 49.5313281 8.6336119, 49.5312920 8.6331428, 49.5525637 8.6279741, 49.5628605 8.6308686, 49.5629636 8.6305028, 49.5736837 8.6351574, 49.5737159 8.6346703, 49.5849793 8.6344711, 49.5927035 8.6319637, 49.6087826 8.6293910, 49.3087695 8.5838082, 49.3089156 8.5844077, 49.3148038 8.5766768, 49.3148851 8.5773384, 49.3265942 8.5634383, 49.3401364 8.5565264, 49.3499012 8.5518260, 49.3500649 8.5521838, 49.3669972 8.5452572, 49.3671253 8.5456554, 49.4035912 8.5452834, 49.4340209 8.5404260, 49.4340541 8.5408405, 49.4447718 8.5409303, 49.4447281 8.5413334, 48.5221209 9.2518579, 48.7138577 8.0381166, 48.5074260 9.1044855, 48.4966756 9.1647104, 48.7065484 9.1643826, 48.6529830 10.0549964, 48.6617309 7.9371316, 48.4604679 10.1730350, 48.7707679 9.2502478, 49.4983798 8.7221746, 48.5770937 10.1564522, 49.1356288 10.1460742, 49.6508039 9.5817874, 48.9688930 10.0421164, 48.4176102 8.6975529, 48.4510454 8.7024623, 48.5000283 9.2685370, 48.7443551 8.0688245, 48.7293246 8.0869285, 48.6394888 8.0724431, 48.6565743 8.0901528, 48.1245036 9.9555176, 48.5961319 10.1848887, 48.6980717 9.2484000, 48.1584954 9.8273206, 49.3726175 8.6154781, 49.3728712 8.6138114, 48.0740864 9.9161494, 47.6370345 9.6797608, 48.9159563 8.3440876, 48.8526869 8.2665743, 48.8301365 8.2749044, 48.8539086 8.2653152, 49.5396049 9.8644960, 49.5218245 9.8353583, 48.6992588 7.9806463, 47.7914795 8.9797220, 47.7515920 9.0963188, 47.6884901 9.1207814, 47.8182309 9.0258793, 47.7715126 8.9829763, 48.3505082 9.4001775, 48.3121609 8.6420209, 48.3122837 8.6416456, 48.3863838 8.7265175, 48.3864661 8.7260545, 48.5603672 8.8930171, 48.5605008 8.8925417, 48.5431572 8.8902599, 48.5431163 8.8898269, 48.6759155 8.9637953, 48.7855955 9.0161288, 48.7860187 9.0156133, 49.2685960 8.7808264, 49.2752513 8.7415830, 49.2807376 8.7212441, 49.2805216 8.7210148, 49.2784436 8.7067962, 49.2782043 8.7070247, 49.2761940 8.6961312, 49.2753863 8.6915806, 49.2720878 8.6653395, 49.2735130 8.6454921, 49.2772630 8.6311618, 49.2770465 8.6306095, 49.2724834 8.6147195, 49.2851444 8.6114523, 49.2896916 8.6235466, 49.3027549 8.6271841, 49.3028738 8.6268039, 49.2925232 8.6002521, 49.2925827 8.6009328, 49.2988050 8.5936118, 49.2990364 8.5939962, 49.3365839 8.6307588, 49.3366657 8.6303464, 49.3897310 8.6391038, 49.3897229 8.6386760, 49.4090665 8.6360177, 49.4090472 8.6355624, 49.3786252 8.6340635, 49.4678475 8.6434689, 49.5201575 8.6377645, 49.5201414 8.6373810, 49.5848404 8.6341265, 49.6087473 8.6288107, 49.3319505 8.5414892, 49.3322094 8.5412671, 49.3308082 8.5193728, 49.3310823 8.5183610, 49.3310769 8.5049699, 49.3315658 8.5013626, 49.3339319 8.4868857, 49.3339040 8.4859031, 49.3391146 8.4759931, 49.3392965 8.4763715, 49.0083118 8.4586493, 49.0084147 8.4581585, 49.0479857 8.4924290, 49.0479541 8.4929699, 49.1031294 8.5411948, 49.1041106 8.5425407, 49.1383259 8.5543833, 49.1384063 8.5539051, 49.2290781 8.6026935, 48.0844287 8.5950728, 48.0842978 8.5946580, 48.0707959 8.6062199, 48.0729727 8.6031045, 48.0616780 8.6172924, 48.0614729 8.6169757, 48.0467958 8.6243721, 48.0467018 8.6239468, 48.0341264 8.6201920, 48.0308426 8.6174004, 48.1119121 8.5822120, 48.1117959 8.5818045, 48.7390909 9.1046003, 48.7399694 9.1089399, 48.4015433 9.0154681, 48.3690922 8.9823530, 48.6050833 9.7626886, 48.8298430 8.2749761, 48.8899782 8.1857857, 48.7640789 8.9877233, 47.8328952 8.7686961, 48.3570794 8.4941471, 48.7769422 8.2549352, 48.1391265 9.5711715, 48.5790648 9.6732660, 48.7612090 9.0913193, 47.8748989 8.3130633, 48.3236105 8.9161333, 48.3234236 8.9166417, 48.3354920 8.9500999, 48.7933136 8.3221746, 47.6551491 8.2488428, 47.6976799 9.6153172, 48.7866683 9.4272710, 47.6209896 8.2562141, 47.7163607 9.4892661, 47.8086752 9.3139623, 47.7784875 9.3563684, 47.7679769 9.0454226, 47.7090187 9.0968096, 47.7299238 9.0291139, 49.6866841 9.7590894, 48.8168471 9.3139413, 48.3610944 8.5627862, 48.3509823 8.8958946, 48.7814979 8.0742777, 49.5483312 8.6217587, 49.5480505 8.6219075, 49.5530900 8.6271975, 49.4551559 8.5414923, 49.4535171 8.5424121, 49.4544949 8.5572809, 49.4547252 8.5574877, 49.4576280 8.5488333, 49.4578834 8.5490444, 49.4502084 8.5687290, 49.4495578 8.5714117, 49.4960783 8.5568899, 49.4959437 8.5573374, 49.4351626 8.6037261, 49.4353535 8.6040008, 49.4400482 8.5951900, 49.4402646 8.5954224, 49.4233651 8.6243011, 49.4235630 8.6246347, 49.3715952 8.5445479, 49.3716150 8.5449583, 49.3797900 8.5437786, 49.3798146 8.5441885, 49.4147544 8.5477856, 49.4147652 8.5481923, 49.4234904 8.5447593, 49.4235969 8.5451401, 48.9378783 9.1912896, 48.9378316 9.1918418, 49.3216434 8.5680879, 48.4123305 8.6398138, 48.4354246 8.7298101, 48.6880144 9.1785474, 48.6858077 9.1789465, 48.0595559 9.8025082, 48.3514994 8.6437519, 48.8875682 9.4009667, 48.8876980 9.4006577, 47.6362371 8.3136248, 47.6779532 8.3787909, 47.6936388 8.3971377, 47.7387708 8.4432421, 48.8785766 8.2176171, 47.7197129 8.3478040, 47.7511295 8.3431455, 47.7672706 8.3721662, 47.8617756 8.4449749, 48.5969608 8.3495784, 48.7023715 9.0313312, 48.3062437 8.8763154, 48.3058874 8.8764285, 48.3357611 8.9499201, 47.8004338 9.1706255, 48.3681478 8.4801354, 48.0196978 9.4665935, 48.6857923 9.1793283, 48.6880227 9.1789153, 48.6069853 8.1926563, 48.8593992 9.3241072, 48.8715005 8.2321744, 48.3423742 8.4719118, 49.7679754 9.5956223, 49.7769359 9.5730416, 48.8786367 8.1735131, 48.0713702 9.0372714, 48.6848670 7.9775150, 49.3798953 8.7244355, 47.7798874 9.1801891, 47.7467856 9.2219730, 47.7024077 9.2711721, 49.7787336 9.5717771, 49.7663206 9.5991074, 49.7695219 9.5838183, 48.8166940 9.3150476, 48.8151457 9.4065628, 48.7916196 9.5897736, 47.8910671 9.9026842, 48.8655865 8.6613281, 47.7246597 9.0581343, 48.5364785 8.8432038, 47.8361535 9.8150148, 47.9351250 9.8898565, 48.7893036 9.5560934, 49.1923091 9.8718353, 47.7169755 9.5804184, 48.4227649 9.9594069, 48.7359443 9.1642299, 48.7640362 8.1301721, 48.6633238 8.8019223, 48.7393241 8.7097934, 48.7345657 8.7897901, 48.7441012 8.8062343, 48.7482361 8.8816313, 48.7581302 8.9422327, 48.7612316 8.8240758, 49.7716334 9.3622440, 49.7717798 9.4016861, 49.7804454 9.4381406, 48.6158224 9.5925440, 48.7139662 9.1632623, 48.7143277 9.1636349, 48.4872370 7.8598603, 48.8046022 9.2898469, 48.8138342 9.3497442, 48.8154088 9.4066499, 48.8102775 9.4322703, 48.8074826 9.4751998, 48.8069459 9.4770765, 48.8078174 9.5037961, 48.8080541 9.5036458, 48.8198273 9.5426560, 48.8200502 9.5428065, 48.8030326 9.2877111, 48.7798546 9.1993849, 48.8133527 8.3020104, 48.7560825 9.0917547, 48.8170882 9.0553505, 48.4071384 8.5365533, 48.8154144 9.5168585, 48.8188802 9.5202568, 48.7478672 9.6172670, 48.5344168 9.6558410, 48.5453878 9.6446335, 48.5531535 9.6323297, 48.5596589 9.6304432, 48.5716398 9.6511007, 48.5308763 9.6959963, 48.5224429 9.7375540, 48.4114429 9.9732844, 48.4958713 9.8455097, 48.4386013 9.9754436, 48.4386526 9.9758951, 48.3704027 8.5354285, 48.8178799 9.5186817, 48.3900820 8.4765948, 47.8296456 8.9962185, 47.8856489 9.1505352, 47.9060756 9.1734514, 49.7230466 9.6337778, 48.3185342 9.2959345, 48.5436491 9.1502839, 48.5360389 9.1360139, 49.6974530 9.6271813, 48.7665879 9.1834710, 48.3728210 8.9367987, 47.6825444 9.7853268, 47.6954449 9.7932976, 47.7061333 9.8028095, 47.7104232 9.8141411, 47.7171469 9.8406117, 47.7261390 9.8725292, 47.7424942 9.8953725, 47.7525942 9.9067703, 47.6210810 9.7381655, 47.6385438 9.7433628, 47.6475323 9.7532081, 47.6568329 9.7692078, 47.6674698 9.7801294, 47.7114584 9.8215361, 47.7197408 9.8576128, 47.7627504 9.9179727, 47.7729395 9.9331797, 47.7777565 9.9484506, 47.7899664 9.9658080, 47.7989986 9.9798027, 47.8161444 9.9911528, 47.8245186 9.9917204, 47.8336756 9.9914879, 47.8489069 9.9923148, 47.8610368 10.0079398, 47.8713224 10.0266884, 47.8850040 10.0408657, 47.8969530 10.0537807, 47.9094051 10.0669827, 47.9222606 10.0801768, 47.9332030 10.0958824, 49.4982324 8.7655658, 48.0320171 8.5433056, 48.6587332 10.2204576, 48.7344923 10.1593282, 48.6338300 9.9951868, 48.7117384 8.8171859, 48.8654161 8.5566606, 48.3724339 9.8123755, 48.7673126 8.1710003, 48.7033738 8.1232844, 48.4322357 9.1288781, 48.7937419 9.1615616, 49.2282577 9.1394988, 48.6797333 10.1041771, 49.0804342 8.5200945, 49.4349711 8.5675363, 47.9211739 8.6720702, 47.9243660 8.5951144, 47.9270881 8.5763973, 47.9206487 8.5048201, 47.9272378 8.5397640, 47.9119552 8.4726552, 47.9111741 8.4713726, 47.8954235 8.4400780, 47.8955227 8.4242315, 47.8895667 8.4055618, 47.8992706 8.3120095, 47.9029212 8.2574463, 47.9050432 8.2222440, 47.9062746 8.1362588, 47.9146743 8.0818462, 48.7355711 9.3524087, 48.7115328 10.0939877, 48.7240254 10.0934189, 48.6479161 9.9618928, 48.8195893 10.1185590, 48.7591062 10.1036537, 48.8029141 10.1254094, 48.6719594 8.9984651, 48.7749207 9.9383719, 48.7263455 10.0235930, 48.4135032 8.2449603, 47.9995301 9.9695933, 49.2854470 8.6116948, 49.3219743 8.5683836, 47.8096201 8.9909358, 49.7068665 9.7781075, 48.5513494 8.2504632, 47.8586463 9.3550964, 47.8762025 9.3450098, 48.8078487 10.2116028, 48.5917876 10.1317650, 48.5999880 10.0683864, 48.5347143 7.9226115, 48.5669403 7.8349143, 48.6581973 7.9520294, 48.3447143 9.1625738, 49.3269369 8.4562714, 48.4986374 9.8430141, 48.6414710 9.5955141, 48.7240485 8.3586705, 48.6565200 9.9340273, 48.7006808 9.9077288, 48.5056851 8.9313235, 49.4374384 8.6412289, 49.4582684 8.6461975, 49.4243132 8.6340120, 49.3624164 8.6317186, 49.3124170 8.6289601, 49.2130203 8.6008043, 49.2478377 8.6002076, 49.2565956 8.6018218, 49.2565096 8.6023342, 49.2360633 8.6017869, 49.1863754 8.5829504, 49.1729647 8.5747696, 48.7660277 9.1108881, 49.0773701 9.3926672, 48.4583916 8.3744317, 48.4623649 8.3486391, 49.4590109 8.5776135, 48.7980930 9.2139999, 48.7903192 9.2227408, 48.4496976 9.7983302, 48.5186599 10.1712401, 48.4762236 9.5948157, 49.2977817 9.4018022, 49.3589734 9.4688627, 49.3809781 9.4973151, 49.3335547 8.5103395, 48.7019319 8.9166915, 48.0281381 9.8411581, 48.6699273 8.7897063, 47.7074751 7.5255506, 47.6679584 9.3399687, 48.5064684 9.1076580, 49.4635962 9.7770129, 48.7722188 9.1412022, 48.7803603 9.1769220, 48.7769014 9.1818398, 48.8359049 9.2179531, 48.8375798 9.2206119, 48.8375330 9.2234945, 48.7721996 9.1414944, 49.0373756 8.3121690, 47.8666461 8.1705984, 48.6953283 10.1734823, 48.7986667 9.2046281, 49.3737643 9.8712252, 48.6929518 9.2193656, 48.6938357 9.2206004, 49.0120022 8.4077454, 49.0178024 8.4036805, 48.9510439 8.8779408, 48.5111315 8.5279242, 48.7807176 9.1831154, 49.2359955 9.2145358, 49.2511272 9.2157990, 48.8270615 9.2104735, 48.8063951 9.2133695, 48.8328169 9.2156668, 48.8270900 9.2162522, 48.7895293 9.1912731, 48.7926529 9.1960124, 48.8024262 9.2102505, 48.8096017 9.2181716, 48.6176296 10.1490073, 48.6783345 9.1273774, 49.4089845 9.4328833, 48.1098046 10.0812923, 49.6071719 9.8174005, 49.2683049 9.1484001, 49.0379898 8.9165667, 48.5406115 8.6982202, 49.0134413 8.4161836, 49.0151348 8.4164330, 48.6037512 8.7366987, 48.5692403 8.7178066, 48.5893646 8.7315048, 48.9629464 8.4696573, 49.3041861 8.5654006, 49.3084940 8.4882688, 49.3063579 8.5279449, 49.0335897 8.3768366, 49.2764479 9.2287816, 48.5083302 8.1360071, 48.5716165 10.1546193, 48.5234036 10.0829835, 48.5644946 10.1405713, 48.6006926 10.1930766, 48.4950310 10.0867089, 48.5585352 10.1276554, 48.4802340 10.1035539, 48.5499229 10.1089296, 48.5094281 10.0809424, 48.4913880 10.0897599, 48.5793227 10.1694371, 48.5370883 10.0921411, 48.6523282 10.2286344, 48.6777857 10.2184380, 48.6672503 10.2279878, 48.6370427 10.2166432, 48.6242549 10.2192783, 48.6120766 10.2056884, 48.6920895 10.2143262, 48.7030136 10.2146742, 48.8618705 10.1932426, 48.8332632 10.2076457, 48.8827238 10.1645929, 48.9421283 10.1919918, 49.0364808 10.1865475, 49.0173985 10.1969915, 48.7571167 10.2018021, 48.7402931 10.1962372, 48.8042748 10.2100402, 48.8476048 10.1970857, 48.8970654 10.1761638, 48.7897010 10.2109234, 48.8686720 10.1739204, 48.9261748 10.1945281, 48.9533976 10.1868556, 49.0011869 10.1934122, 49.0225740 10.1963081, 49.0924030 10.2095399, 49.0609686 10.1808684, 49.0760021 10.1991841, 49.0492076 10.1772995, 49.2125333 9.2753125, 49.2268390 8.9484307, 48.6013920 8.0919220, 48.5679097 8.1432529, 48.8001812 9.7973925, 49.2577216 8.5048208, 49.2294132 8.4964924, 49.2824056 8.5244084, 48.7464556 8.2066346, 49.4651669 8.5271434, 49.3780540 8.6486849, 49.4648287 8.5270186, 48.3098676 7.8350464, 47.9924895 8.6077700, 47.9923293 8.6073623, 48.7543049 9.1449896, 48.7765896 9.0222248, 47.7074526 9.8044526, 47.7110714 9.8186784, 47.7326922 9.8808486, 47.6811660 9.7846265, 47.6957684 9.7929756, 47.7112098 9.8198943, 47.7248431 9.8701879, 47.7109077 9.8173971, 47.7173970 9.8403679, 47.7426976 9.8951877, 47.7199073 9.8575529, 47.8245155 9.9914569, 47.7779873 9.9483692, 47.8149009 9.9906548, 47.7899731 9.9654247, 47.7731043 9.9330387, 47.8007641 9.9821144, 47.8346465 9.9910330, 47.7630499 9.9179319, 47.8489307 9.9919631, 47.9223871 10.0797186, 47.9095392 10.0665796, 47.8715057 10.0263294, 47.9324346 10.0945636, 47.8972148 10.0536202, 47.8611937 10.0076449, 47.6212371 9.7377938, 49.2427738 8.6584711, 49.2277019 8.6549049, 47.7251277 9.7136677, 48.2882830 10.0373949, 48.3678389 8.9810088, 47.6983756 9.6703430, 48.5345073 8.5657906, 47.8354774 9.1733536, 47.7196201 9.2434980, 48.4688382 8.5243138, 48.4462792 8.4404912, 48.4651360 8.3226158, 48.4798743 8.2756820, 48.5509660 8.2160283, 48.5282910 8.2156177, 47.8583352 8.0527659, 48.6233742 9.6474853, 47.8421728 9.2591347, 47.8963299 9.2766958, 49.0024709 8.4620661, 48.4617734 9.1534473, 48.7463828 9.1631837, 48.7464742 9.1635807, 48.4295834 9.1753342, 48.6560469 7.9614999, 48.6067013 7.9957688, 48.5935738 7.9814908, 48.5290189 7.9282942, 48.4305716 7.9656859, 48.4476505 7.9377941, 48.3742224 8.0253808, 48.2895888 8.0689839, 49.2283026 8.8731254, 48.0080734 8.9166012, 47.9412086 9.2958515, 47.8780689 8.7556860, 47.9683465 9.1545316, 48.0887124 8.9262412, 48.1419177 8.8203361, 48.9560784 8.4813376, 49.0906732 8.5312604, 49.3402268 8.5570096, 49.3267720 8.5639613, 47.8834738 8.7282837, 48.3602149 9.1986196, 48.6482603 7.9925410, 48.5905388 8.1221704, 48.5816658 8.2219592, 48.8149369 8.9153444, 48.8146940 8.9150211, 48.7110459 10.0443640, 48.2291935 9.0734132, 49.1810203 9.3405836, 49.6376906 9.7310949, 48.6725457 9.0031015, 47.9824197 10.0071204, 47.9633804 9.7640640, 47.9377464 9.7580317, 47.8005130 9.6082012, 47.7827675 9.5985322, 47.8642151 9.6775028, 47.9102931 9.7647206, 47.8468824 9.6380335, 47.8288333 9.6165700, 47.8644105 9.6772479, 47.7976959 9.6066726, 47.7798501 9.5963029, 47.8269115 9.6166384, 47.9110831 9.7457007, 48.0417478 9.7901424, 48.0076356 9.7742830, 49.0398224 9.7392156, 48.8145665 8.1477899, 48.8700451 8.2330963, 49.4401569 8.6267606, 49.4827502 8.9652469, 49.2261440 8.4015394, 49.2270042 8.3930670, 49.2146867 8.4245865, 48.7852067 9.6873710, 49.3110545 9.1469762, 49.3257362 9.1127483, 49.3338501 9.1019193, 49.3837384 9.0786578, 49.4005395 9.0671825, 49.4398923 8.9044925, 48.4629531 10.1380779, 48.8047207 9.1776674, 48.4439448 8.8366702, 48.8318003 9.2086867, 48.8342680 9.2098271, 48.8363275 9.2136031, 48.6069355 9.6317726, 48.8023955 9.2082550, 48.8123036 9.2196914, 48.8169866 9.2258518, 48.8242368 9.2224948, 48.8259297 9.2110930, 48.8343231 9.2081932, 49.0629251 9.1970198, 49.3918443 8.7985821, 49.3926349 8.8038177, 48.8128038 9.2216738, 48.5246441 9.3443560, 48.1387764 9.7690366, 48.5423680 9.4008658, 49.2809102 9.3551891, 49.2809335 9.3557682, 49.4141841 8.6552752, 49.2978779 9.3767644, 49.3795727 9.4593926, 49.3797955 9.4604041, 49.3927454 9.4696114, 49.4062626 9.4721040, 49.4101237 9.4741552, 48.8002789 9.0640069, 49.0011181 8.7173021, 49.0226343 8.7042723, 48.3425352 8.5795308, 48.8257307 9.3013261, 49.0006795 8.7705306, 48.7170600 8.5425541, 47.9418017 9.0439966, 48.0005307 9.1181165, 48.0452735 9.2370497, 48.6921929 9.6652387, 48.8150939 9.0241163, 48.7171935 10.2085770, 48.7281783 10.2004541, 48.7730993 10.2108669, 48.9290165 8.6489728, 48.9371276 8.7215122, 49.4940290 9.2614381, 48.9147442 8.7639662, 48.9149020 8.7645148, 48.9242325 8.7483836, 48.9189948 8.8492099, 47.7993589 9.7259098, 47.8117916 9.7614954, 48.7548994 9.1746002, 49.7078295 9.8039152, 49.6375662 9.7305937, 49.6611667 9.7566617, 49.6719607 9.7713529, 49.7006601 9.7954395, 49.6060244 9.6866807, 49.6510182 9.7397939, 49.6903001 9.7878873, 49.4769864 9.5641676, 49.5712029 9.6403884, 49.4710234 9.5601560, 49.5847956 9.6616762, 49.5158134 9.5684642, 49.5802327 9.6475074, 49.5027455 9.5624713, 49.3204388 9.4125836, 49.3135309 9.4057155, 49.2256498 9.3508030, 49.1781679 9.3380479, 49.2066141 9.3436718, 49.1616635 9.3004576, 49.1810215 9.3400832, 49.2163030 9.3470828, 49.2136669 9.5260814, 49.5927143 9.7364883, 49.5549584 8.5103589, 49.5504868 8.4235355, 49.5540665 8.4673540, 49.5546737 8.4894870, 49.5534822 8.4431096, 49.5552322 8.5100715, 49.5530546 8.4434530, 49.5507729 8.4234367, 49.5544057 8.4894966, 49.0563897 8.8749520, 49.1142373 8.5502969, 49.1143832 8.5498328, 49.0228039 8.4734539, 49.0388576 8.4862787, 48.2640265 9.4987664, 49.0135739 8.4202992, 48.9331986 8.8054530, 48.9174229 9.2198333, 48.5609982 8.4262796, 49.5721278 9.4133089, 49.0695697 8.5077440, 49.0905926 8.5317581, 48.7949712 9.2020362, 49.3058042 8.5323283, 49.1618568 9.2788309, 48.5579834 9.8178047, 48.1753593 8.6009101, 48.1432037 8.5710423, 48.1432443 8.5706427, 48.1598980 8.5730541, 48.1598046 8.5726511, 49.1721181 9.3296726, 49.1724302 9.3294218, 49.2162912 9.3475840, 48.9000520 9.0220794, 49.1847108 10.0900827, 49.1848252 10.0891598, 49.1896587 10.1082909, 49.1898348 10.1079377, 49.1986441 10.1270995, 49.1988046 10.1266370, 48.1912071 8.5866264, 48.1913427 8.5862720, 48.1999009 8.6040224, 48.1996877 8.6042934, 48.1761727 8.5742583, 48.1761942 8.5738077, 49.1832002 9.2198007, 49.1835335 9.2196862, 49.1887589 9.1831723, 49.1890446 9.1832209, 49.1696319 9.2528172, 48.8542751 8.8988339, 49.2504081 9.0980374, 47.9439493 7.7362338, 49.2428488 9.1540163, 49.5941383 8.6311749, 47.9391928 7.8716401, 49.1676442 9.2597076, 49.1206387 9.3002491, 49.1863674 9.1970883, 49.1867235 9.1971601, 49.3930439 8.5437518, 49.3930296 8.5441632, 48.0198623 8.0751576, 47.9907295 8.1179395, 47.9809321 8.1427470, 49.0240512 8.3759973, 49.1316010 9.3015276, 49.1353274 9.3040368, 49.1354048 9.3046888, 49.1509022 9.3021184, 49.0723846 9.2819012, 49.0771419 9.3096681, 49.0837516 9.2903086, 49.0837076 9.2896928, 49.0923412 9.2925464, 49.0923485 9.2920329, 49.1060069 9.3021985, 49.1062536 9.3017889, 49.1871870 9.1416283, 49.1875135 9.1416704, 48.9089526 8.6896657, 48.9093271 8.6896039, 48.9167507 8.7200161, 48.9169880 8.7193856, 49.1881041 9.1586514, 49.1885956 9.1193045, 49.1887531 9.1663317, 49.1889471 9.1654843, 49.1935880 9.1069908, 49.1941353 9.1064907, 49.1962800 9.0992722, 49.1965765 9.0994330, 49.2036084 9.0845099, 49.2036611 9.0837736, 49.2114728 9.0729929, 49.2118116 9.0713709, 49.2133993 9.0307116, 49.2142990 9.0467238, 49.2147927 9.0477382, 49.2155578 9.0111665, 49.2159065 9.0112163, 49.2185724 8.9937861, 49.2189155 8.9938342, 49.2218636 8.9761899, 49.2219514 8.9712138, 49.2248674 8.9472710, 49.2251454 8.9475697, 49.2266030 8.9376576, 49.2269236 8.9219300, 49.2273008 8.9222375, 49.2317164 8.9040974, 49.2317859 8.9044922, 49.2401385 8.8905193, 49.2429873 8.8802683, 49.2495696 8.8542327, 49.2497135 8.8548752, 49.2539483 8.8424593, 49.2541812 8.8428710, 49.2568309 8.8327005, 49.2583625 8.8204228, 49.2587335 8.8197907, 49.2611840 8.8071279, 49.2637538 8.8014070, 49.2659403 8.7934976, 49.2723335 8.7690189, 49.4170428 9.9859917, 49.3322519 9.4113637, 49.3323330 9.4117828, 47.8987210 8.2902797, 49.2067543 9.3440942, 49.2256829 9.3512941, 49.2346814 9.3494335, 49.2350284 9.3488643, 49.2607647 9.3531930, 49.2721106 9.3520496, 49.2721130 9.3515930, 49.2545234 9.3523889, 49.2547890 9.3530127, 47.9248891 7.7105768, 47.8995226 7.6787759, 47.8816479 7.7126377, 49.3051714 9.3924690, 49.3052611 9.3918019, 49.3132850 9.4061184, 49.3203389 9.4131413, 49.3255112 9.4136580, 49.3429653 9.4064294, 49.3435612 9.4069728, 49.1933219 9.3504312, 49.1950681 9.3511910, 49.1969154 9.3501739, 49.2428822 9.3487869, 49.2429988 9.3482992, 49.2885484 9.3674880, 49.2888492 9.3671594, 49.2958364 9.3767718, 49.2959616 9.3776113, 49.1780806 9.3385165, 49.1870030 9.3458296, 49.1876263 9.3456559, 49.4020579 9.9426631, 49.0045901 9.2376857, 49.0062638 9.2386840, 49.0142088 9.2460114, 49.0515765 9.1483214, 47.9039911 7.7383012, 49.1616461 9.3009935, 49.1694306 9.3107204, 49.1704268 9.3162466, 47.9727362 7.9445677, 47.9606923 7.9897254, 49.6055676 9.6868114, 49.3911061 10.1211012, 49.4380783 10.0161634, 48.9743928 8.7957421, 49.0561625 9.2688179, 49.0594630 9.2693759, 47.8617298 7.6974840, 49.2142768 9.0230381, 47.9824084 7.8543163, 47.9789931 7.9111705, 47.9795406 7.9099467, 48.1429371 8.6384638, 48.1320146 8.6355665, 48.1499024 8.6152193, 49.0304599 9.2531977, 49.5015800 10.0350131, 49.4759747 9.9397946, 49.4375193 9.9653786, 49.4656731 9.9274158, 49.4845684 9.8958289, 49.4532351 9.9581528, 49.3578060 9.4179989, 49.3580375 9.4176915, 49.3822707 9.9380177, 49.3640239 9.9013334, 49.4317944 9.5039781, 49.4317696 9.5032233, 49.4407047 9.5144379, 49.4409211 9.5138979, 49.4469098 9.5186981, 49.4471603 9.5184619, 48.8725770 8.6904871, 48.7752034 9.0254208, 48.7754392 9.0239267, 48.7761735 9.0236883, 48.7762929 9.0238041, 48.7763222 9.0224710, 48.9740454 9.2647035, 48.9900450 9.2318387, 48.9918045 9.2329174, 49.0141796 9.2465322, 49.0456156 9.2645516, 48.9219152 9.0236911, 48.9260777 9.0680844, 48.0441698 7.9757164, 48.0505716 8.0496292, 48.6003226 9.1902861, 48.6005238 9.1901062, 49.1563088 9.3072238, 49.1570966 9.3161343, 49.2701869 9.6254730, 49.3627346 9.4259543, 49.3628020 9.4269527, 49.3688240 9.4397699, 49.3690412 9.4393949, 49.3752319 9.4523197, 49.3753066 9.4533315, 48.9217824 8.9317455, 48.8343987 8.8560836, 48.8353603 8.8553140, 48.8521225 8.8002086, 48.8525235 8.8006640, 48.8672672 8.7912439, 48.8675228 8.7920279, 48.8755213 8.7939155, 47.9162923 8.0705453, 47.9169414 8.0695102, 47.9335625 8.0303327, 49.1985853 9.5675230, 49.2036230 9.4713725, 49.2038764 9.4709519, 49.2057822 9.4822418, 49.2066521 9.4849493, 49.3178826 9.6893395, 49.3413300 9.7360884, 49.2804805 9.7398425, 49.2152324 9.5901564, 49.2155556 9.5901928, 49.1826470 9.7457752, 49.1829911 9.7455545, 49.2014502 9.6852944, 49.2062055 9.6383435, 48.8556122 9.1240650, 48.8595120 9.1069904, 48.9239379 9.1534561, 48.9241264 9.1537921, 49.1743390 9.8670407, 49.2954225 9.7786234, 49.3266174 9.8116523, 49.3832252 9.8481597, 49.3925185 9.8606230, 49.4104072 9.8827154, 49.4173592 9.8680119, 49.4126354 9.8073800, 49.4217191 9.8163356, 48.8957794 9.1514907, 48.8958618 9.1510115, 48.8840902 9.1453702, 48.8839518 9.1447028, 48.8723227 9.1366426, 48.8723919 9.1361233, 48.8444490 9.1145130, 48.8379323 9.1003275, 48.8381889 9.0999711, 48.8311361 9.0867367, 48.8313792 9.0863760, 48.8219855 9.0834900, 48.8219651 9.0781112, 48.8213163 9.0768080, 48.8143349 9.0649853, 48.8147418 9.0645765, 48.8081518 9.0478713, 48.8084962 9.0476868, 48.7824919 9.0079472, 48.7828894 9.0081705, 49.3462673 9.7652536, 49.3322744 9.9286728, 49.1835852 10.0756758, 49.1833333 10.0696043, 49.4620731 9.8465217, 49.4311530 9.8374961, 49.4588393 9.8921111, 49.4733774 9.8731179, 49.4779904 9.8366968, 47.7860281 9.1194209, 48.8471779 8.9618798, 49.5398575 9.1061778, 49.5514779 9.1200926, 48.9213373 9.1585809, 48.9274840 9.1694800, 48.9277300 9.1691057, 49.1774172 9.9585539, 49.1777132 9.9580959, 49.1833611 10.0480406, 49.1836647 10.0482720, 49.3928222 9.4691860, 49.4174596 9.4780929, 49.4178835 9.4789911, 48.9895024 9.6120129, 48.8960794 9.1960948, 49.0333941 9.9294090, 49.4544367 9.5315328, 49.4560320 9.5330608, 49.4620658 9.5447052, 49.4621953 9.5441557, 49.4683691 9.5576946, 49.4696743 9.5539390, 49.4772960 9.5647733, 49.4889725 9.5650150, 49.4895315 9.5653540, 49.5027792 9.5628991, 49.1735411 9.9956779, 49.1738282 9.9957325, 49.1774935 10.0296026, 48.8462333 9.1297668, 48.8452915 9.1309330, 49.5403467 9.5889109, 49.5504165 9.6068297, 49.5505889 9.6064863, 49.5585365 9.6146243, 49.5712189 9.6408172, 49.5800040 9.6478395, 49.5846226 9.6621280, 49.5911156 9.6691373, 49.5927203 9.6700680, 49.5993920 9.6809044, 48.7406938 8.6474860, 49.5994571 9.6992900, 48.8267253 9.3001515, 49.6283044 9.7298560, 49.6126629 9.7161207, 49.6222826 9.7288373, 49.6609192 9.7570507, 49.6509129 9.7402683, 49.6720702 9.7719881, 49.6805457 9.7792678, 49.6902760 9.7883448, 49.6804068 9.7796570, 49.7005867 9.7958626, 49.4475495 8.9708096, 48.7613425 9.2144219, 49.0965990 9.4469764, 49.0927050 9.3961852, 49.0851274 9.2259822, 48.7546412 9.1453708, 47.7031193 9.9355243, 49.3688113 8.7873065, 48.0024684 9.3886804, 48.9139897 8.8754916, 48.7540293 9.1406651, 48.7542703 9.1411930, 48.7547015 9.1445888, 48.7581785 9.1286783, 48.7811028 9.1943466, 48.4595988 10.1711934, 48.4645404 10.1223774, 48.4802017 10.1041631, 48.4914513 10.0901495, 48.4951764 10.0871437, 48.5097340 10.0813635, 48.5366930 10.0923397, 48.5495692 10.1089249, 48.5640570 10.1405415, 48.6002192 10.1932351, 48.6143248 10.2091203, 48.6237947 10.2194702, 48.6370975 10.2170778, 48.6518587 10.2288665, 48.6672443 10.2286901, 48.6777252 10.2191011, 48.6918304 10.2147888, 48.7030388 10.2151575, 48.7411557 10.1966712, 48.7566988 10.2022541, 48.7725633 10.2111265, 48.7895482 10.2114348, 48.8216854 10.2168276, 48.8334224 10.2081744, 48.8474543 10.1975819, 48.8620769 10.1936834, 48.8691565 10.1741861, 48.8750477 10.1666259, 48.8751128 10.1673993, 48.8863019 10.1658808, 48.8966666 10.1763137, 48.9102131 10.1899836, 48.9104742 10.1896634, 48.9258950 10.1949601, 48.9420077 10.1925203, 48.9558196 10.1862163, 48.9689245 10.1865525, 48.9692640 10.1862417, 49.0009182 10.1938674, 49.0170502 10.1975981, 49.0224299 10.1969381, 49.0363577 10.1873324, 49.0493389 10.1776823, 49.0605574 10.1810565, 49.0758780 10.1995729, 49.0923405 10.2099712, 48.8218705 10.2163375, 48.5732709 10.1585590, 49.7621113 9.6294051, 49.3683330 9.9579141, 49.4195134 10.0535016, 49.2882383 9.9406478, 48.5580685 10.1277207, 48.5788457 10.1693436, 48.7170747 10.2080523, 48.7282666 10.2009034, 49.3350076 8.7983923, 49.3459639 8.7931740, 47.5611045 8.0321768, 49.0171260 9.1534397, 49.0958167 9.1828417, 49.1095965 9.1848677, 48.9183760 9.1563179, 48.9193212 9.1562973, 48.9447724 9.1977190, 48.9449139 9.1972527, 48.9689682 9.2267241, 48.9800924 9.2300574, 49.0304309 9.2538320, 49.1210630 9.3007708, 49.1566653 9.3071655, 49.1573678 9.3160744, 49.1601842 9.3549323, 49.1603741 9.3548775, 49.1616105 9.3397381, 49.1627015 9.3701449, 49.1629358 9.3698809, 49.1725530 9.3817719, 49.1727033 9.8237784, 49.1727925 10.0129405, 49.1729493 9.8236024, 49.1742106 9.8457741, 49.1744759 9.8456315, 49.1744599 9.8623803, 49.1755740 9.9774230, 49.1758547 9.9772793, 49.1759763 9.4001758, 49.1762700 9.8859732, 49.1765088 9.8857580, 49.1770020 9.9345641, 49.1772620 9.9342406, 49.1775887 9.9105015, 49.1777734 10.0294788, 49.1778655 9.9103748, 49.1793399 9.7775155, 49.1796070 9.7775911, 49.1807457 9.4136814, 49.1810781 9.7598064, 49.1813474 9.7612968, 49.1848157 9.7374138, 49.1863246 9.7340659, 49.1896744 9.4186012, 49.1915830 9.7190278, 49.1918286 9.7192538, 49.1949465 9.4295459, 49.1960968 9.7038567, 49.1963928 9.7037561, 49.1971836 9.4521348, 49.1974572 9.4517932, 49.2011210 9.6877344, 49.2043366 9.6644362, 49.2048790 9.6585922, 49.2107745 9.5010542, 49.2110505 9.5008148, 49.2114338 9.5359667, 49.2114729 9.5317012, 49.2118076 9.5173316, 49.2120967 9.5172403, 49.2124341 9.6151901, 49.2127552 9.6151143, 49.2170647 9.5622814, 49.2173850 9.5621363, 49.1245726 9.1305009, 47.6079887 9.5842570, 47.7033469 9.4328489, 49.2890193 8.6051647, 49.4686864 8.5404084, 49.4852171 8.5477194, 48.6966848 9.1426214, 48.7551328 9.1535306, 48.7566070 9.1640406, 48.7557780 9.1601913, 48.7547113 9.1489665, 48.7625416 9.1696775, 48.7558700 9.1592528, 48.7550764 9.1515350, 48.7554018 9.1551614, 48.7585917 9.1675048, 48.7554795 9.1597211, 48.7554336 9.1568834, 48.7612657 9.1695819, 48.7561338 9.1617274, 48.7573150 9.1654353, 48.7546558 9.1464774, 48.4514506 8.6433457, 48.4521970 8.6763233, 48.0200383 8.9369411, 49.5696414 9.3640897, 49.5231654 9.3393124, 49.4802730 9.3690583, 48.2306681 8.4106254, 49.4495458 9.4257146, 49.5010683 9.3497671, 48.9581869 8.4301067, 48.9588630 8.4053268, 49.5938778 9.4109944, 49.6063091 9.4370118, 49.6365504 9.4846227, 49.6602377 9.4805080, 49.1311984 9.6338251, 48.7608842 9.4910508, 49.0202769 8.4154626, 49.0937207 8.4121225, 49.3247506 8.5396272, 49.3449164 8.5491365, 49.3476699 8.5480496, 49.4952879 9.2130894, 49.5031612 9.2386569, 49.5219997 9.1700767, 48.4753733 8.4047423, 47.7684484 8.2821018, 48.3226704 9.6087540, 49.5377487 9.3431212, 48.7770772 9.2446719, 49.3255788 8.8127019, 49.7696553 9.5847553, 48.4906185 9.4512150, 49.3701568 9.1999841, 47.9013964 9.0132227, 47.9153307 9.0468785, 47.9169175 9.0522260, 47.9620341 9.0454807, 47.9754874 9.0793087, 47.9906752 9.0789811, 48.0136013 9.2302443, 48.0821258 9.4500636, 48.1845139 9.4862038, 47.7042046 8.3034213, 49.4012435 9.2089612, 49.4319311 9.2375567, 48.6662152 9.3659699, 48.7024144 9.1774889, 48.7875950 8.9827448, 48.7876052 8.9815757, 48.8007249 8.9412573, 48.8234792 8.8884679, 48.8398485 8.8382949, 48.8437503 8.8159339, 48.9716348 8.4471469, 48.9718087 8.4470090, 48.9800714 8.4366231, 48.9927379 8.4365284, 49.0067440 8.4559670, 48.5196274 9.8080095, 49.2271886 9.5357194, 49.2520286 9.5232629, 49.4119380 10.0303080, 47.8002754 8.1987104, 47.8190174 8.3196830, 49.5074139 9.3070533, 48.6021740 10.0615431, 49.3016282 9.2526462, 49.3705341 9.1559288, 47.7798199 8.3268191, 48.7264018 9.2107797, 48.7307799 9.1669412, 48.7433433 9.2683902, 48.9658830 8.8832406, 48.9738816 8.8559312, 48.7113232 9.1645404, 48.7184698 9.1629256, 48.5406158 10.2588419, 49.5254765 9.2865999, 48.5231648 10.0833983, 49.1749304 9.7974010, 49.2061965 9.6407316, 49.1898162 9.4180403, 48.7855603 9.1803280, 49.1808888 9.4132057, 49.1505384 9.3016113, 48.8446461 9.1140852, 47.8627536 8.7857416, 47.8630151 8.7860010, 47.8535430 8.8002637, 47.8552075 8.7980343, 47.7654182 8.8041796, 47.7657572 8.8037537, 47.7705586 8.8141093, 47.7706044 8.8134856, 47.7617045 8.7965771, 47.7628714 8.7979748, 47.7551290 8.7854432, 47.7553585 8.7852332, 47.7469775 8.7566261, 47.7473369 8.7564457, 47.7403603 8.7455512, 47.7404180 8.7453253, 48.8239442 8.8879073, 48.7799018 9.1991603, 48.5594412 9.6644104, 48.7313314 9.1307290, 48.3687987 8.1200636, 49.4132111 9.3294052, 49.4189386 9.2924573, 48.7996329 9.3537647, 48.4579439 9.9875507, 48.5509131 9.6345880, 48.5946710 9.6469612, 48.5992368 9.6429459, 48.7955218 8.9596138, 48.7956324 8.9603226, 48.8010415 8.9413894, 48.8400889 8.8396024, 48.8444913 8.8147692, 49.0063430 8.4560599, 49.0579894 8.4995784, 49.0805123 8.5195564, 49.1278057 8.5505712, 49.2664691 8.6097473, 49.4372590 8.6415845, 49.4421019 8.6438758, 49.4678506 8.6439180, 49.2190424 9.2112957, 49.5718373 8.6650002, 48.8093665 9.1834320, 48.8095623 9.1831335, 48.8095078 9.1830372, 48.8096179 9.1832193, 48.8283942 9.2316547, 48.8095137 9.1829682, 48.4316518 9.7505267, 49.1205878 10.1522484, 49.3220845 8.4655350, 48.8188915 9.2372072, 48.7994543 9.1709984, 48.0863844 7.6920940, 49.5923356 9.3604914, 49.4679710 9.1246953, 48.8303778 9.1746521, 49.4848966 8.5480070, 49.5081710 8.5609162, 49.4469737 9.2106562, 48.7743937 9.1727386, 48.7745047 9.1728634, 48.7754257 9.1720375, 48.8313151 9.2122250, 48.8350574 9.2149805, 48.8322297 9.1705414, 47.6269148 8.5717357, 48.9787489 9.3717375, 48.2185403 8.2568051, 47.8600876 8.1797615, 48.9013819 9.0541283, 48.9512077 9.4128480, 48.8834077 9.3881405, 48.8835815 9.3877978, 47.8227987 8.1685497, 48.4982390 8.8442656, 48.7025036 9.4527857, 47.7560737 8.1820547, 47.7707507 8.1831101, 47.7790395 8.1062076, 47.7866778 8.1801994, 47.7916734 8.0821287, 47.8504829 8.2620373, 48.7684830 9.3231418, 49.1891606 9.1171652, 49.2233552 8.9533636, 47.9911663 8.1651822, 48.9270875 9.6214201, 48.0170829 9.3136142, 47.8569573 8.1100911, 48.7122492 9.9138169, 49.1729576 9.7848150, 49.6197048 9.6044235, 48.9656310 9.5806902, 48.7678116 9.1836149, 48.9014012 8.3087881, 49.0962224 9.0919870, 49.7715202 9.4676383, 49.3158418 9.0749821, 48.1377280 9.5979167, 49.5340464 9.2539952, 49.1736873 10.0258466, 49.1967104 9.0903943, 49.3193613 9.1170267, 49.3291232 9.0554272, 47.9784290 8.9641589, 47.9839356 9.0405854, 47.9880187 8.9974481, 47.9918093 8.7739738, 47.9933461 8.7241803, 48.0204120 8.6493049, 49.1782893 9.3731611, 47.7349571 9.2397100, 47.7754898 9.1749163, 49.5431360 9.8876914, 47.6849697 8.0154772, 47.7621595 7.9758828, 47.8079054 7.9357172, 49.2749828 8.7411568, 48.9123330 8.3510166, 48.9123902 8.3504577, 48.9271462 8.3570549, 48.9559673 8.3820776, 48.9608511 8.4084866, 48.9612460 8.4083461, 48.9738379 8.4364444, 48.9757448 8.4369507, 48.8648202 8.2474782, 48.8790378 8.2632960, 48.8793274 8.2629787, 48.8885040 8.2890322, 48.8888477 8.2888475, 48.8942425 8.3105677, 48.8946078 8.3105747, 48.9003187 8.3333080, 48.9006232 8.3329890, 48.9687147 8.4298277, 49.1673363 9.2596599, 49.1822425 9.2236902, 49.1825846 9.2237977, 49.2685258 8.7797727, 49.2745175 8.6394890, 47.8957752 8.4241928, 48.6409446 8.9308115, 48.0228909 8.6121741, 48.0229438 8.6117576, 48.0055377 8.6048873, 48.0055973 8.6052895, 47.9752433 8.6184455, 47.9753906 8.6187932, 47.9849016 8.6118658, 47.9850938 8.6121629, 47.9552172 8.6194757, 47.9552291 8.6198897, 47.9646618 8.6210187, 47.9647513 8.6214154, 47.9116196 8.6845772, 47.9119042 8.6847225, 47.9259038 8.6546660, 47.9261670 8.6547362, 47.9455845 8.6191598, 47.9456945 8.6195331, 47.8917868 8.7230715, 47.8921007 8.7230347, 47.8714101 8.7775596, 47.8714406 8.7780359, 47.8805881 8.7757992, 47.8806648 8.7762586, 47.8875369 8.7383252, 47.8878393 8.7382397, 47.8901856 8.7700635, 47.8902294 8.7506918, 47.8903428 8.7689517, 47.8904407 8.7503382, 47.8166959 8.8469901, 47.8170162 8.8472903, 47.8245464 8.8337926, 47.8250767 8.8336072, 47.8448826 8.8115167, 47.8450907 8.8118378, 47.8068358 8.8542626, 47.8068588 8.8547291, 47.7867976 8.8232352, 47.7868863 8.8228929, 47.7967813 8.8360776, 47.7970006 8.8357483, 47.7495150 8.7631515, 47.7397150 8.7380011, 47.7397150 8.7380011, 48.0790498 9.6790386, 48.0970763 9.7026062, 47.7399867 8.7345273, 47.8004997 8.8485013, 47.8007334 8.8482334, 47.8008476 8.8480453, 47.8351310 8.8196960, 47.8353577 8.8200357, 47.8944095 8.7072382, 47.8958979 8.7055108, 47.9054261 8.6967782, 47.9056734 8.6970585, 47.9202794 8.6741869, 47.9205383 8.6743676, 47.9322153 8.6301805, 47.9323560 8.6305783, 48.0151141 8.6076181, 48.0151259 8.6071821, 48.6389999 8.9275089, 48.6723269 8.9637019, 48.7474451 9.0594116, 48.8207273 9.2270474, 49.3135359 8.6418842, 48.2094871 7.7785810, 49.1590946 9.2905858, 49.1786306 9.2350337, 49.0220898 8.6269575, 49.0222804 8.5892203, 49.0809449 8.7838851, 49.0954448 8.8068286, 49.1134678 8.8290440, 49.1227203 8.8550260, 49.1481199 8.9186301, 49.2129006 8.6719161, 47.7325414 9.8811144, 47.7557211 8.9496434, 47.7789662 9.1536377, 47.5711618 7.7613910, 48.8601439 9.3228828, 48.7981271 8.1679392, 48.4481460 7.9010627, 48.6273204 9.3396348, 47.7837255 8.9321885, 47.6884934 9.2990145, 48.4625038 10.1391752, 48.8146124 9.3537610, 48.8253583 9.2125643, 48.7795491 9.1745436, 48.7060514 9.1629651, 48.8698641 10.2833974, 49.0008013 8.3719610, 48.9295711 9.8767384, 48.9205756 8.2058607, 49.2944589 9.4709116, 48.9080374 9.3417376, 48.7121894 9.1604107, 48.7602096 9.1689168, 48.7804469 9.1766071, 48.8221293 9.2045896, 49.6084586 9.3445733, 48.1847953 7.7655600, 49.3783297 8.5626284, 48.9551893 9.2496743, 48.9563878 9.2482053, 48.9547502 9.2555397, 48.9559081 9.2587417, 48.0006677 8.4180724, 48.9899167 9.2772816, 48.9911975 9.2808639, 49.0039164 9.2719079, 48.7074798 8.3199480, 48.7386713 8.2896820, 48.7778355 8.1869501, 48.6456999 9.4144185, 48.8844951 8.2680861, 48.9590094 8.4066839, 49.1381543 9.6093247, 48.6491481 8.3326042, 48.6554113 8.2894004, 48.6879563 8.2301900, 48.7074212 8.2330668, 48.7132068 8.1470490, 48.7784092 8.1874412, 48.8734243 8.1508880, 47.7724018 8.0207021, 48.3743563 8.0257583, 48.5343596 7.9223391, 49.0370746 8.3124966, 48.7583042 9.1234566, 48.7468811 8.3019773, 49.0722747 9.2823707, 49.1585703 9.2916476, 47.6086108 9.5882404, 47.8505591 9.6398559, 49.2409505 8.8896780, 49.5458579 8.6284759, 48.4985741 9.1585090, 48.0811778 9.4497598, 48.2142025 9.0999390, 48.5469927 9.6418125, 48.4569517 7.9109849, 48.4999920 7.9558778, 48.5327154 7.9556963, 48.0592054 10.1387419, 48.0592098 10.1391537, 48.0702593 10.1387506, 48.0702882 10.1391449, 48.6148651 8.9415072, 48.0969837 10.1331788, 48.0970453 10.1335784, 48.1066856 10.1273087, 48.1084077 10.1248434, 48.6805662 8.7748231, 48.7984089 9.2595177, 47.7610670 8.8037000, 48.5016195 8.8470383, 48.5113291 10.0836131, 48.6613430 8.9970074, 48.6805662 8.7748231, 48.7984089 9.2595177, 48.8681111 9.1392799, 49.0585670 10.1757670, 49.2094830 9.6368000, 49.2147031 9.6143039, 49.2733589 8.6666298, 49.3763680 8.5460170, 49.3912580 9.4722350, 49.5086670 8.6555330, 49.5389680 9.5818630, 47.9940879 8.5899209, 47.9956209 8.5645447, 47.9959086 8.5645447, 47.9939755 8.5399688, 47.9587454 8.5182969, 47.9228405 8.5057249, 48.8005963 9.2049961, 47.9977403 8.5298491, 47.9937431 8.5402147, 47.9938303 8.5900723, 48.9818800 9.5718630, 48.5460870 7.8906230, 48.5478963 7.8841324, 48.5584850 7.8601509, 48.5617709 7.9504028, 48.5629237 7.8546515, 48.5722846 8.2255376, 48.5760022 7.8292923, 48.5927521 7.8515502, 48.6055000 8.0325500, 48.6548090 8.0662569, 48.6606900 8.3591362, 48.6858580 8.1097150, 48.6916995 8.3591663, 48.7078830 8.3305170, 48.7093170 8.3642330, 48.7340793 8.3748358, 48.7537300 7.9730480, 48.7670670 8.3636330, 48.8069304 8.5273814, 48.8249429 8.1271170, 48.8328153 8.3659850, 48.9489909 8.3702649, 48.9574500 8.2972500, 48.9589170 8.2985830, 48.9791637 8.3244037, 48.9832531 8.3288457, 49.0187170 8.3479000, 49.0191830 8.3479500, 48.6402538 8.9301926, 48.9374320 8.3952437, 48.7308046 9.0893561, 48.2398830 7.7793830, 48.2579830 7.7931000, 48.2705952 7.8125847, 48.3110330 7.7605830, 48.3346474 7.8428322, 48.3554371 7.8002445, 48.3574902 7.8512044, 48.3734330 7.7886830, 48.3947330 7.8102000, 48.4001330 7.8933830, 48.4114480 7.7933680, 48.4274830 7.9020330, 48.4379830 7.9272000, 48.4479820 7.8659680, 48.4517717 7.8168926, 48.4725400 7.9013520, 48.4765210 7.8142310, 48.4938289 7.8211029, 48.4999694 7.9558417, 48.5229170 8.0998830, 48.5310170 7.9861170, 48.5326830 7.9557170, 48.5409774 8.0240442, 48.5472980 8.0623920 +48.8783323 2.3732739, 48.8882750 2.3740777, 48.8773675 2.4068219, 48.8649034 2.3999667, 48.8766834 2.4067529, 48.8742769 2.3568951, 48.8757672 2.3581886, 48.8648183 2.3992191 +49.4194835 8.7033812, 49.4258222 8.7062319, 49.3551484 8.6336513, 49.4270542 8.7105990, 49.4184666 8.7052069, 49.4245168 8.7056416, 49.4235710 8.7025718, 49.4242799 8.7072520, 49.4224817 8.7024542, 49.4229479 8.7068545, 49.4193290 8.7035781, 49.4221380 8.7051571, 49.4263381 8.7055314, 49.4188706 8.7007961, 49.4276600 8.7101416, 49.4243184 8.7025688, 49.4189138 8.7068425, 49.4254814 8.7024102, 49.4213140 8.7019771, 49.4268509 8.7026924, 49.4254256 8.7051858, 49.4195009 8.7025277, 49.4201952 8.7010712, 49.4208217 8.7059731, 49.4233178 8.7053934, 49.4276906 8.7058352, 49.4238991 8.7095045, 49.4206459 8.7039110, 49.4265814 8.7086544, 49.4256259 8.7093622, 49.4257275 8.7070484, 49.4179403 8.7025717, 49.4207145 8.7089359, 49.4222472 8.7095805, 49.4248984 8.7025175 +55.9384134 -3.2182308, 55.9612219 -3.2575527, 55.9450101 -3.1858398, 55.9018738 -3.4984923, 55.9301341 -3.1678546, 55.9722472 -3.1751421, 55.9605648 -3.1852708 +55.9241951 -3.2516849, 55.9453312 -3.3667171, 55.9482698 -3.1839334 +La bobine de fil, Fresque du Demi-Millénaire - Part 2, Le quartier des Eats-Unis (mur 18), Fresque Histoire des transports Lyonnais, Fresque "Lyon, la santé, la vie", Le mur du cinéma, La Fresque Lumineuse - La ville dans le futur, Espace Diego Rivera, Une cité industrielle (mur 4), Fresque de Shangaï, Le Théâtre des Charpennes, Abattoirs de la Mouche (mur 17), Annonce du Musée (mur 3), Années 1900 (mur 3), Cité idéale d'Egypte (mur 19), Cité idéale de Russie (mur 23), Cité idéale de l'Inde (mur 20), Cité idéale de la Côte d'Ivoire (mur 22), Cité idéale des USA (mur 24), Cité idéale du Mexique (mur 21), École (mur 10), École (mur 10), Etablissements sanitaires (mur 12), Habitations en communs, vue d'ensemble (mur 7), Habitations, vue rapprochée (mur 8), Hôpital de Grange-Blanche (mur 16), La gare, une perspective (mur 6), La tour d'horloges (mur 11), Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Le stade de Gerland (mur 15), Les hauts fourneaux (mur 14), Les services publics (mur 5), Tony Garnier Visionnaire (mur 2), Vue des usines (mur 13), Cité idéale de la Côte d'Ivoire (mur 22), Rue des grands chefs - Restaurant Paul Bocuse, Paul Bocuse - Restaurant Paul Bocuse, Fresque "Montluc - Jean Moulin", Fresque "Art et Industrie", Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, La Fresque du Demi-Millenaire - Part 1, La Dombes, Fresque de Meyzieu, Fresque des Fourchettes, Fresque idéale de Québec, Charlie Chaplin Bubbles, Mur peint : L’auberge savoyarde, La Fresque du Foyer, La Fresque Art Déco, Fresque RTE Lyon La Mouche, Fresque, Fresque, Fresque "Chez Jeanne", Fresque "Allée Arborée", Fresque "La Forge", Fresque "Les Diligences", Fresque "Les Vieux Métiers 1", Fresque "Les Vieux Métiers 2", La Fresque du Centenaire 1912-2012, La Fresque du Centenaire 1912-2012, Fresque "Gerland Biotechnologies", Poster en facade gratte ciel, Fresque des Roses - St Priest, Fresque des Roses - Lyon, Av Santy, Fresque Agir pour la biodiversité, Fresque aerosol, Fresque Le marathon de l'impossible and 45.7615378 4.9252989, 45.7242776 4.8539418, 45.7316295 4.8668787, 45.7484993 4.8788479, 45.7498654 4.8759864, 45.7549115 4.8434004, 45.7433556 4.8405258, 45.7318565 4.8358705, 45.7326668 4.8630359, 45.7375747 4.8616255, 45.7725199 4.8663498, 45.7321697 4.8664580, 45.7336465 4.8632348, 45.7328203 4.8629032, 45.7320947 4.8674966, 45.7330177 4.8657973, 45.7324535 4.8672057, 45.7331360 4.8666865, 45.7335600 4.8653728, 45.7325955 4.8671070, 45.7319545 4.8635870, 45.7321249 4.8634546, 45.7316965 4.8647521, 45.7323801 4.8642213, 45.7322374 4.8643323, 45.7323075 4.8663529, 45.7329498 4.8637779, 45.7314132 4.8640073, 45.7385048 4.8613236, 45.7387649 4.8607244, 45.7389336 4.8609359, 45.7328475 4.8659300, 45.7310051 4.8652929, 45.7331061 4.8636557, 45.7333891 4.8624614, 45.7315452 4.8648710, 45.7332067 4.8666311, 45.8155738 4.8472165, 45.8156435 4.8475277, 45.7493533 4.8609118, 45.6634167 4.8424264, 45.7209120 4.8541671, 45.7235048 4.8539594, 45.7222175 4.8540626, 45.7227953 4.8540163, 45.7249477 4.8538288, 45.8202824 4.8705136, 45.7664155 5.0049470, 45.7704495 4.8643856, 45.7342924 4.8626980, 45.7745993 4.8606941, 45.7450213 4.8660796, 45.7502318 4.8416473, 45.7513725 4.8390037, 45.7205996 4.8439283, 45.7697129 4.9524500, 45.7714030 5.0001735, 45.7318628 4.9995743, 45.7316843 5.0009960, 45.7317208 4.9997166, 45.7322290 4.9975134, 45.7340142 4.9964253, 45.7337846 4.9972670, 45.7449245 4.8424444, 45.7452687 4.8413678, 45.7252956 4.8413865, 45.7680770 4.8801051, 45.6946293 4.9406443, 45.7296178 4.8752517, 45.7463509 4.8459884, 45.7297744 4.8742560, 45.7551709 4.8469660, 45.8684698 4.8394062, 45.7434934 4.8478974, 45.7447945 4.9069783 +48.8507240 2.3518758, 48.8660977 2.3554138, 48.8643016 2.3480523, 48.8662844 2.3817490, 48.8957518 2.3879761, 48.8547934 2.3662431, 48.8551205 2.3589562, 48.8695018 2.3546892, 48.8957352 2.3886935, 48.8616153 2.3542965, 48.8705899 2.3500828, 48.8411575 2.3473052, 48.8327663 2.3893382, 48.8513494 2.3555880, 48.8536113 2.3476422, 48.8495079 2.3483856, 48.8585526 2.3597161, 48.8533658 2.3493036, 48.8526313 2.3500601, 48.8607161 2.3525007, 48.8960350 2.3884154, 48.8405179 2.3703276, 48.8465117 2.3551571, 48.8530966 2.3611794, 48.8762675 2.3826909, 48.8435231 2.3731854, 48.8418109 2.3577568, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8474726 2.3606473, 48.8546351 2.3638127, 48.8614029 2.3519903, 48.8590015 2.3547571, 48.8505164 2.3621847, 48.8612342 2.3554751, 48.8602237 2.3588061, 48.8590543 2.3618044, 48.8598775 2.3620895, 48.8581216 2.3616628, 48.8352761 2.4093810, 48.8586563 2.3821295, 48.8370020 2.3826461, 48.8421181 2.3562419, 48.8548859 2.3560679, 48.8612559 2.3587824, 48.8344502 2.3520875, 48.8582260 2.3619639, 48.8530932 2.3611938, 48.8576820 2.3627148 +514 +49.4189644 8.6822373, 49.4227392 8.5971994, 49.4313284 8.6416542, 49.4216061 8.6481916, 49.4014041 8.6551906, 49.3743420 8.6581351 +48.8337601 2.2980718, 48.8309772 2.2928903, 48.8339410 2.2950323, 48.8349198 2.2959694, 48.8385615 2.2891992, 48.8381491 2.2812684, 48.8811210 2.3732246, 48.8779567 2.3742972, 48.8781153 2.3727187, 48.8307104 2.3120538, 48.8367030 2.2977655, 48.8405834 2.2993396, 48.8463258 2.3017109, 48.8893373 2.3260663, 48.8822209 2.3332567, 48.8300409 2.3310810, 48.8332151 2.3611684, 48.8322056 2.3591376, 48.8712479 2.3628847, 48.8457070 2.3709161, 48.8778514 2.3653978, 48.8630548 2.3794488, 48.8563588 2.4021369, 48.8705460 2.3596280, 48.8297820 2.3231434, 48.8563936 2.4058269, 48.8560853 2.4051449, 48.8637600 2.3817121, 48.8316269 2.3219796, 48.8635138 2.4091631, 48.8518271 2.4017627, 48.8615895 2.3741154, 48.8602485 2.3756498, 48.8505112 2.3734697, 48.8460708 2.3737179, 48.8496820 2.3740608, 48.8490800 2.3750094, 48.8490486 2.3705522, 48.8551656 2.3600991, 48.8459906 2.3763165, 48.8474237 2.3715091, 48.8468588 2.3691970, 48.8934713 2.3255439, 48.8909446 2.3815154, 48.8472820 2.3181790, 48.8362003 2.3593757, 48.8863875 2.3186958, 48.8493049 2.3780822, 48.8493772 2.3775082, 48.8520216 2.4013947, 48.8521964 2.4026633, 48.8466612 2.3868559, 48.8475216 2.3868219, 48.8524263 2.3831212, 48.8538371 2.3820195, 48.8503861 2.3796236, 48.8495310 2.3784411, 48.8455986 2.3806304, 48.8507593 2.3788216, 48.8481410 2.3804390, 48.8824887 2.3152528, 48.8941438 2.3276936, 48.8332886 2.3557244, 48.8373701 2.2969471, 48.8662590 2.4060030, 48.8646392 2.4080329, 48.8651930 2.4052170, 48.8829824 2.3824508, 48.8541148 2.4028833, 48.8279466 2.3304154, 48.8619444 2.3516288, 48.8611025 2.3441314, 48.8500286 2.2891336, 48.8765487 2.3769364, 48.8752389 2.3825154, 48.8701184 2.3349370, 48.8773883 2.3713487, 48.8522577 2.3568176, 48.8443535 2.3549714, 48.8465773 2.3541793, 48.8618685 2.3509784, 48.8576627 2.3525871, 48.8587248 2.3501786, 48.8462572 2.3519644, 48.8637215 2.3528934, 48.8568317 2.3570851, 48.8572474 2.3590633, 48.8267666 2.3510620, 48.8257746 2.3474534, 48.8526580 2.3643423, 48.8658845 2.3575167, 48.8641612 2.3652384, 48.8885363 2.3534749, 48.8616550 2.3823490, 48.8405164 2.3219841, 48.8804129 2.3352691, 48.8794749 2.3336267, 48.8810172 2.3647737, 48.8814252 2.3658018, 48.8764651 2.3681086, 48.8383449 2.3457194, 48.8344303 2.3140331, 48.8620790 2.4013394, 48.8946928 2.3825532, 48.8943501 2.3144067, 48.8469243 2.3314911, 48.8721203 2.3123396, 48.8726364 2.3241496, 48.8804896 2.3190711, 48.8517936 2.3135511, 48.8466215 2.4086336, 48.8377558 2.3541054, 48.8387036 2.3509191, 48.8827594 2.3615206, 48.8830373 2.3593122, 48.8699837 2.3960859, 48.8790942 2.3629732, 48.8782374 2.3646053, 48.8825669 2.3666870, 48.8197848 2.3652117, 48.8448730 2.4055932, 48.8784075 2.3544102, 48.8410084 2.3943815, 48.8805633 2.3647086, 48.8796707 2.3636682, 48.8763896 2.3610152, 48.8803326 2.3639778, 48.8832959 2.3681138, 48.8859862 2.3714699, 48.8650067 2.2919269, 48.8374206 2.2895464, 48.8252367 2.3572513, 48.8671109 2.2875572, 48.8362585 2.3098681, 48.8503715 2.3790699, 48.8681484 2.2814134, 48.8662633 2.2740207, 48.8412244 2.3146196, 48.8416926 2.3144950, 48.8739761 2.3446348, 48.8525869 2.3545810, 48.8869795 2.3395686, 48.8556968 2.2748636, 48.8374709 2.3730609, 48.8314755 2.3541835, 48.8241809 2.3260188, 48.8232738 2.3262563, 48.8258667 2.3126560, 48.8468751 2.2700239, 48.8277034 2.3290464, 48.8714383 2.3749525, 48.8714917 2.3756604, 48.8425873 2.2683262, 48.8861537 2.3665372, 48.8291397 2.3173468, 48.8862628 2.3608446, 48.8899894 2.3635134, 48.8403968 2.2858802, 48.8451852 2.3793358, 48.8546996 2.3622532, 48.8873315 2.3475211, 48.8757382 2.2870119, 48.8427628 2.3131898, 48.8846035 2.3801294, 48.8287227 2.2733061, 48.8966748 2.3303545, 48.8957156 2.3308196, 48.8416043 2.3385745, 48.8282746 2.3160906, 48.8276845 2.3152274, 48.8471880 2.2956420, 48.8505880 2.3767286, 48.8573622 2.3923455, 48.8528949 2.2984341, 48.8451099 2.2604585, 48.8234260 2.3622734, 48.8237538 2.3645279, 48.8795652 2.3399721, 48.8782649 2.3446579, 48.8416777 2.3865802, 48.8356662 2.4056140, 48.8384665 2.3992857, 48.8390505 2.3976576, 48.8367225 2.4026707, 48.8420538 2.3352669, 48.8479330 2.3109984, 48.8400158 2.3885455, 48.8380676 2.3904670, 48.8372920 2.3914250, 48.8515655 2.3106825, 48.8573206 2.3799070, 48.8568774 2.3778976, 48.8791708 2.3545583, 48.8433099 2.2998521, 48.8422686 2.3028212, 48.8428121 2.3029849, 48.8766295 2.3386068, 48.8232376 2.3241574, 48.8623905 2.3858127, 48.8252485 2.3653047, 48.8235509 2.3617468, 48.8604567 2.3787781, 48.8941854 2.3817753, 48.8567231 2.3036505, 48.8316207 2.3444925, 48.8309991 2.3450497, 48.8448253 2.2941187, 48.8219529 2.3664594, 48.8241488 2.3575845, 48.8231660 2.3578863, 48.8264536 2.3293804, 48.8455609 2.2880163, 48.8703798 2.3425078, 48.8815370 2.2890680, 48.8814465 2.2860544, 48.8840798 2.2887768, 48.8642750 2.3750973, 48.8844394 2.3668122, 48.8279579 2.3273293, 48.8906856 2.3765193, 48.8328648 2.3160056, 48.8209152 2.3429194, 48.8217284 2.3424285, 48.8358292 2.2784139, 48.8465347 2.4059784, 48.8771396 2.3394367, 48.8777030 2.3395918, 48.8627753 2.2762117, 48.8627898 2.2765008, 48.8314375 2.3197845, 48.8378234 2.3078140, 48.8661247 2.3355594, 48.8767239 2.3326961, 48.8767816 2.3351954, 48.8747442 2.3555041, 48.8835914 2.3739721, 48.8649656 2.3746029, 48.8515852 2.2976307, 48.8695595 2.3743475, 48.8540049 2.4108468, 48.8580698 2.3901570, 48.8383400 2.3560643, 48.8466480 2.3513950, 48.8491900 2.3494261, 48.8286796 2.3431375, 48.8727378 2.3797947, 48.8942732 2.3207603, 48.8945377 2.3200415, 48.8934867 2.3227129, 48.8243403 2.3236549, 48.8273521 2.3254454, 48.8236051 2.3228034, 48.8314118 2.3268159, 48.8317243 2.3255633, 48.8730929 2.3615921, 48.8902931 2.3539796, 48.8912086 2.3476028, 48.8286520 2.3729316, 48.8443510 2.3492066, 48.8448929 2.3490511, 48.8947631 2.3433837, 48.8944528 2.3445585, 48.8931760 2.3432750, 48.8936140 2.3424950, 48.8699780 2.3603140, 48.8692770 2.3632250, 48.8689460 2.3599740, 48.8711600 2.3611170, 48.8718330 2.3625680, 48.8726030 2.3634490, 48.8551457 2.3064362, 48.8682200 2.3862795, 48.8569251 2.3724871, 48.8927820 2.3439810, 48.8652385 2.3467947, 48.8923110 2.3520290, 48.8442018 2.3394106, 48.8289915 2.3222506, 48.8593204 2.3472769, 48.8262063 2.3413104, 48.8856760 2.3378250, 48.8847970 2.3378803, 48.8528514 2.4064283, 48.8481389 2.4033143, 48.8285586 2.3331113, 48.8276535 2.3328559, 48.8513926 2.4064136, 48.8547850 2.2692675, 48.8651423 2.2891208, 48.8591269 2.4019235, 48.8600304 2.4040296, 48.8511503 2.3968083, 48.8863055 2.3474829, 48.8955331 2.3629901, 48.8523880 2.3766318, 48.8510502 2.3768840, 48.8507078 2.3790297, 48.8361116 2.3874192, 48.8235068 2.3533933, 48.8403649 2.3951878, 48.8907372 2.3457644, 48.8873229 2.3511583, 48.8376955 2.3463172, 48.8846893 2.3539417, 48.8416560 2.3224928, 48.8238291 2.3416075, 48.8577497 2.2739837, 48.8645340 2.4052672, 48.8780261 2.3268365, 48.8398765 2.2998351, 48.8816987 2.3281627, 48.8808802 2.3287802, 48.8360217 2.3527252, 48.8354391 2.3483666, 48.8498251 2.2722599, 48.8504305 2.2704038, 48.8528838 2.2756127, 48.8452361 2.4025749, 48.8805451 2.2927512, 48.8810529 2.2917751, 48.8872955 2.3492014, 48.8870640 2.3535779, 48.8825453 2.3671700, 48.8245686 2.3765029, 48.8813195 2.2953819, 48.8898589 2.3421554, 48.8906741 2.3434068, 48.8298993 2.3526634, 48.8281786 2.3525387, 48.8883534 2.3187513, 48.8890835 2.3224688, 48.8882779 2.2997302, 48.8939893 2.3329500, 48.8935546 2.3361391, 48.8947140 2.3351360, 48.8972639 2.3451996, 48.8979057 2.3340738, 48.8958814 2.3435581, 48.8912647 2.3345914, 48.8932962 2.3379872, 48.8493216 2.4063155, 48.8980433 2.3287001, 48.8979798 2.3377499, 48.8934867 2.3300359, 48.8928448 2.3280564, 48.8939770 2.3281101, 48.8942097 2.3280510, 48.8966030 2.3288474, 48.8932032 2.3271200, 48.8352792 2.2890637, 48.8220563 2.3588648, 48.8911913 2.3392274, 48.8499872 2.3478618, 48.8463001 2.3432338, 48.8498177 2.3482783, 48.8446190 2.3895985, 48.8497058 2.2914067, 48.8488722 2.2909525, 48.8516467 2.2919993, 48.8502983 2.2919285, 48.8430441 2.2833680, 48.8427407 2.2800381, 48.8569612 2.3997902, 48.8580950 2.4069089, 48.8574194 2.4075785, 48.8794256 2.3893510, 48.8824759 2.3233165, 48.8441370 2.3723808, 48.8533370 2.3079466, 48.8365811 2.3930159, 48.8457446 2.3932577, 48.8462449 2.3946154, 48.8682520 2.3960084, 48.8608742 2.3547652, 48.8644732 2.3715756, 48.8354190 2.3928675, 48.8389285 2.3961514, 48.8220200 2.3551611, 48.8713113 2.3039889, 48.8525737 2.3850093, 48.8777366 2.2878742, 48.8782149 2.3984639, 48.8761595 2.4036138, 48.8770014 2.4071325, 48.8814737 2.3729748, 48.8807820 2.3745741, 48.8843130 2.3091760, 48.8277275 2.3062018, 48.8287563 2.3015875, 48.8930590 2.3424350, 48.8750926 2.2837673, 48.8419136 2.3247626, 48.8385785 2.3227706, 48.8431110 2.2650609, 48.8594724 2.3491134, 48.8732334 2.3431543, 48.8774393 2.3494265, 48.8774984 2.3489986, 48.8849881 2.3071728, 48.8392226 2.3945147, 48.8446508 2.3731492, 48.8358462 2.2901616, 48.8852419 2.3788486, 48.8302344 2.3704299, 48.8814548 2.3450080, 48.8706548 2.3429479, 48.8657789 2.3469220, 48.8205834 2.3501740, 48.8234560 2.3498227, 48.8533833 2.3705439, 48.8239258 2.3642439, 48.8225364 2.3462505, 48.8227836 2.3470686, 48.8257161 2.3507275, 48.8257020 2.3460018, 48.8771653 2.3515517, 48.8763392 2.3556446, 48.8682998 2.4016012, 48.8697801 2.4028967, 48.8710424 2.4039943, 48.8720618 2.4046821, 48.8727710 2.3991263, 48.8650559 2.3971773, 48.8655264 2.3981686, 48.8344269 2.3672465, 48.8284908 2.3703198, 48.8258079 2.3604332, 48.8594207 2.3678969, 48.8248710 2.3196867, 48.8247915 2.3176000, 48.8301707 2.3337415, 48.8327495 2.3363992, 48.8333703 2.3323929, 48.8351459 2.3005345, 48.8353374 2.3022404, 48.8359317 2.3005525, 48.8440288 2.4105786, 48.8908851 2.3611676, 48.8263543 2.3123490, 48.8263472 2.3104526, 48.8274473 2.3073922, 48.8273336 2.3052629, 48.8372837 2.2784287, 48.8421188 2.2774869, 48.8260357 2.3595197, 48.8267984 2.3745150, 48.8276944 2.3706840, 48.8352679 2.2821201, 48.8558849 2.3751381, 48.8545384 2.3713228, 48.8287227 2.2995517, 48.8317316 2.3684804, 48.8395554 2.2619755, 48.8900586 2.3606383, 48.8715652 2.3861467, 48.8243982 2.3283690, 48.8437094 2.2827794, 48.8424843 2.2821195, 48.8418506 2.2815590, 48.8941162 2.3618889, 48.8933356 2.3615276, 48.8901273 2.3615642, 48.8397383 2.2615466, 48.8388211 2.2609376, 48.8900701 2.3596849, 48.8908274 2.3601975, 48.8903737 2.3602877, 48.8762839 2.3874942, 48.8258804 2.3538466, 48.8910933 2.3308427, 48.8840472 2.3777246, 48.8532483 2.3881569, 48.8310847 2.3808041, 48.8325943 2.3626569, 48.8276596 2.3564922, 48.8501827 2.3300326, 48.8729108 2.3892528, 48.8926192 2.3787994, 48.8594463 2.3795210, 48.8917249 2.3596358, 48.8933896 2.3598075, 48.8353878 2.3976074, 48.8393328 2.3898245, 48.8653879 2.3568423, 48.8858319 2.3683200, 48.8866975 2.3690587, 48.8918801 2.3632407, 48.8682722 2.3654615, 48.8557307 2.3714370, 48.8559510 2.3687418, 48.8632613 2.3690657, 48.8610703 2.3668902, 48.8615047 2.3648719, 48.8625898 2.3635210, 48.8624376 2.3641865, 48.8798043 2.3995910, 48.8294190 2.3760526, 48.8893342 2.3187256, 48.8435392 2.3876321, 48.8664075 2.3511385, 48.8752547 2.3898031, 48.8739410 2.3881658, 48.8740999 2.3854670, 48.8729667 2.3708014, 48.8536536 2.3652281, 48.8839440 2.2924260, 48.8841607 2.2936643, 48.8698850 2.3947954, 48.8869564 2.3228854, 48.8320028 2.3143006, 48.8764887 2.3444554, 48.8668204 2.3972017, 48.8708653 2.3088351, 48.8703111 2.3109794, 48.8438225 2.3306529, 48.8270270 2.3545480, 48.8441654 2.3422903, 48.8525204 2.3447674, 48.8436299 2.3520995, 48.8683492 2.3653361, 48.8444368 2.3317238, 48.8878098 2.3799348, 48.8455417 2.2847565, 48.8471374 2.2853376, 48.8640679 2.3650860, 48.8556183 2.3576323, 48.8725081 2.3789468, 48.8297066 2.3719377, 48.8658987 2.3445250, 48.8518380 2.3369161, 48.8368347 2.3064637, 48.8864904 2.3929252, 48.8409479 2.3520733, 48.8548553 2.3856848, 48.8551588 2.3869294, 48.8902682 2.3369864, 48.8648476 2.3661885, 48.8954171 2.3603570, 48.8462303 2.3082719, 48.8881816 2.3761106, 48.8224627 2.3258585, 48.8531572 2.3447239, 48.8495298 2.3495342, 48.8678864 2.3249680, 48.8406223 2.3162685, 48.8415260 2.3177790, 48.8516476 2.3430530, 48.8522113 2.3433310, 48.8799994 2.2917628, 48.8760421 2.3247263, 48.8259140 2.3418063, 48.8475433 2.3020749, 48.8848153 2.3335836, 48.8768943 2.3487181, 48.8340803 2.3449578, 48.8294924 2.3480229, 48.8483268 2.3315361, 48.8384271 2.3603013, 48.8718826 2.3260739, 48.8306192 2.3113448, 48.8708189 2.3031863, 48.8224695 2.3280079, 48.8867785 2.2961065, 48.8380124 2.3925384, 48.8393761 2.3972146, 48.8729941 2.3452007, 48.8363310 2.3511207, 48.8308373 2.3481222, 48.8328106 2.3467883, 48.8189800 2.3619660, 48.8852910 2.2958210, 48.8653095 2.3468349, 48.8780467 2.2960586, 48.8785810 2.2953365, 48.8785586 2.2954162, 48.8860217 2.2909345, 48.8342538 2.4039026, 48.8328046 2.3998654, 48.8897434 2.3684941, 48.8565550 2.3066461, 48.8662189 2.3411008, 48.8338577 2.3542234, 48.8588484 2.3622538, 48.8557977 2.3334124, 48.8537947 2.3371165, 48.8401916 2.3498220, 48.8405286 2.3497872, 48.8385999 2.2890636, 48.8410381 2.3194768, 48.8665493 2.2967911, 48.8732070 2.3032419, 48.8880020 2.3070560, 48.8894260 2.3021180, 48.8501962 2.3822724, 48.8469077 2.3843835, 48.8972873 2.3596764, 48.8588932 2.3539048, 48.8755295 2.3273771, 48.8757429 2.3272510, 48.8487020 2.3404334, 48.8341468 2.3292697, 48.8334796 2.3314573, 48.8772230 2.2922270, 48.8645795 2.2824038, 48.8338948 2.3299593, 48.8810540 2.2852110, 48.8839130 2.2907430, 48.8278199 2.3453108, 48.8746985 2.3800023, 48.8294976 2.3479900, 48.8746524 2.3059699, 48.8743208 2.3074302, 48.8798388 2.3745491, 48.8345685 2.3277223, 48.8824071 2.3708251, 48.8587325 2.3232162, 48.8736497 2.3266758, 48.8265944 2.3272409, 48.8538362 2.3322137, 48.8333843 2.3867041, 48.8808106 2.3727327, 48.8406281 2.3046706, 48.8533190 2.3669820, 48.8849774 2.3801611, 48.8854894 2.3815292, 48.8856226 2.3818987, 48.8830874 2.3878108, 48.8438379 2.3524738, 48.8438379 2.3524738, 48.8222496 2.3507278, 48.8851070 2.3036780, 48.8500752 2.3009300, 48.8496090 2.3539260, 48.8827302 2.3707486, 48.8609924 2.2838960, 48.8588106 2.2845183, 48.8306465 2.3335032, 48.8725875 2.3782042, 48.8755301 2.3910815, 48.8656747 2.3928548, 48.8827937 2.3812803, 48.8829828 2.3811149, 48.8755713 2.3983661, 48.8755863 2.3989012, 48.8767180 2.4047230, 48.8771405 2.4060238, 48.8591517 2.3557695, 48.8607522 2.3545715, 48.8608207 2.3543547, 48.8609593 2.3539532, 48.8610034 2.3538240, 48.8473351 2.3951813, 48.8472416 2.3961945, 48.8475546 2.3930901, 48.8476864 2.3973242, 48.8518800 2.3897180, 48.8505687 2.3925919, 48.8500483 2.3946347, 48.8575099 2.3809573, 48.8394381 2.3922677, 48.8395862 2.3939515, 48.8513422 2.3477785, 48.8745781 2.3873676, 48.8746258 2.3882005, 48.8753047 2.3926062, 48.8352480 2.2852870, 48.8583161 2.3282685, 48.8489230 2.3496710, 48.8367930 2.2958108, 48.8560138 2.2801813, 48.8568409 2.2789161, 48.8440022 2.2934092, 48.8642512 2.3689433, 48.8515116 2.3988887, 48.8907874 2.3784109, 48.8853720 2.2926050, 48.8583103 2.3822134, 48.8661157 2.3977226, 48.8671967 2.4092129, 48.8684503 2.4092879, 48.8621715 2.3774882, 48.8746232 2.3266224, 48.8467059 2.3087748, 48.8363398 2.2999746, 48.8653853 2.3686990, 48.8653218 2.3678518, 48.8413271 2.3076655, 48.8353741 2.3033228, 48.8477911 2.3189782, 48.8469433 2.3172689, 48.8685232 2.3413917, 48.8661744 2.3390884, 48.8833230 2.2987210, 48.8825490 2.2939790, 48.8615259 2.3704088, 48.8429707 2.3067870, 48.8642079 2.3555687, 48.8840313 2.3391067, 48.8616536 2.3637831, 48.8329453 2.2890084, 48.8670104 2.3443314, 48.8545691 2.3624284, 48.8410290 2.3406982, 48.8605092 2.3788107, 48.8547397 2.3848709, 48.8643859 2.3991316, 48.8298427 2.3644959, 48.8759393 2.2895530, 48.8619514 2.3325055, 48.8364245 2.3944189, 48.8770775 2.3600536, 48.8773723 2.3588805 +37.8163406 -122.3719841, 37.8159189 -122.3712035, 37.8198117 -122.3663991, 37.8240897 -122.3725534, 37.8217995 -122.3675153, 37.8251277 -122.3701037, 37.8251958 -122.3698336, 37.8282634 -122.3718811, 37.8298005 -122.3733581, 37.8269448 -122.3774052, 37.8219781 -122.3678899, 37.8183698 -122.3702624, 37.8299019 -122.3752682, 37.8283168 -122.3771872, 37.8199566 -122.3664933, 37.8231753 -122.3748357, 37.8241714 -122.3754505, 37.8167937 -122.3722982 +yes +yes +asphalt +55.9048041 -3.1580079 +48.8688011 2.3433065, 48.8315179 2.3484655, 48.8478026 2.3022063, 48.8395100 2.3008865, 48.8425547 2.3220548, 48.8939173 2.3145811, 48.8634631 2.2867213, 48.8383335 2.2781281, 48.8330438 2.4150719, 48.8423448 2.4010169, 48.8208661 2.3326924, 48.8213634 2.3309274, 48.8199947 2.3340110, 48.8434266 2.3750303, 48.8434372 2.3750054, 48.8440016 2.3736234, 48.8440277 2.3735686, 48.8443850 2.3728793, 48.8443962 2.3728912 +49.4111306 8.6979715 +yes +yes +48.8494725 2.3556898 +48.8950879 2.3531779 +yes +49.4276763 8.6857958, 49.4038333 8.6771587, 49.4171595 8.6617457, 49.4147558 8.6660779, 49.4134202 8.6738393, 49.4192295 8.7567625, 49.4082107 8.6921228, 49.4091698 8.6936091, 49.4041276 8.6763300, 49.4172710 8.6921830, 49.4124311 8.7120085, 49.3804963 8.6875192, 49.4031182 8.6470339, 49.3989298 8.6889417, 49.4107889 8.7060227, 49.4065233 8.6910827, 49.4013623 8.6726870, 49.4089481 8.7124297, 49.4121807 8.6993722, 49.3656248 8.6889494 +Ibis, BVJ Paris-Louvre, Hôtel de Rouen, Hôtel Saint-Honoré, Hôtel Montpensier, Hôtel Louvre Bon Enfants, Hôtel Vendôme, Hôtel Costes, Hôtel Vivienne, Hôtel des Boulevards, Hôtel Sainte-Marie, Hôtel Paris Rivoli, Hôtel du Loiret, Hôtel du Septième Art, Hôtel Caron de Beaumarchais, Jardins de Paris Marais-Bastille, Hôtel de la Place des Vosges, Hôtel de Nice, Hôtel du Commerce, Hôtel Esmerelda, Port-Royal-Hôtel, Hôtel du Levant, Maitre Albert B&B, Le Clos Medicis, L'Hôtel, Victoria Palace Hotel, Hôtel Chomel, Hôtel Lindbergh, Hôtel du Champ de Mars, Hôtel Saint-Dominique, Hôtel Duquesne Eiffel, Hôtel de la Tulipe, Grand Hôtel Leveque, Timhôtel Best Western Tour Eiffel Invalides, Phytéas's houseboat B&B, Four Seasons Hôtel George V, Hyatt Regency Paris - Madeleine, Hôtel de Lille, Perfect Hotel & Hostel, Hôtel Vicq d'Azir, Hôtel du Terrage, Comfort Hotel Gare de l'Est, Albert 1er Hotel, Appel, Hôtel Hangely, Hôtel Le Quartier République, Le Marais, Le Général Hôtel, Classics Hôtel, Grand Hôtel Nouvel Opera, Hôtel de Nemours, Hôtel du Nord et de l'Est, Blue Planet Hostel, Hôtel Prince Albert, Hôtel de la Porte Dorée, Hôtel de l'Aveyron, Corail Hotel, Hôtel Le Quartier Bastille, Le Faubourg, Hôtel Palym, Hôtel Le Quartier Bercy - Square, Novotel, Kyriad Italie Gobelins, Hôtel Ibis Paris Avenue d'Italie, Timhotel Italie, Jack's, La Manufacture, Mercure Gobelins, Holiday Inn Express Paris place d'Italie, Hôtel Villa Lutece, Hôtel du Lion, Aloha Youth Hostel, Le Parc, Hôtel Eldorado, Hôtel Prince Albert Monceau, Hôtel Saint-Cyr Étoile, Hôtel Bonséjour, Hôtel Sofia, Hôtel des Arts, Hôtel Eden Montmartre, Paris Hotel, Terrass'hôtel, Hôtel Bonne Nouvelle, Tiquetonne Hôtel, Tryp Hôtel Paris François, Hôtel Victoires Opéra, Hôtel du Marais, Grand Hôtel des Arts et Metiers, Hôtel Royal Bel Air, Hôtel Carladez Cambronne, Hôtel Novotel, Hôtel Ibis Cambronne, Novotel Pari Gare Montparnasse, Hôtel Kuntz, Hôtel Le Littré, Hôtel Crimée, Hôtel Ermitage, Hôtel Balzac, Hôtel Acacias Etoile, Le Grand Hôtel Intercontinental, Ibis, Le Vélodrome, Hôtel Royal Aboukir, Grand Hôtel Leveque, Hôtel Sofitel Le Faubourg, Hôtel Astor Saint-Honoré, Crowne Plaza, Hôtel Verlain, Hôtel Antinéa, Hôtel Valadon, Hôtel États-Unis Opéra, Hôtel L'Horset Opéra, Hôtel Saint-Cyr Étoile, Hôtel Val Girard, Alizé Grenelle, Beaugrenelle Saint-Charles, Hôtel Scribe, Holiday Inn, Hôtel Cluny Square, Hôtel de Suez, Hôtel de la place des Alpes, Hôtel Paris Est Lafayette, Hôtel du Prince Eugène, Hôtel Apostrophe, Hôtel La Tour d'Auvergne, Grand Hotel Français, Grand Hôtel Doré, Hôtel Sublim Eiffel, Hôtel Albouy, Relais du Pré, Hôtel du Pré, Résidence du Pré, Au Manoir Saint-Germain des Prés, Adagio Paris Montmartre, Kube Hotel, Hôtel Cujas Panthéon, Hôtel Saint-Charles, Hôtel deVillas, Idéal Hotel, Montparnasse Rive Gauche, Citadines Place d'Italie, Hôtel Prince Albert, Ibis, Sport Hotel, Hôtel Kyriad, Novotel Paris Bercy, Hôtel Ibis Styles Paris-Bercy, Brebant, Hôtel Plaza Élysées, Hôtel Altona, Hôtel Losserand Montparnasse, Wattignies Hôtel, Hôtel Bercy Gare de Lyon, Hôtel Allegro, Terminus - Lyon, Viator, Hôtel du Midi, Holiday Inn, Hôtel Saint-Hubert, Azur, Lyon Bastille, Hôtel Adriatic, Mercure, Concordia, Hôtel Helvetia, Hôtel de Marseille, Hôtel Alexandrie, Nièvre Hôtel, Modern's, Bel Oranger, Hôtel de l'Aveyron, Gare de Lyon, Aurore Best Western, Hôtel Europe, Concorde Saint-Lazare, Hôtel Mignon, Alcyon, Hôtel Prince, Le central, Hôtel Pont Royal, ibis, Hôtel Marriott, Hôtel Coypel, Hôtel des Arts, Hôtel Dacia, Convention Montparnasse, Albe Hôtel Saint-Michel, Formule 1, Hôtel Henri IV, Hôtel Victoria Châtelet, Halle Hotel, Hôtel Britannique, Hôtel All Seasons Paris XV Lecourbe, Hôtel des Olympiades, Hôtel Régina, Hôtel du Louvre, Hôtel Louvre Piémont, Hôtel Normandy, Pavillon Louvre Rivoli, Hôtel Louvre Saint-Anne, Hôtel Opéra Maintenon, Hôtel Prince Albert Louvre, Campanile, Londres Saint-Honoré, Meliã Vendôme, Hôtel d'Aubusson, Hôtel France d'Antin, Hôtel France d'Antin, Hôtel à la Villa Saint-Martin, Holiday Inn Paris Notre-Dame, Jardin de Cluny, Hôtel de Lutèce, Hôtel Saint-Louis, Hôtel des Deux Iles, Folkestone Opéra, Sydney Opéra, Hôtel Acacias, Hôtel Rivoli, Hôtel De La Bretonnerie, Prince de Galles, Hôtel Jeanne d'Arc, Hôtel Turenne, Hôtel Saint-Louis Marais, Hôtel du Plat d'Étain, Hôtel de la Paix République, Hôtel Nazareth, Austin's Arts et Métiers Hôtel, Paris France Hôtel, Hôtel du Marais, Gardette Park Hôtel, Miramar, Timhotel Montparnasse, Printania, Hôtel Gay-Lussac, Ibis, Campanile, Appart' Valley, Little Palace Hotel, Hôtel Saint-Paul Rive Gauche, One by the Five, Holiday Inn : Gare de L'est, Hôtel Jardin Le Bréa, Le Petit Trianon, Hôtel Beauchamps, Hôtel du Rond-Point des Champs-Élysées, Hôtel Elysée Park, Hôtel Mathis Élysées, Le 123 Elysées, Le Bristol, Timhotel Élysée, Royal Madeleine, Hôtel Opal, Vintage Hostel Near Gare du Nord, Hôtel Berne Opéra, Hôtel de la Flèche d'Or, Grand Hôtel du Havre, Hôtel Britannia, Hôtel de Dieppe, Hôtel Place de Clichy, Étoile Saint-Honoré, Hôtel Étoile Friedland, Champs-Élysées Plaza, Hôtel California, Hôtel du Colisée, Hôtel Amarante Champs-Élysées, Hôtel Powers, Hôtel de la Trémoille, Hôtel Élysées Régencia, Hôtel La Bourdonnais, Hôtel Le Walt, Hôtel de Vigny, hötel Mayflower, Persing Hall, Fouquet's Barrière, Hôtel Le Monna Lisa, Mercure : Paris-La Villette, Holiday Inn Express : Hôtel Paris-Canal De La Villette, Hôtel du Panthéon, Faubourg 216-224, Faubourg 216-224, Timhotel, Hôtel Plaza La Fayette, Hôtel Bristol Nord, Hôtel Montana, Park Hyatt Paris -Vendome, Hôtel de France, Marciano, Excelsior Hôtel Varlin, Grand Hôtel de l'Univers-Nord, Hôtel Pullman Paris Bercy, Hôtel George Opera, Hôtel Sibour, Ibis, Home Business Residence, Hôtel des Trois Gares, Hôtel Acte V, Hôtel Américain, Hôtel Georgette, Hôtel Raphael, Hôtel Baltimore, Hôtel Ambassade, Villa des ambassadeurs, Hôtel Victor Hugo, Résidence Chalgrin, Résidence Impériale, Color Hotel, Holliday Inn, Hôtel Forest Hill La Villette, Hôtel Gavarni, Ibis Budget, Hôtel Atlantique, Hôtel Jeff, Hôtel Résidence Foch, TimHotel, Hôtel Elysa-Luxembourg, Hôtel Ribera, Hôtel La Fayette, Queen's Hôtel, Hôtel du Square, Holiday Inn Garden Court : Paris-Auteuil, Hôtel Studio, Hôtel Merryl, Hôtel de Bellevue Paris, Hôtel Le Régent, Jules Cesar, Hôtel Les Rives de Notre-Dame, Hôtel Notre-Dame, Hôtel Amiot, Camélia Hôtel, Le Méditel, Familia Hôtel, Hôtel Minerve, Hôtel Le Saint-Jacques, Hôtel Moderne Saint-Germain, Hôtel Sully Saint-Germain, Hôtel des Grands Hommes, Le Lotti, Eiffel Kennedy, Hôtel Le Derby Alma, Hôtel Les Théâtres, Quality Hotel Opéra - St Lazare, Hôtel Derby Eiffel, Hôtel Arcadia, Hôtel Lodge du Centre, Hôtel des Victoires, Hôtel Ronceray, Les Relais de Paris, Baldi, First Hôtel, Hôtel Ségur, Bailli de Suffren, Daumesnil Hôtel, Saint-Georges, Mercure Paris Terminus Nord, Quality Hotel Gare Du Nord, Hôtel d'Amiens, Hôtel Plaza Athénée, Le Meurice, Hôtel Saint-James & Albany, Original, l’Apostrophe, William's Opera, Ibis Paris Gare de l'Est, Élysée, Hôtel de Banville, La Maison Blanche, Home Latin, Marignan, Mercure, Européen, Hôtel de Nantes, Hôtel d'Espagne, Hôtel Montalembert, Grand Hôtel du Bel Air, Hôtel du Petit Louvre, Hôtel Delos Vaugirard, Hôtel Chatillon Paris Montparnasse, AVALON HOTEL, Hôtellerie Paris Saint-Honoré, La croix de Malte, Grand Hotel Haussmann, Hôtel Helder Opera, Hôtel London, Hôtel Opera Vivaldi, Hôtel Langlois, Hôtel des Alpes, Hôtel Chamonix, Hôtel Aris Nord, Ibis Budget, Metropole La Fayette, Baudelaire, Alison, Amarante Beau Manoir, La Sanguine, Le Clos d'Alésia, Hipotel Paris Nation, Hôtel du Moulin, France Eiffel, Le Colbert, Modern Hotel, Luxor Bastille, Le Versigny, Best Western Aïda Marais, Hôtel des 3 nations, Hôtel du Prince Eugène, Hôtel Excelsior, Hôtel Tours Magenta, ibis Styles Paris Alesia Montparnasse, Résidence Universitaire, Résidence Mouffetard, Hôtel Westminster, Mandarin Oriental, W Paris Opéra, Comfort Hotel, Relais Saint-Jacques, Hôtel Banke, Castille, Thoumieux, Hôtel Thérèse, Le Seven, Hôtel des Écoles, Ibis Paris Brancion parc des expositions, Royal Saint-Germain, Hôtel Regyn's Montmartre, Clichy Hôtel, Little Regina, Hôtel ibis, Hôtel André Gill, Hôtel de Nevers, La Soummam, Hôtel Belambra Magendie (Touring Hotel), Hôtel Mogador, Holiday Inn Paris Opéra, Hôtel du Casino, Hôtel Antin Trinité, Opéra D'Antin, Plaza Opera Hotel, Villa Lamartine Opéra, Hôtel Impérial, Terminus Vaugirard, Hôtel Mercure Paris Montmartre Sacré Coeur, Hôtel Ibis Paris Montmartre, Les Gobelins, Art Hotel Batignolles, Hôtel de Flore 108 rue Lamarck, Holliday Inn Garden Court, Le Rocroy, Hôtel Ibis Paris Sacré-Coeur, Hôtel des Arènes, Hôtel Studia, Renaissance Paris Vendôme Hotel, Hôtel de la Chope, Mercure Paris Monty Opéra, Hôtel Le M, Hôtel de Sévigné, Citadines, Étoile Saint-Ferdinand, Citadines Apart'Hotel, Le Pavillon Frontenac, Hôtel Terminus Montparnasse, Hôtel Mercure, Libertel Montmartre Duperré, Hôtel Splendid, Hôtel des Buttes Chaumont, Hôtel de la Comète, Hôtel Berkeley, Platine, New Hotel Saint-Lazare, Hôtel Londres & New-york, Hôtel des Arts, Hôtel Novotel Paris Porte d'Orléans, Hôtel Le Pavillon Bastille, Hôtel Paris Bastille, Shangri-La Hotel, Les jardins d'Alésia, 61 Paris Nation Hôtel, Palma Hotel, Le Baron, AmHotel Italie, Arian Hotel, Windsor Opera, Ideal Hotel, Meridional, Mercure Paris Vaugirard Porte de Versailles, Porte de Versailles Hotel, Hôtel Riquet, Hôtel de la Poste, Hôtel Clarisse, Hôtel Exelmans, Hôtel Boileau, Hôtel Median Paris Porte de Versailles, Villa royale Montsouris, Hôtel Virginia, Hôtel Montsouris Orléans, Hôtel Beaunier, Cécil Hotel, Parc Hotel, Sports Hotel, Hôtel du Parc Saint-Charles, Hôtel Source, Bellevue et du Chariot d'Or, Timhotel Nation, Dupleix Hotel, Hôtel Tolbiac, Best Western, Ibis, Hôtel Torcy, Hôtel de Belfort, Hôtel Palais de Chaillot, Hôtel Eiffel Turenne, Hôtel Belfort, Hôtel Mirific, Cambrai, Hôtel Le Petit Belloy, Hôtel Belloy Saint-Germain, Quality Suites, Hôtel de Paris Montmartre, Hipotel, Hôtel Pavillon de la reine, Hôtel des Pyrénées, Best Western Amiral Hotel, Ibis, Nouveau Paris Park Hotel, Hôtel Magellan, Caffè Cosy, Armoni Hotel, Hôtel Champerret-Héliopolis, Hôtel Charma, Hôtel Flor Rivoli, Hôtel Dechampaigne, Grand hôtel amelot, Louis II, Cordelia, Hôtel Bergère Opéra, Hôtel marais bastille, Hôtel Villa des Ternes, Hôtel Champerret-Élysées, Notre-Dame, Jardin de Villiers, Pavillon Courcelles Parc Monceau, Pavillon Villiers Étoile, Holiday Villa, Beauséjour Montmartre, Balcon de Charonne, Hôtel Mont Blanc, Hôtel Paris Le Marquis Eiffel, Europe - St Séverin, Hôtel Royal Saint-Michel, Hôtel Saint-Charles, Paris - Tour Eiffel, Hôtel du Parc Saint-Séverin, Hôtel Chopin, Hôtel de la Paix, Hôtel Saint-Christophe, Hôtel Perreyve, Hôtel de l'Avenir, Hôtel de France, Istria Montparnasse, Hôtel madeleine plaza, Hôtel Saint-Merry, Andréa Rivoli, Hôtel de Reims, Diva Opéra, Résidence Châtillon, Hôtel de l'Alma, Hôtel de la Vallée, Hôtel Royal Saint-Honore, Hôtel La Bourdonnais, Villa Montparnasse, IBIS STYLES PARIS PIGALLE MONTMARTRE HOTEL, IBIS STYLES PARIS PIGALLE MONTMARTRE HOTEL, Claude Bernard, Villa Panthéon, Fertel Maillot, Central hotel, Hôtel de Neuville, Hôtel CÉ, Hôtel Novanox, Comfort Hotel Mouffetard, Hôtel de la Sorbonne, Mercure, Grand Hôtel de Normandie, Hôtel du Calvados, Austin's Saint-Lazare, Austin's Saint-Lazare, Élysées Union, Hôtel Best Western, Hôtel Michelet Odéon, Trianon Rive gauche, Radisson Blu Le Dokhan's Hotel, Plaza Tour Eiffel, Adagio Aparthotel, Hôtel Relais Bergson, Hôtel Libertel Canal Saint-Martin, Timhotel, Hôtel de la Perdrix Rouge, Hôtel du Marché, Best Western Quartier Latin, Best Western Quartier Latin, Hôtel Villa Garibaldi, Academie Hotel, Le Richemont, Hôtel du Triangle d'Or, Hôtel Noir, Hôtel de Sers, Hôtel Bel Ami, Hôtel Edouard 7, Hôtel Eiffel Trocadero, Hôtel Franklin, Golden Hotel, Hapimag, Hôtel duO, The Peninsula Paris, Hôtel Mon Rêve Amadeus, Hôtel Mon Rêve Amadeus, Hôtel du Collège de France, Best Western Empire Élysées, Hôtel Le Bienvenue, Auberge flora, Hôtel du Cadran, Le citizen hotel, Canal de l'Ourcq, Inter-Hôtel Ajiel, Le Robinet d'Or, Hôtel Vintimille, Ibis, Saint Sébastien, Hôtel de bourgogne, slh.com, Marais home, Mareuil, Vienne, Beaumarchais, Paris Voltaire, Est hotel, Meteore, http://www.hoteldevenise.fr/, Gabriel, Le 20, Hôtel Pullman Montparnasse, Au Pacific Hôtel, Novotel, La Herse d'Or, FIAP, Splendid Hôtel, Hôtel de l'Avre, Hôtel Amiral Fondary, Best Western Eiffel Cambronne, Pavillon Porte de Versailles, Hôtel Novotel, Lutèce Hôtel, Eiffel Seine, Hôtel Ares Eiffel, Hôtel Mercure, Campanile Paris XV - Tour Eiffel, Hôtel Lille-Louvre, Hôtel Washington Opéra, Timhotel Palais Royal, Hôtel Choiseul Opera, Agora Saint-Germain, Hôtel Diana, Best Western, Adagio Access Paris Bastille, Hôtel Bastille Speria, Hôtel de Senlis, Hôtel Delavigne, Hôtel de l'Espérance, Hôtel All Seasons, Hôtel de Bordeaux, Abricôtel, Hôtel Lutetia, IBIS, Comfort Hotel Nation - Paris 11, Ibis, Hôtel Edouard VI, Hôtel de Crillon (fermé), Hôtel d'Albion, Holiday Inn, Paix Madeleine, Hôtel Opéra Marigny, Chavanel hôtel, Best Western Premier Opéra Diamond, Hôtel Cervantes Paris, Villa Saxe Eiffel, L'Hôtel du Collectionneur Arc de Triomphe, Sofitel Arc de Triomphe, Axel Opéra, Hôtel Royal-Bergère, Hôtel Rotary, Hôtel Aurore Montmartre, Le Secret de Paris, Hôtel Touring, Hôtel France Albion, Hôtelp Chateaudun Opéra, Monterosa, Hôtel Touraine Opera, Hôtel Vernet, Super Hotel, Hôtel Lilas-Gambetta, Viator, Camélia International, Hôtel de l'Avenir, Nice Hotel, Timhotel Montmartre, Mercure - Paris Bastille, Ibis Gare De Lyon Diderot, Hôtel Claret, Aladin, Hôtel du Roussillon, Hôtel du Commerce, Hôtel Verlaine, Mercure Blanqui Place d'Italie, Hôtel Ambre, Hôtel Ibis Italie Tolbiac, Ibis, Hôtel Manet, Hôtel Mercure, Hôtel Rubens, Ibis Styles Tolbiac Bibliothèque, Hôtel Majesty, Hôtel Novex, Royal Fromentin, Hôtel de la Paix, Hôtel Apollinaire, Marriott Rive Gauche, Solar Hôtel, Mistral Hotel, Hôtel Agenor, Hôtel Mercure Paris XV, Hôtel du Maine, Hôtel Terminus Orléans, Paris Orléans, Hôtel - Villa du Maine, Hôtel Acropole, Hôtel Duret, Saint-James, Hôtel Alexander, Villa Glamour, Hôtel Auteuil Tour Eiffel, Paris Arc de Triomphe, Le Pierre, Hôtel Astrid, Splendid Étoile, Hôtel Méridien, Hôtel Balmoral, Hôtel Le Villiers, Hôtel Belfast, Hôtel La Régence, Hôtel Mercedes, Villa Brunel, Hôtel Stella Etoile, Hôtel Novotel Paris Tour Eiffel, Adagio Paris Tour Eiffel, Hôtel Paris Bercy, Le Ritz, Hôtel Kyriad, Timhotel Berthier Paris XVII, Mama Shelter Hôtel, Lilas Blanc Grenelle, Hôtel Le Tourville, Hyatt Regency Paris Etoile and 48.8403064 2.3155776, 48.8626324 2.3411196, 48.8645200 2.3405468, 48.8611819 2.3436118, 48.8643625 2.3363084, 48.8629098 2.3381793, 48.8670031 2.3287060, 48.8667055 2.3279639, 48.8711661 2.3415044, 48.8696872 2.3486973, 48.8695728 2.3486760, 48.8559607 2.3573425, 48.8569202 2.3552931, 48.8534997 2.3618939, 48.8564448 2.3568646, 48.8539504 2.3631680, 48.8544261 2.3652418, 48.8566486 2.3558134, 48.8487987 2.3483264, 48.8523050 2.3468998, 48.8369895 2.3513817, 48.8528444 2.3444884, 48.8507040 2.3495969, 48.8486356 2.3404438, 48.8563230 2.3352294, 48.8457742 2.3243407, 48.8519056 2.3254299, 48.8521505 2.3260910, 48.8563970 2.3060759, 48.8599286 2.3087880, 48.8526441 2.3090461, 48.8599838 2.3062819, 48.8571597 2.3065436, 48.8604075 2.3104739, 48.8643297 2.3182161, 48.8687840 2.3006774, 48.8729139 2.3216323, 48.8767170 2.3485948, 48.8798562 2.3434989, 48.8763467 2.3710708, 48.8773197 2.3627064, 48.8711954 2.3550205, 48.8794148 2.3584116, 48.8651810 2.3673647, 48.8661043 2.3685294, 48.8670657 2.3747048, 48.8662470 2.3669000, 48.8553916 2.3882956, 48.8551772 2.3787982, 48.8651917 2.3728160, 48.8658412 2.3674790, 48.8456631 2.3753357, 48.8467986 2.3778628, 48.8349874 2.4067169, 48.8470135 2.3707909, 48.8473827 2.3714639, 48.8490527 2.3858203, 48.8462381 2.3733925, 48.8395127 2.3927042, 48.8452783 2.3754729, 48.8337413 2.3549627, 48.8301361 2.3564885, 48.8283030 2.3473418, 48.8328956 2.3593239, 48.8329337 2.3553280, 48.8321073 2.3538107, 48.8315527 2.3572533, 48.8363513 2.3601974, 48.8333693 2.3319728, 48.8421541 2.3046648, 48.8671624 2.2857115, 48.8850200 2.3249065, 48.8867808 2.3137817, 48.8804472 2.2855736, 48.8861896 2.3361789, 48.8846951 2.3480296, 48.8839698 2.3264000, 48.8928537 2.3428303, 48.8801463 2.3372618, 48.8866384 2.3330799, 48.8693546 2.3495274, 48.8644952 2.3495828, 48.8713219 2.3426051, 48.8649114 2.3469659, 48.8615532 2.3650131, 48.8662848 2.3574075, 48.8460247 2.3981137, 48.8421016 2.3032187, 48.8399264 2.3032478, 48.8471379 2.3013512, 48.8384924 2.3151043, 48.8784567 2.3583300, 48.8454273 2.3241304, 48.8911605 2.3763728, 48.8717563 2.3927092, 48.8733283 2.3004615, 48.8766342 2.2907798, 48.8706550 2.3303465, 48.8273283 2.3211689, 48.8381218 2.2586505, 48.8685689 2.3500099, 48.8574419 2.3062436, 48.8684048 2.3213802, 48.8728474 2.3193054, 48.8672306 2.3655555, 48.8649422 2.3776744, 48.8782575 2.3739591, 48.8567926 2.3055714, 48.8689702 2.3336520, 48.8690718 2.3338065, 48.8867704 2.3058396, 48.8407077 2.2993225, 48.8467419 2.2878241, 48.8472201 2.2858925, 48.8704849 2.3297146, 48.8376960 2.3062844, 48.8515866 2.3435085, 48.8498226 2.3425905, 48.8321555 2.3588862, 48.8772610 2.3543434, 48.8506769 2.3924817, 48.8417734 2.3317486, 48.8789004 2.3448758, 48.8515615 2.3906806, 48.8390977 2.3974259, 48.8452340 2.3101111, 48.8707687 2.3598696, 48.8780025 2.3475708, 48.8775316 2.3471837, 48.8784021 2.3475786, 48.8537719 2.3323137, 48.8831159 2.3425480, 48.8868146 2.3594625, 48.8481953 2.3419715, 48.8271300 2.3482326, 48.8400155 2.3612991, 48.8675681 2.3752283, 48.8316922 2.3218269, 48.8305203 2.3549865, 48.8472227 2.3777378, 48.8350411 2.4053733, 48.8360061 2.4060195, 48.8362217 2.4040125, 48.8351933 2.3876342, 48.8388012 2.3804572, 48.8384022 2.3811331, 48.8715269 2.3441475, 48.8746470 2.3057595, 48.8824615 2.3498469, 48.8337124 2.3176364, 48.8367389 2.3923200, 48.8393596 2.3892373, 48.8430418 2.4051424, 48.8458059 2.3717510, 48.8493585 2.3744491, 48.8468441 2.3725504, 48.8472258 2.3726440, 48.8467471 2.3717077, 48.8470172 2.3723416, 48.8462447 2.3719493, 48.8468976 2.3728340, 48.8471104 2.3720281, 48.8444405 2.3728366, 48.8460864 2.3771827, 48.8457514 2.3754798, 48.8474633 2.3712106, 48.8473704 2.3710629, 48.8472924 2.3712576, 48.8470930 2.3706217, 48.8469719 2.3704290, 48.8468671 2.3702623, 48.8468041 2.3701620, 48.8457840 2.3705756, 48.8778477 2.3549476, 48.8756394 2.3255995, 48.8470895 2.3710844, 48.8499435 2.3756832, 48.8548916 2.3050685, 48.8471437 2.3484561, 48.8565619 2.3273421, 48.8920695 2.3152913, 48.8710747 2.3050358, 48.8333040 2.3565158, 48.8332640 2.3559756, 48.8492256 2.3422373, 48.8371967 2.2971923, 48.8531115 2.3447283, 48.8228560 2.3164995, 48.8567159 2.3418236, 48.8578252 2.3467061, 48.8592331 2.3473460, 48.8582914 2.3464129, 48.8388814 2.2893381, 48.8936639 2.3472231, 48.8638091 2.3326325, 48.8629051 2.3356927, 48.8648471 2.3365400, 48.8640595 2.3341241, 48.8652388 2.3362171, 48.8664704 2.3357313, 48.8667958 2.3359208, 48.8659945 2.3315480, 48.8505420 2.2888306, 48.8650960 2.3319535, 48.8668168 2.3257587, 48.8547614 2.3395044, 48.8692604 2.3339332, 48.8692690 2.3340349, 48.8748178 2.3602198, 48.8527864 2.3423027, 48.8497835 2.3468492, 48.8524421 2.3546323, 48.8525926 2.3542186, 48.8523187 2.3549674, 48.8722043 2.3250526, 48.8734124 2.3240936, 48.8586565 2.3537620, 48.8567557 2.3551825, 48.8267304 2.3324502, 48.8583361 2.3560324, 48.8691274 2.3007665, 48.8555439 2.3632131, 48.8550844 2.3634743, 48.8523982 2.3636825, 48.8684818 2.3557047, 48.8682462 2.3617582, 48.8678710 2.3558815, 48.8659462 2.3570719, 48.8663823 2.3605584, 48.8664540 2.3608723, 48.8630139 2.3614339, 48.8609881 2.3789048, 48.8422868 2.3203371, 48.8429153 2.3212276, 48.8644122 2.3662794, 48.8442494 2.3422817, 48.8794453 2.3684329, 48.8811018 2.3654227, 48.8429257 2.3631379, 48.8675046 2.3539915, 48.8496648 2.3402192, 48.8377970 2.3464058, 48.8759291 2.3587392, 48.8449596 2.3251083, 48.8428926 2.3298403, 48.8535941 2.3383125, 48.8708870 2.3092693, 48.8704088 2.3106942, 48.8700870 2.3111689, 48.8700445 2.3113231, 48.8731008 2.3097181, 48.8717330 2.3147998, 48.8730746 2.3180911, 48.8729256 2.3237568, 48.8722936 2.3258193, 48.8815927 2.3475414, 48.8818743 2.3221457, 48.8784319 2.3268251, 48.8765921 2.3270551, 48.8768790 2.3270689, 48.8767937 2.3270652, 48.8837078 2.3286418, 48.8756281 2.3041375, 48.8750502 2.3048717, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8704404 2.3077470, 48.8717742 2.2984126, 48.8691738 2.3031698, 48.8668308 2.3028826, 48.8686655 2.2984696, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8736939 2.3003734, 48.8731462 2.3024152, 48.8690865 2.3022434, 48.8711232 2.3011684, 48.8715217 2.3076937, 48.8888774 2.3943052, 48.8884053 2.3785210, 48.8457239 2.3448389, 48.8832437 2.3593471, 48.8836193 2.3594167, 48.8813609 2.3620200, 48.8801030 2.3594914, 48.8793848 2.3585618, 48.8795188 2.3583338, 48.8688321 2.3305499, 48.8788369 2.3643037, 48.8797564 2.3574795, 48.8789739 2.3632105, 48.8831393 2.3659280, 48.8318013 2.3866661, 48.8795548 2.3363831, 48.8750728 2.3584139, 48.8809651 2.3627422, 48.8278753 2.3796701, 48.8488897 2.3684401, 48.8448068 2.3524819, 48.8647693 2.3649321, 48.8632732 2.3526751, 48.8713885 2.2935692, 48.8664199 2.2892440, 48.8683349 2.2891747, 48.8652994 2.2905368, 48.8691051 2.2891789, 48.8743938 2.2895014, 48.8761867 2.2834356, 48.8494162 2.3809935, 48.8385581 2.3228175, 48.8967400 2.3850836, 48.8586659 2.2826833, 48.8194848 2.3266295, 48.8412408 2.3134332, 48.8739957 2.3427413, 48.8742380 2.2811266, 48.8439118 2.3545847, 48.8461978 2.3409102, 48.8505185 2.2705537, 48.8810351 2.3641714, 48.8486125 2.2661824, 48.8848637 2.3606402, 48.8379511 2.2585104, 48.8379036 2.2962662, 48.8853330 2.3604560, 48.8866633 2.3608930, 48.8538117 2.3386948, 48.8907109 2.3246455, 48.8481468 2.3720124, 48.8532543 2.3457644, 48.8531361 2.3463123, 48.8757021 2.3582998, 48.8424656 2.3124799, 48.8423823 2.3125402, 48.8476583 2.3515918, 48.8477032 2.3514397, 48.8487209 2.3475835, 48.8486599 2.3478543, 48.8485999 2.3480789, 48.8456877 2.3450098, 48.8663131 2.3279889, 48.8530038 2.2759292, 48.8604399 2.3007825, 48.8695661 2.3517456, 48.8797908 2.3207196, 48.8536395 2.3074534, 48.8733074 2.3437192, 48.8733772 2.3438855, 48.8650637 2.3417127, 48.8720574 2.3420399, 48.8479558 2.3005672, 48.8465361 2.3054645, 48.8474966 2.3022867, 48.8466710 2.3049905, 48.8469542 2.3080133, 48.8390456 2.3925460, 48.8779440 2.3378300, 48.8796570 2.3549177, 48.8790898 2.3556386, 48.8783485 2.3572882, 48.8663533 2.3043410, 48.8652754 2.3282212, 48.8643761 2.3308831, 48.8548067 2.3689756, 48.8417997 2.3317623, 48.8768201 2.3458424, 48.8755250 2.3585349, 48.8466437 2.3698297, 48.8864077 2.2949505, 48.8226147 2.3587102, 48.8499249 2.3462523, 48.8498614 2.3465433, 48.8498802 2.2884724, 48.8479302 2.3878050, 48.8844650 2.3679226, 48.8720379 2.3446636, 48.8565865 2.3275569, 48.8473466 2.3995162, 48.8505331 2.2923753, 48.8413238 2.3028511, 48.8256664 2.3232257, 48.8811174 2.3514426, 48.8727937 2.3157855, 48.8636313 2.3690033, 48.8716438 2.3349837, 48.8714207 2.3349194, 48.8713271 2.3351551, 48.8718954 2.3350541, 48.8768039 2.3336297, 48.8736518 2.3520817, 48.8711767 2.3499045, 48.8773396 2.3560770, 48.8846667 2.3765525, 48.8812864 2.3650200, 48.8679824 2.3362288, 48.8710170 2.3202503, 48.8710343 2.3234791, 48.8706452 2.3219942, 48.8705622 2.3263811, 48.8261537 2.3243946, 48.8469348 2.4080026, 48.8853360 2.3350946, 48.8516043 2.2896851, 48.8514717 2.3483308, 48.8618661 2.3831677, 48.8502622 2.3730838, 48.8952730 2.3431920, 48.8929320 2.3433000, 48.8937240 2.3418900, 48.8700380 2.3601770, 48.8698590 2.3605340, 48.8697990 2.3610220, 48.8688100 2.3601130, 48.8704210 2.3610030, 48.8303814 2.3234197, 48.8419958 2.3484398, 48.8432579 2.3497680, 48.8693769 2.3310435, 48.8670604 2.3270370, 48.8721592 2.3333671, 48.8428196 2.3426105, 48.8430085 2.3422700, 48.8736554 2.3360245, 48.8682851 2.3267606, 48.8595817 2.3086929, 48.8658012 2.3360846, 48.8389861 2.3455789, 48.8451928 2.3505337, 48.8302782 2.3020187, 48.8452730 2.3250677, 48.8846283 2.3381804, 48.8829475 2.3284860, 48.8759130 2.3574890, 48.8323889 2.3868172, 48.8827924 2.3402418, 48.8661835 2.3673546, 48.8437234 2.2967496, 48.8340571 2.3460780, 48.8751482 2.3354544, 48.8715708 2.3436597, 48.8799454 2.3289718, 48.8743571 2.3321512, 48.8742308 2.3320216, 48.8766389 2.3417217, 48.8765596 2.3401099, 48.8751153 2.3361132, 48.8400178 2.3810213, 48.8331256 2.2892198, 48.8864902 2.3356152, 48.8852398 2.3300554, 48.8853086 2.3302109, 48.8357551 2.3515624, 48.8879229 2.3208812, 48.8905223 2.3350904, 48.8888344 2.3331457, 48.8797188 2.3507524, 48.8825635 2.3415494, 48.8450421 2.3524270, 48.8500954 2.3476090, 48.8654715 2.3296865, 48.8493566 2.3904152, 48.8557500 2.4005064, 48.8730243 2.3445449, 48.8397319 2.3233917, 48.8688058 2.2924351, 48.8606580 2.3469337, 48.8777667 2.2873179, 48.8280249 2.3153561, 48.8690870 2.3027342, 48.8443530 2.3233390, 48.8399770 2.3236040, 48.8820704 2.3345059, 48.8539009 2.3072420, 48.8821510 2.3708169, 48.8821809 2.3705534, 48.8429639 2.3242562, 48.8423964 2.3234359, 48.8473814 2.2833183, 48.8791797 2.3268489, 48.8801993 2.3268856, 48.8753556 2.3263124, 48.8861817 2.3351898, 48.8195998 2.3261186, 48.8508057 2.3698822, 48.8509291 2.3698902, 48.8637194 2.2934262, 48.8279437 2.3297879, 48.8465206 2.4102795, 48.8650372 2.3976697, 48.8241267 2.3617523, 48.8250171 2.3610514, 48.8252188 2.3608916, 48.8734510 2.3486409, 48.8232896 2.3261817, 48.8332485 2.3325552, 48.8900035 2.3233253, 48.8330539 2.2881095, 48.8351584 2.2825386, 48.8901866 2.3614476, 48.8902032 2.3611081, 48.8290014 2.3005012, 48.8413822 2.2626522, 48.8407519 2.2624259, 48.8362022 2.2789552, 48.8234693 2.3306543, 48.8240238 2.3274437, 48.8240433 2.3300803, 48.8242675 2.3289215, 48.8244918 2.3272586, 48.8247043 2.3268143, 48.8247319 2.3264861, 48.8371866 2.2775249, 48.8965141 2.3284414, 48.8648053 2.3525629, 48.8515323 2.3989998, 48.8504360 2.2920472, 48.8263167 2.3603544, 48.8300142 2.3566577, 48.8293227 2.3566885, 48.8910813 2.3604459, 48.8569026 2.3848430, 48.8657299 2.2861084, 48.8542447 2.3075312, 48.8921340 2.3603868, 48.8691081 2.3627657, 48.8898808 2.3211159, 48.8808975 2.3516143, 48.8502129 2.3421749, 48.8503717 2.3422419, 48.8293578 2.3748311, 48.8845083 2.3257947, 48.8742228 2.3878024, 48.8562375 2.3660049, 48.8737763 2.3859309, 48.8253189 2.3572256, 48.8478227 2.3708054, 48.8783108 2.3843089, 48.8834554 2.2924752, 48.8868844 2.3216760, 48.8446684 2.4024604, 48.8851415 2.2930709, 48.8850808 2.2936804, 48.8488376 2.4079096, 48.8591599 2.3452377, 48.8587815 2.3453015, 48.8592591 2.3683806, 48.8516052 2.3382057, 48.8731572 2.3252446, 48.8727003 2.3435855, 48.8573332 2.3714718, 48.8803203 2.2858761, 48.8851889 2.2939544, 48.8503654 2.3494131, 48.8840377 2.3149854, 48.8841956 2.3161259, 48.8836123 2.3163235, 48.8760701 2.3456581, 48.8341199 2.2951841, 48.8836722 2.3257995, 48.8550671 2.3865458, 48.8550335 2.3864546, 48.8531762 2.3451166, 48.8497422 2.3507005, 48.8516696 2.2978180, 48.8527079 2.3443015, 48.8528343 2.3441184, 48.8502770 2.2933596, 48.8504483 2.2926945, 48.8518053 2.3448347, 48.8726389 2.3422288, 48.8568044 2.3030573, 48.8436459 2.3526224, 48.8471731 2.3316624, 48.8469032 2.3316463, 48.8475577 2.3718376, 48.8390750 2.3316473, 48.8710803 2.3248004, 48.8589774 2.3504303, 48.8581962 2.3502811, 48.8471284 2.3776102, 48.8762008 2.3710157, 48.8732766 2.3450350, 48.8260384 2.3259184, 48.8569311 2.3033559, 48.8622200 2.3495080, 48.8657793 2.3299663, 48.8549752 2.3046163, 48.8348854 2.3296013, 48.8813853 2.3373815, 48.8813853 2.3373815, 48.8489375 2.3468099, 48.8488721 2.3470349, 48.8781775 2.2853021, 48.8526126 2.3891625, 48.8868980 2.3004690, 48.8844510 2.2979890, 48.8406136 2.3344845, 48.8432192 2.3494400, 48.8481440 2.3425188, 48.8493373 2.3431508, 48.8758850 2.3269550, 48.8767160 2.3270270, 48.8769450 2.3270030, 48.8769450 2.3270030, 48.8683432 2.2918443, 48.8766674 2.3587492, 48.8497393 2.3381789, 48.8487972 2.3410105, 48.8663034 2.2866997, 48.8645222 2.2823193, 48.8780091 2.3872453, 48.8804643 2.3742916, 48.8823048 2.3710585, 48.8425624 2.3243275, 48.8754147 2.3888922, 48.8818092 2.3740520, 48.8436267 2.3524487, 48.8436267 2.3524487, 48.8464533 2.3058161, 48.8552220 2.3306960, 48.8349736 2.3602946, 48.8279496 2.3689120, 48.8704582 2.3268384, 48.8808600 2.3024094, 48.8681579 2.3004143, 48.8548818 2.3332071, 48.8683305 2.3330172, 48.8613358 2.2863597, 48.8591494 2.2846290, 48.8763033 2.3463522, 48.8615283 2.3426262, 48.8580936 2.3529258, 48.8707591 2.2931194, 48.8399900 2.2848503, 48.8399900 2.2848503, 48.8498554 2.3461592, 48.8779414 2.2955547, 48.8784951 2.3709483, 48.8582325 2.3718450, 48.8565568 2.3059811, 48.8731587 2.3643941, 48.8494061 2.3987583, 48.8903884 2.3792665, 48.8399675 2.3918531, 48.8674341 2.3966731, 48.8357607 2.3019643, 48.8780937 2.3647247, 48.8821180 2.3286239, 48.8691590 2.3641891, 48.8615198 2.3709980, 48.8578116 2.3768959, 48.8616072 2.3620921, 48.8654371 2.3657135, 48.8659977 2.3674507, 48.8656162 2.3676880, 48.8629114 2.3676068, 48.8583920 2.3777450, 48.8585931 2.3685540, 48.8730436 2.3586960, 48.8630233 2.3644881, 48.8453126 2.3836601, 48.8660449 2.3682896, 48.8659929 2.3685758, 48.8383845 2.3209532, 48.8487664 2.2919554, 48.8920470 2.3024290, 48.8537967 2.3662670, 48.8305359 2.3382127, 48.8467766 2.2962381, 48.8478107 2.2976980, 48.8477629 2.2937636, 48.8458693 2.2983142, 48.8336435 2.2870519, 48.8609042 2.3467975, 48.8358096 2.2924119, 48.8485058 2.2987839, 48.8503319 2.2982277, 48.8548250 2.2922891, 48.8505295 2.2887720, 48.8626435 2.3399046, 48.8662424 2.3373468, 48.8555014 2.2928347, 48.8664296 2.3398955, 48.8690729 2.3324359, 48.8487692 2.3494934, 48.8497809 2.3452256, 48.8503513 2.3450367, 48.8497802 2.3724158, 48.8539824 2.3675485, 48.8462693 2.3425072, 48.8503978 2.3393909, 48.8381496 2.3497215, 48.8791508 2.3620731, 48.8746698 2.3557687, 48.8831847 2.3736693, 48.8510976 2.3274782, 48.8696278 2.3747304, 48.8576463 2.3728295, 48.8536962 2.3882114, 48.8695579 2.3745034, 48.8920187 2.3847925, 48.8443175 2.3235205, 48.8676142 2.3213457, 48.8728467 2.3165166, 48.8727886 2.3158091, 48.8730228 2.3161558, 48.8733647 2.3181572, 48.8717473 2.3234876, 48.8721694 2.3263232, 48.8753481 2.3233901, 48.8809428 2.3229456, 48.8497832 2.3094782, 48.8767783 2.3066420, 48.8751931 2.3013656, 48.8729693 2.3436019, 48.8734088 2.3439633, 48.8818357 2.3285868, 48.8825973 2.3280223, 48.8814057 2.3282568, 48.8761321 2.3419588, 48.8774940 2.3382643, 48.8761998 2.3369223, 48.8795288 2.3342543, 48.8763684 2.3352005, 48.8718594 2.2978476, 48.8654125 2.3983360, 48.8742921 2.4052243, 48.8925063 2.3224334, 48.8834159 2.3250804, 48.8875714 2.3189955, 48.8877239 2.3187185, 48.8899868 2.3233274, 48.8859112 2.3375816, 48.8495763 2.3798752, 48.8464004 2.3766541, 48.8512589 2.3755154, 48.8398408 2.3815157, 48.8350025 2.3485584, 48.8298177 2.3535320, 48.8282216 2.3502281, 48.8272192 2.3520564, 48.8301934 2.3530001, 48.8257554 2.3528800, 48.8257632 2.3526361, 48.8326346 2.3593458, 48.8328846 2.3572823, 48.8374662 2.3728523, 48.8345042 2.3543785, 48.8289227 2.3741564, 48.8253112 2.3613611, 48.8228445 2.3614393, 48.8828150 2.3345432, 48.8401015 2.3306768, 48.8412334 2.3257995, 48.8316304 2.3400175, 48.8338798 2.3287567, 48.8369103 2.3238769, 48.8368706 2.3240469, 48.8383272 2.2904886, 48.8353004 2.3231703, 48.8236672 2.3248089, 48.8238179 2.3241127, 48.8272146 2.3159783, 48.8235715 2.3250084, 48.8752556 2.2866823, 48.8704922 2.2798118, 48.8688673 2.2827932, 48.8645905 2.2778893, 48.8506499 2.2751573, 48.8515603 2.2775836, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8767975 2.2920290, 48.8750231 2.2935901, 48.8795379 2.2855888, 48.8759878 2.2939427, 48.8852343 2.2933820, 48.8756429 2.2938771, 48.8765806 2.2929735, 48.8848968 2.3034428, 48.8792208 2.2876966, 48.8763229 2.2931781, 48.8852857 2.3080064, 48.8496595 2.2837044, 48.8497921 2.2852692, 48.8365548 2.3939809, 48.8684106 2.3282777, 48.8728354 2.3613759, 48.8944493 2.3120125, 48.8599349 2.4026082, 48.8482765 2.2983856, 48.8542680 2.3078406, 48.8802164 2.2842407 +48.8697794 2.2369872 +París +1 +fr:Musée de l'Armée (Paris), fr:Musée de l'AP-HP, fr:Musée des Arts décoratifs de Paris, fr:Musée des arts et métiers, fr:Tour Jean-sans-Peur, fr:Musée Gustave-Moreau, fr:Égouts de Paris, fr:Espace Dalí, fr:Cité des sciences et de l'industrie, fr:Maison de Victor Hugo, fr:Musée en Herbe, fr:Maison européenne de la photographie, fr:Musée de l'Éventail, fr:Catacombes de Paris, fr:Musée de l'érotisme (Paris), fr:Petit Palais, fr:Musée de la Légion d'honneur, fr:Conciergerie, fr:L'Adresse Musée de La Poste, fr:Musée Baccarat (Paris), fr:Forum des images, fr:Musée du Chocolat (Paris), fr:Cité de l'architecture et du patrimoine, fr:Musée national de la Marine, fr:Musée de la franc-maçonnerie, fr:Musée de la Contrefaçon, fr:Musée Dapper, fr:Musée des Arts forains, fr:Musée arménien de France, fr:Musée Dupuytren, fr:Musée Valentin-Haüy, fr:Musée national Jean-Jacques Henner, fr:Musée des lettres et manuscrits, fr:Crypte archéologique du parvis Notre-Dame, fr:Bibliothèque-musée de l'Opéra, fr:Musée national d'art moderne, fr:Musée du quai Branly, fr:Galerie de minéralogie et de géologie du Muséum national d'histoire naturelle, fr:Galerie de paléontologie et d'anatomie comparée du Muséum national d'histoire naturelle, fr:Halle Saint Pierre, musée d'Art Brut et d'Art Singulier, fr:Hôtel de Sully, fr:Galerie nationale du Jeu de Paume, fr:Musée de l'Orangerie, fr:Musée national d'art moderne#Atelier Brancusi, fr:Musée Curie, fr:Grand Palais (Paris), fr:Pavillon de l'Arsenal, fr:Musée de Cluny, fr:Archives nationales (France), fr:Musée Picasso (Paris), fr:Musée Cognacq-Jay, fr:Cité nationale de l'histoire de l'immigration, fr:Musée d'Orsay, fr:Musée Cernuschi, fr:Musée Rodin, fr:Cinémathèque française, fr:Fondation Pierre Bergé - Yves Saint-Laurent, fr:Musée d'art moderne de la ville de paris, fr:Palais de Tokyo, fr:Musée Bourdelle, fr:Grande galerie de l'évolution, fr:Musée de la Vie romantique, fr:Maison de Balzac, fr:Maison de la culture du Japon à Paris, fr:Musée Zadkine, fr:Musée de Montmartre, fr:Musée de la chasse et de la nature, fr:Manufacture des Gobelins, fr:Musée du Luxembourg, fr:Palais de la découverte, fr:Centre culturel suédois, fr:Hôtel de la Monnaie (Paris), fr:Musée Galliera, fr:Musée Carnavalet, fr:Musée du Louvre, fr:Sainte-Chapelle +2 +55.9533748 -3.1895989 +yes +yes +yes +49.4075160 8.6918700 +54.1816830 7.8898378, 54.1821185 7.8888280, 54.1823120 7.8882374, 54.1827026 7.8873652, 54.1828961 7.8855741, 53.6568376 9.7983056, 54.1804232 7.8864167, 53.7490733 9.9643576 +Hopfingerbräu im Palais +yes +11 +46 +2 +48.8475254 2.3740095, 48.8461336 2.3944472, 48.8470535 2.3936319, 48.8758689 2.3483462, 48.8828001 2.3714770, 48.8820834 2.3282055, 48.8762091 2.3397990, 48.8473760 2.3414870, 48.8279402 2.3288089, 48.8579444 2.3717706, 48.8470191 2.3535114, 48.8927622 2.3434358, 48.8541702 2.3858665, 48.8532844 2.3390695, 48.8598488 2.3084707, 48.8855486 2.2906636, 48.8838490 2.2883840, 48.8842390 2.2945020, 48.8360380 2.3520261, 48.8755166 2.3946714, 48.8477091 2.3186906, 48.8584888 2.3703620, 48.8736719 2.3586685, 48.8471373 2.3529239 +yes +Fahrschule Formel 1, Fahrschule Jung, Fahrschule Lechner, Fahrschule Gölz, Fahrschule Jung and 49.3743365 8.6827546, 49.4285627 8.6458063, 49.3802219 8.6868984, 49.3845526 8.6676364, 49.4239337 8.6493485, 49.3799295 8.6700670 ++33143070223 +12 +72 +yes +567.8 +49.4092987 8.6848369 +55.9248874 -3.1446384, 55.9239715 -3.2172066, 55.9236428 -3.3787970, 55.9266397 -3.1430694, 55.9273365 -3.1468138, 55.9272404 -3.1469500, 55.9437963 -3.2690458, 55.9437692 -3.2690140, 55.9437669 -3.2690698, 55.9441583 -3.2706738, 55.9441792 -3.2706105, 55.9440317 -3.2697714, 55.9440254 -3.2698444, 55.9437692 -3.2697236, 55.9437794 -3.2696680, 55.9439859 -3.2702368, 55.9437518 -3.2698379, 55.9439954 -3.2701198, 55.9437029 -3.2701661, 55.9444013 -3.2708908, 55.9444228 -3.2708576, 55.9444139 -3.2708735, 55.9443882 -3.2709008, 55.9435460 -3.2696575, 55.9435587 -3.2695991, 55.9466158 -3.2694706, 55.9473595 -3.2707429, 55.9466516 -3.2694746, 55.9561007 -3.1136322, 55.9561489 -3.1137601, 55.9495184 -3.2714594, 55.9301628 -3.3881013, 55.9222112 -3.3806457, 55.9692421 -3.2790022, 55.9692534 -3.2789856, 55.9692762 -3.2790819, 55.9692943 -3.2789277, 55.9693197 -3.2790307, 55.9744612 -3.1738616, 55.9744206 -3.1741512, 55.9182420 -3.2999578, 55.9179174 -3.2997514, 55.9128038 -3.3143983, 55.9833224 -3.2415764, 55.9138023 -3.1790167, 55.9510031 -3.2913527, 55.9510337 -3.2911449, 55.9196251 -3.2016290, 55.9249355 -3.1445413, 55.9067281 -3.3259272, 55.9649097 -3.2105372, 55.9151968 -3.3215433 +62 +Cowdenbeath, Dunfermline, South Queensferry, Linlithgow, Kincardine, Broxburn, Bathgate, Grangemouth, Bo'ness, Inverkeithing, Dalgety Bay, Rosyth, Livingston, Armadale, Polmont +yes diff --git a/smtsemparsecpp/data/maybe_old/nlmaps.train.gold b/smtsemparsecpp/data/maybe_old/nlmaps.train.gold new file mode 100644 index 000000000..0bad10529 --- /dev/null +++ b/smtsemparsecpp/data/maybe_old/nlmaps.train.gold @@ -0,0 +1,1500 @@ +247 +Hope Cottage Nursery School, Little Monkeys Nursery, Colinton Private Nursery, Rainbow Kindergarten, Molly's Nursery, Heriot Hill Nursery, Strawberry Hill Nursery, Bruntsfield Nursery, Busy Bees Nursery, Childcair @ Quartermile, The Edinburgh Nursery, Annandale Nursery, The Edinburgh Nursery, St. Leonards Nursery School, High School Yards Nursery, Melville Street Nursery, Jigsaw Childcare, Pinocchio's, Cherrytrees Children's Nursrey, Busy Bees Day Nursery, Grange Loan Nursery, Mr. Squirrel's Nursery, Suffolk House Nursery, Stanwell Nursery, Bruntsfield House Nursery, Carrick Knowe Primary, Baby Rainbow, Childsplay, Playdays, Chapter One Childcare, Forbes Childrens Nursery, Greenhill Montessori Nursery, Grassmarket Nursery, Kidzcare, Cameron House Nursery School, Priestfield Road Nursery, Kirkliston Nursery, Mother Goose Nursery, Arcadia +40 +712 and 204 +0 +49.4176655 8.6680194, 49.4119860 8.6544036, 49.3799788 8.6295221, 49.4105445 8.7052085, 49.4141061 8.6511331, 49.4296174 8.6819785, 49.4100046 8.6951917, 49.4179937 8.7574277, 49.4184811 8.6699057, 49.4067223 8.6865145, 49.4099343 8.7058477, 49.4198183 8.6845408 +Heidenloch, Römischer Tempel, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall +yes +49.3826654 8.6703241, 49.4005745 8.6876324, 49.4013101 8.6912413, 49.4018281 8.6889374, 49.4018800 8.6877769, 49.4018302 8.6889341, 49.4013102 8.6912409, 49.4013098 8.6912411, 49.4005742 8.6876324, 49.4005743 8.6876329, 49.4013099 8.6912408, 49.4018301 8.6889373, 49.4005745 8.6876329, 49.4018280 8.6889343, 49.4034414 8.6858831, 49.4033425 8.6920344, 49.4034077 8.6864942, 49.4053236 8.6938605, 49.4033423 8.6920342, 49.4034078 8.6864940, 49.4034077 8.6864940, 49.4034078 8.6864942, 49.4033423 8.6920344, 49.3795039 8.6788777, 49.3994731 8.6498961, 49.3832632 8.6902896, 49.3795039 8.6788791, 49.3795039 8.6788799, 49.3832635 8.6902896, 49.3795039 8.6788784, 49.3795039 8.6788807 +indian, italian, regional, chinese, thai, german, french, vegetarian, greek, spanish, mediterranean, japanese, malaysian, eritrean, international, persian, asian, moroccan, burger, vietnamese, turkish, african, cuban, korean, vegan, Flammkuchen +55.9398773 -3.2212237, 55.9563398 -3.1384528, 55.9583672 -3.1380034, 55.9586133 -3.1379125, 55.9333191 -3.2042555, 55.9401171 -3.2189968, 55.9309707 -3.1902664, 55.9470233 -3.2136778, 55.9047280 -3.2373593, 55.9040043 -3.2313244, 55.9040174 -3.2248441, 55.9044388 -3.2231298, 55.9055392 -3.2245241, 55.9070009 -3.2266338, 55.9085623 -3.2295466, 55.9095589 -3.2332257, 55.9102457 -3.2355353, 55.9310002 -3.2195807, 55.9314292 -3.2179935, 55.9337225 -3.2114222, 55.9397575 -3.2256219, 55.9414410 -3.2232711, 55.9435081 -3.2199229, 55.9454900 -3.2173512, 55.9457795 -3.2288522, 55.9460094 -3.2229027, 55.9459397 -3.2196471, 55.9467297 -3.2160853, 55.9468911 -3.2157329, 55.9495730 -3.2096804, 55.9498456 -3.2090591, 55.9470251 -3.2128783, 55.9466831 -3.2111062, 55.9457511 -3.2083497, 55.9407674 -3.2171557, 55.9414929 -3.2189566, 55.9420067 -3.2142265, 55.9429862 -3.2105745, 55.9435721 -3.2079032, 55.9452599 -3.2068906, 55.9458494 -3.2043614, 55.9463849 -3.2002560, 55.9473655 -3.1962398, 55.9476701 -3.1928242, 55.9476671 -3.2034432, 55.9476364 -3.2015298, 55.9486521 -3.1951042, 55.9486914 -3.1982744, 55.9493803 -3.1935304, 55.9819242 -3.3908551, 55.9825780 -3.3942285, 55.9895768 -3.4098735, 55.9899607 -3.4056361, 55.9846372 -3.3964826, 55.9867620 -3.3969118, 55.9890911 -3.3975569, 55.9909234 -3.3992102, 55.9871450 -3.3956272, 55.9875380 -3.3902711, 55.9873152 -3.3869128, 55.9868637 -3.3823120, 55.9903465 -3.3854493, 55.9905394 -3.3854731, 55.9876179 -3.4043614, 55.9525057 -3.2266066, 55.9522993 -3.2247346, 55.9517980 -3.2257601, 55.9509222 -3.2222408, 55.9500692 -3.2194594, 55.9500952 -3.2159210, 55.9514349 -3.2130963, 55.9549100 -3.2260503, 55.9581693 -3.2284212, 55.9601435 -3.2283783, 55.9580206 -3.2254421, 55.9563691 -3.2233567, 55.9552380 -3.2192535, 55.9577146 -3.2175590, 55.9544860 -3.2153379, 55.9558088 -3.2163084, 55.9574409 -3.2136525, 55.9577176 -3.2110983, 55.9587670 -3.2249388, 55.9592419 -3.2214458, 55.9594385 -3.2162145, 55.9591627 -3.2129430, 55.9587082 -3.2097806, 55.9582498 -3.2083579, 55.9601149 -3.2048779, 55.9605028 -3.2019585, 55.9661868 -3.2040897, 55.9648275 -3.2026212, 55.9625463 -3.1985152, 55.9623519 -3.1999659, 55.9612708 -3.1979256, 55.9590746 -3.2001052, 55.9574525 -3.1992269, 55.9576308 -3.2078827, 55.9571589 -3.2057631, 55.9570635 -3.2040021, 55.9579700 -3.1990768, 55.9589149 -3.1952296, 55.9516292 -3.2116129, 55.9505151 -3.2088197, 55.9516840 -3.2088535, 55.9565296 -3.2022609, 55.9551067 -3.2015189, 55.9026109 -3.2208010, 55.9022133 -3.2164859, 55.9021871 -3.2127583, 55.9021851 -3.2083916, 55.9067134 -3.2084524, 55.9090267 -3.2098842, 55.9104665 -3.2114969, 55.9128718 -3.2136198, 55.9079326 -3.2251115, 55.9091271 -3.2224615, 55.9102950 -3.2206745, 55.9115037 -3.2193046, 55.9137133 -3.2175820, 55.9332773 -3.1804495, 55.9314124 -3.1865714, 55.9315635 -3.1867361, 55.9327292 -3.1841946, 55.9335945 -3.1857897, 55.9298810 -3.1906863, 55.9322050 -3.1928865, 55.9304941 -3.1923377, 55.9281335 -3.2095336, 55.9303294 -3.2098783, 55.9325309 -3.2101524, 55.9312888 -3.1882004, 55.9321908 -3.2093061, 55.9333100 -3.2046099, 55.9337875 -3.2001867, 55.9342178 -3.1974967, 55.9309516 -3.2025800, 55.9352614 -3.1942899, 55.9360447 -3.1944235, 55.9385819 -3.1950517, 55.9398783 -3.1952903, 55.9366483 -3.1940225, 55.9381677 -3.1922430, 55.9397207 -3.1863782, 55.9396831 -3.1901910, 55.9415623 -3.2000095, 55.9432237 -3.2023940, 55.9346560 -3.2102493, 55.9360542 -3.2094587, 55.9371071 -3.2072084, 55.9398797 -3.2045183, 55.9413443 -3.2035998, 55.9428297 -3.2037418, 55.9340812 -3.2232566, 55.9363884 -3.2200155, 55.9372212 -3.2174708, 55.9385605 -3.2146951, 55.9399009 -3.2118071, 55.9409026 -3.2095928, 55.9418569 -3.2046167, 55.9451034 -3.2054205, 55.9464821 -3.2059437, 55.9479806 -3.2093194, 55.9480111 -3.2070831, 55.9492390 -3.2069040, 55.9415413 -3.1997466, 55.9397680 -3.1895210, 55.9398950 -3.1857881, 55.9443353 -3.2022970, 55.9449518 -3.1965229, 55.9507141 -3.2047476, 55.9508345 -3.2040132, 55.9509544 -3.2033403, 55.9512832 -3.2014235, 55.9513658 -3.2009238, 55.9534513 -3.1984184, 55.9545267 -3.1976404, 55.9530617 -3.1968880, 55.9525579 -3.1966188, 55.9514556 -3.1965060, 55.9502363 -3.1950715, 55.9515098 -3.1917476, 55.9518015 -3.1918652, 55.9523041 -3.1921025, 55.9487161 -3.1921254, 55.9473980 -3.1913002, 55.9475336 -3.1896852, 55.9461587 -3.1899395, 55.9461484 -3.1857678, 55.9446725 -3.1868648, 55.9426946 -3.1843831, 55.9415201 -3.1833659, 55.9523582 -3.1952481, 55.9524140 -3.1949299, 55.9530238 -3.1937098, 55.9548982 -3.1930798, 55.9531749 -3.1905850, 55.9561036 -3.1918150, 55.9566140 -3.1887839, 55.9619191 -3.1954207, 55.9597614 -3.1911416, 55.9587469 -3.1900917, 55.9574145 -3.1883681, 55.9540301 -3.1883045, 55.9542782 -3.1877994, 55.9553364 -3.1870704, 55.9555140 -3.1882376, 55.9607383 -3.1852653, 55.9588728 -3.1841437, 55.9619623 -3.1801852, 55.9633092 -3.1784891, 55.9631120 -3.1956917, 55.9641164 -3.1934996, 55.9659262 -3.1894058, 55.9647774 -3.1864708, 55.9623731 -3.1823283, 55.9676984 -3.1873293, 55.9736920 -3.1887826, 55.9727435 -3.1878363, 55.9700983 -3.1863293, 55.9686812 -3.1841284, 55.9672532 -3.1822368, 55.9655560 -3.1802465, 55.9791442 -3.1838015, 55.9773724 -3.1798230, 55.9740475 -3.1882178, 55.9745333 -3.1848625, 55.9749728 -3.1821357, 55.9692348 -3.1839771, 55.9706590 -3.1803378, 55.9722461 -3.1760338, 55.9719668 -3.1730260, 55.9760045 -3.1700682, 55.9801664 -3.1773603, 55.9800397 -3.1776022, 55.9799062 -3.1778409, 55.9788191 -3.1802177, 55.9780301 -3.1791039, 55.9771964 -3.1743509, 55.9771466 -3.1737565, 55.9765391 -3.1705490, 55.9759268 -3.1678383, 55.9755202 -3.1648177, 55.9721151 -3.1537189, 55.9641711 -3.1775450, 55.9664640 -3.1754998, 55.9681128 -3.1740918, 55.9696714 -3.1727130, 55.9711134 -3.1726962, 55.9713906 -3.1702867, 55.9729980 -3.1685221, 55.9504910 -3.1854886, 55.9510338 -3.1816628, 55.9515984 -3.1790606, 55.9524685 -3.1756629, 55.9501355 -3.1837930, 55.9500542 -3.1787108, 55.9507088 -3.1770555, 55.9507849 -3.1747798, 55.9539076 -3.1739661, 55.9537308 -3.1871585, 55.9538854 -3.1830563, 55.9534691 -3.1798335, 55.9559116 -3.1730017, 55.9561660 -3.1727051, 55.9568104 -3.1728667, 55.9579461 -3.1831271, 55.9579339 -3.1826673, 55.9578767 -3.1789396, 55.9578185 -3.1765672, 55.9577142 -3.1730479, 55.9581423 -3.1720186, 55.9605915 -3.1714539, 55.9629055 -3.1709645, 55.9641540 -3.1706475, 55.9660986 -3.1701035, 55.9680651 -3.1686162, 55.9696734 -3.1682011, 55.9733850 -3.1663395, 55.9719455 -3.1622063, 55.9649390 -3.1745777, 55.9645748 -3.1721004, 55.9644946 -3.1699298, 55.9682171 -3.1659398, 55.9660539 -3.1637920, 55.9617629 -3.1585851, 55.9597776 -3.1556585, 55.9613297 -3.1539907, 55.9691573 -3.1661209, 55.9694518 -3.1635218, 55.9630141 -3.1573889, 55.9695434 -3.1596508, 55.9634291 -3.1466359, 55.9635847 -3.1540418, 55.9622804 -3.1561015, 55.9574085 -3.1686582, 55.9573428 -3.1680155, 55.9570980 -3.1653973, 55.9573086 -3.1630811, 55.9587596 -3.1568936, 55.9592305 -3.1555460, 55.9594930 -3.1515012, 55.9699420 -3.1593102, 55.9700232 -3.1573578, 55.9617219 -3.1524164, 55.9606175 -3.1513584, 55.9573263 -3.1468079, 55.9571410 -3.1435348, 55.9566243 -3.1391790, 55.9737969 -3.1583519, 55.9622638 -3.1521121, 55.9624755 -3.1486902, 55.9626125 -3.1455545, 55.9612620 -3.1429355, 55.9600832 -3.1420268, 55.9588210 -3.1435684, 55.9573206 -3.1406410, 55.9591989 -3.1435154, 55.9601857 -3.1399160, 55.9602178 -3.1373142, 55.9582972 -3.1380268, 55.9568904 -3.1638169, 55.9561712 -3.1598115, 55.9557947 -3.1568532, 55.9551375 -3.1512278, 55.9551965 -3.1477860, 55.9552066 -3.1457361, 55.9554578 -3.1419156, 55.9558481 -3.1395406, 55.9561914 -3.1374044, 55.9545671 -3.1400955, 55.9529070 -3.1379006, 55.9541352 -3.1478987, 55.9518317 -3.1434104, 55.9501708 -3.1403347, 55.9492291 -3.1391700, 55.9524812 -3.1884943, 55.9517665 -3.1881346, 55.9512784 -3.1879129, 55.9489276 -3.1868532, 55.9484886 -3.1866438, 55.9457222 -3.1847309, 55.9454420 -3.1844541, 55.9459249 -3.1824225, 55.9431937 -3.1796005, 55.9415447 -3.1780319, 55.9406915 -3.1765923, 55.9430769 -3.1830456, 55.9428271 -3.1828112, 55.9413427 -3.1812830, 55.9399611 -3.1824940, 55.9375604 -3.1807719, 55.9405823 -3.1806167, 55.9393125 -3.1783897, 55.9349560 -3.1933400, 55.9364318 -3.1841475, 55.9355213 -3.1900428, 55.9359617 -3.1872388, 55.9362963 -3.1842234, 55.9369103 -3.1811043, 55.9369174 -3.1773439, 55.9348651 -3.1752487, 55.9326016 -3.1729391, 55.9307156 -3.1710012, 55.9346850 -3.1788915, 55.9328299 -3.1774425, 55.9403137 -3.1729254, 55.9383803 -3.1730161, 55.9368395 -3.1706322, 55.9341108 -3.1674764, 55.9325696 -3.1651250, 55.9335259 -3.1647215, 55.9336500 -3.1610915, 55.9322565 -3.1611619, 55.9322142 -3.1627933, 55.9333600 -3.1647608, 55.9334320 -3.1603807, 55.9335825 -3.1625302, 55.9335171 -3.1665942, 55.9352278 -3.1690789, 55.9362943 -3.1703276, 55.9380056 -3.1727326, 55.9324076 -3.1774297, 55.9349862 -3.1793489, 55.9365575 -3.1804052, 55.9308016 -3.1713795, 55.9333761 -3.1740032, 55.9345443 -3.1751968, 55.9359412 -3.1766219, 55.9378596 -3.1785699, 55.9371680 -3.1785827, 55.9364376 -3.1835393, 55.9361605 -3.1852598, 55.9350575 -3.1868910, 55.9334041 -3.1850316, 55.9327512 -3.1837791, 55.9316014 -3.1856008, 55.9357290 -3.1880801, 55.9352794 -3.1908999, 55.9347514 -3.1934610, 55.9392124 -3.1781004, 55.9403904 -3.1806688, 55.9380758 -3.1813799, 55.9406842 -3.1776524, 55.9417310 -3.1818531, 55.9432691 -3.1832993, 55.9401121 -3.1759873, 55.9416881 -3.1786246, 55.9430330 -3.1796430, 55.9442893 -3.1810875, 55.9456619 -3.1831172, 55.9457698 -3.1849764, 55.9488929 -3.1870504, 55.9492763 -3.1872419, 55.9513723 -3.1882358, 55.9521151 -3.1886009, 55.9495818 -3.1399010, 55.9506764 -3.1410542, 55.9529056 -3.1458123, 55.9536640 -3.1473562, 55.9507527 -3.1366844, 55.9527612 -3.1381206, 55.9550194 -3.1407335, 55.9562689 -3.1348439, 55.9566744 -3.1386198, 55.9585592 -3.1378743, 55.9601011 -3.1372948, 55.9600487 -3.1400484, 55.9564001 -3.1391243, 55.9573867 -3.1412676, 55.9587207 -3.1437256, 55.9586697 -3.1434197, 55.9592475 -3.1440935, 55.9606921 -3.1423741, 55.9622214 -3.1450944, 55.9623357 -3.1492308, 55.9611520 -3.1537771, 55.9617355 -3.1586323, 55.9598518 -3.1573266, 55.9616167 -3.1588370, 55.9700124 -3.1556431, 55.9558380 -3.1386914, 55.9550460 -3.1447760, 55.9550213 -3.1476460, 55.9550728 -3.1523790, 55.9548118 -3.1629421, 55.9555903 -3.1566068, 55.9563198 -3.1613807, 55.9566895 -3.1639274, 55.9611674 -3.1521276, 55.9593457 -3.1509202, 55.9591348 -3.1552068, 55.9579853 -3.1583596, 55.9574531 -3.1601382, 55.9572537 -3.1679186, 55.9620617 -3.1535479, 55.9621329 -3.1564976, 55.9625914 -3.1535957, 55.9678849 -3.1582874, 55.9636025 -3.1550195, 55.9627401 -3.1578613, 55.9697011 -3.1609259, 55.9692382 -3.1643280, 55.9664000 -3.1642510, 55.9684815 -3.1664925, 55.9643722 -3.1699129, 55.9644808 -3.1717362, 55.9649261 -3.1753058, 55.9702256 -3.1606806, 55.9721901 -3.1629507, 55.9734772 -3.1676223, 55.9730686 -3.1650762, 55.9694878 -3.1680589, 55.9692232 -3.1683674, 55.9700545 -3.1702250, 55.9680366 -3.1683145, 55.9662435 -3.1698675, 55.9641358 -3.1704804, 55.9611738 -3.1711284, 55.9586476 -3.1715948, 55.9575346 -3.1733551, 55.9576423 -3.1767165, 55.9577127 -3.1801199, 55.9577689 -3.1829548, 55.9564976 -3.1718502, 55.9560238 -3.1725406, 55.9598986 -3.1836144, 55.9533445 -3.1792984, 55.9538702 -3.1838294, 55.9538082 -3.1860623, 55.9537460 -3.1864288, 55.9536090 -3.1872578, 55.9570795 -3.1725344, 55.9560575 -3.1718369, 55.9542177 -3.1734790, 55.9505239 -3.1770528, 55.9471148 -3.1782693, 55.9486335 -3.1780633, 55.9498991 -3.1788399, 55.9488002 -3.1790809, 55.9492792 -3.1822951, 55.9501804 -3.1839664, 55.9512348 -3.1865851, 55.9510428 -3.1899310, 55.9517661 -3.1736932, 55.9521941 -3.1764060, 55.9513995 -3.1796348, 55.9508278 -3.1825636, 55.9503437 -3.1858623, 55.9739384 -3.1675454, 55.9716823 -3.1695986, 55.9710945 -3.1729414, 55.9696926 -3.1723772, 55.9675371 -3.1742485, 55.9652851 -3.1761642, 55.9753350 -3.1670805, 55.9767364 -3.1725205, 55.9772973 -3.1758604, 55.9779032 -3.1792122, 55.9750843 -3.1712339, 55.9738978 -3.1727490, 55.9719290 -3.1728798, 55.9722046 -3.1746804, 55.9721384 -3.1759763, 55.9697936 -3.1815612, 55.9747119 -3.1831053, 55.9743289 -3.1855614, 55.9787681 -3.1799116, 55.9803325 -3.1776103, 55.9802536 -3.1818535, 55.9807529 -3.1767871, 55.9784516 -3.1820015, 55.9657942 -3.1807024, 55.9675800 -3.1828235, 55.9684568 -3.1840135, 55.9716943 -3.1876119, 55.9725807 -3.1879435, 55.9687365 -3.1849738, 55.9675923 -3.1871498, 55.9659016 -3.1891647, 55.9642904 -3.1922393, 55.9635860 -3.1943270, 55.9622037 -3.1793755, 55.9627392 -3.1787031, 55.9618397 -3.1798451, 55.9622890 -3.1826621, 55.9645359 -3.1863513, 55.9587684 -3.1837830, 55.9585718 -3.1839897, 55.9556859 -3.1866515, 55.9540735 -3.1877177, 55.9572218 -3.1884308, 55.9597602 -3.1915275, 55.9606648 -3.1931837, 55.9618206 -3.1955056, 55.9620775 -3.1961605, 55.9564422 -3.1886008, 55.9516360 -3.1915621, 55.9511728 -3.1894775, 55.9513768 -3.1853034, 55.9530038 -3.1904535, 55.9529734 -3.1906361, 55.9550011 -3.1944896, 55.9523721 -3.1941529, 55.9522306 -3.1949546, 55.9521243 -3.1955713, 55.9413619 -3.1834545, 55.9439756 -3.1855145, 55.9457447 -3.1858708, 55.9459185 -3.1889928, 55.9462149 -3.1911216, 55.9474608 -3.1915894, 55.9483990 -3.1921221, 55.9491051 -3.1925562, 55.9499555 -3.1941302, 55.9513921 -3.1967362, 55.9563095 -3.1988813, 55.9543603 -3.1978922, 55.9530372 -3.1971862, 55.9518480 -3.1998550, 55.9512810 -3.2003210, 55.9511317 -3.2011985, 55.9510603 -3.2016272, 55.9507178 -3.2036019, 55.9505841 -3.2043884, 55.9451215 -3.1923158, 55.9448465 -3.1948923, 55.9448398 -3.1982337, 55.9495373 -3.2067189, 55.9492326 -3.2066015, 55.9483042 -3.2035260, 55.9477777 -3.2074310, 55.9470945 -3.2058026, 55.9462523 -3.2055522, 55.9451884 -3.2051208, 55.9428068 -3.2035039, 55.9425641 -3.2034299, 55.9417455 -3.2046015, 55.9407315 -3.2096840, 55.9393435 -3.2127503, 55.9381500 -3.2153226, 55.9368830 -3.2180525, 55.9360677 -3.2206086, 55.9338713 -3.2232572, 55.9413134 -3.2033814, 55.9391987 -3.2046868, 55.9364506 -3.2080648, 55.9348230 -3.2100408, 55.9431515 -3.2018817, 55.9380639 -3.1919459, 55.9368177 -3.1935085, 55.9393298 -3.1949761, 55.9378804 -3.1946691, 55.9368007 -3.1944119, 55.9352311 -3.1940360, 55.9308908 -3.2069640, 55.9343964 -3.1957873, 55.9338607 -3.1991324, 55.9332178 -3.2042350, 55.9316658 -3.2098633, 55.9343401 -3.1937110, 55.9324314 -3.1928183, 55.9307981 -3.1906344, 55.9131617 -3.2179327, 55.9117618 -3.2186153, 55.9105601 -3.2202188, 55.9089266 -3.2227432, 55.9076164 -3.2261893, 55.9128108 -3.2134259, 55.9111623 -3.2120145, 55.9091712 -3.2098087, 55.9068224 -3.2083279, 55.9020682 -3.2084040, 55.9020822 -3.2133788, 55.9020983 -3.2181138, 55.9024927 -3.2209412, 55.9538170 -3.2010786, 55.9557714 -3.2021464, 55.9519898 -3.2056255, 55.9506446 -3.2093738, 55.9504970 -3.2090293, 55.9515635 -3.2119466, 55.9590112 -3.1954889, 55.9578837 -3.1987058, 55.9569531 -3.2042594, 55.9573600 -3.2073453, 55.9581370 -3.1998753, 55.9595344 -3.2006164, 55.9611948 -3.1982635, 55.9612444 -3.2015410, 55.9622843 -3.2005526, 55.9634933 -3.2012181, 55.9646539 -3.2129972, 55.9654477 -3.2035216, 55.9669436 -3.2050472, 55.9602477 -3.2031604, 55.9599422 -3.2050807, 55.9584545 -3.2079471, 55.9589660 -3.2114386, 55.9592891 -3.2157462, 55.9577015 -3.2172967, 55.9592592 -3.2207431, 55.9587913 -3.2241128, 55.9573790 -3.2117285, 55.9566490 -3.2146849, 55.9557623 -3.2162108, 55.9543230 -3.2154609, 55.9551079 -3.2193216, 55.9577741 -3.2253880, 55.9599993 -3.2284217, 55.9578389 -3.2295517, 55.9548640 -3.2243511, 55.9509150 -3.2138808, 55.9498016 -3.2162253, 55.9493877 -3.2175003, 55.9495686 -3.2189589, 55.9505731 -3.2230145, 55.9514713 -3.2255762, 55.9876225 -3.4053402, 55.9867144 -3.3820021, 55.9871401 -3.3873073, 55.9874589 -3.3909095, 55.9870411 -3.3960723, 55.9907091 -3.3983046, 55.9901075 -3.4037978, 55.9900975 -3.3975611, 55.9863873 -3.3966739, 55.9843886 -3.3962171, 55.9891253 -3.4109545, 55.9827390 -3.3942984, 55.9821321 -3.3899489, 55.9492297 -3.1934848, 55.9485101 -3.1950625, 55.9466052 -3.2025367, 55.9483763 -3.1903144, 55.9458867 -3.2015396, 55.9450777 -3.2041637, 55.9434137 -3.2080661, 55.9424851 -3.2120231, 55.9411818 -3.2158659, 55.9413277 -3.2188601, 55.9456681 -3.2081800, 55.9460697 -3.2125273, 55.9496579 -3.2091165, 55.9491712 -3.2102205, 55.9478015 -3.2132758, 55.9458699 -3.2215692, 55.9458558 -3.2248034, 55.9457052 -3.2281933, 55.9455773 -3.2302069, 55.9456796 -3.2170439, 55.9455214 -3.2171400, 55.9425730 -3.2214556, 55.9413678 -3.2230988, 55.9386491 -3.2239035, 55.9334398 -3.2118455, 55.9314723 -3.2172745, 55.9308274 -3.2197833, 55.9100844 -3.2345862, 55.9085928 -3.2291957, 55.9064805 -3.2256576, 55.9059136 -3.2239281, 55.9055130 -3.2235475, 55.9051874 -3.2237612, 55.9042466 -3.2225799, 55.9012188 -3.2216370, 55.9009964 -3.2259325, 55.9011654 -3.2224830, 55.9038972 -3.2233847, 55.9038681 -3.2263110, 55.9038755 -3.2309659, 55.9044653 -3.2366791, 55.9781461 -3.1735303, 55.9508673 -3.1752354, 55.9553235 -3.1920547, 55.9553332 -3.1919926, 55.9553429 -3.1919304, 55.9553525 -3.1918683, 55.9553622 -3.1918061, 55.9553719 -3.1917440, 55.9553816 -3.1916819, 55.9553913 -3.1916197, 55.9554010 -3.1915576, 55.9554107 -3.1914955, 55.9554204 -3.1914333, 55.9554301 -3.1913712, 55.9554398 -3.1913091, 55.9554495 -3.1912469, 55.9554592 -3.1911848, 55.9554688 -3.1911227, 55.9554785 -3.1910605, 55.9554882 -3.1909984, 55.9837906 -3.4014050, 55.9838562 -3.4011669, 55.9472325 -3.1901311, 55.9323871 -3.2055924, 55.9766740 -3.1797325, 55.9438324 -3.2142584, 55.9434037 -3.2147753, 55.9602002 -3.2007101, 55.9562981 -3.1986248, 55.9475607 -3.1861653, 55.9536715 -3.1868832, 55.9525909 -3.2000321, 55.9476032 -3.2085057, 55.9464631 -3.1990798, 55.9699159 -3.1695202, 55.9514733 -3.2002938, 55.9525341 -3.1942530, 55.9539398 -3.1954762, 55.9458721 -3.1870265, 55.9452545 -3.1868374, 55.9439698 -3.1852609, 55.9288032 -3.2094222, 55.9700600 -3.1864505, 55.9493416 -3.2102159, 55.9458574 -3.2195136, 55.9458637 -3.2199619, 55.9493651 -3.2098050, 55.9522213 -3.1920622, 55.9345077 -3.1677307, 55.9525355 -3.2025587, 55.9897500 -3.4060327, 55.9507195 -3.1921655, 55.9532131 -3.1997985, 55.9541367 -3.1918691, 55.9547528 -3.1939230, 55.9387978 -3.1791123, 55.9606525 -3.2004675, 55.9708849 -3.1791326 +53.5648493 9.9571466, 53.5757390 9.9623022, 53.4478281 9.9731688, 53.4241410 9.9800344, 53.5868035 9.8487128, 53.5574782 10.0164580, 53.7036757 10.1066618, 53.5946206 9.9441011, 53.5504041 9.9292219, 53.5988521 9.8601452, 53.5979982 9.8618241, 53.5362195 10.1373498, 53.5800425 9.7628059, 53.5754846 10.0235455, 53.5842259 10.0410976, 53.5795706 10.0222479, 53.4866287 10.1801253, 53.5557491 10.0103773, 53.4943874 9.9279743, 53.5728805 9.9843530, 53.5715017 9.9967626, 53.5045816 10.0148080, 53.5974378 9.8816993, 53.5701392 9.9786185, 53.5743453 9.9482315, 53.5640048 9.9461511, 53.5630404 10.0228408, 53.5809725 10.0545826, 53.5660778 10.0565622, 53.5816612 9.9780119, 53.5830376 10.0339576, 53.6197154 9.9463900, 53.5729809 9.9756610, 53.5813460 9.9698313, 53.6668169 9.9946587, 53.5840150 10.0219556, 53.5800530 9.9473048, 53.5869083 10.0264249, 53.5747332 10.0142651, 53.5542870 10.0496687, 53.5602091 10.0370058, 53.6096597 10.0103872, 53.5500773 9.9973724, 53.5809484 10.0252152, 53.5895058 9.9324827, 53.5677115 10.0625756, 53.5174482 10.1690785, 53.5561014 10.0556424, 53.5561412 10.0544692, 53.6247840 10.0916228, 53.5686976 9.9558204, 53.5628077 9.9674043, 53.5669868 9.9580363, 53.6311799 9.9511649, 53.6194767 10.0322772, 53.6015500 9.9549870, 53.5542251 10.0889923, 53.5674850 10.0439091, 53.6447936 9.9164983, 53.5773229 10.0428155, 53.5807381 10.0484485, 53.5542168 9.9666700, 53.5738581 10.0399958, 53.5811380 9.7541561, 53.6060933 9.8932685, 53.6183964 10.0276208, 53.6059322 10.1685769, 53.6024754 10.1547768, 53.6753711 10.0238860, 53.5860440 10.0226601, 53.5766857 9.8236618, 53.5585280 10.0447842, 53.5629417 9.7805941, 53.6198695 10.0901172, 53.5724608 9.8687564, 53.5546506 10.0208023, 53.6097557 10.1183252, 53.5482112 10.0569090, 53.5684023 9.9566271, 53.5687880 9.9564530, 53.6178838 9.8953858, 53.6149308 9.8993340, 53.6411028 9.9458858, 53.6379418 9.9454221, 53.6013692 9.9887406, 53.5915688 10.0407190, 53.4435640 9.9711938, 53.6029378 9.9557507, 53.5617430 9.8231546, 53.5634075 9.8262423, 53.5790256 9.7977862, 53.5546820 9.9124716, 53.5469455 10.0851528, 53.6147748 10.0092354, 53.6077853 9.9771788, 53.6151120 10.1166782, 53.6334667 10.1298099, 53.5529468 9.9545297, 53.5539969 9.9545913, 53.5706178 10.0891020, 53.4531063 9.9849358, 53.6174556 10.1473906, 53.6186361 10.1439762, 53.6066728 10.1220546, 53.6346461 9.9490774, 53.6074830 9.9098088, 53.4520565 9.9735991, 53.5721093 10.0466748, 53.6338702 10.0194194, 53.6433447 10.0140776, 53.5806909 9.8133015, 53.5789501 9.8098096, 53.5819058 9.8158496, 53.5829902 9.8151657, 53.5143464 9.9921687, 53.5610058 10.0321295, 53.5614777 10.0607155, 53.5548337 10.0664021, 53.5532507 9.9802911, 53.5564240 9.9479050, 53.5751775 9.8472851, 53.5609837 9.9254949, 53.5630682 10.0219707, 53.6152223 10.0634072, 53.5472618 9.9825835, 53.6060866 10.0228818, 53.5683814 10.1172974, 53.5470857 10.1061830, 53.5466156 10.0986719, 53.5565249 10.0785219, 53.4658779 9.9864891, 53.4704085 9.8593881, 53.5475072 10.0269339, 53.5759587 9.9465147, 53.5552542 9.9455711, 53.6399093 10.1194892, 53.6393687 10.1183574, 53.5616187 9.9132034, 53.5915075 9.9335137, 53.5284044 10.1468008, 53.5591532 10.1045831, 53.4659592 9.9576958, 53.5608856 9.8334521, 53.5686912 9.9000462, 53.5697077 9.9809689, 53.5540337 9.9304947, 53.5711708 9.9458290, 53.5424234 10.1107211, 53.4863882 10.2147871, 53.6184477 9.9493506, 53.5722752 9.9504800, 53.5671706 9.9561016, 53.5671972 9.9562668, 53.5550517 10.0181309, 53.5719823 9.9465598, 53.4939873 10.1230402, 53.5790460 9.9450032, 53.5337129 9.8657440, 53.5468919 10.0904914, 53.5420778 10.0990092, 53.5764637 10.0467208, 53.5938591 9.9999513, 53.6007186 9.9635127, 53.5952455 10.1496092, 53.4689190 9.9855114, 53.4961615 10.0036740, 53.5803679 9.9335661, 53.5817318 9.9330043, 53.5154238 9.9855314, 53.5124068 10.1604720, 53.5263607 10.1457239, 53.5420247 10.1278528, 53.5326461 10.1452836, 53.4999659 10.0160421, 53.5986069 10.0563390, 53.4882292 10.1532531, 53.6131153 10.0491230, 53.4390397 9.9623219, 53.4848037 10.1603460, 53.4712869 9.8158703, 53.5442103 10.0212283, 53.5820798 9.9495554, 53.5108594 10.2105557, 53.5503430 9.9335330, 53.4889537 10.1584727, 53.4290609 10.2700716, 53.5601301 10.1063032, 53.4489249 10.2283906, 53.4647614 9.9879610, 53.4739035 10.2385213, 53.5830082 9.9547261, 53.5814188 9.9510853, 53.5821632 9.9479091, 53.4442351 10.1735106, 53.5727271 9.9575311, 53.5718352 9.9534917, 53.5722652 9.9554872, 53.5694622 9.9005496, 53.5754593 9.9511070, 53.5240341 9.7790678, 53.5249059 9.7792650, 53.4395592 9.9920196, 53.4556133 9.9830560, 53.5589010 9.9022794, 53.4959150 9.9943778, 53.5665853 9.8746497, 53.5574363 9.9487362, 53.5689324 10.0439162, 53.5829783 9.9703584, 53.5619334 9.9542404, 53.6052275 10.1203539, 53.4808377 10.2198387, 53.6724564 9.9968610, 53.6528255 10.0087003, 53.5509871 10.1014724, 53.6200735 10.0820561, 53.5510325 9.9245995, 53.6204408 9.9502524, 53.6169406 9.9503498, 53.6177036 9.9488506, 53.5988680 9.9965082, 53.6108955 10.0635592, 53.5823045 9.9393060, 53.5817877 9.9439314, 53.4862207 10.1526023, 53.5442757 10.0290400, 53.5437247 10.0295578, 53.6041569 10.0393731, 53.6171783 9.9990535, 53.6018539 9.8730458, 53.5924355 9.8498164, 53.5903377 9.8533148, 53.5872321 10.0826981, 53.5821095 10.0580397, 53.5740092 9.8570303, 53.5725169 9.8561748, 53.4906161 10.1808277, 53.5344116 10.0449839, 53.5459965 10.0535184, 53.5736196 9.9661922, 53.6085387 10.1553237, 53.6004999 10.1569674, 53.5844323 9.8552679, 53.5887470 9.9518300, 53.5968617 10.1518271, 53.6971569 10.1346200, 53.5674942 9.9466439, 53.5666345 9.9486063, 53.5672204 10.1394125, 53.5724165 9.8015472, 53.6719835 10.1275486, 53.5653901 9.9861784, 53.6419963 10.0386792, 53.5554105 10.0946402, 53.5761835 9.9467663, 53.5779111 9.9503040, 53.5775822 9.9506948, 53.5768665 9.9630942, 53.6639188 10.1482954, 53.5563998 9.9085964, 53.5722647 9.9554930, 53.5718430 9.9534719, 53.5687950 9.9839197, 53.5722902 9.9868962, 53.5971723 9.8848788, 53.5653957 9.9797513, 53.5999365 9.8847723, 53.5697967 9.9769465, 53.5672010 9.9744872, 53.5667297 9.9752260, 53.4816691 10.1676819, 53.5689654 9.9912234, 53.5637332 9.9912534, 53.5893228 10.0398723, 53.5864236 10.0632236, 53.6523164 10.0043861, 53.5774660 10.0452921, 53.5750442 9.9724739, 53.5761693 9.9822188, 53.6551651 10.1597482, 53.6023540 9.8759347, 53.6038357 10.0790019, 53.6636578 10.1099496, 53.6505529 10.0728615, 53.6374569 10.0983026, 53.6747140 10.1218506, 53.6713121 10.1316749, 53.6716075 10.1335260, 53.5071373 9.9901540, 53.5586295 10.0107194, 53.6428117 10.0766030, 53.5558813 10.0104520, 53.5579063 10.0135290, 53.6878350 10.1063010, 53.6397460 10.0862961, 53.6374902 10.0783047, 53.6549573 10.0988986, 53.5517731 9.9788838, 53.5712546 9.9935904, 53.6404903 10.1552233, 53.6342757 10.1472157, 53.6293389 10.1414836, 53.6169824 10.1232846, 53.6007919 10.1080690, 53.4742875 9.8298557, 53.6427071 10.0990075, 53.5757089 9.8861751, 53.6447608 10.1052108, 53.6062004 10.0450520, 53.5668085 9.9485600, 53.5991663 10.0357429, 53.5949991 10.0910251, 53.6545407 10.0890603, 53.6606656 10.0824612, 53.5826900 10.0959048, 53.6097560 10.1183922, 53.6000094 10.1835267, 53.5999852 10.1781996, 53.6016724 10.1773433, 53.5816515 10.0546417, 53.5675609 9.9654223, 53.5712576 10.1208121, 53.4851496 10.0129507, 53.5582509 9.9821634, 53.4851424 10.0131772, 53.4863448 10.0162228, 53.6542093 10.1087681, 53.5708128 10.0841822, 53.5711829 10.0839887, 53.5658903 10.0994100, 53.6016299 10.0432031, 53.6031843 10.0456141, 53.6490428 10.0639378, 53.6204169 10.0937352, 53.4886827 10.1667177, 53.5773847 10.0252286, 53.5818446 10.1434064, 53.5939907 10.0561464, 53.5598002 9.9734131, 53.5944920 10.0926202, 53.5988397 10.0940359, 53.5776185 10.1269729, 53.6106441 10.1746063, 53.5819613 9.9705097, 53.5269841 10.1534505, 53.5719989 10.0241320, 53.5666255 9.9588524, 53.5878037 10.0139591, 53.5858867 10.0276045, 53.6104664 10.0221556, 53.6417586 10.0849258, 53.6520169 10.0747593, 53.6308886 10.0488668, 53.6340815 10.0560375, 53.5917439 10.0074020, 53.5910360 10.0205432, 53.5513511 9.9567965, 53.6062490 10.1676008, 53.5935495 10.0051509, 53.6101324 10.1459396, 53.5998669 10.0815492, 53.6162839 9.9861605, 53.6264688 10.1131146, 53.6308649 10.1086300, 53.6074655 10.1116363, 53.5935823 9.9916927, 53.6248126 10.0301074, 53.6340375 10.0692436, 53.6546904 10.1133808, 53.6093914 10.0738097, 53.6170146 10.1533799, 53.5686640 9.9462489, 53.5612623 9.8235766, 53.6288857 10.1671304, 53.5976525 10.0612883, 53.6429257 10.0766828, 53.5767096 9.8236686, 53.5545328 10.0276303, 53.5897357 9.7639327, 53.5896020 9.7645001, 53.5895979 9.7642243, 53.5676357 9.8261974, 53.5812747 10.0967914, 53.6522339 10.1645460, 53.6507475 10.1610407, 53.6531724 10.1719943, 53.6571083 10.1848261, 53.5799834 9.9315020, 53.5677109 10.0626111, 53.5319093 10.1077197, 53.6443028 10.0163814, 53.6217934 10.1268314, 53.6150849 10.0728462, 53.5133432 9.9898254, 53.5649315 10.0555591, 53.5980608 9.9602518, 53.6659851 10.0928091, 53.6450124 9.9167772, 53.5593187 9.8529953, 53.5589116 9.9448924, 53.4604791 9.8888932, 53.4756100 9.8855971, 53.5144426 9.9922739, 53.6560283 10.0207226, 53.6523957 10.0042471, 53.5908722 10.0519389, 53.6590836 10.0863318, 53.6588233 10.0842697, 53.6411577 10.0234225, 53.5802907 9.8177796, 53.6137759 10.0560152, 53.6850900 10.1449458, 53.4802492 9.8906421, 53.5937045 10.0792588, 53.6587278 10.1280028, 53.6079885 10.0495860, 53.5690490 9.8920281, 53.4674499 9.9649093, 53.4574751 9.9530602, 53.5586301 9.9136384, 53.5579211 10.0330903, 53.6057361 10.0381315, 53.5883147 10.0234673, 53.6162980 10.1064242, 53.4662531 9.9638920, 53.4514159 9.9436095, 53.6233125 9.9154534, 53.6281027 10.1250385, 53.5585274 9.9064721, 53.4553266 9.9723017, 53.6409066 10.0815605, 53.6187996 10.0098203, 53.5680534 10.0329630, 53.6707536 10.1493769, 53.5984064 9.9835106, 53.5592429 9.9552147, 53.5470437 9.9386861, 53.6032843 9.9553857, 53.4723036 9.8815436, 53.4773851 9.8658396, 53.5893018 9.9843554, 53.5935110 9.9823309, 53.5933429 9.9824896, 53.5821565 9.9683390, 53.5779184 9.9575592, 53.6380167 9.9227158, 53.5585331 9.9605569, 53.5545353 9.9578740, 53.5550210 9.9537699, 53.5949439 9.9894040, 53.6001296 9.9835665, 53.6466731 10.0391711, 53.6465998 10.0409977, 53.4760066 9.8550033, 53.5308751 10.1283097, 53.5255598 10.0180812, 53.4876472 10.2274341, 53.5784544 10.0223629, 53.4814325 10.1859448, 53.5792513 10.0277324, 53.5710254 10.0841337, 53.6504440 10.1873183, 53.5987646 10.1489055, 53.4850106 10.1658544, 53.4826920 10.1771589, 53.4544592 9.9793436, 53.4467279 9.9873252, 53.4845363 10.1966825, 53.4731500 10.2632296, 53.5847649 9.8961429, 53.4824351 10.2249182, 53.5794744 10.0636619, 53.4795650 9.8736726, 53.6802416 9.9989321, 53.5605772 9.9208250, 53.4795457 9.8623289, 53.6312415 9.9165669, 53.6316997 9.9134583, 53.6307796 9.9210107, 53.6416610 10.0374818, 53.4704298 9.8598827, 53.5891948 10.0739459, 53.6282062 10.0178674, 53.6358019 10.0122241, 53.6063582 10.0027670, 53.5078910 10.2174542, 53.5018849 10.2101558, 53.5264889 10.1487643, 53.5307973 10.1469289, 53.4321517 9.9876490, 53.4437995 9.9490204, 53.5037832 9.9912267, 53.5838395 9.9523289, 53.7055718 10.1120841, 53.7050584 10.1193380, 53.6116709 9.9719268, 53.6523507 9.9951908, 53.5499130 10.0970944, 53.6385836 10.1441495, 53.5563676 9.9236569, 53.6169827 10.0130760, 53.5824312 10.1447231, 53.4854463 10.2345545, 53.4441491 10.2198393, 53.4917493 10.1926567, 53.4919314 10.2173341, 53.4915746 10.2174752, 53.4921580 10.2170817, 53.4920947 10.2170994, 53.4921840 10.2173046, 53.4919255 10.2178061, 53.5519602 9.8998194, 53.4859030 10.2189479, 53.4832283 10.1779047, 53.4464930 10.1306644, 53.6753778 10.0235992, 53.5305983 10.1469222, 53.5078102 10.1868414, 53.4060351 10.1596277, 53.4016206 10.1674030, 53.4963415 10.0223428, 53.5998681 10.1833609, 53.4196540 10.1996815, 53.4098285 10.1910530, 53.4624797 10.1983099, 53.5727685 9.8810451, 53.6046214 9.9261190, 53.4862236 10.1520893, 53.4743132 10.0823914, 53.4806939 10.2200698, 53.6193795 9.8975937, 53.6504154 10.1872887, 53.6036375 10.1260514, 53.6388060 10.1531361, 53.4392829 9.9705714, 53.5808447 9.9432403, 53.5619095 10.1212465, 53.5327514 10.1103038, 53.4757485 10.2359557, 53.5790553 10.1051423, 53.5704502 10.1310105, 53.5724039 10.1399244, 53.4508399 9.9283897, 53.5800516 9.9406540, 53.4433431 9.9549231, 53.5316537 10.1494570, 53.6520471 10.0748078 +55.9515659 -3.1793762 +yes +yes +48.8505273 2.3858439, 48.8494965 2.3428666, 48.8500236 2.2797012, 48.8492181 2.3413228, 48.8650266 2.3105711, 48.8650092 2.3105788, 48.8440185 2.3635704, 48.8433068 2.3562446, 48.8435426 2.2928813, 48.8874535 2.3383526, 48.8543168 2.3338886, 48.8339014 2.4451712, 48.8753281 2.3200142, 48.8726676 2.2426542, 48.8645868 2.2374495, 48.8909988 2.3141293, 48.8837520 2.3845730, 48.8648255 2.3226987, 48.8534161 2.2893971, 48.8467685 2.2498518, 48.8741975 2.3697748, 48.8461888 2.3460786, 48.8562206 2.3646909, 48.8549842 2.3647206, 48.8548590 2.3649732, 48.8548113 2.3656603, 48.8548856 2.3654763, 48.8548332 2.3658969, 48.8546351 2.3638127, 48.8548713 2.3664799, 48.8554879 2.3644340, 48.8553493 2.3640907, 48.8550883 2.3644485, 48.8551698 2.3641641, 48.8556856 2.3644472, 48.8560220 2.3644996, 48.8559036 2.3643358, 48.8555066 2.3667457, 48.8549527 2.3652795, 48.8550198 2.3664293, 48.8551214 2.3667794, 48.8553095 2.3668811, 48.8556406 2.3667799, 48.8557690 2.3667700, 48.8558971 2.3668467, 48.8562354 2.3667263, 48.8562783 2.3659702, 48.8563271 2.3664082, 48.8565360 2.3650308, 48.8563985 2.3653168, 48.8563156 2.3655409, 48.8606366 2.3480234, 48.8674727 2.3294381, 48.8644344 2.3216608, 48.8642324 2.3212469, 48.8651027 2.3195628, 48.8647640 2.3195784, 48.8665184 2.3205992, 48.8658523 2.3226990, 48.8661902 2.3226784, 48.8667202 2.3210126, 48.8691399 2.3413669, 48.8546361 2.3664076, 48.8555425 2.3353926, 48.8813641 2.3738849, 48.8775023 2.4070003, 48.8754445 2.3194466, 48.8835208 2.3274294, 48.8765636 2.3181311, 48.8637028 2.3311319, 48.8633534 2.3265362, 48.8635759 2.3314977, 48.8654765 2.3211306, 48.8644685 2.3118742, 48.8670898 2.3143918, 48.8652987 2.3139595, 48.8674908 2.3136006, 48.8876533 2.3362970, 48.8488716 2.3782200, 48.8389393 2.3641414, 48.8344800 2.3365253, 48.8343320 2.3324661, 48.8206863 2.3381782, 48.8736766 2.2898597, 48.8665643 2.2388266, 48.8440190 2.3635661, 48.8425333 2.3577807, 48.8439651 2.3575775, 48.8822161 2.3112864, 48.8830250 2.3095111, 48.8821512 2.3106830, 48.8381305 2.3363290, 48.8646043 2.3182703, 48.8643210 2.3049352, 48.8644161 2.3098209, 48.8641849 2.3008761, 48.8637875 2.3235856, 48.8644663 2.3025378, 48.8439930 2.3562932, 48.8435606 2.3640026, 48.8629412 2.3261255, 48.8638801 2.3321834, 48.8343590 2.3314482, 48.8236718 2.3363883, 48.8483851 2.3959218, 48.8827099 2.3108336, 48.8652022 2.3106561, 48.8413918 2.2993591, 48.8394489 2.3300541, 48.8487690 2.3420958, 48.8492526 2.3467601, 48.8737782 2.2950354, 48.8617276 2.3329082, 48.8531662 2.3691387, 48.8636002 2.3370683, 48.8874000 2.3371053, 48.8733461 2.3668894, 48.8592670 2.3424349 +14 +0 +50 +no +55.9058039 -3.2543852, 55.9016895 -3.1650816 +velib.paris.fr, velib.paris.fr, www.Velib.fr, www.parisbiketour.net, http://en.velib.paris.fr/Stations-in-Paris/Find-a-station +68 +28 +48.8503523 2.3771322, 48.8448880 2.2932360, 48.8878186 2.3658425, 48.8433351 2.3504547, 48.8736480 2.2508289, 48.8491173 2.3580497, 48.8480441 2.4046718, 48.8480637 2.4043807, 48.8325184 2.4169483, 48.8307196 2.4193991, 48.8968098 2.3784792, 48.8971684 2.3817629 +Viernheim, Wiesloch, Schifferstadt, Walldorf, Sinsheim, Hemsbach, Speyer, Bad Schönborn, Philippsburg, Eppelheim, Leimen, Hirschhorn (Neckar), Weinheim, Eberbach, Waghäusel, Sandhausen, Östringen, Neuhofen, Neckargemünd, Edingen-Neckarhausen, Dossenheim, Hockenheim, Schriesheim, Schwetzingen, Ladenburg, Waibstadt +96 +no +329 +49.4135514 8.6842391, 49.4146501 8.6879184, 49.4168731 8.6919549, 49.4171484 8.6930088, 49.4208847 8.6912002, 49.4123719 8.7105227, 49.4121119 8.7079345, 49.4133176 8.6889779, 49.4133176 8.6889788, 49.4133176 8.6889785, 49.4133177 8.6889782, 49.4133176 8.6889782, 49.4133174 8.6889784, 49.4133177 8.6889788, 49.4208843 8.6912004, 49.4208840 8.6912006, 49.4168738 8.6919549, 49.4168732 8.6919560, 49.4208839 8.6912002, 49.4171481 8.6930091, 49.4168744 8.6919560, 49.4168739 8.6919560, 49.4208843 8.6911999, 49.4208846 8.6911997, 49.4168740 8.6919569, 49.4123720 8.7105234, 49.4115404 8.7048862, 49.4146502 8.6879184, 49.4115403 8.7048862, 49.4059416 8.6926646, 49.4059413 8.6926655, 49.4059418 8.6926647, 49.4059416 8.6926652, 49.4059414 8.6926650, 49.4196480 8.6881884, 49.4158083 8.7151936, 49.4087123 8.7054683, 49.4076130 8.7082748, 49.4076136 8.7082749, 49.4087126 8.7054655, 49.4076135 8.7082758, 49.4076129 8.7082756 +yes +48.8702443 2.3283595, 48.8633384 2.3675429, 48.8840787 2.3324082, 48.8691369 2.3682501, 48.8823390 2.3402606, 48.8355757 2.4487703, 48.8674891 2.3754429, 48.8522803 2.3779953, 48.8191551 2.3383937, 48.8308115 2.3001985, 48.8743779 2.3850894, 48.8839948 2.3588579, 48.8558275 2.3755799, 48.8431185 2.3716816, 48.8706517 2.3426340, 48.8705772 2.3552836, 48.8693146 2.3347338, 48.8685956 2.3322485, 48.8824587 2.3401820, 48.8553861 2.3625173, 48.8662147 2.3645043, 48.8618044 2.3781115, 48.8767367 2.4093454, 48.8662871 2.3578056, 48.8707153 2.3567140, 48.8626783 2.2885551, 48.8741222 2.3448869, 48.8448858 2.3578698, 48.8733204 2.3254505, 48.8658174 2.3029039, 48.8657369 2.3033357, 48.8708908 2.3743059, 48.8630516 2.3705475, 48.8587145 2.3573966, 48.8951815 2.3483062, 48.8421262 2.3534706, 48.8897504 2.3908138, 48.8733076 2.3256182, 48.8714072 2.3293794, 48.8719199 2.3288943, 48.8659605 2.3017221, 48.8770119 2.3010998, 48.8460948 2.3709948, 48.8520072 2.3570804, 48.8479782 2.3529858, 48.8685677 2.3920616, 48.8519252 2.2791325, 48.8735064 2.3141502, 48.8707525 2.3240257, 48.8858230 2.3749446, 48.8558868 2.4042383, 48.8371387 2.2888095, 48.8500456 2.3533390, 48.8566373 2.3809209, 48.8847666 2.3373500, 48.8887917 2.3829835, 48.8876043 2.3372648, 48.8399992 2.3240094, 48.8597779 2.3530954, 48.8697908 2.3549967, 48.8394650 2.3235600, 48.8702624 2.3461888, 48.8829861 2.3333274, 48.8392531 2.3231864, 48.8837701 2.3265034, 48.8597455 2.3531991, 48.8692693 2.3318524, 48.8597303 2.3459285, 48.8295361 2.3515265, 48.8794685 2.3296284, 48.8530200 2.3453773, 48.8828282 2.3366019, 48.8810211 2.3348222, 48.8840055 2.3266609, 48.8442922 2.3305405, 48.8275676 2.3774556, 48.8622030 2.3518225, 48.8723016 2.3429996, 48.8545409 2.2776862, 48.8785619 2.3313946, 48.8415099 2.3244398, 48.8843397 2.3320078, 48.8436363 2.3254799, 48.8254299 2.3098043, 48.8721414 2.3433983, 48.8577976 2.3569319, 48.8407733 2.3243516, 48.8713709 2.3448748, 48.8734883 2.3453635, 48.8288148 2.3446816, 48.8678179 2.3891525, 48.8601015 2.3815463, 48.8788666 2.3193694, 48.8701073 2.3787698, 48.8714333 2.3421383, 48.8436131 2.3220274, 48.8366211 2.3097495, 48.8504877 2.2966335, 48.8681380 2.3453696, 48.8907562 2.3403810, 48.8682866 2.3661153, 48.8750284 2.3815228, 48.8841589 2.3322157, 48.8937040 2.3443030, 48.8824430 2.3395146, 48.8954044 2.3511534, 48.8728991 2.3470277, 48.8445218 2.3487080, 48.8422145 2.3455341, 48.8434841 2.3451307, 48.8440394 2.3252776, 48.8350857 2.4497868, 48.8366738 2.4497928, 48.8351605 2.4502388, 48.8363526 2.4499634, 48.8834581 2.3344321, 48.8628332 2.3825028, 48.8956054 2.3330161, 48.8398650 2.3230690, 48.8552492 2.3391068, 48.8430973 2.3830716, 48.8680913 2.3978796, 48.8576869 2.3888826, 48.8394773 2.3242229, 48.8521921 2.3771906, 48.8331033 2.3705524, 48.8797258 2.3725494, 48.8751345 2.3951275, 48.8521193 2.3364208, 48.8792668 2.3856534, 48.8859368 2.3931939, 48.8413123 2.4117612, 48.8586001 2.4078519, 48.8587238 2.4076570, 48.8567853 2.4014546, 48.8530850 2.3312320, 48.8383465 2.4465372, 48.8743904 2.3720383, 48.8721600 2.3725531, 48.8583217 2.4080504, 48.8745019 2.3273404, 48.8609892 2.3675162, 48.8514912 2.3706641, 48.8495037 2.3387231, 48.8955599 2.3923240, 48.8577970 2.3462635, 48.8572971 2.3480529, 48.8635375 2.3361930, 48.8661384 2.3376341, 48.8683542 2.3354770, 48.8711116 2.3378434, 48.8720314 2.3317296, 48.8677538 2.3619057, 48.8422077 2.3499509, 48.8363386 2.4489730, 48.8472258 2.3389643, 48.8462040 2.3345315, 48.8709159 2.3488390, 48.8690687 2.3568989, 48.8690852 2.3564359, 48.8715401 2.3682094, 48.8898926 2.3938223, 48.8922574 2.3897916, 48.8673922 2.3186960, 48.8687177 2.3137578, 48.8695579 2.3118828, 48.8708055 2.3203157, 48.8753730 2.3307359, 48.8810211 2.3277299, 48.8784480 2.3305067, 48.8788350 2.3363565, 48.8781775 2.3370777, 48.8706464 2.4029603, 48.8700069 2.3917127, 48.8680271 2.3944885, 48.8644181 2.3973216, 48.8886235 2.3400506, 48.8831627 2.3434328, 48.8843322 2.3316646, 48.8834404 2.3424447, 48.8830878 2.3430268, 48.8887487 2.3533400, 48.8280160 2.2937656, 48.8777838 2.2607285, 48.8579466 2.2700178, 48.8774175 2.2965116, 48.8821604 2.3189011, 48.8824285 2.3187962, 48.8677573 2.3108853, 48.8866946 2.3663960, 48.8355982 2.4502568, 48.8914330 2.3583288, 48.8914295 2.2985567 +11 +10 +yes +http://www.musee-en-herbe.com/, www.labellevilloise.com/, http://www.mep-fr.org, http://equipement.paris.fr/conservatoire-municipal-claude-debussy-site-la-jonquiere-3976, http://www.paris.fr/politiques/conservation-restauration/atelier-de-restauration-et-de-conservation-des-photographies-de-la-ville-de-paris/p7672#, http://crl10.net/, http://www.fgo-barbara.fr, http://lagenerale.fr/, http://crl10.net/, http://www.labellevilloise.com, http://shakirail.blogspot.fr, http://equipement.paris.fr/conservatoire-municipal-w-a-mozart-1595, http://www.cwb.fr/, http://www.gaite-lyrique.net/, http://www.crl10.net/, http://www.zenith-paris.com/, http://www.villette.com/fr/villette-pratique/acces/la-grande-halle.htm, http://www.coursflorent.fr, equipement.paris.fr/Conservatoire Municipal Nadia et Lili Boulanger, http://www.le-bal.fr/, http://equipement.paris.fr/centre-d-animation-les-abbesses-1154, www.si.se/Paris/, http://www.104.fr/ +yes +7 +0 +Five Ways, Greyfriars Bobby Statue, Hutton's Section, Camera Obscura, Sustrans milepost, Gilmerton Cove, The Buckstane, Mons Meg, One O'Clock Gun, Grotto, Grotto, Heart of Midlothian, The Bow Well, Edinburgh Farmers' Market, Ice House, The Quarry, Clermiston Tower, Meerkat Plaza, Lemur Walk-Through, Chilean Flamingo, Painted Hunting Dog, Penguin Enclosure, Grevy's Zebra, Porcupine, Greater One Horned Rhinoceros, Stanley Crane, Darwin's Rhea, Visayan Warty Pig, Asiatic Lion, Siberian Musk Deer, Great Grey Owl, Squirrel/Capuchin Monkeys, Nicobar Pigeon, Koala Bear, Eurasian Tundra Reindeer, White-faced Saki Monkey, Magic Forest, Pygmy Marmoset, Rock Hyrax, Malayan Sun Bears, Southern Cassowary, Common Raven, Scottish wildcat, Red Titi Monkey, Asiatic golden cat, Swamp Wallaby, Pigmy Hippo, European Souslik, Gelada Baboon, Red River Hog, Lesser Bush Baby, Diana Monkey, Pallas Cat, Amur Leopard, Sumatran Tiger, Pallas Cat, Amur Leopard, Eastern Bongo, Asiatic short-clawed Otter, Red-bellied Lemur, Evolution Garden, Ring-tailed Lemur, Giant Pandas, Malayan Tapir, Warthog, Drill, Thick Billed Parrots, Penguin Enclosure, Bush dog, Pelicans, Sea Eagle, Crested Pigeon, Victoria Crowned Pigeon, Jaguar, Nyala, Lesser Kudu, Kuhl's hog deer, Cross, John Muir Grove, Scottish Heath Garden, Chinese Hillside, Rock Garden, Queen Mothers Memorial Garden, Herbaceous Border and Beech Hedge, Fossil Garden, Cryptogamic Garden, Native Woodland, Demonstration Garden, Alpine Garden, Mary King's Close, Greyfriars Bobby's Grave, Memorial to Archibald Constable, Tombstone of David Allan, Vault of Dr Robert Candlish & James Candlish, Vault of Robert Burn, Vault of William Blackwood, Georgian House, The Scotch Whisky Experience, Museum of Childhood, The Edinburgh Dungeon, Mad Max Adventures, Camera Obscura, Edinburgh Castle, Fettes College, The folly, Nelson Monument, Our Dynamic Earth, Surgeons Hall Museum, The Edinburgh Tapestry Company, Gracemount Walled Garden, Scott Monument, Royal Scots Museum, New Barracks, National War Museum, Hospital, Cartsheds, Governors House, Argyle Tower, Military Prison, Gatehouse, Holyrood Abbey, St. Giles' Cathedral, Gladstone's Land, Craigmillar Castle, Saint Cuthbert, Ross Fountain, Maned wolf, Animal Antics, White-lipped deer, Vicuna, Heck cattle, Fruitmarket Gallery, Tollbooth Tavern, St Andrew's and St George's West, Dugald Stewart Monument, Kinloch Anderson, Trinity House, HMY Britannia, Ingleby Gallery, Relief Map, Edinburgh Labyrinth, Old Calton Cemetery, Old Calton Cemetery, St Mary's Episcopal Cathedral, Malleny Garden, Mausoleum of David Hume, Political Martyrs' Monument, St Anthony's Chapel, The Scottish Parliament, Saint Stephen's Church, Greyfriars Church, John Knox House, Livingston Model Aircraft Club, Military Prison, Royal Scots Museum, Jupiter Artland, Scottish Parliament, Palace of Holyroodhouse, Old College, Lauriston Castle, Holyrood Abbey, Church of St John, National War Memorial, Queen Ann Building, Royal Palace +48.8660881 2.3521709, 48.8302437 2.3285915, 48.8534094 2.3325318, 48.8293046 2.3221365, 48.8702035 2.3720916, 48.8860129 2.3833794, 48.8820706 2.3158281, 48.8377043 2.4014006, 48.8299585 2.3776878, 48.8283835 2.3440786, 48.8567374 2.3795945, 48.8386023 2.3899562, 48.8744523 2.3285538, 48.8742351 2.3197867, 48.8707106 2.3061618, 48.8379964 2.3514064, 48.8377365 2.3515865, 48.8478014 2.2647346, 48.8489245 2.2975729, 48.8740981 2.3550319, 48.8481890 2.2839192, 48.8715470 2.3362608, 48.8242182 2.3584769, 48.8933957 2.3335323, 48.8414253 2.2875706, 48.8664526 2.3338680, 48.8332559 2.3312348, 48.8940080 2.3420130, 48.8776783 2.3950607, 48.8868122 2.3256852, 48.8834537 2.3328703, 48.8938940 2.3337117, 48.8496859 2.3992762, 48.8822580 2.3711604, 48.8690700 2.3538506, 48.8688039 2.4016891, 48.8888155 2.3602548, 48.8913760 2.3771659, 48.8916332 2.3759113, 48.8385663 2.3603627, 48.8782200 2.2952250, 48.8820372 2.3716846, 48.8817780 2.3151710, 48.8291811 2.3237504, 48.8509533 2.3424752, 48.8751193 2.3884843, 48.8516085 2.3760189, 48.8412949 2.3226720, 48.8323589 2.3156645, 48.8838545 2.2978583 +12 +3 +Barnett Hill Conference Centre, Launde Abbey, Conference Center, Mount Victoria Eltham Park Recreation and Conference Centre, Ekudeni, The Moon & Sixpence, Hakunamatata, Intundla, iZapa Lodge, Alrewas Hayes, The Venue, Brightlife, High Trenhouse, Whispering Oaks Terrace, Point Conference Centre, Brackenhurst, Conference Centre, MRC Wales, VVCH Conference Hall, London Art House, Salons Mauduit, Shokran, The Emerald Suite, Viparis, Suractivo, Vulindlela The village of Coega, El Rancho Centro Eventos, The Metropolitan Conference Centre, The Palace, Renaissance Convention Hall, ศูนย์ศึกษาการพัฒนาห้วยฮ่องไคร้ฯ, GTRI Conference Center, Espace Reuilly, Auditorium du Musée Fabre, 北京实创西山科技培训中心, Le Chorus, Mahsuri International Exhibition Centre, Talaris Conference Center, Office Factory GmbH, イイノホール, 松江オープンソースラボ, Pfalzakademie, Mission Bay Conference Center at UCSF, Les Foréziales, Illinois Conference Center, The Venue, Glow, Business Center, ไทยพาณิชย์ ศูนย์ฝึกอบรมเชียงใหม่, Salem Conference Centre, Cleaves Conference Centre, Salle Hubert Curien, Amphithéâtre 6, Amphithéâtre 1, Amphithéâtre 2, Amphithéâtre 3, Amphithéâtre 4, Amphithéâtre 5, El Laurel, Arena Sauípe, Sauipe Centro de Convenções, Camp Au Sable, Camp CoBeAc, Camp Wa Wa Sum, Kerschensteiner Kolleg, Ecostudio Fellini, Centro de Convenções e Eventos do Parque Tecnológico, Centre de Conférence, Kurfürstliches Schloss, ZEISS Forum, Das Wormser, The Clerkenwell Centre, Julius Nyerere International Convention Centre, 幕張メッセ 国際会議場, Europa Convention Centre, Education & Research Center, 求真廳, Eurogress, ExCeL, Kongresszentrum (Westfalenhallen), San Jose McEnery Convention Center, South Hall, Nell-Breuning Haus, Swissôtel Rheinpark Congress Centrum, John McIntyre Conference Centre, Santa Clara Convention Center, MAGMA Art & Congress Center, William A. Egan Civic & Contention Center, Trent Vineyard Conference Centre, Monona Terrace Convention Center, Gerry Weber Event & Convention Center, Villa Sell, Tucson Convention Center, Parc des Expositions, Buena Vista (estate), Wiston House, Château Royal, Espace Chevreul, Espace CAP 15, The Derby Conference Centre, Cobb Galleria Centre, Bingemans Conference Centre, The Glen Ivy Center, Mackillop House and Conference Centre, Centro de Convenciones ATLAPA, Schloss Marbach, New Bingley Hall, Maxima Forum, Las Cruces Convention Center, ABG Tagungszentrum, Lufthansa Training & Conference Center, Espace Tête d'Or, Hermes, Calgary TELUS Convention Centre, قصر المؤتمرات, Arlington Convention Center, Jolie Ville International Congress Center, ศูนย์ประชุมนานาชาติฉลองสิริราชสมบัติครบ ๖๐ ปี, The Ammerdown Centre, Centre de Congrès Pierre Baudis, Centre de congrès Le Manège, Le Manège, Margate Conference Centre, Saint John's Mill, Akademie Berlin-Schmöckwitz, Salle de Prince, ICC London, Burwell House, Tagungszentrum Haus Hessenkopf, Edmonton Exposition & Conference Centre, McLean Estate, Palais des Congrès de Marrakech, Blackbrook House, Schloss Marbach, Villa Vera, Centro de Convenções de Curitiba, Ruidoso Convention Center, Gutsbetrieb Rehhütte, Qatar National Convention Center, Agora, Kloster Banz, Vaughan Estate, Agropolis International, The Abbey, Singapore Expo, Changi Exhibition Centre, Bahrain International Exhibition Centre, Genting International Convention Centre, Evangelische Akademie Loccum, Wartenberg OVAL, New Dock Hall, Geelong Conference Centre, International Convention and Exhibition Center, Convention Centre, 金光會展 Cotai Expo, National Metalforming Centre, ศูนย์ฝึกอบรมงานอภิบาล บ้านผู้หว่าน, Croydon Conference Centre, High Country Conference Center, Nicholas J. Pirro Convention Center, Caniçal Conference Room, Caniçal Conference Room, Persada International Convention Center, UIC Forum, Auditório Elis Regina, Palácio das Convenções, Team Talk Conference Venue, Centro de Convenções Ribeirão Preto, Expo Vale Sul, UCLA Lake Arrowhead Conference Center, Kalyana Mantapa, Saratoga Springs City Center, Campus "Schloss Gracht" der European School of Management and Technology (ESMT), TD Convention Center, Centro de Convenções Pereira Alvim, Cherwell Centre, Haus Haard, Koʻolau Ballrooms & Conference Center, McCracken Park, Tradex, Folha Verde, Forum Gesundheit, Strelley Hall, River Lodge Conference Center, Shared Visions Retreat Center, The Chateau, Complexo Expoville, BayKomm, The Devonshire, Wallace Space, Kiah Ridge Christian Conference Centre, Domaine des Fontaines, Kursaal Bad Cannstatt, Elbehof, Regent Centre, Centre de Congrès Prouvé, Pivot Point Conference Center, Green Lake Conference Center, Westwood Conference Center, RioCentro, Talaris Conference Center, Centre International de Conférences Mohamed VI, מרכז הירידים, Auditório Brasílio Itiberê, Gala Convenciones, Palais des Congrès - CICP, Greenville Convention Center, Victoria Conference Centre, Haus der bayerischen Landwirtschaft, Kosmos, Le Chorus, Skelton Conference Center, Centre de Conférence +61.850904020313429 +48.8740289 2.3897101, 48.8646989 2.3689158, 48.8855550 2.3755636, 48.8447404 2.3092568, 48.8468100 2.3418230, 48.8621754 2.4002743, 48.8429214 2.3381927, 48.8754781 2.3565478, 48.8385482 2.2902657, 48.8483679 2.3757997, 48.8515538 2.2912722, 48.8678917 2.3455591, 48.8818036 2.3371365, 48.8816458 2.3735588, 48.8770752 2.3509789, 48.8395423 2.2779531, 48.8462660 2.3758720, 48.8459472 2.3821633, 48.8522672 2.3651848, 48.8781276 2.3695316, 48.8796085 2.3717349, 48.8617906 2.3644522, 48.8637388 2.3717218, 48.8524891 2.3411126, 48.8829303 2.3343538 +McDonald's, KFC, Quick, Joe Allen, American Bistrot, Club des 5, Burger King, IT Rocks, Danny Hills, Le Déli Parisien, McDonald´s, Le Petit Marcel, HD Diner, Royal food, Pépé Santana, L'Escale des Gobelins, Imime, Blend burger, Latin Food, Bioburger, Hamler's, VG, Pdg Rive Gauche, New-York à Paris, Petit Gaston, Burgers Bar Manin, Burgerim, Tata Burger, Hank, Blend, Mamie Burger, Maison Burger, East Side Burgers, Breakfast in America, bioburger +no +St. Laurentius, St. Michael, St. Vitus, St. Bonifatius, St. Johannes, Jesuitenkirche, Sankt Anna, St. Teresa Kirche, St. Marien, St. Laurentius, Sankt Peter +35 +no +1 +yes +17 and 48.8348588 2.3273891, 48.8452357 2.3490360, 48.8418339 2.3497835, 48.8752025 2.3376055, 48.8446176 2.3491298, 48.8529435 2.3456985, 48.8528864 2.3462159, 48.8531271 2.3452514, 48.8530349 2.3453279, 48.8531460 2.3451752, 48.8528383 2.3461107, 48.8528174 2.3454656, 48.8526936 2.3454400, 48.8526255 2.3453560, 48.8770340 2.3271360, 48.8765381 2.3785538, 48.8785190 2.2893290 +95 +yes +55.9676146 -3.1851220, 55.9389438 -3.1762512, 55.9342812 -3.1910903, 55.9468366 -3.1927193, 55.9242044 -3.2136831, 55.9267237 -3.2541012, 55.9399653 -3.2243647, 55.9530161 -3.2227017, 55.9543705 -3.2231752, 55.9545272 -3.4038139, 55.9848485 -3.4000740, 55.9895563 -3.3951093, 55.9138101 -3.1625880, 55.9139003 -3.1561271, 55.9311802 -3.1650916, 55.9494846 -3.2921322, 55.9535325 -3.1763565, 55.9591815 -3.2287132, 55.9369373 -3.2288584, 55.9293858 -3.1242296, 55.9546952 -3.1369685, 55.9449273 -3.0904981, 55.9265280 -3.1510008, 55.9684639 -3.1977758, 55.9668042 -3.1974105, 55.9263848 -3.3788125, 55.9776182 -3.2998389, 55.9696978 -3.1493775, 55.9540571 -3.1860764, 55.9719475 -3.1703032, 55.9456846 -3.1922146, 55.9631536 -3.1680074, 55.9534939 -3.1859938, 55.9242973 -3.3802986, 55.9535098 -3.1860262 +9 +48.8210997 2.3589704, 48.8791473 2.3474694, 48.8645853 2.3050980, 48.8367928 2.3780749, 48.8188321 2.4576115, 48.8323659 2.2806907, 48.8608636 2.4139162, 48.8857931 2.2880907, 48.8964346 2.3097184, 48.8899579 2.3961548, 48.8235298 2.3100220, 48.8543067 2.2543634, 48.8219825 2.3796095, 48.8537201 2.3564387, 48.8658546 2.3540003, 48.8664342 2.2684904, 48.8260164 2.2988457, 48.8976500 2.3315770, 48.8374241 2.3354339 +Forstquelle, Turnerbrunnen, Drei Eichen Brunnen, Schneeberg, Kalkbrunnen, Römerbrunnen, Schellwiesenbrunnen, Brunnen, Lindenbrunnen, Kolonialbrunnen, Brunnen, Brunnen, Silberbrunnen, Kühbrunnen, Brunnen, Brunnen, Brunnen am Forsthausweg, Hurenbrunnen, Todtenbronnen, Märzenbrunnen, Zollstockbrunnen, Vögele Brunnen, Michaelsbrunnen, Finkenbach-Quelle, Buchbrunnen, Hesselbrunnen, Friedrichsfeld 9, Lustbrunnen, Brunnen, Brunnenberg, Münchelbrunnen, Quelle beim Hasselbacherhof, Siegfriedsbrunnen Odenheim, Trinkwasserbrunnen, Brunnen, Heiligenbrunnen, Bittersbrunnen, Strangwasenbrunnen, Hellenbachbrunnen, Felsenquelle, Waldquelle, Sachswegbrunnen, Lambertus Quelle, Dorfbrunnen Schwanheim, Kerles Brünnela, Gundelsbrunnen, Dorfbrunnen Igelsbach, Igelsbach, Friedrichsfeld 3, Friedrichsfeld 4, Friedrichsfeld 5, Friedrichsfeld 6, Friedrichsfeld 8, Friedrichsfeld 7, Rehberger-Brunnen, Friedrichsfeld 1, Himmelreichbrunnen, unterer Homrichsbrunnen, oberer Homrichsbrunnen, Katzenbuckel, Matzenbrunnen, Krämersbrunnen, Benzbrunnen, Klemmertsbrunnen, Aalsbrunnen, Toten-Brunnen, Steingrundquelle, Fieberbrunnen, Leonhardsbrunnen, Raubacher Höhe, Dorfbrunnen Falken-Gesäß, Berndsbrunnen?, Dorfbrunnen Affolterbach, Tromm, Rumpels-Brunnen, Der kalte Brunnen, Hirschquelle, Günther-Fischer-Brunnen, Quellgebiet, Braun-Quelle, Wildschweinsuhle, Brunnen (Wasser fraglich), Birken-Brunnen, Queckbrunnen, Mausbach-Quelle, Bergbrunnen, Burgbrunnen, Simonsbrunnen, Erlbrunnen, Hirtenbrunnen, Unterdorfbrunnen, Hirschquelle, Krösselbachbrunnen, Römerbrunnen, Quelle Kreiswald, Schwarzbach, Quellgrotte, Stockbrunnen, Schmidt'sche Quelle, Felsenmeerquelle, Moselbrunnen, Siegfriedquelle +55.9599432 -3.2183810, 55.9602435 -3.2197972, 55.9589756 -3.1545086, 55.9606004 -3.1352700, 55.9528642 -3.2264190, 55.9345768 -3.2003903, 55.9638228 -3.1780594, 55.9518244 -3.1155121, 55.9699868 -3.1737761, 55.9701973 -3.1739279, 55.9388322 -3.2261760, 55.9524435 -3.1135567, 55.9717406 -3.1741296, 55.9693966 -3.1688854, 55.9510966 -3.1085710, 55.9437881 -3.2070159, 55.9300110 -3.2100136, 55.9438531 -3.2042371, 55.9420724 -3.1830370, 55.9471624 -3.1824118, 55.9518191 -3.1796232, 55.9321048 -3.1417445, 55.9313181 -3.1303585, 55.9352154 -3.1201411, 55.9328975 -3.1293020, 55.9321318 -3.1290498, 55.9406530 -3.1200541, 55.9411807 -3.1490609, 55.9502631 -3.1026251, 55.9154139 -3.1309189, 55.9454192 -3.1860553, 55.9405307 -3.2034601, 55.9365416 -3.2274826, 55.9339873 -3.2236723, 55.9602512 -3.1936038, 55.9402144 -3.2252877, 55.9486925 -3.2000899, 55.9455169 -3.1830207, 55.9441448 -3.1847026, 55.9421481 -3.1863693, 55.9456704 -3.1811256, 55.9494705 -3.1908525, 55.9720506 -3.1705546, 55.9476459 -3.1911817, 55.9487698 -3.1941172, 55.9634913 -3.1955890, 55.9306269 -3.2393487, 55.9390955 -3.2281220, 55.9582182 -3.2036684, 55.9727731 -3.1780368, 55.9264995 -3.1847934, 55.9409940 -3.2083656, 55.9590395 -3.2250691, 55.9782443 -3.2238463, 55.9759267 -3.2278467, 55.9762144 -3.2241714, 55.9758198 -3.2323187, 55.9755242 -3.2379423, 55.9713618 -3.2381377, 55.9342034 -3.1931303, 55.9460352 -3.2404177, 55.9381173 -3.2348593, 55.9379531 -3.2328868, 55.9472990 -3.2368673, 55.9494623 -3.2105484, 55.9133249 -3.1612586, 55.9142971 -3.1556634, 55.9171791 -3.1532719, 55.9496531 -3.2051547, 55.9408827 -3.1764274, 55.9330632 -3.1771455, 55.9507312 -3.1855926, 55.9307377 -3.1718855, 55.9626750 -3.1983267, 55.9603211 -3.2068531, 55.9540545 -3.1958519, 55.9705136 -3.2090520, 55.9704118 -3.2140175, 55.9536168 -3.2152726, 55.9686272 -3.1672689, 55.9718431 -3.1725925, 55.9798298 -3.1971422, 55.9191510 -3.2123681, 55.9606718 -3.1730123, 55.9788677 -3.2108480, 55.9650977 -3.2490516, 55.9397056 -3.2127147, 55.9732423 -3.2016374, 55.9760054 -3.1829902, 55.9754079 -3.1820516, 55.9511827 -3.2055031, 55.9613846 -3.1948052, 55.9345857 -3.2096226, 55.9660731 -3.1740541, 55.9357478 -3.1903059, 55.9547210 -3.2212015, 55.9473796 -3.2162168, 55.9352870 -3.1783681, 55.9731449 -3.1689705, 55.9450514 -3.2016119, 55.9650430 -3.1970342, 55.9243327 -3.2086992, 55.9543261 -3.2217641, 55.9486145 -3.2162817, 55.9582618 -3.2523094, 55.9432361 -3.1906794, 55.9376675 -3.1916760, 55.9488571 -3.1936393, 55.9560907 -3.1878581, 55.9304008 -3.2059444, 55.9366569 -3.1786654, 55.9345092 -3.2106395, 55.9482972 -3.1955031, 55.9381406 -3.2071920, 55.9585641 -3.2034909, 55.9363884 -3.1696824, 55.9601264 -3.1937826, 55.9567662 -3.1885665, 55.9432298 -3.2014873, 55.9466336 -3.1922732, 55.9222605 -3.1522385, 55.9578836 -3.1723330, 55.9580966 -3.1722775, 55.9496587 -3.1844840, 55.9510003 -3.1870928, 55.9608626 -3.1709376, 55.9618365 -3.1669617, 55.9617695 -3.1672858, 55.9617360 -3.1670315, 55.9617015 -3.1669427, 55.9405277 -3.1801470, 55.9400777 -3.1787980, 55.9335152 -3.2105421, 55.9646922 -3.1748195, 55.9659516 -3.1739827, 55.9432327 -3.1903850, 55.9433218 -3.1904284, 55.9718215 -3.2052420, 55.9500762 -3.2064723 +49.3882490 8.6574483 +49.4311045 8.6454842 +Ibis +12 +0.65777548492132099 +130 +Plumed Horse +75 +castle, monument, tomb, yes, memorial, boundary stone, wayside shrine, monastery, archaeological site, tree, wayside cross, ruins, battlefield, stone, building, statue, ship, citywalls, palace, church, city gate +562 +55.9509120 -3.1684417, 55.9505684 -3.1636997, 55.9409571 -3.1518694, 55.9414904 -3.1501988, 55.9414101 -3.1510969, 55.9304112 -3.2001421 +24 +fuel, post office, library, bicycle rental, school, restaurant, fire station, parking, post box, police, place of worship, toilets, bank, cinema, courthouse, fountain, parking entrance, hospital, bar, cafe, nightclub, fast food, pub, pharmacy, theatre, wine bar, internet cafe, yoga studio, marketplace, bus station, motorcycle parking, telephone, vending machine, public building, swimming pool, arts centre, drinking water, bicycle parking, atm, recycling, doctors, taxi, car sharing, veterinary, bench, community centre, car rental, kindergarten, photo lab, bureau de change, videoclub, nursery, childcare, clock, waste basket, embassy, social facility, ice cream, townhall, university, ferry terminal, billboard, car wash, gallery, parking exit, college, creche, job centre, consulate, medical centre, clinic, driving school, conference centre, mode, association, auctioneer, administration, studio, shelter, shower, dentist, luggage locker, public office, dancing school, podologist, laboratory, gym, storage, youth centre, money transfer, coworking space, oil, food court, nurse, logopedia, kinesiotherapy, parking space, publisher, teahouse, social centre, orthopedic, podiatrist, psychiatrist, couture, bbq, sports club, spa, hammam, nursing home, jobcentre, healthcare, charging station, shooting stand, congress, music school, hotel, yes, physiotherapy, vehicle inspection, vehicle impound, nusery, personal service, photo booth, training, boat rental, fitness center, fablab, medical laboratory, dojo, animal welfare, piano lessons, shisha, cash machine, shisha bar, validateur, lift, photobooth, table, animal boarding, mall, exhibition center, events venue, authority, hospice, small parking, monastery, basin, convention center, retirement home, prison, waste disposal, bandstand, sports centre, zen zone +yes +chaplin.cine.allocine.fr/ +52.5015724 13.2685629, 51.4965481 7.4577849, 51.0688308 13.7167046, 48.9726998 2.5171305, 51.3966619 12.4034569, 48.1366443 11.6981849, 46.2344033 6.1191983, 48.9806259 8.3301712, 48.8322928 2.2842123, 50.9458456 6.9797172, 49.2322742 6.9573496, 52.3242704 9.8053349, 48.8292714 2.2907137, 48.8291099 2.2915902, 51.2880121 9.4957078, 48.8306608 2.2863809, 54.4963914 9.0897023, 48.3408121 10.8913607, 52.1349571 11.6706710, 51.4962294 -0.2105575, 53.5624399 9.9743285, 52.4537558 -1.7192418, 48.7051963 9.0385171, 48.4138609 10.0132263, 54.1391615 12.0731310, 50.1100075 8.7559897, 48.8311661 2.2904065, 48.8294546 2.2891932, 48.6940952 9.1881545, 51.4884447 -0.1984272, -0.0331119 -78.4526172, 52.3846820 13.1179605, 49.4684281 8.5239438, 33.4271992 36.3930966, 47.6777131 9.5091736, 48.8287686 2.2884204, 51.4526614 12.0261900, 45.7307650 4.9503203, 50.0767699 8.2443175, 49.4189613 11.1166070, 50.9599579 10.9924795, 51.2598139 6.7406748, 52.0528499 8.7568799, 51.4282939 6.9952367, 53.1472071 8.2273515, 48.9711809 2.5213419, 53.0880486 8.8143284, 50.8178367 12.8815144, -1.6693364 -78.6675059, 50.8635529 9.3470816, 50.1115181 8.6445877, 51.2836698 12.3898146, 51.9465307 7.6376545 +2.0405257198361264 +no +58 +Idara Taleem ul Quran, Edinburgh Central Mosque, IQRA Academy, Mohuiddin Jamia Masjid, Anwar-E-Madina +yes +78.543913850010583 +yes +55.9566271 -3.2720552, 55.9418294 -3.1502506, 55.9201209 -3.2500686, 55.9232770 -3.2473521, 55.9256887 -3.2299616, 55.9216082 -3.1959071, 55.9190764 -3.1843258 +155 +49.4068403 8.6904933, 49.4152724 8.7089320, 49.4152263 8.7091544, 49.4136480 8.7107879, 49.4137160 8.7131886, 49.4043662 8.6769558, 49.4042794 8.6767159, 49.4043928 8.6767032, 49.4040938 8.6777606, 49.4041378 8.6780055, 49.4041963 8.6783706, 49.4078625 8.6803507, 49.4079068 8.6803518, 49.4079150 8.6852124, 49.4079624 8.6851808, 49.4084050 8.6884254, 49.4084670 8.6883986, 49.4111209 8.7057655, 49.4129809 8.7053485, 49.4132415 8.7055842, 49.4133149 8.7054986, 49.4055633 8.6828676, 49.4049949 8.6822918, 49.4129282 8.7027762, 49.4090720 8.7054522, 49.4069337 8.6900774, 49.4088905 8.7053904, 49.4092125 8.7080457, 49.4095401 8.7091480, 49.4133887 8.7086161, 49.4124611 8.7128500, 49.4114089 8.7119309, 49.4112562 8.7115057, 49.4005092 8.6783953, 49.4016334 8.6747771, 49.3998313 8.6768307, 49.4064011 8.6905312, 49.4042522 8.6786859, 49.4038577 8.6765425, 49.4047148 8.6787123, 49.4050422 8.6812130 +www.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, http://rhein-neckar.stadtmobil.de/, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, http://rhein-neckar.stadtmobil.de/, https://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de/, https://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de/, http://www.stadtmobil.de +Gaumont Aquaboulevard, Gaumont Parnasse, UGC Rotonde, UGC Montparnasse, Les Montparnos, Gaumont Miramar, Le Bretagne, Cinéma Chaplin, Gaumont Convention, Sept Parnassiens, Le Champo, Reflet Médicis, UGC Gobelins, Gaumont Gobelins, MK2 Odéon, MK2 Nation, MK2 Beaubourg, L'Escurial, La Clef, La Filmothèque du Quartier Latin, UGC Ciné-cité Bercy, L'entrepôt, UGC Lyon Bastille, Cinéma la Bastille, Majestic Bastille, Le Panthéon, Accattone, Cinéma des cinéastes, Studio Galande, Le Nouveau Latina, Gaumont Opéra Premier, Le Grand Rex, Studio des Ursulines, Le Saint-Germain des Prés, L'Arlequin, Cinéma Gaumont Champs-Elysées Marignan, Cinéma Gaumont Champs-Elysées Ambassade, Le Lincoln, UGC Odéon, UGC Danton, Cinéma Louis Lumière, Gaumont Opéra Français, Studio 28, Le Desperado, Le Grand Action, L'Épée de Bois, Espace Saint-Michel, Le Beverley, Nouvel Odéon, Cinéma Saint-André des Arts, Les 3 Luxembourg, Action Christine, Mk2 Parnasse, Saint-Lazare Pasquier, 5 Caumartin, Max Linder Panorama, UGC George-V, Le Balzac, Publicis Cinémas, UGC Normandie, Le brady, MK2 Bastille, L'Archipel, UGC Maillot, Cinéma Le Denfert, Cinema Mac Mahon, Majestic Passy, Pathé Wepler, Gaumont Alésia, UGC Ciné-Cité Les Halles, Pathé Beaugrenelle, Pathé Wepler, UGC Opéra, Mk2 Hautefeuille, MK2 Bibliothèque, Le Louxor, MK2 Quai de Loire, MK2 Quai de Seine, Le Cinaxe, Géode, La Pagode, Gaumont Opéra Capucines, MK2 Gambetta, Pathé Wepler, Fondation Jérôme Seydoux-Pathé, Etoile Lilas, UGC Ciné Cité Paris 19, Forum des Images +0 +Gulli Parc, Jardin d'Acclimatation +yes +49.4122875 8.7109014, 49.4274974 8.6861291, 49.4086321 8.6989216, 49.4255146 8.6476417 +24 +48.8318676 2.2884097 +Autolib, Autolib +no +53.9441501 -1.1072575 +297 +Hôtel Louvre Bon Enfants, Hôtel Paris Rivoli, Tryp Hôtel Paris François, Hôtel Val Girard, Hôtel Cluny Square, Relais du Pré, Hôtel du Pré, Résidence du Pré, Au Manoir Saint-Germain des Prés, Hôtel Prince Albert, Ibis, Hôtel Kyriad, Hôtel Plaza Élysées, Terminus - Lyon, Hôtel Alexandrie, Hôtel Dacia, Hôtel Victoria Châtelet, Hôtel Britannique, Hôtel Louvre Saint-Anne, Hôtel France d'Antin, Folkestone Opéra, Sydney Opéra, Hôtel du Plat d'Étain, Hôtel de la Paix République, Austin's Arts et Métiers Hôtel, Hôtel du Rond-Point des Champs-Élysées, Timhotel Élysée, Hôtel Berne Opéra, Hôtel de la Flèche d'Or, Grand Hôtel du Havre, Hôtel du Panthéon, Hôtel Plaza La Fayette, Hôtel Acte V, Villa des ambassadeurs, Hôtel Résidence Foch, Hôtel Elysa-Luxembourg, Queen's Hôtel, Jules Cesar, Hôtel Notre-Dame, Hôtel Moderne Saint-Germain, Hôtel Sully Saint-Germain, Hôtel Ronceray, Les Relais de Paris, William's Opera, Élysée, Grand Hotel Haussmann, Hôtel Helder Opera, Hôtel Opera Vivaldi, Baudelaire, Alison, Opéra D'Antin, Plaza Opera Hotel, Villa Lamartine Opéra, Hôtel Impérial, Hôtel des Arènes, Hôtel de Sévigné, Hôtel Terminus Montparnasse, Hôtel des Arts, Palma Hotel, Windsor Opera, Ideal Hotel, Porte de Versailles Hotel, Hôtel Median Paris Porte de Versailles, Hôtel Virginia, Quality Suites, Cordelia, Jardin de Villiers, Pavillon Villiers Étoile, Europe - St Séverin, Hôtel Saint-Charles, Hôtel de la Paix, Hôtel de France, Hôtel de l'Alma, Fertel Maillot, Hôtel CÉ, Grand Hôtel de Normandie, Hôtel du Calvados, Austin's Saint-Lazare, Austin's Saint-Lazare, Hôtel Villa Garibaldi, Academie Hotel, Le Richemont, Hôtel du Triangle d'Or, Hôtel Noir, Hôtel Amiral Fondary, Pavillon Porte de Versailles, Timhotel Palais Royal, Paix Madeleine, Hôtel Cervantes Paris, Axel Opéra, Hôtel Royal-Bergère, Hôtel Touring, Hôtelp Chateaudun Opéra, Monterosa, Hôtel Touraine Opera, Super Hotel, Ibis Gare De Lyon Diderot, Hôtel Claret, Hôtel Ambre, Hôtel Ibis Italie Tolbiac, Ibis Styles Tolbiac Bibliothèque, Royal Fromentin, Hôtel Mercure Paris XV, Hôtel Acropole, Hôtel Balmoral, Hôtel Belfast, Hôtel La Régence, Hôtel Stella Etoile +48.8316492 2.2999377, 48.8633521 2.3710595, 48.8633741 2.3663922, 48.8615468 2.3727192, 48.8648587 2.3516262, 48.8659826 2.3540443, 48.8658957 2.3524620, 48.8630663 2.3527335, 48.8256825 2.3151865, 48.8250160 2.3112381, 48.8279762 2.3057040, 48.8282568 2.3034035, 48.8636772 2.3510372, 48.8658631 2.3695102, 48.8610722 2.3670951, 48.8655959 2.3652444, 48.8655288 2.3523437, 48.8613680 2.3530523, 48.8626723 2.3594550, 48.8600851 2.3608850, 48.8650242 2.3602350, 48.8648944 2.3762643, 48.8252648 2.3158680, 48.8262191 2.3053681, 48.8320219 2.3028314, 48.8255813 2.3041840, 48.8582183 2.3633569, 48.8227669 2.3087009, 48.8215858 2.3017380, 48.8279457 2.3056505 +DRK Bereitschaft Heidelberg Stadt-Mitte +yes +Cafe Bar Piro +185 +(0131) 557 3032 +06221-434441 +École maternelle, École maternelle, Crèche collective Philippe de Girard, Halte-garderie, Crèche collective Clisson, École maternelle, Crèche de l'Étoile, École maternelle, École maternelle Charles Hermite, AJEFA jardin d'enfants franco-allemand, École maternelle privée Le Petit cours du Rocher, École maternelle, École maternelle Hôpital Saint-Louis F, École maternelle, Crèche, Crèche Collective Hutinel, Crèche Georgette Agutte, Crèche Bernard Dimey, École maternelle Réunion, Crèche La Fée Tiphaine, Crèche Collective, Crèche municipale, Halte garderie, Crèche collective, École maternelle Télégraphe, Crèche de la Plaine, Halte Garderie Municipale, Crèche Collective, Crèche de la Croix Rouge, Crèche collective, Crèche Charlemagne, Crèche collective municipale, École Maternelle des Renaudes, Crèche collective, Crèche collective Delessert, Crèche Collective, Crèche au gazouilli du val, Crèche collective et halte garderie, Crèche Lobineau, Creche collective Les Petits Gailhard, École maternelle Émélie, Creche Grenadine et Menthe a l'eau, Creche collective, Crèche Collective, Crèche collective, Crèche Pelée, Crèche collective, Crèche CNAVTS, École maternelle du Clos, École maternelle Chardon-Lagache, Crèche Collective Municipale Monceau, École maternelle 68 Vitruve, Crèche collective, École maternelle Écluses Saint-Martin, École Maternelle Boy Zelinski, Crèche Municipale, Crèche Collective, École privée catholique Blanche de Castille, École Maternelle et Crèche, Crèche, École Maternelle Lyonnais, École Maternelle Lachambeaudie, Crèche, École maternelle Piat, École maternelle, Crèche, École maternelle Pierre Budin, École maternelle Marcadet, École maternelle, École maternelle, Crèche collective, Crèche Municipale, École Maternelle Lahire, Halte-Garderie, École maternelle du Département, École maternelle Pommard, École maternelle Jourdain, École maternelle du Département, École maternelle Georges Thill, École maternelle Pelleport, École maternelle Bois, École maternelle 61 Vitruve, École maternelle 9 Lesseps +79 +viewpoint, hotel, museum, attraction, picnic site, information, artwork, chalet, guest house, hostel, zoo, gallery, camp site, theme park, citytour +3056 +no +french, indian, vegetarian, mexican, pasta, chinese, thai, regional, vietnamese, japanese, couscous, grill, belgian, italian, arab, international, Vietnamese, pizza, New-french, libre, Corse, american, sichuan, Lanzhou, lebanese, peruvian, sushi-yakitori, turkish, crepe, Lebanon, sushi, asian, kebab, Sushi-yakitori, shandong, traditional, Sardaigne, steak house, Persan (Iranien), Vietnamien, mediteranean, japonais, seafood, korean, latin american, Lao, spanish, burger, corsican, moroccan, algerian, Bistrot gastronome, sandwich, gastronomic, jewish, corean, bagel, polish, argentinian, belgium, tibetan, marocan, vietnamien-cambodgien, tapas, see food, vietnam, Lebanese, brunch, senegalese, kosher, Hangzhou, smart traditional, fish, marocain, brasilian, berber, greek, ivoirian, libanese, polonese, african, chineses (Teochew) - 中国潮州, Océan indien, latino, fondue, Cambodgien, basque, crêpe, local, maltese, chinese - Fondue pékinoise, ethiopian, Sud-Ouest France, creole, mediterranean, brasserie, crepes, coffee shop, coréen, breton, magreb, malaysian, indonesian, thai fruit juces, bistro, brazilian, cocktails, crèpes, morrocan, Indian, iranian, traiteur japonais, Coréen, Grec, ramen, brazil, American, Lyonnaise, Amérique du Sud - Argentine, Japanese, pâtisserie sans gluten, mongol, Cap Vert, portuguese, ukrainian, meat, française, pizza bio, lao, cambodgian, mauritian, Kebab, salad, caribbean, Oriental Couscous, oriental, Jiangxi, international (Francaise, sud americaine), berbere, oriental couscous, colombian, marocaine, classique, paella, Française, african caribbean, new york pizza, north african, indian pakistanese, Chinese, Sichuan, Burger, Armenian, ouïghour, irak, cuisine nissarde, salade, bio, cake, gluten free, Thai, seasonal, Kazakh, Russe, Italiano, huoguo, bento, maroc, crèpe, mediterean, mediterrneen, russian, Sandwich, organic, régional, vegan, salon de thé, restaurant +49.3905924 8.6739719, 49.4115364 8.6766566, 49.3905596 8.6743412, 49.3960051 8.6864746, 49.3960694 8.6860163, 49.4123557 8.7728324 +55.9358156 -3.2103653 +no +2 +4 +48.8672033 2.3175552, 48.8794780 2.2911520, 48.8684023 2.3502078, 48.8662853 2.3197532, 48.8659622 2.3186038, 48.8679910 2.3372848, 48.8844724 2.3214773, 48.8848286 2.2981665, 48.8815112 2.2955182, 48.8637584 2.2404391, 48.8684582 2.2651973, 48.8652473 2.2754857, 48.8724857 2.2964468, 48.8645482 2.2749436, 48.8798361 2.2946562, 48.8867832 2.3174727, 48.8834250 2.3133443, 48.8832839 2.3261502, 48.8620110 2.2617158, 48.8590276 2.2701439, 48.8621864 2.2858577, 48.8627962 2.2854972, 48.8620791 2.2848191, 48.8844757 2.3382719, 48.8859435 2.3414431, 48.8777755 2.4052173, 48.8805089 2.3247630, 48.8795193 2.3372522, 48.8860003 2.3379474, 48.8871034 2.3395432, 48.8872913 2.3493292, 48.8849270 2.3525804, 48.8994594 2.3456310, 48.8925222 2.3614454, 48.8881990 2.3259122, 48.8670855 2.3530694, 48.8647563 2.3632147, 48.8775035 2.3271975, 48.8674231 2.3585861, 48.8718710 2.3683060, 48.8699280 2.3499165, 48.8787743 2.4087695, 48.8790383 2.4084495, 48.8782046 2.4088226, 48.8793770 2.4082476, 48.8785854 2.4080833, 48.8640823 2.3242375, 48.8649222 2.3994933, 48.8706300 2.2979200, 48.8628604 2.3719559, 48.8677797 2.3773892, 48.8954660 2.3118560, 48.9006880 2.3443120, 48.8726523 2.2991152, 48.8880790 2.3433440, 48.8606880 2.2465600, 48.8817158 2.3974038, 48.8630654 2.2649414, 48.8635021 2.2620126, 48.8597630 2.3718080, 48.8963810 2.3139000, 48.8852454 2.3310516, 48.8612160 2.3941080, 48.8893940 2.3388820, 48.8954560 2.3210460, 48.8674870 2.3165830, 48.8778330 2.3934820, 48.8898960 2.2981300, 48.8871960 2.3058630, 48.8998070 2.3740820, 48.8599920 2.3625150, 48.8623280 2.3486460, 48.8855390 2.3268800, 48.8691890 2.2731280, 48.8898369 2.3739136, 48.8951024 2.3643279, 48.8654640 2.3863600, 48.8702780 2.3853090, 48.8684460 2.3844060, 48.8743960 2.3620000, 48.8590555 2.3853281, 48.8909945 2.3180223, 48.8708487 2.3842762, 48.8808400 2.3880660, 48.8789680 2.3090890, 48.8861910 2.3437000, 48.8782185 2.2703461, 48.8649444 2.4051523, 48.8711656 2.3608619, 48.8683392 2.3860944, 48.8617560 2.2470009, 48.8876610 2.2899050, 48.8957085 2.3611060, 48.8736560 2.2651653, 48.8634236 2.2498140, 48.8715892 2.2642560, 48.8670116 2.2393588, 48.8589309 2.2291849, 48.8593085 2.2283998, 48.8683594 2.2629205, 48.8728525 2.2727107, 48.8827393 2.3748215, 48.8649924 2.3911518, 48.8992390 2.3401270, 48.8814860 2.3253960, 48.8890670 2.3382500, 48.8713595 2.3858455, 48.8756264 2.3549455, 48.8940100 2.3515980, 48.8606179 2.4048647, 48.8832242 2.3300482, 48.8921127 2.3319234, 48.8783392 2.3518796, 48.8672620 2.3546160, 48.8929520 2.3468380, 48.8876110 2.3980200, 48.9001410 2.3907160, 48.8937910 2.3254410, 48.8878070 2.3168387, 48.8701720 2.3941990, 48.8954540 2.3265480, 48.8760549 2.4066379, 48.8646712 2.2945788, 48.8648810 2.3598580, 48.8785620 2.3603690, 48.8656244 2.4005700, 48.8976745 2.3255573, 48.8678880 2.4110180, 48.8782870 2.3930910, 48.8687996 2.3670827, 48.8675640 2.3439900, 48.8940810 2.3257310, 48.8847495 2.3583714, 48.8680920 2.3674820, 48.8749920 2.3693880, 48.8691100 2.3880580, 48.8927720 2.3393440, 48.8847394 2.3599665, 48.8708650 2.3267180, 48.8851070 2.3774500, 48.8759177 2.3199403, 48.8985920 2.3386760, 48.8618850 2.3795690, 48.8766520 2.3471580, 48.8973940 2.3352610, 48.8863250 2.3533990, 48.8892960 2.3080360, 48.8937263 2.3632365, 48.8866720 2.3745570, 48.8735686 2.3764151, 48.8829640 2.2906840, 48.8862884 2.3363224, 48.8997980 2.3671430, 48.8940029 2.3839514, 48.8990940 2.3343970, 48.8737600 2.4116660, 48.8608430 2.4112060, 48.8729910 2.3967970, 48.8991980 2.3373340, 48.8670820 2.3921970, 48.8650341 2.4104986, 48.8939970 2.3494640, 48.8765790 2.3317425, 48.8861355 2.3561753, 48.8866310 2.2931960, 48.8780460 2.3546040, 48.8885760 2.3372580, 48.8682815 2.2937862, 48.8691909 2.3123689, 48.8678242 2.3628446, 48.8686720 2.3127647, 48.8671021 2.3110061, 48.8933245 2.3887800, 48.8941743 2.3916574, 48.8912248 2.3930476, 48.8946014 2.3912450, 48.8608218 2.3464552, 48.8685507 2.2728757, 48.8724483 2.2489997, 48.8687857 2.2448905, 48.8735492 2.2502871, 48.8706241 2.2491259, 48.8705077 2.2469076, 48.8729282 2.2477712, 48.8734222 2.2509255, 48.8670602 2.2431900, 48.8688615 2.2471136, 48.8668000 2.3495673, 48.8600249 2.4009571, 48.8589058 2.3989762, 48.8902559 2.3155823, 48.8895081 2.3152790, 48.8909868 2.3143418, 48.8916562 2.3142685, 48.8819047 2.3985349, 48.8590759 2.4003273, 48.8644583 2.3274519, 48.8879169 2.3153097, 48.8879452 2.3155854, 48.8914702 2.3147632, 48.8697228 2.2704730, 48.8895806 2.3929015, 48.8847068 2.3794407, 48.8643128 2.3266632, 48.8632906 2.3969375, 48.8597103 2.3998209, 48.8930154 2.3876090, 48.8815514 2.4001315, 48.8612225 2.3119810, 48.8625039 2.3009824, 48.8880273 2.3373781, 48.8725766 2.3640561, 48.8668462 2.3528123, 48.8658864 2.3524475, 48.8764030 2.3793479, 48.8888874 2.3790640, 48.8786186 2.4075133, 48.8869922 2.3168829, 48.8629574 2.3670436, 48.8705355 2.3858494, 48.8771612 2.3641684, 48.8662716 2.4063088, 48.8774505 2.3685222, 48.8897483 2.3636170, 48.8893152 2.3632428, 48.8895729 2.3670765, 48.8950748 2.3539271, 48.8737508 2.2552546, 48.8770432 2.3607309, 48.8928183 2.3927190, 48.8854184 2.3809339, 48.8847022 2.3794239, 48.8647970 2.3376815, 48.8769296 2.3805462, 48.8663182 2.3718556, 48.8736147 2.3633962, 48.8708335 2.3864170, 48.8594153 2.4063574, 48.8759892 2.3685271, 48.8640746 2.3609523, 48.8602693 2.3889177, 48.8593740 2.3653569, 48.8620888 2.3721843 +no +49.3739107 8.6909097 +2 +yes +yes +51 +55.9534686 -3.2733947, 55.9441043 -3.1618477, 55.9229465 -3.1946655, 55.9429880 -3.1595009, 55.9455214 -3.1515881, 55.9215151 -3.2311690, 55.9174462 -3.2363371, 55.9145086 -3.1951990, 55.9425607 -3.1620707 +Le Comptoir Paris-Marrakech, Café Marly, Café des Arts et Métiers, Les Enfants Rouge, Andy Wahloo, Café Noir, Le Loir dans la Théière, Mariage Frères, Café des Phares, Café Le Lutètia, Au Petit Fer à Cheval, La Chaise au Plafond, Les Etages, Stolly's, Les Deux Magots, Café de Flore, Ba-ta-clan, Le café populaire, Le Général Beuret, L'Angle, Les artisans, L'Institut, Le Cristal, Le Babylone, Café du Passage, Pouchla, Taverne Karlsbrau, Cafe République, Le Murger, La Forge, Café des Dames, Le Dauphin, Les Frangins, M'Café, Café Français, Comptoir d'Issy, Les Colonnes, Sans Gêne, Le Kloog, Cafezoïde, Brasserie Tabac Saint Germain, Le Diplomate, Café Convention, Dupont café, Les Étages, Le Godet d'Or, Relais Odéon, Café Conti, Le Buci, Bar du Marché, Café Mabillon, Pub Gay-Lussac, Le Panthéon, Le Reflet, Le Pick Clops, Café du Trésor, Café Panis, Caféothèque de Paris, Le Basile, Les Philosophes, L'Etoile Manquante, Le Pause Café, Café des 2 Moulins, Café de la Musique, La Contrescarpe, Bomby's Cafe, Le Fumaillon, Chez Dudule, O'Jules, Le Calumet, La Grille, Le Crozatier, Le Penty, Le Stone, Bistrot du coin, La Liberté, Au Métro, Le Microsillon, Le Bistrologue, Le Globe Diderot, En attendant l'or, Baroudeur, Les Caves du Petit Thouars, Café Crème, Le Blanc Cassis, La Mère Pouchet, La Halte des Taxis, Café Indiana, Scossa, Le Duc, Le Marigny, Le Petit Village, Felix café, Edelweiss, Bercy café, Café Chambertin, La Source, Moka, Café Plaisance, Le bouquet, Le 7ème Art, Les Cent Kilos, Le relais Diderot, Au Moka, Rotana café, Les deux Savoies, Café Delmas, La consigne, Le Rossli, Le Gévaudan, L'Express de Lyon, Station Café, Le Killy-Jen, Le petit Rollin, Brasserie de l'Aubrac, Le Restaurant du Boulanger, Le Terminus, Caviste, Les Jardins d'Issoire, Le Canon, Le Coche, Les associés, Le Cépage Montmartrois, Cafe Français, Corso, Starbucks, Le Bar Do, Les Crocs de l'Ogre, Bistrot du Monde, La terrasse, Le Tourville, Comptoir du Sept, Colombus, Le Zinc, Starbucks, Le Seven, Starbucks Coffee, Le Monte Carlo, Le Cactus, Les Marronniers, Le Carrefour, La Chope, Le Championnet, L'Entracte, Le Bloc, Les Cigognes, Pomme de Pain, Saint-Claude, La Java, La Place, L'Alliance, Domremy, Au Reveil Du XVème, Le Marigny, L'Hélicon Café, Chez Alphonse, Le Bistro de Paris, Le Puits des Arts, Le Royal Beaubourg, Tabac du Châtelet, Le Baltard, Le petit opportun, Les Deux Palais, Aux Tours de Notre-Dame, Le Quasimodo, Café vigouroux, Sunside, Le Baiser Salé, Au Coeur Couronne, Au P'tit Boulevard, Café Rive Droite, La Promenade de Venus, Taverne Karlsbräu, Café Ruc, Louise Café, Aux Trois Maillets, Le Centre Halles Café, Le Saint-Martin's, L'Imprimerie, Brasserie de la Bourse, Café de la Comédie, Café Palais Royal, Le Zinc d'Honoré, Razowski's, Le Florentin, Les Trois Quartiers, Le Ventadour, La Côte d'Azur, Au Fil de l'Eau, Le Regent, Café Gramont, Virtuose Café, Le Cardinal, Le Petit Vendôme, Café du Cadran, Dédé la frite, Montmartre Café, Le Sentier, Starbucks Coffee, L'Empire Bar, Lézard Café, Café du Centre, Le Cerceau, Les Boulevards, Bistrot Marguerite, Le Cavalier Bleu, L'Excelsior, Au Métro, Le Bouquet des Archives, La Belle Ferronnière, Le Sarah-Bernhardt, Majesty, Le Paradis, Bistrot Beaubourg, Le Relais de l'Hôtel de Ville, Le Rallye, Le Vélocipède, L'Escurial, Double Fond, L'Arsenal, Le Sully, Fontaine Sully, Café Réveil Bastille, Le Djurdjura, L'Art Brut Bistrot, AntiCafé, La Comédie, Le Tabac des Arts, Café Léonard, Brioche Doree, La Chope Nazareth, Le Temple, Le Week-end, La Favorite, L'Attirail, Le Bouledogue, Le Sancerre, La Tour du Temple, Le barbouille, Le Progrès, Le Saint-Gervais, La Perle, Odette, La fontaine, Chez Prune, Columbus Café, Le Rostand, Le Mistral, Le Gribouille, Le Bizuth, Bistrot Lafayette, Cristal Bar, Le Jaurès, Salon de Thé de La Mosquée de Paris, Starbucks Coffee, Le Nesle, Café des Beaux-Arts, Le Bonaparte, Starbucks Coffee, Bistrot Au Petit Suisse, Le Luxembourg, Café du Nord, Le Télégraphe, News Café, Le Bistrot Landais, Le Week-End, Café Saint-Placide, Au Chai de l'Abbaye, Le Montaigne, Le Rond-Point, Le Faubourg, Le Saint-Laurent, Le Mirasol, L'Idéal Bar, Le Miro, Le Mesnil, L'Escale, Le Derby, Le Carré, La Pépinière, Sunset Café, Le Bourbon, Le Carrefour Café, Le Week-end, Le Greffulhe, Le Préfet, La Cour de Rome, Starbucks Coffee, L'Arcade Haussmann, Au Départ, L'Équipage, Terrasse Saint-Lazare, Le Royal Europe, Le Florence, Au Petit Poucet, Le Jardin de Rome, Le Select Monceau, Le Malesherbes, Café Percier, Riva, Le Frieland, Aux Ministères, Le Vigny, Le Madrigal, Le Fronton, Les Arcades, Le Marceau, Bert's, Au Troquet, L'Étoile 1903, Do Ré Mi, La Flamme, A Verse Toujours, café Ziem, Starbucks Coffee, Starbucks, Biclowne Cafe, La Rame, Le Cyclone, Ptit Bono, La Trizacoise, No Stress Café, Midoré, Starbucks, Dupont Café, Indiana Club, Fish and Food Café, LG W|Café, Café Bibliothèque, Bistrôt du Canal, Le Café Prud'h, L'Est Parisien, Le Château Landon, Le 79, Le Chiquito, L'Alouette, Café Galliera, Le Newton, Comptoir de l'Arc, Café Brassac, Pub Kléber, L’Ancien Trocadéro, Le Coq, Corso, Globe Café, Café Kléber, Le Malakoff, Café du Trocadéro, Le Poincaré, Bistrot XVI, Café Victor Hugo, Le XVI, Le Touring, Sei'z Café, Le Relais de l'Étoile, Le Lamartine, Les Sablons, Château de la Tour, Café le moderne, Le Termidor Brasserie Tabac, Folie café, Café A la Fontaine, Le Dôme, La Sortie du Métro, Le Relais de la Place, Le Jardin, Le Havane, Le Capétien, Le Relais des Sablons, Le Caféier, Le Louis Blanc, Le Bastringue, Le Narval, Lou pintou, La Marquise, Chin Chin, Le Mozart, Royal Village, Royal VI Nation, Au Canon de la Nation, Milk, Le Départ Saint-Michel, Le Chat Bossu, L'Escale, Le Balto, Le Notre-Dame, Les Fontaines, Les Tramway de l'Est, Le Dorian, L'Avenue, Le Préaumur, Le Bac Saint-Michel, L'Île de France, Le Gay-Lussac, Le Royal, Café aux Marsouins, Le Taiyo, Le Café Saint-Médard, Au Rendez-Vous du Marché, La Montagne, Le Descartes, Dans les Landes, Le Commerce, Le Montmartre, Café Léa, Le Mastroquet, Richelieu, Mollien, Mucha Café, Le Chiquito, Le Café Bonal, Le BlaBla, Le Remontalou, Le Michelet, Le Royal Cambronne, Le Bistrot, Le Ségur, Café Blanc, Petit Ségur, Paris Duquesne, Le metro, Le Café Lilas, Chez Jeanette, Moshimoshi, Les Temps Modernes, Chez Fabien, Café Les Muses, Le Quesniau, O' Café, Starbucks, Italian Style Café, À La Tour de Nesle, Le Miami, Edony Café, Le Jardin du Petit Palais, Starbucks Cafe, Starbucks Coffee, Le Café Truc, Le Rey, Starbucks, Berthillon, Café de la Porte des Sablons, Bert's, L'Aiglon, Contre-Allée, Café des officiers, La Ville de Lyon, Les quais, A la Tour Eiffel, Cafe Elgi, Les Dunes, Au Roi du café, K'fe, Le Bidule, La Boutique à Boire et à Manger, Arni acquiatan, Café Victor, Les Cakes de Bertrand, Café Seize, Delaville, Le Montespan, Presto Caffe, Dis Vin Gaulois, La Rotonde, Deli's Cafe, La Croissanterie, La Porte Montmartre, O'Sullivans café bar, Virage Café, Cafe de la Poste, Café Royal, Capuccino, Le Prevoyant, La Pointe La Fayette, Le Cadran Bleu, Le Conservatoire, Le Florent, Café Lazar, Siva's Lunch Coffee, Au Petit Palais, Capucine, Madeleine, Le Diamant, Le Bellerive, Ambroise Pare, Au baroudeur patient, Le Saint-Régis, Cafe Louis Philippe, Saint-Victor, L'Authentik, L'Olivier, Starbuck's, Auto Passion, L'escale de Lyon, Huafu Café, Le Mathis, Comptoir de l'Europe, Le Prétexte, La Calèche, A La Ville de Saint Flour, Café Tabac Jeanne d'Arc, La Nouvelle Gare, Le Taylor, Le café Pierre, Le Grand Café Capucines, Vegan Folies, La Terrasse de Pomone, Le Brébant, Café Reale, Café Diane, Méo 7, Angelina, Maison des Trois Thés, Dominique Saibron, Le Royal d'Alleray, Le Saint-Jean, Le Vrai Paris, Le Petit Montmartre, Alberto, La Consigne, La Ruche, Colombus Café, Chez Justin, espressamente illy, La terrasse, Le Mail, Café Launi, Royal Trinité, Zen Café, Café Grévin, Starbucks Coffee, La Palette, Art Bistrot, Bistrot des 2 Théâtres, Brasserie du Théâtre, Café Salé, Le Béguin, Le déjeuner sur l'herbe, Gioia Mia, Café Noisette, Au p'tit creux du faubourg, Café M, Le Ferryville, Le Lutèce, Lina's, Café Le Troquet, Palace Café, Café Francoeur, Bar-Tabac, La bande à bonne eau, La Poste, Le Dauphin, Le Week-End, Le Café Chappe, Salon de Thé, Au petit bar, Le Comptoir du Panthéon, Bistro Dupleix, La Gitane, Sugarplum, L'abribus café, Rotana Gourmet, Thé Glacés, Nespresso, Au Pays de Vannes, Chouchou, Hall 1900, Le Marigny, Fleurus Café, L'Etoile Vénitienne, Le Copernic, Le Corona Impérial, Le Rallye Etoile, Le Savenay Café, Paris montparnasse, Relais plaza, Falafel Café, Le Bar des Aiglons, Le Brelan, Le Celtic, Sebastos, Beirut Café, Café Etienne, Café Marcel, L'Amazonial, Le Vieux Léon, Starbucks, Le Narval, Le Bourgoin, L'Arobase, Café Le Château, Café Victoria, Le Papillon, Le Saint-Malo, Le Royal, Le Marengo, Starbucks Coffee, Péninsule, Le Zinc des Caviste, Deli's Café, Chocolat Rouge, La Comète, Le Président, Café Beaubourg, Café Paris Beaubourg, Findi, Augustin, Starbucks Coffee, Le Bobillot, L'Excuse, Le Casse, Café Pelleport, Chéri-Chérie, La Chope Saint-Fargeau, Larson News, Le Bistrot du Manoir, Le Clairon, Le Saint-Fargeau, Le Cantal, Le Réveil Matin, Le Zodiac, Bar du Métro, Chantefable, Charlotte, Edelweiss, Le Houblon du Vin ème, Café'In, Le Chat Noir, Le Corentin, Paris éclair, Paris Brune, Le Capitole, Le Select, Le Fontania, Crêperie Suzette, Le Paris Sud, Le Maryland, Les aviateurs, Bar de l'aviation, Le 15ième boulevard, Le tramway, Bistrot Montsouris, Le XIVème, Le Paul Fort, Le Penalty, Le St Laurent, Le numide, Le Mirabeau, Le petit voisin, Le Café Livre, Jolis Momes, Odette & Aimé, La Rotonde, Caffè Corto, Au Passage des Artistes, La Cantine de Gaston, Le Disque Bleu, Cafet' Théâtre, La Succursale, Le Beaucour, Salon de Thé, O'Soleil, Soui Food, Sandwich Café, Le Royal Parmentier, Le Pain Quotidien, Le Rallye, Café de l'Opéra, Cest Of Café, Le va et vient du Nord, Coutume, Café du Temple, Le Siempre, La Plage, Les Deux Musées, Viaduc Café, Breizh Café, Starbucks, Maine Café, Le préau, Café des Mousquétaires, Le Voltigeur, Craft, Breizh Café, Café Lyon, Indiana Cafe, Caffè Cosy, Le Commerce, Le Maryland, Café Tournon, Café des petits frères, Le Café Parisien, Le génie, Le Danton, Le meilleur des mondes, Le Brazza, Au Sauvignon, Starbucks, Le Relais Charbon, Caffé créole, Lutetia, Café 99, Le Disque Bleu, Le Père Tranquille, La Ville d'Arras, Habanos, Les Anges, Corso, Les Papillons, Le Mouffetard, Margeride, Coolin, Néo Café, Tennessee, Café de France, Le Napoléon III, Le Marigny, Le Wilson, Arthur et Juliette, Au Bélier d'Argent, L'Armandie, Le Celtic, Le Val Girard, Le Saint-Michel, Pret A Manger, Abribus café, Le Jasmin Café, Le Pt'it Lecourbe, Le Zig zag, Le Camélia, Amorino, Albe Café, Häagen Dazs, Esmeralda, Starbuck's, Tabac de la Fontaine, Le Germinal, Le Baron, Le Relais, Le Bistro'K, Le Triomphe, Drôle d'endroit Montorgueil, Starbucks, Milk, Cyber Cube, Le Cassini, Café Fleurus, Le Molière, Costa Coffee, Le Reinitas, Café Rozier, Chez Mezig, Le Buron, Le Relais Tronchet, Colibri, Starbucks, Starbucks, Dandy's, Café L'Imprévu, Bubbolitas, La Comédie, Gosip Café, Blackburn, Starbucks, Café Père et Fils, L'Indiana, Le Tabac des Folies, Les Chimères, Le Peit Saint-Paul, Au Compas d'Or, Céfé Frappé, Les Têtes Brûlées, Vélocivette, La Terrasse de Villiers, Le Chavignol, La Chope Champerret, L'Espace St-Cyr, Malongo, Pains à la ligne, Sud Ouest Café, La Poterne, L'Evidence, Dada, Lacombe, L'Orée des Champs, Espace Détente, Starbucks, La Fontaine, Café du Marché, Le Nemours, Tabac des Ternes, Ten Belles, Bat Royal, Le Village, Le Verre à Pied, Tourn'bride, Dose - Dealer de café, Café des Arts, Les Sabias, Papyrus, Le Franc-Tireur, Au Village des Ternes, La Pointe Drouot, Bar Edith Piaf, Liberté, Café des Vapoteurs, Le Ricaux, Guest, Sip Babylone, Café Fusain, 11ème avenue, Le Saint-Mandé, Le Royal Jussieu, Le Valmozzola, Café Smögås, O'Soleil, Yuman, Café du Commerce, Le Rond-Point, Les Racines, Le Printanier, Café Le Saint-Lazare, Brulerie Caumartin, Ducale Café, Les Négociants, Tabac de la Sorbonne, Le Hibou, AntiCafé, Le Bistro d'Aligre, La goudale, Le Philos Off, Chez Félicien, Le Café du Trone, Au Ptit clin d'oeil, Dido Cafe, Le Solférino, Le Sorbon, Chez Xavier, Café du Marché, Afandina afe, Thanush netc@fe, Odette et Charlus Café, Cafe Les Favorites, Chez Hamid, Le Rempart, Le Chaumontois, L'estive cafe, Aroma, Le P'tit Muscadet, Le P'tit Muscadet, Le Hollywood, L'Étincelle, La Passerelle, Le Cardinal Saint-Germain, Pavillon des canaux, Franklin' Cafe, Paradise Cafe, Le mistral, Le Débonnaire, Berko, Le Café sur l'herbe, Cafe Laumiere, Cafe Pont de Seine, Cafe Pont de Seine, Le Palais, Bar Tabac de la Mutualité, Le Sèvres Raspail, Gladines, Café de Luna, Café des Dames, Le Chaptal, Le Zinc, Le Monceau, Le Bistro de Bel Air, Le Village, Bistrot de l'Arcade, Amélie et Aurélie, Les bancs publics, Canaletto caffè, L'Aubrac, L'evasion, Le Nantes, Le cadre noir, La Casa di Sergio, Enoteca, Da Aldo, Häagen-Dazs, Pancake Sisters, Le Marijan, Le barricou, Café Latéral, Le Washington, Café Craft, Le tabloïd, BistroZ, Le petit Bistrot Café Brasserie, Le P'tit Bistrot, Le Petit Bainville, Le Demours, Bob's Bake Shop, Le Roi de Pique, Betjeman and Barton, Jet-lag, L'Aveyronnais, Le week-end, Comptoir Turenne, La bohème, Le Sévigné, Le Mayol, Le Lutèce, Cafe Loto tabac, Café du Musée, Le Pierrot, Le Montana, Folie café, Le Café du Musée, Indiana café, Autour du Moulin, Mon Café, Le Tabac, Puerto Cacoa, Casa, Le Naja, Café Premier, Jolis Mômes, Hôtel du Commerce, Bar de l'Eure, Le Tambour, Le XII ème, Saint-Marcel, Pain à la Ligne, Starbucks Coffee, Cafe Suedois +49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4042825 8.6824570, 49.3956207 8.6692054, 49.4172010 8.6768150 +55.9507953 -3.3038276 +yes +324 m +yes and 229 and 51.0844645 13.6487103, 51.0273756 13.7474285, 51.0823918 13.7335753, 51.0824545 13.7336039, 51.0825170 13.7336323, 51.0829896 13.7332707, 51.0828616 13.7332262, 51.0827595 13.7331813, 51.0826580 13.7331399, 51.0825999 13.7331126, 51.0825362 13.7330866, 51.0827583 13.7327555, 51.0832603 13.7324804, 51.0831002 13.7336158, 51.0795251 13.6564388, 51.0803520 13.6560575, 51.0797631 13.6570269, 51.0805189 13.6559334, 51.0798370 13.6570887, 51.0801264 13.6570556, 51.0798991 13.6571398, 51.0798900 13.6567596, 51.0800585 13.6558509, 51.0795075 13.6568246, 51.0800106 13.6572306, 51.0802644 13.6565229, 51.0801590 13.6559327, 51.0796771 13.6569580, 51.0801474 13.6574467, 51.0795919 13.6568858, 51.0799591 13.6557717, 51.0806719 13.6547946, 51.0844031 13.6492495, 51.0844377 13.6491173, 51.0845865 13.6492686, 51.0848005 13.6481637, 51.0560319 13.6534353, 51.1129021 13.7134784, 51.0870850 13.7344070, 51.0879019 13.7346740, 51.0872746 13.7345070, 51.0400501 13.6372683, 51.0400368 13.6376398, 51.0397949 13.6376750, 51.0398668 13.6372683, 51.0396860 13.6366848, 51.0395593 13.6369259, 51.0392180 13.6369677, 51.0396431 13.6373610, 51.0396199 13.6371140, 51.0392895 13.6367341, 51.1523082 13.7957194, 51.1532344 13.7957454, 51.1521680 13.7957598, 51.1520584 13.7957188, 51.1536728 13.7955165, 51.1520531 13.7963601, 51.1522370 13.7957382, 51.0847930 13.6490593, 51.0849131 13.6491394, 51.0845156 13.6488769, 51.0847316 13.6490137, 51.0849792 13.6491835, 51.0844573 13.6488382, 51.0848531 13.6490969, 51.0685627 13.6241474, 51.0695246 13.6253081, 51.0699998 13.6237618, 51.0683859 13.6251032, 51.0701737 13.6247207, 51.0683173 13.6249097, 51.0694974 13.6255021, 51.0679836 13.6227283, 51.0698285 13.6245618, 51.0682702 13.6249019, 51.0700321 13.6235780, 51.0699302 13.6241295, 51.0706362 13.6240940, 51.0699677 13.6239464, 51.0699803 13.6233425, 51.0698958 13.6243490, 51.0683476 13.6228519, 51.0703047 13.6239192, 51.0681631 13.6226829, 51.0681586 13.6222257, 51.0705447 13.6245614, 51.0704860 13.6238946, 51.1190382 13.7795044, 51.0400538 13.6374139, 51.0422774 13.6356744, 51.0419915 13.6350658, 51.0422431 13.6350551, 51.0423833 13.6350452, 51.0422138 13.6356743, 51.0424026 13.6345030, 51.0424536 13.6356798, 51.0419222 13.6347316, 51.0425869 13.6359640, 51.0424255 13.6347004, 51.0423683 13.6356861, 51.0419113 13.6345174, 51.0423088 13.6353555, 51.0432389 13.7577645, 51.0436111 13.7590246, 51.1521334 13.7973645, 51.1521117 13.7971177, 51.1520977 13.7967766, 51.1526180 13.7960916, 51.1531397 13.7962202, 51.1521522 13.7975794, 51.0542981 13.6500944, 51.0444714 13.6375970, 51.0445916 13.6380352, 51.0452089 13.6382144, 51.0448329 13.6384755, 51.0420013 13.6356697, 51.0419801 13.6353571, 51.0449595 13.6381873, 51.0450957 13.6377784, 51.0451578 13.6382089, 51.0451645 13.6385095, 51.0445991 13.6376131, 51.0447789 13.6380437, 51.0449673 13.6384880, 51.0451001 13.6385027, 51.0450315 13.6384948, 51.0450594 13.6382009, 51.0416818 13.6350996, 51.0450879 13.6379787, 51.0454522 13.6334655, 51.0444342 13.6335000, 51.0444346 13.6335829, 51.0453155 13.6342072, 51.0453139 13.6338984, 51.0446628 13.6337701, 51.0446591 13.6334707, 51.0453174 13.6340041, 51.0453155 13.6341049, 51.0451033 13.6335278, 51.0444341 13.6336615, 51.0288807 13.7029059, 51.0288738 13.7030353, 51.0644000 13.6702199, 51.0645429 13.6701187, 51.0634300 13.6708257, 51.0629448 13.6704116, 51.0631020 13.6703333, 51.0643496 13.6698018, 51.0644680 13.6697240, 51.0644477 13.6701873, 51.0636715 13.6706991, 51.0634927 13.6708243, 51.0635567 13.6707778, 51.0643411 13.6702497, 51.0644908 13.6701611, 51.0644102 13.6697624, 51.0630231 13.6703734, 51.0641429 13.6701305, 51.0634263 13.6702687, 51.0639096 13.6702519, 51.0091874 13.7517437, 51.0791960 13.7360348, 51.0794212 13.7358213, 51.0870710 13.7344832, 51.0142964 13.7502569, 51.0640528 13.6635614, 51.0638879 13.6639550, 51.0641915 13.6639163, 51.0641879 13.6640152, 51.0638942 13.6637425, 51.0641939 13.6638145, 51.0639733 13.6633695, 51.0638080 13.6677778, 51.0632291 13.6683586, 51.0629009 13.6680561, 51.0636169 13.6676692, 51.0631196 13.6683612, 51.0628342 13.6680588, 51.0636968 13.6679241, 51.0545652 13.6571661, 51.0544809 13.6571568, 51.0545984 13.6575051, 51.0565349 13.6490424, 51.0580882 13.6488216, 51.0546570 13.6508731, 51.0571567 13.6545872, 51.0556063 13.6475528, 51.0569011 13.6540618, 51.0561655 13.6542541, 51.0546351 13.6507613, 51.0559429 13.6545543, 51.0571677 13.6557061, 51.0545624 13.6504539, 51.0568417 13.6544648, 51.0569245 13.6550228, 51.0568989 13.6556656, 51.0570603 13.6550313, 51.0567548 13.6539175, 51.0569839 13.6545736, 51.0570223 13.6555839, 51.0563415 13.6551338, 51.0557576 13.6480748, 51.0560964 13.6490288, 51.0556641 13.6496888, 51.0559435 13.6495665, 51.0561604 13.6490052, 51.0559214 13.6494670, 51.0561791 13.6494340, 51.0557350 13.6491827, 51.0562316 13.6494131, 51.0561324 13.6494525, 51.0562531 13.6489722, 51.0414360 13.6346991, 51.0537377 13.6809286, 51.0869121 13.6263809, 51.0864569 13.6264478, 51.0868109 13.6272543, 51.0865604 13.6261106, 51.0868648 13.6272874, 51.0863500 13.6267865, 51.0863754 13.6267068, 51.0864006 13.6266273, 51.0865935 13.6259527, 51.0865248 13.6262863, 51.0869641 13.6261298, 51.0869379 13.6262564, 51.0864323 13.6265290, 51.0687005 13.7630620, 51.0645983 13.6700479 +no +42 +327 +Südstadtbäckerei, Kornblume Neckargemünd, Fair & Quer, NahKauf, Video Express, Hünnerkopf, Bäckerei Riegler, Rudis Radladen, Riegler, Edeka, Bäckerei Rühle, Stieg, ARLT, Two Wheels, Kiosk & Kaffee, Edeka Bauer, Heidel-bike, Buchhandlung Schmitt & Hahn, Cafe Frisch, Tee-Fachgeschäft Tea Time, Mahlzahn, Buchhandlung Sturm und Drang, 2-Rad Otto, Optik Volz, Netto, Mantei, altavelo, Penny, K&U Bäckerei, Gärtnerei Hoffmann, REWE, Netto, Bäckerei Riegler, .. nah und gut - Brodthuhn, Landbäckerei Banschbach, Der Haarflüsterer, CHIPNIX COMPUTER, Seppl's Backstube, Bäckerei Tschakert, Buchhandlung Staiger, Café am Rathaus, …nah und gut Keller, Nelson, Copy FIX, Autohaus Neckarhelle, Unishop, Wittmann, NKD, Goldkorn, Konditorei Wiegand, Riegler, Backhaus Siegel, Riegler, Paris, ALDI SÜD, Thalia, Mantei, Damen und Herrensalon Hans-Peter Bähr, Billigladen, Bäckerei Bernauer, Bäckerei Mantei, Bike'n Style, Kamps, Der Kleine Gundel, denn's Biomarkt, Bäckerei Rodemer, Bäcker Tschakert, Bäckerei Riegler, Lidl, Brücke – Eine Welt Laden Dossenheim, Spielebetrieb Heidelberg, Das kleine Radhaus, Fahrrad Scheuber, Der Holzwurm (Antike), Möbelum, Rud. Entenmann GmbH, weltladen una tierra, Fair & Quer, City-Markt Rüdinger, Stefansbäck, Apollo Optik, Bäckerei Grimm, Lichtblick, Buchhandlung Worring, Tally Weil, Vodafone, FOSSIL, SP: Deytronic, Müller, Apropos, Jokers, C&A, Claire's, Radhaus Gerger, Weltladen effata regional & fair, Grimminger, Modellbahn Schuhmann, Schaltwerk, Claudia Ruda, Freudenhaus, Arcor, Telekom, Netto, Penny, Autoservice Südstadt, Zehra Ergin Hair Expert, S-Bahnhof Kiosk, Mantei, Mahlzahn Vollkornbäckerei, Netto, Seip, Stefanie Knorr, Nollenberger, Markus Fritz Raumausstattung, Getränkeland, Rohrmann's, Appel un' Ei, Crazy Diamond, Sportart, La Flamm, WMF, GameStop, Holzofenbäckerei Emert, Zuckerladen, Tom's Tierwelt, Buchhandlung Schmitt, Rossmann, Wurzelpassage, Bäckerei Sommer, noowing's, nah und gut Weismehl, Blumen Kamm, Cafè Frisch, Basic Hairshop, New Point, Divino, Cocoon, Different fashion, Oska, Modern Classic, Metzgerei Lanzendorf, Bäckerei Tschakert, Reisebüro Bechtel, Zweirad Erni, Feinkost Sahin, Waschsalon Rosie, Weststadt-Optik Sigmund, eldoRADo, Eichendorff, Bosch Car Service, Jäger, Herbig Coiffeur, Grimminger, Joncker, Apropos Buch, Souvenirs und Fotokarten, Toyota Heiler, Blumen selbst schneiden, Apropos Buch, DB Service Store, Eppelheimer Buchladen, Bücherpunkt am Rathaus, ABM Autovermietung, Mahlzahn Vollkornbäckerei, Textil Schmitt, Schneiderei Leyla, Takko, dm, kik, mantei, Expert Esch, dm, Rutz, Autohaus Dechent, Backpacker Climb, Audi Zentrum Heidelberg, Jack Wolfskin Store, VW Zentrum Heidelberg, Kaede Running Sushi Bar, Rechtsanwaltskanzlei do§ch - Sebastian Dosch, Bridi, Masala, Apfel und Korn, Heil's Feinschmeckerladen, Tchibo, Durance, Salon Michelle, Conditorei Zimmermann, Mantei, Kopfkultur, Hair Away, Fahrrad Service, Eberle, Grimminger, Der Barbier, dm, Betten Opel, Centerapotheke, Gärtnerei Lenz, Shopette, Barber Shop, Dieter Bauer Autotechnik, Reisebüro Bauder, Metzgerei Anselmann, Hochstein Musikhaus, Bäckerei Tschakert, Deichmann, Kaufland, Riegler, Caravaning Schneider, Radhof, REWE City, HAIRCUT, Saturn, Rossmann, Dritte-Welt-Laden, H&M, Görtz, Butt Asien Shop, Tiger and Dragon's Food Store, REWE city, Rühle, The Rock Shop e.K., Runner's Point, S'Oliver, Penny, Moments, Kamps, Schuh und Leder, Basic Hairshop, Anouk, Vodafone, Thomas Cook, Hallhuber, E-Plus, TeeGschwendner, fielmann, Gravis, L'Epicerie, Käthe Wohlfahrt, Theile, I Am - Designmanufaktur, Madame Vélo, Blumenladen Löwenzahn, Allmann Friseursalon, Dossenheimer Schokoladen, Konrads Wäschezenter, Metzgerei Schäfer, Christa's Haarstudio, Die gute Lage - Weingeschäft, GROSS 1866, Mondtaler Kinderkleidung, Radhaus Gerger, Salon Kanapee, Schuh Karcher, La Casa Verde, Schneider, Blumen Weber, Buchbinderei Dyroff, Globetrotter, TELCO & MORE, Alnatura, effata Weltladen, Quadrad, Buchhandlung Himmelheber, Reisebuchladen-Heidelberg.de, Friseur Kirsch, Herrenfrisör Doll, Toys'R'us, Val Verde, Gartencentrum Scheid, Can Markt, BIKEAGE, Friseur U. Hell, Optik Frank, Weine & Genuss, Kosmetikinstitut Beauty-Cosmic, Anne's Blumenecke, Beauty Lounge, Feinkost Schäfer, Georg Storch, Intercoiffeur Kress, Kaufmann Augenoptik & Hörakustik, Bäckerei Grab, Auto Schmitt am Kalkbrunnen, Die Brille, Vellisimo, Frisör Karin Bolz, Göbes Sophie, Knoblauch Schreibwaren, höllwerk - Schmuck & Design, flowerstation, hairCUT 11, Altstadt Friseur, Buchladen - artes liberales, Josef Seibel, Frisurenkeller Fischer, Salon Birgit, Imkerei - Thaler, Eva's Lädchen, Reformhaus Escher (Vita Nova), Lebe Gesund, Dansk Möbler, Metzgerei Unger, Pazar, Zum Bauernmarkt, höllwerk - Schmuck & Design, SARAH's STYLES HAARVERLÄNGERUNGEN, Geflügelhof Ehrler, Reit- und Spargelhof Rehm BIOLAND, QueerBeet Hofladen Sauter, Schlicksupp Hofladen, Schlierbacher Schiff, Riesenstein, YORMA'S, Mantei, Riegler, Feine Weine, Alnatura, Gemüsebau Schlicksupp, Mahlzahn Vollkornbäckerei, Rühle Bäckerei, Riegler, Biker's paradise, Optik Meister GmbH, Metzgerei Stieg, QUICK SCHUH, Takko Fashion, Dussinger, Rhein-Neckar-Akustik, Auto-Franke, Weingut Seeger Vinothek, Stern, Volvo, GTS Automobile, Claus Stier Kraftfahrzeuge, Douglas, Promod, Markushof, K&U, Danys Blumenparadies, KFZ-Werkstatt Karnahl, Bier Schaaff, Tamara Lederwaren, Serpa Markt, Löffelhardt Fliesen, Getränkeabholmarkt, Rückemanns Zoo Insel, Niebel, Augenstein Metallbau GmbH, Maisch Orthopädie Technik Zentrum, Oswald Friseurbedarf und Kosmetik, Glocken Bäckerei, Weingut Clauer, Wäscherei Meuter, BioBasis, Fotostudio Hauck, Elly's Beautystudio, Auto City, Die Brillenmacher Ritzmann Werner & Nalik, Kopierladen E. Müller, Hansi Flick, Coiffeur Leila, Many Market, Nativo, Videotaxi Media Store, Autohaus Nieder, Analog-Audio-Arts.de, studio visuell photography, Beauty Lounge, Beautyful Nails, Die Friseure, Fiebing, Foto Kühnel, Goldenes Dreieck, HF-Computer, Reisebüro Specht, Sofa 3, Sunshine Sonnenstudio, Telecafé, Waschtrommel, Reisebüro Mayer, KirchGessner, Das Optikhaus, KIND Hörgeräte, Weinladen am Markt, DAS KUNSTHAUS ESSERS, Leist, Ingrids Blumenladen, point S Reifenservice, Metzgerei Müller, Getränke Ziegler, H.M. Automobile, EXAKT Bürobedarf, Fromm, Die Autolackierer Eppelheim, premio Auto- und Reifenservice, Wiener Feinbäckerei Heberer, Toker Obst und Gemüse, Nahkauf, Benetton, Bücherstube an der Tiefburg, Haarlass, Fleischerei Friedl Rolf, LE CROBAG, Barbarino, blumen fee, SIX, Anatolia Markt, Chiquita fruitBAR, Reisebüro im Bahnhof, Konradi's Wäschecenter, Elektro-Fontius, Raumausstattung Rehberger, Änderungsschneiderei Flore, MBK Roller Shop E. Schemenauer, Dentallabor Volk, Metzgerei Schlechter, Der Frisörladen, Kosmetik- u.Nagelstudio Relax, Salon K&C, Farben Boy Creatives Wohnen, Maren Kohlmann Massage, Purzelzwergs Lädchen, Ursula's BlumenOase, Wolle und Teeladen, Wolle und Teeladen, Bäckerei Mantei, Hörwelt Heeg, Schreib- und Spielwaren Faludy, Kiosk Stauch, ULMA GmbH, Wäscherei Dobrovsky, Backpacker Footwear, Helin Backwaren, Kim Nails, Pfisterer, FRIWA Küchen, s' Lädele, Hair und Nails, Die Olive Feinkostgeschäft und Snackbar, Juana Kosmetikstudio, Bäckerei Frick, DeluxxCut, Friseur Toker, Haarstudio Edith, Reformhaus J. Budjan, Salon Norbert, Salon Sybille, Schedwill, Vitamin Haus, Vivir, Partyservice Vogel, tipico sportwetten, Zur schönen Linde, RNV-Kundenzentrum Heidelberg, Barber Shop, Hassbeckers Galerie & Buchhandlung, Chocolaterie Knösel, Just B - Tattoos and Bodyart, Blumen Kücherer, Wahl G. Frisierstube, Mirus Raumkonzepte, noowing's, Friseursalon Wagner, Backpacker Travel, Gscheidle, Bäckerei Riegler, Otto Macho, hairclub10, Hair we are, Mode-Börse, Becker-Chedor Anette Chemische Reinigung, PANICZONE TATTOOS, Quetin Reiseservice, nahkauf, FOTOCONTROL, Schmitts Lädl, Optik Nähring, Sonneninsel, Kosmetikstudio Riegler, Textilpflege Egly, Kamelien Thai-Massage, Metzgerei Maier, Night Magic, Winkler Radio- und Fernsehtechnik, Cfashion, Jamaicare, Juwelier Bowe, Phoenix Nagelstudio & Fußpflege, Schreibwaren Müller, Wiegand Optik, Wolle und mehr, Kraus, Curalia Cosmetics, Josef Fritsch, Pereo Schuhmoden, Pompinello, Salon Brenner, allFrisch, Viola's Blumen, Gerhard Zahn, Auto May, Bestattungen Bauer, Neckar Bau, TeleMedia, Grundig, Jutta's Nagelstudio, Buch-Markt, Textstudio Gross, Drogeriemarkt Richter, Reisebüro RIZ, Hemdenfix, Grimminger, Schneiderei Sen, Mantei, Zupp, Pfänder, Hells Kitchen, capcorner, City-Markt Rüdinger, TK Maxx, Geers, Joel, KIND, Nolze, Roland Curth, Antiquariat Hatry, Swatch, mod's hair BASIC, alldrink, Metzgerei Stieg, mantei, Elektro Scheurer, Timeout, Gieser, Mantei, KIND Hörgeräte, Stefansbäck, Barber Shop, Beauty Club, Riegler, Metzgerei Sommer, AUS-Zeit Reisebüro, Admin-24, Ambergs Die Blumenstation, Andreas Ullmer, Blumen Susanne Silbernagel, Glückskind, Optik Masing, Salon Wengerek, Schönheitssalon Venus & Denis, Piccadilly English Shop Heidelberg, Frick, Donuts, Barbier & Capelli, Citroen Spiegelhalder, Werle, Fröhner, Fröhner, Butlers, McPaper, Harmonien und Blüten, Patisserie La Flamm, Aura, Grimminger, Unger, hollenbach, Backshop, pitstop, Antiquariat Friedrich Welz, Hairlich, friedrich, faire und feine Mode, Avant-Garde, Jacques’ Wein-Depot, Friseursalon Nouveau, Lecker Bäcker, Breitenstein Bäckerei, Scheck-In-Center, mod's hair, Rad Kirch, Uli Rohde Musikladen, K&U, TopHair, Abele Optik, Brax, Bären Company, Christ, Diller, Eyes + More, Pandora, Planet Sports, Roland, Schmitt & Hahn, Telekom, DerBüroeinrichter, Anouk, dielmann, Max & Co, Marc O' Polo, Optik Rehm, Optik Madle, Backwaren, Carat, tilly de lux, Getränke Becker, Bäckerei Mantei, Kiosk Würfel, Holzofenbäckerei Emert, Yadi Tatoo, Bäckerei Wacker, Hair and Beauty, Futon-Haus, Radio Kroll, Reinigung Eckenweiler, Bäckerei & Konditorei Stahl, Optik Pfaff, SaiNet GmbH, B-Moden, Haarstudio Margarete, Fruchtmarkt Lehnert, Blumen Merkel, Gertruds Frisierstube, Antikscheuer Heidelberg, Fachschneiderei, Frisier Domus, Netto, Bäckerei Siegel, Hamilton Leder + Synthetics, Wieblinger Buchladen, Massagepraxis ImLo, Brunis Lädle, Absinthladen "Galerie Grüner Engel" Lager, Farbenreich, Der Friseur Markus Bähr, Wuschel - Express, Kathrin Laudenklos Nageldesin, Tatiya Thai Massage, The iPhone Doc, Adviva SanitätsCenter, Metzgerei Benig, Café Frisch, Goldkorn, Görtz, Änderungs-Schneiderei, Friseur Stern, MeineZeit, victor&linchen, Martinas Schreibshop, Ronnefeldt Teeladen, The Flame, Weingut Bauer, Görtz, Laib & Leben, Viani's Friseure, Kinderwagen Risch, First Reisebüro, Aktiv-Reha-Center, E-Mobility.Center, Rewe, Kaufland, BAUHAUS, Edeka, denn's Biomarkt, Lidl, DM Drogeriemarkt, Aldi, Rewe, Lidl, Das Carré, Kiosk Ziegler, Norma, dm, REWE, Aldi Süd, Fressnapf, OBI, REWE, denn's Biomarkt, Aldi Süd, Dehner Gartencenter, BAUHAUS, Möbelparadies, Penny, ...nah und gut Arlt, Profi-Markt, REWE Getränkemarkt, ALDI SÜD, REWE, Blumen Bethge, Penny, Metzgerei Krauss, Foto Stetzelberger, Der Buchladen, Pafümerie Werner, Müller, Steininger Textilpflege, Betten Knoll, Breitwieser, Nah und gut, Bike-n-Wild, Galeria Kaufhof, Darmstädter Hof Centrum, Holz Oberfeld, Famila Center, Galeria Kaufhof, Wohnland Breitwieser, Toom Getränkemarkt, Metzgerei Wickenhäuser, Rewe, Kreativ-Werkstatt, Penny, Edeka, Esso, Kaufland, Media-Markt, Bäckerei Marcus Maier, TonArt Musikalien, RiverStylz, Büro Systeme Bammental, Autohaus Bernhardt, Autohaus Krauth, Mini Krauth, Näher Baustoffe GmbH, Schürle, Apfel Land, Blumen Werkstatt, Vinothek Laibach & Seeger, Boris Ehinger - Hof Patisserie, Friede Bestattungen, Salon Haarkiste, Klaus Buddensiek, Damm Fahrzeuge GmbH, Aldi Süd, Müllers Grüner Garten, Lidl, Bioland-Gärtnerei Wiesenäcker, EDEKA, Pfisterer, Autohaus Schweikardt, Hofladen, aquaristikstudio starfish, Gemüsebau Schlicksupp, Gärtnerei Lenz, Obst und Gemüse, Gärtnerei Reinhard, Husaren Destillerie, Aldi Süd, Mix-Markt, Kiosk am Bismarckplatz, Auto-Stern GmbH, DM, Wacker+Döbler, Lidl, Netto Marken-Discount, Eisenwaren Michel, Schuh Weishaar, Tamara Lederwaren, Miros Hair-Point, REWE, Schuhmacherei Kalischko, Radsport Haritz, Marina Tours, Auto Jocker, Lidl, PSS, Walter Fell Elektronik, Weingut Adam Müller, Beauty Lounge, Hairteam Genial, Stather, Autohaus Bernhardt, Blumen Schilling GbR, Pfeiffer & May, A.T.U, auto+technik Gassert GmbH, Autohaus Peuker, Getränke Kern, Metzgerei Kailer, Bilgro Getränkemarkt, Hornbach, Weber, PC Ambulanz, Leimener Buchhandlung, Blumenladen, Röll GmbH, Motorrad Hester GmbH, Zoo-Shop, Mohr Baustoffe GmbH, Fahrrad Schmidt, Rebmann, Weirich Schlüsseldienst, Prodotti Italiani, Weinhaus Ott, Riegler, Raab Karcher, Autohaus Treiber, Autolackiererei Beck, Möbel-Kirsch, Aldi, Andreas Münkel & Frisöre, Kücherer's Käse Ecke, Lieblingsladen, Aldi, Mantei, Haardesign, Weizel, Bäckerei Bernauer, Schmuckatelier Mämecke & Rauen, Opel Zimmermann, Augenoptik Daniel Knapp, Jakobi, REWE Center, dm-drogerie markt, ALDI Süd, Bolz, Auto Plech, Hegehof, Aldi Süd, Kohlmann, dm-drogerie markt, Jelinek Automobile, Autohaus Peter Bollack, Avia +yes +55.9406104 -3.2945168, 55.9579671 -3.2416031, 55.9099988 -3.3187446, 55.9335740 -3.2140903, 55.9452785 -3.1910772, 55.9432977 -3.1864231, 55.9274173 -3.3075858, 55.9455180 -3.2068971, 55.9558479 -3.1868996, 55.9385133 -3.1977770, 55.9364081 -3.4051737, 55.9387724 -3.3554816, 55.9411930 -3.2700299, 55.9326592 -3.3137139, 55.9581549 -3.4146320, 55.9259159 -3.2475077, 55.9340106 -3.3057008, 55.9532891 -3.1942347, 55.9528215 -3.1966476, 55.9577481 -3.1745891, 55.9523152 -3.1996825, 55.9512080 -3.2029850, 55.9505306 -3.2060289, 55.9360698 -3.1801396, 55.9431462 -3.2098500, 55.9424957 -3.2178326, 55.9430404 -3.2209823, 55.9431450 -3.1777930, 55.9473014 -3.2066559, 55.9382479 -3.2288358, 55.9493199 -3.2107221, 55.9371375 -3.2021480, 55.9416831 -3.1813332, 55.9399477 -3.1799875, 55.9400554 -3.1800410, 55.9383873 -3.1947438, 55.9381286 -3.1934756, 55.9532580 -3.2007176, 55.9574289 -3.1707713, 55.9498239 -3.1879473, 55.9457420 -3.2062080, 55.9361540 -3.2091272, 55.9367921 -3.2080082, 55.9519655 -3.2019557, 55.9456455 -3.2052495, 55.9420725 -3.2685561, 55.9526727 -3.1905474, 55.9499553 -3.1886925, 55.9483500 -3.1918487, 55.9534890 -3.1892336, 55.9564328 -3.1863322, 55.9462158 -3.1854968, 55.9448431 -3.2048049, 55.9426898 -3.2037234, 55.9472487 -3.1909778, 55.9475118 -3.1893161, 55.9479802 -3.1868691, 55.9462178 -3.1884860, 55.9445944 -3.1837358, 55.9447090 -3.1838238, 55.9390205 -3.1796146, 55.9391727 -3.1798248, 55.9901108 -3.3958456, 55.9382045 -3.1790187, 55.9393085 -3.1795319, 55.9299097 -3.2092576, 55.9362743 -3.1942603, 55.9364425 -3.1941118, 55.9364298 -3.1945475, 55.9381921 -3.1929355, 55.9380470 -3.1915010, 55.9447005 -3.1877270, 55.9428356 -3.1884222, 55.9454993 -3.1874399, 55.9780196 -3.1734148, 55.9341605 -3.2104863, 55.9454998 -3.1881337, 55.9450783 -3.1887212, 55.9480103 -3.1837600, 55.9486091 -3.1831054, 55.9381703 -3.1892079, 55.9382556 -3.1704864, 55.9404236 -3.1696109, 55.9517036 -3.1735044, 55.9444953 -3.1872925, 55.9457242 -3.1982021, 55.9357656 -3.2102949, 55.9634754 -3.1970678, 55.9608923 -3.1970860, 55.9571867 -3.1639997, 55.9594665 -3.1504625, 55.9754036 -3.1792572, 55.9780588 -3.1803331, 55.9781026 -3.1779536, 55.9779864 -3.1732444, 55.9779219 -3.1732147, 55.9779507 -3.1735468, 55.9780888 -3.1742385, 55.9781653 -3.1742810, 55.9781945 -3.1744492, 55.9781519 -3.1745615, 55.9657634 -3.1762911, 55.9648030 -3.1769642, 55.9618573 -3.1797874, 55.9614066 -3.1810341, 55.9282699 -3.1971794, 55.9300538 -3.2006041, 55.9291787 -3.1994540, 55.9288531 -3.2399727, 55.9444072 -3.1838777, 55.9432514 -3.2138686, 55.9434340 -3.2137230, 55.9382190 -3.1871150, 55.9453045 -3.2316341, 55.9163168 -3.3178016, 55.9342480 -3.2099670, 55.9250348 -3.2099016, 55.9556996 -3.1881309, 55.9288850 -3.2096120, 55.9268034 -3.2091405, 55.9599520 -3.1873930, 55.9511210 -3.2277490, 55.9369030 -3.3008559, 55.9760995 -3.1730677, 55.9690233 -3.1728199, 55.9473560 -3.1862560, 55.9472450 -3.1859400, 55.9471464 -3.1859252, 55.9532957 -3.1984157, 55.9727023 -3.1754426, 55.9447520 -3.1840600, 55.9645394 -3.2127643, 55.9360200 -3.2090070, 55.9425943 -3.2128320, 55.9429739 -3.2134360, 55.9425021 -3.1970043, 55.9173034 -3.2149399, 55.9371649 -3.2025037, 55.9363800 -3.1997880, 55.9368530 -3.2004540, 55.9191956 -3.2130499, 55.8967480 -3.3189972, 55.9459933 -3.2231784, 55.9366703 -3.2079324, 55.9536450 -3.1936151, 55.9471310 -3.1906350, 55.9433250 -3.2363632, 55.9436340 -3.1927890, 55.9131941 -3.3215704, 55.9267768 -3.2325501, 55.9265880 -3.2362930, 55.9479871 -3.1862306, 55.9478974 -3.1862047, 55.9670709 -3.1749630, 55.9455865 -3.2342233, 55.9455978 -3.2346741, 55.9372962 -3.2491878, 55.9372632 -3.2492416, 55.9399014 -3.1712062, 55.9275895 -3.1645483, 55.9241128 -3.1723545, 55.9321255 -3.1800006, 55.9334491 -3.1664892, 55.9819333 -3.3968976, 55.9824701 -3.3972270, 55.9517351 -3.1896593, 55.9526200 -3.1872149, 55.9514550 -3.1958932, 55.9113288 -3.3221174, 55.9379636 -3.2403672, 55.9371924 -3.2382206, 55.9772777 -3.2461729, 55.9005835 -3.3187680, 55.9504487 -3.1855770, 55.9481787 -3.1818614, 55.9469357 -3.2061870, 55.9468336 -3.2067128, 55.9510529 -3.1895716, 55.9474405 -3.2025897, 55.9469842 -3.2055924, 55.9484546 -3.2033792, 55.9477666 -3.2049354, 55.9519571 -3.1962325, 55.9475027 -3.1864955, 55.9450666 -3.1879264, 55.9173837 -3.3145666, 55.9650759 -3.2031617, 55.9807357 -3.1771531, 55.9801105 -3.1784204, 55.9803382 -3.1778904, 55.9509532 -3.1703030, 55.9449293 -3.1531235, 55.9426622 -3.1700360, 55.9536680 -3.1591788, 55.9510831 -3.1696039, 55.9471411 -3.1970342, 55.9472696 -3.1965989, 55.9476455 -3.1953503, 55.9470721 -3.1972816, 55.9444791 -3.1881383, 55.9441090 -3.1902632, 55.9441665 -3.1899295, 55.9431021 -3.1885851, 55.9442010 -3.1896725, 55.9442375 -3.1894117, 55.9434877 -3.1870683, 55.9411521 -3.2175600, 55.9416473 -3.2167635, 55.9417417 -3.2166027, 55.9412822 -3.2173787, 55.9414839 -3.2157963, 55.9533340 -3.1882867, 55.9535985 -3.1880495, 55.9540940 -3.1883181, 55.9647669 -3.1742071, 55.9550392 -3.1900725, 55.9551557 -3.1901442, 55.9626030 -3.2336790, 55.9718556 -3.1742189, 55.9598707 -3.1836010, 55.9596341 -3.1834611, 55.9632066 -3.1785776, 55.9606353 -3.1818678, 55.9571142 -3.1859300, 55.9583267 -3.1846366, 55.9591802 -3.1838027, 55.9615406 -3.1806868, 55.9702777 -3.1722352, 55.9714725 -3.1735772, 55.9649663 -3.1768207, 55.9645028 -3.1902250, 55.9585203 -3.1837638, 55.9589264 -3.1833589, 55.9658761 -3.1755965, 55.9758546 -3.1700490, 55.9698878 -3.1717364, 55.9698710 -3.1719035, 55.9673457 -3.1743716, 55.9608269 -3.1809491, 55.9626007 -3.1788719, 55.9456193 -3.2178696, 55.9666564 -3.2048348, 55.9896602 -3.3989461, 55.9897226 -3.3892617, 55.9904018 -3.3860921, 55.9316272 -3.2648845, 55.9459387 -3.2172281, 55.9261122 -3.1387785, 55.9535442 -3.2058828, 55.9468426 -3.2042839, 55.9122985 -3.3155498, 55.9418064 -3.1502056, 55.9366240 -3.1802622, 55.9259084 -3.1931834, 55.9234603 -3.2480989, 55.9111503 -3.3240497, 55.9386253 -3.2265154, 55.9311720 -3.2951988, 55.9014700 -3.2230460, 55.9635314 -3.2337201, 55.9623235 -3.2362031, 55.9400736 -3.1717606, 55.9808127 -3.2595224, 55.9514755 -3.1782823, 55.9511672 -3.1780596, 55.9509125 -3.1777434, 55.9486026 -3.1924520, 55.9426281 -3.2128809, 55.9430915 -3.2136268, 55.9480325 -3.1815054, 55.9480039 -3.1817137, 55.9089361 -3.3201414, 55.9094368 -3.3204754, 55.9092872 -3.3205265, 55.9085739 -3.3187295, 55.9117444 -3.3246249, 55.9114205 -3.3241848, 55.9691533 -3.2784692, 55.9163294 -3.3174640, 55.9437913 -3.2075720, 55.9438322 -3.2058300, 55.9439569 -3.2059882, 55.9141250 -3.3250705, 55.9140139 -3.3251617, 55.9414930 -3.1764095, 55.9501068 -3.1901274, 55.9502048 -3.1904658, 55.9502374 -3.1901476, 55.9777985 -3.2431662, 55.9341031 -3.3103280, 55.9338808 -3.3104461, 55.9505032 -3.1770192, 55.9644079 -3.2126470, 55.9509705 -3.1758549, 55.9353260 -3.1974910, 55.9359590 -3.1944058, 55.8843050 -3.3391037, 55.9439543 -3.2071456, 55.9319254 -3.2512353, 55.9173812 -3.3147110, 55.9482625 -3.1920719, 55.9122188 -3.3171913, 55.9228018 -3.1364902, 55.9552280 -3.1478679, 55.9549996 -3.1445229, 55.9355007 -3.1026548, 55.9135725 -3.3140139, 55.9167553 -3.3178746, 55.9218026 -3.1745330, 55.9220250 -3.1740037, 55.9222596 -3.1746208, 55.9451505 -3.1872267, 55.9426518 -3.1008380, 55.9338262 -3.0919845, 55.9338797 -3.0920141, 55.9189185 -3.2647989, 55.9214872 -3.3034840, 55.9344336 -3.1226594, 55.9503499 -3.1810630, 55.9516064 -3.1841709, 55.9237248 -3.2366306, 55.9833943 -3.2415959, 55.9347829 -3.1798219, 55.9122663 -3.3242829, 55.9154236 -3.3172381, 55.9676214 -3.1664619, 55.9247393 -3.2762275, 55.9834316 -3.2423890, 55.9836698 -3.2462331, 55.9836844 -3.2504406, 55.9837405 -3.2490698, 55.9265395 -3.2441561, 55.9358853 -3.2101222, 55.9495537 -3.1836402, 55.9229086 -3.3978162, 55.9095509 -3.2288170, 55.9086019 -3.2094913, 55.9503720 -3.1813833, 55.9504108 -3.1802868, 55.9507721 -3.1811578, 55.9658637 -3.1761995, 55.9527684 -3.2488426, 55.9812296 -3.1751262, 55.9812432 -3.1752913, 55.9614848 -3.1812115, 55.9503954 -3.3029550, 55.9395842 -3.2047515, 55.9395958 -3.2047474, 55.9376968 -3.2030817, 55.9089416 -3.3164123, 55.9308207 -3.2096951, 55.9743623 -3.1997016, 55.9330618 -3.1065999, 55.9335680 -3.1067948, 55.9375488 -3.3118506, 55.9728634 -3.3514884, 55.9429037 -3.2078542, 55.9475883 -3.3646294, 55.9459800 -3.2223160, 55.9593810 -3.2409668, 55.9561231 -3.1987844, 55.9463571 -3.2082808, 55.9231651 -3.2343395, 55.9561721 -3.1565201, 55.9378482 -3.3327076, 55.9445564 -3.2071394, 55.9524023 -3.1867211, 55.9525000 -3.1872298, 55.9423834 -3.1891736, 55.9396025 -3.1913584, 55.9383523 -3.2265410, 55.9350508 -3.1940011, 55.9585188 -3.1644249, 55.9517703 -3.2028837, 55.9395810 -3.1916680, 55.9457233 -3.1826212, 55.9625044 -3.2362710, 55.9627903 -3.2341275, 55.9414710 -3.2036216, 55.9295687 -3.1756519, 55.9242094 -3.1728587, 55.9239552 -3.1723571, 55.9240756 -3.1746808, 55.9241838 -3.1735301, 55.9230650 -3.1714407, 55.9232656 -3.1716767, 55.9519102 -3.2244910, 55.9386901 -3.3172128, 55.9387953 -3.3165959, 55.9268426 -3.1666054, 55.9413339 -3.2710077, 55.9413445 -3.2708146, 55.9443702 -3.1853406, 55.9409652 -3.1851060, 55.9411294 -3.1853959, 55.9548088 -3.1927863, 55.9273713 -3.1874512, 55.9441079 -3.1919941, 55.9265863 -3.2092898, 55.9509401 -3.1790287, 55.9632358 -3.1796142, 55.9274324 -3.1996630, 55.9303417 -3.2637536, 55.9303636 -3.2638502, 55.9305298 -3.2635743, 55.9308144 -3.2639192, 55.9583318 -3.1187044, 55.9140621 -3.2840381, 55.9532656 -3.1152143, 55.9533715 -3.1154926, 55.9536925 -3.1156095, 55.9523964 -3.1125548, 55.9531590 -3.1065611, 55.9569152 -3.1168216, 55.9545977 -3.1418305, 55.9374032 -3.1711512, 55.9392787 -3.1786578, 55.9392916 -3.1784800, 55.9410201 -3.1806656, 55.9409384 -3.1805218, 55.9435127 -3.1836307, 55.9446441 -3.1839145, 55.9353259 -3.1974274, 55.9356823 -3.2014008, 55.9372592 -3.2021206, 55.9429165 -3.1831794, 55.9121573 -3.3216925, 55.9312185 -3.1718146, 55.9274598 -3.3076072, 55.9276450 -3.3080783, 55.9276631 -3.3081360, 55.9239739 -3.2513488, 55.9340161 -3.1746636, 55.9258469 -3.1648168, 55.9539972 -3.1945597, 55.9230518 -3.1726728, 55.9233383 -3.1720153, 55.9624754 -3.2326403, 55.9551794 -3.4015311, 55.9383407 -3.3187573, 55.9310730 -3.3145350, 55.9311471 -3.3142171, 55.9157480 -3.2864086, 55.9159814 -3.2865221, 55.9484210 -3.1872643, 55.9503683 -3.2078227, 55.9305617 -3.1761991, 55.9192762 -3.1670567, 55.9448310 -3.1949994, 55.9446376 -3.1965778, 55.9445589 -3.1947495, 55.9444142 -3.1965059, 55.9258509 -3.1647719, 55.9447377 -3.1971839, 55.9442766 -3.1978649, 55.9324266 -3.1585275, 55.9417129 -3.1849464, 55.9417884 -3.1851916, 55.9418282 -3.1853346, 55.9418526 -3.1852528, 55.9418744 -3.1849589, 55.9418899 -3.1847817, 55.9418905 -3.1855192, 55.9419227 -3.1854387, 55.9420262 -3.1854659, 55.9421747 -3.1855648, 55.9412750 -3.1446800, 55.9330745 -3.2607364, 55.9207513 -3.1600951, 55.9520027 -3.2062005, 55.9523984 -3.2038646, 55.9530497 -3.2000438, 55.9534470 -3.1976948, 55.9535975 -3.1968237, 55.9331086 -3.1362248, 55.9328125 -3.1366963, 55.9221224 -3.1339138, 55.9223185 -3.1339297, 55.9225101 -3.1339536, 55.9230177 -3.3792156, 55.9447090 -3.1977550, 55.9354932 -3.2368783, 55.9811288 -3.1900190, 55.9687011 -3.1415142, 55.9611799 -3.1900622, 55.9443966 -3.1836641, 55.9389888 -3.1717191, 55.9390958 -3.1739542, 55.9396811 -3.1731682, 55.9400456 -3.1761228, 55.9408960 -3.1768412, 55.9044458 -3.1561935, 55.9369677 -3.2108383, 55.9219280 -3.1788973, 55.9551528 -3.1962671, 55.9332627 -3.2293915, 55.9217192 -3.1545460, 55.9220531 -3.1536922, 55.9538687 -3.1922380, 55.9773393 -3.1724494, 55.9789535 -3.2110248, 55.9449763 -3.1994667, 55.9440570 -3.0985717, 55.9308970 -3.2761417, 55.9308699 -3.2764985, 55.9449994 -3.1905191, 55.9450146 -3.1904231, 55.9450298 -3.1903272, 55.9450449 -3.1902313, 55.9451338 -3.1906532, 55.9471706 -3.1875904, 55.9472333 -3.1877797, 55.9473065 -3.1867806, 55.9474310 -3.1878868, 55.9475351 -3.1877754, 55.9476704 -3.1869573, 55.9466232 -3.1903104, 55.9227217 -3.1743920, 55.9228810 -3.1754273, 55.9231124 -3.1754193, 55.9229249 -3.1782458, 55.9499694 -3.1797507, 55.9499757 -3.1798160, 55.9500637 -3.1794660, 55.9500938 -3.1794485, 55.9229601 -3.1790391, 55.9234202 -3.1790544, 55.9496737 -3.1953225, 55.9496093 -3.1936827, 55.9324201 -3.2283154, 55.9332542 -3.2297846, 55.9540835 -3.1946291, 55.9538883 -3.1945191, 55.9332338 -3.3059686, 55.9461074 -3.1908473, 55.9219330 -3.1748598, 55.9218016 -3.1748987, 55.9219960 -3.1749734, 55.9744239 -3.1691820, 55.9728088 -3.1726327, 55.9357218 -3.3185706, 55.9415743 -3.1747965, 55.9415635 -3.1757823, 55.9116844 -3.3222899, 55.9119672 -3.3224414, 55.9239634 -3.1724671, 55.9220936 -3.1720186 +11 +49.4039055 8.6875262 +55.9067239 -3.3259177 +49.4136008 8.7082611, 49.4112441 8.6903587, 49.4113237 8.6908643, 49.4110063 8.6891664, 49.4110500 8.6895186, 49.4108794 8.6883101, 49.4114098 8.6912991, 49.4111290 8.6899184, 49.4108382 8.6876904, 49.4108769 8.6888215, 49.4174692 8.7409450, 49.4174373 8.7409306, 49.4160829 8.7535172, 49.4161808 8.7538213, 49.4162711 8.7543843, 49.4161118 8.7531970, 49.4161148 8.7535052, 49.4161008 8.7532182, 49.4161967 8.7538178, 49.4163492 8.7543908, 49.4161886 8.7531881, 49.4162603 8.7544111, 49.4162703 8.7537989, 49.4096864 8.6726720, 49.4127535 8.6919848, 49.4129719 8.7021700, 49.4110222 8.6895550, 49.4110351 8.6877461, 49.4171759 8.7213230, 49.4110610 8.6883331, 49.4111755 8.6894519, 49.4111501 8.6899020, 49.4111830 8.6903927, 49.4108661 8.6877402, 49.4110485 8.6891464, 49.4113717 8.6902930, 49.4112504 8.6898546, 49.4112035 8.6898762, 49.4110984 8.6899270, 49.4112430 8.6903482, 49.4108892 8.6883359, 49.4111039 8.6891143, 49.4171375 8.7213480, 49.4110736 8.6894975, 49.4114116 8.6912936, 49.4108083 8.6883827, 49.4109282 8.6892056, 49.4109717 8.6887717, 49.4108567 8.6888332, 49.4112902 8.6908759, 49.4111257 8.6894742, 49.4113048 8.6903187, 49.4109698 8.6883042, 49.4111619 8.6890938, 49.4114203 8.6908213, 49.4109153 8.6887997, 49.4114811 8.6912678, 49.4113505 8.6908441, 49.4109887 8.6891763, 49.4109440 8.6877038, 49.4107928 8.6877659, 49.4100250 8.6811799, 49.4110496 8.6899485, 49.4100683 8.6817742, 49.4109674 8.6895199, 49.4129423 8.6936139, 49.4147216 8.7059968 +yes +Gaumont Parnasse, Gaumont Miramar, UGC Gobelins, Gaumont Gobelins, UGC Ciné-cité Bercy, Cinéma Louis Lumière, Pathé Beaugrenelle, MK2 Bibliothèque, Géode +Saughton Prison, Military Prison, Military Prison +48.8275543 9.1735007, 48.8317303 9.1734075, 48.7617346 9.1602369, 48.7789392 9.1250259, 48.7596919 9.2545814, 48.7755956 9.2787713, 48.7822418 9.1959176, 48.7297433 9.1126553, 48.7404705 9.2193208, 48.7701954 9.1501963, 48.8038663 9.2046417, 48.7817024 9.1785053, 48.7738605 9.1653114, 48.7745628 9.1768249, 48.7755661 9.1822665, 48.8075764 9.2215905, 48.7748791 9.2033224, 48.7855023 9.2078250, 48.7728984 9.2422225, 48.7603190 9.1527564, 48.8099398 9.1822005, 48.7835213 9.1904669, 48.7777675 9.1786644, 48.7836164 9.1815941, 48.8051636 9.2143167, 48.8075633 9.2031061, 48.8056941 9.2052973, 48.8046584 9.2081441, 48.7733571 9.1814780, 48.7935947 9.1983330, 48.8302021 9.2116521, 48.8031501 9.2176920, 48.7482479 9.1675385, 48.7803811 9.2504393, 48.8062716 9.1978670, 48.8137095 9.1121176, 48.7459605 9.1628840, 48.8142557 9.1680503, 48.7637176 9.1680843, 48.7829026 9.1869980, 48.7314704 9.1097357, 48.7803731 9.1800642, 48.7790681 9.1778545, 48.7789470 9.1790715, 48.8029161 9.0920608, 48.7103495 9.2034577, 48.8040371 9.2077185, 48.8299794 9.1677017, 48.8066438 9.2064316, 48.7625523 9.2679330, 48.7714772 9.1787823, 48.7739785 9.1452043, 48.7743064 9.1728145, 48.7607878 9.0913690, 48.8367097 9.2219462, 48.8053640 9.1717932, 48.8047872 9.1737641, 48.8071042 9.1709399, 48.7454315 9.2048052, 48.7750049 9.1779775, 48.7865061 9.0839294, 48.8347151 9.2143326, 48.8016329 9.2177209, 48.7813410 9.2686106, 48.7836705 9.1815229, 48.8414941 9.2304961, 48.7764847 9.1755588, 48.8076517 9.1765509, 48.8280349 9.1541290, 48.7735308 9.1564212, 48.8022186 9.2108011, 48.7173535 9.1056474, 48.8228892 9.2406244 +0 +471 +10 +Folies Bergère, Théâtre des Champs-Elysées, Salle Pleyel, La Maroquinerie, Bouffon théâtre, Opéra Bastille, Le Cabaret Sauvage, Théâtre National de l'Opéra Comique, Cité de la Musique +no +55.9383859 -3.2394291, 55.9455830 -3.1876260, 55.9100645 -3.3226374, 55.9361114 -3.1942444, 55.9164420 -3.3136067, 55.9814339 -3.1885738, 55.9821090 -3.1943241, 55.9743443 -3.1729943, 55.9690950 -3.1689790, 55.9881090 -3.4095046, 55.9881478 -3.4092417, 55.9360525 -3.2265524, 55.9710850 -3.2302781, 55.9574260 -3.1873226, 55.9629073 -3.2208615, 55.9472459 -3.1969515, 55.9278249 -3.1233349, 55.9018528 -3.2249445, 55.9194696 -3.2656157, 55.9200972 -3.2944514, 55.9183885 -3.2959833, 55.9636382 -3.1754565, 55.9739316 -3.1698802, 55.9416987 -3.1760841, 55.9412183 -3.1743024 +49.4107966 8.6943951, 49.4238658 8.7430940, 49.4121051 8.6860030, 49.4223501 8.6599302, 49.4223222 8.6598873, 49.4215332 8.6575985, 49.4210068 8.6578764, 49.4208003 8.6576284, 49.4224924 8.6561789, 49.3766836 8.6787719, 49.4236184 8.7425460, 49.4093716 8.6801667, 49.4092201 8.6801589, 49.4093634 8.6798229, 49.4096538 8.6804663, 49.4122205 8.6532679 +no +Cameo Picturehouse, Odeon, Filmhouse, Cineworld, Vue Cinema, Vue, Odeon, Dominion Cinema +no +392.00202441680125 +55.9456427 -3.1913637, 55.9330234 -3.2354551, 55.9257928 -3.2095594, 55.9687971 -3.1730857, 55.9801960 -3.1982556, 55.9605889 -3.1427782, 55.9788896 -3.2317323, 55.9588767 -3.2113228, 55.9614993 -3.3058797, 55.9334573 -3.1781344, 55.9057929 -3.2224600, 55.9360076 -3.2097027, 55.9654290 -3.1759121, 55.9460215 -3.2123225, 55.9466560 -3.2163830, 55.9448614 -3.2174899, 55.9424827 -3.2816610, 55.9713551 -3.2524770, 55.9504108 -3.2089957, 55.9505271 -3.1874272, 55.9529055 -3.1966423, 55.9530315 -3.1960873, 55.9399803 -3.2118878, 55.9398206 -3.2115635, 55.9422231 -3.2036959, 55.9427696 -3.2813759, 55.9600977 -3.2957282, 55.9592529 -3.2133182, 55.9453652 -3.1842234, 55.9268573 -3.2094072, 55.9807322 -3.1775607, 55.9591293 -3.1715337, 55.9592043 -3.1715261, 55.9575707 -3.2076016, 55.9262302 -3.1859988, 55.9148390 -3.1652277, 55.9376474 -3.1780108, 55.9414683 -3.1812245, 55.9331816 -3.2608758, 55.9415944 -3.1818222, 55.9416532 -3.1818741, 55.9484509 -3.1864893, 55.9603970 -3.2016509, 55.9325122 -3.1401027, 55.9641019 -3.1771391, 55.9414706 -3.2032792, 55.9174745 -3.1579689, 55.9542022 -3.2014648, 55.9626976 -3.1781014, 55.9699822 -3.1694976, 55.9330456 -3.2353604, 55.9714788 -3.1731260, 55.9298458 -3.2993946, 55.9655520 -3.2738904 +48.8305422 2.3206552 +812 and North Bridge, George IV Bridge, City of Edinburgh Bypass, Dean Bridge, Echline Roundabout, Forth Bridge, Yeamen Place, West Approach Road, Grove Street, Roseburn Path, Roseburn Path, Harrison Road, Scott Russell Aqueduct (Union Canal), Wester Hailes Road, Slateford Aquaduct, Clovenstone Road, Ravelrig Road, Union Canal Towpath, Lanark Road, Edinburgh to Glasgow via Shotts, Baberton Mains Hill, Gogar Station Road, Union Canal, Long Dalmahoy Road, Long Dalmahoy Road, Meadow Place Road, Dumbryden Road, The Forth Road Bridge, The Forth Road Bridge, Union Canal Towpath, Hermiston House Road, Hermiston House Road, Bridge Road, Water of Leith Walkway, Curriehill Road, Gogar Station Road, Gogar Station Road, Hailesland Park, Riccarton Mains Road, Boundary Road East, Water of Leith Walkway, Wester Hailes Road, Wester Hailes Road, Wester Hailes Road, Union Canal Towpath, Baird Road, Murrayburn Road, Kingsknowe Road North, Water of Leith Walkway, South Bridge, Ferry Road, Telford Path, Great Junction Street, Forth Road Bridge (Cycleway), Forth Road Bridge (Cycleway), Ferry Road, Falshaw Bridge, South Gyle Road, Blinkbonny Road, South Fort Street, Bonaly Road, Kirkgate, Turnhouse Road, St Mark's Path, Warriston Road, Newhaven Road, Silverknowes Road, Craighall Road, Craighall Road, Pilton Drive, Telford Road, Waterloo Place, Queensferry Road, Union Canal Towpath, Union Canal, Canonmills Bridge, Cemetery Road, Seafield Road, Broomhouse Road, Union Canal, Union Canal Towpath, Lanark Road, Nether Craigour, Old Dalkeith Road, Gilmerton Road, Clovenstone Road, Dreghorn Link, North Meggetland, Ravelston Dykes, Glasgow Road, Glasgow Road, Crewe Road Gardens, Braid Avenue, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, City of Edinburgh Bypass, City of Edinburgh Bypass, City of Edinburgh Bypass, City of Edinburgh Bypass, Edinburgh to Glasgow via Shotts, Water of Leith Walkway, Water of Leith Walkway, West Approach Road, East Coast Main Line, Lochend Road, Restalrig Railway Path, Restalrig Railway Path, Restalrig Railway Path, Ocean Drive, Ocean Drive, Newhaven Road, Blackford Avenue, Craigmillar Park, Little France Crescent, Milton Road East, Commercial Street, City of Edinburgh Bypass, City of Edinburgh Bypass, Torphin Road, South Trinity Road, Clark Road, Water of Leith Walkway, Deanhaugh Street, Fillyside Road, St Mark's Bridge, Water of Leith Walkway, City of Edinburgh Bypass, City of Edinburgh Bypass, City of Edinburgh Bypass, City of Edinburgh Bypass, Water of Leith Walkway, Swanston Road, Harrison Road, Slateford Road, West Approach Road, West Footbridge, Telford Path, North Ramp, Humbie, Humbie, Easter Road, Duddingston Road West, Duddingston Road West, Comiston Road, Belford Road, Milton Road East, Johnston Terrace, Slateford Road, Water of Leith Walkway, Water of Leith Walkway, Dumbryden Grove, Water of Leith Walkway, Walker's Wynd, Middle Footbridge, Crawford Bridge, Restalrig Road, Marrionville Road, Fillyside Road, West Approach Road, Lochside Avenue, Edinburgh Road, Roddinglaw Road, Water of Leith Walkway, Fife Circle Line, Queensferry Road, Balgreen Road, Boswall Drive, Shandon Place, Biggar Road, Bridge Road, City of Edinburgh Bypass, City of Edinburgh Bypass, Bonaly Road, Redford Bridge, The Innocent Railway, Forken Ford, Waverley Bridge, Coltbridge Avenue, Hope Lane, Granton Road, Wardie Road, Telford Road, Peffermill Road, Ferry Road, Portobello Road, Scout Bridge, City of Edinburgh Bypass, Gogar Roundabout, Biggar Road, Myreside Road, Brunstane Burn Walkway, Bridge Street, Fife Circle Line, Newcraighall Road, Gogarmuir Road, Newbridge Roundabout, Newbridge Roundabout, Ashley Terrace, Anderson Place, West Bowling Green Street, Station Road, Water of Leith Walkway, Clifton Road, Meggetland Bridge, Sandport Place, Mountcastle Drive North, Warriston Path, Corstophine Branch Railway Route, Chapelhill Road, Redhall Bank Road, Water of Leith Walkway, Calder Road, Calder Road, East Coast Main Line, East Coast Main Line, East Coast Main Line, Tron Square, Fishwives Causeway, East Coast Main Line, Sir Harry Lauder Road, East Coast Main Line, Lennox Row, Edinburgh Park Bridge, Edinburgh Park Bridge, Bothwell Street, Water of Leith Walkway, Poet's Glen, Oswald Road, Howe Dean Path, Dundee Street, Seafield Road, Water of Leith Walkway, Water of Leith Walkway, Newhaven Road, The Salvesen Bridge, Milton Road East, Portobello Road, London Road, South Ramp, Broughton Road, Echline Roundabout, Dell Road, Water of Leith Walkway, Water of Leith Walkway, Firrhill Drive, Adelphi Place, Corstophine Branch Railway Route, Sir Harry Lauder Road, Sir Harry Lauder Road, East Coast Main Line, Boathouse Bridge, Edinburgh Road, Ferry Road Path, Brunstane Road South, East Coast Main Line, Water of Leith Walkway, Hallyards Road, Blinkbonny Road, Oxgangs Road North, New Liston Road, Lochend Road, North Fort Street, Mayfield Road, The Loan, Haughhead Road, Water of Leith Walkway, Warriston Path, Bavelaw Gardens, Harlaw Road, Private Road, Private Road, Water of Leith Walkway, Water of Leith Walkway, Blinkbonny Road, Private Road, Harlaw Road, Glenbrook Road, Glasgow Road, Mid Liberton, Chesser Avenue, Lochend Butterfly Way, Water of Leith Walkway, Viewforth, Poet's Glen, Milton Farm Road, Myreton Drive, Queensferry Crossing, Queensferry Crossing, Dalmeny, Dalmeny, Gilmerton Dykes Street, Drum Street, Ferry Road, Leamington Lift Bridge, The Walk, Milton Farm Road, Milton Farm Road, Saint Bernards Bridge, Greendykes Road, Hermiston House Road, East Coast Main Line, East Coast Main Line, East Coast Main Line, East Coast Main Line, East Coast Main Line, Abbeyhill Turnback, Little France Drive, Brunstane Burn Walkway, Gogar Roundabout, Edinburgh to Glasgow via Shotts, Gowanhill Farm Road, Lanark Road, Howe Dean Path, Howe Dean Path, Water of Leith Walkway, Water of Leith Walkway, Old Burdiehouse Road, Union Canal Towpath, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Gracemount Drive, Brunstane Road, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Harvesters Way, Hopetoun Road, East Coast Main Line, East Coast Main Line, Forth Bridge, Water of Leith Walkway +55.9126235 -3.3200599, 55.9328025 -3.3133858, 55.9379190 -3.2748726, 55.9492741 -3.4056494 +yes +165 +49.4151455 8.7001711 +0 +49.4592060 8.7521809, 49.4031563 8.7288155, 49.4032526 8.7289874, 49.3732501 8.7471415, 49.4010156 8.7133745, 49.4012714 8.7099451, 49.4035347 8.7270885, 49.3798053 8.7238859, 49.3924119 8.7403556, 49.4353405 8.6845100, 49.4386622 8.6819436, 49.4198190 8.7257180, 49.4318454 8.7057299, 49.3784315 8.6932171, 49.4588749 8.7510057, 49.4085824 8.7204400 +83 +313 +E 50, E 05 +yes +48.8456181 2.3051375 +Hotel Schönberger Hof, Hotel Tannhäuser, Hotel Bayrischer Hof, Hotel Hackteufel, Hotel Perkeo, Hotel The Dubliner, Hotel Regina, Neckartal, Goldener Falke, Hotel Zur Alten Brücke, Hotel Central, Denner Hotel, Hotel Acor, Hotel Monpti, Hotel Goldene Rose, Hotel Nassauer Hof, Hotel am Rathaus, Hotel am Schloss, Hotel Kulturbrauerei Heidelberg, Hotel Villa Marstall, Hotel Goldener Hecht, Hotel Holländer Hof, Hotel Schnookeloch, Hotel Weisser Bock, Hotel Backmulde, Altstadt Hotel, Hotel Krokodil, Hiphotel Blume, Hotel Classic Inn, Hotel Diana, Gaestehaus der SRH, Exzellenz Hotel, Hotel Boarding House, Hotel Panorama, Hotel Schmitt, Hotel Heidelberg, Hotel Rose, Cafe Hotel Frisch +53.0289027 8.6383844, 53.0479116 8.6346100, 53.0289689 8.6384139, 53.0478728 8.6346395, 53.0478342 8.6346610 +1 +55.9524898 -3.1736491, 55.9525959 -3.1925077 +229 +yes +http://www.hotel-etab.de, http://www.marriott.de, http://www.auerstein.de/, http://www.hotels-in-heidelberg.de, http://www.gaestehaus-endrich.de, http://www.parkhotelatlantic.de, www.leonardo-hotels.com, www.bayrischer-hof-heidelberg.com, www.hackteufel.de, http://www.hotels-in-heidelberg.de, www.dublinerheidelberg.com, www.ibis-hotel.de, http://hotelneckartal.de, www.goldener-falke-heidelberg.de, www.ritter-heidelberg.de, www.europaeischerhof.com, http://www.hotel-elite-heidelberg.de, http://qube-hotel-heidelberg.de/, www.hotel-central-heidelberg.de, http://www.denner-hotel.de, www.hotel-acor.de, www.hotel-monpti.de, http://www.hotelamkornmarkt.de, http://www.nh-hotels.de/nh/de/hotels/deutschland/heidelberg.html, www.hotel-goldene-rose.de, www.hotel-nassauer-hof.de, http://www.hotels-in-heidelberg.de, http://www.hotels-in-heidelberg.de, http://www.heidelberger-kulturbrauerei.de/, www.villamarstall.de, www.hotel-goldener-hecht.de, www.hollaender-hof.de, http://www.schnookeloch.de, www.arthotel.de, www.weisserbock.de, http://www.gasthaus-backmulde-hotel.de, www.hip-hotel.de, www.hd-altstadt-hotel.de, www.krokodil-heidelberg.de, www.blume-hotel.de, www.hotel-classic-inn.de, www.garnihoteldiana.de, http://www.bergheim41.de, http://www.hotel-kranich-heidelberg.de, http://www.ihg.com/holidayinnexpress/hotels/de/de/heidelberg/hdbex/hoteldetail, http://www.molkenkur.de, www.gaestehaus.srh.de/, www.heidelbergsuites.com, www.lamm-heidelberg.de, http://www.heidelberg-astoria.de/, www.hirschgasse.de, http://www.crowneplaza-heidelberg.de/, http://www.exzellenzhotel.de, www.boardinghouse-hd.de, http://www.hotel-anlage.de, www.panorama-heidelberg.de, http://www.leonardo-hotels.de/deutschland-hotels/hotel-heidelberg/leonardo-heidelberg-hotel, www.hotel-schmitt-heidelberg.de, http://www.goldenerose-hd.de, http://www.hotelheidelberg.com, www.hotel-rose-heidelberg.com, http://www.hotel-neu-heidelberg.de, https://hotelo-heidelberg.de, http://www.hotel-ambiente-heidelberg.de, http://www.cafe-frisch.de, http://www.hoteldenriko-hd.de/, http://www.adler-heidelberg.de, http://www.zum-waldhorn.de, http://www.hotelbb.de/de/heidelberg +yes +marina, skate park, nature reserve, park, sports centre, playground, slipway, track, pitch, bingo, yes, picnic table, garden, swimming pool, hackerspace, dance, fitness centre, sauna, stadium, recreation ground, common, golf course, playing fields, walled garden, bicycle, miniature golf, club +0 +48.8718241 2.3676242, 48.8385750 2.3962263, 48.8367172 2.3924117, 48.8478582 2.3735429, 48.8483197 2.3742134, 48.8471402 2.3725177, 48.8342552 2.3021401, 48.8847020 2.3249240, 48.8555382 2.3054236, 48.8576438 2.3546760, 48.8343459 2.3060180, 48.8321878 2.3587424, 48.8604674 2.3454225, 48.8631582 2.3498973, 48.8633690 2.3462612, 48.8634242 2.3462790, 48.8527730 2.3537103, 48.8555040 2.3574259, 48.8402209 2.3517797, 48.8556266 2.3621786, 48.8550149 2.3631694, 48.8552064 2.3625817, 48.8537619 2.3675235, 48.8661285 2.3594408, 48.8521687 2.3444775, 48.8628432 2.3600037, 48.8638993 2.3606178, 48.8649528 2.3628140, 48.8820420 2.3678327, 48.8760311 2.3700774, 48.8551090 2.3306870, 48.8530169 2.3313456, 48.8521220 2.3374608, 48.8724761 2.3240966, 48.8801220 2.3241052, 48.8694700 2.3034453, 48.8517830 2.3177917, 48.8802074 2.3638169, 48.8495519 2.2685978, 48.8402456 2.2655127, 48.8764826 2.2833917, 48.8449589 2.3493182, 48.8449041 2.3498515, 48.8507370 2.3741124, 48.8830873 2.3292402, 48.8468451 2.3046139, 48.8775262 2.2949459, 48.8437516 2.3150319, 48.8608995 2.3677192, 48.8633817 2.3689965, 48.8639261 2.3703310, 48.8644002 2.3730285, 48.8515963 2.3430149, 48.8351935 2.3203079, 48.8716176 2.3411379, 48.8809546 2.3510669, 48.8238612 2.3234793, 48.8403734 2.3690860, 48.8908275 2.3460063, 48.8851558 2.3360026, 48.8943730 2.3432450, 48.8726535 2.3631861, 48.8570910 2.3727607, 48.8410914 2.3489485, 48.8446979 2.3491285, 48.8644111 2.3256564, 48.8406254 2.3514242, 48.8684086 2.3268250, 48.8864168 2.3442029, 48.8615684 2.3783425, 48.8485015 2.3421189, 48.8334129 2.3092754, 48.8914883 2.3506742, 48.8742191 2.3339210, 48.8743601 2.3329097, 48.8336139 2.2900906, 48.8332825 2.2894710, 48.8680574 2.3417881, 48.8260954 2.3467344, 48.8974737 2.3312683, 48.8884483 2.3329205, 48.8480831 2.4040261, 48.8335658 2.2868046, 48.8685514 2.3683075, 48.8846868 2.3416679, 48.8501155 2.2920291, 48.8625297 2.3799298, 48.8514439 2.3380763, 48.8648559 2.3969632, 48.8654719 2.2892837, 48.8452414 2.3792066, 48.8732268 2.3624203, 48.8579931 2.4032941, 48.8494723 2.2914581, 48.8848153 2.3229754, 48.8412254 2.3738186, 48.8752221 2.3038262, 48.8515203 2.3696022, 48.8254502 2.3502147, 48.8264077 2.3428246, 48.8279313 2.3307106, 48.8675264 2.4005840, 48.8219312 2.3422877, 48.8216005 2.3337522, 48.8256612 2.3136542, 48.8409791 2.2776487, 48.8333911 2.2872190, 48.8426051 2.2779253, 48.8235152 2.3304799, 48.8250198 2.3200783, 48.8717135 2.3253034, 48.8288129 2.3816584, 48.8450981 2.4030570, 48.8469580 2.4075011, 48.8641592 2.3663881, 48.8199882 2.3571489, 48.8516756 2.3382308, 48.8576256 2.3683245, 48.8688148 2.3556948, 48.8744006 2.3588789, 48.8598506 2.3506084, 48.8761280 2.3384291, 48.8437191 2.2967019, 48.8528548 2.3460331, 48.8529227 2.3457849, 48.8526334 2.3445601, 48.8525154 2.3452198, 48.8526532 2.3453925, 48.8961469 2.3382720, 48.8378379 2.3473550, 48.8280793 2.3157863, 48.8910108 2.3616762, 48.8813094 2.2861348, 48.8845891 2.2945570, 48.8850188 2.2939952, 48.8816270 2.2921775, 48.8489944 2.3476761, 48.8875090 2.2976290, 48.8853110 2.2955510, 48.8468258 2.4090233, 48.8397572 2.3497147, 48.8445679 2.3496772, 48.8776900 2.2917270, 48.8604075 2.3556155, 48.8796560 2.2864960, 48.8804350 2.2856120, 48.8806940 2.2861620, 48.8805790 2.2866490, 48.8412345 2.3039106, 48.8879180 2.3067900, 48.8753410 2.2939710, 48.8310217 2.3759342, 48.8311417 2.3739163, 48.8394477 2.3924756, 48.8770440 2.2917940, 48.8653444 2.2836290, 48.8495553 2.3786800, 48.8500160 2.3788251, 48.8465400 2.3811858, 48.8503285 2.3781973, 48.8481689 2.3925595, 48.8469569 2.3847760, 48.8789083 2.3856186, 48.8816483 2.3644514, 48.8777223 2.3322319, 48.8409660 2.3058020, 48.8446976 2.3221192, 48.8466518 2.3051464, 48.8799610 2.3291770, 48.8439032 2.3546898, 48.8847791 2.3925318, 48.8754373 2.3874893, 48.8537312 2.3325450, 48.8842800 2.3047290, 48.8804060 2.3026459, 48.8325941 2.3183175, 48.8595048 2.3686879, 48.8684376 2.3706209, 48.8795140 2.2896410, 48.8425076 2.3118940, 48.8490626 2.3191414, 48.8501266 2.3186024, 48.8831840 2.2988520, 48.8615576 2.3705429, 48.8660288 2.3652774, 48.8623144 2.3663745, 48.8708703 2.3415985, 48.8578247 2.3662529, 48.8666855 2.3458176, 48.8659951 2.3472997, 48.8408375 2.3874300, 48.8311227 2.3287719 +50 +yes +1.6159361655341584 +48.8360490 2.3873173 +Geschwister-Scholl-Schule, Kurpfalzschule, Willy-Hellpach-Schule, Pestalozzi-Schule, Julius-Springer-Schule, Julius-Springer-Schule, Johannes-Kepler-Realschule, Mönchhof-Grundschule, Freie Christliche Schule, Friedrich-Ebert-Grundschule, Hölderlin-Gymnasium, Musik- und Singschule, Geschwister-Scholl Grund- und Hauptschule, aula Sprachen, Ballettschule Lack, Elisabeth von Thadden-Schule, Waldorfschule Heidelberg, Bunsen-Gymnasium, Neckarschule, Heidelberg College, St. Raphael-Schulen, Internationale Gesamtschule Heidelberg, Primarstufe, Stauffenberg-Schule, Englisches Institut Heidelberg, Schwesternhaus, St. Raphael-Realschule, Theodor-Heuss-Realschule, Landhausschule Heidelberg, Heiligenbergschule, Eichendorff-Grundschule, Helmholtz-Gymnasium, Technikzentrum, Carl-Bosch-Schule, Emmertsgrundschule, Lehr- und Versuchsanstalt für Gartenbau, Graf von Galen-Schule, Fröbelschule, Marie-Baum-Schule, Waldparkschule, Gregor-Mendel-Realschule, Käthe-Kollwitz-Förderschule, Wilckensschule, Kurfürst-Friedrich-Gymnasium, Städtische Kita Hüttenbühl, Internationale Gesamtschule Heidelberg, Tiefburgschule, Heiligenbergschule, Grundschule der Elisabeth-von-Thadden-Schule, Grundschule Schlierbach, Steinbachschule, Johannes-Gutenberg-Schule, Ecole Pierre & Marie Curie Heidelberg, Heidelberg International School +13 +48.8507596 2.3670235, 48.8446948 2.3803356, 48.8330778 2.3268974, 48.8413460 2.3002445, 48.8920793 2.3444293, 48.8600412 2.3413119, 48.8667351 2.3405908, 48.8561321 2.3560085, 48.8460037 2.3443315, 48.8638757 2.3617724, 48.8506119 2.3322896, 48.8718061 2.3577803, 48.8830027 2.3819053, 48.8587211 2.3792589, 48.8774812 2.3175782, 48.8724832 2.3412640, 48.8653099 2.3994450, 48.8845147 2.3220414, 48.8325517 2.3555391, 48.8636568 2.2764260, 48.8573407 2.3204463, 48.8408215 2.3882583, 48.8564265 2.3525270 +reservation@hotelfolkestoneopera.com, reservation@hotelsydneyopera.com, info@pershinghall.com, front.ronceray@guichard.fr, resa@avalonparis.com, reservation@plazaopera.com, mod@hlparis.com, chariotdor@wanadoo.fr, contact@cordelia-paris-hotel.com, hotel@jardindevilliers.com, monceau@leshotelsdeparis.com, hotelroyalsaintmichel@wanadoo.fr, info@hotelchopin.fr, contact@hotelparispaix.com, reservation@hotel-istria-paris.com, labourdonnais@inwood-hotels.com, hotel@fertelmaillot.com, hotelacademie@gmail.com, info@hoteldutriangledor.com, contact@hoteldevenise.fr, hotel-diana@wanadoo.fr, hoteldesenlis@wanadoo.fr, hotel.rotary@free.fr, H0934@accor.com +96.220773587726725 +Thoraxklinik, Orthopädische Klinik, Medizinische Psychologie, Psychosomatische Ambulanz, Psychiatrische Klinik, Klinik für Kinder- und Jugendpsychiatrie, Psychiatrische Ambulanz, Kurpfalzkrankenhaus, Klinik für Allgemeine Innere Medizin und Psychosomatik, Physiotherapie Kathrin Kittelmann, Blutspendezentrale Heidelberg IKTZ, Kinderklinik, HIT, Zentrum für Schmerztherapie und Palliativmedizin - Überregionales Schmerzzentrum Heidelberg-Mannheim, Nierenzentrum, Chirurgische Klinik, NCT Heidelberg, Krankenhaus St. Vincentius, Institut für Medizinische Psychologie, Klinik für Kinder- und Jugendpsychiatrie - Tageszentrum für Jugendliche, St. Elisabeth, St. Elisabeth, Kliniken Schmieder Heidelberg, Salem, ATOS Klinik, Unfallchirurgie - Atos, Institut für Psychosomatische Kooperationsforschung und Familientherapie, Tropenmedizinische Ambulanz, Krehl-Klinik, Hautklinik, Frauenklinik und Hautklinik, Frauenklinik, Gemeinschaftspraxis Wittmann, St. Josefskrankenhaus, Bethanien-Krankenhaus, Kopfklinik, Kinderklinik, Kinderklinik, Krehl-Klinik, Rehabilitationsklinik Heidelberg-Königstuhl +yes +yes +yes +Dears Pharmacy +98 +yes +1998, 1989 +yes +yes +Le mur des Canuts, Lyon et sa région, terre de l’humanisme, Lyon et sa région, terre de l’humanisme, Fresque de Gerland, Fresque "Mur Démo", Camionnette Disques Wem, Mur de la Cour des Loges, Fresque "La renaissance", La fresque des Lyonnais, La Bibliotheque de la Cité "des écrivains en Rhône-Alpes", Boulevard de la B.D., Boulevard de la B.D., Boulevard de la B.D., Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Mayoud Honda, Fresque "Oullins Centre-ville", Fresque "Du Pont d'Oullins", Mur peint, Fresque, Fresque "La Route de la Soie", La "Fresque Végétale Lumière", Fresque des Vourlois", Fresque du Gymnase, Tag 16m2, Fresque "Les basiliques de Saint-Just", Fresque "La cité KAPS" and 45.7858145 4.8075880, 45.7779285 4.8279690, 45.7698700 4.7879340, 45.7698985 4.7880655, 45.7245886 4.8263897, 45.7196057 4.8008161, 45.7756330 4.7951910, 45.7649855 4.8287925, 45.7165371 4.8098566, 45.7681064 4.8280574, 45.7659207 4.8312600, 45.7759090 4.8015510, 45.7760780 4.7952180, 45.7764025 4.7984375, 45.7617643 4.8152072, 45.7621030 4.8160960, 45.7618195 4.8162683, 45.8437735 4.7340205, 45.7150814 4.8078204, 45.7175164 4.8098900, 45.7690470 4.7998735, 45.5828000 4.6317350, 45.7083270 4.8272787, 45.7723084 4.8215466, 45.7696009 4.8272315, 45.6584498 4.7736478, 45.7081288 4.7481631, 45.7677299 4.8312641, 45.8764848 4.8346205, 45.7559238 4.8169452, 45.7179757 4.8174971, 45.7180962 4.8187223 +782 and 48.0843405 1.8516661, 48.0842975 1.8516532, 48.3634720 1.4444762, 48.3633107 1.4440969, 48.3090898 0.8101983, 48.4391987 1.4310492, 48.4438257 1.2435743, 48.4551854 1.5391428, 48.4550506 1.5390148, 48.2034817 1.3965458, 48.7450953 1.3465073, 48.7450288 1.3465364, 48.2041014 1.8493980, 48.2999243 1.2898661, 48.2856652 1.2503363, 48.2806148 1.2225198, 48.2800124 1.6183789, 48.0715557 1.3225880, 48.1293202 1.8532335, 48.2693592 1.1573085, 48.3892052 1.4934020, 48.3895541 1.4932054, 48.4271283 1.5158383, 48.4272198 1.5156725, 48.1637493 1.2648026, 48.3576867 1.4338803, 48.2544911 1.5705116, 48.0964603 1.8517115, 48.4156457 1.4892388, 48.4162429 1.5034164, 48.4143664 1.5057059, 48.1825735 1.3757520, 48.2632013 1.5930746, 48.3532908 1.4265631, 48.1806158 1.3747250, 48.0675193 1.2906117, 48.2069451 1.8485104, 48.4781262 1.4607501, 48.4535767 1.2953431, 48.7640966 1.3132549, 48.2832224 1.6280084, 48.4383314 1.5246435, 48.4468667 1.4788401, 48.3902446 1.7298333, 48.1105340 1.3319487, 48.4632188 1.4998341, 48.4659463 1.5066438, 48.3785954 1.4828822, 48.4161166 1.4771368, 48.0740104 1.3616631, 48.4568587 1.4826879, 48.2469000 1.5444200, 48.4513703 1.4448174, 48.2401186 1.5169750, 48.4492426 1.4904726, 48.2486754 1.1179446, 48.2331152 1.4901573, 48.3203704 0.8052871, 48.4458166 1.2350335, 48.4433598 1.2420607, 48.4391932 1.4309164, 48.4570303 1.4509779, 48.1904387 1.3353826, 48.3223013 1.8632060, 48.2543249 1.5705688, 48.2757180 1.6234395, 48.1775018 1.3793555, 48.2040697 1.8494049, 48.3348687 0.8176667, 48.1872713 1.3202539, 48.2168785 1.4325393, 48.1962959 1.0911905, 48.1794824 1.2987246, 48.2106265 1.1624752, 48.2084923 1.1591442, 48.3218713 1.6682497, 48.4731048 1.6040268, 48.4894113 1.5380927, 48.1963001 1.0981460, 48.1968889 1.0975920, 48.1947865 1.0689477, 48.1935748 1.0698455, 48.1871866 1.0458453, 48.1871223 1.0509226, 48.1900625 1.0581630, 48.2106023 1.1100587, 48.1995584 1.1160835, 48.2004834 1.1155760, 48.2010401 1.1152619, 48.2059666 1.1275207, 48.2078779 1.1355348, 48.2084109 1.1207323, 48.2103535 1.1013451, 48.2100796 1.1121090, 48.2096161 1.1402341, 48.2120405 1.1473697, 48.2121332 1.1532022, 48.2125462 1.1593680, 48.2098871 1.0867530, 48.2334847 1.0399341, 48.2333927 1.0401108, 48.2322909 1.0341270, 48.1862854 1.0086807, 48.1727366 0.9992126, 48.1724930 0.9979646, 48.1729260 1.0214302, 48.1842903 1.0479504, 48.1871074 1.0206582, 48.1868218 1.0387459, 48.2287753 1.4736893, 48.3294431 1.3825318, 48.5275940 1.0273486, 48.4645219 1.4828255, 48.4691914 1.5145482, 48.4615172 1.4943654, 48.4374840 1.4150964, 48.4520187 1.4458254, 48.4460522 1.4725078, 48.4465773 1.4671375, 48.4460603 1.4673988, 48.4439314 1.4657609, 48.4542788 1.4483370, 48.4614819 1.4553185, 48.4381387 1.4532784, 48.4424128 1.4516460, 48.2988415 1.8615469, 48.3288402 0.7988397, 48.3346487 0.8179752, 48.8598809 1.4038341, 48.4465792 1.5307528, 48.4521257 1.4838056, 48.4584810 1.4876866, 48.4330586 1.4924879, 48.1806344 1.3817390, 48.1833120 1.3838413, 48.4454252 1.4926736, 48.4469583 1.4918402, 48.4469302 1.4936845, 48.4469151 1.4933052, 48.4546304 1.4839991, 48.4624190 1.4819697, 48.4640214 1.4831040, 48.4631220 1.4841448, 48.4592278 1.4898047, 48.4588196 1.4907004, 48.4529511 1.4903462, 48.5498237 1.0300964, 48.1935903 1.3917793, 48.2257416 1.1758624, 48.1964900 1.3716225, 48.1931395 1.3528577, 48.1577871 1.2501317, 48.2082347 1.1898048, 48.2214721 1.4461878, 48.1943683 1.3608186, 48.2087707 1.1646492, 48.2731424 1.6079429, 48.4424555 1.4942771, 48.1720956 1.0168141, 48.1830829 0.9645850, 48.1859763 0.9810924, 48.1862491 0.9967439, 48.1823985 0.9559790, 48.1780392 1.8542274, 48.4393078 1.5002210, 48.4419654 1.4987456, 48.4436044 1.4961478, 48.3618146 1.1357971, 48.9173361 1.4926155, 48.7150723 1.3677673, 48.1903936 0.9341271, 48.1909690 0.9328489, 48.1718135 0.9804996, 48.1718313 0.9720534, 48.1722624 0.9651040, 48.1720555 0.9492426, 48.1735595 0.9562174, 48.2206300 0.9624339, 48.2093787 0.9308883, 48.1980415 1.8512274, 48.1895642 1.8532898, 48.1093173 1.3374097, 48.2318147 1.8488774, 48.7395328 1.3689272, 48.7418660 1.3757489, 48.8201457 1.3593555, 48.8612797 1.4229397, 48.4543906 1.4904051, 48.4537794 1.4911526, 48.4538725 1.4910121, 48.1807804 1.3891995, 48.1820987 1.3888362, 48.1798285 1.3871839, 48.1798161 1.3890830, 48.2136652 1.2309553, 48.2105588 1.2490264, 48.2153970 1.0554300, 48.2132553 1.0632878, 48.2176213 1.0391332, 48.2171034 1.0130321, 48.2308790 1.0204333, 48.2241358 0.9796079, 48.1961479 1.0898435, 48.2031035 0.8932700, 48.1672194 0.9358151, 48.3384590 1.8674987, 48.4281982 1.7642604, 48.4486735 1.7908682, 48.4508879 1.7860990, 48.2394174 1.0726545, 48.1851974 1.0426517, 48.7601426 1.5150503, 48.2095275 1.1638064, 48.2086614 1.1654995, 48.2087279 1.1647970, 48.4708045 1.4931683, 48.2057211 1.1797547, 48.2080503 1.1698283, 48.2086619 1.1660235, 48.4438562 1.4656888, 48.3983559 1.4872365, 48.4914849 1.5904823, 48.4934615 1.6778847, 48.5115889 1.7632885, 48.6004922 1.6755514, 48.4656778 1.5717267, 48.4866511 1.6594969, 48.7374396 1.4154121, 48.5682771 1.5933435, 48.7212106 1.4179156, 48.7019630 1.3445490, 48.7082444 1.4239005, 48.2802436 1.8585158, 48.2654306 1.8528604, 48.5620146 1.0299899, 48.1423995 1.9132167, 48.0792039 1.1332806, 48.0769466 1.1403842, 48.0760918 1.1413983, 48.0886169 1.1227140, 48.0887950 1.1232395, 48.0770609 1.1248878, 48.0690723 1.1303498, 48.0879298 1.1206693, 48.0878998 1.1207246, 48.0861427 1.1228627, 48.0861026 1.1228238, 48.0911631 1.1217791, 48.0969602 1.1259293, 48.0957659 1.1434943, 48.0810642 1.3318138, 48.0840192 1.3389711, 48.0359084 1.2736162, 48.0878308 1.3301961, 48.0739971 1.3213741, 48.0601380 1.3451955, 48.0865275 1.3528589, 48.0677895 1.2950501, 48.0954226 1.3365682, 48.4516192 1.4901383, 48.4499351 1.4902463, 48.4509817 1.4916513, 48.4482826 1.4911159, 48.4445900 1.4937793, 48.4438310 1.4959260, 48.4448610 1.4955440, 48.4500930 1.4913781, 48.4336756 1.4929244, 48.4585193 1.4909708, 48.4616415 1.4832882, 48.4607283 1.4839313, 48.4624299 1.4819197, 48.5071496 1.4635719, 48.4555452 1.7960234, 48.4539982 1.7981341, 48.4619596 1.8122235, 48.6307434 1.4126334, 48.2632102 1.7617362, 48.3573699 1.6104690, 48.2400520 1.0829658, 48.4290111 1.9028543, 48.1358374 0.9775138, 48.1363663 0.9815642, 48.7427023 1.5888652, 48.7727834 1.5546424, 48.7830689 1.5755487, 48.7829459 1.5755817, 48.1377511 0.9875665, 48.6744694 1.3835015, 48.7508848 1.4455038, 48.7507738 1.4455127, 48.7621381 1.4131696, 48.7540891 1.4568896, 48.4987577 1.6903064, 47.9906514 1.2545075, 47.9962698 1.2597897, 47.9861315 1.2470133, 48.2483407 1.8515642, 48.2485162 1.8513487, 48.2133566 1.8471773, 48.2400078 1.8507771, 48.8349270 1.3651623, 48.3617964 1.8792363, 48.4073062 1.8953031, 48.3532037 1.8740723, 48.4143368 1.8974174, 48.4451318 1.7437038, 48.3761868 1.7140004, 48.3288262 1.6733771, 48.3559260 1.6932028, 48.6433866 1.4033215, 48.7170492 1.3771616, 48.8436645 1.3810541, 48.7317495 1.3627510, 48.7347146 1.3628805, 48.4794759 1.4610359, 48.4795088 1.4608291, 47.9871247 1.2489563, 48.2006359 0.8817417, 48.3903413 1.7296169, 48.4383703 1.7739517, 48.4357387 1.7264684, 48.6044852 1.6764659, 48.6047343 1.6776367, 48.6056601 1.6786023, 48.6076342 1.6811250, 48.6094321 1.7073012, 48.7895005 1.5760710, 48.7368700 1.3836098, 48.8616552 1.4175168, 48.8658673 1.4291425, 48.8431789 1.3815951, 48.8627873 1.4400855, 48.7644535 1.3137446, 48.1436327 1.0479263, 48.1446398 1.0438524, 48.3784586 1.8879329, 48.5327602 1.4551824, 48.5964679 1.6344924, 48.2943438 1.2784344, 48.1238755 1.1830063, 48.1203418 1.1789078, 48.2646069 1.1464120, 48.4665860 0.9721291, 48.4680964 0.9833235, 48.4692749 0.9917513, 48.9178051 1.5163564, 48.7687669 1.4010983, 48.4432797 1.4586460, 48.4263803 1.4345241, 48.4263450 1.4343908, 48.2783751 1.2038212, 48.2785049 1.2038943, 48.2859335 1.2109996, 48.3028844 1.2394689, 48.3028596 1.2394869, 48.2330824 1.1841121, 48.3909110 1.2074193, 48.8165842 1.5626415, 48.8227708 1.5562821, 48.8230971 1.5568726, 48.5892604 1.5785545, 48.5860031 1.5774820, 48.1499364 1.3998178, 48.1511375 1.4008810, 48.1283145 1.1895873, 48.2687237 1.7554738, 48.2687963 1.7555788, 48.7607313 1.3283222, 48.1200348 1.5164207, 48.7571201 1.0593963, 48.7630168 1.2330016, 48.7619868 1.2307431, 48.7697041 1.1973535, 48.7594087 1.2197692, 48.7690072 1.1998653, 48.7633865 1.2243158, 48.7568745 1.4817572, 48.2758000 1.6233580, 48.2758830 1.6233161, 48.2757436 1.6234125, 48.2757673 1.6233850, 48.8413849 1.4922311, 48.7618946 1.1344644, 48.6035213 1.6962877, 48.6038889 1.6958545, 48.7492012 1.4084464, 48.7508203 1.4157200, 48.7492740 1.4083049, 48.7509154 1.4156900, 48.7459726 1.3960136, 48.7456448 1.3952102, 48.0758120 1.1250113, 48.0759294 1.1249783, 48.4420751 1.4989362, 48.4556997 1.4915385, 48.4706119 1.4894945, 48.5962086 1.6154260, 48.9189505 1.4642931, 48.5800278 1.5814336, 48.5883483 1.5791331, 48.5850681 1.5781057, 48.5817149 1.5806846, 48.5828744 1.5864487, 48.5846561 1.5791234, 48.5852779 1.5783029, 48.5857035 1.5781314, 48.5845146 1.5783536, 48.5785051 1.5814940, 48.5781910 1.5842706, 48.5855768 1.5840847, 48.5891156 1.5937111, 48.5796458 1.5936179, 48.5887061 1.5730446, 48.6303549 1.5123061, 48.4858586 1.5268474, 48.7387647 1.3344359, 48.5612943 1.5099262, 48.5562795 1.5088278, 48.5417197 1.4933979, 48.5629140 1.5082652, 48.5686432 1.5014794, 48.3402518 1.3474079, 48.3193902 1.3433670, 48.3144491 1.3216928, 48.3330130 1.3910728, 48.6458105 1.5425043, 48.6500512 1.5445534, 47.9960173 1.2330143, 48.0110352 1.2352850, 48.4783101 1.6303488, 48.4678695 1.5800519, 48.5098261 1.7453193, 48.3484299 1.6877878, 48.0663212 1.3379550, 48.0663284 1.3379163, 48.0866822 1.3250947, 48.1932315 0.8532599, 48.4860872 1.0589912, 48.4766655 1.1449504, 48.4516866 1.2313903, 48.4157788 1.4872052, 48.4156604 1.4871839, 48.4161089 1.4788356, 48.4159687 1.4788327, 48.4158166 1.4827704, 48.4159441 1.4828103, 48.4237280 1.4843067, 48.4350351 1.4850487, 48.3693543 1.2313848, 48.3777903 1.2321079, 48.4242698 1.2319935, 48.4264831 1.2401531, 48.4270678 1.2534320, 48.4292906 1.2736696, 48.4517014 1.4862557, 48.4495182 1.4936334, 48.4832358 1.0361872, 48.5042208 1.0253641, 48.4794856 1.0191569, 48.4791294 1.0197163, 48.4640670 1.1943546, 48.4654472 1.1961144, 48.4522688 1.4910912, 48.1385666 1.2067109, 48.2898283 1.2665462, 48.0755319 1.0697377, 48.4492264 1.2905124, 48.5081392 1.0206523, 48.4433783 1.2104106, 48.4798510 1.1597339, 48.4459606 1.2314837, 48.6762682 1.4636271, 48.6769680 1.4741718, 48.5153087 0.9895117, 48.4737212 1.1610821, 48.4918766 1.5327846, 48.6446760 0.9342008, 48.4478748 1.3303765, 48.6683749 1.4977366, 48.3115381 0.8206080, 48.3244094 0.8089485, 48.3168358 0.7971910, 48.3178707 0.7961281, 48.1027073 1.8514071, 48.7422926 1.3190808, 48.7422202 1.3192275, 48.1723267 1.2834454, 48.4436345 1.9087713, 48.3688085 1.4580360, 48.3734994 1.4701515, 48.4110738 1.7493703, 48.4458999 1.7865767, 48.5031177 1.6190068, 48.4997925 1.6114044, 48.5141816 1.6446348, 48.5962346 1.4239362, 48.1994847 1.3819149, 48.7512742 1.4156030, 48.7528348 1.4506420, 48.7467213 1.4173998, 48.7494643 1.4300620, 48.7517949 1.4184551, 48.7512294 1.4156355, 48.7517671 1.4184670, 48.7317079 1.4184431, 48.7335716 1.4179845, 48.7297375 1.3668655, 48.7297739 1.3668588, 48.7298138 1.3668454, 48.2692940 1.2680420, 48.2579330 1.2720985, 48.2687176 1.2673716, 48.2623531 1.2806883, 48.2789350 1.2539336, 48.2586986 1.2748530, 48.2743759 1.2567214, 48.2901657 1.3180781, 48.2761530 1.2744818, 48.7148629 1.4327769, 48.7279706 1.3889336, 48.7368287 1.3836394, 48.7367890 1.3836644, 48.7453826 1.3949182, 48.6353577 1.5607061, 48.7745640 1.3465635, 48.3148678 0.7992779, 48.5170758 0.9794413, 48.7676694 1.2452570, 48.7675029 1.2442214, 48.7666867 1.2454401, 48.7465105 1.3828935, 48.7465709 1.3830411, 48.7460069 1.3895928, 48.7156463 1.3528618, 48.7156000 1.3527496, 48.7426978 1.3459456, 48.7342605 1.3866265, 48.0942882 1.5129314, 48.1345344 0.9722245, 48.5922934 0.9086983, 48.3875106 1.1212244, 48.1923446 1.9394272, 48.1525637 1.5978859, 48.1208939 1.5450524, 48.1090935 1.4823789, 48.1099283 1.5068616, 48.1298953 1.5697194, 48.1156238 1.4399875, 48.1101000 1.4290050, 48.1497723 1.6558110, 48.1540567 1.6317286, 48.6547891 1.2565297, 48.6506087 1.2157617, 48.7029078 1.3434978, 48.6780679 1.3176014, 48.6347988 0.9888437, 48.6503313 1.0131508, 48.3470506 1.6269478, 48.4468210 1.4789483, 48.4661452 1.4851003, 48.4506123 1.4902125, 48.4438475 1.4944572, 48.4430415 1.4980146, 48.4437026 1.4969840, 48.4438425 1.4973813, 48.4431599 1.4974032, 48.4435666 1.4962377, 48.2846129 1.6271386, 48.2350735 1.4972417, 48.4301542 1.5048448, 48.4308430 1.5009460, 48.7378384 1.3688163, 48.7392265 1.3684309, 48.6078989 1.6842001, 48.6072486 1.6864655, 48.6079177 1.6841421, 48.6013821 1.7031632, 47.9830400 1.2822379, 47.9856150 1.3046469, 47.9778729 1.2582126, 47.9763162 1.3275978, 48.7605248 1.5700487, 48.7597408 1.5660632, 48.2078487 1.3291624, 48.1950572 1.3644793, 48.1920857 1.3709906, 48.2067039 1.2896780, 48.2069438 1.3077202, 48.2105979 1.2932806, 48.2071428 1.2858757, 48.2063321 1.2877849, 48.2835395 1.1526792, 48.4223116 1.2140030, 48.5056070 1.3493083, 48.4871113 1.0118267, 48.4939038 1.0189164, 48.4951571 1.0185534, 48.5259370 1.6932314, 48.5244027 1.6915195, 48.5241091 1.6857225, 48.5273462 1.6732396, 48.5240703 1.6856085, 48.4470362 1.4960230, 48.2835308 1.2394677, 48.6864403 1.0667075, 48.6951770 1.0795658, 48.7108230 1.0904478, 48.4364319 1.4796590, 48.4382006 1.4730734, 48.4356740 1.4825941, 48.4864109 1.7406431, 48.4899994 1.7323690, 48.4345946 1.4946684, 48.5211991 1.7449406, 48.5217091 1.7446465, 48.5218901 1.7482961, 48.5176104 1.7101297, 48.5179251 1.6992604, 48.4456719 1.4947115, 48.3288874 1.6516814, 48.4640366 1.4830712, 48.4519148 1.4837828, 48.4521306 1.4837572, 48.4521410 1.4836582, 48.5762793 1.5041534, 48.3855704 1.2336704, 48.3962604 1.2154725, 48.4975346 1.0581854, 48.6032959 1.6731815, 48.3861744 1.4775925, 48.7156819 0.8768385, 48.7744560 1.3466811, 48.7663261 1.1583551, 48.7613934 1.2297404, 48.4896866 1.5836171, 47.9764661 1.2539912, 47.9865523 1.2477317, 47.9967724 1.2406049, 48.4656554 0.9647699, 48.4644066 0.9558621, 48.4684584 0.9854847, 48.7628494 1.2379548, 48.3506384 0.8488761, 48.6705305 0.8481390, 48.6726304 0.8494744, 48.6826076 0.8796183, 48.6789010 0.8649456, 48.6816088 0.8754314, 48.5190320 1.6822693, 48.1973693 1.0909382, 48.6517761 1.5264590, 48.6486478 1.5432671, 48.6506818 1.5361150, 48.2845737 1.6271678, 48.2867483 1.6317388, 48.2867953 1.6317369, 48.4991412 1.0150051, 48.2844343 1.2444990, 48.2845456 1.2443652, 48.8482297 1.4642728, 48.1838759 1.9348874, 48.4335596 1.4928141, 48.5925868 1.5964286, 48.4681980 1.4830354, 48.4679911 1.4837896, 48.4452476 1.4839687, 48.4453889 1.4841059, 48.6065464 1.4208198, 48.4621636 1.4853747, 48.5023629 1.1954425, 48.4801501 1.1295117, 48.0273443 1.2560778, 48.4544846 1.2967169, 48.4569679 1.2921342, 48.6518352 1.2078313, 48.4791682 1.5045178, 48.4791482 1.5045576, 48.4165775 1.3554040, 48.1802252 1.3840426, 48.5202181 1.7651459, 48.2168699 1.3818879, 48.2923823 0.8237943, 48.5489066 1.4929922, 48.5452650 1.4735723, 48.5260206 1.4884351, 48.6979977 0.9481873, 48.2080683 1.4122761, 48.1435030 1.4020243, 48.1456024 1.2171474, 48.1073837 1.1664543, 48.1521740 1.2310816, 48.2057749 1.2041528, 48.3018738 1.0823795, 48.1302205 1.0827274, 48.7356230 1.3421397, 48.7344321 1.3446478, 48.7355864 1.3422558, 47.9923659 1.2324185, 48.1820644 1.3847079, 48.1827878 1.3874679, 48.1808744 1.3857293, 48.1831851 1.3862120, 48.1818889 1.3785094, 48.3918449 1.1738434, 48.3925420 1.1776216, 48.3922627 1.1758879, 48.3935885 1.1826232, 48.3033115 1.2413287, 48.3033413 1.2413118, 48.2996998 1.2392848, 48.2971299 1.2450944, 48.2969691 1.2433349, 48.2929930 1.2440721, 48.2508997 1.3145256, 48.2096402 1.3464606, 48.2089588 1.3462590, 48.3948106 1.2056395, 48.3228600 1.2242280, 48.3843620 1.2192812, 48.3967433 1.2191649, 48.3571979 1.2290984, 48.3459692 1.2343988, 48.3507879 1.2307415, 48.0581930 1.6146145, 48.3398197 1.1533005, 48.3426300 1.1767847, 48.3430034 1.1830786, 48.3162632 1.1975847, 48.3141275 1.2138854, 48.3111882 1.2177123, 48.3405978 1.1148765, 48.3190842 1.1455771, 48.3298151 1.1265662, 48.3159454 1.1490037, 48.3236823 1.1050243, 48.3234195 1.1077313, 48.3143590 1.1320817, 48.3077813 1.1464594, 48.2969161 1.0635728, 48.2949570 1.0980591, 48.2493747 1.3214720, 48.4453734 1.2417600, 48.4466196 1.2421721, 48.3274753 1.0502716, 48.3394223 1.0562486, 48.3260051 1.0650136, 48.3094305 1.0935407, 48.2975177 1.0961476, 48.2958931 1.0981971, 48.2852393 1.2102351, 48.2637294 1.0964816, 48.2629211 1.0989440, 48.2633169 1.1138636, 48.2531858 1.1912039, 48.2583755 1.2154481, 48.2283113 1.3639843, 48.2295675 1.3697276, 48.2316442 1.3657649, 48.2209826 1.3762353, 48.3323300 1.3288791, 48.4621308 1.1909610, 48.1963451 1.3821766, 48.7445525 1.0461831, 48.7317320 1.0190795, 48.7646261 1.1483258, 48.6481986 1.5304508, 48.6526936 1.5255837, 48.6538123 1.5210418, 48.6008347 1.6649601, 48.5995716 1.6763886, 48.6010618 1.6647018, 48.3271155 0.8171662, 48.0842385 1.3611118, 48.0943510 1.3474342, 48.0598249 1.3375592, 48.1103175 1.3384734, 48.1122911 1.3416004, 48.1071474 1.3360773, 48.1108405 1.3301120, 48.1785145 1.3862871, 48.5837204 1.4286469 +142889 +no +55.9482698 -3.1839334 +49.4183639 8.7570400 +yes +55.9456427 -3.1913637, 55.9330234 -3.2354551, 55.9257928 -3.2095594, 55.9687971 -3.1730857, 55.9801960 -3.1982556, 55.9605889 -3.1427782, 55.9788896 -3.2317323, 55.9588767 -3.2113228, 55.9614993 -3.3058797, 55.9334573 -3.1781344, 55.9057929 -3.2224600, 55.9360076 -3.2097027, 55.9654290 -3.1759121, 55.9460215 -3.2123225, 55.9466560 -3.2163830, 55.9448614 -3.2174899, 55.9424827 -3.2816610, 55.9713551 -3.2524770, 55.9504108 -3.2089957, 55.9505271 -3.1874272, 55.9529055 -3.1966423, 55.9530315 -3.1960873, 55.9399803 -3.2118878, 55.9398206 -3.2115635, 55.9422231 -3.2036959, 55.9427696 -3.2813759, 55.9600977 -3.2957282, 55.9592529 -3.2133182, 55.9453652 -3.1842234, 55.9268573 -3.2094072, 55.9807322 -3.1775607, 55.9591293 -3.1715337, 55.9592043 -3.1715261, 55.9575707 -3.2076016, 55.9262302 -3.1859988, 55.9148390 -3.1652277, 55.9376474 -3.1780108, 55.9414683 -3.1812245, 55.9331816 -3.2608758, 55.9415944 -3.1818222, 55.9416532 -3.1818741, 55.9484509 -3.1864893, 55.9603970 -3.2016509, 55.9325122 -3.1401027, 55.9641019 -3.1771391, 55.9414706 -3.2032792, 55.9174745 -3.1579689, 55.9542022 -3.2014648, 55.9626976 -3.1781014, 55.9699822 -3.1694976, 55.9330456 -3.2353604, 55.9714788 -3.1731260, 55.9298458 -3.2993946, 55.9655520 -3.2738904 +48.7755956 9.2787713 +Boulogne-Billancourt, Arcueil, Montmagny, Le Chesnay, Chatou, Gentilly, Palaiseau, Antony, Viroflay, Franconville, Garches, Clichy, Verrières-le-Buisson, Le Plessis-Robinson, Vélizy-Villacoublay, Saint-Leu-la-Forêt, Savigny-sur-Orge, Le Vésinet, Enghien-les-Bains, Nanterre, Épinay-sur-Seine, Morangis, Deuil-la-Barre, Montesson, Bois-Colombes, La Garenne-Colombes, Montmorency, Châtillon, Sannois, Neuilly-sur-Seine, Meudon, Bourg-la-Reine, La Celle-Saint-Cloud, Malakoff, Massy, Houilles, Courbevoie, Gennevilliers, Sceaux, Suresnes, Montigny-lès-Cormeilles, L'Haÿ-les-Roses, Chaville, Saint-Gratien, Argenteuil, Sartrouville, Cormeilles-en-Parisis, Issy-les-Moulineaux, Longjumeau, Rueil-Malmaison, Fresnes, Saint-Cloud, Châtenay-Malabry, Domont, Soisy-sous-Montmorency, Marly-le-Roi, Ermont, Cachan, Bezons, Carrières-sur-Seine, Fontenay-aux-Roses, Villetaneuse, Vanves, Versailles, Maisons-Laffitte, Ville-d'Avray, Bagneux, Levallois-Perret, Chilly-Mazarin, Eaubonne, Montrouge, Colombes, Sèvres, Villeneuve-la-Garenne, Villebon-sur-Yvette, Paris, Paris, Paris, Paris, Paris, Cynthiana, Saint-Germain-en-Laye, Le Pecq, Asnières-sur-Seine, Puteaux, Saint-Ouen, Clamart, Denning, Subiaco, Morrison Bluff, Caulksville, Blue Mountain, Detroit, Universal, Goss, Henry, Cottage Grove, Big Sandy +yes +yes +yes +49.4091649 8.6726851, 49.4073921 8.6825502 +Königstuhl, Heidenknörzel, Kammerstein, Lammerskopf, Gaisberg, Michaelsberg, Heiligenberg, Auerhahnenkopf, Apfelskopf, Dossenheimer Kopf, Ameisenbuckel, Karlslust +48.8867960 2.3430272 +48.8550035 2.3609057 and 48.8522577 2.3568176 +29 and 6 +49.4171401 8.7614553, 49.4094471 8.6926160, 49.4124142 8.7039688, 49.3850068 8.7105357, 49.4189919 8.6724909, 49.4163242 8.6709589, 49.4184386 8.6731024, 49.4168333 8.6710769, 49.4176281 8.6686596, 49.4160594 8.6702239, 49.4179870 8.6685214, 49.4190025 8.6711938, 49.4190342 8.6719873, 49.4095987 8.7061446, 49.3982405 8.6891686, 49.4154939 8.6674299, 49.4182906 8.7276732, 49.3984918 8.6889404, 49.4226030 8.6895511, 49.4244226 8.6879745, 49.4185216 8.6704497, 49.4197235 8.6766060, 49.4181936 8.6739962, 49.4224691 8.6894885, 49.4347006 8.6819337, 49.4225331 8.6895176, 49.4223934 8.6894683, 49.4275117 8.6831905, 49.4196417 8.6694271, 49.4189698 8.6760286, 49.4222653 8.6894258, 49.4249703 8.6863835, 49.4219203 8.6893430, 49.4221212 8.6893922, 49.4177747 8.6690561, 49.4163577 8.6686492, 49.4174980 8.6687653, 49.4179060 8.6686309, 49.4180660 8.6682820, 49.4157661 8.6686751, 49.4174626 8.6687152, 49.4150725 8.6664167, 49.4139804 8.6668520, 49.4136878 8.6671227, 49.4155211 8.6676755, 49.4136571 8.6671084, 49.4155891 8.6676755, 49.4146634 8.6664310, 49.4140866 8.6673605, 49.4128509 8.6667672, 49.4130842 8.6668825, 49.4128068 8.6670431, 49.4157404 8.6712736, 49.4131056 8.6680418, 49.4126825 8.6678074, 49.4173371 8.6738318, 49.4170607 8.6768911, 49.4126952 8.6699440, 49.4134424 8.6679610, 49.4165443 8.6709680, 49.4134657 8.6678164, 49.4169024 8.6778674, 49.4171297 8.6738951, 49.4145377 8.6712997, 49.4142973 8.6712224, 49.4162063 8.6713780, 49.4171308 8.6741457, 49.4126713 8.6675754, 49.4146104 8.6715231, 49.4129993 8.6676842, 49.4125591 8.6685224, 49.4038678 8.6826012, 49.4080959 8.6940082, 49.4132083 8.7150483, 49.4098495 8.7063675, 49.4092833 8.6937547, 49.4136521 8.7166234, 49.4086730 8.6937919, 49.4147825 8.7194810, 49.4146757 8.7188519, 49.4099904 8.6934756, 49.4137247 8.7168421, 49.4114575 8.7112332, 49.4117561 8.7110802, 49.4130935 8.7055063, 49.4085662 8.6938769, 49.4082925 8.6939399, 49.4049071 8.6846843, 49.4050950 8.6832018, 49.4046753 8.6751003, 49.4049813 8.6825344, 49.4047830 8.6748233, 49.4079701 8.6806978, 49.4081724 8.6765377, 49.3800680 8.6869647, 49.3803092 8.6877522, 49.3800398 8.6875371, 49.4133013 8.6913417, 49.3991167 8.6880237, 49.4003093 8.6865238, 49.3994136 8.6901411, 49.4125736 8.6667755, 49.4156475 8.7425316, 49.3942172 8.6898680, 49.4001704 8.6873707, 49.4008461 8.6862974, 49.4015034 8.6855723, 49.4018481 8.6853596, 49.4140326 8.6921865, 49.4147881 8.6920796, 49.4161519 8.6920141, 49.4164194 8.6920050, 49.3736369 8.6882014, 49.3771070 8.6871386, 49.3805777 8.6884357, 49.3956314 8.6891619, 49.4064459 8.6893600, 49.4076652 8.6925139, 49.4146958 8.6922296, 49.4126385 8.6691299, 49.4175773 8.6740734, 49.4106683 8.6974887, 49.4111306 8.6979715, 49.4127554 8.6742068, 49.4187340 8.6766656, 49.4113889 8.7076937, 49.4105563 8.7059593, 49.4101441 8.7052242, 49.4112034 8.7047612, 49.4089283 8.6982133, 49.4089648 8.6986876, 49.4093783 8.7008163, 49.4094359 8.7023071, 49.4089641 8.6955780, 49.4093310 8.6934805, 49.4096811 8.6934485, 49.4107724 8.7039613, 49.4097754 8.7076634, 49.4100334 8.7081249, 49.4094319 8.6910307, 49.4095376 8.6908723, 49.4096347 8.6903912, 49.4098329 8.6894963, 49.4098809 8.6909403, 49.4099807 8.6890051, 49.4101452 8.6899150, 49.4102122 8.6904965, 49.4103847 8.6887271, 49.4105137 8.6896038, 49.4105215 8.6905059, 49.4106282 8.6901065, 49.4126702 8.6805338, 49.4159805 8.6920165, 49.4164705 8.6920883, 49.4172314 8.6911451, 49.4173345 8.6841594, 49.4090210 8.6862339, 49.4091822 8.6858735, 49.4095605 8.6872645, 49.4088652 8.6800974, 49.4098279 8.6817194, 49.4083809 8.6789361, 49.4056745 8.6881477, 49.4061925 8.6915180, 49.4063357 8.6898884, 49.4072240 8.6872972, 49.4075178 8.6824857, 49.4075631 8.6890160, 49.4079188 8.6902159, 49.4088250 8.6844653, 49.4092552 8.6744026, 49.4111078 8.7122962, 49.4039935 8.7273740, 49.3976409 8.6521041, 49.4229888 8.6430964, 49.4187340 8.6766656, 49.4032317 8.6471408, 49.4027493 8.6441103, 49.4121441 8.6411840, 49.4121197 8.6413318, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349, 49.4151012 8.6731211, 49.4158568 8.6728207, 49.4035624 8.6765204, 49.4279707 8.6838908, 49.4111900 8.7704641, 49.4101378 8.7039303, 49.4161640 8.6686617, 49.4138118 8.6719647, 49.4108048 8.6946155, 49.4157085 8.7420436, 49.4161193 8.6695151, 49.4059837 8.6870296, 49.4014465 8.6714876, 49.4016021 8.6707184, 49.4017318 8.6700873, 49.4019718 8.6690844, 49.4201274 8.6592504, 49.4194061 8.6615040, 49.4175471 8.6615820, 49.4133488 8.6736185, 49.4149163 8.6654747, 49.3787958 8.6752564, 49.3787513 8.6752582, 49.4168939 8.6715527, 49.4182453 8.6691484, 49.4083411 8.6839428, 49.4045486 8.6762865, 49.4176645 8.6590769, 49.4150320 8.7620828, 49.3892845 8.6883551, 49.4176061 8.6615500, 49.4159754 8.6729830, 49.4158552 8.6727509, 49.4032152 8.6746268, 49.4071473 8.6720042, 49.3999783 8.6914430, 49.3659380 8.6888680, 49.4019576 8.6811178, 49.4019323 8.6807736, 49.4019771 8.6810189, 49.4019064 8.6809317, 49.4045857 8.6750253, 49.3870086 8.6664502, 49.4209713 8.6746499, 49.4061766 8.6754688, 49.4103125 8.7748332, 49.4235022 8.6459331, 49.4048709 8.6753023 +0 +4.0706060818091068 +49.4116697 8.9271085, 49.3779472 8.6930196, 49.3791086 8.6917106, 49.3738873 8.6885987, 49.4091892 8.6985480, 49.2941943 8.6972230, 49.2959309 8.7014509, 49.3883245 9.0081746, 49.3761590 8.5674826, 49.3191887 8.5595067, 49.2919399 8.7027015, 49.3726645 8.5718770, 49.3785813 8.5766583, 49.4109553 8.9356774, 49.3417457 8.6549932, 49.3761026 8.8885302, 49.3378610 8.6613039, 49.3481526 8.6539714, 49.3445704 8.6640475, 49.3839393 8.5721238, 49.3265417 8.5563625, 49.3191315 8.5470156, 49.3147158 8.5519038, 49.4295856 8.6906085, 49.4242374 8.6490409, 49.4347876 8.6782371, 49.4426103 8.6658751, 49.3138326 8.5606145, 49.3884820 8.8036758, 49.3927830 8.5980107, 49.3923799 8.5946401, 49.3868016 8.8070952, 49.4046422 8.6758721, 49.4188030 8.6627721, 49.4215394 8.6751324, 49.3948331 8.7964522, 49.4230903 8.6848004, 49.4423017 8.5790531, 49.4300762 8.6800795, 49.3864018 8.8001781, 49.4722315 8.4693491, 49.4378301 8.7519879, 49.3945090 8.6898249, 49.4178001 8.7608053, 49.4036423 8.6351457, 49.4303419 8.6447639, 49.4199824 8.6516327, 49.3597431 8.8120515, 49.4641062 8.6650466, 49.4280459 8.7495006, 49.4333074 8.7472561, 49.4280490 8.7464328, 49.4220544 8.7604986, 49.3359654 8.7908694, 49.4160940 8.7161473, 49.3872630 8.7975398, 49.4471459 8.6743543, 49.4428444 8.6214405, 49.4707059 8.6520153, 49.4039244 8.6201112, 49.3976600 8.6462271, 49.3835628 8.6905633, 49.4016060 8.6295678, 49.3993345 8.6272386, 49.3931195 8.6279937, 49.4751871 8.6837099, 49.3957980 8.8231207, 49.4102743 8.6522076, 49.3186598 8.5512647, 49.3973451 8.7978476, 49.4536423 8.6751502, 49.4519728 8.6778784, 49.4065263 8.6402454, 49.4077957 8.6403731, 49.4132108 8.7429246, 49.3950783 8.6433081, 49.3774319 8.6987045, 49.4536254 8.3815384, 49.4056159 8.6307388, 49.3973715 8.6486924, 49.4024942 8.6473792, 49.4229184 8.6449762, 49.4085533 8.6680811, 49.4077532 8.6729299, 49.4083422 8.6884456, 49.4096328 8.6933428, 49.4001133 8.6852761, 49.4444884 8.6271478, 49.3785544 8.6593079, 49.2999064 8.5654315, 49.2905479 8.5632348, 49.3263000 8.5468316, 49.3594020 8.8046809, 49.3605252 8.8038440, 49.3166684 8.5493592, 49.3182722 8.5439702, 49.4714810 8.6083963, 49.3574669 8.7787048, 49.3930158 8.7827624, 49.3084609 8.6351584, 49.3811510 8.8033879, 49.3914947 8.7854488, 49.2950357 8.5641504, 49.3225437 8.5335892, 49.3736487 8.5775117, 49.3896002 8.5660555, 49.4021057 8.8481051, 49.2961664 8.5700349, 49.4118979 8.8312113, 49.4038331 8.8435805, 49.4062892 8.8436208, 49.4144602 8.7186269, 49.4152010 8.7617225, 49.3946293 8.7926321, 49.3933559 8.7992739, 49.3841017 8.8059323, 49.4113731 8.7119281, 49.3640254 8.7056751, 49.4105298 8.6976589, 49.3045372 8.6466441, 49.3687498 8.5800586, 49.3726561 8.5798363, 49.4002513 8.6905301, 49.3575085 8.6891721, 49.4426247 8.8954326, 49.4460345 8.8970944, 49.4079380 8.6845118, 49.4079623 8.6804555, 49.4016967 8.6842645, 49.4149595 8.6974870, 49.4152930 8.6919888, 49.3753209 8.5842061, 49.2956896 8.5694190, 49.4141843 8.7705509, 49.4435052 8.6332139, 49.4287124 8.6962608, 49.4701324 8.7543477, 49.4371781 8.8098188, 49.3177272 8.7571254, 49.4175155 8.6749548, 49.4280288 8.6874096, 49.4226519 8.6906789, 49.4237741 8.3796665, 49.4243637 8.3901006, 49.4198160 8.3955221, 49.3291477 8.5397666, 49.3413286 8.6690896, 49.4654862 8.5630507, 49.4503171 8.5233143, 49.4309897 8.4978410, 49.4282986 8.4891901, 49.4313129 8.4959077, 49.3504070 8.6321551, 49.4541025 8.5375578, 49.3978519 8.5349890, 49.4036804 8.5358143, 49.4014645 8.7791091, 49.4706173 8.4699685, 49.3960032 8.5914393, 49.4210265 8.4208975, 49.4213716 8.4206943, 49.3796214 8.6698422, 49.3021886 8.6429316, 49.4642584 8.4844414, 49.4631679 8.4950194, 49.4622735 8.4845749, 49.3750123 8.4535196, 49.4708285 8.6603546, 49.3904944 8.6883092, 49.3915993 8.6903930, 49.3739972 8.7036051, 49.4680044 8.4830290, 49.4542685 8.4945230, 49.2944361 8.6843096, 49.4636413 8.4884577, 49.4531341 8.7233872, 49.4743659 8.4653835, 49.4471734 8.5061272, 49.3937049 8.5661427, 49.3099035 8.5447741, 49.4213023 8.6891575, 49.4621470 8.4065063, 49.3766430 8.7660668, 49.3724852 8.7711188, 49.4309258 8.4206618, 49.4409798 8.4175989, 49.4437479 8.4140917, 49.3947439 8.7943731, 49.3038290 8.6957242, 49.2995474 8.7000158, 49.4205029 8.6846704, 49.4174372 8.6854637, 49.4399326 8.4449762, 49.4425602 8.4277767, 49.4693839 8.4558664, 49.4268458 8.4233321, 49.4454678 8.4182004, 49.4717141 8.6047118, 49.4131348 8.5458560, 49.4245561 8.6872574, 49.4186207 8.6905302, 49.4659574 8.7606949, 49.4129911 8.6528439, 49.4554171 8.3842872, 49.4723798 8.4402139, 49.4666324 8.7723805, 49.4331943 8.5277059, 49.4308480 8.5291667, 49.4565194 8.8077226, 49.3386748 8.5339113, 49.4038073 8.6922073, 49.4719917 8.7590827, 49.4737806 8.7562742, 49.4609471 8.7703480, 49.4205644 8.3883875, 49.3197938 8.8658341, 49.2984869 8.8269633, 49.2966768 8.8256330, 49.3219820 8.8193599, 49.3871024 8.8383024, 49.3935723 8.8416570, 49.3383714 8.7389507, 49.3413963 8.7549260, 49.3873851 8.7356455, 49.3414114 8.6467625, 49.3234400 8.6954224, 49.3189808 8.8881137, 49.3159750 8.8865005, 49.3201069 8.8909232, 49.4601440 8.9882590, 49.3993575 8.5843395, 49.4546515 8.4766580, 49.3613242 8.7824149, 49.3945103 8.9294461, 49.4066139 8.5537714, 49.3128737 8.5545772, 49.4622543 8.9867661, 49.4658163 8.9915752, 49.4646725 8.9846014, 49.4352605 8.8040578, 49.3994611 8.8459544, 49.4052607 8.6659933, 49.4055766 8.6654953, 49.3204781 8.5682552, 49.3375623 8.9113070, 49.3394809 8.9087893, 49.3714420 8.5346515, 49.3784076 8.5391735, 49.4560487 8.3748093, 49.3173043 8.5376593, 49.3116456 8.5379711, 49.2921862 8.6910743, 49.4506689 8.9797021, 49.4558022 8.9786024, 49.3712535 8.5910730, 49.4416867 8.6147618, 49.4404471 8.5201007, 49.4376888 8.5274582, 49.4252292 8.4170772, 49.3482256 8.5307489, 49.4070710 8.4073373, 49.4541296 8.4822180, 49.4307088 8.6826152, 49.3260347 8.6879653, 49.3234377 8.6867731, 49.4157065 8.7287628, 49.3033175 8.7047451, 49.3661785 8.7507929, 49.3982142 8.4388742, 49.4487633 8.6041107, 49.3787048 8.6764500, 49.4543736 8.6291869, 49.4475131 8.4261958, 49.4481810 8.4188422, 49.4619449 8.7690156, 49.3970452 8.6830144, 49.4260082 8.9560462, 49.4671705 8.5629531, 49.4736174 8.9865378, 49.3507170 8.6892282, 49.4226763 8.4281591, 49.3452242 8.6743498, 49.4445636 8.5816251, 49.4459377 8.5730972, 49.4639703 8.5662392, 49.4755522 8.5060354, 49.4136791 8.7136022, 49.3684471 8.7452563, 49.4509911 8.6718847, 49.4687302 8.5596994, 49.4668508 8.5541279, 49.4720637 8.5678457, 49.3935169 8.4374510, 49.2817542 8.7809947, 49.4535628 8.4905741, 49.4564320 8.4890877, 49.4543568 8.4824181, 49.4469008 8.8982283, 49.4741811 8.4824969, 49.3925682 9.0026920, 49.4648656 8.5102909, 49.4620122 8.4741993, 49.4574234 8.4851237, 49.4593083 8.4706277, 49.4460279 8.5227546, 49.4428953 8.5184434, 49.4554270 8.5697767, 49.3520218 8.7810118, 49.4603642 8.5698463, 49.4650782 8.4660830, 49.3804529 8.6874252, 49.4054299 8.6767260, 49.4054501 8.6767490, 49.4423442 8.5141178, 49.3390847 8.6564963, 49.3610799 8.5359529, 49.4740411 8.6173826, 49.4279082 8.6839585, 49.3929187 8.5615782, 49.4127839 8.6732119, 49.4182810 8.6660747, 49.4167698 8.6778109, 49.2913518 8.6644581, 49.4140135 8.6829496, 49.3734559 8.6824541, 49.3734280 8.6804585, 49.3745737 8.6766391, 49.4133863 8.7084302, 49.3795300 8.6822909, 49.3843561 8.6673425, 49.4156948 8.6877018, 49.4186333 8.6903397, 49.3816846 8.6868958, 49.4089964 8.7017641, 49.4102662 8.7019427, 49.4112926 8.7027584, 49.3778358 8.6889772, 49.4085432 8.6937616, 49.4085582 8.6937574, 49.4096346 8.6933512, 49.4026410 8.6888163, 49.4047864 8.6845518, 49.4044472 8.6883811, 49.4062695 8.6913666, 49.4062653 8.6913679, 49.4085166 8.6926281, 49.4015292 8.6757972, 49.4751215 8.4447538, 49.4753090 8.4439781, 49.4723115 8.4446306, 49.4316305 8.5715242, 49.3519718 8.8684674, 49.4722987 8.4498631, 49.4694596 8.4459163, 49.4684341 8.4346313, 49.4655353 8.4193218, 49.4113476 8.7118706, 49.4119316 8.6969837, 49.4717681 8.4043309, 49.3994162 8.6880161, 49.3827614 8.6820305, 49.3687133 8.5309255, 49.4512831 8.5851445, 49.4415950 8.5774993, 49.4484967 8.8940967, 49.4179179 8.5341440, 49.3511417 8.7028368, 49.4191927 8.5147809, 49.4273374 8.5318674, 49.4186575 8.5259343, 49.4630647 8.9967854, 49.4120750 8.5220648, 49.4088197 8.5218682, 49.4062567 8.5209778, 49.3855700 8.5712429, 49.3305410 8.6722973, 49.3845397 8.5737947, 49.3841541 8.5774672, 49.4675791 8.6133121, 49.4721189 8.5496779, 49.4642559 8.5572445, 49.3930705 8.9242735, 49.4693227 8.4691927, 49.4183221 8.7563527, 49.4744092 8.4860415, 49.4548446 8.4036445, 49.3967764 8.5349193, 49.3947340 8.5341881, 49.4441798 8.5316600, 49.4498003 8.4787972, 49.4316207 8.5715985, 49.4015439 8.5564859, 49.4156725 8.7421792, 49.4641295 8.6024278, 49.3452536 8.6991775, 49.3975439 8.8370531, 49.3568753 8.4479584, 49.4180049 8.4304703, 49.3793989 8.8384026, 49.3882338 8.8576904, 49.3501718 8.7751677, 49.4146742 8.8811104, 49.3639583 8.7048484, 49.3923418 8.5869300, 49.3897621 8.5866301, 49.3900106 8.5951082, 49.4703095 8.6676207, 49.3454195 8.6833029, 49.2805051 8.6730134, 49.4417734 8.4209918, 49.4438650 8.6097575, 49.4635895 8.9900415, 49.4644476 8.9848049, 49.4652335 8.9747254, 49.4689588 8.9843908, 49.4701629 8.9950777, 49.4049630 8.8411931, 49.4180547 8.8517835, 49.4136635 8.7632703, 49.3840294 8.5818336, 49.3869098 8.5828680, 49.4006673 8.6308209, 49.3945750 8.7947057, 49.4223460 8.7539976, 49.3651468 8.6848614, 49.3748990 8.6769370, 49.3638609 8.8379309, 49.3230182 8.8180605, 49.3406676 8.7984974, 49.4173960 8.7485433, 49.4533307 8.3761199, 49.4616961 8.4823765, 49.4542475 8.4825095, 49.4609738 8.5695179, 49.3794228 8.6676503, 49.4646409 8.4719323, 49.4464192 8.6113850, 49.4453340 8.5709402, 49.3751050 8.5886594, 49.4459998 8.6035076, 49.3442868 8.6897159, 49.3470840 8.6884135, 49.3425441 8.6599382, 49.4750609 8.6692928, 49.3205042 8.6940169, 49.3111150 8.6481530, 49.3539619 8.7231541, 49.4491677 8.4946723, 49.4100342 8.7062078 +no +Fun Forest, Lehrpfad - Infotafel, Lehrpfad - Infotafel, Abenteuerwald, Barfußpfad, Modelleisenbahn, Freizeitzentrum Heidesee Forst, Husky Ranch, Hundeakademie Kimbaland, Minigolfplatz Berghausen, Oranienpark, Minigolfplatz, Roseninsel, Kurpark, Schlosspark, Nachtigallenweg, Freizeitgelände Kuhberg, Klettergarten, Arboretum, Kraichgau Märchenwald, ESV Großbahn, Ravensburger Spielewelt, Kahler Vita-Parcours, Übung 05, Kahler Vita-Parcours, Übung 06, Kahler Vita-Parcours, Übung 07, Kahler Vita-Parcours, Übung 08, Kahler Vita-Parcours, Übung 09, Kahler Vita-Parcours, Übung 10, Kahler Vita-Parcours, Übung 01, Kahler Vita-Parcours, Übung 02, Kahler Vita-Parcours, Übung 03, Kahler Vita-Parcours, Übung 03, Kahler Vita-Parcours, Übung 04, Geburtsbäume, Wetterpark, Tripsdrill, Eisenbahn-Freunde Bad-Schönborn e.V., Holiday-Park, Didiland, Wiesen-Weg (Glücksweg), Sommerrodelbahn, Sensapolis, Kurpfalzpark, Croco Island, Klabauterland, Waldklettergarten Stuttgart-Zuffenhausen, JumpInn, Buntsandstein Erlebnis: "Hören", Waldkletterpark Weinsberg, Bibelgarten, Tiggolino Spielparadies, Sensadrom, Märchenparadies Königstuhl +RATP +yes +55.9456427 -3.1913637, 55.9330234 -3.2354551, 55.9257928 -3.2095594, 55.9687971 -3.1730857, 55.9801960 -3.1982556, 55.9605889 -3.1427782, 55.9788896 -3.2317323, 55.9588767 -3.2113228, 55.9614993 -3.3058797, 55.9334573 -3.1781344, 55.9057929 -3.2224600, 55.9360076 -3.2097027, 55.9654290 -3.1759121, 55.9460215 -3.2123225, 55.9466560 -3.2163830, 55.9448614 -3.2174899, 55.9424827 -3.2816610, 55.9713551 -3.2524770, 55.9504108 -3.2089957, 55.9505271 -3.1874272, 55.9529055 -3.1966423, 55.9530315 -3.1960873, 55.9399803 -3.2118878, 55.9398206 -3.2115635, 55.9422231 -3.2036959, 55.9427696 -3.2813759, 55.9600977 -3.2957282, 55.9592529 -3.2133182, 55.9453652 -3.1842234, 55.9268573 -3.2094072, 55.9807322 -3.1775607, 55.9591293 -3.1715337, 55.9592043 -3.1715261, 55.9575707 -3.2076016, 55.9262302 -3.1859988, 55.9148390 -3.1652277, 55.9376474 -3.1780108, 55.9414683 -3.1812245, 55.9331816 -3.2608758, 55.9415944 -3.1818222, 55.9416532 -3.1818741, 55.9484509 -3.1864893, 55.9603970 -3.2016509, 55.9325122 -3.1401027, 55.9641019 -3.1771391, 55.9414706 -3.2032792, 55.9174745 -3.1579689, 55.9542022 -3.2014648, 55.9626976 -3.1781014, 55.9699822 -3.1694976, 55.9330456 -3.2353604, 55.9714788 -3.1731260, 55.9298458 -3.2993946, 55.9655520 -3.2738904 and 55.9424798 -3.2815897, 55.9360885 -3.2791322, 55.9462332 -3.1856460, 55.9333118 -3.1780220, 55.9360951 -3.2094688, 55.9590449 -3.2133693, 55.9586606 -3.1898701, 55.9447381 -3.2502675, 55.8973064 -3.3042792, 55.9373697 -3.2349222, 55.9700633 -3.1697434, 55.9425272 -3.1823052, 55.9513417 -3.1082720, 55.9587362 -3.2229689, 55.9409843 -3.2032930, 55.9626831 -3.1778163 +0130797930 and velib.paris.fr, 0130797930 and velib.paris.fr, www.Velib.fr, www.parisbiketour.net, http://en.velib.paris.fr/Stations-in-Paris/Find-a-station +no +Regard de la Roquette +yes +408 +5 +quarry, recreation ground, allotments, construction, retail, cemetery, commercial, reservoir, industrial, residential, brownfield, farm, grass, sports centre, meadow, farmyard, forest, military, landfill, railway, field, farmland, allotment (disused), basin, paved area, common, cage, graveyard, orchard, garages, community food growing, road, garden, leisure, nursery bed, chicken run, water cistern, tree nursery, harbour, village green +Lian Pu, Cosmo +yes +47 +Königreichssaal, St. Laurentius, Versöhnungsgemeinde, Kapelle, Kapelle, Yavuz Sultan Selim Camii, Kirche am Markt, Angehörigen Kapelle, Erlöserkirche, Freie evangelische Gemeinde, Buddhistisches Zentrum, Christliche Baptistengemeinde, Evangelische Friedenskirche, Synagoge, Kapelle, Peterskirche, Heiliggeistkirche, St. Michael, St. Vitus, St. Albert, Sankt Paul, St. Raphael, Neuapostolische Kirche, Jakobuskirche, Johanneskirche, Adventgemeinde Heidelberg, Markushaus, St. Bonifatius, Evangelisches Gemeindezentrum, Hoffnungskirche, St. Johannes, Jesuitenkirche, Providenzkirche, Lutherkirche, Chapel, Neuapostolische Kirche, St. Bartholomäus, Kreuzkirche, Christuskirche, Alte Kirche - St. Bartholomäus, Bergkirche, Gutleuthofkapelle, Emmaus-Gemeinde, Lukaskirche, Sankt Anna, Evangelische Studierendengemeinde (Karl-Jaspers-Haus), Die ARCHE - Evangelische Wichern-Gemeinde, St. Thomas, Abteikirche Stift Neuburg, St. Laurentius, St. Teresa Kirche, Melanchthonkirche, St. Marien, St. Johann der Täufer, St. Laurentius, Sankt Peter, Peterskirche, St. Peter, Kirche Jesu Christi +0 +55.9456490 -3.2342957, 55.9365604 -3.2082863, 55.9511444 -3.2100787, 55.9554154 -3.1888958, 55.9588600 -3.2111164, 55.9453976 -3.2049974, 55.9650478 -3.2741085, 55.9450756 -3.1838725, 55.9279029 -3.2091805, 55.9272762 -3.1643514, 55.9519134 -3.2015815 +San Diego, Marikina, Paris, San Francisco, Grayling, Prudenville, Aachen, Neuss, Anchorage, Allestree, , Atlanta, Corona, Sindlesham, Wokingham, Ciudad de Panama, Öhningen, Beilngries, Seeheim-Jugenheim, Berlin, Les Orres, Curitiba, Angersbach, Flagstaff, Lake Arrowhead, Saratoga Springs, Erftstadt, Oxford, Oer-Erkenschwick, Durham, Joinville, London, Tahmoor, Stuttgart, Green Lake, תל אביב-יפו, Resistencia, Herrsching, Berlin +no +4 +Apex Edinburgh International and 55.9470365 -3.1966624 +6 +yes +7 +http://lemondehotel.co.uk/, http://www.placeshilton.com/edinburgh-city-centre, http://www.hot-el-apartments.com/edinburgh-waterfront-apartments/, http://www.jurysinns.com/hotels/edinburgh, http://www.apexhotels.co.uk/hotels/edinburgh-waterloo-place/?source=adwords mis1&gclid=CPyo uiJiqQCFVf-2AodJ02fJQ, http://www.travelodge.co.uk/search and book/hotel overview.php?hotel id=428, http://www.radissonblu.co.uk/hotel-edinburgh?facilitator=BIGMOUTHMEDIAREZIDOR&csref=g en sk brand 3 ediza, http://www.macdonaldhotels.co.uk/holyrood/, http://www.thistle.com/en/hotels/united kingdom/edinburgh/the king james/index.html, http://www.oceanservicedapts.com/index.php?gclid=COTK4ISGzKUCFYIe4QodBwiXjg, http://www.sandaigguesthouse.co.uk/, http://www.theglasshousehotel.co.uk/, http://www.oldwaverley.co.uk/, http://www.royalbritishhotel.com/, http://edinburgh.frasershospitality.com, http://niracaledonia.com/en/, http://www.hotelceilidh-donia.co.uk/, http://www.edinburghthistlehotel.com/, http://www.chester-residence.com/, http://www.thegrassmarkethotel.co.uk/, http://www.ibis.com/gb/hotel-2039-ibis-edinburgh-centre-royal-mile/index.shtml, http://www.thescotsmanhotel.co.uk/, http://www.thenorthumberlandhotel.co.uk, http://www.edinburghmintohotel.co.uk, http://www.kildonanlodgehotel.co.uk, http://www.cairnedinburgh.com/, http://www.rosehallhotel.co.uk, www.motel-one.com/en/hotels/edinburgh/edinburgh-princes, www.parliamenthouse-hotel.co.uk, www.royalmilemansions.com/, http://www.royalscotsclub.com/, http://www.travelodge.co.uk/hotels/353/Edinburgh-Haymarket-hotel, http://www.fountaincourtapartments.com/eq2.html, http://www.edinburghcityhotel.com/, http://www.townhousecompany.com/theedinburghresidence/, www.tunehotels.com/our-hotels/haymarket-edinburgh, http://www.rockvillehotel.co.uk, http://www.channings.co.uk, http://www.robertburnshotel.com, http://www.ibis.com, http://www.thegeorgehoteledinburgh.co.uk/ +no +1.3561148859980778 +Caisse Commune, Autolib', Bolloré +1, 1 +16 +sculpture +fr:Châtillon - Montrouge (métro de Paris), fr:Malakoff - Rue Étienne Dolet (métro de Paris), fr:Les Sablons (métro de Paris), fr:Argentine (métro de Paris), fr:George V (métro de Paris), fr:Franklin D. Roosevelt (métro de Paris), fr:Concorde (métro de Paris), fr:Tuileries (métro de Paris), fr:Palais Royal - Musée du Louvre (métro de Paris), fr:Louvre - Rivoli (métro de Paris), fr:Châtelet (métro de Paris), fr:Hôtel de Ville (métro de Paris), fr:Saint-Paul (métro de Paris), fr:Bastille (métro de Paris), fr:Gare de Lyon (métro de Paris), fr:Reuilly - Diderot (métro de Paris), fr:Porte de Vincennes (métro de Paris), fr:Marcel Sembat (métro de Paris), fr:La Motte-Picquet - Grenelle (métro de Paris), fr:Cambronne (métro de Paris), fr:Dupleix (métro de Paris), fr:Orly-Ouest (Orlyval), fr:Mairie d'Issy (métro de Paris), fr:Corentin Celton (métro de Paris), fr:Porte de Versailles (métro de Paris), fr:Convention (métro de Paris), fr:La Défense (métro de Paris), fr:Porte d'Orléans (métro de Paris), fr:Alésia (métro de Paris), fr:Mouton-Duvernet (métro de Paris), fr:Denfert-Rochereau (métro de Paris), fr:Raspail (métro de Paris), fr:Saint-Jacques (métro de Paris), fr:Glacière (métro de Paris), fr:Corvisart (métro de Paris), fr:Place d'Italie (métro de Paris), fr:Nationale (métro de Paris), fr:Chevaleret (métro de Paris), fr:Quai de la Gare (métro de Paris), fr:Stalingrad (métro de Paris), fr:Nation (métro de Paris), fr:Château de Vincennes (métro de Paris), fr:Bérault (métro de Paris), fr:Buttes Chaumont (métro de Paris), fr:Bolivar (métro de Paris), fr:Buzenval (métro de Paris), fr:Saint-Mandé (métro de Paris), fr:Avron (métro de Paris), fr:Ménilmontant (métro de Paris), fr:Père Lachaise (métro de Paris), fr:Philippe Auguste (métro de Paris), fr:Alexandre Dumas (métro de Paris), fr:Belleville (métro de Paris), fr:Couronnes (métro de Paris), fr:Colonel Fabien (métro de Paris), fr:Anvers (métro de Paris), fr:Pigalle (métro de Paris), fr:Blanche (métro de Paris), fr:Place de Clichy (métro de Paris), fr:Rome (métro de Paris), fr:Villiers (métro de Paris), fr:Monceau (métro de Paris), fr:Charles de Gaulle - Étoile (métro de Paris), fr:Victor Hugo (métro de Paris), fr:Porte Dauphine (métro de Paris), fr:Gallieni (métro de Paris), fr:Porte de Bagnolet (métro de Paris), fr:Gambetta (métro de Paris), fr:Rue Saint-Maur (métro de Paris), fr:Parmentier (métro de Paris), fr:Temple (métro de Paris), fr:Arts et Métiers (métro de Paris), fr:Réaumur - Sébastopol (métro de Paris), fr:Sentier (métro de Paris), fr:Bourse (métro de Paris), fr:Quatre-Septembre (métro de Paris), fr:Opéra (métro de Paris), fr:Havre - Caumartin (métro de Paris), fr:Saint-Lazare (métro de Paris), fr:Malesherbes (métro de Paris), fr:Wagram (métro de Paris), fr:Pereire (métro de Paris), fr:Porte de Champerret (métro de Paris), fr:Vaugirard (métro de Paris), fr:Volontaires (métro de Paris), fr:Falguière (métro de Paris), fr:Duroc (métro de Paris), fr:Saint-François-Xavier (métro de Paris), fr:Varenne (métro de Paris), fr:Bel-Air (métro de Paris), fr:Marx Dormoy (métro de Paris), fr:Gabriel Péri (métro de Paris), fr:Jacques Bonsergent (métro de Paris), fr:Anatole France (métro de Paris), fr:Croix de Chavaux (métro de Paris), fr:Mairie de Montreuil (métro de Paris), fr:Pont de Levallois - Bécon (métro de Paris), fr:Louise Michel (métro de Paris), fr:Maraîchers (métro de Paris), fr:Porte de Montreuil (métro de Paris), fr:Robespierre (métro de Paris), fr:Rue des Boulets (métro de Paris), fr:Charonne (métro de Paris), fr:Voltaire (métro de Paris), fr:Saint-Ambroise (métro de Paris), fr:Oberkampf (métro de Paris), fr:Strasbourg - Saint-Denis (métro de Paris), fr:Bonne-Nouvelle (métro de Paris), fr:Grands Boulevards (métro de Paris), fr:Richelieu - Drouot (métro de Paris), fr:Chaussée d'Antin - La Fayette (métro de Paris), fr:Saint-Augustin (métro de Paris), fr:Quai de la Rapée (métro de Paris), fr:Gare d'Austerlitz (métro de Paris), fr:Jussieu (métro de Paris), fr:Cardinal Lemoine (métro de Paris), fr:Maubert - Mutualité (métro de Paris), fr:Cluny - La Sorbonne (métro de Paris), fr:Odéon (métro de Paris), fr:Mabillon (métro de Paris), fr:Balard (métro de Paris), fr:Lourmel (métro de Paris), fr:Boucicaut (métro de Paris), fr:Félix Faure (métro de Paris), fr:Dugommier (métro de Paris), fr:Daumesnil (métro de Paris), fr:Bercy (métro de Paris), fr:Edgar Quinet (métro de Paris), fr:Pasteur (métro de Paris), fr:Kléber (métro de Paris), fr:Boissière (métro de Paris), fr:Trocadéro (métro de Paris), fr:Passy (métro de Paris), fr:Iéna (métro de Paris), fr:Rue de la Pompe (métro de Paris), fr:La Muette (métro de Paris), fr:Ranelagh (métro de Paris), fr:Jasmin (métro de Paris), fr:Michel-Ange - Auteuil (métro de Paris), fr:Michel-Ange - Molitor (métro de Paris), fr:Exelmans (métro de Paris), fr:Porte de Saint-Cloud (métro de Paris), fr:Alma - Marceau (métro de Paris), fr:/Saint-Philippe du Roule (métro de Paris), fr:Miromesnil (métro de Paris), fr:Sèvres - Babylone (métro de Paris), fr:Mairie de Clichy (métro de Paris), fr:Porte de Clichy (métro de Paris), fr:Brochant (métro de Paris), fr:La Fourche (métro de Paris), fr:Ségur (métro de Paris), fr:Avenue Émile Zola (métro de Paris), fr:Assemblée nationale (métro de Paris), fr:Solférino (métro de Paris), fr:Rennes (métro de Paris), fr:Notre-Dame-des-Champs (métro de Paris), fr:Concorde (métro de Paris), fr:Madeleine (métro de Paris), fr:Commerce (métro de Paris), fr:École Militaire (métro de Paris), fr:La Tour-Maubourg (métro de Paris), fr:Invalides (métro de Paris), fr:Filles du Calvaire (métro de Paris), fr:Saint-Sébastien - Froissart (métro de Paris), fr:Chemin Vert (métro de Paris), fr:Bastille (métro de Paris), fr:Ledru-Rollin (métro de Paris), fr:Faidherbe - Chaligny (métro de Paris), fr:Montgallet (métro de Paris), fr:Michel Bizot (métro de Paris), fr:Liberté (métro de Paris), fr:Porte Dorée (métro de Paris), fr:Picpus (métro de Paris), fr:Cour Saint-Émilion (métro de Paris), fr:Olympiades (métro de Paris), fr:Porte de Charenton (métro de Paris), fr:Pyramides (métro de Paris), fr:Trinité - d'Estienne d'Orves (métro de Paris), fr:Notre-Dame-de-Lorette (métro de Paris), fr:Rue du Bac (métro de Paris), fr:Saint-Georges (métro de Paris), fr:Abbesses (métro de Paris), fr:Lamarck - Caulaincourt (métro de Paris), fr:Jules Joffrin (métro de Paris), fr:Porte de la Chapelle (métro de Paris), fr:Simplon (métro de Paris), fr:Château Rouge (métro de Paris), fr:Gare du Nord (métro de Paris), fr:Gare de l'Est (métro de Paris), fr:Étienne Marcel (métro de Paris), fr:Château d'Eau (métro de Paris), fr:Les Halles (métro de Paris), fr:Cité (métro de Paris), fr:Saint-Michel (métro de Paris), fr:Saint-Germain-des-Prés (métro de Paris), fr:Saint-Placide (métro de Paris), fr:Vavin (métro de Paris), fr:Charles Michels (métro de Paris), fr:Javel - André Citroën (métro de Paris), fr:Église d'Auteuil (métro de Paris), fr:Porte d'Auteuil (métro de Paris), fr:Chardon-Lagache (métro de Paris), fr:Mirabeau (métro de Paris), fr:Boulogne - Jean Jaurès (métro de Paris), fr:Boulogne - Pont de Saint-Cloud (métro de Paris), fr:Goncourt (métro de Paris), fr:Rambuteau (métro de Paris), fr:Télégraphe (métro de Paris), fr:Pyrénées (métro de Paris), fr:Jourdain (métro de Paris), fr:Gaîté (métro de Paris), fr:Plaisance (métro de Paris), fr:Pernety (métro de Paris), fr:Malakoff - Plateau de Vanves (métro de Paris), fr:Bréguet - Sabin (métro de Paris), fr:Richard-Lenoir (métro de Paris), fr:Laumière (métro de Paris), fr:Ourcq (métro de Paris), fr:Porte de Pantin (métro de Paris), fr:Louis Blanc (métro de Paris), fr:Poissonnière (métro de Paris), fr:Riquet (métro de Paris), fr:Crimée (métro de Paris), fr:Corentin Cariou (métro de Paris), fr:Porte de la Villette (métro de Paris), fr:Le Peletier (métro de Paris), fr:Cadet (métro de Paris), fr:Pont Neuf (métro de Paris), fr:Sully - Morland (métro de Paris), fr:Pont Marie (métro de Paris), fr:Place Monge (métro de Paris), fr:Censier - Daubenton (métro de Paris), fr:Les Gobelins (métro de Paris), fr:Pré Saint-Gervais (métro de Paris), fr:Danube (métro de Paris), fr:Mairie des Lilas (métro de Paris), fr:Saint-Fargeau (métro de Paris), fr:Pelleport (métro de Paris), fr:Saint-Marcel (métro de Paris), fr:Campo-Formio (métro de Paris), fr:Guy Môquet (métro de Paris), fr:Porte de Saint-Ouen (métro de Paris), fr:Garibaldi (métro de Paris), fr:Tolbiac (métro de Paris), fr:Maison Blanche (métro de Paris), fr:Porte d'Italie (métro de Paris), fr:Les Agnettes (métro de Paris), fr:Asnières - Gennevilliers - Les Courtilles (métro de Paris), fr:Fort d'Aubervilliers (métro de Paris), fr:Aubervilliers - Pantin - Quatre Chemins (métro de Paris), fr:La Courneuve - 8 Mai 1945 (métro de Paris), fr:Champs-Élysées - Clemenceau (métro de Paris), fr:Créteil - L'Échat (métro de Paris), fr:Créteil - Université (métro de Paris), fr:Créteil - Préfecture (métro de Paris), fr:Maisons-Alfort - Les Juilliottes (métro de Paris), fr:Maisons-Alfort - Stade (métro de Paris), fr:École vétérinaire de Maisons-Alfort (métro de Paris), fr:Charenton - Écoles (métro de Paris), fr:Mairie de Saint-Ouen (métro de Paris), fr:Carrefour Pleyel (métro de Paris), fr:Villejuif - Léo Lagrange (métro de Paris), fr:Villejuif - Louis Aragon (métro de Paris), fr:Villejuif - Paul Vaillant-Couturier (métro de Paris), fr:Le Kremlin-Bicêtre (métro de Paris), fr:Saint-Sulpice (métro de Paris), fr:Montparnasse - Bienvenüe (métro de Paris), fr:Château-Landon (métro de Paris), fr:La Chapelle (métro de Paris), fr:Église de Pantin (métro de Paris), fr:Liège (métro de Paris), fr:Saint-Denis - Porte de Paris (métro de Paris), fr:Basilique de Saint-Denis (métro de Paris), fr:Saint-Denis - Université (métro de Paris), fr:Bir-Hakeim (métro de Paris), fr:Billancourt (métro de Paris), fr:Pont de Sèvres (métro de Paris), fr:Porte de Choisy (métro de Paris), fr:Porte d'Ivry (métro de Paris), fr:Pierre et Marie Curie (métro de Paris), fr:Mairie d'Ivry (métro de Paris), fr:Vaneau (métro de Paris), fr:Saint-Lazare (métro de Paris), fr:Saint-Lazare (métro de Paris), fr:Ternes (métro de Paris), fr:Pointe du Lac (métro de Paris), fr:Barbès - Rochechouart (métro de Paris), fr:Marcadet - Poissonniers (métro de Paris), fr:Concorde (métro de Paris), fr:Invalides (métro de Paris), fr:Bastille (métro de Paris), fr:Gare de Lyon (métro de Paris), fr:Sèvres - Lecourbe (métro de Paris), fr:Porte de Clignancourt (métro de Paris), fr:Montparnasse - Bienvenüe (métro de Paris), fr:Orly-Sud (Orlyval), fr:Porte des Lilas (métro de Paris), fr:Botzaris (métro de Paris), fr:Jaurès (métro de Paris), fr:Gare de la Bibliothèque François Mitterrand, fr:Place des Fêtes (métro de Paris), fr:Courcelles (métro de Paris), fr:Front Populaire (métro de Paris), fr:Bobigny - Pantin - Raymond Queneau (métro de Paris), fr:Porte Maillot (métro de Paris), fr:Philippe Auguste (métro de Paris), fr:Esplanade de La Défense (métro de Paris), fr:Pont de Neuilly (métro de Paris), fr:Châtelet (métro de Paris), fr:Châtelet (métro de Paris), fr:Châtelet (métro de Paris), fr:Châtelet (métro de Paris), fr:République (métro de Paris) +2.4383054683065648 +yes +Hilton Edinburgh Airport Hotel, Greyfriars Bobby Statue, Talbot Rice Gallery, Malmaison, DoubleTree by Hilton Hotel Edinburgh City Centre, Radisson Blu Hotel, Fraser Suites Edinburgh, Motel One, National Museum of Scotland, National Museum of Scotland, St. Giles' Cathedral, Waldorf Astoria Edinburgh - The Caledonian, Edinburgh Labyrinth, Hilton Edinburgh Grosvenor, Old College and 55.9439031 -3.3598911, 55.9469224 -3.1913043, 55.9470669 -3.1877715, 55.9778438 -3.1685794, 55.9457041 -3.2034796, 55.9500801 -3.1867539, 55.9523925 -3.1039168, 55.9500000 -3.1919145, 55.9507105 -3.1915001, 55.9470702 -3.1891400, 55.9468444 -3.1904431, 55.9494705 -3.1908525, 55.9495596 -3.2075043, 55.9438550 -3.1895180, 55.9469876 -3.2170926, 55.9474254 -3.1872595 +Völkerschlacht bei Leipzig and 49.4036412 8.7279490 +48.8503523 2.3771322 +130 +51.0314650 13.7060792, 50.9984910 13.8180107, 51.0477367 13.7924112, 51.0813022 13.6914169, 51.0761832 13.6854700, 51.0531342 13.7070918, 51.0301256 13.7603362, 51.0157764 13.7682166, 51.0484348 13.7907288, 51.0026862 13.7951099, 51.0129678 13.7811896, 51.0133169 13.7545602, 51.0298689 13.6478846, 51.0742642 13.6986054, 51.0739544 13.7586196, 51.0306245 13.7016945, 51.0117598 13.7985344, 50.9917185 13.7973870, 50.9917062 13.7974603, 51.0473259 13.8090954, 51.0308817 13.7016925, 51.0306353 13.7016025, 51.0307674 13.7015445, 51.0029038 13.8026801, 51.0301067 13.7605035, 51.0306483 13.7017773, 51.0307733 13.7018143, 51.0477367 13.7924112, 51.0301131 13.7604231 +1 +48.8389743 2.3594500, 48.8660888 2.3735141, 48.8833481 2.3657221, 48.8435512 2.3549103, 48.8415381 2.3513578, 48.8604665 2.2777715, 48.8426449 2.3435197, 48.8440817 2.3394081, 48.8781498 2.2912675, 48.8520717 2.3832753, 48.8619692 2.3675752, 48.8608788 2.3675481, 48.8746407 2.3851288, 48.8377080 2.2928200, 48.8577103 2.3716555, 48.8757138 2.3237237, 48.8531755 2.2897323, 48.8369247 2.3655074, 48.8370392 2.3656876, 48.8366117 2.3660108, 48.8856585 2.3878153, 48.8235768 2.3528601, 48.8747235 2.4028142, 48.8463900 2.2689236, 48.8663636 2.4020052, 48.8284834 2.3390838, 48.8782451 2.3776203, 48.8395681 2.3430437, 48.8370175 2.3399282, 48.8381233 2.3381623, 48.8377272 2.3337065, 48.8503229 2.3719619, 48.8371308 2.3201049, 48.8294209 2.3117338, 48.8282417 2.3124366, 48.8318593 2.3321176, 48.8227046 2.3325473, 48.8389582 2.2736102, 48.8233729 2.3520348, 48.8408530 2.3097088, 48.8406966 2.3089635, 48.8419046 2.4066858, 48.8829020 2.3533116, 48.8344290 2.2940843, 48.8351372 2.2970883, 48.8815039 2.3596777, 48.8343403 2.3469900, 48.8738281 2.3676232, 48.8799231 2.4029140, 48.8217673 2.4286891, 48.8990145 2.3317580, 48.8463859 2.2898152, 48.8402142 2.2586544, 48.8424746 2.2663692, 48.8465172 2.2647803, 48.8271977 2.3186334, 48.8445554 2.3918219, 48.8546261 2.3488485, 48.8368581 2.2933245, 48.8536180 2.3593838, 48.8804816 2.3601906, 48.8785401 2.3503089, 48.8875554 2.3932245, 48.8766581 2.3845776, 48.8772899 2.4044967, 48.8415376 2.3358192, 48.8707470 2.3890101, 48.8429738 2.4063211, 48.8428482 2.4072159, 48.8369808 2.3616318, 48.8352545 2.3669997, 48.8342311 2.3345129, 48.8324596 2.3065068, 48.8712344 2.2910205, 48.8477963 2.2711682, 48.8449828 2.2686932, 48.8538919 2.4083840, 48.8494123 2.3176366, 48.8452225 2.3155627, 48.8485322 2.3824733, 48.8433630 2.3993165, 48.8190962 2.4289009, 48.8929782 2.3244634, 48.8775846 2.3766713, 48.8383829 2.3526435, 48.8900253 2.3304354, 48.8383195 2.3374280, 48.8385002 2.3585546, 48.8377337 2.3652831, 48.8742587 2.3804890, 48.8333356 2.2808431 +55.9526570 -3.1776209, 55.9355981 -3.2312935 +104 +21 +48.8376960 2.3062844, 48.8481953 2.3419715, 48.8467471 2.3717077, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8278753 2.3796701, 48.8330539 2.2881095, 48.8234693 2.3306543, 48.8562375 2.3660049, 48.8516696 2.2978180, 48.8528343 2.3441184, 48.8504483 2.2926945, 48.8518053 2.3448347, 48.8549752 2.3046163, 48.8487972 2.3410105, 48.8495763 2.3798752, 48.8238179 2.3241127, 48.8542680 2.3078406 +yes +Eau des Lys +48.8649810 2.2947036 +48.8715303 2.3852468, 48.8786948 2.3802940, 48.8810910 2.3830096, 48.8414246 2.2740245, 48.8772975 2.3756258, 48.8192800 2.4461614, 48.8431371 2.3559220, 48.8816331 2.3989854, 48.8276787 2.4357466, 48.8737978 2.3851825, 48.8495352 2.3602521, 48.8861105 2.3431223, 48.8619948 2.2887325, 48.8797763 2.3836622, 48.8300350 2.4157042, 48.8737846 2.2950252, 48.8826564 2.3973634, 48.8218882 2.3397494, 48.8733612 2.3315473, 48.8616753 2.3454571, 48.8333332 2.4191292, 48.8582683 2.2945016, 48.8684965 2.2469852, 48.8582613 2.2944982 +no +65 +catholic +Schloss Filmtheater, Die Kamera, Movie Theatre, Gloria & Gloriette, Karlstorkino +Edinburgh Airport +49.3999791 8.6903579, 49.4183136 8.7570658, 49.4128139 8.6783720, 49.4145117 8.6907695, 49.4077612 8.6774779, 49.4072855 8.6846071, 49.4071494 8.6862981, 49.4085419 8.6884195, 49.4114880 8.7036708, 49.4112467 8.7056121, 49.3803180 8.6917254, 49.3789548 8.6920168, 49.3789551 8.6697358, 49.4118400 8.7103033, 49.4101180 8.6997470, 49.3932913 8.6898491, 49.3999572 8.6849703, 49.4055340 8.6909414, 49.4284757 8.6833956, 49.4298020 8.6813390, 49.3813862 8.6715525, 49.3801053 8.6879890, 49.4055840 8.6658584, 49.3805484 8.6587871, 49.4019559 8.6916056, 49.4035568 8.6918554, 49.4089227 8.6927850, 49.3788705 8.6685559, 49.3821598 8.6632293, 49.4076785 8.6917122, 49.4211891 8.6800261, 49.3746688 8.7035666, 49.4103729 8.6964923, 49.3744114 8.6827527, 49.3734828 8.6803866, 49.4089710 8.6939315, 49.4152187 8.7476376, 49.4122637 8.7077964, 49.4034041 8.6828344, 49.4283328 8.6876890, 49.4297175 8.6854401, 49.4294006 8.6822101, 49.4045550 8.6757234, 49.4042051 8.6757454, 49.4055602 8.6759168, 49.3773301 8.6643950, 49.4247182 8.6873975, 49.4254190 8.6871690, 49.4211737 8.7557530, 49.4152481 8.6922641, 49.3804318 8.6878275, 49.3803620 8.6881463, 49.4145068 8.6907391, 49.4148749 8.6923202, 49.4090710 8.6596269, 49.3797613 8.6848437, 49.4230594 8.6488328, 49.4059598 8.6868733, 49.3772126 8.6700382, 49.3782446 8.6730115, 49.4270878 8.6470653, 49.4278529 8.6465726, 49.4188086 8.6517772, 49.3974830 8.6464426, 49.3976777 8.6479965, 49.4073819 8.6570319, 49.4014703 8.6683127, 49.4023052 8.6665425, 49.4081778 8.6881317, 49.4179480 8.7596452, 49.4146130 8.6710105 and 49.4183639 8.7570400, 49.4142159 8.6881484, 49.4283917 8.6821286, 49.4038218 8.6846352, 49.4302090 8.6826535, 49.4215525 8.7554923, 49.3811013 8.6713612, 49.3794165 8.6912333, 49.4148351 8.6923482, 49.3972488 8.6465060, 49.4270902 8.6483857, 49.3801809 8.6865918, 49.3787351 8.6688216 +12 +yes +55.9427756 -3.2095329, 55.9449491 -3.2071792, 55.9261403 -3.1387050, 55.9021076 -3.2215942, 55.9077375 -3.2604776, 55.9744871 -3.3050579, 55.9605521 -3.2145819, 55.9914354 -3.3985059, 55.9546221 -3.1877189, 55.9551815 -3.1828752, 55.9905515 -3.3832043, 55.9898776 -3.3947910, 55.9532515 -3.2795094, 55.8753891 -3.3099775, 55.9388513 -3.1691562, 55.9501390 -3.1751181, 55.9297109 -3.2086926, 55.9489520 -3.1813494, 55.9210967 -3.2266715, 55.9487114 -3.2851366, 55.9487753 -3.2841900, 55.9487321 -3.2833922, 55.9482056 -3.2747143, 55.9605737 -3.1931385, 55.9349799 -3.1318268, 55.9319057 -3.1277488, 55.9331970 -3.1413489, 55.9031553 -3.1637932, 55.9099567 -3.1298528, 55.9083931 -3.1302476, 55.9087443 -3.1294580, 55.9539250 -3.1094167, 55.9383367 -3.4074644, 55.9560188 -3.3189391, 55.9005379 -3.1766131, 55.9233331 -3.3622103, 55.9234774 -3.3610087, 55.9670463 -3.3162635, 55.9684981 -3.1418750, 55.9145289 -3.2879909, 55.9270985 -3.2345448, 55.9262193 -3.2367397, 55.9257251 -3.2379807, 55.9536926 -3.2888163, 55.9705235 -3.2271545, 55.9461803 -3.2070135, 55.9760698 -3.1951310, 55.9202135 -3.2126749, 55.9225657 -3.2301524, 55.9228577 -3.2291352, 55.9232283 -3.2269378, 55.9914682 -3.3984225, 55.9226414 -3.2544133, 55.9272283 -3.2938863, 55.9503380 -3.2726676, 55.9559652 -3.1503593, 55.9435000 -3.2324052, 55.9591543 -3.2259572, 55.9590419 -3.2244693, 55.9345452 -3.2208560, 55.9588991 -3.2258357, 55.9859605 -3.1898881, 55.9864916 -3.1885470, 55.9330884 -3.3083607, 55.9848085 -3.3865992, 55.9171931 -3.1941869, 55.9281635 -3.2479491, 55.9278540 -3.2486519, 55.9683895 -3.3221102, 55.9520661 -3.2796118, 55.9555602 -3.3906816, 55.9555053 -3.1853840, 55.9466587 -3.2084167, 55.9444914 -3.2039187, 55.9437264 -3.1923238, 55.9849796 -3.1929699, 55.9450154 -3.1980120, 55.9416959 -3.1484162, 55.9625359 -3.4034070, 55.9425986 -3.2065382, 55.9407899 -3.1790526, 55.9390017 -3.1784821, 55.9461084 -3.1836449, 55.9528247 -3.2065333, 55.9529149 -3.2065700, 55.9533425 -3.2047904, 55.9075949 -3.4202463, 55.9509478 -3.2066848, 55.9526988 -3.2085257, 55.9527795 -3.2080212, 55.9529409 -3.2077810, 55.9543888 -3.1989928, 55.9548130 -3.1959084, 55.9531961 -3.2032873, 55.9527862 -3.1991610, 55.9528048 -3.1990557, 55.9550493 -3.1952197, 55.9556549 -3.1915634, 55.9411313 -3.2167882, 55.9858052 -3.3817066, 55.9393998 -3.1735716, 55.9319915 -3.1798966, 55.9479359 -3.2033290, 55.9148155 -3.2846120, 55.9068623 -3.1327381, 55.9336793 -3.0927075, 55.9166066 -3.3142805, 55.9475115 -3.1893474, 55.9478706 -3.1875187, 55.9367307 -3.4053592, 55.9404588 -3.2944172, 55.9362574 -3.2996459, 55.9696237 -3.2312974, 55.9384602 -3.3173394, 55.9371432 -3.3120553, 55.9358957 -3.3194951, 55.9338970 -3.3122513, 55.9189243 -3.3018114, 55.9253578 -3.2483932, 55.9401130 -3.3149747, 55.9397190 -3.3120155, 55.9016607 -3.2241566, 55.9412989 -3.1015035, 55.9262359 -3.1654883, 55.9578808 -3.1647965, 55.9544793 -3.1426073, 55.9800643 -3.1795555, 55.9821786 -3.1756498, 55.9435294 -3.2654687, 55.9436259 -3.2619723, 55.9690220 -3.1695919, 55.9453813 -3.1852436, 55.9834910 -3.4001615, 55.9323465 -3.1280922, 55.9325021 -3.1355675, 55.9281227 -3.1237925, 55.9272234 -3.1239396, 55.9207911 -3.1380624, 55.9225739 -3.1333840, 55.9234297 -3.1370906, 55.9079002 -3.3236956, 55.9314453 -3.2359598, 55.9234755 -3.2477828, 55.9523306 -3.2247264, 55.9506405 -3.2280071, 55.9388492 -3.3562316, 55.9282702 -3.2905058, 55.9328331 -3.3144308, 55.9241296 -3.3794972, 55.9384423 -3.2403707, 55.9895200 -3.3960731, 55.9226662 -3.2254126, 55.9559159 -3.1551037, 55.9396348 -3.1719819, 55.9418632 -3.1505954, 55.9486154 -3.1834112, 55.9471658 -3.1800476, 55.9510411 -3.1708174, 55.9629115 -3.1702968, 55.9391574 -3.3048858, 55.9212062 -3.1411443, 55.9151416 -3.3259472, 55.9125478 -3.3210336, 55.9127727 -3.3230057, 55.9121770 -3.3242353, 55.9168756 -3.3182175, 55.9030839 -3.3120674, 55.9323493 -3.1390569, 55.9315981 -3.1166385, 55.9280748 -3.1214990, 55.9351070 -3.1380033, 55.9317521 -3.1361908, 55.9318779 -3.1350817, 55.9324368 -3.1361552, 55.9323067 -3.1467718, 55.9221929 -3.1873317, 55.9029473 -3.2042927, 55.9042182 -3.1508526, 55.9187139 -3.1384285, 55.9347851 -3.1178195, 55.9327327 -3.1371609, 55.9310415 -3.1291255, 55.9312532 -3.1311471, 55.9356181 -3.1431581, 55.9366082 -3.1592634, 55.9346063 -3.1287373, 55.9585488 -3.1224989, 55.9390965 -3.1155072, 55.9372934 -3.1427896, 55.9395153 -3.1374061, 55.9391745 -3.1365070, 55.9326082 -3.1048464, 55.9673151 -3.1353973, 55.9167088 -3.3165996, 55.9323197 -3.1071045, 55.9339501 -3.1058170, 55.9338900 -3.1047414, 55.9350584 -3.1023983, 55.9289228 -3.1324182, 55.9094988 -3.1543668, 55.9097229 -3.1417837, 55.9248212 -3.2647912, 55.9773633 -3.2471160, 55.9558627 -3.1173143, 55.9092890 -3.3163751, 55.9275619 -3.2972009, 55.9021546 -3.1682556, 55.9061546 -3.3220260, 55.9116089 -3.3255603, 55.9134088 -3.3215983, 55.9109708 -3.3144538, 55.9109175 -3.3264046, 55.9280288 -3.2881415, 55.9235713 -3.3999101, 55.9893024 -3.3981851, 55.9116987 -3.3152719, 55.9096737 -3.3169570, 55.9156152 -3.3159619, 55.9497651 -3.1780477, 55.9360803 -3.2260420, 55.9162763 -3.2910976, 55.9414217 -3.2221759, 55.9422143 -3.1843904, 55.9447507 -3.1796881, 55.9430744 -3.1777261, 55.9446561 -3.1803403, 55.9494277 -3.1775329, 55.9487518 -3.1780877, 55.9485518 -3.1781362, 55.9491775 -3.1780460, 55.9466674 -3.1799160, 55.9467039 -3.1783594, 55.9520666 -3.1782554, 55.9442077 -3.1850195, 55.9611696 -3.2316847, 55.9609929 -3.2342787, 55.9607831 -3.2371118, 55.9615933 -3.2374124, 55.9619320 -3.2374854, 55.9631141 -3.2367935, 55.9634777 -3.2359757, 55.9496410 -3.1840791, 55.9518134 -3.1865125, 55.9244139 -3.2658901, 55.9160232 -3.3163210, 55.9156359 -3.3182752, 55.9160984 -3.3183497, 55.9827482 -3.1947966, 55.9820923 -3.1881161, 55.9709946 -3.2069888, 55.9663575 -3.1958162, 55.9713037 -3.2306913, 55.9211529 -3.1991584, 55.9272521 -3.2235895, 55.9282852 -3.2235581, 55.9226879 -3.2251365, 55.9868679 -3.4037150, 55.9870985 -3.4031390, 55.9453143 -3.3555656, 55.9465415 -3.3624684, 55.9475491 -3.3620873, 55.9539144 -3.1587511, 55.8968564 -3.3184286, 55.9600239 -3.1973819, 55.9679394 -3.1728771, 55.9729929 -3.1628209, 55.9239749 -3.1779212, 55.9246612 -3.1815724, 55.9260122 -3.1931603, 55.9276896 -3.1509176, 55.9274521 -3.1503413, 55.9275727 -3.1506409, 55.9254765 -3.1644984, 55.9263987 -3.1628516, 55.9280015 -3.1625220, 55.9283909 -3.2930391, 55.9276860 -3.2951771, 55.9488232 -3.2332997, 55.9264933 -3.3012131, 55.9447684 -3.1528732, 55.9383947 -3.2562456, 55.9821203 -3.3972503, 55.9006763 -3.3190467, 55.8607477 -3.3326422, 55.9312615 -3.2941807, 55.8941662 -3.2624173, 55.9334103 -3.2358080, 55.9090922 -3.2239505, 55.9547187 -3.1893018, 55.9519010 -3.2481568, 55.9523635 -3.2486330, 55.9523251 -3.2541631, 55.9556720 -3.1896134, 55.9430835 -3.2219817, 55.9587913 -3.2420040, 55.9573940 -3.2424916, 55.9588441 -3.2305299, 55.9590153 -3.2322733, 55.9371887 -3.3211797, 55.9381046 -3.3208512, 55.9611769 -3.2425780, 55.9615806 -3.2409418, 55.9613606 -3.2419902, 55.9619750 -3.2400369, 55.9351660 -3.1204578, 55.9355230 -3.1204690, 55.9467379 -3.1966389, 55.9596219 -3.2030610, 55.9776230 -3.2433010, 55.9771738 -3.2430088, 55.9704477 -3.1958250, 55.9703493 -3.1961174, 55.9704547 -3.1964895, 55.9418085 -3.2938103, 55.9409118 -3.2928528, 55.9563797 -3.2090019, 55.9567298 -3.2082704, 55.9556731 -3.1599309, 55.9561167 -3.1678741, 55.9382223 -3.1043918, 55.9402035 -3.1010776, 55.9392618 -3.1041020, 55.9326805 -3.0980239, 55.9332952 -3.0991933, 55.9345875 -3.0954263, 55.9352737 -3.0966452, 55.9347395 -3.0943083, 55.9349364 -3.0950506, 55.9640969 -3.1974516, 55.9338797 -3.4074558, 55.9828725 -3.2257526, 55.9786282 -3.1784319, 55.9394393 -3.2936438, 55.9393840 -3.2949198, 55.9596625 -3.2024027, 55.9669928 -3.1677035, 55.9305761 -3.1559101, 55.9311166 -3.1557491, 55.9333643 -3.3185667, 55.9341121 -3.3187777, 55.9310843 -3.3172397, 55.9324950 -3.3181693, 55.9346695 -3.3189829, 55.9319082 -3.3177126, 55.9359437 -3.2382687, 55.9360694 -3.2391515, 55.9390399 -3.3614272, 55.9457034 -3.3727735, 55.9448037 -3.3753259, 55.9805959 -3.1832658, 55.9809475 -3.1748973, 55.9434320 -3.3600575, 55.9437471 -3.3581099, 55.9453066 -3.3603147, 55.9415413 -3.1765387, 55.9370826 -3.1361439, 55.9586835 -3.1836675, 55.9611856 -3.1865315, 55.9901392 -3.3873481, 55.9454748 -3.2133562, 55.9660452 -3.2748349, 55.9664497 -3.2729235, 55.9293562 -3.3014052, 55.9410215 -3.2404052, 55.9437556 -3.2442061, 55.9367525 -3.2236850, 55.9381980 -3.2233304, 55.9411163 -3.2946751, 55.9816356 -3.1755155, 55.9598506 -3.2240155, 55.9817826 -3.1942506, 55.9810266 -3.1939926, 55.9811977 -3.1933980, 55.9813243 -3.1938987, 55.9811060 -3.1942189, 55.9811219 -3.1927295, 55.9812872 -3.1942703, 55.9810235 -3.1943227, 55.9810882 -3.1928819, 55.9810439 -3.1926011, 55.9811933 -3.1929701, 55.9809849 -3.1928242, 55.9813860 -3.1941338, 55.9809438 -3.1941571, 55.9812539 -3.1931285, 55.9810905 -3.1933833, 55.9741923 -3.2061226, 55.9109047 -3.2387736, 55.9747440 -3.2136660, 55.9231850 -3.2486394, 55.9374125 -3.4072197, 55.9371945 -3.4058237, 55.9374045 -3.4044434, 55.9637505 -3.2335268, 55.9428585 -3.1864559, 55.9846458 -3.1940711, 55.9221429 -3.1752023, 55.9223399 -3.1759213, 55.9670991 -3.2534481, 55.9718838 -3.2534179, 55.9810691 -3.2383577, 55.8984479 -3.3160297, 55.8985757 -3.3165711, 55.8953678 -3.3130989, 55.9298336 -3.3106553, 55.9382569 -3.1735978, 55.9158853 -3.3230009, 55.9162950 -3.3213724, 55.9364542 -3.2790390, 55.9125969 -3.2367843, 55.9184722 -3.3001516, 55.9257870 -3.2656567, 55.9797213 -3.2996678, 55.9783116 -3.2972235, 55.9122709 -3.3154115, 55.9799121 -3.2416420, 55.9268127 -3.3119797, 55.9345568 -3.1028170, 55.9337360 -3.1016259, 55.9403513 -3.3138800, 55.9306972 -3.3125459, 55.9313178 -3.3099344, 55.9320037 -3.3111775, 55.9326177 -3.3104501, 55.9332898 -3.3118087, 55.9475381 -3.3620106, 55.9319865 -3.3124215, 55.9318662 -3.3137738, 55.9181587 -3.2705015, 55.9342211 -3.1778645, 55.9514241 -3.2207842, 55.9724670 -3.2012980, 55.9778933 -3.1745058, 55.9784170 -3.1773402, 55.9780971 -3.1753475, 55.9783089 -3.1763226, 55.9777459 -3.1734796, 55.9789813 -3.1763388, 55.9051373 -3.2232377, 55.9365959 -3.3331143, 55.9362007 -3.3351286, 55.9360359 -3.3397002, 55.9363751 -3.3340583, 55.9694092 -3.2702934, 55.9416964 -3.1483778, 55.9582905 -3.2794012, 55.9767945 -3.1754739, 55.9766864 -3.1738715, 55.9777295 -3.1642417, 55.9713517 -3.2751363, 55.9716217 -3.2748645, 55.9509109 -3.3040405, 55.9505011 -3.3028322, 55.9517277 -3.3043967, 55.9508168 -3.3035767, 55.9561104 -3.2932448, 55.9489783 -3.2074982, 55.9771152 -3.2561088, 55.9775665 -3.1730962, 55.9767627 -3.1685149, 55.9759609 -3.1666596, 55.9775601 -3.1677040, 55.9384344 -3.2383937, 55.9400215 -3.2835991, 55.9722626 -3.1718229, 55.9724369 -3.1737659, 55.9725956 -3.1724850, 55.9735295 -3.1719581, 55.9422361 -3.2854972, 55.9426182 -3.2848408, 55.9424261 -3.2853919, 55.9397418 -3.2866275, 55.9602875 -3.2957399, 55.9004908 -3.2325152, 55.9425974 -3.2817995, 55.9427324 -3.2894308, 55.9428132 -3.2886637, 55.9428834 -3.2895145, 55.9430576 -3.2887151, 55.9429003 -3.2891706, 55.9421047 -3.2806000, 55.9421878 -3.2816836, 55.9418910 -3.2811010, 55.9382573 -3.1889080, 55.9433390 -3.1786743, 55.9352274 -3.1798948, 55.9354661 -3.1805170, 55.9370598 -3.1807869, 55.9375196 -3.1796111, 55.9372843 -3.1802503, 55.9565957 -3.1172742, 55.9416412 -3.1759641, 55.9411089 -3.1758742, 55.9419221 -3.1751737, 55.9413694 -3.1751296, 55.9421224 -3.1755399, 55.9420435 -3.1759728, 55.9417717 -3.1760016, 55.9412937 -3.1748715, 55.9419213 -3.1762309, 55.9417190 -3.1758050, 55.9416370 -3.1757316, 55.9421785 -3.1756667, 55.9411631 -3.1744380, 55.9420584 -3.1756683, 55.9419621 -3.1753235, 55.9421292 -3.1750657, 55.9415161 -3.1750333, 55.9414662 -3.2429306, 55.9380788 -3.2164911, 55.9740721 -3.2549433, 55.9422906 -3.1878107, 55.9424910 -3.1860227, 55.9322321 -3.2172464, 55.9825623 -3.4007445, 55.9820233 -3.4001705, 55.9828150 -3.4009621, 55.9198429 -3.1330027, 55.9726414 -3.3515240, 55.9235247 -3.1313815, 55.9302056 -3.3085109, 55.9324769 -3.3071758, 55.9305686 -3.3131161, 55.9308765 -3.3117228, 55.9399461 -3.2681429, 55.9554624 -3.2241042, 55.9419112 -3.2188990, 55.9483346 -3.2942197, 55.9421466 -3.2052971, 55.9229540 -3.3790829, 55.9287806 -3.2587079, 55.8990520 -3.2377797, 55.9109797 -3.2089126, 55.9419464 -3.1773362, 55.9794270 -3.2989393, 55.9173932 -3.1379231, 55.9764201 -3.1763322, 55.9142301 -3.1341304, 55.9710130 -3.1805984, 55.9134751 -3.1337551, 55.9182561 -3.1989900, 55.9132484 -3.1780898, 55.9646733 -3.1376419, 55.9655572 -3.3178364, 55.8994825 -3.2677948, 55.8998835 -3.2694845, 55.9754348 -3.1685187, 55.9819343 -3.1951000, 55.9405416 -3.2928536, 55.9193644 -3.2228522, 55.9191174 -3.2378985, 55.9192124 -3.2367725, 55.8930871 -3.2026884, 55.8907970 -3.2014067, 55.9642544 -3.1552869, 55.8941813 -3.2179019, 55.8935768 -3.2164997, 55.9761891 -3.1670909, 55.9758400 -3.1668709, 55.9431663 -3.2838745, 55.9433798 -3.2860859, 55.9433113 -3.2870890, 55.9190084 -3.1475665, 55.9191946 -3.1484908, 55.9178453 -3.1484828, 55.9806315 -3.1941324, 55.8993059 -3.2676601, 55.9768676 -3.1714974, 55.9150424 -3.1487433, 55.9308539 -3.2761099, 55.9460256 -3.1970185, 55.9224134 -3.2358339, 55.9232515 -3.2341430, 55.9506991 -3.1804199, 55.9228372 -3.1787829, 55.9651311 -3.3167567, 55.9339081 -3.2001289, 55.9381722 -3.1723579, 55.9391719 -3.1689528, 55.9405990 -3.1722908, 55.9216273 -3.1782748, 55.9241930 -3.1744106, 55.9212881 -3.1716104, 55.9649792 -3.3131166, 55.9451443 -3.1904604, 55.9416788 -3.1843079, 55.9226382 -3.1721985, 55.9036926 -3.1570111, 55.9382369 -3.2291610, 55.9828789 -3.2415813, 55.9706810 -3.3766476, 55.9635638 -3.2312763, 55.9044775 -3.2067494, 55.9331889 -3.2150781, 55.9227690 -3.3421555, 55.8831023 -3.3393159, 55.8838260 -3.3396672, 55.9336416 -3.2375159, 55.9235691 -3.2868011, 55.9310562 -3.2789944, 55.9077899 -3.3207300, 55.9082800 -3.3196678, 55.9378551 -3.2430479, 55.9342259 -3.2112430, 55.9260946 -3.2833643, 55.9400371 -3.2200755, 55.9556763 -3.1879855, 55.9364788 -3.1804752, 55.9365673 -3.1810320, 55.9337994 -3.2511195, 55.9251847 -3.2668441, 55.9281220 -3.1676809, 55.9131088 -3.1600256, 55.9032628 -3.1558019, 55.9031108 -3.1551269, 55.9351736 -3.2474351, 55.9303474 -3.1688301, 55.9231711 -3.1630255, 55.9251682 -3.2504770, 55.9553468 -3.2876097, 55.9554662 -3.2864616, 55.9340775 -3.2344416, 55.9186700 -3.2386355, 55.9194000 -3.2392334, 55.9181062 -3.2402690, 55.9190442 -3.2405398, 55.9186959 -3.2407877, 55.9325805 -3.2889506, 55.9541504 -3.3018100, 55.9063907 -3.2862198, 55.9390667 -3.2357495, 55.9291158 -3.1990147, 55.9220415 -3.3064155, 55.9238629 -3.3045205, 55.9232078 -3.3078531, 55.9222113 -3.3051267, 55.9583463 -3.1189991, 55.9777348 -3.2983203, 55.9463372 -3.2009161, 55.9347843 -3.1777102, 55.9310132 -3.1730716, 55.8957251 -3.3137161, 55.8961364 -3.3124683, 55.9282756 -3.3087719, 55.8961608 -3.3078477, 55.8697544 -3.3340369, 55.9464077 -3.0792269, 55.9487089 -3.0877156, 55.9472371 -3.3582172, 55.9466989 -3.2004459, 55.9609398 -3.2353282, 55.9611023 -3.2337205, 55.9615648 -3.2337688, 55.9897791 -3.3942172, 55.9548736 -3.4013671, 55.9550518 -3.4014531, 55.9499454 -3.3347136, 55.9332555 -3.1585963, 55.9615076 -3.1962176, 55.9617797 -3.1967210, 55.9618418 -3.1964188, 55.9171133 -3.1693870, 55.9499151 -3.1945526, 55.9337107 -3.2143913, 55.9384227 -3.2096374, 55.9673672 -3.2023565, 55.9331209 -3.2609346, 55.9414121 -3.1461173, 55.9584013 -3.2102800, 55.9415712 -3.1423967, 55.9372219 -3.1675591, 55.9376359 -3.1437325, 55.9582727 -3.2142012, 55.9578400 -3.2137240, 55.9580057 -3.2137170, 55.9583384 -3.2143374, 55.9578384 -3.2135045, 55.9586941 -3.2142670, 55.9579707 -3.2133574, 55.9561334 -3.1325493, 55.9557004 -3.4018948, 55.9461251 -3.1413986, 55.9522035 -3.2050327, 55.9532532 -3.1988728, 55.9527412 -3.2019245, 55.9537795 -3.1957406, 55.9588705 -3.2081707, 55.9208169 -3.1598554, 55.9578355 -3.2056417, 55.9576157 -3.2060293, 55.9576413 -3.2059278, 55.9580732 -3.2011430, 55.9579644 -3.2017381, 55.9580494 -3.2012821, 55.9579410 -3.2018748, 55.9584126 -3.2005043, 55.9582239 -3.2009160, 55.9332968 -3.1356104, 55.9587356 -3.2012076, 55.9229466 -3.2475426, 55.9569863 -3.2004490, 55.9571215 -3.2003372, 55.9569959 -3.2010702, 55.9570258 -3.1998342, 55.9568113 -3.2014707, 55.9568346 -3.2013336, 55.9567905 -3.2018529, 55.9571440 -3.1998405, 55.9569850 -3.2000388, 55.9563224 -3.2001027, 55.9562856 -3.2003225, 55.9563043 -3.2002104, 55.9563423 -3.1999840, 55.9563645 -3.1998513, 55.9558901 -3.2012614, 55.9563424 -3.1994368, 55.9262637 -3.2243126, 55.9197901 -3.4326481, 55.9254217 -3.2108083, 55.9633397 -3.1866387, 55.9317876 -3.2353092, 55.9571314 -3.1945091, 55.9570903 -3.1942658, 55.9571062 -3.1948163, 55.9570078 -3.1956389, 55.9574245 -3.1945101, 55.9570801 -3.1952413, 55.9593471 -3.1962794, 55.9588288 -3.1994335, 55.9583111 -3.1990412, 55.9585624 -3.1980766, 55.9583421 -3.1992286, 55.9586095 -3.1976521, 55.9584283 -3.1986380, 55.9585084 -3.1979077, 55.9575802 -3.1968697, 55.9566931 -3.1981359, 55.9567965 -3.1968319, 55.9566552 -3.1982909, 55.9568562 -3.1972327, 55.9568774 -3.1971123, 55.9156397 -3.3249979, 55.9156923 -3.3238425, 55.9153453 -3.3247946, 55.9153595 -3.3236574, 55.9150128 -3.3243232, 55.9151025 -3.3234941, 55.9305554 -3.2379452, 55.9566534 -3.1920437, 55.9568104 -3.1898625, 55.9566771 -3.1918966, 55.9565541 -3.1926150, 55.9570880 -3.1893684, 55.9567192 -3.1908266, 55.9565429 -3.1914874, 55.9565039 -3.1916747, 55.9581431 -3.1932114, 55.9580069 -3.1929658, 55.9560597 -3.2073932, 55.9426363 -3.2453765, 55.9539415 -3.2061599, 55.9538842 -3.2068469, 55.9541878 -3.2062819, 55.9538990 -3.2065724, 55.9516793 -3.2103388, 55.9087093 -3.1294683, 55.9083658 -3.1302627, 55.9098947 -3.1298365, 55.9086482 -3.1320997, 55.9082094 -3.1281800, 55.9075358 -3.1316654, 55.9067683 -3.1280724, 55.9074133 -3.1295842, 55.9130531 -3.1377878, 55.9579855 -3.4144584, 55.9611738 -3.2007261, 55.9612899 -3.2007540, 55.9610369 -3.2004541, 55.9610414 -3.2006404, 55.9614051 -3.2007464, 55.9620034 -3.1995271, 55.9086030 -3.1535038, 55.9085760 -3.1545047, 55.9109349 -3.1528529, 55.9080474 -3.1628940, 55.9318731 -3.2975150, 55.9315469 -3.2965080, 55.9313921 -3.2957951, 55.9295984 -3.3000022, 55.9502297 -3.1939281, 55.9606540 -3.1948258, 55.9595489 -3.1922083, 55.9583753 -3.1909823, 55.9578621 -3.1897878, 55.9574569 -3.1920171, 55.9575620 -3.1916915, 55.9575374 -3.1909923, 55.9576308 -3.1912457, 55.9575648 -3.1913957, 55.9577829 -3.1897123, 55.9576959 -3.1905223, 55.9577544 -3.1902024, 55.9494095 -3.1864626, 55.9415305 -3.2096039, 55.9477482 -3.1983184, 55.9482088 -3.1927240, 55.9480798 -3.1929875, 55.9476449 -3.1962205, 55.9467112 -3.1954578, 55.9475963 -3.1940675, 55.9395772 -3.2053724, 55.9399587 -3.2058503, 55.9401754 -3.2051474, 55.9459124 -3.1915662, 55.9477804 -3.1928983, 55.9402430 -3.1727693, 55.9460773 -3.1915078, 55.9460762 -3.1916340, 55.9372942 -3.2112450, 55.9386346 -3.2107489, 55.9409866 -3.2107158, 55.9407779 -3.2120796, 55.9410206 -3.2114030, 55.9050910 -3.1343770, 55.9028429 -3.1648741, 55.9402022 -3.2097896, 55.9498358 -3.1944874, 55.9490749 -3.1954965, 55.9035412 -3.1821096, 55.9278308 -3.2029884, 55.9509187 -3.1896338, 55.9549766 -3.1940333, 55.9289340 -3.3850956, 55.9220620 -3.1790686, 55.9484660 -3.1908405, 55.9491359 -3.1879889, 55.9322908 -3.3840708, 55.9328840 -3.3853114, 55.9332462 -3.3859725, 55.9493593 -3.1850273, 55.9498809 -3.1852975, 55.9497910 -3.1868298, 55.9494266 -3.1860127, 55.9544711 -3.1956283, 55.9500589 -3.1853856, 55.9500722 -3.1849837, 55.9510336 -3.1857059, 55.9513675 -3.1810136, 55.9515036 -3.1804098, 55.9105025 -3.3235645, 55.9499184 -3.2133490, 55.9507199 -3.2116484, 55.9492178 -3.2148611, 55.9501657 -3.2128195, 55.9434309 -3.1997040, 55.9254395 -3.3071736, 55.9594881 -3.1871746, 55.9193931 -3.2787375, 55.9181911 -3.2782631, 55.9188677 -3.2805660, 55.9196291 -3.2799665, 55.9204553 -3.2780930, 55.9201801 -3.2782104, 55.9199010 -3.2768654, 55.9183106 -3.2760785, 55.9178305 -3.2802163, 55.9192966 -3.2811296, 55.9190402 -3.2822249, 55.9181350 -3.2823908, 55.9589084 -3.1973993, 55.9524851 -3.1785482, 55.9527783 -3.1777107, 55.9525789 -3.1786026, 55.9526096 -3.1778455, 55.9401136 -3.2035933, 55.9525625 -3.1763202, 55.9525134 -3.1760443, 55.9510367 -3.1792500, 55.9509261 -3.1791989, 55.9266569 -3.2906587, 55.9259672 -3.2906739, 55.9509562 -3.1793029, 55.9715612 -3.1511891, 55.9716128 -3.1531798, 55.9471723 -3.2950498, 55.9502335 -3.1832343, 55.9069836 -3.2745258, 55.9502544 -3.1792709, 55.9799828 -3.2336228, 55.9515884 -3.1767930, 55.9510805 -3.1774572, 55.9233418 -3.1754307, 55.9557050 -3.1593134, 55.9831173 -3.3982598, 55.9831412 -3.3990486, 55.9333835 -3.3060603, 55.9330851 -3.3055704, 55.9330382 -3.3063701, 55.9328514 -3.3048776, 55.9119048 -3.3162745, 55.9124396 -3.3164891, 55.9133755 -3.3158141, 55.9136037 -3.3151038, 55.9135778 -3.3145334, 55.9133853 -3.3144838, 55.9132252 -3.3140003, 55.9139806 -3.3144355, 55.9456742 -3.3672489, 55.9731731 -3.1669137, 55.9237564 -3.2987464, 55.9238278 -3.2979670, 55.9236823 -3.2992800, 55.9236244 -3.2983415, 55.9756413 -3.1693138, 55.9758911 -3.1692936, 55.9758604 -3.1697211, 55.9753361 -3.1696582, 55.9147293 -3.1511366, 55.9721048 -3.1685421, 55.9721151 -3.1680154, 55.9717652 -3.1690738, 55.9732515 -3.1673385, 55.9715681 -3.1606383, 55.9692273 -3.1671765, 55.9730053 -3.1675964, 55.9756256 -3.1775110, 55.9713870 -3.1706865, 55.9729528 -3.1695492, 55.9751541 -3.1650251, 55.9751577 -3.1653774, 55.9763527 -3.1666992, 55.9766234 -3.1668946, 55.9770520 -3.1688358, 55.9763420 -3.1688202, 55.9768312 -3.1689243, 55.9769477 -3.1679184, 55.9764831 -3.1675618, 55.9766276 -3.1674364, 55.9767630 -3.1679004, 55.9763615 -3.1673944, 55.9762132 -3.1674013, 55.9764423 -3.1672457, 55.9736969 -3.1671845, 55.9743212 -3.1625378, 55.9740795 -3.1632105, 55.9740620 -3.1630357, 55.9742799 -3.1619687, 55.9742593 -3.1633249, 55.9742318 -3.1635897, 55.9752231 -3.1690512, 55.9746912 -3.1702181, 55.9750377 -3.1689925, 55.9746574 -3.1700411, 55.9749450 -3.1691192, 55.9749017 -3.1700282, 55.9720281 -3.1737035, 55.9727889 -3.1744380, 55.9727346 -3.1745843, 55.9721351 -3.1736643, 55.9741171 -3.1730714, 55.9735318 -3.1745179, 55.9740812 -3.1745082, 55.9739348 -3.1746700, 55.9742013 -3.1746074, 55.9744262 -3.1756289, 55.9743317 -3.1760719, 55.9738875 -3.1759382, 55.9743689 -3.1762422, 55.9741727 -3.1757146, 55.9741963 -3.1758890, 55.9740011 -3.1760644, 55.9740555 -3.1757628, 55.9253013 -3.2894404, 55.9241260 -3.2892037, 55.9235279 -3.2886413, 55.9220176 -3.2971855, 55.9737812 -3.1727710, 55.9739374 -3.1725951, 55.9739122 -3.1731923, 55.9747248 -3.1723013, 55.9746745 -3.1725116, 55.9730956 -3.1719611, 55.9737461 -3.1722015, 55.9735419 -3.1722524, 55.9737264 -3.1720461, 55.9734307 -3.1722581, 55.9733652 -3.1721379, 55.9733894 -3.1719573, 55.9732022 -3.1719596, 55.9732758 -3.1714536, 55.9725117 -3.1719833, 55.9716033 -3.1728525, 55.9716849 -3.1726165, 55.9719508 -3.1722289, 55.9718987 -3.1720621, 55.9737219 -3.1688570, 55.9753470 -3.1700225, 55.9746740 -3.1690745, 55.9745309 -3.1710571, 55.9744986 -3.1695250, 55.9745046 -3.1693685, 55.9746944 -3.1711617, 55.9296471 -3.1268952, 55.9759337 -3.1724595, 55.9759996 -3.1723194, 55.9758148 -3.1719840, 55.9760071 -3.1718126, 55.9759678 -3.1720731, 55.9756249 -3.1743429, 55.9756742 -3.1728919, 55.9436134 -3.2678368, 55.9789651 -3.2338860, 55.9718369 -3.3043977, 55.9672312 -3.2394326, 55.9745116 -3.2044948, 55.9740769 -3.2060525, 55.9744149 -3.2047233, 55.9748045 -3.2066664, 55.9691367 -3.2785220, 55.9452261 -3.3675496 +A 5, A 656, B 37 +44 +no +55.9387357 -3.3996538, 55.9380963 -3.4051984, 55.9385221 -3.4040472, 55.9386848 -3.4052874, 55.9333966 -3.3543268, 55.9024677 -3.2131994, 55.9579939 -3.3233291, 55.9028966 -3.1642422, 55.9122291 -3.3948137, 55.8798835 -3.3439577, 55.9226836 -3.2094162, 55.9101467 -3.2093552, 55.9546676 -3.3637002, 55.9222410 -3.1492085, 55.9710480 -3.1879850, 55.9387885 -3.2890803, 55.8869268 -3.2813599, 55.9691744 -3.1898383, 55.9045439 -3.3952157, 55.9729762 -3.1721306 +1730 +1 +55.9259159 -3.2475077, 55.9454993 -3.1874399, 55.9282699 -3.1971794, 55.9163168 -3.3178016, 55.9526200 -3.1872149, 55.9456193 -3.2178696, 55.9311720 -3.2951988, 55.9089361 -3.3201414, 55.9085739 -3.3187295, 55.9117444 -3.3246249, 55.9114205 -3.3241848, 55.9438322 -3.2058300, 55.9502048 -3.1904658, 55.9502374 -3.1901476, 55.9319254 -3.2512353, 55.9173812 -3.3147110, 55.9122188 -3.3171913, 55.9220250 -3.1740037, 55.9222596 -3.1746208, 55.9214872 -3.3034840, 55.9122663 -3.3242829, 55.9095509 -3.2288170, 55.9375488 -3.3118506, 55.9463571 -3.2082808, 55.9524023 -3.1867211, 55.9525000 -3.1872298, 55.9274324 -3.1996630, 55.9140621 -3.2840381, 55.9274598 -3.3076072, 55.9276450 -3.3080783, 55.9239739 -3.2513488, 55.9258469 -3.1648168, 55.9446376 -3.1965778, 55.9444142 -3.1965059, 55.9258509 -3.1647719, 55.9421747 -3.1855648, 55.9412750 -3.1446800, 55.9331086 -3.1362248, 55.9221224 -3.1339138, 55.9223185 -3.1339297, 55.9225101 -3.1339536, 55.9443966 -3.1836641, 55.9219280 -3.1788973, 55.9440570 -3.0985717, 55.9466232 -3.1903104, 55.9116844 -3.3222899, 55.9119672 -3.3224414, 55.9239634 -3.1724671, 55.9220936 -3.1720186 +yes +1 +406 +de:Königstuhl (Odenwald) +37 +yes +2 +360 +55.9813666 -3.1776197, 55.9372632 -3.2070698, 55.9555027 -3.1887801, 55.9589676 -3.2124402, 55.9589390 -3.2120876, 55.9410478 -3.1808355, 55.9469052 -3.1861162, 55.9261476 -3.3062378 +49.4113938 8.7045200 +Thermes de Cluny +yes +Folies Bergère, Théâtre des Champs-Elysées, Salle Pleyel, La Maroquinerie, Bouffon théâtre, Opéra Bastille, Le Cabaret Sauvage, Théâtre National de l'Opéra Comique, Cité de la Musique +49.4270902 8.6483857 and 49.4278529 8.6465726 +51.9789909 8.5077870, 51.9839158 8.5145830, 52.0148098 8.5415843, 51.9930698 8.6117053, 51.9530548 8.6019656, 52.0051281 8.5264278, 51.9719056 8.4584900, 51.9862274 8.6330968, 51.9832360 8.5011688, 51.9489161 8.5784781, 52.0005000 8.5830563, 51.9922699 8.5821902, 51.9986701 8.5845091, 52.0111171 8.6060838, 52.0110252 8.6075822, 51.9526831 8.5894518, 51.9914877 8.4790051, 51.9478258 8.5866769, 51.9845111 8.5016418, 52.0137803 8.5492099, 51.9847361 8.4854709, 51.9859050 8.4877428, 51.9971967 8.5057650, 51.9934233 8.5091802, 52.0119814 8.5542137, 51.9475967 8.5920756, 51.9289095 8.5529507, 52.0113082 8.5270214, 52.0107287 8.5202197, 52.0094113 8.5265262, 52.0037833 8.5215969, 52.0065591 8.5759589, 51.9891284 8.5001010, 51.9846427 8.5287592, 51.9854958 8.5280680, 51.9843934 8.5268438, 51.9417125 8.5793602, 51.9423426 8.5802746, 51.9600857 8.5281274, 52.0045344 8.5226673, 51.9609763 8.5280751, 52.0048839 8.5221348, 52.0147217 8.5248646, 51.9499358 8.5003082, 51.9568591 8.5479920, 52.0024451 8.5653246, 51.9406388 8.5114804, 52.0017368 8.5684745, 52.0018299 8.5675837, 52.0020334 8.5669169, 51.9906984 8.5078615, 51.9570094 8.5337027, 51.9681157 8.5499373, 52.0005457 8.5605587, 51.9963039 8.4716935, 51.9888194 8.5112622, 51.9568731 8.5465415, 51.9333689 8.5654391, 52.0112149 8.5297888, 52.0013439 8.5671531, 52.0008115 8.5610395, 52.0104876 8.6080033, 52.0065198 8.5259435, 51.9839295 8.5004598, 51.9932321 8.6110621, 51.9567876 8.5472991, 51.9837555 8.5001033, 52.0111837 8.5268995, 52.0106909 8.5203429, 51.9621571 8.4624693, 51.9527696 8.6018036, 51.9528793 8.5894680, 51.9717369 8.4582094, 51.9484298 8.5873772, 51.9487421 8.5784654, 51.9923885 8.5822520, 51.9863326 8.6322964, 52.0010481 8.5831553, 51.9990577 8.5845337, 52.0137807 8.5496365, 51.9847954 8.4859472, 51.9861104 8.4873591, 51.9972310 8.5062078, 51.9931065 8.5094547, 52.0114804 8.5539410, 51.9914510 8.4802500, 51.9415032 8.5795671, 52.0051550 8.5262181, 52.0039093 8.5212500, 51.9898013 8.5008912, 51.9847292 8.5279845, 51.9842005 8.5139759, 51.9789415 8.5070326, 51.9525819 8.5921145, 51.9285763 8.5528956, 52.0047086 8.5224081, 51.9603119 8.5285761, 51.9475733 8.5919114, 51.9502642 8.5005356, 51.9568818 8.5332831, 51.9402691 8.5119328, 51.9960941 8.4716263, 51.9884382 8.5106798, 51.9487080 8.5862850, 51.9493095 8.5874506, 51.9483907 8.5883941, 51.9478782 8.5876688, 51.9478908 8.5859766, 51.9482758 8.5858662, 51.9474419 8.5860889, 51.9475824 8.5870706, 52.0104310 8.6074498, 51.9680412 8.5506318, 51.9862135 8.6337019 +49.4163242 8.6709589, 49.3982405 8.6891686, 49.4154939 8.6674299, 49.3984918 8.6889404, 49.4197235 8.6766060, 49.4347006 8.6819337, 49.4275117 8.6831905, 49.4189698 8.6760286, 49.4163577 8.6686492, 49.4179060 8.6686309, 49.4157661 8.6686751, 49.4174626 8.6687152, 49.4136878 8.6671227, 49.4136571 8.6671084, 49.4140866 8.6673605, 49.4128068 8.6670431, 49.4157404 8.6712736, 49.4134424 8.6679610, 49.4165443 8.6709680, 49.4134657 8.6678164, 49.4125591 8.6685224, 49.4147825 8.7194810, 49.4047830 8.6748233, 49.4081724 8.6765377, 49.3736369 8.6882014, 49.4105563 8.7059593, 49.4107724 8.7039613, 49.4072240 8.6872972, 49.4075178 8.6824857, 49.4111078 8.7122962, 49.4229888 8.6430964, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349, 49.4035624 8.6765204, 49.4161640 8.6686617, 49.4149163 8.6654747, 49.4150320 8.7620828, 49.3999783 8.6914430, 49.3659380 8.6888680, 49.4045857 8.6750253, 49.4061766 8.6754688, 49.4103125 8.7748332, 49.4235022 8.6459331 +2 +7 +55.9849796 -3.1929699 +567.8, 446, 481, 480, 376, 375.5, 439.9, 486.9, 449, 539, 296, 258 +yes +10 and 49.4112725 8.7119074, 49.4257744 8.6577657, 49.4131782 8.7072377, 49.4007776 8.6911061, 49.3738871 8.7039058, 49.3744103 8.7047986, 49.3699337 8.6542672, 49.4252823 8.6480351, 49.4190959 8.6518895, 49.3780880 8.6666402 +yes +547 +4 +Cameo Picturehouse, Filmhouse, Cineworld, Vue Cinema +École de conduite Lamartine, ECF, ECF Trinité, Cluny - Saint-Germain and 01.43.26.42.42, C.E.R. Brancion and 01.48.28.03.78, Permis Malin, Auto école Place de Rungis, Auto Moto École Alésia, Caser formations, École de conduite Saint-Charles, Auto-École, ecf, La Réussite, Tour Eiffel Permis +0.75472968250310635 +48.460916044007355 +17 +48.8407193 2.3049672, 48.8400915 2.3026528 +The Salisbury +yes +8 +55.9821414 -3.4001668 +48.8517205 2.3567051, 48.8435991 2.3495369, 48.8443095 2.3492103, 48.8530106 2.3457721, 48.8532232 2.3449207, 48.8396212 2.3497285, 48.8543470 2.3717003, 48.8692308 2.2856346 +no, no, no +828 +342 +CitéCréation, Association du Demi-Millenaire - Les elephants heureux, Guillaume Bottazzi, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation & François Schuiten, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, Mur'Art, CitéCréation, CitéCréation, CitéCréation, Mur'Art, CitéCréation, CitéCréation, CitéCréation, Association du Demi-Millenaire - Les elephants heureux, Association du Demi-Millenaire - Les elephants heureux, Association du Demi-Millenaire - Les elephants heureux, Association du Demi-Millenaire - Les elephants heureux, Association du Demi-Millenaire - Les elephants heureux, CitéCréation, CitéCréation, Franck Margerin/Mur'Art, Mur'Art, Loustal/Mur'Art, Mur'Art, 7e-sens, Gérard Gasquet, CitéCréation, CitéCréation, CitéCréation, CitéCréation, 7e-sens, CitéCréation, CitéCréation, 7e-sens, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, Daniel Tomassi, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, 7e-sens, Guillaume Bottazzi, CitéCréation, CitéCréation, CitéCréation, Kaley Begal, Kaley Begal, CitéCréation, 7e-sens, Tepito Arte Acà, CitéCréation +48.8639483 2.3316516 +32 +86 +0.52731944704845524 +no +Camping Heidelberg +48.8330200 2.3329456 +13 +1899, 1884, 1887, 1877, 1879, 1872, 1873, 1893, 1882, 1880, 1883, 1881, 1897, 1875, 1908, 1920, 1904, 1912, 1910, 1897, 1873, 1882, 1906, 1929, 1864, 1893, 1870, 1886, 1910, 1919, 1919, 1920, 1911, 1916, 1914, 1939, 1877, 1920, 1884, 1923, 1926, 1925, 1868, 1895, 1885, 1877, 1887, 1893, 1863, 1927, 1910, 1900, 1924, 1894, 1871, 1873, 1868, 1863, 1907, 1920, 1899, 1909, 1884, 1913, 1907, 1911, 1867, 1877, 1903, 1872, 1868, 1925, 1926, 1903, 1922, 1923, 1880, 1868, 1908, 1903, 1905, 1924, 1923 +55.9500318 -3.3725551, 56.4397000 -3.3723000, 56.1852392 -3.2168273, 56.0008488 -2.7353237, 56.3678531 -3.8722739, 55.6798776 -4.1134367, 56.2691557 -2.7508106, 55.5400331 -2.7427099, 55.7075978 -2.3785037, 55.8754852 -3.4026956, 55.9743079 -3.9759388, 55.6773034 -2.6087495, 56.1752435 -3.1298042 +55.9501318 -3.1886125 +Kita Tangstedter Landstraße and 53.6560283 10.0207226 +yes +49.3826654 8.6703241, 49.4018281 8.6889374, 49.4018800 8.6877769, 49.4018302 8.6889341, 49.4013098 8.6912411, 49.4013099 8.6912408, 49.4018301 8.6889373, 49.4018280 8.6889343, 49.4034414 8.6858831, 49.4033425 8.6920344, 49.4034077 8.6864942, 49.4053236 8.6938605, 49.4033423 8.6920342, 49.4034078 8.6864940, 49.4034077 8.6864940, 49.4034078 8.6864942, 49.4033423 8.6920344, 49.3795039 8.6788777, 49.3994731 8.6498961, 49.3832632 8.6902896, 49.3795039 8.6788791, 49.3795039 8.6788799, 49.3832635 8.6902896, 49.3795039 8.6788784, 49.3795039 8.6788807 +yes +49.4081527 8.6735594, 49.4176558 8.6587085, 49.4165055 8.6594547, 49.4148711 8.6635210, 49.4045856 8.6498671, 49.4042890 8.6482626, 49.4005255 8.6416909, 49.4077166 8.6770507, 49.4076619 8.6829409, 49.4091366 8.6592347, 49.3876769 8.6645282, 49.3915440 8.6790012, 49.3793134 8.6732898, 49.4258813 8.6617121, 49.4306151 8.6467040, 49.3864285 8.6696286, 49.3773672 8.6667238, 49.3834643 8.6624283, 49.4257744 8.6577657, 49.3974698 8.6477849, 49.4076691 8.6751190, 49.3791702 8.6320031, 49.4131305 8.6546204, 49.4140289 8.6610942, 49.4178759 8.6766696, 49.4213757 8.6586938, 49.4081055 8.6756660, 49.4038715 8.6762894, 49.4054553 8.6752473, 49.4382046 8.6794526, 49.4373909 8.6752550, 49.3975120 8.6522670, 49.4084511 8.6746131, 49.4061961 8.6789422, 49.4278664 8.6462916, 49.4068117 8.6707739, 49.4066118 8.6751595, 49.3699337 8.6542672, 49.4252823 8.6480351, 49.4190959 8.6518895, 49.4234431 8.6469231, 49.4177824 8.6425471, 49.4227696 8.6727444, 49.4156100 8.6707017, 49.4162463 8.6598488, 49.4071975 8.6762084, 49.3931903 8.6817010, 49.3801022 8.6812091, 49.3759036 8.6766890, 49.4096282 8.6811489, 49.4147851 8.6501119, 49.4016680 8.6740567, 49.3632402 8.6222259, 49.3772275 8.6672364, 49.3799233 8.6752091, 49.4317284 8.6827286, 49.3930474 8.6832081, 49.3998558 8.6384200, 49.3780880 8.6666402, 49.3791746 8.6705116, 49.4141167 8.6710146 +22 +224 +55.9518191 -3.1796232 +0.72396396008536001 +129 and 55.8940463 -3.3482149, 55.9067356 -3.2765428, 55.9112129 -3.2971404, 55.8921896 -3.3904545, 55.8928744 -3.3831777, 55.9075397 -3.2601949, 55.9012534 -3.3172353, 55.9052885 -3.3120708, 55.8956436 -3.3085216, 55.8966106 -3.3015427, 55.9064620 -3.2745346, 55.8990943 -3.2945157, 55.9030149 -3.2833882, 55.8985834 -3.2593352, 55.8958844 -3.3085762, 55.8889910 -3.2764883, 55.8905325 -3.2746290, 55.8994919 -3.2311487, 55.9100179 -3.2804925, 55.9101035 -3.2803751, 55.9057184 -3.2756582, 55.9057613 -3.2755133, 55.9062552 -3.2686221, 55.9060912 -3.2635206, 55.9033690 -3.2736040, 55.9034122 -3.2734109, 55.9003911 -3.2685569, 55.8897636 -3.1620915, 55.8898633 -3.1619972, 55.8928258 -3.1331472, 55.8929168 -3.1332421, 55.8984427 -3.2164902, 55.9073595 -3.2601185, 55.9003110 -3.2920130, 55.8916943 -3.3211093, 55.8957908 -3.2027523, 55.8860732 -3.3399261, 55.9027043 -3.2317298, 55.9048951 -3.2401465, 55.8983131 -3.2529409, 55.8982152 -3.2529759, 55.8967785 -3.2616868, 55.8927797 -3.2635293, 55.8657294 -3.3178967, 55.8561715 -3.3367531, 55.9004339 -3.3188436, 55.8988106 -3.1122530, 55.8957287 -3.2025538, 55.8771374 -3.3287515, 55.8866544 -3.3374530, 55.8858646 -3.3375740, 55.9091868 -3.3220855, 55.9082024 -3.1450986, 55.8985472 -3.2526169, 55.8936687 -3.1341152, 55.9062132 -3.1443033, 55.8918723 -3.2994420, 55.9081994 -3.2566236, 55.8948439 -3.2697613, 55.9038948 -3.2819499, 55.9003484 -3.3188428, 55.9004475 -3.3189882, 55.9028769 -3.1704602, 55.8943845 -3.1612267, 55.8964053 -3.3181888, 55.8996433 -3.2948470, 55.8986117 -3.2963244, 55.9093972 -3.2356124, 55.9024688 -3.2478207, 55.9010141 -3.3189125, 55.8986285 -3.2991643, 55.8584472 -3.4177884, 55.8702054 -3.3876295, 55.8969285 -3.3180149, 55.8832955 -3.3373489, 55.8818349 -3.3087404, 55.8896276 -3.3196792, 55.8919785 -3.3134755, 55.8968552 -3.3020135, 55.8927414 -3.3143917, 55.8947508 -3.3012201, 55.8841696 -3.3364601, 55.8807381 -3.3368118, 55.8774138 -3.3755830, 55.9054895 -3.3795410, 55.9018295 -3.3897743, 55.9082028 -3.1062073, 55.9064191 -3.2363051, 55.9089283 -3.2357059, 55.9026053 -3.2453772, 55.8840219 -3.3327174, 55.8909456 -3.2977491, 55.8722326 -3.3121904, 55.9044032 -3.1455205, 55.8975112 -3.2712979, 55.8974642 -3.2720985, 55.8956840 -3.2110087, 55.8948418 -3.2158308, 55.8946710 -3.2156575, 55.8949531 -3.2113167, 55.8939386 -3.2155602, 55.8951467 -3.2161873, 55.8948458 -3.2116936, 55.8951646 -3.2111469, 55.8906180 -3.2303624, 55.8924010 -3.2267274, 55.8934535 -3.2249209, 55.8904695 -3.2299954, 55.9025541 -3.1224669, 55.9013948 -3.1244584, 55.8988473 -3.1283552, 55.8895017 -3.2960696, 55.9103957 -3.3006028, 55.8939577 -3.3715831, 55.8976952 -3.3414516, 55.9008399 -3.3235718, 55.9021342 -3.2501766, 55.8943042 -3.1626305, 55.9038648 -3.1462199, 55.8923325 -3.3903179, 55.8924135 -3.3902631, 55.9074964 -3.1559715, 55.9071592 -3.1590133, 55.8988194 -3.1121826, 55.9025795 -3.1224539, 55.8923592 -3.3903273, 55.9104224 -3.3006131, 55.9112386 -3.2971527, 55.8677512 -3.3773434 +yes +no +yes +no +10 +55.9441247 -3.1693385, 55.9234303 -3.3976554, 55.9805573 -3.1963582, 55.9721507 -3.1841393 +Babalou and 48.8864168 2.3442029 +no +11.629471910596305 +47 +yes +Backstube +67 +48.8379931 2.3270595, 48.8184662 2.3501586, 48.8224797 2.3195383, 48.8611385 2.3941583, 48.8875758 2.3303180, 48.8413274 2.2797801, 48.8384087 2.2847485, 48.8370749 2.4110506, 48.8749189 2.4002158, 48.8979156 2.3166483, 48.8890374 2.3392764, 48.8327412 2.3975487, 48.8256492 2.4145211, 48.8607252 2.4037124, 48.8624937 2.2850289, 48.8410409 2.2593377, 48.8866268 2.3732545, 48.8439975 2.4003952, 48.8301712 2.3992796, 48.8868716 2.3419216, 48.8192381 2.4359906, 48.8848404 2.3887566 +3 and Le B.H.V., Les Brassins de Saint-Malo, Brasserie Artisanale "D'istribilh" +48.8643016 2.3480523, 48.8559492 2.3460263, 48.8427637 2.4358888, 48.8535257 2.3588770, 48.8717374 2.2472517, 48.8189926 2.4540521, 48.8485531 2.3371422, 48.8614768 2.3351679 +49.4236325 8.6489134 +250.5, 164, 493, 118, 103, 82 +yes +yes +68 +23 +yes +Hope Cottage Nursery School, Little Monkeys Nursery, Colinton Private Nursery, Rainbow Kindergarten, Molly's Nursery, Heriot Hill Nursery, Strawberry Hill Nursery, Bruntsfield Nursery, Busy Bees Nursery, Childcair @ Quartermile, The Edinburgh Nursery, Annandale Nursery, The Edinburgh Nursery, St. Leonards Nursery School, High School Yards Nursery, Melville Street Nursery, Jigsaw Childcare, Pinocchio's, Cherrytrees Children's Nursrey, Busy Bees Day Nursery, Grange Loan Nursery, Mr. Squirrel's Nursery, Suffolk House Nursery, Stanwell Nursery, Bruntsfield House Nursery, Carrick Knowe Primary, Baby Rainbow, Childsplay, Playdays, Chapter One Childcare, Forbes Childrens Nursery, Greenhill Montessori Nursery, Grassmarket Nursery, Kidzcare, Cameron House Nursery School, Priestfield Road Nursery, Kirkliston Nursery, Mother Goose Nursery, Arcadia +51.1988497 -0.5342359, 52.6311727 -0.8233218, 41.3108319 -95.9575181, -33.5824431 150.2445219, -25.9698346 27.8650808, -25.9736400 27.8652600, -26.0372900 27.8920900, -25.5044540 28.4463922, -25.5217903 28.4282069, 52.7297337 -1.7987491, 52.3921109 0.6447294, 54.3574707 -4.4222233, 40.3445325 -74.7166957, 54.0949262 -2.1869584, 33.4292336 -117.0890142, 55.9456989 -3.2041882, -1.1207050 36.6765400, 53.4243480 -1.2369997, 52.2416377 -3.3837185, 13.0223265 77.6505234, 51.5377627 -0.0987235, 47.2125030 -1.5695400, -25.8882350 28.4032087, 36.6189649 -121.9377447, 51.6272318 -0.1526823, 48.8612999 2.3312271, 22.4872923 113.9063327, 0.4348980 9.4542956, 0.4332887 9.4532657, -36.7922877 -73.0723960, -33.8241390 25.6422760, -36.8076314 -72.9744860, 51.0492654 -114.0687164, 53.4644562 -113.4849704, 14.6322596 121.0847721, 18.8780929 99.2179229, 33.7856197 -84.3950197, 48.8425065 2.3895916, 43.6116062 3.8801404, 40.1051475 116.0943249, 47.6363317 -2.7652420, 6.3385520 99.7286933, 47.6596572 -122.2851098, 50.5486622 9.6723437, 35.6709511 139.7528418, 35.4639657 133.0622134, 49.3696904 8.0805295, 37.7681571 -122.3929293, 45.6425730 4.2317607, 40.0937331 -88.2370639, -26.1332248 28.0684748, 51.4370173 0.2709137, 47.5997379 7.5311477, 18.7635409 98.8693716, 1.1384088 34.1500964, 52.9514453 -1.1497301, 48.1048971 -1.6752098, 42.6843773 2.8987538, 42.6830084 2.8989583, 42.6831750 2.8991283, 42.6833867 2.8997987, 42.6838436 2.8996083, 42.6839755 2.8981637, 12.0428761 -86.2572275, -12.4374871 -37.9198476, -12.4394027 -37.9212898, 44.6493046 -84.6872466, 44.2651700 -84.6999401, 44.6702932 -84.6078029, 48.1311730 11.5848875, -28.1036427 153.3228934, -23.1571671 -45.7923618, 48.7277620 0.8407551, 50.0068548 8.2698130, 48.7832568 10.1007160, 49.6310598 8.3559793, 51.5268630 -0.0974463, 45.1687263 -79.6411279, -6.8109685 39.2922165, 35.6467344 140.0366765, 43.6855190 -79.6652268, 41.5882626 -93.6359001, 24.1775046 120.5988287, 50.7820762 6.0918977, 51.5081277 0.0287502, 51.4958705 7.4569459, 37.3289376 -121.8887761, 37.3285060 -121.8872828, 50.8644871 6.0929143, 51.2010221 6.7234794, 55.9399107 -3.1697157, 37.4043670 -121.9750903, 28.0695883 -16.7269207, 61.2178485 -149.8925293, 52.9425202 -1.1732481, 43.0717386 -89.3802453, 52.0638062 8.3471023, 48.1658968 12.8300894, 32.2186003 -110.9749173, 48.6632649 6.1906747, 39.6341635 -75.6368097, 50.8997921 -0.3589563, 45.5504406 -73.7472946, 48.8914355 2.2131393, 48.8540260 2.2884911, 52.9039840 -1.4481166, 33.8839367 -84.4662439, 43.4748447 -80.4527762, 33.7572706 -117.4963818, 51.4219396 -0.8883544, -35.2441015 149.1214930, 8.9896160 -79.4999696, 47.6698833 8.9503766, 52.4951997 -1.9179209, 51.8933398 -2.0872818, 32.2824371 -106.7624578, 51.5173536 -0.1539529, 49.0259294 11.5030293, 49.7602434 8.6521710, 45.7772376 4.8598436, 43.2865250 5.6038585, 51.0455374 -114.0614342, 36.8059219 10.1867723, 32.7553947 -97.0818262, 27.9449035 34.3631156, 7.0017821 100.5051788, 51.2729873 -2.4153227, 43.6112641 1.4343458, -36.7924028 -73.0719899, 45.5641207 5.9268421, 45.5638661 5.9266919, -27.2417820 153.1084825, 30.1819664 120.1451672, 54.2083565 -4.6326482, 52.3728617 13.6961740, 44.5142170 6.5500875, 51.5081090 0.0330947, 52.2836497 0.3255828, 51.8929438 10.3972253, 53.5687015 -113.4573109, 43.7241247 -79.3706596, 31.6246498 -8.0136591, 53.0274565 -1.5043101, 47.6696320 8.9510280, 51.3854950 7.3948392, -25.4336167 -49.2682105, 33.3540583 -105.6626733, 49.4076875 8.4075426, 25.3223401 51.4373732, 43.2866114 5.6031736, 50.1330205 11.0008211, 43.7249000 -79.3737811, 43.6463210 3.8691283, 51.6425345 -1.2749190, 1.3352999 103.9602027, 1.3637320 104.0236166, 26.2302635 50.5422308, 3.4249809 101.7939076, 52.4515563 9.1553374, 50.6264398 9.4519501, 53.7909661 -1.5314127, 43.5712110 -89.7689597, -38.1514784 144.3839566, 52.1018237 -2.3168913, 18.8272680 98.9612888, 53.7709250 -2.6270264, 22.1464654 113.5589694, 22.1450671 113.5589572, 52.5122561 -1.9793860, 13.7219070 100.2610199, 51.3721520 -0.1011530, 35.1944610 -111.6538618, 43.0435928 -76.1482253, 32.7428228 -16.7094796, 32.7426376 -16.7098594, 1.4617810 103.7616537, 41.8667630 -87.6458041, -23.5156239 -46.6388650, -23.5159274 -46.6404327, 53.7980540 -1.5276318, -21.1845921 -47.8087384, -23.2193312 -45.8953871, 34.2656905 -117.1869748, 12.9998011 77.6863474, 43.0848995 -73.7832565, 50.8119935 6.8142145, 34.8522920 -82.3542251, -21.2087821 -47.7908708, 51.7634647 -1.2574415, 51.6726747 7.2062735, 21.3742698 -157.7938111, 55.0228629 -1.6195178, 49.0240602 -122.3813390, -25.9346710 32.4385640, 50.3215404 11.9102409, 52.9741827 -1.2465491, 40.5768937 -124.1540170, 36.0289211 -79.0148043, 41.9161023 -74.0140519, -26.2995283 -48.8810522, 51.0123707 6.9812695, 53.4091285 -2.9409488, 51.5270192 -0.1287757, -34.2428550 150.5713381, 45.2656060 5.8758270, 48.8083557 9.2235469, 52.9818949 11.6823931, 52.2734023 -2.1295646, 48.6877060 6.1769675, 32.7267318 -114.6204317, 43.8256935 -89.0148705, 44.9726382 -89.6592015, -22.9777399 -43.4109664, 47.6596737 -122.2852483, 33.8662733 -7.0574761, 32.1054217 34.8085617, 29.6671607 -98.4024525, -25.4298028 -49.2740275, -27.4480918 -59.0217650, 31.6861230 -7.9721599, 35.5729538 -77.3911220, 25.0689108 -77.3996323, 25.0695302 -77.3994748, 48.4215912 -123.3667972, 48.0044602 11.1518218, 52.5170902 13.4499544, 47.6366210 -2.7653027, 37.2296151 -80.4294715, 35.7274104 -0.5901176 +yes +yes +631 +2 +66 +133 +2 +410.44638329019904 +My Big Fat Greek Kitchen +yes +swimming pool +yes +327 +49.4296874 8.6826637, 49.4279757 8.6835849, 49.4147764 8.6710359, 49.4278053 8.7495282, 49.4178891 8.7605933, 49.3974030 8.6486853, 49.3977437 8.6485764, 49.4045638 8.6759283, 49.4075919 8.6845735, 49.4092177 8.6922359, 49.4084542 8.6927289, 49.4078943 8.6929172, 49.4083041 8.6927592, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4015990 8.6856698, 49.4158218 8.6922416, 49.4072954 8.6910173, 49.4082595 8.6914326, 49.4082829 8.6916558, 49.4076226 8.6923209, 49.3808049 8.6889505, 49.3746833 8.6826514, 49.3656861 8.7051775, 49.3741444 8.7033717, 49.3742583 8.7034051, 49.3741763 8.7034993, 49.4103158 8.6974936, 49.4165191 8.6921856, 49.3790412 8.6689354, 49.3792964 8.6699345, 49.4048779 8.6827341, 49.4120923 8.7117858, 49.4151725 8.6902594, 49.4071068 8.6898761, 49.4172306 8.6824331, 49.4108200 8.6918918, 49.4227158 8.6483350, 49.3840770 8.6710133, 49.4160126 8.6922256, 49.4278746 8.6871277, 49.4277708 8.6843289, 49.3809325 8.6701888, 49.3795766 8.6901652, 49.4077632 8.6922107, 49.4101101 8.6935285, 49.4080641 8.6904292, 49.4168755 8.6790034, 49.3992315 8.6710140, 49.4283321 8.6836841, 49.3804723 8.6884268, 49.3807734 8.6884609, 49.4228152 8.6504004, 49.4082494 8.6913249, 49.4278253 8.6839436, 49.4278064 8.7495089 +no +45 +9 +48.8758196 2.3557131, 48.8510838 2.3409320, 48.8730354 2.3533915, 48.8569549 2.3497208, 48.8562998 2.3535246, 48.8414636 2.2996634, 48.8514966 2.3009053, 48.8542089 2.3049026, 48.8539589 2.3040725, 48.8494772 2.3513322, 48.8521302 2.3358217, 48.8553332 2.3464366, 48.8528715 2.3435491, 48.8614418 2.2990188, 48.8513763 2.3250565, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8327885 2.2772902, 48.8375553 2.3201124, 48.8391922 2.3168608, 48.8453963 2.3255943, 48.8405754 2.3213430, 48.8445885 2.3722564, 48.8439502 2.3728916, 48.8310773 2.2770656, 48.8616525 2.3535093, 48.8541427 2.3314320, 48.8501755 2.3620809, 48.8566284 2.3271644, 48.8406788 2.3548958, 48.8661306 2.2897626, 48.8813252 2.3220105, 48.8610917 2.3414339, 48.8706262 2.3242484, 48.8722447 2.3050374, 48.8820013 2.3330275, 48.8450073 2.3757975, 48.8442783 2.3769332, 48.8466279 2.2560360, 48.8351429 2.3731146, 48.8413725 2.3310575, 48.8694555 2.3406786, 48.8388399 2.2765067, 48.8398137 2.3124499, 48.8176870 2.3444409, 48.8398451 2.2739161, 48.8539232 2.3938833, 48.8742514 2.3675121, 48.8470632 2.3766059, 48.8566083 2.3533348, 48.8895985 2.3191714, 48.8632334 2.3399229, 48.8493535 2.3714981, 48.8651992 2.3333992, 48.8565989 2.4064934, 48.8584702 2.3501538, 48.8585293 2.3496680, 48.8534880 2.3040058, 48.8411654 2.3324666, 48.8463168 2.3872077, 48.8594652 2.3441791, 48.8596955 2.3406333, 48.8620104 2.3390904, 48.8611512 2.3495492, 48.8661000 2.3337438, 48.8652752 2.3332993, 48.8677297 2.3303206, 48.8670418 2.3496240, 48.8613539 2.3526643, 48.8563329 2.3553132, 48.8657000 2.3535311, 48.8652453 2.3533870, 48.8443992 2.3820174, 48.8691076 2.3112127, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8729875 2.3210140, 48.8726568 2.3215983, 48.8776040 2.3524312, 48.8741556 2.3274201, 48.8758310 2.3206114, 48.8819076 2.3140835, 48.8751556 2.3094294, 48.8749212 2.3089779, 48.8720777 2.3056372, 48.8715518 2.3062553, 48.8688688 2.3012670, 48.8720769 2.2997667, 48.8721868 2.3033146, 48.8707626 2.3051595, 48.8701277 2.3044062, 48.8674712 2.3054788, 48.8667016 2.3011326, 48.8655118 2.3015698, 48.8713039 2.2970137, 48.8741074 2.2994150, 48.8744570 2.3007315, 48.8763620 2.3015161, 48.8767241 2.3018198, 48.8782249 2.2965872, 48.8888115 2.3939896, 48.8972935 2.3883460, 48.8971965 2.3887591, 48.8952805 2.3850234, 48.8599671 2.3250425, 48.8705380 2.3685763, 48.8293967 2.3790084, 48.8401996 2.3509062, 48.8403358 2.3506549, 48.8725027 2.2851552, 48.8736890 2.2914977, 48.8768968 2.2823678, 48.8722856 2.2840680, 48.8693205 2.2843750, 48.8677158 2.2805552, 48.8581528 2.2756131, 48.8537034 2.3664740, 48.8749075 2.3418631, 48.8770209 2.3458704, 48.8837184 2.2879868, 48.8394916 2.2533681, 48.8396031 2.2624046, 48.8471492 2.3421620, 48.8925549 2.3269370, 48.8507465 2.3484894, 48.8470699 2.3417135, 48.8613479 2.3294517, 48.8420353 2.3432522, 48.8170906 2.3594427, 48.8623669 2.3098112, 48.8593696 2.3144127, 48.8414784 2.2515179, 48.8734234 2.3305255, 48.8715078 2.3339896, 48.8459424 2.3060603, 48.8707314 2.3497989, 48.8800493 2.3536899, 48.8820806 2.3518696, 48.8644441 2.3741599, 48.8539335 2.3775047, 48.8507314 2.3754330, 48.8540777 2.3579438, 48.8466539 2.3999463, 48.8319830 2.3768014, 48.8720026 2.3359899, 48.8543455 2.3561847, 48.8472625 2.3418020, 48.8703752 2.3029557, 48.8738314 2.3297043, 48.8240781 2.3667729, 48.8790223 2.2930687, 48.8246116 2.3235303, 48.8207875 2.3249534, 48.8824856 2.3440987, 48.8558178 2.3536690, 48.8647821 2.3501454, 48.8815254 2.3543330, 48.8313000 2.3882082, 48.8424224 2.3451614, 48.8632587 2.2533252, 48.8660712 2.2550204, 48.8634010 2.3478656, 48.8580953 2.3988158, 48.8353252 2.3805436, 48.8823708 2.3546777, 48.8671989 2.3667020, 48.8410399 2.3210471, 48.8429112 2.3235502, 48.8423484 2.3212962, 48.8320324 2.3866588, 48.8336457 2.2895795, 48.8539543 2.3320945, 48.8764091 2.3236995, 48.8476756 2.3411763, 48.8305332 2.3138423, 48.8763053 2.2944546, 48.8763219 2.2947532, 48.8788573 2.2928071, 48.8761984 2.2930848, 48.8760963 2.2927992, 48.8532277 2.3589001, 48.8817162 2.3010162, 48.8336788 2.3331356, 48.8863474 2.2875098, 48.8740366 2.4050675, 48.8780164 2.4108510, 48.8260635 2.3616139, 48.8239032 2.3657211, 48.8937054 2.3492738, 48.8893918 2.3447704, 48.8706840 2.3716682, 48.8832655 2.3157338, 48.8295968 2.3493740, 48.8892294 2.3935497, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8962268 2.3624023, 48.8381765 2.3815493, 48.8537886 2.3474561, 48.8731938 2.3290960, 48.8212980 2.3643164, 48.8549966 2.4012505, 48.8550533 2.3731077, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8292317 2.3084985, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8840501 2.3678392, 48.8465587 2.2612329, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8868617 2.3693195, 48.8698031 2.3099017, 48.8804349 2.3673901, 48.8343023 2.3639410, 48.8457219 2.3091127, 48.8852759 2.3287719, 48.8853098 2.3300207, 48.8411155 2.2644568, 48.8399853 2.4354878, 48.8720076 2.3153410, 48.8970228 2.3778045, 48.8335588 2.3347973, 48.8743552 2.4101245, 48.8459148 2.3453004, 48.8467486 2.3457052, 48.8464858 2.3468868, 48.8373806 2.3847107, 48.8949298 2.3437869, 48.8529015 2.2772159, 48.8641419 2.3059394, 48.8171104 2.3592722, 48.8706191 2.3164188, 48.8702691 2.3171729, 48.8812617 2.3221621, 48.8784814 2.3330760, 48.8456516 2.3465029, 48.8997033 2.3290489, 48.8413908 2.3722764, 48.8256327 2.3320576, 48.8655047 2.2723194, 48.8708239 2.3060540, 48.8441230 2.3564135, 48.8558123 2.3528997, 48.8562804 2.3531597, 48.8362151 2.2568329, 48.8388419 2.4599061, 48.8695357 2.3416876, 48.8694697 2.3420289, 48.8696274 2.3412758, 48.8626465 2.3146531, 48.8465734 2.3127269, 48.8565840 2.2986464, 48.8460758 2.3058827, 48.8204134 2.4518397, 48.8477097 2.3117779, 48.8477196 2.3115767, 48.8784451 2.2852017, 48.8624814 2.3328854, 48.8543462 2.3467503, 48.8252592 2.4120396, 48.8614367 2.2958080, 48.8605025 2.2943088, 48.8351030 2.4463930, 48.8632541 2.2402764, 48.8618634 2.4100811, 48.8361491 2.2692910, 48.8358166 2.2686689, 48.8222263 2.4483812, 48.8227496 2.4495152, 48.8662682 2.3974540, 48.8381010 2.3148758, 48.8374220 2.3149466, 48.8366275 2.4409423, 48.8999909 2.3448173, 48.9000149 2.3394792, 48.8410576 2.3578991, 48.8379027 2.3622168, 48.8351429 2.4475725, 48.8220818 2.3406030, 48.8531376 2.3591975, 48.8534868 2.3580109, 48.8633082 2.2839525, 48.8171862 2.3326710, 48.8435052 2.3798226, 48.8364120 2.2686709, 48.8764119 2.3969357, 48.8298857 2.3251080, 48.8341531 2.3029351, 48.8341115 2.3027113, 48.8773569 2.4091134, 48.8625518 2.2289847, 48.8686047 2.3172472, 48.8400598 2.2883156, 48.8299997 2.3587358, 48.8299341 2.3586911, 48.8464288 2.2486197, 48.8480791 2.2445917, 48.8947243 2.3931498, 48.8291320 2.4574737, 48.8236788 2.4563722, 48.8705811 2.3031146, 48.8387116 2.3423289, 48.8293120 2.2902026, 48.8321851 2.2870636, 48.8285252 2.2905906, 48.8281768 2.2910589, 48.8301724 2.2903291, 48.8284840 2.2907616, 48.8285477 2.2904442, 48.8294272 2.2900019, 48.8284711 2.2909813, 48.8302673 2.2901359, 48.8322580 2.2868131, 48.8516565 2.2795993, 48.8762399 2.3589688, 48.8640413 2.2547307, 48.8688683 2.2484552, 48.8522560 2.2872933, 48.8505461 2.2881984, 48.8507146 2.2878412, 48.8592142 2.2272202, 48.8944990 2.3592670, 48.8964589 2.3589627, 48.8526051 2.2917373, 48.8527475 2.2917705, 48.8524256 2.2914147, 48.8520645 2.2878286, 48.8530231 2.2902364, 48.8521480 2.2910880, 48.8461602 2.2777848, 48.8315682 2.3419531, 48.8844978 2.3727600, 48.8214447 2.3591422, 48.8210623 2.3592593, 48.8296129 2.3926750, 48.8953032 2.3950120, 48.8385749 2.3187258, 48.8621437 2.4083353, 48.8625288 2.4074996, 48.8622745 2.4082713, 48.8467200 2.3470841, 48.8594021 2.3997394, 48.9014459 2.3845889 +fuel, drinking water, recycling, post box, fire station, pharmacy, restaurant, atm, townhall, shelter, fast food, parking, college, telephone, taxi, toilets, post office, car rental, bank, kindergarten, wifi, biergarten, police, vending machine, car sharing, bench, grave yard, public building, place of worship, cafe, hospital, pub, nightclub, clock, library, grit bin, bar, cinema, fountain, hunting stand, artwork, waste, waste basket, bicycle parking, school, veterinary, heikopter, repair, dentist, shop, bicycle rental, theatre, doctors, social facility, video games, solarium, locker, swimming pool, car wash, university, food court, dancing school, parking entrance, marketplace, motorcycle parking, ferry terminal, youth centre, tradeoff, fire hydrant, ice cream, driving school, childcare, club, waste disposal, art gallery, animal shelter, charging station, science park, community centre, arts centre, boat rental, nursing home, brothel, parking space, bbq, bus parking, fraternity, monastery, hotel, smoking area, courthouse +ku17, Eiscafe Capri, Merlin, Cafe Wema, Cappuccino, Café Blank, Zum Schwarzen Walfisch, Florian Steiner - Kaffee und Wein, Nectar, Jules, Bar Centrale, Cafe Florian, Internet City², Frollein Bent, Strohauer's Cafe Alt Heidelberg, Gundel, Riegler, Moro Caffé & Thé, Café Rossi, St. Anna No 1 Chocolaterie, Schiller, Greystones, Literaturcafé, Eisdiele Roma, Chocolaterie YilliY, Café Burkardt, Hörnchen, Café Knösel, EuroTreff, Café Riegler, Hemingway's, Cafe Fresko, Medòcs, Coffee Inn, Göbes, InternetCafé, Tchibo, Heidelberger Internetcafé, Villa Lounge, Riegler, Mildner's, Molkenkur Café, Mildner's, La Flamm-Pâtisserie, Starbucks Coffee, Wiener Feinbäckerei, Kamps, Petit Paris, Extrablatt, Schmelzpunkt, Lavazza, Regie, emma Café-Bar, Starbucks, Cafe Romantic, Extrablatt, Café Gegendruck, Marstallcafé, Casa del Caffé, Café PUR, Keplers (Café Alte PH), Cafe Bar Vivo, La Bohème, Café Moro, La Fée Bar Café, Bergheim 41, Bio: Eismanufaktur Heidelberg, Riegler, Coffee Cream, coffee nerd, Zeitreise Café & Laden, Princess Cupcakes, Pannonica, friedrich, Amorino, Eispalast, Gelati, Pilgrim, Kaffeezimmer², Macaronnerie, Schafheutle, Café Molkenkur +168 +fr:Regard de la Roquette, fr:Thermes de Cluny, fr:Enceinte de Philippe Auguste, fr:Arènes de Lutèce +48.8560795 2.3115715, 48.8507240 2.3518758, 48.8631692 2.3329513, 48.8660977 2.3554138, 48.8643016 2.3480523, 48.8779237 2.3345515, 48.8626245 2.3025393, 48.8662844 2.3817490, 48.8403827 2.3113658, 48.8864800 2.3399022, 48.8957518 2.3879761, 48.8547934 2.3662431, 48.8651191 2.3417893, 48.8551205 2.3589562, 48.8695018 2.3546892, 48.8957352 2.3886935, 48.8616153 2.3542965, 48.8339752 2.3324559, 48.8836865 2.3338083, 48.8660456 2.3145051, 48.8602845 2.3247488, 48.8559492 2.3460263, 48.8575222 2.2845690, 48.8414574 2.3172246, 48.8677629 2.2935696, 48.8625016 2.3453019, 48.8403652 2.3414281, 48.8705899 2.3500828, 48.8629386 2.2890051, 48.8618163 2.2873421, 48.8749151 2.3431481, 48.8411575 2.3473052, 48.8565109 2.3263842, 48.8519070 2.2652250, 48.8703234 2.2765175, 48.8716440 2.2881063, 48.8327663 2.3893382, 48.8302877 2.3141843, 48.8557584 2.3320096, 48.8716204 2.2814131, 48.8513494 2.3555880, 48.8483211 2.3294718, 48.8677268 2.3223990, 48.8591945 2.2851420, 48.8522269 2.3350050, 48.8506815 2.3410772, 48.8476741 2.3140391, 48.8830345 2.3077236, 48.8513629 2.3410046, 48.8547304 2.3248616, 48.8554427 2.3276941, 48.8434645 2.3207843, 48.8456499 2.3395974, 48.8434624 2.3362665, 48.8536113 2.3476422, 48.8718820 2.3312120, 48.8656784 2.3307909, 48.8495079 2.3483856, 48.8585526 2.3597161, 48.8533658 2.3493036, 48.8526313 2.3500601, 48.8404563 2.3198526, 48.8607161 2.3525007, 48.8672999 2.3221942, 48.8960350 2.3884154, 48.8405179 2.3703276, 48.8465117 2.3551571, 48.8367685 2.3218491, 48.8678618 2.3225499, 48.8530966 2.3611794, 48.8762675 2.3826909, 48.8640279 2.3450171, 48.8435231 2.3731854, 48.8340000 2.3323000, 48.8573239 2.3286291, 48.8609823 2.2977973, 48.8418109 2.3577568, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8474726 2.3606473, 48.8848436 2.3445206, 48.8546351 2.3638127, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8614029 2.3519903, 48.8590015 2.3547571, 48.8442282 2.3447813, 48.8661515 2.3122667, 48.8505164 2.3621847, 48.8506605 2.3437398, 48.8612342 2.3554751, 48.8602237 2.3588061, 48.8590543 2.3618044, 48.8598775 2.3620895, 48.8581216 2.3616628, 48.8545855 2.3356172, 48.8352761 2.4093810, 48.8483248 2.3344265, 48.8599188 2.3265259, 48.8586563 2.3821295, 48.8473326 2.3227159, 48.8613305 2.3197359, 48.8433913 2.2512835, 48.8707890 2.3259075, 48.8791676 2.3124361, 48.8794667 2.3125380, 48.8553042 2.3158566, 48.8755169 2.3105465, 48.8370020 2.3826461, 48.8655978 2.2993165, 48.8643054 2.2977930, 48.8641085 2.2964123, 48.8373190 2.3319319, 48.8653887 2.2935591, 48.8260871 2.3327019, 48.8432079 2.3186583, 48.8715060 2.2814214, 48.8594040 2.2672517, 48.8421181 2.3562419, 48.8812030 2.3335190, 48.8551953 2.2808684, 48.8463579 2.2732198, 48.8548859 2.3560679, 48.8547299 2.2897642, 48.8428133 2.3337722, 48.8880654 2.3406347, 48.8612559 2.3587824, 48.8344502 2.3520875, 48.8485953 2.3340184, 48.8662091 2.3108575, 48.8582260 2.3619639, 48.8530932 2.3611938, 48.8766546 2.2633259, 48.8563449 2.3387717, 48.8657061 2.2966614, 48.8576820 2.3627148, 48.8614768 2.3351679, 48.8553966 2.3450136 +yes +48.8882750 2.3740777 +Gonesse, Montmagny, Villepinte, Chatou, Neuilly-Plaisance, Neuilly-sur-Marne, Aubervilliers, Franconville, Stains, Clichy, Le Blanc-Mesnil, Chelles, Saint-Leu-la-Forêt, Le Vésinet, Enghien-les-Bains, Aulnay-sous-Bois, Nanterre, Épinay-sur-Seine, Villiers-le-Bel, Les Lilas, Deuil-la-Barre, Villemomble, Montesson, Les Pavillons-sous-Bois, Bois-Colombes, La Garenne-Colombes, Montmorency, Rosny-sous-Bois, Sannois, Saint-Brice-sous-Forêt, Neuilly-sur-Seine, Le Bourget, Houilles, Courbevoie, Livry-Gargan, Gennevilliers, La Courneuve, Le Pré-Saint-Gervais, Suresnes, Montigny-lès-Cormeilles, Saint-Gratien, Montfermeil, Argenteuil, Sartrouville, Cormeilles-en-Parisis, Rueil-Malmaison, Noisy-le-Sec, Bobigny, Domont, Soisy-sous-Montmorency, Marly-le-Roi, Sevran, Garges-lès-Gonesse, Ermont, Bagnolet, Bezons, Carrières-sur-Seine, Le Raincy, Montreuil, Arnouville, Pierrefitte-sur-Seine, Villetaneuse, Sarcelles, Romainville, Saint-Denis, Gagny, Maisons-Laffitte, Levallois-Perret, Eaubonne, Colombes, Drancy, Villeneuve-la-Garenne, Bondy, Saint-Germain-en-Laye, Le Pecq, Asnières-sur-Seine, Puteaux, Pantin, Saint-Ouen, Clichy-sous-Bois +ARLT, Thalia, Kamps, Der Kleine Gundel, City-Markt Rüdinger, Stefansbäck, Apollo Optik, Bäckerei Grimm, Lichtblick, Tally Weil, Vodafone, FOSSIL, Jokers, C&A, Claire's, Freudenhaus, WMF, GameStop, Zuckerladen, Souvenirs und Fotokarten, Expert Esch, dm, Apfel und Korn, Tchibo, Deichmann, Saturn, Dritte-Welt-Laden, H&M, Runner's Point, S'Oliver, Penny, Moments, Kamps, Schuh und Leder, Basic Hairshop, Anouk, Vodafone, Thomas Cook, Hallhuber, E-Plus, TeeGschwendner, fielmann, Gravis, L'Epicerie, Käthe Wohlfahrt, Theile, I Am - Designmanufaktur, Globetrotter, Buchhandlung Himmelheber, Reisebuchladen-Heidelberg.de, Göbes Sophie, Knoblauch Schreibwaren, Buchladen - artes liberales, Josef Seibel, Reformhaus Escher (Vita Nova), Lebe Gesund, höllwerk - Schmuck & Design, Mantei, Douglas, Promod, Many Market, Nativo, Benetton, Der Frisörladen, Barber Shop, Hassbeckers Galerie & Buchhandlung, Chocolaterie Knösel, Just B - Tattoos and Bodyart, Kraus, capcorner, City-Markt Rüdinger, TK Maxx, Antiquariat Hatry, Swatch, mod's hair BASIC, Piccadilly English Shop Heidelberg, Butlers, McPaper, hollenbach, Antiquariat Friedrich Welz, friedrich, faire und feine Mode, Rad Kirch, Uli Rohde Musikladen, Abele Optik, Brax, Bären Company, Christ, Diller, Eyes + More, Pandora, Planet Sports, Roland, Schmitt & Hahn, Telekom, Anouk, dielmann, Max & Co, Marc O' Polo, Carat, tilly de lux, Fruchtmarkt Lehnert, Farbenreich, The iPhone Doc, Ronnefeldt Teeladen, The Flame, Galeria Kaufhof, Darmstädter Hof Centrum, Schmuckatelier Mämecke & Rauen +49.4139877 8.6924247, 49.4109186 8.7008914, 49.4106826 8.6994355, 49.4040505 8.6756301, 49.3829241 8.6902846, 49.4039976 8.6856096, 49.4097177 8.7040465, 49.4114134 8.7086707, 49.4119689 8.7118856, 49.4281123 8.6871978, 49.4126726 8.7089452, 49.4178625 8.7592553, 49.4126347 8.7117604, 49.4099566 8.6945913, 49.4239696 8.6485990 +254 +49.4641062 8.6650466, 49.4707059 8.6520153, 49.4751871 8.6837099, 49.4760467 8.6993112, 49.4708285 8.6603546, 49.4703095 8.6676207, 49.4750609 8.6692928 +4 +10 +2 and 48.8189926 2.4540521, 48.8338878 2.3397983 +7 and 55.9378000 -3.1771354, 55.9539470 -3.1868320, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9543521 -3.1879033, 55.9285894 -3.1685115, 55.9821414 -3.4001668 +M8, M9, M90 +8 +Forrest Road +Mo-Su 07:00-23:00 +17 +Vodafone, Vodafone, E-Plus, Handy Shop XXL, Telekom, Kabel BW Shop +55.9534686 -3.2733947, 55.9441043 -3.1618477, 55.9229465 -3.1946655, 55.8825188 -3.2371629, 55.9510042 -3.1642474, 55.9429880 -3.1595009, 55.9455214 -3.1515881, 55.9215151 -3.2311690, 55.8810613 -3.2505433, 55.8919644 -3.2565320, 55.8910980 -3.2702735, 55.9174462 -3.2363371, 55.9127712 -3.2038639, 55.9145086 -3.1951990, 55.8191953 -3.3924956, 55.8830619 -3.2214017, 55.9509656 -3.1565911, 55.9919155 -3.3568399, 55.8933347 -3.2822591, 55.9556726 -3.1824089, 55.9458711 -3.1740706, 55.9425607 -3.1620707, 55.8878252 -3.3839342, 55.9836455 -3.3447505, 55.9900950 -3.3422624 +Aéroport de Paris - Orly +Hilton Edinburgh Airport Hotel +47.5645037 9.6756220, 48.1917560 11.2604606, 49.3608074 11.0505849, 49.4836508 10.9835475, 50.0042360 9.0624526, 49.9124639 10.8920010, 50.0012000 9.0683238, 49.9766936 9.1566232, 49.9845565 9.1639906, 49.1891725 11.1874594, 49.3687740 11.3057878, 50.0452138 10.2340424, 50.2598647 10.9666557, 50.2583057 10.9646137, 47.8174163 10.5345680, 49.7502077 9.1790325, 49.7922309 10.0258144, 48.3830181 10.4715717, 49.3013427 10.5817647, 49.3053748 10.5718491, 50.1264898 9.1161746, 50.2753812 10.9496791, 49.9769664 9.0630892, 49.8037322 10.1655094, 49.6668795 10.1406107, 50.0652139 9.6733677, 50.3707482 9.9786124, 49.4279782 11.1963294, 48.6831112 10.8195081, 50.2743347 10.9487550, 50.2137895 10.2353350, 48.7077119 10.7968484, 48.3552389 10.9787058, 48.6793602 10.8398813, 48.6721648 10.8601728, 48.4303767 10.6017105, 49.9958129 10.1809319, 49.8793240 9.1557405, 48.7156858 10.7825564, 49.3028718 10.5524844, 49.8400694 9.1484987, 49.9843990 9.1243968, 49.9843771 9.1237845, 49.9761625 9.1464150, 47.3109958 10.2208189, 49.3155280 10.5816018, 48.5732476 10.8367687, 49.3017966 10.5709171, 48.5764989 10.8567173, 50.1940569 10.0700854, 47.6606856 10.3497681, 49.7971702 9.9451436, 50.1363929 10.0063977, 48.4393971 10.4521982, 49.9762960 11.0354409, 49.7951466 9.9470589, 48.4034482 10.4623921, 48.1529504 11.2588493, 50.0480580 9.0084119, 47.7145411 10.3070947, 47.9066812 11.2801198, 48.4985997 10.4042132, 47.4419272 11.2615129, 49.6214957 10.1161508, 48.6364406 10.8242648, 49.1588258 11.1729362, 48.6624403 10.5210395, 49.4555015 10.7961629, 49.7258203 10.2733316, 49.7255798 10.2739995, 47.9136232 11.2885710, 47.9129446 11.2857099, 49.7306394 10.2306925, 47.9081793 11.2773451, 47.9111525 10.5746665, 47.5549764 10.3203858, 49.6659633 10.0619433, 47.9477750 11.2973595, 48.0026541 11.3213801, 48.0029713 11.3200625, 47.9431822 11.2570840, 49.7164805 10.2729330, 49.6100055 10.9988801, 50.1997379 10.9686029, 49.7981681 10.2394993, 49.7998357 10.2304975, 49.9147722 9.2009359, 47.9410010 11.3016771, 47.9488326 11.3073731, 49.8596561 10.4283018, 49.7178240 10.2789839, 49.4563268 11.0759138, 50.2588834 10.9676799, 50.0162735 9.7428022, 49.3793293 11.2078031, 50.2594742 10.9696824, 50.2596861 10.9742321, 49.3029794 10.5717125, 49.9629473 11.1017275, 48.0392695 11.1435565, 49.5612829 11.3326991, 49.9117025 9.0621792, 49.7987170 9.9438007, 48.8732355 11.3304000, 49.7970854 9.9309045, 49.6214272 10.8281375, 49.3732280 11.2134993, 49.3028074 10.5770004, 49.3022738 10.5773653, 48.1804331 11.2800013, 49.8044695 9.9274491, 49.7966414 9.9259417, 50.0952309 9.7217054, 48.1907849 11.2798642, 47.9032628 11.2772693, 47.9003514 11.2741039, 49.6993172 10.0079515, 49.7795207 11.1831885, 50.1098191 9.8196676, 48.1792348 11.3734128, 49.3561733 11.0994230, 49.3475346 11.1144511, 48.3834205 10.4714165, 49.4556965 11.0803640, 49.8559541 9.9555809, 49.9983539 9.1085923, 49.9680252 9.5605615, 49.2380981 11.1638554, 49.1507114 11.3923191, 49.9318443 10.9552363, 49.7757531 9.9302996, 48.9243720 10.5417636, 49.9479898 9.1547196, 49.8947803 10.7258987, 48.0738927 11.3926369, 49.8480148 10.0638963, 49.4532944 11.0807305, 47.4676949 11.2491918, 49.7278952 10.2465747, 49.3013933 10.5813723, 49.9580652 9.5624478, 50.1899940 10.9244425, 49.8990567 10.3483512, 50.4616412 10.0202973, 49.0143666 10.9906645, 50.3251895 9.7798956, 49.9708810 9.3061199, 49.8669231 10.2242417, 49.8036251 10.2536001, 48.2738619 10.2290878, 49.4697674 11.1687149, 49.9782548 10.1735166, 49.9719514 10.1713027, 49.9714489 10.1701613, 49.9749985 10.1717629, 49.9739756 10.1742360, 50.0821249 9.4629424, 49.1886050 11.0154692, 49.6369793 10.8503152, 48.1043551 11.2253453, 48.1707150 11.2528747, 50.2493996 11.0489650, 49.3486879 11.0697906, 49.7938977 9.9417177, 50.1240570 9.6186063, 49.7951151 9.9244810, 48.2872819 10.2192824, 49.7060651 10.0246300, 50.0940130 11.0140999, 50.0938638 11.0222558, 49.7274911 10.3164065, 47.9724108 10.1739626, 48.7865388 10.6881358, 47.4336111 11.2579089, 50.0114295 10.4639672, 49.7277244 10.2429385, 47.6066818 11.3147285, 47.7480474 10.6074388, 48.0017408 11.2701528, 49.0175769 11.0081340, 47.6295533 10.1893894, 47.9132392 11.2862167, 49.4492001 11.0791133, 49.7719018 9.2454886, 50.3861394 9.9329049, 49.5400470 10.7102900, 47.6268703 11.2381280, 50.1319979 10.8134964, 49.4725779 11.0358474, 50.0941321 11.0243351, 50.0939697 11.0248649, 49.9233047 10.2362144, 48.4431330 10.7802592, 49.4518375 11.1548748, 48.8044464 10.4946908, 49.3760667 10.1646476, 48.0017688 10.5957050, 48.3788752 10.7774869, 47.9798977 10.3083041, 49.8209353 9.7999591, 48.4080801 10.6837646, 49.8073007 11.1705527, 49.8239347 11.1477475, 49.8462447 10.0556889, 48.2015987 10.1362656, 49.5849742 11.0541747, 49.5846415 11.0658824, 49.5855024 11.0604600, 49.5887762 11.0703214, 49.5887954 11.0736693, 49.5771080 11.0872537, 49.5783210 11.1007853, 49.5829777 11.1038052, 49.6283830 10.5413943, 49.8220062 9.9402939, 49.8203829 9.9301434, 49.8140956 9.9396143, 48.7073907 10.6685039, 49.7398938 9.2446445, 49.7355434 9.2405658, 49.5797883 11.1318384, 49.5800402 11.1324198, 49.5719765 11.0830531, 49.5677990 11.0849588, 49.5609001 11.0924246, 49.5681364 11.0689140, 49.5708790 11.0680247, 47.8189913 11.3224155, 49.7244775 9.2299795, 49.7248770 9.2293711, 48.4686468 11.1766687, 49.9589117 10.8087491, 49.8871153 9.1178803, 48.0340516 11.2124902, 50.0571508 11.0729935, 50.0514811 10.2419621, 48.5779716 10.4885527, 49.7135651 10.1330925, 48.6886965 10.9194547, 47.6855301 10.1332724, 50.0201111 10.2162916, 48.2558722 11.0933001, 49.7865362 9.3648841, 49.4242659 11.1773818, 47.5859700 11.0639976, 47.5433790 10.4274455, 47.5964215 11.0654629, 49.7721400 10.6860600, 48.3843367 10.8229418, 49.6055564 11.0142816, 48.1888895 11.2264458, 49.0097753 10.8440491, 50.2736630 10.9490065, 49.8415675 11.2064513, 48.0367037 11.1887722, 47.9699197 10.9587540, 47.9727825 10.9565821, 47.5869550 10.6152976, 47.6663871 10.7409189, 50.1163113 9.8925864, 48.0669364 10.9956216, 50.1583224 10.5557718, 49.7743609 9.9823905, 50.1503594 10.1029654, 49.5837217 11.0347448, 49.5835680 11.0381075, 49.5779627 11.0366973, 49.5323221 11.0949302, 50.0383957 10.1050053, 50.0414034 10.1165266, 49.4719068 10.9952115, 49.4728549 10.9963617, 49.5102362 10.0432970, 49.4791364 10.9858762, 49.4717518 10.9960697, 50.1003879 10.5878290, 50.0501235 10.1422209, 48.1910596 11.3134435, 50.0586195 8.9998085, 48.1716866 11.2891123, 49.9617054 10.0518851, 49.7426624 9.7182264, 49.3274576 11.3453758, 50.0222269 11.2001046, 50.1078612 9.9327703, 49.4536913 11.0800086, 49.6199523 11.0187751, 47.5548126 10.7321880, 50.0394083 9.0653132, 50.4840139 10.1832475, 49.5426210 11.3374210, 47.7364685 10.7761580, 49.5959178 10.9480422, 49.4554430 11.0700439, 48.0426344 10.2945479, 48.6126614 10.9500893, 48.0814807 10.8544651, 48.1623524 10.8066057, 48.1465398 10.8191243, 50.4968425 10.1786164, 49.6103445 10.9654205, 48.3676250 10.8969115, 49.3605749 11.3519976, 50.5010842 10.1143538, 49.4463529 10.3036488, 49.9754844 9.1779534, 47.6097785 9.9042077, 50.2544516 10.9647986, 49.0460002 11.3538095, 49.5978172 11.0040967, 49.5984193 11.0080342, 49.6007476 11.0144054, 49.9097705 10.8319451, 49.6886843 9.4155824, 50.0451147 10.2256217, 50.0188478 9.3635115, 48.6986345 10.9775657, 49.9996359 9.0602127, 48.4362093 10.1872509, 50.0922889 9.6522458, 49.4483665 11.0863447, 50.5106076 10.1023834, 50.5132156 10.1048660, 50.2125278 10.9380856, 49.8114903 10.0129581, 47.7270982 10.3387905, 50.0194156 9.2635056, 49.9663879 9.1856672, 49.9686216 9.2033126, 47.9424984 11.3431273, 50.0471266 9.0803453, 50.2010526 10.9527322, 48.2445643 10.3686453, 50.0252099 9.2972011, 49.6154988 10.3092219, 50.1394576 9.8749448, 48.1278863 11.3497181, 47.7633885 10.2960897, 49.9126111 10.1379856, 49.7203673 11.0601324, 49.5785264 10.8406085, 48.1303964 10.2218735, 49.8820339 11.1300099, 49.9949273 9.2766082, 49.9997614 9.2804789, 49.9774224 9.1458993, 50.0497968 10.5720106, 50.1121897 9.8800006, 48.3573921 10.8798938, 48.3575354 10.8799292, 50.0894585 10.2128221, 50.0952367 10.2099885, 49.9279182 10.7537020, 47.5564464 9.6592698, 50.1476870 9.8734272, 49.9800710 10.8546688, 48.3997027 10.8527239, 47.7200990 10.3177561, 49.9766425 9.1393224, 49.7715003 9.5474320, 49.9722482 9.1426877, 50.0080661 9.2025804, 50.2435965 10.5186225, 48.1374225 11.3642089, 47.6319208 10.8479840, 50.1116490 9.6486984, 48.0371732 10.3385081, 47.7010787 10.2943220, 47.7012335 10.2961026, 50.0388313 9.0612891, 47.7514802 10.2469871, 47.7269398 10.3115748, 50.0245932 9.6911894, 49.4948272 10.8065266, 48.3755745 10.8916871, 47.7209713 10.2750525, 50.0932927 9.6671570, 50.0643165 9.1620037, 49.8361603 9.8687822, 49.6896465 11.0099568, 48.0653013 10.2404773, 48.0764092 10.2250972, 48.0741438 10.1991626, 47.8474883 10.6340669, 49.7192490 11.0421798, 49.9472089 10.6129673, 48.9777730 10.8863175, 49.7941658 9.9317878, 49.0253061 11.0055020, 49.5420981 11.3604985, 48.3887190 10.0749717, 50.0232563 9.7965866, 49.7928585 9.9424740, 50.0235275 9.3731392, 48.4911642 11.1847507, 48.0027874 10.2193812, 49.4415884 10.2865204, 49.2190762 10.6676897, 49.2040901 10.7017360, 49.9967356 9.1120639, 48.3838616 11.0471515, 49.5502166 11.0447091, 47.8835529 10.6135457, 47.8866331 10.6122228, 47.7286487 10.3072214, 49.4860333 10.5672499, 50.0027595 9.1002640, 50.0508054 10.2135347, 49.3452344 10.5098414, 49.9939430 9.5826016, 47.7666534 10.2992963, 50.2218379 10.9028994, 50.2042367 10.9286580, 48.6743210 10.8205105, 47.7220243 10.2723610, 47.6003867 9.8854237, 49.9228189 10.7769457, 49.6777552 9.2316082, 49.3970486 11.1262502, 49.5696464 11.3112755, 50.0807288 9.1119339, 48.8432843 10.6049178, 50.1840124 10.3599152, 50.0445931 9.0224418, 49.6180199 10.6306271, 49.3855010 11.2133431, 49.4653009 11.2455613, 50.2738698 10.9460111, 50.2740126 10.9465172, 50.2736933 10.9464107, 50.3009356 11.0212587, 49.8828192 10.8963667, 50.0177947 11.3252030, 48.9255859 10.5001108, 48.1587358 10.8316505, 48.1523379 10.8592314, 49.5168691 10.5187847, 49.7832351 9.8172359, 49.6093000 10.2743000, 49.5545131 11.0786710, 47.5539683 10.0209528, 49.7933694 9.9239401, 50.0989052 10.1794705, 49.5697539 11.3399346, 48.7652337 11.3044727, 47.5983532 11.1855142, 47.5561583 9.9641943, 50.0853057 9.9448500, 50.0481066 10.3334860, 49.5661346 11.0160944, 49.6926339 10.9976604, 47.9178138 11.2048534, 50.3240837 10.2164507, 48.1191023 11.1316690, 49.9511533 9.6731332, 47.7361150 10.3078127, 50.1068714 10.2236964, 50.0444236 10.1297437, 47.9564047 11.3632268, 47.3149196 10.2665696, 50.0600050 9.2357066, 49.6568842 11.0583057, 49.7210233 11.0552324, 49.7855645 9.5196414, 49.6377725 11.0697594, 49.7182173 11.0660421, 49.8898746 10.1576760, 49.6823210 11.0692847, 49.9326046 10.3652365, 49.8001754 9.9359286, 49.8001754 9.9359410, 50.0785634 9.1938671, 49.3190811 10.4766577, 47.7006458 10.3100172, 49.6668139 11.0697145, 47.3090259 10.2945389, 49.1672629 10.3546860, 50.0610078 9.0126947, 50.1124977 10.1788871, 49.7907406 9.7543083, 50.0835399 11.3315150, 50.1316444 10.8172494, 50.1306654 10.8134916, 47.9450697 11.1834532, 47.5529805 10.0247259, 49.7671397 11.0796935, 48.2245720 10.3729953, 49.7399321 10.1621791, 48.0613572 11.2266624, 49.7228699 11.0658476, 47.4559350 11.2758423, 47.8748319 10.5326390, 49.7587008 9.9798297, 48.0744642 11.2630791, 50.2073315 10.0917382, 47.6967777 10.3451365, 49.8464216 11.0367188, 49.3662294 11.3096085, 48.0749573 11.2580368, 47.6847222 10.4126955, 47.7438297 10.2245692, 49.5202124 11.1286750, 49.7992164 9.9420775, 48.1405264 11.0193437, 50.0038463 9.2022640, 50.0033674 9.2024593, 50.0033156 9.2023493, 49.5474904 11.3311641, 47.7800823 11.1272811, 47.5822042 9.8499454, 49.6504742 9.9412032, 49.4284487 11.0856285, 48.1200435 11.3643107, 49.4080404 11.0945211, 49.6704405 10.9295047, 49.7773560 9.1903451, 49.1875381 11.0258093, 49.5573571 11.3376876, 49.9997940 9.2157125, 47.5023951 10.3301636, 48.3080477 10.8951232, 48.6790671 10.8204961, 49.7603667 10.1693043, 47.7716047 11.3153159, 47.7740347 11.3283659, 49.7911340 9.9347407, 48.3488417 10.5851900, 49.1314094 10.3905568, 49.6786902 10.0657015, 50.1506416 10.2052209, 50.0554302 10.2249170, 48.6693239 10.5122669, 47.3707494 10.3584031, 48.3582039 10.5952767, 48.3558373 10.5896427, 48.0302908 10.8525179, 49.2153402 11.1430235, 49.5419494 11.3432673, 48.5941545 10.5418061, 49.5290954 11.3210636, 49.7025130 10.3167934, 49.9233224 9.1575897, 49.6892285 9.3729957, 49.4728015 10.9918927, 47.9483644 11.2978052, 49.1868686 11.1976287, 50.0612784 9.1505055, 49.7306848 10.2298315, 47.6258509 9.9781993, 47.8049408 11.1960620, 49.7874912 9.9360832, 49.7884396 9.9365530, 47.4458890 10.2753054, 47.6138892 10.5938423, 47.6146175 10.5964515, 49.7199662 11.0576030, 49.6968431 9.2904653, 49.8907183 9.7520487, 49.8661914 9.7805145, 48.9931521 11.3673226, 49.3700693 11.1852992, 49.4153205 11.0253169, 47.6889758 11.1840864, 47.7219398 11.2945828, 49.4503794 11.2104533, 50.0548172 10.0107407, 49.7830009 9.4544131, 48.1897158 10.8269885, 49.4493131 11.1490114, 49.6833604 9.3650835, 49.6321395 10.9234401, 49.7235776 9.7385532, 49.7919770 9.2677067, 49.8011523 10.1625284, 48.0840599 10.8580061, 48.0506355 10.8773806, 49.5315196 11.0047675, 49.4568640 10.5930690, 48.3969018 9.9999972, 49.7099827 10.0226918, 49.6906276 10.0575946, 49.9978054 9.1814089, 49.4061558 11.2850594, 49.6745103 10.0204639, 48.0967228 10.9185587, 48.2814995 10.4848715, 49.4486914 10.6347427, 49.0586716 11.3190942, 49.0672116 11.3132756, 49.7459368 9.9928879, 48.5979327 11.2976076, 49.5922516 11.0522246, 49.6906096 11.1008071, 47.9556546 10.8697326, 47.9673121 10.9183741, 48.6556535 10.2793136, 47.9632050 10.8787058, 49.6502619 11.2472294, 49.8124528 9.8288392, 47.6446179 10.7295722, 50.0487739 10.4111525, 49.6093876 11.0005095, 50.2478755 11.3297769, 49.4544927 11.0480158, 49.9540225 9.1169443, 49.8813207 10.8680894, 49.8907921 10.8829169, 49.8858747 11.3346866, 47.9410297 11.3016252, 49.8935679 10.8779344, 50.0015859 10.1991002, 50.0019106 10.1995409, 49.2990096 10.4097309, 48.9222054 11.1980123, 47.6543967 10.2580417, 47.6256276 10.6899881, 50.2329225 10.7273277, 48.0496911 10.7834808, 47.6452968 10.4412319, 50.2834211 11.0269897, 49.8684456 9.0912272, 49.8664885 9.0801663, 49.4857054 10.9490790, 49.8588983 9.0844705, 47.5464361 10.2806561, 47.9353129 11.0794910, 48.4194543 11.0959927, 48.7191192 11.1036130, 49.0779854 10.6278093, 49.6527115 9.9460333, 49.4050315 11.2926985, 47.4381358 11.0495098, 49.5779343 11.1683618, 48.0496211 10.8715988, 48.0460830 10.8749417, 49.8823055 9.5946429, 50.3261561 10.1942060, 49.0096436 10.5004746, 50.0218969 10.2104849, 49.9975724 10.2051489, 49.6486918 11.0055125, 49.6396102 11.0018464, 47.7706974 11.3175793, 49.2971394 10.4224499, 49.9043847 10.1925310, 49.2991739 10.4129817, 49.0263084 10.5697255, 49.0229720 10.5678961, 49.4567316 11.0810079, 49.7969352 10.0326571, 49.4519331 11.0756381, 49.0603052 10.2922231, 49.6885963 10.2005582, 50.0463262 9.2106036, 49.9758962 9.4013618, 49.4651000 11.0933450, 50.0371178 10.6203680, 49.5696911 11.3111204, 48.6534476 10.4951067, 49.4521167 11.0522513, 49.3783037 10.1804272, 50.0044733 9.4174121, 49.3765250 10.1742094, 48.0638021 11.2036139, 49.4271207 11.0462448, 49.2942609 10.4159890, 49.6075148 10.9690880, 49.4406952 11.1143875, 49.2301097 11.1002383, 49.2030593 11.0503672, 49.8393342 10.0303396, 49.8450631 10.0188812, 49.8374383 10.0363478, 49.4519991 11.0892892, 49.8331266 9.1351218, 49.4541507 11.0730452, 49.3824822 11.0376624, 47.5779644 9.8409547, 49.9461964 10.5660012, 49.0691833 10.3196646, 49.8813681 10.8709591, 49.8813104 10.8704349, 48.6792146 10.8199705, 49.3880327 11.3025418, 50.0989308 10.2009066, 48.3594388 10.8985692, 50.0691374 9.1647686, 50.0829706 9.1744757, 47.7242821 10.3141892, 47.7285579 10.3103498, 47.7221323 10.3118430, 47.7262186 10.3160945, 47.7251108 10.3069304, 47.7262768 10.3160850, 47.7204451 10.3137190, 47.7251096 10.3069306, 47.7309546 10.3094793, 47.7266756 10.3143688, 47.7262180 10.3160963, 47.7266754 10.3143710, 47.7221327 10.3118425, 47.7253575 10.3158079, 47.7221319 10.3118433, 47.7266744 10.3143693, 47.7275054 10.3127716, 47.7309538 10.3094786, 47.7222724 10.3151809, 47.7262179 10.3160983, 47.7205801 10.3113422, 47.7284022 10.3065761, 49.6663115 9.2174563, 50.0618440 9.1613757, 48.2069586 11.3270236, 50.2010281 10.0796309, 50.2010221 10.0796052, 48.8496834 10.4857345, 48.8482751 10.4858320, 49.7999154 10.0325942, 50.2010192 10.0795865, 50.2010431 10.0796589, 50.1967193 10.0810149, 48.8493967 10.4852209, 48.8517100 10.4934753, 48.8537545 10.4922091, 48.8536370 10.4910977, 48.8537334 10.4921703, 48.8542772 10.4938004, 48.8507618 10.4919803, 48.8532499 10.4925690, 48.8542877 10.4937795, 48.8532700 10.4925383, 48.8542646 10.4938180, 48.8536497 10.4910542, 48.8507841 10.4919674, 50.0179173 10.7019968, 48.6410373 10.5313159, 49.8821023 10.9042255, 48.8178925 11.0809786, 48.8245525 11.0724318, 50.0117430 10.7006733, 50.0090888 10.6946217, 50.0127154 10.6848692, 50.0147562 10.6980013, 50.0265449 10.7009359, 50.0230313 10.6984522, 50.0185988 10.7020142, 50.0191858 10.7030163, 50.0258687 10.7346556, 50.0234700 10.6789837, 50.0110610 10.6749711, 50.0099854 10.7365010, 50.0140379 10.7367517, 49.9936057 10.6936812, 49.9954107 10.6881365, 49.9991832 10.7065311, 50.0515127 10.6825199, 50.0415119 10.7259111, 50.0203839 10.7509132, 50.0221701 10.7110301, 50.3040141 10.4778811, 50.3042160 10.4780918, 47.6190551 11.3475254, 49.7197325 11.1517517, 49.8045771 9.9985236, 48.8920941 11.1840999, 48.3989347 11.1712240, 49.4354020 10.4140882, 47.6602222 10.3510584, 47.6572599 10.3508058, 49.7931062 9.7625034, 49.7994913 9.7519600, 49.7600378 9.7167061, 49.7897273 9.7536498, 49.7911878 9.7544082, 48.8991372 11.1878472, 48.8512301 10.4888424, 48.8523275 10.4919721, 48.8451876 10.4939668, 48.8541292 10.4916755, 48.8539854 10.4880578, 48.8496775 10.4925785, 48.8505244 10.4879424, 48.8523182 10.4919848, 48.8512395 10.4888313, 48.8541017 10.4916755, 48.8477268 10.4932959, 48.8496839 10.4925741, 48.2257460 10.6578602, 49.2505113 10.8274746, 48.1906255 11.3715878, 48.2398447 10.6666094, 48.2331131 10.6222457, 48.2280822 10.7614312, 49.3705840 11.3317226, 50.2964998 10.1773597, 48.1962042 11.3731773, 49.3732915 11.2109773, 48.8830526 11.1923901, 48.0691848 11.3773647, 50.0028821 10.8639429, 48.3644252 10.8768637, 48.0248220 10.2582044, 47.9100035 10.5742540, 47.9100050 10.5742518, 47.9100031 10.5742513, 49.7695834 11.2501592, 49.7667641 11.3365491, 49.7667629 11.3371417, 48.3684478 10.8903656, 49.2994881 10.4152111, 49.2988060 10.4146451, 50.0384874 9.1829561, 49.9649565 9.2033405, 50.3208914 10.2288371, 48.8976919 11.1537933, 48.0544354 10.8784777, 48.0544586 10.8784699, 50.1339740 10.9997596, 47.6957621 10.2378885, 49.6719429 10.1092270, 48.8522201 10.4931751, 48.8498220 10.4903906, 48.8502970 10.4922689, 48.8498471 10.4904059, 48.8522059 10.4931953, 48.8532785 10.4928130, 48.8496601 10.4856974, 48.8496708 10.4857163, 48.8496477 10.4856799, 48.8521881 10.4932048, 48.8532905 10.4928264, 48.8534004 10.4892605, 48.8533934 10.4892679, 48.8533030 10.4928402, 48.8482940 10.4858635, 48.8502801 10.4922763, 48.8532666 10.4928045, 48.8531124 10.4912383, 48.8516841 10.4897454, 48.8514823 10.4924972, 48.8531284 10.4912472, 48.8531497 10.4912610, 48.8514908 10.4925360, 48.8517014 10.4897391, 48.8517157 10.4897351, 49.2834623 11.1245195, 48.6991076 10.4888000, 49.6695593 10.4735573, 49.9769946 9.1519363, 49.9750834 9.1465191, 49.9788040 9.1492982, 49.9780571 9.1469089, 49.9769598 9.1483522, 49.9769575 9.1483487, 49.9788030 9.1492978, 49.9788085 9.1459478, 49.9761670 9.1475691, 49.9761691 9.1475708, 49.9777357 9.1470002, 49.9771118 9.1463000, 49.9780562 9.1469097, 49.9771124 9.1462986, 49.9758163 9.1473677, 49.9787300 9.1460637, 49.9761690 9.1475695, 49.9750841 9.1465179, 49.9788033 9.1492993, 49.9761677 9.1475697, 49.9788078 9.1459490, 49.9787293 9.1460649, 49.9761677 9.1475684, 49.9756861 9.1455040, 49.9769575 9.1483509, 49.9769951 9.1519377, 49.7431992 10.3143552, 49.7332682 10.2910088, 49.7331557 10.2909352, 49.7320459 10.2893973, 49.7971708 9.9181959, 47.6782491 11.1981707, 49.5807360 10.9930423, 49.4781588 10.9815611, 50.0710288 9.3453874, 49.5880202 11.0348171, 47.7182352 11.0417325, 48.3078447 10.9012213, 48.3074280 10.9007914, 47.7665712 10.4012543, 48.3578768 10.8608426, 48.3418069 10.9886881, 48.1026468 10.8452603, 48.3688473 10.8987725, 49.8396607 9.4499388, 49.5976027 11.0106106, 49.5767614 10.9846288, 50.0536602 10.5881133, 49.9758512 9.1489083, 49.9753342 9.1484946, 49.9725262 9.1520096, 49.9734825 9.1574246, 49.9758505 9.1489071, 49.9721775 9.1427265, 49.9752614 9.1500359, 49.9758903 9.1478404, 49.9758497 9.1489083, 49.9753686 9.1562911, 49.9758906 9.1478427, 49.9752873 9.1484977, 49.9727283 9.1509584, 49.9753357 9.1484953, 49.9859727 9.1375629, 49.9707705 9.1548378, 49.9753679 9.1562926, 49.9721820 9.1427261, 49.9758912 9.1478414, 49.9727276 9.1509624, 49.9758897 9.1478418, 49.9758243 9.1479574, 49.9758925 9.1478414, 49.9753347 9.1484961, 49.9721737 9.1427298, 49.9753690 9.1562929, 49.9758520 9.1489071, 49.9758251 9.1479562, 49.9753352 9.1484938, 49.5520120 10.0648801, 49.5528638 10.0662568, 49.5525157 10.0635550, 49.5517965 10.0635343, 49.5525797 10.0635125, 49.5528648 10.0662560, 49.5517981 10.0635366, 49.5528633 10.0662553, 49.5520142 10.0648834, 49.5517973 10.0635354, 49.5528642 10.0662524, 49.5522235 10.0652652, 49.5522739 10.0660112, 49.5520112 10.0648789, 49.5522242 10.0652665, 49.5525147 10.0635556, 49.5522749 10.0660104, 49.5520149 10.0648846, 49.5520123 10.0648784, 49.5528643 10.0662545, 49.7492292 11.2476398, 50.0077507 9.0697798, 49.9904785 10.5903260, 49.7932175 9.9300690, 49.7932157 9.9300660, 49.2907084 10.2654545, 49.9459834 9.2137807, 50.2947661 10.0964550, 47.5734512 9.8406759, 50.2853904 10.0977305, 50.2863806 10.1002136, 49.2326998 10.4977047, 48.0167267 10.9114811, 47.4418761 11.2582606, 49.9397941 10.6765837, 49.7637415 11.0302848, 50.0068525 9.2035019, 49.9674144 9.3973865, 49.2965371 10.4370565, 49.8335959 9.8463313, 49.3754615 10.1723479, 49.3757566 10.1729165, 50.1307235 10.0261636, 50.0100085 10.7388904, 49.9755613 11.3360106, 49.4881221 11.1056632, 49.2751769 11.3032585, 48.8914645 11.1745881, 49.8244119 9.2195855, 49.3500534 10.2008191, 49.4683097 11.0018808, 47.8748390 10.2216490, 49.5952508 11.0283102, 49.7628101 9.7103322, 47.5690462 10.6816003, 49.7377834 10.7343469, 49.7485218 10.7514389, 50.1266242 10.9322564, 48.0446423 10.8756748, 47.4485214 11.3739173, 49.3237343 11.3634148, 50.0399899 10.2563410, 49.6557652 9.1356940, 49.1755022 10.8293237, 49.8916234 10.8922621, 49.3700364 10.3326346, 49.9689726 9.1406710, 50.1461039 9.8787634, 49.6459023 10.6960875, 49.6190605 10.6550751, 49.3267742 11.3290333, 49.9506568 9.2425169, 47.5425352 9.6817195, 50.3603618 10.0183521, 50.2603176 10.1625667, 50.5294158 10.1365952, 48.1796129 11.2551298, 49.7690804 10.5270426, 49.7440739 10.3678749, 49.6013550 11.0040634, 49.6004854 11.0101482, 49.6031869 11.0142698, 49.5983557 11.0157815, 49.5963195 11.0110567, 49.5964441 11.0047821, 49.5954984 11.0051944, 49.5946707 11.0051020, 49.5908949 11.0066095, 49.5977584 11.0068971, 49.8545526 9.9567436, 48.8747287 11.1645790, 48.4840860 10.3676764, 48.0583724 10.8675451, 48.1917310 11.2652696, 48.1962886 11.2705080, 48.1961081 11.2696309, 48.1967606 11.2704517, 48.1967499 11.2707065, 48.1951533 11.2660877, 48.3007715 11.3808588, 49.6391565 10.9970110, 48.1942938 11.2697727, 48.1941755 11.2706956, 48.1940936 11.2704915, 48.1940575 11.2702662, 48.1942220 11.2708888, 48.1946872 11.2695367, 48.1959364 11.2671284, 48.2685891 10.8306042, 49.3040254 10.5718175, 48.2684512 10.8307732, 48.8506121 10.4971452, 50.0326497 9.4312794, 49.9835532 10.0788877, 49.3815362 10.1702658, 49.5999179 11.0029460, 49.5999184 11.0029346, 49.5999207 11.0029411, 49.5947349 11.0049181, 49.5947890 11.0049002, 49.5947348 11.0049148, 49.5947365 11.0049179, 49.5947357 11.0049180, 49.5947364 11.0049146, 49.5947880 11.0049003, 49.5947356 11.0049147, 49.8916123 10.8934082, 49.2940718 10.4071127, 48.4805144 10.3621024, 49.3021051 10.5757277, 47.4125642 10.9782774, 49.3625693 10.1920107, 48.0163156 10.9179297, 48.7750094 11.3772950, 48.7764712 11.3740040, 49.3760472 10.1740553, 49.5841546 11.1376266, 49.8366567 11.3502874, 48.3072145 11.3329276, 49.9619007 9.7687548, 49.7925294 9.9300247, 49.7925284 9.9300253, 49.7925270 9.9300242, 49.7925280 9.9300237, 49.7925304 9.9300241, 49.7925290 9.9300231, 49.7925300 9.9300225, 49.5967084 11.0363646, 48.4215809 11.0664908, 49.9634476 9.7630263, 47.5649294 10.0293330, 47.7832209 11.1427052, 49.5914363 11.0057192, 49.5915983 11.0279183, 50.2681384 11.3609612, 48.4592157 11.1286345, 49.5321619 11.0340201, 48.4196679 10.0708906, 50.0127842 9.2598896, 49.4198255 11.1952648, 49.8007861 9.9500409, 49.8042227 9.9401073, 49.8016833 9.9521581, 49.8008487 9.9495065, 49.8023538 9.9484639, 49.8039340 9.9462076, 49.8016832 9.9521600, 49.8040711 9.9415613, 49.8017616 9.9429421, 49.8022170 9.9424916, 49.8033057 9.9423584, 49.8031096 9.9453756, 47.8752939 10.4026098, 47.8633560 10.4122926, 49.7986567 10.2312619, 50.0680003 10.8822450, 49.5503024 11.2688007, 49.4782605 11.0208604, 50.1507631 10.8945447, 48.0424196 10.8369763, 49.8607443 10.3813672, 49.9434533 9.8565390, 49.5417838 10.5613637, 49.9585470 9.7663805, 49.9595391 9.7650959, 49.3786586 10.1793133, 49.3767932 10.1758881, 49.3767932 10.1758781, 49.3767932 10.1758848, 49.3755384 10.1827213, 49.3762093 10.1795702, 49.3767932 10.1758815, 49.3786586 10.1793103, 49.3755376 10.1827181, 49.3772183 10.1774557, 47.8563407 10.1296254, 47.8569040 10.1353766, 47.8564406 10.1303072, 50.3608095 10.3546411, 50.3703190 10.3585862, 50.3791048 10.3732742, 49.6020631 11.0009575, 49.6006180 11.0054816, 49.5988014 11.0020055, 49.5971402 11.0046461, 49.5968877 11.0046365, 49.5967905 11.0047592, 50.0185855 9.3106506, 50.2699881 11.3611322, 49.7956968 9.1574279, 49.7946620 9.9417414, 49.2360159 10.9442065, 50.0412319 11.2518353, 49.1257675 11.2687419, 49.0515267 10.9673498, 48.4724441 11.1555816, 50.0076854 10.5983304, 47.5620371 10.6940910, 47.5622933 10.6947643, 48.7362449 11.1813297, 47.7842673 10.0891458, 48.1917267 11.3744581, 49.5929601 10.9994155, 49.4506724 11.0895491, 47.5027371 11.3009433, 47.4815259 11.3571177, 47.5945458 10.0720192, 48.3825938 11.1185478, 50.0837449 9.0707465, 50.0030759 9.4208477, 50.0532552 9.0105856, 49.2366324 10.4923511, 48.3109723 10.1580109, 49.6933701 9.2896788, 49.7031080 9.3017167, 49.6924824 9.1730686, 47.4926387 11.0868270, 49.6820227 9.2096023, 50.0166247 10.7766176, 50.0112161 10.8035765, 47.4940720 11.1051383, 50.1640464 10.9623428, 47.4473011 10.2391801, 47.6696072 11.1928075, 49.5615772 11.0869061, 49.6361333 10.1434699, 49.7954103 9.9404940, 49.7954095 9.9404929, 49.7954100 9.9404913, 49.7954108 9.9404925, 47.7215596 10.5566826, 49.7863466 9.9361498, 49.7855176 9.9367566, 49.7855179 9.9367582, 49.7863509 9.9361479, 49.7863477 9.9361497, 49.7855189 9.9367578, 49.7863499 9.9361496, 49.7863509 9.9361495, 49.7855179 9.9367547, 49.7863504 9.9361512, 49.7855187 9.9367562, 49.6722786 11.1781259, 49.5147535 11.0599168, 49.5149154 11.0598238, 49.5150009 11.0602343, 49.5150581 11.0599041, 49.7867513 9.9365291, 49.7871642 9.9375666, 49.7859343 9.9388582, 49.7867503 9.9365280, 49.7867521 9.9376445, 49.7862145 9.9391909, 49.7862387 9.9375395, 49.7862153 9.9391920, 49.7867497 9.9365293, 49.7871600 9.9375648, 49.7867531 9.9376450, 49.7871631 9.9375664, 49.7867495 9.9365311, 49.7871609 9.9375667, 49.7867517 9.9376461, 49.7871598 9.9375665, 49.7871610 9.9375650, 49.7867527 9.9376466, 49.7862169 9.9391942, 49.7867506 9.9365304, 48.1050505 11.3065439, 49.7907691 9.9344337, 49.7898028 9.9354473, 49.7878385 9.9379272, 49.7907695 9.9344322, 49.7907687 9.9344352, 49.7906708 9.9343376, 49.7908044 9.9343457, 49.7907265 9.9348801, 49.7907265 9.9348823, 49.7907250 9.9348800, 49.7907258 9.9348812, 49.7888553 9.9280158, 49.7888525 9.9280146, 49.7888578 9.9280136, 49.7888627 9.9280144, 49.7888669 9.9280136, 49.7888659 9.9280138, 49.7882443 9.9325119, 49.7888585 9.9280152, 49.7893070 9.9302257, 49.7888606 9.9280148, 49.7886188 9.9283324, 49.7888631 9.9280126, 49.7888532 9.9280162, 49.7886196 9.9283311, 49.7886200 9.9283327, 49.7888663 9.9280120, 49.7888596 9.9280150, 49.7888638 9.9280142, 49.7888521 9.9280164, 49.7888574 9.9280154, 49.7888563 9.9280156, 49.7923864 9.9285144, 49.7925589 9.9280484, 49.7901921 9.9287343, 49.7923858 9.9285161, 49.7912924 9.9303975, 49.7924914 9.9334357, 49.7901910 9.9287350, 49.7925590 9.9280500, 49.7900984 9.9292869, 49.7925346 9.9308533, 49.7920112 9.9292930, 49.7935785 9.9296478, 49.7912936 9.9303974, 49.7925600 9.9280484, 49.7932061 9.9346117, 49.7923876 9.9285145, 49.7925567 9.9280500, 49.7923881 9.9285161, 49.7920122 9.9292921, 49.7925557 9.9280499, 49.7924923 9.9334366, 49.7901911 9.9287333, 49.7925567 9.9280483, 49.7912928 9.9303960, 49.7923870 9.9285161, 49.7935747 9.9296483, 49.7920103 9.9292939, 49.7925343 9.9308500, 49.7925344 9.9308516, 49.7925579 9.9280500, 49.7923772 9.9285195, 49.7932050 9.9346115, 49.7900980 9.9292852, 49.7925333 9.9308511, 49.7900973 9.9292864, 49.7925335 9.9308527, 49.7925579 9.9280483, 48.4071582 10.7242874, 49.5952579 11.0039749, 48.1759606 10.1872537, 48.3516035 11.1773410, 49.9960359 10.5460702, 49.6494931 10.4272512, 49.1311132 11.2126115, 49.7307051 9.3184515, 49.6955708 9.3096830, 49.7995986 9.9397919, 49.7995986 9.9397920, 49.2989766 10.5787231, 48.3152361 10.9105676, 50.2495248 10.1962480, 49.0680644 10.3198579, 49.0689606 10.3152672, 49.0689613 10.3152651, 49.0689599 10.3152641, 49.0680623 10.3198569, 49.0680634 10.3198574, 49.0689616 10.3152666, 49.0689602 10.3152657, 49.0680641 10.3198594, 49.0689609 10.3152636, 49.0674064 10.3202774, 49.0680691 10.3198774, 48.4601209 10.9659842, 49.1180031 10.7540594, 48.1633205 10.1201881, 49.7922637 9.9483254, 49.7930089 9.9489359, 49.7922627 9.9483265, 49.7930099 9.9489368, 49.7930080 9.9489351, 49.7922647 9.9483244, 49.7922637 9.9483236, 49.7922637 9.9483273, 49.7928082 9.9487755, 49.7898532 9.9433227, 49.7892789 9.9440666, 49.7892796 9.9440680, 49.7897006 9.9433279, 49.7897016 9.9433278, 49.7913883 9.9475148, 49.7898522 9.9433228, 49.7966267 9.9394975, 49.7967915 9.9393942, 49.7966280 9.9395002, 49.7961026 9.9401177, 49.7958722 9.9397294, 49.7967900 9.9393940, 49.7914631 9.9441426, 49.7958708 9.9397269, 49.7966260 9.9394961, 49.7914629 9.9441409, 49.7966299 9.9395043, 49.7958715 9.9397282, 49.7966292 9.9395029, 49.7914618 9.9441413, 49.7914621 9.9441430, 49.7966247 9.9394934, 49.7966241 9.9394920, 49.7967895 9.9393957, 49.7967907 9.9393953, 49.7967909 9.9393930, 49.7962096 9.9386493, 49.7963427 9.9388767, 49.7962090 9.9386480, 48.4463681 11.1109072, 48.4462480 11.1110447, 49.8018736 10.1512931, 49.7978227 9.9385033, 49.7976682 9.9393560, 49.7988824 9.9402123, 49.7976681 9.9393507, 49.7976685 9.9393523, 49.7978221 9.9385048, 49.7973862 9.9392221, 49.7978217 9.9385004, 49.7978233 9.9385047, 49.7976671 9.9393513, 49.7988816 9.9402111, 49.7976692 9.9393555, 49.7977416 9.9418692, 49.7976678 9.9393544, 49.7980834 9.9405811, 49.7976688 9.9393539, 49.7976674 9.9393528, 49.7980845 9.9405813, 49.7926160 9.9465886, 49.7926148 9.9465885, 49.7924154 9.9448690, 49.7926315 9.9478039, 49.7926154 9.9465868, 49.7935570 9.9466037, 49.7943517 9.9466373, 49.7926164 9.9465903, 49.7924149 9.9448704, 49.7926316 9.9478023, 49.7926153 9.9465902, 49.7932395 9.9460028, 49.7924142 9.9448689, 49.7932392 9.9460043, 49.7935581 9.9466035, 49.7943507 9.9466375, 49.7926142 9.9465901, 48.5449365 10.8512596, 48.5449379 10.8512573, 48.5449372 10.8512585, 48.5448166 10.8512625, 47.6978718 10.3244047, 49.8213947 11.3136234, 49.3983962 10.5127273, 49.3990800 10.5131906, 49.7797573 9.8779032, 49.7797971 9.8778845, 49.7797835 9.8778902, 49.7797695 9.8778967, 49.7797941 9.8781370, 49.7848704 9.8816363, 49.7848715 9.8816359, 47.7705856 11.3174944, 48.4422191 10.9365381, 48.4455951 10.9653992, 48.4548947 11.0057076, 49.5959844 11.0033360, 50.0896982 10.5675728, 49.5847486 11.0087016, 49.5838431 11.0094163, 50.3542407 10.5183849, 50.2793921 10.4262507, 48.2005479 11.3085417, 47.9862377 10.1803043, 50.1003243 9.2700884, 48.5839393 11.0900128, 49.4364865 10.9746967, 49.5579890 11.3411660, 49.5579971 11.3411597, 49.5572334 11.3415166, 49.5572321 11.3415180, 49.5582233 11.3409457, 49.5594751 11.3408029, 49.5604712 11.3407820, 49.5589938 11.3404077, 49.5583436 11.3404497, 49.5577582 11.3399783, 49.5585840 11.3406609, 49.5584189 11.3405005, 49.5584259 11.3405053, 49.5594771 11.3407944, 49.5604659 11.3407875, 49.5604708 11.3407872, 49.5604663 11.3407817, 50.2571790 10.0620673, 48.2126195 11.3374382, 48.8403993 10.4941533, 48.8417958 10.4918787, 49.6446348 9.8766831, 47.9842362 10.1778101, 48.8457640 10.4830272, 47.4793650 11.0207555, 49.4503458 11.0625646, 49.4503311 11.0626034, 49.4564236 11.0939156, 49.4564073 11.0939222, 49.4666635 11.0960817, 49.4564158 11.0939191, 49.4666480 11.0961021, 49.4531051 11.0889258, 49.4531169 11.0890098, 49.4515650 11.0737476, 49.4451835 11.0701178, 49.4531034 11.0889267, 49.4531047 11.0889332, 49.4531054 11.0889272, 49.4531059 11.0889298, 49.4531062 11.0889312, 49.4531203 11.0890155, 49.4531200 11.0890149, 49.4531180 11.0890119, 49.4531184 11.0890125, 49.4531192 11.0890136, 49.4531207 11.0890161, 49.4531196 11.0890142, 49.4531177 11.0890112, 49.4531173 11.0890105, 49.4531188 11.0890130, 47.5807355 10.5575467, 48.4061678 10.0436362, 50.4578393 10.2328439, 49.5402175 11.0439096, 47.5702330 10.5947204, 47.5040513 11.2786897, 47.5538725 10.7902108, 49.4534629 11.0604342, 49.4534632 11.0604329, 49.4534638 11.0604303, 49.4534638 11.0604346, 49.4534641 11.0604290, 49.4534653 11.0604325, 49.4534659 11.0604299, 49.4534662 11.0604286, 49.4535567 11.0605329, 49.4535572 11.0605302, 49.4535587 11.0605323, 49.4535590 11.0605310, 47.8774590 11.0274014, 48.3823871 11.3496783, 49.3756375 11.2127250, 47.4376224 11.2612534, 49.3811301 11.2026228, 49.7606167 9.9772922, 49.7848282 9.9380024, 49.7848733 9.9380623, 49.7916590 9.9457111, 49.7865810 9.9384816, 49.7865828 9.9384844, 49.7879758 9.9398772, 49.9873489 9.2780503, 49.7318034 9.9202857, 49.7318921 9.9202117, 49.7319749 9.9203380, 47.7143850 11.4039809, 50.1398487 11.0918818, 47.7064576 11.3975548, 48.6114773 10.5668229, 48.6111031 10.5659055, 48.7160743 10.7775891, 49.8494694 9.4069936, 48.9567005 10.9079175, 48.7331262 11.1759620, 48.7389356 11.1886864, 48.7331262 11.1759620, 48.7385744 11.1815885, 48.3507189 10.9354257, 49.7910101 9.9334762, 49.7910066 9.9334875, 49.7985360 9.9266653, 49.9455720 11.1648235, 49.9495296 9.8874687, 49.6755114 10.1517058, 49.4277234 11.0439324, 47.9837290 11.0930118, 48.4584489 10.9817953, 49.5501746 10.8786893, 48.3482984 10.9104624, 48.9677056 10.9237975, 48.9774526 10.9561557, 48.9602673 10.9498042, 48.4585333 11.1335081, 49.9020566 10.3449565, 50.4025312 10.0065915, 50.4005600 10.0107167, 50.4051246 10.0055267, 48.0044368 10.5885381, 49.4495822 11.0617262, 48.4024034 11.0551394, 48.9886198 11.2887496, 48.9850995 11.0831851, 48.9820014 11.0891933, 48.9834097 11.0900086, 49.7844007 9.9375790, 49.7844180 9.9374878, 49.7838096 9.9396762, 49.7385288 10.7390450, 50.0999797 9.8392708, 49.7383173 11.0597508, 49.7256094 11.0584419, 49.9745379 9.1831466, 47.9916650 10.7829274, 49.7010799 10.0000174, 48.4487679 11.0832494, 48.2178130 11.0196429, 49.4042504 10.4761430, 49.4515646 11.0737472, 49.4531042 11.0889304, 49.4584844 11.0955008, 49.4401820 11.0693832, 49.4524574 11.0663503, 49.4524577 11.0663502, 49.4524575 11.0663504, 49.4524573 11.0663505, 49.4401816 11.0693824, 49.4584792 11.0954932, 49.4493192 11.0630722, 49.4489438 11.0869699, 49.4493243 11.0630823, 49.4489505 11.0869784, 49.4442885 11.0906328, 49.4584813 11.0955080, 49.4584751 11.0955004, 47.5088882 10.2795297, 48.0976185 10.5417693, 48.3445324 10.9353458, 48.3718037 10.8963094, 48.3718041 10.8963083, 49.9773664 9.1516409, 49.9773665 9.1516401, 49.9773668 9.1516416, 49.9773669 9.1516408, 49.9773673 9.1516416, 49.9777012 9.1523025, 49.9777018 9.1523036, 49.5406982 11.1029197, 49.5830074 11.0720065, 49.5806680 11.0408936, 49.5669690 11.0434983, 49.6641607 10.4608530, 49.6640174 10.4609621, 49.2873631 10.2624581, 49.2904965 10.2630052, 47.9253148 10.2440388, 49.3143601 10.2962603, 49.8558808 9.3997297, 47.8047485 10.2133142, 49.0248904 11.0046911, 49.6009390 11.0027339, 49.6009409 11.0027339, 48.0715754 11.0005879, 48.7892575 10.6710487, 50.3053524 10.0213184, 49.9748497 9.1456239, 49.9761683 9.1475690, 49.9748492 9.1456249, 49.9761684 9.1475702, 49.9748468 9.1456262, 49.9748473 9.1456251, 48.4284030 10.8789123, 49.9769927 9.1484309, 49.9786284 9.1435443, 49.9743789 9.1488575, 49.9763387 9.1472780, 49.9769931 9.1484317, 49.9743817 9.1494905, 49.9743790 9.1488557, 49.9763385 9.1472795, 49.9769935 9.1484325, 50.2324713 9.7972070, 50.2274987 9.8015171, 50.2125796 9.8078351, 48.0292035 11.3673827, 47.5983444 10.9056374, 50.0609693 10.1301670, 49.7956233 9.9339097, 49.7943732 9.9355099, 49.7893753 9.9303739, 47.8013284 10.3537356, 48.7435414 11.2146671, 48.3609968 10.0706280, 49.9732320 9.1562722, 49.9725473 9.1460345, 49.9725481 9.1460355, 49.7811895 9.8754454, 50.0463306 10.2422178, 50.1262114 10.1323272, 50.1260980 10.1320650, 48.0456871 10.4243348, 49.9599944 9.1674078, 49.9790176 9.1378227, 49.9785802 9.1497577, 49.9785782 9.1497577, 49.9790183 9.1378214, 49.9767006 9.1434450, 49.9790189 9.1378227, 49.9785791 9.1497594, 49.9785792 9.1497560, 49.7878831 9.1558386, 47.4803785 11.2396359, 50.1823681 10.8135295, 48.1134041 11.3410235, 49.7965388 9.9259564, 48.6382488 10.6026814, 48.6364553 10.6022821, 47.8459739 11.0299188, 48.9024263 11.0894232, 49.9183578 10.9061724, 50.0927176 10.2708298, 49.3664352 11.2626077, 48.9299739 10.9695181, 49.6439302 11.1185170, 49.7288907 10.5445346, 50.0431869 10.2304967, 48.3731122 11.0959923, 48.1948518 11.2632927, 49.4710348 11.0172151, 49.4482963 11.0654784, 49.6449426 9.2199396, 49.4019599 10.7243349, 48.3884186 11.0874478, 49.6443425 9.2223859, 48.9995875 11.1062950, 49.5075741 11.2794565, 49.5075692 11.2794307, 49.9040712 10.0964998, 49.8906463 10.8815396, 49.8999822 10.3506192, 49.7067822 11.2546397, 48.8755548 11.0741983, 49.8989204 10.3485227, 50.0438223 10.7182321, 49.9710536 10.6694916, 49.9927820 10.2724251, 50.3199349 9.8181952, 49.6775007 9.2831816, 49.2258187 10.7269246, 47.6764419 11.2029616, 47.8976158 10.1161598, 47.5433929 11.2602180, 47.5456150 11.1901578, 48.3629733 11.3766216, 48.0332314 10.8505875, 48.0504475 10.8407146, 48.0512785 10.8382489, 49.0317249 10.9702087, 49.0288485 10.9765390, 49.2530850 10.2873176, 48.3660798 10.5426582, 49.0672016 10.3182782, 48.2819649 10.4691847, 48.0397151 10.6712233, 48.0397779 10.6716756, 48.0376793 10.6702097, 48.2080415 11.3280417, 50.2723903 10.4116010, 47.7771843 10.1273307, 48.0056471 10.3563100, 49.7653436 9.5229885, 48.1969376 10.6769089, 48.3575820 10.8800179, 49.9040764 11.0311000, 47.7155084 10.3234417, 49.4390879 11.1394627, 49.8829364 9.5814255, 48.3869392 10.8665406, 48.4441900 11.1327054, 48.1026976 10.8452652, 47.6613522 11.2092731, 48.0263618 10.8448247, 48.8870984 10.4688551, 49.6695229 10.1503714, 47.6766571 11.2022534, 49.6097897 10.7076412, 47.9107077 10.5744731, 48.0261191 10.8449821, 50.5222310 10.0713603, 50.2544924 10.0620117, 50.3707322 9.9786099, 49.4023947 11.1359481, 49.8978821 10.2241692, 48.0817897 10.8647284, 49.4496586 10.3195263, 50.0041308 9.8215312, 49.3007818 11.1215015, 49.1178053 10.7597381, 48.2453585 10.8031322, 49.8271514 9.4032808, 47.9097955 11.2828365, 50.3469859 11.2885524, 50.1624704 10.0762669 +48.8649321 2.2883111, 48.8538346 2.3644665, 48.8420145 2.3302544, 48.8296558 2.3789838, 48.8687291 2.3014159, 48.8698436 2.3061758, 48.8411414 2.3136506, 48.8450445 2.3104567, 48.8474933 2.3107909, 48.8431492 2.3040014, 48.8431097 2.3128917, 48.8592377 2.3714158, 48.8749086 2.3407659, 48.8442816 2.3244689, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8701182 2.3328493, 48.8337153 2.3863338, 48.8650286 2.3978764, 48.8853087 2.2914432, 48.8326928 2.3011680, 48.8367477 2.3065081, 48.8896590 2.3042630, 48.8841050 2.3049810, 48.8835710 2.3045840, 48.8485190 2.3493440, 48.8778905 2.3549883, 48.8359858 2.3961013 +yes +en:William Chambers (publisher) +4 +22 +55.9575618 -3.1847902, 55.9491314 -3.1876537, 55.9757878 -3.2301721, 55.9621811 -3.2003284, 55.9526181 -3.1750774, 55.9471770 -3.1904575, 55.9254145 -3.2090883, 55.9764403 -3.1701500, 55.9504129 -3.2949801, 55.9601603 -3.2006854, 55.9299490 -3.2096090, 55.9592433 -3.2230171, 55.9481079 -3.1917724, 55.9034567 -3.1574061, 55.9808227 -3.2245927, 55.9479318 -3.1942157, 55.9166326 -3.2276420, 55.9467615 -3.2168254, 55.9524553 -3.1968363, 55.9501797 -3.1870275, 55.9428645 -3.2037697, 55.9484729 -3.1956543, 55.9478512 -3.2019348, 55.9452311 -3.1921670, 55.9449743 -3.1941250, 55.9701331 -3.1723584, 55.9411858 -3.2034013, 55.9558388 -3.1571446, 55.9250843 -3.2616025, 55.9473220 -3.2061120, 55.9382464 -3.1945920, 55.9356972 -3.2104575, 55.9457633 -3.2087758, 55.9458777 -3.2095906, 55.9466672 -3.2371272, 55.9308474 -3.2091419, 55.9461542 -3.1854391, 55.9057145 -3.2240658, 55.9618487 -3.1523081, 55.9499509 -3.2074622, 55.9379652 -3.1900697, 55.9487732 -3.1929905, 55.9164262 -3.2851068, 55.9724535 -3.2516505, 55.9626190 -3.2334642, 55.9477849 -3.3610098, 55.9486801 -3.3621149, 55.9459285 -3.2185692, 55.9523009 -3.1919415, 55.9491345 -3.1940862, 55.9512470 -3.1890625, 55.9527128 -3.2015822, 55.9282591 -3.2096099, 55.9518891 -3.1996221, 55.9520193 -3.2031623, 55.9509410 -3.2098198 +Tesla Motors Inc. +Glasgow International Airport, Edinburgh Airport, Perth Airport, Fife Airport, RM Condor, East Fortune airfield, Glasgow Heliport, Winfield Aerodrome (RAF Winfield/Horndean), East Lochlane Farm, Strathaven, Kingsmuir, Midlem, Charterhall Airfield (RAF Charterhall), Kirknewton, Dundee Airport, Cumbernauld Airport, Nether Huntlywood Airfield +yes +01.45.42.59.19 +30 +yes +11 +48.8536740 2.4053556, 48.8394601 2.3890683 +Musée en Herbe and http://www.musee-en-herbe.com/, Musée en Herbe, Môm'artre, La Bellevilloise and www.labellevilloise.com/, Studio des Islettes, Maison Européenne de la Photographie and http://www.mep-fr.org, Centre d'animation Reuilly, Conservatoire municipal Claude Debussy - Site de la Jonquière and http://equipement.paris.fr/conservatoire-municipal-claude-debussy-site-la-jonquiere-3976, Atelier de Restauration et de Conservation des Photographies de la Ville de Paris and http://www.paris.fr/politiques/conservation-restauration/atelier-de-restauration-et-de-conservation-des-photographies-de-la-ville-de-paris/p7672#, Le Local, Espace Château Landon and http://crl10.net/, Barbara Fleury and http://www.fgo-barbara.fr, ADAC, Le Lucernaire, La Générale Nord-Est and http://lagenerale.fr/, Le 100, Le Chantier, Le Plateau, Centre d’animation La grange aux Belles and http://crl10.net/, La Bellevilloise and http://www.labellevilloise.com, Centre culturel italien, Centre Culturel la Jonquière, Shakirail and http://shakirail.blogspot.fr, La Péniche cinéma, Au Bonheur du Jour, cité des arts, La Métisse, Conservatoire municipal Jean-Philippe Rameau, Antenne FRAC Île-de-France, FRAC Antenne culturelle, Centre culturel franlasie, Conservatoire libre du cinema francais, Centre culturel Pouya, Auditorium, Collège des Bernardins, Conservatoire du Centre and http://equipement.paris.fr/conservatoire-municipal-w-a-mozart-1595, Centre Pompidou, Centre Wallonie-Bruxelles and http://www.cwb.fr/, Espace des Blancs-Manteaux, La Gaîté lyrique and http://www.gaite-lyrique.net/, Espace Jemmapes and http://www.crl10.net/, Conservatoire Hector Berlioz, Institut hongrois, Galerie J. Kugel, Le Zénith and http://www.zenith-paris.com/, Grande Halle de la Villette and http://www.villette.com/fr/villette-pratique/acces/la-grande-halle.htm, Cours Florent and http://www.coursflorent.fr, Espace Fondation EDF, Conservatoire Municipal Nadia et Lili Boulanger and equipement.paris.fr/Conservatoire Municipal Nadia et Lili Boulanger, Conservatoire municipal Georges Bizet, Pavillon Carré de Baudouin, Le BAL and http://www.le-bal.fr/, Centre d'Animation "Les Abbesses" and http://equipement.paris.fr/centre-d-animation-les-abbesses-1154, Maison des ensembles, La Maison des Cinq Sens, Conservatoire Francis Poulenc, Point - Afrique, Centre Culturel Suédois and www.si.se/Paris/, Ancien Conservatoire Maurice Ravel, Le Cent Quatre and http://www.104.fr/, Maison des Métallos +23 +49 +no +3 +49.4095083 8.7002566 +eldoRADo, Call a Bike +Griechische Taverne, Goldener Stern, Poseidon, Delphi, Sirtaki, Gasthaus zur Krone, Olympia, Goldener Hirsch +48.8242374 2.3651653, 48.8435771 2.3052604, 48.8359056 2.2906833, 48.8430494 2.2981600, 48.8422227 2.3021215, 48.8461616 2.3241905, 48.8660551 2.3469571, 48.8668672 2.3470957, 48.8379645 2.2582370, 48.8693380 2.3551298, 48.8703138 2.3531191, 48.8578111 2.3009135, 48.8660881 2.3521709, 48.8729563 2.3536136, 48.8573257 2.4029932, 48.8561996 2.4042235, 48.8550047 2.4015490, 48.8533252 2.4057615, 48.8632178 2.3862480, 48.8785823 2.3740899, 48.8785709 2.3707401, 48.8435833 2.3907880, 48.8739444 2.3578943, 48.8391900 2.3005803, 48.8366855 2.2949206, 48.8364090 2.2951587, 48.8457189 2.2873474, 48.8302437 2.3285915, 48.8534094 2.3325318, 48.8640484 2.3781979, 48.8618833 2.3805698, 48.8635050 2.3812718, 48.8408293 2.3232300, 48.8400818 2.3221697, 48.8584026 2.3805695, 48.8506007 2.3901866, 48.8710687 2.3598052, 48.8519157 2.4010889, 48.8515486 2.4016481, 48.8293046 2.3221365, 48.8520153 2.4060609, 48.8671786 2.3728849, 48.8688236 2.3748271, 48.8697228 2.3737877, 48.8726943 2.3713664, 48.8751312 2.3709212, 48.8764145 2.3684703, 48.8703436 2.3710041, 48.8712192 2.3743429, 48.8702035 2.3720916, 48.8685036 2.3689877, 48.8668428 2.3671981, 48.8662696 2.3794340, 48.8321341 2.3623851, 48.8485694 2.3787232, 48.8482707 2.3787963, 48.8479031 2.3773962, 48.8860129 2.3833794, 48.8864748 2.3822447, 48.8690474 2.3715118, 48.8740289 2.3897101, 48.8366300 2.2819160, 48.8833914 2.3203401, 48.8862586 2.3189581, 48.8820706 2.3158281, 48.8284320 2.2732128, 48.8336263 2.3216697, 48.8410303 2.3944134, 48.8377043 2.4014006, 48.8351529 2.3027945, 48.8357133 2.4054545, 48.8357197 2.3963937, 48.8343203 2.3972498, 48.8771503 2.4022052, 48.8763846 2.4060939, 48.8299585 2.3776878, 48.8269249 2.3424698, 48.8268200 2.3384839, 48.8283835 2.3440786, 48.8395966 2.4017107, 48.8520958 2.4021108, 48.8262033 2.3651094, 48.8313155 2.3153662, 48.8550706 2.3730736, 48.8646989 2.3689158, 48.8595538 2.3756962, 48.8567374 2.3795945, 48.8386023 2.3899562, 48.8512672 2.3756832, 48.8462858 2.3789688, 48.8470868 2.3861179, 48.8462086 2.3834450, 48.8490537 2.3788229, 48.8461979 2.3881729, 48.8513978 2.3785907, 48.8437369 2.3894678, 48.8736510 2.3850793, 48.8377411 2.3194828, 48.8462369 2.3724753, 48.8467907 2.3759445, 48.8511138 2.3765244, 48.8490575 2.3729688, 48.8233963 2.3660652, 48.8461821 2.3751034, 48.8744523 2.3285538, 48.8199911 2.3437577, 48.8220297 2.3464764, 48.8548362 2.3059829, 48.8222882 2.3417753, 48.8471183 2.3177609, 48.8926447 2.3164475, 48.8893428 2.3196669, 48.8893257 2.3220647, 48.8940309 2.3284232, 48.8935528 2.3274406, 48.8834040 2.2884410, 48.8848994 2.2911875, 48.8337371 2.3998182, 48.8351017 2.3851690, 48.8270785 2.3688229, 48.8951731 2.3400219, 48.8332618 2.3645563, 48.8927822 2.3303046, 48.8850861 2.3471124, 48.8855550 2.3755636, 48.8364139 2.3105400, 48.8645238 2.4053843, 48.8662090 2.4059200, 48.8646750 2.4061565, 48.8640693 2.4084076, 48.8534793 2.3370935, 48.8447404 2.3092568, 48.8763021 2.3355074, 48.8649249 2.3544512, 48.8738710 2.3754889, 48.8700969 2.3945662, 48.8722766 2.3763389, 48.8727941 2.3789472, 48.8723774 2.3784509, 48.8618006 2.3438339, 48.8663061 2.3318256, 48.8422494 2.2900049, 48.8759245 2.3823198, 48.8783630 2.3696321, 48.8689441 2.3434176, 48.8612250 2.3505102, 48.8552497 2.3597644, 48.8656221 2.3559687, 48.8634375 2.3612775, 48.8783342 2.3857466, 48.8468100 2.3418230, 48.8389117 2.3208264, 48.8717130 2.3682830, 48.8620636 2.3849490, 48.8815464 2.3661885, 48.8798290 2.3723974, 48.8405772 2.3392592, 48.8337841 2.3146240, 48.8325723 2.3127820, 48.8855543 2.3653665, 48.8636364 2.3997071, 48.8615472 2.4000826, 48.8621754 2.4002743, 48.8672187 2.3572664, 48.8661266 2.3578351, 48.8704507 2.3578003, 48.8777945 2.3400334, 48.8742543 2.3635929, 48.8416628 2.3323403, 48.8371033 2.3917926, 48.8943889 2.3145247, 48.8429214 2.3381927, 48.8742351 2.3197867, 48.8759098 2.3235560, 48.8772158 2.3147005, 48.8229259 2.3277884, 48.8707106 2.3061618, 48.8548574 2.3992583, 48.8373218 2.3543022, 48.8239530 2.3266592, 48.8883400 2.3921657, 48.8217929 2.3436401, 48.8416145 2.3175566, 48.8408856 2.2974421, 48.8701333 2.3495998, 48.8754781 2.3565478, 48.8499722 2.3232975, 48.8497758 2.3813180, 48.8334864 2.3445710, 48.8385482 2.2902657, 48.8483679 2.3757997, 48.8401874 2.3127630, 48.8496593 2.2729682, 48.8763190 2.4041304, 48.8263277 2.3267355, 48.8525562 2.2684402, 48.8233144 2.3271600, 48.8264267 2.3119759, 48.8458418 2.2556708, 48.8303958 2.3431605, 48.8478014 2.2647346, 48.8559854 2.2707171, 48.8607422 2.3534344, 48.8260056 2.3515668, 48.8379482 2.2960836, 48.8515538 2.2912722, 48.8193588 2.3600138, 48.8730992 2.3177685, 48.8848656 2.3798975, 48.8269011 2.3681963, 48.8266216 2.3691514, 48.8749701 2.2864190, 48.8755077 2.2840744, 48.8489245 2.2975729, 48.8435721 2.3826812, 48.8518072 2.2773674, 48.8384314 2.2895621, 48.8568548 2.3944791, 48.8575572 2.3931327, 48.8475297 2.3898249, 48.8808138 2.3286022, 48.8816087 2.3314603, 48.8740981 2.3550319, 48.8544407 2.3918923, 48.8413002 2.3893199, 48.8366273 2.4025423, 48.8445942 2.3097624, 48.8448480 2.3098318, 48.8818286 2.3399461, 48.8644748 2.3724246, 48.8782573 2.3539987, 48.8759426 2.3938847, 48.8457306 2.3127227, 48.8386983 2.2904723, 48.8647366 2.3858705, 48.8550011 2.3728622, 48.8228387 2.3589304, 48.8481890 2.2839192, 48.8730539 2.3622468, 48.8460628 2.3516351, 48.8935894 2.3802035, 48.8939632 2.3834919, 48.8571945 2.3694425, 48.8535594 2.3882434, 48.8715470 2.3362608, 48.8453338 2.2971759, 48.8832160 2.2880960, 48.8242182 2.3584769, 48.8300211 2.3348369, 48.8444692 2.2876673, 48.8847157 2.3871100, 48.8839815 2.2936123, 48.8797902 2.2912630, 48.8483965 2.3521999, 48.8442494 2.3838139, 48.8465937 2.4012442, 48.8470404 2.4068547, 48.8392119 2.3946987, 48.8469029 2.4084295, 48.8711992 2.3244204, 48.8622321 2.2761349, 48.8933957 2.3335323, 48.8446458 2.3838568, 48.8377768 2.3074246, 48.8654991 2.3352993, 48.8710326 2.3446806, 48.8745823 2.3546682, 48.8792964 2.3574736, 48.8844429 2.3757783, 48.8827316 2.3716320, 48.8678917 2.3455591, 48.8710189 2.3207761, 48.8414253 2.2875706, 48.8367077 2.3729356, 48.8529778 2.4083287, 48.8664526 2.3338680, 48.8602942 2.4091403, 48.8454463 2.3809679, 48.8332559 2.3312348, 48.8413560 2.3264560, 48.8686611 2.3679433, 48.8393830 2.2575770, 48.8307032 2.3180543, 48.8271015 2.3092145, 48.8945974 2.3446122, 48.8940080 2.3420130, 48.8937610 2.3481560, 48.8935420 2.3422190, 48.8249519 2.3198800, 48.8688189 2.3633322, 48.8678673 2.3841136, 48.8421866 2.3495998, 48.8564343 2.3736941, 48.8913020 2.3518900, 48.8328413 2.2890914, 48.8791372 2.3927158, 48.8693363 2.3369419, 48.8292969 2.3577990, 48.8527618 2.4068816, 48.8553598 2.3883247, 48.8576634 2.3902679, 48.8570019 2.3907682, 48.8391613 2.2999088, 48.8579949 2.3996680, 48.8846545 2.3473544, 48.8358959 2.4026305, 48.8418462 2.2668066, 48.8818036 2.3371365, 48.8773306 2.3392579, 48.8654195 2.3683698, 48.8692686 2.3627671, 48.8792242 2.3541252, 48.8709994 2.3527672, 48.8711421 2.3527095, 48.8764602 2.3265551, 48.8726855 2.3544641, 48.8279376 2.3215185, 48.8479415 2.2739662, 48.8479031 2.2725737, 48.8502929 2.2705326, 48.8758146 2.3429249, 48.8776783 2.3950607, 48.8421280 2.3629650, 48.8861169 2.3918493, 48.8879982 2.3487210, 48.8887877 2.3498107, 48.8868122 2.3256852, 48.8834537 2.3328703, 48.8856796 2.3259878, 48.8830525 2.3262040, 48.8873350 2.3234292, 48.8939964 2.3323680, 48.8938940 2.3337117, 48.8906510 2.3342133, 48.8966079 2.3382044, 48.8970628 2.3379630, 48.8975027 2.3345968, 48.8961374 2.3461866, 48.8943367 2.3365602, 48.8931394 2.3284963, 48.8837616 2.3334044, 48.8309452 2.3126819, 48.8525068 2.2903630, 48.8426742 2.2822406, 48.8414115 2.2808276, 48.8577342 2.4078256, 48.8568635 2.4080009, 48.8838368 2.3847889, 48.8496859 2.3992762, 48.8589932 2.2764394, 48.8611261 2.2842369, 48.8639428 2.4084587, 48.8671597 2.4041162, 48.8628559 2.3527373, 48.8610518 2.3542343, 48.8629767 2.3535612, 48.8633052 2.3497219, 48.8353511 2.3925763, 48.8475854 2.3972560, 48.8382852 2.3968325, 48.8395273 2.3323394, 48.8426034 2.3845997, 48.8880141 2.3922962, 48.8519521 2.3848662, 48.8534279 2.3834438, 48.8439220 2.3510401, 48.8681249 2.3601102, 48.8816458 2.3735588, 48.8807758 2.3737178, 48.8225454 2.3602368, 48.8288446 2.3012353, 48.8693983 2.3558970, 48.8950310 2.3452340, 48.8809509 2.3730867, 48.8824653 2.3706816, 48.8822580 2.3711604, 48.8731763 2.3440636, 48.8892660 2.3163868, 48.8405768 2.2636739, 48.8323274 2.3357206, 48.8562883 2.4037662, 48.8578307 2.4038842, 48.8720218 2.3430269, 48.8489155 2.2943202, 48.8612237 2.3512988, 48.8763837 2.3483776, 48.8392265 2.3811340, 48.8656025 2.3468798, 48.8759926 2.3239404, 48.8690700 2.3538506, 48.8770752 2.3509789, 48.8768811 2.3522807, 48.8671912 2.3992585, 48.8688039 2.4016891, 48.8724825 2.4048479, 48.8707468 2.3986424, 48.8332008 2.3374165, 48.8899534 2.3615002, 48.8285764 2.3033016, 48.8905323 2.3596305, 48.8888155 2.3602548, 48.8395423 2.2779531, 48.8260077 2.3741386, 48.8560173 2.3760876, 48.8581120 2.3721314, 48.8567897 2.3722474, 48.8431435 2.2776490, 48.8396006 2.2614514, 48.8385727 2.2600917, 48.8445018 2.2969910, 48.8485986 2.2903852, 48.8507401 2.3475146, 48.8755440 2.3956906, 48.8802530 2.3964916, 48.8900121 2.3262557, 48.8462660 2.3758720, 48.8459472 2.3821633, 48.8281746 2.3563344, 48.8510897 2.3308156, 48.8729559 2.3908410, 48.8913760 2.3771659, 48.8615915 2.3335029, 48.8917389 2.3616331, 48.8522672 2.3651848, 48.8892317 2.3356930, 48.8864482 2.3599362, 48.8617073 2.3677371, 48.8288145 2.3655213, 48.8553200 2.3741655, 48.8673506 2.3480275, 48.8596235 2.3682702, 48.8770063 2.3823746, 48.8756399 2.3925198, 48.8916332 2.3759113, 48.8850102 2.2910619, 48.8413337 2.4090408, 48.8516856 2.3636713, 48.8416155 2.3282978, 48.8463560 2.2850476, 48.8646148 2.3562397, 48.8463401 2.2843476, 48.8550524 2.3607242, 48.8891219 2.3742700, 48.8790703 2.3296531, 48.8642779 2.3695879, 48.8661594 2.3444128, 48.8419436 2.3983227, 48.8862706 2.3258112, 48.8258431 2.3570589, 48.8759129 2.3303286, 48.8844216 2.3798109, 48.8436411 2.2944053, 48.8335094 2.3079080, 48.8375593 2.3075878, 48.8329866 2.2943809, 48.8848532 2.3116016, 48.8550088 2.3858779, 48.8540035 2.3861535, 48.8641274 2.3426217, 48.8438574 2.3072079, 48.8468848 2.3064614, 48.8515318 2.3438019, 48.8530679 2.2905561, 48.8881502 2.3762604, 48.8389330 2.3892470, 48.8246925 2.3645687, 48.8428012 2.4050359, 48.8267406 2.3574342, 48.8503295 2.2931941, 48.8853514 2.3263695, 48.8489948 2.2828977, 48.8275294 2.3456790, 48.8234736 2.3658963, 48.8360213 2.3957852, 48.8481035 2.3308491, 48.8475416 2.3309131, 48.8599847 2.3450161, 48.8385663 2.3603627, 48.8781276 2.3695316, 48.8694045 2.3556402, 48.8879662 2.3862902, 48.8580138 2.3821494, 48.8593003 2.3492109, 48.8585959 2.3511475, 48.8589586 2.3486959, 48.8585183 2.3513205, 48.8264650 2.3255446, 48.8564592 2.3031593, 48.8643029 2.3504958, 48.8790449 2.2970432, 48.8791444 2.2972971, 48.8851647 2.3598483, 48.8567290 2.3065898, 48.8678000 2.3864912, 48.8740888 2.3846048, 48.8415632 2.3749443, 48.8215623 2.3662137, 48.8819090 2.2862180, 48.8823940 2.2912340, 48.8400648 2.3497188, 48.8402671 2.3498166, 48.8402671 2.3498166, 48.8415554 2.3495472, 48.8796450 2.2803000, 48.8625842 2.4031454, 48.8792280 2.2828900, 48.8857080 2.2899680, 48.8898260 2.3029100, 48.8498405 2.3852603, 48.8796085 2.3717349, 48.8747850 2.2947390, 48.8757924 2.3723838, 48.8339085 2.3295711, 48.8732544 2.3760882, 48.8794340 2.3871915, 48.8794279 2.3867275, 48.8649421 2.2829335, 48.8748144 2.3790580, 48.8820372 2.3716846, 48.8251894 2.3262850, 48.8772141 2.3546832, 48.8336434 2.3876800, 48.8742619 2.3833629, 48.8403986 2.3037271, 48.8406980 2.3055166, 48.8444454 2.3229017, 48.8831918 2.3761167, 48.8850982 2.3804702, 48.8593397 2.3236648, 48.8799177 2.3757765, 48.8832708 2.3873093, 48.8495360 2.3557600, 48.8529353 2.3445112, 48.8278676 2.3694900, 48.8687382 2.3816808, 48.8679237 2.3828320, 48.8842760 2.3914938, 48.8845436 2.3914120, 48.8799246 2.3748736, 48.8606251 2.3073994, 48.8845082 2.3658573, 48.8725158 2.3779152, 48.8801006 2.3353373, 48.8838889 2.3802753, 48.8755696 2.3936253, 48.8784016 2.3448577, 48.8669892 2.3478869, 48.8753373 2.3903971, 48.8817780 2.3151710, 48.8853880 2.3213970, 48.8398928 2.3566591, 48.8622810 2.3416967, 48.8646878 2.3557933, 48.8627226 2.3724972, 48.8587427 2.3835886, 48.8451912 2.3544808, 48.8709179 2.3661321, 48.8476677 2.2992150, 48.8902933 2.3789075, 48.8424130 2.2816821, 48.8377560 2.2806689, 48.8892161 2.3493454, 48.8789570 2.2904640, 48.8669877 2.3970781, 48.8669101 2.3971237, 48.8470969 2.4154996, 48.8694573 2.4052299, 48.8609250 2.3777382, 48.8617906 2.3644522, 48.8701241 2.3549870, 48.8353148 2.3089601, 48.8474073 2.3179659, 48.8564343 2.3767139, 48.8617306 2.3717459, 48.8637388 2.3717218, 48.8480109 2.3305182, 48.8616060 2.3573874, 48.8750992 2.2920641, 48.8602579 2.3671466, 48.8579948 2.3660380, 48.8580835 2.3656152, 48.8524891 2.3411126, 48.8837276 2.3605607, 48.8275086 2.3693276, 48.8291811 2.3237504, 48.8509533 2.3424752, 48.8640454 2.3428169, 48.8751193 2.3884843, 48.8774525 2.4020416, 48.8535573 2.3854311, 48.8508908 2.3950527, 48.8516085 2.3760189, 48.8534997 2.3831443, 48.8709988 2.3069747, 48.8728273 2.3433945, 48.8562232 2.4037355, 48.8430876 2.3029217, 48.8886357 2.3346957, 48.8484935 2.3707044, 48.8366376 2.3599049, 48.8302591 2.3642127, 48.8829303 2.3343538, 48.8412949 2.3226720, 48.8323589 2.3156645, 48.8425836 2.3031667, 48.8838545 2.2978583, 48.8922801 2.2985255, 48.8356812 2.3870588, 48.8457134 2.2873370 +49.4135676 8.6942734 +yes +1 +yes +157 +Mosquée 'Ali Ibn Al Khattab, Mosquée Al-Fatih, Mosquée de Paris 15ème, Association Culturelle des Musulmans, Abdoulmajid, Mosquée A Daawa, Grande Mosquée de Paris, Centre Culturel Islamique, Association Culturelle Islamique Kurdes, Association Foi et Pratique - Mosquée OMAR, Mosquée Abou Baker Assiddiq, Khalid Ibn Walid, Institut des Cultures d'Islam +2 +yes +yes +30, 31, 32, 33, 30, 31, 32, 33 +yes +25 +15 +yes, yes, yes +yes +Riegler, Bäckerei Rühle, Cafe Frisch, Mahlzahn, Mantei, Riegler, Paris, Mantei, Kamps, Der Kleine Gundel, Bäckerei Rodemer, Bäcker Tschakert, Bäckerei Riegler, Stefansbäck, Bäckerei Grimm, Grimminger, Mantei, Seip, Cafè Frisch, Bäckerei Tschakert, Grimminger, Mahlzahn Vollkornbäckerei, mantei, Bridi, Conditorei Zimmermann, Mantei, Grimminger, Bäckerei Tschakert, Riegler, Görtz, Rühle, Kamps, Göbes Sophie, Schlierbacher Schiff, Mantei, Riegler, Mahlzahn Vollkornbäckerei, Rühle Bäckerei, Riegler, Wiener Feinbäckerei Heberer, LE CROBAG, Helin Backwaren, Grimminger, Mantei, Pfänder, mantei, Mantei, Stefansbäck, Riegler, Patisserie La Flamm, Grimminger, Backshop, Lecker Bäcker, Breitenstein Bäckerei, K&U, Backwaren, Bäckerei Mantei, Bäckerei Wacker, Bäckerei & Konditorei Stahl, Bäckerei Siegel, Café Frisch, Goldkorn, Görtz, Görtz, Laib & Leben, Riegler, Bäckerei Bernauer, Kohlmann +yes +52 +48.8431940 2.3077472, 48.8672770 2.2716529, 48.8626015 2.3440440, 48.8712727 2.3788213, 48.8591328 2.3525765, 48.8833055 2.3634273, 48.8246156 2.3095480, 48.8557538 2.2906075, 48.8316444 2.3266871, 48.8276269 2.2935826, 48.8604886 2.3704044, 48.8820577 2.3422422, 48.8945576 2.3189168, 48.8716471 2.3695539, 48.8907179 2.3749478, 48.8763624 2.3058713, 48.8519343 2.3358691, 48.8313124 2.2750309, 48.8641166 2.2565095, 48.8641719 2.2560642, 48.8490634 2.3517317, 48.8845953 2.3994143, 48.8805352 2.3776953, 48.8824472 2.3896512, 48.8714538 2.3790422, 48.8754975 2.4067088, 48.8943495 2.3510361, 48.8306882 2.3630641, 48.8725599 2.2603094, 48.8569428 2.2604862, 48.8451052 2.2533915, 48.8487410 2.2847647, 48.8472686 2.2819731, 48.8269156 2.3528936, 48.8361129 2.3760717, 48.8447360 2.3478715, 48.8416334 2.4125661, 48.8271261 2.3526169, 48.8268674 2.3526069, 48.8886571 2.2954478, 48.8330815 2.3668374, 48.8451517 2.2531130 +0 +55.9456620 -3.2061210, 55.9443537 -3.2048002, 55.9374112 -3.2346906, 55.9426407 -3.2821897, 55.8956823 -3.3127216, 55.9415461 -3.2037701, 55.9452350 -3.2055760, 55.9447948 -3.1836736, 55.9341803 -3.2107330, 55.9386101 -3.1916219, 55.9360196 -3.1802824, 55.9475772 -3.1860219, 55.9459203 -3.2010630, 55.9587892 -3.1643659, 55.9451748 -3.1864323, 55.9744689 -3.1844184, 55.9246254 -3.2764823, 55.9752473 -3.2384345, 55.9088082 -3.2286678, 55.9589541 -3.2073114, 55.9503203 -3.1782658, 55.9269783 -3.1633004, 55.9569888 -3.1872260, 55.9430591 -3.2094228, 55.9518428 -3.3045734, 55.9453098 -3.1841497, 55.9424929 -3.2818576, 55.9496102 -3.2090585, 55.9497489 -3.2095479, 55.9460372 -3.2224539, 55.9493968 -3.2095231, 55.9359530 -3.2090040, 55.9024661 -3.2880581, 55.9713423 -3.1717866, 55.9439948 -3.2043346, 55.9455833 -3.1843657, 55.9249456 -3.2543275, 55.9522822 -3.1120224, 55.9579450 -3.1718043, 55.9593295 -3.1714717, 55.9486293 -3.1870283, 55.9352201 -3.1141054, 55.9145806 -3.1649266, 55.9625807 -3.1887300, 55.9407885 -3.1806196, 55.9196790 -3.2957655, 55.9624261 -3.1763251, 55.9718675 -3.1714527, 55.9444644 -3.2041891, 55.9090090 -3.1426712, 55.9065326 -3.1333497, 55.9114939 -3.2386783, 55.9405331 -3.2951496, 55.9701290 -3.2319995, 55.9332311 -3.0984278, 55.9591494 -3.2239360, 55.9135516 -3.1356294, 55.9833614 -3.4014836, 55.9296883 -3.2089047, 55.9316500 -3.1357732, 55.9697807 -3.1703478, 55.9364146 -3.2384039, 55.9386968 -3.1031078, 55.9815687 -3.1896732, 55.9633012 -3.1963113, 55.9893631 -3.3990010, 55.9413807 -3.2215371, 55.9240787 -3.2508970, 55.9574632 -3.2408274, 55.9431581 -3.2213233, 55.9280614 -3.2099315, 55.9782397 -3.2432999, 55.9376323 -3.2393738, 55.9016566 -3.2223165, 55.9542878 -3.1417872, 55.9551856 -3.1412308, 55.9661707 -3.2741296, 55.9393608 -3.2517719, 55.9592774 -3.2115003, 55.9447164 -3.2058450, 55.9512626 -3.2957653, 55.9273693 -3.2095452, 55.9266793 -3.2094341, 55.8841015 -3.3394756, 55.9548045 -3.2860448, 55.9024634 -3.1549153, 55.9601182 -3.2953587, 55.9614249 -3.3057303, 55.9617874 -3.3058634, 55.9259926 -3.2464831, 55.9536280 -3.1142869, 55.9246988 -3.3054939, 55.9393031 -3.3165946, 55.9789068 -3.2346781, 55.9790076 -3.2340741 +yes +yes +yes +55.9575618 -3.1847902, 55.9491314 -3.1876537, 55.9757878 -3.2301721, 55.9621811 -3.2003284, 55.9526181 -3.1750774, 55.9471770 -3.1904575, 55.9254145 -3.2090883, 55.9764403 -3.1701500, 55.9504129 -3.2949801, 55.9601603 -3.2006854, 55.9299490 -3.2096090, 55.9592433 -3.2230171, 55.9481079 -3.1917724, 55.9034567 -3.1574061, 55.9808227 -3.2245927, 55.9479318 -3.1942157, 55.9166326 -3.2276420, 55.9467615 -3.2168254, 55.9524553 -3.1968363, 55.9501797 -3.1870275, 55.9428645 -3.2037697, 55.9484729 -3.1956543, 55.9478512 -3.2019348, 55.9452311 -3.1921670, 55.9449743 -3.1941250, 55.9701331 -3.1723584, 55.9411858 -3.2034013, 55.9558388 -3.1571446, 55.9250843 -3.2616025, 55.9473220 -3.2061120, 55.9382464 -3.1945920, 55.9356972 -3.2104575, 55.9457633 -3.2087758, 55.9458777 -3.2095906, 55.9466672 -3.2371272, 55.9308474 -3.2091419, 55.9461542 -3.1854391, 55.9057145 -3.2240658, 55.9618487 -3.1523081, 55.9499509 -3.2074622, 55.9379652 -3.1900697, 55.9487732 -3.1929905, 55.9164262 -3.2851068, 55.9724535 -3.2516505, 55.9626190 -3.2334642, 55.9477849 -3.3610098, 55.9486801 -3.3621149, 55.9459285 -3.2185692, 55.9523009 -3.1919415, 55.9491345 -3.1940862, 55.9512470 -3.1890625, 55.9527128 -3.2015822, 55.9282591 -3.2096099, 55.9518891 -3.1996221, 55.9520193 -3.2031623, 55.9509410 -3.2098198 +no +12 +98 +2 +49.4129429 8.7045098 +138 +no +31 +yes +no +Stephen Sauvestre, Gustave Eiffel, Maurice Koechlin, Émile Nouguier +2 +-34.0444465 19.0099972, 54.3099722 10.2070146, 48.7990140 -88.6180719, 34.3728951 -83.7002886, 34.3730368 -83.7008465, 34.3734548 -83.7016172, 34.3677949 -83.6997959, 34.3716461 -83.7011773, 34.3682200 -83.7002921, 34.3721033 -83.6988826, 34.3721353 -83.6988692, 34.3739219 -83.7015876, 34.3729655 -83.7014039, 34.3735068 -83.7016896, 34.3685267 -83.6993601, 34.3696989 -83.6984950, 1.2557527 103.8127577, 53.6619116 88.8913237, 43.4426729 -86.1786413, 43.4426214 -86.1789629, 39.4028619 -84.1005450, 35.3569792 -120.5765286, 35.3568034 -120.5778855, 35.3572368 -120.5786752, -49.3888520 -73.0614750, 40.2458790 -84.1890776, -37.4954318 145.8788734, -35.9757617 -70.5583996, 53.1639523 -4.0642217, 53.1677564 -4.0604698, 56.1620200 -4.0410972, 43.5378268 -71.3652913, 43.5293962 -71.3712131, 43.5431504 -71.3680647, 43.5431352 -71.3680860, 10.4031662 123.9600115, 43.5263353 -71.3775383, 44.0573739 -71.6321162, 28.6141577 -106.1281698, 14.5490121 121.1308302, -38.6505275 143.4986568, -38.6489894 143.4982376, 35.3593136 -120.5780556, 11.8387258 -85.9966746, 11.8385230 -85.9937576, 11.8385995 -85.9953371, 11.8384134 -85.9960662, 11.8382731 -85.9965158, 11.8386783 -85.9957858, 12.8346642 120.7614297, 40.6012387 -86.7596381, 40.6044820 -86.7674194, 40.6044492 -86.7674255, 19.7875447 -72.2434426, 47.8657201 8.8918371, 47.8659324 8.8916601, 47.8657031 8.8918435, 47.8659153 8.8916614, 19.5231070 -96.9240349, 45.2002358 5.7248284, 60.6041743 -135.0634835, 60.6098319 -135.0625352, 60.6122247 -135.0589421, 14.6983653 101.0636146, 14.6983965 101.0636696, 31.3122133 119.4243546, 22.8469120 -82.9429862, 27.3985735 85.4564097, 27.3793020 85.5277948, 27.4148767 85.5526604, 27.4189786 85.5587896, 36.3171080 -86.4624982, -27.2826326 -52.6862282, 27.9401094 -107.6460602, 40.6788393 -111.5776742, 40.6809542 -111.5771865, 39.7130073 -105.2114983, 39.7129994 -105.2115157 +Backstube +48.8372431 2.4025512, 48.8436827 2.4056942, 48.8476475 2.3732272, 48.8956591 2.3766927, 48.8344171 2.3656055, 48.8819609 2.3610276, 48.8832881 2.3655987, 48.8308432 2.3659695, 48.8703845 2.3744929, 48.8720541 2.2973594, 48.8805098 2.2890182, 48.8305422 2.3206552, 48.9000051 2.3699002, 48.8549413 2.4087999, 48.8785513 2.3191831, 48.8387570 2.2799587, 48.8989533 2.3212671, 48.8714989 2.3580961, 48.8754478 2.3646548, 48.8810188 2.3786602, 48.8521937 2.2751728, 48.8825596 2.3779677, 48.8539100 2.2904495, 48.8315453 2.3647312, 48.8953268 2.3329893, 48.8971290 2.3313799, 48.8564313 2.4002327, 48.8624608 2.3528454, 48.8489432 2.2958380, 48.8446028 2.3805301, 48.8397850 2.3575188, 48.8400031 2.3575222, 48.8442166 2.3890513, 48.8226912 2.3495447, 48.8735753 2.3990719, 48.8767145 2.4045468, 48.8297834 2.2950029, 48.8878961 2.3705889, 48.8593870 2.3702037, 48.8593028 2.3689081, 48.8930174 2.3209663, 48.8576608 2.3609703, 48.8540002 2.3615994, 48.8597150 2.3615075, 48.8211392 2.3471688, 48.8389963 2.3074140, 48.8807050 2.2976303, 48.8786911 2.3684186, 48.8788154 2.3656788, 48.8310119 2.3691821, 48.8305746 2.3590826, 48.8520777 2.3364208, 48.8519979 2.3358911, 48.8782248 2.3818123, 48.8899352 2.3788791, 48.8749997 2.3784035, 48.8801389 2.3744304, 48.8527039 2.3856412, 48.8492131 2.4119154, 48.8874433 2.3939300, 48.8728138 2.3937426, 48.8730441 2.3935237, 48.8599956 2.3704874, 48.8919633 2.3816291, 48.8899568 2.3800977, 48.8572542 2.4071947, 48.8424244 2.2640145, 48.8420921 2.2830474, 48.8755752 2.3071841, 48.8591060 2.4071931, 48.8886602 2.3207587, 48.8774278 2.3664806, 48.8769307 2.3675682, 48.8346716 2.3947154, 48.8204187 2.3630912, 48.8318908 2.3024692, 48.8872133 2.3667612, 48.8824435 2.2894638, 48.8542281 2.2678111, 48.8866121 2.3008785, 48.8437371 2.3505713, 48.8382268 2.3465518, 48.8353795 2.3867511, 48.8297241 2.3607269, 48.8721688 2.3856239, 48.8370947 2.3950913, 48.8574467 2.3768468, 48.8896006 2.3518695, 48.8900462 2.3528052, 48.8889906 2.3376891, 48.8365860 2.4088069, 48.8900265 2.2995953, 48.8373216 2.3574246, 48.8293819 2.3669467, 48.8654608 2.3452436, 48.8864169 2.3618208, 48.8362418 2.3837098, 48.8745907 2.3898579, 48.8882215 2.3616899, 48.8868864 2.3886278, 48.8701494 2.3991414, 48.8775210 2.3961862, 48.8596786 2.4069798, 48.8584409 2.3999616 +194 +yes +yes +yes +52.0455273 8.4506902, 52.0583801 8.5520281, 52.0441674 8.5341281, 52.0579438 8.4922378, 51.9789909 8.5077870, 51.9839158 8.5145830, 52.0148098 8.5415843, 51.9930698 8.6117053, 51.9530548 8.6019656, 52.0929733 8.5326795, 52.0238436 8.5234911, 52.0555549 8.5378820, 52.0051281 8.5264278, 51.9719056 8.4584900, 52.0498292 8.5592441, 51.9862274 8.6330968, 52.0292398 8.6021218, 52.0292227 8.6009951, 52.0272514 8.5957092, 52.0306293 8.6106186, 52.0321219 8.6054609, 52.0473461 8.5908186, 52.0469513 8.5887087, 51.9832360 8.5011688, 52.0231198 8.6053870, 52.0580464 8.6142089, 51.9489161 8.5784781, 52.0005000 8.5830563, 52.0205860 8.5678184, 52.0581150 8.4919573, 52.0312632 8.5407538, 52.0319234 8.5420151, 51.9922699 8.5821902, 52.0462690 8.6409561, 52.0191448 8.5779535, 52.0184508 8.5657079, 51.9986701 8.5845091, 52.0743431 8.6025251, 52.0111171 8.6060838, 52.0754057 8.4694042, 52.0110252 8.6075822, 52.0386901 8.5655696, 52.0318962 8.5656184, 51.9526831 8.5894518, 51.9914877 8.4790051, 51.9478258 8.5866769, 52.0273349 8.5382436, 51.9845111 8.5016418, 52.0542712 8.5439409, 52.0181631 8.5466796, 52.0980842 8.5181968, 52.0949444 8.5198350, 52.0522750 8.5245659, 52.0456077 8.5212121, 52.0419948 8.5160247, 52.0292851 8.5181917, 52.0418895 8.5307595, 52.0327138 8.5227649, 52.0314754 8.5141184, 52.0295337 8.5150115, 52.0157211 8.5484732, 52.0137803 8.5492099, 51.9847361 8.4854709, 51.9859050 8.4877428, 52.0306430 8.5117068, 51.9971967 8.5057650, 51.9934233 8.5091802, 52.0226396 8.5511428, 52.0223364 8.5495579, 52.0233884 8.5519795, 52.0234840 8.5536985, 52.0119814 8.5542137, 52.0265557 8.5458287, 52.0185875 8.5275250, 52.0186597 8.5289951, 51.9475967 8.5920756, 51.9289095 8.5529507, 52.0209783 8.5457695, 52.0294891 8.5129716, 52.0267434 8.4659864, 52.0459901 8.5425345, 52.0682897 8.5224152, 52.0719588 8.5498716, 52.0442328 8.5433584, 52.0113082 8.5270214, 52.0107287 8.5202197, 52.0563214 8.5500007, 52.0094113 8.5265262, 52.0037833 8.5215969, 52.0065591 8.5759589, 51.9891284 8.5001010, 51.9846427 8.5287592, 51.9854958 8.5280680, 51.9843934 8.5268438, 51.9417125 8.5793602, 51.9423426 8.5802746, 51.9600857 8.5281274, 52.0045344 8.5226673, 51.9609763 8.5280751, 52.0048839 8.5221348, 52.0147217 8.5248646, 51.9499358 8.5003082, 51.9568591 8.5479920, 52.0024451 8.5653246, 51.9406388 8.5114804, 52.0017368 8.5684745, 52.0018299 8.5675837, 52.0020334 8.5669169, 51.9906984 8.5078615, 51.9570094 8.5337027, 51.9681157 8.5499373, 52.0005457 8.5605587, 51.9963039 8.4716935, 51.9888194 8.5112622, 52.0205357 8.5287442, 51.9568731 8.5465415, 51.9333689 8.5654391, 52.0112149 8.5297888, 52.0013439 8.5671531, 52.0008115 8.5610395, 52.0926733 8.5329308, 52.0981428 8.5181712, 52.0359476 8.4981338, 52.0104876 8.6080033, 52.0065198 8.5259435, 52.0327367 8.5222372, 52.0719981 8.5498472, 52.0184308 8.5473987, 51.9839295 8.5004598, 51.9932321 8.6110621, 52.0208455 8.5454983, 52.0385624 8.4870408, 52.0946122 8.5195110, 52.0586804 8.5511665, 52.0230297 8.5524206, 52.0307135 8.5117101, 52.0267458 8.4660597, 52.0459428 8.5203701, 52.0207097 8.5292682, 51.9567876 8.5472991, 51.9837555 8.5001033, 52.0111837 8.5268995, 52.0261594 8.5241168, 52.0312156 8.5405749, 52.0272333 8.5379784, 52.0315830 8.5423173, 52.0526516 8.5253445, 52.0106909 8.5203429, 51.9621571 8.4624693, 52.0468920 8.5467931, 52.0186691 8.5656539, 52.0472610 8.5893105, 52.0391035 8.5656780, 52.0315635 8.5657826, 51.9527696 8.6018036, 51.9528793 8.5894680, 51.9717369 8.4582094, 51.9484298 8.5873772, 52.0543651 8.5447212, 51.9487421 8.5784654, 51.9923885 8.5822520, 51.9863326 8.6322964, 52.0010481 8.5831553, 51.9990577 8.5845337, 52.0462874 8.6407281, 52.0579586 8.6142140, 52.0742793 8.6022273, 52.0293357 8.5180617, 52.0206603 8.5676185, 52.0425290 8.5168560, 52.0270594 8.5966793, 52.0323486 8.6056893, 52.0307766 8.6106210, 52.0230896 8.6059771, 52.0500810 8.5586981, 52.0580908 8.4924175, 52.0455684 8.4510738, 52.0421599 8.5307527, 52.0294960 8.5152776, 52.0314045 8.5141317, 52.0586095 8.5515568, 52.0156406 8.5480803, 52.0137807 8.5496365, 52.0556849 8.5374131, 51.9847954 8.4859472, 51.9861104 8.4873591, 52.0308117 8.5117948, 51.9972310 8.5062078, 51.9931065 8.5094547, 52.0114804 8.5539410, 52.0262032 8.6392966, 52.0265579 8.5454510, 52.0150885 8.5416301, 52.0184126 8.5282924, 51.9914510 8.4802500, 51.9415032 8.5795671, 52.0459863 8.5425744, 52.0754750 8.4692456, 52.0679871 8.5225050, 52.0691401 8.4845397, 52.0051550 8.5262181, 52.0039093 8.5212500, 51.9898013 8.5008912, 51.9847292 8.5279845, 51.9842005 8.5139759, 51.9789415 8.5070326, 51.9525819 8.5921145, 51.9285763 8.5528956, 52.0047086 8.5224081, 52.0191169 8.5773881, 51.9603119 8.5285761, 51.9475733 8.5919114, 51.9502642 8.5005356, 51.9568818 8.5332831, 51.9402691 8.5119328, 51.9960941 8.4716263, 51.9884382 8.5106798, 51.9487080 8.5862850, 51.9493095 8.5874506, 51.9483907 8.5883941, 51.9478782 8.5876688, 51.9478908 8.5859766, 51.9482758 8.5858662, 51.9474419 8.5860889, 51.9475824 8.5870706, 52.0104310 8.6074498, 51.9680412 8.5506318, 52.0297068 8.6015894, 51.9862135 8.6337019, 52.0261594 8.5241168, 52.0363421 8.4985163 +48.8382429 2.2578195, 48.8709590 2.3477192, 48.8822577 2.3705521, 48.8469061 2.2850171, 48.8579325 2.3515044, 48.8307271 2.3566617, 48.8676022 2.3623822, 48.8677049 2.3622367, 48.8677682 2.3620989, 48.8654797 2.3747464, 48.8670092 2.3824038, 48.8445017 2.3247331, 48.8259948 2.3570144, 48.8366376 2.3507046, 48.8332031 2.3317979, 48.8738274 2.3848673, 48.8374673 2.2956006, 48.8354775 2.4060799, 48.8206897 2.3639393, 48.8269269 2.3666605, 48.8752761 2.3255792, 48.8756940 2.3269533, 48.8835297 2.3282798, 48.8873012 2.3255264, 48.8593562 2.3461342, 48.8609975 2.3482090, 48.8635373 2.3490562, 48.8514200 2.3437555, 48.8471180 2.3410080, 48.8474500 2.3412160, 48.8430777 2.3636948, 48.8940785 2.3137523, 48.8755989 2.2960624, 48.8728596 2.2990380, 48.8885223 2.3927021, 48.8763139 2.3563480, 48.8833010 2.3854417, 48.8854450 2.2920818, 48.8477882 2.3978367, 48.8656690 2.3706000, 48.8488396 2.2977794, 48.8859856 2.3190545, 48.8471787 2.3866836, 48.8966206 2.3871195, 48.8713129 2.3350843, 48.8760825 2.3441472, 48.8678398 2.2813384, 48.8798267 2.3542435, 48.8799837 2.3538854, 48.8533426 2.4103453, 48.8284080 2.3276636, 48.8290544 2.3276046, 48.8689587 2.3676791, 48.8743099 2.3348778, 48.8789434 2.3780844, 48.8752613 2.3705179, 48.8721385 2.3402693, 48.8977223 2.3441858, 48.8972709 2.3446847, 48.8958920 2.3466158, 48.8825100 2.3378415, 48.8693235 2.3602586, 48.8600406 2.3484986, 48.8272520 2.3064254, 48.8647426 2.3979362, 48.8286719 2.3018801, 48.8370765 2.3521704, 48.8351646 2.3976296, 48.8599854 2.3672407, 48.8710277 2.3356624, 48.8754564 2.3283800, 48.8526719 2.3446864, 48.8751006 2.3400657, 48.8762511 2.3264503, 48.8474749 2.4107917, 48.8490077 2.3495940, 48.8770585 2.3479815, 48.8536307 2.3312600, 48.8816790 2.2888680, 48.8445191 2.3496762, 48.8612245 2.3480050, 48.8602996 2.3436624, 48.8830274 2.3870424, 48.8832752 2.3888891, 48.8589855 2.3540028, 48.8613499 2.3582846, 48.8950228 2.3876904, 48.8612115 2.3668968, 48.8704953 2.3458276, 48.8534957 2.3378664, 48.8618200 2.3730192, 48.8477461 2.3511419, 48.8679678 2.3355626 +St Paul's RC Church, St Ninians, St Andrews Catholic Church, St Margaret and Mary, Saint Margaret's and Saint Leonard's, St Mark's, Holy Cross RC Church, St Margaret's Catholic Church, Church of the Sacred Heart of Jesus, St Columba's, The Parish of St Gregory the Great, Our Lady of Pochaiv and Saint Andrew, St Albert's Catholic Chaplaincy, St Albert's Catholic Chaplaincy +48.8707489 2.3907280, 48.8506016 2.3432743, 48.8459665 2.3500377, 48.8535359 2.3481924, 48.8450745 2.3528309 +yes +Edinburgh Quay, Semple Street, St John's Hill, Edinburgh City Delivery Office, Greenside Place, Sheraton, Princes Exchange, Quartermile, Fountain Park, Castle Terrace, Red Car Park, Blue Car Park, Surgeon's Square, Lochend Close, Waverley Station, Asda Leith Parking, St James Centre, Overflow Car Park - Ocean Terminal, Cruise Liner Terminal, Premier Inn, Car Park E, Car Park B, Car Park D, Car Park C, Car Park F, Car Park A, The Caledonian, John Lewis, Blackfriars Street, Thistle Court, Catalyst Trade Park +no +fuel, post office, bicycle rental, school, restaurant, fire station, parking, post box, police, place of worship, toilets, bank, fountain, parking entrance, hospital, bar, cafe, nightclub, fast food, pub, library, pharmacy, theatre, wine bar, internet cafe, marketplace, bus station, motorcycle parking, cinema, telephone, vending machine, recycling, public building, arts centre, atm, bicycle parking, nursery, swimming pool, doctors, drinking water, taxi, car sharing, veterinary, bench, community centre, car rental, kindergarten, photo lab, bureau de change, videoclub, childcare, clock, waste basket, embassy, social facility, ice cream, townhall, university, ferry terminal, billboard, gallery, college, creche, job centre, driving school, conference centre, mode, association, administration, medical centre, studio, shelter, shower, luggage locker, public office, dancing school, podologist, laboratory, gym, storage, youth centre, money transfer, coworking space, oil, car wash, clinic, food court, parking space, publisher, teahouse, social centre, orthopedic, podiatrist, couture, sports club, radiology, spa, job center, hammam, dentist, nursing home, jobcentre, healthcare, charging station, vehicle inspection, shooting stand, hotel, music school, physiotherapy, vehicle impound, nusery, personal service, courthouse, fitness center, photo booth, fablab, medical laboratory, shisha, cash machine, shisha bar, yes, validateur, lift, photobooth, table, animal boarding, mall, training, authority, hospice, small parking, monastery, basin, convention center, waste disposal, bandstand, prison, retirement home, sports centre, events venue, wall, zen zone +37.7500651 -122.4340964, 37.7494950 -122.4338475, 37.7481784 -122.4318047, 37.7482870 -122.4317704, 37.7879001 -122.4032530, 37.7879882 -122.4037767, 37.7876404 -122.4065068, 37.7873775 -122.4085239, 37.7869825 -122.4117339, 37.7868400 -122.4132360, 37.7867454 -122.4133988, 37.7865280 -122.4151500, 37.7863839 -122.4147044, 37.8074857 -122.4122331, 37.8065738 -122.4141681, 37.7858381 -122.4208295, 37.7860823 -122.4213101, 37.7858443 -122.4215600, 37.8058156 -122.4201928, 37.8061825 -122.4173877, 37.8050741 -122.4248113, 37.8049424 -122.4251017, 37.8047238 -122.4253684, 37.8049272 -122.4254027, 37.8053138 -122.4240294, 37.8024234 -122.4249055, 37.8002533 -122.4244764, 37.7986934 -122.4241845, 37.7964948 -122.4237345, 37.7949360 -122.4234292, 37.7914294 -122.4227083, 37.7873203 -122.4218983, 37.7872205 -122.4163915, 37.7873494 -122.4149152, 37.7874377 -122.4147865, 37.7878071 -122.4133072, 37.7876377 -122.4131357, 37.7878614 -122.4114361, 37.7883158 -122.4080030, 37.7885668 -122.4059259, 37.7894553 -122.4072305, 37.7892383 -122.4089471, 37.7890348 -122.4105779, 37.7888245 -122.4122344, 37.7887296 -122.4136334, 37.7886349 -122.4137618, 37.7882480 -122.4150753, 37.7884387 -122.4153902, 37.7882006 -122.4170495, 37.7936864 -122.4231765, 37.7895224 -122.4223268, 37.8077705 -122.4105938, 37.7858278 -122.4058393, 37.7866147 -122.4049381, 37.7864654 -122.4047321, 37.7874083 -122.4036077, 37.7879204 -122.4029268, 37.7885919 -122.4024548, 37.7884698 -122.4023003, 37.7894632 -122.4012427, 37.7904738 -122.3996977, 37.7909147 -122.3992085, 37.7912199 -122.3990282, 37.7915447 -122.3981096, 37.7919524 -122.3981442, 37.7926895 -122.3975313, 37.7925538 -122.3970849, 37.7942766 -122.3948018, 37.7920324 -122.3977043, 37.7944131 -122.3950607, 37.8075184 -122.4123666, 37.8065215 -122.4134910, 37.8059994 -122.4172590, 37.8056529 -122.4205190, 37.8054155 -122.4221927, 37.8052527 -122.4234200, 37.8051442 -122.4236947, 37.8044396 -122.4250053, 37.8025001 -122.4246362, 37.8006419 -122.4242586, 37.7984038 -122.4237608, 37.7960775 -122.4233316, 37.7940496 -122.4227651, 37.7942082 -122.4229370, 37.7923946 -122.4225591, 37.7913958 -122.4222349, 37.8056122 -122.4218837, 37.7992825 -122.4189061, 37.7991130 -122.4192065, 37.7955320 -122.4181508, 37.7945850 -122.4183350, 37.7946664 -122.4163695, 37.7938050 -122.4096919, 37.7930318 -122.4092112, 37.7853492 -122.4055185, 37.7843469 -122.4045150, 37.7846454 -122.4039142, 37.7847539 -122.4037597, 37.7842316 -122.4041030, 37.7835261 -122.4025151, 37.7829902 -122.4025495, 37.7821627 -122.4008414, 37.7818193 -122.4010039, 37.7806363 -122.3999660, 37.7784384 -122.3966529, 37.7781331 -122.3964297, 37.7771698 -122.3952195, 37.7769255 -122.3950736, 37.7772943 -122.3949229, 37.7772672 -122.3946225, 37.7777963 -122.3939702, 37.7768533 -122.3945023, 37.7755323 -122.3971419, 37.7764838 -122.3985209, 37.7761242 -122.4022631, 37.7779104 -122.4000014, 37.7793078 -122.4020012, 37.7789483 -122.4020957, 37.7771439 -122.4044132, 37.7757191 -122.4064044, 37.7754274 -122.4065417, 37.7739280 -122.4084815, 37.7724490 -122.4103612, 37.7708168 -122.4125663, 37.7703632 -122.4123180, 37.7716591 -122.4138973, 37.7719508 -122.4138029, 37.7721001 -122.4141720, 37.7729006 -122.4154423, 37.7733145 -122.4156912, 37.7741303 -122.4169989, 37.7741981 -122.4173765, 37.7752700 -122.4184494, 37.7754464 -122.4183893, 37.7757381 -122.4191960, 37.7754939 -122.4189385, 37.7736011 -122.4186209, 37.7782225 -122.4194551, 37.7786688 -122.4197882, 37.7798628 -122.4200286, 37.7799849 -122.4198998, 37.7821995 -122.4204866, 37.7828778 -122.4204179, 37.7830062 -122.4205011, 37.7830848 -122.4206947, 37.7849708 -122.4210499, 37.7889845 -122.4026340, 37.7901947 -122.4014023, 37.7896588 -122.4037282, 37.7897402 -122.4049985, 37.7863305 -122.4167890, 37.7861298 -122.4184176, 37.7855735 -122.4228551, 37.7854718 -122.4252669, 37.7851733 -122.4278504, 37.7847663 -122.4281594, 37.7843186 -122.4315412, 37.7848206 -122.4309318, 37.7844196 -122.4328463, 37.7843178 -122.4330266, 37.7845281 -122.4332841, 37.7840872 -122.4333871, 37.7835504 -122.4375282, 37.7839167 -122.4376655, 37.7834826 -122.4392963, 37.7836386 -122.4394164, 37.7831231 -122.4396482, 37.7829535 -122.4395280, 37.7828042 -122.4423433, 37.7829874 -122.4431329, 37.7827913 -122.4458030, 37.7827599 -122.4459811, 37.7823299 -122.4459653, 37.7825329 -122.4467635, 37.7820784 -122.4472957, 37.7820558 -122.4476543, 37.7821802 -122.4476390, 37.7820053 -122.4498532, 37.7822868 -122.4499499, 37.7818988 -122.4530106, 37.7815563 -122.4534053, 37.7798354 -122.4931351, 37.7799168 -122.4934183, 37.7794962 -122.4932037, 37.7794826 -122.4933926, 37.7798191 -122.4936557, 37.7795573 -122.4935814, 37.7799507 -122.4932381, 37.7796794 -122.4963537, 37.7794148 -122.4967056, 37.7792724 -122.4998814, 37.7796794 -122.5028254, 37.7791570 -122.5025164, 37.7798610 -122.5049869, 37.7797389 -122.5052873, 37.7800577 -122.5076563, 37.7798949 -122.5074503, 37.7799221 -122.5099050, 37.7797796 -122.5096304, 37.7791216 -122.5094930, 37.7756617 -122.5003177, 37.7754785 -122.5007383, 37.7754989 -122.5035793, 37.7753293 -122.5039398, 37.7751597 -122.5057852, 37.7750986 -122.5059311, 37.7891981 -122.4152653, 37.7893134 -122.4150078, 37.7910097 -122.4156423, 37.7922029 -122.4157974, 37.7924132 -122.4141495, 37.7927048 -122.4118492, 37.7934544 -122.4078526, 37.7932474 -122.4075663, 37.7934120 -122.4063181, 37.7936086 -122.4047989, 37.7938053 -122.4031510, 37.8070654 -122.4103449, 37.8068551 -122.4106453, 37.8066448 -122.4120271, 37.8065364 -122.4122160, 37.8050377 -122.4118813, 37.8047668 -122.4116465, 37.8027867 -122.4114233, 37.8006774 -122.4105478, 37.8004101 -122.4099889, 37.8002162 -122.4105649, 37.8004332 -122.4105306, 37.7991379 -122.4088569, 37.7992532 -122.4090286, 37.7991922 -122.4087624, 37.7993480 -122.4086509, 37.7971439 -122.4085909, 37.7967709 -122.4082646, 37.7962894 -122.4082732, 37.7953670 -122.4082476, 37.7937799 -122.4077582, 37.8063855 -122.4232325, 37.8036726 -122.4232484, 37.8035574 -122.4233771, 37.8016788 -122.4230252, 37.8014415 -122.4228020, 37.7989229 -122.4224728, 37.7987940 -122.4226445, 37.7986719 -122.4225157, 37.7990178 -122.4223012, 37.7977224 -122.4220351, 37.7970239 -122.4220608, 37.7962210 -122.4217512, 37.7957734 -122.4218285, 37.7952240 -122.4215366, 37.7951087 -122.4214336, 37.7949934 -122.4212963, 37.7942338 -122.4212620, 37.7934741 -122.4211933, 37.7931961 -122.4213478, 37.7923618 -122.4206697, 37.7919217 -122.4210500, 37.7915343 -122.4211418, 37.7908357 -122.4206440, 37.7907543 -122.4207813, 37.7894452 -122.4205410, 37.7895062 -122.4203951, 37.7877969 -122.4203780, 37.7878987 -122.4202148, 37.7879258 -122.4200518, 37.7865827 -122.4199745, 37.7867116 -122.4198114, 37.7868068 -122.4194985, 37.7850972 -122.4196741, 37.8073496 -122.4079591, 37.8072682 -122.4075728, 37.8022905 -122.4029208, 37.8014157 -122.4027320, 37.7996185 -122.4023972, 37.7977263 -122.4020024, 37.7947114 -122.4015355, 37.7951558 -122.4014788, 37.7946810 -122.4013501, 37.7926335 -122.3958328, 37.7943350 -122.3945488, 37.7932952 -122.3934198, 37.7924067 -122.3943554, 37.7919997 -122.3948618, 37.7910162 -122.3961063, 37.7901209 -122.3969646, 37.7899445 -122.3975054, 37.7878245 -122.4001786, 37.7878381 -122.3998524, 37.7864031 -122.4017275, 37.7861318 -122.4023197, 37.7829558 -122.4066225, 37.7827998 -122.4067084, 37.7825217 -122.4068886, 37.7825488 -122.4065625, 37.7823996 -122.4070345, 37.7811378 -122.4083649, 37.7808122 -122.4090258, 37.7793876 -122.4105793, 37.7790281 -122.4113003, 37.7775322 -122.4128952, 37.7771862 -122.4129896, 37.7773219 -122.4134703, 37.7764060 -122.4143114, 37.7761075 -122.4150066, 37.7727900 -122.4191952, 37.7731428 -122.4182596, 37.7703747 -122.4197788, 37.7707614 -122.4203453, 37.7680204 -122.4200621, 37.7670705 -122.4197531, 37.7663920 -122.4198732, 37.7653010 -122.4195354, 37.7651503 -122.4193840, 37.7649400 -122.4199505, 37.7648246 -122.4197531, 37.7618662 -122.4197445, 37.7620562 -122.4192896, 37.7616287 -122.4194612, 37.7605363 -122.4191351, 37.7600545 -122.4193153, 37.7584056 -122.4191522, 37.7589009 -122.4189892, 37.7573130 -122.4188433, 37.7568991 -122.4189892, 37.7557658 -122.4186802, 37.7551890 -122.4188518, 37.7541440 -122.4185343, 37.7535875 -122.4186630, 37.7524610 -122.4183540, 37.7523117 -122.4181566, 37.7521692 -122.4186716, 37.7520334 -122.4185343, 37.7494003 -122.4180794, 37.7490202 -122.4178648, 37.7488845 -122.4182253, 37.7482533 -122.4186802, 37.7468756 -122.4191608, 37.7469774 -122.4188862, 37.7452468 -122.4202165, 37.7702405 -122.4456788, 37.7815477 -122.4557681, 37.7812324 -122.4564824, 37.7814265 -122.4586356, 37.7811374 -122.4585605, 37.7810466 -122.4587536, 37.7815096 -122.4590144, 37.7813234 -122.4609038, 37.7810177 -122.4612687, 37.7811823 -122.4641071, 37.7807956 -122.4641973, 37.7807845 -122.4643617, 37.7808764 -122.4644255, 37.7807541 -122.4671566, 37.7809983 -122.4678003, 37.7808931 -122.4704703, 37.7805778 -122.4708931, 37.7810594 -122.4721634, 37.7803132 -122.4724209, 37.7804958 -122.4725340, 37.7807715 -122.4726936, 37.7806388 -122.4759657, 37.7803132 -122.4764378, 37.7804922 -122.4791912, 37.7801791 -122.4795855, 37.7800298 -122.4827784, 37.7798738 -122.4845980, 37.7803080 -122.4848555, 37.7802469 -122.4845465, 37.7799349 -122.4849328, 37.7801045 -122.4877394, 37.7797924 -122.4881085, 37.7800027 -122.4899024, 37.7796974 -122.4902800, 37.7795957 -122.4919966, 37.7799552 -122.4923228, 37.7850328 -122.4240337, 37.7846530 -122.4214931, 37.7845512 -122.4213300, 37.7850919 -122.4181325, 37.7850396 -122.4177938, 37.7853788 -122.4158712, 37.7854466 -122.4144979, 37.7855823 -122.4142146, 37.7858650 -122.4121391, 37.7860368 -122.4097600, 37.7863556 -122.4081893, 37.7866812 -122.4056144, 37.7870169 -122.4179793, 37.7866235 -122.4210522, 37.7861695 -122.4245155, 37.7859114 -122.4264595, 37.7857487 -122.4278070, 37.7867524 -122.4285794, 37.7866167 -122.4285538, 37.7864675 -122.4297640, 37.7865965 -122.4297039, 37.7861826 -122.4330771, 37.7860469 -122.4330340, 37.7859385 -122.4331370, 37.7858910 -122.4333344, 37.7859723 -122.4346907, 37.7857893 -122.4350941, 37.7855452 -122.4380551, 37.7853687 -122.4384070, 37.7852332 -122.4395228, 37.7852534 -122.4393683, 37.7853485 -122.4396517, 37.7854773 -122.4398147, 37.7850228 -122.4399262, 37.7849142 -122.4430247, 37.7847380 -122.4433766, 37.7844192 -122.4458487, 37.7841884 -122.4463035, 37.7846498 -122.4461747, 37.7864066 -122.4400121, 37.7826267 -122.4209352, 37.7821927 -122.4192077, 37.7831831 -122.4189845, 37.7830542 -122.4189502, 37.7833323 -122.4177486, 37.7831356 -122.4174224, 37.7832848 -122.4172336, 37.7834951 -122.4156457, 37.7837190 -122.4139463, 37.7839225 -122.4123155, 37.7333439 -122.4341146, 37.7336018 -122.4339773, 37.7333778 -122.4337627, 37.7306904 -122.4313129, 37.7285513 -122.4313423, 37.7286056 -122.4315569, 37.7287414 -122.4310075, 37.7285928 -122.4310211, 37.7164063 -122.4407726, 37.7162841 -122.4412790, 37.7147304 -122.4426465, 37.7296110 -122.4331926, 37.7261179 -122.4335362, 37.7725629 -122.4271208, 37.7724886 -122.4271971, 37.7727613 -122.4255587, 37.7728240 -122.4254941, 37.7750096 -122.4193518, 37.7752830 -122.4191695, 37.7237397 -122.4527763, 37.8026615 -122.4058342, 37.7602500 -122.4381220, 37.8000731 -122.4427175, 37.8000773 -122.4429777, 37.8002766 -122.4410592, 37.8001123 -122.4413201, 37.7998569 -122.4443992, 37.7991938 -122.4517479, 37.7982490 -122.4474040, 37.7938960 -122.3962630, 37.7350442 -122.4750296, 37.7348192 -122.4745190, 37.7348959 -122.4718603, 37.7826712 -122.4715165, 37.7900779 -122.3973324, 37.8063946 -122.4755980, 37.8066743 -122.4754598, 37.8073122 -122.4750992, 37.8077451 -122.4747013, 37.7985742 -122.4470382, 37.8003316 -122.4468364, 37.8015284 -122.4299080, 37.8163406 -122.3719841, 37.8159189 -122.3712035, 37.8198117 -122.3663991, 37.8240897 -122.3725534, 37.8217995 -122.3675153, 37.8251277 -122.3701037, 37.8251958 -122.3698336, 37.8282634 -122.3718811, 37.8298005 -122.3733581, 37.7698835 -122.4483879, 37.7696842 -122.4487848, 37.7734369 -122.4495198, 37.7736095 -122.4491588, 37.7759209 -122.4462621, 37.7754086 -122.4499596, 37.7753704 -122.4494447, 37.7750352 -122.4531023, 37.7749600 -122.4525772, 37.7744927 -122.4582852, 37.7742595 -122.4580599, 37.7743273 -122.4587090, 37.7752263 -122.4651517, 37.7770368 -122.4639232, 37.8051033 -122.4322388, 37.8070241 -122.4071695, 37.7268052 -122.4756978, 37.7270758 -122.4757595, 37.7273213 -122.4751556, 37.7767196 -122.4262286, 37.7877082 -122.4066920, 37.7877749 -122.4435048, 37.7875969 -122.4435646, 37.7853936 -122.4093312, 37.7621911 -122.4352428, 37.7623119 -122.4350524, 37.7624107 -122.4359472, 37.7623663 -122.4355805, 37.7624148 -122.4374826, 37.7628952 -122.4350231, 37.7638864 -122.4332716, 37.7639457 -122.4336524, 37.7677871 -122.4291506, 37.7676579 -122.4291238, 37.7672427 -122.4291913, 37.7678942 -122.4291010, 37.7672911 -122.4288313, 37.7678572 -122.4287240, 37.7882810 -122.4034650, 37.7920316 -122.4158514, 37.7890998 -122.4166329, 37.7929197 -122.4160112, 37.7956283 -122.4167948, 37.7623781 -122.3973643, 37.7659491 -122.4499203, 37.7777491 -122.4166993, 37.7784932 -122.4145772, 37.7996086 -122.4360904, 37.7997022 -122.4362285, 37.7995695 -122.4391803, 37.8004874 -122.4475303, 37.7990605 -122.4430620, 37.7999719 -122.4359078, 37.7988819 -122.4428431, 37.8006033 -122.4309704, 37.7993017 -122.4395074, 37.7920664 -122.4230774, 37.7939521 -122.4233809, 37.7984888 -122.4242871, 37.7228751 -122.4492993, 37.7843417 -122.4083799, 37.7732193 -122.5094719, 37.7730526 -122.5100823, 37.7713376 -122.5094780, 37.7730623 -122.5099524, 37.7736359 -122.5098469, 37.7510820 -122.4365124, 37.7902660 -122.4225849, 37.7809200 -122.4207186, 37.7734715 -122.4716467, 37.7732222 -122.4720004, 37.7767410 -122.4722999, 37.7845288 -122.4729578, 37.7730544 -122.4719870, 37.7769513 -122.4723886, 37.7765902 -122.4721548, 37.7843461 -122.4727748, 37.7733124 -122.4719545, 37.7824738 -122.4731577, 37.7772126 -122.4718860, 37.7846952 -122.4724611, 37.7842309 -122.4726881, 37.7653711 -122.4768439, 37.7637253 -122.4773406, 37.7651265 -122.4774410, 37.7651763 -122.4771473, 37.7655195 -122.4775619, 37.7981369 -122.4040437, 37.7984038 -122.4019150, 37.7864698 -122.3980058, 37.7898678 -122.4007776, 37.7846489 -122.4070405, 37.7841266 -122.4084047, 37.7559775 -122.4764013, 37.7601283 -122.4767065, 37.7483732 -122.4761739, 37.7599874 -122.4769846, 37.7526487 -122.4761825, 37.7487336 -122.4758329, 37.7562359 -122.4767119, 37.7503718 -122.4760331, 37.7451990 -122.4756672, 37.7464646 -122.4760287, 37.7540793 -122.4765228, 37.7502718 -122.4762798, 37.7485093 -122.4758701, 37.7485547 -122.4762718, 37.7521106 -122.4764229, 37.7577989 -122.4768064, 37.7450879 -122.4759346, 37.7466328 -122.4757654, 37.7578031 -122.4765444, 37.7540943 -122.4762690, 37.7373068 -122.4751533, 37.7271849 -122.4746491, 37.7413368 -122.4756969, 37.7414759 -122.4754270, 37.7391897 -122.4752419, 37.7309279 -122.4747158, 37.7433289 -122.4758221, 37.7263033 -122.4752117, 37.7433139 -122.4754986, 37.7391607 -122.4755616, 37.7376007 -122.4754212, 37.7311504 -122.4746276, 37.7310304 -122.4745228, 37.7312595 -122.4750192, 37.7216548 -122.4754813, 37.7173134 -122.4730047, 37.7645489 -122.4431699, 37.7774736 -122.4588050, 37.7769033 -122.4586521, 37.7771471 -122.4583141, 37.7693989 -122.4293944, 37.7934341 -122.3952982, 37.7860637 -122.4568864, 37.7875574 -122.4467799, 37.7875773 -122.4469696, 37.7865288 -122.4532785, 37.7879454 -122.4407257, 37.7862633 -122.4553541, 37.7863128 -122.4536142, 37.7846320 -122.4644747, 37.7869618 -122.4499244, 37.7871212 -122.4472522, 37.7856633 -122.4588196, 37.7881142 -122.4408796, 37.7508325 -122.4439701, 37.7511656 -122.4385830, 37.7471736 -122.4441832, 37.7704174 -122.4452853, 37.7741217 -122.4463069, 37.7757135 -122.4466914, 37.7669041 -122.4479460, 37.7700367 -122.4454051, 37.7673187 -122.4464799, 37.7739565 -122.4465032, 37.7702021 -122.4449433, 37.7788494 -122.4469825, 37.7672489 -122.4466451, 37.7718076 -122.4457938, 37.7719176 -122.4456066, 37.7756581 -122.4463390, 37.7785087 -122.4472714, 37.7671329 -122.4465199, 37.7786914 -122.4474453, 37.7774219 -122.4469247, 37.7670424 -122.4462687, 37.7670868 -122.4479048, 37.7739120 -122.4458712, 37.7675684 -122.4448406, 37.7787954 -122.4472048, 37.7673422 -122.4448799, 37.7146481 -122.4719381, 37.7244830 -122.4024083, 37.7169648 -122.3891600, 37.8014600 -122.4315507, 37.8015624 -122.4313898, 37.7352745 -122.5045674, 37.7351796 -122.5004996, 37.7352755 -122.5026037, 37.7098977 -122.3930198, 37.7167597 -122.4413933, 37.7165622 -122.4408255, 37.7324082 -122.4059021, 37.7293737 -122.4150047, 37.7692570 -122.4291174, 37.7291475 -122.4193716, 37.7339634 -122.3907499, 37.7343056 -122.3907340, 37.8269448 -122.3774052, 37.8219781 -122.3678899, 37.8183698 -122.3702624, 37.8299019 -122.3752682, 37.8283168 -122.3771872, 37.7900667 -122.3942010, 37.7904673 -122.3932275, 37.7885774 -122.3909566, 37.7899382 -122.3923940, 37.7892706 -122.3935798, 37.8199566 -122.3664933, 37.8231753 -122.3748357, 37.8241714 -122.3754505, 37.7485022 -122.4589160, 37.7467379 -122.4583284, 37.7689281 -122.4356947, 37.7721358 -122.4307953, 37.7720055 -122.4303556, 37.7722134 -122.4305711, 37.7720894 -122.4301052, 37.7920140 -122.4815698, 37.7378001 -122.4514647, 37.7377651 -122.4517551, 37.7716459 -122.5036197, 37.7535905 -122.4954095, 37.7532925 -122.4955658, 37.7607702 -122.4960244, 37.7844955 -122.3952726, 37.7628573 -122.3908626, 37.7877434 -122.4216333, 37.7587055 -122.4631292, 37.7585995 -122.4640519, 37.7584595 -122.4639124, 37.7582899 -122.4638427, 37.7605076 -122.4406247, 8.5077722 125.9789017, 37.7240697 -122.4522341, 37.7259918 -122.4522582, 37.7240485 -122.4524859, 37.7254488 -122.4525023, 37.7208496 -122.4474323, 37.7211045 -122.4473020, 37.7345842 -122.4719275, 37.7675843 -122.4355739, 37.7730240 -122.4528432, 37.7732066 -122.4524004, 37.8056765 -122.4371753, 37.7791532 -122.5129411, 37.7653828 -122.4156514, 37.7655458 -122.4128777, 37.7758058 -122.4971516, 37.7770300 -122.4640939, 37.7771635 -122.4636541, 37.7773038 -122.4642640, 37.7811799 -122.4122670, 37.7901405 -122.3932844, 37.7897441 -122.3935526, 37.7900769 -122.3938342, 37.7900303 -122.3929249, 37.7898479 -122.3929436, 37.7900153 -122.3936678, 37.7902698 -122.3932093, 37.7897844 -122.3938369, 37.7896339 -122.3928472, 37.7895788 -122.3933326, 37.7902549 -122.3935874, 37.7896742 -122.3936921, 37.7899687 -122.3930777, 37.7898459 -122.3936974, 37.7901977 -122.3934346, 37.7895215 -122.3929732, 37.7645161 -122.4327886, 37.7774211 -122.4160269, 37.7646988 -122.4244233, 37.7517598 -122.4254173, 37.7518770 -122.4255434, 37.7518932 -122.4231645, 37.7520190 -122.4226923, 37.7520780 -122.4202115, 37.7521821 -122.4204097, 37.7846325 -122.4668493, 37.7848927 -122.4647404, 37.7847936 -122.4669432, 37.7848461 -122.4651260, 37.7850597 -122.4648309, 37.7687493 -122.4030378, 37.7661987 -122.4028340, 37.7698985 -122.4034375, 37.7664574 -122.4026543, 37.7674763 -122.4028943, 37.7685627 -122.4028608, 37.7672368 -122.4026933, 37.7697585 -122.4032336, 37.7933155 -122.4011185, 37.7940361 -122.4014297, 37.7948174 -122.4012457, 37.7937309 -122.4011453, 37.7941718 -122.4012902, 37.7953841 -122.3969718, 37.7945999 -122.4030014, 37.7951679 -122.3989406, 37.7946423 -122.4047127, 37.7943922 -122.4045947, 37.7945109 -122.3977014, 37.7957783 -122.4035808, 37.7932052 -122.4012151, 37.7941845 -122.4002602, 37.7409957 -122.4661951, 37.7412300 -122.4662434, 37.7420207 -122.4942784, 37.7423984 -122.4946065, 37.7481450 -122.4139340, 37.7485740 -122.4136090, 37.7483690 -122.4140740, 37.7470478 -122.4135113, 37.8015930 -122.4295070, 37.7693241 -122.4529187, 37.7691502 -122.4531333, 37.7779590 -122.4382840, 37.7486563 -122.4707231, 37.7779013 -122.4381208, 37.7488826 -122.4686623, 37.7490207 -122.4684000, 37.7764755 -122.4261860, 37.7624054 -122.4149348, 37.7985693 -122.4243300, 37.7452070 -122.4133817, 37.7988554 -122.4523659, 8.5070910 125.9786762, 37.7229652 -122.4525001, 37.7237354 -122.4562527, 37.7479625 -122.4589779, 37.7316164 -122.4533024, 37.7236887 -122.4560891, 37.7585862 -122.4660394, 37.7583654 -122.4701243, 37.7340666 -122.4990233, 37.7339718 -122.4968714, 37.7368504 -122.4537673, 37.7729932 -122.4769430, 37.7728380 -122.4764588, 37.7748147 -122.4548948, 37.7767640 -122.4757735, 37.7766315 -122.4760914, 37.7655815 -122.4152362, 37.7650043 -122.4193576, 37.7652037 -122.4161172, 37.7618958 -122.4151034, 37.7650786 -122.4153876, 37.7337604 -122.4934171, 37.7339214 -122.4896757, 37.7338345 -122.4917168, 37.7869084 -122.4565151, 37.7529699 -122.4341555, 37.7316291 -122.4513250, 37.7299803 -122.4512285, 37.7314275 -122.4532403, 37.8082789 -122.4141009, 37.7693980 -122.4521124, 37.7734254 -122.4663049, 37.8005296 -122.4475648, 37.7997086 -122.4362667, 37.8008427 -122.4276089, 37.7881551 -122.4090877, 37.7904499 -122.4055375, 37.7927644 -122.3927085, 37.8084123 -122.4100480, 37.8071167 -122.4156479, 37.8004525 -122.4105821, 37.7950657 -122.3999088, 37.7874729 -122.4078678, 37.7857365 -122.4096385, 37.7800009 -122.4167733, 37.8167937 -122.3722982, 37.7761697 -122.4215410, 37.7745791 -122.4341180, 37.7936998 -122.4213961, 37.7707344 -122.4660864, 37.8020728 -122.4125753, 37.7902111 -122.4076489, 37.7899758 -122.4071611, 21.4076261 -77.8795289, 37.7763563 -122.3958020, 37.7844521 -122.4711623, 37.7846142 -122.4708404, 37.7818385 -122.4923290, 37.7834186 -122.4924440, 37.7836006 -122.4901440, 37.7836650 -122.4884266, 37.7839554 -122.4820021, 37.7837954 -122.4853763, 37.7840959 -122.4787941, 37.7929233 -122.4178901, 37.7814696 -122.4933616, 37.7834210 -122.4925857, 37.7837098 -122.4905627, 37.7838163 -122.4880702, 37.7839687 -122.4848702, 37.7841139 -122.4816301, 37.7818213 -122.4924756, 37.7815116 -122.4935222, 37.7716631 -122.4016977, 37.7980264 -122.4502029 +27 +48.7701846 9.1396353, 48.7276835 9.1087426, 48.7294246 9.1656576, 48.7809227 9.1806028, 48.7273902 9.1117501, 48.7645889 9.1733372, 48.8176857 9.2487742, 48.8334775 9.1794198, 48.7276867 9.1024524, 48.7829242 9.2062334, 48.7646171 9.1434123, 48.7312314 9.1274441, 48.7363026 9.1093466, 48.8154007 9.1200702, 48.8045414 9.1778666, 48.7223376 9.1573845, 48.7240693 9.1930107, 48.7005838 9.2090522, 48.8297902 9.1944334, 48.7381037 9.1020154, 48.7443115 9.1090715 +48.7156317 8.2268140, 48.7913607 8.1911997, 48.7290336 8.1554927, 48.7522067 8.2485351, 48.7535173 8.2447141, 48.7677441 8.2305067, 48.7769422 8.2549352, 48.7464556 8.2066346, 48.7981271 8.1679392, 48.7074798 8.3199480, 48.7386713 8.2896820, 48.7778355 8.1869501, 48.7074212 8.2330668, 48.7784092 8.1874412 +1 +133 +no +48.8489454 2.2753957, 48.8631204 2.2959928, 48.8295614 2.3220688, 48.8290722 2.3230781, 48.8423298 2.3028026, 48.8407876 2.3040494, 48.8451549 2.3019755, 48.8471891 2.3015558, 48.8429709 2.3024401, 48.8285206 2.2733738, 48.8424752 2.3019568, 48.8418283 2.2998841, 48.8439154 2.3068381, 48.8446620 2.3093235, 48.8465947 2.3160230, 48.8404472 2.3046245, 48.8416066 2.3084716, 48.8430491 2.3131144, 48.8432489 2.3126660, 48.8407276 2.3213414, 48.8447967 2.3246227, 48.8521941 2.3306860, 48.8516434 2.3277444, 48.8517487 2.3307914, 48.8453875 2.3686867, 48.8453126 2.3695255, 48.8456772 2.3714536, 48.8446991 2.3642693, 48.8460901 2.3720874, 48.8522029 2.3264371, 48.8421458 2.2990380, 48.8513250 2.3334375, 48.8517725 2.3274517, 48.8614952 2.3146148, 48.8598983 2.3144020, 48.8627959 2.3145027, 48.8514038 2.3013568, 48.8508889 2.3003799, 48.8515520 2.3004186, 48.8308078 2.3185643, 48.8306269 2.3187317, 48.8782918 2.3708065, 48.8397144 2.3019191, 48.8375382 2.2971355, 48.8375549 2.2958212, 48.8277556 2.3350602, 48.8342302 2.3084216, 48.8337381 2.3083597, 48.8577162 2.2801463, 48.8692186 2.3380768, 48.8951906 2.3716079, 48.8488965 2.3721895, 48.8400074 2.3043626, 48.8387638 2.3500744, 48.8514130 2.2915579, 48.8421476 2.3380942, 48.8371927 2.3352257, 48.8436151 2.3388947, 48.8334455 2.3333666, 48.8302224 2.3558903, 48.8311270 2.3568429, 48.8317798 2.3548457, 48.8276307 2.3705268, 48.8280051 2.3709464, 48.8278600 2.3718371, 48.8274045 2.3716705, 48.8292814 2.3691462, 48.8290293 2.3692466, 48.8216733 2.3728996, 48.8214437 2.3696601, 48.8220079 2.3692237, 48.8518092 2.2901250, 48.8417779 2.3558325, 48.8408784 2.3559403, 48.8218716 2.3246518, 48.8376901 2.2820340, 48.8391393 2.2823450, 48.8387215 2.2787139, 48.8364152 2.2781531, 48.8345348 2.3055831, 48.8533525 2.2619231, 48.8475302 2.2576087, 48.8370719 2.2967038, 48.8428790 2.2982280, 48.8764756 2.4075759, 48.8266663 2.3642727, 48.8268069 2.3643956, 48.8267306 2.3419868, 48.8264737 2.3412334, 48.8264236 2.3423158, 48.8536250 2.3437819, 48.8588770 2.4023128, 48.8396998 2.4034172, 48.8598079 2.3768859, 48.8612952 2.3744128, 48.8620613 2.3731116, 48.8636493 2.3704713, 48.8654096 2.3675445, 48.8663455 2.3659468, 48.8196069 2.3594300, 48.8461522 2.3546060, 48.8458450 2.3736979, 48.8457039 2.3733492, 48.8895461 2.3352459, 48.8894531 2.3359432, 48.8273904 2.3050421, 48.8567324 2.3043552, 48.8584379 2.3035340, 48.8548691 2.3054827, 48.8454773 2.2554465, 48.8223316 2.3419720, 48.8775617 2.3941614, 48.8761654 2.3933417, 48.8779414 2.3962154, 48.8756031 2.3951576, 48.8755800 2.3949365, 48.8440426 2.3549543, 48.8438530 2.3548289, 48.8464037 2.3543532, 48.8361988 2.3588368, 48.8361684 2.3591102, 48.8387053 2.3570294, 48.8381693 2.3564318, 48.8929485 2.3159296, 48.8929197 2.3162667, 48.8909941 2.3193302, 48.8911749 2.3179130, 48.8894313 2.3163369, 48.8876223 2.3144223, 48.8874986 2.3253262, 48.8834896 2.3279960, 48.8873787 2.3179072, 48.8862910 2.3187654, 48.8887699 2.3158511, 48.8912420 2.3182656, 48.8918862 2.3180604, 48.8904358 2.3205767, 48.8893469 2.3224626, 48.8893845 2.3221190, 48.8878021 2.3255557, 48.8952747 2.3124246, 48.8948740 2.3126337, 48.8871083 2.3136568, 48.8858524 2.3094045, 48.8849003 2.3065213, 48.8838357 2.3042691, 48.8813537 2.3003856, 48.8775401 2.2986435, 48.8748487 2.2973688, 48.8704345 2.3060391, 48.8366185 2.3104474, 48.8577397 2.3545629, 48.8929348 2.3267686, 48.8931223 2.3281296, 48.8974905 2.3299074, 48.8974156 2.3252188, 48.8922272 2.3240507, 48.8921486 2.3230976, 48.8780205 2.2838377, 48.8781429 2.2805112, 48.8805065 2.2838154, 48.8794920 2.2845803, 48.8815848 2.2853027, 48.8834211 2.2877660, 48.8835995 2.2885119, 48.8859228 2.2916718, 48.8856895 2.2924723, 48.8859435 2.2927942, 48.8863363 2.2929571, 48.8874458 2.2942814, 48.8870051 2.2950089, 48.8865481 2.2962193, 48.8875347 2.2989191, 48.8896933 2.3035707, 48.8896203 2.3026023, 48.8854063 2.2988360, 48.8904213 2.3050920, 48.8944575 2.3142796, 48.8355970 2.3973223, 48.8334019 2.3950589, 48.8342917 2.4003980, 48.8322566 2.3976172, 48.8356048 2.3860649, 48.8390275 2.3886414, 48.8384800 2.3884593, 48.8350607 2.3928884, 48.8511521 2.3437828, 48.8348982 2.3047212, 48.8349768 2.3054600, 48.8325038 2.3563901, 48.8373899 2.3453840, 48.8374797 2.3456195, 48.8379605 2.3456162, 48.8368846 2.3522809, 48.8341040 2.3538359, 48.8280231 2.2728182, 48.8372917 2.3516257, 48.8406075 2.3453776, 48.8415971 2.3434977, 48.8441863 2.3421945, 48.8464783 2.3410545, 48.8500927 2.3434240, 48.8505941 2.3460792, 48.8319357 2.3595832, 48.8372433 2.3905356, 48.8531563 2.2797589, 48.8978630 2.3451130, 48.8973821 2.3234126, 48.8978263 2.3330372, 48.8497208 2.3421402, 48.8498845 2.3425106, 48.8649583 2.3025212, 48.8612284 2.2843342, 48.8612363 2.2837982, 48.8525670 2.3435715, 48.8540489 2.3472499, 48.8651536 2.3438914, 48.8648972 2.3444013, 48.8659762 2.3403632, 48.8700786 2.3390402, 48.8686963 2.3407757, 48.8711062 2.3324548, 48.8655300 2.3432955, 48.8277565 2.3319745, 48.8375896 2.3909693, 48.8647311 2.3455877, 48.8665372 2.3507814, 48.8502691 2.3592646, 48.8580480 2.3480557, 48.8583004 2.3481974, 48.8536627 2.3572222, 48.8561685 2.3573966, 48.8577280 2.3480747, 48.8792548 2.3897570, 48.8601321 2.3565738, 48.8574275 2.3991286, 48.8618401 2.4002194, 48.8614260 2.4001621, 48.8654069 2.3981526, 48.8644101 2.3987377, 48.8529164 2.4061182, 48.8522508 2.4060578, 48.8481835 2.4065736, 48.8480869 2.4062423, 48.8577419 2.3994826, 48.8595686 2.4017103, 48.8592406 2.4024195, 48.8594221 2.4024764, 48.8565434 2.4048103, 48.8559169 2.4049577, 48.8598233 2.3566791, 48.8588131 2.3584686, 48.8552188 2.3613773, 48.8563513 2.3645998, 48.8538981 2.3652524, 48.8534024 2.3684609, 48.8512417 2.3630436, 48.8515266 2.3620585, 48.8522576 2.3663930, 48.8524324 2.3663947, 48.8631921 2.3515058, 48.8628413 2.3530497, 48.8629125 2.3542573, 48.8666488 2.3610364, 48.8652056 2.3568722, 48.8567580 2.3644946, 48.8418157 2.3208197, 48.8421032 2.3593721, 48.8442022 2.4403364, 48.8316687 2.3144509, 48.8319547 2.3138177, 48.8330154 2.3109762, 48.8325273 2.3118658, 48.8307202 2.3195057, 48.8387309 2.3170445, 48.8378977 2.3189435, 48.8323668 2.3205507, 48.8342061 2.3218334, 48.8364800 2.3227216, 48.8380166 2.3228744, 48.8409450 2.3216884, 48.8429348 2.3240148, 48.8430021 2.3236957, 48.8435373 2.3236944, 48.8436885 2.3245680, 48.8422437 2.3289484, 48.8384348 2.3221998, 48.8358029 2.3237262, 48.8365711 2.3231310, 48.8534432 2.3343769, 48.8532439 2.3325237, 48.8493704 2.3375128, 48.8475201 2.3400808, 48.8441246 2.3385444, 48.8509422 2.3268033, 48.8510630 2.3263437, 48.8437235 2.3301587, 48.8451806 2.3320051, 48.8435853 2.3386214, 48.8415167 2.3298708, 48.8415819 2.3295984, 48.8473053 2.3164904, 48.8656756 2.3523315, 48.8814037 2.3577012, 48.8817615 2.3578713, 48.8639328 2.3513569, 48.8811334 2.3575727, 48.8714947 2.3556284, 48.8806709 2.3573534, 48.8808660 2.3574489, 48.8674622 2.3533343, 48.8818055 2.3575890, 48.8610207 2.3497198, 48.8687565 2.3554770, 48.8745399 2.3585970, 48.8657321 2.3545236, 48.8718609 2.3572612, 48.8594617 2.3524229, 48.8574683 2.3506207, 48.8763129 2.3567488, 48.8271528 2.3263805, 48.8237365 2.3272509, 48.8292835 2.3279543, 48.8316710 2.3300535, 48.8722799 2.3214671, 48.8723489 2.3218115, 48.8224556 2.3250401, 48.8320389 2.3253141, 48.8339441 2.3244793, 48.8744183 2.3203899, 48.8742683 2.3200662, 48.8746146 2.3213634, 48.8746827 2.3251473, 48.8754131 2.3259821, 48.8740995 2.3251548, 48.8774036 2.3230566, 48.8770740 2.3232337, 48.8786425 2.3231734, 48.8773191 2.3268758, 48.8828444 2.3270934, 48.8829922 2.3266892, 48.8827827 2.3246677, 48.8828082 2.3263774, 48.8836424 2.3269176, 48.8841578 2.3284710, 48.8843540 2.3287817, 48.8832223 2.3238278, 48.8791123 2.3219277, 48.8791163 2.3221422, 48.8823224 2.3205491, 48.8748626 2.3183567, 48.8749808 2.3105016, 48.8748908 2.3082017, 48.8732638 2.3118620, 48.8734259 2.3101215, 48.8576274 2.3483969, 48.8370231 2.3348031, 48.8349600 2.3328023, 48.8558534 2.3461144, 48.8339844 2.3319418, 48.8400156 2.3364375, 48.8421064 2.3378086, 48.8463611 2.3401536, 48.8681151 2.3102843, 48.8619731 2.3104599, 48.8540110 2.3062926, 48.8724176 2.3147131, 48.8747135 2.3144761, 48.8695776 2.3114383, 48.8543818 2.3060906, 48.8510149 2.3113318, 48.8511473 2.3067123, 48.8603560 2.3102953, 48.8655890 2.3103848, 48.8458299 2.3188069, 48.8568059 2.3093976, 48.8465829 2.3155696, 48.8524922 2.3081057, 48.8546863 2.3062774, 48.8756587 2.3231876, 48.8530184 2.3082152, 48.8443457 2.3227793, 48.8747073 2.3206783, 48.8740382 2.3161279, 48.8743831 2.3230682, 48.8684708 2.3100440, 48.8743575 2.3232911, 48.8694027 2.3099679, 48.8755046 2.3236261, 48.8739179 2.3367122, 48.8807173 2.3570822, 48.8781339 2.3527959, 48.8699225 2.3284051, 48.8683675 2.3095340, 48.8722111 2.3328610, 48.8786035 2.3545591, 48.8704439 2.3315732, 48.8745220 2.3390067, 48.8768811 2.3480086, 48.8694447 2.3257548, 48.8804185 2.3095834, 48.8803381 2.3082693, 48.8791330 2.3036063, 48.8803502 2.3515910, 48.8688506 2.3233456, 48.8704061 2.3238110, 48.8702320 2.3236793, 48.8705097 2.3263591, 48.8725997 2.3308400, 48.8702668 2.3294666, 48.8728818 2.3342641, 48.8721223 2.3306080, 48.8726697 2.3384369, 48.8781343 2.3444339, 48.8766373 2.3413239, 48.8796328 2.3492037, 48.8668906 2.3058767, 48.8683270 2.3090072, 48.8661975 2.3193706, 48.8670618 2.3210303, 48.8681996 2.3130438, 48.8670039 2.3212252, 48.8687132 2.3095178, 48.8666885 2.3204566, 48.8596836 2.3100205, 48.8571033 2.3096039, 48.8651594 2.3102159, 48.8556204 2.3073399, 48.8619770 2.3102113, 48.8442457 2.3223611, 48.8510607 2.3073810, 48.8455842 2.3187473, 48.8508710 2.3112286, 48.8470473 2.3110481, 48.8471541 2.3162252, 48.8325599 2.3247796, 48.8332241 2.3245306, 48.8284741 2.3264674, 48.8273986 2.3268247, 48.8308768 2.3296100, 48.8325965 2.3311370, 48.8349016 2.3330741, 48.8460230 2.3402198, 48.8392162 2.3368280, 48.8394568 2.3371394, 48.8557611 2.3463229, 48.8530751 2.3440672, 48.8677159 2.2995676, 48.8649545 2.3007316, 48.8678007 2.2992453, 48.8726619 2.2959120, 48.8731597 2.2965177, 48.8746311 2.3024124, 48.8738619 2.2969385, 48.8762550 2.3007388, 48.8786860 2.2987411, 48.8780675 2.2972769, 48.8781435 2.2989719, 48.8783783 2.2989441, 48.8869716 2.3323289, 48.8837731 2.3593434, 48.8797404 2.3583417, 48.8805789 2.3615619, 48.8808347 2.3579388, 48.8818122 2.3584802, 48.8810529 2.3579435, 48.8654199 2.3135631, 48.8734879 2.2963998, 48.8652505 2.3135377, 48.8739596 2.2963637, 48.8730816 2.2958401, 48.8734383 2.2965675, 48.8746130 2.2954618, 48.8808680 2.3632201, 48.8808018 2.3646698, 48.8820400 2.3664133, 48.8318269 2.3657386, 48.8314535 2.3659857, 48.8319065 2.3591614, 48.8335312 2.3339521, 48.8653317 2.2948667, 48.8641551 2.2934048, 48.8640141 2.2929862, 48.8640715 2.3010513, 48.8634829 2.2966080, 48.8670224 2.2902399, 48.8666049 2.2896888, 48.8406277 2.3516012, 48.8406796 2.3519557, 48.8386026 2.3501015, 48.8638512 2.2879382, 48.8602887 2.2859058, 48.8280021 2.2979663, 48.8637773 2.2876366, 48.8632498 2.2859288, 48.8726715 2.2940864, 48.8732129 2.2934594, 48.8731760 2.2938072, 48.8726221 2.2943066, 48.8692074 2.2859874, 48.8714154 2.2892192, 48.8717477 2.2846883, 48.8719757 2.2848303, 48.8746030 2.2841611, 48.8743635 2.2840186, 48.8769335 2.2846374, 48.8763467 2.2821327, 48.8639110 2.2913488, 48.8753652 2.2795664, 48.8684369 2.2729766, 48.8683754 2.2732348, 48.8643826 2.2733115, 48.8640077 2.2727886, 48.8636582 2.2771280, 48.8635567 2.2768833, 48.8658220 2.2796478, 48.8657966 2.2794544, 48.8610434 2.2753874, 48.8634542 2.2690299, 48.8766631 2.2836355, 48.8578608 2.2777002, 48.8394041 2.3097189, 48.8411046 2.3138036, 48.8389838 2.3118312, 48.8405805 2.3157055, 48.8400276 2.3147291, 48.8395301 2.3370603, 48.8421574 2.3289683, 48.8396598 2.3612235, 48.8396827 2.3609897, 48.8408283 2.3332010, 48.8431157 2.3641956, 48.8388776 2.3391993, 48.8425206 2.3638998, 48.8404210 2.3341998, 48.8486934 2.3709664, 48.8381830 2.3562021, 48.8521834 2.3696810, 48.8522667 2.3690906, 48.8386517 2.3400077, 48.8434131 2.3641764, 48.8369425 2.3527355, 48.8387033 2.3140244, 48.8386871 2.3167167, 48.8420777 2.3198691, 48.8420412 2.3210967, 48.8410408 2.3163136, 48.8448126 2.3248961, 48.8447160 2.3248023, 48.8419877 2.3208487, 48.8418600 2.3204213, 48.8419832 2.2989207, 48.8372796 2.3192193, 48.8373937 2.3193036, 48.8232096 2.3308259, 48.8262657 2.3045622, 48.8628797 2.3114175, 48.8629640 2.3144329, 48.8760465 2.3442570, 48.8487534 2.3283755, 48.8464655 2.3262412, 48.8526089 2.3335342, 48.8512874 2.3309516, 48.8483289 2.3275562, 48.8523154 2.3313835, 48.8492896 2.3291229, 48.8466349 2.3266773, 48.8512586 2.3306941, 48.8380672 2.3081245, 48.8272119 2.3007929, 48.8369864 2.3070893, 48.8343962 2.3047706, 48.8416848 2.3123439, 48.8288874 2.3013461, 48.8400384 2.3101622, 48.8318739 2.3027278, 48.8390417 2.3002200, 48.8371284 2.3025788, 48.8376950 2.3058614, 48.8370279 2.3060674, 48.8285614 2.3036420, 48.8314345 2.3057638, 48.8557169 2.3311016, 48.8578807 2.3329161, 48.8562652 2.3345020, 48.8583260 2.3336914, 48.8543731 2.3336691, 48.8642974 2.3351767, 48.8641001 2.3349408, 48.8608207 2.3339436, 48.8608081 2.3335569, 48.8921211 2.3353653, 48.8918649 2.3336335, 48.8723241 2.3294239, 48.8699160 2.3327613, 48.8964443 2.3381818, 48.8957201 2.3379375, 48.8723213 2.3297859, 48.8983232 2.3370882, 48.8993452 2.3360266, 48.8972690 2.3380342, 48.8938929 2.3366312, 48.8712151 2.3314439, 48.8950123 2.3372895, 48.8905722 2.3338767, 48.8696870 2.3325395, 48.8908674 2.3318979, 48.8711264 2.3315999, 48.8933179 2.3360748, 48.8732183 2.3278379, 48.8868241 2.3325865, 48.8669825 2.3340214, 48.8850309 2.3302866, 48.8803346 2.3245245, 48.8785356 2.3228814, 48.8713168 2.3312724, 48.8909507 2.3312150, 48.8669605 2.3337144, 48.8981006 2.3370689, 48.8572986 2.2651050, 48.8559722 2.2748659, 48.8523372 2.2763466, 48.8509120 2.2788151, 48.8512031 2.2788694, 48.8752158 2.3247654, 48.8751393 2.3248777, 48.8748983 2.3207146, 48.8750101 2.3266014, 48.8733946 2.3267106, 48.8733100 2.3269826, 48.8753428 2.3254477, 48.8742637 2.3241155, 48.8745153 2.3190057, 48.8744039 2.3267612, 48.8754880 2.3247457, 48.8749427 2.3211954, 48.8737331 2.3279649, 48.8739545 2.3263050, 48.8213104 2.3255367, 48.8500186 2.2725403, 48.8498676 2.2719130, 48.8203251 2.3563923, 48.8205673 2.3510636, 48.8184619 2.3597195, 48.8206776 2.3511207, 48.8201876 2.3561558, 48.8510516 2.2719805, 48.8303062 2.3545891, 48.8325638 2.3549019, 48.8310557 2.3569540, 48.8314583 2.3546834, 48.8315991 2.3564164, 48.8317238 2.3562329, 48.8276673 2.3566761, 48.8259359 2.3572159, 48.8265940 2.3572132, 48.8262338 2.3578419, 48.8280844 2.3567559, 48.8260907 2.3565715, 48.8273996 2.3588259, 48.8275576 2.3589422, 48.8262038 2.3607487, 48.8263012 2.3606389, 48.8277796 2.3279189, 48.8278937 2.3276801, 48.8282540 2.3257415, 48.8279552 2.3261551, 48.8332550 2.3328564, 48.8352162 2.3319409, 48.8337885 2.3314390, 48.8350966 2.3323296, 48.8341579 2.3307400, 48.8362123 2.3272536, 48.8334502 2.3323448, 48.8376639 2.3218418, 48.8361574 2.3270104, 48.8346438 2.3316567, 48.8375281 2.3219176, 48.8304341 2.3336670, 48.8245522 2.3362436, 48.8273064 2.3355232, 48.8243777 2.3359140, 48.8273875 2.3358241, 48.8330280 2.3330639, 48.8214945 2.3342678, 48.8305165 2.3340095, 48.8271553 2.3348523, 48.8491979 2.2878280, 48.8416721 2.2812868, 48.8436980 2.2823501, 48.8470256 2.2859489, 48.8479821 2.2899763, 48.8397005 2.2732897, 48.8435845 2.2822729, 48.8363400 2.2810850, 48.8393595 2.2752352, 48.8492676 2.2911136, 48.8435788 2.2829261, 48.8372963 2.2774666, 48.8407269 2.2962412, 48.8394391 2.2746624, 48.8384288 2.2886314, 48.8399325 2.2724353, 48.8379475 2.2753696, 48.8454419 2.2877545, 48.8391704 2.2913188, 48.8369975 2.2780771, 48.8397939 2.2723995, 48.8342786 2.2908972, 48.8358098 2.2893082, 48.8353597 2.2857456, 48.8385404 2.2990285, 48.8346549 2.2844230, 48.8449576 2.3113153, 48.8355718 2.2930303, 48.8330496 2.2890202, 48.8521144 2.2680241, 48.8389334 2.3507501, 48.8388926 2.3509388, 48.8461796 2.3486258, 48.8462815 2.3510000, 48.8476493 2.3404322, 48.8490884 2.3558926, 48.8462477 2.3487961, 48.8466442 2.3436544, 48.8466940 2.3442107, 48.8467333 2.3519297, 48.8433636 2.3657267, 48.8493095 2.3573406, 48.8444660 2.3637892, 48.8492477 2.3370265, 48.8474868 2.3282896, 48.8435758 2.3654179, 48.8471966 2.3602656, 48.8292321 2.3777240, 48.8405415 2.3696002, 48.8485184 2.3583158, 48.8343173 2.3733707, 48.8485716 2.3320351, 48.8447711 2.3192081, 48.8487637 2.3333068, 48.8339679 2.3731806, 48.8311781 2.3763473, 48.8474523 2.3285202, 48.8405405 2.3699246, 48.8438522 2.3641187, 48.8462495 2.3263016, 48.8301599 2.2956527, 48.8333403 2.2984482, 48.8280306 2.2932205, 48.8300606 2.3768844, 48.8331877 2.2993210, 48.8352328 2.3027334, 48.8352344 2.3031152, 48.8281384 2.2929988, 48.8301319 2.2959205, 48.8322989 2.3024216, 48.8357176 2.3018620, 48.8802511 2.3667774, 48.8489701 2.2751304, 48.8904347 2.3761934, 48.8429219 2.2776049, 48.8460811 2.2778714, 48.8425254 2.2772241, 48.8463741 2.2812307, 48.8400351 2.2781590, 48.8463249 2.2861893, 48.8463476 2.2865098, 48.8449695 2.2898049, 48.8471518 2.2851521, 48.8462601 2.2813813, 48.8433659 2.2937169, 48.8534190 2.2768609, 48.8463939 2.2772344, 48.8437381 2.2980571, 48.8406969 2.2778770, 48.8447996 2.2899924, 48.8490194 2.2819830, 48.8493302 2.2818801, 48.8435904 2.2940483, 48.8549721 2.2958121, 48.8572690 2.3000188, 48.8588607 2.2983780, 48.8574346 2.2994944, 48.8603298 2.2957775, 48.8624334 2.3006635, 48.8627932 2.3020220, 48.8550134 2.2967165, 48.8519760 2.2920058, 48.8530439 2.2933186, 48.8528607 2.2929220, 48.8589615 2.2979188, 48.8425407 2.2858049, 48.8604705 2.2958692, 48.8488093 2.2638756, 48.8565279 2.3020157, 48.8489724 2.3151968, 48.8517297 2.3238113, 48.8558459 2.3027766, 48.8517335 2.3186611, 48.8521091 2.3268205, 48.8496603 2.3227545, 48.8516468 2.3140535, 48.8486274 2.3210606, 48.8524080 2.3088388, 48.8515252 2.3108244, 48.8518368 2.3152799, 48.8512275 2.3262711, 48.8495330 2.3228364, 48.8482503 2.2591719, 48.8845509 2.3603185, 48.8477108 2.2577586, 48.8480143 2.2697472, 48.8476567 2.2729042, 48.8455383 2.2719509, 48.8598612 2.3525854, 48.8780132 2.3711683, 48.8784230 2.3737799, 48.8784006 2.3746677, 48.8787762 2.3780372, 48.8788918 2.3779824, 48.8787848 2.3743924, 48.8786876 2.3742462, 48.8858628 2.2922220, 48.8450647 2.2711737, 48.8434133 2.2604555, 48.8448777 2.2574386, 48.8421412 2.2558818, 48.8421354 2.2561542, 48.8394476 2.2619627, 48.8387775 2.2623653, 48.8399328 2.2627890, 48.8404894 2.2643470, 48.8431143 2.2692014, 48.8358949 2.3858274, 48.8868781 2.3613097, 48.8898844 2.3634601, 48.8633742 2.4097586, 48.8574854 2.3489236, 48.8380099 2.2561218, 48.8382652 2.2581065, 48.8375152 2.2564004, 48.8372504 2.2588300, 48.8255859 2.3018853, 48.8525109 2.3463681, 48.8763078 2.3580926, 48.8758789 2.3579712, 48.8760364 2.3579845, 48.8761843 2.3586622, 48.8622556 2.3254741, 48.8226432 2.3472363, 48.8493215 2.3553775, 48.8493863 2.3538113, 48.8438142 2.3421649, 48.8468550 2.2580592, 48.8450296 2.2572265, 48.8471550 2.2582168, 48.8470125 2.2585617, 48.8482929 2.2600704, 48.8569785 2.3044705, 48.8242957 2.3399434, 48.8615529 2.3148677, 48.8620416 2.3343608, 48.8602936 2.3272306, 48.8711059 2.3322241, 48.8712950 2.3325295, 48.8441144 2.4416221, 48.8656246 2.3201947, 48.8728489 2.3318466, 48.8838676 2.3225552, 48.8810552 2.3243998, 48.8757854 2.3237081, 48.8844911 2.3217337, 48.8882678 2.3160185, 48.8867550 2.3170374, 48.8846941 2.3192435, 48.8945700 2.3209462, 48.8957805 2.3227289, 48.8971979 2.3245076, 48.8992344 2.3214018, 48.8472291 2.3863740, 48.8474932 2.3873542, 48.8483088 2.3945473, 48.8481859 2.3947143, 48.8462890 2.3780990, 48.8467598 2.3810401, 48.8506910 2.3783087, 48.8990495 2.3212985, 48.8967767 2.3225340, 48.8940147 2.3203574, 48.8486840 2.3968021, 48.8477832 2.3911928, 48.8467571 2.3822165, 48.8518573 2.4008515, 48.8524046 2.4010916, 48.8511975 2.3974494, 48.8681803 2.3623804, 48.8680902 2.3639328, 48.8313075 2.3982891, 48.8322157 2.3891306, 48.8317240 2.3877563, 48.8315393 2.3983178, 48.8177557 2.4597142, 48.8338167 2.4550750, 48.8276017 2.4641428, 48.8356934 2.4525728, 48.8346621 2.4489644, 48.8401025 2.4383747, 48.8296702 2.4613315, 48.8363543 2.4417575, 48.8410158 2.4388289, 48.8345020 2.4545488, 48.8278514 2.4636174, 48.8347936 2.4498580, 48.8371516 2.4408984, 48.8354560 2.4533620, 48.8718417 2.3332868, 48.8827868 2.3443205, 48.8834085 2.3462374, 48.8832199 2.3465158, 48.8822953 2.3405605, 48.8829739 2.3440228, 48.8819819 2.3401989, 48.8822704 2.3374453, 48.8521527 2.2734766, 48.8450476 2.3717769, 48.8448979 2.3716168, 48.8447402 2.3718129, 48.8435992 2.3738341, 48.8441086 2.3729451, 48.8701555 2.3331174, 48.8837939 2.3329962, 48.8835150 2.3330746, 48.8478278 2.3903629, 48.8367358 2.4030677, 48.8398410 2.3943255, 48.8369788 2.4029173, 48.8382147 2.3990423, 48.8433132 2.3836866, 48.8400154 2.3942912, 48.8382948 2.3993409, 48.8480895 2.3949758, 48.8430366 2.3839344, 48.8391042 2.3965498, 48.8416747 2.3873401, 48.8486471 2.3946702, 48.8411428 2.3884744, 48.8406463 2.3907075, 48.8445304 2.3812481, 48.8392771 2.3966612, 48.8357969 2.4061420, 48.8446160 2.3806775, 48.8345268 2.4442929, 48.8344774 2.4442169, 48.8354784 2.4074292, 48.8343511 2.4116845, 48.8351079 2.4071091, 48.8679551 2.3442419, 48.8674499 2.3465726, 48.8371501 2.3908184, 48.8441215 2.4405058, 48.8440722 2.4406777, 48.8440544 2.4409292, 48.8440308 2.4412257, 48.8440012 2.4415491, 48.8440831 2.4418537, 48.8441372 2.4412257, 48.8299861 2.3923363, 48.8387219 2.4610743, 48.8389146 2.4608927, 48.8809872 2.3249011, 48.8649283 2.3600564, 48.8661356 2.3612500, 48.8666781 2.3642229, 48.8515768 2.3137932, 48.8606025 2.3784879, 48.8440168 2.3905783, 48.8498040 2.3849378, 48.8673556 2.3730783, 48.8393396 2.4294885, 48.8554308 2.3810628, 48.8646338 2.3748521, 48.8495946 2.3848569, 48.8600036 2.3787340, 48.8470697 2.3870806, 48.8476942 2.3863883, 48.8734359 2.3700594, 48.8764703 2.3606172, 48.8697465 2.3711032, 48.8648377 2.3749652, 48.8622337 2.3766437, 48.8412228 2.3937600, 48.8757278 2.3703753, 48.8560465 2.3813951, 48.8414255 2.3937514, 48.8703200 2.3708846, 48.8622354 2.3768772, 48.8678166 2.3725286, 48.8445961 2.3896940, 48.8394189 2.4303769, 48.8770384 2.3660406, 48.8757128 2.3687003, 48.8717094 2.3696240, 48.8764187 2.3608744, 48.8677540 2.3774503, 48.8956350 2.3166909, 48.8958594 2.3179696, 48.8671524 2.3067325, 48.8483695 2.3978300, 48.8480553 2.3970747, 48.8581127 2.3797697, 48.8582240 2.3802866, 48.8577899 2.3809996, 48.8579546 2.3806509, 48.8304773 2.3438587, 48.8309647 2.3443094, 48.8288392 2.3423160, 48.8716579 2.3326787, 48.8718086 2.3327448, 48.8258805 2.3410294, 48.8531959 2.3776876, 48.8858712 2.3164829, 48.8854432 2.3171770, 48.8824475 2.3199667, 48.8820235 2.3209613, 48.8817777 2.3207315, 48.8687875 2.3019902, 48.8364006 2.3942065, 48.8400397 2.3814476, 48.8401096 2.3818762, 48.8410628 2.3783033, 48.8407150 2.3783893, 48.8432202 2.3741663, 48.8514120 2.3630325, 48.8526880 2.3689507, 48.8501976 2.3595725, 48.8444350 2.4055551, 48.8450880 2.4058828, 48.8389131 2.3938184, 48.8390440 2.3937869, 48.8394970 2.3969576, 48.8397088 2.3966435, 48.8649773 2.3999903, 48.8422861 2.4051224, 48.8424685 2.4050114, 48.8501775 2.4062934, 48.8507018 2.4064450, 48.8398005 2.4040117, 48.8270329 2.3669933, 48.8395540 2.3993780, 48.8397110 2.3993892, 48.8296159 2.3751210, 48.8296959 2.3750390, 48.8355605 2.3857259, 48.8339034 2.3829597, 48.8340237 2.3828656, 48.8319172 2.3790316, 48.8319210 2.3793578, 48.8272269 2.3675332, 48.8647865 2.3655310, 48.8649235 2.3657927, 48.8621889 2.3667904, 48.8619845 2.3671289, 48.8897139 2.3394367, 48.8638603 2.3206045, 48.8388610 2.3611486, 48.8390433 2.3609520, 48.8648409 2.2341295, 48.8646980 2.2348832, 48.8654514 2.2339766, 48.8188531 2.3442844, 48.8506399 2.3792121, 48.8393980 2.3205908, 48.9006354 2.3209397, 48.9009850 2.3292194, 48.8468289 2.4118902, 48.8471299 2.4117895, 48.8491714 2.4125984, 48.8770504 2.4094309, 48.8585739 2.2749254, 48.8375739 2.4083194, 48.8764567 2.3370539, 48.8760287 2.3366785, 48.8762066 2.3360072, 48.8614476 2.2755091, 48.8642416 2.2770207, 48.8674365 2.2806449, 48.8473883 2.2580363, 48.8680878 2.2817635, 48.8706577 2.3428415, 48.8530131 2.3698153, 48.8502500 2.3825079, 48.8503771 2.3824789, 48.8530591 2.3707818, 48.8513798 2.3754838, 48.8529695 2.3706763, 48.8520725 2.3732723, 48.8566143 2.3643097, 48.8530507 2.3682971, 48.8487387 2.3929660, 48.8489778 2.3924236, 48.8281405 2.3891647, 48.8714182 2.3361457, 48.8798182 2.3592216, 48.8817621 2.3666052, 48.8828578 2.3708170, 48.8494437 2.2985474, 48.8345773 2.4201923, 48.8289147 2.4196154, 48.8277447 2.4194543, 48.8602770 2.3403556, 48.8649634 2.3094689, 48.8303773 2.3819394, 48.8307973 2.3773521, 48.8284712 2.3842686, 48.8308646 2.3816088, 48.8291915 2.3837155, 48.8897318 2.3833349, 48.8904053 2.3823863, 48.8781963 2.3378153, 48.8787176 2.3371055, 48.8564583 2.3250707, 48.8472368 2.4072689, 48.8579370 2.4047277, 48.8563970 2.3255540, 48.8565275 2.3253806, 48.8555489 2.3254720, 48.8558531 2.3260472, 48.8561914 2.3262556, 48.8577783 2.3235579, 48.8581009 2.3233340, 48.8583253 2.3231317, 48.8584864 2.3232947, 48.8588911 2.3229260, 48.8537471 2.3263447, 48.8537841 2.3259820, 48.8591256 2.3290453, 48.8546818 2.3293290, 48.8675867 2.3437920, 48.8790340 2.2945201, 48.8790567 2.2942853, 48.8518528 2.4016439, 48.8510709 2.3973798, 48.8526364 2.4054371, 48.8547712 2.3858839, 48.8543518 2.3857021, 48.8543260 2.3861381, 48.8546530 2.3849282, 48.8587884 2.3848896, 48.8498688 2.3855808, 48.8322356 2.2781024, 48.8356758 2.2781754, 48.8597982 2.3444831, 48.8597454 2.3446459, 48.8595575 2.3452259, 48.8605224 2.3310090, 48.8534422 2.4099675, 48.8533556 2.4100827, 48.8650127 2.3979287, 48.8632147 2.4042183, 48.8633962 2.4041437, 48.8659357 2.4004992, 48.8620785 2.4061547, 48.8705641 2.3992800, 48.8620353 2.4059012, 48.8729894 2.3979406, 48.8680459 2.4010667, 48.8689014 2.4009778, 48.8647077 2.4119384, 48.8712170 2.3989347, 48.8726069 2.3977984, 48.8642878 2.4018417, 48.8603235 2.4095533, 48.8602867 2.4092069, 48.8562693 2.3933176, 48.8561851 2.3934136, 48.8557465 2.3908208, 48.8556539 2.3909708, 48.8522965 2.3895725, 48.8495384 2.3937307, 48.8496872 2.3939109, 48.8519359 2.3733433, 48.8525451 2.4055439, 48.8693540 2.3084450, 48.8701814 2.3058463, 48.8448277 2.4029841, 48.8453984 2.4020122, 48.8445403 2.4064052, 48.8451043 2.4013784, 48.8441650 2.4108287, 48.8447803 2.4052300, 48.8442921 2.4109375, 48.8493174 2.3285389, 48.8632747 2.3421251, 48.8632959 2.3419124, 48.8613141 2.3411077, 48.8647635 2.3426706, 48.8699915 2.3516342, 48.8168023 2.3342690, 48.8164222 2.3405387, 48.8495417 2.3887046, 48.8492264 2.3897711, 48.8484573 2.3278663, 48.8389034 2.2566465, 48.8389549 2.2569048, 48.8390178 2.2576472, 48.8410070 2.2585979, 48.8904689 2.3454601, 48.8911905 2.3487094, 48.8910566 2.3495078, 48.8912368 2.3497072, 48.8913695 2.3502570, 48.8625408 2.3026654, 48.8415408 2.3679418, 48.8311371 2.3240098, 48.8404277 2.2646117, 48.8413631 2.2660364, 48.8698995 2.2844641, 48.8699289 2.2861384, 48.8702388 2.2852708, 48.8515992 2.3401247, 48.8521327 2.3397250, 48.8522361 2.3391031, 48.8522703 2.3392048, 48.8775306 2.4066025, 48.8599592 2.3464575, 48.8529260 2.3472349, 48.8278790 2.3318860, 48.8532394 2.4119583, 48.8622954 2.2681905, 48.8608867 2.2670598, 48.8608209 2.2667223, 48.8324853 2.4033357, 48.8483822 2.4076890, 48.8489761 2.4042789, 48.8872453 2.3133637, 48.8512796 2.3764602, 48.8514561 2.3756984, 48.8509337 2.3755804, 48.8517401 2.3764776, 48.8214988 2.3409777, 48.8519065 2.2791681, 48.8509240 2.2779719, 48.8715165 2.3434427, 48.8718185 2.3415958, 48.8708978 2.3472731, 48.8700491 2.3513952, 48.8758612 2.3392890, 48.8763673 2.3398734, 48.8476843 2.2741123, 48.8655197 2.3418184, 48.8498570 2.3555877, 48.8536283 2.3450445, 48.8511027 2.3515716, 48.8465004 2.3408141, 48.8461780 2.3407172, 48.8416298 2.3432384, 48.8557910 2.2707104, 48.8534877 2.2704880, 48.8940940 2.3319275, 48.8940074 2.3332141, 48.8977687 2.3447250, 48.8934301 2.3373685, 48.8880881 2.3398100, 48.8977942 2.3296684, 48.8978914 2.3360445, 48.8977999 2.3407221, 48.8928612 2.3274828, 48.8989059 2.3287642, 48.8960801 2.3285984, 48.8336722 2.2867372, 48.8354046 2.2893217, 48.8192098 2.3587466, 48.8255239 2.3572990, 48.8195050 2.3591982, 48.8316066 2.3137780, 48.8588051 2.4057136, 48.8752706 2.3574586, 48.8216892 2.3245975, 48.8686664 2.3014767, 48.8515033 2.4117685, 48.8721246 2.3006722, 48.8601726 2.2805542, 48.8603004 2.2814845, 48.8578135 2.2739656, 48.8594111 2.2780225, 48.8594915 2.2778705, 48.8625162 2.2865767, 48.8719166 2.2935880, 48.8691576 2.2917845, 48.8694005 2.2917131, 48.8639459 2.2877623, 48.8629572 2.2857745, 48.8642184 2.2879895, 48.8676367 2.2906843, 48.8766898 2.4062518, 48.8761364 2.3315289, 48.8541362 2.3436693, 48.8544747 2.3444214, 48.8882842 2.3735245, 48.8275820 2.3931098, 48.8315505 2.3875281, 48.8318906 2.3879451, 48.8317653 2.3883392, 48.8345471 2.3880444, 48.8346204 2.3881531, 48.8457440 2.3737031, 48.8460468 2.3776983, 48.8479042 2.4029626, 48.8588784 2.3795116, 48.8543561 2.3686751, 48.8573717 2.3679538, 48.8812786 2.3006155, 48.8791872 2.3027025, 48.8794083 2.3027209, 48.8819758 2.3003937, 48.8820031 2.3001172, 48.8484788 2.3730624, 48.8778271 2.3054861, 48.8789229 2.3036705, 48.8623160 2.3385135, 48.8626609 2.3357043, 48.8611349 2.3404586, 48.8590838 2.3384912, 48.8598916 2.3339354, 48.8620310 2.3348363, 48.8588289 2.3317912, 48.8564980 2.3415954, 48.8585988 2.3414634, 48.8188883 2.3606299, 48.8217293 2.3258407, 48.8219700 2.3725276, 48.8222817 2.3241254, 48.8224593 2.3723095, 48.8225264 2.3585391, 48.8225913 2.3306285, 48.8225940 2.3582362, 48.8232021 2.3686118, 48.8233926 2.3231571, 48.8233479 2.3530784, 48.8237781 2.3181009, 48.8252882 2.3108074, 48.8250348 2.3042523, 48.8254999 2.3499245, 48.8258025 2.3510041, 48.8258039 2.3456727, 48.8258513 2.3498413, 48.8259133 2.3460385, 48.8259576 2.3540756, 48.8260280 2.3531254, 48.8260418 2.3506964, 48.8262853 2.3130723, 48.8272808 2.3626881, 48.8278486 2.3621965, 48.8278716 2.3523358, 48.8287890 2.3431611, 48.8337818 2.3570497, 48.8374470 2.2575115, 48.8377427 2.3450152, 48.8377076 2.3821990, 48.8384173 2.3307973, 48.8384981 2.3815117, 48.8391211 2.3307962, 48.8395047 2.2915304, 48.8399751 2.4090846, 48.8400001 2.4087346, 48.8408584 2.2882668, 48.8408974 2.2885092, 48.8422736 2.3286256, 48.8423956 2.2851745, 48.8428956 2.2692665, 48.8437793 2.4103825, 48.8443082 2.3333005, 48.8446025 2.4102047, 48.8449478 2.3285312, 48.8453799 2.3322324, 48.8454392 2.3958901, 48.8456324 2.2780576, 48.8457048 2.2776103, 48.8461676 2.4106793, 48.8469869 2.3514296, 48.8477426 2.4114259, 48.8483240 2.2704664, 48.8486237 2.4111120, 48.8488905 2.3728095, 48.8490964 2.3327998, 48.8492183 2.3959570, 48.8497311 2.3151171, 48.8502916 2.2602441, 48.8502919 2.2599552, 48.8510239 2.2747254, 48.8518696 2.3480042, 48.8529623 2.3771900, 48.8530204 2.3769987, 48.8530400 2.2814658, 48.8530986 2.2812592, 48.8532293 2.4108476, 48.8540268 2.3048864, 48.8540932 2.3060103, 48.8541586 2.2829735, 48.8542833 2.3777285, 48.8553229 2.3785588, 48.8553729 2.3684131, 48.8558631 2.3754123, 48.8561605 2.3788113, 48.8564257 2.2858321, 48.8570765 2.3504182, 48.8571225 2.2917330, 48.8571518 2.2913806, 48.8572227 2.3682716, 48.8579053 2.3797322, 48.8579503 2.3712271, 48.8583775 2.3488602, 48.8589049 2.3039173, 48.8590496 2.3467839, 48.8591398 2.3747820, 48.8597060 2.3645885, 48.8597616 2.3676826, 48.8598036 2.3217290, 48.8598827 2.3673320, 48.8601423 2.3604402, 48.8605570 2.3213330, 48.8608305 2.3240713, 48.8616874 2.3202712, 48.8624213 2.3066950, 48.8625533 2.3111795, 48.8625638 2.3057642, 48.8633404 2.2823367, 48.8633709 2.4097739, 48.8635600 2.3506005, 48.8637772 2.2811131, 48.8638504 2.4085072, 48.8639401 2.3483911, 48.8639673 2.4088487, 48.8640405 2.3485216, 48.8641242 2.3606162, 48.8649714 2.2949717, 48.8650233 2.3022637, 48.8650414 2.3130143, 48.8657210 2.3990752, 48.8660184 2.2920260, 48.8662425 2.2714116, 48.8663266 2.2711738, 48.8666223 2.2899479, 48.8670025 2.2992498, 48.8670219 2.2985380, 48.8671173 2.3966221, 48.8673290 2.3831063, 48.8673789 2.4091033, 48.8676591 2.3963732, 48.8684997 2.3891241, 48.8698610 2.3123404, 48.8699435 2.3706856, 48.8700027 2.3289894, 48.8701446 2.4086615, 48.8701843 2.3707528, 48.8711933 2.3604700, 48.8712232 2.2891794, 48.8713636 2.4041582, 48.8723522 2.4045164, 48.8724186 2.3698205, 48.8725325 2.3330532, 48.8735639 2.3586128, 48.8740231 2.3847596, 48.8740378 2.2937279, 48.8744306 2.2934465, 48.8747144 2.4056516, 48.8748526 2.2959835, 48.8750248 2.2793312, 48.8755928 2.3151234, 48.8762926 2.3762339, 48.8764612 2.3765230, 48.8772186 2.3109203, 48.8772382 2.4074063, 48.8775245 2.3168188, 48.8775385 2.3163589, 48.8777526 2.3564376, 48.8779032 2.3056888, 48.8792830 2.3557138, 48.8803251 2.3794038, 48.8804221 2.3797161, 48.8805113 2.3127266, 48.8806515 2.3129992, 48.8806707 2.3738633, 48.8807343 2.2846959, 48.8808339 2.3130195, 48.8808347 2.3117674, 48.8809373 2.2848091, 48.8810591 2.2952646, 48.8814763 2.3649726, 48.8815089 2.2957771, 48.8818748 2.3931313, 48.8819392 2.3936848, 48.8824779 2.3860372, 48.8829037 2.3278232, 48.8830794 2.3885185, 48.8831418 2.3277143, 48.8836857 2.3949045, 48.8840202 2.3052632, 48.8841743 2.2968720, 48.8842536 2.2971683, 48.8842675 2.3496004, 48.8843157 2.3493326, 48.8844710 2.3800345, 48.8845032 2.3798230, 48.8847651 2.3075876, 48.8848759 2.3376000, 48.8850832 2.3591833, 48.8851035 2.2953074, 48.8851929 2.3305415, 48.8852037 2.2959187, 48.8853525 2.2977731, 48.8855368 2.3265690, 48.8857429 2.2935118, 48.8859108 2.2939790, 48.8859849 2.3261631, 48.8861542 2.3564939, 48.8863058 2.3980186, 48.8863435 2.3982367, 48.8865882 2.3414475, 48.8866623 2.2960418, 48.8869250 2.3393207, 48.8873104 2.3596117, 48.8874485 2.3050999, 48.8877988 2.3248672, 48.8878289 2.3064904, 48.8878345 2.3250858, 48.8878907 2.2990642, 48.8878917 2.3496722, 48.8881459 2.3258858, 48.8893697 2.2927080, 48.8898370 2.3597516, 48.8904800 2.3550192, 48.8905941 2.3550830, 48.8925967 2.3271643, 48.8925992 2.3273940, 48.8927291 2.3598166, 48.8927047 2.3444938, 48.8929178 2.3410633, 48.8932317 2.3397366, 48.8942606 2.3656734, 48.8943375 2.3661626, 48.8948852 2.3594730, 48.8975939 2.3222245, 48.8979766 2.3288871, 48.8980146 2.3446274, 48.8980432 2.3293039, 48.8981891 2.3527913, 48.8993072 2.3701049, 48.9001130 2.3701001, 48.8399283 2.3458676, 48.8573732 2.3462893, 48.8346350 2.3448741, 48.8352856 2.3450944, 48.8314340 2.3442457, 48.8326883 2.3444784, 48.8328577 2.3446665, 48.8714194 2.3313889, 48.8244919 2.3416195, 48.8681937 2.3335030, 48.8196924 2.3433020, 48.8759868 2.3238202, 48.8534607 2.2756452, 48.8743682 2.3018878, 48.8747342 2.3056450, 48.8499128 2.2683127, 48.8374817 2.2562098, 48.8409521 2.2656183, 48.8447054 2.2711200, 48.8510222 2.2746770, 48.8479636 2.2695060, 48.8623216 2.3203905, 48.8471209 2.3607000, 48.8698462 2.3252156, 48.8497078 2.3497045, 48.8613841 2.3234865, 48.8558899 2.3408768, 48.8576653 2.3376606, 48.8441286 2.3722011, 48.8761561 2.3801802, 48.8761767 2.3807442, 48.8756779 2.3423365, 48.8760012 2.3393251, 48.8788354 2.3542871, 48.8757056 2.3273669, 48.8799324 2.3551370, 48.8737046 2.3891048, 48.8735653 2.3898443, 48.8720431 2.3916937, 48.8718700 2.3920985, 48.8805417 2.3741402, 48.8476241 2.4028943, 48.8738483 2.3857544, 48.8696238 2.3946915, 48.8702673 2.3942139, 48.8340184 2.3536310, 48.8401039 2.3462745, 48.8363735 2.3520217, 48.8233149 2.3752168, 48.8329533 2.3626062, 48.8329546 2.3623275, 48.8254541 2.3748917, 48.8259161 2.3739896, 48.8231378 2.3775987, 48.8245614 2.3762562, 48.8248101 2.3756732, 48.8238740 2.3767541, 48.8500679 2.3425522, 48.8285493 2.3267243, 48.8471902 2.3122623, 48.8611784 2.3583595, 48.8543408 2.3689864, 48.8664943 2.3381181, 48.8610785 2.3537894, 48.8465740 2.3770203, 48.8406221 2.3915014, 48.8455583 2.3960876, 48.8628065 2.3537583, 48.8420222 2.4114914, 48.8673756 2.3405965, 48.8561666 2.3685267, 48.8571606 2.3619544, 48.8410468 2.4120861, 48.8577155 2.3674565, 48.8582705 2.3640599, 48.8500945 2.3851031, 48.8824312 2.3234086, 48.8493467 2.3460222, 48.8489025 2.3553600, 48.8489963 2.3554918, 48.8490831 2.3556308, 48.8484027 2.3495585, 48.8501648 2.3477828, 48.8527013 2.3373975, 48.8436232 2.3235331, 48.8475660 2.4067111, 48.8550944 2.2968674, 48.8552351 2.2962519, 48.8582746 2.3473914, 48.8992535 2.3294726, 48.8630099 2.3882032, 48.8631921 2.3883261, 48.8570981 2.3685897, 48.8544422 2.3718604, 48.8599893 2.3775333, 48.8619690 2.3853169, 48.8646505 2.3981284, 48.8647824 2.3989803, 48.8648443 2.3954637, 48.8648256 2.3948594, 48.8639853 2.3919450, 48.8642602 2.3926462, 48.8569232 2.3783647, 48.8599284 2.3864520, 48.8602320 2.3889291, 48.8589132 2.3848029, 48.8573976 2.3502067, 48.8572921 2.3526534, 48.8584495 2.3474391, 48.8441611 2.3641067, 48.8775262 2.3091500, 48.8616313 2.3200432, 48.8752076 2.3150771, 48.8855913 2.2965112, 48.8843226 2.2977914, 48.8844118 2.2979342, 48.8507447 2.3329353, 48.8509334 2.3327398, 48.8748201 2.3065249, 48.8750218 2.3054628, 48.8474354 2.3298335, 48.8301245 2.3593917, 48.8365554 2.3515202, 48.8421531 2.3349227, 48.8428630 2.3343922, 48.8413366 2.3358881, 48.8231294 2.3709733, 48.8468546 2.3305434, 48.8349137 2.3455215, 48.8447005 2.3326195, 48.8736071 2.3136449, 48.8364468 2.3505122, 48.8354325 2.3478250, 48.8354957 2.3474881, 48.8529056 2.3365859, 48.8950538 2.3463649, 48.8884547 2.3466792, 48.8793765 2.3432244, 48.8926779 2.3450799, 48.8867411 2.3475484, 48.8744366 2.3407290, 48.8721921 2.3400794, 48.8830125 2.3464904, 48.8813226 2.3442929, 48.9010962 2.3439734, 48.8971162 2.3448745, 48.8972030 2.3451540, 48.8810811 2.3465233, 48.8788550 2.3454642, 48.8870603 2.3477790, 48.8737499 2.3427652, 48.8738946 2.3426116, 48.8838003 2.3470916, 48.8686330 2.3434700, 48.8976741 2.3369954, 48.8976025 2.3326157, 48.8952997 2.3459628, 48.8892307 2.3482522, 48.8922647 2.3454090, 48.8924937 2.3446033, 48.8997831 2.3442708, 48.8568004 2.3483967, 48.8569048 2.3480232, 48.8562005 2.3501648, 48.8558845 2.3552826, 48.8540793 2.3554730, 48.8239288 2.3773172, 48.8427970 2.2645686, 48.8669738 2.3831048, 48.8563255 2.3825318, 48.8565266 2.3825157, 48.8792856 2.3479839, 48.8575141 2.3477631, 48.8758736 2.3576344, 48.8749438 2.2940813, 48.8872676 2.3134247, 48.8870184 2.3011195, 48.8900072 2.2966294, 48.8603566 2.3408487, 48.8645931 2.3404308, 48.8744710 2.3254698, 48.8687529 2.4018580, 48.8747072 2.4054809, 48.8722439 2.4046513, 48.8767561 2.4064590, 48.8706985 2.3986586, 48.8786754 2.4089244, 48.8789125 2.4089647, 48.8708652 2.3996564, 48.8755355 2.3994387, 48.8651789 2.3984930, 48.8656078 2.3991453, 48.8646241 2.3984974, 48.8648636 2.3976678, 48.8568549 2.3482069, 48.8571655 2.3501233, 48.8575860 2.3485830, 48.8567388 2.3485737, 48.8577759 2.3507769, 48.8692099 2.3201082, 48.8834236 2.3497662, 48.8903375 2.3590926, 48.8906554 2.3600336, 48.8871139 2.3597906, 48.8262091 2.3536051, 48.8266462 2.3051647, 48.8999916 2.3711721, 48.8881927 2.3621096, 48.8914236 2.3611829, 48.8917257 2.3614702, 48.8479250 2.2519051, 48.8480478 2.2521359, 48.8845262 2.3643914, 48.8846958 2.3614362, 48.8929850 2.3631201, 48.8934228 2.3640253, 48.8955904 2.3706365, 48.8956114 2.3711627, 48.8956593 2.3591193, 48.8928035 2.3595578, 48.8984062 2.3574740, 48.8983976 2.3571253, 48.8984451 2.3583759, 48.8987458 2.3583078, 48.8987291 2.3578334, 48.8987716 2.3597234, 48.8985110 2.3600650, 48.8981225 2.3595285, 48.8974513 2.3596053, 48.8979532 2.3595285, 48.8975583 2.3593354, 48.8979626 2.3589508, 48.8976217 2.3590994, 48.8826526 2.3588127, 48.8741422 2.3313585, 48.8862829 2.3566228, 48.8895695 2.3714685, 48.8672878 2.3649621, 48.8680385 2.3640309, 48.8662798 2.3657054, 48.8594758 2.3774484, 48.8444943 2.4419274, 48.8445323 2.4414766, 48.8445097 2.4417319, 48.8417078 2.4497336, 48.8424935 2.4488325, 48.8610025 2.3249115, 48.8289740 2.3784430, 48.8303989 2.3770851, 48.8442261 2.4406747, 48.8382746 2.2703649, 48.8386349 2.2702074, 48.8549982 2.3620916, 48.8620514 2.3149638, 48.8936160 2.3368475, 48.8479777 2.3979993, 48.8515341 2.4159031, 48.8511806 2.4158162, 48.8585104 2.4146101, 48.8539244 2.4152653, 48.8537684 2.4155113, 48.8831351 2.3875773, 48.8838485 2.3946602, 48.8861264 2.3942560, 48.8868055 2.3944143, 48.8282056 2.2676145, 48.8898250 2.3559271, 48.8983265 2.3703883, 48.8888757 2.3560908, 48.8537887 2.3650689, 48.8915373 2.3724185, 48.8896765 2.3677521, 48.8871205 2.3669275, 48.8926811 2.3694349, 48.8898422 2.3681388, 48.8981307 2.3711455, 48.8960339 2.3709216, 48.8961681 2.3712644, 48.8709372 2.3609634, 48.8431719 2.3742563, 48.8753464 2.3578419, 48.8756205 2.3580547, 48.8915108 2.3502537, 48.9004027 2.3344708, 48.9005060 2.3349504, 48.8762554 2.3322208, 48.8762622 2.3313884, 48.8763683 2.3320907, 48.8311845 2.3539944, 48.8276163 2.3004583, 48.8318087 2.3062340, 48.8301984 2.3046073, 48.8387250 2.3066903, 48.8373618 2.2986439, 48.8424385 2.2910352, 48.8406475 2.3006615, 48.8373187 2.3013607, 48.8371088 2.3061772, 48.8365313 2.3054812, 48.8425686 2.2954928, 48.8418437 2.2979508, 48.8408205 2.2915520, 48.8360210 2.2970749, 48.8386408 2.2944000, 48.8327624 2.2939220, 48.8343868 2.2955119, 48.8316054 2.2928591, 48.8290094 2.2957084, 48.8231636 2.3248439, 48.8210965 2.3214270, 48.8660109 2.3651191, 48.8831088 2.3245043, 48.8706392 2.2750468, 48.8223059 2.3255106, 48.8225238 2.3255513, 48.8211767 2.3245177, 48.8756477 2.3575641, 48.8757782 2.3578427, 48.8757972 2.3581878, 48.8760146 2.3579188, 48.8761387 2.3589148, 48.8761693 2.3575858, 48.8251240 2.3185199, 48.8251289 2.3185313, 48.8264859 2.3803189, 48.8288314 2.3781017, 48.8818235 2.3316486, 48.8797557 2.3313620, 48.8246479 2.3257671, 48.8831293 2.3321584, 48.8744341 2.3326082, 48.8760903 2.3318791, 48.8443937 2.3244660, 48.8273636 2.3799346, 48.8446876 2.3289317, 48.8209076 2.3257609, 48.8214526 2.3256634, 48.8470719 2.3307396, 48.8484012 2.3324664, 48.8373110 2.2846337, 48.8981802 2.3449608, 48.8984921 2.3519898, 48.8847923 2.3692626, 48.8847923 2.3692626, 48.8698199 2.3940657, 48.8698866 2.3940078, 48.8678992 2.3130122, 48.8296992 2.3597326, 48.8249028 2.3698615, 48.8406034 2.3364178, 48.8498446 2.3280436, 48.8730041 2.3099688, 48.8255852 2.3673189, 48.8390055 2.3390755, 48.8751397 2.3084629, 48.8506212 2.3140974, 48.8236455 2.3258148, 48.8689372 2.3563959, 48.8682979 2.3629829, 48.8546575 2.2839258, 48.8559555 2.2855493, 48.8609423 2.2920296, 48.8617137 2.3588159, 48.8645636 2.3107915, 48.8646320 2.3144479, 48.8620955 2.3020640, 48.8859328 2.2902595, 48.8831391 2.3096871, 48.8831823 2.3097789, 48.8835981 2.3042344, 48.8957911 2.3114788, 48.8578051 2.3062945, 48.8665714 2.3230270, 48.8304638 2.3931881, 48.8639483 2.3316516, 48.8536624 2.3468093, 48.8381747 2.2892269, 48.8299272 2.3527600, 48.8857690 2.2899810, 48.8986597 2.3695773, 48.8987838 2.3695670, 48.8985694 2.3648411, 48.8986959 2.3650911, 48.8237933 2.3179955, 48.8976856 2.3251805, 48.8400853 2.3369561, 48.8754968 2.3248192, 48.8759355 2.3261765, 48.8659009 2.3577539, 48.8769948 2.4057951, 48.8436272 2.3223946, 48.8714976 2.3016926, 48.8532579 2.3679520, 48.8695579 2.3084966, 48.9007333 2.3351829, 48.9008816 2.3353907, 48.9002974 2.3325230, 48.8994357 2.3362588, 48.8645709 2.4096203, 48.8647510 2.4094343, 48.8651115 2.4111112, 48.8721384 2.3306302, 48.8241510 2.3534715, 48.8671308 2.3359975, 48.8405453 2.3687821, 48.8404129 2.3686132, 48.8367833 2.3709520, 48.8368645 2.3710540, 48.8793714 2.3898544, 48.8561033 2.4049251, 48.8962803 2.3381398, 48.8822910 2.3396804, 48.8883829 2.3560631, 48.8222926 2.3250337, 48.8870151 2.3130952, 48.8843179 2.3388482 +40 +viewpoint, museum, attraction, hotel, bed and breakfast, hostel, yes, artwork, information, picnic site, 65t, guest house, 14t, gallery, aquarium, apartment, aparment, theme park, zoo, camp site +Ibis +52.0455273 8.4506902, 52.0579438 8.4922378, 51.9789909 8.5077870, 51.9839158 8.5145830, 51.9719056 8.4584900, 51.9832360 8.5011688, 52.0581150 8.4919573, 52.0754057 8.4694042, 51.9914877 8.4790051, 51.9845111 8.5016418, 52.0980842 8.5181968, 52.0949444 8.5198350, 52.0419948 8.5160247, 52.0292851 8.5181917, 52.0314754 8.5141184, 52.0295337 8.5150115, 51.9847361 8.4854709, 51.9859050 8.4877428, 52.0306430 8.5117068, 51.9971967 8.5057650, 51.9934233 8.5091802, 52.0294891 8.5129716, 52.0267434 8.4659864, 52.0107287 8.5202197, 51.9891284 8.5001010, 51.9499358 8.5003082, 51.9406388 8.5114804, 51.9906984 8.5078615, 51.9963039 8.4716935, 51.9888194 8.5112622, 52.0981428 8.5181712, 52.0359476 8.4981338, 51.9839295 8.5004598, 52.0385624 8.4870408, 52.0946122 8.5195110, 52.0307135 8.5117101, 52.0267458 8.4660597, 52.0459428 8.5203701, 51.9837555 8.5001033, 52.0106909 8.5203429, 51.9621571 8.4624693, 51.9717369 8.4582094, 52.0293357 8.5180617, 52.0425290 8.5168560, 52.0580908 8.4924175, 52.0455684 8.4510738, 52.0294960 8.5152776, 52.0314045 8.5141317, 51.9847954 8.4859472, 51.9861104 8.4873591, 52.0308117 8.5117948, 51.9972310 8.5062078, 51.9931065 8.5094547, 51.9914510 8.4802500, 52.0754750 8.4692456, 52.0691401 8.4845397, 51.9898013 8.5008912, 51.9842005 8.5139759, 51.9789415 8.5070326, 51.9502642 8.5005356, 51.9402691 8.5119328, 51.9960941 8.4716263, 51.9884382 8.5106798, 52.0363421 8.4985163 +49.4126021 8.6894511, 49.4124594 8.6881444 +McDonald's +0 +55.9351932 -3.1010341, 55.9501318 -3.1886125, 55.9623636 -3.1790432, 55.9713786 -3.1713983, 55.9708769 -3.1716878 +fuel, drinking water, recycling, post box, telephone, fire station, pharmacy, restaurant, atm, townhall, shelter, fast food, college, taxi, post office, toilets, parking, car rental, bank, kindergarten, wifi, place of worship, biergarten, police, vending machine, car sharing, bench, grave yard, public building, cafe, hospital, pub, nightclub, clock, library, grit bin, bar, cinema, school, artwork, fountain, hunting stand, waste, waste basket, bicycle parking, veterinary, doctors, heikopter, repair, university, dentist, shop, bicycle rental, theatre, social facility, video games, solarium, charging station, locker, swimming pool, car wash, food court, driving school, dancing school, parking entrance, marketplace, motorcycle parking, ferry terminal, youth centre, brothel, tradeoff, fire hydrant, stables, ice cream, advertising, craft, childcare, club, waste disposal, art gallery, animal shelter, science park, community centre, arts centre, boat rental, nursing home, retirement home, parking space, bbq, bus parking, emergency service, fraternity, monastery, hotel, smoking area, courthouse +514 +52 +49.4300711 8.6823444 +Albert Gödde, Friedrich Wolgast, Otto Appelfelder, Rudolf Sauer, Erich Wemhöner, Hermann Kleinewächter, Lina Feldheim geb. Katzenstein, Alfred Feldheim, Ruth Feldheim, Eva Feldheim, Christian Vogel, Otto Giesselmann, Ernst Brune, Richard Otto Senkel, Toni Lieber, Dora Senkel geb. Salomon, Thekla Lieber geb. Heine, Heinrich Schwarze, Margot Grünewald, Paul Brockmann, Robert Hegemann, Selma Grünewald geb. Wolff, Oskar Grube, Eduard Gaus, Leo Grünewald, Bernhard Putjenter, Rosa Heymann geb. Wolff, Gustav Höcker, Friede Laarmann, Gustav Koch, Fritz Bockhorst, Hugo Schweitzer, Wilhelm Hünerhoff, Fritz Beckstätte, Herrmann Wörmann, Gustav Milse, Wilhelm Ebert, Heinrich Homann, Frieda Homann geb. Reinecke, Gustav Horstbrink, August Beckmann, Mathilde Wisbrun geb. Tuteur, Frieda Horstbrink geb. Plauel, Moritz Wisbrun, Lina Beckmann geb. Sprick, Gustav Doerth, Adolf Schmidtpott, Wilma Auguste Kötter, Johanne Horstmann, Adolf Kampmeier, Dr. Julius Kamp, Bärbel Gottschalk, Samuel Meyerson, Walli Gottschalk, Josefa Metz, Ursula Gottschalk, Alfred Gottschalk, Hans Metz, Hedwig Meyerson, Lotte Windmüller, Wilhelm Kappe, Hermann Federmann, Kurt Simon, Margot Hermine Reuter, Heinrich Heibrock, Dr.med. Bernhard Mosberg, Dr.med. Gertrud Mosberg, Rosalie Mosberg, Ferdinand Willeke, Emil Möller, Fritz Katzenstein, Jenni Hesse, Julius Hesse, Konrad Griefingholt, Erich Klever, Dr. Gustav Meyer, Dr. Moritz Willi Katzenstein, Grete Blank, Hildegard Blank, Josef Meyer, Josef Meyer, Marianne Adelheid Katzenstein verh. Bern, Eva Susanne Katzenstein, Mathilde Juhl, Hanna Juhl, Salli Blank, Selma Katzenstein geb. Zehden, Therese Meyer geb. Melchior +Crowne Plaza, Nordbrückenkopf, Europäischer Hof, Stadtbücherei, Woolworth, Kaufhof, Juristisches Seminar, Darmstädter Hof, Universitätsbibliothek, Karlsplatz/Rathaus, ATOS Klinik, Bauhaus, P8 Kongresshaus, Schlosshotel, Darmstädter Hof, Kraus, P+M, Heiligenberg, Poststraße, Parkhaus am Theater, Friedrich-Ebert-Anlage 2, Kornmarkt/Schloss, Unter der Boschwiese +yes +10, 8, 24, 10, 8, 2, 16, 6, 8, 20, 14, 16, 4, 4, 8, 6, 4, 6, 8, 56, 4, 4, 4, 2, 8, 10, 14, 4, 8, 6, 16, 2, 6, 10, 10, 14, 10, 2, 4, 4, 10, 4, 4, 8, 8, 4, 6, 24, 12, 100, 14, 8, 36, 16, 82, 4, 2, 6, 2, 6, 4, 4, 4, 16, 14, 24, 24, 24, 12, 14, 24, 6, 4, 4, 4, 1, 4, 4, 40, 2, 15, 6, 4, 4, 4, 14, 6, 4, 8, 4, 4, 6, 2, 10, 10, 40, 8, 4, 4, 30, 2, 4, 10, 34, 4, 20, 2, 2, 4, 12, 10, 26, 6, 2, 8, 8, 36, 16, 8, 8, 160, 12, 4, 12, 10, 20, 4, 4, 12, 4, 4, 10, 8, 12, 14, 20, 40, 28, 40, 6, 6, 8, 6, 4, 6, 6, 6, 8, 6, 34, 8, 12, 16, 16, 18, 14, 16, 14, 20, 16, 4, 4, 6, 16, 14, 10, 16, 2, 4, 2, 4, 4, 2, 6, 2, 4, 2, 2, 6, 12, 4, 4, 2, 2, 12, 6, 2, 4, 2, 24, 8, 16, 6, 4, 8, 2, 6, 6, 14, 8, 16, 4, 4, 10, 12, 40, 8, 16, 20, 4, 2, 6, 4, 4, 10, 4, 4, 8, 6, 7, 7, 3, 20, 8, 8, 8, 6, 12, 8, 6, 20, 6, 8, 12, 12, 4, 4, 12, 6, 20, 10, 6, 10, 6, 16, 14, 12, 30, 4, 2, 8, 4, 2, 36, 44, 48, 10, 10, 46, 10, 10, 12, 8, 30, 4, 4, 16, 20, 3, 6, 4, 4, 4, 4, 10, 6, 4, 6, 4, 10, 20, 2, 6, 20, 4, 4, 2, 2, 2, 10, 4, 8, 6, 3, 32, 6, 8, 2, 4, 10, 6, 34, 20, 14, 4, 2, 6, 8, 4, 20, 10, 4, 4, 26, 16, 20, 72, 10, 10, 10, 8, 8, 3, 8, 8, 16, 2, 10, 2, 4, 6, 4, 4, 10, 16, 6, 32, 6, 4, 4, 4, 10, 10, 20, 16, 6, 6, 2, 4, 4, 2, 8, 4, 4, 6, 4, 4, 10, 20, 60, 4, 12, 6, 2, 16, 4, 6, 6, 6, 8, 8, 8, 2, 4, 6, 4, 14, 10, 10, 12, 6, 4, 4, 4, 4, 4, 4, 4, 8, 8, 4, 4, 80, 6, 6, 6, 6, 6, 6, 20, 2, 8, 8, 8, 15, 10, 6, 36, 10, 10, 30, 40, 40, 14, 10, 8, 10, 4, 4, 2, 4, 16, 10, 122, 4, 8, 8, 8, 8, 10, 10, 10, 10, 10, 10, 42, 64, 50, 32, 6, 6, 6, 4, 4, 2, 2, 6, 8, 10, 22, 10, 18, 40, 40 +エッフェル塔 +yes +0 +48.8108150 2.3016518, 48.8153367 2.2970255, 48.8812535 2.2714648, 48.8756694 2.2890915, 48.8719944 2.3006392, 48.8689763 2.3101131, 48.8664075 2.3221380, 48.8643585 2.3298436, 48.8623829 2.3361468, 48.8607697 2.3409358, 48.8587782 2.3474106, 48.8575436 2.3515947, 48.8552140 2.3606657, 48.8520122 2.3686542, 48.8457111 2.3727163, 48.8472696 2.3866995, 48.8475165 2.4063260, 48.8339081 2.2438908, 48.8487832 2.2988351, 48.8475338 2.3029524, 48.8504212 2.2936685, 48.7296445 2.3600059, 48.8242325 2.2730847, 48.8270162 2.2794048, 48.8326135 2.2884024, 48.8373212 2.2966299, 48.8919677 2.2377691, 48.8228800 2.3256282, 48.8280605 2.3269249, 48.8313954 2.3301258, 48.8340204 2.3325902, 48.8389018 2.3308032, 48.8330168 2.3366295, 48.8311288 2.3434842, 48.8297785 2.3504704, 48.8314217 2.3555589, 48.8331986 2.3628553, 48.8349549 2.3680817, 48.8370762 2.3729066, 48.8842870 2.3659442, 48.8480576 2.3960523, 48.8444696 2.4398829, 48.8454354 2.4293269, 48.8782117 2.3816608, 48.8808997 2.3738860, 48.8518166 2.4013757, 48.8463309 2.4190317, 48.8514736 2.3982446, 48.8664900 2.3833323, 48.8629761 2.3873271, 48.8582563 2.3901666, 48.8562640 2.3945621, 48.8720463 2.3769849, 48.8690586 2.3804560, 48.8774398 2.3708174, 48.8829026 2.3443344, 48.8823612 2.3373703, 48.8836162 2.3330841, 48.8835165 2.3274515, 48.8824462 2.3221220, 48.8812626 2.3155318, 48.8805420 2.3094230, 48.8737784 2.2950482, 48.8698038 2.2854485, 48.8714638 2.2768954, 48.8652545 2.4166605, 48.8645515 2.4088118, 48.8649326 2.3984802, 48.8643020 2.3794597, 48.8652193 2.3747542, 48.8666345 2.3614233, 48.8654878 2.3563464, 48.8663020 2.3524557, 48.8676419 2.3463248, 48.8686692 2.3412605, 48.8695654 2.3367072, 48.8707693 2.3322643, 48.8736019 2.3276269, 48.8754212 2.3255796, 48.8825292 2.3110507, 48.8839908 2.3042907, 48.8847948 2.2982623, 48.8856871 2.2926417, 48.8395785 2.3012923, 48.8415118 2.3080120, 48.8443954 2.3175634, 48.8468543 2.3166512, 48.8514000 2.3143901, 48.8568058 2.3151577, 48.8413343 2.4008998, 48.8905035 2.3598783, 48.9162246 2.2948689, 48.8707855 2.3611531, 48.8921077 2.2852229, 48.8579460 2.4357587, 48.8625988 2.4415690, 48.8971408 2.2803973, 48.8887892 2.2878755, 48.8526992 2.4061094, 48.8534759 2.4105242, 48.8558145 2.4237108, 48.8525808 2.3887914, 48.8547441 2.3853565, 48.8581580 2.3798044, 48.8610516 2.3747956, 48.8641314 2.3695694, 48.8694199 2.3544678, 48.8706004 2.3487793, 48.8715206 2.3432861, 48.8720176 2.3395091, 48.8730612 2.3333207, 48.8747030 2.3197963, 48.8464740 2.3659107, 48.8422880 2.3653598, 48.8460116 2.3549579, 48.8465082 2.3517283, 48.8499051 2.3487460, 48.8508926 2.3454617, 48.8521785 2.3394266, 48.8529427 2.3357457, 48.8363894 2.2784000, 48.8387450 2.2821427, 48.8410837 2.2879218, 48.8426906 2.2917758, 48.8389924 2.3896778, 48.8395253 2.3958919, 48.8401067 2.3799581, 48.8410654 2.3249923, 48.8429457 2.3126019, 48.8716770 2.2935098, 48.8669099 2.2902715, 48.8630266 2.2870524, 48.8573825 2.2859234, 48.8646725 2.2937783, 48.8640063 2.2780859, 48.8580816 2.2741958, 48.8555764 2.2702166, 48.8525598 2.2681802, 48.8480038 2.2641872, 48.8452505 2.2618802, 48.8430044 2.2600472, 48.8377707 2.2565741, 48.8649686 2.3006256, 48.8723362 2.3100827, 48.8736768 2.3145456, 48.8514587 2.3267159, 48.9038952 2.3053664, 48.8939640 2.3144204, 48.8905170 2.3201235, 48.8874127 2.3256961, 48.8470802 2.3076354, 48.8470463 2.2953101, 48.8606970 2.3210551, 48.8586775 2.3231168, 48.8481026 2.3277965, 48.8452766 2.3286613, 48.8656361 2.3227452, 48.8700644 2.3251637, 48.8446967 2.2937668, 48.8546428 2.3061015, 48.8575837 2.3102891, 48.8611770 2.3148333, 48.8633194 2.3666124, 48.8610965 2.3672267, 48.8575371 2.3679970, 48.8531361 2.3686313, 48.8511945 2.3759944, 48.8500259 2.3842705, 48.8444003 2.3899525, 48.8371074 2.4024837, 48.8266498 2.4057278, 48.8354584 2.4063451, 48.8450642 2.4010776, 48.8333461 2.3863163, 48.8269184 2.3662163, 48.8322556 2.3989811, 48.8656737 2.3344599, 48.8763705 2.3326310, 48.8760654 2.3385532, 48.8557241 2.3256659, 48.8784508 2.3374732, 48.8844760 2.3384377, 48.8898183 2.3386296, 48.8925606 2.3447103, 48.8977084 2.3592969, 48.8937935 2.3477372, 48.8873214 2.3497042, 48.8795577 2.3571375, 48.8762027 2.3579127, 48.8638408 2.3487041, 48.8723097 2.3558518, 48.8627762 2.3461709, 48.8551566 2.3471977, 48.8535657 2.3443622, 48.8536264 2.3333280, 48.8470711 2.3270822, 48.8421852 2.3289966, 48.8466102 2.2859257, 48.8461920 2.2786319, 48.8473202 2.2686743, 48.8477655 2.2583922, 48.8452670 2.2672606, 48.8470891 2.2728475, 48.8420002 2.2387333, 48.8406690 2.2287175, 48.8700162 2.3710617, 48.8612740 2.3535761, 48.8771276 2.4066804, 48.8754657 2.3990396, 48.8738469 2.3852526, 48.8750969 2.3893345, 48.8385876 2.3222085, 48.8317799 2.3140252, 48.8339551 2.3180764, 48.8225032 2.2984833, 48.8566177 2.3705298, 48.8602039 2.3721323, 48.8850187 2.3795672, 48.8869632 2.3867135, 48.8885434 2.3927045, 48.8911980 2.4025577, 48.8814188 2.3654808, 48.8772835 2.3492720, 48.8885069 2.3740693, 48.8908770 2.3772148, 48.8947998 2.3823744, 48.8974296 2.3854377, 48.8749537 2.3402103, 48.8759682 2.3441565, 48.8585901 2.3424101, 48.8512630 2.3622044, 48.8535245 2.3570872, 48.8429311 2.3521239, 48.8406731 2.3517801, 48.8356703 2.3525980, 48.8799166 2.3990372, 48.8819551 2.3933641, 48.8798096 2.4170873, 48.8715218 2.4043104, 48.8680997 2.4013152, 48.8382823 2.3608293, 48.8356584 2.3588519, 48.8927063 2.3274728, 48.8973715 2.3289008, 48.9061915 2.3320476, 48.8261434 2.3573719, 48.8225268 2.3585049, 48.8191302 2.3595477, 48.9231172 2.2862019, 48.9305465 2.2836436, 48.9142830 2.4036539, 48.9036536 2.3920966, 48.9207844 2.4106144, 48.8677590 2.3139517, 48.7963514 2.4492350, 48.7899066 2.4504803, 48.7797556 2.4594504, 48.8024711 2.4466949, 48.8090371 2.4347211, 48.8150770 2.4217740, 48.8214689 2.4136458, 48.9118944 2.3339725, 48.9196049 2.3429933, 48.8051317 2.3637903, 48.7869402 2.3673857, 48.7960877 2.3683672, 48.8103280 2.3622359, 48.8514725 2.3311829, 48.8439710 2.3243262, 48.8789208 2.3623079, 48.8844216 2.3602786, 48.8932382 2.4133209, 48.8795976 2.3270787, 48.9301278 2.3563841, 48.9368260 2.3590959, 48.9459311 2.3641518, 48.8538982 2.2893959, 48.8319438 2.2381100, 48.8296613 2.2308732, 48.8201086 2.3647992, 48.8216697 2.3693224, 48.8159011 2.3773455, 48.8109896 2.3839963, 48.8491398 2.3218984, 48.8756733 2.3273522, 48.8755336 2.3242020, 48.8780508 2.2982339, 48.7687211 2.4643844, 48.8837592 2.3495338, 48.8915769 2.3496679, 48.8663302 2.3215942, 48.8603937 2.3146892, 48.8537409 2.3693210, 48.8433310 2.3737787, 48.8456163 2.3095848, 48.9064052 2.4491919, 48.8975167 2.3446663, 48.8419339 2.3211592, 48.7290137 2.3699140, 48.8787548 2.3223081, 48.8767276 2.4064297, 48.8795817 2.3886032, 48.8825949 2.3703263, 48.8295791 2.3768615, 48.8767737 2.3935636, 48.8792625 2.3035538, 48.9068701 2.3657737, 48.8183938 2.3193550, 48.8956037 2.4251032, 48.8779888 2.2817745, 48.8582563 2.3901666, 48.8882249 2.2495172, 48.8849431 2.2599157, 48.8571078 2.3473222, 48.8596411 2.3468404, 48.8576652 2.3478702, 48.8589166 2.3467871, 48.8673076 2.3641562 +67 +5 +547 +231 +yes +4.2793779848203322 +0 +yes +yes +55.9519428 -3.2160716, 55.9609898 -3.2094322, 55.9383701 -3.3043514 +126 +indian, italian, regional, chinese, thai, german, french, vegetarian, greek, spanish, mediterranean, japanese, malaysian, eritrean, international, persian, asian, moroccan, burger, vietnamese, turkish, african, cuban, korean, vegan, Flammkuchen +9 and 55.5921994 -4.4879264, 55.8607863 -4.1124939, 51.5502086 -0.3308623, 51.5258455 -0.3653582, 54.7465190 -1.6099826, 51.5702298 -2.9701770, 51.0562801 -1.3227899, 53.3793873 -3.0985322, 53.7603866 -2.7517739 +388 +793 +55.9779143 -3.1684989, 55.9454499 -3.2050290 +no +monument, wayside cross, memorial, castle, monument, ruins, memorial, memorial, memorial, monument, memorial, wayside cross, monument, monument, memorial, memorial, memorial, memorial, memorial, memorial, memorial, ruins, castle, mine, monument, archaeological site, archaeological site, wayside shrine, memorial, memorial, memorial, memorial, archaeological site, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, monument, monument, memorial, castle, memorial, monument, memorial, wayside cross, fort, yes, fort, castle, fort, archaeological site, yes, memorial, attraction, fort, monument, monument, memorial, manor, manor, manor, building, church, church, church, fort, fort, memorial, memorial, castle, wayside shrine, memorial, monument, ruins, archaeological site, wayside shrine, castle, abbey, chapel, yes, mine shaft, memorial, castle, castle, castle, castle, castle, ruins, ruins, ruins, ruins, chapel, ruins, archaeological site, ruins, ruins, ruins, bunker, bunker, manor, ruins, bunker, fort, ruins, ruins, manor, ruins, fort, building, bunker, bunker, bunker, bunker, fort, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, fort, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, battery, fort, bunker, bunker, fort, bunker, memorial, ruins, ruins, ruins, castle, archaeological site, ruins, castle +yes +no +47 +49.3819891 8.7064791, 49.3903727 8.7038688, 49.3716601 8.7156918, 49.3882437 8.7497467, 49.3795036 8.7459449, 49.3921408 8.7451114, 49.3950715 8.7223322, 49.3736364 8.7471636 +yes +playground, garden, sports centre, swimming pool, marina, park, pitch, cinema, dance, table tennis, slipway, hackerspace, table, pool, swings, sauna, carousel, amusement arcade, dancing school, fitness centre, stadium, chess, water park, common, track, arts centre, recreation ground, bandstand, horse riding, golf course, miniature golf, picnic table, caroussel, nature reserve +Cinéma Marcel Pagnol, Le brady, L'Archipel +01.43.41.09.70, ab conduite, ECF, Cluny - Saint-Germain and 01.43.26.42.42, C.E.R. Brancion and 01.48.28.03.78, Permis Malin, Alkris, Auto école Place de Rungis, Auto Moto École Alésia, Caser formations, École de conduite Saint-Charles, Tour Eiffel Permis +172 +yes +yes and 5 +49.3905924 8.6739719, 49.4115364 8.6766566, 49.3905596 8.6743412, 49.3960051 8.6864746, 49.3960694 8.6860163, 49.4123557 8.7728324 +47.8931595 7.9220044, 47.6706257 9.6099451, 48.8409034 9.1608485, 49.5114392 8.6601812, 48.6525503 9.3971910, 49.7635857 9.6215330, 49.7711879 9.5730596, 49.7592849 9.5493504, 48.8085947 9.1086907, 48.8084453 9.1083882, 48.7672340 9.1634636, 48.7646487 9.1455060, 48.8517845 9.1905506, 47.7572746 9.4550989, 48.8048250 9.1776074, 48.7975239 9.1823227, 48.7764455 9.2484665, 49.7438132 9.5591926, 48.5441691 10.0649595, 48.5481307 10.0299806, 48.0859164 8.6731360, 48.0941243 8.6558902, 48.1009818 8.7502162, 48.3855242 8.4343050, 48.4254364 8.9771979, 48.7896840 9.2403361, 48.7898028 9.2401816, 48.7987295 9.2671029, 48.7877576 9.2251651, 48.7720412 9.1018571, 48.7714189 9.1039857, 48.7548168 9.1609347, 48.7393742 9.1043352, 48.7331011 9.0916034, 48.7294036 9.0792362, 48.7127340 9.0963494, 48.7061888 9.1632435, 48.6921724 9.3046368, 48.6844604 9.3243976, 48.6197323 9.4551205, 48.4917874 9.4829183, 48.4313237 9.4652398, 48.4024099 9.4114303, 48.4766686 9.8814611, 48.2380029 8.1766286, 48.7850407 9.1860670, 48.8431211 9.6562274, 48.6307794 9.4154575, 48.0319228 8.4105207, 48.0468749 8.4196097, 47.8638812 9.1743006, 48.4226168 8.9110413, 48.7841199 9.0904498, 48.0698826 8.3504215, 48.8047324 9.1919671, 49.3929098 8.7766872, 48.7219890 9.0756901, 48.7093678 9.1402100, 48.7063494 9.1632880, 48.6935525 9.2233254, 48.6938888 9.2230679, 48.6956216 9.2628339, 48.6944266 9.2857314, 48.6948056 9.2857019, 48.6586541 9.3789196, 48.6529244 9.3974295, 48.6306373 9.4582064, 48.6310225 9.4580187, 48.6296852 9.4774326, 48.6300159 9.4774419, 48.6288271 9.4974811, 48.6286715 9.5206816, 48.6316019 9.5381045, 48.6319392 9.5378497, 48.6333417 9.5538473, 48.6185241 9.5910600, 48.5837682 9.6626361, 48.5774390 9.6630037, 48.5654624 9.6356449, 48.5467301 9.6424113, 48.5336488 9.6575403, 48.5324382 9.6697929, 48.5275597 9.7174851, 48.5185011 9.7592517, 48.5182325 9.7572384, 48.5181465 9.7821863, 48.5183786 9.7822118, 48.5174461 9.8169719, 48.5108829 9.8343256, 48.5110458 9.8346520, 48.4773580 9.8789721, 48.4719735 9.8971941, 48.6614547 8.9975223, 48.4654321 9.9177765, 48.4568656 9.9471097, 48.4566115 9.9731268, 48.4575723 9.9853023, 48.4575380 10.0128756, 48.4578922 10.0113024, 48.4566193 10.0241328, 48.1830256 9.7816113, 48.4569309 10.0238267, 48.4568614 9.9728885, 48.4571568 9.9473354, 48.4775320 9.8792836, 48.5176649 9.8171648, 48.5199916 9.8076880, 48.5228113 9.7372686, 48.5275062 9.7199164, 48.5311230 9.6960245, 48.5333133 9.6642932, 48.5466820 9.6483292, 48.5636428 9.6740108, 48.5770570 9.6749696, 48.5840802 9.6628951, 48.6143628 9.6120035, 48.6186112 9.5926055, 48.6336256 9.5515051, 48.6287221 9.5185340, 48.6291371 9.4980277, 48.6402661 9.4329496, 48.6532481 9.3976460, 48.6589208 9.3792326, 48.6665530 9.3662042, 48.6754390 9.3458767, 48.6846579 9.3248490, 48.6925264 9.3047185, 48.6957928 9.2643366, 48.7024660 9.1783020, 48.7068672 9.1631451, 48.7069591 9.1634389, 48.7099095 9.1403554, 48.8871970 9.0451463, 48.8776217 9.0839978, 48.1612777 9.7900051, 48.6283215 9.5740630, 48.9168298 8.9430269, 48.4120306 8.4067443, 48.7156317 8.2268140, 48.0783822 8.4461271, 48.9607189 9.2194538, 48.9606145 9.2187767, 49.1769947 9.9318229, 48.7783246 9.5110956, 48.4587660 9.9811761, 48.6623908 9.2255884, 48.6218504 9.2494700, 48.5949915 9.2530806, 48.8361387 8.5909962, 47.8659661 7.7484426, 48.6208580 9.4555416, 49.4738271 9.7966510, 48.8164045 8.5799195, 48.6355511 9.2927221, 48.9546798 9.2502443, 48.7913607 8.1911997, 48.7290336 8.1554927, 48.6648842 9.2107380, 48.5758515 9.2289882, 48.6997566 9.4094867, 48.6938675 9.1999755, 48.5478154 9.2643058, 48.5806508 9.1736055, 48.5586863 9.1737419, 48.5435954 9.1493859, 49.5618613 9.6229111, 49.5614784 9.6227222, 49.5585167 9.6153308, 49.5404830 9.5884578, 49.5323399 9.5784239, 49.5323111 9.5778313, 49.5372729 9.5834493, 49.4242922 9.4869280, 49.4246245 9.4865582, 48.9800359 9.2295550, 48.9690446 9.2262070, 48.5415003 8.8029163, 48.7522067 8.2485351, 48.7535173 8.2447141, 48.7677441 8.2305067, 48.5339160 9.2339354, 49.0641753 9.8706185, 48.6971369 9.2439721, 48.6975218 9.2437986, 48.6751085 9.3456470, 48.6934507 9.2025498, 48.6930968 9.2025100, 48.6765698 9.3688639, 48.6763806 9.3691866, 48.7024629 9.4396321, 48.7038033 9.4501905, 48.7071589 9.4739798, 48.7068984 9.4739726, 48.7160960 9.5495317, 48.7030443 9.6013973, 48.7114471 9.5003428, 48.4005596 9.3164813, 48.4013004 9.3400954, 48.8219767 8.8342570, 49.0835719 9.8669593, 48.6119127 8.8048547, 48.8379781 8.6962629, 48.8664890 8.6819781, 49.0280176 9.8739938, 48.6160097 9.2200212, 48.6157890 9.2201356, 48.5787567 9.1741510, 48.5587099 9.1732797, 48.5341206 9.1897357, 49.0518476 9.8853764, 49.4534124 8.7619617, 49.0104277 8.4145748, 49.0683492 9.8995733, 48.4284117 8.6254017, 48.3301529 8.3967477, 48.9446845 8.4982423, 48.9420376 8.5063840, 48.9416725 8.5063002, 48.9248065 8.5977004, 48.9127357 8.6194374, 48.9086000 8.6501571, 48.8953199 8.7844283, 48.8803882 8.7880004, 48.8650961 9.2405642, 48.7089158 9.1148538, 48.8282641 8.8712993, 48.7644963 9.0315801, 48.8459831 8.4682949, 49.0294081 9.8404404, 48.5135967 9.7471919, 48.8381885 8.7479090, 48.7472998 9.0342151, 48.7421470 9.0351020, 48.7334551 9.0451019, 48.7290626 9.0800494, 48.6983948 9.6468413, 48.6992687 9.6445523, 48.6507051 8.2149644, 48.9704136 9.8727094, 48.6482872 9.4175625, 48.6479386 9.4174626, 48.6401517 9.4323574, 48.6107285 9.5013356, 48.6755332 9.5140860, 48.8797804 8.7885918, 48.8285183 8.8716562, 48.8107839 8.9226049, 48.7284217 9.0564560, 49.4964212 9.8159753, 49.5643411 9.8957718, 48.7509336 9.7392346, 48.7654033 9.7760138, 48.7092477 9.1149016, 48.7127753 9.0976601, 48.7224250 9.0759774, 48.7288647 9.0561891, 48.7337038 9.0454766, 48.7423208 9.0355761, 48.7473445 9.0346415, 48.7645813 9.0322451, 48.7844212 9.0003039, 48.8106073 8.9221678, 48.8955466 8.7849848, 48.9090368 8.6494218, 48.9464307 8.4929472, 48.9251683 8.5976789, 48.9155805 8.6166065, 48.9126798 8.6288162, 48.8955930 8.6334932, 48.1738882 9.9243238, 48.7359768 9.9564593, 49.5271869 9.4744451, 48.6341570 10.0297153, 47.7067101 8.9539274, 48.7406791 9.0358330, 47.9861753 9.9541146, 48.7097609 9.1403874, 48.7204349 9.0570947, 48.7048575 9.0466886, 48.7026191 9.0310935, 48.6956734 9.0150770, 48.6954821 9.0154086, 49.0826807 9.9068846, 48.5820337 9.5361343, 48.5712605 9.5309834, 48.6286557 9.5742425, 48.6140017 9.6120933, 48.6022552 9.7936233, 48.7511871 8.0194252, 48.7114985 9.5118429, 48.7122053 9.5620039, 48.7030671 9.6118484, 48.6989434 9.6444299, 48.6993800 9.6425167, 48.5459412 9.6258707, 48.3089635 9.2492758, 48.5153202 9.0859236, 48.5170905 9.0891957, 48.8348623 8.1815513, 47.6235849 9.5546946, 48.8386810 9.9568035, 48.4287133 9.6526070, 48.5798562 9.4316519, 48.0406218 8.5867569, 49.2734493 8.6948297, 48.0472287 8.5367557, 48.0868626 8.5904310, 48.0964731 8.5900449, 48.0962888 8.5896869, 48.1271981 8.5738132, 48.1273707 8.5741961, 48.2063358 8.6250931, 48.2056876 8.6226666, 48.2166201 8.6418668, 48.2167189 8.6414624, 48.2289745 8.6503769, 48.2289399 8.6499782, 48.2430476 8.6475682, 48.2431946 8.6479274, 48.2530209 8.6435126, 48.2531765 8.6438750, 48.2644203 8.6389933, 48.2645575 8.6393495, 48.2813956 8.6412975, 48.2813341 8.6408543, 48.2977146 8.6351507, 48.2972932 8.6347804, 48.3242880 8.6472160, 48.3243877 8.6476748, 48.3373584 8.6487786, 48.3373826 8.6483555, 48.3442700 8.6558343, 48.3469514 8.6618212, 48.3520586 8.6725316, 48.3522059 8.6721901, 48.3618750 8.6853301, 48.3619453 8.6849173, 48.3713676 8.6946796, 48.3714747 8.6942675, 48.3771842 8.7089372, 48.3774259 8.7087457, 48.4015796 8.7280541, 48.4011997 8.7277379, 48.4099417 8.7261467, 48.4099143 8.7265573, 48.4189313 8.7323191, 48.4189389 8.7328924, 48.4322851 8.7485039, 48.4288649 8.7451607, 48.4438641 8.7598648, 48.4440497 8.7595431, 48.4559934 8.7754291, 48.4717159 8.7892318, 48.4718223 8.7889048, 48.4561276 8.7750251, 48.4826991 8.8074012, 48.4829142 8.8071597, 48.4900488 8.8276497, 48.4900638 8.8270884, 48.5042436 8.8447640, 48.5037320 8.8430924, 48.5144951 8.8663899, 48.5147165 8.8661081, 48.5246719 8.8856662, 48.5255121 8.8869187, 48.5793415 8.8991287, 48.5792420 8.8996092, 48.5897158 8.8973723, 48.5898831 8.8977661, 48.6007304 8.8955808, 48.6008778 8.8962924, 48.6077084 8.8980109, 48.6079663 8.8972585, 48.6154948 8.9060911, 48.6151912 8.9052045, 48.6258039 8.9133937, 48.6258196 8.9129671, 48.6416668 8.9325258, 48.6424929 8.9331792, 48.6463972 8.9402165, 48.6475180 8.9443391, 48.6544979 8.9553375, 48.6546364 8.9549938, 48.6660811 8.9634531, 48.6642502 8.9625290, 48.6859489 8.9803457, 48.6861202 8.9800142, 48.7052895 9.0487083, 48.9563601 8.4816797, 48.9628669 8.4705850, 48.9720450 8.4492261, 48.9800139 8.4373000, 48.9918759 8.4366585, 49.0226256 8.4738843, 49.0395003 8.4872545, 49.0579562 8.5001354, 49.0715988 8.5098925, 49.1278148 8.5510693, 49.1616098 8.5690687, 49.1619321 8.5685770, 49.1730981 8.5754146, 49.1863209 8.5834869, 49.1990464 8.5921852, 49.1981135 8.5909866, 49.2128827 8.6012971, 49.2246552 8.6038684, 49.2362134 8.6022889, 49.2481139 8.6006746, 49.2662926 8.6102057, 49.2712965 8.6143221, 48.9062510 9.1542529, 48.9060983 9.1547569, 48.8583446 9.1257738, 48.8584252 9.1252132, 48.8046855 9.0395252, 48.8044203 9.0399424, 48.9524256 9.2073550, 48.9522036 9.2076234, 49.2743678 8.7629605, 49.2717609 8.6653623, 49.2727646 8.6477288, 49.2895781 8.6241046, 48.6937396 8.9998316, 48.6934591 9.0005857, 49.3127537 8.6293798, 49.3227278 8.6300450, 49.3238313 8.6296606, 49.3493381 8.6314983, 49.3506615 8.6310836, 49.3624388 8.6321377, 49.3777679 8.6340671, 49.3996042 8.6379323, 49.3995595 8.6374762, 49.4242619 8.6344464, 49.4415225 8.6440635, 49.4478965 8.6458733, 49.4497988 8.6467003, 49.4629951 8.6455334, 49.4767567 8.6402530, 49.4791177 8.6400463, 49.4935411 8.6393382, 49.4935774 8.6389413, 49.5081718 8.6398428, 49.5097612 8.6392983, 49.5313281 8.6336119, 49.5312920 8.6331428, 49.5525637 8.6279741, 49.5628605 8.6308686, 49.5629636 8.6305028, 49.5736837 8.6351574, 49.5737159 8.6346703, 49.5849793 8.6344711, 49.5927035 8.6319637, 49.6087826 8.6293910, 49.3087695 8.5838082, 49.3089156 8.5844077, 49.3148038 8.5766768, 49.3148851 8.5773384, 49.3265942 8.5634383, 49.3401364 8.5565264, 49.3499012 8.5518260, 49.3500649 8.5521838, 49.3669972 8.5452572, 49.3671253 8.5456554, 49.4035912 8.5452834, 49.4340209 8.5404260, 49.4340541 8.5408405, 49.4447718 8.5409303, 49.4447281 8.5413334, 48.5221209 9.2518579, 48.7138577 8.0381166, 48.5074260 9.1044855, 48.4966756 9.1647104, 48.7065484 9.1643826, 48.6529830 10.0549964, 48.6617309 7.9371316, 48.4604679 10.1730350, 48.7707679 9.2502478, 49.4983798 8.7221746, 48.5770937 10.1564522, 49.1356288 10.1460742, 49.6508039 9.5817874, 48.9688930 10.0421164, 48.4176102 8.6975529, 48.4510454 8.7024623, 48.5000283 9.2685370, 48.7443551 8.0688245, 48.7293246 8.0869285, 48.6394888 8.0724431, 48.6565743 8.0901528, 48.1245036 9.9555176, 48.5961319 10.1848887, 48.6980717 9.2484000, 48.1584954 9.8273206, 49.3726175 8.6154781, 49.3728712 8.6138114, 48.0740864 9.9161494, 47.6370345 9.6797608, 48.9159563 8.3440876, 48.8526869 8.2665743, 48.8301365 8.2749044, 48.8539086 8.2653152, 49.5396049 9.8644960, 49.5218245 9.8353583, 48.6992588 7.9806463, 47.7914795 8.9797220, 47.7515920 9.0963188, 47.6884901 9.1207814, 47.8182309 9.0258793, 47.7715126 8.9829763, 48.3505082 9.4001775, 48.3121609 8.6420209, 48.3122837 8.6416456, 48.3863838 8.7265175, 48.3864661 8.7260545, 48.5603672 8.8930171, 48.5605008 8.8925417, 48.5431572 8.8902599, 48.5431163 8.8898269, 48.6759155 8.9637953, 48.7855955 9.0161288, 48.7860187 9.0156133, 49.2685960 8.7808264, 49.2752513 8.7415830, 49.2807376 8.7212441, 49.2805216 8.7210148, 49.2784436 8.7067962, 49.2782043 8.7070247, 49.2761940 8.6961312, 49.2753863 8.6915806, 49.2720878 8.6653395, 49.2735130 8.6454921, 49.2772630 8.6311618, 49.2770465 8.6306095, 49.2724834 8.6147195, 49.2851444 8.6114523, 49.2896916 8.6235466, 49.3027549 8.6271841, 49.3028738 8.6268039, 49.2925232 8.6002521, 49.2925827 8.6009328, 49.2988050 8.5936118, 49.2990364 8.5939962, 49.3365839 8.6307588, 49.3366657 8.6303464, 49.3897310 8.6391038, 49.3897229 8.6386760, 49.4090665 8.6360177, 49.4090472 8.6355624, 49.3786252 8.6340635, 49.4678475 8.6434689, 49.5201575 8.6377645, 49.5201414 8.6373810, 49.5848404 8.6341265, 49.6087473 8.6288107, 49.3319505 8.5414892, 49.3322094 8.5412671, 49.3308082 8.5193728, 49.3310823 8.5183610, 49.3310769 8.5049699, 49.3315658 8.5013626, 49.3339319 8.4868857, 49.3339040 8.4859031, 49.3391146 8.4759931, 49.3392965 8.4763715, 49.0083118 8.4586493, 49.0084147 8.4581585, 49.0479857 8.4924290, 49.0479541 8.4929699, 49.1031294 8.5411948, 49.1041106 8.5425407, 49.1383259 8.5543833, 49.1384063 8.5539051, 49.2290781 8.6026935, 48.0844287 8.5950728, 48.0842978 8.5946580, 48.0707959 8.6062199, 48.0729727 8.6031045, 48.0616780 8.6172924, 48.0614729 8.6169757, 48.0467958 8.6243721, 48.0467018 8.6239468, 48.0341264 8.6201920, 48.0308426 8.6174004, 48.1119121 8.5822120, 48.1117959 8.5818045, 48.7390909 9.1046003, 48.7399694 9.1089399, 48.4015433 9.0154681, 48.3690922 8.9823530, 48.6050833 9.7626886, 48.8298430 8.2749761, 48.8899782 8.1857857, 48.7640789 8.9877233, 47.8328952 8.7686961, 48.3570794 8.4941471, 48.7769422 8.2549352, 48.1391265 9.5711715, 48.5790648 9.6732660, 48.7612090 9.0913193, 47.8748989 8.3130633, 48.3236105 8.9161333, 48.3234236 8.9166417, 48.3354920 8.9500999, 48.7933136 8.3221746, 47.6551491 8.2488428, 47.6976799 9.6153172, 48.7866683 9.4272710, 47.6209896 8.2562141, 47.7163607 9.4892661, 47.8086752 9.3139623, 47.7784875 9.3563684, 47.7679769 9.0454226, 47.7090187 9.0968096, 47.7299238 9.0291139, 49.6866841 9.7590894, 48.8168471 9.3139413, 48.3610944 8.5627862, 48.3509823 8.8958946, 48.7814979 8.0742777, 49.5483312 8.6217587, 49.5480505 8.6219075, 49.5530900 8.6271975, 49.4551559 8.5414923, 49.4535171 8.5424121, 49.4544949 8.5572809, 49.4547252 8.5574877, 49.4576280 8.5488333, 49.4578834 8.5490444, 49.4502084 8.5687290, 49.4495578 8.5714117, 49.4960783 8.5568899, 49.4959437 8.5573374, 49.4351626 8.6037261, 49.4353535 8.6040008, 49.4400482 8.5951900, 49.4402646 8.5954224, 49.4233651 8.6243011, 49.4235630 8.6246347, 49.3715952 8.5445479, 49.3716150 8.5449583, 49.3797900 8.5437786, 49.3798146 8.5441885, 49.4147544 8.5477856, 49.4147652 8.5481923, 49.4234904 8.5447593, 49.4235969 8.5451401, 48.9378783 9.1912896, 48.9378316 9.1918418, 49.3216434 8.5680879, 48.4123305 8.6398138, 48.4354246 8.7298101, 48.6880144 9.1785474, 48.6858077 9.1789465, 48.0595559 9.8025082, 48.3514994 8.6437519, 48.8875682 9.4009667, 48.8876980 9.4006577, 47.6362371 8.3136248, 47.6779532 8.3787909, 47.6936388 8.3971377, 47.7387708 8.4432421, 48.8785766 8.2176171, 47.7197129 8.3478040, 47.7511295 8.3431455, 47.7672706 8.3721662, 47.8617756 8.4449749, 48.5969608 8.3495784, 48.7023715 9.0313312, 48.3062437 8.8763154, 48.3058874 8.8764285, 48.3357611 8.9499201, 47.8004338 9.1706255, 48.3681478 8.4801354, 48.0196978 9.4665935, 48.6857923 9.1793283, 48.6880227 9.1789153, 48.6069853 8.1926563, 48.8593992 9.3241072, 48.8715005 8.2321744, 48.3423742 8.4719118, 49.7679754 9.5956223, 49.7769359 9.5730416, 48.8786367 8.1735131, 48.0713702 9.0372714, 48.6848670 7.9775150, 49.3798953 8.7244355, 47.7798874 9.1801891, 47.7467856 9.2219730, 47.7024077 9.2711721, 49.7787336 9.5717771, 49.7663206 9.5991074, 49.7695219 9.5838183, 48.8166940 9.3150476, 48.8151457 9.4065628, 48.7916196 9.5897736, 47.8910671 9.9026842, 48.8655865 8.6613281, 47.7246597 9.0581343, 48.5364785 8.8432038, 47.8361535 9.8150148, 47.9351250 9.8898565, 48.7893036 9.5560934, 49.1923091 9.8718353, 47.7169755 9.5804184, 48.4227649 9.9594069, 48.7359443 9.1642299, 48.7640362 8.1301721, 48.6633238 8.8019223, 48.7393241 8.7097934, 48.7345657 8.7897901, 48.7441012 8.8062343, 48.7482361 8.8816313, 48.7581302 8.9422327, 48.7612316 8.8240758, 49.7716334 9.3622440, 49.7717798 9.4016861, 49.7804454 9.4381406, 48.6158224 9.5925440, 48.7139662 9.1632623, 48.7143277 9.1636349, 48.4872370 7.8598603, 48.8046022 9.2898469, 48.8138342 9.3497442, 48.8154088 9.4066499, 48.8102775 9.4322703, 48.8074826 9.4751998, 48.8069459 9.4770765, 48.8078174 9.5037961, 48.8080541 9.5036458, 48.8198273 9.5426560, 48.8200502 9.5428065, 48.8030326 9.2877111, 48.7798546 9.1993849, 48.8133527 8.3020104, 48.7560825 9.0917547, 48.8170882 9.0553505, 48.4071384 8.5365533, 48.8154144 9.5168585, 48.8188802 9.5202568, 48.7478672 9.6172670, 48.5344168 9.6558410, 48.5453878 9.6446335, 48.5531535 9.6323297, 48.5596589 9.6304432, 48.5716398 9.6511007, 48.5308763 9.6959963, 48.5224429 9.7375540, 48.4114429 9.9732844, 48.4958713 9.8455097, 48.4386013 9.9754436, 48.4386526 9.9758951, 48.3704027 8.5354285, 48.8178799 9.5186817, 48.3900820 8.4765948, 47.8296456 8.9962185, 47.8856489 9.1505352, 47.9060756 9.1734514, 49.7230466 9.6337778, 48.3185342 9.2959345, 48.5436491 9.1502839, 48.5360389 9.1360139, 49.6974530 9.6271813, 48.7665879 9.1834710, 48.3728210 8.9367987, 47.6825444 9.7853268, 47.6954449 9.7932976, 47.7061333 9.8028095, 47.7104232 9.8141411, 47.7171469 9.8406117, 47.7261390 9.8725292, 47.7424942 9.8953725, 47.7525942 9.9067703, 47.6210810 9.7381655, 47.6385438 9.7433628, 47.6475323 9.7532081, 47.6568329 9.7692078, 47.6674698 9.7801294, 47.7114584 9.8215361, 47.7197408 9.8576128, 47.7627504 9.9179727, 47.7729395 9.9331797, 47.7777565 9.9484506, 47.7899664 9.9658080, 47.7989986 9.9798027, 47.8161444 9.9911528, 47.8245186 9.9917204, 47.8336756 9.9914879, 47.8489069 9.9923148, 47.8610368 10.0079398, 47.8713224 10.0266884, 47.8850040 10.0408657, 47.8969530 10.0537807, 47.9094051 10.0669827, 47.9222606 10.0801768, 47.9332030 10.0958824, 49.4982324 8.7655658, 48.0320171 8.5433056, 48.6587332 10.2204576, 48.7344923 10.1593282, 48.6338300 9.9951868, 48.7117384 8.8171859, 48.8654161 8.5566606, 48.3724339 9.8123755, 48.7673126 8.1710003, 48.7033738 8.1232844, 48.4322357 9.1288781, 48.7937419 9.1615616, 49.2282577 9.1394988, 48.6797333 10.1041771, 49.0804342 8.5200945, 49.4349711 8.5675363, 47.9211739 8.6720702, 47.9243660 8.5951144, 47.9270881 8.5763973, 47.9206487 8.5048201, 47.9272378 8.5397640, 47.9119552 8.4726552, 47.9111741 8.4713726, 47.8954235 8.4400780, 47.8955227 8.4242315, 47.8895667 8.4055618, 47.8992706 8.3120095, 47.9029212 8.2574463, 47.9050432 8.2222440, 47.9062746 8.1362588, 47.9146743 8.0818462, 48.7355711 9.3524087, 48.7115328 10.0939877, 48.7240254 10.0934189, 48.6479161 9.9618928, 48.8195893 10.1185590, 48.7591062 10.1036537, 48.8029141 10.1254094, 48.6719594 8.9984651, 48.7749207 9.9383719, 48.7263455 10.0235930, 48.4135032 8.2449603, 47.9995301 9.9695933, 49.2854470 8.6116948, 49.3219743 8.5683836, 47.8096201 8.9909358, 49.7068665 9.7781075, 48.5513494 8.2504632, 47.8586463 9.3550964, 47.8762025 9.3450098, 48.8078487 10.2116028, 48.5917876 10.1317650, 48.5999880 10.0683864, 48.5347143 7.9226115, 48.5669403 7.8349143, 48.6581973 7.9520294, 48.3447143 9.1625738, 49.3269369 8.4562714, 48.4986374 9.8430141, 48.6414710 9.5955141, 48.7240485 8.3586705, 48.6565200 9.9340273, 48.7006808 9.9077288, 48.5056851 8.9313235, 49.4374384 8.6412289, 49.4582684 8.6461975, 49.4243132 8.6340120, 49.3624164 8.6317186, 49.3124170 8.6289601, 49.2130203 8.6008043, 49.2478377 8.6002076, 49.2565956 8.6018218, 49.2565096 8.6023342, 49.2360633 8.6017869, 49.1863754 8.5829504, 49.1729647 8.5747696, 48.7660277 9.1108881, 49.0773701 9.3926672, 48.4583916 8.3744317, 48.4623649 8.3486391, 49.4590109 8.5776135, 48.7980930 9.2139999, 48.7903192 9.2227408, 48.4496976 9.7983302, 48.5186599 10.1712401, 48.4762236 9.5948157, 49.2977817 9.4018022, 49.3589734 9.4688627, 49.3809781 9.4973151, 49.3335547 8.5103395, 48.7019319 8.9166915, 48.0281381 9.8411581, 48.6699273 8.7897063, 47.7074751 7.5255506, 47.6679584 9.3399687, 48.5064684 9.1076580, 49.4635962 9.7770129, 48.7722188 9.1412022, 48.7803603 9.1769220, 48.7769014 9.1818398, 48.8359049 9.2179531, 48.8375798 9.2206119, 48.8375330 9.2234945, 48.7721996 9.1414944, 49.0373756 8.3121690, 47.8666461 8.1705984, 48.6953283 10.1734823, 48.7986667 9.2046281, 49.3737643 9.8712252, 48.6929518 9.2193656, 48.6938357 9.2206004, 49.0120022 8.4077454, 49.0178024 8.4036805, 48.9510439 8.8779408, 48.5111315 8.5279242, 48.7807176 9.1831154, 49.2359955 9.2145358, 49.2511272 9.2157990, 48.8270615 9.2104735, 48.8063951 9.2133695, 48.8328169 9.2156668, 48.8270900 9.2162522, 48.7895293 9.1912731, 48.7926529 9.1960124, 48.8024262 9.2102505, 48.8096017 9.2181716, 48.6176296 10.1490073, 48.6783345 9.1273774, 49.4089845 9.4328833, 48.1098046 10.0812923, 49.6071719 9.8174005, 49.2683049 9.1484001, 49.0379898 8.9165667, 48.5406115 8.6982202, 49.0134413 8.4161836, 49.0151348 8.4164330, 48.6037512 8.7366987, 48.5692403 8.7178066, 48.5893646 8.7315048, 48.9629464 8.4696573, 49.3041861 8.5654006, 49.3084940 8.4882688, 49.3063579 8.5279449, 49.0335897 8.3768366, 49.2764479 9.2287816, 48.5083302 8.1360071, 48.5716165 10.1546193, 48.5234036 10.0829835, 48.5644946 10.1405713, 48.6006926 10.1930766, 48.4950310 10.0867089, 48.5585352 10.1276554, 48.4802340 10.1035539, 48.5499229 10.1089296, 48.5094281 10.0809424, 48.4913880 10.0897599, 48.5793227 10.1694371, 48.5370883 10.0921411, 48.6523282 10.2286344, 48.6777857 10.2184380, 48.6672503 10.2279878, 48.6370427 10.2166432, 48.6242549 10.2192783, 48.6120766 10.2056884, 48.6920895 10.2143262, 48.7030136 10.2146742, 48.8618705 10.1932426, 48.8332632 10.2076457, 48.8827238 10.1645929, 48.9421283 10.1919918, 49.0364808 10.1865475, 49.0173985 10.1969915, 48.7571167 10.2018021, 48.7402931 10.1962372, 48.8042748 10.2100402, 48.8476048 10.1970857, 48.8970654 10.1761638, 48.7897010 10.2109234, 48.8686720 10.1739204, 48.9261748 10.1945281, 48.9533976 10.1868556, 49.0011869 10.1934122, 49.0225740 10.1963081, 49.0924030 10.2095399, 49.0609686 10.1808684, 49.0760021 10.1991841, 49.0492076 10.1772995, 49.2125333 9.2753125, 49.2268390 8.9484307, 48.6013920 8.0919220, 48.5679097 8.1432529, 48.8001812 9.7973925, 49.2577216 8.5048208, 49.2294132 8.4964924, 49.2824056 8.5244084, 48.7464556 8.2066346, 49.4651669 8.5271434, 49.3780540 8.6486849, 49.4648287 8.5270186, 48.3098676 7.8350464, 47.9924895 8.6077700, 47.9923293 8.6073623, 48.7543049 9.1449896, 48.7765896 9.0222248, 47.7074526 9.8044526, 47.7110714 9.8186784, 47.7326922 9.8808486, 47.6811660 9.7846265, 47.6957684 9.7929756, 47.7112098 9.8198943, 47.7248431 9.8701879, 47.7109077 9.8173971, 47.7173970 9.8403679, 47.7426976 9.8951877, 47.7199073 9.8575529, 47.8245155 9.9914569, 47.7779873 9.9483692, 47.8149009 9.9906548, 47.7899731 9.9654247, 47.7731043 9.9330387, 47.8007641 9.9821144, 47.8346465 9.9910330, 47.7630499 9.9179319, 47.8489307 9.9919631, 47.9223871 10.0797186, 47.9095392 10.0665796, 47.8715057 10.0263294, 47.9324346 10.0945636, 47.8972148 10.0536202, 47.8611937 10.0076449, 47.6212371 9.7377938, 49.2427738 8.6584711, 49.2277019 8.6549049, 47.7251277 9.7136677, 48.2882830 10.0373949, 48.3678389 8.9810088, 47.6983756 9.6703430, 48.5345073 8.5657906, 47.8354774 9.1733536, 47.7196201 9.2434980, 48.4688382 8.5243138, 48.4462792 8.4404912, 48.4651360 8.3226158, 48.4798743 8.2756820, 48.5509660 8.2160283, 48.5282910 8.2156177, 47.8583352 8.0527659, 48.6233742 9.6474853, 47.8421728 9.2591347, 47.8963299 9.2766958, 49.0024709 8.4620661, 48.4617734 9.1534473, 48.7463828 9.1631837, 48.7464742 9.1635807, 48.4295834 9.1753342, 48.6560469 7.9614999, 48.6067013 7.9957688, 48.5935738 7.9814908, 48.5290189 7.9282942, 48.4305716 7.9656859, 48.4476505 7.9377941, 48.3742224 8.0253808, 48.2895888 8.0689839, 49.2283026 8.8731254, 48.0080734 8.9166012, 47.9412086 9.2958515, 47.8780689 8.7556860, 47.9683465 9.1545316, 48.0887124 8.9262412, 48.1419177 8.8203361, 48.9560784 8.4813376, 49.0906732 8.5312604, 49.3402268 8.5570096, 49.3267720 8.5639613, 47.8834738 8.7282837, 48.3602149 9.1986196, 48.6482603 7.9925410, 48.5905388 8.1221704, 48.5816658 8.2219592, 48.8149369 8.9153444, 48.8146940 8.9150211, 48.7110459 10.0443640, 48.2291935 9.0734132, 49.1810203 9.3405836, 49.6376906 9.7310949, 48.6725457 9.0031015, 47.9824197 10.0071204, 47.9633804 9.7640640, 47.9377464 9.7580317, 47.8005130 9.6082012, 47.7827675 9.5985322, 47.8642151 9.6775028, 47.9102931 9.7647206, 47.8468824 9.6380335, 47.8288333 9.6165700, 47.8644105 9.6772479, 47.7976959 9.6066726, 47.7798501 9.5963029, 47.8269115 9.6166384, 47.9110831 9.7457007, 48.0417478 9.7901424, 48.0076356 9.7742830, 49.0398224 9.7392156, 48.8145665 8.1477899, 48.8700451 8.2330963, 49.4401569 8.6267606, 49.4827502 8.9652469, 49.2261440 8.4015394, 49.2270042 8.3930670, 49.2146867 8.4245865, 48.7852067 9.6873710, 49.3110545 9.1469762, 49.3257362 9.1127483, 49.3338501 9.1019193, 49.3837384 9.0786578, 49.4005395 9.0671825, 49.4398923 8.9044925, 48.4629531 10.1380779, 48.8047207 9.1776674, 48.4439448 8.8366702, 48.8318003 9.2086867, 48.8342680 9.2098271, 48.8363275 9.2136031, 48.6069355 9.6317726, 48.8023955 9.2082550, 48.8123036 9.2196914, 48.8169866 9.2258518, 48.8242368 9.2224948, 48.8259297 9.2110930, 48.8343231 9.2081932, 49.0629251 9.1970198, 49.3918443 8.7985821, 49.3926349 8.8038177, 48.8128038 9.2216738, 48.5246441 9.3443560, 48.1387764 9.7690366, 48.5423680 9.4008658, 49.2809102 9.3551891, 49.2809335 9.3557682, 49.4141841 8.6552752, 49.2978779 9.3767644, 49.3795727 9.4593926, 49.3797955 9.4604041, 49.3927454 9.4696114, 49.4062626 9.4721040, 49.4101237 9.4741552, 48.8002789 9.0640069, 49.0011181 8.7173021, 49.0226343 8.7042723, 48.3425352 8.5795308, 48.8257307 9.3013261, 49.0006795 8.7705306, 48.7170600 8.5425541, 47.9418017 9.0439966, 48.0005307 9.1181165, 48.0452735 9.2370497, 48.6921929 9.6652387, 48.8150939 9.0241163, 48.7171935 10.2085770, 48.7281783 10.2004541, 48.7730993 10.2108669, 48.9290165 8.6489728, 48.9371276 8.7215122, 49.4940290 9.2614381, 48.9147442 8.7639662, 48.9149020 8.7645148, 48.9242325 8.7483836, 48.9189948 8.8492099, 47.7993589 9.7259098, 47.8117916 9.7614954, 48.7548994 9.1746002, 49.7078295 9.8039152, 49.6375662 9.7305937, 49.6611667 9.7566617, 49.6719607 9.7713529, 49.7006601 9.7954395, 49.6060244 9.6866807, 49.6510182 9.7397939, 49.6903001 9.7878873, 49.4769864 9.5641676, 49.5712029 9.6403884, 49.4710234 9.5601560, 49.5847956 9.6616762, 49.5158134 9.5684642, 49.5802327 9.6475074, 49.5027455 9.5624713, 49.3204388 9.4125836, 49.3135309 9.4057155, 49.2256498 9.3508030, 49.1781679 9.3380479, 49.2066141 9.3436718, 49.1616635 9.3004576, 49.1810215 9.3400832, 49.2163030 9.3470828, 49.2136669 9.5260814, 49.5927143 9.7364883, 49.5549584 8.5103589, 49.5504868 8.4235355, 49.5540665 8.4673540, 49.5546737 8.4894870, 49.5534822 8.4431096, 49.5552322 8.5100715, 49.5530546 8.4434530, 49.5507729 8.4234367, 49.5544057 8.4894966, 49.0563897 8.8749520, 49.1142373 8.5502969, 49.1143832 8.5498328, 49.0228039 8.4734539, 49.0388576 8.4862787, 48.2640265 9.4987664, 49.0135739 8.4202992, 48.9331986 8.8054530, 48.9174229 9.2198333, 48.5609982 8.4262796, 49.5721278 9.4133089, 49.0695697 8.5077440, 49.0905926 8.5317581, 48.7949712 9.2020362, 49.3058042 8.5323283, 49.1618568 9.2788309, 48.5579834 9.8178047, 48.1753593 8.6009101, 48.1432037 8.5710423, 48.1432443 8.5706427, 48.1598980 8.5730541, 48.1598046 8.5726511, 49.1721181 9.3296726, 49.1724302 9.3294218, 49.2162912 9.3475840, 48.9000520 9.0220794, 49.1847108 10.0900827, 49.1848252 10.0891598, 49.1896587 10.1082909, 49.1898348 10.1079377, 49.1986441 10.1270995, 49.1988046 10.1266370, 48.1912071 8.5866264, 48.1913427 8.5862720, 48.1999009 8.6040224, 48.1996877 8.6042934, 48.1761727 8.5742583, 48.1761942 8.5738077, 49.1832002 9.2198007, 49.1835335 9.2196862, 49.1887589 9.1831723, 49.1890446 9.1832209, 49.1696319 9.2528172, 48.8542751 8.8988339, 49.2504081 9.0980374, 47.9439493 7.7362338, 49.2428488 9.1540163, 49.5941383 8.6311749, 47.9391928 7.8716401, 49.1676442 9.2597076, 49.1206387 9.3002491, 49.1863674 9.1970883, 49.1867235 9.1971601, 49.3930439 8.5437518, 49.3930296 8.5441632, 48.0198623 8.0751576, 47.9907295 8.1179395, 47.9809321 8.1427470, 49.0240512 8.3759973, 49.1316010 9.3015276, 49.1353274 9.3040368, 49.1354048 9.3046888, 49.1509022 9.3021184, 49.0723846 9.2819012, 49.0771419 9.3096681, 49.0837516 9.2903086, 49.0837076 9.2896928, 49.0923412 9.2925464, 49.0923485 9.2920329, 49.1060069 9.3021985, 49.1062536 9.3017889, 49.1871870 9.1416283, 49.1875135 9.1416704, 48.9089526 8.6896657, 48.9093271 8.6896039, 48.9167507 8.7200161, 48.9169880 8.7193856, 49.1881041 9.1586514, 49.1885956 9.1193045, 49.1887531 9.1663317, 49.1889471 9.1654843, 49.1935880 9.1069908, 49.1941353 9.1064907, 49.1962800 9.0992722, 49.1965765 9.0994330, 49.2036084 9.0845099, 49.2036611 9.0837736, 49.2114728 9.0729929, 49.2118116 9.0713709, 49.2133993 9.0307116, 49.2142990 9.0467238, 49.2147927 9.0477382, 49.2155578 9.0111665, 49.2159065 9.0112163, 49.2185724 8.9937861, 49.2189155 8.9938342, 49.2218636 8.9761899, 49.2219514 8.9712138, 49.2248674 8.9472710, 49.2251454 8.9475697, 49.2266030 8.9376576, 49.2269236 8.9219300, 49.2273008 8.9222375, 49.2317164 8.9040974, 49.2317859 8.9044922, 49.2401385 8.8905193, 49.2429873 8.8802683, 49.2495696 8.8542327, 49.2497135 8.8548752, 49.2539483 8.8424593, 49.2541812 8.8428710, 49.2568309 8.8327005, 49.2583625 8.8204228, 49.2587335 8.8197907, 49.2611840 8.8071279, 49.2637538 8.8014070, 49.2659403 8.7934976, 49.2723335 8.7690189, 49.4170428 9.9859917, 49.3322519 9.4113637, 49.3323330 9.4117828, 47.8987210 8.2902797, 49.2067543 9.3440942, 49.2256829 9.3512941, 49.2346814 9.3494335, 49.2350284 9.3488643, 49.2607647 9.3531930, 49.2721106 9.3520496, 49.2721130 9.3515930, 49.2545234 9.3523889, 49.2547890 9.3530127, 47.9248891 7.7105768, 47.8995226 7.6787759, 47.8816479 7.7126377, 49.3051714 9.3924690, 49.3052611 9.3918019, 49.3132850 9.4061184, 49.3203389 9.4131413, 49.3255112 9.4136580, 49.3429653 9.4064294, 49.3435612 9.4069728, 49.1933219 9.3504312, 49.1950681 9.3511910, 49.1969154 9.3501739, 49.2428822 9.3487869, 49.2429988 9.3482992, 49.2885484 9.3674880, 49.2888492 9.3671594, 49.2958364 9.3767718, 49.2959616 9.3776113, 49.1780806 9.3385165, 49.1870030 9.3458296, 49.1876263 9.3456559, 49.4020579 9.9426631, 49.0045901 9.2376857, 49.0062638 9.2386840, 49.0142088 9.2460114, 49.0515765 9.1483214, 47.9039911 7.7383012, 49.1616461 9.3009935, 49.1694306 9.3107204, 49.1704268 9.3162466, 47.9727362 7.9445677, 47.9606923 7.9897254, 49.6055676 9.6868114, 49.3911061 10.1211012, 49.4380783 10.0161634, 48.9743928 8.7957421, 49.0561625 9.2688179, 49.0594630 9.2693759, 47.8617298 7.6974840, 49.2142768 9.0230381, 47.9824084 7.8543163, 47.9789931 7.9111705, 47.9795406 7.9099467, 48.1429371 8.6384638, 48.1320146 8.6355665, 48.1499024 8.6152193, 49.0304599 9.2531977, 49.5015800 10.0350131, 49.4759747 9.9397946, 49.4375193 9.9653786, 49.4656731 9.9274158, 49.4845684 9.8958289, 49.4532351 9.9581528, 49.3578060 9.4179989, 49.3580375 9.4176915, 49.3822707 9.9380177, 49.3640239 9.9013334, 49.4317944 9.5039781, 49.4317696 9.5032233, 49.4407047 9.5144379, 49.4409211 9.5138979, 49.4469098 9.5186981, 49.4471603 9.5184619, 48.8725770 8.6904871, 48.7752034 9.0254208, 48.7754392 9.0239267, 48.7761735 9.0236883, 48.7762929 9.0238041, 48.7763222 9.0224710, 48.9740454 9.2647035, 48.9900450 9.2318387, 48.9918045 9.2329174, 49.0141796 9.2465322, 49.0456156 9.2645516, 48.9219152 9.0236911, 48.9260777 9.0680844, 48.0441698 7.9757164, 48.0505716 8.0496292, 48.6003226 9.1902861, 48.6005238 9.1901062, 49.1563088 9.3072238, 49.1570966 9.3161343, 49.2701869 9.6254730, 49.3627346 9.4259543, 49.3628020 9.4269527, 49.3688240 9.4397699, 49.3690412 9.4393949, 49.3752319 9.4523197, 49.3753066 9.4533315, 48.9217824 8.9317455, 48.8343987 8.8560836, 48.8353603 8.8553140, 48.8521225 8.8002086, 48.8525235 8.8006640, 48.8672672 8.7912439, 48.8675228 8.7920279, 48.8755213 8.7939155, 47.9162923 8.0705453, 47.9169414 8.0695102, 47.9335625 8.0303327, 49.1985853 9.5675230, 49.2036230 9.4713725, 49.2038764 9.4709519, 49.2057822 9.4822418, 49.2066521 9.4849493, 49.3178826 9.6893395, 49.3413300 9.7360884, 49.2804805 9.7398425, 49.2152324 9.5901564, 49.2155556 9.5901928, 49.1826470 9.7457752, 49.1829911 9.7455545, 49.2014502 9.6852944, 49.2062055 9.6383435, 48.8556122 9.1240650, 48.8595120 9.1069904, 48.9239379 9.1534561, 48.9241264 9.1537921, 49.1743390 9.8670407, 49.2954225 9.7786234, 49.3266174 9.8116523, 49.3832252 9.8481597, 49.3925185 9.8606230, 49.4104072 9.8827154, 49.4173592 9.8680119, 49.4126354 9.8073800, 49.4217191 9.8163356, 48.8957794 9.1514907, 48.8958618 9.1510115, 48.8840902 9.1453702, 48.8839518 9.1447028, 48.8723227 9.1366426, 48.8723919 9.1361233, 48.8444490 9.1145130, 48.8379323 9.1003275, 48.8381889 9.0999711, 48.8311361 9.0867367, 48.8313792 9.0863760, 48.8219855 9.0834900, 48.8219651 9.0781112, 48.8213163 9.0768080, 48.8143349 9.0649853, 48.8147418 9.0645765, 48.8081518 9.0478713, 48.8084962 9.0476868, 48.7824919 9.0079472, 48.7828894 9.0081705, 49.3462673 9.7652536, 49.3322744 9.9286728, 49.1835852 10.0756758, 49.1833333 10.0696043, 49.4620731 9.8465217, 49.4311530 9.8374961, 49.4588393 9.8921111, 49.4733774 9.8731179, 49.4779904 9.8366968, 47.7860281 9.1194209, 48.8471779 8.9618798, 49.5398575 9.1061778, 49.5514779 9.1200926, 48.9213373 9.1585809, 48.9274840 9.1694800, 48.9277300 9.1691057, 49.1774172 9.9585539, 49.1777132 9.9580959, 49.1833611 10.0480406, 49.1836647 10.0482720, 49.3928222 9.4691860, 49.4174596 9.4780929, 49.4178835 9.4789911, 48.9895024 9.6120129, 48.8960794 9.1960948, 49.0333941 9.9294090, 49.4544367 9.5315328, 49.4560320 9.5330608, 49.4620658 9.5447052, 49.4621953 9.5441557, 49.4683691 9.5576946, 49.4696743 9.5539390, 49.4772960 9.5647733, 49.4889725 9.5650150, 49.4895315 9.5653540, 49.5027792 9.5628991, 49.1735411 9.9956779, 49.1738282 9.9957325, 49.1774935 10.0296026, 48.8462333 9.1297668, 48.8452915 9.1309330, 49.5403467 9.5889109, 49.5504165 9.6068297, 49.5505889 9.6064863, 49.5585365 9.6146243, 49.5712189 9.6408172, 49.5800040 9.6478395, 49.5846226 9.6621280, 49.5911156 9.6691373, 49.5927203 9.6700680, 49.5993920 9.6809044, 48.7406938 8.6474860, 49.5994571 9.6992900, 48.8267253 9.3001515, 49.6283044 9.7298560, 49.6126629 9.7161207, 49.6222826 9.7288373, 49.6609192 9.7570507, 49.6509129 9.7402683, 49.6720702 9.7719881, 49.6805457 9.7792678, 49.6902760 9.7883448, 49.6804068 9.7796570, 49.7005867 9.7958626, 49.4475495 8.9708096, 48.7613425 9.2144219, 49.0965990 9.4469764, 49.0927050 9.3961852, 49.0851274 9.2259822, 48.7546412 9.1453708, 47.7031193 9.9355243, 49.3688113 8.7873065, 48.0024684 9.3886804, 48.9139897 8.8754916, 48.7540293 9.1406651, 48.7542703 9.1411930, 48.7547015 9.1445888, 48.7581785 9.1286783, 48.7811028 9.1943466, 48.4595988 10.1711934, 48.4645404 10.1223774, 48.4802017 10.1041631, 48.4914513 10.0901495, 48.4951764 10.0871437, 48.5097340 10.0813635, 48.5366930 10.0923397, 48.5495692 10.1089249, 48.5640570 10.1405415, 48.6002192 10.1932351, 48.6143248 10.2091203, 48.6237947 10.2194702, 48.6370975 10.2170778, 48.6518587 10.2288665, 48.6672443 10.2286901, 48.6777252 10.2191011, 48.6918304 10.2147888, 48.7030388 10.2151575, 48.7411557 10.1966712, 48.7566988 10.2022541, 48.7725633 10.2111265, 48.7895482 10.2114348, 48.8216854 10.2168276, 48.8334224 10.2081744, 48.8474543 10.1975819, 48.8620769 10.1936834, 48.8691565 10.1741861, 48.8750477 10.1666259, 48.8751128 10.1673993, 48.8863019 10.1658808, 48.8966666 10.1763137, 48.9102131 10.1899836, 48.9104742 10.1896634, 48.9258950 10.1949601, 48.9420077 10.1925203, 48.9558196 10.1862163, 48.9689245 10.1865525, 48.9692640 10.1862417, 49.0009182 10.1938674, 49.0170502 10.1975981, 49.0224299 10.1969381, 49.0363577 10.1873324, 49.0493389 10.1776823, 49.0605574 10.1810565, 49.0758780 10.1995729, 49.0923405 10.2099712, 48.8218705 10.2163375, 48.5732709 10.1585590, 49.7621113 9.6294051, 49.3683330 9.9579141, 49.4195134 10.0535016, 49.2882383 9.9406478, 48.5580685 10.1277207, 48.5788457 10.1693436, 48.7170747 10.2080523, 48.7282666 10.2009034, 49.3350076 8.7983923, 49.3459639 8.7931740, 47.5611045 8.0321768, 49.0171260 9.1534397, 49.0958167 9.1828417, 49.1095965 9.1848677, 48.9183760 9.1563179, 48.9193212 9.1562973, 48.9447724 9.1977190, 48.9449139 9.1972527, 48.9689682 9.2267241, 48.9800924 9.2300574, 49.0304309 9.2538320, 49.1210630 9.3007708, 49.1566653 9.3071655, 49.1573678 9.3160744, 49.1601842 9.3549323, 49.1603741 9.3548775, 49.1616105 9.3397381, 49.1627015 9.3701449, 49.1629358 9.3698809, 49.1725530 9.3817719, 49.1727033 9.8237784, 49.1727925 10.0129405, 49.1729493 9.8236024, 49.1742106 9.8457741, 49.1744759 9.8456315, 49.1744599 9.8623803, 49.1755740 9.9774230, 49.1758547 9.9772793, 49.1759763 9.4001758, 49.1762700 9.8859732, 49.1765088 9.8857580, 49.1770020 9.9345641, 49.1772620 9.9342406, 49.1775887 9.9105015, 49.1777734 10.0294788, 49.1778655 9.9103748, 49.1793399 9.7775155, 49.1796070 9.7775911, 49.1807457 9.4136814, 49.1810781 9.7598064, 49.1813474 9.7612968, 49.1848157 9.7374138, 49.1863246 9.7340659, 49.1896744 9.4186012, 49.1915830 9.7190278, 49.1918286 9.7192538, 49.1949465 9.4295459, 49.1960968 9.7038567, 49.1963928 9.7037561, 49.1971836 9.4521348, 49.1974572 9.4517932, 49.2011210 9.6877344, 49.2043366 9.6644362, 49.2048790 9.6585922, 49.2107745 9.5010542, 49.2110505 9.5008148, 49.2114338 9.5359667, 49.2114729 9.5317012, 49.2118076 9.5173316, 49.2120967 9.5172403, 49.2124341 9.6151901, 49.2127552 9.6151143, 49.2170647 9.5622814, 49.2173850 9.5621363, 49.1245726 9.1305009, 47.6079887 9.5842570, 47.7033469 9.4328489, 49.2890193 8.6051647, 49.4686864 8.5404084, 49.4852171 8.5477194, 48.6966848 9.1426214, 48.7551328 9.1535306, 48.7566070 9.1640406, 48.7557780 9.1601913, 48.7547113 9.1489665, 48.7625416 9.1696775, 48.7558700 9.1592528, 48.7550764 9.1515350, 48.7554018 9.1551614, 48.7585917 9.1675048, 48.7554795 9.1597211, 48.7554336 9.1568834, 48.7612657 9.1695819, 48.7561338 9.1617274, 48.7573150 9.1654353, 48.7546558 9.1464774, 48.4514506 8.6433457, 48.4521970 8.6763233, 48.0200383 8.9369411, 49.5696414 9.3640897, 49.5231654 9.3393124, 49.4802730 9.3690583, 48.2306681 8.4106254, 49.4495458 9.4257146, 49.5010683 9.3497671, 48.9581869 8.4301067, 48.9588630 8.4053268, 49.5938778 9.4109944, 49.6063091 9.4370118, 49.6365504 9.4846227, 49.6602377 9.4805080, 49.1311984 9.6338251, 48.7608842 9.4910508, 49.0202769 8.4154626, 49.0937207 8.4121225, 49.3247506 8.5396272, 49.3449164 8.5491365, 49.3476699 8.5480496, 49.4952879 9.2130894, 49.5031612 9.2386569, 49.5219997 9.1700767, 48.4753733 8.4047423, 47.7684484 8.2821018, 48.3226704 9.6087540, 49.5377487 9.3431212, 48.7770772 9.2446719, 49.3255788 8.8127019, 49.7696553 9.5847553, 48.4906185 9.4512150, 49.3701568 9.1999841, 47.9013964 9.0132227, 47.9153307 9.0468785, 47.9169175 9.0522260, 47.9620341 9.0454807, 47.9754874 9.0793087, 47.9906752 9.0789811, 48.0136013 9.2302443, 48.0821258 9.4500636, 48.1845139 9.4862038, 47.7042046 8.3034213, 49.4012435 9.2089612, 49.4319311 9.2375567, 48.6662152 9.3659699, 48.7024144 9.1774889, 48.7875950 8.9827448, 48.7876052 8.9815757, 48.8007249 8.9412573, 48.8234792 8.8884679, 48.8398485 8.8382949, 48.8437503 8.8159339, 48.9716348 8.4471469, 48.9718087 8.4470090, 48.9800714 8.4366231, 48.9927379 8.4365284, 49.0067440 8.4559670, 48.5196274 9.8080095, 49.2271886 9.5357194, 49.2520286 9.5232629, 49.4119380 10.0303080, 47.8002754 8.1987104, 47.8190174 8.3196830, 49.5074139 9.3070533, 48.6021740 10.0615431, 49.3016282 9.2526462, 49.3705341 9.1559288, 47.7798199 8.3268191, 48.7264018 9.2107797, 48.7307799 9.1669412, 48.7433433 9.2683902, 48.9658830 8.8832406, 48.9738816 8.8559312, 48.7113232 9.1645404, 48.7184698 9.1629256, 48.5406158 10.2588419, 49.5254765 9.2865999, 48.5231648 10.0833983, 49.1749304 9.7974010, 49.2061965 9.6407316, 49.1898162 9.4180403, 48.7855603 9.1803280, 49.1808888 9.4132057, 49.1505384 9.3016113, 48.8446461 9.1140852, 47.8627536 8.7857416, 47.8630151 8.7860010, 47.8535430 8.8002637, 47.8552075 8.7980343, 47.7654182 8.8041796, 47.7657572 8.8037537, 47.7705586 8.8141093, 47.7706044 8.8134856, 47.7617045 8.7965771, 47.7628714 8.7979748, 47.7551290 8.7854432, 47.7553585 8.7852332, 47.7469775 8.7566261, 47.7473369 8.7564457, 47.7403603 8.7455512, 47.7404180 8.7453253, 48.8239442 8.8879073, 48.7799018 9.1991603, 48.5594412 9.6644104, 48.7313314 9.1307290, 48.3687987 8.1200636, 49.4132111 9.3294052, 49.4189386 9.2924573, 48.7996329 9.3537647, 48.4579439 9.9875507, 48.5509131 9.6345880, 48.5946710 9.6469612, 48.5992368 9.6429459, 48.7955218 8.9596138, 48.7956324 8.9603226, 48.8010415 8.9413894, 48.8400889 8.8396024, 48.8444913 8.8147692, 49.0063430 8.4560599, 49.0579894 8.4995784, 49.0805123 8.5195564, 49.1278057 8.5505712, 49.2664691 8.6097473, 49.4372590 8.6415845, 49.4421019 8.6438758, 49.4678506 8.6439180, 49.2190424 9.2112957, 49.5718373 8.6650002, 48.8093665 9.1834320, 48.8095623 9.1831335, 48.8095078 9.1830372, 48.8096179 9.1832193, 48.8283942 9.2316547, 48.8095137 9.1829682, 48.4316518 9.7505267, 49.1205878 10.1522484, 49.3220845 8.4655350, 48.8188915 9.2372072, 48.7994543 9.1709984, 48.0863844 7.6920940, 49.5923356 9.3604914, 49.4679710 9.1246953, 48.8303778 9.1746521, 49.4848966 8.5480070, 49.5081710 8.5609162, 49.4469737 9.2106562, 48.7743937 9.1727386, 48.7745047 9.1728634, 48.7754257 9.1720375, 48.8313151 9.2122250, 48.8350574 9.2149805, 48.8322297 9.1705414, 47.6269148 8.5717357, 48.9787489 9.3717375, 48.2185403 8.2568051, 47.8600876 8.1797615, 48.9013819 9.0541283, 48.9512077 9.4128480, 48.8834077 9.3881405, 48.8835815 9.3877978, 47.8227987 8.1685497, 48.4982390 8.8442656, 48.7025036 9.4527857, 47.7560737 8.1820547, 47.7707507 8.1831101, 47.7790395 8.1062076, 47.7866778 8.1801994, 47.7916734 8.0821287, 47.8504829 8.2620373, 48.7684830 9.3231418, 49.1891606 9.1171652, 49.2233552 8.9533636, 47.9911663 8.1651822, 48.9270875 9.6214201, 48.0170829 9.3136142, 47.8569573 8.1100911, 48.7122492 9.9138169, 49.1729576 9.7848150, 49.6197048 9.6044235, 48.9656310 9.5806902, 48.7678116 9.1836149, 48.9014012 8.3087881, 49.0962224 9.0919870, 49.7715202 9.4676383, 49.3158418 9.0749821, 48.1377280 9.5979167, 49.5340464 9.2539952, 49.1736873 10.0258466, 49.1967104 9.0903943, 49.3193613 9.1170267, 49.3291232 9.0554272, 47.9784290 8.9641589, 47.9839356 9.0405854, 47.9880187 8.9974481, 47.9918093 8.7739738, 47.9933461 8.7241803, 48.0204120 8.6493049, 49.1782893 9.3731611, 47.7349571 9.2397100, 47.7754898 9.1749163, 49.5431360 9.8876914, 47.6849697 8.0154772, 47.7621595 7.9758828, 47.8079054 7.9357172, 49.2749828 8.7411568, 48.9123330 8.3510166, 48.9123902 8.3504577, 48.9271462 8.3570549, 48.9559673 8.3820776, 48.9608511 8.4084866, 48.9612460 8.4083461, 48.9738379 8.4364444, 48.9757448 8.4369507, 48.8648202 8.2474782, 48.8790378 8.2632960, 48.8793274 8.2629787, 48.8885040 8.2890322, 48.8888477 8.2888475, 48.8942425 8.3105677, 48.8946078 8.3105747, 48.9003187 8.3333080, 48.9006232 8.3329890, 48.9687147 8.4298277, 49.1673363 9.2596599, 49.1822425 9.2236902, 49.1825846 9.2237977, 49.2685258 8.7797727, 49.2745175 8.6394890, 47.8957752 8.4241928, 48.6409446 8.9308115, 48.0228909 8.6121741, 48.0229438 8.6117576, 48.0055377 8.6048873, 48.0055973 8.6052895, 47.9752433 8.6184455, 47.9753906 8.6187932, 47.9849016 8.6118658, 47.9850938 8.6121629, 47.9552172 8.6194757, 47.9552291 8.6198897, 47.9646618 8.6210187, 47.9647513 8.6214154, 47.9116196 8.6845772, 47.9119042 8.6847225, 47.9259038 8.6546660, 47.9261670 8.6547362, 47.9455845 8.6191598, 47.9456945 8.6195331, 47.8917868 8.7230715, 47.8921007 8.7230347, 47.8714101 8.7775596, 47.8714406 8.7780359, 47.8805881 8.7757992, 47.8806648 8.7762586, 47.8875369 8.7383252, 47.8878393 8.7382397, 47.8901856 8.7700635, 47.8902294 8.7506918, 47.8903428 8.7689517, 47.8904407 8.7503382, 47.8166959 8.8469901, 47.8170162 8.8472903, 47.8245464 8.8337926, 47.8250767 8.8336072, 47.8448826 8.8115167, 47.8450907 8.8118378, 47.8068358 8.8542626, 47.8068588 8.8547291, 47.7867976 8.8232352, 47.7868863 8.8228929, 47.7967813 8.8360776, 47.7970006 8.8357483, 47.7495150 8.7631515, 47.7397150 8.7380011, 47.7397150 8.7380011, 48.0790498 9.6790386, 48.0970763 9.7026062, 47.7399867 8.7345273, 47.8004997 8.8485013, 47.8007334 8.8482334, 47.8008476 8.8480453, 47.8351310 8.8196960, 47.8353577 8.8200357, 47.8944095 8.7072382, 47.8958979 8.7055108, 47.9054261 8.6967782, 47.9056734 8.6970585, 47.9202794 8.6741869, 47.9205383 8.6743676, 47.9322153 8.6301805, 47.9323560 8.6305783, 48.0151141 8.6076181, 48.0151259 8.6071821, 48.6389999 8.9275089, 48.6723269 8.9637019, 48.7474451 9.0594116, 48.8207273 9.2270474, 49.3135359 8.6418842, 48.2094871 7.7785810, 49.1590946 9.2905858, 49.1786306 9.2350337, 49.0220898 8.6269575, 49.0222804 8.5892203, 49.0809449 8.7838851, 49.0954448 8.8068286, 49.1134678 8.8290440, 49.1227203 8.8550260, 49.1481199 8.9186301, 49.2129006 8.6719161, 47.7325414 9.8811144, 47.7557211 8.9496434, 47.7789662 9.1536377, 47.5711618 7.7613910, 48.8601439 9.3228828, 48.7981271 8.1679392, 48.4481460 7.9010627, 48.6273204 9.3396348, 47.7837255 8.9321885, 47.6884934 9.2990145, 48.4625038 10.1391752, 48.8146124 9.3537610, 48.8253583 9.2125643, 48.7795491 9.1745436, 48.7060514 9.1629651, 48.8698641 10.2833974, 49.0008013 8.3719610, 48.9295711 9.8767384, 48.9205756 8.2058607, 49.2944589 9.4709116, 48.9080374 9.3417376, 48.7121894 9.1604107, 48.7602096 9.1689168, 48.7804469 9.1766071, 48.8221293 9.2045896, 49.6084586 9.3445733, 48.1847953 7.7655600, 49.3783297 8.5626284, 48.9551893 9.2496743, 48.9563878 9.2482053, 48.9547502 9.2555397, 48.9559081 9.2587417, 48.0006677 8.4180724, 48.9899167 9.2772816, 48.9911975 9.2808639, 49.0039164 9.2719079, 48.7074798 8.3199480, 48.7386713 8.2896820, 48.7778355 8.1869501, 48.6456999 9.4144185, 48.8844951 8.2680861, 48.9590094 8.4066839, 49.1381543 9.6093247, 48.6491481 8.3326042, 48.6554113 8.2894004, 48.6879563 8.2301900, 48.7074212 8.2330668, 48.7132068 8.1470490, 48.7784092 8.1874412, 48.8734243 8.1508880, 47.7724018 8.0207021, 48.3743563 8.0257583, 48.5343596 7.9223391, 49.0370746 8.3124966, 48.7583042 9.1234566, 48.7468811 8.3019773, 49.0722747 9.2823707, 49.1585703 9.2916476, 47.6086108 9.5882404, 47.8505591 9.6398559, 49.2409505 8.8896780, 49.5458579 8.6284759, 48.4985741 9.1585090, 48.0811778 9.4497598, 48.2142025 9.0999390, 48.5469927 9.6418125, 48.4569517 7.9109849, 48.4999920 7.9558778, 48.5327154 7.9556963, 48.0592054 10.1387419, 48.0592098 10.1391537, 48.0702593 10.1387506, 48.0702882 10.1391449, 48.6148651 8.9415072, 48.0969837 10.1331788, 48.0970453 10.1335784, 48.1066856 10.1273087, 48.1084077 10.1248434, 48.6805662 8.7748231, 48.7984089 9.2595177, 47.7610670 8.8037000, 48.5016195 8.8470383, 48.5113291 10.0836131, 48.6613430 8.9970074, 48.6805662 8.7748231, 48.7984089 9.2595177, 48.8681111 9.1392799, 49.0585670 10.1757670, 49.2094830 9.6368000, 49.2147031 9.6143039, 49.2733589 8.6666298, 49.3763680 8.5460170, 49.3912580 9.4722350, 49.5086670 8.6555330, 49.5389680 9.5818630, 47.9940879 8.5899209, 47.9956209 8.5645447, 47.9959086 8.5645447, 47.9939755 8.5399688, 47.9587454 8.5182969, 47.9228405 8.5057249, 48.8005963 9.2049961, 47.9977403 8.5298491, 47.9937431 8.5402147, 47.9938303 8.5900723, 48.9818800 9.5718630, 48.5460870 7.8906230, 48.5478963 7.8841324, 48.5584850 7.8601509, 48.5617709 7.9504028, 48.5629237 7.8546515, 48.5722846 8.2255376, 48.5760022 7.8292923, 48.5927521 7.8515502, 48.6055000 8.0325500, 48.6548090 8.0662569, 48.6606900 8.3591362, 48.6858580 8.1097150, 48.6916995 8.3591663, 48.7078830 8.3305170, 48.7093170 8.3642330, 48.7340793 8.3748358, 48.7537300 7.9730480, 48.7670670 8.3636330, 48.8069304 8.5273814, 48.8249429 8.1271170, 48.8328153 8.3659850, 48.9489909 8.3702649, 48.9574500 8.2972500, 48.9589170 8.2985830, 48.9791637 8.3244037, 48.9832531 8.3288457, 49.0187170 8.3479000, 49.0191830 8.3479500, 48.6402538 8.9301926, 48.9374320 8.3952437, 48.7308046 9.0893561, 48.2398830 7.7793830, 48.2579830 7.7931000, 48.2705952 7.8125847, 48.3110330 7.7605830, 48.3346474 7.8428322, 48.3554371 7.8002445, 48.3574902 7.8512044, 48.3734330 7.7886830, 48.3947330 7.8102000, 48.4001330 7.8933830, 48.4114480 7.7933680, 48.4274830 7.9020330, 48.4379830 7.9272000, 48.4479820 7.8659680, 48.4517717 7.8168926, 48.4725400 7.9013520, 48.4765210 7.8142310, 48.4938289 7.8211029, 48.4999694 7.9558417, 48.5229170 8.0998830, 48.5310170 7.9861170, 48.5326830 7.9557170, 48.5409774 8.0240442, 48.5472980 8.0623920 +49.4132139 8.7078103 +0130797930, 0130797930 +48.8728847 2.2989591 +50.7845493 12.9693390, 47.5014106 10.3741398, 48.7738247 8.3968670, 48.6777285 10.3724619, 49.2155957 13.0701918, 50.1022911 11.5063264, 50.9741582 13.5289074, 50.0617279 10.1762545, 49.5025175 11.1364960, 51.7063821 10.4261757, 50.7255348 12.9291071, 47.9843646 10.1173876, 48.6182669 10.1734458, 48.0084774 10.1365721, 47.8895031 10.1163910, 51.3238984 9.4283577, 48.8940562 11.2651928, 50.4215999 7.8020867, 49.9913460 11.2941704, 48.1654874 7.7998083, 50.5065572 12.6609539, 47.6935262 11.9678034, 48.7996661 8.7327044, 51.0153548 14.2040604, 50.6830850 13.4929995, 51.2828194 9.9512860, 51.3337172 7.8836731, 49.5616303 6.8014011, 47.9361359 12.7373579, 49.4785048 7.6526559, 47.9390764 12.7478297, 50.7046860 13.4311840, 50.1313993 11.9188380, 50.9109968 14.1854926, 48.8948383 11.1815356, 48.1470329 11.3080465, 50.8638101 13.1142074, 49.3827436 7.6390706, 47.9326526 10.0774744, 48.4982011 10.5580156, 48.9013892 9.4771220, 50.6281873 10.8680941, 50.7485080 8.5010679, 50.7464796 8.5333874, 48.1978722 11.4560850, 50.7695140 10.7276872, 48.9244455 13.3518732, 50.7495526 8.5009546, 48.4132680 9.7999930, 48.9093094 13.1829338, 49.5588204 6.7532986, 50.8582546 14.6539415, 48.8815639 12.5434759, 48.1146834 7.8250671, 48.0147180 8.0995966, 48.9355345 10.9744644, 47.5754164 10.5541228, 47.9327191 10.0773907, 48.4084760 10.7695766, 48.5340871 8.3981222, 53.3375572 13.4321907, 53.3374732 13.4321916, 50.6501128 12.6794381, 47.9490249 10.1165528, 50.6162780 12.8357120, 50.6367720 12.9419800, 48.2897211 10.4993810, 50.1034685 8.9104107, 49.5525820 6.7379253, 47.6434887 11.7478323, 47.5518326 9.6884708, 49.5209824 6.8678898, 48.5900573 8.3722639, 51.2733284 8.1415692, 49.2997595 10.4045006, 47.9055899 12.5202426, 48.8827526 12.5396264, 48.7451306 11.3852209, 48.8972257 11.6516306, 51.2762262 9.9796499, 49.9773566 11.3046498, 48.8729843 11.0221664, 49.7698416 11.4286815, 48.0557707 10.4964146, 50.7335877 12.9491720, 49.2585379 7.2490504, 51.9412963 8.7431682, 49.7035932 11.2603417, 50.8294849 14.7602853, 50.8410802 14.7451889, 47.7532324 12.6599970, 51.9129197 10.3223963, 49.2712181 7.2773807, 47.5742295 10.2926153, 51.9280554 9.6060190, 51.2779470 7.9861149, 47.4961166 11.1149296, 51.9621858 7.6250374, 48.1639390 9.4691256, 50.9719990 8.1179471, 48.0086763 10.1367496, 51.3724914 8.1569980, 51.8514030 10.3372339, 51.0785726 9.5379794, 50.0219170 9.3914105, 47.7264860 12.8809342, 51.1933369 8.4044653, 50.9719784 8.1178500, 49.1494001 7.7844355, 47.3985637 10.2756390, 48.0154289 8.0924791, 51.0003960 8.5312576, 50.8842938 14.1955888, 51.5254665 8.6653175, 51.2804445 9.9551987, 51.2598746 9.9675615, 48.1903954 7.9447028, 48.1585160 8.1982855, 48.6198021 10.1541726, 49.2551795 9.0827995, 48.1422074 8.4140207, 48.0367178 10.4871515, 48.0421392 10.4935961, 50.8601436 9.6836478, 47.5832475 9.8504383, 50.0816062 8.4627128, 47.4806399 10.4082724, 49.4950862 9.9380833, 51.1871486 8.4322962, 51.0964808 9.2227357, 47.6634606 12.0163617, 51.7290818 10.6044900, 50.1947448 10.0761756, 48.4927768 8.4923581, 51.1062606 9.2311987, 50.6275620 10.8729953, 49.3926070 9.6447908, 49.4265355 9.7017327, 48.4152294 10.1376339, 51.4968839 7.4813753, 51.8228615 10.2712538, 49.5809079 9.5715529, 49.5693872 8.1561620, 49.5164097 7.9353798, 48.4991094 10.1238754, 50.6255228 10.8529629, 48.1379424 8.4143296, 48.1403910 8.4180601, 51.1948310 8.5266259, 48.0041086 10.5985786, 50.5411908 12.5872448, 50.4036131 12.5057073, 50.6919809 12.8485188, 49.1852416 8.0114114, 51.2417795 8.5670214, 51.4903611 9.0992247, 47.5718418 11.1002167, 50.5036193 12.6255466, 50.9258130 8.7699814, 51.1921907 8.5145493, 51.1964705 8.5338380, 51.3566538 8.4190028, 47.7883546 7.8867113, 47.8192543 7.9372416, 47.4061593 10.2740108, 47.8625352 12.6473214, 51.8959097 8.9840585, 51.3052080 7.9497210, 47.6799496 12.4690938, 49.5128279 7.9827533, 47.4371922 11.2551267, 51.8341169 9.4556354, 50.0078438 11.9511471, 51.1158397 8.6785436, 51.2288212 8.3944131, 50.7722414 8.5720168, 50.2439086 9.4786147, 51.4043203 9.1383433, 47.7476987 8.1436704, 51.3253162 9.2089124, 50.8987462 11.2884196, 47.8761823 12.6415474, 47.6882992 11.9856565, 51.2861235 8.6220473, 51.2945992 7.9920187, 48.6740294 10.8726810, 48.3927200 10.6761798, 48.6160031 8.1873011, 47.8381408 11.1488347, 49.5761014 10.6045885, 50.1137811 9.2831880, 50.5320778 12.6234349, 50.1035730 8.1602882, 50.5938166 8.5861484, 47.7223242 10.3299100, 48.6671826 8.7536465, 48.6157273 12.3486004, 50.6324906 10.8634830, 48.9350269 9.4746764, 47.7316514 12.0925641, 49.2933247 11.4630304, 49.0694997 12.8655791, 49.1128004 13.0219746, 47.8577727 12.3610113, 48.1200706 11.5077312, 51.2966302 11.7802673, 53.6272058 10.6948250, 49.9394584 11.4790695, 51.0159756 13.7479054, 50.9715673 13.5551396, 48.9593956 12.9189736, 51.2958579 8.1734603, 51.2958030 8.1735814, 51.8620917 10.3322967, 50.7244498 13.0333163, 50.6452897 12.9880457, 50.5970041 12.7328914, 48.2566442 9.2101645, 51.8129191 10.2289297, 51.0749629 8.3902719, 48.7406361 9.7833664, 48.0475948 11.5156035, 49.7941344 7.1332843, 48.9968181 12.8846620, 47.7702800 12.2182663, 47.4455992 10.2423754, 47.5746718 10.4535435, 53.6585617 7.7209148, 51.5396866 8.9095090, 52.3177208 11.3413670, 50.1095970 11.6223331, 48.9105220 9.2147235, 48.7739425 9.1135726, 49.2384346 9.0966096, 51.0014715 9.0973997, 52.5692049 14.0738589, 48.3302539 9.8728164, 50.7295412 13.5575861, 47.8174088 9.3128808, 48.8433766 13.1319319, 49.8175788 6.8868082, 48.0557630 10.4964252, 51.3194751 8.6387163, 48.7451788 11.3852025, 48.8020281 13.5408359, 50.5375612 12.9453332, 48.0457597 8.9650957, 50.5375780 12.5736557, 53.7803634 11.0512447, 49.9917489 11.8061110, 49.9946392 11.8339901, 49.9722981 11.8176959, 49.9873221 11.7899755, 49.0425203 10.5176304, 51.2620073 8.5392983, 51.2621737 8.5395416, 51.2621484 8.5397150, 49.9635353 11.8438723, 51.4827555 9.0942141, 47.5769672 10.6270444, 51.1949866 8.0571679, 51.7263609 9.4052651, 47.4934675 11.0622534, 51.3443157 7.4183754, 51.5238945 8.5123372, 50.8502957 14.6865355, 50.7100147 10.8197691, 50.0583431 7.5748002, 47.6454969 10.6632008, 50.0510513 7.6093093, 47.9932351 10.1808993, 50.2311962 9.1464971, 51.9198554 8.8321440, 51.8294386 9.8878994, 49.4981118 7.7797175, 51.6288247 10.4732544, 51.7767623 7.9191788, 48.9883891 9.4308441, 51.6861747 8.5654357, 50.5664935 11.1227796, 49.5810077 9.5713195, 49.5241340 6.7181635, 47.9828817 10.1920921, 51.1751283 8.4279202, 51.1751575 8.4278612, 51.1754737 9.0470681, 47.7900486 8.0446410, 52.6222125 10.0855847, 50.7897183 10.6333297, 49.1299618 13.0521460, 49.3386521 10.3154384, 49.0253526 9.3474607, 50.7550956 8.5095608, 48.8108495 13.5439386, 50.7520705 8.4961832, 50.7523693 8.4608571, 50.7679860 8.4982126, 50.7455495 8.4709159, 51.9472667 8.6888898, 49.8971837 6.9397113, 48.9013255 13.4243197, 47.7760589 12.0079629, 49.8368723 8.9755670, 48.0203082 10.2442504, 49.7700216 11.4289960, 49.6097391 8.1801402, 50.0443000 11.8231837, 49.9802703 11.9221474, 49.9955169 11.7800846, 50.0519478 11.6775574, 49.8667470 11.1646519, 50.1072817 11.8790663, 49.7830793 11.3334409, 49.6007161 9.3435208, 48.8152128 13.7652089, 48.0190807 10.1726097, 47.9856751 10.2040927, 49.0963089 11.8094655, 49.2443279 7.1434729, 49.2447426 7.3948252, 51.6299762 10.4748973, 49.3538986 6.7232282, 49.2340896 9.1566463, 48.7379075 10.1133835, 47.6943014 10.0402150, 48.9564130 9.2641724, 49.2564635 9.1221015, 50.0066389 11.7734050, 51.2938812 8.0514986, 48.8072496 9.3950203 +11 +yes +yes +Naturalia, Naturalia Crussol, Canal Bio, Bio C' Bon, Biocoop Le retour à la Terre - Rive Gauche, Naturalia, Les Nouveaux Robinson, Naturalia, Bio c'Bon, Pimlico, Biocoop Grenelle, Bio c'Bon, Bio c' Bon, Naturalia, Bio Génération, Bio c' Bon, Carrefour bio, Naturalia, Bio c bon, La Vie claire, Bio c Bon, Bio c' bon, Naturalia, Holy Planet, Naturalia +yes +no +55.9245632 -3.1361606 +no +2 +55.9370725 -3.1787027 +yes +1 +Caiy Stane, Balm Well, Stone, The Buckstane, Fort, Hatton House +55.9427756 -3.2095329, 55.9449491 -3.2071792, 55.9261403 -3.1387050, 55.9021076 -3.2215942, 55.9077375 -3.2604776, 55.9744871 -3.3050579, 55.9605521 -3.2145819, 55.9914354 -3.3985059, 55.9546221 -3.1877189, 55.9551815 -3.1828752, 55.9905515 -3.3832043, 55.9898776 -3.3947910, 55.9532515 -3.2795094, 55.8753891 -3.3099775, 55.9388513 -3.1691562, 55.9501390 -3.1751181, 55.9297109 -3.2086926, 55.9489520 -3.1813494, 55.9210967 -3.2266715, 55.9487114 -3.2851366, 55.9487753 -3.2841900, 55.9487321 -3.2833922, 55.9482056 -3.2747143, 55.9605737 -3.1931385, 55.9349799 -3.1318268, 55.9319057 -3.1277488, 55.9331970 -3.1413489, 55.9031553 -3.1637932, 55.9099567 -3.1298528, 55.9083931 -3.1302476, 55.9087443 -3.1294580, 55.9539250 -3.1094167, 55.9383367 -3.4074644, 55.9560188 -3.3189391, 55.9005379 -3.1766131, 55.9233331 -3.3622103, 55.9234774 -3.3610087, 55.9670463 -3.3162635, 55.9684981 -3.1418750, 55.9145289 -3.2879909, 55.9270985 -3.2345448, 55.9262193 -3.2367397, 55.9257251 -3.2379807, 55.9536926 -3.2888163, 55.9705235 -3.2271545, 55.9461803 -3.2070135, 55.9760698 -3.1951310, 55.9202135 -3.2126749, 55.9225657 -3.2301524, 55.9228577 -3.2291352, 55.9232283 -3.2269378, 55.9914682 -3.3984225, 55.9226414 -3.2544133, 55.9272283 -3.2938863, 55.9503380 -3.2726676, 55.9559652 -3.1503593, 55.9435000 -3.2324052, 55.9591543 -3.2259572, 55.9590419 -3.2244693, 55.9345452 -3.2208560, 55.9588991 -3.2258357, 55.9859605 -3.1898881, 55.9864916 -3.1885470, 55.9330884 -3.3083607, 55.9848085 -3.3865992, 55.9171931 -3.1941869, 55.9281635 -3.2479491, 55.9278540 -3.2486519, 55.9683895 -3.3221102, 55.9520661 -3.2796118, 55.9555602 -3.3906816, 55.9555053 -3.1853840, 55.9466587 -3.2084167, 55.9444914 -3.2039187, 55.9437264 -3.1923238, 55.9849796 -3.1929699, 55.9450154 -3.1980120, 55.9416959 -3.1484162, 55.9625359 -3.4034070, 55.9425986 -3.2065382, 55.9407899 -3.1790526, 55.9390017 -3.1784821, 55.9461084 -3.1836449, 55.9528247 -3.2065333, 55.9529149 -3.2065700, 55.9533425 -3.2047904, 55.9075949 -3.4202463, 55.9509478 -3.2066848, 55.9526988 -3.2085257, 55.9527795 -3.2080212, 55.9529409 -3.2077810, 55.9543888 -3.1989928, 55.9548130 -3.1959084, 55.9531961 -3.2032873, 55.9527862 -3.1991610, 55.9528048 -3.1990557, 55.9550493 -3.1952197, 55.9556549 -3.1915634, 55.9411313 -3.2167882, 55.9858052 -3.3817066, 55.9393998 -3.1735716, 55.9319915 -3.1798966, 55.9479359 -3.2033290, 55.9148155 -3.2846120, 55.9068623 -3.1327381, 55.9336793 -3.0927075, 55.9166066 -3.3142805, 55.9475115 -3.1893474, 55.9478706 -3.1875187, 55.9367307 -3.4053592, 55.9404588 -3.2944172, 55.9362574 -3.2996459, 55.9696237 -3.2312974, 55.9384602 -3.3173394, 55.9371432 -3.3120553, 55.9358957 -3.3194951, 55.9338970 -3.3122513, 55.9189243 -3.3018114, 55.9253578 -3.2483932, 55.9401130 -3.3149747, 55.9397190 -3.3120155, 55.9016607 -3.2241566, 55.9412989 -3.1015035, 55.9262359 -3.1654883, 55.9578808 -3.1647965, 55.9544793 -3.1426073, 55.9800643 -3.1795555, 55.9821786 -3.1756498, 55.9435294 -3.2654687, 55.9436259 -3.2619723, 55.9690220 -3.1695919, 55.9453813 -3.1852436, 55.9834910 -3.4001615, 55.9323465 -3.1280922, 55.9325021 -3.1355675, 55.9281227 -3.1237925, 55.9272234 -3.1239396, 55.9207911 -3.1380624, 55.9225739 -3.1333840, 55.9234297 -3.1370906, 55.9079002 -3.3236956, 55.9314453 -3.2359598, 55.9234755 -3.2477828, 55.9523306 -3.2247264, 55.9506405 -3.2280071, 55.9388492 -3.3562316, 55.9282702 -3.2905058, 55.9328331 -3.3144308, 55.9241296 -3.3794972, 55.9384423 -3.2403707, 55.9895200 -3.3960731, 55.9226662 -3.2254126, 55.9559159 -3.1551037, 55.9396348 -3.1719819, 55.9418632 -3.1505954, 55.9486154 -3.1834112, 55.9471658 -3.1800476, 55.9510411 -3.1708174, 55.9629115 -3.1702968, 55.9391574 -3.3048858, 55.9212062 -3.1411443, 55.9151416 -3.3259472, 55.9125478 -3.3210336, 55.9127727 -3.3230057, 55.9121770 -3.3242353, 55.9168756 -3.3182175, 55.9030839 -3.3120674, 55.9323493 -3.1390569, 55.9315981 -3.1166385, 55.9280748 -3.1214990, 55.9351070 -3.1380033, 55.9317521 -3.1361908, 55.9318779 -3.1350817, 55.9324368 -3.1361552, 55.9323067 -3.1467718, 55.9221929 -3.1873317, 55.9029473 -3.2042927, 55.9042182 -3.1508526, 55.9187139 -3.1384285, 55.9347851 -3.1178195, 55.9327327 -3.1371609, 55.9310415 -3.1291255, 55.9312532 -3.1311471, 55.9356181 -3.1431581, 55.9366082 -3.1592634, 55.9346063 -3.1287373, 55.9585488 -3.1224989, 55.9390965 -3.1155072, 55.9372934 -3.1427896, 55.9395153 -3.1374061, 55.9391745 -3.1365070, 55.9326082 -3.1048464, 55.9673151 -3.1353973, 55.9167088 -3.3165996, 55.9323197 -3.1071045, 55.9339501 -3.1058170, 55.9338900 -3.1047414, 55.9350584 -3.1023983, 55.9289228 -3.1324182, 55.9094988 -3.1543668, 55.9097229 -3.1417837, 55.9248212 -3.2647912, 55.9773633 -3.2471160, 55.9558627 -3.1173143, 55.9092890 -3.3163751, 55.9275619 -3.2972009, 55.9021546 -3.1682556, 55.9061546 -3.3220260, 55.9116089 -3.3255603, 55.9134088 -3.3215983, 55.9109708 -3.3144538, 55.9109175 -3.3264046, 55.9280288 -3.2881415, 55.9235713 -3.3999101, 55.9893024 -3.3981851, 55.9116987 -3.3152719, 55.9096737 -3.3169570, 55.9156152 -3.3159619, 55.9497651 -3.1780477, 55.9360803 -3.2260420, 55.9162763 -3.2910976, 55.9414217 -3.2221759, 55.9422143 -3.1843904, 55.9447507 -3.1796881, 55.9430744 -3.1777261, 55.9446561 -3.1803403, 55.9494277 -3.1775329, 55.9487518 -3.1780877, 55.9485518 -3.1781362, 55.9491775 -3.1780460, 55.9466674 -3.1799160, 55.9467039 -3.1783594, 55.9520666 -3.1782554, 55.9442077 -3.1850195, 55.9611696 -3.2316847, 55.9609929 -3.2342787, 55.9607831 -3.2371118, 55.9615933 -3.2374124, 55.9619320 -3.2374854, 55.9631141 -3.2367935, 55.9634777 -3.2359757, 55.9496410 -3.1840791, 55.9518134 -3.1865125, 55.9244139 -3.2658901, 55.9160232 -3.3163210, 55.9156359 -3.3182752, 55.9160984 -3.3183497, 55.9827482 -3.1947966, 55.9820923 -3.1881161, 55.9709946 -3.2069888, 55.9663575 -3.1958162, 55.9713037 -3.2306913, 55.9211529 -3.1991584, 55.9272521 -3.2235895, 55.9282852 -3.2235581, 55.9226879 -3.2251365, 55.9868679 -3.4037150, 55.9870985 -3.4031390, 55.9453143 -3.3555656, 55.9465415 -3.3624684, 55.9475491 -3.3620873, 55.9539144 -3.1587511, 55.8968564 -3.3184286, 55.9600239 -3.1973819, 55.9679394 -3.1728771, 55.9729929 -3.1628209, 55.9239749 -3.1779212, 55.9246612 -3.1815724, 55.9260122 -3.1931603, 55.9276896 -3.1509176, 55.9274521 -3.1503413, 55.9275727 -3.1506409, 55.9254765 -3.1644984, 55.9263987 -3.1628516, 55.9280015 -3.1625220, 55.9283909 -3.2930391, 55.9276860 -3.2951771, 55.9488232 -3.2332997, 55.9264933 -3.3012131, 55.9447684 -3.1528732, 55.9383947 -3.2562456, 55.9821203 -3.3972503, 55.9006763 -3.3190467, 55.8607477 -3.3326422, 55.9312615 -3.2941807, 55.8941662 -3.2624173, 55.9334103 -3.2358080, 55.9090922 -3.2239505, 55.9547187 -3.1893018, 55.9519010 -3.2481568, 55.9523635 -3.2486330, 55.9523251 -3.2541631, 55.9556720 -3.1896134, 55.9430835 -3.2219817, 55.9587913 -3.2420040, 55.9573940 -3.2424916, 55.9588441 -3.2305299, 55.9590153 -3.2322733, 55.9371887 -3.3211797, 55.9381046 -3.3208512, 55.9611769 -3.2425780, 55.9615806 -3.2409418, 55.9613606 -3.2419902, 55.9619750 -3.2400369, 55.9351660 -3.1204578, 55.9355230 -3.1204690, 55.9467379 -3.1966389, 55.9596219 -3.2030610, 55.9776230 -3.2433010, 55.9771738 -3.2430088, 55.9704477 -3.1958250, 55.9703493 -3.1961174, 55.9704547 -3.1964895, 55.9418085 -3.2938103, 55.9409118 -3.2928528, 55.9563797 -3.2090019, 55.9567298 -3.2082704, 55.9556731 -3.1599309, 55.9561167 -3.1678741, 55.9382223 -3.1043918, 55.9402035 -3.1010776, 55.9392618 -3.1041020, 55.9326805 -3.0980239, 55.9332952 -3.0991933, 55.9345875 -3.0954263, 55.9352737 -3.0966452, 55.9347395 -3.0943083, 55.9349364 -3.0950506, 55.9640969 -3.1974516, 55.9338797 -3.4074558, 55.9828725 -3.2257526, 55.9786282 -3.1784319, 55.9394393 -3.2936438, 55.9393840 -3.2949198, 55.9596625 -3.2024027, 55.9669928 -3.1677035, 55.9305761 -3.1559101, 55.9311166 -3.1557491, 55.9333643 -3.3185667, 55.9341121 -3.3187777, 55.9310843 -3.3172397, 55.9324950 -3.3181693, 55.9346695 -3.3189829, 55.9319082 -3.3177126, 55.9359437 -3.2382687, 55.9360694 -3.2391515, 55.9390399 -3.3614272, 55.9457034 -3.3727735, 55.9448037 -3.3753259, 55.9805959 -3.1832658, 55.9809475 -3.1748973, 55.9434320 -3.3600575, 55.9437471 -3.3581099, 55.9453066 -3.3603147, 55.9415413 -3.1765387, 55.9370826 -3.1361439, 55.9586835 -3.1836675, 55.9611856 -3.1865315, 55.9901392 -3.3873481, 55.9454748 -3.2133562, 55.9660452 -3.2748349, 55.9664497 -3.2729235, 55.9293562 -3.3014052, 55.9410215 -3.2404052, 55.9437556 -3.2442061, 55.9367525 -3.2236850, 55.9381980 -3.2233304, 55.9411163 -3.2946751, 55.9816356 -3.1755155, 55.9598506 -3.2240155, 55.9817826 -3.1942506, 55.9810266 -3.1939926, 55.9811977 -3.1933980, 55.9813243 -3.1938987, 55.9811060 -3.1942189, 55.9811219 -3.1927295, 55.9812872 -3.1942703, 55.9810235 -3.1943227, 55.9810882 -3.1928819, 55.9810439 -3.1926011, 55.9811933 -3.1929701, 55.9809849 -3.1928242, 55.9813860 -3.1941338, 55.9809438 -3.1941571, 55.9812539 -3.1931285, 55.9810905 -3.1933833, 55.9741923 -3.2061226, 55.9109047 -3.2387736, 55.9747440 -3.2136660, 55.9231850 -3.2486394, 55.9374125 -3.4072197, 55.9371945 -3.4058237, 55.9374045 -3.4044434, 55.9637505 -3.2335268, 55.9428585 -3.1864559, 55.9846458 -3.1940711, 55.9221429 -3.1752023, 55.9223399 -3.1759213, 55.9670991 -3.2534481, 55.9718838 -3.2534179, 55.9810691 -3.2383577, 55.8984479 -3.3160297, 55.8985757 -3.3165711, 55.8953678 -3.3130989, 55.9298336 -3.3106553, 55.9382569 -3.1735978, 55.9158853 -3.3230009, 55.9162950 -3.3213724, 55.9364542 -3.2790390, 55.9125969 -3.2367843, 55.9184722 -3.3001516, 55.9257870 -3.2656567, 55.9797213 -3.2996678, 55.9783116 -3.2972235, 55.9122709 -3.3154115, 55.9799121 -3.2416420, 55.9268127 -3.3119797, 55.9345568 -3.1028170, 55.9337360 -3.1016259, 55.9403513 -3.3138800, 55.9306972 -3.3125459, 55.9313178 -3.3099344, 55.9320037 -3.3111775, 55.9326177 -3.3104501, 55.9332898 -3.3118087, 55.9475381 -3.3620106, 55.9319865 -3.3124215, 55.9318662 -3.3137738, 55.9181587 -3.2705015, 55.9342211 -3.1778645, 55.9514241 -3.2207842, 55.9724670 -3.2012980, 55.9778933 -3.1745058, 55.9784170 -3.1773402, 55.9780971 -3.1753475, 55.9783089 -3.1763226, 55.9777459 -3.1734796, 55.9789813 -3.1763388, 55.9051373 -3.2232377, 55.9365959 -3.3331143, 55.9362007 -3.3351286, 55.9360359 -3.3397002, 55.9363751 -3.3340583, 55.9694092 -3.2702934, 55.9416964 -3.1483778, 55.9582905 -3.2794012, 55.9767945 -3.1754739, 55.9766864 -3.1738715, 55.9777295 -3.1642417, 55.9713517 -3.2751363, 55.9716217 -3.2748645, 55.9509109 -3.3040405, 55.9505011 -3.3028322, 55.9517277 -3.3043967, 55.9508168 -3.3035767, 55.9561104 -3.2932448, 55.9489783 -3.2074982, 55.9771152 -3.2561088, 55.9775665 -3.1730962, 55.9767627 -3.1685149, 55.9759609 -3.1666596, 55.9775601 -3.1677040, 55.9384344 -3.2383937, 55.9400215 -3.2835991, 55.9722626 -3.1718229, 55.9724369 -3.1737659, 55.9725956 -3.1724850, 55.9735295 -3.1719581, 55.9422361 -3.2854972, 55.9426182 -3.2848408, 55.9424261 -3.2853919, 55.9397418 -3.2866275, 55.9602875 -3.2957399, 55.9004908 -3.2325152, 55.9425974 -3.2817995, 55.9427324 -3.2894308, 55.9428132 -3.2886637, 55.9428834 -3.2895145, 55.9430576 -3.2887151, 55.9429003 -3.2891706, 55.9421047 -3.2806000, 55.9421878 -3.2816836, 55.9418910 -3.2811010, 55.9382573 -3.1889080, 55.9433390 -3.1786743, 55.9352274 -3.1798948, 55.9354661 -3.1805170, 55.9370598 -3.1807869, 55.9375196 -3.1796111, 55.9372843 -3.1802503, 55.9565957 -3.1172742, 55.9416412 -3.1759641, 55.9411089 -3.1758742, 55.9419221 -3.1751737, 55.9413694 -3.1751296, 55.9421224 -3.1755399, 55.9420435 -3.1759728, 55.9417717 -3.1760016, 55.9412937 -3.1748715, 55.9419213 -3.1762309, 55.9417190 -3.1758050, 55.9416370 -3.1757316, 55.9421785 -3.1756667, 55.9411631 -3.1744380, 55.9420584 -3.1756683, 55.9419621 -3.1753235, 55.9421292 -3.1750657, 55.9415161 -3.1750333, 55.9414662 -3.2429306, 55.9380788 -3.2164911, 55.9740721 -3.2549433, 55.9422906 -3.1878107, 55.9424910 -3.1860227, 55.9322321 -3.2172464, 55.9825623 -3.4007445, 55.9820233 -3.4001705, 55.9828150 -3.4009621, 55.9198429 -3.1330027, 55.9726414 -3.3515240, 55.9235247 -3.1313815, 55.9302056 -3.3085109, 55.9324769 -3.3071758, 55.9305686 -3.3131161, 55.9308765 -3.3117228, 55.9399461 -3.2681429, 55.9554624 -3.2241042, 55.9419112 -3.2188990, 55.9483346 -3.2942197, 55.9421466 -3.2052971, 55.9229540 -3.3790829, 55.9287806 -3.2587079, 55.8990520 -3.2377797, 55.9109797 -3.2089126, 55.9419464 -3.1773362, 55.9794270 -3.2989393, 55.9173932 -3.1379231, 55.9764201 -3.1763322, 55.9142301 -3.1341304, 55.9710130 -3.1805984, 55.9134751 -3.1337551, 55.9182561 -3.1989900, 55.9132484 -3.1780898, 55.9646733 -3.1376419, 55.9655572 -3.3178364, 55.8994825 -3.2677948, 55.8998835 -3.2694845, 55.9754348 -3.1685187, 55.9819343 -3.1951000, 55.9405416 -3.2928536, 55.9193644 -3.2228522, 55.9191174 -3.2378985, 55.9192124 -3.2367725, 55.8930871 -3.2026884, 55.8907970 -3.2014067, 55.9642544 -3.1552869, 55.8941813 -3.2179019, 55.8935768 -3.2164997, 55.9761891 -3.1670909, 55.9758400 -3.1668709, 55.9431663 -3.2838745, 55.9433798 -3.2860859, 55.9433113 -3.2870890, 55.9190084 -3.1475665, 55.9191946 -3.1484908, 55.9178453 -3.1484828, 55.9806315 -3.1941324, 55.8993059 -3.2676601, 55.9768676 -3.1714974, 55.9150424 -3.1487433, 55.9308539 -3.2761099, 55.9460256 -3.1970185, 55.9224134 -3.2358339, 55.9232515 -3.2341430, 55.9506991 -3.1804199, 55.9228372 -3.1787829, 55.9651311 -3.3167567, 55.9339081 -3.2001289, 55.9381722 -3.1723579, 55.9391719 -3.1689528, 55.9405990 -3.1722908, 55.9216273 -3.1782748, 55.9241930 -3.1744106, 55.9212881 -3.1716104, 55.9649792 -3.3131166, 55.9451443 -3.1904604, 55.9416788 -3.1843079, 55.9226382 -3.1721985, 55.9036926 -3.1570111, 55.9382369 -3.2291610, 55.9828789 -3.2415813, 55.9706810 -3.3766476, 55.9635638 -3.2312763, 55.9044775 -3.2067494, 55.9331889 -3.2150781, 55.9227690 -3.3421555, 55.8831023 -3.3393159, 55.8838260 -3.3396672, 55.9336416 -3.2375159, 55.9235691 -3.2868011, 55.9310562 -3.2789944, 55.9077899 -3.3207300, 55.9082800 -3.3196678, 55.9378551 -3.2430479, 55.9342259 -3.2112430, 55.9260946 -3.2833643, 55.9400371 -3.2200755, 55.9556763 -3.1879855, 55.9364788 -3.1804752, 55.9365673 -3.1810320, 55.9337994 -3.2511195, 55.9251847 -3.2668441, 55.9281220 -3.1676809, 55.9131088 -3.1600256, 55.9032628 -3.1558019, 55.9031108 -3.1551269, 55.9351736 -3.2474351, 55.9303474 -3.1688301, 55.9231711 -3.1630255, 55.9251682 -3.2504770, 55.9553468 -3.2876097, 55.9554662 -3.2864616, 55.9340775 -3.2344416, 55.9186700 -3.2386355, 55.9194000 -3.2392334, 55.9181062 -3.2402690, 55.9190442 -3.2405398, 55.9186959 -3.2407877, 55.9325805 -3.2889506, 55.9541504 -3.3018100, 55.9063907 -3.2862198, 55.9390667 -3.2357495, 55.9291158 -3.1990147, 55.9220415 -3.3064155, 55.9238629 -3.3045205, 55.9232078 -3.3078531, 55.9222113 -3.3051267, 55.9583463 -3.1189991, 55.9777348 -3.2983203, 55.9463372 -3.2009161, 55.9347843 -3.1777102, 55.9310132 -3.1730716, 55.8957251 -3.3137161, 55.8961364 -3.3124683, 55.9282756 -3.3087719, 55.8961608 -3.3078477, 55.8697544 -3.3340369, 55.9464077 -3.0792269, 55.9487089 -3.0877156, 55.9472371 -3.3582172, 55.9466989 -3.2004459, 55.9609398 -3.2353282, 55.9611023 -3.2337205, 55.9615648 -3.2337688, 55.9897791 -3.3942172, 55.9548736 -3.4013671, 55.9550518 -3.4014531, 55.9499454 -3.3347136, 55.9332555 -3.1585963, 55.9615076 -3.1962176, 55.9617797 -3.1967210, 55.9618418 -3.1964188, 55.9171133 -3.1693870, 55.9499151 -3.1945526, 55.9337107 -3.2143913, 55.9384227 -3.2096374, 55.9673672 -3.2023565, 55.9331209 -3.2609346, 55.9414121 -3.1461173, 55.9584013 -3.2102800, 55.9415712 -3.1423967, 55.9372219 -3.1675591, 55.9376359 -3.1437325, 55.9582727 -3.2142012, 55.9578400 -3.2137240, 55.9580057 -3.2137170, 55.9583384 -3.2143374, 55.9578384 -3.2135045, 55.9586941 -3.2142670, 55.9579707 -3.2133574, 55.9561334 -3.1325493, 55.9557004 -3.4018948, 55.9461251 -3.1413986, 55.9522035 -3.2050327, 55.9532532 -3.1988728, 55.9527412 -3.2019245, 55.9537795 -3.1957406, 55.9588705 -3.2081707, 55.9208169 -3.1598554, 55.9578355 -3.2056417, 55.9576157 -3.2060293, 55.9576413 -3.2059278, 55.9580732 -3.2011430, 55.9579644 -3.2017381, 55.9580494 -3.2012821, 55.9579410 -3.2018748, 55.9584126 -3.2005043, 55.9582239 -3.2009160, 55.9332968 -3.1356104, 55.9587356 -3.2012076, 55.9229466 -3.2475426, 55.9569863 -3.2004490, 55.9571215 -3.2003372, 55.9569959 -3.2010702, 55.9570258 -3.1998342, 55.9568113 -3.2014707, 55.9568346 -3.2013336, 55.9567905 -3.2018529, 55.9571440 -3.1998405, 55.9569850 -3.2000388, 55.9563224 -3.2001027, 55.9562856 -3.2003225, 55.9563043 -3.2002104, 55.9563423 -3.1999840, 55.9563645 -3.1998513, 55.9558901 -3.2012614, 55.9563424 -3.1994368, 55.9262637 -3.2243126, 55.9197901 -3.4326481, 55.9254217 -3.2108083, 55.9633397 -3.1866387, 55.9317876 -3.2353092, 55.9571314 -3.1945091, 55.9570903 -3.1942658, 55.9571062 -3.1948163, 55.9570078 -3.1956389, 55.9574245 -3.1945101, 55.9570801 -3.1952413, 55.9593471 -3.1962794, 55.9588288 -3.1994335, 55.9583111 -3.1990412, 55.9585624 -3.1980766, 55.9583421 -3.1992286, 55.9586095 -3.1976521, 55.9584283 -3.1986380, 55.9585084 -3.1979077, 55.9575802 -3.1968697, 55.9566931 -3.1981359, 55.9567965 -3.1968319, 55.9566552 -3.1982909, 55.9568562 -3.1972327, 55.9568774 -3.1971123, 55.9156397 -3.3249979, 55.9156923 -3.3238425, 55.9153453 -3.3247946, 55.9153595 -3.3236574, 55.9150128 -3.3243232, 55.9151025 -3.3234941, 55.9305554 -3.2379452, 55.9566534 -3.1920437, 55.9568104 -3.1898625, 55.9566771 -3.1918966, 55.9565541 -3.1926150, 55.9570880 -3.1893684, 55.9567192 -3.1908266, 55.9565429 -3.1914874, 55.9565039 -3.1916747, 55.9581431 -3.1932114, 55.9580069 -3.1929658, 55.9560597 -3.2073932, 55.9426363 -3.2453765, 55.9539415 -3.2061599, 55.9538842 -3.2068469, 55.9541878 -3.2062819, 55.9538990 -3.2065724, 55.9516793 -3.2103388, 55.9087093 -3.1294683, 55.9083658 -3.1302627, 55.9098947 -3.1298365, 55.9086482 -3.1320997, 55.9082094 -3.1281800, 55.9075358 -3.1316654, 55.9067683 -3.1280724, 55.9074133 -3.1295842, 55.9130531 -3.1377878, 55.9579855 -3.4144584, 55.9611738 -3.2007261, 55.9612899 -3.2007540, 55.9610369 -3.2004541, 55.9610414 -3.2006404, 55.9614051 -3.2007464, 55.9620034 -3.1995271, 55.9086030 -3.1535038, 55.9085760 -3.1545047, 55.9109349 -3.1528529, 55.9080474 -3.1628940, 55.9318731 -3.2975150, 55.9315469 -3.2965080, 55.9313921 -3.2957951, 55.9295984 -3.3000022, 55.9502297 -3.1939281, 55.9606540 -3.1948258, 55.9595489 -3.1922083, 55.9583753 -3.1909823, 55.9578621 -3.1897878, 55.9574569 -3.1920171, 55.9575620 -3.1916915, 55.9575374 -3.1909923, 55.9576308 -3.1912457, 55.9575648 -3.1913957, 55.9577829 -3.1897123, 55.9576959 -3.1905223, 55.9577544 -3.1902024, 55.9494095 -3.1864626, 55.9415305 -3.2096039, 55.9477482 -3.1983184, 55.9482088 -3.1927240, 55.9480798 -3.1929875, 55.9476449 -3.1962205, 55.9467112 -3.1954578, 55.9475963 -3.1940675, 55.9395772 -3.2053724, 55.9399587 -3.2058503, 55.9401754 -3.2051474, 55.9459124 -3.1915662, 55.9477804 -3.1928983, 55.9402430 -3.1727693, 55.9460773 -3.1915078, 55.9460762 -3.1916340, 55.9372942 -3.2112450, 55.9386346 -3.2107489, 55.9409866 -3.2107158, 55.9407779 -3.2120796, 55.9410206 -3.2114030, 55.9050910 -3.1343770, 55.9028429 -3.1648741, 55.9402022 -3.2097896, 55.9498358 -3.1944874, 55.9490749 -3.1954965, 55.9035412 -3.1821096, 55.9278308 -3.2029884, 55.9509187 -3.1896338, 55.9549766 -3.1940333, 55.9289340 -3.3850956, 55.9220620 -3.1790686, 55.9484660 -3.1908405, 55.9491359 -3.1879889, 55.9322908 -3.3840708, 55.9328840 -3.3853114, 55.9332462 -3.3859725, 55.9493593 -3.1850273, 55.9498809 -3.1852975, 55.9497910 -3.1868298, 55.9494266 -3.1860127, 55.9544711 -3.1956283, 55.9500589 -3.1853856, 55.9500722 -3.1849837, 55.9510336 -3.1857059, 55.9513675 -3.1810136, 55.9515036 -3.1804098, 55.9105025 -3.3235645, 55.9499184 -3.2133490, 55.9507199 -3.2116484, 55.9492178 -3.2148611, 55.9501657 -3.2128195, 55.9434309 -3.1997040, 55.9254395 -3.3071736, 55.9594881 -3.1871746, 55.9193931 -3.2787375, 55.9181911 -3.2782631, 55.9188677 -3.2805660, 55.9196291 -3.2799665, 55.9204553 -3.2780930, 55.9201801 -3.2782104, 55.9199010 -3.2768654, 55.9183106 -3.2760785, 55.9178305 -3.2802163, 55.9192966 -3.2811296, 55.9190402 -3.2822249, 55.9181350 -3.2823908, 55.9589084 -3.1973993, 55.9524851 -3.1785482, 55.9527783 -3.1777107, 55.9525789 -3.1786026, 55.9526096 -3.1778455, 55.9401136 -3.2035933, 55.9525625 -3.1763202, 55.9525134 -3.1760443, 55.9510367 -3.1792500, 55.9509261 -3.1791989, 55.9266569 -3.2906587, 55.9259672 -3.2906739, 55.9509562 -3.1793029, 55.9715612 -3.1511891, 55.9716128 -3.1531798, 55.9471723 -3.2950498, 55.9502335 -3.1832343, 55.9069836 -3.2745258, 55.9502544 -3.1792709, 55.9799828 -3.2336228, 55.9515884 -3.1767930, 55.9510805 -3.1774572, 55.9233418 -3.1754307, 55.9557050 -3.1593134, 55.9831173 -3.3982598, 55.9831412 -3.3990486, 55.9333835 -3.3060603, 55.9330851 -3.3055704, 55.9330382 -3.3063701, 55.9328514 -3.3048776, 55.9119048 -3.3162745, 55.9124396 -3.3164891, 55.9133755 -3.3158141, 55.9136037 -3.3151038, 55.9135778 -3.3145334, 55.9133853 -3.3144838, 55.9132252 -3.3140003, 55.9139806 -3.3144355, 55.9456742 -3.3672489, 55.9731731 -3.1669137, 55.9237564 -3.2987464, 55.9238278 -3.2979670, 55.9236823 -3.2992800, 55.9236244 -3.2983415, 55.9756413 -3.1693138, 55.9758911 -3.1692936, 55.9758604 -3.1697211, 55.9753361 -3.1696582, 55.9147293 -3.1511366, 55.9721048 -3.1685421, 55.9721151 -3.1680154, 55.9717652 -3.1690738, 55.9732515 -3.1673385, 55.9715681 -3.1606383, 55.9692273 -3.1671765, 55.9730053 -3.1675964, 55.9756256 -3.1775110, 55.9713870 -3.1706865, 55.9729528 -3.1695492, 55.9751541 -3.1650251, 55.9751577 -3.1653774, 55.9763527 -3.1666992, 55.9766234 -3.1668946, 55.9770520 -3.1688358, 55.9763420 -3.1688202, 55.9768312 -3.1689243, 55.9769477 -3.1679184, 55.9764831 -3.1675618, 55.9766276 -3.1674364, 55.9767630 -3.1679004, 55.9763615 -3.1673944, 55.9762132 -3.1674013, 55.9764423 -3.1672457, 55.9736969 -3.1671845, 55.9743212 -3.1625378, 55.9740795 -3.1632105, 55.9740620 -3.1630357, 55.9742799 -3.1619687, 55.9742593 -3.1633249, 55.9742318 -3.1635897, 55.9752231 -3.1690512, 55.9746912 -3.1702181, 55.9750377 -3.1689925, 55.9746574 -3.1700411, 55.9749450 -3.1691192, 55.9749017 -3.1700282, 55.9720281 -3.1737035, 55.9727889 -3.1744380, 55.9727346 -3.1745843, 55.9721351 -3.1736643, 55.9741171 -3.1730714, 55.9735318 -3.1745179, 55.9740812 -3.1745082, 55.9739348 -3.1746700, 55.9742013 -3.1746074, 55.9744262 -3.1756289, 55.9743317 -3.1760719, 55.9738875 -3.1759382, 55.9743689 -3.1762422, 55.9741727 -3.1757146, 55.9741963 -3.1758890, 55.9740011 -3.1760644, 55.9740555 -3.1757628, 55.9253013 -3.2894404, 55.9241260 -3.2892037, 55.9235279 -3.2886413, 55.9220176 -3.2971855, 55.9737812 -3.1727710, 55.9739374 -3.1725951, 55.9739122 -3.1731923, 55.9747248 -3.1723013, 55.9746745 -3.1725116, 55.9730956 -3.1719611, 55.9737461 -3.1722015, 55.9735419 -3.1722524, 55.9737264 -3.1720461, 55.9734307 -3.1722581, 55.9733652 -3.1721379, 55.9733894 -3.1719573, 55.9732022 -3.1719596, 55.9732758 -3.1714536, 55.9725117 -3.1719833, 55.9716033 -3.1728525, 55.9716849 -3.1726165, 55.9719508 -3.1722289, 55.9718987 -3.1720621, 55.9737219 -3.1688570, 55.9753470 -3.1700225, 55.9746740 -3.1690745, 55.9745309 -3.1710571, 55.9744986 -3.1695250, 55.9745046 -3.1693685, 55.9746944 -3.1711617, 55.9296471 -3.1268952, 55.9759337 -3.1724595, 55.9759996 -3.1723194, 55.9758148 -3.1719840, 55.9760071 -3.1718126, 55.9759678 -3.1720731, 55.9756249 -3.1743429, 55.9756742 -3.1728919, 55.9436134 -3.2678368, 55.9789651 -3.2338860, 55.9718369 -3.3043977, 55.9672312 -3.2394326, 55.9745116 -3.2044948, 55.9740769 -3.2060525, 55.9744149 -3.2047233, 55.9748045 -3.2066664, 55.9691367 -3.2785220, 55.9452261 -3.3675496 +no +13 +Dalmeny Parish Church, St Stephens Comely Bank, Craiglockhart Parish Church, Queensferry Parish Church, St. Anne's Church, Old Kirk of Edinburgh, St. Ninian's Church, St Christopher's, Pilrig St Paul's, Leith Free Church, Craigsbank Parish Church, Corstorphine Old Parish Church, Saint Annes Church, Cramond Kirk, St Michael's Parish church, Broughton St. Mary's, Kirk O'Field, St. Giles' Cathedral, South Leith Parish Church, Reid Memorial Church, Granton Parish Church, Marchmont St Giles Parish Church, Murrayfield Parish church, Gorgie Dalry Parish Church, Saint Cuthbert, Colinton Parish Church, Mayfield Salisbury Parish Church, St John's, Colinton Mains Parish Church, Stockbridge Parish Church, St Andrew's and St George's West, Inverleith Parish Church, Leith St Andrew's, South Leith Parish Church, Newhaven Church, Wardie Parish Church, Muirhouse St Andrews, Drylaw Parish Church, North Leith Parish Church, Dean Parish Church, Juniper Green Parish Church, Blackhall St. Columba's Church, Kirkliston Parish Church of Scotland, Greyfriars Church, London Road Parish Church, London Road Parish Church, St Serf's Parish Church +Dalmeny Parish Church, St Stephens Comely Bank, True Jesus Church (St Lukes), Craiglockhart Parish Church, Queensferry Parish Church, St. Anne's Church, Muirhouse Kingdom Hall, Old Kirk of Edinburgh, St Paul's RC Church, St. Ninian's Church, St Ninians, St Christopher's, St Andrews Catholic Church, St Catherine of Alexandria, Pilrig St Paul's, Idara Taleem ul Quran, St Johns, Leith Free Church, South Leith Baptist Church, Ardmillan Hall, Guru Nanak Gurdawara Singh Sabha, Craigsbank Parish Church, Chaplaincy, Kirkliston Parish Church, Wilson Memorial United Free Church, Corstorphine Old Parish Church, Methodist Central Hall, Duke Street United Reformed Church, Saint Mark's, Capital City Church International (3Ci), Old Schoolhouse Christian Fellowship, St Cuthbert's, Greenside Parish Church, Davidson's Mains Parish Church, Saint Annes Church, Ferniehill Evangelical Church, All Nations Christian Fellowship, Methodist Central Hall, Baha'i Centre for Scotland, The Chaplaincy, True Jesus Church, East Adam Street, Canongate Kirk, Bristo Memorial Church, The Robin Chapel, Niddrie Community Church, Richmond Craigmillar Church, Catholic Church of St Teresa, St Mary Magdalene, Duddingston Kirk, St Philips Joppa Parish Church, Tron Kirk, St Barnabas, Edinburgh Central Mosque, Cramond Kirk, Mortonhall Chapel, Barclay Viewforth Parish Church, St Michael's Parish church, Polwarth Church, Broughton St. Mary's, The Hive, Saint Martin of Tours Episcopal Church, St Margaret's Chapel, Life church, Buccleuch and Greyfriars, Orthodox Church of St Andrew, Kirk O'Field, St. Giles' Cathedral, South Leith Parish Church, Augustine United Church, St Columba's, St Philip's Church, Kingdom Hall, Saint Cuthberts Church, Destiny Church, St Vincent's Chapel, Ebeneezer, Reid Memorial Church, Gilmore Place Free Presbyterian Church of Scotland, St Ninians Episcopal Church, East Craigs Church Centre, Granton Salvation Army Hall, Seventh-day Adventist Church, Granton Parish Church, St Margaret and Mary, St Davids, Granton Baptist Church, Marchmont St Giles Parish Church, Murrayfield Parish church, Gorgie Mission, Gorgie Dalry Parish Church, Chruch of the Good Shepherd, Liberton Northfield Parish Church, Saint Cuthbert, Carrick Knowe Parish Church, Wester Hailes Baptist Church, Colinton Parish Church, Saint Margaret's and Saint Leonard's, Mayfield Salisbury Parish Church, Carrubbers Christian Centre, St Salvidor's Episcopal Church, IQRA Academy, Craigmillar Park Church, Fairmilehead Parish Church, St Mark's, St John's, Colinton Mains Parish Church, Canonmills Baptist Church, Stockbridge Parish Church, St Andrew's and St George's West, St. James Goldenacre, Inverleith Parish Church, Rhema Church, Chapel of Remembrance, Pentland Chapel, The Edinburgh Hebrew Congregation, Leith St Andrew's, Mohuiddin Jamia Masjid, South Leith Parish Church, Newhaven Church, Anwar-E-Madina, Greenbank Church, Abbeyhill Baptist Church, St Fillan, Wardie Parish Church, The Chaplaincy, Muirhouse St Andrews, Drylaw Parish Church, King's Church Edinburgh, Holy Cross RC Church, North Leith Parish Church, Leith Baptist Church, Charlotte Baptist Chapel, Bellevue Chapel, Morningside United Church, Ratho Parish Church, St Margaret's Catholic Church, World Conqueror Christian Centre, Saint Catherine's Argyle, Bristo Baptist Church, Palmerston Place Church, Duncan Street Batptist Church, St Mary's Star of the Sea, Church of the Sacred Heart of Jesus, Morningside Parish Church, Dean Parish Church, Juniper Green Parish Church, St Mary's Episcopal Cathedral, Blackhall St. Columba's Church, Chapel of St. Albert the Great, German Church, Holy Cross Church, Balerno Parish Church, Quaker Meeting House, St Mary's Metropolitan Cathedral (RC), St. Davids Broomhouse Church, St Peter's Catholic Church, St Columba's, Christ Church (Morningside), Saint Columba's by the Castle, Bruntsfield Evangelical Church, St Nicholas Parish Church, Kirkliston Parish Church of Scotland, Saint Stephen's Church, Priestfield Parish Church, St Paul's & St George's, St Michael and All Saints, Greyfriars Church, The Parish of St Gregory the Great, London Road Parish Church, London Road Parish Church, St. Patrick's, Old Saint Paul's, St Margaret's Episcopal Church, Community Church Edinburgh, Saint Peter's Church, Elim Edinburgh, Our Lady of Pochaiv and Saint Andrew, World Conqueror Christian Centre, St Albert's Catholic Chaplaincy, St Albert's Catholic Chaplaincy, St Serf's Parish Church, Church of St John +3 +yes +Flughafen Karlsruhe/Baden-Baden, Flughafen Frankfurt am Main, Flugplatz Frankfurt-Egelsbach, Sonderlandeplatz Linkenheim, Verkehrslandeplatz Lohrbach, Pattonville, Flugplatz Weinheim, Coleman AAF, Ultraleichtflieger Bürstadt (PPR), Segelflugplatz Heppenheim, Flugplatz Schwäbisch Hall-Weckrieden, Aero Club Esslingen Sportfluggelände, Segelflugplatz, Flugplatz Altfeld, Adolf Würth Airport, Walldürn Landepiste, Ingelfingen-Bühlhof Airport, Sonderlandeplatz Baden-Oos, Ramstein Air Base, Landau-Ebenberg, Segelflugplatz Weinheim, Segelfluggelände Hermuthausen, Sportflugplatz Langenlonsheim, EDGU Unterschuepf, Segelflugplatz Schreckhof, Fluggelände Hausäcker, Adolf Würth Airport, Auchtweid, Segelfluggelände Heilbronn-Böckingen, August Euler Flugplatz, Aeroclub Schweighofen Wissembourg, ehem. Heidelberg Army Air Field, Sonderlandeplatz Pattonville, Herrenteich, Segelflugplatz, Adolf Würth Airport, Segelflugplatz FSC Mühlacker, Flugplatz Worms, Segelflugplatz Grünstadt Quirnheim, Flugplatz Bruchsal, Segelfluggelände Dannstadt, Flugplatz, Flugplatz Lilienthal, Segelflugsportverein Haßloch/Pfalz e. V., Flugplatz Backnang-Heiningen, Flugplatz Völkleshofen-Lichtenberg, Flugplatz Bad Dürkheim, UL Sonderlandeplatz Dörzbach-Hohebach, Wissembourg ULM, Segelfluggelände Rheinstetten, Verkehrslandeplatz Mainbullau, Segelfluggelände Möckmühl, Flugplatz Mainz-Finthen, Segelflugplatz Im Weitfeld, Flugplatz Bundenthal-Rumbach, Flugsportvereinigung Pleidelsheim, Speyer, Babenhausen Airport, Flugplatz Domberg, Bad Sobernheim, Segelfluggelände Hermuthausen, Flugplatz Pirmasens-Pottschütthöhe, Aschaffenburg, Flugplatz Oppenheim, Flugplatz Michelstadt, City-Airport Mannheim, Sportflugplatz Walldorf, Segelfluggelände Reinheim, Imsweiler-Donnersberg, Flugplatz Langenlonsheim, Segelfluggelände Degmarn, Segelfluggelände Baumerlenbach, Flugplatz Schlierstadt +Musée de l'Armée and http://www.musee-armee.fr/, Conservatoire Niedermeyer, Musée de l'Assistance Publique Hôpitaux de Paris and www.aphp.fr/, Musée des Arts Décoratifs - Musée de la Publicité and http://www.lesartsdecoratifs.fr/francais/arts-decoratifs/, Musée national des Arts et Métiers and http://www.arts-et-metiers.net/, Tour de Jean-sans-Peur and http://www.tourjeansanspeur.com/, Musée Gustave Moreau and www.musee-moreau.fr, Les Égouts de Paris and http://www.paris.fr/loisirs/musees-expos/musee-des-egouts/visite-publique-des-egouts-de-paris/rub 9691 stand 5943 port 23931, Musée Pasteur and http://www.pasteur.fr/ip/easysite/pasteur/fr/institut-pasteur/musees/musee-pasteur, Espace Dali and www.daliparis.com/, Musée de la carte à Jouer, Musée en Herbe and http://www.musee-en-herbe.com/, Musée en Herbe, Môm'artre, Studio des Islettes, Maison Européenne de la Photographie and http://www.mep-fr.org, Musée de l'Eventail and www.annehoguet.fr/musee.htm, Musée de la Poupée and http://www.museedelapoupeeparis.com/, Espace Icare and http://www.espace-icare.net/, Catacombes de Paris and catacombes.paris.fr/, Conservatoire municipal Claude Debussy - Site de la Jonquière and http://equipement.paris.fr/conservatoire-municipal-claude-debussy-site-la-jonquiere-3976, Musée de l'Erotisme and www.musee-erotisme.com, Atelier de Restauration et de Conservation des Photographies de la Ville de Paris and http://www.paris.fr/politiques/conservation-restauration/atelier-de-restauration-et-de-conservation-des-photographies-de-la-ville-de-paris/p7672#, Musée des années 30, Musée du Petit Palais and http://www.petitpalais.paris.fr/, Musée de la Légion d'Honneur et des Ordres de Chevalerie and http://www.musee-legiondhonneur.fr/, Conciergerie and http://conciergerie.monuments-nationaux.fr/, Musée du Vin and www.museeduvinparis.com, Musée de la Poste and http://www.ladressemuseedelaposte.com/, galerie-musée Baccarat and http://www.baccarat.fr/fr/univers-baccarat/musees/gallery-opening-hours.htm, Salle des collections and http://forumdesimages.fr/, Barbara Fleury and http://www.fgo-barbara.fr, Soundfactor, Musée du Service de Santé des Armées, Choco-Story - Le musée gourmand du chocolat and www.museeduchocolat.fr, Musée-Jardin Paul Landowski, Le Lucernaire, Cité de l'architecture et du patrimoine and http://www.citechaillot.fr/fr/, Musée de la Marine and www.musee-marine.fr, Musée de la franc-maçonnerie and http://www.museefm.org/, Centre culturel L'Escale, Espace des Sciences Pierre-Gilles de Gennes, Deyrolle, Fondation Le Corbusier and www.fondationlecorbusier.asso.fr, Musée de la Contrefaçon and http://musee-contrefacon.com/, Musée Dapper and www.dapper.com.fr, Musée Adzak - Espace d'Art International, Musée d'Anatomie Delmas-Orfila-Rouvière and www.mairie6.paris.fr, Musée Arménien de France and www.le-maf.com/, Musée Boleslas Biegas - Musée Adam Mickiewicz and www.bibliotheque-polonaise-paris-shlp.fr, Musée Bible et Terre Sainte and www.icp.fr, Musée Bouilhet-Christofle - Musée d'Orfèvrerie and http://www.christofle.com/, Musée Clemenceau and www.musee-clemenceau.fr/, Musée-Librairie du Compagnonnage and www.compagnons.org/, Musée d'Anatomie Pathologique Dupuytren and www.upmc.fr/, Musée Valentin Haüy and www.avh.asso.fr/, Musée Henner and www.musee-henner.fr/, Musée d'histoire de la Médecine and www.bium.univ-paris5.fr/musee/, Musée Maillol and www.museemaillol.com/, Musée des Lettres et Manuscrits and http://www.museedeslettres.fr/, Musée du Montparnasse and www.museedumontparnasse.net/, Musée de Minéralogie and http://www.mines-paristech.fr/, Musée Moissan and www.paris.fr/, Crypte Archéologique du Parvis Notre-Dame and crypte.paris.fr/, Bibliothèque-Musée de l'Opéra and www.bnf.fr/, Musée Pierre Marly - Lunettes et Lorgnettes, Musée de la Préfecture de Police and prefecturedepolice.interieur.gouv.fr, Musiques Tangentes, Centre Culturel Suisse, Tour de la Cathédrale, Maison de la Pêche et de la Nature, Le trésor de Notre-Dame de Paris, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin and http://www.paris.fr/loisirs/musees-expos/memorial-leclerc-et-de-la-liberation-de-paris-musee-jean-moulin/p6923, Espace Albert Gazier, Musée national d'art moderne and http://www.centrepompidou.fr/cpv/ressource.action?param.id=FR R-89fd49e847165bc78d564f6dbeb6777¶m.idSource=FR E-2ab598d3369ad7a58ead7e6be32ba7b, Maxim's Art Nouveau "Collection 1900" and http://www.maxims-musee-artnouveau.com/, Collection des minéraux - Jussieu, Centre culturel italien, Centre Culturel la Jonquière, Fondation Henri Cartier-Bresson and http://www.henricartierbresson.org, Galerie Royale, Académie de la Magie, Au Bonheur du Jour, cité des arts, La Métisse, Conservatoire municipal Jean-Philippe Rameau, Musée du Barreau and http://www.avocatparis.org/home/presentation-et-missions/histoire-du-barreau-de-paris/musee-virtuel.html, Katakomben von Paris, Auditorium, Institut des Lettres et Manuscrits, Musée du quai Branly and http://www.quaibranly.fr/, Galerie de Minéralogie et de Géologie and http://www.museum-mineral.fr/, Institut du Monde Arabe and www.imarabe.org/, Jardin Tino Rossi - Musée de la Sculpture en Plein Air and equipement.paris.fr/JARDIN TINO ROSSI, Collège des Bernardins, Halle Saint-Pierre and www.hallesaintpierre.org, Hôtel de Sully, Conservatoire du Centre and http://equipement.paris.fr/conservatoire-municipal-w-a-mozart-1595, Jeu de Paume and www.jeudepaume.org, Musée de l'Orangerie and www.musee-orangerie.fr/, Centre Pompidou, Atelier Brancusi, Centre Wallonie-Bruxelles and http://www.cwb.fr/, Futur Fondation Galeries Lafayette, Espace des Blancs-Manteaux, Musée Curie and www.curie.fr/, Grand Palais and www.grandpalais.fr/, Pavillon de l'Arsenal and http://www.pavillon-arsenal.com/, La Gaîté lyrique and http://www.gaite-lyrique.net/, Musée National du Moyen Âge and www.musee-moyenage.fr/, Musée d'Art et d'Histoire du Judaïsme and www.mahj.org, Archives Nationales and http://www.archivesnationales.culture.gouv.fr/, Musée de la Serrure, Musée Picasso and http://www.museepicassoparis.fr/, Musée Cognacq-Jay and http://www.paris.fr/loisirs/musees-expos/musee-cognacq-jay/p6466, Musée national Eugène Delacroix and www.musee-delacroix.fr, Orangerie du Sénat, Musée d'Orsay and http://www.musee-orsay.fr, Conservatoire Hector Berlioz, Institut hongrois, Galerie J. Kugel, Musée national Ernest-Hébert, Espace Fondation EDF, Institut Néerlandais and www.institutneerlandais.com/, Immeuble Molitor, Pinacothèque de Paris and www.pinacotheque.com/, Musée Nissim de Camondo and www.lesartsdecoratifs.fr/, Musée Cernuschi and http://cernuschi.paris.fr/, Musée Rodin and www.musee-rodin.fr/, Musée Jacquemart-André and http://www.musee-jacquemart-andre.com/, Musée De Dion-Bouton, Conservatoire Municipal Nadia et Lili Boulanger and equipement.paris.fr/Conservatoire Municipal Nadia et Lili Boulanger, Musée Renault and https://www.sites.google.com/site/histoiregrouperenault/expos/expo-musee, Pavillon de Vendôme and http://www.ville-clichy.fr/382-le-pavillon-vendome-centre-d-art-contemporain.htm, Conservatoire Léo Delibes, Les Studios de Boulogne Musique, Le BAL and http://www.le-bal.fr/, Musée Paul-Belmondo and http://www.boulognebillancourt.com/previous/museepaulbelmondo/index.html, Centre d'Animation "Les Abbesses" and http://equipement.paris.fr/centre-d-animation-les-abbesses-1154, Fondation Pierre Bergé Yves Saint-Laurent and http://www.fondation-pb-ysl.net, Musée d'Art Moderne de la Ville de Paris and www.mam.paris.fr/, Palais de Tokyo and www.palaisdetokyo.com/, Fondation Cartier and fondation.cartier.com/, Musée Guimet and www.guimet.fr/, Maison Chana Orloff, Musée Bourdelle and paris.fr/loisirs/musees-expos/musee-bourdelle/p6408, Musée d'Ennery and http://www.guimet.fr/fr/musee-dennery/informations-pratiques, Centre Culturel Louis de Broglie and mjcneuilly92.com, Musée Roybet Fould, Musée Marmottan and www.marmottan.com, Grande Galerie de l'Évolution, Conservatoire Francis Poulenc, Musée de la Vie Romantique and http://vie-romantique.paris.fr, Maison de Balzac and http://balzac.paris.fr, Pavillon de l'eau and http://eaudeparis.fr/lespace-culture/pavillon-de-leau/, Mémorial de la Shoah and http://www.memorialdelashoah.org/, Maison de la Culture du Japon and http://www.mcjp.fr/, Musée Zadkine and http://zadkine.paris.fr, Musée de Montmartre and www.museedemontmartre.fr/, Musée de la chasse et de la nature and www.chassenature.org, Manufacture des Gobelins and http://www.mobiliernational.culture.gouv.fr/, Musée du Luxembourg and www.museeduluxembourg.fr/, Point - Afrique, Palais de la Découverte and http://www.palais-decouverte.fr/, Centre Culturel Suédois and www.si.se/Paris/, Musée de la magie, Fondation Louis Vuitton and http://www.fondationlouisvuitton.fr/, Hôtel des Monnaies and http://www.monnaiedeparis.fr/, Musée Galliera and http://palaisgalliera.paris.fr/, Musée Carnavalet and http://carnavalet.paris.fr/, Le Louvre and http://www.louvre.fr/, Sainte-Chapelle and http://sainte-chapelle.monuments-nationaux.fr/ +49.4073193 8.7078225, 49.4143210 8.7642858 +3.1898615003168422 +5 +yes +59 +Mo-Th 06:00-01:00, Fr-Sa 06:00-04:00, Su, Ph 06:00-01:00 +Musée en Herbe and 48.8651191 2.3417893 +yes +0 +8 +55.9676146 -3.1851220, 55.9389438 -3.1762512, 55.9342812 -3.1910903, 55.9468366 -3.1927193, 55.9242044 -3.2136831, 55.9267237 -3.2541012, 55.9399653 -3.2243647, 55.9530161 -3.2227017, 55.9543705 -3.2231752, 55.9545272 -3.4038139, 55.9848485 -3.4000740, 55.9895563 -3.3951093, 55.9138101 -3.1625880, 55.9139003 -3.1561271, 55.9021949 -3.1741206, 55.9311802 -3.1650916, 55.9494846 -3.2921322, 55.9535325 -3.1763565, 55.9591815 -3.2287132, 55.9369373 -3.2288584, 55.9293858 -3.1242296, 55.9546952 -3.1369685, 55.9449273 -3.0904981, 55.9265280 -3.1510008, 55.9684639 -3.1977758, 55.9668042 -3.1974105, 55.9263848 -3.3788125, 55.9087627 -3.3266637, 55.9776182 -3.2998389, 55.9696978 -3.1493775, 55.9540571 -3.1860764, 55.9719475 -3.1703032, 55.9456846 -3.1922146, 55.9093414 -3.2564463, 55.9087839 -3.2561638, 55.9085715 -3.2558102, 55.9631536 -3.1680074, 55.9534939 -3.1859938, 55.9242973 -3.3802986, 55.9535098 -3.1860262 +55.9515016 -3.2049952, 55.9440818 -3.1852249, 55.9358639 -3.2091972, 55.9581960 -3.2080531, 55.9457050 -3.2037107, 55.9456972 -3.2040704, 55.9382217 -3.2058349, 55.9504119 -3.1888113, 55.9512937 -3.2112702, 55.9057072 -3.2230862, 55.9747341 -3.1674332, 55.9573347 -3.1870575, 55.9537621 -3.1970655, 55.9551635 -3.1504704, 55.9568932 -3.1877875, 55.9573876 -3.1882337, 55.9570085 -3.1883445, 55.9541444 -3.1874139, 55.9500005 -3.2077642, 55.9570940 -3.1852268, 55.9779143 -3.1684989, 55.9484747 -3.1864289, 55.9506787 -3.2078124, 55.9551490 -3.1957714, 55.9462645 -3.1891555, 55.9512987 -3.2096416, 55.9599112 -3.1822027, 55.9489030 -3.2106596, 55.9483828 -3.2061195, 55.9474318 -3.2069644, 55.9576011 -3.1846430, 55.9584582 -3.1901573, 55.9499100 -3.2084201, 55.9537219 -3.1906118, 55.9468703 -3.2158788, 55.9514905 -3.2100788, 55.9513702 -3.2115575, 55.9426900 -3.2041310, 55.9562845 -3.2025675, 55.9545246 -3.1975013, 55.9540721 -3.1972479, 55.9534114 -3.1989539, 55.9526918 -3.2040299, 55.9523166 -3.2057181, 55.9507080 -3.2063304, 55.9498027 -3.2080511, 55.9498942 -3.1936994, 55.9539653 -3.2006949, 55.9544427 -3.1980662, 55.9538261 -3.1967340, 55.9564993 -3.1858115, 55.9515458 -3.2098937, 55.9511224 -3.2096268, 55.9521342 -3.1995774, 55.9509356 -3.1902406, 55.9902692 -3.3964391, 55.9454499 -3.2050290, 55.9497597 -3.2074169, 55.9396572 -3.1699848, 55.9486923 -3.1882174, 55.9569349 -3.1875427, 55.9486091 -3.1930739, 55.9481394 -3.1916619, 55.9570070 -3.1853290, 55.9487847 -3.1860065, 55.9485463 -3.1864684, 55.9480207 -3.1915820, 55.9509189 -3.1904398, 55.9496956 -3.1870785, 55.9577513 -3.2066055, 55.9539831 -3.1996939, 55.9586760 -3.1904335, 55.9525280 -3.2044479, 55.9382960 -3.1915943, 55.9581259 -3.1898042, 55.9462480 -3.2126362, 55.9736032 -3.1729794, 55.9463053 -3.1838351, 55.9541892 -3.2015393, 55.9593280 -3.2143392, 55.9428529 -3.2085302, 55.9492302 -3.1861131, 55.9570806 -3.1866874, 55.9457070 -3.2036262, 55.9511467 -3.1887459, 55.9563641 -3.1858503, 55.9530844 -3.1892765, 55.9500057 -3.2078391, 55.9532061 -3.1907837, 55.9489093 -3.1872526, 55.9496224 -3.1870411, 55.9505002 -3.1861418, 55.9499058 -3.1934663, 55.9395588 -3.1795881, 55.9518140 -3.2061799, 55.9524600 -3.1964337, 55.9528853 -3.1966329, 55.9481456 -3.1868202, 55.9483629 -3.1876394, 55.9481205 -3.1869530 +http://buffalogrill.co.uk +1 +55.9311721 -3.1891931 +48.8503975 2.3429508, 48.8628907 2.3351275, 48.8699382 2.3403209, 48.8728847 2.2989591, 48.8732083 2.2979398, 48.8728311 2.3429546, 48.8516699 2.3435357, 48.8530171 2.3437086, 48.8759449 2.3241482, 48.8612868 2.3461069, 48.8738880 2.3330270 +info@hotel-etab.de, info@ritter-heidelberg.de, info@molkenkur.de, info@hoteldenriko-hd.de +yes +11 +steak house, italian, chinese, sudanese, curry, indian, thai, spanish, japanese, regional, cantonese, pie, american, seafood, pizza, lebanese, french, vegetarian, Cantonese, mexican, mediterranean, mongolian, chargrill, kurdish, Lebanese, middle eastern, noodle, asian, turkish, korean, Malaysian, greek, brazilian, fish, international, sushi, arab, vietnamese, burger, latin american, caribbean, chicken, tapas, malaysian, Scotish, Punjabi, spanish tapas, british, portuguese, african, soup, Mediterranean, phillipino, Middle Eastern, fish and chips, nepali, sandwich, kebab +32 +en:Edinburgh +8.5077722 125.9789017, 8.5070910 125.9786762 +yes and 3 +71 +48.8622200 2.3675608 +no ++44 (0)131 667 1264 +1.5214474225480654 +55.9509120 -3.1684417, 55.9505684 -3.1636997, 55.9409571 -3.1518694, 55.9414904 -3.1501988, 55.9414101 -3.1510969, 55.9304112 -3.2001421 +Drumsheugh Baths Club, Glenogle Swim Centre, Dollar Academy Swimming Pool, Peebles Swimming Pool +49.4220712 8.6747880, 49.4338914 8.6803397, 49.4248554 8.6842438, 49.4181588 8.6814978, 49.4183470 8.6872741, 49.4197789 8.6871221, 49.4207750 8.6845900, 49.4220217 8.6830623, 49.4248833 8.6877871, 49.4283894 8.6851615, 49.4312787 8.6910498, 49.4329833 8.6806293, 49.4143251 8.7187531, 49.4277498 8.6794326, 49.4376060 8.6778079, 49.4151221 8.7620371 +episcopal, roman catholic +yes +0 +49.4045638 8.6759283 and 49.4081513 8.6723497 +52.0583801 8.5520281, 52.0929733 8.5326795, 52.0051281 8.5264278, 52.0107287 8.5202197, 51.9568591 8.5479920, 52.0112149 8.5297888 +192 +20 mph, 20 mph, 20 mph, 20mph +yes +no +28 +Vendôme +1 +no +1 +10.474594310144349 +3 and 55.9276315 -3.2611513, 55.9481163 -3.2005051, 55.9480729 -3.2006300 +Mo-Sa 9:00 +138 +yes +Broughton Rugby Club, Currie RFC +yes +49.4129122 8.7088486 +yes +http://www.carondebeaumarchais.com/, http://www.paris-hotel-lion.com, http://edenhotel-montmartre.com, http://www.solmelia.com, http://www.accorhotels.com/fr/hotel-1400-ibis-paris-tour-eiffel-cambronne-15eme/index.shtml, http://www.citadines.com, http://www.hotelbelorangerparis.com/, http://www.hovicha.com, hallehotel.fr, http://www.bestwestern-folkestoneopera.com/, http://www.hotelsydneyopera.com/, http://lewaltparis.com/fr, http://www.pershinghall.com, http://hotelmonnalisa.com/fr, http://www.hotel-faubourg-216-214-paris.federal-hotel.com/, http://hotel-montana-lafayette.com, http://www.marcianohotel-garedunord.com, http://www.paris-hotel-americain.com/, http://www.hotelgeorgette.com, http://www.raphael-hotel.com/, http://www.colordesign-hotel-paris.com, http://www.foch-paris-hotel.com/, http://www.hotel-studio.com/, http://hotelderbyalma.com/fr, http://www.astotel.com/hotel-acadia-opera-paris.php, http://www.hotelroncerayopera.fr, http://www.hoteldamiens.com/, http://www.hotel-delos-vaugirard-paris.com/, avalonparis.com, www.paris-saint-honore.com, http://www.hipotel.info/fr/hipotel-paris-nation, hotel-11.html, www.parishotellittleregina.com/, http://www.plaza-opera-paris.com/, http://www.villaoperalamartineparis.com/, http://www.hotel-montmartre-duperre.com, http://www.hotel-splendid-paris.com, http://www.novotel.com/fr/hotel-1834-novotel-paris-porte-d-orleans, http://www.shangri-la.com/paris, http://www.alesia-paris-hotel.com, http://www.61-paris-nation-hotel.com, http://www.amhotelitalie.com, http://hotelarian.com, http://www.hotel-meridional-paris.com/, http://www.pvhotel.com, http://www.clarisse-paris-hotel.com, http://parisportedeversailles.medianhotels.com, http://www.villa-royale-montsouris-paris.com, http://www.hotelvirgina.com, http://www.parishotelmontsouris.com, http://www.cecil-hotel-montparnasse.com, http://www.parc-hotel-paris.com, http://www.hotelduparcstcharles.com, http://www.sourcehotel.fr, http://www.hotelbellevue75.com, http:/http://www.hotel-turenne.com, http://www.hotel-petit-belloy-saint-germain.com/, http://www.hotel-paris-belloy.com/, http://www.cordelia-paris-hotel.com/, http://www.astotel.com/hotel-bergere-opera-paris.php, http://www.jardindevilliers.com, http://www.pavillon-monceau-etoile.com, http://www.leshotelsdeparis.com/fr/nos-hotels/fiche/20/pavillon-villiers-etoile.html, www.beausejour-montmartre.com, http://lemarquisparis.com/fr, http://www.hotelroyalsaintmichel.com/, http://www.hotelchopin.fr/, www.hotelparispaix.com, http://www.perreyve-hotel-paris-luxembourg.com, http://www.hoteldelavenir.com/fr/, http://www.hotel-istria-paris.com/, http://www.paris-hotel-lavallee.com, http://hotellabourdonnais.fr/, http://www.villa-montparnasse.com/, http://www.accorhotels.com/de/hotel-8465-ibis-styles-paris-pigalle-montmartre/index.shtml, http://www.accorhotels.com/de/hotel-8465-ibis-styles-paris-pigalle-montmartre/index.shtml, www.hotelfertel.com, http://www.hotelnovanox.com/, http://www.radissonblu.com/dokhanhotel-paristrocadero, www.academiehotel.com, http://www.hoteldutriangledor.com/, http://www.hoteldesers-paris.com, http://www.hotelbelami-paris.com, http://www.hoteledouard7-paris.com, http://paris.peninsula.com, http://www.amadeus-hotel-paris.com/, http://www.amadeus-hotel-paris.com/, http://www.pinkhotel.fr/en, hotelajiel.com, http://lerobinetdor.com, http://www.hoteldevenise.fr/, http://www.splendid-hotel-paris.com/, novotelparis.com, http://www.timhotel.com/, http://www.hotel-diana-paris.com/, http://www.hotel-bastille-speria.com/, http://www.paris-hotel-senlis.com/, http://www.ibishotel.com/gb/hotel-1399-ibis-paris-bastille-opera-11eme/index.shtml, http://www.choicehotels.fr/fr/comfort-hotel-fr260, http://www.ibishotel.com/fr/hotel-1401-ibis-paris-la-villette-cite-des-sciences-19eme/location.shtml, http://www.hoteloperamarignyparis.com, http://www.hotelducollectionneur.com/, http://www.hotel-rotary.fr/, http://www.hotel-touring.fr/, www.hotel-monterosa-opera.com, http://www.hotelvernet.com/, http://www.lilas-gambetta.com/, http://www.mercure.com/fr/hotel-0934-mercure-paris-austerlitz-bibliotheque/index.shtml, hotelroyalfromentin.com, http://www.solarhotel.fr/, http://www.paris-orleans-hotel.com, http://www.acropole-paris-hotel.com/, http://www.accorhotels.com/fr/hotel-3546-novotel-paris-tour-eiffel/, http://www.accorhotels.com/fr/hotel-6790-adagio-paris-tour-eiffel/, http://www.hotel-lilas-blanc-paris.fr/, http://www.paris-hotel-tourville.com/fr +yes +55.9455830 -3.1876260 +48.8373758 2.2723483, 48.8479197 2.3992555, 48.8480669 2.2646701, 48.8444572 2.3762234, 48.8336197 2.4448135, 48.8374741 2.2964370, 48.8426769 2.2964541, 48.8447051 2.3110485, 48.8418578 2.3031404, 48.8356667 2.3025546, 48.8418917 2.2973124, 48.8375362 2.2963597, 48.8371698 2.2968218, 48.8411351 2.2996815, 48.8513851 2.3427515, 48.8267972 2.3644166, 48.8266959 2.3418366, 48.8313237 2.3160082, 48.8276961 2.3323037, 48.8526158 2.3471643, 48.8536884 2.3438503, 48.8465209 2.3169152, 48.8223603 2.3376975, 48.8333496 2.3122320, 48.8468908 2.3696558, 48.8422395 2.3861184, 48.8463028 2.3793259, 48.8399294 2.4045970, 48.8448378 2.4051177, 48.8474520 2.4048594, 48.8473395 2.4060719, 48.8350796 2.4339399, 48.8354938 2.4305358, 48.8375477 2.4255552, 48.8346793 2.4193483, 48.8554435 2.3595073, 48.8529019 2.3430541, 48.8502442 2.3485713, 48.8410791 2.3878034, 48.8364073 2.3595567, 48.8325568 2.3113862, 48.8326306 2.3560783, 48.8397407 2.3618144, 48.8430681 2.3643136, 48.8548336 2.3455606, 48.8552512 2.3476157, 48.8553803 2.3476867, 48.8554064 2.3475533, 48.8552816 2.3474675, 48.8316089 2.3555656, 48.8578487 2.2776036, 48.8561596 2.2803320, 48.8587309 2.2850498, 48.8503867 2.2499063, 48.8474160 2.2734653, 48.8578293 2.2627189, 48.8522460 2.2310858, 48.8561113 2.3406430, 48.8359176 2.2934497, 48.8415640 2.2914435, 48.8321096 2.3027626, 48.8488952 2.2875621, 48.8450063 2.2934495, 48.8428146 2.3128644, 48.8584946 2.2687106, 48.8582201 2.2684874, 48.8580507 2.2679638, 48.8477318 2.3279086, 48.8587970 2.2574756, 48.8462050 2.3548474, 48.8445578 2.3478015, 48.8397766 2.3563951, 48.8439889 2.3550231, 48.8400361 2.3581380, 48.8403571 2.3507117, 48.8374935 2.3535342, 48.8379182 2.3556557, 48.8392719 2.3386499, 48.8382351 2.3417326, 48.8501724 2.3668483, 48.8551549 2.3558324, 48.8535530 2.3577268, 48.8554797 2.2377372, 48.8509506 2.2377234, 48.8554112 2.4000945, 48.8276950 2.3526554, 48.8480846 2.3334838, 48.8451543 2.3325456, 48.8474672 2.3379586, 48.8474379 2.3363959, 48.8503580 2.3831342, 48.8570290 2.3204791, 48.8321351 2.3486444, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8293608 2.3803043, 48.8299075 2.3795677, 48.8188018 2.3371410, 48.8185040 2.3384113, 48.8181578 2.3401279, 48.8370007 2.3812275, 48.8204882 2.3602086, 48.8203447 2.3628121, 48.8199857 2.3627088, 48.8339810 2.3847461, 48.8353141 2.3838347, 48.8352990 2.3814978, 48.8418885 2.2735712, 48.8428738 2.2978005, 48.8243977 2.3360819, 48.8297310 2.3179488, 48.8516782 2.3146314, 48.8365930 2.3046690, 48.8363767 2.4236251, 48.8295071 2.4201091, 48.8212233 2.4336070, 48.8300361 2.4231832, 48.8295708 2.4234828, 48.8384857 2.3139931, 48.8425610 2.3055230, 48.8291280 2.4377720, 48.8488720 2.3128820, 48.8345717 2.3321583, 48.8350776 2.4353579, 48.8517060 2.3188780, 48.8430906 2.4215578, 48.8322990 2.3969380, 48.8397680 2.3287550, 48.8374610 2.2851470, 48.8562087 2.3767474, 48.8556820 2.3852020, 48.8238387 2.3531949, 48.8315645 2.4109263, 48.8312210 2.4129893, 48.8532780 2.2711410, 48.8311370 2.3128840, 48.8555310 2.3895370, 48.8417190 2.3204800, 48.8551080 2.3942800, 48.8459400 2.2689590, 48.8270122 2.3540304, 48.8424551 2.3888122, 48.8569870 2.2983049, 48.8501704 2.3439958, 48.8399030 2.2904890, 48.8585128 2.2948820, 48.8525988 2.4088082, 48.8307590 2.3592040, 48.8526713 2.3815527, 48.8417000 2.3374070, 48.8210197 2.3568688, 48.8523510 2.2944030, 48.8383280 2.2782440, 48.8433760 2.3364170, 48.8504870 2.3502540, 48.8289169 2.3068462, 48.8530930 2.2487630, 48.8483008 2.3594250, 48.8510180 2.2721570, 48.8417750 2.2766630, 48.8581770 2.2475410, 48.8559797 2.2830925, 48.8304600 2.4499760, 48.8366079 2.4625007, 48.8185772 2.3545050, 48.8221640 2.3407800, 48.8229962 2.3483008, 48.8548880 2.3860580, 48.8334140 2.3198533, 48.8342986 2.3307561, 48.8512040 2.3336860, 48.8519135 2.2527965, 48.8211700 2.3525560, 48.8412050 2.4011810, 48.8325969 2.4424252, 48.8280471 2.4193059, 48.8341687 2.4613030, 48.8521115 2.2541524, 48.8319760 2.4160891, 48.8322537 2.4156461, 48.8385501 2.4606113, 48.8237496 2.4396773, 48.8234381 2.4570355, 48.8302710 2.4501255, 48.8515696 2.2338766, 48.8272306 2.4306540, 48.8308745 2.4295234, 48.8404327 2.4302364, 48.8351339 2.4507573, 48.8355228 2.4555897, 48.8270280 2.4256131, 48.8523056 2.3854632, 48.8283394 2.3695038, 48.8316594 2.3202088, 48.8515687 2.3455917, 48.8221234 2.3755099, 48.8501856 2.3598181, 48.8543340 2.3134030, 48.8479841 2.3021348, 48.8381900 2.2706380, 48.8373130 2.3123540, 48.8319794 2.3254293, 48.8285390 2.2936320, 48.8581731 2.4063523, 48.8581782 2.3488219, 48.8579930 2.3811530, 48.8252925 2.3693389, 48.8528480 2.3236680, 48.8366880 2.3168190, 48.8311305 2.3217527, 48.8281910 2.2975610, 48.8224115 2.3234656, 48.8563720 2.3423640, 48.8488580 2.3354220, 48.8323838 2.3266258, 48.8302050 2.3165310, 48.8578985 2.3627922, 48.8338684 2.3623631, 48.8186719 2.3602335, 48.8311679 2.3698529, 48.8353270 2.3472350, 48.8512390 2.2749420, 48.8389116 2.2802003, 48.8435250 2.3852390, 48.8239822 2.3186264, 48.8268397 2.3045308, 48.8582469 2.3636013, 48.8411853 2.3632232, 48.8432899 2.3273991, 48.8501986 2.3439620, 48.8295130 2.2974440, 48.8505319 2.3140947, 48.8513900 2.2954500, 48.8519585 2.3815373, 48.8486812 2.4047540, 48.8186727 2.3590770, 48.8422355 2.3539722, 48.8509163 2.4000959, 48.8399790 2.2978655, 48.8569010 2.3829850, 48.8394056 2.4219004, 48.8491125 2.4034753, 48.8387600 2.3533490, 48.8570984 2.3707315, 48.8446043 2.3875639, 48.8544710 2.3306000, 48.8444200 2.2902970, 48.8482791 2.3738928, 48.8541916 2.4013975, 48.8477459 2.4005894, 48.8401440 2.3004225, 48.8315105 2.3698744, 48.8377715 2.3234750, 48.8451934 2.3802706, 48.8437212 2.3551124, 48.8313290 2.3203574, 48.8450099 2.3109341, 48.8243378 2.3638857, 48.8412410 2.2855118, 48.8219932 2.3234435, 48.8211670 2.3407757, 48.8536514 2.3489902, 48.8408330 2.4201155, 48.8337204 2.3201626, 48.8338246 2.3197979, 48.8548000 2.3455200, 48.8468000 2.3358800, 48.8527000 2.3492200, 48.8518000 2.3475300, 48.8242821 2.4231989, 48.8387842 2.4064887, 48.8321456 2.3262397, 48.8449387 2.4418585, 48.8563416 2.2955451, 48.8516633 2.4098056, 48.8559569 2.4014635, 48.8264004 2.4327560, 48.8189971 2.3575128, 48.8323795 2.3620094, 48.8520536 2.4091515, 48.8198844 2.3619743, 48.8195477 2.3338738, 48.8569678 2.3519723, 48.8499865 2.3481714, 48.8420092 2.4240851, 48.8232610 2.3543235, 48.8232751 2.3542283, 48.8359580 2.3022176, 48.8237907 2.3314831, 48.8303825 2.3751684, 48.8296315 2.3814341, 48.8300792 2.4152641, 48.8419664 2.3871201, 48.8283467 2.3766535, 48.8238319 2.3396086, 48.8441811 2.3576296, 48.8310454 2.3779874, 48.8226090 2.3400474, 48.8239560 2.3366723, 48.8527614 2.3515044, 48.8577082 2.3492535, 48.8564552 2.3511205, 48.8421923 2.2737321, 48.8386247 2.2767307, 48.8276674 2.3600431, 48.8279422 2.3594556, 48.8281550 2.3775324, 48.8585066 2.2446643, 48.8316089 2.3555656, 48.8316089 2.3555656, 48.8459784 2.3603720, 48.8243136 2.4192238, 48.8365007 2.3061630, 48.8408118 2.2763450, 48.8487971 2.2855992, 48.8305375 2.3580300, 48.8527458 2.3514040, 48.8340933 2.3218873, 48.8342849 2.3425292, 48.8361094 2.3872805, 48.8563876 2.4098516, 48.8479507 2.3346295, 48.8531320 2.3882360, 48.8548595 2.4101096, 48.8572052 2.2975105, 48.8287672 2.3790174, 48.8290058 2.3792428, 48.8324901 2.4167426, 48.8325371 2.4171377, 48.8528020 2.4110674, 48.8220651 2.3497136, 48.8402419 2.2911223, 48.8556477 2.3481362, 48.8379924 2.3573249, 48.8506007 2.3684957, 48.8279269 2.3606649, 48.8281328 2.3608761, 48.8284210 2.3605021, 48.8290169 2.3599418, 48.8313949 2.3614586, 48.8502691 2.3768309, 48.8514077 2.3619724, 48.8557425 2.3657180, 48.8557863 2.3654533, 48.8405076 2.4080728, 48.8407300 2.4111999, 48.8420117 2.4099305, 48.8435586 2.3837116, 48.8463579 2.4045679, 48.8467508 2.4047042, 48.8481084 2.4046457, 48.8358697 2.3734634, 48.8362808 2.3737861, 48.8444058 2.3789793, 48.8307541 2.4193421, 48.8209696 2.4454995, 48.8453348 2.3532344, 48.8223127 2.4420635, 48.8279008 2.3224596, 48.8416104 2.3878997 +48.8816147 2.3662734 +49.4281511 8.6459692 +no +no +yes +yes +wayside shrine +49.3739107 8.6909097, 49.3713743 8.7028026, 49.3850544 8.7330464, 49.4222073 8.6781335, 49.3764832 8.7075953, 49.3891416 8.6884199, 49.3891062 8.6883661, 49.3891536 8.6883629, 49.4174902 8.7604367 +79 +48.8484038 2.3977491, 48.8512856 2.2781094, 48.8467839 2.2854077, 48.8332389 2.3329284, 48.8526288 2.3385336, 48.8925057 2.3450965, 48.8536039 2.3444118, 48.8515050 2.3430786, 48.8473294 2.3412516, 48.8312038 2.3565530, 48.8806072 2.3538936, 48.8347711 2.3321841, 48.8278860 2.3709325, 48.8695890 2.2848365, 48.8581077 2.3801470, 48.8317286 2.3137879, 48.8668650 2.2788566, 48.8697674 2.2857979, 48.8424148 2.4052197, 48.8448799 2.3727316, 48.8815590 2.3150046, 48.8903495 2.3201315, 48.8941941 2.3135794, 48.8704998 2.3049572, 48.8854539 2.2915179, 48.8898626 2.3035373, 48.8774012 2.4069914, 48.8980267 2.3289128, 48.8844761 2.2976487, 48.8584436 2.3037809, 48.8795960 2.3896580, 48.8827367 2.3814655, 48.8420110 2.3206428, 48.8615010 2.3537550, 48.8645112 2.3981788, 48.8798173 2.3215782, 48.8747412 2.3049062, 48.8700986 2.3070512, 48.8687272 2.2986811, 48.8764317 2.3015489, 48.8748073 2.2956078, 48.8679763 2.2954876, 48.8666447 2.2899845, 48.8714962 2.2934996, 48.8659060 2.2863973, 48.8634029 2.2863046, 48.8617450 2.2859062, 48.8586868 2.2849457, 48.8482990 2.2647021, 48.8776228 2.3708847, 48.8780030 2.3781296, 48.8873966 2.3492159, 48.8831639 2.3275572, 48.8374622 2.2575596, 48.8527859 2.4060423, 48.8764243 2.3592623, 48.8663059 2.3244457, 48.8579055 2.3100803, 48.8655795 2.3559318, 48.8473587 2.3122933, 48.8766198 2.3392717, 48.8832546 2.3471915, 48.8460393 2.3780826, 48.8383701 2.3607602, 48.8320548 2.3861467, 48.8432250 2.4013484, 48.8226361 2.3257162, 48.8429514 2.3751858, 48.8597360 2.3466694, 48.8606298 2.3466023, 48.8445008 2.4411062, 48.8502906 2.3928948, 48.8713571 2.3432580, 48.8721397 2.3393564, 48.8538475 2.3325263, 48.8975838 2.3287233, 48.8937759 2.3363457, 48.8391806 2.3825585, 48.8672161 2.3065357, 48.8652369 2.3013632, 48.8616106 2.3019528, 48.8622551 2.3149819, 48.8538751 2.3124512, 48.8650500 2.3013405, 48.8696527 2.3111802, 48.8541706 2.3068705, 48.8699915 2.3014172, 48.8713160 2.3009696, 48.8756033 2.3260400, 48.8630530 2.3526294, 48.8462434 2.3767506, 48.8793033 2.3034301, 48.8682598 2.4015540, 48.8567698 2.3537979, 48.8257810 2.3469176, 48.8600781 2.3465254, 48.8325620 2.3618635, 48.8284670 2.3264398, 48.8666879 2.3641696, 48.8679052 2.3646802, 48.8679443 2.3620076, 48.8606611 2.3260607, 48.8307809 2.3768658, 48.8494789 2.3371871, 48.8521348 2.3393496, 48.8772711 2.3269492, 48.8764858 2.3319975, 48.8846924 2.3795882, 48.8306144 2.2924114, 48.8767391 2.3608267, 48.8643491 2.2725788, 48.8982278 2.3591507, 48.8607328 2.3456697, 48.8236433 2.3530302, 48.8643981 2.3303564, 48.8891585 2.3938039, 48.8577770 2.3473733, 48.8634279 2.3351782, 48.8680916 2.3299623, 48.8691985 2.3546294, 48.8705443 2.3327006, 48.8659300 2.3408572, 48.8662586 2.3612125, 48.8553209 2.3603751, 48.8369707 2.3521360, 48.8500790 2.3487204, 48.8432193 2.3520318, 48.8498446 2.3551829, 48.8434713 2.3236014, 48.8530282 2.3354092, 48.8402189 2.3365313, 48.8505206 2.3272579, 48.8512092 2.3331634, 48.8390765 2.3825241 +yes +54 +yes +49.4233403 8.7520040, 49.4240137 8.7518802, 49.4093101 8.6901583, 49.4143869 8.6899597, 49.4139013 8.6749258, 49.4093049 8.7016279, 49.4248386 8.6500213, 49.4288946 8.6862100, 49.4093409 8.7060374, 49.4327974 8.6870571, 49.4120976 8.7096738, 49.3881468 8.6882271, 49.4265924 8.6873755, 49.4085805 8.6761541, 49.3735956 8.7030427, 49.4184415 8.6866326, 49.4137573 8.6875431, 49.4153849 8.6793794, 49.4179555 8.6907278, 49.3742423 8.6884112, 49.3708773 8.7046622, 49.3900974 8.6883942, 49.4039055 8.6875262, 49.3802640 8.6848463, 49.3939262 8.6891470, 49.3808161 8.6905517, 49.4107678 8.7077166, 49.4109456 8.7019862, 49.4085345 8.6820596, 49.4221852 8.6481987, 49.4021663 8.6853834, 49.4241320 8.6487812, 49.4135832 8.7467488, 49.4150755 8.7624400, 49.4009918 8.6487321, 49.4179683 8.6470075, 49.4086991 8.6956172, 49.4094426 8.7049844, 49.3847829 8.6684390, 49.3741112 8.6828543, 49.4187468 8.7410394, 49.4190608 8.6828828, 49.4215697 8.7459451, 49.4178193 8.7615639, 49.4231838 8.7514439, 49.3772124 8.6950909, 49.3996303 8.6483178, 49.4148094 8.6905503, 49.4147513 8.7446806, 49.4507187 8.6805587, 49.4123406 8.7658191, 49.3806294 8.6690978, 49.3774636 8.6689696, 49.4425561 8.7519092, 49.4089016 8.6607853, 49.3945251 8.6755375 +21.3360353 -16.9459997, 20.9492813 15.9726608, 21.8492245 16.8967277, 20.9750733 17.7334272, 20.9094174 16.8685063, 20.4523631 16.1290912, 22.4530928 15.4363980, 21.7754508 18.1805126, 21.3743204 18.4383005, 22.1296163 17.8504124, 22.1904408 15.5147673, 21.4505738 15.6305549, 22.6133280 17.6370485, 22.3151509 17.4188694, 21.3686150 15.9276802, 20.1854999 16.2879988, 21.3599348 -14.9204289, 21.3650445 -14.8973307, 21.3668635 -14.8744984, 21.3635091 -14.8571239, 21.3636398 -14.8389932, 21.3707952 -14.8205624, 21.3853801 -14.8028273, 21.4013151 -14.7870649 +yes +chaplin.cine.allocine.fr/ +31 +yes +48.8431940 2.3077472, 48.8833055 2.3634273, 48.8778547 2.3450664, 48.8945576 2.3189168, 48.8663395 2.3827900, 48.8519343 2.3358691, 48.8590336 2.4068235, 48.8641166 2.2565095, 48.8641719 2.2560642, 48.8845953 2.3994143, 48.8824472 2.3896512, 48.8754975 2.4067088, 48.8271228 2.3523768, 48.8306882 2.3630641, 48.8662977 2.2354791, 48.8663590 2.2353455, 48.8725599 2.2603094, 48.8941767 2.3635473, 48.8451052 2.2533915, 48.8269156 2.3528936, 48.8361129 2.3760717, 48.8416334 2.4125661, 48.8268674 2.3526069, 48.8996348 2.3424245, 48.8311542 2.2750813, 48.8886571 2.2954478, 48.8451517 2.2531130 +51 +Source qui soudre en forêt +no +47.0113110 -2.2691251, 46.7888250 -2.0576251, 46.9063870 -1.9950580, 46.7024790 -1.9759189, 46.6867850 -1.9285797, 46.6966810 -1.9273174, 46.8035650 -1.8961811, 46.8405360 -1.8726865, 46.6938800 -1.8117144, 46.7558570 -1.7355998, 46.5149670 -1.6891804, 46.9304349 -1.5206185, 46.4262130 -1.5082338, 46.5657450 -1.4701344, 46.6910210 -1.4334116, 46.4132690 -1.3877876, 46.4601690 -1.3413189, 46.5127790 -1.1751825, 46.9978370 -1.1655148, 46.5520070 -1.1342267, 46.6453850 -1.0722638, 46.9952790 -1.0430830, 46.6295260 -1.0412963, 46.9037440 -0.9942434, 46.6402830 -0.9598096, 47.0003470 -0.9492418, 46.7958500 -0.9316523, 46.6135270 -0.9203828, 46.4864950 -0.9105599, 46.5563530 -0.8909747, 46.9667010 -0.8904510, 46.6332960 -0.8687770, 46.4770990 -0.8109751, 46.6951950 -0.7588256, 46.4960120 -0.7610636, 46.6519810 -0.7403554, 46.6399960 -0.6698064, 46.7509880 -0.8158071, 46.6549032 -1.7890389, 46.6483446 -1.7984566, 46.6635776 -0.6478515, 46.5620795 -1.2928868, 46.6784703 -0.8898247, 46.7393647 -0.9469686, 47.0113178 -2.2691592, 46.9078487 -2.1592365, 46.3891348 -0.5715320, 46.3689327 -0.6006326, 46.8405362 -1.8726852, 46.9667151 -0.8904418, 46.9063629 -1.9950999, 46.6910145 -1.4334220, 46.6651720 -1.4082438, 46.7475420 -2.0092790, 46.7888235 -2.0576175, 46.6867835 -1.9285740, 46.4655970 -0.7764925, 46.7558193 -1.7355336, 46.3435185 -1.3964455, 46.3561397 -1.4181112, 46.4601624 -1.3413233, 46.9304308 -1.5206087, 46.7210217 -2.3581710, 46.6454360 -1.0723820, 46.6452995 -1.0722905, 46.6454225 -1.0721615, 46.6446631 -1.0091057, 46.6713375 -0.8225665, 46.9978405 -1.1655045, 46.5149635 -1.6891766, 46.7042785 -1.3097150, 46.5657750 -1.4701450, 46.5090285 -1.3892430, 46.6135448 -0.9204642, 46.6332970 -0.8687770, 46.7958487 -0.9316362 +220 ++49-6221-166461 +49.4250029 8.6441990, 49.4212764 8.6802434, 49.4178839 8.7566479, 49.3953931 8.6437984, 49.4060444 8.6915160, 49.4074324 8.6892711, 49.4055350 8.6883159, 49.3773316 8.6645506, 49.4250839 8.6878203, 49.4118508 8.7104220, 49.3733365 8.6800097, 49.3795453 8.6902879, 49.4004194 8.6918112, 49.4015196 8.6910446, 49.3992479 8.6881724, 49.4045272 8.6456516, 49.4050807 8.6859162, 49.4098378 8.6999335, 49.4059641 8.6906715, 49.3800398 8.6280684, 49.3709902 8.6282587, 49.3673207 8.6856127, 49.4075160 8.6918700, 49.4141377 8.6856530, 49.4089906 8.6954114, 49.4017125 8.6915435, 49.4106324 8.6935186, 49.4117347 8.7086375, 49.4078980 8.6887347, 49.4056236 8.6605012, 49.3640095 8.7046525, 49.4114125 8.7047336, 49.4059449 8.6866169, 49.4188039 8.6517483, 49.3851547 8.6741428, 49.4041949 8.6461395, 49.4359593 8.6807111, 49.4370376 8.6794523, 49.4365028 8.6798184, 49.4366380 8.6786346, 49.3798699 8.6783416, 49.4288530 8.6831190, 49.3839783 8.6664023, 49.4249970 8.6423683, 49.4045725 8.6815467, 49.4137654 8.7752617, 49.4165905 8.6918076, 49.4044754 8.6679758, 49.4262037 8.6391801, 49.3786588 8.6643603, 49.3838340 8.6784060, 49.3829832 8.6783801 +Galerie Vivienne, passages des Princes, Brentano's, Marché U, Marché U, Brentano's, Carrefour City, Franprix, Vélo Electro, Monoprix, passage des Panoramas, Franprix, Fiat, Franprix, Déco Relief, Franprix, Dubail, Aux Délices de Sèvres, Coiffure Auffray Jérôme, Dia, Sajou, Mona Lisait, Franprix, Naturalia, Carrefour City, Jossé, Optic 2000, Chocolatier Pierre Marcolini, Point Soleil, Arnaud DELMONTEL, La Maubeugeoise, JouéClub, Papeterie Perjac, Moisan, Daily Monop', Picard, Detrad, Monoprix, Del Duca, H&M, Dynamic Sports, Jean Louis David, Le Prestige, Talents - Gallerie d'art, Librairie Gourmande, Au Levain des Martyrs, Droguerie des Martyrs, Frank Provost, Sergent Major, Qee, En Selle Marcel, optigal, Aki boulanger, K-mart, Digixo, Centre Faguet Optique, Liz & lorens, Charly Coup'Hair, Divini Kreol, Jean-Claude Biguine, Les Opticiens Mutualistes, Meubles & Atmosphère, PA Design, Pharmacie Sebag-Meimoun, Retoucherie, Optique Job, Antony, Crystal Optical, Dharma Sangh, Jean Louis David, L'Ouvre-Boîte, Levi's Store, Marché Franprix, Motus, Optical'in, designOptic, espace SFR, Bocoray, Cordonnier, Naturalia, Bio c'Bon, Ace Mart, Copy-Top, Nicolas, Opera Market, Shop, Basler, Monoprix Gourmet Lafayette, Daily Monop, H&M, Mango, Minelli, Juji Ya, Kioko, Monoprix, Home Hair, AppleStore, Burma, Lancel, Mango, Promod, Zara, Stohrer, Legrand Filles et Fils, Kiosque à journaux, Village JouéClub, CKAB -- hackable:Devices, De Fursac, A la Mère de Famille, A la mère de Famille, Franck Provost, Aux Tenailles d'Or, Devialet, Monop', Monop', Carrefour City, La Cure Gourmande, N.Y.P. Supermarche, DIA, J.C.K. Beauty, Yilpa Telecom, Ting Supermarché Chinois, Appear Coiffure, Du Vin et des Bulles, Garden Optique, Institut Trinité, Jardin de Trinité, La Bonbonnière, Pronuptia, Royal Coiffure, Smart Store, Tapis d'Orient, cylia l., Atmosp'Hair, Châteaudun Reprographie, Agences Vaneau, Planitour, i ♥ optic, Le Nouveau Calumet, Boutique SNCF, La Grande Récré, Orange, Le Boulevard du Scooter, AJC, André, Arnaud Dalens, Aux Merveilles de Paris, Boutique SNCF, Carré Soleil, Citadium, Citron Vert, Degrif des Stocks, Délices de Fleurs, Image de France, Itinéraires Lointains, L'Atelier du Sourcil, Mika & Elle, Cadoceur, Cours des Halles, Laverie Éclat, Laverie, Mademoiselle Bio, Majuscule, Monceau Fleurs, Na Na, Nana, New Star, Optical Service, Pampilles, Paris-France Immobilier, Slim Price, À Fleurs et à Mesure, 5 à Sec, Franprix, Uniqlo, Âme et esprit du vin, DLM Paris, E. Dehillerin, Jardin du Louvre, Au Cœur Immaculé de Marie, Librairie Saint-Paul, Miss Papillon, Monop, DIA, Zazou, Le Fournil de Paris, Carrefour City, Minelli, Copilote, L'Orée de Montmartre, Junkudo, librairie japonaise, Naturalia, Franprix, Naturalia, Paul, Daily Monop', Paul, Monoprix, Bio Génération, Chabrol Pressing, G20, Paris Mixte, Jacadi, Van Cleef & Arpels, Gant store, Midoré, Franprix, Macway, vacant, Antoine & Lili, Bel Air, Berenice, COS, Carréblanc, Coccinelle, Cocoon, Colin Régis, Cotélac, Dans le noir, Free Lance, Fleurs de Rhum, Foie Gras Luxe, HO+X, Istella forest, JONAK, Laforêt, Lola Keim, MAX & Co., Marithé François GIRBAUD, Optic 2000, REDSKINS, REPLAY, Richard Gampel, Un amour de Lingerie, Wine Sitting, Yaya-Store, Zadig & Voltaire, a. simon, a. simon, minelli, 50m., Vapostore, Vapostore, Cigartex, Acuitis, Eram, Foncia, Gabor, Gentleman Gallery, Gigi, Générale d'Optique, Hong Lien, Isambert, Jacqueline Riu, La Vaissellerie, Princesse Tam-Tam, Un Jour Ailleurs, marché franprix, Coton Doux, 1001 Piles, Josy Coiffure, Laverie Trevisse, Book-Off, Le Panier Gourmet - Franprix, Le Boudoir de Joséphine, Librairie J.N. Santon, M&G Segas, Nicolas, Le Grenier à Pain, Frank L., Magma, Léopold Coiffure, Van Hoods & Sons, Le Boulanger de Monge, Anne Sémonin, Cyrillus, Le Moulin de la Vierge, Maison Bleue, Orchi Déiste, Polo, Scott & Fox, Yuka, Chic Life, Micromania, Biguine, Carnaval des Affaires, Celianthe Medus, Conversons, Telecom, Timbres Monnaies, Un deux trois, Edelweiss, Etam, Parashop, Madlyne, Tab, Orchestra, Sergent Major, eclop, René Coudari, Bréal, Caprices d'Antin, Stradivarius, Gigi, Catherine Gérard, Optic 2000, Morgan, Eurodif, Calzedonia, La Chausseria, Yves Rocher, Empire du Mariage, Sinéquanone, Carys, Shirley, Lola Jones, Maracamicie, Copy Self, Valege, Antonelle, Narda, Me, Optic d'Antin, Du pareil au même, Sephora, C ma vision, Nicolas, Miss Bolsos, Tradition des Vosges, Jeff de Bruges, Shangaï, Reality Pear, Optic 2000, Boutique Debauve et Gallais, Carrefour Market, A2pas, Terra Corsa, Lindt, Claudie Pierlot, Eric Kayser, Le Mille Pâtes, Le Pain Quotidien, Archiduchesse, XO, Agnès B, Marie sixtine, Jones + Jones, Antoine et Lili, Sail bags, Anne Élisabeth, Princesse tam-tam, Manoush, Les petites, Le coq sportif, Aux Stocks Permanents, Le Mayol, Nicolas, Franck provoqt, Camille albane, Le Panier Gourmet - Franprix, Marché Saint-Honoré, R Canelle, Monop, La Halle, Galeries Lafayette, Printemps, Printemps, L'Oeuf Chaussures, L'Oeuf, Orange, Séphora, Crèmerie Rochechouart, Comptoir des Abbayes, Optic 2000, Nicolas, Eva Koshka, Fruits Legumes Fleurs, Joker, La carte Chance, Rôtisserie Dufrenoy, Self Bazar, JT 26, OopsHome, Bazar, Kiosque, Printemps +36 +52.0583801 8.5520281, 52.0441674 8.5341281, 52.0148098 8.5415843, 51.9930698 8.6117053, 51.9530548 8.6019656, 52.0929733 8.5326795, 52.0238436 8.5234911, 52.0555549 8.5378820, 52.0051281 8.5264278, 52.0498292 8.5592441, 51.9862274 8.6330968, 52.0292398 8.6021218, 52.0292227 8.6009951, 52.0272514 8.5957092, 52.0306293 8.6106186, 52.0321219 8.6054609, 52.0473461 8.5908186, 52.0469513 8.5887087, 52.0231198 8.6053870, 52.0580464 8.6142089, 51.9489161 8.5784781, 52.0005000 8.5830563, 52.0205860 8.5678184, 52.0312632 8.5407538, 52.0319234 8.5420151, 51.9922699 8.5821902, 52.0462690 8.6409561, 52.0191448 8.5779535, 52.0184508 8.5657079, 51.9986701 8.5845091, 52.0743431 8.6025251, 52.0111171 8.6060838, 52.0110252 8.6075822, 52.0386901 8.5655696, 52.0318962 8.5656184, 51.9526831 8.5894518, 51.9478258 8.5866769, 52.0273349 8.5382436, 52.0542712 8.5439409, 52.0181631 8.5466796, 52.0522750 8.5245659, 52.0456077 8.5212121, 52.0418895 8.5307595, 52.0327138 8.5227649, 52.0157211 8.5484732, 52.0137803 8.5492099, 52.0226396 8.5511428, 52.0223364 8.5495579, 52.0233884 8.5519795, 52.0234840 8.5536985, 52.0119814 8.5542137, 52.0265557 8.5458287, 52.0185875 8.5275250, 52.0186597 8.5289951, 51.9475967 8.5920756, 51.9289095 8.5529507, 52.0209783 8.5457695, 52.0459901 8.5425345, 52.0682897 8.5224152, 52.0719588 8.5498716, 52.0442328 8.5433584, 52.0113082 8.5270214, 52.0563214 8.5500007, 52.0094113 8.5265262, 52.0037833 8.5215969, 52.0065591 8.5759589, 51.9846427 8.5287592, 51.9854958 8.5280680, 51.9843934 8.5268438, 51.9417125 8.5793602, 51.9423426 8.5802746, 51.9600857 8.5281274, 52.0045344 8.5226673, 51.9609763 8.5280751, 52.0048839 8.5221348, 52.0147217 8.5248646, 51.9568591 8.5479920, 52.0024451 8.5653246, 52.0017368 8.5684745, 52.0018299 8.5675837, 52.0020334 8.5669169, 51.9570094 8.5337027, 51.9681157 8.5499373, 52.0005457 8.5605587, 52.0205357 8.5287442, 51.9568731 8.5465415, 51.9333689 8.5654391, 52.0112149 8.5297888, 52.0013439 8.5671531, 52.0008115 8.5610395, 52.0926733 8.5329308, 52.0104876 8.6080033, 52.0065198 8.5259435, 52.0327367 8.5222372, 52.0719981 8.5498472, 52.0184308 8.5473987, 51.9932321 8.6110621, 52.0208455 8.5454983, 52.0586804 8.5511665, 52.0230297 8.5524206, 52.0207097 8.5292682, 51.9567876 8.5472991, 52.0111837 8.5268995, 52.0261594 8.5241168, 52.0312156 8.5405749, 52.0272333 8.5379784, 52.0315830 8.5423173, 52.0526516 8.5253445, 52.0468920 8.5467931, 52.0186691 8.5656539, 52.0472610 8.5893105, 52.0391035 8.5656780, 52.0315635 8.5657826, 51.9527696 8.6018036, 51.9528793 8.5894680, 51.9484298 8.5873772, 52.0543651 8.5447212, 51.9487421 8.5784654, 51.9923885 8.5822520, 51.9863326 8.6322964, 52.0010481 8.5831553, 51.9990577 8.5845337, 52.0462874 8.6407281, 52.0579586 8.6142140, 52.0742793 8.6022273, 52.0206603 8.5676185, 52.0270594 8.5966793, 52.0323486 8.6056893, 52.0307766 8.6106210, 52.0230896 8.6059771, 52.0500810 8.5586981, 52.0421599 8.5307527, 52.0586095 8.5515568, 52.0156406 8.5480803, 52.0137807 8.5496365, 52.0556849 8.5374131, 52.0114804 8.5539410, 52.0262032 8.6392966, 52.0265579 8.5454510, 52.0150885 8.5416301, 52.0184126 8.5282924, 51.9415032 8.5795671, 52.0459863 8.5425744, 52.0679871 8.5225050, 52.0051550 8.5262181, 52.0039093 8.5212500, 51.9847292 8.5279845, 51.9525819 8.5921145, 51.9285763 8.5528956, 52.0047086 8.5224081, 52.0191169 8.5773881, 51.9603119 8.5285761, 51.9475733 8.5919114, 51.9568818 8.5332831, 51.9487080 8.5862850, 51.9493095 8.5874506, 51.9483907 8.5883941, 51.9478782 8.5876688, 51.9478908 8.5859766, 51.9482758 8.5858662, 51.9474419 8.5860889, 51.9475824 8.5870706, 52.0104310 8.6074498, 51.9680412 8.5506318, 52.0297068 8.6015894, 51.9862135 8.6337019, 52.0261594 8.5241168 +no +55.9486773 -3.2003994 +Ambassade de l'Union du Myanmar, Ambassade de Tanzanie, Service VISA de l'ambassade de la République Populaire de Chine, Consulat de Colombie, Ambassade d'Ouzbékistan, Consulat de Grande-Bretagne, Ambassade du Qatar, Ambassade de Suède, Consulat général du Mali, Ambassade de la République de Serbie, Ambassade de Chine - Service consulaire, Ambassade de l'Île Maurice, Annexe ambassade de Tunisie, Residence du senegal, Ambassade du Népal, Embassade de la Serbie, Ambassade de Géorgie, Ambassade du Paraguay, Ambassade d'Australie, Ambassade du Burundi, Ambassade de Suisse, Ambassade de la République de Pologne, Ambassade d'Israël, Ambassade de Colombie, Ambassade des États-Unis d'Amérique, Ambassade de Belgique, Ambassade du Sri Lanka, Ambassade de Guinée Equatoriale, Ambassade de l'Équateur, Ambassade de Corée du Sud, Ambassade de Syrie, Ambassade d’Italie, Ambassade d'Algérie, Ambassade de Singapour, Ambassade du Burkina Faso, Ambassade d'Ukraine, Ambassade d'Ethiopie, Ambassade de Finlande, Ambassade d'Afrique du sud, Ambassade d'Autriche, Ambassade du Luxembourg, Ambassade de Bulgarie, Ambassade du Canada, Ambassade d'Allemagne, Ambassade du Brésil, Ambassade de Chine, Ambassade d'Espagne, Ambassade de Roumanie, Ambassade du Pakistan, Ambassade du Saint-Siège, Ambassade de la République Islamique d'Iran, Ambassade d'Égypte, Ambassade du Yémen, Ambassade du Sultanat d'Oman, Ambassade du Danemark, Ambassade de la République Démocratique de Somalie, Ambassade de Chypre, Ambassade de Grèce, Ambassade d'Uruguay, Ambassade de l'État du Barhein, Ambassade du Koweit, Ambassade d'Argentine, Ambassade du Vénézuéla, Ambassade du Mexique, Ambassade du Kenya, Ambassade du Bénin, Ambassade du Liban, Ambassade du Pérou, Ambassade du Laos, Ambassade de Nouvelle-Zélande, Ambassade de Côte d'Ivoire, Ambassade d'Angola, Ambassade d'Irlande, Ambassade de la République du Congo, Ambassade des Comores, Ambassade d'Allemagne, Embassy of Latvia in France, Délégation Générale du Québec, Ambassade du Ghana, Ambassade de Hongrie, Ambassade du Tchad, Ambassade de Libye, Ambassade de Djibouti, Ambassade d'Albanie, Ambassade du Portugal, Ambassade du Pakistan, Ambassade du Maroc, Chancellerie de l'Ambassade de Malaisie, Ambassade du Niger, Ambassade de Guinée, Ambassade de Mauritanie, Ambassade du Nigéria, Ambassade d'Ouganda, Ambassade d'Indonésie, Ambassade du Cambodge, Ambassade de la Fédération de Russie, Ambassade de l'Inde, Ambassade de Madagascar, Ambassade d'Afghanistan, Ambassade de Monaco, Ambassade de Slovaquie, Ambassade des Philippines, Ambassade des Seychelles, Ambassade du Maroc, Ambassade de Turquie, Ambassade de Belgique, Ambassade de la République Togolaise, Ambassade de la République d'Arménie, Ambassade du Zimbabwé, Délégation de la Russie auprès de l'Unesco, Ambassade du Liberia, Ambassade de Lituanie, Ambassade du Portugal, Ambassade du Cameroun, Ambassade d'Algérie, Ambassade du Vietnam, Ambassade du Chili, Ambassade d'Afrique du Sud, Ambassade du Sénégal, Ambassade de Tunisie, Ambassade des Pays-Bas, Ambassade de Norvège, Ambassade de Grande Bretagne, Ambassade du Mali, Ambassade du Rwanda +Maison de Victor Hugo, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin, Musée Cernuschi, Musée d'Art Moderne de la Ville de Paris, Musée Bourdelle, Maison de Balzac, Musée Carnavalet +193 +35 +monument, memorial, castle, ruins, battlefield, archaeological site, cannon, police box, boundary stone, tomb, Brewary, brewrey, citywalls, house, ship, building, One time A listed, yes, tower house +60 +3 +yes and 55.9546676 -3.3637002, 55.9222410 -3.1492085 +Halle Saint-Pierre +78 +1 +yes +yes +3398 +yes +yes +126 +48.8631692 2.3329513, 48.8660977 2.3554138, 48.8643016 2.3480523, 48.8779237 2.3345515, 48.8626245 2.3025393, 48.8662844 2.3817490, 48.8864800 2.3399022, 48.8957518 2.3879761, 48.8651191 2.3417893, 48.8695018 2.3546892, 48.8957352 2.3886935, 48.8616153 2.3542965, 48.8836865 2.3338083, 48.8660456 2.3145051, 48.8602845 2.3247488, 48.8677629 2.2935696, 48.8625016 2.3453019, 48.8705899 2.3500828, 48.8629386 2.2890051, 48.8618163 2.2873421, 48.8749151 2.3431481, 48.8703234 2.2765175, 48.8716440 2.2881063, 48.8716204 2.2814131, 48.8677268 2.3223990, 48.8591945 2.2851420, 48.8830345 2.3077236, 48.8718820 2.3312120, 48.8656784 2.3307909, 48.8607161 2.3525007, 48.8672999 2.3221942, 48.8960350 2.3884154, 48.8678618 2.3225499, 48.8762675 2.3826909, 48.8640279 2.3450171, 48.8609823 2.2977973, 48.8848436 2.3445206, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8614029 2.3519903, 48.8590015 2.3547571, 48.8661515 2.3122667, 48.8612342 2.3554751, 48.8602237 2.3588061, 48.8590543 2.3618044, 48.8598775 2.3620895, 48.8599188 2.3265259, 48.8613305 2.3197359, 48.8707890 2.3259075, 48.8791676 2.3124361, 48.8794667 2.3125380, 48.8755169 2.3105465, 48.8655978 2.2993165, 48.8643054 2.2977930, 48.8641085 2.2964123, 48.8653887 2.2935591, 48.8715060 2.2814214, 48.8594040 2.2672517, 48.8812030 2.3335190, 48.8880654 2.3406347, 48.8612559 2.3587824, 48.8662091 2.3108575, 48.8766546 2.2633259, 48.8657061 2.2966614, 48.8614768 2.3351679 +yes +48.8761391 2.3683073, 48.8722806 2.3695753, 48.8681927 2.3630580, 48.8748801 2.3637951, 48.8710381 2.3610667, 48.8757902 2.3561915, 48.8667885 2.3495539, 48.8683427 2.3501494, 48.8770173 2.3640220, 48.8717450 2.3763419, 48.8757565 2.3604345, 48.8680319 2.3652462, 48.8668874 2.3528247, 48.8669313 2.3543718, 48.8763445 2.3614950, 48.8684955 2.3674002, 48.8700553 2.3666721, 48.8725652 2.3640736, 48.8738041 2.3703747, 48.8705409 2.3514636, 48.8707624 2.3546578, 48.8690350 2.3562439, 48.8735031 2.3753876, 48.8722991 2.3766565, 48.8683870 2.3633979, 48.8745891 2.3627432, 48.8754929 2.3615609, 48.8769804 2.3588987, 48.8668278 2.3572924 +yes +100 +4 +55.9534686 -3.2733947, 55.9441043 -3.1618477, 55.9229465 -3.1946655, 55.8825188 -3.2371629, 55.9510042 -3.1642474, 55.9429880 -3.1595009, 55.9455214 -3.1515881, 55.9215151 -3.2311690, 55.8810613 -3.2505433, 55.8919644 -3.2565320, 55.8910980 -3.2702735, 55.9174462 -3.2363371, 55.9127712 -3.2038639, 55.9145086 -3.1951990, 55.8191953 -3.3924956, 55.8830619 -3.2214017, 55.9509656 -3.1565911, 55.9919155 -3.3568399, 55.8933347 -3.2822591, 55.9556726 -3.1824089, 55.9458711 -3.1740706, 55.9425607 -3.1620707, 55.8878252 -3.3839342, 55.9836455 -3.3447505, 55.9900950 -3.3422624 +pawnbroker, pawn, finance, second hand, yes, electronics, cash, variety store, money lender, ?, pawn shop, supermarket +yes +Dalmeny Primary School, Rudolf Steiner School, Little City Nursery, City Nursery, Pirniehall Primary School, Pilrig Park School, Haywired, Bun-sgoil Taobh na Pairce, Blackhall Primary School, St David's RC Primary School, Kirkliston Nursery School, Mannafields Christian School, Dalmeny Nursery School, Currie Community High School, Queensferry High School, EDETA Training Services, Craigour Park Primary School, Liberton Primary School, St Thomas of Aquins, James Gillespie's High School, George Watson's College, South Morningside Primary School, Granton Primary School, Fettes College, Murrayburn Primary School, Westburn Primary School (Closed July 2009), Flora Stevenson's Primary School, Firrhill High School, Craigroyston Community High School, George Heriot's School, Niddrie Mill Primary School (Closed), Hermitage Park Primary School, Leith Academy, Lorne Primary School, Drummond Community High School, Stewart's Melville College, Craigentinny Primary School, St Ninians RC Primary School, Bruntsfield Primary School, George Watson's College Primary, Currie Primary School, Tynecastle High School, St Peter's Primary School, Gracemount High School, Liberton High School, Lismore Primary School‎ (Closed July 2009), Fox Covert Primary School and RC Primary School, Greengables Nursery, Leith Primary School, Craigmillar Childrens Centre, Prestonfield Primary School, St Francis and Niddrie Mills Primary schools Campus, Holy Rood High School, Brunstane Primary School, Royal High Primary School, Newcraighall Primary School, Merchiston Castle School, The Mary Erskine School, Ratho Primary School, Colinton Primary, Hillwood Primary School, The Yard, Sighthill Primary School, Royal Blind School, Royal Blind School, Duddingston Primary School, East Craigs Primary, Royal Mile Primary School, Edinburgh School of English, Panmure St Anne's, Trinity Academy, Gorgie Mills School, Craiglockhart Primary, Sciennes Primary School, Victoria Primary School, Broughton High School, Trinity Academy, The Royal High School, Clermiston Primary School, Westerlea School, Fort Primary School (Closed July 2010), Longston Primary School, Edinburgh Academy, Stockbridge Primary School, Broughton Primary School, Rowanfield School, Tollcross Primary School, Prospect Bank School, St Mary's RC Primary School, Leith Walk Primary School, St Johns RC Primary School, Portobello High School, Balgreen Primary School, Preston Street Primary School, Davidson's Mains Primary School, Dalry Primary School, Ferryhill Primary School, Wardie Primary School, School, Abbeyhill Primary School, Oaklands School, Craigroyston Primary School, Arbor Green Nursery, St Augustines High School, Forrester High School, Broomhouse Primary School, Edinburgh Academy Junior School, Corstorphine Primary, St. John Vianney Roman Catholic Primary, Darroch Annex, Cargilfield School, Juniper Green Primary, Kaimes School, Stenhouse Primary, Balerno High School, Bonaly Primary School, Dean Park Primary School Annexe, Gylemuir Primary School, Boroughmuir High School, Trinity Primary school, Fort Primary, Cramond Primary School, Holy Cross Primary School, Wardie Primary School +318 +55.9352993 -3.1317667, 55.9476467 -3.2048254, 55.9482540 -3.2061050, 55.9312295 -3.1720873, 55.9557737 -3.1922262, 55.9474180 -3.1841339, 55.9605039 -3.1694895, 55.9567295 -3.1849346, 55.9465675 -3.1864711, 55.9419520 -3.2027917, 55.9411994 -3.1818116, 55.9462373 -3.1906430, 55.9470070 -3.2042875, 55.9326296 -3.2093529, 55.9757314 -3.1804855, 55.9472630 -3.2049020 +609 +49.4055350 8.6883159, 49.4250839 8.6878203, 49.4004194 8.6918112, 49.4050807 8.6859162, 49.4098378 8.6999335, 49.4059641 8.6906715, 49.4017125 8.6915435, 49.4106324 8.6935186, 49.4117347 8.7086375, 49.4078980 8.6887347, 49.4359593 8.6807111 +49.4276763 8.6857958, 49.4038333 8.6771587, 49.4171595 8.6617457, 49.4147558 8.6660779, 49.4134202 8.6738393, 49.4192295 8.7567625, 49.4082107 8.6921228, 49.4091698 8.6936091, 49.4041276 8.6763300, 49.4172710 8.6921830, 49.4124311 8.7120085, 49.3804963 8.6875192, 49.4031182 8.6470339, 49.3989298 8.6889417, 49.4107889 8.7060227, 49.4065233 8.6910827, 49.4013623 8.6726870, 49.4089481 8.7124297, 49.4121807 8.6993722, 49.3656248 8.6889494 +yes +19 +Chapelle Saint-Vincent de Paul, Chapelle de l'Agneau de Dieu, Chapelle Saint-Bernard, Aumônerie des Grands Moulins, Chapelle Saint-Martin de Porrès, Chapelle des Franciscaines, Centre Saint-Paul, Chapelle Notre-Dame de la Confiance, Chapelle Sainte-Marie, Église Sainte-Colette des Buttes-Chaumont, Chapelle, Chapelle Saint-André, Chapelle Saint-Louis, Crypte du Martyrium de Saint-Denis, Chapelle, Chapelle, Église Saint-Lambert de Vaugirard, Église Saint-Léon, Église Saint-Sulpice, Église Saint-Pierre de Montrouge, Église Saint-Séverin, Église Saint-Julien-le-Pauvre, Basilique du Sacré-Cœur, Église Saint-Jean-Baptiste de Grenelle, Église Saint-Pierre de Montmartre, Église Notre-Dame de l'Arche d'Alliance, Église Saint-Ignace, Église Saint-Médard, Église Notre-Dame-de-Lorette, Église Notre-Dame de Clignancourt, Église Saint-Roch, Chapelle Notre-Dame-de-la-Compassion, Église Sainte-Hélène, Église de la Sainte-Trinité, Église Saint-Eugène Sainte-Cécile, Chapelle Ozanam, Église luthérienne de la Résurrection, Église Saint-Christophe de Javel, Église Saint-Eustache, Église Saint-Germain l'Auxerrois, Église Saint-Leu - Saint-Gilles, Chapelle Notre-Dame de Grâce, Église Polonaise Notre-Dame de l'Assomption, Église de la Madeleine, Basilique Notre-Dame-des-Victoires, Église Notre-Dame-de-Bonne-Nouvelle, Église Saint-Louis-en-l'Île, Église Saint-Étienne-du-Mont, Église Saint-Éphrem-le-Syriaque, Église Saint-Gervais, Église Saint-Merry, Église Notre-Dame-des-Blancs-Manteaux, Église Saint-Paul - Saint-Louis, Église Saint-Nicolas des Champs, Ancienne Église Saint-Martin des Champs, Église Sainte-Élisabeth, Chapelle de la congrégation du Saint-Esprit, Cathédrale Arménienne Sainte-Croix, Église Saint-Denis du Saint-Sacrement, Église du Val-de-Grâce, Église Saint-Jacques-du-Haut-Pas, Église Saint-Germain des Prés, Chapelle Notre-Dame de la Sagesse, Église Saint-Vincent-de-Paul, Église Saint-Laurent, Chapelle de l'hôpital Saint-Louis, Église Saint-Martin des Champs, Église Saint-Joseph-Artisan, Église Saint-Jean-Baptiste de Belleville, Église Notre-Dame-de-l'Assomption des Buttes-Chaumont, Église Notre-Dame-de-Fatima, Église Saint-François-d'Assise, Église Sainte-Claire d'Assise, Église Saint-Georges de la Villette, Église Saint-Joseph des Carmes, Église Saint-Thomas d'Aquin, Église Saint-Ambroise, Chapelle Notre-Dame-Réconciliatrice de la Salette, Basilique Notre-Dame du Perpétuel Secours, Église Notre-Dame d'Espérance, Église Saint-Jacques Saint-Christophe, Église Notre-Dame des Foyers, Église Notre-Dame des Champs, Basilique Sainte-Clothilde, Cathédrale Saint-Louis des Invalides, Chapelle de Jésus-Enfant, Église Saint-Augustin, Chapelle Expiatoire, Église Saint-André de l'Europe, Église Saint-Philippe du Roule, Chapelle Baltard, Église Saint-François-Xavier, Chapelle Notre-Dame de l'Annonciation, Église Saint-Pierre du Gros Caillou, Église Saint-Louis-d'Antin, Chapelle Notre-Dame de Consolation, Église Notre-Dame-des-Otages, Église Notre-Dame-de-la-Croix, Église du Cœur Eucharistique de Jésus, Église Saint-Germain-de-Charonne, Église Saint-Gabriel, Église Saint-Cyrille et Saint-Méthode, Chapelle du Corpus-Christi, Saint-Joseph's Church (mission anglophone), Église Saint-Jospeh des Épinettes, Église Saint-Michel des Batignolles, Église Sainte-Marie des Batignolles, Église de l'Immaculée Conception, Église Sainte-Geneviève des Grandes-Carrières, Église Saint-Jean de Montmartre, Église Saint-Bernard de La Chapelle, Chapelle Notre-Dame de la Paix, Église Saint-Éloi, Église Notre-Dame du Bon Conseil, Église Notre-Dame de Bercy, Église Saint-Albert le Grand, Église Sainte-Anne de la Maison Blanche, Chapelle Saint-Louis de la Salpêtrière, Église Notre-Dame de Chine, Église Notre-Dame de la Gare, Église Saint-Hippolyte, Église Saint-Pierre de Chaillot, Église Saint-Dominique, Église Notre-Dame-du-Rosaire, Église de Saint-Antoine de Padoue, Église Notre-Dame-Réconciliatrice, Chapelle Notre-Dame-du-Lys, Église Saint-Jean-Baptiste-de-La-Salle, Église Saint-Honoré d'Eylau, Mission Catholique Espagnole - Iglesia Española, Église Notre-Dame-de-l'Assomption de Passy, Église Notre-Dame de Grâce de Passy, Église Saint-Denys de la Chapelle, Chapelle Sainte-Thérèse, Église Saint-François-de-Sales (ancienne église), Église Sainte-Odile, Église Saint-Charles-de-Monceau, Église Saint-Ferdinand des Ternes, Église Saint-François-de-Sales (nouvelle église), Église Notre-Dame d'Auteuil, Chapelle Sainte-Bernadette, Église Saint-François de Molitor, Église Polonaise Sainte-Geneviève, Église Sainte-Jeanne-de-Chantal, Chapelle de la Visitation, Église Saint-Antoine des Quinze-Vingts, Chapelle Sainte-Ursule, Chapelle de l'Épiphanie, Église Notre-Dame-de-Grâce de Passy, Chapelle Laennec, Église Notre-Dame-de-Nazareth, Église nouvelle Saint-Honoré d'Eylau, Chapelle Saint-François d'Assise, Chapelle Sainte-Rita, Basilique Sainte-Jeanne-d’Arc, Église du dôme, Chapelle Notre-Dame-du-Saint-Sacrement, Église Notre-Dame-de-Lourdes, Église Saint-Joseph des Nations, Église Sainte-Marguerite, Église Sainte-Marguerite, Chapelle Sainte-Jeanne-d'Arc, Église du Saint-Esprit, Chapelle, Prieuré Saint-Benoît, Chapelle de la clinique Blomet, Église du Bon Pasteur, Église Saint-Jean des Deux Moulins, Chapelle, Chapelle, Chapelle Saint-Yves, Chapelle, Chapelle, Chapelle du Sacré-Cœur-de-Jésus-Roi-de-France, Cathédrale Notre-Dame de Paris, Chapelle Saint-Charles, Chapelle, Église Saint-Luc, Église Notre-Dame-de-La-Salette, Sainte-Chapelle +180 +Quick +49.4211082 8.6694686 +Centre de rétention administrative Paris 1 and fr:Redoute de Gravelle, Maison d'Arrêt de la Santé and fr:Prison de la Santé +Bonner Pfeiffen- & Cigarrenhaus, Rossmann, Vodafone, Juwelier Vassiliou, chocolat, Nokia, Vollmar, Kultuhr, Douglas, E-Plus, Mobilcom Debitel, Close Up, Hörsch Reformhaus, O2, Claire's, Geox, Leonardo, Netcologne, Zwo, ht.goldkauf, eterna, Close up Shop, dm, Yves Rocher, L'OCCITANE, WMF +52 +Casimir Perier and fr:Casimir Perier, René Mouchotte and fr:René Mouchotte, Augustin Fresnel and fr:Augustin Fresnel, Amedeo Modigliani and fr:Amedeo Modigliani, Auguste Comte and fr:Auguste Comte, Camille Pissarro and fr:Camille Pissarro, Édith Piaf and fr:Édith Piaf, Eugène Delacroix and fr:Eugène Delacroix, Frédéric Chopin and fr:Frédéric Chopin, Ferdinand de Lesseps and fr:Ferdinand de Lesseps, Georges Bizet and fr:Georges Bizet, Georges Cuvier and fr:Georges Cuvier, Georges Seurat, Gilbert Bécaud and fr:Gilbert Bécaud, Guillaume Apollinaire and fr:Guillaume Apollinaire, Honoré de Balzac and fr:Honoré de Balzac, Isadora Duncan and fr:Isadora Duncan, Joseph Fourier, Jean-François Champollion and fr:Jean-François Champollion, Jim Morrison and fr:Jim Morrison, Marcel Proust and fr:Marcel Proust, Max Ernst and fr:Max Ernst, Miguel Ángel Asturias and fr:Miguel Ángel Asturias, Oscar Wilde and fr:Oscar Wilde, Dominique Vivant Denon and fr:Vivant Denon, Léon Gaumont and fr:Léon Gaumont, Louis Verneuil and fr:Louis Verneuil, Elvire Popesco and fr:Elvire Popesco, Fulgence Bienvenüe and fr:Fulgence Bienvenüe, Sadegh Hedayat and fr:Sadegh Hedayat, Léon Jouhaux, Marie Laurencin and fr:Marie Laurencin, Georges Courteline and fr:Georges Courteline, Jean Nohain and fr:Jean Nohain, Jean-Antoine Chaptal and fr:Jean-Antoine Chaptal, Victor Noir and fr:Victor Noir, Achille Zavatta, Pierre Dac, Max Ophüls, Jules Guesde, Stéphane Grappelli, Silvia Monfort and fr:Silvia Monfort, Zénobe Gramme and fr:Zénobe Gramme, Bonne Maman, Piero Gobetti, Gertrude Stein and fr:Gertrude Stein, Andranik Ozanian and fr:Andranik Ozanian, Alain and fr:Alain (philosophe), Paul Vaillant-Couturier and fr:Paul Vaillant-Couturier, Paul Éluard and fr:Paul Éluard, Maurice Thorez and fr:Maurice Thorez, Marcel Cachin and fr:Marcel Cachin, Jacques Duclos and en:Jacques Duclos, Georges Marchais and fr:Georges Marchais, Pierre Georges and fr:Pierre Georges, Christian Pineau and fr:Christian Pineau, Henri Salvador and fr:Henri Salvador, Bruno Coquatrix and fr:Bruno Coquatrix, Henri Barbusse and fr:Henri Barbusse, Adolphe Chérioux and fr:Adolphe Chérioux, Henri de Lubac, Jean Daniélou, Henri de Lubac, Jean Daniélou, Jean Langlais, Frédéric Cournet and fr:Frédéric Cournet, André Gill and fr:André Gill, Jules Joffrin, Auguste Blanqui and fr:Auguste Blanqui, Sarah Bernhardt, Jean-Louis Baudelocque, Ticky Holgado and fr:Ticky Holgado, Sophie Daumier, Daniel Toscan du Plantier, Marie Trintignant, Jacques Plante, Yves Montand et Simone Signoret, Henry de Triqueti, Marcel Mouloudji, Téo Hernandez, Alphonse Lavallée and fr:Alphonse Lavallée, Jean-Henry-Louis Greffulhe and fr:Jean-Henry-Louis Greffulhe, Eugène Scribe and fr:Eugène Scribe, Nadar, René Panhard and fr:René Panhard, Jean-Adolphe Beaucé and fr:Jean-Adolphe Beaucé, Gérard de Nerval and fr:Gérard de Nerval, Charles Crozatier and fr:Charles Crozatier, Annie Girardot and fr:Annie Girardot, Jules Michelet and fr:Jules Michelet, Maurice Merleau-Ponty and fr:Maurice Merleau-Ponty, Cino Del Duca, Pierre Cartellier, Gustave Caillebotte, Édouard Daladier and fr:Édouard Daladier, Georges Méliès and fr:Georges Méliès, Georges Enesco, Jacques-Louis David and fr:Jacques-Louis David, Jean-Charles Alphand, Jules Vallès, Louis Blanc, Pierre Brasseur, Jules Romains, François Arago, Alexandre Ledru-Rollin, Thomas Couture, Félix Faure, Alexandre Falguière, Georges Eugène Haussmann, Alfred de Musset, Gioachino Rossini, Louis Visconti, Colette, Ignace Hoff, Victor Schœlcher and fr:Victor Schœlcher, Théodore Géricault, Jean-Auguste-Dominique Ingres, Philippe Khorsand, Jean-Baptiste Camille Corot, Honoré Daumier and fr:Honoré Daumier, James Pradier and fr:James Pradier, Louis Pierre Quentin de Champcenetz, Famille d'Aboville and fr:Famille d'Aboville, Jean de La Fontaine and fr:Jean de La Fontaine, Molière and fr:Molière, Antoine Parmentier and fr:Antoine Parmentier, Jean-Jacques-Régis de Cambacérès and fr:Jean-Jacques-Régis de Cambacérès, Joachim Murat and fr:Joachim Murat, Louis-Gabriel Suchet and fr:Louis-Gabriel Suchet, Christophe-Philippe Oberkampf and fr:Christophe-Philippe Oberkampf, Jacques Nicolas Gobert and fr:Jacques Nicolas Gobert, Jean-Pierre-Louis de Fontanes, Charles-Étienne-François Ruty, Guillaume Dupuytren and fr:Guillaume Dupuytren, Malik Oussekine and fr:Affaire Malik Oussekine, Jean-François Lyotard and fr:Jean-François Lyotard, Francis Poulenc and fr:Francis Poulenc, Charles-François Lebrun and fr:Charles-François Lebrun, Étienne-Gaspard Robert and fr:Étienne-Gaspard Robert, James de Rothschild and fr:James de Rothschild, Rachel Félix and en:Rachel Félix, David Sintzheim and fr:David Sintzheim, Jacob Roblès, Pierre et Hélène Lazareff, François d'Astier de La Vigerie and fr:François d'Astier de La Vigerie, Édouard Branly and fr:Édouard Branly, Mano Solo and fr:Mano Solo, Pierre Desproges and fr:Pierre Desproges, Ignace Joseph Pleyel and fr:Ignace Joseph Pleyel, Vincenzo Bellini and fr:Vincenzo Bellini, Alexandre Brongniart and fr:Alexandre Brongniart, Jacques-Henri Bernardin de Saint-Pierre and fr:Jacques-Henri Bernardin de Saint-Pierre, Michel Petrucciani, Luigi Cherubini and fr:Luigi Cherubini, Alain Bashung, Claude Bernard and fr:Claude Bernard, Gaspard Monge, François-Vincent Raspail, François Étienne Kellermann and fr:François Étienne Kellermann, Emmanuel-Joseph Sieyès, Alphonse Daudet and fr:Alphonse Daudet, Louis Joseph Gay-Lussac and fr:Louis Joseph Gay-Lussac, Martin Michel Charles Gaudin and fr:Martin Michel Charles Gaudin, Joseph Léopold Sigisbert Hugo and fr:Joseph Léopold Sigisbert Hugo, Gaston Tissandier and fr:Gaston Tissandier, Samuel Hahnemann and fr:Samuel Hahnemann, Louis-Antoine Garnier-Pagès and fr:Louis-Antoine Garnier-Pagès, Georges Guët and fr:Monument funéraire de Georges Guët, Étienne Geoffroy Saint-Hilaire and fr:Étienne Geoffroy Saint-Hilaire, Yves du Manoir, Claude Chappe, Benjamin Constant, Michel Ney and fr:Michel Ney, Tombe du Dragon, Maximilien Sébastien Foy, Jean Anthelme Brillat-Savarin and fr:Jean Anthelme Brillat-Savarin, Claude-Henri de Rouvroy, comte de Saint-Simon and fr:Claude Henri de Rouvroy, comte de Saint Simon, André Masséna and fr:André Masséna, Louis Nicolas Davout, Madame Sans-Gêne and fr:Madame Sans-Gêne, Pierre-Augustin Caron de Beaumarchais and fr:Pierre-Augustin Caron de Beaumarchais, Anna de Noailles and fr:Anna de Noailles, Paul Barras and fr:Paul Barras, François-Antoine de Boissy d'Anglas and fr:François-Antoine de Boissy d'Anglas, Richard Wallace and fr:Richard Wallace, Juliette Dodu and fr:Juliette Dodu, Vania Vilers and fr:Vania Vilers, Aubert Lemeland and fr:Aubert Lemeland, Claude Brosset and fr:Claude Brosset, Claude Chabrol and fr:Claude Chabrol, Édith Lefel and fr:Édith Lefel, France Clidat and fr:France Clidat, Frank Alamo, Jack Vanarsky and fr:Jack Vanarsky, Karel Appel and fr:Karel Appel, Lucas Dolega, Marcel Marceau and fr:Marcel Marceau, Olivier Raoux and fr:Olivier Raoux, Patrice Chéreau and fr:Patrice Chéreau, Pierre Bourdieu and fr:Pierre Bourdieu, Roger Planchon and fr:Roger Planchon, Ugür Hüküm, Willy Rizzo and fr:Willy Rizzo, Adolphe Itasse and fr:Adolphe Itasse, Anne-François-Charles Trelliard and fr:Anne-François-Charles Trelliard, Antoine Balthazar Joseph d'André and fr:Antoine Balthazar Joseph d'André, Antoine-Marie Peyre and fr:Antoine-Marie Peyre, Charles-Joseph Panckoucke and fr:Charles-Joseph Panckoucke, Claude-Victor Perrin and fr:Claude-Victor Perrin, Désiré Dalloz and fr:Désiré Dalloz, Julien Vallou de Villeneuve and fr:Julien Vallou de Villeneuve, Laurent de Gouvion-Saint-Cyr and fr:Laurent de Gouvion-Saint-Cyr, Louis Hersent and fr:Louis Hersent, Étienne-Hippolyte Godde and fr:Étienne-Hippolyte Godde, Étienne-Jacques-Joseph Macdonald and fr:Étienne-Jacques-Joseph Macdonald, Antoine Marie Chamans de Lavalette and fr:Antoine Marie Chamans de Lavalette, Horace Say and fr:Horace Say, Jean Melchior Dabadie de Bernet and fr:Jean Melchior Dabadie de Bernet, Julien Bessières and fr:Julien Bessières, Nicolas Ponce and fr:Nicolas Ponce, Tony Noël and fr:Tony Noël, Henri Krasucki and fr:Henri Krasucki, Célestine Galli-Marié and fr:Célestine Galli-Marié, Emmanuel de Grouchy and fr:Emmanuel de Grouchy, Jean Topart and fr:Jean Topart, Vincent Ansquer and fr:Vincent Ansquer, Caroline Miolan-Carvalho and fr:Caroline Miolan-Carvalho, Charles André Pozzo di Borgo and fr:Charles André Pozzo di Borgo, Christian Fechner and fr:Christian Fechner, Ange-Marie d'Eymar and fr:Ange-Marie d'Eymar, Félix Galipaux and fr:Félix Galipaux, Georges Deherme and fr:Georges Deherme, Bazar de la Charité and fr:Bazar de la Charité, Charles Degeorge and fr:Charles Degeorge, Frédéric Soulié and fr:Frédéric Soulié, Jules Cornély and fr:Jules Cornély, Pierre Lachambeaudie and fr:Pierre Lachambeaudie, Pierre Marinovitch and fr:Pierre Marinovitch, Tony Aubin and fr:Tony Aubin, Émile Souvestre and fr:Émile Souvestre, Étienne Lamy and fr:Étienne Lamy, Vol 604 Flash Airlines and fr:Vol 604 Flash Airlines, Raymond de Sèze and fr:Raymond Desèze, Octave de Béhague and fr:Octave de Béhague, Albert Rapilly, Favard du Bourg de Bozas, Alexandre Moline de Saint-Yon, Antoine Louis Boissière and fr:Antoine Louis Boissière, Ponsat, Dubel et Guillard, Barry, Adolphe Thiers and fr:Adolphe Thiers, Élisabeth Alexandrovna Stroganoff, Allan Kardec et Amélie Gabrielle Boudet and fr:Allan Kardec, Félix de Beaujour and fr:Félix de Beaujour, René Panhard and fr:René Panhard, Héloïse et Abélard and fr:Monument funéraire d'Héloïse et Abélard +Sebastopol Grenata - 12 Rue Grenata - 75002 Paris, Plantes-Moulin Vert, Repos - 41, rue du Repos 75020 Paris, Bourdon - Boulevard Bourdon -75004 Paris, Bastille - 11 Rue de la Bastille 75004 Paris, Beaumarchais, Gaité Lyrique, Bassin de l'Arsenal, Quai de la Rapée - Face 98 Quai de la rapée - 75012 Paris, Diderot Bercy, Chabrol, Saint-Ambroise - 2 Rue Lacharrière - 75011 Paris, Montorgueil Rue Montmartre version 2, Réaumur Montorgueil, Boulainvilliers, Rue François Ponsard, Helie - 4, 6 rue Faustin Helie - 75016 Paris, Rue de Siam, Avenue Henri Martin, Abbé carton, Henri Martin, Aboukir, La Fayette Provence, Lafitte Rossini, Allée Pierre Lazareff, Conservatoire - 57 Rue des Petites Écuries - 75010 Paris, Italiens Laffite, Quatre Septembre, Petites Écuries, Gare de l'Est Saint-Laurent, Taitbout Châteaudun, Chapelle Louis Blanc, André Malraux Musée du Louvre, Bonne Nouvelle – Saint-Fiacre, Rougemont - 3 Rue Rougemont - 75009 Paris, Bonne nouvelle prop2, Cirque d'hiver, Chemin Vert Beaumarchais, Bourse, Charonne Saint-Antoine, Groult, Théatre - 60 Rue du Théâtre - 75015 Paris, Linois, Fontaine Raynouard, Porte de Passy, Bois de Boulogne / Porte de La Muette 2, Ternes Courcelles, Wagram Courcelles, Houssaye, Washington, Avia, Argentine, Friedland - Place Georges Guillaumin - 75008 Paris, Place Pigalle, Pigalle Germain Pillon, Monceau, Place de Levis, Millet - Jean de la Fontaine, Plaisance Alesia, Place Adolphe Cherioux, Convention, Rennequin pereire, Porte de Champeret, Berthier Stuart Merril, Alfred roll, Porte de Saint-Cloud, Avenue de la Porte d'Asnières, Place de Wagram, Pereire levallois, Malesherbes, Jasmin, Georges Sand, Métro Rome, Pont Cardinet, Saussure, Pereire Saussure, Legendre, Ranelagh, Octave Feuillet, Dupleix, Grenelle Violet (prop3), Molitor - Michel-Ange, Porte Molitor, Stade Français, Michel Ange, Église d'Auteuil, Galilée Kléber - 1 Rue Galilée - 75016 Paris, Chernovitz - 1 Rue Chernovitz - 75016 Paris, Sèvres Babylone - Bvd Raspail - 75007 Paris, Raspail Varenne - Boulevard Raspail - 75007 Paris, Saint-Augustin - 18 Place Henri Bergson - 75008 Paris, Rocher - 14 Rue Rocher - 75008 Paris, Messine - 2 Avenue Messine - 75008 Paris, Narvick - 54 Rue de la Bienfaisance - 75008, Malsherbes Monceau - 75 Rue de Monceau - 75008 Paris, Dublin - 1 Rue Clapeyron - 75008 Paris, Danton, Square Bela Bartok - Quai Grenelle - 75015 Paris, Emeriau - 27 Rue Emeriau - 75015 Paris, Violet, Place Etienne Pernet, Commerce, Zola, Mairie du 15ème, Rivoli Musée du Louvre, Saint-Philippe du Roule, Matignon, Square Louis XVI, Roquepine, Van Dyck, Haussmann Courcelles, Boétie Ponthieu, Colisée, Humbert, Javel, Porte Maillot, Vélib' station, Stade Charléty, Rond-Point des Champs-Élysées, 18 Boulevard d'Aurelle de Paladines - 75017 Paris, Auriol Quai de la Gare, Weiss, Chevaleret Tolbiac, Monclar, J. Dupré, Parc de Belleville, Porte des Lilas, Etienne Dolet - 29 Rue Etienne Dolet - 75020 Paris, Thorel, Bluets République - 20 Rue Guillaume Bertrand - 75011 Paris, Chemin Vert Saint-Maur - 105 Rue du Chemin Vert - 75011 Paris, Hôpital Beaujon (2), Dunant, Place Dunant, Porte de Vincennes bis, Porte de Vincennes, Porte de Saint-Mandé, Hector Malot, Gare de Lyon Châlon, Charenton Prague - 89ter rue de Charenton - 75012 Paris, Diderot, Gare de Lyon Van Gogh, Porte d'Arcueil, Saint-Germain Dante, Château de Vincennes, Ségur Estrées, Censier, Censier Buffon, Saint-Antoine Gonnet, Rue des Boulets, Pyramide Artillerie, Pyramide Entrée Parc Floral, Ivry Bruneseau, Desault - Porte de Vitry, Romain Rolland, Plaine, Saint-Jacques - Ferrus, Saint-Jacques - Tombe Issoire, Denfert-Rochereau, Cimetière de Gentilly, Mazagrand-Coubertin, Rennes Sabot, Saint-Sulpice, Saint-Germain Copeau, Malakoff-Pinard, André Maurois, Sablons Maillot, Muette Neuilly, Boucicaut Faure, Mondrian, Square des Cévennes, Citroën, Hôpital Georges Pompidou (Prop 2), Place Robert Guillemard, Vasco de Gama, Desnouettes, Rollet, Chandon, Lecourbe, Blanc, Boulevard Victor, Charonne Frot, Charonne Valles, Faidherbe Chaligny - 223 Rue du Faubourg Saint-Antoine - 75011 Paris, Nation Voltaire - 5 Place de la Nation - 75011 Paris, Ledru Rollin Basfroi, Square Nordling, Berthier Porte de Clichy, Porche Pouchet, Bodin Avenue de Clichy, Joncquière, Guy Môquet, Liège, Place de Budapest (2), Place d'Estienne d'Orves, Trinité, Place de Budapest, Saint-Lazare RER, Haussmann Rome, Victoire Chaussée d'Antin, Faubourg Saint-Honoré Anjou, Madeleine, François 1er, Alma, François 1er Lincoln, Champs-Élysées Lincoln, Place du Canada, Petit Palais, 39 rue de Bassano - 75016 Paris, Bassano, Auber, Havre Caumartin, Mathurins, Amette, Suffren Tour Eiffel, Maraichers, Maraichers, Pyrénées Vitruve, Réunion, Charonne Avron, Alexandre Dumas, Denfert-Rochereau - Cassini, Port Royal, Place Trefouel, Vaugirard - Pasteur, Saint-Maur Oberkampf - 80 rue Oberkampf 75011 Paris, Metallos - 81 bis Rue Jean-Pierre Timbaud - 75011 Paris, Saint-Maur Avenue de la République - 87 Rue Saint-Maur - 75011 Paris, Buisson Saint-Louis - 2 Rue du Buisson Saint-Louis - 75010 Paris, Sambre et Meuse - 37 Rue Sambre et Meuse - 75010 Paris, Colonel Fabien - 69 Rue de la Grange Aux Belles - 75010 Paris, Louis Blanc Prop 2 - 10 Rue Louis Blanc - 75010 Paris, Écluses Saint-Martin - 148 Quai de Jemmapes - 75010 Paris, Dodu - 1, 3 Rue des Ecluses Saint-Martin - 75010 Paris, Hôpital Saint-Louis - 12 bis Rue de la Grange Aux Belles - 75010 Paris, Jemmapes, Saint-Louis - 2 Rue Alibert - 75010 Paris, Parmentier Louvel-Tessier - 151 Avenue Parmentier - 75011 Paris, Herschel, Boulard-Daguerre, Croix Nivert, Nationale, Place d'Italie - Auriol, Italie-Rosalie, Bobillot Mery, Bobillot Verlaine, Gérando - Rochechouard, Dunkerque - Trudaine, Dunkerque - Rocroy, Place de Roubaix - Gare du Nord, Place de Roubaix - Saint-Vincent de Paul, Station Vélib' numéro 19037 / 304 Rue de Belleville, Porte des lilas, Télégraphe - 265 Rue de Belleville - 75019 Paris, Pré Saint-Gervais Version 2 - 109 Bvd Serurier - 75019 Paris, Alexander Fleming, Pré Saint-Gervais - 27 Rue du Pré Saint-Gervais - 75019 Paris, Noisy Le Sec, Léon Frapie, Conservation, Cardinal Lavigerie, Avenue de Paris - Gravelle (Charenton), Porte de Charenton, Dom Pérignon - Gravelle, Quai de la Loire - 4 Quai de la Loire - 75019 Paris, Moselle Jaurès - 6 Passage de Melun - 75019 Paris, Place de Catalogne, Beaubourg Rambuteau, Etienne Marcel - 2 Rue Turbigo - 75001 Paris, Française - 6 Rue Française - 75001 Paris, Mouchotte, Les Halles Berger - 29 Rue Berger - 75001 Paris, Les Halles Sébastopol - Rue de la Cossonnerie 75001 Paris, Les Halles Pierre Lescot - 91 Rue Rambuteau - 75001 Paris, Marguerite de Navarre, Rivoli Saint-Denis, Beaubourg Saint-Merri, Place de l'Hôtel de Ville, Lobau - 3 Rue Lobau - 75004 Paris, Turbigo - 55 Rue Turbigo - 75003 Paris, Turbigot Sainte-Elisabeth - 7 Rue Saint-Elisabeth - 75003 Paris, Jules Ferry Faubourg du Temple - Face au 28 Rue Jules Ferry - 75011 Paris, République Ferry - Face au 140 Boulevard Richard Lenoir - 75011 Paris, Jules Ferry République - Face au 141 Boulevard Richard Lenoir - 75011 Paris, Richard Lenoir Voltaire Nord, Face au 86 Boulevard Richard Lenoir - 75011 Paris, Richard Lenoir - 21 Rue Pelée - 75011 Paris, Breguet Sabin - Face au 23 Boulevard Richar Lenoir - 75011 Paris, Bastille Richard Lenoir - Face au 2 Bvd Richar Lenoir - 75011 Paris, République Pierre Levée - 1 Rue de la Pierre Levée - 75011 Paris, Parmentier - 1 Rue Jacquard - 75011 Paris, Père Lachaise - 25 Boulevard Ménilmontant - 75020 Paris, Ménilmontant Oberkampf - 137 Bvd Ménilmontant - 75011 Paris, Couronnes - 44 Bvd de Belleville - 75020 Paris, Belleville - 116 Bvd de Belleville - 75020 Paris, Belleville - 8 Bvd de la Villette - 75010 Paris, Parc de Belleville - 30 Rue Piat - 75020 Paris, Square de menilmontant, Pelleport - 121 Avenue Gambetta - 75020 Paris, Mairie du XXème - 44 Avenue Gambetta - 75020, Gambetta Père Lachaise - 11 Rue Malte Brun - 75020, Gambetta Gâtines - 13 Rue des Gâtines - 75020 Paris, Gambetta Martin Nadeau - 2 Rue Orfila - 75020 Paris, Amandiers - 55 Rue des Cendriers - 75020 Paris, Duris - 33 Rue Duris - 75020 Paris, Pyrénées - 262 Rue des Pyrénées - 75020 Paris, L'Isle Adam Pyrenées - 60 Rue Villiers de l'Isle Adam - 75020 Paris, Saint-Fargeau - 177 Avenue Gambetta - 75020 Paris, Pixérécourt - 65 Rue Pixérécourt - 75020 Paris, Belleville Pré Saint-Gervais - 195 Rue de Belleville - 75019 Paris, Jourdain - 9 Rue Lassus - 75019 Paris, Jourdain - 3 Rue Jourdain - 75020 Paris, Place des Fêtes - 17 Rue Des Fêtes - 75019 Paris, Pyrénées Version 2 - 101 Rue de Belleville - 75019 Paris, Square Bolivard, Manin Simon Bolivar - 1 Rue Manin - 75019 Paris, Buttes Chaumont - 28 Rue Botzaris - 75019 Paris, Botzaris Version 2 - Face 80 Rue Botzaris - 75019 Paris, Alouettes - 20 Rue Carducci - 75019 Paris, Danube - 53 Rue Michel Hidalgo - 75019 Paris, Manin Secretan - 31 Rue Manin - 75019 Paris, Pailleron - 6 Rue Edouard Pailleron - 75019 Paris, Bolivar - 53 Rue de Meaux - 75019 Paris, Lally Tollendal - 5 Rue Lally Tollendal - 75019 Paris, Laumière & Laumière bis - 8 Rue Petit - 75019 Paris, Euryale Dehaynin - 22 Rue Euryale Dehaynin - 75019 Paris, Lorraine - 28 Rue de Lorraine - 75019 Paris, Thionville - 24 Rue de Thionville - 75019 Paris, Bolivar Burnouf - 82 Avenue Simon de Bolivard - 75019 Paris, Belleville Rampal - 4 Rue de Rampal - 75019 Paris, République Parmentier - 82 Avenue Parmentier - 75011 Paris, Saint-Ambroise Parmentier - 17 Rue Saint-Ambroise - 75011 Paris, Boulevard Voltaire - 82 Rue Sedaine - 75011 Paris, Léon Blum Roquette - 142 Rue de la Roquette 75011 Paris, Froment Breguet - 9 Rue Froment - 75011 Paris, Rue du Commerce - 20 Rue du Commerce - 75015 Paris, Montorgueil Etienne Marcel - 32 Rue Etienne Marcel - 75002 Paris, Louvre Coq Héron - 20 Rue Coquillère - 75001 Paris, Francs-Bourgeois - 50 Rue Vieille du Temple - 75004 Paris, Mairie du 3e, Archives Pastourelle - 67 Rue des Archives -75003 Paris, Temple 113 - 76 Rue du Temple - 75003 Paris, Turenne Bretagne - 4 Rue des Filles du Calvaire - 75003 Paris, Rivoli Sebastopol - 1 Rue Saint-Bon, Archives Blancs Manteaux, Bourse du Travail - 3 Rue du Château d'Eau - 75010 Paris, Johann Strauss - 50 Rue René Boulanger - 75001 Paris, Boulevard Montmartre - 21 Rue d'Uzès - 75002 Paris, Bleue - 5 Rue Bleue - 75009 Paris, Bachaumont, Château d'Eau - 57 Rue du Château d'Eau - 75010 Paris, Saint-Sébastien Froissard - 12 Bvd des Filles du Calvaire - 75011 Paris, Temple Jean Pierre Timbaud - 18 Bvd du Temple - 75011 Paris, Temple République - 44 Bvd du Temple - 75011 Paris, Oberkampf - 1 Rue du Grand Prieuré - 75011 Paris, Parmentier Fontaine au Roi - 124 Avenue Parmentier - 75011 Paris, Goncourt - 144 Avenue Parmentier - 75011 Paris, Dodu - 12-14 Rue Claude Vellefaux - 75010 Paris, Recollets - 46 Rue Lucien Sampaix - 75010 Paris, Jacques Bonsergent, Villemin, Gare de l'Est, Verdun, Chabrol Saint-Quentin - 124 Rue du Faubourg Saint-Denis - 75010 Paris, Alban Satragne - 110 Rue du Faubourg Saint-Denis - 75010 Paris, Hittorf - Rue Hittorf - 75010 Paris, Porte Saint-Martin - 62 Rue Meslay - 75003 Paris, Strasbourg - 3 Bvd de Strasbourg - 75010 Paris, Beaubourg - 46 Rue Beaubourg - 75003 Paris, Grenier Saint-Lazare - 34 Rue Grenier Saint-Lazare - 75003 Paris, Hôtel de Ville - 1 Rue des Archives, Perle - 22 Rue de la Perle - 75003 Paris, Saint-Gilles - 26 Rue Saint-Gilles - 75003 Paris, Écouffes Rivoli, Place Monge, Dunkerque, Gare du Nord 1, Sorbonne, Saint-Jacques, Lamenais Washington, velib, velib, Palais des Sports, Porte d'Orléans, Vavin, Michelet Assas, Assas Luxembourg, Paul Doumer La Tour - 53 avenue Paul Doumer 75016 Paris, Decaen-Canebière, Lamé, Saint-Émilion, Pirogues de Bercy, Decaen, Wattignies, Reuilly, Michel Bizot, Porte de Bagnolet - 1 rue Géo Chavez 75020 Paris, Porte de Bagnolet - 102 rue Louis Lumière 75020 Paris, Fourche, Rue Louis Lumière - 68 rue Louis Lumière 75020 Paris, Hospice Debrousse - 142 rue de Bagnolet 75020 Paris, Prairie L'Indre - 2 rue de l'Indre 75020 Paris, Palais Omnisports, Baron Leroy Truffaut, Parc de Bercy, Saint-Jacques - Val de Grâce, Saint-Jacques Soufflot, Port Royal-Cochin, Saint-Marcel, Place Charles Vallin, Charles Vallin, Odessa, Raspail Schoelcher, Arago 2, Bercy, Bibliothèque François Mitterrand, Parc de Bercy - Deuxième partie, Charenton Jardinier, Station mobile 7, Île de la Cité Pont Neuf, Groult (2), Tolbiac Nationale, Saint-Michel Danton, Saint-Séverin, Sablons, Belles Feuilles, Avenue des Portugais, Montgallet Charenton, Maison de Radio France, Rue Jean Bologne, Buzenval, Place de Passy, Mirabeau, Lacuee - 17, rue Lacuée - 75012 Paris, Traversière - 76, rue Traversière - 75012 Paris, Godard, Victor Hugo Rue de la Pompe, Traktir, Poincaré Victor Hugo, Clichy, Square Roquette - 176, rue de la Roquette 75011 Paris, Philippe Auguste 20e Arr. - 212, bd de Charonne 75020 Paris, Madagascar, Dugommier, Quai François Mauriac - Tolbiac, Blanche, L'Isly, Montaigne, Bois de Boulogne / Porte de La Muette 1, Porte Dorée, Porte d'Italie, Boulevard de Denain - Lafayette, Boulevard de Denain - Gare du Nord, Place des Abbesses, Damrémont - Caulaincourt, Virage Lepic, Flandrin, Boulevard Dirderot, Crozatier, Tombe-Issoire, Porte de Choisy, Morland, Sully Morland, Village Saint-Paul, Barbès - Rochechouard, Goutte d'Or, Clignancourt - Sofia, Square Viviani, Boulevard Port Royal, Sevigné, Saint-Paul, Boulevard de l'Hopital, Nation Trône, Place de la Nation, Rue montgallet, Rue Pau Casals, Maryse Bastié, Porte de Versailles, Hôpital Bichat, Porte de Saint-Ouen, Rue Moncey, 13 Place Balard, Italie Tolbiac, Parc de Choisy, Gare d'Austerlitz 2, Choisy Vistule, Choisy Point d'Ivry, Dareau, Charenton, renan, Matignon, Italie Maison Blanche, 28 RUE J.B.PIGALLE, FACE 112 BOULEVARD DE ROCHECHOUART, Stade Georges Carpentier, Place du Docteur Yersin, Porte d'Ivry, Italie, Ternes pereire, Vélib': 112 av Felix Faure, 75015, Rue Chabanais, Metz - 7 Rue de Metz - 75010 Paris, Orteaux, Davout Vitruve, Saint-Germain Harpe, Saint-Michel Sarrazin, Marché Saint-Germain - Mabillon, Odéon Quatre Vents, Quai Malaqais, Gare de Lyon - Parvis, Rue du Cherche-Midi, Guynemer luxembourg, Montparnasse Chevreuse, Gare d'Austerlitz, Cléry, Jourdan le Brix et Mesnin, Courcelles, Jourdan Tombe d’Issoire, Rivoli - Mairie du 1er, Temple de l'Oratoire, Rue Notre-Dame des Champs, Gare de Paris-Bercy, Louis Blanc, Aqueduc, Rue de Richelieu, Mouffetard Saint-Médard, Gide, Charles Hermite, Chapelle Marx Dormoy, Rue Thérese, Rue Daniel Casanova, Herbert, Rue de la Chapelle, Carpeaux, Clignancourt Marcadet, Evangile, Poissonniers Ordener, Binet, Station Velib' Simplon, Francis de Croisset, Tardieu, Feliz Ziem, Doudeauville Stephenson, Ruisseau Ordener, Station Velib' Moskowa, Square Léon, Rond-Point de la Chapelle, Ganneron, Doudeauville Leon, Ruisseau, Porte Montmartre, Joseph de Maistre - Lepic, Marx Dormoy, Station Velib' Championnet, Pecqueur, Saint-Ouen Lamarck, Chartres, Barbès Marcadet, Lepic Veron, Station Velib' Poteau, Département, Montcalm, Mairie du 18e (Velib), Riquet Pajol, Porte de Clignancourt, Station Velib' Albert Kahn, Amiraux, Marché Saint-Pierre, Château Rouge, Damrémont Ordener, Leibniz, Lépine, Eole, Francoeur Caulaincourt, Béliard Poissonniers, Custine, Marcadet - Ramey, Vauvenargues, Orteaux Mouraud, Notre-Dame - 75004 Paris, 1 quai aux Fleurs - 75004 Paris, Belfort, rue de Bercy, Rue Henri Barboux, Rue Sarette, Alleray, Dutot, Rue Lamartine, Léon Frot - Alexandre Dumas, Vélib' bicycle rental, Porte de Villiers, Avenue de ternes, Vélib' station, Place du Bataillon Français de l'ONU, Chatelet - 14 AVENUE VICTORIA, Boulevard Jourdan, Avenue Rene Coty, Velib Rue Pierre Demours, Rue Choron, Tour d'Auvergne, velib, Glacière, Italie - Tolbiac, Marchand Santé, 9104 - CAUMARTIN PROVENCE, Boussingault - Tolbiac, Tolbiac - Wurtz, Faubourg Saint-Jacques - Cassini, Porte d'Italie, Rue de la Fonataine a Mulard, Rue Brillat Savarin, Rue Bobillot, Rue de la Butte aux Cailles, Rue du Docteur Leray et Landouzy, Boulevard Auguste Blanqui, Rue de Croulebarbe, Avenue des Gobelins, Rue Saint-Séverin, Place Louis Lépine, Rue Saint-Honoré, Place André Malraux, Rue de la Banque, Rue d'Aboukir, Rue Liard, Avenue de la Sibelle, Rue d'Assas, Rue Gouthière, Rue Taitbout, Rue de Provence, Rue Louis Le Grand, Rue d'Assas, Rue de la Convention, Rue de la Convention, Boulevard Garibaldi, Rue de l'Ouest, Rue Mouton Duvernet, Rue de Cordelières, Rue Le Brun, Rue Bruant, Rue Leredde, Rue du Regard, 84 Rue de la Fédération, 42 allée Vivaldi, Château landon, Vinaigriers - 58 Rue des Vinaigriers - 75010 Paris, Gaité, Station Mobile 6, Rue Lauriston, 2 rue Lacépède, Roland Barthes, Saint-Fargeau, Hauteville - Bonne Nouvelle, Boutroux -Porte de Vitry, Stade Didot, Rue de Londres, Guy Môquet, Vivienne, Clichy Parme, Manin hautpoul, Velib', Station Velib, Pyrenees ermitage, Legrendre - Rome, Procession, 19011, Vélib-19008, 19011, avenue Marceau, Télégraphe - 265 Rue de Belleville - 75019 Paris, Velib', Vercingetorix, Jacques Callot, Pont de Lodi, rue Saint-Benoit, Saint-pères, velib-19033, Menilmontant Boyer, Vélib Station n°15026, station Velib 5012, Aubervilliers, 89 Boulevard de l'Hôpital, République - Faubourg du Temple, République - Rue du Temple, Hôpital Georges Pompidou, 9 Rue Coquillère, Mendes France, Paris Bike Tour, Station n° 17024, Dauphine, Porte de la Chapelle, Hôpital Saint-Louis - 12 bis Rue de la Grange Aux Belles - 75010 Paris, Alexandre Charpentier, Chapelle, Courteline, Beaugrenelle, 55 Bd Arago, La Pitié-Salpetrière, Favart, Drouot - Grange Batelière, Station no. 15048 PLACE AMEDEE GIORDANI, Daumesnil, Gare saint lazare - cour du havre, Frodevaux, INSEP, Rio, V'lib, Barruel - Vaugirard, Volontaires, Caire Dussoubs, 12 rue cité Riverin / angle rue du Château d'Eau, Montempoivre, Sahel, 2 rue Haxo - 75020 Paris, 1 rue Vidal de la Blache / Angle 78 boulevard Mortier - 75020 PARIS, Philippe Auguste, Batignolles, Beaubourg-Place Michelet, Bel Air, Bizot, Bourdelle, Brancion, Brune, Champt de Mars - Suffren, Chaptal, Desaix, Espace Champerret, Falguière Lebrun, Gare d'Austerlitz, Gare du Montparnasse, Mac Mahon, Mahatma Gandhi, Mairie du 4ème, Mazet - Saint-André des Arts, Mutualité, Mézières Rennes, Nicaragua, Place Fernad Mourlot, Place de la Réunion, Quai Maurica - Pont de Bercy, Raspail Quinet, Saint-Placide - Cherche Midi, Square Berlioz, Trudain - Martyrs, Vaillant Couturier, Vaugirard - Desgoffe, Vaugirard, Wagram, Écoles Carmes, Sèvres Lecourbe, Alésia-Gergovie, Vaillant-Couturier, Raymond Losserand, Raymond Losserand, Beaubourg place michelet, Sébastopol Rambuteau +1 +http://ottawa-laurier.visio-tools.com/, http://laurier.montreal.visio-tools.com/, http://portagebridge.ottawa.visio-tools.com/, http://www.eco-public.com/public2/?id=100117730, http://legacytrail.canmore.visio-tools.com/, http://contador-ciclista-reforma-222-ciudad-de-mexico.visio-tools.com/, http://www.eco-public.com/public2/?id=100117729, http://madison-monroe.visio-tools.com/, http://portagebridge.ottawa.visio-tools.com/, http://eco-public.com/public2/?id=100005630, http://www.eco-public.com/public2/?id=100117683, http://totem-eb-market.sanfrancisco.visio-tools.com/, http://ucla-strathmore-bike-counter.visio-tools.com/, http://boulder13th.visio-tools.com/, http://www.eco-public.com/public2/?id=100117726, http://portland-hawthorne-bridge.visio-tools.com/ +yes +22 and 48.1280556 11.6085449, 48.1638085 11.4878310, 48.1330014 11.6896930, 48.1369439 11.6212658, 48.1326620 11.5460069, 48.1532363 11.5375666, 48.1333644 11.5280883, 48.1563136 11.5749819, 48.1446564 11.5577649, 48.1560591 11.5549218, 48.1875182 11.5531779, 48.1857331 11.5728826, 48.0883280 11.5050421, 48.1890971 11.5738285, 48.1893184 11.5703479, 48.1594532 11.5568430, 48.1859274 11.5581572, 48.1769117 11.5574620, 48.1732462 11.5324016, 48.1326162 11.5725116, 48.1243551 11.5828982, 48.1175192 11.6018298 +40 +3291 +46.3554455 -0.6680522, 46.3458003 -0.6849917, 48.0169900 0.1529468, 48.1846137 0.6536841, 48.1857639 0.6528687, 48.1853805 0.6538558, 48.1877586 0.6535933, 47.2661765 -0.5769410, 47.0326315 -0.6067364, 46.9193815 -0.8487945, 47.8885629 -0.2360682, 47.9936287 0.1902660, 47.2001295 -0.0915538, 47.1129029 -0.6325854, 48.2195485 0.6367839, 47.5306968 -0.1184749, 48.0660784 -0.1560527, 48.2411687 -0.6198366, 46.3702547 -0.7025105, 46.5229325 -0.7565522, 46.4677815 -0.7739333, 48.4390727 -0.1176280, 48.1829382 -0.3020747, 48.3582544 -0.1919164, 47.4710760 -0.5444181, 48.0411951 -0.0567503, 47.2661676 -0.5769699, 47.3873095 0.0786502, 48.0991378 0.7992432, 48.0238361 0.2048137, 47.2451626 -0.7699908 +63 +Regard de la Roquette, Thermes de Cluny, L'enceinte de Philippe Auguste, Cavea des Arènes de Lutèce +55.9351932 -3.1010341, 55.9501318 -3.1886125, 55.9623636 -3.1790432, 55.9713786 -3.1713983, 55.9708769 -3.1716878 +79 +55.9517532 -3.2076351, 55.9496628 -3.2139285, 55.9552766 -3.2114803, 55.9554958 -3.1128963, 55.9460715 -3.1853558, 55.9544334 -3.1796645, 55.9229935 -3.1644934, 55.9475112 -3.1927420, 55.9439779 -3.2072434, 55.9747267 -3.1909731, 55.9519777 -3.1041094, 55.9228448 -3.1879796, 55.9046953 -3.2387239, 55.9420318 -3.2003269, 55.9472228 -3.1971414, 55.9822842 -3.1767544, 55.9250719 -3.2093337, 55.9488817 -3.1964228, 55.9308499 -3.2092267, 55.9400832 -3.2183795, 55.9534279 -3.1783218, 55.9325864 -3.1383719, 55.9509906 -3.2723561, 55.9571047 -3.1371623, 55.9523683 -3.1932627, 55.9533745 -3.1858363, 55.9109094 -3.2176755, 55.9613185 -3.1710995, 55.9382728 -3.1931630, 55.9371945 -3.2067011, 55.9350483 -3.2011995, 55.9531736 -3.2075942, 55.9529685 -3.1955978, 55.9542067 -3.1931470 +0 +48.8613883 2.3754494, 48.8509963 2.3562136, 48.8427294 2.2921898, 48.8478611 2.4055458, 48.8591224 2.3472049, 48.8579572 2.3466352, 48.8446646 2.2770880, 48.8205827 2.3643748, 48.8232673 2.3541002, 48.8821978 2.3665612, 48.8548653 2.3258711, 48.8266940 2.3666020, 48.8525740 2.3134937, 48.8329552 2.3629170, 48.8347564 2.3296964, 48.8328155 2.3261603, 48.8303096 2.3567278, 48.8318948 2.3202576, 48.8388247 2.3221905 +49.4052183 8.7807063, 49.4109969 8.7018271 +yes +yes +1952, 1978 +7 +23 +129 +44 and 53.9900182 -1.1048507, 54.0109332 -1.0814973, 53.9695593 -1.1044687, 53.9783035 -1.1064726, 53.9659202 -1.1066465, 53.9852880 -1.1561727, 54.0307341 -1.0382265, 53.9755492 -1.0707896, 54.0107556 -1.0814518, 53.9863055 -1.1105767, 54.0146884 -1.0718957, 53.9877014 -1.1050782, 53.9871551 -1.0474167, 53.9859898 -1.0651562, 53.9990117 -1.1284252, 54.0411661 -1.0300613, 54.0118558 -1.0595910, 53.9793720 -1.0633348, 53.9673959 -1.0714738, 53.9874393 -1.1204313, 53.9868873 -1.1220633, 53.9776740 -1.0644274, 53.9731081 -1.0720236, 53.9728750 -1.0718855, 53.9891412 -1.0750065, 53.9697935 -1.0788931, 54.0031479 -1.0620491, 53.9761008 -1.0866567, 54.0086708 -1.0590792, 53.9771511 -1.1335660, 53.9679082 -1.0462940, 53.9787147 -1.0614117, 53.9675172 -1.0774716, 54.0175617 -1.0838151, 53.9955927 -1.0554353, 53.9872557 -1.1137428, 53.9773826 -1.0941901, 53.9781054 -1.0952493, 53.9719535 -1.0928503, 53.9799100 -1.0663846, 53.9735958 -1.2046224, 53.9663972 -1.1227394, 53.9838702 -1.1222527, 53.9889063 -1.1110964 +yes and 49.4318310 8.6836270, 49.4121450 8.6987768, 49.4124170 8.7010302, 49.4128441 8.7033505, 49.4269801 8.6859008, 49.4105855 8.7141628, 49.4220959 8.6571134, 49.4121181 8.6777333, 49.3881014 8.6984145, 49.4073511 8.6950858, 49.4067775 8.6875474, 49.4072453 8.6935383, 49.3832213 8.6907187, 49.4111661 8.7179791, 49.4093634 8.6798229, 49.4097101 8.7003135, 49.3894911 8.6886503, 49.4210818 8.6584912, 49.4153769 8.7011671, 49.3990263 8.6893550, 49.4047822 8.6792564, 49.4053466 8.6826194, 49.4039594 8.6787735, 49.4043672 8.6800807, 49.3879387 8.7393372, 49.4141047 8.7179330, 49.4107561 8.6925391, 49.4255204 8.6463717, 49.4279410 8.6825955, 49.3766255 8.7047203, 49.4087768 8.6688678, 49.4085477 8.6698841, 49.4093244 8.6714826, 49.3863330 8.6986191, 49.4061925 8.7091454, 49.4137983 8.6515848, 49.4285005 8.6860866, 49.4240113 8.6489002, 49.4117904 8.7026026, 49.4022061 8.6448435, 49.4119136 8.6685624, 49.4270098 8.6876362, 49.3725953 8.6872497, 49.4099780 8.7146811, 49.4263576 8.6874187, 49.3739094 8.6903811 +yes +48.8660027 2.3646613, 48.8573191 2.3660431, 48.8580708 2.3643313, 48.8577996 2.3607146, 48.8483622 2.3739893, 48.8648222 2.3475072, 48.8609918 2.3544137, 48.8557612 2.3561274, 48.8533876 2.3620076, 48.8575825 2.3562566, 48.8577181 2.3586116, 48.8555902 2.3628384, 48.8437435 2.3544856, 48.8498300 2.3549148, 48.8446680 2.3483159, 48.8705409 2.3532213, 48.8711564 2.3649322, 48.8755778 2.3590863, 48.8759060 2.3588881, 48.8727960 2.3635124, 48.8635832 2.3671683, 48.8660128 2.3794462, 48.8638332 2.3670685, 48.8679153 2.3737355, 48.8656744 2.3707975, 48.8683924 2.3793396, 48.8645151 2.3730525, 48.8679409 2.3754781, 48.8554631 2.3741053, 48.8533962 2.3787654, 48.8554359 2.3744522, 48.8533316 2.3759759, 48.8561021 2.3751898, 48.8667776 2.3826288, 48.8450730 2.3795209, 48.8263535 2.3601541, 48.8264524 2.3594353, 48.8346687 2.3775990, 48.8278970 2.3505521, 48.8234665 2.3685489, 48.8596461 2.3534386, 48.8449146 2.3734371, 48.8523799 2.4036853, 48.8795968 2.3519355, 48.8544589 2.4006544, 48.8475463 2.3713427, 48.8673444 2.3739608, 48.8631427 2.3877152, 48.8570811 2.3559832, 48.8527753 2.4059315, 48.8551966 2.4016334, 48.8540343 2.4058858, 48.8693629 2.3549762, 48.8692952 2.3553367, 48.8461967 2.3783357, 48.8672098 2.3654644, 48.8667808 2.3656961, 48.8684771 2.3626799, 48.8666678 2.3662969, 48.8658039 2.3707172, 48.8657085 2.3712657, 48.8655987 2.3744866, 48.8630511 2.3852954, 48.8780431 2.3720976, 48.8360044 2.3574926, 48.8237611 2.3626525, 48.8477733 2.3484340, 48.8415272 2.3511512, 48.8718873 2.3570864, 48.8288139 2.3506397, 48.8566933 2.4002542, 48.8374507 2.3523064, 48.8334069 2.3555105, 48.8537402 2.4056302, 48.8538057 2.4056125, 48.8484568 2.3995601, 48.8478160 2.3975417, 48.8828817 2.3596543, 48.8641353 2.3676323, 48.8743115 2.3756487, 48.8882137 2.3785003, 48.8723344 2.3492288, 48.8514886 2.3986829, 48.8630061 2.3625592, 48.8628927 2.3617428, 48.8528282 2.4062488, 48.8474511 2.3483430, 48.8880361 2.3910565, 48.8518792 2.3487076, 48.8621883 2.3485126, 48.8696045 2.3711651, 48.8718241 2.3676242, 48.8719097 2.3674864, 48.8664224 2.3652804, 48.8663460 2.3644859, 48.8674473 2.3626414, 48.8675118 2.3625438, 48.8652993 2.3734818, 48.8639802 2.3867074, 48.8642946 2.3862990, 48.8662357 2.3840946, 48.8667100 2.3812708, 48.8661982 2.3800386, 48.8650645 2.3775756, 48.8657840 2.3770479, 48.8661962 2.3766789, 48.8669356 2.3763865, 48.8680369 2.3754008, 48.8676267 2.3787920, 48.8598744 2.3476273, 48.8514969 2.3476094, 48.8378680 2.3520336, 48.8491407 2.3785568, 48.8467150 2.3839386, 48.8479594 2.3771753, 48.8468326 2.3790947, 48.8509991 2.3778569, 48.8484434 2.3726021, 48.8490503 2.3712312, 48.8477004 2.3736634, 48.8500663 2.3739032, 48.8447706 2.3779554, 48.8451286 2.3836536, 48.8541173 2.3674450, 48.8622962 2.3522413, 48.8645230 2.3550690, 48.8627431 2.3531218, 48.8628573 2.3522080, 48.8613333 2.3538187, 48.8489304 2.3762840, 48.8462620 2.3786885, 48.8453283 2.3813011, 48.8446037 2.3833732, 48.8477398 2.3888781, 48.8476122 2.3930340, 48.8420168 2.3896839, 48.8367142 2.3522749, 48.8296427 2.3513003, 48.8681798 2.3714175, 48.8275755 2.3532310, 48.8748569 2.3825637, 48.8742269 2.3755468, 48.8664641 2.3722308, 48.8361883 2.4001628, 48.8361733 2.3992550, 48.8355057 2.3978609, 48.8381280 2.3966112, 48.8385750 2.3962263, 48.8644029 2.4080476, 48.8360911 2.4057236, 48.8400454 2.3808140, 48.8399906 2.3811474, 48.8347357 2.3876562, 48.8396394 2.3801031, 48.8394044 2.3805434, 48.8465303 2.3834704, 48.8463112 2.3834371, 48.8396241 2.4024373, 48.8477533 2.3981316, 48.8485668 2.3983079, 48.8514297 2.3722999, 48.8544625 2.3823250, 48.8507756 2.3816053, 48.8464081 2.3717860, 48.8367172 2.3924117, 48.8366661 2.3926576, 48.8366787 2.3933514, 48.8440901 2.3896786, 48.8432477 2.3892875, 48.8450283 2.3826090, 48.8453967 2.3826032, 48.8470342 2.3868537, 48.8469567 2.3869061, 48.8466891 2.3824558, 48.8467101 2.3827554, 48.8508333 2.3797344, 48.8494049 2.3783024, 48.8481949 2.3766544, 48.8482849 2.3767134, 48.8498295 2.3739314, 48.8456109 2.3933509, 48.8410573 2.3873134, 48.8478582 2.3735429, 48.8483197 2.3742134, 48.8462275 2.3737111, 48.8458407 2.3720988, 48.8459184 2.3726478, 48.8484256 2.3742938, 48.8491474 2.3746104, 48.8471402 2.3725177, 48.8490161 2.3747617, 48.8470772 2.3727405, 48.8475609 2.3752480, 48.8459741 2.3725698, 48.8459507 2.3730386, 48.8458244 2.3719271, 48.8464620 2.3718673, 48.8501253 2.3762844, 48.8493623 2.3902888, 48.8497475 2.3788828, 48.8468146 2.3805349, 48.8442266 2.3492264, 48.8252128 2.3624715, 48.8251313 2.3623868, 48.8248667 2.3622623, 48.8693591 2.3567215, 48.8687850 2.3594780, 48.8462167 2.3753959, 48.8460708 2.3770013, 48.8458252 2.3749543, 48.8469247 2.3730534, 48.8472565 2.3708817, 48.8471819 2.3707631, 48.8467280 2.3702882, 48.8465554 2.3692393, 48.8463534 2.3689294, 48.8456188 2.3700692, 48.8453198 2.3707747, 48.8457141 2.3704736, 48.8905909 2.3820031, 48.8920861 2.3792943, 48.8922518 2.3794780, 48.8487705 2.3484391, 48.8488367 2.3472494, 48.8759394 2.3585316, 48.8522230 2.3849242, 48.8510651 2.3842956, 48.8525445 2.3847726, 48.8452457 2.3838856, 48.8239780 2.3622896, 48.8368051 2.3525786, 48.8524629 2.4041332, 48.8576438 2.3546760, 48.8577293 2.3547383, 48.8578549 2.3549208, 48.8343850 2.3935686, 48.8331731 2.3864450, 48.8330278 2.3862477, 48.8330119 2.3635033, 48.8322800 2.3612312, 48.8331196 2.3540446, 48.8321701 2.3590298, 48.8319327 2.3582100, 48.8330825 2.3614982, 48.8332640 2.3561912, 48.8321364 2.3546768, 48.8355997 2.3589131, 48.8353091 2.3587223, 48.8534095 2.3799147, 48.8723362 2.3823271, 48.8253500 2.3613456, 48.8392195 2.3712618, 48.8321878 2.3587424, 48.8375411 2.3916661, 48.8830692 2.3825494, 48.8839003 2.3840684, 48.8590672 2.3498178, 48.8671282 2.3756094, 48.8496002 2.3981379, 48.8528829 2.3864220, 48.8530453 2.3745559, 48.8479680 2.3710745, 48.8485260 2.3720544, 48.8504050 2.3701018, 48.8517234 2.3993213, 48.8652131 2.3628703, 48.8649450 2.3550985, 48.8646517 2.3565127, 48.8646274 2.3569545, 48.8650523 2.3569392, 48.8730352 2.3796739, 48.8461025 2.3834255, 48.8878588 2.3596648, 48.8472505 2.3480517, 48.8583659 2.3474922, 48.8542020 2.3503178, 48.8599442 2.3474167, 48.8601724 2.3488956, 48.8603586 2.3484772, 48.8619643 2.3491461, 48.8625821 2.3483927, 48.8635373 2.3490562, 48.8631582 2.3498973, 48.8629810 2.3484703, 48.8744252 2.3738880, 48.8496754 2.3496176, 48.8647371 2.3502921, 48.8696741 2.3519506, 48.8703899 2.3484689, 48.8518091 2.3568234, 48.8519507 2.3561108, 48.8527730 2.3537103, 48.8555040 2.3574259, 48.8590577 2.3501929, 48.8593929 2.3493115, 48.8583173 2.3517204, 48.8595480 2.3490548, 48.8616594 2.3501884, 48.8794020 2.3884400, 48.8274198 2.3518171, 48.8572208 2.3551092, 48.8571117 2.3550358, 48.8571384 2.3549764, 48.8572463 2.3550135, 48.8568296 2.3551652, 48.8569458 2.3554337, 48.8646409 2.3536613, 48.8635758 2.3531607, 48.8636089 2.3534360, 48.8640159 2.3502075, 48.8581626 2.3561038, 48.8599753 2.3568642, 48.8579512 2.3567221, 48.8564037 2.3572215, 48.8569706 2.3578174, 48.8570944 2.3576266, 48.8573873 2.3589592, 48.8575151 2.3587307, 48.8580313 2.3580479, 48.8574097 2.3590501, 48.8422251 2.3519017, 48.8259202 2.3471664, 48.8569391 2.3587226, 48.8562824 2.3592731, 48.8562386 2.3592343, 48.8558049 2.3600410, 48.8402209 2.3517797, 48.8555549 2.3612781, 48.8559169 2.3603985, 48.8556266 2.3621786, 48.8554988 2.3630222, 48.8550149 2.3631694, 48.8556083 2.3627374, 48.8552888 2.3629682, 48.8553171 2.3630156, 48.8552064 2.3625817, 48.8557023 2.3630589, 48.8555544 2.3581927, 48.8549470 2.3612543, 48.8557611 2.3570094, 48.8556412 2.3606593, 48.8260343 2.3476244, 48.8540797 2.3659063, 48.8562566 2.3646932, 48.8539723 2.3672909, 48.8549472 2.3633131, 48.8537619 2.3675235, 48.8549776 2.3673407, 48.8540510 2.3686163, 48.8538949 2.3685489, 48.8554539 2.3579276, 48.8548402 2.3583739, 48.8551687 2.3602451, 48.8543977 2.3599670, 48.8521583 2.3613070, 48.8525480 2.3641850, 48.8532015 2.3640647, 48.8544815 2.3628958, 48.8536886 2.3643812, 48.8545334 2.3627527, 48.8539861 2.3622411, 48.8519412 2.3645366, 48.8498781 2.3644772, 48.8477690 2.3654853, 48.8626959 2.3521061, 48.8619134 2.3509953, 48.8671336 2.3577810, 48.8645093 2.3542545, 48.8644805 2.3545447, 48.8646620 2.3539239, 48.8644591 2.3546214, 48.8682730 2.3614921, 48.8674734 2.3577982, 48.8661285 2.3594408, 48.8655917 2.3595983, 48.8651109 2.3571532, 48.8649701 2.3570435, 48.8751228 2.3939970, 48.8724707 2.3776998, 48.8717657 2.3765997, 48.8714128 2.3768852, 48.8189632 2.3613966, 48.8208495 2.3637354, 48.8235845 2.3656863, 48.8262413 2.3615997, 48.8237603 2.3652263, 48.8613715 2.3542463, 48.8614471 2.3583969, 48.8628432 2.3600037, 48.8637749 2.3607964, 48.8638993 2.3606178, 48.8635375 2.3610562, 48.8649528 2.3628140, 48.8648961 2.3629259, 48.8652889 2.3632073, 48.8651842 2.3631892, 48.8647607 2.3633251, 48.8660249 2.3647181, 48.8663091 2.3639231, 48.8636551 2.3631224, 48.8636998 2.3626132, 48.8630524 2.3640855, 48.8621981 2.3629228, 48.8617499 2.3623904, 48.8622881 2.3631634, 48.8620347 2.3635571, 48.8639888 2.3639782, 48.8615020 2.3620520, 48.8449381 2.3496655, 48.8594649 2.3600214, 48.8602716 2.3621222, 48.8577749 2.3606479, 48.8590981 2.3594568, 48.8526479 2.3470482, 48.8615090 2.3660863, 48.8617960 2.3778943, 48.8624536 2.3800165, 48.8560432 2.3669557, 48.8559327 2.3681748, 48.8881390 2.3534840, 48.8636510 2.3505320, 48.8643222 2.3548396, 48.8644140 2.3547850, 48.8382008 2.3515664, 48.8651140 2.3778720, 48.8821123 2.3666359, 48.8790715 2.3649117, 48.8792180 2.3665493, 48.8820420 2.3678327, 48.8820491 2.3660464, 48.8818956 2.3658787, 48.8782055 2.3656749, 48.8788300 2.3662059, 48.8815137 2.3659229, 48.8777011 2.3652544, 48.8803699 2.3667330, 48.8808723 2.3646162, 48.8760311 2.3700774, 48.8610786 2.3535904, 48.8417641 2.3556159, 48.8429787 2.3633417, 48.8359676 2.3585104, 48.8536730 2.3797768, 48.8671314 2.3577761, 48.8668458 2.3586800, 48.8668914 2.3584627, 48.8670160 2.3581568, 48.8670538 2.3582562, 48.8668315 2.3590233, 48.8668006 2.3582106, 48.8647030 2.3567983, 48.8647921 2.3568339, 48.8643639 2.3541873, 48.8668939 2.3583012, 48.8668657 2.3585775, 48.8801119 2.3535250, 48.8487629 2.3975462, 48.8685624 2.3685743, 48.8690249 2.3683671, 48.8632239 2.3566007, 48.8685290 2.3895370, 48.8396584 2.3567615, 48.8706337 2.3954670, 48.8710202 2.3789233, 48.8788328 2.3896914, 48.8600728 2.4041262, 48.8597085 2.4049673, 48.8583918 2.4006119, 48.8390096 2.3532786, 48.8389664 2.3530576, 48.8384933 2.3512141, 48.8614760 2.3530830, 48.8885830 2.3930712, 48.8831626 2.3618001, 48.8829824 2.3614134, 48.8827589 2.3595149, 48.8835628 2.3609310, 48.8733935 2.3902484, 48.8739298 2.3893471, 48.8821165 2.3636110, 48.8787523 2.3641791, 48.8775739 2.3642408, 48.8800819 2.3647141, 48.8801565 2.3594651, 48.8827513 2.3591491, 48.8797114 2.3574553, 48.8804717 2.3578445, 48.8784279 2.3643183, 48.8826930 2.3668426, 48.8193723 2.3655267, 48.8702381 2.3689388, 48.8827554 2.3649189, 48.8296146 2.3822728, 48.8296210 2.3809399, 48.8282637 2.3802920, 48.8314453 2.3762846, 48.8802074 2.3638169, 48.8828408 2.3670033, 48.8831548 2.3679716, 48.8397936 2.3818812, 48.8799198 2.3624384, 48.8801632 2.3624358, 48.8490162 2.3701002, 48.8740698 2.3727422, 48.8498772 2.3811118, 48.8495091 2.3797387, 48.8463681 2.3733407, 48.8542991 2.3674061, 48.8538841 2.3681040, 48.8479223 2.3736079, 48.8445537 2.3572323, 48.8438344 2.3546970, 48.8951764 2.3824259, 48.8801236 2.3667122, 48.8799930 2.3669160, 48.8815607 2.3646012, 48.8286456 2.3651923, 48.8604747 2.3677991, 48.8505335 2.3887324, 48.8453467 2.3836640, 48.8369274 2.3592628, 48.8513298 2.3837511, 48.8707796 2.3732614, 48.8709201 2.3740599, 48.8710092 2.3742679, 48.8592147 2.3578986, 48.8475082 2.3756380, 48.8866286 2.3612403, 48.8463464 2.3945644, 48.8559760 2.3666852, 48.8485371 2.3779078, 48.8511475 2.3804023, 48.8515005 2.3480197, 48.8505010 2.3475831, 48.8656690 2.3706000, 48.8663775 2.3472549, 48.8485654 2.3482310, 48.8496798 2.3526713, 48.8515559 2.3496810, 48.8472106 2.3483382, 48.8471676 2.3484712, 48.8575636 2.3501179, 48.8430338 2.3494597, 48.8431709 2.3494420, 48.8428285 2.3484260, 48.8450551 2.3490236, 48.8455001 2.3492453, 48.8449589 2.3493182, 48.8452352 2.3492038, 48.8453933 2.3492411, 48.8452357 2.3490360, 48.8451938 2.3492149, 48.8449425 2.3498446, 48.8449041 2.3498515, 48.8384619 2.3563683, 48.8384169 2.3562199, 48.8387726 2.3573303, 48.8395766 2.3564711, 48.8608198 2.3503260, 48.8558414 2.3601168, 48.8580164 2.3612756, 48.8603491 2.3508475, 48.8841171 2.3650610, 48.8359122 2.3596749, 48.8507370 2.3741124, 48.8499922 2.3740320, 48.8516089 2.3778622, 48.8503505 2.3762126, 48.8465347 2.3810262, 48.8452145 2.3770818, 48.8247155 2.3622282, 48.8245453 2.3629329, 48.8217881 2.3649842, 48.8299382 2.3626544, 48.8567106 2.3947298, 48.8717034 2.3766791, 48.8516581 2.3996110, 48.8512398 2.3832978, 48.8502779 2.3906229, 48.8502002 2.3918245, 48.8507491 2.3956735, 48.8657517 2.3712388, 48.8655880 2.3691209, 48.8399742 2.3934259, 48.8366296 2.4029905, 48.8385089 2.3991495, 48.8426310 2.3854954, 48.8347163 2.4076218, 48.8390560 2.3924535, 48.8378894 2.3906889, 48.8397585 2.3884230, 48.8390438 2.3923714, 48.8470660 2.3954688, 48.8714920 2.3541352, 48.8774236 2.4101645, 48.8458069 2.3492233, 48.8791462 2.3541109, 48.8796589 2.3543864, 48.8734790 2.3750462, 48.8732283 2.3745203, 48.8605552 2.3544304, 48.8503634 2.3868517, 48.8726908 2.3752657, 48.8674203 2.3758861, 48.8682312 2.3751770, 48.8655345 2.3775152, 48.8693522 2.3713516, 48.8692142 2.3714534, 48.8694819 2.3712557, 48.8673820 2.3728092, 48.8673041 2.3731992, 48.8333957 2.3653856, 48.8678500 2.3687750, 48.8649857 2.3752785, 48.8660987 2.3722759, 48.8609387 2.3678708, 48.8633327 2.3688747, 48.8633817 2.3689965, 48.8663125 2.3723460, 48.8649676 2.3711282, 48.8661552 2.3797640, 48.8656909 2.3777859, 48.8639261 2.3703310, 48.8670939 2.3749249, 48.8639860 2.3704728, 48.8646935 2.3723809, 48.8644002 2.3730285, 48.8677794 2.3780026, 48.8646865 2.3738115, 48.8646004 2.3751995, 48.8674715 2.3750082, 48.8632185 2.3775523, 48.8637330 2.3792298, 48.8546701 2.3693933, 48.8254617 2.3652375, 48.8826774 2.3602875, 48.8555583 2.3708327, 48.8569621 2.3721314, 48.8567777 2.3726141, 48.8558410 2.3721540, 48.8545648 2.3719500, 48.8536042 2.3707268, 48.8538783 2.3707951, 48.8546993 2.3708799, 48.8345104 2.3934103, 48.8455102 2.3829497, 48.8553433 2.3747935, 48.8538434 2.3724806, 48.8418339 2.3497835, 48.8549268 2.3539661, 48.8570588 2.3798634, 48.8524031 2.3825246, 48.8958659 2.3827194, 48.8303551 2.3540212, 48.8546913 2.3857584, 48.8594440 2.3503990, 48.8594790 2.3504550, 48.8503931 2.3688912, 48.8506208 2.3689945, 48.8493300 2.3749472, 48.8224620 2.3587564, 48.8502257 2.3782954, 48.8503235 2.3783645, 48.8495013 2.3784402, 48.8850543 2.3872280, 48.8401706 2.3924398, 48.8290910 2.3744112, 48.8847919 2.3672165, 48.8283297 2.3816403, 48.8444522 2.3901640, 48.8443813 2.3902545, 48.8260323 2.3598011, 48.8226689 2.3629591, 48.8432368 2.3854870, 48.8713001 2.3766068, 48.8704762 2.3775322, 48.8704356 2.3764056, 48.8712066 2.3768241, 48.8449997 2.4059414, 48.8470725 2.4064857, 48.8391796 2.3955829, 48.8387420 2.3963264, 48.8390768 2.3942535, 48.8370556 2.3918823, 48.8372166 2.3915674, 48.8387373 2.3961225, 48.8516698 2.3805401, 48.8703131 2.3487884, 48.8731247 2.3808610, 48.8649854 2.3569095, 48.8645459 2.3566348, 48.8635544 2.3694256, 48.8634434 2.3691079, 48.8734969 2.3525798, 48.8721862 2.3501755, 48.8708723 2.3480533, 48.8704690 2.3480544, 48.8751154 2.3557100, 48.8749802 2.3559340, 48.8744702 2.3552896, 48.8773577 2.3564531, 48.8785393 2.3568626, 48.8767619 2.3563475, 48.8786854 2.3569358, 48.8779934 2.3562593, 48.8782144 2.3566970, 48.8799927 2.3591789, 48.8812174 2.3638517, 48.8796296 2.3553194, 48.8800642 2.3523843, 48.8809546 2.3510669, 48.8751334 2.3514260, 48.8277214 2.3493461, 48.8582656 2.3882446, 48.8658900 2.3506042, 48.8543675 2.3835627, 48.8658986 2.3742587, 48.8663671 2.3715603, 48.8648305 2.3731176, 48.8972266 2.3855240, 48.8796615 2.3550800, 48.8798780 2.3540920, 48.8613780 2.3495790, 48.8526640 2.3534610, 48.8530320 2.3533850, 48.8523740 2.3670920, 48.8805044 2.3746913, 48.8697793 2.3750857, 48.8537952 2.4109052, 48.8598716 2.3677862, 48.8498873 2.3503879, 48.8377658 2.3556217, 48.8752927 2.3875604, 48.8403734 2.3690860, 48.8388484 2.3702978, 48.8376057 2.3732965, 48.8365782 2.3714028, 48.8397347 2.3696009, 48.8359107 2.3720037, 48.8732552 2.3604924, 48.8731705 2.3596985, 48.8720524 2.3605992, 48.8469541 2.4077243, 48.8910970 2.3741558, 48.8911479 2.3740014, 48.8907671 2.3759930, 48.8476438 2.3479747, 48.8735546 2.3841519, 48.8495928 2.3812853, 48.8911373 2.3471492, 48.8907355 2.3482159, 48.8295186 2.3712567, 48.8420173 2.3480157, 48.8431426 2.3492259, 48.8428742 2.3485446, 48.8430296 2.3492151, 48.8430013 2.3491186, 48.8645796 2.3718543, 48.8528026 2.3743383, 48.8691880 2.3617720, 48.8694980 2.3633100, 48.8693370 2.3635590, 48.8691390 2.3634440, 48.8691820 2.3631770, 48.8697450 2.3637220, 48.8686940 2.3597770, 48.8686410 2.3599800, 48.8689770 2.3602190, 48.8690369 2.3600697, 48.8701370 2.3610220, 48.8718820 2.3623620, 48.8721550 2.3626770, 48.8724460 2.3632870, 48.8726535 2.3631861, 48.8732160 2.3629280, 48.8508024 2.3768778, 48.8502524 2.3764928, 48.8417557 2.3487402, 48.8566955 2.3731518, 48.8570910 2.3727607, 48.8410914 2.3489485, 48.8446176 2.3491298, 48.8529638 2.3701915, 48.8521273 2.3846642, 48.8724927 2.3528401, 48.8436740 2.3495038, 48.8451117 2.3493401, 48.8449670 2.3488185, 48.8448364 2.3492811, 48.8448928 2.3492758, 48.8445379 2.3489273, 48.8445159 2.3485397, 48.8434300 2.3494242, 48.8432628 2.3494718, 48.8447332 2.3491164, 48.8446591 2.3491299, 48.8437358 2.3472026, 48.8384430 2.3563154, 48.8447791 2.3492894, 48.8435770 2.3493886, 48.8377834 2.3909830, 48.8911748 2.3607925, 48.8683505 2.3748549, 48.8442707 2.3492157, 48.8412056 2.3941921, 48.8799295 2.3575665, 48.8418196 2.3905033, 48.8441758 2.3479878, 48.8445200 2.3486356, 48.8445253 2.3488180, 48.8570416 2.3726643, 48.8615684 2.3783425, 48.8475785 2.4004192, 48.8743786 2.3636125, 48.8535259 2.4120078, 48.8439446 2.3493055, 48.8438873 2.3493114, 48.8739830 2.3725892, 48.8742654 2.3727129, 48.8566315 2.4020574, 48.8476850 2.4080780, 48.8508424 2.4062247, 48.8356633 2.3751497, 48.8555899 2.3867736, 48.8560496 2.3884378, 48.8531504 2.3773721, 48.8513051 2.3765410, 48.8349006 2.3856248, 48.8795704 2.3522406, 48.8793693 2.3525786, 48.8404972 2.3950481, 48.8661411 2.3671105, 48.8914883 2.3506742, 48.8286998 2.3507416, 48.8286000 2.3506267, 48.8332740 2.3869138, 48.8736230 2.3526886, 48.8789434 2.3780844, 48.8717406 2.3715881, 48.8276701 2.3500783, 48.8733313 2.3530301, 48.8727613 2.3519183, 48.8727251 2.3521315, 48.8526377 2.4062734, 48.8817044 2.3525759, 48.8488761 2.3682264, 48.8211831 2.3635911, 48.8752613 2.3705179, 48.8509430 2.3489714, 48.8476389 2.3773813, 48.8708172 2.3482539, 48.8380973 2.3926743, 48.8395564 2.3497363, 48.8400881 2.3806431, 48.8517277 2.3664938, 48.8515069 2.4066855, 48.8304114 2.3551773, 48.8641319 2.3484339, 48.8883991 2.3510703, 48.8869141 2.3514696, 48.8635328 2.3632361, 48.8825806 2.3672397, 48.8245551 2.3763634, 48.8812525 2.3584914, 48.8830046 2.3650381, 48.8830637 2.3612591, 48.8728704 2.3813019, 48.8834736 2.3604504, 48.8902288 2.3476015, 48.8248510 2.3607452, 48.8514101 2.4052556, 48.8514486 2.4064449, 48.8491856 2.4063562, 48.8480831 2.4040261, 48.8222536 2.3618120, 48.8221935 2.3616081, 48.8221264 2.3613884, 48.8222287 2.3611417, 48.8221688 2.3609429, 48.8221335 2.3607766, 48.8221897 2.3589982, 48.8219714 2.3582637, 48.8220277 2.3582482, 48.8685514 2.3683075, 48.8234610 2.3537855, 48.8753270 2.3689900, 48.8298312 2.3567979, 48.8500822 2.3477323, 48.8471824 2.3866402, 48.8420674 2.3760001, 48.8496451 2.3534642, 48.8625297 2.3799298, 48.8570961 2.3998935, 48.8590223 2.4024858, 48.8590692 2.4058632, 48.8571003 2.4079730, 48.8793921 2.3895039, 48.8371809 2.3497368, 48.8516647 2.3719912, 48.8973173 2.3848230, 48.8972521 2.3847586, 48.8970881 2.3845721, 48.8648559 2.3969632, 48.8713070 2.3479965, 48.8448163 2.3733745, 48.8522713 2.3728858, 48.8743665 2.3618973, 48.8742228 2.3624553, 48.8727849 2.3634181, 48.8617849 2.3518205, 48.8616656 2.3513122, 48.8619390 2.3509944, 48.8595904 2.4050515, 48.8594938 2.4051634, 48.8708913 2.3580857, 48.8688368 2.3624724, 48.8691941 2.3573560, 48.8692734 2.3564413, 48.8699288 2.3950557, 48.8598245 2.3479142, 48.8592985 2.3479258, 48.8601373 2.3481716, 48.8625488 2.3540088, 48.8600406 2.3484986, 48.8600556 2.3483497, 48.8601051 2.3500266, 48.8591455 2.3478511, 48.8602833 2.3482093, 48.8611395 2.3539719, 48.8592067 2.3534078, 48.8620249 2.3537411, 48.8621035 2.3535221, 48.8634711 2.3500128, 48.8601905 2.3476020, 48.8601948 2.3475156, 48.8596378 2.3474576, 48.8629250 2.3487647, 48.8636829 2.3493064, 48.8637682 2.3499143, 48.8634421 2.3485303, 48.8633388 2.3485138, 48.8654002 2.3689374, 48.8363755 2.3920736, 48.8363401 2.3920991, 48.8476343 2.3974001, 48.8452414 2.3792066, 48.8388762 2.3961905, 48.8440274 2.3842239, 48.8614835 2.3771934, 48.8217455 2.3523997, 48.8221973 2.3554703, 48.8495790 2.3543056, 48.8310397 2.3791345, 48.8519848 2.3846342, 48.8643014 2.4002976, 48.8294447 2.3791512, 48.8288966 2.3760626, 48.8486397 2.3653776, 48.8720371 2.3481740, 48.8732358 2.3613894, 48.8732268 2.3624203, 48.8239202 2.3655030, 48.8579931 2.4032941, 48.8396713 2.3471300, 48.8610880 2.3512876, 48.8614615 2.3514586, 48.8515798 2.3992009, 48.8515911 2.3992945, 48.8720846 2.3660947, 48.8716623 2.3681061, 48.8448238 2.3691876, 48.8471374 2.3947373, 48.8416499 2.3895371, 48.8447328 2.3894590, 48.8462215 2.3870803, 48.8470847 2.3868148, 48.8603639 2.3478222, 48.8603388 2.3480663, 48.8598889 2.3522642, 48.8412254 2.3738186, 48.8878312 2.3787631, 48.8701201 2.3491659, 48.8609895 2.3473093, 48.8655913 2.3471265, 48.8238476 2.3506828, 48.8207235 2.3507707, 48.8199467 2.3483675, 48.8233348 2.3532089, 48.8480339 2.3711696, 48.8515203 2.3696022, 48.8537094 2.3705397, 48.8537227 2.3702879, 48.8534314 2.3706101, 48.8502098 2.3923579, 48.8497025 2.3932209, 48.8494363 2.3945868, 48.8385781 2.3705346, 48.8392685 2.3708042, 48.8489499 2.3541277, 48.8221895 2.3632536, 48.8223064 2.3631664, 48.8222916 2.3627648, 48.8222392 2.3628073, 48.8223782 2.3631115, 48.8223716 2.3627130, 48.8230753 2.3626307, 48.8234533 2.3618634, 48.8229485 2.3577916, 48.8229254 2.3569509, 48.8202708 2.3594105, 48.8202117 2.3594306, 48.8193606 2.3601238, 48.8506918 2.3841353, 48.8258771 2.3495257, 48.8258284 2.3486459, 48.8255453 2.3475405, 48.8771870 2.3513170, 48.8764165 2.3555503, 48.8764781 2.3553328, 48.8771434 2.3517304, 48.8764892 2.3552357, 48.8463247 2.3542973, 48.8673359 2.3991033, 48.8665408 2.3996952, 48.8675264 2.4005840, 48.8729522 2.4050353, 48.8722236 2.4047280, 48.8772063 2.4094486, 48.8769898 2.4054164, 48.8711865 2.4001138, 48.8768593 2.4057793, 48.8762568 2.4026044, 48.8692292 2.3966523, 48.8690126 2.3971718, 48.8726193 2.3990837, 48.8723933 2.3993546, 48.8758552 2.4019932, 48.8645296 2.3999995, 48.8643290 2.3977966, 48.8641688 2.3976584, 48.8642835 2.3981370, 48.8650741 2.3972853, 48.8333333 2.3556520, 48.8661899 2.3718762, 48.8226287 2.3606739, 48.8226746 2.3608366, 48.8226533 2.3607500, 48.8229131 2.3618148, 48.8231151 2.3621098, 48.8209801 2.3644246, 48.8243498 2.3621084, 48.8244278 2.3621405, 48.8244847 2.3621306, 48.8245544 2.3621635, 48.8239970 2.3618533, 48.8245778 2.3614015, 48.8250784 2.3610028, 48.8247279 2.3612848, 48.8249548 2.3611007, 48.8257664 2.3605166, 48.8257097 2.3600718, 48.8253582 2.3607812, 48.8254715 2.3606886, 48.8256982 2.3612634, 48.8255348 2.3609777, 48.8256127 2.3614328, 48.8254727 2.3611014, 48.8255281 2.3616006, 48.8254308 2.3611848, 48.8253116 2.3614221, 48.8249807 2.3620807, 48.8250256 2.3619913, 48.8387916 2.3812873, 48.8526953 2.3470942, 48.8622322 2.3573881, 48.8890315 2.3624318, 48.8909716 2.3611648, 48.8264842 2.3599429, 48.8913537 2.3623037, 48.8912306 2.3619236, 48.8913500 2.3613552, 48.8684859 2.3702604, 48.8904554 2.3613786, 48.8911316 2.3641074, 48.8911480 2.3638611, 48.8710452 2.3583430, 48.8816643 2.3664685, 48.8521711 2.3714010, 48.8901098 2.3596369, 48.8909114 2.3604949, 48.8909059 2.3606042, 48.8900400 2.3632191, 48.8281212 2.3500641, 48.8278444 2.3497300, 48.8682148 2.3979085, 48.8309399 2.3810186, 48.8339877 2.3859431, 48.8370765 2.3521704, 48.8751593 2.3701002, 48.8280428 2.3570384, 48.8300151 2.3572624, 48.8300765 2.3566608, 48.8741225 2.3893282, 48.8748365 2.3888937, 48.8511846 2.3478208, 48.8909898 2.3608038, 48.8922565 2.3879668, 48.8896721 2.3596605, 48.8890437 2.3606481, 48.8890487 2.3604033, 48.8897921 2.3604602, 48.8910188 2.3609138, 48.8897517 2.3604732, 48.8329514 2.3692712, 48.8608042 2.3799887, 48.8605689 2.3786648, 48.8762181 2.3718774, 48.8854958 2.3656011, 48.8735521 2.3649705, 48.8354567 2.3766787, 48.8288129 2.3816584, 48.8306388 2.3813576, 48.8861995 2.3567861, 48.8360293 2.3987610, 48.8901495 2.3592264, 48.8352730 2.3987266, 48.8358656 2.3983311, 48.8329971 2.3865539, 48.8798304 2.3575115, 48.8891501 2.3600864, 48.8623031 2.3667215, 48.8264604 2.3691548, 48.8867265 2.3692541, 48.8487274 2.3758510, 48.8292182 2.3745377, 48.8749302 2.3555936, 48.8936132 2.3841788, 48.8659386 2.3788507, 48.8373155 2.3746781, 48.8849455 2.3527050, 48.8850090 2.3595929, 48.8918519 2.3634768, 48.8916614 2.3634553, 48.8690083 2.3564593, 48.8615300 2.3686675, 48.8760446 2.3484651, 48.8850314 2.3781308, 48.8296037 2.3747044, 48.8678207 2.3478985, 48.8667602 2.3505401, 48.8644860 2.3502765, 48.8736385 2.3889782, 48.8739867 2.3864968, 48.8718150 2.3717657, 48.8727815 2.3712192, 48.8729660 2.3702046, 48.8617341 2.3650289, 48.8554103 2.3643002, 48.8542640 2.3651059, 48.8537965 2.3646707, 48.8563379 2.3653392, 48.8555655 2.3665858, 48.8549123 2.3654914, 48.8740700 2.3880327, 48.8599854 2.3672407, 48.8580971 2.3653667, 48.8889949 2.3583055, 48.8470631 2.3700997, 48.8471459 2.3702456, 48.8474998 2.3708712, 48.8482512 2.3721967, 48.8471795 2.3719974, 48.8874196 2.3791285, 48.8911601 2.3472858, 48.8905525 2.3481725, 48.8654434 2.3665508, 48.8614471 2.3729562, 48.8666976 2.3655874, 48.8469506 2.3967840, 48.8450981 2.4030570, 48.8445374 2.4047983, 48.8459401 2.3981714, 48.8469580 2.4075011, 48.8431170 2.4096136, 48.8181346 2.3609207, 48.8193633 2.3602971, 48.8193706 2.3607627, 48.8641592 2.3663881, 48.8472632 2.3686633, 48.8539102 2.3699317, 48.8470293 2.3690164, 48.8462686 2.3631462, 48.8624682 2.3635794, 48.8466386 2.3740238, 48.8467985 2.3747872, 48.8222822 2.3596195, 48.8510597 2.3686542, 48.8576256 2.3683245, 48.8573074 2.3684033, 48.8648741 2.3568648, 48.8647110 2.3556670, 48.8647065 2.3557113, 48.8688148 2.3556948, 48.8744006 2.3588789, 48.8598506 2.3506084, 48.8899908 2.3632081, 48.8611479 2.3689726, 48.8638679 2.3648260, 48.8890796 2.3723602, 48.8731075 2.3603509, 48.8748935 2.3811373, 48.8798222 2.3536407, 48.8689100 2.3859683, 48.8389034 2.3510109, 48.8728060 2.3646742, 48.8722199 2.3662906, 48.8493078 2.3774714, 48.8381318 2.3517955, 48.8387946 2.3486773, 48.8818730 2.3810389, 48.8528114 2.3539541, 48.8924455 2.3635357, 48.8208030 2.3633818, 48.8274435 2.3705955, 48.8205400 2.3633918, 48.8205631 2.3634931, 48.8545629 2.3851571, 48.8498132 2.3518796, 48.8926082 2.3632978, 48.8647682 2.3664782, 48.8606042 2.3677659, 48.8607123 2.3679772, 48.8845024 2.3699867, 48.8817691 2.3705494, 48.8497401 2.3508144, 48.8494708 2.3495778, 48.8243545 2.3680684, 48.8957541 2.3476530, 48.8957586 2.3475660, 48.8654497 2.3690938, 48.8709594 2.3479984, 48.8330093 2.3868281, 48.8731139 2.3807450, 48.8690065 2.3742189, 48.8437820 2.3881621, 48.8485041 2.3805544, 48.8646577 2.3697145, 48.8222398 2.3591920, 48.8444922 2.3906935, 48.8322518 2.3505076, 48.8274091 2.3702950, 48.8302211 2.3529383, 48.8490077 2.3495940, 48.8461901 2.3512999, 48.8754876 2.3480736, 48.8776068 2.3489868, 48.8235887 2.3709824, 48.8878510 2.3535887, 48.8366915 2.3872945, 48.8378379 2.3473550, 48.8678023 2.3499020, 48.8715298 2.3681493, 48.8837483 2.3717520, 48.8846076 2.3697324, 48.8846076 2.3697324, 48.8471339 2.3781711, 48.8805026 2.3961626, 48.8532271 2.3906633, 48.8532124 2.3749112, 48.8593876 2.3489534, 48.8593594 2.3494831, 48.8592324 2.3496685, 48.8591582 2.3498992, 48.8587506 2.3498885, 48.8585618 2.3501138, 48.8584400 2.3500508, 48.8582309 2.3499153, 48.8586577 2.3512239, 48.8585324 2.3516236, 48.8584636 2.3518059, 48.8589383 2.3514814, 48.8594394 2.3491586, 48.8815660 2.3478333, 48.8762025 2.3710966, 48.8295801 2.3570095, 48.8310133 2.3479849, 48.8362085 2.3507215, 48.8902734 2.3546516, 48.8277176 2.3503583, 48.8914921 2.3613348, 48.8303310 2.3543233, 48.8304313 2.3542566, 48.8301931 2.3538796, 48.8550776 2.3606106, 48.8538565 2.3611419, 48.8539037 2.3621825, 48.8493157 2.3784984, 48.8312746 2.3688607, 48.8295989 2.3477981, 48.8546823 2.3502166, 48.8802997 2.3577529, 48.8280833 2.3518785, 48.8345869 2.4046238, 48.8489944 2.3476761, 48.8339315 2.3535154, 48.8343358 2.3532328, 48.8334871 2.3538301, 48.8343901 2.3531943, 48.8968374 2.3787112, 48.8971449 2.3819951, 48.8706152 2.3532598, 48.8281734 2.3581151, 48.8281213 2.3581379, 48.8282088 2.3580869, 48.8298944 2.3567517, 48.8279789 2.3582481, 48.8306371 2.3542033, 48.8301553 2.3526298, 48.8304963 2.3537726, 48.8488823 2.3702261, 48.8468258 2.4090233, 48.8701642 2.3537129, 48.8590400 2.3622970, 48.8907611 2.3619378, 48.8458824 2.3754339, 48.8850869 2.3651538, 48.8396674 2.3497245, 48.8416725 2.3497548, 48.8417916 2.3497766, 48.8418859 2.3497875, 48.8419165 2.3497914, 48.8418378 2.3496214, 48.8420720 2.3498351, 48.8421234 2.3498351, 48.8424383 2.3496720, 48.8426011 2.3496377, 48.8427514 2.3496041, 48.8429466 2.3495606, 48.8440708 2.3494232, 48.8445679 2.3496772, 48.8445191 2.3496762, 48.8383528 2.3897390, 48.8604075 2.3556155, 48.8601740 2.3563013, 48.8571765 2.3589357, 48.8517041 2.3505648, 48.8574751 2.3504537, 48.8265827 2.3745998, 48.8375062 2.4444441, 48.8251232 2.3579151, 48.8723494 2.3607849, 48.8447679 2.3497792, 48.8311018 2.3750269, 48.8303119 2.3757398, 48.8306923 2.3753998, 48.8310217 2.3759342, 48.8471340 2.3864431, 48.8467506 2.3832061, 48.8329435 2.4149758, 48.8323315 2.4178175, 48.8312932 2.3735896, 48.8311417 2.3739163, 48.8549171 2.3551866, 48.8383546 2.3930656, 48.8394477 2.3924756, 48.8394195 2.3921135, 48.8531969 2.3783676, 48.8886086 2.3780545, 48.8862020 2.3612523, 48.8421984 2.3516249, 48.8765293 2.3766762, 48.8765381 2.3785538, 48.8831467 2.3852056, 48.8526874 2.3539909, 48.8793441 2.3856452, 48.8912644 2.3784340, 48.8481127 2.3756890, 48.8492365 2.3739525, 48.8495930 2.3774565, 48.8495553 2.3786800, 48.8500160 2.3788251, 48.8496527 2.3779307, 48.8465400 2.3811858, 48.8503285 2.3781973, 48.8481611 2.3766463, 48.8460012 2.3764202, 48.8553144 2.3878881, 48.8434604 2.4022375, 48.8496167 2.3700570, 48.8481689 2.3925595, 48.8469569 2.3847760, 48.8464179 2.3800872, 48.8753759 2.3739351, 48.8751695 2.3739029, 48.8746244 2.3809330, 48.8781141 2.3843466, 48.8779190 2.3852619, 48.8778925 2.3854242, 48.8782848 2.3854140, 48.8789083 2.3856186, 48.8789361 2.3851519, 48.8806716 2.3738195, 48.8820002 2.3711763, 48.8490915 2.3487987, 48.8899434 2.3710251, 48.8803750 2.3978486, 48.8811706 2.3719906, 48.8641699 2.4083715, 48.8567608 2.3945887, 48.8757475 2.3857007, 48.8753418 2.3815392, 48.8747347 2.3813029, 48.8752868 2.3817360, 48.8755279 2.3821599, 48.8372979 2.3511170, 48.8516564 2.3473784, 48.8590719 2.3810909, 48.8335564 2.3869198, 48.8334907 2.3868335, 48.8337569 2.3871813, 48.8329726 2.3861326, 48.8338510 2.3872594, 48.8740264 2.3839194, 48.8206809 2.3635646, 48.8207494 2.3637471, 48.8203146 2.3640270, 48.8552012 2.3739399, 48.8546611 2.3726793, 48.8746078 2.3810324, 48.8739520 2.3822179, 48.8735701 2.3830856, 48.8736839 2.3828415, 48.8787477 2.3711783, 48.8819062 2.3741667, 48.8841883 2.3779754, 48.8845623 2.3786634, 48.8851670 2.3806432, 48.8852067 2.3807525, 48.8855935 2.3818316, 48.8805386 2.3751052, 48.8806753 2.3748196, 48.8807035 2.3747471, 48.8808173 2.3744896, 48.8808967 2.3743140, 48.8830777 2.3876231, 48.8723326 2.3483178, 48.8431753 2.3523678, 48.8431753 2.3523678, 48.8337390 2.3618054, 48.8343386 2.3607778, 48.8481870 2.3541570, 48.8485630 2.3547360, 48.8486600 2.3548950, 48.8488030 2.3550960, 48.8868177 2.3744113, 48.8849000 2.3707095, 48.8883341 2.3761366, 48.8585600 2.3535180, 48.8359828 2.3592084, 48.8582564 2.3530692, 48.8579136 2.3528123, 48.8527723 2.3849647, 48.8528254 2.3852671, 48.8439032 2.3546898, 48.8859211 2.3934465, 48.8847791 2.3925318, 48.8848752 2.3926673, 48.8862192 2.3936382, 48.8754744 2.3873297, 48.8754373 2.3874893, 48.8651610 2.3726873, 48.8643341 2.3728778, 48.8630357 2.3730890, 48.8495520 2.3551790, 48.8495960 2.3546780, 48.8493090 2.3539520, 48.8470580 2.3520490, 48.8468240 2.3516360, 48.8756732 2.3873298, 48.8209363 2.3710302, 48.8712417 2.3797804, 48.8708280 2.3787238, 48.8791599 2.3910656, 48.8827997 2.3733397, 48.8830186 2.3740035, 48.8826853 2.3804864, 48.8729547 2.3799476, 48.8755208 2.3906946, 48.8619535 2.4014538, 48.8828915 2.3811913, 48.8830697 2.3810418, 48.8840675 2.3805918, 48.8758598 2.4006983, 48.8583141 2.3549137, 48.8606889 2.3547690, 48.8607780 2.3544920, 48.8579708 2.3528081, 48.8612688 2.3578488, 48.8659762 2.3835715, 48.8353583 2.4058762, 48.8460163 2.3825296, 48.8754888 2.3889719, 48.8716073 2.3573055, 48.8300151 2.3572215, 48.8589855 2.3540028, 48.8545486 2.3843630, 48.8752800 2.3929026, 48.8752271 2.3936912, 48.8751574 2.3942236, 48.8636468 2.3671522, 48.8426923 2.3634778, 48.8744920 2.3729505, 48.8741051 2.3720932, 48.8739847 2.3718055, 48.8738359 2.3717117, 48.8735359 2.3710279, 48.8741858 2.3715930, 48.8745316 2.3721362, 48.8716669 2.3719109, 48.8711993 2.3697018, 48.8736209 2.3748630, 48.8878559 2.3534540, 48.8541359 2.3719456, 48.8542108 2.3674171, 48.8544297 2.3673782, 48.8555777 2.3673888, 48.8558432 2.3674030, 48.8643515 2.3547358, 48.8612115 2.3668968, 48.8596062 2.3680483, 48.8595048 2.3686879, 48.8591538 2.3688576, 48.8416174 2.3913852, 48.8624329 2.3726841, 48.8618736 2.3728696, 48.8582325 2.3718450, 48.8620891 2.3780066, 48.8940948 2.3515003, 48.8684376 2.3706209, 48.8643358 2.3688108, 48.8612224 2.3648477, 48.8734440 2.3641694, 48.8731953 2.3643525, 48.8714362 2.3657352, 48.8567447 2.3780076, 48.8569233 2.3783614, 48.8768960 2.3534930, 48.8665545 2.3603936, 48.8926611 2.3805354, 48.8707266 2.3515964, 48.8904606 2.3790788, 48.8910196 2.3779829, 48.8907119 2.3781803, 48.8906831 2.3786293, 48.8559378 2.3789593, 48.8709792 2.3597736, 48.8711489 2.3601690, 48.8572892 2.3686817, 48.8592341 2.3681415, 48.8593853 2.3683292, 48.8584433 2.3828023, 48.8580910 2.3814281, 48.8586116 2.3834178, 48.8541661 2.3685390, 48.8557389 2.3682126, 48.8603524 2.3676426, 48.8565384 2.3685512, 48.8584554 2.3675609, 48.8389090 2.3816630, 48.8357533 2.3521704, 48.8597890 2.4027381, 48.8599301 2.4026085, 48.8593962 2.4050659, 48.8577162 2.3793963, 48.8413733 2.3746037, 48.8780937 2.3647247, 48.8681030 2.4033390, 48.8609818 2.3809160, 48.8609042 2.3814382, 48.8615076 2.3805893, 48.8592360 2.3828098, 48.8666042 2.3853196, 48.8614564 2.3780635, 48.8614752 2.3781069, 48.8610647 2.3776241, 48.8615428 2.3776813, 48.8610882 2.3812893, 48.8608398 2.3800020, 48.8611517 2.3814385, 48.8616071 2.3823364, 48.8945524 2.3527710, 48.8556266 2.3621786, 48.8556266 2.3621786, 48.8556266 2.3621786, 48.8623796 2.3727706, 48.8621341 2.3774006, 48.8626909 2.3786304, 48.8622688 2.3799159, 48.8623261 2.3800798, 48.8633812 2.3618041, 48.8488626 2.3712412, 48.8571998 2.3686785, 48.8594276 2.3683212, 48.8547937 2.3759343, 48.8995733 2.3524962, 48.8537976 2.3699213, 48.8537389 2.3700602, 48.8471804 2.3954861, 48.8642540 2.3684778, 48.8646300 2.3665505, 48.8661085 2.3669813, 48.8547424 2.3544531, 48.8549834 2.3538154, 48.8547359 2.3551293, 48.8570133 2.3782712, 48.8566264 2.3772226, 48.8563976 2.3765843, 48.8560776 2.3757039, 48.8558521 2.3750899, 48.8609420 2.3686815, 48.8590641 2.3684194, 48.8620899 2.3661777, 48.8617952 2.3647367, 48.8633340 2.3613891, 48.8623729 2.3651197, 48.8627347 2.3662302, 48.8614130 2.3705083, 48.8615747 2.3706299, 48.8647430 2.3818722, 48.8620626 2.3672580, 48.8644915 2.3656032, 48.8690385 2.3639054, 48.8679245 2.3658481, 48.8650522 2.3663679, 48.8619694 2.3673462, 48.8656106 2.3572726, 48.8626759 2.3636324, 48.8627659 2.3625185, 48.8615576 2.3705429, 48.8633878 2.3694245, 48.8611497 2.3674810, 48.8626333 2.3674542, 48.8642921 2.3657377, 48.8618200 2.3730192, 48.8617681 2.3611646, 48.8630387 2.3518815, 48.8632610 2.3511168, 48.8635550 2.3471565, 48.8587772 2.3712220, 48.8659600 2.3653216, 48.8665862 2.3667443, 48.8661620 2.3675630, 48.8666335 2.3665296, 48.8663602 2.3680223, 48.8643746 2.3685025, 48.8641963 2.3679144, 48.8646177 2.3690280, 48.8628347 2.3675662, 48.8578407 2.3769477, 48.8623144 2.3663745, 48.8620724 2.3658250, 48.8637272 2.3671164, 48.8580013 2.3652526, 48.8584347 2.3637448, 48.8614253 2.3643489, 48.8593585 2.3673596, 48.8586082 2.3675198, 48.8578247 2.3662529, 48.8578018 2.3672245, 48.8575285 2.3645936, 48.8567071 2.3672138, 48.8599776 2.3643195, 48.8581319 2.3686779, 48.8731027 2.3586476, 48.8580112 2.3685170, 48.8640444 2.3658805, 48.8641120 2.3658485, 48.8535896 2.3766260, 48.8548638 2.3756068, 48.8611118 2.3693564, 48.8440870 2.4099235, 48.8814750 2.3580850, 48.8654853 2.3686016, 48.8279596 2.3690455, 48.8279577 2.3690363, 48.8468373 2.3601741, 48.8462135 2.3676679, 48.8477461 2.3511419, 48.8659951 2.3472997, 48.8596787 2.3549361, 48.8566620 2.3563500, 48.8554458 2.3617217, 48.8408224 2.3556248, 48.8388681 2.3562783, 48.8384220 2.4593519, 48.8305866 2.4133509, 48.8201104 2.4442417, 48.8739698 2.3502828, 48.8807650 2.3809540, 48.8772540 2.3793034, 48.8768300 2.4049587, 48.8573667 2.3785302, 48.8532758 2.3834775, 48.8681170 2.3702881, 48.8582151 2.3817585, 48.8768273 2.4061935, 48.8408375 2.3874300, 48.8330343 2.3541878, 48.8280243 2.3513291, 48.8303084 2.3537927, 48.8302539 2.3536052, 48.8255087 2.3537284, 48.8289425 2.3568654, 48.8422835 2.3705897, 48.8680174 2.3629641, 48.8623556 2.3500864, 48.8367701 2.3930789, 48.8376458 2.3597357, 48.8377834 2.3597919, 48.8380568 2.3599624, 48.8527093 2.3602879, 48.8534305 2.3611806, 48.8419025 2.3689354, 48.8832336 2.3770248, 48.8645929 2.3574911, 48.8778259 2.3969489, 48.8769600 2.3706426, 48.8873550 2.3868767, 48.8565883 2.3770985, 48.8660080 2.3494045 +http://www.100blumen.de/, http://kiga-aussenmuehle.de/, http://hh-hamm.de/kinderschlupf/kinder.html, http://www.musikkindergarten-hamburg.com/, http://www.kinderhaus-fliewatuut.de/, http://www.kita-sandkamp.de/, http://www.paulaundmax.de/wandsbeker.html, www.kindergaerten-finkenau.de, http://www.elbkinder-kitas.de, www.kitas-hamburg.de/kita-hospitalstrasse, http://www.luettjenwelt.de, www.kita-ifflandstrasse.de, www.kitas-hamburg.de/kita-erich-ziegel-ring, http://www.elbkinder-kitas.de/de/kita finder/kita/140, http://www.wabe-hamburg.de, http://www.kita-glueckliche-kids.de, http://www.kita-kleinewissenschaftler.de/, http://www.sternipark.de, http://www.kita-paulus.de/, 184.eva-kita.de, http://www.falkennest.de/, http://www.wabe-hamburg.de/de/kindertagesstaetten/hamburg/allermoehe.html, http://schlossinsel.kita-hamburg-harburg.de/startseite.html, http://www.kinderzimmer-kita.de/hamburg-city-sued, http://www.frosch-kita.de, http://www.elbpiraten-kita.de/standorte/kita-hafencampus.html, http://www.kita.de/kita/20048, http://hamburger-spielhaeuser.de/spielhaeuser/harburg, http://hamburger-spielhaeuser.de/spielhaeuser/kennedyhaus/, http://www.paulaundmax.de/august-luetgens-park.html, http://www.paulaundmax.de/eilbeker.html, http://www.paulaundmax.de/hoheluft.html, http://www.paulaundmax.de/oelkersallee.html, www.elbkinder-kitas.de/de/kita finder/kita/309, http://www.xn--spielgelnde-gleiwitzer-bogen-dnc.de/kitahome.html, http://www.eva-kita.de/cmain/kitas unit.html?id=206&c, http://www.kita-marzipanfabrik.de/, http://www.elbkinder-kitas.de/de/kita finder/kita/418, www.kindergaerten-finkenau.de, www.ameisenhaufen.de, http://www.elbkinder-kitas.de/de/kita finder/kita/413, http://waki-hamburg.de, http://tigerente-hort.de/b index.html, http://www.elbkinder-kitas.de/de/kita finder/kita/223, http://www.kindergarten-volksdorf.de, www.kiga-heilig-kreuz.de, www.wabe-hamburg.de/de/kindertagesstaetten/hamburg/iserbrook.html, http://www.kindergarten-rolfincken.de, http://www.kitahimmelblau.de, http://www.elbkinder-kitas.de/de/kita finder/kita/129, http://www.elbkinder-kitas.de/de/kita finder/kita/130, http://www.pedia-bildung.de/, http://www.pedia-bildung.de/de/kita rehrstieg.php, http://www.flachsland-hamburg.de/Kita-Alstertal.137.0.html, http://www.elbkinder-kitas.de/de/kita finder/kita/105, http://www.alsterkinder.de/, www.kth-silberpappelstieg.de, http://www.elbkinder-kitas.de/de/kita finder/kita/505, http://kita-volksdorf.de, http://www.wabe-hamburg.de/de/kindertagesstaetten/hamburg/billstedt.html, http://www.drk-kiju.de/einrichtungen/wirbelwind +48.8657499 2.3411790 +51 +asphalt, asphalt +55.9451817 -3.1797665 +55.9415684 -3.1813171, 55.9412241 -3.1809783 ++44 (0) 1340 820 373, +49 482646301, +49 35024 7900, +49 7633 8320, +49 8677 6699242, +49865295360, 01540 672219, +1 (510) 769-1601, +33 0131650811, 01631 572004, (207) 865-4828 +Musée en Herbe, Musée en Herbe, Môm'artre, La Bellevilloise, Studio des Islettes, Maison Européenne de la Photographie, Centre d'animation Reuilly, Conservatoire municipal Claude Debussy - Site de la Jonquière, Atelier de Restauration et de Conservation des Photographies de la Ville de Paris, Le Local, Espace Château Landon, Barbara Fleury, ADAC, Le Lucernaire, La Générale Nord-Est, Le 100, Le Chantier, Le Plateau, Centre d’animation La grange aux Belles, La Bellevilloise, Centre culturel italien, Centre Culturel la Jonquière, Shakirail, La Péniche cinéma, Au Bonheur du Jour, cité des arts, La Métisse, Conservatoire municipal Jean-Philippe Rameau, Antenne FRAC Île-de-France, FRAC Antenne culturelle, Centre culturel franlasie, Conservatoire libre du cinema francais, Centre culturel Pouya, Auditorium, Collège des Bernardins, Conservatoire du Centre, Centre Pompidou, Centre Wallonie-Bruxelles, Espace des Blancs-Manteaux, La Gaîté lyrique, Espace Jemmapes, Conservatoire Hector Berlioz, Institut hongrois, Galerie J. Kugel, Le Zénith, Grande Halle de la Villette, Cours Florent, Espace Fondation EDF, Conservatoire Municipal Nadia et Lili Boulanger, Conservatoire municipal Georges Bizet, Pavillon Carré de Baudouin, Le BAL, Centre d'Animation "Les Abbesses", Maison des ensembles, La Maison des Cinq Sens, Conservatoire Francis Poulenc, Point - Afrique, Centre Culturel Suédois, Ancien Conservatoire Maurice Ravel, Le Cent Quatre, Maison des Métallos +yes +26 +yes +13 +55.9525959 -3.1925077 +49.6390443 8.7586809, 49.6491519 8.7786154, 49.4116697 8.9271085, 49.5273884 8.7489962, 49.4091892 8.6985480, 49.2941943 8.6972230, 49.2959309 8.7014509, 49.3883245 9.0081746, 49.2919399 8.7027015, 49.4109553 8.9356774, 49.3761026 8.8885302, 49.5299064 8.7421002, 49.5270569 8.7608652, 49.3884820 8.8036758, 49.3868016 8.8070952, 49.3948331 8.7964522, 49.3864018 8.8001781, 49.4378301 8.7519879, 49.6041485 8.7393504, 49.4178001 8.7608053, 49.3597431 8.8120515, 49.6229182 8.6958850, 49.4280459 8.7495006, 49.4333074 8.7472561, 49.4280490 8.7464328, 49.4220544 8.7604986, 49.3359654 8.7908694, 49.4160940 8.7161473, 49.3872630 8.7975398, 49.5976216 8.7371486, 49.5990671 8.7380614, 49.6233348 8.7592105, 49.6239213 8.7540220, 49.5693320 8.7183717, 49.5799659 8.7150421, 49.5836852 8.7060844, 49.5668665 8.7346098, 49.5987193 8.7329887, 49.5900011 8.7564846, 49.5824512 8.7701378, 49.5505849 8.8129790, 49.5497942 8.8086360, 49.3957980 8.8231207, 49.6147886 8.7162592, 49.3973451 8.7978476, 49.4132108 8.7429246, 49.3774319 8.6987045, 49.5819364 8.7454907, 49.5973081 8.7352102, 49.5596089 8.7845832, 49.3594020 8.8046809, 49.3605252 8.8038440, 49.3574669 8.7787048, 49.3930158 8.7827624, 49.6043110 8.7457135, 49.6044250 8.7292229, 49.3811510 8.8033879, 49.3914947 8.7854488, 49.4021057 8.8481051, 49.4118979 8.8312113, 49.4038331 8.8435805, 49.4062892 8.8436208, 49.4144602 8.7186269, 49.4152010 8.7617225, 49.3946293 8.7926321, 49.3933559 8.7992739, 49.3841017 8.8059323, 49.4113731 8.7119281, 49.3640254 8.7056751, 49.4869999 8.7367276, 49.4105298 8.6976589, 49.5660788 8.7990762, 49.4426247 8.8954326, 49.4460345 8.8970944, 49.5697702 8.7099088, 49.5637955 8.7072905, 49.4149595 8.6974870, 49.6118535 8.7753135, 49.6050755 8.7600210, 49.4943601 8.7246887, 49.6020099 8.7677160, 49.4141843 8.7705509, 49.4287124 8.6962608, 49.4701324 8.7543477, 49.4371781 8.8098188, 49.3177272 8.7571254, 49.6150231 8.9143821, 49.5455206 8.7291779, 49.4760467 8.6993112, 49.4014645 8.7791091, 49.6726030 8.7316620, 49.6759656 8.7650417, 49.6696052 8.7669330, 49.3739972 8.7036051, 49.6677528 8.7451867, 49.6562702 8.7547711, 49.4531341 8.7233872, 49.6469373 8.7735990, 49.5909727 8.7236941, 49.3766430 8.7660668, 49.3724852 8.7711188, 49.6209834 8.9451249, 49.3947439 8.7943731, 49.3038290 8.6957242, 49.2995474 8.7000158, 49.4659574 8.7606949, 49.4666324 8.7723805, 49.4982324 8.7655052, 49.4565194 8.8077226, 49.6445901 8.7362064, 49.5793143 8.7544635, 49.4719917 8.7590827, 49.4737806 8.7562742, 49.4609471 8.7703480, 49.5411759 8.6979134, 49.3197938 8.8658341, 49.2984869 8.8269633, 49.2966768 8.8256330, 49.3219820 8.8193599, 49.5150489 8.7482457, 49.3871024 8.8383024, 49.3935723 8.8416570, 49.3383714 8.7389507, 49.3413963 8.7549260, 49.3873851 8.7356455, 49.3234400 8.6954224, 49.3189808 8.8881137, 49.3159750 8.8865005, 49.3201069 8.8909232, 49.4601440 8.9882590, 49.6476051 8.7947973, 49.6429053 8.7968483, 49.3613242 8.7824149, 49.3945103 8.9294461, 49.6642107 8.7970938, 49.5208026 8.6986241, 49.4622543 8.9867661, 49.5261504 8.8636211, 49.5139200 8.8528708, 49.4658163 8.9915752, 49.4646725 8.9846014, 49.4352605 8.8040578, 49.3994611 8.8459544, 49.5464780 8.7680625, 49.6098312 8.8122662, 49.3375623 8.9113070, 49.3394809 8.9087893, 49.5862746 8.8146330, 49.6518562 8.7848309, 49.5517497 8.8515418, 49.5661178 8.7025227, 49.4506689 8.9797021, 49.4558022 8.9786024, 49.5832325 8.7940521, 49.5638706 8.7714332, 49.4768792 8.7597110, 49.5578177 8.7067432, 49.5486105 8.7553751, 49.5852926 8.7016688, 49.5785870 8.7199786, 49.4157065 8.7287628, 49.3033175 8.7047451, 49.3661785 8.7507929, 49.6669516 8.8112186, 49.6589466 8.8013252, 49.4619449 8.7690156, 49.5110988 8.7443994, 49.4260082 8.9560462, 49.4736174 8.9865378, 49.6388516 8.7691296, 49.6269184 8.7623574, 49.6592860 8.8414793, 49.5613325 9.0150075, 49.5995733 8.8345813, 49.6212544 8.7673967, 49.4136791 8.7136022, 49.3684471 8.7452563, 49.6251009 8.7584019, 49.2817542 8.7809947, 49.4469008 8.8982283, 49.3925682 9.0026920, 49.3520218 8.7810118, 49.6273416 8.7269432, 49.4133863 8.7084302, 49.4089964 8.7017641, 49.4102662 8.7019427, 49.4112926 8.7027584, 49.4085432 8.6937616, 49.4085582 8.6937574, 49.3519718 8.8684674, 49.4853591 8.7967688, 49.4113476 8.7118706, 49.4119316 8.6969837, 49.5676732 8.9734875, 49.4484967 8.8940967, 49.3511417 8.7028368, 49.4630647 8.9967854, 49.3930705 8.9242735, 49.4183221 8.7563527, 49.4156725 8.7421792, 49.3452536 8.6991775, 49.3975439 8.8370531, 49.5302210 8.8617403, 49.3793989 8.8384026, 49.3882338 8.8576904, 49.3501718 8.7751677, 49.4146742 8.8811104, 49.3639583 8.7048484, 49.4635895 8.9900415, 49.4644476 8.9848049, 49.4652335 8.9747254, 49.4689588 8.9843908, 49.4701629 8.9950777, 49.6439529 8.7235692, 49.4049630 8.8411931, 49.4180547 8.8517835, 49.4136635 8.7632703, 49.5109298 8.7312150, 49.5049826 8.7665026, 49.3945750 8.7947057, 49.4223460 8.7539976, 49.3638609 8.8379309, 49.3230182 8.8180605, 49.5933244 8.9889913, 49.3406676 8.7984974, 49.4173960 8.7485433, 49.3205042 8.6940169, 49.5901501 8.8932495, 49.3539619 8.7231541, 49.4100342 8.7062078 +Geschwister-Scholl-Schule, Pestalozzi-Schule, Julius-Springer-Schule, Julius-Springer-Schule, Johannes-Kepler-Realschule, Mönchhof-Grundschule, Freie Christliche Schule, Friedrich-Ebert-Grundschule, Hölderlin-Gymnasium, Musik- und Singschule, Geschwister-Scholl Grund- und Hauptschule, aula Sprachen, Elisabeth von Thadden-Schule, Waldorfschule Heidelberg, Bunsen-Gymnasium, Neckarschule, Heidelberg College, Internationale Gesamtschule Heidelberg, Primarstufe, Stauffenberg-Schule, Englisches Institut Heidelberg, Theodor-Heuss-Realschule, Eichendorff-Grundschule, Helmholtz-Gymnasium, Technikzentrum, Carl-Bosch-Schule, Emmertsgrundschule, Lehr- und Versuchsanstalt für Gartenbau, Fröbelschule, Marie-Baum-Schule, Waldparkschule, Gregor-Mendel-Realschule, Käthe-Kollwitz-Förderschule, Wilckensschule, Kurfürst-Friedrich-Gymnasium, Internationale Gesamtschule Heidelberg, Tiefburgschule, Grundschule der Elisabeth-von-Thadden-Schule, Grundschule Schlierbach, Steinbachschule, Johannes-Gutenberg-Schule, Ecole Pierre & Marie Curie Heidelberg, Heidelberg International School +yes +55.9554953 -3.1694437, 55.9554652 -3.1694213 +Bruntsfield Hotel, Braid Hills Hotel, Britannia Hotel Edinburgh, Hilton Edinburgh Airport Hotel, Peffermill House, Premier Inn, Prestonfield House, Premier Inn Leith, Brooks Hotel, Holiday Inn Express, Ardmillan Hotel, Links Hotel, Apex Edinburgh International, Apex Edinburgh City, Travelodge, Holiday Inn Express, Malmaison, Le Monde, DoubleTree by Hilton Hotel Edinburgh City Centre, Premier Inn, Novotel, Ten Hill Place, Hot-el Apartments, Jurys Inn, The Carlton, The Salisbury, Apex Waterloo Place Hotel, Travelodge Edinburgh Central Waterloo Place, Radisson Blu Hotel, Macdonald Holyrood Hotel, The King James, Ocean Apartments, Sandaig Guest House, Lady Nairne Premier Inn, The Glasshouse, Six Marys Place, Travelodge Rose Street, Mercure Hotel, Old Waverley Hotel, Royal British Hotel, Hotel du Vin, Travelodge Edinburgh Central Queen Street, Travelodge Edinburgh Learmonth, Fraser Suites Edinburgh, Nira Caledonia, The Bonham Hotel, G & V Royal Mile, EasyHotel Prince Street West, Premier Inn, cityroomz, Hotel Ceilidh-Donia, Cumberland Hotel, Dunstane House, Murrayfield Hotel, Hampton Hotel, Murrayfield Park Hotel, Grosvenor Gardens Hotel, Thistle Hotel, The Chester Residence, Fountain Court, Grassmarket Hotel, Motel One, Frederick House Hotel, Regent House Hotel, Hotel Indigo, The Place, York House Hotel, 28 York Place, Fountain Court, Pollock Halls, Ibis, Travelodge Princes Street, The Scotsman Hotel, Holyrood Aparthotel, Rutland Hotel, Twelve Picardy Place, Northumberland Hotel, Minto Hotel, Kildonan Lodge Hotel, Cairn Hotel, Ballantrae Hotel, Terrace Hotel, Ailsa Craig Hotel, Crowne Plaza, Abbey Hotel, The Inverleith Hotel, Merith House Hotel, Culane House Hotel, ritz, Ellwyn Hotel, Hotel Twenty, Rosehall Hotel, Seahaven Hotel, Old Town Chambers, Albany Hotel, Motel One, Parliament House Hotel, Edinburgh House Hotel, Royal Mile Mansions, The Royal Scots Club, Royal Mile Apartments, St. Giles Apartments, The Guards Hotel, Travelodge Haymarket, Ibis Style, Abbot's House Hotel, Adelphi Hotel, Northfield House Hotel, Novotel Edinburgh Park, Sheraton Hotel, Kings Manor Hotel, Dundas Castle, Norton House Hotel, Dalmahoy Hotel & Country Club, Royal Ettrick Hotel, Travelodge Edinburgh Central, Holiday Inn Express Edinburgh, Ibis Edinburgh Centre South Bridge, Stay Central, Residence Inn, Fountain Court EQ2, Holiday Inn Corstorphine, Capital Hotel, Balmoral Hotel, Premier Inn, Dakota Hotel, Holiday Inn Edinburgh City West, Princes Street Suites, Park View House Hotel, Victoria Park House Hotel, Edinburgh City Hotel, Premier Inn, Apex Hotel, Waldorf Astoria Edinburgh - The Caledonian, Edinburgh Marriott Hotel, The Edinburgh Residence, Hilton Edinburgh Grosvenor, Tune Hotel, Hotel Dunstane City, Raj Hotel, Duthus Lodge, The Murrayfield House, Toby Carvery, White Lady, Ellersly House Hotel, Rockville Hotel, Premier Travel Inn, Travelodge, Western Manor House Hotel, Travelodge Cameron Toll, Premier Inn, Premier Inn Edinburgh Park, Channings Hotel, Robert Burns Hotel, Park View House Hotel, Park View House Hotel, Ibis Budget Edinburgh Park, Angels Share Hotel, George Hotel, Crowne Plaza - The Roxburghe +48.8832844 2.3022074 +1 +49.4129429 8.7045098, 49.4185873 8.7563730, 49.4171886 8.7613146, 49.4078352 8.6858842, 49.4079762 8.6870498, 49.4061197 8.6920317, 49.4058917 8.6902904, 49.4046222 8.6868381, 49.4032452 8.6845637, 49.3783665 8.6932651, 49.4146832 8.6923348, 49.4144086 8.6920334, 49.4131784 8.7101075, 49.4074805 8.6879067, 49.4066312 8.6852959, 49.4129225 8.7239221, 49.4136373 8.6927118, 49.4112725 8.7119074, 49.4095367 8.7037082, 49.3778590 8.6930131, 49.3777697 8.6932265, 49.4169935 8.6914785, 49.4146001 8.7738410, 49.4376003 8.7518747, 49.4124368 8.7095147, 49.4127909 8.7133593, 49.4135426 8.7142038, 49.4288015 8.6872183, 49.4142986 8.6902743, 49.4136357 8.6943202, 49.4040525 8.6844956, 49.3995165 8.6879132, 49.4139051 8.6920559, 49.4162757 8.6922037, 49.4104204 8.7158634, 49.4055996 8.6889278, 49.3812968 8.6894052, 49.4139993 8.6932058, 49.4131782 8.7072377, 49.4129985 8.7075880, 49.4128971 8.7089006, 49.4121728 8.7080504, 49.4123763 8.7095125, 49.4127246 8.7091094, 49.4132139 8.7078103, 49.4079479 8.6956416, 49.4121887 8.7014037, 49.4119811 8.7001029, 49.4118690 8.6989413, 49.4130878 8.7091392, 49.4131986 8.7088233, 49.4007776 8.6911061, 49.4035568 8.6922425, 49.4058460 8.6924951, 49.4076624 8.6922255, 49.4083867 8.6927384, 49.4055314 8.6924048, 49.4014846 8.6914932, 49.4119138 8.7090833, 49.4119011 8.7089353, 49.4115665 8.7029371, 49.4115772 8.7046048, 49.4117134 8.7084690, 49.4000859 8.6904108, 49.3997565 8.6902626, 49.4091521 8.6979357, 49.3995142 8.6850002, 49.4092258 8.7140567, 49.4070439 8.6949350, 49.4117441 8.7092576, 49.3742086 8.7031163, 49.4110740 8.7008373, 49.4114705 8.7022980, 49.4115939 8.7046894, 49.4116506 8.7051386, 49.4119604 8.7038095, 49.4118295 8.7066501, 49.4116479 8.7066124, 49.4117726 8.7067669, 49.4117492 8.7058025, 49.4117230 8.7087903, 49.4122865 8.7059453, 49.4124399 8.7105960, 49.4111189 8.7110358, 49.4131432 8.7133745, 49.4062164 8.6906512, 49.4041847 8.6844762, 49.4061045 8.6919006, 49.4129103 8.7014032, 49.4106934 8.7057683, 49.4003850 8.6920257, 49.4247718 8.6874951, 49.4203724 8.7396448, 49.4087049 8.7054045, 49.4136428 8.6936066, 49.4130575 8.7096585, 49.4115837 8.7106378, 49.3738871 8.7039058, 49.4114155 8.7034039, 49.4079188 8.6896894, 49.4082939 8.6917604, 49.4179298 8.7611063, 49.4132974 8.7097572, 49.4125123 8.7110100, 49.4071802 8.6893369, 49.4078499 8.6884637, 49.4181473 8.7565975, 49.4104061 8.7157086, 49.4108151 8.7149178, 49.4094481 8.7011221, 49.3896229 8.6900545, 49.3790377 8.6919226, 49.3786163 8.6868257, 49.3810024 8.6888615, 49.3799295 8.6843446, 49.3727648 8.7034774, 49.3744103 8.7047986, 49.4118680 8.7106616, 49.4085554 8.6900358, 49.3787743 8.6924168, 49.3654480 8.6869739, 49.3865134 8.7038130, 49.3796123 8.6875344, 49.4282302 8.6874448, 49.4255887 8.6891453, 49.4254663 8.6892002, 49.4284964 8.6877953, 49.4280495 8.6869299, 49.4298363 8.6853708, 49.4235631 8.6886029, 49.4139598 8.6937014, 49.4217923 8.7056451, 49.4384096 8.6837127, 49.3887612 8.6898215, 49.4143279 8.6877116, 49.4145768 8.6900311, 49.4114477 8.7117426, 49.4179324 8.7578275, 49.4447844 8.7558449, 49.4134141 8.7156909, 49.4127437 8.7131641, 49.4278544 8.6884082 +Regard de la Roquette, L'enceinte de Philippe Auguste, Cavea des Arènes de Lutèce +55.9359156 -3.2099930 +49.4276763 8.6857958, 49.4038333 8.6771587, 49.4171595 8.6617457, 49.4147558 8.6660779, 49.4134202 8.6738393, 49.4192295 8.7567625, 49.4082107 8.6921228, 49.4091698 8.6936091, 49.4041276 8.6763300, 49.4172710 8.6921830, 49.4124311 8.7120085, 49.3804963 8.6875192, 49.4031182 8.6470339, 49.3989298 8.6889417, 49.4107889 8.7060227, 49.4065233 8.6910827, 49.4013623 8.6726870, 49.4089481 8.7124297, 49.4121807 8.6993722, 49.3656248 8.6889494 +Ibis +4 +yes +Fahrschule Formel 1 and 06221 834117, Fahrschule Lechner, Fahrschule Gölz and 0177/310 650 4, Fahrschule Jung +no +320 +stadtmobil, Stadtmobil, stadtmobil Rhein-Neckar, Stadtmobil Rhein-Neckar, Stadtmobil Rhein-Neckar AG +48.8628907 2.3351275, 48.8699382 2.3403209, 48.8697525 2.3517557, 48.8728847 2.2989591, 48.8732083 2.2979398, 48.8606768 2.3486445, 48.8728311 2.3429546, 48.8759449 2.3241482, 48.8612868 2.3461069, 48.8804310 2.3540947, 48.8801870 2.3552631, 48.8738880 2.3330270, 48.8613752 2.3532868 +yes +8 +16.431036060698442 +Musée de l'Armée, Parc des Expositions de Paris - Porte de Versailles, Hôtel Montpensier, Musée national des Arts et Métiers, Hôtel Ibis Paris Avenue d'Italie, Cité des Sciences et de l'Industrie, Le Grand Hôtel Intercontinental, Cité des Enfants, Hôtel deVillas, Citadines Place d'Italie, Hôtel Kyriad, Novotel Paris Bercy, Hôtel Ibis Styles Paris-Bercy, Mercure, Hôtel Marriott, Musée du Petit Palais, Hôtel de la Trémoille, Hôtel Le Walt, Hôtel Le Monna Lisa, Hôtel Pullman Paris Bercy, Holliday Inn, Musée de la Poste, galerie-musée Baccarat, Salle des collections, Jules Cesar, Hôtel Le Derby Alma, Choco-Story - Le musée gourmand du chocolat, Le Meurice, Musée de la Marine, Franprix, AVALON HOTEL, Hôtellerie Paris Saint-Honoré, Ibis Paris Brancion parc des expositions, Oops hostel, Hôtel ibis, Hôtel Belambra Magendie (Touring Hotel), Holliday Inn Garden Court, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin, Musée national d'art moderne, Auberge de jeunesse Yves Robert, Carrefour Numérique, Buste de Marc Seguin, Mercure et la Musique, L'Agriculture et l'Industrie, Beauséjour Montmartre, Hôtel Paris Le Marquis Eiffel, IBIS STYLES PARIS PIGALLE MONTMARTRE HOTEL, IBIS STYLES PARIS PIGALLE MONTMARTRE HOTEL, Grille du Coq, Tour Eiffel, Tour Montparnasse, Panthéon, Musée du quai Branly, Hôtel Pullman Montparnasse, Galeries de Paléontologie et d'Anatomie comparée, Institut du Monde Arabe, FIAP, Jeu de Paume, Musée de l'Orangerie, Centre Pompidou, Grand Palais, Pavillon de l'Arsenal, Musée d'Orsay, IBIS, Ibis, Musée Cernuschi, Musée Rodin, Musée Jacquemart-André, Mercure Blanqui Place d'Italie, Ibis Styles Tolbiac Bibliothèque, Fondation Cartier, Marriott Rive Gauche, Musée Bourdelle, Grande Galerie de l'Évolution, Hôtel Méridien, Manufacture des Gobelins, Cavea des Arènes de Lutèce, Cathédrale Notre-Dame de Paris, Hôtel Le Tourville, Musée Galliera, Musée Carnavalet, Le Louvre and 48.8560795 2.3115715, 48.8318676 2.2884097, 48.8643625 2.3363084, 48.8660977 2.3554138, 48.8301361 2.3564885, 48.8957518 2.3879761, 48.8706550 2.3303465, 48.8957352 2.3886935, 48.8400155 2.3612991, 48.8305203 2.3549865, 48.8351933 2.3876342, 48.8388012 2.3804572, 48.8384022 2.3811331, 48.8444405 2.3728366, 48.8710747 2.3050358, 48.8660456 2.3145051, 48.8668308 2.3028826, 48.8547458 2.3065559, 48.8715217 2.3076937, 48.8318013 2.3866661, 48.8385581 2.3228175, 48.8414574 2.3172246, 48.8677629 2.2935696, 48.8842887 2.2891352, 48.8625016 2.3453019, 48.8481468 2.3720124, 48.8604399 2.3007825, 48.8705899 2.3500828, 48.8652754 2.3282212, 48.8618163 2.2873421, 48.8300211 2.3348369, 48.8811174 2.3514426, 48.8727937 2.3157855, 48.8302782 2.3020187, 48.8340255 2.3533911, 48.8323889 2.3868172, 48.8340571 2.3460780, 48.8888344 2.3331457, 48.8404563 2.3198526, 48.8607161 2.3525007, 48.8886172 2.3628833, 48.8960350 2.3884154, 48.8463118 2.2767991, 48.8394220 2.2709855, 48.8626607 2.3011910, 48.8671200 2.3540478, 48.8670465 2.3537266, 48.8672803 2.3538862, 48.8836722 2.3257995, 48.8516696 2.2978180, 48.8813853 2.3373815, 48.8813853 2.3373815, 48.8684553 2.3152488, 48.8582609 2.2944990, 48.8421128 2.3219796, 48.8461888 2.3460786, 48.8609823 2.2977973, 48.8383845 2.3209532, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8305359 2.3382127, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8605119 2.3524278, 48.8661515 2.3122667, 48.8505164 2.3621847, 48.8599188 2.3265259, 48.8576463 2.3728295, 48.8920187 2.3847925, 48.8794667 2.3125380, 48.8553042 2.3158566, 48.8755169 2.3105465, 48.8301934 2.3530001, 48.8289227 2.3741564, 48.8373190 2.3319319, 48.8316304 2.3400175, 48.8432079 2.3186583, 48.8421181 2.3562419, 48.8795379 2.2855888, 48.8344502 2.3520875, 48.8450745 2.3528309, 48.8529376 2.3498716, 48.8542680 2.3078406, 48.8657061 2.2966614, 48.8576820 2.3627148, 48.8614768 2.3351679 +Fahrschule Formel 1 and 06221 834117, Fahrschule Gölz and 0177/310 650 4 +Ch. Lebourg Paris 1904 Fondu par Le Val d’Osne Paris and Statue équestre de Jeanne d'Arc, Jacques Cassard 1679 - 1740 and Monument à Jacques Cassard, Santa Anna Britannorum patrona nautis et navibus nostris semper faveas and Statue de Sainte-Anne, A Guépin ses concitoyens 1805-1873 and Statue d'Ange Guépin, Anne Duchesse de Bretagne Reine de France 1476-1514 1822-1896 and Statue d'Anne de Bretagne, Arthur III Connétable de France Duc de Bretagne 1393-1457 1822-1896 and Statue d'Arthur III, A Ecorchard et ses amis. 1809 - 1882. Directeur Créateur du Jardin des Plantes de Nantes and Statue du Docteur Écorchard, Jules Verne and Statue de Jules Verne, Nantes 24 Juin 1809 - Paris 7 janvier 1835 - Qu'importe un jour de pleurs L'avenir du génie est l'immortalité and Plaque à Élisa Mercoeur, Olivier de Clisson, connétable de France 1336-1407 1900 and Statue d'Olivier V de Clisson, Bertrand Du Guesclin connétable de France 1320 - 1380 1900 and Statue de Bertrand Du Guesclin, Général Philippe Leclerc de Hautecloque, Maréchal de France, 1902-1947. Jurez de ne déposer les armes que lorsque nos couleurs, nos belles couleurs, flotteront sur la cathédrale de Strasbourg and Statue du Général Leclerc de Hautecloque, Le 8 Février 1828 Jules Verne, romancier, précurseur des découvertes modernes est né dans cette maison. and Maison natale de Jules Verne, Charles de Gaulle 1890-1970 Le Général de Gaulle est venu officiellement à Nantes le 14 janvier 1945 remettre la Croix de la Libération décernée le 11 Novembre 1944 and Statue du Général Charles De Gaulle, Sequoia sempervirens Don du peuple américain au peuple français à l'occasion du bicentenaire de la Déclaration des Droits de l'Homme et du Citoyen et du Bill of Rights of the United States. 1789-1989 Témoignage de deux siècles d'amitié and Sequoia sempervirens, 1775-1785 À la mémoire des acadiens déportés du Canada par les anglais et réfugiés à Nantes attendant pour la plupart leur embarquementt pour la Louisiane, René Théophile-Hyacinthe LAËNNEC Né à Quimper le 17 Février 1781 Mort à Ploaré le 13 Aout 1826. A vécu dans cette maison au foyer de son oncle Guillaume LAËNNEC Recteur de l'Ecole de Médecine de NANTES Du 15 Mai 1788 au 24 JUIN 1793. [...] and Maison de René Laënnec, Serge Danot 1931-1990 LE MANÈGE ENCHANTÉ and Serge Danot, ARMEL DE BLOCQUEL DE CROIX Baron de WISMES 1922-2009 and Armel de Wismes, CI GIT VENERABLE PRETRE PIERRE RENE REVEILLE DE BEAUREGARD SUCCESSIVEMENT VICAIRE DE SAINT DENIS CURE DE Psse DE LIEGE DE CELLE DE Ste CROIX DE CETTE VILLE, ET ENFIN VICAIRE GENERAL DU DIOCESE. IL TERMINA SA CARRIERE PLEINE DE BONNES OEUVRES ... and Pierre-René Réveillé de Beauregard, Familles Colombel et Monnier du Pavillon and Georges et Évariste Colombel, Ange Guépin La démocratie nantaise 1874 and Ange Guépin, Alan Barvek da dad ar vro breiz ha naoned adsavet 937 1937 - Ici en 937 ALAIN BARBEORTE DÉFIT LES NORMANDS ET DÉLIVRA LA BRETAGNE and Plaque à Alain Barbetorte, La République Française en hommage aux Victimes des Persécutions Racistes et Antisémites et des Crimes contre l'Humanité commis sous l'autorité de fait dite "Gouvernement de l'État Français" 1940-1944 N'oublions jamais and Plaque aux victimes des persécutions racistes et antisémites, Au cours de l'été 1955 un dur conflit dans la métallurgie et le bâtiment engage le mouvement ouvrier nantais. Ici, le 19 AOÛT, JEAN RIGOLLET est mortellement blessé lors d'affrontements violents entre forces de l'ordre et grévistes. [...] and Plaque à Jean Rigollet, ICI DE PAR LA VOLONTE D'ANNE DUCHESSE DE BRETAGNE REINE DE FRANCE FUT EDIFIE LE PALAIS DE LA CHAMBRE DES COMPTES DE BRETAGNE and Commémoration de l'installation de la Cour des Comptes, ICI HABITAIT LE GÉNÉRAL DE DIVISION DE TORQUAT DE LA COULERIE 1873 - 1944 Grand Officier de la Légion d'Honneur (Ancien Comt du 18e Bon de Chasseurs) Fusillé par les Allemands le 30 juillet 1944 à KERFANY près QUIMPERLÉ [...] and Maison du Général de Torquat de la Coulerie, Les Anciens de la 2eme Division Blindée de Loire Atlantique A la mémoire de leur chef le Général LECLERC de HAUTECLOQUE Maréchal de France 1902 - 1947 Nantes 10.10.1987 and Plaque au Général Leclerc, ICI EXISTAIT VN JEV DE PAVME DÉTRVIT EN 1836, DANS LEQVEL J.B.POQVELIN DIT MOLIERE A JOVE LA COMEDIE EN 1648 and Plaque à Molière, 1877 - 1977 EN HOMMAGE AUX HOMMES ET AUX FEMMES QUI ONT LUTTE POUR UNE ECOLE PUBLIQUE ET LAIQUE - LA VILLE DE NANTES 26 NOVEMBRE 1977 and Plaque du centennaire de l'école, 22/10/1847 12/02/1917 and Charles Brunelière, illisible and François-Marie Bonaventure du fou, Ci-gît Legoff de Fontainegal. OTIUS MORI QUA OEDARI and Legoff de Fontainegal, 25/04/1886 - 11/04/1911 and René Cornulier-Lucinière, décédé le 3 octobre 1892 dans sa 75ème année. La démocratie nantaise. and Victor Coudrain, Ici vécut le compositeur Paul LADMIRAULT 1877-1944 Né à NANTES le 8 décembre 1877 il fit ses études musicales à NANTES puis à PARIS dans la classe de Gabriel FAURÉ où il obtint les plus hautes distinctions D'écriture classique sa musique s'inspire [...] and Maison de Paul Ladmirault, Blois 1871 - Boshof 1900 - Au colonel Villebois Mareuil né à Nantes le 22 mars 1847 mort au Champ d'honneur. À Boshof Transvaal le 5 avril 1900. and Statue de Georges de Villebois-Mareuil, Général Mellinet 1798 - 1894 Leblanc Barbedienne Fondeur Paris Marqueste 1897 and Statue du Général Mellinet, La garde meurt et ne se rend pas. A Cambronne and Statue du Général Cambronne, À D'HAVELOOSE LE BIENFAITEUR DES PAUVRES - LA BIENFAISANCE ET LA CHARITÉ LUI RENDENT HOMMAGE and Stèle d'Haveloose, À l'Armée - Honneur et Patrie and Ossuaire militaire +yes +Forrest Road +33 +REpower, Vestas, Enercon, NEG Micon, Nordex +100 +51.0314650 13.7060792, 50.9984910 13.8180107, 51.0477367 13.7924112, 51.0813022 13.6914169, 51.0761832 13.6854700, 51.0531342 13.7070918, 51.0301256 13.7603362, 51.0157764 13.7682166, 51.0484348 13.7907288, 51.0026862 13.7951099, 51.0129678 13.7811896, 51.0133169 13.7545602, 51.0298689 13.6478846, 51.0742642 13.6986054, 51.0739544 13.7586196, 51.0306245 13.7016945, 51.0117598 13.7985344, 50.9917185 13.7973870, 50.9917062 13.7974603, 51.0473259 13.8090954, 51.0308817 13.7016925, 51.0306353 13.7016025, 51.0307674 13.7015445, 51.0029038 13.8026801, 51.0301067 13.7605035, 51.0306483 13.7017773, 51.0307733 13.7018143, 51.0477367 13.7924112, 51.0301131 13.7604231 +Theodor Tucher +RATP, RATP +yes +yes +recreation ground, retail, grass, construction, cemetery, school, military, commercial, forest, village green, basin, allotments, reservoir, railway, industrial, meadow, residential, brownfield, orchard, vineyard, greenhouse horticulture, greenfield, gravel, plants, flowers, traffic island +193 +0 +507 +0 +48.8373758 2.3176784, 48.8671035 2.3471909, 48.8379602 2.2583959, 48.8410120 2.3066005, 48.8570028 2.3007925, 48.8579137 2.3005660, 48.8782645 2.3740462, 48.8774801 2.3700505, 48.8318670 2.3144693, 48.8689224 2.3335350, 48.8395609 2.3021892, 48.8375207 2.2967192, 48.8375266 2.2960585, 48.8276825 2.3271004, 48.8501002 2.3428094, 48.8327092 2.3625620, 48.8304784 2.3562767, 48.8334332 2.3545467, 48.8326050 2.3544168, 48.8530182 2.4058632, 48.8554073 2.3268543, 48.8697474 2.3709540, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8703950 2.3709651, 48.8778843 2.3510144, 48.8529470 2.3434116, 48.8535279 2.3681762, 48.8488712 2.2873446, 48.8189960 2.3382666, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8521024 2.4034631, 48.8651078 2.3744344, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8695951 2.3715600, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8653000 2.3752307, 48.8673441 2.3627982, 48.8651925 2.3758399, 48.8629074 2.3860380, 48.8668485 2.3837377, 48.8672012 2.3825153, 48.8645121 2.3683814, 48.8318807 2.3568124, 48.8722818 2.3462050, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8501765 2.3792170, 48.8507286 2.3779068, 48.8509545 2.3780414, 48.8502726 2.3811628, 48.8330519 2.3316747, 48.8732053 2.3585526, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8367776 2.2983375, 48.8357338 2.3020633, 48.8605667 2.3751425, 48.8637354 2.3705262, 48.8642296 2.2884865, 48.8644747 2.2879509, 48.8645963 2.2880351, 48.8649321 2.2883111, 48.8654525 2.2886812, 48.8667948 2.2896169, 48.8677281 2.2909720, 48.8369085 2.4021711, 48.8370521 2.4018326, 48.8396803 2.3945209, 48.8400366 2.3946968, 48.8397862 2.3968956, 48.8368227 2.4037506, 48.8368603 2.3917906, 48.8393074 2.3970077, 48.8743920 2.3574266, 48.8482696 2.3715140, 48.8470790 2.3740473, 48.8469009 2.3721664, 48.8479197 2.3716692, 48.8461048 2.3740873, 48.8477030 2.3740290, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8457782 2.3745532, 48.8574421 2.3793069, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8717354 2.3404728, 48.8344235 2.3052236, 48.8750824 2.3241658, 48.8831483 2.3273794, 48.8563547 2.3050003, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8546797 2.3051724, 48.8870858 2.3139323, 48.8896917 2.3219420, 48.8839932 2.3218563, 48.8830031 2.2877361, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8374001 2.2957684, 48.8402359 2.3617231, 48.8648840 2.4053930, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8806821 2.3741833, 48.8789432 2.3031398, 48.8815632 2.3004421, 48.8844267 2.2977130, 48.8855270 2.2969790, 48.8849249 2.2981974, 48.8846750 2.2981530, 48.8773919 2.3395256, 48.8737979 2.3160522, 48.8384262 2.2988961, 48.8840917 2.3224995, 48.8379252 2.2975063, 48.8384650 2.2984232, 48.8386614 2.2988499, 48.8388963 2.2993041, 48.8807958 2.3003045, 48.8423511 2.2814155, 48.8591202 2.3475207, 48.8529207 2.3436323, 48.8386703 2.2822723, 48.8633059 2.3340632, 48.8647135 2.3426384, 48.8648693 2.3427189, 48.8630681 2.3412176, 48.8634071 2.3418915, 48.8660175 2.3407258, 48.8673651 2.3318225, 48.8656306 2.3303026, 48.8742798 2.3760564, 48.8690399 2.3387540, 48.8697491 2.3403685, 48.8695691 2.3402609, 48.8686652 2.3421761, 48.8689050 2.3327814, 48.8674306 2.3462505, 48.8578234 2.2746494, 48.8583112 2.2754219, 48.8660916 2.3526753, 48.8645295 2.3512403, 48.8685043 2.3498910, 48.8641253 2.3698504, 48.8518531 2.3567202, 48.8612900 2.3499825, 48.8612937 2.3537009, 48.8560141 2.3571788, 48.8595500 2.3565735, 48.8549508 2.3624309, 48.8552557 2.3616146, 48.8538346 2.3644665, 48.8543409 2.3691660, 48.8650455 2.3535907, 48.8669898 2.3620443, 48.8667188 2.3611850, 48.8662353 2.3610229, 48.8518893 2.3417124, 48.8652895 2.3605043, 48.8633001 2.3620149, 48.8632099 2.3622012, 48.8626516 2.3633443, 48.8621296 2.3644112, 48.8614452 2.3647591, 48.8630803 2.3510377, 48.8421221 2.3217245, 48.8592743 2.3796462, 48.8521680 2.3314230, 48.8447287 2.3244719, 48.8428059 2.3239714, 48.8809308 2.3651881, 48.8812888 2.3651008, 48.8808303 2.3650793, 48.8883530 2.3917794, 48.8489183 2.3392705, 48.8506265 2.3304803, 48.8485082 2.3285161, 48.8508389 2.3266905, 48.8568213 2.3685042, 48.8427653 2.3300120, 48.8420145 2.3302544, 48.8904247 2.3760144, 48.8440612 2.3225950, 48.8442156 2.3244262, 48.8473522 2.3183754, 48.8296558 2.3789838, 48.8711649 2.3221410, 48.8726629 2.3106385, 48.8732419 2.3115596, 48.8744495 2.3205466, 48.8752230 2.3264851, 48.8740876 2.3267342, 48.8778017 2.3225743, 48.8797413 2.3271672, 48.8830756 2.3269207, 48.8833400 2.3254009, 48.8813674 2.3151235, 48.8810818 2.3162341, 48.8786152 2.3156839, 48.8767711 2.3179268, 48.8778569 2.3059734, 48.8794539 2.3032046, 48.8749659 2.3041948, 48.8745760 2.3048788, 48.8687291 2.3014159, 48.8664956 2.3016793, 48.8677909 2.2995151, 48.8686254 2.2992361, 48.8725861 2.3019868, 48.8784635 2.2987871, 48.8698436 2.3061758, 48.8382008 2.3505003, 48.8378958 2.3507127, 48.8377870 2.3508117, 48.8378570 2.3515198, 48.8376483 2.3516414, 48.8727273 2.3786615, 48.8284669 2.3791072, 48.8287974 2.3821578, 48.8293821 2.3782449, 48.8444634 2.4058653, 48.8806637 2.3648615, 48.8822323 2.3662711, 48.8720243 2.2934411, 48.8684366 2.2915095, 48.8714262 2.2899337, 48.8689351 2.2833107, 48.8696967 2.2845776, 48.8694565 2.2845446, 48.8700723 2.2857876, 48.8690091 2.2852941, 48.8691634 2.2851996, 48.8749903 2.2860127, 48.8759692 2.2834989, 48.8748643 2.2834193, 48.8690546 2.2835943, 48.8655496 2.2837039, 48.8657006 2.2836110, 48.8667831 2.2790363, 48.8459991 2.3734585, 48.8664481 2.2772490, 48.8659840 2.2742050, 48.8633053 2.2742098, 48.8624073 2.2760147, 48.8593999 2.2774250, 48.8583220 2.2745520, 48.8584493 2.2748476, 48.8580404 2.2776736, 48.8411414 2.3136506, 48.8533487 2.3667989, 48.8760516 2.3450644, 48.8557164 2.2701238, 48.8417733 2.3185097, 48.8559683 2.2711042, 48.8369684 2.2533009, 48.8394820 2.3097854, 48.8502874 2.2762982, 48.8949842 2.3821818, 48.8781855 2.2878593, 48.8362844 2.3061932, 48.8535026 2.2653555, 48.8846806 2.3623964, 48.8797648 2.3567638, 48.8491712 2.2665706, 48.8810016 2.3640265, 48.8233119 2.3260789, 48.8475928 2.2669653, 48.8484138 2.2647127, 48.8478601 2.2637874, 48.8485576 2.2650178, 48.8454405 2.2582420, 48.8485516 2.2751179, 48.8606979 2.3554288, 48.8605259 2.3552067, 48.8765046 2.3790929, 48.8415500 2.2669376, 48.8717642 2.3765169, 48.8399984 2.2627388, 48.8307191 2.3193023, 48.8304006 2.3192272, 48.8824125 2.3814642, 48.8758150 2.2867065, 48.8505969 2.3487384, 48.8465904 2.3434584, 48.8481836 2.3416278, 48.8504365 2.3250405, 48.8439434 2.3420437, 48.8461211 2.3404463, 48.8388735 2.3499896, 48.8430873 2.3523909, 48.8433167 2.3520295, 48.8446194 2.3521389, 48.8387237 2.3571215, 48.8480122 2.2605847, 48.8555518 2.3602965, 48.8585424 2.3554995, 48.8589930 2.3030851, 48.8661318 2.3536080, 48.8417910 2.3293787, 48.8474457 2.3180776, 48.8478498 2.3111276, 48.8685310 2.3627215, 48.8645339 2.3458426, 48.8664790 2.3612544, 48.8671863 2.3624934, 48.8452289 2.2582589, 48.8809021 2.3403319, 48.8471366 2.3867728, 48.8382469 2.3985623, 48.8356227 2.4057366, 48.8417549 2.3864187, 48.8455537 2.3108109, 48.8450445 2.3104567, 48.8474933 2.3107909, 48.8394375 2.2918836, 48.8514163 2.3135568, 48.8794747 2.3547243, 48.8426729 2.3023971, 48.8431492 2.3040014, 48.8431097 2.3128917, 48.8673662 2.3064825, 48.8592377 2.3714158, 48.8256887 2.3653770, 48.8695383 2.3950747, 48.8263809 2.3414522, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8278525 2.3262538, 48.8953387 2.3825799, 48.8388287 2.2816271, 48.8367957 2.3917944, 48.8397112 2.3025357, 48.8396385 2.3018330, 48.8234162 2.3578095, 48.8223317 2.3587958, 48.8230555 2.3585643, 48.8283319 2.3249564, 48.8500696 2.2886536, 48.8454338 2.3886185, 48.8560015 2.3425743, 48.8544203 2.3257043, 48.8503640 2.3847349, 48.8446673 2.3830913, 48.8488537 2.3789042, 48.8459220 2.4058540, 48.8588998 2.2749555, 48.8585344 2.2751198, 48.8768988 2.3387135, 48.8383753 2.3982048, 48.8620598 2.2758197, 48.8632226 2.2764809, 48.8643683 2.2780086, 48.8682336 2.2816544, 48.8683009 2.2818137, 48.8636110 2.3699568, 48.8716652 2.3369422, 48.8724813 2.3352798, 48.8768502 2.3324723, 48.8715356 2.3340932, 48.8707193 2.3495070, 48.8761304 2.3564812, 48.8754523 2.3562375, 48.8834234 2.3734013, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8751634 2.3407635, 48.8696664 2.3354448, 48.8640573 2.3358570, 48.8580367 2.3228472, 48.8570504 2.3810504, 48.8468273 2.3109956, 48.8727906 2.3327950, 48.8540420 2.4102463, 48.8631926 2.3875837, 48.8465399 2.3518782, 48.8371620 2.2788430, 48.8256754 2.3500062, 48.8260463 2.3458083, 48.8275711 2.3258960, 48.8274068 2.3262715, 48.8369096 2.3712028, 48.8312779 2.3775666, 48.8731847 2.3591245, 48.8902005 2.3757322, 48.8390681 2.2569423, 48.8706510 2.3613960, 48.8549374 2.3061290, 48.8433669 2.3494429, 48.8709866 2.3363950, 48.8570621 2.3817062, 48.8372502 2.3914765, 48.8790699 2.3540350, 48.8848997 2.3377794, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8481085 2.4036760, 48.8509779 2.2927923, 48.8550471 2.2699500, 48.8418785 2.2997087, 48.8442816 2.3244689, 48.8482530 2.4016764, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8391384 2.2822010, 48.8854990 2.3103821, 48.8276838 2.3319307, 48.8701182 2.3328493, 48.8430494 2.2949889, 48.8416006 2.3224232, 48.8337153 2.3863338, 48.8430431 2.3223965, 48.8850396 2.3205857, 48.8860872 2.3177587, 48.8468610 2.3536998, 48.8201698 2.3641255, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8804253 2.3287401, 48.8743336 2.3345374, 48.8301847 2.3456951, 48.8425418 2.2920002, 48.8340558 2.2901416, 48.8330244 2.2891177, 48.8334343 2.2890580, 48.8642191 2.3423423, 48.8638673 2.3421689, 48.8815429 2.2914706, 48.8838668 2.3274744, 48.8889565 2.3226941, 48.8937935 2.3362303, 48.8915892 2.3347229, 48.8975742 2.3374320, 48.8959308 2.3457254, 48.8906192 2.3344868, 48.8929700 2.3402831, 48.8931959 2.3273644, 48.8938006 2.3360065, 48.8928237 2.3276058, 48.8927037 2.3270855, 48.8950865 2.3279515, 48.8927798 2.3416901, 48.8357045 2.2898603, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8507185 2.3452276, 48.8506024 2.2921760, 48.8434041 2.2832488, 48.8441583 2.2814225, 48.8601040 2.2800860, 48.8525391 2.4047416, 48.8525041 2.4054710, 48.8358361 2.3959436, 48.8620103 2.3504016, 48.8555902 2.2705124, 48.8709674 2.2927276, 48.8701195 2.2926560, 48.8607663 2.2829855, 48.8742509 2.3267610, 48.8674435 2.3066185, 48.8760737 2.3314470, 48.8776629 2.3503063, 48.8607520 2.3551307, 48.8599332 2.3492544, 48.8616973 2.3497749, 48.8314530 2.3131078, 48.8366420 2.3235880, 48.8798460 2.2882480, 48.8706907 2.3018397, 48.8711468 2.3021857, 48.8442760 2.3236880, 48.8443641 2.3231615, 48.8808570 2.3744052, 48.8816465 2.3719957, 48.8810026 2.3740798, 48.8809708 2.3734937, 48.8808782 2.3736050, 48.8412683 2.3182655, 48.8750168 2.2842019, 48.8271902 2.3689921, 48.8274443 2.3054531, 48.8456435 2.3883893, 48.8467978 2.3874491, 48.8463910 2.3878730, 48.8240842 2.3636888, 48.8226659 2.3580445, 48.8642610 2.2877420, 48.8259715 2.3507845, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8260781 2.3450782, 48.8257972 2.3453018, 48.8690375 2.4018799, 48.8681245 2.4017154, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8709768 2.4035156, 48.8718932 2.4046138, 48.8711831 2.4041560, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8650286 2.3978764, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8661206 2.3993734, 48.8647416 2.4000331, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8646156 2.3980291, 48.8385802 2.3568194, 48.8575448 2.3507955, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8260853 2.3604941, 48.8265662 2.3114209, 48.8266741 2.3089333, 48.8276987 2.3717961, 48.8348018 2.2835149, 48.8898740 2.3601766, 48.8289555 2.3008177, 48.8309472 2.3666202, 48.8900866 2.3603615, 48.8425217 2.2605998, 48.8399979 2.2631418, 48.8393773 2.2626930, 48.8445716 2.2773781, 48.8457722 2.3952172, 48.8423827 2.2779816, 48.8315085 2.3570011, 48.8393433 2.2612518, 48.8382522 2.2590990, 48.8294497 2.3691497, 48.8911754 2.3596165, 48.8912089 2.3601196, 48.8556190 2.3071441, 48.8267862 2.3639559, 48.8275456 2.3565272, 48.8292086 2.3568667, 48.8895540 2.3596572, 48.8601780 2.3784708, 48.8918470 2.3497087, 48.8394408 2.3901626, 48.8634536 2.3668626, 48.8621628 2.3647719, 48.8643458 2.3599234, 48.8304530 2.3781049, 48.8561136 2.3566520, 48.8740405 2.3857795, 48.8749608 2.3892009, 48.8739345 2.3878755, 48.8794344 2.3881410, 48.8536688 2.3651544, 48.8801930 2.3906171, 48.8750094 2.3896199, 48.8755856 2.3816591, 48.8358783 2.3528351, 48.8737724 2.3861774, 48.8469948 2.3720795, 48.8741080 2.3859246, 48.8448082 2.4018695, 48.8831104 2.3242250, 48.8776217 2.3939651, 48.8776968 2.3952330, 48.8775224 2.3930979, 48.8577037 2.3677906, 48.8547650 2.3703199, 48.8522552 2.3385407, 48.8419262 2.3651705, 48.8370898 2.3512464, 48.8439360 2.3521362, 48.8466920 2.2861937, 48.8464464 2.2864898, 48.8462140 2.2863069, 48.8471256 2.2857626, 48.8467862 2.2850085, 48.8687439 2.3725567, 48.8737876 2.3254797, 48.8757911 2.3276502, 48.8853087 2.2914432, 48.8666300 2.3441053, 48.8751073 2.3063372, 48.8473180 2.3512660, 48.8761128 2.3302242, 48.8760136 2.3310108, 48.8628914 2.2767409, 48.8836091 2.3810186, 48.8326928 2.3011680, 48.8434103 2.2931530, 48.8367477 2.3065081, 48.8396815 2.2927792, 48.8364615 2.3516931, 48.8759800 2.3435799, 48.8602282 2.3444320, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8442882 2.3080071, 48.8528372 2.2900682, 48.8524061 2.2912571, 48.8529003 2.2907372, 48.8331060 2.3547764, 48.8275383 2.3571726, 48.8504014 2.2929658, 48.8781331 2.2973879, 48.8466594 2.4106749, 48.8474387 2.3948976, 48.8475088 2.4104704, 48.8293214 2.3692986, 48.8558171 2.3591925, 48.8310392 2.3425080, 48.8843398 2.3684081, 48.8295478 2.3565241, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8605440 2.3490975, 48.8235069 2.3253377, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8314166 2.3251141, 48.8747610 2.3399353, 48.8610529 2.3020976, 48.8742737 2.3172451, 48.8551235 2.3603692, 48.8788807 2.2940470, 48.8790502 2.2932877, 48.8787213 2.2930870, 48.8335336 2.4018517, 48.8344090 2.3538607, 48.8329666 2.3548590, 48.8860790 2.2927720, 48.8862920 2.2922300, 48.8860610 2.2916910, 48.8524475 2.3894597, 48.8815650 2.2950420, 48.8816640 2.2951850, 48.8698720 2.3253770, 48.8426473 2.3496219, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8767675 2.3414635, 48.8801010 2.2887410, 48.8518237 2.3263371, 48.8518410 2.3270180, 48.8520482 2.3269387, 48.8896590 2.3042630, 48.8459597 2.3544163, 48.8523174 2.3400938, 48.8370786 2.3520317, 48.8480411 2.3409988, 48.8487519 2.3414295, 48.8763180 2.3309180, 48.8260443 2.3266660, 48.8255907 2.3265438, 48.8570274 2.3983184, 48.8851905 2.3788177, 48.8694492 2.3546663, 48.8803860 2.3748678, 48.8843962 2.3388368, 48.8841050 2.3049810, 48.8840570 2.3045230, 48.8835710 2.3045840, 48.8837420 2.3043460, 48.8493470 2.3529650, 48.8747781 2.3879795, 48.8755246 2.3943562, 48.8315966 2.3304662, 48.8828185 2.3827206, 48.8753559 2.3919799, 48.8752306 2.3934592, 48.8818980 2.3374100, 48.8497330 2.3457635, 48.8491590 2.3498700, 48.8485190 2.3493440, 48.8401997 2.3954293, 48.8448871 2.2941778, 48.8452118 2.2941040, 48.8454696 2.2946866, 48.8651944 2.3554408, 48.8650138 2.3556963, 48.8895142 2.3498344, 48.8702024 2.2869885, 48.8578346 2.3793123, 48.8711617 2.3300722, 48.8403727 2.3337448, 48.8349994 2.3046409, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8313376 2.3296145, 48.8619859 2.3647571, 48.8664714 2.3673929, 48.8625029 2.3716831, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8455488 2.4110597, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8512137 2.3425994, 48.8648399 2.3394096, 48.8778905 2.3549883, 48.8488552 2.3942325, 48.8489972 2.3942887, 48.8505758 2.3948498, 48.8494165 2.3948501, 48.8726368 2.3332498, 48.8733021 2.3461422, 48.8717746 2.2995211, 48.8643045 2.3993897, 48.8449899 2.4047731, 48.8347313 2.3458453, 48.8351835 2.3533874, 48.8388397 2.3227192, 48.8791073 2.2907296, 48.8766198 2.2875734, 48.8406761 2.3933858, 48.8359858 2.3961013, 48.8680414 2.3235560 +9 +yes +fr:Pech de Bugarach, ca:Carlit, ca:Puigmal, ca:Pic d'Eina, ca:Pic de Noufonts, ca:Puigpedrós, ca:Tosseta de l'Esquella, ca:Pic de Finestrelles, ca:Puig Peric, ca:Puig de Tres Vents, ca:Pic de Bastiments, ca:Pic de la Dona, ca:Puig de Coma Ermada (Setcases), ca:Puig d'Ombriaga, ca:Pic de l'Infern, fr:Signal de Mailhebiau, ca:Comanegra, ca:Puig de la Llibertat +547 +4 +1 +Dicker Turm +7 +730 +Le Fournil de Lourmel, La Boul'Ange, La Boulenge d'Antan, Boulangerie - Pâtisserie Méri, Les Sourires de Dante, Du Pain et des Idées, La Gerbe d'Or, Boulangerie Hélène et Bernard Dorange, Les compagnons de Voltaire, Guesdon, Aux délices de Saint-Antoine, Jacques Bazin, Aux Délices de Manon, Céline et Étienne, Vitry d'Aubigny, Boulangerie Thierry Renard, Moisan, Le Grenier à Pain, Nature de pain, Le chant du pain, A. et H. Jourdan, Le Pain d'Auguste, Boulangerie Topaze, Boulanger Pâtissier Julien, Chez Paco, La baguette des Pyrenees, Aux Délices de Sèvres, Boulangerie Patisserie, Boulangerie Pâtisserie des Deux ponts, Gwen Choc, Boulangerie Julien, Boulangerie Pâtisserie Gaumer, Boulangerie Malineau, Boulangerie Kahn, Boulangerie Blin, Boulangerie Patrick et Christine, Boulanger patissier, Boulanger Patissier, Le Moulin de la Vierge, L'Univers du Pain, Bread & Roses, Au Saint-Honoré, Boulangerie "Les Caprices de Charlotte", Le Boulanger des Invalides, Boulangerie de l'Entr'acte, Le Boulanger de Monge, Maison Bichon, Aux Gamins de Ménilmontant, L'Epi d'Or, Boulangerie Yan Chantelle, Boulangerie Bonon, Maison Dault, La Grignotière, Le Badine de Martine, Bechu, Boulangerie Schou, Des Gâteaux et du Pain, Jossé, Boulangerie Saint-Louis, Le Fournil Du Village, Aux Sucreries de ma Mie, Le Quai du Pain, Huré Boulanger Patissier, Boulangerie Thevenin, Boulangerie Pascal & Sylvie Robin, Aux délices du palais, Boulangerie Gontier, Boulangerie Laurent Roperh, Les petits mitrons, Patiserie des Sultans, Autour du Fournil, La Tlemcenienne, Le Grenier de Félix, Paul, Boulangerie Patisserie, Le boulanger du parc, Les Délices Vauvenargues, Boulangerie, Boulangerie du Val de Grâce, Aux délices de Christine, Moisan, Blé sucré, Christian et Myckie, Patisserie de Choisy, Patisserie Saison, Arnaud DELMONTEL, La Maubeugeoise, Au Bec Sucré, Boulangerie Eric Kayser, Michel Deschamps, Leduc, Pains et Gourmandises, Les Saveurs de Charenton, Au Pain d'Autrefois, Landemaine, Boulangerie Maison Ellini, au naturel, Zerzour, Pichard, Dossemont, Moisan, La Truffe Noire, Le Saint-Georges, Les Gourmandises D'Eiffel, Eric Kayser, Paul Soulabaille, De Carvalho, Le Prestige, Au Coin de la Rue, Hissine, Boulangerie Patisserie de la Villette, Dominique Saibron, La fournée d'Augustine, Le Pain de Jacques, Au Plaisir du Pain, Boulangerie Feu de Bois, Au Levain des Martyrs, Paul, La Pompadour, La Ruche Gourmande, Aki boulanger, Boulangerie du Fauborg, Boulanger Patissier, Boulangerie Magnelli, La Parisienne, Maison Kayser, Boulangerie des Epinettes, Aux Epis d'Or, Boulangerie F. Comyn, Boulangerie Pâtisserie L'Escale, Boulanger Ounissi, Christophe & Muriel, Le petit creux, Cousin, Le Notre, Stohrer, Le fournil d'Andrézieux, Friends, Boulangerie Jean-Olivier Rondot, L'impérial, Boulangerie Ravignan, Coquelicot, Le 41, Boulangerie Fantasiiia, Au Levain de Pyrénées, A la baguette de Mozart, Boulangerie, Au Duc de la Chapelle, L'ami du pain, La Boulange du 12e, Le pain d'antan, Boulangerie, Sadaharu Aoki, Maison Champin, La Gourmandise, La Flûte Enchantée, Midoré, La Tranche Dorée, Artisan Boulanger, Maison Lendemaine, La Gobelinoise, Boulangerie Akiko et Philippe Bruere, Paul, Lebon, Tembely, Le Fournil de Julien, Aux armes de Niel, Le Grenier à Pains, Au pain complet de Paris, La Moulinoise, Maison Legendre, Boulangerie, Delmontel, Festival des pains, Artisan boulanger, Vaudron, Les Sept Épis, Pains et Passion, Les Délices du Fournil, francesca, Boulangerie Alsacienne Benoît Maeder, Bernard Delattre, Poilane, Rouiller, La Tradition, Le Bel Épi, La Gerbe de Blé, La boulangerie des buttes Chaumont, Atelier des Pains, Paul, Fournil de Wattignies, Huré, La Chocolatine, L'Art du Pain, Paul, By Cyril Lignac, Aux delices des Lilas, Boulangerie Benoist, Boulangerie Patisserie, Le Fournil de Paris, Le pétrin alsacien, La fournée Duhesme, Robin, Au Fournil Gaité, Au Chardon d'Argent, Boulangerie des Lombards, Zazou, Le Fournil de Paris, Millies Cookies, La Boul'Ange, Le péché des gourmets, Paul, Paul, Boulangeir Pâtisserie Kellerman, Amorino, Yv Nghy, Boulangerie Patisserie SAS Penain, L'Artisan du Pain, Boulangerie Patisserie Sainte-Anne, La Crac'ante, La Gambette à Pain, Maison Hébert, Maison Kevest, Boulangerie Patisserie Sandwicherie, Le fournil du moulin, La vicomte, Bonjour Backery, Paul, Fifty Fifty, Laurent Duchêne, La Bretagne, Boulangerie Brune 77, Boulangerie L. Paulin, Le fournil de Vanves, Maison Lefaure, Le Jardin des Pains, Boulangerie Pâtisserie Yelles, Annie & Gilles Boulangerie, Aux délices de la roquette, La tradition du pain, La saveur du pain, La Huche Normande, Square de Belleville, Les jardins de Paul'ha, Le grenier à pain, Boulangerie Saint-Charles, Boulangerie Flandrin, L'Angelus, Guillaume Delcourt, Boulangerie de Mogador, Boulangerie Patisserie, Patisserie Poncet, Eric Kayser, Boulangerie Pascal Chevret, Le Grenier à Pain, Boulangerie, Le Fournil Parmentier, Les délices de la Chapelle, Boulangerie Marceaux, Aux Péchés Normands, La Baguette Sedaine, Boulangerie, Le pain d'autrefois, Rudy Père Et Fils, Boulangerie Onfroy, Boulangerie Poilâne, La Boulangerie, Boulangerie Patisserie, Midoré, Boulangerie Patisserie au 140, Au bel arôme, Boulangerie Saint-Antoine, Bernard Telhier, La flûte Gana, Colisée Gourmet, La Boulange Ve, Sud Tunisien, Artisan Boulanger, Aux Péchés Normands BIO, La Fournée d'Augustine, Le bon Panneton, Boulangerie, La République pâtissière, Au petit Versailles du Marais, Patisserie Bonjour - 你好, Au Blé d'or, Colin Régis, Gérard Mulot, Maison Guénard, Boulangerie Metayer, Artisan boulanger pâtissier, Banette, Le blé royal, Délice Pain, Le Moulin De la vierge, Golden Bread, EVA, La Boulangerie de Papa, Ciel, Aux Délices de Manon, Foulon, Brioche Dorée, Paul, Desgranges, Paul, Paul, Le Grenier à Pain, Boulangerie Patisserie, Boulangerie Patisserie, Au Plaisir du Pain, Yves Thuriès Chocolat, Au Paradis du Gourmand, Ladurée, Boulangerie Alsacienne, Les délices de taine, Aux Gourmandises d'Arago, Boulangerie Evrard, Le Boulanger de Monge, Eric Kayser, Paul, Pou, Sara Lina, La baguette, Le Moulin de la Vierge, Asselin, Mert Pâtisserie, Joséphine Bakery, Paul, Maison Morange, Les Chants de Blé, La Panetière, Paul QUAI, Mottier, Le quartier du pain, Morieux, Au royaume du pain, Boulangerie, Le Gay Choc, Mason Pradier, Pains & Friandises, La Pyramide du prince, Le Pain Au Naturel, Maison Hardel, Boulangerie Ricquer, Thevenin, Au Petit Duc, Aux Surprises, Laurent Duchêne, La caverne aux pains, L'essentiel, Le pain du faubourg, Boulangerie Estaëlle, Contini, Gosselin, Paul, Pabois, Café Pouchkine, Eric Kayser, Boulangerie Patistory, La Truffe Noire, Maison Hilaire, Aux delices d'Oceane, La flute de Meaux, L'artisan boulanger Maison Maaned, Le Fournil de Kuss, La Croquandise, La grange aux pains, Le XXV, Boulangerie Malineau, Boulangerie Patisserie, La delicieuse, Boulangerie Patisserie, Boulangerie Patisserie, Vieille France, Boulangerie Patisserie, Le fournil de Paris, Boulangerie Patisserie, Le paradis du pain, Les Fées Pâtissières, Stanz, Pralus, Le dépot de pain de l'autre Boulange, La délicieuse, Le puits d'amour, Nicolle, Boulangerie Patisserie Gregory Desfoux, Boulangerie Patisserie, Boulangerie Patisserie, Boulangerie, Eric Kayser, Éric Kayser, Boulangerie Patisserie Chocolaterie, Sazanka, Boulangerie Patisserie, Le paradis des gourmands, Gaia, La coeur des pains, Tout chaud, Le petit poucet, Paul, Paul, Les Chants de Blé, Boulangerie Patisserie Chocolatier, Antoine Artisan Boulanger Pâtissier, Le gâteau battu, Aux Délices de Sèvres, Eric Kayser, Eric Kayser, Le Pain Quotidien, Lohezic, Au levain d'antan, Mireille, Le Damier Gourmand, R Canelle, Miss Manon, L'Épi de Blé, Boulangerie Patisserie, Paul, Boulanger Patissier, Brioche Dorée, Pain à la Ligne +Darmstädter Hof, Freizeitzentrum Köpfel, ISSW Hallenbad, Schwimmbad, Planschbecken, Hallenbad Köpfel Heidelberg, Thermalbad +19 +Heidelberg Marriott Hotel +464 +49.4058676 8.6845278, 49.3755036 8.6875476, 49.4114903 8.6527163, 49.4084682 8.7011215, 49.4282350 8.6834880, 49.4080165 8.6707602, 49.3970333 8.6721539 +48.8334063 2.2896356 +Ink Shop Printing, Hobs Repro, Pace Print, Prontaprint, Minuteman Press, Digital Print Centre, Edinburgh Copy Shop, Call Print, Green Print, Events Armoury Design and print, Crescent print LTD, Paragon Print Co., Print Sponge, Leith Print & Copy and 55.9439278 -3.2183524, 55.9462494 -3.2139894, 55.9412734 -3.1810442, 55.9561282 -3.2018779, 55.9603872 -3.1815888, 55.9514798 -3.2123746, 55.9496059 -3.1832770, 55.9470259 -3.1864063, 55.9431488 -3.1799425, 55.9452540 -3.1836161, 55.9489667 -3.1843829, 55.9645940 -3.1735181, 55.9609417 -3.1806709, 55.9754249 -3.1674641 +48.8375550 2.3183632, 48.8275755 2.3065523, 48.8506951 2.3463689 +0.32565524347099412 +Glenfiddich Distillery, Bunnahabhainn Distillery, Talisker Distillery, Glen Ord Distillery, Bowmore Distillery, Bladnoch Distillery, Arran Distillery, Bruichladdich Distillery, Kilchoman Distillery, Schöttlinger Kornbrennerei, Destillerie Gottesgabe, Caol Ila Distillery, Dalmore Distilery Visitor Centre, Erste Dresdner Spezialitätenbrennerei GmbH Augustus Rex, Destillerie "Geist von Rathen", Fa. Gert Scheithauer (Dipl.-Ing. FH) Brennereispezialitäten, Hoermann, guildive-caracol, Kornbrennerei Schilling, Painted Stave Distilling, Schladerer, Lantenhammer, Strathisla Distillery, Château Cugnac Armagnac, La Maison Ryst-Dupeyron, Callwood Distillery, Trapiche, Birgitta Rust Piekfeine Brände, Männlins Straußwirtschaft, Weingut Huck-Wagner, Brennstüberl Geistreich, Chevalier de Villarçon distillery ruins, Habitation Clement, Habitation St-Etienne, distillerie du Simon, Ye Old Grog Distillery, Michters Distillery & Tour Center, Thumb Butte Distillery, Bendistillery, Distillerie Saint James, Barrel House Distillery, Alte Brennerei, Enzianbrennerei Grassl, Altländer Brennerei, Distillerie de Bois-Roche, Linkwood Distillery, Glenmoray Distillery, Benriach-Glenlivet Distillery, Glen Elgin Distillery, Mannochmore Distillery, Glenlossie Distillery, Distillerie des Terres Rouges, Ben Nevis Distillery, Glenrothes Distillery, Glen Grant distillery, Aberlour Distillery, Benromach Distillery, Glenmorangie Distillery, Penderyn Distillery, Knockando Distillery, Tamdhu Distillery, Macallan Distilery, Glenfarclas Distillery, The Glenlivet, Blair Athol Distillery, Saint George's Distillery, Tullibardine Distillery, Clynelish Distillery, Glengoyne Distillery, Tobermory Distillery, Tomatin Distillery, Isle of Jura Distillery, Glenkinchie Distillery, Queens Arms, Aberfeldy Distillery, Sauerländer Edelbrand GmbH, Dalwhinnie Distilliery, The Glenlivet, Eversbusch, St. George Spirits, Château du Breuil, Château de Breuil, CopperMuse Distillery, Full Throttle Distillery, Abhainn Dearg Distillery, Oban Distillery, The Tormore Distillery, Ardbeg Distillery, Lagavulin Distillery, Flor de Cana, Du Nord Craft Spirits, La Mauny, 金車威士忌酒廠, Maine Distilleries - Cold River Vodka, Sallandt +limited +0.67791489450712539 +308.47384306782141 +no +fr:Roc de Peyre, fr:Moure de la Gardille, fr:Pic d'Anjeau, fr:Salasc, fr:Truc de Grèzes +2.993911286706529 +Clinique Paris V - Centre Médico Chirurgical, Clinique de Vinci (fermée), Centre de Protection Maternelle et Infantile, Clinique Geoffroy Saint-Hilaire, Centre municipal de santé, Clinique de la Muette, Institut Curie, Centre du Luxembourg (Consultations pluri-disciplinaires), Hôpital Marmottan, Maison De Santé Faidherbe, Centre de Bilan de Santé DEPSE, Laboratoire de biologie médicale, Centre de santé médical et dentaire, Hôpital Cognacq-Jay, Centre biologique chemin vert, COSEM Rome, Imagerie Médicale, Centres de dépistage anonymes et gratuits, Clinique Médicales, Médecine Physique Réadaptation, Clinique Canal de l'Ourcq, Hôpital privé des peupliers, Hôpital de jour pour enfants, Hôpital Sainte-Périne - Rossini - Chardon-Lagache, Hôpital Tenon, Hôpital Sainte-Anne, Fondation ophtalmologique Adolphe de Rothschild, Hôpital du Val de Grâce, Hôpital Cochin, Maternité Port Royal et Baudelocque, Hôpital Saint-Vincent de Paul, Hôpital des Quinze-Vingts, Hôpital Leopold Bellan, Hôpital Saint-Joseph, Hôpital Broussais, Hôpital de la Rochefoucauld, Institut Mutualiste Montsouris, Hôpital Européen Georges Pompidou, Hôpital Privé des Peupliers, Institut Pasteur, Hôpital Saint-Jacques, Hôpital Trousseau, Hôpital Lariboisière, Hopital Vaugirard, Hôpital Saint-Michel, Hôpital Fernand Widal, Hôpital Broca, Hôpital Saint-Louis, Hôpital Robert Debré, Hôpital National, Hopital Bichat, Maison médicale Jeanne Garnier, Hôpital Henri Dunant, Clinique Jouvenet, Clinique Edouard Rist, Notre-Dame de Bon Secours, Hôpital des Diaconnesses, Hôtel-Dieu, Maternité Sainte-Félicité, Centre de dépistage anonyme et gratuit, Hôpital Léopold Bellan, Les Cariatides d'Abbeville, Hôpital Jean Jaurès, Clinique des Buttes-Chaumont, Clinique Maussins-Nollet, Hôpital Tarnier, Clinique du Parc de Belleville, Hôpital Pierre Rouquès - Les Bluets, Maternité Les Bluets, Urgences, Institut de Cardiologie, Clinique Arago, Clinique Alleray Labrouste, Clinique Chirurgicale Victor Hugo, Climique Rémusat, Hôpital Sainte-Périne - Rossini - Chardon Lagache, Hôpital Croix Saint-Simon, Clinique Saint-Jean de Dieu, Hôpital Necker Enfants Malades, Hôpital Saint-Antoine, Hôpital Rothschild, Hôpital Esquirol, Clinique de la Jonquière, Clinique Rémy de Gourmont, Hôpital La Collégiale, Hôpital Bretonneau, Maternité Port Royal et Baudelocque, Hôpital des Gardiens de la Paix, Hôpital de la Pitié Salpétrière, Hôpital Maison-Blanche, Hopîtal Lasserre +49.4048641 8.6772256 +36 and 53.9360281 -1.0702516, 54.0307341 -1.0382265, 53.9755492 -1.0707896, 53.9629477 -0.9755778, 53.9303232 -1.0689686, 53.9642135 -1.0653371, 53.9871551 -1.0474167, 53.9859898 -1.0651562, 54.0411661 -1.0300613, 54.0118558 -1.0595910, 53.9575241 -1.0493096, 53.9793720 -1.0633348, 53.9673959 -1.0714738, 53.9563077 -1.0554740, 53.9776740 -1.0644274, 53.9579066 -1.0615711, 53.9578916 -1.0384236, 53.9411226 -1.0453008, 53.9402545 -1.0628004, 53.9412901 -1.0485025, 54.0031479 -1.0620491, 54.0086708 -1.0590792, 53.9679082 -1.0462940, 53.9511412 -1.0357185, 53.9787147 -1.0614117, 53.9417894 -1.0651445, 53.9955927 -1.0554353, 53.9605571 -1.0416518, 53.8979156 -0.9664321, 53.9564001 -1.0614879, 53.9602131 -1.0579907, 53.9598297 -1.0582374, 53.9799100 -1.0663846, 53.9622142 -1.0110749, 53.9586201 -1.0293671, 53.9640155 -1.0652996 +W.H. Smith, Librairie Galignani, Shakespeare and Company, Brentano's, Brentano's, Aapoum Bapoum, Gibert Joseph, Gibert Joseph, La Terrasse de Gutenberg, Page 189, Librairie Compagnie, Gibert Jeune - Sciences Humaines, Gibert Jeune, Gibert Jeune, Equipages, L'Atelier, L’atelier d’en face, Dhouailly et Cie, Youfeng (友风书店), Fnac, Librairie La Brèche, Papéterie-librairie de l'École militaire, Librairie Nation, Lezarts, Mona Lisait, Librairie Epona, Editions Guy Trédaniel, Le monde en tique, Presses de Sciences Po, À Livr'Ouvert, Librairie des jardins, Litote en Tête, L'Invit' à-lire, Éditions Franciscaines, Librairie Fontaine Passy, Librairie des Orphelins Apprentis d'Auteuil, Longtemps..., Les Guetteurs De Vent, La Friche, Librairie Dalloz, Librairie Beaujean, Little Tokyo, L'Arbre à Lettres - Mouffetard, Les Alizés, Paul Beuscher, Livres Anciens, Editions Eyrolles, Le Monde des cartes, L'Alinéa, Librairie Forhom, Librairie de Sèvres, Librairie Ancienne du Montparnasse, L'Herbe Rouge, Papeterie librairie, Librairie journaux, Detrad, Del Duca, L'Arbre à Lettres - Bastille, Fontaine Kléber, Itinéraires, Fontaine Haussmann, Dédale, Imagigraphe, L'Arbre à Lettres - Denfert, Comme un Roman, Fontaine Villiers, BD Net, Autant en Emporte le Vent, Librairie Droit Economie Lettres, Atout Livre, L'Arbre à Lettres - République, L'Ecume des Pages, L'Arbre du Voyageur, L'Oeil Ecoute, La Plume Vagabonde, La Boucherie, La 25e Heure, L'Attrape-Coeurs, L'Œil au Vert, La Manoeuvre, Le Chat Pitre, Lamartine, Le Livre Ecarlate, Le Genre Urbain, Libralire, Librairie des Abbesses, Violette and Co, Village Voice, Voyelle, Le Phénix, Librairie Portugaise Michel Chandeigne, Librairie Gourmande, Librairie Nation, Librairie du Temple, Librairie Vigot Maloine, Les Mots à la Bouche, Librairie Nordest, Le Rideau Rouge, Palimpseste, Le Roi Livre, Les Buveurs d'Encre, Librairie Maritime et Outremer, Les Cahiers de Colette, Librairie Tropiques, Librairie des Orgues, Librairie des Arts et Métiers, Lipsy, Librairie du Globe, Librairie de l'Escalier, Le Pied de biche, BD 16, San Francisco Book Company, Librairie Fontaine, L'Ouvre-Boîte, Librairie Henri IV, Arcane Livres, Librairie-presse, L'humeur vagabonde, occasion, Bulles en tête !, Au point du jour, Librairie/Papeterie/tabac, Le Monte en l’Air, Point Presse, Librairie des Editeurs associés, Le Merle Moqueur, L'Usage du Monde, Boulinier Jourdan, Graphi Dessin, Climats, Un Temps Pour Tout, Au Cœur Immaculé de Marie, Librairie de Paris, La nef des fous, Culture et bibliothèques pour tous, Librairie Saint-Paul, Légis France, A. Pedone Éditeur, Jacques Gabay, Album, Le Temps Retrouvé, Librairie EYROLLES, Librairie philosophique J. Vrin, Page à page, Le Comptoir des Mots, Essalam, Marissal Bücher, Design Librairie, L'humeur vagabonde (jeunesse), ESPERANTO - langue internationale, Gibert Joseph, Librairie Jonas, Junkudo, librairie japonaise, Centre Wallonie-Bruxelles, Le XXe Siècle & ses Sources, Librairie Emmanuel Lhermitte, Librairie - Papeterie, Librairie Ithaque, Librairie Nicole Maruani, Attica - La librairie des langues, Khai Tri, Libramoto, La Balustrade, Loisir & Culture, L'Attrape-Coeurs, Album, Mona Lisait, Terres Nouvelles, L'Atelier d'à côté, La Cabane à Presse, Publico, Maison d'Ennour, La Cartouche, Librairie Gallimard, France Loisir, Librairie Notre-Dame de France, Book-Off, Pages après pages, Boulinier, Librairie des Loisirs, BD et Compagnie, Abbey bookshop, Librairie J.N. Santon, Tome 7, Librairie Mona Lisait, Boutique des Cahiers, Art Religieux, Diane Selliers Éditeur, La Vie du Rail, Le Merle Moqueur, La bande des cinés, Pierre Brunet, Le Dilettante, I Love My Blender, Librairie Julliard, Librairie Polonaise, Fnac, Frankodech, Librairie de l'Orient, Bedi Thomas, Le Passé Composé, Librairie Relais La Procure, Livres anciens, Chine-Asie Diffusion, L'Harmattan, Librairie Fontaine, Pop Culture, Librairie - Caisses, Librairie du Compagnonage, Librairie Michèle Ignazi, Delamain, Appel, L'enfant lyre, Jean Maisonneuve, L'ivre d'Antan, La Procure, Librairie Cler, Marché du Livre ancien et d'occasion de Paris, Librairie Flammarion Centre +1231 and Pech de Bugarach, 2921 and Pic Carlit, 1211 and Pic de Nore, 2909.94 and Puigmal d'Err, 1663.38 and Montfalgars, 2784.66 and Pic du Canigou, 2572 and Puig Farinós, 2414.8 and Roca de Colom, 2692.4 and Puig Pedró de la Tossa, 1091 and Le Caroux, 2412 and Pic du Bernard Sauvage, 845, 2292 and Puig d'Escoutou, 2362 and Pic Joffre, 1778 and Puig de l'Estelle, 1581.3, Mourral Blanc, 685 and Roc de l'Aigle, Mont Cayroux, 925 and Mont Sarrat, Roc du Couillou, 773 and Pic de la Matalena, 646 and Moun Camp, 682 and Moun Simel, 585 and Roc d'Agnel, Mont Péril, Pic de San Marti, Pic de Rey, Roc du Tonnerre, Mont Redon, 978 and Serre d'Alaric, 2786 and Pic d’Eyne, 2861 and Pic de les Nou Fonts, 2651 and Pic des Sept Hommes, 2714 and Puig del Roc Negre, 2266 and Pic de Cincreus, 2507 and Roca Colom, 2690 and Petit Péric, 2818 and Pic d'Engorgs, 2915 and Puigpedrós, 2504.1 and Puig de la Llosa, 1640.9 and Puig de l'Artiga del Rei, 1640.7 and Puig Pedrissa, 1654.4 and Puig de la Clapa, 2863 and Tosseta de l'Esquella, Roc Sant Julia, 2039 and Roc des Trépassats, 2880.4, 1126 and Pic de la Falguerosa, 1062 and Pic de la Pena, Puig d'En Carol, 2827 and Pic de Finestrelles, 1009 and Pic de l'Alzina, Roc Rouge, 2469.4 and Pic de Madrès, 1430.4 and Roc du Casteldos, 1843.5 and Pic Dourmidou, 1555.93 and Serre de Caillong, 2027.4 and Picaucel, 707.28 and Montolier de Perellos, 433.46 and Caja, 685.83 and Roc de Nabant, 298.55 and Plan du Pal, 589.96 and Serre de Quintillan, 1220.7 and Le Karimal, 1595.4 and Montagne de Crabixa, 843.03 and Roque de Méric, 1494.8 and Pic d'Estable, 1143.2 and Tuc de Gaubeille, 1342 and Pech dels Escarabatets, 57, 878.85 and Montagne de Tauch, 916.52 and Pech de Fraysse, 702.71, 104 and Puech de Grange, 55.4 and L'Esquino de Camel, 764.94, 623.2, 788.03, 764.06, 564 and Pic de Brau, 1014.63 and Pic Saint-Christophe, 1234.63 and Roc Saint-Sauveur, 2810.2 and Pic Péric, 2325.5 and Roc d'Aude, 2376 and Mont Llaret, 2804.3 and Pic Oriental de Coll Roig, 2671 and Puig de la Grava, 583.95 and Serre de Vergès, 532.8 and Roc Rodon, 982.5 and Pic de Sailfort, 1279.72 and Pilon de Belmatx, 1706.4 and Serrat dels Cabanats, 1995.2 and Serra de Clavera, 714.6 and Puig de la Calma, 322.5 and Martal, 130.52 and Puig de les Redoleres, 395.93 and Pic Haut, 377.37 and Pic Estelle, 695.46 and Puig de Boc, 774.67 and Mont Héléna, 345.98 and Serrat d'En Bougader, 265.98 and Serrat de la Devesa, 1024.72 and Pic de Bau, 1626.7 and Serrat del Cortal, 633.41 and Le Néret, 323.46 and Peyro d'Arquo, 540.52 and Pic Aubeill, 2112.6 and Pic de Dona Pa, 718.25 and Roc de l'Hirondelle, 903.7 and Tuc d'En Guinxe, 674.54 and Pic de la Garsa, 1333.31 and Pic de les Salines, 1092.64 and Pic de Fontfrède, 725.17 and Pic Mirailles, 247.11 and Puig Oriol, 291.56 and Montou, 794.1 and Serrat d'En Parrot, 930.08 and Puig de Sant Miquel, 2288.31 and Pic de Mollet, 339.45 and Pedra Blanca, 2581.1 and El Punxo, 1773.28 and Pic de Bena, 2349.83 and La Tossa d’Err, 2098.8 and Tres Esteles, 100.86 and Serrat de la Devesa, 1211.2 and Puig des Moros, 1159.9 and L'Estanyol, 2831 and La Tour d’Eyne, 2711.45 and Cambre d’Aze, 573.8 and Pic Lazerou, 1105.4 and Roc d'En Peillofo, 2726.79 and Pic Moneliet, 2624.11 and Pic du Gallinas, 2412.4 and Serra de Mauri, 2470.12 and Puig del Pam, 2061.72 and Roc de les Perxes Blanques, 814.04 and Puig Forcat, 925.85 and Puig de les Feixes, 2172.2 and Mont Coronat, 500.57 and Roch de Lansac, 424.5 and Sarrat del Coude, 2662.83 and Pic de la Serre Gallinière, 2456.61 and Cime de Pomarole, 2042.3 and El Dormidor, 2093.31 and Pic Bastard, 507.17 and Força Réal, 437.55 and Puig Pedrous, 448.31 and Roc del Mut, 1632.3 and Pic del Torn, 1723.8 and Serra d'Escales, 1376.8 and Serrat de Mirailles, 1313.9 and Pic du Roussillon, 200.16 and Roc Calbeil, 2345.4 and Pic de la Rouquette, 1797.8 and Pic de Portepas, 1451.2 and Pic de la Moscatosa, 2204.1 and Roc de la Calma, 424.41 and Mont Plat, 2051.9 and La Llabanère, 1655.9 and Lloumet, 673.5 and Pic de la Pouge, 2309.47 and Serrat de l'Escaldat, 2736.56 and Pic de Font Freda, 2876.87 and Pics de Font Negra, 1687 and Cim de Portavella, 1766.02 and Puig Caga Llops, 2403.29 and Puig de la Collada Verde, 1642.09 and Puig Sec, 1830.31 and Puig dels Sarraïs, 1313.85 and Puig Ferreol, 1147.06 and Puig Fabre, 770.6 and Roc del Nissol, 899.57 and Roc Paradet, 2134.8 and Serrat de la Mente, 1356.4 and Roc des Quarante Croix, 2006.46 and Puig d'Esquena d'Ase, 1450.26 and Roc de Frausa ou Roc de France (1409m), 1030.09 and Peyre Basse, 687.73 and Puig del Coll del Teixo, 530.25 and La Cougoulère, 823.33 and La Redoute, 1211.88 and Serre de la Garsa, 1194.41 and Mont Capell, 2059.74 and Pic d'Estaques, 597.5 and Le Devès, 566.43 and Serre de l'Artigue del Baurien, 2369.7 and Pic de la Pelade, 2034.18 and Pic de la Tossa, 1790.2 and La Tartera, 1425.26 and Mont Nègre (1425m), 871.97 and Serra del Bouchet, 1256.31 and Pic Néoulous, 794 and Garrabet, 2137.69 and Pic dels Moros, 2044.2 and La Soucarrade, 225.08 and Montrodon, 2731 and Puig dels Tres Vents, 1383.1, 800.63 and Sarrat d'Espinets, 1730.9 and Puig dels Bessis, 2461.4 and Pic Gallinasse, 2060.5 and Roc des Bassouses, 194.37 and Puig Janer, 454.95 and Mont d'Espira, 1309.9 and Sarrat Naout, 2108, Pic de Tantajo, 1901 and Roc Mosquit, 2006 and Pic de la Socarrada, 582 and Pioch de Briandes, 677 and Cap Nègre, 685 and Le Moulières, 786 and Mont Méguillou, 738 and La Fréguière, 521 and Pioch Lintil, Coll de la Fareille, 701 and Puech Caubel, 670 and Madeloc, 2881.3 and Puig de Bastiments, Roc de Journac, 2683 and Pic de la Mina, Roc de Jocavell, 2702 and Pic de la Dona, Roc de Salimanes, Roc Punchut, 2547 and Pic Mercader, Roc du Maure, 2495.7 and Puig de Coma Ermada, Puig dels Pruners, Roc de la Campana, Roc de la Sentinella, Puig del Torn, 2532 and Puig de Terrers, 2597.1 and Pic de la Portella, 2333 and Roc de Nou Fonts, Roc Mary, Roc Campagna, 2673 and Tossal Colomer, 2450 and Roc Negre, Salt del Burro, Pic de la Fajolle, 60 and Mour, Roc de l'Aigle, El Roc Gros, 1073 and Roc du Nouret, 1060 and Roquo d'Astié, 2691 and Pic de Bacivers, 2638 and Puig d'Ombriaga, 2869.5 and Pic de l'Infern, 207 and Le Pech, 180 and La Roche Trouée, 125 and Pech Tenarel, 250 and Mont Grand, 155 and Pech Aigu, 225 and Saint-Jacques, Pech de l'Auzine, Pech des Combarelles, 65 and Pech Na Redorte, 200 and Plo de Maurou, Pech Tignoux, La Buissonière, 500 and Le Castelas, 430 and Roque Fumade, La Pique, Pech d'Aragnou, Pech Sarda, Pech de Brens, 1098.01 and Plo des Brus, 1123.5 and Sommet de l'Espinouse, 703.53 and Quiocs, 2013, Redoun, 500 and Roc de l'Aigle, 1918 and Pic de l'Orry, 1936 and Pic des Agrellons, Le Roc Troué, Sarrat de Labade, 2206 and Pic de la Calma, 1271 and Puech Saint-Geniez, La Capsole, Coste Rouge, Plateau de Lacamp, 396 and Roc de la Vella (de l'abeille), 1469 and Signal de Mailhebiau, pech de laure, 300, 1034 and Roc du Caroux, Roc de l'Escriban, Pech Counille, Pech Ginestié, Roc Rouge, La Cioutat, Milobre de Massac, Roc de Matefagine, Rocher de Béraud, La Clape, L'Aïrole, Pech Berles, Pech Lagardie, Pech de Bourrel, La Pique, Pech de Gouache, 793 and Massane, Truc du Coucut, 2826 and Pic Inferior de la Vaca, Pech Cardou, 1081 and La Pique Grosse, Roc d'En Benoit, Roc Serret, 576 and La Serre, 356, 520, Pic du Porteil du Bech d'Ourteil, Roc de la Couillade del Peyroulet, Roc du Taillat del Bossut, Serrat du Roc Mary, Pic du Pla de Bernard, Pic de la Rouquette, Courtalets, Pic Barbet, Pic Bas del Canigo, Collet des Bessis, Roc Roig, Roc de Cardenius, Mont Courounat, Pic de la Créou, Roc Rodon, Roc Cante Lloups, Roc del Barry d'en Naudy, Roc del Soula de Mollere, Roc del Soula del Mix, Roc dit la Soucaillousse, Roc du Coll Diagre, Roc du Mont Courounat, Puig de Passadong, Roc dals Clots del Gourg, Couillade de la Rabadane, Roc des Cimbeils, Pic del Signor, Roc de la Roquette, Roc del Cim des Cums, Roc dels Lladres, 2040 and Pic de l'Orry, Crête des Sept Hommes, 2637 and Pic de Bassibès, Pic de Soule de Ramounet, Pic de la Solane de l'Ours, Pic des Gourgs, Pic du Bois de la Ville, Pic du Quazemi, Puig Sec, Roc de Mariailles, Roc de Terrellou, Roc de l'Aigle, 2724 and Pic Rougeat, Pic de Coumeille, Pic de Gallinasse, Pic de Serre Bernet, Puig Coulomb, Puig de las Coubynes, Roc Pointu de Coll Roig, Roc de la Cabane en Ribe, Pic Pastous, Roque Coucoulière, Pic de Pel de Ca, Pilon du Pla de la Pilote, Puig d'el Boulet, Roc Redou, Sarrat de Font Frede, Puig del Traucadou, Roc de la Roquette, Roc de Calamiche, Rocher du Palet de Rouland, 1168 and Le Truc de Viala, Pech en Barthe, Montpeyrous, Au Mont Cal, Au Mont Long, 1557.7 and Coma Negra, 1289.4 and Puig de la Llibertat, Pech de la Vigne, Pech de l'Homme, Pech del Bousquet, Pech du Seigneur, Pech de Mont-Carretou, Roque Vacquière, Pech de Rie, 147, 187, 690 and Pic de la Coquillade, 2801 and Puigmal de Llo, 772 and Pic de la Caumette, 2663, 520 and Roc Traucat, 1276 and Places Hautes, 1324, 1268 and Le Barthas, 1629 and Castell Vidre, 2596 and Les Abelletes, 2714 and Pic dels Pedrons, 1015, 1182 and Pic des Sarrasis, 1179 and Pic du Midi, 1453, 670, 283, 590 and Signal d'Alaric, 504, 455, 280, quiersboutou +53.2967577 -4.5897852, 39.8578782 -76.7805271, 40.7597792 -82.6121178, 41.0217641 -73.7967995, 43.5736936 -70.4517181, 39.1234420 -76.6780235, 32.9570996 -82.0687302, -33.8002702 121.8020587, 51.5117840 -0.1726756, 30.3791301 -84.6864394, 55.7233076 -4.8798956, 51.7963909 0.4625999, 40.6869120 -73.5127167, 57.4023967 -2.2184401, 41.5399140 -81.4721388, 33.8117856 -117.9222594, 39.7989671 -85.9259915, 43.0600771 -77.3991473 +yes +1 +Heidelberg Marriott Hotel +308 +609 +Standing Stone, Caiy Stane, Standing Stone, Balm Well, Cup and Ring Marked Rocks, Stone, Hanging Stanes, The Buckstane, Cat Stane, Bonnington Mill Waterwheel (remains), Physic Well, Fort, Bonnington Weir, Hatton House +18 +37.7500651 -122.4340964, 37.7494950 -122.4338475, 37.7481784 -122.4318047, 37.7482870 -122.4317704, 37.7879001 -122.4032530, 37.7879882 -122.4037767, 37.7876404 -122.4065068, 37.7873775 -122.4085239, 37.7869825 -122.4117339, 37.7868400 -122.4132360, 37.7867454 -122.4133988, 37.7865280 -122.4151500, 37.7863839 -122.4147044, 37.8074857 -122.4122331, 37.8065738 -122.4141681, 37.7858381 -122.4208295, 37.7860823 -122.4213101, 37.7858443 -122.4215600, 37.8058156 -122.4201928, 37.8061825 -122.4173877, 37.8050741 -122.4248113, 37.8049424 -122.4251017, 37.8047238 -122.4253684, 37.8049272 -122.4254027, 37.8053138 -122.4240294, 37.8024234 -122.4249055, 37.8002533 -122.4244764, 37.7986934 -122.4241845, 37.7964948 -122.4237345, 37.7949360 -122.4234292, 37.7914294 -122.4227083, 37.7873203 -122.4218983, 37.7872205 -122.4163915, 37.7873494 -122.4149152, 37.7874377 -122.4147865, 37.7878071 -122.4133072, 37.7876377 -122.4131357, 37.7878614 -122.4114361, 37.7883158 -122.4080030, 37.7885668 -122.4059259, 37.7894553 -122.4072305, 37.7892383 -122.4089471, 37.7890348 -122.4105779, 37.7888245 -122.4122344, 37.7887296 -122.4136334, 37.7886349 -122.4137618, 37.7882480 -122.4150753, 37.7884387 -122.4153902, 37.7882006 -122.4170495, 37.7936864 -122.4231765, 37.7895224 -122.4223268, 37.8077705 -122.4105938, 37.7858278 -122.4058393, 37.7866147 -122.4049381, 37.7864654 -122.4047321, 37.7874083 -122.4036077, 37.7879204 -122.4029268, 37.7885919 -122.4024548, 37.7884698 -122.4023003, 37.7894632 -122.4012427, 37.7904738 -122.3996977, 37.7909147 -122.3992085, 37.7912199 -122.3990282, 37.7915447 -122.3981096, 37.7919524 -122.3981442, 37.7926895 -122.3975313, 37.7925538 -122.3970849, 37.7942766 -122.3948018, 37.7920324 -122.3977043, 37.7944131 -122.3950607, 37.8075184 -122.4123666, 37.8065215 -122.4134910, 37.8059994 -122.4172590, 37.8056529 -122.4205190, 37.8054155 -122.4221927, 37.8052527 -122.4234200, 37.8051442 -122.4236947, 37.8044396 -122.4250053, 37.8025001 -122.4246362, 37.8006419 -122.4242586, 37.7984038 -122.4237608, 37.7960775 -122.4233316, 37.7940496 -122.4227651, 37.7942082 -122.4229370, 37.7923946 -122.4225591, 37.7913958 -122.4222349, 37.8056122 -122.4218837, 37.7992825 -122.4189061, 37.7991130 -122.4192065, 37.7955320 -122.4181508, 37.7945850 -122.4183350, 37.7946664 -122.4163695, 37.7938050 -122.4096919, 37.7930318 -122.4092112, 37.7853492 -122.4055185, 37.7843469 -122.4045150, 37.7846454 -122.4039142, 37.7847539 -122.4037597, 37.7842316 -122.4041030, 37.7835261 -122.4025151, 37.7829902 -122.4025495, 37.7821627 -122.4008414, 37.7818193 -122.4010039, 37.7806363 -122.3999660, 37.7784384 -122.3966529, 37.7781331 -122.3964297, 37.7771698 -122.3952195, 37.7769255 -122.3950736, 37.7772943 -122.3949229, 37.7772672 -122.3946225, 37.7777963 -122.3939702, 37.7768533 -122.3945023, 37.7755323 -122.3971419, 37.7764838 -122.3985209, 37.7761242 -122.4022631, 37.7779104 -122.4000014, 37.7793078 -122.4020012, 37.7789483 -122.4020957, 37.7771439 -122.4044132, 37.7757191 -122.4064044, 37.7754274 -122.4065417, 37.7739280 -122.4084815, 37.7724490 -122.4103612, 37.7708168 -122.4125663, 37.7703632 -122.4123180, 37.7716591 -122.4138973, 37.7719508 -122.4138029, 37.7721001 -122.4141720, 37.7729006 -122.4154423, 37.7733145 -122.4156912, 37.7741303 -122.4169989, 37.7741981 -122.4173765, 37.7752700 -122.4184494, 37.7754464 -122.4183893, 37.7757381 -122.4191960, 37.7754939 -122.4189385, 37.7736011 -122.4186209, 37.7782225 -122.4194551, 37.7786688 -122.4197882, 37.7798628 -122.4200286, 37.7799849 -122.4198998, 37.7821995 -122.4204866, 37.7828778 -122.4204179, 37.7830062 -122.4205011, 37.7830848 -122.4206947, 37.7849708 -122.4210499, 37.7889845 -122.4026340, 37.7901947 -122.4014023, 37.7896588 -122.4037282, 37.7897402 -122.4049985, 37.7863305 -122.4167890, 37.7861298 -122.4184176, 37.7855735 -122.4228551, 37.7854718 -122.4252669, 37.7851733 -122.4278504, 37.7847663 -122.4281594, 37.7843186 -122.4315412, 37.7848206 -122.4309318, 37.7844196 -122.4328463, 37.7843178 -122.4330266, 37.7845281 -122.4332841, 37.7840872 -122.4333871, 37.7835504 -122.4375282, 37.7839167 -122.4376655, 37.7834826 -122.4392963, 37.7836386 -122.4394164, 37.7831231 -122.4396482, 37.7829535 -122.4395280, 37.7828042 -122.4423433, 37.7829874 -122.4431329, 37.7827913 -122.4458030, 37.7827599 -122.4459811, 37.7823299 -122.4459653, 37.7825329 -122.4467635, 37.7820784 -122.4472957, 37.7820558 -122.4476543, 37.7821802 -122.4476390, 37.7820053 -122.4498532, 37.7822868 -122.4499499, 37.7818988 -122.4530106, 37.7815563 -122.4534053, 37.7798354 -122.4931351, 37.7799168 -122.4934183, 37.7794962 -122.4932037, 37.7794826 -122.4933926, 37.7798191 -122.4936557, 37.7795573 -122.4935814, 37.7799507 -122.4932381, 37.7796794 -122.4963537, 37.7794148 -122.4967056, 37.7792724 -122.4998814, 37.7796794 -122.5028254, 37.7791570 -122.5025164, 37.7798610 -122.5049869, 37.7797389 -122.5052873, 37.7800577 -122.5076563, 37.7798949 -122.5074503, 37.7799221 -122.5099050, 37.7797796 -122.5096304, 37.7791216 -122.5094930, 37.7756617 -122.5003177, 37.7754785 -122.5007383, 37.7754989 -122.5035793, 37.7753293 -122.5039398, 37.7751597 -122.5057852, 37.7750986 -122.5059311, 37.7891981 -122.4152653, 37.7893134 -122.4150078, 37.7910097 -122.4156423, 37.7922029 -122.4157974, 37.7924132 -122.4141495, 37.7927048 -122.4118492, 37.7934544 -122.4078526, 37.7932474 -122.4075663, 37.7934120 -122.4063181, 37.7936086 -122.4047989, 37.7938053 -122.4031510, 37.8070654 -122.4103449, 37.8068551 -122.4106453, 37.8066448 -122.4120271, 37.8065364 -122.4122160, 37.8050377 -122.4118813, 37.8047668 -122.4116465, 37.8027867 -122.4114233, 37.8006774 -122.4105478, 37.8004101 -122.4099889, 37.8002162 -122.4105649, 37.8004332 -122.4105306, 37.7991379 -122.4088569, 37.7992532 -122.4090286, 37.7991922 -122.4087624, 37.7993480 -122.4086509, 37.7971439 -122.4085909, 37.7967709 -122.4082646, 37.7962894 -122.4082732, 37.7953670 -122.4082476, 37.7937799 -122.4077582, 37.8063855 -122.4232325, 37.8036726 -122.4232484, 37.8035574 -122.4233771, 37.8016788 -122.4230252, 37.8014415 -122.4228020, 37.7989229 -122.4224728, 37.7987940 -122.4226445, 37.7986719 -122.4225157, 37.7990178 -122.4223012, 37.7977224 -122.4220351, 37.7970239 -122.4220608, 37.7962210 -122.4217512, 37.7957734 -122.4218285, 37.7952240 -122.4215366, 37.7951087 -122.4214336, 37.7949934 -122.4212963, 37.7942338 -122.4212620, 37.7934741 -122.4211933, 37.7931961 -122.4213478, 37.7923618 -122.4206697, 37.7919217 -122.4210500, 37.7915343 -122.4211418, 37.7908357 -122.4206440, 37.7907543 -122.4207813, 37.7894452 -122.4205410, 37.7895062 -122.4203951, 37.7877969 -122.4203780, 37.7878987 -122.4202148, 37.7879258 -122.4200518, 37.7865827 -122.4199745, 37.7867116 -122.4198114, 37.7868068 -122.4194985, 37.7850972 -122.4196741, 37.8073496 -122.4079591, 37.8072682 -122.4075728, 37.8022905 -122.4029208, 37.8014157 -122.4027320, 37.7996185 -122.4023972, 37.7977263 -122.4020024, 37.7947114 -122.4015355, 37.7951558 -122.4014788, 37.7946810 -122.4013501, 37.7926335 -122.3958328, 37.7943350 -122.3945488, 37.7932952 -122.3934198, 37.7924067 -122.3943554, 37.7919997 -122.3948618, 37.7910162 -122.3961063, 37.7901209 -122.3969646, 37.7899445 -122.3975054, 37.7878245 -122.4001786, 37.7878381 -122.3998524, 37.7864031 -122.4017275, 37.7861318 -122.4023197, 37.7829558 -122.4066225, 37.7827998 -122.4067084, 37.7825217 -122.4068886, 37.7825488 -122.4065625, 37.7823996 -122.4070345, 37.7811378 -122.4083649, 37.7808122 -122.4090258, 37.7793876 -122.4105793, 37.7790281 -122.4113003, 37.7775322 -122.4128952, 37.7771862 -122.4129896, 37.7773219 -122.4134703, 37.7764060 -122.4143114, 37.7761075 -122.4150066, 37.7727900 -122.4191952, 37.7731428 -122.4182596, 37.7703747 -122.4197788, 37.7707614 -122.4203453, 37.7680204 -122.4200621, 37.7670705 -122.4197531, 37.7663920 -122.4198732, 37.7653010 -122.4195354, 37.7651503 -122.4193840, 37.7649400 -122.4199505, 37.7648246 -122.4197531, 37.7618662 -122.4197445, 37.7620562 -122.4192896, 37.7616287 -122.4194612, 37.7605363 -122.4191351, 37.7600545 -122.4193153, 37.7584056 -122.4191522, 37.7589009 -122.4189892, 37.7573130 -122.4188433, 37.7568991 -122.4189892, 37.7557658 -122.4186802, 37.7551890 -122.4188518, 37.7541440 -122.4185343, 37.7535875 -122.4186630, 37.7524610 -122.4183540, 37.7523117 -122.4181566, 37.7521692 -122.4186716, 37.7520334 -122.4185343, 37.7494003 -122.4180794, 37.7490202 -122.4178648, 37.7488845 -122.4182253, 37.7482533 -122.4186802, 37.7468756 -122.4191608, 37.7469774 -122.4188862, 37.7452468 -122.4202165, 37.7702405 -122.4456788, 37.7815477 -122.4557681, 37.7812324 -122.4564824, 37.7814265 -122.4586356, 37.7811374 -122.4585605, 37.7810466 -122.4587536, 37.7815096 -122.4590144, 37.7813234 -122.4609038, 37.7810177 -122.4612687, 37.7811823 -122.4641071, 37.7807956 -122.4641973, 37.7807845 -122.4643617, 37.7808764 -122.4644255, 37.7807541 -122.4671566, 37.7809983 -122.4678003, 37.7808931 -122.4704703, 37.7805778 -122.4708931, 37.7810594 -122.4721634, 37.7803132 -122.4724209, 37.7804958 -122.4725340, 37.7807715 -122.4726936, 37.7806388 -122.4759657, 37.7803132 -122.4764378, 37.7804922 -122.4791912, 37.7801791 -122.4795855, 37.7800298 -122.4827784, 37.7798738 -122.4845980, 37.7803080 -122.4848555, 37.7802469 -122.4845465, 37.7799349 -122.4849328, 37.7801045 -122.4877394, 37.7797924 -122.4881085, 37.7800027 -122.4899024, 37.7796974 -122.4902800, 37.7795957 -122.4919966, 37.7799552 -122.4923228, 37.7850328 -122.4240337, 37.7846530 -122.4214931, 37.7845512 -122.4213300, 37.7850919 -122.4181325, 37.7850396 -122.4177938, 37.7853788 -122.4158712, 37.7854466 -122.4144979, 37.7855823 -122.4142146, 37.7858650 -122.4121391, 37.7860368 -122.4097600, 37.7863556 -122.4081893, 37.7866812 -122.4056144, 37.7870169 -122.4179793, 37.7866235 -122.4210522, 37.7861695 -122.4245155, 37.7859114 -122.4264595, 37.7857487 -122.4278070, 37.7867524 -122.4285794, 37.7866167 -122.4285538, 37.7864675 -122.4297640, 37.7865965 -122.4297039, 37.7861826 -122.4330771, 37.7860469 -122.4330340, 37.7859385 -122.4331370, 37.7858910 -122.4333344, 37.7859723 -122.4346907, 37.7857893 -122.4350941, 37.7855452 -122.4380551, 37.7853687 -122.4384070, 37.7852332 -122.4395228, 37.7852534 -122.4393683, 37.7853485 -122.4396517, 37.7854773 -122.4398147, 37.7850228 -122.4399262, 37.7849142 -122.4430247, 37.7847380 -122.4433766, 37.7844192 -122.4458487, 37.7841884 -122.4463035, 37.7846498 -122.4461747, 37.7864066 -122.4400121, 37.7826267 -122.4209352, 37.7821927 -122.4192077, 37.7831831 -122.4189845, 37.7830542 -122.4189502, 37.7833323 -122.4177486, 37.7831356 -122.4174224, 37.7832848 -122.4172336, 37.7834951 -122.4156457, 37.7837190 -122.4139463, 37.7839225 -122.4123155, 37.7333439 -122.4341146, 37.7336018 -122.4339773, 37.7333778 -122.4337627, 37.7306904 -122.4313129, 37.7285513 -122.4313423, 37.7286056 -122.4315569, 37.7287414 -122.4310075, 37.7285928 -122.4310211, 37.7164063 -122.4407726, 37.7162841 -122.4412790, 37.7147304 -122.4426465, 37.7296110 -122.4331926, 37.7261179 -122.4335362, 37.7725629 -122.4271208, 37.7724886 -122.4271971, 37.7727613 -122.4255587, 37.7728240 -122.4254941, 37.7750096 -122.4193518, 37.7752830 -122.4191695, 37.7237397 -122.4527763, 37.8026615 -122.4058342, 37.7602500 -122.4381220, 37.8000731 -122.4427175, 37.8000773 -122.4429777, 37.8002766 -122.4410592, 37.8001123 -122.4413201, 37.7998569 -122.4443992, 37.7991938 -122.4517479, 37.7982490 -122.4474040, 37.7938960 -122.3962630, 37.7350442 -122.4750296, 37.7348192 -122.4745190, 37.7348959 -122.4718603, 37.7826712 -122.4715165, 37.7900779 -122.3973324, 37.8063946 -122.4755980, 37.8066743 -122.4754598, 37.8073122 -122.4750992, 37.8077451 -122.4747013, 37.7985742 -122.4470382, 37.8003316 -122.4468364, 37.8015284 -122.4299080, 37.8163406 -122.3719841, 37.8159189 -122.3712035, 37.8198117 -122.3663991, 37.8240897 -122.3725534, 37.8217995 -122.3675153, 37.8251277 -122.3701037, 37.8251958 -122.3698336, 37.8282634 -122.3718811, 37.8298005 -122.3733581, 37.7698835 -122.4483879, 37.7696842 -122.4487848, 37.7734369 -122.4495198, 37.7736095 -122.4491588, 37.7759209 -122.4462621, 37.7754086 -122.4499596, 37.7753704 -122.4494447, 37.7750352 -122.4531023, 37.7749600 -122.4525772, 37.7744927 -122.4582852, 37.7742595 -122.4580599, 37.7743273 -122.4587090, 37.7752263 -122.4651517, 37.7770368 -122.4639232, 37.8051033 -122.4322388, 37.8070241 -122.4071695, 37.7268052 -122.4756978, 37.7270758 -122.4757595, 37.7273213 -122.4751556, 37.7767196 -122.4262286, 37.7877082 -122.4066920, 37.7877749 -122.4435048, 37.7875969 -122.4435646, 37.7853936 -122.4093312, 37.7621911 -122.4352428, 37.7623119 -122.4350524, 37.7624107 -122.4359472, 37.7623663 -122.4355805, 37.7624148 -122.4374826, 37.7628952 -122.4350231, 37.7638864 -122.4332716, 37.7639457 -122.4336524, 37.7677871 -122.4291506, 37.7676579 -122.4291238, 37.7672427 -122.4291913, 37.7678942 -122.4291010, 37.7672911 -122.4288313, 37.7678572 -122.4287240, 37.7882810 -122.4034650, 37.7920316 -122.4158514, 37.7890998 -122.4166329, 37.7929197 -122.4160112, 37.7956283 -122.4167948, 37.7623781 -122.3973643, 37.7659491 -122.4499203, 37.7777491 -122.4166993, 37.7784932 -122.4145772, 37.7996086 -122.4360904, 37.7997022 -122.4362285, 37.7995695 -122.4391803, 37.8004874 -122.4475303, 37.7990605 -122.4430620, 37.7999719 -122.4359078, 37.7988819 -122.4428431, 37.8006033 -122.4309704, 37.7993017 -122.4395074, 37.7920664 -122.4230774, 37.7939521 -122.4233809, 37.7984888 -122.4242871, 37.7228751 -122.4492993, 37.7843417 -122.4083799, 37.7732193 -122.5094719, 37.7730526 -122.5100823, 37.7713376 -122.5094780, 37.7730623 -122.5099524, 37.7736359 -122.5098469, 37.7510820 -122.4365124, 37.7902660 -122.4225849, 37.7809200 -122.4207186, 37.7734715 -122.4716467, 37.7732222 -122.4720004, 37.7767410 -122.4722999, 37.7845288 -122.4729578, 37.7730544 -122.4719870, 37.7769513 -122.4723886, 37.7765902 -122.4721548, 37.7843461 -122.4727748, 37.7733124 -122.4719545, 37.7824738 -122.4731577, 37.7772126 -122.4718860, 37.7846952 -122.4724611, 37.7842309 -122.4726881, 37.7653711 -122.4768439, 37.7637253 -122.4773406, 37.7651265 -122.4774410, 37.7651763 -122.4771473, 37.7655195 -122.4775619, 37.7981369 -122.4040437, 37.7984038 -122.4019150, 37.7864698 -122.3980058, 37.7898678 -122.4007776, 37.7846489 -122.4070405, 37.7841266 -122.4084047, 37.7559775 -122.4764013, 37.7601283 -122.4767065, 37.7483732 -122.4761739, 37.7599874 -122.4769846, 37.7526487 -122.4761825, 37.7487336 -122.4758329, 37.7562359 -122.4767119, 37.7503718 -122.4760331, 37.7451990 -122.4756672, 37.7464646 -122.4760287, 37.7540793 -122.4765228, 37.7502718 -122.4762798, 37.7485093 -122.4758701, 37.7485547 -122.4762718, 37.7521106 -122.4764229, 37.7577989 -122.4768064, 37.7450879 -122.4759346, 37.7466328 -122.4757654, 37.7578031 -122.4765444, 37.7540943 -122.4762690, 37.7373068 -122.4751533, 37.7271849 -122.4746491, 37.7413368 -122.4756969, 37.7414759 -122.4754270, 37.7391897 -122.4752419, 37.7309279 -122.4747158, 37.7433289 -122.4758221, 37.7263033 -122.4752117, 37.7433139 -122.4754986, 37.7391607 -122.4755616, 37.7376007 -122.4754212, 37.7311504 -122.4746276, 37.7310304 -122.4745228, 37.7312595 -122.4750192, 37.7216548 -122.4754813, 37.7173134 -122.4730047, 37.7645489 -122.4431699, 37.7774736 -122.4588050, 37.7769033 -122.4586521, 37.7771471 -122.4583141, 37.7693989 -122.4293944, 37.7934341 -122.3952982, 37.7860637 -122.4568864, 37.7875574 -122.4467799, 37.7875773 -122.4469696, 37.7865288 -122.4532785, 37.7879454 -122.4407257, 37.7862633 -122.4553541, 37.7863128 -122.4536142, 37.7846320 -122.4644747, 37.7869618 -122.4499244, 37.7871212 -122.4472522, 37.7856633 -122.4588196, 37.7881142 -122.4408796, 37.7508325 -122.4439701, 37.7511656 -122.4385830, 37.7471736 -122.4441832, 37.7704174 -122.4452853, 37.7741217 -122.4463069, 37.7757135 -122.4466914, 37.7669041 -122.4479460, 37.7700367 -122.4454051, 37.7673187 -122.4464799, 37.7739565 -122.4465032, 37.7702021 -122.4449433, 37.7788494 -122.4469825, 37.7672489 -122.4466451, 37.7718076 -122.4457938, 37.7719176 -122.4456066, 37.7756581 -122.4463390, 37.7785087 -122.4472714, 37.7671329 -122.4465199, 37.7786914 -122.4474453, 37.7774219 -122.4469247, 37.7670424 -122.4462687, 37.7670868 -122.4479048, 37.7739120 -122.4458712, 37.7675684 -122.4448406, 37.7787954 -122.4472048, 37.7673422 -122.4448799, 37.7146481 -122.4719381, 37.7244830 -122.4024083, 37.7169648 -122.3891600, 37.8014600 -122.4315507, 37.8015624 -122.4313898, 37.7352745 -122.5045674, 37.7351796 -122.5004996, 37.7352755 -122.5026037, 37.7098977 -122.3930198, 37.7167597 -122.4413933, 37.7165622 -122.4408255, 37.7324082 -122.4059021, 37.7293737 -122.4150047, 37.7692570 -122.4291174, 37.7291475 -122.4193716, 37.7339634 -122.3907499, 37.7343056 -122.3907340, 37.8269448 -122.3774052, 37.8219781 -122.3678899, 37.8183698 -122.3702624, 37.8299019 -122.3752682, 37.8283168 -122.3771872, 37.7900667 -122.3942010, 37.7904673 -122.3932275, 37.7885774 -122.3909566, 37.7899382 -122.3923940, 37.7892706 -122.3935798, 37.8199566 -122.3664933, 37.8231753 -122.3748357, 37.8241714 -122.3754505, 37.7485022 -122.4589160, 37.7467379 -122.4583284, 37.7689281 -122.4356947, 37.7721358 -122.4307953, 37.7720055 -122.4303556, 37.7722134 -122.4305711, 37.7720894 -122.4301052, 37.7920140 -122.4815698, 37.7378001 -122.4514647, 37.7377651 -122.4517551, 37.7716459 -122.5036197, 37.7535905 -122.4954095, 37.7532925 -122.4955658, 37.7607702 -122.4960244, 37.7844955 -122.3952726, 37.7628573 -122.3908626, 37.7877434 -122.4216333, 37.7587055 -122.4631292, 37.7585995 -122.4640519, 37.7584595 -122.4639124, 37.7582899 -122.4638427, 37.7605076 -122.4406247, 37.7240697 -122.4522341, 37.7259918 -122.4522582, 37.7240485 -122.4524859, 37.7254488 -122.4525023, 37.7208496 -122.4474323, 37.7211045 -122.4473020, 37.7345842 -122.4719275, 37.7675843 -122.4355739, 37.7730240 -122.4528432, 37.7732066 -122.4524004, 37.8056765 -122.4371753, 37.7791532 -122.5129411, 37.7653828 -122.4156514, 37.7655458 -122.4128777, 37.7758058 -122.4971516, 37.7770300 -122.4640939, 37.7771635 -122.4636541, 37.7773038 -122.4642640, 37.7811799 -122.4122670, 37.7901405 -122.3932844, 37.7897441 -122.3935526, 37.7900769 -122.3938342, 37.7900303 -122.3929249, 37.7898479 -122.3929436, 37.7900153 -122.3936678, 37.7902698 -122.3932093, 37.7897844 -122.3938369, 37.7896339 -122.3928472, 37.7895788 -122.3933326, 37.7902549 -122.3935874, 37.7896742 -122.3936921, 37.7899687 -122.3930777, 37.7898459 -122.3936974, 37.7901977 -122.3934346, 37.7895215 -122.3929732, 37.7645161 -122.4327886, 37.7774211 -122.4160269, 37.7646988 -122.4244233, 37.7517598 -122.4254173, 37.7518770 -122.4255434, 37.7518932 -122.4231645, 37.7520190 -122.4226923, 37.7520780 -122.4202115, 37.7521821 -122.4204097, 37.7846325 -122.4668493, 37.7848927 -122.4647404, 37.7847936 -122.4669432, 37.7848461 -122.4651260, 37.7850597 -122.4648309, 37.7687493 -122.4030378, 37.7661987 -122.4028340, 37.7698985 -122.4034375, 37.7664574 -122.4026543, 37.7674763 -122.4028943, 37.7685627 -122.4028608, 37.7672368 -122.4026933, 37.7697585 -122.4032336, 37.7933155 -122.4011185, 37.7940361 -122.4014297, 37.7948174 -122.4012457, 37.7937309 -122.4011453, 37.7941718 -122.4012902, 37.7953841 -122.3969718, 37.7945999 -122.4030014, 37.7951679 -122.3989406, 37.7946423 -122.4047127, 37.7943922 -122.4045947, 37.7945109 -122.3977014, 37.7957783 -122.4035808, 37.7932052 -122.4012151, 37.7941845 -122.4002602, 37.7409957 -122.4661951, 37.7412300 -122.4662434, 37.7420207 -122.4942784, 37.7423984 -122.4946065, 37.7481450 -122.4139340, 37.7485740 -122.4136090, 37.7483690 -122.4140740, 37.7470478 -122.4135113, 37.8015930 -122.4295070, 37.7693241 -122.4529187, 37.7691502 -122.4531333, 37.7779590 -122.4382840, 37.7486563 -122.4707231, 37.7779013 -122.4381208, 37.7488826 -122.4686623, 37.7490207 -122.4684000, 37.7764755 -122.4261860, 37.7624054 -122.4149348, 37.7985693 -122.4243300, 37.7452070 -122.4133817, 37.7988554 -122.4523659, 37.7229652 -122.4525001, 37.7237354 -122.4562527, 37.7479625 -122.4589779, 37.7316164 -122.4533024, 37.7236887 -122.4560891, 37.7585862 -122.4660394, 37.7583654 -122.4701243, 37.7340666 -122.4990233, 37.7339718 -122.4968714, 37.7368504 -122.4537673, 37.7729932 -122.4769430, 37.7728380 -122.4764588, 37.7748147 -122.4548948, 37.7767640 -122.4757735, 37.7766315 -122.4760914, 37.7655815 -122.4152362, 37.7650043 -122.4193576, 37.7652037 -122.4161172, 37.7618958 -122.4151034, 37.7650786 -122.4153876, 37.7337604 -122.4934171, 37.7339214 -122.4896757, 37.7338345 -122.4917168, 37.7869084 -122.4565151, 37.7529699 -122.4341555, 37.7316291 -122.4513250, 37.7299803 -122.4512285, 37.7314275 -122.4532403, 37.8082789 -122.4141009, 37.7693980 -122.4521124, 37.7734254 -122.4663049, 37.8005296 -122.4475648, 37.7997086 -122.4362667, 37.8008427 -122.4276089, 37.7881551 -122.4090877, 37.7904499 -122.4055375, 37.7927644 -122.3927085, 37.8084123 -122.4100480, 37.8071167 -122.4156479, 37.8004525 -122.4105821, 37.7950657 -122.3999088, 37.7874729 -122.4078678, 37.7857365 -122.4096385, 37.7800009 -122.4167733, 37.8167937 -122.3722982, 37.7761697 -122.4215410, 37.7745791 -122.4341180, 37.7936998 -122.4213961, 37.7707344 -122.4660864, 37.8020728 -122.4125753, 37.7902111 -122.4076489, 37.7899758 -122.4071611, 21.4076261 -77.8795289, 37.7763563 -122.3958020, 37.7844521 -122.4711623, 37.7846142 -122.4708404, 37.7818385 -122.4923290, 37.7834186 -122.4924440, 37.7836006 -122.4901440, 37.7836650 -122.4884266, 37.7839554 -122.4820021, 37.7837954 -122.4853763, 37.7840959 -122.4787941, 37.7929233 -122.4178901, 37.7814696 -122.4933616, 37.7834210 -122.4925857, 37.7837098 -122.4905627, 37.7838163 -122.4880702, 37.7839687 -122.4848702, 37.7841139 -122.4816301, 37.7818213 -122.4924756, 37.7815116 -122.4935222, 37.7716631 -122.4016977, 37.7980264 -122.4502029 ++44 131 228 2588 +49.3974932 8.6821302, 49.4045387 8.6755501, 49.4082097 8.6927782, 49.4117492 8.7058025, 49.4037018 8.6767168, 49.3999110 8.6783652, 49.3593236 8.6883407 +The Witchery +http://www.zum-seppl.de +yes +0 +yes +no +29 +Volksbank Kurpfalz H+G Bank +48.8373758 2.2723483, 48.8480669 2.2646701, 48.8672033 2.3175552, 48.8794780 2.2911520, 48.8374741 2.2964370, 48.8426769 2.2964541, 48.8447051 2.3110485, 48.8418578 2.3031404, 48.8356667 2.3025546, 48.8418917 2.2973124, 48.8375362 2.2963597, 48.8371698 2.2968218, 48.8411351 2.2996815, 48.8513851 2.3427515, 48.8266959 2.3418366, 48.8313237 2.3160082, 48.8276961 2.3323037, 48.8536884 2.3438503, 48.8465209 2.3169152, 48.8223603 2.3376975, 48.8333496 2.3122320, 48.8662853 2.3197532, 48.8659622 2.3186038, 48.8679910 2.3372848, 48.8529019 2.3430541, 48.8844724 2.3214773, 48.8848286 2.2981665, 48.8815112 2.2955182, 48.8637584 2.2404391, 48.8684582 2.2651973, 48.8652473 2.2754857, 48.8325568 2.3113862, 48.8548336 2.3455606, 48.8724857 2.2964468, 48.8578487 2.2776036, 48.8561596 2.2803320, 48.8587309 2.2850498, 48.8503867 2.2499063, 48.8474160 2.2734653, 48.8645482 2.2749436, 48.8798361 2.2946562, 48.8867832 2.3174727, 48.8834250 2.3133443, 48.8832839 2.3261502, 48.8620110 2.2617158, 48.8578293 2.2627189, 48.8522460 2.2310858, 48.8561113 2.3406430, 48.8359176 2.2934497, 48.8415640 2.2914435, 48.8321096 2.3027626, 48.8488952 2.2875621, 48.8450063 2.2934495, 48.8428146 2.3128644, 48.8584946 2.2687106, 48.8590276 2.2701439, 48.8582201 2.2684874, 48.8580507 2.2679638, 48.8621864 2.2858577, 48.8627962 2.2854972, 48.8620791 2.2848191, 48.8477318 2.3279086, 48.8587970 2.2574756, 48.8844757 2.3382719, 48.8859435 2.3414431, 48.8392719 2.3386499, 48.8382351 2.3417326, 48.8805089 2.3247630, 48.8795193 2.3372522, 48.8860003 2.3379474, 48.8871034 2.3395432, 48.8994594 2.3456310, 48.8881990 2.3259122, 48.8775035 2.3271975, 48.8554797 2.2377372, 48.8509506 2.2377234, 48.8480846 2.3334838, 48.8451543 2.3325456, 48.8474672 2.3379586, 48.8474379 2.3363959, 48.8570290 2.3204791, 48.8188018 2.3371410, 48.8185040 2.3384113, 48.8181578 2.3401279, 48.8418885 2.2735712, 48.8640823 2.3242375, 48.8428738 2.2978005, 48.8243977 2.3360819, 48.8297310 2.3179488, 48.8516782 2.3146314, 48.8706300 2.2979200, 48.8365930 2.3046690, 48.8954660 2.3118560, 48.9006880 2.3443120, 48.8726523 2.2991152, 48.8384857 2.3139931, 48.8880790 2.3433440, 48.8425610 2.3055230, 48.8606880 2.2465600, 48.8488720 2.3128820, 48.8345717 2.3321583, 48.8517060 2.3188780, 48.8630654 2.2649414, 48.8635021 2.2620126, 48.8963810 2.3139000, 48.8852454 2.3310516, 48.8397680 2.3287550, 48.8893940 2.3388820, 48.8374610 2.2851470, 48.8954560 2.3210460, 48.8674870 2.3165830, 48.8532780 2.2711410, 48.8311370 2.3128840, 48.8898960 2.2981300, 48.8417190 2.3204800, 48.8871960 2.3058630, 48.8459400 2.2689590, 48.8855390 2.3268800, 48.8569870 2.2983049, 48.8501704 2.3439958, 48.8399030 2.2904890, 48.8585128 2.2948820, 48.8691890 2.2731280, 48.8417000 2.3374070, 48.8523510 2.2944030, 48.8383280 2.2782440, 48.8433760 2.3364170, 48.8289169 2.3068462, 48.8530930 2.2487630, 48.8510180 2.2721570, 48.8417750 2.2766630, 48.8909945 2.3180223, 48.8581770 2.2475410, 48.8559797 2.2830925, 48.8789680 2.3090890, 48.8221640 2.3407800, 48.8861910 2.3437000, 48.8334140 2.3198533, 48.8782185 2.2703461, 48.8342986 2.3307561, 48.8512040 2.3336860, 48.8519135 2.2527965, 48.8617560 2.2470009, 48.8876610 2.2899050, 48.8521115 2.2541524, 48.8736560 2.2651653, 48.8634236 2.2498140, 48.8715892 2.2642560, 48.8515696 2.2338766, 48.8670116 2.2393588, 48.8589309 2.2291849, 48.8593085 2.2283998, 48.8683594 2.2629205, 48.8728525 2.2727107, 48.8992390 2.3401270, 48.8814860 2.3253960, 48.8890670 2.3382500, 48.8316594 2.3202088, 48.8515687 2.3455917, 48.8832242 2.3300482, 48.8543340 2.3134030, 48.8479841 2.3021348, 48.8381900 2.2706380, 48.8921127 2.3319234, 48.8373130 2.3123540, 48.8929520 2.3468380, 48.8319794 2.3254293, 48.8285390 2.2936320, 48.8937910 2.3254410, 48.8878070 2.3168387, 48.8528480 2.3236680, 48.8954540 2.3265480, 48.8366880 2.3168190, 48.8311305 2.3217527, 48.8281910 2.2975610, 48.8646712 2.2945788, 48.8224115 2.3234656, 48.8563720 2.3423640, 48.8976745 2.3255573, 48.8488580 2.3354220, 48.8323838 2.3266258, 48.8302050 2.3165310, 48.8512390 2.2749420, 48.8675640 2.3439900, 48.8940810 2.3257310, 48.8389116 2.2802003, 48.8239822 2.3186264, 48.8268397 2.3045308, 48.8927720 2.3393440, 48.8708650 2.3267180, 48.8759177 2.3199403, 48.8985920 2.3386760, 48.8973940 2.3352610, 48.8432899 2.3273991, 48.8501986 2.3439620, 48.8892960 2.3080360, 48.8295130 2.2974440, 48.8505319 2.3140947, 48.8513900 2.2954500, 48.8829640 2.2906840, 48.8862884 2.3363224, 48.8990940 2.3343970, 48.8991980 2.3373340, 48.8399790 2.2978655, 48.8765790 2.3317425, 48.8866310 2.2931960, 48.8885760 2.3372580, 48.8544710 2.3306000, 48.8444200 2.2902970, 48.8401440 2.3004225, 48.8682815 2.2937862, 48.8377715 2.3234750, 48.8691909 2.3123689, 48.8313290 2.3203574, 48.8686720 2.3127647, 48.8671021 2.3110061, 48.8450099 2.3109341, 48.8412410 2.2855118, 48.8219932 2.3234435, 48.8211670 2.3407757, 48.8337204 2.3201626, 48.8338246 2.3197979, 48.8548000 2.3455200, 48.8468000 2.3358800, 48.8321456 2.3262397, 48.8608218 2.3464552, 48.8685507 2.2728757, 48.8563416 2.2955451, 48.8724483 2.2489997, 48.8687857 2.2448905, 48.8735492 2.2502871, 48.8706241 2.2491259, 48.8705077 2.2469076, 48.8729282 2.2477712, 48.8734222 2.2509255, 48.8670602 2.2431900, 48.8688615 2.2471136, 48.8902559 2.3155823, 48.8895081 2.3152790, 48.8909868 2.3143418, 48.8916562 2.3142685, 48.8644583 2.3274519, 48.8879169 2.3153097, 48.8879452 2.3155854, 48.8914702 2.3147632, 48.8697228 2.2704730, 48.8195477 2.3338738, 48.8643128 2.3266632, 48.8359580 2.3022176, 48.8237907 2.3314831, 48.8238319 2.3396086, 48.8612225 2.3119810, 48.8625039 2.3009824, 48.8880273 2.3373781, 48.8226090 2.3400474, 48.8239560 2.3366723, 48.8421923 2.2737321, 48.8386247 2.2767307, 48.8585066 2.2446643, 48.8869922 2.3168829, 48.8365007 2.3061630, 48.8408118 2.2763450, 48.8487971 2.2855992, 48.8340933 2.3218873, 48.8342849 2.3425292, 48.8479507 2.3346295, 48.8737508 2.2552546, 48.8572052 2.2975105, 48.8402419 2.2911223, 48.8647970 2.3376815, 48.8279008 2.3224596 +49.4423724 8.7523675, 49.4193055 8.7566134, 49.4243544 8.7433985, 49.4107056 8.6497352, 49.4280568 8.6821889, 49.3768611 8.6887922, 49.3909523 8.6618014, 49.4348207 8.6783577, 49.4373520 8.6781032, 49.3822208 8.6838537, 49.4034192 8.6873184, 49.4338016 8.6780993, 49.3896591 8.6874142, 49.3888889 8.6875000, 49.3802134 8.6735968, 49.3804699 8.6775416, 49.4107484 8.7061452, 49.4136995 8.7142286, 49.4089621 8.7022268, 49.4079105 8.6965175, 49.3737385 8.6825043, 49.3820375 8.6822639, 49.3771878 8.6772091, 49.3794686 8.6784008, 49.3795755 8.6786005, 49.4171575 8.7606858, 49.4125678 8.7457320, 49.4004143 8.6826744, 49.4084040 8.6996182, 49.3841060 8.6837074, 49.4151366 8.7617673, 49.4151843 8.7603553, 49.3842811 8.6648356, 49.3841632 8.6715765, 49.3834567 8.6610378, 49.3822796 8.6627256, 49.4332243 8.6805482, 49.4114686 8.7705695 +48.8376960 2.3062844, 48.8831159 2.3425480, 48.8868146 2.3594625, 48.8481953 2.3419715, 48.8467471 2.3717077, 48.8668168 2.3257587, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8717742 2.2984126, 48.8668308 2.3028826, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8715217 2.3076937, 48.8884053 2.3785210, 48.8278753 2.3796701, 48.8664199 2.2892440, 48.8604399 2.3007825, 48.8710343 2.3234791, 48.8730243 2.3445449, 48.8606580 2.3469337, 48.8234693 2.3306543, 48.8562375 2.3660049, 48.8516696 2.2978180, 48.8528343 2.3441184, 48.8504483 2.2926945, 48.8518053 2.3448347, 48.8549752 2.3046163, 48.8487972 2.3410105, 48.8683305 2.3330172, 48.8609042 2.3467975, 48.8662424 2.3373468, 48.8814057 2.3282568, 48.8495763 2.3798752, 48.8238179 2.3241127, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8848968 2.3034428, 48.8542680 2.3078406 +13 +yes and 48.8351292 2.3562281, 48.8464236 2.3893031, 48.8373537 2.3964048, 48.8331488 2.4001376, 48.8330078 2.3998567, 48.8332677 2.4004089, 48.8867895 2.2885547, 48.8354139 2.3821586, 48.8432434 2.3596915, 48.8450848 2.3534295, 48.8641948 2.2519087, 48.8500540 2.3441227, 48.8616892 2.3790811, 48.8496560 2.3680272, 48.8305377 2.2720167, 48.8395514 2.3065295, 48.8420600 2.3053955, 48.8421720 2.2967815, 48.8401918 2.3006179, 48.8450282 2.2929507, 48.8398942 2.2979896, 48.8374487 2.3105347, 48.8377201 2.3133283, 48.8297062 2.3047398, 48.8440427 2.2897951, 48.8408478 2.2793259, 48.8434931 2.2758364, 48.8367393 2.2909774, 48.8359451 2.2933502, 48.8421790 2.3874461, 48.8360274 2.3050768, 48.8286953 2.2978023, 48.8285373 2.2931025, 48.8296919 2.2940863, 48.8511073 2.2855775, 48.8675167 2.3683209, 48.8638778 2.3925953, 48.8656404 2.4002693, 48.8659412 2.3694804, 48.8634040 2.3715086, 48.8622029 2.3723267, 48.8302203 2.3168888, 48.8408346 2.3236435, 48.8347191 2.3318056, 48.8512248 2.2957731, 48.8521944 2.2943621, 48.8488726 2.2860228, 48.8579130 2.3487608, 48.8523360 2.3243813, 48.8486366 2.2721669, 48.8751482 2.3618270, 48.8481127 2.3024942, 48.8484406 2.3018807, 48.8461041 2.3114817, 48.8644561 2.3607493, 48.8397962 2.3188890, 48.8763282 2.2807983, 48.8530500 2.3593937, 48.8449475 2.3114724, 48.8920708 2.3904695, 48.8942774 2.3891609, 48.8817945 2.3985077, 48.8507689 2.3440015, 48.8516815 2.3455023, 48.8523775 2.3503425, 48.8519946 2.3522409, 48.8513517 2.3618565, 48.8184362 2.3552754, 48.8362221 2.3162881, 48.8330074 2.3494626, 48.8392009 2.4064731, 48.8769805 2.3464647, 48.8422649 2.3540627, 48.8355612 2.3366126, 48.8337517 2.3624196, 48.8446471 2.3876397, 48.8367494 2.3222577, 48.8505912 2.3500301, 48.8538795 2.3578768, 48.8351969 2.3143487, 48.8335509 2.3135841, 48.8317737 2.3132112, 48.8304603 2.3134095, 48.8310322 2.3142435, 48.8311554 2.3133491, 48.8300284 2.3081849, 48.8287886 2.3067783, 48.8281837 2.3095506, 48.8336730 2.3122360, 48.8321861 2.3101270, 48.8252893 2.3049173, 48.8263485 2.3036981, 48.8296871 2.3448788, 48.8263794 2.3378841, 48.8208919 2.3574747, 48.8202295 2.3605820, 48.8767521 2.3316112, 48.8474726 2.3606473, 48.8455556 2.2766342, 48.8527840 2.3280405, 48.8493982 2.4039131, 48.8483824 2.4046099, 48.8199080 2.3560004, 48.8185108 2.3588380, 48.8577042 2.2861053, 48.8542167 2.4012607, 48.8671726 2.3537967, 48.8391938 2.2827695, 48.8313641 2.3701044, 48.8346201 2.2931327, 48.8409081 2.3633286, 48.8367295 2.3083829, 48.8358496 2.3084018, 48.8260722 2.3751067, 48.8679735 2.2942228, 48.8940527 2.3521987, 48.8440650 2.2804391, 48.8287965 2.3678309, 48.8496773 2.3806672, 48.8943660 2.3265850, 48.8372087 2.2728424, 48.8343019 2.3315561, 48.8547344 2.3532107, 48.8386825 2.2804635, 48.8679732 2.3375739, 48.8658741 2.3882235, 48.8542571 2.3339531, 48.8636469 2.3890076, 48.8780700 2.3658796, 48.8779110 2.3661939, 48.8861503 2.2900421, 48.8476565 2.2703202, 48.8918920 2.3044865, 48.8819402 2.2839212, 48.8930339 2.3465149, 48.8442493 2.3618713, 48.8904794 2.3148008, 48.8360361 2.3736338, 48.8282763 2.3772782, 48.8286996 2.3495963, 48.8707480 2.3833236, 48.8783688 2.3517697, 48.8520789 2.3911492, 48.8684326 2.3835891, 48.8861122 2.3560831, 48.8953201 2.3642267, 48.8889585 2.3791325, 48.8347523 2.3305612, 48.8705109 2.4120037, 48.8656133 2.4102352, 48.8520048 2.4096147, 48.8620098 2.4069056, 48.8999881 2.3668831, 48.8992676 2.3707231, 48.8326739 2.2880933, 48.8499068 2.3597039, 48.8280720 2.3602842, 48.8509647 2.3132006, 48.8821787 2.3443674, 48.8670362 2.3915837, 48.8654230 2.3940998, 48.8987412 2.3383160, 48.8319801 2.3615094, 48.8729141 2.4118958, 48.8922809 2.3383088, 48.8373105 2.4444105, 48.8706396 2.3966301, 48.8860689 2.3534507, 48.8260181 2.3300185, 48.8409618 2.3923863, 48.8278872 2.3662217, 48.8411562 2.3876284, 48.8591648 2.4000813, 48.8360513 2.4015270, 48.8316250 2.2997138, 48.8853618 2.3438234, 48.8941071 2.3183132, 48.8433533 2.3274434, 48.8745269 2.3581995, 48.8703285 2.2473980, 48.8564818 2.3425186, 48.8574039 2.3402068, 48.8541136 2.3514875, 48.8824872 2.2905821, 48.8842267 2.2958761, 48.8834177 2.2943884, 48.8825183 2.2927200, 48.8818635 2.2915110, 48.8813406 2.2905313, 48.8805623 2.2890302, 48.8793397 2.2868575, 48.8636611 2.3266770, 48.8632971 2.3399434, 48.8698572 2.3499616, 48.8558126 2.3521945, 48.8557456 2.3521593, 48.8556731 2.3521203, 48.8558869 2.3518948, 48.8559264 2.3517383, 48.8557424 2.3524937, 48.8557666 2.3518421, 48.8556294 2.3524211, 48.8556875 2.3524612, 48.8558175 2.3518657, 48.8536880 2.3586041, 48.8537103 2.3583919, 48.8535362 2.3584735, 48.8537763 2.3584128, 48.8535482 2.3585727, 48.8536355 2.3583397, 48.8537217 2.3584917, 48.8536284 2.3584811, 48.8536734 2.3587034, 48.8534826 2.3585509, 48.8536229 2.3586219, 48.8536260 2.3584904, 48.8535844 2.3582601, 48.8535700 2.3583598, 48.8586993 2.3580083, 48.8479245 2.3445569, 48.8541350 2.3592271, 48.8537316 2.3594219, 48.8541524 2.3597661, 48.8539572 2.3595068, 48.8541683 2.3595383, 48.8583962 2.3631190, 48.8581939 2.3626749, 48.8579686 2.3627347, 48.8583563 2.3631779, 48.8580448 2.3627882, 48.8580275 2.3627026, 48.8580806 2.3626739, 48.8582721 2.3635065, 48.8580240 2.3627498, 48.8584649 2.3632890, 48.8580033 2.3626182, 48.8786418 2.4080281, 48.8755522 2.3550917, 48.8751615 2.3544328, 48.8230919 2.3642919, 48.8569321 2.3368280, 48.8536974 2.3345069, 48.8573993 2.3362477, 48.8495279 2.3376503, 48.8732975 2.3675484, 48.8854008 2.3771779, 48.8513374 2.3255916, 48.8512468 2.3253199, 48.8512782 2.3254145, 48.8512118 2.3260711, 48.8515585 2.3257353, 48.8503130 2.3274684, 48.8512584 2.3258038, 48.8504490 2.3274370, 48.8386523 2.3889151, 48.8545907 2.3309327, 48.8652201 2.3108977, 48.8652766 2.3107272, 48.8650627 2.3106421, 48.8655629 2.3112670, 48.8650739 2.3108669, 48.8653377 2.3111403, 48.8651682 2.3114083, 48.8653829 2.3117589, 48.8651929 2.3117131, 48.8650934 2.3111686, 48.8654196 2.3110307, 48.8659593 2.3176961, 48.8678332 2.3112451, 48.8688971 2.3128023, 48.8673349 2.3172538, 48.8755008 2.3828940, 48.8739928 2.3230341, 48.8740320 2.3230629, 48.8735809 2.3233998, 48.8735779 2.3229937, 48.8739615 2.3235538, 48.8760409 2.3203279, 48.8759763 2.3201282, 48.8757691 2.3198438, 48.8759840 2.3210144, 48.8758052 2.3200540, 48.8758462 2.3206481, 48.8758771 2.3198323, 48.8765224 2.3182782, 48.8753193 2.3027355, 48.8677108 2.3125120, 48.8201105 2.3624944, 48.8220432 2.3642673, 48.8226415 2.3622255, 48.8693255 2.3668597, 48.8289643 2.3792437, 48.8449152 2.3044654, 48.8300278 2.3796568, 48.8755170 2.3694090, 48.8853450 2.3561989, 48.8471006 2.3769323, 48.8655155 2.2971441, 48.8652948 2.2971715, 48.8652823 2.2967167, 48.8654841 2.2962849, 48.8652479 2.2962681, 48.8683188 2.2930354, 48.8604525 2.2880625, 48.8605267 2.2880008, 48.8627696 2.2916697, 48.8698930 2.2899388, 48.8716220 2.2749197, 48.8690899 2.2727856, 48.8687423 2.2723416, 48.8689108 2.2741672, 48.8648971 2.2751646, 48.8998976 2.3893835, 48.8630124 2.2677048, 48.8629051 2.2680397, 48.8633140 2.2666168, 48.8636323 2.2682044, 48.8615851 2.2864292, 48.8615794 2.2867731, 48.8616911 2.2869132, 48.8588924 2.2683263, 48.8587414 2.2692019, 48.8590933 2.2688225, 48.8586749 2.2680700, 48.8588767 2.2680306, 48.8593199 2.2684054, 48.8575990 2.2677108, 48.8583571 2.2683595, 48.8581135 2.2692243, 48.8576707 2.2696195, 48.8581046 2.2675956, 48.8601343 2.2700283, 48.8596268 2.2653877, 48.8557318 2.2836801, 48.8551825 2.2807231, 48.8519099 2.2752742, 48.8529532 2.2707036, 48.8529002 2.2708132, 48.8529916 2.2706479, 48.8527792 2.2706246, 48.8530423 2.2705255, 48.8553159 2.2626202, 48.8552063 2.2625500, 48.8551894 2.2629495, 48.8550245 2.2628356, 48.8528483 2.2614326, 48.8550956 2.2624788, 48.8553828 2.2622678, 48.8531452 2.2607633, 48.8552194 2.2621567, 48.8531719 2.2611272, 48.8529486 2.2609794, 48.8530452 2.2611270, 48.8530341 2.2615476, 48.8507008 2.2599244, 48.8509619 2.2596975, 48.8508609 2.2596331, 48.8509929 2.2593792, 48.8510477 2.2596554, 48.8508195 2.2595030, 48.8509003 2.2599092, 48.8509216 2.2600752, 48.8507990 2.2598438, 48.8508207 2.2599787, 48.8493697 2.2587931, 48.8502593 2.2592782, 48.8498167 2.2590625, 48.8876549 2.3662110, 48.8474639 2.2555696, 48.8467061 2.2526391, 48.8453758 2.2661190, 48.8455852 2.2664514, 48.8974507 2.3425297, 48.8859281 2.2938410, 48.8351248 2.3367476, 48.8382466 2.2544534, 48.8373075 2.2625642, 48.8372169 2.2541442, 48.8356347 2.2548227, 48.8370038 2.2552072, 48.8368363 2.2545512, 48.8361719 2.2547833, 48.8370647 2.2544954, 48.8361382 2.2544636, 48.8362975 2.2551966, 48.8358411 2.2554380, 48.8364551 2.2542017, 48.8369437 2.2543040, 48.8374203 2.2544441, 48.8369453 2.2546760, 48.8372631 2.2543120, 48.8377362 2.2545946, 48.8370739 2.2541744, 48.8364710 2.2553514, 48.8382416 2.2532683, 48.8378409 2.2540230, 48.8372742 2.2538709, 48.8378364 2.2533430, 48.8378424 2.2533197, 48.8382456 2.2529161, 48.8378018 2.2531847, 48.8372557 2.2535240, 48.8378883 2.2534656, 48.8382541 2.2525868, 48.8382501 2.2532082, 48.8487899 2.3793188, 48.8477573 2.3803729, 48.8217424 2.4565575, 48.8463599 2.3494865, 48.8464717 2.3496513, 48.8473102 2.3497086, 48.8471272 2.3492826, 48.8470942 2.3497031, 48.8464506 2.3494656, 48.8473491 2.3493744, 48.8472362 2.3504442, 48.8463754 2.3496755, 48.8448630 2.3888016, 48.8412767 2.3446263, 48.8418986 2.3448319, 48.8430285 2.3457320, 48.8499400 2.3439999, 48.8500889 2.3439112, 48.8500543 2.3442977, 48.8501932 2.3441839, 48.8390797 2.3159696, 48.8491484 2.3459550, 48.8493382 2.3452413, 48.8489868 2.3463430, 48.8478743 2.3501785, 48.8473060 2.3509143, 48.8481166 2.3499634, 48.8475035 2.3507573, 48.8479660 2.3497343, 48.8477977 2.3505300, 48.8480530 2.3496667, 48.8474869 2.3505183, 48.8431403 2.3401946, 48.8434620 2.3397215, 48.8432351 2.3396888, 48.8433813 2.3403305, 48.8435966 2.3400886, 48.8396950 2.3506224, 48.8397466 2.3505403, 48.8595609 2.4061357, 48.8464572 2.2555444, 48.8387444 2.3536989, 48.8592098 2.3120859, 48.8577775 2.3104707, 48.8605291 2.3122248, 48.8591470 2.3139691, 48.8619290 2.3123778, 48.8604807 2.3141063, 48.8618975 2.3141498, 48.8575867 2.3107745, 48.8566572 2.3144108, 48.8503174 2.3136601, 48.8615696 2.3157605, 48.8615461 2.3162154, 48.8617384 2.3165555, 48.8588648 2.3195828, 48.8591991 2.3198386, 48.8589516 2.3199326, 48.8591104 2.3194881, 48.8590317 2.3197093, 48.8516509 2.4114806, 48.8856628 2.3274123, 48.8785098 2.3366780, 48.8831619 2.3298581, 48.8771711 2.3279603, 48.8598335 2.4007863, 48.8415680 2.3861426, 48.8341398 2.4671783, 48.8847174 2.3600292, 48.8846714 2.3586794, 48.8702970 2.3751231, 48.8492918 2.3790002, 48.8489882 2.3952688, 48.8490263 2.3964375, 48.8481054 2.3948858, 48.8486252 2.3956295, 48.8483991 2.3947937, 48.8486225 2.3969352, 48.8491077 2.3957761, 48.8485746 2.3962730, 48.8481524 2.3961969, 48.8481973 2.3955582, 48.8487629 2.3968430, 48.8476824 2.3961677, 48.8477494 2.3954067, 48.8479139 2.3967703, 48.8603366 2.3852102, 48.8596119 2.3846977, 48.8622353 2.3721828, 48.8360411 2.3173742, 48.8560581 2.3767899, 48.8521163 2.3812457, 48.8526519 2.3815603, 48.8411342 2.2856427, 48.8539515 2.3908187, 48.8503522 2.3834594, 48.8548949 2.3945985, 48.8253516 2.3692146, 48.8452398 2.3678042, 48.8504058 2.3771320, 48.8390546 2.3311733, 48.8577820 2.3204968, 48.8575323 2.3205785, 48.8575371 2.3206176, 48.8576650 2.3209936, 48.8507503 2.3582429, 48.8508750 2.3597899, 48.8508136 2.3598209, 48.8507942 2.3597182, 48.8508264 2.3598972, 48.8507417 2.3598443, 48.8472198 2.3495064, 48.8467141 2.3363649, 48.8435465 2.3852894, 48.8442970 2.4004073, 48.8441393 2.4002029, 48.8442799 2.3992758, 48.8441345 2.4008734, 48.8462482 2.4043824, 48.8449582 2.4022524, 48.8440647 2.4019207, 48.8445792 2.4021085, 48.8412134 2.4097979, 48.8420942 2.4102434, 48.8352063 2.4075103, 48.8358723 2.4081721, 48.8345779 2.4067954, 48.8509192 2.4001701, 48.8504898 2.4015516, 48.8423893 2.3858725, 48.8584020 2.4148408, 48.8277602 2.3828768, 48.8320347 2.3782213, 48.8315098 2.4346896, 48.8848595 2.3386885, 48.8412236 2.3969052, 48.8453157 2.3799237, 48.8435493 2.3837453, 48.8573837 2.3601544, 48.8575209 2.3599403, 48.8877554 2.3437578, 48.8875022 2.3418023, 48.8709905 2.3876186, 48.8712499 2.3865872, 48.8940855 2.3497583, 48.8769683 2.3932829, 48.8757964 2.3945341, 48.8658251 2.3553640, 48.8413198 2.2748064, 48.8278323 2.3521871, 48.8882224 2.3372429, 48.8292652 2.3801401, 48.8715545 2.3849798, 48.8962254 2.3430597, 48.8408464 2.4027871, 48.8410642 2.3999536, 48.8687309 2.3881340, 48.8649511 2.2530414, 48.8225778 2.3575432, 48.8628338 2.3442528, 48.8372405 2.3042256, 48.8999988 2.3452350, 48.8997261 2.3383715, 48.8419590 2.3450234, 48.8417733 2.3449103, 48.8420266 2.3447466, 48.8418461 2.3446370, 48.8419269 2.3449043, 48.8418815 2.3447553, 48.8418569 2.3448693, 48.8419534 2.3447916, 48.8607017 2.4053074, 48.8615336 2.4005433, 48.8579598 2.4061305, 48.8193306 2.3478518, 48.8211963 2.3546179, 48.8239248 2.3187110, 48.8283030 2.3054034, 48.8346932 2.2839353, 48.8863780 2.3370391, 48.8561889 2.4010520, 48.8559855 2.4016766, 48.8228204 2.3479528, 48.8795426 2.3838037, 48.8568463 2.3622093, 48.8874917 2.3163563, 48.8926891 2.3614786, 48.8514129 2.2617896, 48.8553965 2.2667281, 48.8874288 2.3249629, 48.8381941 2.2769278, 48.8761664 2.4066619, 48.8956323 2.3750100, 48.8940037 2.3842068, 48.8698167 2.3982143, 48.8850845 2.3820568, 48.8867647 2.3706778, 48.8215755 2.3231347, 48.8922801 2.2985255, 48.8277209 2.3673728, 48.8919490 2.3611955, 48.8993353 2.3751905, 48.8924402 2.3618464, 48.8250526 2.3031349, 48.8394527 2.2887713, 48.8397526 2.2892403, 48.8304951 2.3579059, 48.8439509 2.3464037, 48.8444056 2.3818903, 48.8463200 2.3778508, 48.8896291 2.3809948, 48.8562680 2.2897148, 48.8623543 2.2993705, 48.8916885 2.3316437, 48.8514171 2.2950534, 48.8521282 2.3474875, 48.8442489 2.2687302, 48.8753294 2.3995485, 48.8936357 2.3633580, 48.8734480 2.3963136, 48.8699317 2.3936039, 48.8958220 2.3610383, 48.8505098 2.2973259, 48.8184109 2.3602454, 48.8186634 2.3606140, 48.8187490 2.3602341, 48.8238391 2.3533046, 48.8277279 2.3525754, 48.8275462 2.3652745, 48.8463173 2.2778146, 48.8449428 2.3048536, 48.8363188 2.3596767, 48.8360399 2.3600461, 48.8362252 2.3599768, 48.8361032 2.3597862, 48.8361026 2.3599631, 48.8362619 2.3597483, 48.8647260 2.3907516, 48.8950355 2.3535477, 48.8602550 2.4037142, 48.8363205 2.3181423, 48.8859798 2.3610072, 48.8608375 2.4099106, 48.8716353 2.3952381, 48.8682927 2.4085101, 48.8722712 2.4129546, 48.8553708 2.4093495, 48.8344135 2.2848971, 48.8815777 2.4002187, 48.8793948 2.4006775, 48.8753046 2.3029139, 48.8826210 2.3950114, 48.8894871 2.3736631, 48.8880610 2.3986423, 48.8433823 2.4106521, 48.8399096 2.2916834, 48.8660296 2.3806446, 48.8785130 2.3934603, 48.8655220 2.3810316, 48.8739040 2.3733848, 48.8487850 2.4157805, 48.8495781 2.4138864, 48.8780150 2.3926470, 48.8571600 2.3603887, 48.8924116 2.3120541, 48.8926842 2.3110463, 48.8919306 2.3133343, 48.8922415 2.3131983, 48.8919686 2.3126774, 48.8857748 2.3927149, 48.8206218 2.3326544, 48.8558991 2.3855866, 48.8745229 2.3771319, 48.8571897 2.3956763, 48.8574471 2.3878731, 48.8338119 2.3327247, 48.7854039 2.2942040, 48.8793706 2.3088907, 48.8887726 2.3631601, 48.8428700 2.2923037, 48.8486015 2.3919565, 48.8204716 2.3351483, 48.8222361 2.3380093, 48.8617898 2.3160689, 48.8560657 2.2978323 +Ocean Kitchen Bar and Grill +yes +Mayfield Gardens, Roxburgh Place, Sunnyside, Bristo Place, Morningside Road + +yes +Björn Steiger Stiftung, Sparkasse Rhein Neckar Nord, Björn-Steiger-Stiftung, Straßenmeisterei, Deutsche Telekom AG, Rettungsstiftung Jürgen Pegler e.V., Autobahnmeisterei, Volksbank, Deutsche Telekom, T-Com, Heidenheimer Zeitung, Björn-Steiger Stiftung +Synagogue Beit Yossef, Synagogue, Ohaley Yaakov, Chapelle Saint-Vincent de Paul, Chapelle de l'Agneau de Dieu, Église Adventiste du 7e jour Paris-Sud, Amicale des Teo Chew en France, Synagogue Avoth Ouvanim, Chapelle Saint-Bernard, Mosquée 'Ali Ibn Al Khattab, Mosquée Al-Fatih, Mosquée de Paris 15ème, Association Culturelle des Musulmans, Maison Verte, Aumônerie des Grands Moulins, Union Libérale Israélite de France, Chapelle Sainte-Marie, Église Notre-Dame de Chaldée, Temple Sri Manicka Vinayakar, Chapelle Orthodoxe, Chapelle, Autel de culte du Bouddha, Centre Évangélique Philadelphia, Synagogue Saint-Lazare, synagogue Chivté Israël, Église Orthodoxe Grecque, synaguogue cadet, Adath Shalom, Église évangélique du tabernacle, Calvary Chapel, Espace Boudhiste Tibétain, Église Protestante - Paris Alésia, Chapelle Saint-Paul, Église baptiste du centre, Salle du Royaume des Témoins de Jéhovah de Paris Clichy, Chapelle Saint-Martin de Porrès, Chapelle catholique des 4 Évangélistes, Synagogue Beth-El Nevé chalom, Synagogue. Oratoire de la fondation Rothschild, Synagogue Etz Haim-Beit Hamidrach, Autel de culte du Bouddha, Chapelle des Franciscaines, Centre Saint-Paul, Chapelle Notre-Dame de la Confiance, Chapelle Sainte-Marie, Église protestante évangélique des Ternes, Église Adventiste du 7ème Jour, Église Sainte-Colette des Buttes-Chaumont, Centre Rambam, Beth Hamidrach Lamed, Foyer Culturel Myriam Zana, Abdoulmajid, Mosquée A Daawa, Église Catholique Russe, Beth Habad, Chapelle, Église Mariavite Sainte-Marie, Chapelle Saint-André, Chapelle Saint-Louis, Crypte du Martyrium de Saint-Denis, Chapelle, masjid la Villette, Chapelle, Église Saint-Lambert de Vaugirard, Église Saint-Léon, Église Saint-Sulpice, Église Saint-Pierre de Montrouge, Église Saint-Séverin, Église Saint-Julien-le-Pauvre, Basilique du Sacré-Cœur, Église Saint-Jean-Baptiste de Grenelle, Église Saint-Pierre de Montmartre, Église Notre-Dame de l'Arche d'Alliance, Église Saint-Ignace, Église Saint-Médard, Église Notre-Dame-de-Lorette, Temple de l'Oratoire du Louvre, Église Notre-Dame de Clignancourt, Église Saint-Roch, Saint-Nicolas du Chardonnet, Chapelle Notre-Dame-de-la-Compassion, Église Sainte-Hélène, Synagogue Charles Liché, Église de la Sainte-Trinité, Église Saint-Eugène Sainte-Cécile, Chapelle Ozanam, Église luthérienne de la Résurrection, Église Saint-Christophe de Javel, Église Saint-Eustache, Église Saint-Germain l'Auxerrois, Église Saint-Leu - Saint-Gilles, Chapelle Notre-Dame de Grâce, Église Polonaise Notre-Dame de l'Assomption, Église de la Madeleine, Basilique Notre-Dame-des-Victoires, Église Notre-Dame-de-Bonne-Nouvelle, Église Saint-Louis-en-l'Île, Église Saint-Étienne-du-Mont, Église Saint-Éphrem-le-Syriaque, Église Orthodoxe Roumaine des Saints Archanges, Église Saint-Gervais, Église Saint-Merry, Église luthérienne des Billettes, Grande Mosquée de Paris, Église Notre-Dame-des-Blancs-Manteaux, Synagogue, Église Saint-Paul - Saint-Louis, Chapelle, Temple Sainte-Marie, Église Saint-Nicolas des Champs, Ancienne Église Saint-Martin des Champs, Synagogue Nazareth, Église Sainte-Élisabeth, Synagogue Vauquelin, Chapelle de la congrégation du Saint-Esprit, Cathédrale Arménienne Sainte-Croix, Église Saint-Denis du Saint-Sacrement, Église du Val-de-Grâce, Église Luthérienne Saint-Marcel, Église Saint-Jacques-du-Haut-Pas, Église Saint-Germain des Prés, Cathédrale Ukrainienne Saint-Vladimir-le-Grand, Chapelle Notre-Dame de la Sagesse, Pagode de Vincennes, Église Saint-Vincent-de-Paul, Centre Culturel Islamique, Association Culturelle Islamique Kurdes, Église Saint-Laurent, Chapelle de l'hôpital Saint-Louis, Église Saint-Martin des Champs, Église Saint-Joseph-Artisan, Temple de la Rencontre, Église Saint-Jean-Baptiste de Belleville, Église Notre-Dame-de-l'Assomption des Buttes-Chaumont, Église luthérienne Saint-Pierre, Église Notre-Dame-de-Fatima, Église Saint-François-d'Assise, Église Sainte-Claire d'Assise, Temple antoiniste, Église Saint-Serge, Église Saint-Georges de la Villette, Église Saint-Joseph des Carmes, Église Saint-Thomas d'Aquin, Église Saint-Ambroise, Association Foi et Pratique - Mosquée OMAR, Chapelle Notre-Dame-Réconciliatrice de la Salette, Synagogue Don Isaac Abravanel, Basilique Notre-Dame du Perpétuel Secours, Mosquée Abou Baker Assiddiq, Église protestante chinoise de Paris, Église Notre-Dame d'Espérance, Temple protestant du Foyer de l'Âme, Église Réformée du Luxembourg, Église Saint-Jacques Saint-Christophe, Église Notre-Dame des Foyers, Église Notre-Dame des Champs, Basilique Sainte-Clothilde, Cathédrale Saint-Louis des Invalides, Chapelle de Jésus-Enfant, Église Anglicane Saint-Michel, Église Réformée du Saint-Esprit, Temple de Pentemont, Église Saint-Augustin, Chapelle Expiatoire, Église Saint-André de l'Europe, Église Saint-Philippe du Roule, Chapelle Baltard, Église Saint-François-Xavier, Chapelle Notre-Dame de l'Annonciation, Église Américaine, Église Saint-Pierre du Gros Caillou, Église Saint-Louis-d'Antin, Deutsche Evangelische Christuskirche Paris, Church of Scotland, Chapelle Notre-Dame de Consolation, Cathédrale Arménienne Saint-Jean-Baptiste, Grande Synagogue de la Victoire, Consistoire, Synagogue Buffault, Cathédrale Américaine de la Sainte-Trinité, Église Luthérienne Saint-Jean, Église Réformée chinoise de Belleville, Église Notre-Dame-des-Otages, Église Notre-Dame-de-la-Croix, Église du Cœur Eucharistique de Jésus, Synagogue, Église Saint-Germain-de-Charonne, Église Saint-Gabriel, Église Saint-Jean-Bosco, Chapelle de l'Est, Église Saint-Cyrille et Saint-Méthode, Chapelle du Corpus-Christi, Église Protestante Danoise, Cathédrale Orthodoxe Russe Saint-Alexandre Nevsky, Saint-Joseph's Church (mission anglophone), Église Saint-Jospeh des Épinettes, Temple des Batignolles, Église Saint-Michel des Batignolles, Église Sainte-Marie des Batignolles, Église de l'Immaculée Conception, Église Sainte-Geneviève des Grandes-Carrières, Église Sainte-Rita, Église Saint-Jean de Montmartre, Église Saint-Bernard de La Chapelle, Khalid Ibn Walid, Institut des Cultures d'Islam, Chapelle Notre-Dame de la Paix, Église Saint-Éloi, Église Notre-Dame du Bon Conseil, Église Serbe Saint-Sava, Église Notre-Dame de Bercy, Église Orthodoxe de France, Église réformée Port-Royal Quartier Latin, Église Sainte-Rosalie, Église Saint-Albert le Grand, Église Sainte-Anne de la Maison Blanche, Temple Antoiniste de Paris, Église Luthérienne de la Trinité, Église Saint-Marcel, Chapelle Saint-Louis de la Salpêtrière, Église Notre-Dame de Chine, Église Notre-Dame de la Gare, Église Saint-Hippolyte, Cathédrale Saint-Étienne, Église Saint-Pierre de Chaillot, Église Anglicane Saint-Georges, Église Saint-Dominique, Église Notre-Dame-du-Travail, Paroisse de Plaisance, Église Notre-Dame-du-Rosaire, Église Évangélique Libre, Église de Saint-Antoine de Padoue, Église Notre-Dame-Réconciliatrice, Chapelle Notre-Dame-du-Lys, Église Orthodoxe Saint-Séraphin de Sarov, Église Saint-Jean-Baptiste-de-La-Salle, Église Saint-Honoré d'Eylau, Église Réformée de l'Annonciation, Mission Catholique Espagnole - Iglesia Española, Église Notre-Dame-de-l'Assomption de Passy, Église Notre-Dame de Grâce de Passy, Église Saint-Denys de la Chapelle, Chapelle Sainte-Thérèse, Église Saint-François-de-Sales (ancienne église), Église Luthérienne de l'Ascension, Temple Réformé de l'Etoile, Église Sainte-Odile, Église Saint-Charles-de-Monceau, Église Saint-Ferdinand des Ternes, Église du Christ, Église Saint-François-de-Sales (nouvelle église), Église Notre-Dame d'Auteuil, Chapelle Sainte-Bernadette, Église Saint-François de Molitor, Église Polonaise Sainte-Geneviève, Église Sainte-Jeanne-de-Chantal, Chapelle de la Visitation, Église Saint-Antoine des Quinze-Vingts, Chapelle Sainte-Ursule, Église Notre-Dame-du-Liban, Chapelle de l'Épiphanie, Église Notre-Dame-de-Grâce de Passy, Chapelle Laennec, Église Notre-Dame-de-Nazareth, Église nouvelle Saint-Honoré d'Eylau, Chapelle Saint-François d'Assise, Chapelle Sainte-Rita, Basilique Sainte-Jeanne-d’Arc, Église du dôme, Chapelle Notre-Dame-du-Saint-Sacrement, Église Notre-Dame-de-Lourdes, Église Saint-Joseph des Nations, Église Sainte-Marguerite, Église Sainte-Marguerite, MJLF, Chapelle Sainte-Jeanne-d'Arc, Église du Bon Secours, Église du Saint-Esprit, Chapelle, Prieuré Saint-Benoît, Église Orthodoxe des Trois-Saints-Docteurs, Église Protestante Suéduoise, Chapelle de la clinique Blomet, Église du Bon Pasteur, Église Saint-Jean des Deux Moulins, Chapelle, Église luthérienne Saint-Paul, Chapelle, Chapelle Saint-Yves, Chapelle, Chapelle, Chapelle du Sacré-Cœur-de-Jésus-Roi-de-France, Kagyu-Dzong, Cathédrale Notre-Dame de Paris, Chapelle Saint-Charles, Chapelle, Chapelle Notre-Dame des Anges, Chapelle Notre-Dame de la Médaille Miraculeuse, Chapelle des Catéchismes, Communauté évangélique Paris Daumesnil, Église Saint-Luc, Église Notre-Dame-de-La-Salette, Sainte-Chapelle +Römischer Tempel, Dicker Turm and 49.4258222 8.7062319, 49.4107663 8.7140684 +yes +5 +Iwo Jima, Annobón Province, Cocos (Keeling) Islands, Cocos Island, Solitude Island, Tromelin Island, Clipperton Island, Bouvet Island, Saint Helena, Ascension, Atlasov Island, Rudolf Island, Howland Island, Easter Island, Robinson Crusoe Island +55.9652866 -3.3173288, 55.9474486 -3.1859655, 55.9547783 -3.1976132, 55.9512066 -3.1850870, 55.9426432 -3.2801965, 55.9426063 -3.2085087, 55.9348214 -3.0945488, 55.9366417 -3.1570870, 55.9733698 -3.1917230, 55.9446070 -3.1860121, 55.9444906 -3.1858127, 55.9450275 -3.1853002, 55.9395675 -3.2038566, 55.9355709 -3.2102528, 55.9395567 -3.2208158, 55.9395988 -3.2206602, 55.9318108 -3.2374274, 55.9282620 -3.2003920, 55.9445252 -3.1859176, 55.9480977 -3.1860003, 55.9471995 -3.1855061, 55.9468154 -3.1855780, 55.9440261 -3.1820823, 55.9406312 -3.2039275, 55.9402760 -3.2038110, 55.9434664 -3.1831055, 55.9434196 -3.1842460, 55.9425019 -3.1793852, 55.9434281 -3.1802599, 55.9774101 -3.1718543, 55.9628304 -3.1997070, 55.9630892 -3.2001803, 55.9479312 -3.1940298, 55.9488004 -3.1932865, 55.9488010 -3.1925834, 55.9619662 -3.2352523, 55.9503936 -3.1748495, 55.9500635 -3.1892496, 55.9534622 -3.1963003, 55.9810888 -3.1948604, 55.9813469 -3.1948497, 55.9775639 -3.1689368, 55.9763814 -3.1707551, 55.9610381 -3.1807131, 55.9760230 -3.1696703, 55.9770082 -3.1723631, 55.9771560 -3.1735460, 55.9771245 -3.1733636, 55.9825548 -3.1951570, 55.9770419 -3.1725751, 55.9770800 -3.1727697, 55.9757237 -3.1680744, 55.9768212 -3.1696962, 55.9696870 -3.1601851, 55.9746544 -3.1708033, 55.9754457 -3.1703672, 55.9748068 -3.1719428, 55.9764963 -3.1714060, 55.9612898 -3.1713969, 55.9734916 -3.1731211, 55.9734370 -3.1678545, 55.9766362 -3.1692569, 55.9581662 -3.2088898, 55.9584860 -3.2082072, 55.9585295 -3.2049192, 55.9561318 -3.2024897, 55.9607716 -3.1994845, 55.9771770 -3.1718400, 55.9624799 -3.1788559, 55.9721688 -3.1727029, 55.9734119 -3.1676688, 55.9545214 -3.1981041, 55.9542551 -3.1979757, 55.9356483 -3.2096691, 55.9364920 -3.2084274, 55.9453065 -3.1835012, 55.9456929 -3.2031564, 55.9450873 -3.2046445, 55.9463793 -3.2017812, 55.9468801 -3.2026112, 55.9467570 -3.2027078, 55.9460060 -3.2052924, 55.9461895 -3.1912537, 55.9642340 -3.2119376, 55.9760874 -3.1678906, 55.9736874 -3.1725679, 55.9751258 -3.1658656, 55.9460137 -3.1821143, 55.9587464 -3.2103338, 55.9455352 -3.1866707, 55.9456867 -3.1862318, 55.9445731 -3.1850966, 55.9445434 -3.1856701, 55.9478908 -3.1920045, 55.9477659 -3.1919316, 55.9442896 -3.2708207, 55.9438150 -3.2706214, 55.9827744 -3.3988810, 55.9541180 -3.1855740, 55.9807233 -3.1953798, 55.9525178 -3.1990765, 55.9527244 -3.1978512, 55.9796500 -3.3006918, 55.9458340 -3.1851287, 55.9456579 -3.1864695, 55.9506084 -3.1874617, 55.9500934 -3.1836054, 55.9498204 -3.1834215, 55.9508055 -3.1777162, 55.9527611 -3.2030077, 55.9690445 -3.1682228, 55.9567027 -3.2027842, 55.9466421 -3.1371546, 55.9565342 -3.1985297, 55.9567499 -3.1986451, 55.9811460 -3.1776490, 55.9806886 -3.1784936, 55.9809733 -3.1781568, 55.9809041 -3.1782848, 55.9820170 -3.1763600, 55.9465573 -3.2166040, 55.9805956 -3.1934566, 55.9570779 -3.1884191, 55.9480209 -3.1999685, 55.9477134 -3.1957934, 55.9436378 -3.1937085, 55.9461006 -3.2053014, 55.9492755 -3.2122776, 55.9337528 -3.2109407, 55.9334827 -3.1781544, 55.9382383 -3.1924272, 55.9506835 -3.1901263, 55.9488068 -3.1956257, 55.9436353 -3.2027965, 55.9329934 -3.3152155, 55.9777657 -3.1686490, 55.9899019 -3.3868462, 55.9425676 -3.2218450, 55.9559071 -3.2028055, 55.9368453 -3.2080850, 55.9391854 -3.2049304, 55.9403048 -3.2042415, 55.9354188 -3.2098186, 55.9517680 -3.1097590, 55.9524705 -3.1146567, 55.9519693 -3.1107353, 55.9524356 -3.1964223, 55.9454688 -3.1847519, 55.9567479 -3.1931126, 55.9434972 -3.1847056, 55.9444992 -3.1839329, 55.9462089 -3.1892186, 55.9453153 -3.1845999, 55.9449737 -3.1886697, 55.9620904 -3.1793576, 55.9537919 -3.1943636, 55.9371166 -3.1786816, 55.9435115 -3.2193949, 55.9437549 -3.2193403, 55.9453892 -3.2171020, 55.9452977 -3.2171685, 55.9462869 -3.2159227, 55.9462644 -3.2147801, 55.9460218 -3.2124627, 55.9463199 -3.2060028, 55.9465542 -3.2158573, 55.9464746 -3.2019795, 55.9464280 -3.2034977, 55.9486448 -3.2062281, 55.9485519 -3.2140339, 55.9468350 -3.2051684, 55.9469209 -3.2045658, 55.9467269 -3.2047624, 55.9485678 -3.1946201, 55.9486421 -3.1944619, 55.9489611 -3.1926806, 55.9457412 -3.2099832, 55.9495552 -3.2091699, 55.9506581 -3.2090223, 55.9505668 -3.2093105, 55.9505740 -3.2087140, 55.9582298 -3.2268150, 55.9434367 -3.2195949, 55.9459910 -3.2187750, 55.9462622 -3.2145897, 55.9586309 -3.1903764, 55.9465828 -3.2144286, 55.9458930 -3.2127420, 55.9462614 -3.2149075, 55.9469392 -3.2157459, 55.9466500 -3.2155710, 55.9489596 -3.2105228, 55.9510015 -3.2097266, 55.9460126 -3.2207351, 55.9505780 -3.2098210, 55.9508641 -3.2099881, 55.9575799 -3.2074392, 55.9580520 -3.2065578, 55.9591363 -3.2144382, 55.9582616 -3.2096030, 55.9581637 -3.2094698, 55.9580113 -3.2092624, 55.9585716 -3.1897695, 55.9578403 -3.1887677, 55.9439438 -3.2188704, 55.9436529 -3.2196006, 55.9425916 -3.2009298, 55.9427456 -3.2017142, 55.9420344 -3.2038063, 55.9418227 -3.2036511, 55.9416648 -3.2030441, 55.9460150 -3.1908920, 55.9470537 -3.1917202, 55.9473009 -3.1911302, 55.9411221 -3.2032805, 55.9392380 -3.2127613, 55.9460599 -3.2291804, 55.9460417 -3.2226604, 55.9410190 -3.2179980, 55.9579150 -3.2068124, 55.9577295 -3.2066473, 55.9573896 -3.2066141, 55.9572260 -3.2056240, 55.9537733 -3.2038799, 55.9507047 -3.1827880, 55.9510404 -3.1846922, 55.9502539 -3.1878479, 55.9475890 -3.2135160, 55.9479040 -3.2136850, 55.9578281 -3.2064585, 55.9462100 -3.2053390, 55.9569075 -3.1939006, 55.9530794 -3.2035262, 55.9486670 -3.1956973, 55.9442170 -3.2180125, 55.9546639 -3.1975541, 55.9544395 -3.1974380, 55.9542190 -3.1973239, 55.9541769 -3.1973021, 55.9540060 -3.1972137, 55.9541028 -3.1972638, 55.9541197 -3.1979103, 55.9530164 -3.2013793, 55.9525837 -3.2041424, 55.9523991 -3.2052223, 55.9522681 -3.2060091, 55.9522441 -3.2061536, 55.9499431 -3.2078244, 55.9429955 -3.2045906, 55.9430360 -3.2042420, 55.9516199 -3.2027318, 55.9518670 -3.2035606, 55.9519125 -3.2029032, 55.9536150 -3.1883633, 55.9499018 -3.1935768, 55.9498329 -3.1910920, 55.9496897 -3.1897241, 55.9500792 -3.1891087, 55.9497794 -3.1891002, 55.9498804 -3.1883969, 55.9507029 -3.1895380, 55.9510625 -3.1882551, 55.9511343 -3.1876851, 55.9504690 -3.1879562, 55.9508281 -3.1833677, 55.9499013 -3.1834760, 55.9480205 -3.1941463, 55.9475711 -3.1964625, 55.9475446 -3.1965793, 55.9474740 -3.1968911, 55.9468749 -3.2055938, 55.9465925 -3.2054865, 55.9462020 -3.2059371, 55.9459497 -3.2061088, 55.9535003 -3.2044865, 55.9535044 -3.2004011, 55.9537081 -3.2003007, 55.9540962 -3.2002450, 55.9537909 -3.1998247, 55.9538415 -3.1995340, 55.9540148 -3.1994866, 55.9526921 -3.1998924, 55.9514403 -3.2044562, 55.9513975 -3.2047070, 55.9460248 -3.2126102, 55.9440530 -3.2064880, 55.9764471 -3.1711406, 55.9803418 -3.1792151, 55.9804368 -3.1789769, 55.9435020 -3.2024352, 55.9432539 -3.2025680, 55.9518969 -3.2025598, 55.9570492 -3.1932499, 55.9466960 -3.2046149, 55.9529509 -3.1973404, 55.9524196 -3.1984036, 55.9526199 -3.1984725, 55.9522016 -3.2030725, 55.9571910 -3.2077708, 55.9446418 -3.1854453, 55.9898690 -3.3921144, 55.9901625 -3.3961304, 55.9509598 -3.2058075, 55.9579896 -3.1895662, 55.9563319 -3.1887212, 55.9581296 -3.1899414, 55.9343180 -3.1037178, 55.9650007 -3.1762651, 55.9556173 -3.1925320, 55.9540378 -3.1993360, 55.9423736 -3.2037017, 55.9407524 -3.2038350, 55.9416779 -3.2026669, 55.9265283 -3.2084003, 55.9430311 -3.2839568, 55.9426584 -3.2803285, 55.9414320 -3.2180926, 55.9391841 -3.2128654, 55.9751211 -3.1634618, 55.9233856 -3.1748328, 55.9398684 -3.2196073, 55.9400581 -3.2188980, 55.9398220 -3.2197803, 55.9582132 -3.2095372, 55.9497095 -3.2073063, 55.9514958 -3.2041313, 55.9400291 -3.1697303, 55.9413456 -3.1835248, 55.9530272 -3.1892542, 55.9477347 -3.1956994, 55.9497047 -3.1880533, 55.9534027 -3.1920297, 55.9544769 -3.1974573, 55.9539860 -3.1972034, 55.9420361 -3.2670729, 55.9459525 -3.2060165, 55.9561918 -3.1852745, 55.9478903 -3.1915085, 55.9459447 -3.1909020, 55.9485947 -3.1945597, 55.9484900 -3.1938871, 55.9457476 -3.1909342, 55.9485587 -3.1943530, 55.9483248 -3.1864306, 55.9476976 -3.1919549, 55.9494442 -3.2078565, 55.9522731 -3.2016642, 55.9530413 -3.1976567, 55.9474107 -3.1857005, 55.9388452 -3.1790659, 55.9405357 -3.2246618, 55.9506503 -3.1887550, 55.9459152 -3.2048753, 55.9544956 -3.1996255, 55.9537668 -3.1902693, 55.9248346 -3.2543275, 55.9374976 -3.1806164, 55.9389691 -3.1803219, 55.9419979 -3.1791165, 55.9578375 -3.1855691, 55.9577188 -3.1854711, 55.9570718 -3.1867391, 55.9573525 -3.1857881, 55.9573946 -3.1857377, 55.9578561 -3.1853362, 55.9572831 -3.1858711, 55.9581118 -3.1850848, 55.9574938 -3.1856190, 55.9582219 -3.1849767, 55.9576798 -3.1858665, 55.9320058 -3.2097519, 55.9244481 -3.2103373, 55.9608511 -3.1806444, 55.9514989 -3.2098689, 55.9644870 -3.1767286, 55.9456613 -3.2057187, 55.9312746 -3.1719521, 55.9338124 -3.1784664, 55.9492753 -3.1855034, 55.9473523 -3.1859232, 55.9410964 -3.1808815, 55.9375777 -3.1779460, 55.9378124 -3.1781642, 55.9354709 -3.1798259, 55.9504193 -3.1866153, 55.9490741 -3.1893997, 55.9529899 -3.1973604, 55.9567716 -3.1807817, 55.9323952 -3.2102340, 55.9321089 -3.2101997, 55.9308794 -3.2100746, 55.9500237 -3.1859641, 55.9437654 -3.2187545, 55.9504916 -3.1861886, 55.9506853 -3.1853773, 55.9710599 -3.2100066, 55.9396263 -3.1829720, 55.9596608 -3.1714218, 55.9466096 -3.2157282, 55.9489839 -3.1929807, 55.9169756 -3.2120428, 55.9488427 -3.3624818, 55.9482570 -3.3655019, 55.9469467 -3.1868746, 55.9349914 -3.1790260, 55.9501695 -3.1909428, 55.9426782 -3.2016234, 55.9459543 -3.2110196, 55.9803312 -3.1788000, 55.9702196 -3.1702168, 55.9467924 -3.1855561, 55.9438281 -3.2186053, 55.9457016 -3.1899747, 55.9453485 -3.2171316, 55.9486496 -3.1940701, 55.9224536 -3.2108475, 55.9906648 -3.3973688, 55.9579863 -3.1811608, 55.9426269 -3.1823902, 55.9429144 -3.1826352, 55.9387155 -3.1789608, 55.9416801 -3.1819013, 55.9566001 -3.1617669, 55.9497766 -3.1880920, 55.9348643 -3.1686663, 55.9382910 -3.1812348, 55.9387708 -3.1815664, 55.9418959 -3.1837485, 55.9418211 -3.1837096, 55.9511825 -3.1075687, 55.9562823 -3.1983948, 55.9418000 -3.1789399, 55.9591452 -3.2145692, 55.9501282 -3.1886800, 55.9501474 -3.1919776, 55.9597144 -3.1824451, 55.9584764 -3.1835758, 55.9563144 -3.1853375, 55.9563910 -3.1855135, 55.9560587 -3.1853594, 55.9565748 -3.1857636, 55.9542906 -3.1861464, 55.9603660 -3.1816080, 55.9539327 -3.1863517, 55.9595195 -3.1827244, 55.9607917 -3.1806186, 55.9506624 -3.1904103, 55.9492455 -3.1893451, 55.9498216 -3.1888060, 55.9580202 -3.1851749, 55.9489961 -3.1873020, 55.9498654 -3.1872300, 55.9495368 -3.1870648, 55.9503997 -3.1842260, 55.9490417 -3.1857303, 55.9498761 -3.1930603, 55.9695051 -3.1724684, 55.9489892 -3.2104514, 55.9428546 -3.2034153, 55.9410667 -3.2032847, 55.9494976 -3.1832041, 55.9570561 -3.1868309, 55.9474907 -3.1912396, 55.9473547 -3.1907578, 55.9385351 -3.1788147, 55.9420479 -3.1791611, 55.9512610 -3.1800100, 55.9512749 -3.1799374, 55.9443287 -3.1812574, 55.9520043 -3.1768950, 55.9468472 -3.1856084, 55.9473137 -3.1851136, 55.9493042 -3.1940688, 55.9466056 -3.1912464, 55.9479666 -3.1920487, 55.9522129 -3.2063407, 55.9382413 -3.1927552, 55.9514215 -3.2038997, 55.9895667 -3.3989278, 55.9645858 -3.1766158, 55.9648350 -3.1763998, 55.9545797 -3.1975105, 55.9595680 -3.1714413, 55.9733312 -3.1670719, 55.9524366 -3.1994110, 55.9720484 -3.1727281, 55.9541108 -3.2007911, 55.9462949 -3.2053703, 55.9469863 -3.2072082, 55.9727826 -3.3512226, 55.9346438 -3.2211526, 55.9487803 -3.1950974, 55.9230657 -3.2475227, 55.9439545 -3.2066510, 55.9436637 -3.2079998, 55.9534112 -3.1955067, 55.9783017 -3.1800235, 55.9508007 -3.2089750, 55.9420681 -3.2954846, 55.9428183 -3.2938163, 55.9205723 -3.1672281, 55.9379137 -3.3141798, 55.9424726 -3.2928349, 55.9475057 -3.2948807 +48.8829303 2.3343538 +Église nouvelle Saint-Honoré d'Eylau and 48.8684100 2.2864027 +52 +49.3909631 8.7016171, 49.4064728 8.6918564, 49.4089660 8.6724358, 49.4093704 8.6694528, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4037954 8.6793653, 49.3967059 8.6771597, 49.4214832 8.6754845, 49.4222429 8.6632708, 49.4140422 8.6704577, 49.4135858 8.6925458, 49.4228639 8.6764796, 49.4080031 8.6948451, 49.4068874 8.6695133, 49.4187759 8.6518124, 49.4213087 8.7559845, 49.4274296 8.7499398, 49.4064148 8.6829502, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4096879 8.6920076, 49.4092764 8.6965977, 49.3981873 8.7240534, 49.3852907 8.7099594, 49.3851124 8.7094749, 49.3850107 8.7103387, 49.3658615 8.7016650, 49.3873038 8.7530780, 49.4393137 8.6872204, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.3961482 8.6893926, 49.3812515 8.6806176, 49.3824770 8.6806146, 49.4132914 8.7081342, 49.4088903 8.6938003, 49.4126779 8.7118926, 49.4079250 8.6968388, 49.4124163 8.7017576, 49.4102465 8.6977902, 49.4186616 8.6453088, 49.4191927 8.6451544, 49.4186552 8.6479768, 49.4145019 8.7188097, 49.4160079 8.6527300, 49.3891220 8.7350663, 49.3900339 8.7371557, 49.4108612 8.6928690, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4101694 8.6916552, 49.4588121 8.7508905, 49.4062230 8.6893127, 49.4080954 8.6910116, 49.4070199 8.6810452, 49.4078155 8.6801715, 49.4081699 8.6801714, 49.4086991 8.6905430, 49.4072067 8.6789696, 49.4083342 8.6789231, 49.4088561 8.6818330, 49.4145805 8.6901438, 49.4184970 8.6911640, 49.4186633 8.6871792, 49.4035002 8.6810379, 49.4049652 8.6871845, 49.4156885 8.7217025, 49.4132004 8.6500383, 49.4122130 8.6411554, 49.4119501 8.7000203, 49.3783145 8.6641959, 49.3784881 8.6642847, 49.4132187 8.7653935, 49.4096598 8.6875604, 49.4056131 8.6868331, 49.4110119 8.7122254, 49.3834712 8.6608409, 49.3834712 8.6608409, 49.4108200 8.6949938, 49.4199403 8.6581676, 49.4263561 8.6613690, 49.4114202 8.6969720, 49.3708802 8.6232738, 49.4204769 8.7052380, 49.4221172 8.7055780, 49.4360737 8.6793655, 49.4329720 8.6805360, 49.4063251 8.6755799, 49.4372140 8.6797393, 49.4378001 8.6797566, 49.4405259 8.6652199, 49.4376306 8.6777982, 49.4376906 8.6382495, 49.4390127 8.6342324, 49.4259196 8.6392005, 49.4228908 8.6416101, 49.4287977 8.6836286, 49.4282796 8.6827973, 49.4047972 8.6739218, 49.4278804 8.6861552, 49.4082062 8.6763355, 49.4043797 8.6463186, 49.3798890 8.6777329, 49.4271018 8.6801686, 49.4098483 8.6605879, 49.4214767 8.6751246, 49.4157016 8.6528859, 49.4146237 8.6497864, 49.4188268 8.6440266, 49.4189470 8.6438987, 49.4189844 8.6459909, 49.4194808 8.6452628, 49.4204267 8.6756874, 49.4201425 8.6719237, 49.4203138 8.6703791, 49.4210841 8.6683206, 49.4200492 8.6683293, 49.4315265 8.6397474, 49.4149913 8.6535552, 49.4039134 8.6767400, 49.4058862 8.6897740, 49.4060206 8.6905342, 49.4061503 8.6912857, 49.4088332 8.6757532, 49.4034240 8.6790856, 49.4282288 8.6836632, 49.3965511 8.6771437, 49.4252379 8.6441041, 49.3935396 8.6817411, 49.3952870 8.6836845, 49.3958629 8.6832887, 49.4227238 8.6738472, 49.4162298 8.6755281, 49.4154291 8.6756221, 49.4145364 8.6757808, 49.4212459 8.6738490, 49.4210596 8.6732314, 49.4094114 8.6739566, 49.4089529 8.6602625, 49.4115623 8.6538584, 49.4132855 8.6517669, 49.4143102 8.6502249, 49.4316541 8.6450403, 49.4313242 8.6461047, 49.4234435 8.6409833, 49.4233100 8.6410792, 49.4239493 8.6417679, 49.4236187 8.6419798, 49.4167321 8.6742199, 49.4139089 8.6729704, 49.4135711 8.6685440, 49.4133710 8.6685603, 49.4229672 8.6628733, 49.4253832 8.6563505, 49.4244918 8.6574290, 49.4183168 8.6570383, 49.4129687 8.6642981, 49.4143409 8.6651836, 49.4194911 8.6655520, 49.4308516 8.6533759, 49.4306864 8.6534803, 49.4215359 8.6818834, 49.4188910 8.6769323, 49.4211075 8.6775566, 49.4211894 8.6670319, 49.4130810 8.6699968, 49.4134398 8.6714192, 49.4137439 8.6769747, 49.4155869 8.6784841, 49.4139913 8.6704329, 49.4136024 8.6776951, 49.3962000 8.7085445, 49.4234080 8.6595192, 49.4226921 8.6586119, 49.4229974 8.6608946, 49.4236303 8.6561909, 49.4240515 8.6571965, 49.4260202 8.6577463, 49.4200690 8.6616681, 49.4204248 8.6636381, 49.4194488 8.6605899, 49.4192298 8.6640734, 49.4175057 8.6611975, 49.4177856 8.6598202, 49.4162074 8.6584117, 49.4166299 8.6607801, 49.4140546 8.6667870, 49.4145234 8.6662068, 49.4337847 8.6803905, 49.4337620 8.6799996, 49.4135576 8.6745116, 49.4126377 8.6749116, 49.4063838 8.6765104, 49.4085613 8.6631372, 49.4061810 8.6696987, 49.3910080 8.6741013, 49.3913345 8.6763079, 49.3900958 8.6760409, 49.3966746 8.6792043, 49.3850197 8.6741885, 49.4188931 8.6520438, 49.4176786 8.7568038, 49.4174427 8.7569407, 49.4180751 8.7587556, 49.4192662 8.7566097, 49.4226110 8.7421281, 49.3956471 8.6433881, 49.4373949 8.6243093, 49.4122797 8.6422114, 49.4171569 8.6846986, 49.4162022 8.6847312, 49.4092092 8.6812299, 49.4081243 8.6917754, 49.4077406 8.6904605, 49.4072247 8.6518134, 49.4179566 8.6425794, 49.4208702 8.6400167, 49.4255068 8.6365369, 49.4255235 8.6391482, 49.4250577 8.6394699, 49.4247037 8.6403906, 49.4289421 8.6416397, 49.4279117 8.6424382, 49.4266397 8.6436737, 49.3978801 8.6820904, 49.3985527 8.6521355, 49.4028377 8.6472474, 49.3658723 8.6857452, 49.3768283 8.6892364, 49.3803262 8.7254433, 49.3848261 8.7330761, 49.4591437 8.7517850, 49.4242592 8.7437691, 49.3639984 8.7041768, 49.4173756 8.7606525, 49.4132295 8.7757064, 49.4137538 8.6648471, 49.4090739 8.7026883, 49.4379341 8.6355167, 49.4368769 8.6375428, 49.4378331 8.6340499, 49.4380724 8.6364145, 49.4367065 8.6380751, 49.4336146 8.6429127, 49.4337427 8.6416185, 49.4310651 8.6431859, 49.4223148 8.6746219, 49.3855445 8.7101353, 49.4254888 8.6894928, 49.4344969 8.6847782, 49.4335894 8.6853414, 49.4316276 8.7053393, 49.3762717 8.6811562, 49.3840303 8.7319662, 49.3674584 8.6818087, 49.3667510 8.6822513, 49.3912799 8.7348521, 49.3844874 8.7079169, 49.4348723 8.6798701, 49.4106260 8.7736249, 49.4084999 8.7750004, 49.4096965 8.7746403, 49.4095896 8.7745596, 49.4097963 8.7747701, 49.4081034 8.7753178, 49.4083756 8.7757148, 49.4080135 8.7726709, 49.4085119 8.7719410, 49.4096359 8.7716832, 49.4093142 8.7711512, 49.4095779 8.7715834, 49.4100279 8.7717770, 49.4075464 8.7732045, 49.4103552 8.7719708, 49.3608824 8.6865231, 49.3774963 8.6644366, 49.3783068 8.6644302, 49.3893649 8.6662793, 49.3911203 8.6725794, 49.3608549 8.6878385, 49.3779232 8.6642931, 49.3872918 8.7341917, 49.3872364 8.7346514, 49.3871999 8.7349917, 49.4121422 8.7045081, 49.4088000 8.6984868, 49.3814817 8.6779564, 49.3814977 8.6777918, 49.3783015 8.6783409, 49.3989016 8.6746355, 49.4069958 8.6573300, 49.4395485 8.6274097, 49.4038660 8.6717206, 49.4102258 8.6449740, 49.4326600 8.6805997, 49.4277051 8.6823985, 49.4070420 8.6761280, 49.4262545 8.6874841, 49.4111631 8.7120067, 49.3742388 8.6142440, 49.4186852 8.6638016, 49.4063560 8.6836519, 49.3768893 8.6944349, 49.3789415 8.6315668, 49.3795291 8.6296406, 49.3809627 8.6291268, 49.3817071 8.6338065, 49.3824332 8.6324942, 49.3803611 8.6327557, 49.3709046 8.6267823, 49.3808692 8.6779525, 49.4287155 8.6446215, 49.4135814 8.6490096, 49.4147938 8.6365486, 49.3966514 8.6718493, 49.3876649 8.6616646, 49.3890461 8.6840215, 49.4017367 8.6821163, 49.3968926 8.6802735, 49.4021904 8.6790167, 49.4237056 8.6475076, 49.4041968 8.6479391, 49.4154951 8.7332007, 49.4026134 8.6757101, 49.3764178 8.6298710, 49.3552099 8.6265645, 49.4150598 8.7727094, 49.4045783 8.6829102, 49.4096951 8.6835813, 49.3980621 8.7294523, 49.3725258 8.6835334, 49.4083878 8.6512209, 49.3920857 8.6526205, 49.3917052 8.6539344, 49.3918943 8.6540133, 49.3921200 8.6532604, 49.3917059 8.6542576, 49.4092038 8.7122223, 49.3960044 8.6709715, 49.3949788 8.6699146, 49.3960436 8.6718019, 49.3962304 8.6722292, 49.3957517 8.6718870, 49.3953878 8.6756074, 49.4097892 8.7063939, 49.4084468 8.7003941, 49.4152843 8.7204818, 49.3732176 8.7472812, 49.3813905 8.7643802, 49.3839185 8.7575944, 49.3923472 8.7466824, 49.3875208 8.7503390, 49.3894532 8.7370456, 49.3895678 8.7370642, 49.3892768 8.7345923, 49.3763693 8.6786037, 49.3743158 8.6653093, 49.4033414 8.7287167, 49.3660992 8.6836946, 49.3667671 8.6829203, 49.3967792 8.7245614, 49.3751983 8.6822853, 49.3748496 8.6823310, 49.3748601 8.6802550, 49.3740330 8.6823974, 49.4009150 8.7298557, 49.4007196 8.7297407, 49.4035389 8.7279297, 49.4026240 8.7278681, 49.4010872 8.7131843, 49.4094204 8.7462519, 49.3869006 8.6646067, 49.4026441 8.7802131, 49.3724384 8.6788819, 49.3733706 8.6798275, 49.3734520 8.6794397, 49.3734573 8.6772872, 49.3750322 8.6781318, 49.3761353 8.6779495, 49.3742557 8.6782780, 49.3748097 8.6779817, 49.3750429 8.6784800, 49.3743359 8.6792464, 49.4047494 8.6753390, 49.4010237 8.6542634, 49.4185616 8.6687042, 49.3961629 8.6968177, 49.3949506 8.7165457, 49.4056935 8.6753617, 49.3748682 8.6806324, 49.3757650 8.6783828, 49.3745216 8.6786266, 49.3804111 8.6763117, 49.3802672 8.6770459, 49.3938241 8.6885892, 49.3770953 8.6659476, 49.4218342 8.7455830, 49.3763084 8.6806674, 49.3925736 8.6762381, 49.3866268 8.6977267, 49.3870220 8.6985183, 49.4044781 8.6462736, 49.3924188 8.7407366, 49.3967229 8.7250259, 49.4247929 8.6422301, 49.4098190 8.7063061, 49.4085373 8.7758381, 49.3958169 8.6851383, 49.4132893 8.6956239, 49.4085000 8.6939571, 49.4078262 8.6941716, 49.4096788 8.7079007, 49.4096785 8.7074005, 49.4101311 8.6910837, 49.4101822 8.6884713, 49.4099175 8.6890057, 49.4169024 8.6774545, 49.4170457 8.6775259, 49.4134444 8.6918647, 49.4082046 8.6830699, 49.4088779 8.6792701, 49.4080211 8.6834601, 49.4090548 8.6852623, 49.4092900 8.6865331, 49.4086943 8.6845447, 49.4017089 8.6846814, 49.4079604 8.6841153, 49.4083191 8.6856688, 49.4080645 8.6851672, 49.4073436 8.6889011, 49.4063263 8.6908480, 49.4114775 8.7195875, 49.4090814 8.7182703, 49.4086229 8.7202663, 49.4033869 8.7279290, 49.4142260 8.7704357, 49.3894370 8.6884317, 49.3895530 8.6884195, 49.4183417 8.6445113, 49.4151056 8.6533976, 49.4000215 8.6915677, 49.4070728 8.7039593, 49.4057605 8.7102504, 49.4069654 8.7032895, 49.4051156 8.7101114, 49.3967708 8.6950821, 49.4100264 8.7102106, 49.4133774 8.7093673, 49.4104648 8.7110643, 49.4090884 8.7121174, 49.4145963 8.7424363, 49.4146285 8.7415734, 49.4158248 8.7336485, 49.4159290 8.7336568, 49.4208144 8.7400015, 49.4202707 8.7392359, 49.4195583 8.7389992, 49.3966895 8.6864231, 49.3675101 8.6831306, 49.3862241 8.7044324, 49.4089685 8.7125699, 49.3907835 8.7032534, 49.3914706 8.7026871, 49.3806555 8.7065541, 49.4157208 8.7418677, 49.4156600 8.7430138, 49.4152079 8.7442967, 49.4071432 8.7078562, 49.4088934 8.7133144, 49.4115392 8.7128522, 49.4105472 8.7780302, 49.4208463 8.6738282, 49.4171772 8.7603354, 49.4178582 8.7604307, 49.4131989 8.7239585, 49.4058690 8.6604558, 49.4048929 8.6675943, 49.4148153 8.6642766, 49.4079515 8.6376494, 49.3774547 8.7085656, 49.3762592 8.7055890, 49.4119166 8.6961489, 49.4317346 8.7061263, 49.3951217 8.6436838, 49.4322270 8.6909619, 49.4124413 8.7456969, 49.4150047 8.7453868, 49.4147956 8.7444452, 49.4143823 8.7483441, 49.4232907 8.7529822, 49.3756772 8.6859026, 49.3743793 8.6854003, 49.4181519 8.7605105, 49.4165526 8.6912073, 49.3625227 8.7053511, 49.4277972 8.6793663, 49.4186343 8.6608593, 49.3745870 8.6933185, 49.3745512 8.6931398, 49.4141951 8.6773802, 49.4256553 8.7393946, 49.4076774 8.6896431, 49.4075308 8.6897346, 49.4190729 8.6890667, 49.4187521 8.6903307, 49.4187110 8.6904478, 49.4159739 8.6732323, 49.4067994 8.6931128, 49.4067928 8.6935104, 49.4070263 8.6953186, 49.4088402 8.7022464, 49.4086281 8.7004350, 49.4083266 8.6988134, 49.4084032 8.6992511, 49.4086930 8.7008503, 49.4082856 8.6993919, 49.4400488 8.6895399, 49.4126031 8.7205963, 49.4123897 8.7201796, 49.4108875 8.7198273, 49.4121174 8.7199537, 49.3603818 8.6878989, 49.3600563 8.6882539, 49.3628080 8.6883118, 49.3631708 8.6882854, 49.3933484 8.7760935, 49.4211179 8.6800477, 49.4210927 8.6788357, 49.3822054 8.6779650, 49.4154994 8.6745757, 49.4170433 8.6458718, 49.3846497 8.6817785, 49.3846976 8.6847175, 49.3844191 8.6849082, 49.3847543 8.6816927, 49.3845422 8.6811475, 49.3844361 8.6812945, 49.3844812 8.6833063, 49.3843655 8.6831352, 49.3844693 8.6838984, 49.3847140 8.6828075, 49.3846153 8.6826858, 49.3916379 8.6832393, 49.4030467 8.6777744, 49.4081347 8.6490831, 49.4246394 8.6387347, 49.4092190 8.6404481, 49.4055522 8.6437619, 49.4094106 8.6390237, 49.4030705 8.6445930, 49.4048859 8.6407136, 49.4028534 8.6414838, 49.4054385 8.6407094, 49.4039477 8.6409153, 49.4053038 8.6446041, 49.3564840 8.7059999, 49.4104659 8.6372089, 49.4129533 8.6375987, 49.4022627 8.6383494, 49.4023560 8.6416227, 49.4279195 8.6840395, 49.4266417 8.6834045, 49.4149614 8.7627536, 49.4147153 8.7636838, 49.4148588 8.7631440, 49.4151372 8.7619776, 49.3819023 8.6610923, 49.4067406 8.6760466, 49.4209716 8.7395001, 49.4148681 8.7627574, 49.4177775 8.7408198, 49.4179019 8.7409040, 49.4210951 8.7398188, 49.4178687 8.7405082, 49.4150957 8.7621532, 49.4151231 8.7620372, 49.4150216 8.7723676, 49.4051851 8.7806376, 49.4094999 8.7187995, 49.4111767 8.7708030, 49.4112682 8.7706277, 49.4105747 8.7718871, 49.3741369 8.6601792, 49.3761611 8.6587169, 49.3759115 8.6576280, 49.3758411 8.6582433, 49.3813055 8.6605630, 49.3970019 8.6746884, 49.3670694 8.7066732, 49.3730737 8.6870049, 49.3744052 8.6641024, 49.3812274 8.6633431, 49.3835356 8.6668475, 49.3837115 8.6668223, 49.3839082 8.6668065, 49.3832557 8.6668961, 49.3834049 8.6789517, 49.3844996 8.6647503, 49.3815326 8.6607340, 49.4132859 8.6908940, 49.4155322 8.6699617, 49.4068263 8.6680762, 49.4072646 8.6691321, 49.4072916 8.6693315, 49.4049477 8.7776001, 49.4064182 8.7775809, 49.4132935 8.6911529, 49.4161156 8.6703451, 49.4159611 8.6705524, 49.4161026 8.6692956, 49.4113226 8.6592808, 49.3646411 8.7060911, 49.4132052 8.7122933, 49.4117341 8.6467543, 49.4161732 8.7555546, 49.4160191 8.6700610, 49.4161314 8.6706351, 49.4187135 8.7240892, 49.4182654 8.7234671, 49.4063399 8.6900996, 49.4063668 8.6902286, 49.4065511 8.6906922, 49.4055849 8.6876896, 49.4052408 8.6862751, 49.4056965 8.6856838, 49.3914904 8.6905020, 49.4446785 8.7641829, 49.4000181 8.6782987, 49.3931737 8.6788679, 49.4197733 8.6455869, 49.3816319 8.6588060, 49.3818822 8.6587490, 49.4198205 8.7343539, 49.4101553 8.6911774, 49.4066779 8.7141416, 49.4113423 8.7195551, 49.4110748 8.7197211, 49.3945690 8.6743519, 49.3943175 8.6754654, 49.3973820 8.6940966, 49.3935162 8.7079473, 49.3987446 8.6923402, 49.3986523 8.6924283, 49.3972671 8.6941625, 49.3799065 8.7239334, 49.4275954 8.6823123, 49.3963113 8.6748861, 49.4264733 8.7602041, 49.3916824 8.6702885, 49.4237291 8.6461040, 49.4383671 8.7404676, 49.4373853 8.7411725, 49.4014026 8.6800343, 49.4166596 8.6925736, 49.4124338 8.7117609, 49.4274540 8.6971831, 49.4278787 8.6910220, 49.4030621 8.7276422, 49.4023727 8.7276687, 49.4130005 8.6887393 +1668 +49.3967496 8.6929283, 49.3758602 8.6941971, 49.4014041 8.6551906, 49.3924724 8.6994716, 49.3743420 8.6581351 +53.3319610 10.4398412, 53.3260626 10.4620972, 53.3271011 10.4588956, 53.3273695 10.4580341, 53.3289883 10.4535116, 53.3293350 10.4543020, 53.3299844 10.4512449, 53.3304004 10.4526194, 53.3307089 10.4501576, 53.3309031 10.4515217, 53.3312507 10.4504413, 53.3315607 10.4523776, 53.3322887 10.4472060 +55.9536238 -3.2048494, 55.9555985 -3.1886730, 55.9274131 -3.2091104, 55.9538258 -3.1996835, 55.9522492 -3.2005426, 55.9519451 -3.2014048 +0 +yes +1 +yes +no +Theater im Kulturzentrum Karlstorbahnhof, Theater und Philharmonisches Orchester, Zwinger1 und Zwinger3 +55.9370725 -3.1787027, 55.9433939 -3.2029381, 55.9818728 -3.3731190, 55.8966045 -3.3087404, 55.9385614 -3.1040020, 55.9468901 -3.1364489, 55.9268506 -3.2089249, 55.9781491 -3.1930844, 55.9373031 -3.2494985, 55.9650659 -3.2695228, 55.9313511 -3.2524977, 55.9094685 -3.2331911, 55.9497063 -3.1833447, 55.9435848 -3.2191643, 55.9374270 -3.2345667, 55.9345081 -3.1227754, 55.9429898 -3.2899406, 55.9426238 -3.2800495, 55.9654174 -3.1551373, 55.9560338 -3.4034937, 55.9397279 -3.2201814, 55.9721574 -3.2632148, 55.9713670 -3.2529113, 55.9135865 -3.1358664, 55.9535517 -3.1141391, 55.9534451 -3.2962393, 55.9085287 -3.2095473, 55.9327621 -3.1376599, 55.9119230 -3.1635497, 55.9391525 -3.4055165, 55.9217741 -3.3820169, 55.8835896 -3.3387395, 55.9532918 -3.2008836, 55.9763771 -3.1661542, 55.9264851 -3.2464048, 55.9672451 -3.2455099, 55.9592253 -3.2129434, 55.9073269 -3.2574527, 55.9669733 -3.1745264, 55.9725324 -3.1754041, 55.9246368 -3.2764158, 55.9573540 -3.2494949, 55.9623670 -3.1996983, 55.9436550 -3.1175420, 55.9342032 -3.2767154, 55.9196988 -3.2952545, 55.9467290 -3.2153860, 55.9220580 -3.1538560, 55.9615113 -3.3057885, 55.9283784 -3.2791498, 55.9237183 -3.2367632, 55.9761453 -3.2491420, 55.9368144 -3.2072231, 55.9012634 -3.1566868, 55.9744305 -3.1846747, 55.9458687 -3.1913239, 55.9513520 -3.2049738, 55.9527120 -3.1911888, 55.9599216 -3.2887651, 55.9751151 -3.2193081, 55.9747107 -3.2382500, 55.9763561 -3.2451182, 55.9573948 -3.1710345, 55.9058615 -3.2220141, 55.9046398 -3.1329007, 55.9516637 -3.1122989, 55.9274691 -3.1872211 +48.9007525 2.3748724, 48.8519985 2.2908966, 48.8936152 2.3152934, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.9000199 2.3292825, 48.8997229 2.3300618 +49.3819891 8.7064791, 49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.3696607 8.7091979, 49.4157261 8.7004521, 49.4532301 8.7620686, 49.3877298 8.7446960, 49.4209333 8.7223854, 49.3946455 8.7166681, 49.4221949 8.7060036, 49.4157681 8.7006398, 49.4052183 8.7807063, 49.4390162 8.7105044, 49.4210179 8.7198036, 49.4272716 8.7035465, 49.4305777 8.6928339, 49.4497204 8.7157564, 49.4428768 8.7011414, 49.4040784 8.7535968, 49.4300341 8.7265054, 49.4040547 8.7550178, 49.3925114 8.7464235, 49.3936499 8.7467333, 49.4005231 8.7520710, 49.4095083 8.7002566, 49.4109969 8.7018271, 49.4103323 8.7353954 +10 +no +55.9783017 -3.1800235 +55.9509120 -3.1684417, 55.9505684 -3.1636997, 55.9409571 -3.1518694, 55.9414904 -3.1501988, 55.9414101 -3.1510969, 55.9304112 -3.2001421 +48.8484038 2.3977491, 48.8512856 2.2781094, 48.8467839 2.2854077, 48.8332389 2.3329284, 48.8526288 2.3385336, 48.8925057 2.3450965, 48.8536039 2.3444118, 48.8515050 2.3430786, 48.8473294 2.3412516, 48.8312038 2.3565530, 48.8806072 2.3538936, 48.8347711 2.3321841, 48.8278860 2.3709325, 48.8695890 2.2848365, 48.8581077 2.3801470, 48.8317286 2.3137879, 48.8668650 2.2788566, 48.8697674 2.2857979, 48.8424148 2.4052197, 48.8448799 2.3727316, 48.8815590 2.3150046, 48.8903495 2.3201315, 48.8941941 2.3135794, 48.8704998 2.3049572, 48.8854539 2.2915179, 48.8898626 2.3035373, 48.8774012 2.4069914, 48.8980267 2.3289128, 48.8844761 2.2976487, 48.8584436 2.3037809, 48.8795960 2.3896580, 48.8827367 2.3814655, 48.8420110 2.3206428, 48.8615010 2.3537550, 48.8645112 2.3981788, 48.8798173 2.3215782, 48.8747412 2.3049062, 48.8700986 2.3070512, 48.8687272 2.2986811, 48.8764317 2.3015489, 48.8748073 2.2956078, 48.8679763 2.2954876, 48.8666447 2.2899845, 48.8714962 2.2934996, 48.8659060 2.2863973, 48.8634029 2.2863046, 48.8617450 2.2859062, 48.8586868 2.2849457, 48.8482990 2.2647021, 48.8776228 2.3708847, 48.8780030 2.3781296, 48.8873966 2.3492159, 48.8831639 2.3275572, 48.8374622 2.2575596, 48.8527859 2.4060423, 48.8764243 2.3592623, 48.8663059 2.3244457, 48.8579055 2.3100803, 48.8655795 2.3559318, 48.8473587 2.3122933, 48.8766198 2.3392717, 48.8832546 2.3471915, 48.8460393 2.3780826, 48.8383701 2.3607602, 48.8320548 2.3861467, 48.8432250 2.4013484, 48.8226361 2.3257162, 48.8429514 2.3751858, 48.8597360 2.3466694, 48.8606298 2.3466023, 48.8445008 2.4411062, 48.8502906 2.3928948, 48.8713571 2.3432580, 48.8721397 2.3393564, 48.8538475 2.3325263, 48.8975838 2.3287233, 48.8937759 2.3363457, 48.8391806 2.3825585, 48.8672161 2.3065357, 48.8652369 2.3013632, 48.8616106 2.3019528, 48.8622551 2.3149819, 48.8538751 2.3124512, 48.8650500 2.3013405, 48.8696527 2.3111802, 48.8541706 2.3068705, 48.8699915 2.3014172, 48.8713160 2.3009696, 48.8756033 2.3260400, 48.8630530 2.3526294, 48.8462434 2.3767506, 48.8793033 2.3034301, 48.8682598 2.4015540, 48.8567698 2.3537979, 48.8257810 2.3469176, 48.8600781 2.3465254, 48.8325620 2.3618635, 48.8284670 2.3264398, 48.8666879 2.3641696, 48.8679052 2.3646802, 48.8679443 2.3620076, 48.8606611 2.3260607, 48.8307809 2.3768658, 48.8494789 2.3371871, 48.8521348 2.3393496, 48.8772711 2.3269492, 48.8764858 2.3319975, 48.8846924 2.3795882, 48.8306144 2.2924114, 48.8767391 2.3608267, 48.8643491 2.2725788, 48.8982278 2.3591507, 48.8607328 2.3456697, 48.8236433 2.3530302, 48.8643981 2.3303564, 48.8891585 2.3938039, 48.8577770 2.3473733, 48.8634279 2.3351782, 48.8680916 2.3299623, 48.8691985 2.3546294, 48.8705443 2.3327006, 48.8659300 2.3408572, 48.8662586 2.3612125, 48.8553209 2.3603751, 48.8369707 2.3521360, 48.8500790 2.3487204, 48.8432193 2.3520318, 48.8498446 2.3551829, 48.8434713 2.3236014, 48.8530282 2.3354092, 48.8402189 2.3365313, 48.8505206 2.3272579, 48.8512092 2.3331634, 48.8390765 2.3825241 +Säulenweg, Speyerer Straße, Speyerer Straße, Eppelheimer Straße, Eppelheimer Straße, Eppelheimer Straße, Traumannswald, Franz-Knauff-Straße, Blumenstraße, Langlachweg, Langlachweg, Mannheimer Straße, Carl-Benz-Straße, Carl-Benz-Straße, Am Ochsenhorn, Markircher Straße, Langlachweg, Alte Mannheimer Landstraße, In der Gabel, In der Gabel, Neckarhauser Straße, Ruhrorter Straße, Wichernstraße, Traumannswald, Mannheimer Straße, Bürgermeister-Helmling-Straße, Friedrichstraße, Bruchhäuser Straße, Rudolf-Diesel-Straße, Wieblinger Weg, Elsa-Brändström-Straße +49.4083031 8.6962179 +Le B.H.V. and Mo-Fr 08:00-20:00, Sa 10:00-20:00, Les Brassins de Saint-Malo, Brasserie Artisanale "D'istribilh" +Burger King +48.8794220 2.3546823 +55.9232575 -3.2877434, 55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9579565 -3.2439627, 55.9297115 -3.2566004, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9372727 -3.3656602, 55.9344345 -3.1791228, 55.9377502 -3.4029754, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9365550 -3.3142140, 55.9836311 -3.3989193, 55.9826346 -3.1875882, 55.9248058 -3.2496194, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9695021 -3.2293678, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9781314 -3.1744029, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9242943 -3.2525824, 55.9398424 -3.2041012, 55.9397193 -3.2934475 +53 +48.8375550 2.3183632, 48.8275755 2.3065523, 48.8358842 2.3867689, 48.8506951 2.3463689 +49.4064728 8.6918564, 49.4089660 8.6724358, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4037954 8.6793653, 49.4214832 8.6754845, 49.4140422 8.6704577, 49.4228639 8.6764796, 49.4080031 8.6948451, 49.4187759 8.6518124, 49.4064148 8.6829502, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.4124163 8.7017576, 49.4186616 8.6453088, 49.4191927 8.6451544, 49.4186552 8.6479768, 49.4108612 8.6928690, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4101694 8.6916552, 49.4119501 8.7000203, 49.4096598 8.6875604, 49.4056131 8.6868331, 49.4108200 8.6949938, 49.3962000 8.7085445, 49.4174427 8.7569407, 49.4088000 8.6984868, 49.4154951 8.7332007, 49.3748097 8.6779817, 49.4056935 8.6753617, 49.4073436 8.6889011 +49.3909631 8.7016171, 49.4064728 8.6918564, 49.4089660 8.6724358, 49.4093704 8.6694528, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4037954 8.6793653, 49.3967059 8.6771597, 49.4214832 8.6754845, 49.4222429 8.6632708, 49.4140422 8.6704577, 49.4135858 8.6925458, 49.4228639 8.6764796, 49.4080031 8.6948451, 49.4068874 8.6695133, 49.4187759 8.6518124, 49.4213087 8.7559845, 49.4274296 8.7499398, 49.4064148 8.6829502, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4096879 8.6920076, 49.4092764 8.6965977, 49.3981873 8.7240534, 49.3852907 8.7099594, 49.3851124 8.7094749, 49.3850107 8.7103387, 49.3658615 8.7016650, 49.3873038 8.7530780, 49.4393137 8.6872204, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.3961482 8.6893926, 49.3812515 8.6806176, 49.3824770 8.6806146, 49.4132914 8.7081342, 49.4088903 8.6938003, 49.4126779 8.7118926, 49.4079250 8.6968388, 49.4124163 8.7017576, 49.4102465 8.6977902, 49.4186616 8.6453088, 49.4191927 8.6451544, 49.4186552 8.6479768, 49.4145019 8.7188097, 49.4160079 8.6527300, 49.3891220 8.7350663, 49.3900339 8.7371557, 49.4108612 8.6928690, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4101694 8.6916552, 49.4588121 8.7508905, 49.4062230 8.6893127, 49.4080954 8.6910116, 49.4070199 8.6810452, 49.4078155 8.6801715, 49.4081699 8.6801714, 49.4086991 8.6905430, 49.4072067 8.6789696, 49.4083342 8.6789231, 49.4088561 8.6818330, 49.4145805 8.6901438, 49.4184970 8.6911640, 49.4186633 8.6871792, 49.4035002 8.6810379, 49.4049652 8.6871845, 49.4156885 8.7217025, 49.4132004 8.6500383, 49.4122130 8.6411554, 49.4119501 8.7000203, 49.3783145 8.6641959, 49.3784881 8.6642847, 49.4132187 8.7653935, 49.4096598 8.6875604, 49.4056131 8.6868331, 49.4110119 8.7122254, 49.3834712 8.6608409, 49.3834712 8.6608409, 49.4108200 8.6949938, 49.4199403 8.6581676, 49.4263561 8.6613690, 49.4114202 8.6969720, 49.3708802 8.6232738, 49.4204769 8.7052380, 49.4221172 8.7055780, 49.4360737 8.6793655, 49.4329720 8.6805360, 49.4063251 8.6755799, 49.4372140 8.6797393, 49.4378001 8.6797566, 49.4405259 8.6652199, 49.4376306 8.6777982, 49.4376906 8.6382495, 49.4390127 8.6342324, 49.4259196 8.6392005, 49.4228908 8.6416101, 49.4287977 8.6836286, 49.4282796 8.6827973, 49.4047972 8.6739218, 49.4278804 8.6861552, 49.4082062 8.6763355, 49.4043797 8.6463186, 49.3798890 8.6777329, 49.4271018 8.6801686, 49.4098483 8.6605879, 49.4214767 8.6751246, 49.4157016 8.6528859, 49.4146237 8.6497864, 49.4188268 8.6440266, 49.4189470 8.6438987, 49.4189844 8.6459909, 49.4194808 8.6452628, 49.4204267 8.6756874, 49.4201425 8.6719237, 49.4203138 8.6703791, 49.4210841 8.6683206, 49.4200492 8.6683293, 49.4315265 8.6397474, 49.4149913 8.6535552, 49.4039134 8.6767400, 49.4058862 8.6897740, 49.4060206 8.6905342, 49.4061503 8.6912857, 49.4088332 8.6757532, 49.4034240 8.6790856, 49.4282288 8.6836632, 49.3965511 8.6771437, 49.4252379 8.6441041, 49.3935396 8.6817411, 49.3952870 8.6836845, 49.3958629 8.6832887, 49.4227238 8.6738472, 49.4162298 8.6755281, 49.4154291 8.6756221, 49.4145364 8.6757808, 49.4212459 8.6738490, 49.4210596 8.6732314, 49.4094114 8.6739566, 49.4089529 8.6602625, 49.4115623 8.6538584, 49.4132855 8.6517669, 49.4143102 8.6502249, 49.4316541 8.6450403, 49.4313242 8.6461047, 49.4234435 8.6409833, 49.4233100 8.6410792, 49.4239493 8.6417679, 49.4236187 8.6419798, 49.4167321 8.6742199, 49.4139089 8.6729704, 49.4135711 8.6685440, 49.4133710 8.6685603, 49.4229672 8.6628733, 49.4253832 8.6563505, 49.4244918 8.6574290, 49.4183168 8.6570383, 49.4129687 8.6642981, 49.4143409 8.6651836, 49.4194911 8.6655520, 49.4308516 8.6533759, 49.4306864 8.6534803, 49.4215359 8.6818834, 49.4188910 8.6769323, 49.4211075 8.6775566, 49.4211894 8.6670319, 49.4130810 8.6699968, 49.4134398 8.6714192, 49.4137439 8.6769747, 49.4155869 8.6784841, 49.4139913 8.6704329, 49.4136024 8.6776951, 49.3962000 8.7085445, 49.4234080 8.6595192, 49.4226921 8.6586119, 49.4229974 8.6608946, 49.4236303 8.6561909, 49.4240515 8.6571965, 49.4260202 8.6577463, 49.4200690 8.6616681, 49.4204248 8.6636381, 49.4194488 8.6605899, 49.4192298 8.6640734, 49.4175057 8.6611975, 49.4177856 8.6598202, 49.4162074 8.6584117, 49.4166299 8.6607801, 49.4140546 8.6667870, 49.4145234 8.6662068, 49.4337847 8.6803905, 49.4337620 8.6799996, 49.4135576 8.6745116, 49.4126377 8.6749116, 49.4063838 8.6765104, 49.4085613 8.6631372, 49.4061810 8.6696987, 49.3910080 8.6741013, 49.3913345 8.6763079, 49.3900958 8.6760409, 49.3966746 8.6792043, 49.3850197 8.6741885, 49.4188931 8.6520438, 49.4176786 8.7568038, 49.4174427 8.7569407, 49.4180751 8.7587556, 49.4192662 8.7566097, 49.4226110 8.7421281, 49.3956471 8.6433881, 49.4373949 8.6243093, 49.4122797 8.6422114, 49.4171569 8.6846986, 49.4162022 8.6847312, 49.4092092 8.6812299, 49.4081243 8.6917754, 49.4077406 8.6904605, 49.4072247 8.6518134, 49.4179566 8.6425794, 49.4208702 8.6400167, 49.4255068 8.6365369, 49.4255235 8.6391482, 49.4250577 8.6394699, 49.4247037 8.6403906, 49.4289421 8.6416397, 49.4279117 8.6424382, 49.4266397 8.6436737, 49.3978801 8.6820904, 49.3985527 8.6521355, 49.4028377 8.6472474, 49.3658723 8.6857452, 49.3768283 8.6892364, 49.3803262 8.7254433, 49.3848261 8.7330761, 49.4591437 8.7517850, 49.4242592 8.7437691, 49.3639984 8.7041768, 49.4173756 8.7606525, 49.4132295 8.7757064, 49.4137538 8.6648471, 49.4090739 8.7026883, 49.4379341 8.6355167, 49.4368769 8.6375428, 49.4378331 8.6340499, 49.4380724 8.6364145, 49.4367065 8.6380751, 49.4336146 8.6429127, 49.4337427 8.6416185, 49.4310651 8.6431859, 49.4223148 8.6746219, 49.3855445 8.7101353, 49.4254888 8.6894928, 49.4344969 8.6847782, 49.4335894 8.6853414, 49.4316276 8.7053393, 49.3762717 8.6811562, 49.3840303 8.7319662, 49.3674584 8.6818087, 49.3667510 8.6822513, 49.3912799 8.7348521, 49.3844874 8.7079169, 49.4348723 8.6798701, 49.4106260 8.7736249, 49.4084999 8.7750004, 49.4096965 8.7746403, 49.4095896 8.7745596, 49.4097963 8.7747701, 49.4081034 8.7753178, 49.4083756 8.7757148, 49.4080135 8.7726709, 49.4085119 8.7719410, 49.4096359 8.7716832, 49.4093142 8.7711512, 49.4095779 8.7715834, 49.4100279 8.7717770, 49.4075464 8.7732045, 49.4103552 8.7719708, 49.3608824 8.6865231, 49.3774963 8.6644366, 49.3783068 8.6644302, 49.3893649 8.6662793, 49.3911203 8.6725794, 49.3608549 8.6878385, 49.3779232 8.6642931, 49.3872918 8.7341917, 49.3872364 8.7346514, 49.3871999 8.7349917, 49.4121422 8.7045081, 49.4088000 8.6984868, 49.3814817 8.6779564, 49.3814977 8.6777918, 49.3783015 8.6783409, 49.3989016 8.6746355, 49.4069958 8.6573300, 49.4395485 8.6274097, 49.4038660 8.6717206, 49.4102258 8.6449740, 49.4326600 8.6805997, 49.4277051 8.6823985, 49.4070420 8.6761280, 49.4262545 8.6874841, 49.4111631 8.7120067, 49.3742388 8.6142440, 49.4186852 8.6638016, 49.4063560 8.6836519, 49.3768893 8.6944349, 49.3789415 8.6315668, 49.3795291 8.6296406, 49.3809627 8.6291268, 49.3817071 8.6338065, 49.3824332 8.6324942, 49.3803611 8.6327557, 49.3709046 8.6267823, 49.3808692 8.6779525, 49.4287155 8.6446215, 49.4135814 8.6490096, 49.4147938 8.6365486, 49.3966514 8.6718493, 49.3876649 8.6616646, 49.3890461 8.6840215, 49.4017367 8.6821163, 49.3968926 8.6802735, 49.4021904 8.6790167, 49.4237056 8.6475076, 49.4041968 8.6479391, 49.4154951 8.7332007, 49.4026134 8.6757101, 49.3764178 8.6298710, 49.3552099 8.6265645, 49.4150598 8.7727094, 49.4045783 8.6829102, 49.4096951 8.6835813, 49.3980621 8.7294523, 49.3725258 8.6835334, 49.4083878 8.6512209, 49.3920857 8.6526205, 49.3917052 8.6539344, 49.3918943 8.6540133, 49.3921200 8.6532604, 49.3917059 8.6542576, 49.4092038 8.7122223, 49.3960044 8.6709715, 49.3949788 8.6699146, 49.3960436 8.6718019, 49.3962304 8.6722292, 49.3957517 8.6718870, 49.3953878 8.6756074, 49.4097892 8.7063939, 49.4084468 8.7003941, 49.4152843 8.7204818, 49.3732176 8.7472812, 49.3813905 8.7643802, 49.3839185 8.7575944, 49.3923472 8.7466824, 49.3875208 8.7503390, 49.3894532 8.7370456, 49.3895678 8.7370642, 49.3892768 8.7345923, 49.3763693 8.6786037, 49.3743158 8.6653093, 49.4033414 8.7287167, 49.3660992 8.6836946, 49.3667671 8.6829203, 49.3967792 8.7245614, 49.3751983 8.6822853, 49.3748496 8.6823310, 49.3748601 8.6802550, 49.3740330 8.6823974, 49.4009150 8.7298557, 49.4007196 8.7297407, 49.4035389 8.7279297, 49.4026240 8.7278681, 49.4010872 8.7131843, 49.4094204 8.7462519, 49.3869006 8.6646067, 49.4026441 8.7802131, 49.3724384 8.6788819, 49.3733706 8.6798275, 49.3734520 8.6794397, 49.3734573 8.6772872, 49.3750322 8.6781318, 49.3761353 8.6779495, 49.3742557 8.6782780, 49.3748097 8.6779817, 49.3750429 8.6784800, 49.3743359 8.6792464, 49.4047494 8.6753390, 49.4010237 8.6542634, 49.4185616 8.6687042, 49.3961629 8.6968177, 49.3949506 8.7165457, 49.4056935 8.6753617, 49.3748682 8.6806324, 49.3757650 8.6783828, 49.3745216 8.6786266, 49.3804111 8.6763117, 49.3802672 8.6770459, 49.3938241 8.6885892, 49.3770953 8.6659476, 49.4218342 8.7455830, 49.3763084 8.6806674, 49.3925736 8.6762381, 49.3866268 8.6977267, 49.3870220 8.6985183, 49.4044781 8.6462736, 49.3924188 8.7407366, 49.3967229 8.7250259, 49.4247929 8.6422301, 49.4098190 8.7063061, 49.4085373 8.7758381, 49.3958169 8.6851383, 49.4132893 8.6956239, 49.4085000 8.6939571, 49.4078262 8.6941716, 49.4096788 8.7079007, 49.4096785 8.7074005, 49.4101311 8.6910837, 49.4101822 8.6884713, 49.4099175 8.6890057, 49.4169024 8.6774545, 49.4170457 8.6775259, 49.4134444 8.6918647, 49.4082046 8.6830699, 49.4088779 8.6792701, 49.4080211 8.6834601, 49.4090548 8.6852623, 49.4092900 8.6865331, 49.4086943 8.6845447, 49.4017089 8.6846814, 49.4079604 8.6841153, 49.4083191 8.6856688, 49.4080645 8.6851672, 49.4073436 8.6889011, 49.4063263 8.6908480, 49.4114775 8.7195875, 49.4090814 8.7182703, 49.4086229 8.7202663, 49.4033869 8.7279290, 49.4142260 8.7704357, 49.3894370 8.6884317, 49.3895530 8.6884195, 49.4183417 8.6445113, 49.4151056 8.6533976, 49.4000215 8.6915677, 49.4070728 8.7039593, 49.4057605 8.7102504, 49.4069654 8.7032895, 49.4051156 8.7101114, 49.3967708 8.6950821, 49.4100264 8.7102106, 49.4133774 8.7093673, 49.4104648 8.7110643, 49.4090884 8.7121174, 49.4145963 8.7424363, 49.4146285 8.7415734, 49.4158248 8.7336485, 49.4159290 8.7336568, 49.4208144 8.7400015, 49.4202707 8.7392359, 49.4195583 8.7389992, 49.3966895 8.6864231, 49.3675101 8.6831306, 49.3862241 8.7044324, 49.4089685 8.7125699, 49.3907835 8.7032534, 49.3914706 8.7026871, 49.3806555 8.7065541, 49.4157208 8.7418677, 49.4156600 8.7430138, 49.4152079 8.7442967, 49.4071432 8.7078562, 49.4088934 8.7133144, 49.4115392 8.7128522, 49.4105472 8.7780302, 49.4208463 8.6738282, 49.4171772 8.7603354, 49.4178582 8.7604307, 49.4131989 8.7239585, 49.4058690 8.6604558, 49.4048929 8.6675943, 49.4148153 8.6642766, 49.4079515 8.6376494, 49.3774547 8.7085656, 49.3762592 8.7055890, 49.4119166 8.6961489, 49.4317346 8.7061263, 49.3951217 8.6436838, 49.4322270 8.6909619, 49.4124413 8.7456969, 49.4150047 8.7453868, 49.4147956 8.7444452, 49.4143823 8.7483441, 49.4232907 8.7529822, 49.3756772 8.6859026, 49.3743793 8.6854003, 49.4181519 8.7605105, 49.4165526 8.6912073, 49.3625227 8.7053511, 49.4277972 8.6793663, 49.4186343 8.6608593, 49.3745870 8.6933185, 49.3745512 8.6931398, 49.4141951 8.6773802, 49.4256553 8.7393946, 49.4076774 8.6896431, 49.4075308 8.6897346, 49.4190729 8.6890667, 49.4187521 8.6903307, 49.4187110 8.6904478, 49.4159739 8.6732323, 49.4067994 8.6931128, 49.4067928 8.6935104, 49.4070263 8.6953186, 49.4088402 8.7022464, 49.4086281 8.7004350, 49.4083266 8.6988134, 49.4084032 8.6992511, 49.4086930 8.7008503, 49.4082856 8.6993919, 49.4400488 8.6895399, 49.4126031 8.7205963, 49.4123897 8.7201796, 49.4108875 8.7198273, 49.4121174 8.7199537, 49.3603818 8.6878989, 49.3600563 8.6882539, 49.3628080 8.6883118, 49.3631708 8.6882854, 49.3933484 8.7760935, 49.4211179 8.6800477, 49.4210927 8.6788357, 49.3822054 8.6779650, 49.4154994 8.6745757, 49.4170433 8.6458718, 49.3846497 8.6817785, 49.3846976 8.6847175, 49.3844191 8.6849082, 49.3847543 8.6816927, 49.3845422 8.6811475, 49.3844361 8.6812945, 49.3844812 8.6833063, 49.3843655 8.6831352, 49.3844693 8.6838984, 49.3847140 8.6828075, 49.3846153 8.6826858, 49.3916379 8.6832393, 49.4030467 8.6777744, 49.4081347 8.6490831, 49.4246394 8.6387347, 49.4092190 8.6404481, 49.4055522 8.6437619, 49.4094106 8.6390237, 49.4030705 8.6445930, 49.4048859 8.6407136, 49.4028534 8.6414838, 49.4054385 8.6407094, 49.4039477 8.6409153, 49.4053038 8.6446041, 49.3564840 8.7059999, 49.4104659 8.6372089, 49.4129533 8.6375987, 49.4022627 8.6383494, 49.4023560 8.6416227, 49.4279195 8.6840395, 49.4266417 8.6834045, 49.4149614 8.7627536, 49.4147153 8.7636838, 49.4148588 8.7631440, 49.4151372 8.7619776, 49.3819023 8.6610923, 49.4067406 8.6760466, 49.4209716 8.7395001, 49.4148681 8.7627574, 49.4177775 8.7408198, 49.4179019 8.7409040, 49.4210951 8.7398188, 49.4178687 8.7405082, 49.4150957 8.7621532, 49.4151231 8.7620372, 49.4150216 8.7723676, 49.4051851 8.7806376, 49.4094999 8.7187995, 49.4111767 8.7708030, 49.4112682 8.7706277, 49.4105747 8.7718871, 49.3741369 8.6601792, 49.3761611 8.6587169, 49.3759115 8.6576280, 49.3758411 8.6582433, 49.3813055 8.6605630, 49.3970019 8.6746884, 49.3670694 8.7066732, 49.3730737 8.6870049, 49.3744052 8.6641024, 49.3812274 8.6633431, 49.3835356 8.6668475, 49.3837115 8.6668223, 49.3839082 8.6668065, 49.3832557 8.6668961, 49.3834049 8.6789517, 49.3844996 8.6647503, 49.3815326 8.6607340, 49.4132859 8.6908940, 49.4155322 8.6699617, 49.4068263 8.6680762, 49.4072646 8.6691321, 49.4072916 8.6693315, 49.4049477 8.7776001, 49.4064182 8.7775809, 49.4132935 8.6911529, 49.4161156 8.6703451, 49.4159611 8.6705524, 49.4161026 8.6692956, 49.4113226 8.6592808, 49.3646411 8.7060911, 49.4132052 8.7122933, 49.4117341 8.6467543, 49.4161732 8.7555546, 49.4160191 8.6700610, 49.4161314 8.6706351, 49.4187135 8.7240892, 49.4182654 8.7234671, 49.4063399 8.6900996, 49.4063668 8.6902286, 49.4065511 8.6906922, 49.4055849 8.6876896, 49.4052408 8.6862751, 49.4056965 8.6856838, 49.3914904 8.6905020, 49.4446785 8.7641829, 49.4000181 8.6782987, 49.3931737 8.6788679, 49.4197733 8.6455869, 49.3816319 8.6588060, 49.3818822 8.6587490, 49.4198205 8.7343539, 49.4101553 8.6911774, 49.4066779 8.7141416, 49.4113423 8.7195551, 49.4110748 8.7197211, 49.3945690 8.6743519, 49.3943175 8.6754654, 49.3973820 8.6940966, 49.3935162 8.7079473, 49.3987446 8.6923402, 49.3986523 8.6924283, 49.3972671 8.6941625, 49.3799065 8.7239334, 49.4275954 8.6823123, 49.3963113 8.6748861, 49.4264733 8.7602041, 49.3916824 8.6702885, 49.4237291 8.6461040, 49.4383671 8.7404676, 49.4373853 8.7411725, 49.4014026 8.6800343, 49.4166596 8.6925736, 49.4124338 8.7117609, 49.4274540 8.6971831, 49.4278787 8.6910220, 49.4030621 8.7276422, 49.4023727 8.7276687, 49.4130005 8.6887393 +yes +165 +Bernhard Christel Wiechmann, Dr. Ernst Jacobson, Else Jacobson, Margarete Jacobson geb. Mosheim, Rudolf Jacobson +Maison de Gyros, L'Odyssée, Les Olympiades, La Crete, Athenais, L'île de Crête, Mavrommatis, Maison de Gyros, Taverne Grecque, Le Fil d'Ariane, Le Souvlaki Athénien, Maison de Gyros, Meteora, Acropolis, Hellenis, Olympie, Extra Grec 1987, Thalassa, Le Gourmet, Mimosa, Dimitris, Alexandros, Doner King +Chapelle de l'hôpital Saint-Louis +5 +30, 30, 30, 30 +yes +yes +203 +yes +12 +49.4507074 8.6677476 +48.8671035 2.3471909, 48.8782645 2.3740462, 48.8774801 2.3700505, 48.8689224 2.3335350, 48.8697474 2.3709540, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8703950 2.3709651, 48.8778843 2.3510144, 48.8651078 2.3744344, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8695951 2.3715600, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8653000 2.3752307, 48.8673441 2.3627982, 48.8651925 2.3758399, 48.8629074 2.3860380, 48.8668485 2.3837377, 48.8672012 2.3825153, 48.8645121 2.3683814, 48.8722818 2.3462050, 48.8732053 2.3585526, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8605667 2.3751425, 48.8637354 2.3705262, 48.8642296 2.2884865, 48.8644747 2.2879509, 48.8645963 2.2880351, 48.8649321 2.2883111, 48.8654525 2.2886812, 48.8667948 2.2896169, 48.8677281 2.2909720, 48.8743920 2.3574266, 48.8717354 2.3404728, 48.8750824 2.3241658, 48.8831483 2.3273794, 48.8870858 2.3139323, 48.8896917 2.3219420, 48.8839932 2.3218563, 48.8830031 2.2877361, 48.8648840 2.4053930, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8806821 2.3741833, 48.8789432 2.3031398, 48.8815632 2.3004421, 48.8844267 2.2977130, 48.8855270 2.2969790, 48.8849249 2.2981974, 48.8846750 2.2981530, 48.8773919 2.3395256, 48.8737979 2.3160522, 48.8840917 2.3224995, 48.8807958 2.3003045, 48.8591202 2.3475207, 48.8633059 2.3340632, 48.8647135 2.3426384, 48.8648693 2.3427189, 48.8630681 2.3412176, 48.8634071 2.3418915, 48.8660175 2.3407258, 48.8673651 2.3318225, 48.8656306 2.3303026, 48.8742798 2.3760564, 48.8690399 2.3387540, 48.8697491 2.3403685, 48.8695691 2.3402609, 48.8686652 2.3421761, 48.8689050 2.3327814, 48.8674306 2.3462505, 48.8660916 2.3526753, 48.8645295 2.3512403, 48.8685043 2.3498910, 48.8641253 2.3698504, 48.8612900 2.3499825, 48.8612937 2.3537009, 48.8595500 2.3565735, 48.8650455 2.3535907, 48.8669898 2.3620443, 48.8667188 2.3611850, 48.8662353 2.3610229, 48.8652895 2.3605043, 48.8633001 2.3620149, 48.8632099 2.3622012, 48.8626516 2.3633443, 48.8621296 2.3644112, 48.8614452 2.3647591, 48.8630803 2.3510377, 48.8592743 2.3796462, 48.8809308 2.3651881, 48.8812888 2.3651008, 48.8808303 2.3650793, 48.8883530 2.3917794, 48.8904247 2.3760144, 48.8711649 2.3221410, 48.8726629 2.3106385, 48.8732419 2.3115596, 48.8744495 2.3205466, 48.8752230 2.3264851, 48.8740876 2.3267342, 48.8778017 2.3225743, 48.8797413 2.3271672, 48.8830756 2.3269207, 48.8833400 2.3254009, 48.8813674 2.3151235, 48.8810818 2.3162341, 48.8786152 2.3156839, 48.8767711 2.3179268, 48.8778569 2.3059734, 48.8794539 2.3032046, 48.8749659 2.3041948, 48.8745760 2.3048788, 48.8687291 2.3014159, 48.8664956 2.3016793, 48.8677909 2.2995151, 48.8686254 2.2992361, 48.8725861 2.3019868, 48.8784635 2.2987871, 48.8698436 2.3061758, 48.8727273 2.3786615, 48.8806637 2.3648615, 48.8822323 2.3662711, 48.8720243 2.2934411, 48.8684366 2.2915095, 48.8714262 2.2899337, 48.8689351 2.2833107, 48.8696967 2.2845776, 48.8694565 2.2845446, 48.8700723 2.2857876, 48.8690091 2.2852941, 48.8691634 2.2851996, 48.8749903 2.2860127, 48.8759692 2.2834989, 48.8748643 2.2834193, 48.8690546 2.2835943, 48.8655496 2.2837039, 48.8657006 2.2836110, 48.8667831 2.2790363, 48.8664481 2.2772490, 48.8659840 2.2742050, 48.8633053 2.2742098, 48.8624073 2.2760147, 48.8593999 2.2774250, 48.8760516 2.3450644, 48.8949842 2.3821818, 48.8781855 2.2878593, 48.8846806 2.3623964, 48.8797648 2.3567638, 48.8810016 2.3640265, 48.8606979 2.3554288, 48.8605259 2.3552067, 48.8765046 2.3790929, 48.8717642 2.3765169, 48.8824125 2.3814642, 48.8758150 2.2867065, 48.8589930 2.3030851, 48.8661318 2.3536080, 48.8685310 2.3627215, 48.8645339 2.3458426, 48.8664790 2.3612544, 48.8671863 2.3624934, 48.8809021 2.3403319, 48.8794747 2.3547243, 48.8673662 2.3064825, 48.8592377 2.3714158, 48.8695383 2.3950747, 48.8953387 2.3825799, 48.8588998 2.2749555, 48.8768988 2.3387135, 48.8620598 2.2758197, 48.8632226 2.2764809, 48.8643683 2.2780086, 48.8682336 2.2816544, 48.8683009 2.2818137, 48.8636110 2.3699568, 48.8716652 2.3369422, 48.8724813 2.3352798, 48.8768502 2.3324723, 48.8715356 2.3340932, 48.8707193 2.3495070, 48.8761304 2.3564812, 48.8754523 2.3562375, 48.8834234 2.3734013, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8751634 2.3407635, 48.8696664 2.3354448, 48.8640573 2.3358570, 48.8727906 2.3327950, 48.8631926 2.3875837, 48.8731847 2.3591245, 48.8902005 2.3757322, 48.8706510 2.3613960, 48.8709866 2.3363950, 48.8790699 2.3540350, 48.8848997 2.3377794, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8854990 2.3103821, 48.8701182 2.3328493, 48.8850396 2.3205857, 48.8860872 2.3177587, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8804253 2.3287401, 48.8743336 2.3345374, 48.8642191 2.3423423, 48.8638673 2.3421689, 48.8815429 2.2914706, 48.8838668 2.3274744, 48.8889565 2.3226941, 48.8937935 2.3362303, 48.8915892 2.3347229, 48.8975742 2.3374320, 48.8959308 2.3457254, 48.8906192 2.3344868, 48.8929700 2.3402831, 48.8931959 2.3273644, 48.8938006 2.3360065, 48.8928237 2.3276058, 48.8927037 2.3270855, 48.8950865 2.3279515, 48.8927798 2.3416901, 48.8601040 2.2800860, 48.8620103 2.3504016, 48.8709674 2.2927276, 48.8701195 2.2926560, 48.8607663 2.2829855, 48.8742509 2.3267610, 48.8674435 2.3066185, 48.8760737 2.3314470, 48.8776629 2.3503063, 48.8607520 2.3551307, 48.8599332 2.3492544, 48.8616973 2.3497749, 48.8798460 2.2882480, 48.8706907 2.3018397, 48.8711468 2.3021857, 48.8808570 2.3744052, 48.8816465 2.3719957, 48.8810026 2.3740798, 48.8809708 2.3734937, 48.8808782 2.3736050, 48.8750168 2.2842019, 48.8642610 2.2877420, 48.8690375 2.4018799, 48.8681245 2.4017154, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8709768 2.4035156, 48.8718932 2.4046138, 48.8711831 2.4041560, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8650286 2.3978764, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8661206 2.3993734, 48.8647416 2.4000331, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8646156 2.3980291, 48.8898740 2.3601766, 48.8900866 2.3603615, 48.8911754 2.3596165, 48.8912089 2.3601196, 48.8895540 2.3596572, 48.8601780 2.3784708, 48.8918470 2.3497087, 48.8634536 2.3668626, 48.8621628 2.3647719, 48.8643458 2.3599234, 48.8740405 2.3857795, 48.8749608 2.3892009, 48.8739345 2.3878755, 48.8794344 2.3881410, 48.8801930 2.3906171, 48.8750094 2.3896199, 48.8755856 2.3816591, 48.8737724 2.3861774, 48.8741080 2.3859246, 48.8831104 2.3242250, 48.8776217 2.3939651, 48.8776968 2.3952330, 48.8775224 2.3930979, 48.8687439 2.3725567, 48.8737876 2.3254797, 48.8757911 2.3276502, 48.8853087 2.2914432, 48.8666300 2.3441053, 48.8751073 2.3063372, 48.8761128 2.3302242, 48.8760136 2.3310108, 48.8628914 2.2767409, 48.8836091 2.3810186, 48.8759800 2.3435799, 48.8602282 2.3444320, 48.8781331 2.2973879, 48.8843398 2.3684081, 48.8605440 2.3490975, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8747610 2.3399353, 48.8610529 2.3020976, 48.8742737 2.3172451, 48.8788807 2.2940470, 48.8790502 2.2932877, 48.8787213 2.2930870, 48.8860790 2.2927720, 48.8862920 2.2922300, 48.8860610 2.2916910, 48.8815650 2.2950420, 48.8816640 2.2951850, 48.8698720 2.3253770, 48.8767675 2.3414635, 48.8801010 2.2887410, 48.8896590 2.3042630, 48.8763180 2.3309180, 48.8851905 2.3788177, 48.8694492 2.3546663, 48.8803860 2.3748678, 48.8843962 2.3388368, 48.8841050 2.3049810, 48.8840570 2.3045230, 48.8835710 2.3045840, 48.8837420 2.3043460, 48.8747781 2.3879795, 48.8755246 2.3943562, 48.8828185 2.3827206, 48.8753559 2.3919799, 48.8752306 2.3934592, 48.8818980 2.3374100, 48.8651944 2.3554408, 48.8650138 2.3556963, 48.8895142 2.3498344, 48.8702024 2.2869885, 48.8711617 2.3300722, 48.8619859 2.3647571, 48.8664714 2.3673929, 48.8625029 2.3716831, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8648399 2.3394096, 48.8778905 2.3549883, 48.8726368 2.3332498, 48.8733021 2.3461422, 48.8717746 2.2995211, 48.8643045 2.3993897, 48.8791073 2.2907296, 48.8766198 2.2875734, 48.8680414 2.3235560 +49.3950346 8.6818528, 49.3853408 8.6756587, 49.3929123 8.6731183, 49.4169850 8.7622264, 49.4283831 8.7619069, 49.4223928 8.6472758, 49.4171494 8.6793155, 49.4149894 8.6777848, 49.4148485 8.6775333, 49.4188910 8.6930237, 49.4177616 8.6901926, 49.4162828 8.6903739, 49.4118566 8.7016009, 49.4107725 8.7025797, 49.4195856 8.6828954, 49.4192171 8.6617263, 49.4179033 8.6815927, 49.4086544 8.6824072, 49.4074650 8.6753838, 49.4088642 8.6826038, 49.4071241 8.6769474, 49.3721462 8.6221001, 49.3829491 8.6688513, 49.3761273 8.6786897, 49.3930859 8.6886712, 49.4085032 8.6760080, 49.4140297 8.6502362, 49.4146530 8.6531618, 49.3847089 8.6685712, 49.4174588 8.7442165, 49.4177904 8.7599764, 49.4252008 8.6863559, 49.4045235 8.6882943, 49.3900486 8.6883781, 49.3881762 8.6886005, 49.4058639 8.6880015, 49.4234062 8.6494903, 49.4093727 8.7028215, 49.4197519 8.6452297, 49.4191043 8.6617726, 49.4130970 8.6671099, 49.4400347 8.6325613, 49.3761111 8.6786235, 49.3777133 8.6806931, 49.4081473 8.7729053, 49.4401607 8.6321511, 49.4340707 8.6790422, 49.4290351 8.6868546, 49.3807720 8.6782823, 49.3765839 8.6665923, 49.4261283 8.6876606, 49.4252895 8.6896450, 49.4151862 8.6795007, 49.4233025 8.6807132, 49.4131304 8.7665767, 49.3805355 8.6849044, 49.4086350 8.6786376, 49.4225854 8.6476266, 49.4007675 8.6494912, 49.3731436 8.7032594, 49.3781496 8.6583234, 49.4067775 8.7075784, 49.4113511 8.7130776, 49.4350143 8.7097094, 49.4070226 8.7014890, 49.4337050 8.6982644, 49.4386376 8.6862454, 49.4140695 8.6872232, 49.4327755 8.6997170, 49.4134479 8.7473282, 49.3777846 8.6947087, 49.4290349 8.6871594, 49.3990473 8.6713284, 49.4129097 8.7129751, 49.3753173 8.6635900, 49.4127565 8.7719234, 49.4174569 8.7484520, 49.4144394 8.6710078, 49.3982248 8.6703696 +Wiesloch, Schifferstadt, Walldorf, Sinsheim, Speyer, Bad Schönborn, Philippsburg, Eppelheim, Leimen, Waghäusel, Sandhausen, Östringen, Neckargemünd, Hockenheim, Schwetzingen, Waibstadt +137 +44 +49.4151455 8.7001711, 49.4225019 8.7339703, 49.4288900 8.7151923, 49.4195004 8.7042268, 49.4168493 8.7062479, 49.4169490 8.7088282, 49.4106369 8.7231657, 49.4072736 8.7042584, 49.4034969 8.7041978, 49.4045029 8.6964906, 49.4198220 8.7244339, 49.4173492 8.7353905, 49.4185272 8.7072229, 49.4056987 8.6995970, 49.4175623 8.7007760, 49.4167281 8.7088746, 49.4154921 8.7003039, 49.4176067 8.6981096, 49.4163249 8.7711792, 49.4140674 8.7816577, 49.4198876 8.7454600, 49.4289824 8.7668173, 49.4210240 8.7483509, 49.4059745 8.7040467, 49.3853863 8.7331303, 49.4039479 8.7271770, 49.3938637 8.6974644, 49.4211223 8.7663746, 49.4153640 8.7225444, 49.4069619 8.7115707, 49.4356320 8.7140171, 49.4228760 8.7420142, 49.4164724 8.6578375, 49.4149682 8.6593179, 49.4156567 8.6585628, 49.4155767 8.7022603, 49.3982697 8.7723650, 49.3954974 8.7713116, 49.3991247 8.7677457, 49.4145759 8.7379393, 49.3940922 8.7708327, 49.3828862 8.6974785, 49.4127706 8.7178630, 49.4192233 8.7166853, 49.4323860 8.6958344, 49.4326326 8.6907659, 49.4330634 8.6937607, 49.4354359 8.7188705, 49.4488719 8.7503142, 49.4196542 8.7232011, 49.4206449 8.7223455, 49.4214402 8.7213892, 49.4563800 8.7469357, 49.4090664 8.7817607, 49.4137378 8.7763609, 49.4151549 8.7088601, 49.4424098 8.7023993, 49.4065595 8.7317602, 49.3850144 8.7326813, 49.4081525 8.7138310, 49.4092585 8.7240169, 49.4095028 8.7172321, 49.4213028 8.7431528, 49.4331789 8.6977162, 49.4262331 8.7441437, 49.4232032 8.6974269, 49.4253948 8.6962672, 49.4070632 8.7127517, 49.4161327 8.6999750, 49.4111147 8.7149590, 49.4120872 8.7092424, 49.4258745 8.7058932 +Chapelle Saint-Vincent de Paul, Chapelle de l'Agneau de Dieu, Église Adventiste du 7e jour Paris-Sud, Chapelle Saint-Bernard, Maison Verte, Aumônerie des Grands Moulins, Chapelle Sainte-Marie, Église Notre-Dame de Chaldée, Chapelle Orthodoxe, Chapelle, Centre Évangélique Philadelphia, Église Orthodoxe Grecque, Église évangélique du tabernacle, Calvary Chapel, Église Protestante - Paris Alésia, Chapelle Saint-Paul, Salle du Royaume des Témoins de Jéhovah de Paris Clichy, Chapelle Saint-Martin de Porrès, Chapelle catholique des 4 Évangélistes, Chapelle des Franciscaines, Centre Saint-Paul, Chapelle Notre-Dame de la Confiance, Chapelle Sainte-Marie, Église protestante évangélique des Ternes, Église Adventiste du 7ème Jour, Église Sainte-Colette des Buttes-Chaumont, Église Catholique Russe, Chapelle, Église Mariavite Sainte-Marie, Chapelle Saint-André, Chapelle Saint-Louis, Crypte du Martyrium de Saint-Denis, Chapelle, Chapelle, Église Saint-Lambert de Vaugirard, Église Saint-Léon, Église Saint-Sulpice, Église Saint-Pierre de Montrouge, Église Saint-Séverin, Église Saint-Julien-le-Pauvre, Basilique du Sacré-Cœur, Église Saint-Jean-Baptiste de Grenelle, Église Saint-Pierre de Montmartre, Église Notre-Dame de l'Arche d'Alliance, Église Saint-Ignace, Église Saint-Médard, Église Notre-Dame-de-Lorette, Temple de l'Oratoire du Louvre, Église Notre-Dame de Clignancourt, Église Saint-Roch, Saint-Nicolas du Chardonnet, Chapelle Notre-Dame-de-la-Compassion, Église Sainte-Hélène, Église de la Sainte-Trinité, Église Saint-Eugène Sainte-Cécile, Chapelle Ozanam, Église luthérienne de la Résurrection, Église Saint-Christophe de Javel, Église Saint-Eustache, Église Saint-Germain l'Auxerrois, Église Saint-Leu - Saint-Gilles, Chapelle Notre-Dame de Grâce, Église Polonaise Notre-Dame de l'Assomption, Église de la Madeleine, Basilique Notre-Dame-des-Victoires, Église Notre-Dame-de-Bonne-Nouvelle, Église Saint-Louis-en-l'Île, Église Saint-Étienne-du-Mont, Église Saint-Éphrem-le-Syriaque, Église Orthodoxe Roumaine des Saints Archanges, Église Saint-Gervais, Église Saint-Merry, Église luthérienne des Billettes, Église Notre-Dame-des-Blancs-Manteaux, Église Saint-Paul - Saint-Louis, Chapelle, Temple Sainte-Marie, Église Saint-Nicolas des Champs, Ancienne Église Saint-Martin des Champs, Église Sainte-Élisabeth, Chapelle de la congrégation du Saint-Esprit, Cathédrale Arménienne Sainte-Croix, Église Saint-Denis du Saint-Sacrement, Église du Val-de-Grâce, Église Luthérienne Saint-Marcel, Église Saint-Jacques-du-Haut-Pas, Église Saint-Germain des Prés, Cathédrale Ukrainienne Saint-Vladimir-le-Grand, Chapelle Notre-Dame de la Sagesse, Église Saint-Vincent-de-Paul, Église Saint-Laurent, Chapelle de l'hôpital Saint-Louis, Église Saint-Martin des Champs, Église Saint-Joseph-Artisan, Temple de la Rencontre, Église Saint-Jean-Baptiste de Belleville, Église Notre-Dame-de-l'Assomption des Buttes-Chaumont, Église luthérienne Saint-Pierre, Église Notre-Dame-de-Fatima, Église Saint-François-d'Assise, Église Sainte-Claire d'Assise, Temple antoiniste, Église Saint-Serge, Église Saint-Georges de la Villette, Église Saint-Joseph des Carmes, Église Saint-Thomas d'Aquin, Église Saint-Ambroise, Chapelle Notre-Dame-Réconciliatrice de la Salette, Basilique Notre-Dame du Perpétuel Secours, Église protestante chinoise de Paris, Église Notre-Dame d'Espérance, Temple protestant du Foyer de l'Âme, Église Réformée du Luxembourg, Église Saint-Jacques Saint-Christophe, Église Notre-Dame des Foyers, Église Notre-Dame des Champs, Basilique Sainte-Clothilde, Cathédrale Saint-Louis des Invalides, Chapelle de Jésus-Enfant, Église Anglicane Saint-Michel, Église Réformée du Saint-Esprit, Temple de Pentemont, Église Saint-Augustin, Chapelle Expiatoire, Église Saint-André de l'Europe, Église Saint-Philippe du Roule, Chapelle Baltard, Église Saint-François-Xavier, Chapelle Notre-Dame de l'Annonciation, Église Américaine, Église Saint-Pierre du Gros Caillou, Église Saint-Louis-d'Antin, Deutsche Evangelische Christuskirche Paris, Church of Scotland, Chapelle Notre-Dame de Consolation, Cathédrale Arménienne Saint-Jean-Baptiste, Cathédrale Américaine de la Sainte-Trinité, Église Luthérienne Saint-Jean, Église Réformée chinoise de Belleville, Église Notre-Dame-des-Otages, Église Notre-Dame-de-la-Croix, Église du Cœur Eucharistique de Jésus, Église Saint-Germain-de-Charonne, Église Saint-Gabriel, Église Saint-Jean-Bosco, Chapelle de l'Est, Église Saint-Cyrille et Saint-Méthode, Chapelle du Corpus-Christi, Église Protestante Danoise, Cathédrale Orthodoxe Russe Saint-Alexandre Nevsky, Saint-Joseph's Church (mission anglophone), Église Saint-Jospeh des Épinettes, Temple des Batignolles, Église Saint-Michel des Batignolles, Église Sainte-Marie des Batignolles, Église de l'Immaculée Conception, Église Sainte-Geneviève des Grandes-Carrières, Église Sainte-Rita, Église Saint-Jean de Montmartre, Église Saint-Bernard de La Chapelle, Chapelle Notre-Dame de la Paix, Église Saint-Éloi, Église Notre-Dame du Bon Conseil, Église Serbe Saint-Sava, Église Notre-Dame de Bercy, Église Orthodoxe de France, Église réformée Port-Royal Quartier Latin, Église Sainte-Rosalie, Église Saint-Albert le Grand, Église Sainte-Anne de la Maison Blanche, Temple Antoiniste de Paris, Église Luthérienne de la Trinité, Église Saint-Marcel, Chapelle Saint-Louis de la Salpêtrière, Église Notre-Dame de Chine, Église Notre-Dame de la Gare, Église Saint-Hippolyte, Cathédrale Saint-Étienne, Église Saint-Pierre de Chaillot, Église Anglicane Saint-Georges, Église Saint-Dominique, Église Notre-Dame-du-Travail, Paroisse de Plaisance, Église Notre-Dame-du-Rosaire, Église Évangélique Libre, Église de Saint-Antoine de Padoue, Église Notre-Dame-Réconciliatrice, Chapelle Notre-Dame-du-Lys, Église Orthodoxe Saint-Séraphin de Sarov, Église Saint-Jean-Baptiste-de-La-Salle, Église Saint-Honoré d'Eylau, Église Réformée de l'Annonciation, Mission Catholique Espagnole - Iglesia Española, Église Notre-Dame-de-l'Assomption de Passy, Église Notre-Dame de Grâce de Passy, Église Saint-Denys de la Chapelle, Chapelle Sainte-Thérèse, Église Saint-François-de-Sales (ancienne église), Église Luthérienne de l'Ascension, Temple Réformé de l'Etoile, Église Sainte-Odile, Église Saint-Charles-de-Monceau, Église Saint-Ferdinand des Ternes, Église du Christ, Église Saint-François-de-Sales (nouvelle église), Église Notre-Dame d'Auteuil, Chapelle Sainte-Bernadette, Église Saint-François de Molitor, Église Polonaise Sainte-Geneviève, Église Sainte-Jeanne-de-Chantal, Chapelle de la Visitation, Église Saint-Antoine des Quinze-Vingts, Chapelle Sainte-Ursule, Église Notre-Dame-du-Liban, Chapelle de l'Épiphanie, Église Notre-Dame-de-Grâce de Passy, Chapelle Laennec, Église Notre-Dame-de-Nazareth, Église nouvelle Saint-Honoré d'Eylau, Chapelle Saint-François d'Assise, Chapelle Sainte-Rita, Basilique Sainte-Jeanne-d’Arc, Église du dôme, Chapelle Notre-Dame-du-Saint-Sacrement, Église Notre-Dame-de-Lourdes, Église Saint-Joseph des Nations, Église Sainte-Marguerite, Église Sainte-Marguerite, Chapelle Sainte-Jeanne-d'Arc, Église du Bon Secours, Église du Saint-Esprit, Chapelle, Prieuré Saint-Benoît, Église Orthodoxe des Trois-Saints-Docteurs, Église Protestante Suéduoise, Chapelle de la clinique Blomet, Église du Bon Pasteur, Église Saint-Jean des Deux Moulins, Chapelle, Église luthérienne Saint-Paul, Chapelle, Chapelle Saint-Yves, Chapelle, Chapelle, Chapelle du Sacré-Cœur-de-Jésus-Roi-de-France, Cathédrale Notre-Dame de Paris, Chapelle Saint-Charles, Chapelle, Chapelle Notre-Dame des Anges, Chapelle Notre-Dame de la Médaille Miraculeuse, Chapelle des Catéchismes, Communauté évangélique Paris Daumesnil, Église Saint-Luc, Église Notre-Dame-de-La-Salette, Sainte-Chapelle +50 and 49.3956377 8.7003866, 49.4129054 8.7286879, 49.4295755 8.7759899, 49.4071892 8.6937962, 49.4277949 8.6859759, 49.4244330 8.7116834, 49.4177407 8.7617228, 49.4105312 8.6975907, 49.4126850 8.7049420, 49.3907840 8.7281080, 49.4097481 8.7070938, 49.3735076 8.7471790, 49.4112622 8.7059705, 49.3878352 8.7614044, 49.4122224 8.7127594, 49.3893232 8.7371550, 49.4069167 8.6886211, 49.3893869 8.7367041, 49.4256538 8.6475866, 49.4072012 8.6930407, 49.4106747 8.7780519, 49.4180857 8.7571952, 49.4187291 8.7567160, 49.4093534 8.7128936, 49.4093935 8.7114074, 49.4102478 8.7191369, 49.4092653 8.7127841, 49.4156539 8.7141859, 49.4121300 8.6990129, 49.4113466 8.7459929, 49.4277478 8.7478736, 49.4179564 8.7608483, 49.4020821 8.7437959, 49.4116784 8.7028078, 49.4187580 8.7405498, 49.4221411 8.6971096, 49.3947519 8.7087503, 49.4105292 8.7152167, 49.4101555 8.6521855, 49.4105161 8.7190962, 49.4097080 8.7160380, 49.4106076 8.7156311, 49.4263861 8.7616530, 49.4103490 8.7069722, 49.4050466 8.6815538, 49.4121130 8.7104783, 49.4120223 8.7062092, 49.4102627 8.6928342, 49.4146460 8.6905719, 49.4106087 8.7156269 +Collège Privé Saint-Louis, École maternelle publique Souzy, École maternelle Charles Baudelaire, École primaire, École primaire Fernand Léger, École maternelle Le Vau, École élémentaire B, École maternelle Olivier de Serre, École primaire, École maternelle des Grands Champs, Collège Léon Gambetta, Lycée Dorian, Collège Georges Courteline, École primaire Chaptal, École maternelle, École élémentaire, École Primaire, Collège César Franck, École élémentaire Compans, École élémentaire Brunet, École maternelle Brunet, Lycée général et technologique Henri Bergson, École maternelle, LPMA, École privée Saint-Laurent, Conservatoire de musique du 14e Arrondissement, École maternelle, École élémentaire Chernoviz, École maternelle, École Polyvalente Pajol, École 56 Avenue Félix Faure, École primaire, Lycée technique Louis Armand, École Nornal Catholique Blomet, Cours Diderot, Lisaa, EIPDCE, Lycée des métiers d'art, d'architecture intérieur et du design BOULLE, École maternelle Élisa Lemonnier, École primaire, École élémentaire privée L'Immaculée-Conception, Colegio Español Frederico Garcia Lorca, École Élémentaire Hyppolite Maindron, École maternelle Maurice Ripoche, École élémentaire Beaudricourt, College Lycée Stanislas, Actif Tutor, École élémentaire de l'Évangile, École maternelle Tchaïkovski, École élémentaire Maurice Genevoix, École élémentaire de Torcy, École maternelle de Torcy, École élémentaire Doudeauville, École maternelle Marx Dormoy, École polyvalente de la Goutte d'Or, École maternelle Goutte d'Or, École polyvalente des Poissonniers, Collège Chaptal, Collège Jules Ferry, Section d'enseignement général et professionnel adapté du Collège Vincent d'Indy, École primaire A, École primaire B, École primaire, École élémentaire de la Plaine, École primaire Publique Laugier, Wall Street Institute, Collège Henri Bergson, Collège privé Lucien de Hirsch, Section d'enseignement général et professionnel adapté du Collège Edouard Pailleron, École maternelle, École primaire, École élémentaire privée Lucien de Hirsch, Cours Clapeyron, IPAG Paris, École maternelle et école élémentaire, École primaire Mathis, École primaire Tandou, Sciences Po, École maternelle Belliard, École élémentaire Belliard, Collège Hector Berlioz, École maternelle Paul Abadie, Polynotes, l'école de musiques, École primaire, École maternelle, École supérieure d'études cinématographiques, École maternelle Bruxelles, École Elémentaire Bruxelles, EFAP Paris, Lycée professionnel Suzanne Valadon, Lycée Camille Jenatzy, École maternelle, École maternelle, École maternelle, École primaire, École primaire, École élémentaire privée Eugène Napoléon, Lycée général et technologique privé Les Petits Champs, École élémentaire privée Montessori Kids, École primaire Privé École du Cerene, Collège privé Soeur Rosalie, Lycée général privé Louise de Marillac, École élémentaire privée Soeur Rosalie, Collège Victor Hugo, École primaire B, École Louise De Bettignie (Sainte-Ursule), École maternelle, École maternelle, Collège Georges Duhamel, École maternelle Volontaires, École maternelle, École élémentaire Télégraphe, École maternelle Auguste Perret, École élémentaire Auguste Perret, Section d'enseignement professionnel du Lycée polyvalent Elisa Lemonnier, École privée française d'Enseigement technique, Collège Lucie Faure, École maternelle publique Maraîchers, École primaire publique Pyrénées T, Collège privé Saint-Louis de Gonzague, École maternelle, Collège Paul Valéry, Lycée général Paul Valéry, Collège Buffon, Collège privé Saint-Jean de Passy, Lycée des métiers de l'optique FRESNEL, Lycée privé Saint-Jean de Passy, Section d'enseignement professionnel du Lycée polyvalent Louis Armand, École Active bilingue Jeannine Manuel (École élémentaire privée), Collège de Staël, Lycée général Buffon, École primaire, École maternelle Gutenberg, École maternelle Brochant, Inlingua, École Gaston Tenoudji, École élémentaire Lemercier, École élémentaire, École maternelle, École Privée Charles Peguy, École maternelle Simon Bolivar, École maternelle et primaire Henri Schili, Paris II - Panthéon Assas - Centre Vaugirard, École maternelle Eugénie Cotton, Écoles élémentaires Eugénie Cotton, École élémentaire, École maternelle Merlin, École Supérieure de Gestion, Collège Camille Sée, Lycée général Camille Sée, École maternelle, Lycée professionnel privé Marcel Lamy, Sup career, École Ganénou, Collège Honoré de Balzac, Lycée général et technologique Honoré de Balzac, Collège Maurice Ravel, Lycée général et technologique Maurice Ravel, Cours Tocqueville, Lycée Municipal d'Adultes Philippe Leclerc de Hauteclocque, École privée Bossuet, Collège Jacques Prévert, École maternelle, École primaire, Collège privé Notre-Dame de France, Lycée général privé Notre-Dame de France, École maternelle, École primaire, École élémentaire privée Notre-Dame de France, École maternelle Pierre Foncin, École maternelle Surmelin, École primaire Bretonneau, École polyvalente, Collège Victor Duruy, Collège d'Hulst (École secondaire privée ), Collège privé d'Hulst, Cours Montaigne (École secondaire privée), Cours Thérèse Chappuis (École secondaire privée), Lycée polyvalent Maximilien Vox-Art-Dessin, Lycée polyvalent privé Albert de Mun, Section d'enseignement professionnel du Lycée polyvalent Maximilien Vox, Section d'enseignement professionnel du Lycée polyvalent privé Saint-Nicolas, École maternelle, École maternelle, École primaire privée Saint-Jean Bosco, École primaire, Collège Guillaume Apollinaire, Collège Privé L'Alma, Collège privé La Rochefoucauld, Collège privé Sainte-Elisabeth, Cours Fidès (École secondaire privée), Institut Privé de l'Alma (École Secondaire Privée ), L'École (École secondaire privée), Lycée général et technologique Roger Verlomme, Lycée général privé La Rochefoucauld, Lycée général privé Sainte-Elisabeth, Section d'enseignement général et professionnel adapté du Collège Guillaume Apollinaire, Section d'enseignement professionnel du Lycée polyvalent privé Albert de Mun, École élementaire privée the lennen bilingual school, École Active Bilingue Jeannine Manuel (Collège privé), École Active Bilingue Jeannine Manuel (Lycée général privé), École du Champ de Mars (École secondaire privée), École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École primaire, École primaire, École primaire, École primaire, École primaire, École primaire, École Élémentaire Privée L'Alma, École élémentaire privée La Rochefoucauld, Lycée professionnel, École maternelle, École élémentaire, École polyvalente Bernard Buffet, École maternelle, École Maternelle Sarrette, École privée Saint-Jean-Baptiste de Belleville - Maternelle et Primaires, École Multimedia, École élementaire, École et Collège Saint-Georges (privé), École maternelle et primaire Saint-Georges (privé), École Dentaire Française, École maternelle Prévoyance, École de Boulangerie et de Pâtisserie, École maternelle Delambre, École élémentaire Delambre, École privée catholique Sainte Marguerite, Collége privé Notre-Dame de Lourdes, École primaire privée Notre-Dame de Lourdes, École privée Sainte-Marthe, Living school, Conservatoire Municipal Paul Dukas, École élémentaire du Clos, École élémentaire 14 Riblette, École élémentaire 16 Riblette, École primaire privée Montessori, Lycée technologique École Nationale Supérieure des Arts Appliqués, École Élémentaire, Lycée polyvalent privé Catherine Labouré, École et Collège Modigliani, École maternelle, École Lacordaire, Lycée général et technologique Chaptal, Collège Edouard Pailleron, Lycée général Paul Bert, École Maternelle Alain Fournier, Lycée François Villon, Collège et Lycée Stanislas, École Wurtz, École Élémentaire, École, Collège Georges Braque, École Glacière, Lycée Lazare Ponticelli, École Primaire, École primaire publique Kuss, Lycée Professionnel Tolbiac, Collège Gabriel Fauré, École primaire, École primaire, École primaire, École maternelle, Lycée Autogéré de Paris, École primaire Saint-Jean, École maternelle, Collège Saint-Exupéry, Collège George Sand, Collège Marie Curie, Collège Parmentier, Lycée Lavoisier, École élémentaire de la Victoire, Lycée professionnel Pierre Lescot, École maternelle Eupatoria, Collège Henri Matisse, Collège La Grange aux Belles, École primaire d'application, École maternelle Domrémy, École Saint-Jacques, École maternelle privée Diwan, Collège Georges Rouault, École élémentaire Cheminets, Lycée technique Diderot, Lycée polyvalent Martin Nadaud, École maternelle Fagon, Lycée professionnel Hector Guimard, Ancien lycée Jean Quarré, Collège Guillaume Budé, École maternelle, Groupe scolaire La Salle Saint-Nicolas, Collège Flora Tristan, Lycée Professionnel Maria Deraismes, Section d'enseignement professionnel du Lycée polyvalent D'Alembert, Collège Maurice Utrillo, Lycée Rabelais, École primaire d'application, Lycée Jean de La Fontaine, École maternelle, Lycée général et technologique Arago, Lycée général Fénelon, École Primaire Convention, École Jongkind, École Élémentaire d'Argenteuil, École primaire, École maternelle, École Maternelle et Élémentaire Beauregard, École Maternelle et Primaire, École primaire Saint-Louis-en-l'Île, Lycée général et technologique Sophie Germain, École élémentaire Saint-Merri, École Primaire Moussy, Groupe Scolaire Archives, École Élémentaire Hospitalière Saint-Gervais, Lycée général Louis Le Grand, Collège Charlemagne, École primaire Charlemagne, École Massillon, École élémentaire privée Massillon, École primaire, École des Francs-Bourgeois, École primaire, École Élémentaire et Collège Montgolfier, École Élémentaire, École maternelle Chapon, Annexe Lycée Professionnel Nicolas Flamel, École maternelle Paul Dubois, École Élémentaire, Lycée et Collège Henri IV, Lycée général Saint-Louis, École Primaire des Quatre Fils, École Maternelle Perle, Collège Victor Hugo - Annexe, Lycée général Victor Hugo, École primaire Turenne, École Maternelle et Élémentaire, École primaire, École maternelle Legouvé, Collège Charles Péguy, Lycée Georges Brassens, Conservatoire municipal du XIXe Jacques Ibert, École Maternelle et Primaire Madame, École élémentaire Froment, Collège et Lycée Montaigne, École Alsacienne, École maternelle Tandou, Collège Georges Méliès, École Élémentaire, École Primaire Surène, Lycée général et technologique Racine, École Élémentaire, Collège Octave Gréard, Lycée Polyvalent Racine (Annexe), École maternelle, La Rochefoucauld, Lycée étranger privé Léonard de Vinci, Lycée Jules Ferry, École Élementaire Privée The Lennen Bilingual School, École maternelle Bretonneau, École primaire Pelleport, Collège Colette Besson, Collège Jean-Baptiste Clément, Centre des Formations Industrielles, École élémentaire Alquier-Debrousse, Lycée professionnel Charles de Gaulle, École primaire Pierre Girard, École maternelle Dautancourt, École élémentaire Truffaut, École polonaise, Lycée Auguste Renoir, Lycée Technologique Bachelard, École des Récollets, Lycée technologique Jules Siegfried, Écoles maternelle et élémentaire Miollis, Institut National des Jeunes Aveugles, Lycée professionnel Gustave Ferrié, École de Sage-Femme de Saint-Antoine, Cité scolaire Rodin, Lycée Jean Lurçat, École Élémentaire Faubourg-Saint-Denis, École Sainte-Anne Sainte-Marie, École maternelle Château des Rentiers, École élémentaire avenue d'Ivry (école B), École Château des Rentiers, École Primaire, Lycée Professionnel Galilée, Collège Gustave Flaubert, École Blanche Jeanne d'Arc, Atelier beaux-arts Montparnasse, Saint-Lambert - Théodore deck, Lycée technique du Bâtiment, École primaire Prisse d'Avennes, École, École Élémentaire Porte Brancion, École Maternelle Porte Brancion, École Maternelle et Élémentaire, École Saint-Honoré d'Eylau, École Polyvalente, École Maternelle et Élémentaire, Lycée général Janson de Sailly, Collège Eugène Delacroix, Lycée et Collège Gerson, Lycée privé Saint-Louis de Gonzague, École Élémentaire, École Maternelle et Élémentaire, Collège et Lycée Molière, École maternelle Gros, École Élémentaire, Centre Interprofessionnel de Formation des Commerces de l'Alimentation, Lycée général et technologique privé Charles de Foucauld, École suédoise de Paris, École maternelle et élémentaire, Cours Sainte-Ursule, École de Paris des Métiers de la Table, École maternelle publique Bayen, École élémentaire publique Berthier, École élémentaire Vigée-Lebrun, École Léman-Belleville, École publique élémentaire, Lycée Jean-Baptiste Say, École Elementaire Simon Bolivar, École Maternelle et Élémentaire du Parc des Princes, École Lamazou, École Universelle, Lycée professionnel René Cassin, École Maternelle et Élémentaire, Institut National des Jeunes Sourds, École primaire publique Frères Voisin, École Maternelle Privée Montessori Rive Gauche, Lycée général Victor Duruy, École primaire, Lycée professionnel Gustave Eiffel, Collège Paul Gauguin, Lycée Edgar Quinet, École maternelle Cour des Noues, Section d'enseignement professionnel du Lycée polyvalent Fresnel, École Maternelle et Élémentaire Aqueduc, École Élémentaire Eugène Varlin, École Maternelle et Élémentaire Louis Blanc, Collège Georges Brassens, École Élémentaire et Maternelle des Trois Bornes, École Maternale et Élémentaire Parmentier, École Sainte-Elisabeth, Cours Hattemer (École secondaire privée), École Robert Estienne, École Saint-Pierre de Chaillot, Collège Aimé Césaire, Collège Jean Moulin, École Élémentaire Severo, Lycée professionnel Erik Satie, Collège Alphonse Daudet, Collège François Couperin, Lycée général Charlemagne, Collège Pierre Alviset, École Élémentaire Gerty-Archimède, Collège Jean François Oeben, École élémentaire privée Saint-Michel de Picpus, Groupe Scolaire Fénelon Sainte-Marie, Lycée Condorcet, Collège Vincent d'Indy, Collège des Écossais, Lycée polyvalent Elisa Lemonnier, École Primaire La Providence - Collège et Lycée La Tour, École primaire, Lycée général et technologique Passy-Saint-Honoré, Collège privé Rocroy Saint-Vincent-de-Paul, École primaire privée Saint-Vincent-de-Paul, Collège-Lycée Lamartine, École élémentaire Dussoubs, Collège Thomas Mann, École Élémentaire Belzunce, École élémentaire, Section d'enseignement professionnel du Lycée polyvalent Lucas de Nehou, École du Mont Cenis, École publique Sainte-Isaure, Collège et Lycée Jacques Decour, Collège Bossuet - Notre-Dame, Lycée Bossuet - Notre-Dame, École des Enfants du spectacle, École maternelle, École élémentaire, École primaire, École maternelle, Lycée polyvalent Jacques Monod, École maternelle, Groupe scolaire, École primaire, École primaire, Collège Raymond-Queneau, Annexe du collège Pierre-Alviset, École primaire, École maternelle, École maternelle, École élémentaire Levert, Lycée Théophile Gautier, École Notre-Dame-de-Sion, École Sainte-Marie, Annexe du lycée Maximilien-Vox, Lycée Carcado-Saisseval, Collège et Lycée Saint-Sulpice, Institut Sainte-Geneviève, École élémentaire, École maternelle, École élémentaire, École Maternelle et Élementaire Publique Vandrezanne, Groupe Scolaire Privé Saint-Vincent-de-Paul, École Élémentaire Ricaut, École Maternelle Ricaut, École nationale de chimie physique et biologie de Paris, Groupe scolaire Saint-Jean de Montmartre, École élémentaire Belleville, Collège Françoise Dolto, Collège Lycée Stéphane Mallarmé, École Primaire Pouchet, École polyvalente, Collège Boris Vian, École élémentaire Ferdinand Flocon, École élémentaire Hermel, Lycée Colbert, École élémentaire Gerbert, École primaire Primo Levi, École élémentaire Buffault, Collège Jules Verne, École Élémentaire, École élémentaire, École maternelle Roquette, École maternelle Popincourt, Lycée professionnel Marcel Deprez, École élémentaire Étienne Dolet, École maternelle, Lycée Carnot, Lycée général et technologique Voltaire, École maternelle et élémentaire Louis-Blanc, Lycée général Claude Monet, École élémentaire Cavé, École maternelle Saint-Luc, École René Binet, École et Collège Privés Saint-Germain de Charonne, École élémentaire des Pyrénées, École privée de la Providence, École polyvalente Champagne, École maternelle Richomme, Collège Georges Clemenceau, École primaire, Groupe scolaire Jeanne d'Arc, École Saint-Éloi, Collège privé Sainte-Clotilde, École Saint-Éloi, École primaire Blanche, École élémentaire, Collège Lycée Saint-Louis, Groupe scolaire Milton, École Notre-Dame de Lorette, École primaire Pommard, École élémentaire, École élémentaire, École élémentaire, Annexe du Lycée Fénelon, École maternelle Saint-André des Arts, Lycée polyvalent Lucas de Nehou, École élémentaire privée Sainte-Clotilde, Lycée privé catholique Fénelon-Sainte-Marie, Institut de Physique du Globe de Paris, École Suzanne Valadon, École primaire d'application Houdon, École Élémentaire Asseline, École élémentaire Jean-François Lépine, École maternelle Charlemagne, École élémentaire Pierre Budin, Collège École Decroly, École Élémentaire Mairie de Paris, École Varet, Collège Jules Romains, École Maternelle Saint-Dominique, École maternelle Roquepine, École Monceau, ENSCI - Les Ateliers, École primaire Tournelles, École primaire, Collège Roland Dorgelès, Institut de l'Assomption (École secondaire privée, École Primaire, École Primaire, École Active bilingue Lamartine, École Primaire, École primaire, École primaire d'application, École primaire, École élémentaire privée du Saint-Esprit, Collège Guy Flavien, École maternelle, Cité Scolaire Henri Bergson, Lycée général et technologique jacquard, Lycée polyvalent l'Initiative, École élémentaire privée Saint-Marcel, Collège André Citroën, École maternelle Ballard, École primaire Balard, École élémentaire de la Guadeloupe, Lycée polyvalent privé Saint-Nicolas, Conservatoire municipal du 13ème Maurice Ravel, Collège Condorcet, Collège Bernard Palissy, École maternelle, Écoles Grégoire-Ferrandi CCIP (École secondaire professionnelle privée), École Joseph de Maistre, Collège Antoine Coysevox, Lycée Professionnel Étienne Dolet, Lycée Turgot, École élémentaire Philippe de Girard, École Polyvalente du Moulin de la Pointe, École primaire, École maternelle Alphonse Baudin, Collège Paul Verlaine, Ateliers des beaux-arts de la ville de Paris - Centre Sévigné, École Primaire Fagon, École maternelle Vincent Auriol, École primaire, École maternelle Sarrette A, École primaire privée Saint-Joseph, Groupe scolaire Saint-Jean-Gabriel, Collège privé Thérèse Chappuis, Lycée général privé Saint-Thomas d'Aquin, Lycée professionnel Beaugrenelle, École primaire, École élémentaire privée Fidès, École Maternelle des Longues Raies, École élémentaire Belleville H, Collège Moulin des Prés, École maternelle Bobillot, Collège et Lycée Hélène Boucher, École du Soleil, École privée catholique de la Trinité, École polyvalente Olivier Métra, École élémentaire Olivier Métra, EREA Édith Piaf, École maternelle Retrait, École élémentaire Pyrénées Eb, École élémentaire Pyrénées, Collège et lycée privés Sainte-Louise, École primaire privée Sainte-Louise, École maternelle Darius Milhaud, École maternelle Manin, École élémentaire Manin Eb, École polyvalente Émile Duployé, École Saint-Paul, École maternelle 7e Art, École élémentaire Tourelles, École maternelle Championnet D, École élémentaire Championnet, École élémentaire Claude Vellefaux, École maternelle Gambetta, Lycée professionnel Théophile Gautier, École élémentaire Charenton, École élémentaire 11 Lesseps, École élémentaire 9 Lesseps, Collège Robert Doisneau, École maternelle Amandiers, École élémentaire Amandiers, Collège Alain Fournier, École maternelle Reuilly X, École élémentaire Reuilly A, École élémentaire Reuilly B, Rocroy Saint-Vincent-de-Paul, École primaire Cugnot, Collège Daniel Mayer, École Massillon, Lycée Bonaparte +37 +ruins and 55.6293002 -2.4084288 +48.8707489 2.3907280, 48.8506016 2.3432743, 48.8459665 2.3500377, 48.8535359 2.3481924, 48.8450745 2.3528309 +1565 and Mont Aigoual, 845, 1685, 1179 and Roc de Peyre, 221.79 and Dent de Marcoule, 702.71, 1067.87 and Mont Mimat, 1101.8, 1417.39 and Mont Grand, 620 and Guidon du Bouquet, 398 and Le Coutach, 470 and Leiris, 848 and Mont Saint-Baudille, 582 and Pioch de Briandes, 677 and Cap Nègre, 685 and Le Moulières, 786 and Mont Méguillou, 738 and La Fréguière, 521 and Pioch Lintil, 701 and Puech Caubel, Col de Lasclier, 1562 and Le Rocher des Laubies, 1503 and Le Moure de la Gardille, 1680 and Pic Cassini, 1247 and Mont Gargo, 1001 and Mont Milan, 752 and Roc Castel, 864 and Pic d'Anjeau, 940 and La Seranne, 1551 and Truc de Fortunio, 1366 and Saint-Guiral, 822 and Mauripe, Sauco Roundo, 1123.5 and Sommet de l'Espinouse, 703.53 and Quiocs, Gratassac, 914 and Pic de la Tourette, 1271 and Puech Saint-Geniez, 1469 and Signal de Mailhebiau, Truc du Coucut, 330 and La Pourcaresse, 1008 and Le truc de Grèzes, 325 and Le Suquet, 1168 and Le Truc de Viala, 1192 and Pic d'Usclat, 1203.8, 1174, 1211.1 and Le Tourrel, 1127.7, 1106.55 and Mont Chabrio, 1657.41 and Signal des Laubies, 1674.3, 1031.1 and La Chaumette, 1421.47 and Signal du Bouges, 662 and Pic Saint-Loup, 1421 and Montagne du Liconès, 1151 and Puech d'Alluech, 1057.6, 1699.27 and Signal de Finiels, 525 and Mont Haut, 782 and Peyre Martine, 772 and Pic de la Caumette, Puech Bartelié, 1276 and Places Hautes, 1324, 1268 and Le Barthas, 1233.2 and Esquino d'Aze, 1075.97 and Serre de Pauparelle, 1152.68, 1219.84, 1239.07, 695 and Signal de Saint Pierre, 1688, 815 and Mont Brion +609 +yes +31 +49.4296874 8.6826637, 49.4279757 8.6835849, 49.4147764 8.6710359, 49.3974030 8.6486853, 49.3977437 8.6485764, 49.4045638 8.6759283, 49.3746833 8.6826514, 49.3790412 8.6689354, 49.3792964 8.6699345, 49.4048779 8.6827341, 49.4172306 8.6824331, 49.4227158 8.6483350, 49.3840770 8.6710133, 49.3809325 8.6701888, 49.4168755 8.6790034, 49.3992315 8.6710140, 49.4228152 8.6504004 +yes +683 and 55.9340759 -3.0969078, 55.9520383 -3.1884477, 55.9479503 -3.1917952, 55.9253583 -3.4147034, 55.9245412 -3.3113504, 55.9530458 -3.2143273, 55.9838701 -3.4034761, 55.9996939 -3.3883352, 55.9478203 -3.2081650, 55.9387180 -3.2183133, 55.9400382 -3.2218792, 55.9448047 -3.2121910, 55.9455627 -3.2319955, 55.9536641 -3.2412247, 55.9794131 -3.3762107, 55.9393979 -3.2226079, 55.9879261 -3.3873321, 55.9339735 -3.2242241, 55.9812940 -3.3771341, 55.9485590 -3.1984660, 55.9215875 -3.3071576, 55.9169023 -3.2880468, 55.9233928 -3.2495641, 55.9172106 -3.2788656, 55.9203287 -3.4338967, 55.9136481 -3.2924112, 55.9222765 -3.3173383, 55.9245302 -3.4143898, 55.9342483 -3.2886138, 55.9185125 -3.2718794, 56.0005355 -3.4042125, 56.0005266 -3.4040011, 55.9115356 -3.3190780, 55.9119727 -3.3136012, 55.9169161 -3.2879655, 55.9216210 -3.3072178, 55.9187028 -3.3241409, 55.9194331 -3.3250368, 55.9201830 -3.2569089, 55.9260327 -3.3234503, 55.9201440 -3.3153742, 55.9172846 -3.2758018, 55.9127039 -3.3185766, 55.9178228 -3.2883067, 55.9177320 -3.2883616, 55.9177084 -3.2885519, 55.9168914 -3.2881838, 55.9208989 -3.3111331, 55.9235850 -3.2498898, 55.9234055 -3.2496291, 55.9234261 -3.3789665, 55.9284947 -3.3843026, 55.9347497 -3.3921486, 55.9399416 -3.4022022, 55.9424898 -3.4014836, 55.9173668 -3.2846812, 55.9290815 -3.1622154, 55.9287446 -3.1606910, 55.9191012 -3.2651146, 55.9258250 -3.2453116, 55.9195055 -3.2619115, 55.9282449 -3.2552516, 55.9383057 -3.2503683, 55.9415244 -3.1005066, 55.9487280 -3.1868685, 55.9659134 -3.2652795, 55.9681946 -3.2394189, 55.9750105 -3.1786523, 56.0005670 -3.4038864, 56.0005711 -3.4043334, 55.9386987 -3.3913489, 55.9727141 -3.1970524, 55.9264863 -3.4288285, 55.9603081 -3.2107045, 55.9363357 -3.2986518, 55.9277719 -3.3059687, 55.9162943 -3.2965876, 55.9198806 -3.3512702, 55.9625415 -3.2038104, 55.9623749 -3.2065598, 55.9736475 -3.1827669, 55.9514109 -3.3422820, 55.9675354 -3.1918069, 55.9688791 -3.1950694, 55.9725812 -3.1878462, 55.9666580 -3.2682414, 55.9764203 -3.1968704, 55.9757382 -3.1965357, 55.9709295 -3.2290845, 55.9606932 -3.2487359, 55.9536682 -3.1872515, 55.9565250 -3.2442832, 55.9559532 -3.2438904, 55.9203523 -3.3017825, 55.9245917 -3.4143875, 55.9202953 -3.4338960, 55.9689404 -3.1949893, 55.9628484 -3.2000133, 55.9696691 -3.2005994, 55.9679404 -3.1368303, 55.9338645 -3.2867061, 55.9245026 -3.2462826, 55.9245495 -3.2462640, 55.9232137 -3.2481025, 55.9303574 -3.2858444, 55.9325097 -3.2743332, 55.9192286 -3.1386957, 55.9197007 -3.1380226, 55.9137536 -3.1474495, 55.9156308 -3.2780598, 55.9272696 -3.2320395, 55.9515857 -3.2367549, 55.9430287 -3.2292834, 55.9149327 -3.2153760, 55.9126347 -3.2166853, 55.9403100 -3.3172931, 55.9402068 -3.3174470, 55.9715640 -3.2396371, 55.9253227 -3.2038994, 55.9130257 -3.2893735, 55.9119796 -3.2938532, 55.9137657 -3.2863134, 55.9409626 -3.2385035, 55.9409129 -3.2364482, 55.9614256 -3.2177089, 55.9563828 -3.1500518, 55.9567793 -3.1501599, 55.9640660 -3.1617691, 55.9711047 -3.1519140, 55.9700990 -3.1476178, 55.9699440 -3.1474063, 55.9794652 -3.1720778, 55.9791423 -3.1705469, 55.9776508 -3.1930509, 55.9271391 -3.1870984, 55.9312243 -3.1716568, 55.9217665 -3.1317079, 55.9196528 -3.1357238, 55.9452392 -3.0932492, 55.9763746 -3.1700963, 55.9727144 -3.2084850, 55.9731806 -3.2057712, 55.9458977 -3.2359608, 55.9476217 -3.2333004, 55.9890944 -3.3836060, 55.9421078 -3.2471068, 55.9892088 -3.3844692, 55.9787645 -3.1700105, 55.9447609 -3.2434052, 55.9498104 -3.2219947, 55.9579656 -3.2087925, 55.9368513 -3.2372248, 55.9659135 -3.1340343, 55.9672533 -3.1958655, 55.9519232 -3.2180493, 55.9148733 -3.2566448, 55.9889521 -3.3925230, 55.9347488 -3.3917488, 55.9357768 -3.2273343, 55.9346242 -3.2323823, 55.9412319 -3.2280853, 55.9501324 -3.2294339, 55.9494024 -3.2030628, 55.9592735 -3.2449240, 55.9637680 -3.2418855, 55.9551419 -3.4188844, 55.9303919 -3.3643927, 55.9374488 -3.3332089, 55.9792112 -3.3468255, 55.9261171 -3.4015537, 55.9260108 -3.4015503, 55.9287081 -3.4030907, 55.9520377 -3.1910636, 55.9574350 -3.4170582, 55.9574829 -3.4172555, 55.9643486 -3.4027677, 55.9644590 -3.4027248, 55.9275914 -3.3074492, 55.9614168 -3.1711787, 55.9188285 -3.2753539, 55.9124646 -3.2769931, 55.9367364 -3.1436706, 55.9352124 -3.1425254, 55.9253309 -3.2094851, 55.9509409 -3.2218060, 55.9516114 -3.2220274, 55.9443411 -3.1018614, 55.9475141 -3.2014767, 55.9523425 -3.2166808, 55.9329088 -3.2359326, 55.9316744 -3.2342577, 55.9314312 -3.2338362, 55.9197142 -3.2569063, 55.9119663 -3.2594709, 55.9178158 -3.2736164, 55.9305915 -3.2544337, 55.9172446 -3.2773680, 55.9501605 -3.1999414, 55.9607015 -3.1685085, 55.9662929 -3.1561624, 55.9547517 -3.1871067, 55.9580989 -3.1581939, 55.9663264 -3.1333091, 55.9409672 -3.2238982, 55.9344797 -3.2675638, 55.9293469 -3.2915960, 55.9287029 -3.3161849, 55.9408387 -3.4098588, 55.9275707 -3.3441434, 55.9274924 -3.2238424, 55.9600201 -3.3539411, 55.9641042 -3.3163667, 55.9355624 -3.2470808, 55.9719076 -3.2186281, 55.9336243 -3.2302100, 55.9388897 -3.2376855, 55.9389643 -3.2370370, 55.9129956 -3.2891261, 55.9396630 -3.3213183, 55.9168698 -3.2882590, 55.9340400 -3.0971256, 55.9439226 -3.3293194, 55.9505782 -3.1643798, 55.9364742 -3.1442593, 55.9364251 -3.1442736, 55.9251316 -3.4146061, 55.9254779 -3.4147399, 55.9516309 -3.1916638, 55.9182088 -3.2391527, 55.9460274 -3.2355654, 55.9415224 -3.1008781, 55.9414721 -3.1006880, 55.9485231 -3.1092860, 55.9185755 -3.2543017, 55.9381683 -3.1188638, 55.9245837 -3.2400577, 55.9529526 -3.1871425, 55.9256057 -3.2110033, 55.9676469 -3.1938769, 55.9329461 -3.2747956, 55.9383632 -3.2504469, 55.9722254 -3.2146091, 55.9724552 -3.2119012, 55.9612213 -3.2440717, 55.9308244 -3.1518837, 55.9297330 -3.1533386, 55.9316562 -3.1507078, 55.9318814 -3.1463309, 55.9277241 -3.1234427, 55.9720619 -3.2015799, 55.9466747 -3.0987444, 55.9575057 -3.1234489, 55.9197247 -3.1913944, 55.9244601 -3.3114765, 55.9252699 -3.3105658, 55.9396441 -3.3214611, 55.9241965 -3.3130785, 55.9192182 -3.3037407, 55.9198673 -3.3046957, 55.9258669 -3.2241737, 55.9413787 -3.0870066, 55.9449791 -3.0819470, 55.9455686 -3.0809735, 55.9673916 -3.4106960, 55.9334961 -3.4103614, 55.9398933 -3.4112294, 55.9659972 -3.3621260, 55.9346898 -3.4222766, 55.9638514 -3.1833342, 55.9225607 -3.4008937, 55.9377687 -3.0829248, 55.9563240 -3.1167910, 55.9553208 -3.1347976, 55.9523666 -3.1216397, 55.9212101 -3.3414649, 55.9396282 -3.4022402, 55.9387262 -3.4018519, 55.9121634 -3.2269803, 55.9793103 -3.3761870, 55.9617180 -3.4132830, 55.9617222 -3.4130523, 55.9386700 -3.2294127, 55.9408297 -3.2281101, 55.9314045 -3.2266827, 55.9374211 -3.3332788, 55.9719867 -3.1819929, 55.9729155 -3.1797103, 55.9781114 -3.2484720, 55.9776632 -3.1715933, 55.9867062 -3.3795502, 55.9129316 -3.2587696, 55.9481947 -3.1326994, 55.9496979 -3.1282542, 55.9505798 -3.1256483, 55.9315629 -3.0896016, 55.9316842 -3.0896474, 55.9524166 -3.1898362, 55.9356573 -3.0894033, 55.9357351 -3.0893738, 55.9357644 -3.0895096, 55.9614118 -3.4422153, 55.9472029 -3.4080139, 55.9470811 -3.4083701, 55.9471370 -3.4081966, 55.9219763 -3.4203941, 55.9201516 -3.3152932, 55.9222998 -3.3172749, 55.9517230 -3.1626551, 55.9195263 -3.1315612, 55.9204725 -3.1296564, 55.9271898 -3.2322404, 55.9752701 -3.1721362, 55.9369948 -3.1150582, 55.9498020 -3.1279042, 55.9335311 -3.2460168, 55.9655017 -3.1987663, 55.9414288 -3.2607445, 55.9492160 -3.2339763, 55.9492137 -3.2340282, 55.9265981 -3.3165664, 55.9401509 -3.1051771, 55.9185615 -3.2564239, 55.9182467 -3.2558059, 55.9255939 -3.2592967, 55.9212342 -3.3024056, 55.9203734 -3.3017859, 55.9204463 -3.3018734, 55.9627829 -3.3296636, 55.9621338 -3.2357562, 55.9550072 -3.1721666, 55.9554953 -3.1694437, 55.9557105 -3.1678403, 55.9198790 -3.2500668, 55.9491095 -3.1886633, 55.9261709 -3.2650765, 55.9483181 -3.1921400, 55.9147477 -3.3175730, 55.9347539 -3.0927986, 55.9390304 -3.3915516, 55.9388624 -3.3914362, 55.9475607 -3.2661403, 55.9309334 -3.3150690, 55.9331552 -3.3165436, 55.9264412 -3.2440999, 55.9545824 -3.1236067, 55.9502050 -3.1185776, 55.9503672 -3.1183641, 55.9502919 -3.1184525, 55.9514019 -3.1213054, 55.9515864 -3.1214448, 55.9337041 -3.3712199, 55.9347207 -3.2664128, 55.9384573 -3.2506124, 55.9781360 -3.2042135, 55.9384983 -3.1011659, 55.9383994 -3.1013350, 55.9360595 -3.0997430, 55.9360181 -3.0994647, 55.9352687 -3.0936685, 55.9301069 -3.2856870, 55.9277603 -3.3107484, 55.9277821 -3.3107229, 55.9604056 -3.1691746, 55.9287128 -3.3160778, 55.9385531 -3.2456125, 55.9203567 -3.2494068, 55.9523112 -3.2197346, 55.9410985 -3.2191428, 55.9800561 -3.1685204, 55.9186191 -3.2133230, 55.9197518 -3.1694474, 55.9195114 -3.1713437, 55.9189800 -3.1809284, 55.9200112 -3.1691248, 55.9201390 -3.1981185, 55.9191575 -3.2099986, 55.9203639 -3.1969606, 55.9265630 -3.1932263, 55.9188974 -3.1826016, 55.9189592 -3.1842633, 55.9202821 -3.1940116, 55.9398079 -3.2219646, 55.9784752 -3.2465952, 55.9789044 -3.2447848, 55.9679775 -3.1369332, 55.9717821 -3.1844100, 55.9717093 -3.1860244, 55.9717076 -3.1875125, 55.9681145 -3.1895803, 55.9441698 -3.2693328, 55.9465305 -3.2693949, 55.9453130 -3.2700572, 55.9441175 -3.2720063, 55.9442882 -3.1018500, 55.9399673 -3.2399943, 55.9394933 -3.2453748, 55.9559483 -3.1383567, 55.9572590 -3.1673552, 55.9374126 -3.4329432, 55.9426504 -3.4419958, 55.9516244 -3.1908922, 55.9514059 -3.1888093, 55.9150903 -3.3211208, 55.9147213 -3.3164547, 55.9670658 -3.1880808, 55.9843921 -3.4038630, 55.9733736 -3.3721666, 55.9615149 -3.4204840, 55.9566510 -3.4260417, 55.9565322 -3.4260555, 55.9151194 -3.2550825, 55.9122549 -3.2233845, 55.9364645 -3.0866076, 55.9114742 -3.3289109, 55.9622791 -3.2012126, 55.9421801 -3.2471095, 55.9354120 -3.1193612, 55.9393811 -3.2455628, 55.9383946 -3.2504900, 55.9382808 -3.2503344, 55.9303232 -3.2858247, 55.9277363 -3.3059625, 55.9293125 -3.2915775, 55.9407555 -3.1334453, 55.9536468 -3.1183721, 55.9521945 -3.1196977, 55.9523374 -3.1199969, 55.9389764 -3.2564267, 55.9343717 -3.3380326, 55.9336909 -3.3354767, 55.9403251 -3.1711216, 55.9559244 -3.1689031, 55.9457633 -3.1036022, 55.9471038 -3.1039051, 55.9501220 -3.1187317, 55.9512778 -3.1212874, 55.9506598 -3.1233359, 55.9372017 -3.1058578, 55.9553192 -3.1595172, 55.9524698 -3.3734976, 55.9650413 -3.2056001, 55.9639941 -3.2050491, 55.9640506 -3.2037879, 55.9644677 -3.2053237, 55.9768122 -3.1695301, 55.9460367 -3.0786225, 55.9641866 -3.2051688, 55.9698896 -3.2368187, 55.9414313 -3.0989766, 55.9784045 -3.1624012, 55.9436659 -3.0898885, 55.9714931 -3.1855918, 55.9644884 -3.2607345, 55.9651737 -3.3161001, 55.9528270 -3.1190826, 55.9474170 -3.4010655, 55.9531953 -3.4004826, 55.9496106 -3.2250631, 55.9360819 -3.0998763, 55.9869438 -3.3819439, 55.9116079 -3.2325243, 55.9499764 -3.4058056, 55.9495739 -3.4048963, 55.9439064 -3.4138957, 55.9254219 -3.4280602, 55.9255253 -3.4280577, 55.9793014 -3.1868073, 55.9196416 -3.2758298, 55.9175481 -3.2816550, 55.9211105 -3.4253433, 55.9206868 -3.4296551, 55.9214106 -3.3084104, 55.9185066 -3.2720477, 55.9301289 -3.1759929, 55.9171117 -3.3421022, 55.9715066 -3.2804764, 55.9714808 -3.2806451, 55.9712166 -3.2803296, 55.9888951 -3.3973524, 55.9795806 -3.3964157, 55.9340984 -3.4004483, 55.9339794 -3.4004240, 55.9523329 -3.1219744, 55.9523473 -3.1218286, 55.9237523 -3.2486106, 55.9667609 -3.1986965, 55.9629385 -3.4032441, 55.9623104 -3.4309700, 55.9612817 -3.2180808, 55.9328281 -3.2746596, 55.9328551 -3.2746954, 55.9329730 -3.2748287, 55.9394512 -3.2452451, 55.9431085 -3.2293645, 55.9430025 -3.2292568, 55.9409323 -3.2384857, 55.9430616 -3.2293168, 55.9395239 -3.2453984, 55.9393795 -3.2453481, 55.9394029 -3.2453236, 55.9323864 -3.2871966, 55.9427303 -3.4223013, 55.9819463 -3.1774723, 55.9172828 -3.2148269, 55.9733364 -3.1998767, 55.9387086 -3.4018441, 55.9347390 -3.4004629, 55.9347350 -3.4006735, 55.9408977 -3.3783402, 55.9418945 -3.3744896, 55.9370550 -3.3589671, 55.9369534 -3.3590018, 55.9226886 -3.1659385, 55.9289089 -3.2483770, 55.9254934 -3.4147419, 55.9596457 -3.1649121, 55.9518333 -3.2180730, 55.9713657 -3.3285830, 55.9139843 -3.3266712, 55.9138724 -3.3283900, 55.9138281 -3.3289507, 55.9404913 -3.2132648, 55.9563336 -3.3977999, 55.9702651 -3.3747743, 55.9793990 -3.3747495, 55.9795032 -3.3747767, 55.9402898 -3.3231801, 55.9404637 -3.3353169, 56.0028482 -3.4137500, 56.0027732 -3.4134188, 55.9575192 -3.4174461, 55.9551170 -3.4187252, 55.9412112 -3.2385524, 55.9395609 -3.2454472, 55.9433784 -3.2295944, 55.9415382 -3.3356085, 55.9761578 -3.3786363, 55.9409548 -3.4098374, 55.9206332 -3.3019882, 55.9867511 -3.3817443, 55.9867527 -3.3819155, 55.9865602 -3.3817051, 55.9203199 -3.1339112, 55.9300778 -3.2856656, 55.9434087 -3.2296013, 55.9291865 -3.2914547, 55.9324790 -3.2743161, 55.9384884 -3.2506410, 55.9291523 -3.2914405, 55.9410200 -3.2385372, 55.9395943 -3.2454714, 55.9404906 -3.3353136, 55.9412402 -3.2385785, 55.9399507 -3.2400017, 55.9409900 -3.2385210, 55.9347120 -3.2664838, 55.9410979 -3.2385587, 55.9117266 -3.2935809, 55.9173632 -3.2824005, 55.9156210 -3.2832169, 55.9565035 -3.4260650, 55.9566866 -3.4260323, 55.9330752 -3.2518749, 55.9195813 -3.1706208, 55.9352633 -3.0935375, 55.9347372 -3.0928218, 55.9171429 -3.1435645, 55.9174253 -3.1426070, 55.9509169 -3.4494853, 55.9501752 -3.1186403, 55.9502514 -3.1185072, 55.9594452 -3.3187542, 55.9389730 -3.2630427, 55.9380195 -3.2629562, 55.9386264 -3.2629284, 55.9388165 -3.2630172, 55.9734337 -3.1921970, 55.9481275 -3.2086529, 55.9486679 -3.2080093, 55.9413168 -3.2110594, 55.9128992 -3.3173628, 55.9142511 -3.3254009, 55.9562630 -3.2104579, 55.9710708 -3.3853507, 55.9712667 -3.3862514, 55.9514557 -3.1889452, 55.9527669 -3.1872478, 55.9639844 -3.2293081, 55.9431363 -3.2293927, 55.9431629 -3.2294198, 55.9432761 -3.2295356, 55.9432343 -3.2294925, 55.9431947 -3.2294521, 55.9347006 -3.2665504, 55.9563108 -3.2104273, 55.9198136 -3.1910370, 55.9198330 -3.1912323, 55.9519638 -3.1893881, 55.9513717 -3.1889027, 55.9444560 -3.2438143, 55.9276018 -3.1242863, 55.9193447 -3.3215440, 55.9401029 -3.2459404, 55.9400509 -3.2458788, 55.9144679 -3.3441278, 55.9199272 -3.3046850, 55.9212859 -3.3299990, 55.9556775 -3.1678207, 55.9549782 -3.1721413, 55.9554652 -3.1694213, 55.9550351 -3.1719805, 55.9563502 -3.1500510, 55.9552887 -3.1595205, 55.9550418 -3.1721874, 55.9231423 -3.1317251, 55.9263765 -3.1245977, 55.9320392 -3.1186143, 55.9587192 -3.3919290, 55.9230920 -3.1288480, 55.9264003 -3.1245253, 55.9238791 -3.1301288, 55.9249092 -3.1317835, 55.9574633 -3.1234478, 55.9294189 -3.4153351, 55.9279524 -3.4223584, 55.9450755 -3.0796893, 55.9442484 -3.1018255, 55.9699278 -3.1455846, 55.9881960 -3.3897624, 55.9392951 -3.3235462, 55.9392655 -3.3236898, 55.9231539 -3.2480582, 55.9164084 -3.1849654, 55.9177937 -3.1846644, 55.9240254 -3.2490676, 55.9370530 -3.1415506, 55.9517467 -3.2180959, 55.9446512 -3.0880046, 55.9121932 -3.1484610, 55.9239852 -3.3778710, 55.9148989 -3.2814860, 55.9661699 -3.3763106, 55.9469959 -3.1020369, 55.9600478 -3.3539062, 55.9660032 -3.3620577, 55.9334622 -3.4103647, 55.9340641 -3.4004428, 55.9120032 -3.2938699, 55.9137971 -3.2863402, 55.9130615 -3.2893982, 55.9149233 -3.2814984, 55.9408433 -3.2281719, 55.9195311 -3.2619429, 55.9258506 -3.2453444, 55.9386774 -3.2294745, 55.9316864 -3.2343155, 55.9236107 -3.2499213, 55.9643068 -3.3786468, 55.9513043 -3.1888663, 55.9293834 -3.4153028, 55.9264502 -3.4287984, 55.9279123 -3.4223325, 55.9339469 -3.4004134, 55.9932311 -3.4213582, 55.9851500 -3.4224768, 55.9845616 -3.4222185, 55.9794973 -3.3962181, 55.9147359 -3.2813285, 55.9506990 -3.1783969, 55.9902549 -3.4029695, 55.9513642 -3.1213511, 55.9436387 -3.0899418, 55.9776667 -3.1692630, 55.9773820 -3.1693259, 55.9772501 -3.1693673, 55.9766189 -3.1695907, 55.9777727 -3.1692450, 55.9774930 -3.1693036, 55.9996839 -3.3884053, 55.9869295 -3.3820116, 55.9256594 -3.2520596, 55.9346516 -3.4223004, 55.9522338 -3.4284125 +144 +italian +43 +413 +394 and 53.2306579 10.4274344, 53.2514965 10.3906909, 53.2381958 10.3944837, 53.2358185 10.4619107, 53.2344519 10.4427159, 53.2482281 10.4264291, 53.2376960 10.4325560, 53.2464094 10.4325320, 53.2463632 10.4288812, 53.2464306 10.4307655, 53.2466255 10.4273478, 53.2470137 10.4284433, 53.2477825 10.4302354, 53.2353691 10.4518885, 53.2353999 10.4486849, 53.2354548 10.4510422, 53.2360726 10.4487415, 53.2361414 10.4516016, 53.2364851 10.4501529, 53.2364974 10.4521568, 53.2374203 10.4521229, 53.2374681 10.4505104, 53.2324589 10.4494652, 53.2332900 10.4491819, 53.2336333 10.4480214, 53.2338477 10.4502845, 53.2339187 10.4459007, 53.2342824 10.4473529, 53.2347052 10.4496245, 53.2374793 10.4489675, 53.2071745 10.4381306, 53.2594390 10.4168953, 53.2557457 10.4265304, 53.2557575 10.4282082, 53.2557160 10.4301049, 53.2557182 10.4319373, 53.2556659 10.4336625, 53.2556725 10.4354274, 53.2555984 10.4369689, 53.2552274 10.4297702, 53.2567749 10.4250120, 53.2557886 10.4248316, 53.2547174 10.4246533, 53.2538933 10.4233900, 53.2553121 10.4238026, 53.2562437 10.4240312, 53.2404791 10.4262237, 53.2429519 10.4008019, 53.2480010 10.4868028, 53.2748772 10.4279071, 53.2760590 10.4277894, 53.2697006 10.4281536, 53.2723907 10.4272186, 53.2749561 10.4189260, 53.2812663 10.4225674, 53.2812786 10.4231167, 53.2576784 10.4677211, 53.2578471 10.4649552, 53.2580921 10.4710561, 53.2584940 10.4720382, 53.2585333 10.4636309, 53.2591360 10.4753109, 53.2593004 10.4665742, 53.2596843 10.4692332, 53.2599695 10.4748172, 53.2599982 10.4673232, 53.2600019 10.4715583, 53.2600305 10.4731543, 53.2606052 10.4703320, 53.2609464 10.4587271, 53.2611048 10.4647618, 53.2612997 10.4707444, 53.2613988 10.4599940, 53.2616182 10.4682951, 53.2617010 10.4647235, 53.2619134 10.4613162, 53.2624884 10.4602395, 53.2628284 10.4619872, 53.2632944 10.4630635, 53.2636301 10.4641984, 53.2677387 10.4671458, 53.2688701 10.4648114, 53.2476784 10.4310532, 53.2620616 10.4431441, 53.2627637 10.4434730, 53.2631120 10.4487988, 53.2466525 10.4367183, 53.2470863 10.4350133, 53.2423876 10.4420320, 53.2613938 10.4401269, 53.2569745 10.4269350, 53.2461399 10.4438514, 53.2524395 10.4301336, 53.2472738 10.4442136, 53.2507096 10.4062956, 53.2511739 10.4045475, 53.2518601 10.4079106, 53.2474685 10.4101348, 53.2476602 10.4100841, 53.2478879 10.4090087, 53.2483319 10.4089512, 53.2488889 10.4089334, 53.2491268 10.4089370, 53.2493605 10.4089617, 53.2503923 10.4098882, 53.2513612 10.4091098, 53.2519746 10.4091802, 53.2496895 10.4273813, 53.2751411 10.3914676, 53.2754405 10.3930396, 53.2753134 10.3903724, 53.2758660 10.3923041, 53.2767893 10.3927209, 53.2636307 10.4245916, 53.2646531 10.4167896, 53.2661977 10.4171066, 53.2664837 10.4159812, 53.2668560 10.4148126, 53.2674026 10.4135964, 53.2708861 10.4183448, 53.2498316 10.4454009, 53.2451127 10.4580505, 53.2447753 10.4496377, 53.2444416 10.4521675, 53.2466541 10.4481968, 53.2439985 10.4511707, 53.2433365 10.4529522, 53.2450298 10.4511910, 53.2508028 10.4320024, 53.2493169 10.4424974, 53.2484897 10.4445314, 53.2425054 10.4050319, 53.2431809 10.4118645, 53.2448429 10.4150692, 53.2434711 10.4097803, 53.2457985 10.4135773, 53.2439041 10.4080892, 53.2443070 10.4133285, 53.2334502 10.4193616, 53.2606051 10.4115429, 53.2608526 10.4090210, 53.2615042 10.4087478, 53.2617387 10.4096613, 53.2619464 10.4110216, 53.2621622 10.4084304, 53.2623548 10.4121160, 53.2629281 10.4085972, 53.2631305 10.4106459, 53.2647205 10.4091444, 53.2649416 10.4117421, 53.2662385 10.4061297, 53.2662434 10.4110725, 53.2664851 10.4092302, 53.2680052 10.4073621, 53.2709483 10.4062063, 53.2515483 10.4121280, 53.2515328 10.4109616, 53.2505232 10.4112946, 53.2477910 10.4117278, 53.2480514 10.4133703, 53.2604633 10.4017644, 53.2555883 10.3926045, 53.2614502 10.4013265, 53.2623791 10.4029792, 53.2431248 10.4511554, 53.2438666 10.4480715, 53.2592925 10.4092962, 53.2473935 10.4062501, 53.2473799 10.4075262, 53.2473916 10.4080959, 53.2474107 10.4052637, 53.2494840 10.4300953, 53.2481670 10.4346215, 53.2458125 10.4518070, 53.2439025 10.4768601, 53.2434731 10.4697735, 53.2470823 10.4613186, 53.2472460 10.4597458, 53.2482467 10.4079450, 53.2483432 10.4096472, 53.2484038 10.4101676, 53.2493813 10.4105157, 53.2467508 10.4063593, 53.2469707 10.4075598, 53.2473474 10.4079990, 53.2469673 10.4043045, 53.2500593 10.4078320, 53.2501555 10.4057429, 53.2500368 10.4082329, 53.2491048 10.4061063, 53.2504202 10.4086255, 53.2504100 10.4085736, 53.2503178 10.4082778, 53.2504601 10.4080188, 53.2500232 10.4084882, 53.2500749 10.4087996, 53.2503959 10.4087306, 53.2500906 10.4076015, 53.2501331 10.4078625, 53.2500632 10.4074607, 53.2468602 10.4400314, 53.2408081 10.4086237, 53.2384303 10.4044152, 53.2441643 10.4118430, 53.2458636 10.4067670, 53.2370206 10.4120269, 53.2388072 10.4118368, 53.2383343 10.4100362, 53.2464568 10.4091614, 53.2520457 10.4140117, 53.2463801 10.4161401, 53.2334051 10.4312145, 53.2356302 10.4249094, 53.2287405 10.4167992, 53.2343563 10.4263896, 53.2354748 10.4313973, 53.2354347 10.4262096, 53.2448327 10.4441934, 53.2470689 10.4280468, 53.2098814 10.4094226, 53.2270304 10.4055514, 53.2317482 10.4071928, 53.2259271 10.4070499, 53.2277424 10.4069142, 53.2235946 10.4057242, 53.2282035 10.4056925, 53.2368105 10.4578213, 53.2395337 10.4582663, 53.2309539 10.4419181, 53.2314967 10.4463242, 53.2308848 10.4492264, 53.2323355 10.4471542, 53.2272126 10.4439771, 53.2339035 10.4416727, 53.2306586 10.4606055, 53.2315243 10.4627457, 53.2320665 10.4588908, 53.2379440 10.4649316, 53.2338531 10.4562737, 53.2353182 10.4646314, 53.2360363 10.4647665, 53.2368752 10.4645020, 53.2338417 10.4550219, 53.2364360 10.4608447, 53.2355574 10.4632641, 53.2388126 10.4650372, 53.2375897 10.4637237, 53.2372645 10.4609571, 53.2372681 10.4666925, 53.2291945 10.4477457, 53.2300774 10.4458006, 53.2247784 10.4032230, 53.2458943 10.4092073, 53.2492415 10.4243569, 53.2495394 10.4257241, 53.2268354 10.3992910, 53.2415081 10.4414674, 53.2447042 10.4488951, 53.2591541 10.4228734, 53.2531193 10.4289225, 53.2536231 10.4312934, 53.2535919 10.4341019, 53.2530772 10.4329754, 53.2520964 10.4330445, 53.2503250 10.4439631, 53.2368841 10.3866655, 53.2377268 10.3860606, 53.2416417 10.3940583, 53.2376043 10.3810798, 53.2387823 10.3860177, 53.2367082 10.3912326, 53.2380630 10.3840673, 53.2378794 10.3826948, 53.2407555 10.4007535, 53.2404717 10.3997546, 53.2395929 10.3985328, 53.2458923 10.4400033, 53.2535244 10.4019801, 53.2633543 10.4045372, 53.2534711 10.4006830, 53.2549616 10.4062542, 53.2543851 10.4082661, 53.2543887 10.4060723, 53.2540093 10.4023440, 53.2573312 10.4009660, 53.2559564 10.4017902, 53.2533435 10.3995289, 53.2559452 10.3987908, 53.2570138 10.3927220, 53.2559204 10.3882040, 53.2561297 10.3964899, 53.2570467 10.3940277, 53.2569395 10.3955723, 53.2536801 10.3966334, 53.2531696 10.3988523, 53.2562339 10.3936391, 53.2568583 10.3913970, 53.2568318 10.3877182, 53.2684063 10.3867529, 53.2692811 10.3869036, 53.2694151 10.3814748, 53.2694886 10.3885844, 53.2695934 10.4026124, 53.2699408 10.3874623, 53.2701291 10.3838584, 53.2702473 10.4022888, 53.2703738 10.3817945, 53.2707057 10.3800640, 53.2708391 10.3853051, 53.2708483 10.3883143, 53.2711477 10.3786936, 53.2714200 10.3875657, 53.2714919 10.3866581, 53.2719613 10.3836590, 53.2720682 10.3912095, 53.2724827 10.3902882, 53.2731467 10.3941091, 53.2740632 10.3910205, 53.2741833 10.3828456, 53.2747945 10.3890874, 53.2748489 10.4015756, 53.2749890 10.3879326, 53.2753625 10.3796426, 53.2761921 10.3854859, 53.2762217 10.3814291, 53.2762904 10.3802840, 53.2775875 10.3842757, 53.2784923 10.3886185, 53.2789133 10.3858079, 53.2495203 10.3995705, 53.2493671 10.3858430, 53.2526476 10.4118866, 53.2517767 10.4001823, 53.2522463 10.3902101, 53.2500720 10.4011059, 53.2475169 10.4005259, 53.2484006 10.4021774, 53.2523889 10.4132605, 53.2469181 10.3963257, 53.2438651 10.4005927, 53.2446208 10.4024979, 53.2471780 10.3950082, 53.2467293 10.3940752, 53.2473055 10.4086941, 53.2444293 10.4038319, 53.2458461 10.4007459, 53.2472146 10.3937709, 53.2440361 10.4059309, 53.2447827 10.4016712, 53.2440611 10.4020762, 53.2832009 10.3964773, 53.2479075 10.4187359, 53.2538347 10.4354390, 53.2548627 10.4330521, 53.2570429 10.4150602, 53.2564388 10.4170875, 53.2552365 10.4159898, 53.2382359 10.3992805, 53.2390485 10.3985253, 53.2398936 10.4000290, 53.2376172 10.3929051, 53.2414340 10.4026714, 53.2312843 10.3957315, 53.2380081 10.3967438, 53.2331212 10.3964182, 53.2384392 10.3957472, 53.2354407 10.3993932, 53.2325225 10.3978456, 53.2388447 10.3997875, 53.2326260 10.3962404, 53.2560316 10.4156506, 53.2480744 10.3929536, 53.2518935 10.3930105, 53.2439921 10.3909494, 53.2436299 10.3904803, 53.2420695 10.3917720, 53.2435642 10.4066933, 53.2482778 10.3951370, 53.2265319 10.3979192, 53.2394682 10.4275377, 53.2350984 10.3864932, 53.2364395 10.3842833, 53.2336693 10.3958656, 53.2353473 10.3842978, 53.2360653 10.3868876, 53.2349954 10.3812279, 53.2350735 10.3855185, 53.2361762 10.3856308, 53.2502126 10.4025512, 53.2329777 10.3866801, 53.2367155 10.3891559, 53.2302152 10.3917581, 53.2496922 10.4032318, 53.2618812 10.4194258 +yes +1 +48.8428024 2.3024212, 48.8535124 2.3349428, 48.8496184 2.3521690, 48.8494725 2.3556898, 48.8502265 2.3482852, 48.8532985 2.3263609, 48.8542722 2.4004111, 48.8434181 2.2997690, 48.8477803 2.3019256, 48.8454862 2.3697712, 48.8504228 2.4065330, 48.8469227 2.2856922, 48.8452324 2.2978409, 48.8473002 2.3015819, 48.8455718 2.3018823, 48.8470055 2.2957760, 48.8491104 2.3034797, 48.8521565 2.3266646, 48.8515210 2.3266631, 48.8365442 2.2948691, 48.8380635 2.3056765, 48.8403553 2.3038378, 48.8523905 2.3413027, 48.8489616 2.3391032, 48.8643067 2.3348568, 48.8283951 2.3766208, 48.8921108 2.3751961, 48.8342726 2.3085148, 48.8700731 2.3844758, 48.8702594 2.3860980, 48.8715301 2.3874968, 48.8726817 2.3841494, 48.8690010 2.3856816, 48.8696528 2.3800869, 48.8725516 2.3783579, 48.8673835 2.3830489, 48.8949604 2.3648581, 48.8489374 2.3729446, 48.8482032 2.3715312, 48.8471107 2.3753997, 48.8471539 2.2962492, 48.8802934 2.3966027, 48.8406418 2.3541771, 48.8460249 2.3758514, 48.8460309 2.3745805, 48.8491257 2.3916769, 48.8505550 2.3903815, 48.8526340 2.3885654, 48.8398577 2.3474231, 48.8460504 2.3085941, 48.8525976 2.3324258, 48.8478855 2.3676795, 48.8167450 2.3551427, 48.8516101 2.2915432, 48.8513195 2.3984311, 48.8313024 2.3580825, 48.8505980 2.3756315, 48.8662217 2.3895964, 48.8369621 2.3916125, 48.8345817 2.2682119, 48.8344977 2.3055217, 48.8266395 2.3631137, 48.8265936 2.3638347, 48.8428127 2.2979483, 48.8522343 2.3401016, 48.8421330 2.3862159, 48.8412077 2.3889160, 48.8293299 2.3654239, 48.8252614 2.3574047, 48.8318943 2.3051920, 48.8419766 2.3631327, 48.8466424 2.3872245, 48.8734931 2.3899725, 48.8748438 2.3895179, 48.8857082 2.3756616, 48.8740584 2.3761419, 48.8256891 2.3501301, 48.8296848 2.3541069, 48.8278037 2.3523028, 48.8256293 2.3483441, 48.8632105 2.3998501, 48.8189768 2.3657077, 48.8234454 2.3709722, 48.8227762 2.3624835, 48.8214034 2.3722415, 48.8207003 2.3640557, 48.8260744 2.3543019, 48.8244936 2.3379891, 48.8222464 2.3552235, 48.8233563 2.3542079, 48.8246704 2.3465277, 48.8251740 2.3417242, 48.8238645 2.3485192, 48.8238988 2.3446115, 48.8761919 2.3607846, 48.8681145 2.3380654, 48.8482882 2.3806325, 48.8863319 2.3711222, 48.8890319 2.3744326, 48.8948588 2.3721971, 48.8862739 2.3595599, 48.8893604 2.3711944, 48.8872523 2.3728586, 48.8862555 2.3564214, 48.8920710 2.3616583, 48.8759981 2.2888804, 48.8422545 2.3231808, 48.8452718 2.3398200, 48.8456601 2.2559176, 48.8580164 2.3548706, 48.8449427 2.2615550, 48.8647002 2.3457111, 48.8454415 2.2585494, 48.8432331 2.3835289, 48.8475339 2.3882237, 48.8378794 2.4004320, 48.8380872 2.3994343, 48.8476871 2.3901194, 48.8471042 2.3852055, 48.8479792 2.3931721, 48.8391909 2.3969895, 48.8368962 2.4026322, 48.8359135 2.4058277, 48.8391569 2.3892705, 48.8499851 2.3083895, 48.8499808 2.3116300, 48.8453270 2.3106657, 48.8445654 2.3175610, 48.8767887 2.2836342, 48.8437701 2.2985039, 48.8356160 2.2812969, 48.8413849 2.3139125, 48.8354238 2.3118648, 48.8389372 2.3163214, 48.8370148 2.3027175, 48.8386344 2.3143780, 48.8431975 2.3125168, 48.8648963 2.3741522, 48.8491145 2.2975673, 48.8668379 2.3438017, 48.8682924 2.3433350, 48.8908797 2.3744767, 48.8910821 2.3734196, 48.8255689 2.3215157, 48.8414118 2.3440069, 48.8491151 2.3992867, 48.8434985 2.3253726, 48.8606245 2.4045354, 48.8435431 2.2957955, 48.8427332 2.2953960, 48.8395612 2.3011065, 48.8508395 2.3843514, 48.8674944 2.3533853, 48.8392213 2.3299129, 48.8705697 2.3483676, 48.8398721 2.3821834, 48.8426084 2.2922985, 48.8426958 2.2923414, 48.8233770 2.3091846, 48.8637180 2.3427315, 48.8589783 2.4022376, 48.8538143 2.3069683, 48.8379393 2.3947080, 48.8540822 2.2756588, 48.8592780 2.2771936, 48.8607801 2.2824478, 48.8632856 2.2864214, 48.8645288 2.2881993, 48.8680698 2.2907642, 48.8625131 2.3505652, 48.8626380 2.3503800, 48.8630774 2.3526152, 48.8637423 2.3492027, 48.8448439 2.3826317, 48.8505114 2.3788484, 48.8377454 2.3971411, 48.8449387 2.3800015, 48.8489499 2.3971094, 48.8359723 2.2905286, 48.8377769 2.2913038, 48.8221069 2.3505029, 48.8716148 2.4042110, 48.8673402 2.4006763, 48.8688371 2.4017940, 48.8702353 2.4031395, 48.8738942 2.4051527, 48.8707130 2.3991468, 48.8753906 2.3990200, 48.8758525 2.4010202, 48.8758784 2.4027378, 48.8763320 2.4034081, 48.8581459 2.3478668, 48.8254306 2.3745724, 48.8371917 2.3528301, 48.8374941 2.3543561, 48.8298207 2.3497671, 48.8481308 2.2902306, 48.8279668 2.3644980, 48.8282434 2.3565433, 48.8291460 2.3577224, 48.8327614 2.3622482, 48.8264163 2.3598711, 48.8301159 2.3017971, 48.8889239 2.3604830, 48.8326504 2.3120265, 48.8925714 2.3595715, 48.8342510 2.3976866, 48.8467389 2.3809082, 48.8291352 2.3608175, 48.8292488 2.3741831, 48.8903282 2.3600864, 48.8895811 2.3597672, 48.8214630 2.3588696, 48.8226985 2.3584907, 48.8445762 2.2871211, 48.8687984 2.3727205, 48.8932747 2.3631869, 48.8763654 2.3316481, 48.8311042 2.2923152, 48.8330785 2.2996031, 48.8410498 2.2912651, 48.8272993 2.3681039, 48.8711337 2.2759964, 48.8884174 2.3778947, 48.8442066 2.3901213, 48.8490587 2.2877877, 48.8666717 2.3501829, 48.8919944 2.3633128, 48.8462045 2.2779667, 48.8264147 2.3262238, 48.8613553 2.3023359, 48.8250855 2.3258682, 48.8295109 2.3563809, 48.8636448 2.3397088, 48.8933156 2.3933426, 48.8298567 2.3572407, 48.8603983 2.4043015, 48.8584497 2.3533925, 48.8495908 2.3740611, 48.8348750 2.2688001, 48.8327500 2.3614988, 48.8754439 2.4120443 +yes and 3 and 49.4146957 8.7191257, 49.4077784 8.6939263, 49.4070387 8.6723984 +48.8868146 2.3594625, 48.8467471 2.3717077, 48.8884053 2.3785210, 48.8278753 2.3796701, 48.8562375 2.3660049, 48.8495763 2.3798752 +11 +19 +yes +Jettenhöhle, Lichtenstein Höhle, Marthahöhle and 51.6842335 10.2727562, 51.7241177 10.1731033, 51.6895943 10.2692656 +55.9507953 -3.3038276 +48.8801870 2.3552631 +49.4081091 8.6783361, 49.3819891 8.7064791, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.3805076 8.6913796, 49.3779472 8.6930196, 49.3791086 8.6917106, 49.4091892 8.6985480, 49.4123589 8.7022987, 49.4113938 8.7045200, 49.4129429 8.7045098, 49.4102972 8.7060567, 49.4098890 8.7063691, 49.4122875 8.7109014, 49.4459821 8.7648025, 49.3821317 8.6823070, 49.3988716 8.6899921, 49.3974932 8.6821302, 49.4492216 8.7243852, 49.4531888 8.7235012, 49.4277884 8.6857649, 49.4274974 8.6861291, 49.4275110 8.6857082, 49.4300935 8.6879524, 49.4276763 8.6857958, 49.4276034 8.6855513, 49.4311523 8.7053142, 49.4295856 8.6906085, 49.4483906 8.6895518, 49.4479618 8.6899205, 49.4477023 8.6901845, 49.4131384 8.6917368, 49.4147215 8.6903017, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.4330929 8.6855356, 49.4117519 8.7056037, 49.4293551 8.6825053, 49.4436254 8.6706107, 49.4425555 8.6690983, 49.4463734 8.6731086, 49.4125622 8.6856608, 49.4054825 8.6765974, 49.4347876 8.6782371, 49.4366610 8.6792178, 49.4081527 8.6735594, 49.4055014 8.6766845, 49.3909631 8.7016171, 49.4042825 8.6824570, 49.4057157 8.6651962, 49.4064728 8.6918564, 49.4089660 8.6724358, 49.4093704 8.6694528, 49.4296874 8.6826637, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4038333 8.6771587, 49.4037954 8.6793653, 49.4279757 8.6835849, 49.3967059 8.6771597, 49.3950346 8.6818528, 49.4314127 8.6827484, 49.4214832 8.6754845, 49.4147764 8.6710359, 49.4222429 8.6632708, 49.4375159 8.6751635, 49.4373980 8.6752575, 49.4140422 8.6704577, 49.4212397 8.6801039, 49.4211952 8.6797713, 49.4273577 8.6827188, 49.4277404 8.6832670, 49.4227761 8.6601495, 49.4046422 8.6758721, 49.4135858 8.6925458, 49.4188030 8.6627721, 49.4192290 8.6602188, 49.4194387 8.6613408, 49.4189577 8.6619444, 49.4228639 8.6764796, 49.4215394 8.6751324, 49.4220712 8.6747880, 49.4338914 8.6803397, 49.4085411 8.6936835, 49.4080031 8.6948451, 49.4182538 8.6677103, 49.4171595 8.6617457, 49.4170463 8.6614946, 49.4176558 8.6587085, 49.4147558 8.6660779, 49.4147276 8.6656258, 49.4165055 8.6594547, 49.4149136 8.6636299, 49.4148711 8.6635210, 49.4230903 8.6848004, 49.4231948 8.6850183, 49.4134202 8.6738393, 49.4136945 8.6745160, 49.4091460 8.6764482, 49.4091105 8.6763838, 49.4090551 8.6763871, 49.4090132 8.6764515, 49.4046600 8.6759269, 49.4064743 8.6682317, 49.4079268 8.6756843, 49.4187406 8.6629762, 49.4049387 8.6756077, 49.4068874 8.6695133, 49.4054500 8.6641225, 49.4300762 8.6800795, 49.4100320 8.6641372, 49.4245331 8.6873094, 49.4236766 8.6795068, 49.4300270 8.6823902, 49.4344109 8.6821910, 49.4428552 8.7525697, 49.4423724 8.7523675, 49.4378301 8.7519879, 49.3945090 8.6898249, 49.3851489 8.6733031, 49.3853408 8.6756587, 49.3929123 8.6731183, 49.4085142 8.6937354, 49.3945410 8.6897403, 49.4116089 8.6773078, 49.4178001 8.7608053, 49.4178953 8.7603401, 49.4191809 8.7564457, 49.4192023 8.7564431, 49.4193055 8.7566134, 49.4343094 8.7486730, 49.4290349 8.7492005, 49.4280459 8.7495006, 49.4333074 8.7472561, 49.4243544 8.7433985, 49.4280490 8.7464328, 49.4177271 8.7604388, 49.4178011 8.7610141, 49.4169850 8.7622264, 49.4185873 8.7563730, 49.4203094 8.7595272, 49.4213087 8.7559845, 49.4192295 8.7567625, 49.4191345 8.7567831, 49.4182411 8.7571777, 49.4220544 8.7604986, 49.4169197 8.7613184, 49.4171886 8.7613146, 49.4191241 8.7569889, 49.4278053 8.7495282, 49.4274296 8.7499398, 49.4233403 8.7520040, 49.4240137 8.7518802, 49.4180224 8.7572019, 49.4180456 8.7418856, 49.4160940 8.7161473, 49.4178891 8.7605933, 49.4178215 8.7605565, 49.4093157 8.6860888, 49.3961047 8.6875838, 49.4471459 8.6743543, 49.4042332 8.6760102, 49.4109403 8.6922240, 49.4110870 8.6924326, 49.3804141 8.6876241, 49.3814460 8.6902772, 49.3835628 8.6905633, 49.3830248 8.6904678, 49.3827519 8.6904897, 49.3848920 8.6803000, 49.4166123 8.6762717, 49.4192248 8.6761936, 49.4279699 8.6834041, 49.4078352 8.6858842, 49.4048610 8.6759830, 49.4153134 8.6703781, 49.3779021 8.6887991, 49.4064148 8.6829502, 49.4082107 8.6921228, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4102743 8.6522076, 49.4085158 8.6613374, 49.4276366 8.6827967, 49.4045387 8.6755501, 49.4093314 8.7735071, 49.4126686 8.6862294, 49.4128139 8.6783720, 49.4125400 8.6856817, 49.4361923 8.6791675, 49.4149619 8.6902692, 49.4127956 8.6763587, 49.4135202 8.6810847, 49.4374337 8.6803411, 49.4132997 8.6919729, 49.4128517 8.6762931, 49.4127055 8.6863854, 49.4145419 8.6920206, 49.4128117 8.6763560, 49.4164261 8.6646525, 49.4504533 8.6801425, 49.4504593 8.6801215, 49.4504473 8.6800305, 49.4457554 8.6751092, 49.4248554 8.6842438, 49.4132108 8.7429246, 49.3774319 8.6987045, 49.4155076 8.6710423, 49.4134174 8.6700623, 49.4134633 8.6692638, 49.4077259 8.6716871, 49.4081513 8.6723497, 49.4077131 8.6727872, 49.4077166 8.6770507, 49.4076700 8.6845836, 49.4085533 8.6680811, 49.4045638 8.6759283, 49.4046591 8.6759088, 49.4044978 8.6767013, 49.4077532 8.6729299, 49.4081511 8.6736745, 49.4076619 8.6829409, 49.4076304 8.6840506, 49.4075919 8.6845735, 49.4077466 8.6851872, 49.4079762 8.6870498, 49.4083422 8.6884456, 49.4088113 8.6917735, 49.4092069 8.6920834, 49.4092177 8.6922359, 49.4096328 8.6933428, 49.4084542 8.6927289, 49.4078943 8.6929172, 49.4083041 8.6927592, 49.4075510 8.6929555, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4078050 8.6969103, 49.4061197 8.6920317, 49.4059932 8.6908195, 49.4058917 8.6902904, 49.4046222 8.6868381, 49.4042648 8.6869832, 49.4033250 8.6872272, 49.4032452 8.6845637, 49.4015990 8.6856698, 49.4004115 8.6865494, 49.4001133 8.6852761, 49.4208516 8.6802894, 49.4126545 8.7097240, 49.4280212 8.6833987, 49.4027640 8.6874789, 49.4028079 8.6877203, 49.3783665 8.6932651, 49.4464395 8.6740012, 49.4463084 8.6739060, 49.4460841 8.6742010, 49.4459135 8.6744348, 49.4457373 8.6747240, 49.4456252 8.6749889, 49.4460698 8.6746540, 49.4176655 8.6680194, 49.4174201 8.6867704, 49.4146832 8.6923348, 49.4144086 8.6920334, 49.4138985 8.6913696, 49.4132155 8.6897493, 49.4131959 8.6910756, 49.4132392 8.6920033, 49.4133000 8.6933906, 49.4158218 8.6922416, 49.4283831 8.7619069, 49.4247099 8.7567624, 49.4140666 8.7816898, 49.4515436 8.6904460, 49.4497186 8.6912225, 49.4113841 8.7084695, 49.4079450 8.6902090, 49.4072954 8.6910173, 49.4067868 8.6924316, 49.4080084 8.6940492, 49.4083925 8.6983336, 49.4082595 8.6914326, 49.4082829 8.6916558, 49.4076226 8.6923209, 49.4078093 8.6923599, 49.4144602 8.7186269, 49.4152107 8.7474136, 49.4152010 8.7617225, 49.4113731 8.7119281, 49.4131784 8.7101075, 49.3936659 8.6859388, 49.3808049 8.6889505, 49.3828843 8.6904877, 49.4065153 8.6711132, 49.4049730 8.6689317, 49.3967376 8.6789586, 49.3960740 8.6778734, 49.3954125 8.6771858, 49.3728927 8.7038472, 49.3741444 8.7033717, 49.3742583 8.7034051, 49.3741763 8.7034993, 49.4280568 8.6821889, 49.4074805 8.6879067, 49.4066312 8.6852959, 49.4066800 8.6851295, 49.4088385 8.6939559, 49.4100577 8.6956990, 49.4104128 8.6970288, 49.4099671 8.6973784, 49.4103158 8.6974936, 49.4105298 8.6976589, 49.4105476 8.6977333, 49.3887590 8.6996752, 49.3892618 8.7001391, 49.3895296 8.7003797, 49.3898172 8.7006269, 49.3899965 8.7007636, 49.3900865 8.7008556, 49.3902289 8.7009766, 49.3905174 8.7011989, 49.3916584 8.7085101, 49.4031962 8.7278159, 49.4001829 8.6904551, 49.4002513 8.6905301, 49.4001303 8.6911226, 49.3922296 8.6900792, 49.3899502 8.6903806, 49.3958062 8.6897645, 49.3773826 8.6871138, 49.3768379 8.6878186, 49.4079380 8.6845118, 49.4079749 8.6809749, 49.4079623 8.6804555, 49.4502280 8.6815306, 49.4501957 8.6816403, 49.4016967 8.6842645, 49.4016050 8.6845129, 49.4013428 8.6847761, 49.4541401 8.7204700, 49.4216384 8.6891687, 49.4157261 8.7004521, 49.4149595 8.6974870, 49.4152930 8.6919888, 49.4374309 8.7489034, 49.4048641 8.6772256, 49.3956377 8.7003866, 49.4015591 8.7130811, 49.4359934 8.7529364, 49.4093101 8.6901583, 49.4222140 8.7184598, 49.4316530 8.7205113, 49.4225166 8.7339927, 49.4430123 8.7521139, 49.4429378 8.6685786, 49.4435019 8.6698855, 49.4096879 8.6920076, 49.3803804 8.6888305, 49.4091366 8.6592347, 49.3877298 8.7446960, 49.4129054 8.7286879, 49.4129225 8.7239221, 49.4136373 8.6927118, 49.4165191 8.6921856, 49.4170562 8.6921340, 49.4166719 8.6922486, 49.4101353 8.6927154, 49.4102017 8.6918170, 49.4112725 8.7119074, 49.4095367 8.7037082, 49.4095406 8.7032850, 49.4065042 8.6930977, 49.4057026 8.6893745, 49.3768611 8.6887922, 49.3788109 8.6919767, 49.3778590 8.6930131, 49.3777697 8.6932265, 49.4176024 8.7064673, 49.4182087 8.7084837, 49.4188431 8.7096873, 49.4354694 8.7188860, 49.4359909 8.7141285, 49.3799268 8.6968432, 49.3815882 8.6963561, 49.3849977 8.6950043, 49.3866803 8.6945620, 49.3903214 8.6953737, 49.3908296 8.6953451, 49.3912367 8.6951518, 49.3954992 8.6978754, 49.4295755 8.7759899, 49.4141843 8.7705509, 49.4330029 8.6825757, 49.4221470 8.6890033, 49.4154766 8.6922694, 49.3964575 8.6935605, 49.4287124 8.6962608, 49.4225883 8.7018634, 49.4209333 8.7223854, 49.4206982 8.7220100, 49.3999683 8.6915979, 49.3946455 8.7166681, 49.4192213 8.7568026, 49.4222478 8.7540345, 49.4280231 8.7495057, 49.4174437 8.7631519, 49.4175155 8.6749548, 49.4488525 8.7503084, 49.4514526 8.7484218, 49.4419775 8.6682704, 49.4290781 8.6856826, 49.4071892 8.6937962, 49.4151131 8.6716059, 49.4504135 8.7017546, 49.4507535 8.7067448, 49.4051089 8.6861484, 49.4277949 8.6859759, 49.4277769 8.6859863, 49.4277687 8.6860001, 49.4280288 8.6874096, 49.4226519 8.6906789, 49.4186002 8.6906805, 49.4584045 8.7322317, 49.4579813 8.7191374, 49.4574095 8.7281316, 49.4465971 8.6839436, 49.4474992 8.6852461, 49.4477513 8.6901279, 49.4459861 8.6912063, 49.4460595 8.6869719, 49.4448045 8.6867772, 49.4092764 8.6965977, 49.4169935 8.6914785, 49.4159137 8.6902672, 49.4134716 8.7106064, 49.4221949 8.7060036, 49.4197929 8.7112154, 49.4197171 8.6977012, 49.4178197 8.7004883, 49.4177799 8.7006163, 49.4256712 8.7169706, 49.4244330 8.7116834, 49.4207953 8.7168901, 49.4260504 8.7196647, 49.4292184 8.7152661, 49.4290130 8.7153753, 49.4143869 8.6899597, 49.4060887 8.6538694, 49.4117586 8.7095162, 49.4169622 8.7088362, 49.4169662 8.7088186, 49.4155312 8.7003109, 49.4157681 8.7006398, 49.4159368 8.7004445, 49.4167407 8.7002188, 49.4176075 8.6981061, 49.4181925 8.6982743, 49.4195018 8.7041669, 49.4152829 8.7108795, 49.4153147 8.7113299, 49.4153573 8.7121233, 49.4153819 8.7125956, 49.3955045 8.7713305, 49.3981873 8.7240534, 49.4144764 8.6904813, 49.4144903 8.6905928, 49.4186611 8.7633544, 49.4172685 8.7689843, 49.4158233 8.7717567, 49.4153766 8.7742503, 49.4140292 8.7817285, 49.4052183 8.7807063, 49.4014645 8.7791091, 49.3943337 8.7784226, 49.4157971 8.7658081, 49.4171401 8.7614553, 49.4177407 8.7617228, 49.4107799 8.7058515, 49.4107798 8.7061328, 49.4179956 8.7415149, 49.4146001 8.7738410, 49.4102169 8.7892078, 49.4140696 8.7184550, 49.4264438 8.7443513, 49.4457651 8.6845350, 49.4418584 8.6979767, 49.4390162 8.7105044, 49.4376003 8.7518747, 49.4124141 8.7104910, 49.4278793 8.6839291, 49.4245929 8.6880170, 49.4275702 8.6866250, 49.4124368 8.7095147, 49.4286417 8.6857904, 49.4301309 8.6907932, 49.4297702 8.6934487, 49.4048779 8.6827341, 49.4117536 8.7090766, 49.4115311 8.7084606, 49.4115086 8.7078249, 49.4113991 8.7077798, 49.4123932 8.7103247, 49.4123736 8.7101990, 49.4124613 8.7103945, 49.4119354 8.7117634, 49.4124188 8.7130024, 49.4127909 8.7133593, 49.4126895 8.7130608, 49.4135426 8.7142038, 49.4135025 8.7139566, 49.4120923 8.7117858, 49.4114566 8.7107312, 49.4106605 8.6984657, 49.4107313 8.6985417, 49.4096542 8.7001484, 49.4288015 8.6872183, 49.3852907 8.7099594, 49.4142986 8.6902743, 49.4121585 8.7121348, 49.3851124 8.7094749, 49.3850107 8.7103387, 49.4094471 8.6926160, 49.4105312 8.6975907, 49.4151725 8.6902594, 49.4157708 8.6902546, 49.4107395 8.6927434, 49.4091698 8.6936091, 49.4044791 8.6965502, 49.4336004 8.6907661, 49.3904944 8.6883092, 49.3915440 8.6790012, 49.3915993 8.6903930, 49.4149451 8.7199680, 49.4126850 8.7049420, 49.4124142 8.7039688, 49.3739972 8.7036051, 49.4201840 8.7450745, 49.4203121 8.7448719, 49.4278654 8.7486231, 49.4315786 8.7636417, 49.4289498 8.7668446, 49.4224724 8.7728618, 49.4218746 8.7723730, 49.4208164 8.7718076, 49.4318658 8.7785141, 49.4269884 8.7777486, 49.4279723 8.7777473, 49.3869602 8.7092367, 49.4139013 8.6749258, 49.4332443 8.6805201, 49.4348207 8.6783577, 49.4373520 8.6781032, 49.4264257 8.6835404, 49.4381480 8.7005157, 49.4134671 8.6923500, 49.4210179 8.7198036, 49.4292684 8.7115908, 49.4272716 8.7035465, 49.4305777 8.6928339, 49.4331982 8.7089234, 49.4337922 8.7095528, 49.4343847 8.6975926, 49.4393283 8.7105842, 49.4398232 8.7110203, 49.4497204 8.7157564, 49.4496410 8.7157170, 49.4508572 8.6988545, 49.4271531 8.7573965, 49.4317439 8.7509117, 49.4292880 8.7510341, 49.4368079 8.7593525, 49.4531341 8.7233872, 49.4536219 8.7240940, 49.4536047 8.7240417, 49.4262156 8.6996156, 49.4247671 8.7003161, 49.4371110 8.7181849, 49.4395946 8.7219636, 49.4041276 8.6763300, 49.4306618 8.6920230, 49.4307092 8.6924155, 49.4333213 8.6941083, 49.4366751 8.6939775, 49.4428768 8.7011414, 49.4370307 8.6898816, 49.4400552 8.6984687, 49.4419967 8.6995749, 49.4414189 8.6985111, 49.4387622 8.6820017, 49.4413002 8.6846886, 49.4423182 8.6882775, 49.4448305 8.6803468, 49.4447796 8.6803708, 49.4450341 8.6802865, 49.4451393 8.6802443, 49.4446086 8.6841466, 49.4456769 8.6799985, 49.4440847 8.6831472, 49.4454846 8.6869733, 49.4483365 8.6890738, 49.4137427 8.6924811, 49.3822208 8.6838537, 49.4136357 8.6943202, 49.4040784 8.7535968, 49.3971952 8.6862592, 49.3973746 8.6876710, 49.3968650 8.6891799, 49.3978420 8.6880583, 49.4071068 8.6898761, 49.4172306 8.6824331, 49.4176070 8.6821350, 49.4172221 8.6817577, 49.4172710 8.6921830, 49.3828278 8.7123002, 49.4108200 8.6918918, 49.4124311 8.7120085, 49.4147712 8.6919997, 49.3906225 8.7063573, 49.3922709 8.7076343, 49.4597910 8.7149359, 49.4213023 8.6891575, 49.4515211 8.6902632, 49.4515491 8.6902632, 49.4574977 8.7042491, 49.4580924 8.7055097, 49.4085251 8.6921424, 49.3791896 8.6905086, 49.4510769 8.6863025, 49.4524536 8.7094050, 49.4555860 8.7112865, 49.4550185 8.7158458, 49.4554329 8.7173979, 49.4424691 8.6898697, 49.4040525 8.6844956, 49.4096400 8.6942920, 49.4316641 8.7049585, 49.4315759 8.7050063, 49.4315556 8.7050403, 49.4314361 8.7051308, 49.4314510 8.7051352, 49.4314223 8.7051172, 49.4316086 8.7052243, 49.4315615 8.7053740, 49.4317823 8.7047605, 49.4316384 8.7047890, 49.4316797 8.7049147, 49.4316279 8.7051895, 49.4317027 8.7050818, 49.4316896 8.7051301, 49.4316955 8.7051052, 49.4318072 8.7058967, 49.4378776 8.7051273, 49.4400403 8.7053776, 49.4389787 8.7112352, 49.4420379 8.7114388, 49.4440339 8.7026721, 49.4493298 8.7170664, 49.3778512 8.7581574, 49.3873038 8.7530780, 49.4126131 8.7110704, 49.4125503 8.7094986, 49.4258813 8.6617121, 49.4089504 8.6905874, 49.4096905 8.6870861, 49.4094130 8.6857745, 49.4043206 8.6907217, 49.4100169 8.6878988, 49.3804963 8.6875192, 49.4192835 8.7164572, 49.4248580 8.7374083, 49.4202654 8.7499719, 49.4059443 8.7040458, 49.3919237 8.7218634, 49.3921500 8.7220781, 49.3930507 8.7227282, 49.4044206 8.6749529, 49.4202236 8.6846109, 49.4205029 8.6846704, 49.4174372 8.6854637, 49.4175511 8.6857342, 49.4184776 8.6853453, 49.4134519 8.6731458, 49.4173344 8.6816721, 49.4173389 8.6817450, 49.3987036 8.6859892, 49.4044555 8.6967109, 49.3995165 8.6879132, 49.4171164 8.6729011, 49.4421787 8.6656329, 49.3840770 8.6710133, 49.3811656 8.7483210, 49.4393137 8.6872204, 49.3847437 8.7334252, 49.3853323 8.7330985, 49.3848201 8.7416287, 49.3850204 8.7416036, 49.3972761 8.7308772, 49.4031431 8.7287410, 49.4160126 8.6922256, 49.4139051 8.6920559, 49.4167279 8.6721344, 49.4162757 8.6922037, 49.3868980 8.7370934, 49.3869050 8.7370901, 49.3871382 8.7376463, 49.3873346 8.7390471, 49.3872538 8.7384841, 49.3873362 8.7390575, 49.3872554 8.7384907, 49.3876203 8.7421489, 49.3876068 8.7418951, 49.3876003 8.7417204, 49.3876009 8.7417105, 49.3875718 8.7411975, 49.3875006 8.7405190, 49.3874182 8.7396996, 49.3880128 8.7449026, 49.3778485 8.7581822, 49.4441500 8.7151826, 49.3850068 8.7105357, 49.4339270 8.6786101, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.4350000 8.6816364, 49.3838650 8.7092400, 49.3975792 8.6798603, 49.4104204 8.7158634, 49.4049159 8.6848567, 49.4068385 8.6866471, 49.3865894 8.7624809, 49.3909171 8.7566521, 49.3995340 8.7305709, 49.3989338 8.7327290, 49.3977932 8.7345873, 49.3975770 8.7365674, 49.3976474 8.7365747, 49.3954785 8.7463349, 49.4278746 8.6871277, 49.4245561 8.6872574, 49.4186207 8.6905302, 49.4277708 8.6843289, 49.4004100 8.6866529, 49.4129911 8.6528439, 49.4136043 8.6538078, 49.4121631 8.6534172, 49.4130105 8.6554404, 49.4119860 8.6544036, 49.4129302 8.6534040, 49.4004267 8.6871877, 49.4083031 8.6962179, 49.4093049 8.7016279, 49.4300341 8.7265054, 49.4034192 8.6873184, 49.4035344 8.6864118, 49.4022609 8.6800427, 49.4038073 8.6922073, 49.3825748 8.6819524, 49.4147206 8.7190868, 49.4055996 8.6889278, 49.4131079 8.7088562, 49.4175570 8.6865031, 49.3928959 8.7767409, 49.4040547 8.7550178, 49.3989753 8.7629392, 49.4029783 8.7509752, 49.4000042 8.7469749, 49.3883681 8.7636001, 49.4040516 8.7550941, 49.3882422 8.7638714, 49.3963741 8.7568926, 49.4041282 8.7535478, 49.4018935 8.7380088, 49.4040511 8.7533571, 49.4148114 8.7196509, 49.4040268 8.7533880, 49.4041566 8.7536140, 49.4040221 8.7537244, 49.4038420 8.7533968, 49.3882615 8.7637884, 49.4040317 8.7536908, 49.3882160 8.7639567, 49.3857554 8.7311380, 49.3906745 8.7281338, 49.3818122 8.7467986, 49.3871791 8.7350466, 49.3906767 8.7281096, 49.3818206 8.7438491, 49.3845976 8.7320662, 49.3818392 8.7437472, 49.3846318 8.7321713, 49.3873851 8.7356455, 49.3846726 8.7322609, 49.3849816 8.7416218, 49.3778528 8.7582142, 49.3907840 8.7281080, 49.3812968 8.6894052, 49.3789105 8.7606559, 49.3864285 8.6696286, 49.3961482 8.6893926, 49.3802778 8.6816667, 49.3821274 8.6823829, 49.4338016 8.6780993, 49.4133345 8.6939826, 49.3896591 8.6874142, 49.3888889 8.6875000, 49.3889397 8.6874933, 49.3796893 8.6821058, 49.4257744 8.6577657, 49.4011499 8.6909716, 49.3869606 8.7635695, 49.3956888 8.7699779, 49.3891214 8.7668533, 49.3932296 8.7696039, 49.4109497 8.7171649, 49.3737816 8.7169321, 49.3754560 8.7157067, 49.4102178 8.7150766, 49.4189919 8.6724909, 49.4163242 8.6709589, 49.4184386 8.6731024, 49.4168333 8.6710769, 49.4176281 8.6686596, 49.4160594 8.6702239, 49.4179870 8.6685214, 49.4190025 8.6711938, 49.4190342 8.6719873, 49.3845955 8.7081656, 49.4175667 8.6749443, 49.4186849 8.6679251, 49.4195133 8.6677572, 49.3952827 8.7243898, 49.3799604 8.6807464, 49.3812515 8.6806176, 49.3824770 8.6806146, 49.3827231 8.6805749, 49.3827650 8.6797160, 49.3818450 8.6782283, 49.3811106 8.6779339, 49.3818450 8.6783061, 49.3804699 8.6775416, 49.3794484 8.6789797, 49.3819205 8.6782467, 49.3818463 8.6779827, 49.3818450 8.6781558, 49.3819210 8.6783181, 49.3818539 8.6780747, 49.3819218 8.6781599, 49.4027279 8.7338848, 49.4005409 8.7372180, 49.4026498 8.7348911, 49.3894790 8.7240732, 49.4002409 8.7358193, 49.3824444 8.7505086, 49.4027874 8.7324418, 49.4005743 8.7385818, 49.3978086 8.7361369, 49.4017338 8.7382465, 49.4010116 8.7383918, 49.3977634 8.7286227, 49.3870539 8.7281754, 49.4152723 8.7238969, 49.4150119 8.7236673, 49.4153624 8.7225666, 49.3990303 8.6762703, 49.4111908 8.7189811, 49.4098495 8.7167148, 49.4098666 8.7169733, 49.4099427 8.7180130, 49.4103257 8.7193735, 49.3795766 8.6901652, 49.3797769 8.6902998, 49.4107587 8.7191644, 49.4106414 8.7191879, 49.3715548 8.7204885, 49.3772018 8.7233643, 49.3762150 8.7230185, 49.3707354 8.7163237, 49.4139993 8.6932058, 49.4031806 8.6757447, 49.4031915 8.6757146, 49.4033570 8.6759427, 49.4033783 8.6758929, 49.4052157 8.6658971, 49.4052607 8.6659933, 49.4013876 8.6762755, 49.4055766 8.6654953, 49.4061345 8.6593850, 49.4086584 8.6922629, 49.4088859 8.6920687, 49.4139940 8.6537020, 49.3936938 8.6882137, 49.3956207 8.6692054, 49.4532165 8.6852728, 49.4513839 8.6831919, 49.4485476 8.7256593, 49.4225418 8.6752439, 49.4132914 8.7081342, 49.4088903 8.6938003, 49.4126779 8.7118926, 49.4079250 8.6968388, 49.4124163 8.7017576, 49.4102465 8.6977902, 49.4116285 8.6967738, 49.4112877 8.7120306, 49.4124821 8.7116749, 49.4105746 8.7045338, 49.4088982 8.6985594, 49.4171494 8.6793155, 49.4149894 8.6777848, 49.4148485 8.6775333, 49.4131782 8.7072377, 49.4123643 8.7093621, 49.4129985 8.7075880, 49.4128971 8.7089006, 49.4125822 8.7091321, 49.4121225 8.7074329, 49.4122807 8.7082455, 49.4119959 8.7065282, 49.4121728 8.7080504, 49.4123763 8.7095125, 49.4133232 8.7072699, 49.4127246 8.7091094, 49.4131657 8.7074358, 49.4121834 8.7069263, 49.4123513 8.7089916, 49.4132139 8.7078103, 49.4111401 8.6995045, 49.4077846 8.6948300, 49.4101395 8.6935335, 49.4114505 8.6946751, 49.4078498 8.6943897, 49.4079479 8.6956416, 49.4103548 8.6934956, 49.4188910 8.6930237, 49.4177616 8.6901926, 49.4137599 8.6926714, 49.4162828 8.6903739, 49.4137947 8.6907151, 49.4092738 8.6989364, 49.4095235 8.7029839, 49.4121887 8.7014037, 49.4117856 8.6982500, 49.4092513 8.6997348, 49.4089611 8.6957225, 49.4088607 8.6969406, 49.4119811 8.7001029, 49.4104791 8.6972285, 49.4118690 8.6989413, 49.4089749 8.7019860, 49.4088528 8.6965343, 49.4163332 8.6877784, 49.4102879 8.6948503, 49.4118566 8.7016009, 49.4107725 8.7025797, 49.4195856 8.6828954, 49.4095637 8.7046228, 49.4192171 8.6617263, 49.4086321 8.6989216, 49.4109129 8.6948067, 49.4100861 8.7047725, 49.4126467 8.7116432, 49.4179033 8.6815927, 49.4082980 8.6979183, 49.4092888 8.7006167, 49.4125480 8.7059407, 49.4105744 8.6916465, 49.4062671 8.6797009, 49.4088091 8.7068231, 49.4109623 8.6909012, 49.4089627 8.6813526, 49.4109261 8.7125920, 49.4122797 8.7133174, 49.4129194 8.7022179, 49.4090650 8.6813526, 49.4136080 8.7136083, 49.4129132 8.7053546, 49.4061093 8.6758875, 49.4134315 8.7103016, 49.4146455 8.7188499, 49.4062388 8.6917406, 49.4107484 8.7061452, 49.4056528 8.6927157, 49.4136995 8.7142286, 49.4043812 8.6796436, 49.4089621 8.7022268, 49.4083809 8.6986013, 49.4080333 8.6763139, 49.4079105 8.6965175, 49.4072113 8.6916915, 49.4103365 8.7039131, 49.4086544 8.6824072, 49.4084428 8.6787563, 49.4074650 8.6753838, 49.4088642 8.6826038, 49.4071241 8.6769474, 49.4083562 8.6885086, 49.4122041 8.7090164, 49.4130878 8.7091392, 49.4131986 8.7088233, 49.4076691 8.6751190, 49.4007776 8.6911061, 49.4077632 8.6922107, 49.4043288 8.6924798, 49.4023297 8.6917804, 49.4062086 8.6922549, 49.4035568 8.6922425, 49.4080541 8.6920020, 49.4058460 8.6924951, 49.4082097 8.6927782, 49.4076624 8.6922255, 49.4028742 8.6919803, 49.4052064 8.6927545, 49.4083867 8.6927384, 49.4055314 8.6924048, 49.4014846 8.6914932, 49.4105461 8.7233169, 49.4089235 8.7239799, 49.4062755 8.7318753, 49.4115547 8.7328601, 49.4088449 8.7267716, 49.4113138 8.7328292, 49.4063230 8.7317506, 49.3989298 8.6889417, 49.4119138 8.7090833, 49.4119030 8.7090336, 49.4119011 8.7089353, 49.4118947 8.7088457, 49.4115582 8.7044459, 49.4115665 8.7029371, 49.4095460 8.7040916, 49.4115772 8.7046048, 49.4117134 8.7084690, 49.4118434 8.7082915, 49.4115371 8.7077542, 49.4118456 8.7083560, 49.4006324 8.6910529, 49.4000859 8.6904108, 49.3997565 8.6902626, 49.3998769 8.6903120, 49.4097481 8.7070938, 49.4095987 8.7061446, 49.4316640 8.6726812, 49.3828823 8.6974195, 49.3828586 8.6974227, 49.4091521 8.6979357, 49.4307088 8.6826152, 49.4076909 8.6848244, 49.4069536 8.7134033, 49.4076819 8.6846906, 49.4157065 8.7287628, 49.4168778 8.7249065, 49.4131305 8.6546204, 49.4020273 8.6710958, 49.4145019 8.7188097, 49.4160079 8.6527300, 49.4106668 8.7195394, 49.4105303 8.7195730, 49.4149039 8.6659572, 49.4152046 8.6662691, 49.4150186 8.6660022, 49.4149621 8.6659764, 49.4152043 8.6661050, 49.4151660 8.6660644, 49.4148467 8.6657599, 49.4164627 8.6646192, 49.4148865 8.6633752, 49.4144262 8.6605991, 49.4140289 8.6610942, 49.4157782 8.6615636, 49.3982405 8.6891686, 49.4150965 8.6664535, 49.4150888 8.6660280, 49.4150208 8.6663808, 49.4154939 8.6674299, 49.4152045 8.6661871, 49.4151465 8.6664909, 49.4178759 8.6766696, 49.4047754 8.6846789, 49.4175133 8.6820340, 49.4156624 8.6585755, 49.4164776 8.6578526, 49.4149739 8.6593306, 49.4032429 8.6876802, 49.4031102 8.6876641, 49.4029811 8.6876534, 49.4032429 8.6873315, 49.4029915 8.6873208, 49.4031172 8.6873261, 49.3995142 8.6850002, 49.3866972 8.7681314, 49.3906813 8.7690094, 49.3876668 8.7714570, 49.3971453 8.7695949, 49.3882343 8.7754545, 49.3970452 8.6830144, 49.4112622 8.7059705, 49.3878352 8.7614044, 49.4106423 8.7232003, 49.4072676 8.7325889, 49.4106196 8.7231813, 49.4064913 8.7386810, 49.4033073 8.7447336, 49.4117826 8.7294584, 49.4149916 8.6663630, 49.4148513 8.6651363, 49.4110738 8.7466347, 49.4109732 8.7462479, 49.4111824 8.7467386, 49.4115142 8.7468423, 49.3956607 8.7675583, 49.4109786 8.7462230, 49.4171023 8.7276310, 49.4109714 8.7462700, 49.4018588 8.7712935, 49.4110534 8.7466181, 49.4133316 8.7381491, 49.4012745 8.7715593, 49.4182906 8.7276732, 49.3991393 8.7676414, 49.4111611 8.7467273, 49.3978168 8.7676498, 49.4119786 8.7462157, 49.4172059 8.7276487, 49.4181324 8.7293243, 49.4133844 8.7468484, 49.4169905 8.7246654, 49.4043163 8.6750911, 49.4037937 8.6758118, 49.4043905 8.6758702, 49.4012431 8.7094358, 49.4018143 8.7127778, 49.4014077 8.7090021, 49.4001508 8.7098871, 49.4004203 8.7103091, 49.4005295 8.7107408, 49.4005748 8.7099398, 49.3854702 8.7517346, 49.4155782 8.6689215, 49.4237194 8.7426235, 49.4213757 8.6586938, 49.4060966 8.6847540, 49.4193326 8.6742240, 49.4188747 8.6746615, 49.3985275 8.6890932, 49.3984918 8.6889404, 49.3909283 8.7331493, 49.4092258 8.7140567, 49.3926229 8.7303800, 49.3923117 8.7307059, 49.3904128 8.7410912, 49.3892474 8.7357050, 49.3885878 8.7381138, 49.3888077 8.7391060, 49.3988684 8.7285671, 49.3901554 8.7403484, 49.3891888 8.7356179, 49.3893945 8.7352351, 49.4226030 8.6895511, 49.4244226 8.6879745, 49.4185216 8.6704497, 49.4197235 8.6766060, 49.4181936 8.6739962, 49.4224691 8.6894885, 49.4347006 8.6819337, 49.4225331 8.6895176, 49.4223934 8.6894683, 49.4275117 8.6831905, 49.4196417 8.6694271, 49.4189698 8.6760286, 49.4222653 8.6894258, 49.4249703 8.6863835, 49.4219203 8.6893430, 49.4221212 8.6893922, 49.4177747 8.6690561, 49.4163577 8.6686492, 49.4174980 8.6687653, 49.4179060 8.6686309, 49.4180660 8.6682820, 49.4157661 8.6686751, 49.4174626 8.6687152, 49.4150725 8.6664167, 49.4139804 8.6668520, 49.4136878 8.6671227, 49.4155211 8.6676755, 49.4136571 8.6671084, 49.4155891 8.6676755, 49.4146634 8.6664310, 49.4140866 8.6673605, 49.4128509 8.6667672, 49.4130842 8.6668825, 49.4128068 8.6670431, 49.4157404 8.6712736, 49.4131056 8.6680418, 49.4126825 8.6678074, 49.4173371 8.6738318, 49.4170607 8.6768911, 49.4126952 8.6699440, 49.4134424 8.6679610, 49.4165443 8.6709680, 49.4134657 8.6678164, 49.4169024 8.6778674, 49.4171297 8.6738951, 49.4145377 8.6712997, 49.4142973 8.6712224, 49.4162063 8.6713780, 49.4171308 8.6741457, 49.4126713 8.6675754, 49.4146104 8.6715231, 49.4129993 8.6676842, 49.4125591 8.6685224, 49.4038678 8.6826012, 49.4080959 8.6940082, 49.4132083 8.7150483, 49.4098495 8.7063675, 49.4092833 8.6937547, 49.4136521 8.7166234, 49.4086730 8.6937919, 49.4147825 8.7194810, 49.4146757 8.7188519, 49.4099904 8.6934756, 49.4137247 8.7168421, 49.4114575 8.7112332, 49.4117561 8.7110802, 49.4130935 8.7055063, 49.4085662 8.6938769, 49.4082925 8.6939399, 49.4049071 8.6846843, 49.4050950 8.6832018, 49.4046753 8.6751003, 49.4049813 8.6825344, 49.4047830 8.6748233, 49.4079701 8.6806978, 49.4081724 8.6765377, 49.3800680 8.6869647, 49.3803092 8.6877522, 49.3800398 8.6875371, 49.4133013 8.6913417, 49.4514996 8.7287116, 49.4090936 8.6974650, 49.4121976 8.7087022, 49.3991167 8.6880237, 49.4003093 8.6865238, 49.3994136 8.6901411, 49.4125736 8.6667755, 49.4190267 8.7248849, 49.3971048 8.6828185, 49.3997775 8.6782516, 49.3958031 8.6837214, 49.3961205 8.6812878, 49.4156475 8.7425316, 49.4144368 8.6680539, 49.4412552 8.7715331, 49.4153976 8.6683913, 49.4153546 8.6684139, 49.4155467 8.6683947, 49.4154380 8.6683671, 49.4151161 8.6685335, 49.4150659 8.6685579, 49.4154076 8.6684526, 49.4152917 8.6687763, 49.4154597 8.6686971, 49.4152602 8.6687924, 49.4154902 8.6686325, 49.4154630 8.6689975, 49.4154749 8.6685519, 49.4150922 8.6688775, 49.4151285 8.6688599, 49.4151648 8.6688408, 49.4153275 8.6691937, 49.4151774 8.6691870, 49.4154589 8.6688159, 49.4152369 8.6692466, 49.4152963 8.6692120, 49.4151981 8.6692552, 49.4151593 8.6691206, 49.4152687 8.6692283, 49.4173599 8.7570392, 49.4173659 8.7564419, 49.4173666 8.7564094, 49.4173671 8.7566484, 49.4373589 8.7518399, 49.4076180 8.6891919, 49.4173208 8.6768607, 49.4560129 8.7272698, 49.4070439 8.6949350, 49.4089916 8.6801238, 49.3950297 8.7337960, 49.3960602 8.7333909, 49.3964251 8.7434145, 49.3965680 8.7438930, 49.3942172 8.6898680, 49.4001704 8.6873707, 49.4008461 8.6862974, 49.4015034 8.6855723, 49.4018481 8.6853596, 49.4140326 8.6921865, 49.4147881 8.6920796, 49.4161519 8.6920141, 49.4164194 8.6920050, 49.3771070 8.6871386, 49.3805777 8.6884357, 49.3956314 8.6891619, 49.4064459 8.6893600, 49.4076652 8.6925139, 49.4146958 8.6922296, 49.4122224 8.7127594, 49.4117441 8.7092576, 49.4135237 8.7132879, 49.4031638 8.6920740, 49.3893232 8.7371550, 49.4181666 8.6745623, 49.4147605 8.6683021, 49.4069167 8.6886211, 49.4212512 8.6801896, 49.4201358 8.6806591, 49.4211077 8.6784794, 49.4181588 8.6814978, 49.4183470 8.6872741, 49.4197789 8.6871221, 49.4207750 8.6845900, 49.4220217 8.6830623, 49.4248833 8.6877871, 49.4283894 8.6851615, 49.4312787 8.6910498, 49.3925114 8.7464235, 49.3856352 8.7552185, 49.3856945 8.7551489, 49.3891220 8.7350663, 49.3891575 8.7362367, 49.3891834 8.7362292, 49.3899672 8.7378636, 49.3900339 8.7371557, 49.3928385 8.7310462, 49.4086409 8.7182230, 49.4109895 8.7175452, 49.4126569 8.7158654, 49.4108612 8.6928690, 49.4073649 8.6958229, 49.4210304 8.7484074, 49.4210555 8.7483630, 49.4208880 8.7281629, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4107889 8.7060227, 49.4136791 8.7136022, 49.4127227 8.7032897, 49.4127285 8.7033836, 49.4127326 8.7034813, 49.4128465 8.7032783, 49.4124235 8.7142523, 49.4126441 8.7142846, 49.3875195 8.7389174, 49.3881112 8.7384845, 49.3893869 8.7367041, 49.4167026 8.6926975, 49.4167080 8.6927532, 49.4171340 8.6924519, 49.4171426 8.6925123, 49.3744418 8.7035505, 49.3743789 8.7031911, 49.3742086 8.7031163, 49.3747282 8.7035988, 49.3745186 8.7029658, 49.4126385 8.6691299, 49.4058353 8.6807799, 49.4102246 8.6969187, 49.4106382 8.6995688, 49.4098204 8.6952928, 49.4102630 8.6956367, 49.4100675 8.6958351, 49.4102926 8.6972916, 49.4103729 8.6964923, 49.4103380 8.6945772, 49.4100274 8.6954516, 49.4095422 8.6938315, 49.4106977 8.6986329, 49.3887250 8.7490272, 49.4089553 8.6951085, 49.4110740 8.7008373, 49.4109937 8.7015191, 49.4112052 8.7019438, 49.4109936 8.7014251, 49.4106673 8.7017443, 49.4113056 8.7025839, 49.4114705 8.7022980, 49.4114651 8.7037929, 49.4108365 8.7037050, 49.4115939 8.7046894, 49.4115555 8.7043541, 49.4116506 8.7051386, 49.4119604 8.7038095, 49.4116685 8.7053140, 49.4116445 8.7062771, 49.4104788 8.7037801, 49.4103985 8.7029994, 49.4118295 8.7066501, 49.4117816 8.7062296, 49.4116271 8.7069102, 49.4116479 8.7066124, 49.4117726 8.7067669, 49.4117492 8.7058025, 49.4121327 8.7076792, 49.4122972 8.7077374, 49.4122745 8.7073258, 49.4123530 8.7087690, 49.4118146 8.7077756, 49.4118235 8.7079159, 49.4117230 8.7087903, 49.4116985 8.7082163, 49.4122865 8.7059453, 49.4124399 8.7105960, 49.4118138 8.7113092, 49.4131661 8.7104077, 49.4128557 8.7051696, 49.4095800 8.7072536, 49.4111189 8.7110358, 49.4131432 8.7133745, 49.4087106 8.6981262, 49.3843560 8.6801691, 49.4073655 8.6761401, 49.4071070 8.6765209, 49.4099529 8.7084620, 49.4101152 8.7081077, 49.4081055 8.6756660, 49.4062164 8.6906512, 49.4116879 8.7096216, 49.4076112 8.6921328, 49.4104389 8.7086905, 49.4128719 8.7286955, 49.4041847 8.6844762, 49.3999258 8.6784895, 49.4061045 8.6919006, 49.4175773 8.6740734, 49.4179402 8.6696532, 49.4180276 8.6704533, 49.4129103 8.7014032, 49.4128315 8.7094842, 49.3777902 8.7429899, 49.3820375 8.6822639, 49.4200520 8.6693809, 49.4084645 8.6841392, 49.4159348 8.6708164, 49.4202779 8.6844332, 49.4202046 8.6844657, 49.4105445 8.7052085, 49.4106934 8.7057683, 49.4112050 8.6978662, 49.4106683 8.6974887, 49.4112207 8.6981194, 49.4111306 8.6979715, 49.4072012 8.6930407, 49.4114393 8.7049112, 49.4105716 8.7092257, 49.4202669 8.6573098, 49.4142103 8.6533273, 49.4141256 8.6534735, 49.4101694 8.6916552, 49.4101101 8.6935285, 49.4037018 8.6767168, 49.4038715 8.6762894, 49.4003850 8.6920257, 49.3900090 8.6927551, 49.3900370 8.6927298, 49.3900505 8.6927189, 49.3900663 8.6927110, 49.3956537 8.7091525, 49.3969926 8.7070350, 49.4166963 8.6728921, 49.4329833 8.6806293, 49.4333509 8.6811006, 49.4333774 8.6810937, 49.4334081 8.6810857, 49.4075531 8.6947989, 49.4075470 8.6947239, 49.4072696 8.6944710, 49.4073244 8.6944681, 49.4073527 8.6944672, 49.4076185 8.6953263, 49.4075829 8.6952288, 49.4075619 8.6949094, 49.4296174 8.6819785, 49.4097773 8.6939787, 49.4100046 8.6951917, 49.4179937 8.7574277, 49.3930859 8.6886712, 49.4106747 8.7780519, 49.3804529 8.6874252, 49.4080641 8.6904292, 49.3804468 8.6879276, 49.3804897 8.6880074, 49.4054553 8.6752473, 49.4085032 8.6760080, 49.4054299 8.6767260, 49.4054501 8.6767490, 49.3783483 8.7229086, 49.4113532 8.7105806, 49.4117072 8.7120923, 49.4117728 8.7099861, 49.4109653 8.7121813, 49.4150640 8.6641072, 49.4127554 8.6742068, 49.4031950 8.6874941, 49.4089758 8.6983974, 49.4146871 8.6904760, 49.4279033 8.6862724, 49.4081811 8.6762559, 49.4293751 8.6828504, 49.3792005 8.6914759, 49.4114203 8.7578946, 49.4044470 8.6760982, 49.4044947 8.6757073, 49.4030108 8.6917822, 49.4062230 8.6893127, 49.4187340 8.6766656, 49.4113889 8.7076937, 49.4105563 8.7059593, 49.3939556 8.7738779, 49.4101441 8.7052242, 49.4112034 8.7047612, 49.4089283 8.6982133, 49.4089648 8.6986876, 49.4093783 8.7008163, 49.4094359 8.7023071, 49.4089641 8.6955780, 49.4093310 8.6934805, 49.4096811 8.6934485, 49.4107724 8.7039613, 49.4135210 8.6982920, 49.4135236 8.6983348, 49.4136532 8.6995522, 49.4136586 8.6995874, 49.4136653 8.6996273, 49.4136704 8.6996657, 49.4136784 8.6997032, 49.4147926 8.7058931, 49.4148824 8.7063419, 49.4148871 8.7065669, 49.4149309 8.7068882, 49.4149475 8.7066797, 49.4149479 8.7071687, 49.4149919 8.7071051, 49.4149927 8.7074241, 49.4150256 8.7081913, 49.4150258 8.7078285, 49.4150661 8.7002381, 49.4150903 8.7004870, 49.4150921 8.7002894, 49.4150951 8.7008826, 49.4151219 8.7003450, 49.4151264 8.7002313, 49.4151345 8.7096675, 49.4151436 8.7000359, 49.4151777 8.7100283, 49.4151780 8.7001091, 49.4152021 8.7004488, 49.4152124 8.7001791, 49.4152148 8.7006510, 49.4152225 8.7007316, 49.4152342 8.7008332, 49.4152346 8.7100630, 49.4152382 8.7009821, 49.4152388 8.7101049, 49.4152399 8.7002439, 49.4152431 8.7101480, 49.4152610 8.7003151, 49.4152767 8.7003947, 49.4152793 8.7108153, 49.4152805 8.7108510, 49.4152818 8.7109028, 49.4152835 8.7109393, 49.4152853 8.7116465, 49.4153120 8.7112655, 49.4153138 8.7113003, 49.4153150 8.7113538, 49.4153174 8.7113912, 49.4153359 8.7010405, 49.4153517 8.7120597, 49.4153529 8.7120937, 49.4153538 8.7011477, 49.4153580 8.7121489, 49.4153581 8.7121854, 49.4153767 8.7125295, 49.4153790 8.7125660, 49.4153819 8.7126204, 49.4153843 8.7126560, 49.4154931 8.7015005, 49.4155882 8.7022442, 49.4155908 8.7021984, 49.4156212 8.7022867, 49.4167778 8.7060775, 49.4168014 8.7061607, 49.4168210 8.7062291, 49.4168346 8.7062779, 49.4168538 8.7063376, 49.4168695 8.7063960, 49.4168894 8.7064668, 49.4169090 8.7065366, 49.4169314 8.7066251, 49.4169507 8.7067031, 49.4171469 8.7083456, 49.4171545 8.7083064, 49.4174329 8.7086778, 49.4174385 8.7087119, 49.4174472 8.7087500, 49.4174541 8.7087854, 49.4115434 8.6778206, 49.4115719 8.6781093, 49.4116018 8.6783728, 49.4116636 8.6788246, 49.4116683 8.6788615, 49.4116892 8.6790212, 49.4117304 8.6792756, 49.4117642 8.6794854, 49.4117809 8.6795878, 49.4118179 8.6797843, 49.4118243 8.6798157, 49.4119051 8.6802066, 49.4119175 8.6802546, 49.4120239 8.6806991, 49.4120359 8.6807451, 49.4120534 8.6808168, 49.4121483 8.6812195, 49.4121611 8.6812683, 49.4123521 8.6861916, 49.4123603 8.6861595, 49.4124038 8.6832462, 49.4124084 8.6832971, 49.4124141 8.6833654, 49.4124183 8.6834114, 49.4124235 8.6834819, 49.4124287 8.6835272, 49.4124409 8.6836716, 49.4124451 8.6837162, 49.4124512 8.6837845, 49.4124563 8.6838326, 49.4124602 8.6838968, 49.4124649 8.6839456, 49.4124752 8.6840649, 49.4124785 8.6841137, 49.4124860 8.6841841, 49.4124898 8.6842343, 49.4125014 8.6843375, 49.4125043 8.6843842, 49.4125099 8.6844533, 49.4125137 8.6844986, 49.4125203 8.6845704, 49.4125288 8.6846932, 49.4125339 8.6847406, 49.4125414 8.6848040, 49.4125438 8.6848543, 49.4125448 8.6858946, 49.4125467 8.6859301, 49.4125496 8.6859685, 49.4125517 8.6849205, 49.4125551 8.6849700, 49.4125576 8.6860815, 49.4125600 8.6861275, 49.4125659 8.6850934, 49.4125705 8.6851402, 49.4125748 8.6852113, 49.4125752 8.6866215, 49.4125790 8.6866675, 49.4125791 8.6852587, 49.4125823 8.6867073, 49.4125851 8.6867519, 49.4125867 8.6858957, 49.4125896 8.6859382, 49.4125967 8.6860457, 49.4125986 8.6860924, 49.4126490 8.6868721, 49.4126762 8.6870059, 49.4127269 8.6872338, 49.4127361 8.6872693, 49.4128419 8.6876817, 49.4129289 8.6880328, 49.4129625 8.6881728, 49.4130142 8.6884328, 49.4130359 8.6885561, 49.4130704 8.6888343, 49.4130808 8.6889780, 49.4130969 8.6892249, 49.4131000 8.6893686, 49.4131099 8.6896616, 49.4131211 8.6899148, 49.4131314 8.6901896, 49.4131457 8.6906061, 49.4131567 8.6908911, 49.4131677 8.6911593, 49.4132849 8.6932346, 49.4132985 8.6935078, 49.4081416 8.6940339, 49.4097177 8.7079709, 49.4097754 8.7076634, 49.4100334 8.7081249, 49.4094319 8.6910307, 49.4095376 8.6908723, 49.4096347 8.6903912, 49.4098329 8.6894963, 49.4098809 8.6909403, 49.4099807 8.6890051, 49.4101452 8.6899150, 49.4102122 8.6904965, 49.4103847 8.6887271, 49.4105137 8.6896038, 49.4105215 8.6905059, 49.4106282 8.6901065, 49.4126702 8.6805338, 49.4159805 8.6920165, 49.4164705 8.6920883, 49.4172314 8.6911451, 49.4173345 8.6841594, 49.4090153 8.6964726, 49.4367405 8.6791812, 49.4328280 8.6823664, 49.4279082 8.6839585, 49.4128488 8.7096980, 49.4124896 8.7107633, 49.4124906 8.7096993, 49.4125760 8.7095003, 49.4090210 8.6862339, 49.4091822 8.6858735, 49.4095605 8.6872645, 49.4088652 8.6800974, 49.4098279 8.6817194, 49.4083809 8.6789361, 49.4056745 8.6881477, 49.4061925 8.6915180, 49.4063357 8.6898884, 49.4072240 8.6872972, 49.4075178 8.6824857, 49.4075631 8.6890160, 49.4079188 8.6902159, 49.4088250 8.6844653, 49.4080954 8.6910116, 49.4092552 8.6744026, 49.4111078 8.7122962, 49.4127595 8.6732173, 49.4127839 8.6732119, 49.4182810 8.6660747, 49.4183048 8.6660724, 49.4098616 8.6939795, 49.4121786 8.7068654, 49.4167698 8.6778109, 49.4279197 8.6839271, 49.4276958 8.6865270, 49.3822707 8.6904099, 49.3825429 8.6904169, 49.4112886 8.7086779, 49.4111071 8.7086876, 49.4105656 8.7086725, 49.4139871 8.6920400, 49.4140135 8.6829496, 49.4133863 8.7084302, 49.3795300 8.6822909, 49.4306638 8.6826578, 49.4156948 8.6877018, 49.4186333 8.6903397, 49.3816846 8.6868958, 49.4094722 8.7027714, 49.4089964 8.7017641, 49.4102662 8.7019427, 49.4112926 8.7027584, 49.3778358 8.6889772, 49.3790081 8.6915773, 49.3790124 8.6916319, 49.4085307 8.6937659, 49.4079584 8.6938874, 49.4085432 8.6937616, 49.4085582 8.6937574, 49.4096346 8.6933512, 49.4026410 8.6888163, 49.4047864 8.6845518, 49.4044750 8.6884416, 49.4044472 8.6883811, 49.4062695 8.6913666, 49.4062653 8.6913679, 49.4024782 8.6846927, 49.4085166 8.6926281, 49.4054839 8.6767486, 49.4046686 8.6677777, 49.4054638 8.6767142, 49.4013548 8.6761651, 49.4015292 8.6757972, 49.3989037 8.6901330, 49.4052845 8.6757308, 49.4146829 8.7477829, 49.4070199 8.6810452, 49.4078155 8.6801715, 49.4081699 8.6801714, 49.4086991 8.6905430, 49.4072067 8.6789696, 49.4083342 8.6789231, 49.4032543 8.7276844, 49.4088561 8.6818330, 49.4145805 8.6901438, 49.4184970 8.6911640, 49.4186633 8.6871792, 49.4035002 8.6810379, 49.4049652 8.6871845, 49.4032621 8.7278132, 49.4038250 8.7271649, 49.4039352 8.7271984, 49.4039835 8.7272201, 49.4039935 8.7273740, 49.4113476 8.7118706, 49.4119316 8.6969837, 49.4060908 8.6592832, 49.4042688 8.6853422, 49.3892847 8.6884090, 49.3893235 8.6878156, 49.3893265 8.6878805, 49.3893320 8.6880301, 49.3893346 8.6880937, 49.3893986 8.6884022, 49.3894342 8.6883983, 49.3894847 8.6889392, 49.3895497 8.6883873, 49.3895536 8.6889339, 49.3895906 8.6884286, 49.3896428 8.6885709, 49.3896441 8.6886103, 49.3896495 8.6887115, 49.3896508 8.6887509, 49.4101157 8.7062582, 49.3994162 8.6880161, 49.3827614 8.6820305, 49.4146530 8.6531618, 49.4054977 8.7174647, 49.4072288 8.7090672, 49.3884593 8.6987270, 49.4095152 8.7099575, 49.4122790 8.7132837, 49.4182320 8.7110293, 49.4182836 8.7111173, 49.4183230 8.7111822, 49.4183415 8.7112183, 49.4183583 8.7109497, 49.4183664 8.7109735, 49.4183905 8.7111913, 49.4185184 8.7111579, 49.4185723 8.7111685, 49.4223249 8.7271853, 49.4063266 8.6902067, 49.4063552 8.6903884, 49.4063792 8.6900717, 49.4063892 8.6905679, 49.4064095 8.6902520, 49.4064200 8.6907397, 49.4064422 8.6904266, 49.4064468 8.6909242, 49.4064703 8.6906048, 49.4064794 8.6910996, 49.4065030 8.6907801, 49.4065233 8.6910827, 49.4065329 8.6909604, 49.4194326 8.7389868, 49.4216508 8.7398273, 49.4216690 8.7397967, 49.4232008 8.7432750, 49.4232090 8.7433909, 49.4234452 8.7433599, 49.4235418 8.7433376, 49.4235505 8.7432308, 49.4235798 8.7432908, 49.4236624 8.7430358, 49.4236620 8.7430756, 49.4236630 8.7429788, 49.4238333 8.7431001, 49.4238350 8.7430648, 49.4239065 8.7430707, 49.4239066 8.7431079, 49.4240661 8.7431297, 49.4240849 8.7431006, 49.4247718 8.6874951, 49.3763204 8.7553840, 49.3890080 8.7292327, 49.3840283 8.7386112, 49.4080460 8.6903558, 49.3935639 8.7203131, 49.3972627 8.7212433, 49.4091999 8.7130968, 49.4092020 8.7130604, 49.4021774 8.6927377, 49.4044832 8.6759837, 49.4044221 8.6760066, 49.3814251 8.7215945, 49.3815367 8.7216036, 49.3831944 8.7403011, 49.3869970 8.7195906, 49.3869974 8.7195445, 49.3870298 8.7195343, 49.3870427 8.7195770, 49.3894885 8.7102578, 49.3951713 8.7036865, 49.3954603 8.7127592, 49.4088898 8.6922599, 49.3786538 8.7295186, 49.4046408 8.7179651, 49.4047363 8.7172296, 49.4174534 8.7630975, 49.4175289 8.7506012, 49.4177338 8.7497360, 49.4179209 8.7590031, 49.4180857 8.7571952, 49.4181637 8.7572861, 49.4182397 8.7479412, 49.4234422 8.7433751, 49.4187291 8.7567160, 49.4116996 8.7081109, 49.4122929 8.7084018, 49.4203724 8.7396448, 49.4083367 8.6887571, 49.4036198 8.6878647, 49.4148759 8.6920045, 49.4148404 8.6920032, 49.4148581 8.6920035, 49.3925051 8.7465066, 49.3936499 8.7467333, 49.4093534 8.7128936, 49.4093971 8.7121991, 49.4098919 8.7173407, 49.4099678 8.7144797, 49.4099731 8.7184425, 49.4100699 8.7141070, 49.4100786 8.7194216, 49.4101316 8.7144342, 49.4101411 8.7141426, 49.4101988 8.7141381, 49.4102039 8.7193974, 49.4103050 8.7168773, 49.4103129 8.7143794, 49.4103608 8.7141258, 49.4104710 8.7168764, 49.4104859 8.7143310, 49.4106648 8.7191828, 49.4107429 8.7170959, 49.4107823 8.7191620, 49.4136457 8.7090100, 49.4112833 8.6739247, 49.4097258 8.6726725, 49.4127246 8.6919926, 49.4130025 8.7021651, 49.4080147 8.7070194, 49.4064043 8.7093237, 49.4069912 8.7081431, 49.4070106 8.7081409, 49.4084132 8.7069017, 49.4073131 8.7082381, 49.4093935 8.7114074, 49.4058518 8.7089388, 49.4058771 8.7090021, 49.4058928 8.7090643, 49.4060909 8.7094006, 49.4061921 8.7087272, 49.4062967 8.7088405, 49.4065461 8.7084278, 49.4090353 8.7089034, 49.4091540 8.7112307, 49.4091709 8.7112356, 49.4096725 8.7137353, 49.4098179 8.7137279, 49.4099150 8.7125621, 49.4099230 8.7126396, 49.4099251 8.7126625, 49.4099313 8.7127121, 49.4099549 8.7127305, 49.4100813 8.7133948, 49.4100883 8.7130583, 49.4101802 8.7111524, 49.4102297 8.7132317, 49.4102478 8.7191369, 49.4102848 8.7111824, 49.4102927 8.7111997, 49.4109655 8.7126880, 49.4109674 8.7126985, 49.4143251 8.7187531, 49.4091076 8.7127307, 49.4091485 8.7127837, 49.4091615 8.7128493, 49.4092653 8.7127841, 49.4072810 8.7116507, 49.4120895 8.7117401, 49.4095383 8.7258139, 49.4057183 8.6993035, 49.4156885 8.7217025, 49.4382046 8.6794526, 49.4373909 8.6752550, 49.4156539 8.7141859, 49.4056328 8.6759129, 49.4078209 8.6745428, 49.3794364 8.7572777, 49.4005231 8.7520710, 49.4520317 8.7210462, 49.4533642 8.7231386, 49.4539239 8.7233059, 49.4067167 8.7749002, 49.4116311 8.7072953, 49.4064506 8.7754194, 49.4071160 8.7756052, 49.4106569 8.7780589, 49.4106890 8.7780404, 49.4148010 8.6907411, 49.3715121 8.7203769, 49.3854627 8.6732681, 49.3769857 8.6847203, 49.3763424 8.6904918, 49.3806318 8.6903397, 49.3845467 8.6890952, 49.3867100 8.6889664, 49.3940819 8.6861279, 49.3995012 8.6869038, 49.4087049 8.7054045, 49.4095083 8.7002566, 49.4092054 8.6986720, 49.4095075 8.7003178, 49.4095086 8.7003605, 49.4096306 8.7001578, 49.4098521 8.7001275, 49.4135211 8.6950922, 49.4135230 8.6952172, 49.4136428 8.6936066, 49.4117690 8.6780601, 49.4117749 8.6780703, 49.4117809 8.6780806, 49.4139081 8.7008061, 49.4139258 8.7009358, 49.4139425 8.7009741, 49.4178699 8.7606013, 49.4179065 8.7609930, 49.4196081 8.6977385, 49.4387572 8.6820263, 49.4118037 8.7180807, 49.4121881 8.7183730, 49.4124287 8.7180384, 49.4124516 8.7184053, 49.4124711 8.7181158, 49.4124828 8.7183175, 49.4125484 8.7179385, 49.4126276 8.7179222, 49.4127021 8.7179082, 49.4127329 8.7179408, 49.4115944 8.7188677, 49.4059942 8.6597446, 49.3983567 8.6891918, 49.4130575 8.7096585, 49.4024228 8.6765906, 49.4115837 8.7106378, 49.3738871 8.7039058, 49.4187340 8.6766656, 49.3943330 8.6900180, 49.4114155 8.7034039, 49.4079188 8.6896894, 49.4080292 8.6761951, 49.4072190 8.7145767, 49.4052150 8.6872450, 49.4082939 8.6917604, 49.3818915 8.7204190, 49.4176657 8.7007942, 49.4192490 8.7166625, 49.4298438 8.7274314, 49.4084511 8.6746131, 49.4061961 8.6789422, 49.4039868 8.7655190, 49.4116009 8.6936854, 49.4116366 8.6939477, 49.4119847 8.6964756, 49.4120403 8.6968678, 49.4120737 8.6971143, 49.4121300 8.6990129, 49.4124654 8.6991004, 49.4125032 8.6994371, 49.4125305 8.6996150, 49.4126496 8.7004551, 49.4139587 8.7760375, 49.4152443 8.7101617, 49.4152812 8.7105934, 49.4152922 8.7117185, 49.4152947 8.7117927, 49.4153713 8.7130701, 49.4169656 8.7675928, 49.4171575 8.7606858, 49.4171606 8.7606666, 49.4171643 8.7606441, 49.4174978 8.7655448, 49.4175068 8.7655614, 49.4175156 8.7606234, 49.4183221 8.7563527, 49.4183838 8.7567672, 49.4179298 8.7611063, 49.4131467 8.7041307, 49.4132296 8.7046438, 49.4280601 8.6876310, 49.4139314 8.6860294, 49.4358192 8.7140535, 49.4061410 8.6849453, 49.4217033 8.7362487, 49.4289947 8.7222566, 49.4354328 8.7189439, 49.4185367 8.7071970, 49.4056017 8.6751788, 49.4302838 8.6879053, 49.4326149 8.6908032, 49.4326288 8.6908232, 49.4295713 8.6928758, 49.4297956 8.6933545, 49.4312402 8.7049673, 49.4313194 8.7048672, 49.4313215 8.7053386, 49.4315747 8.7012829, 49.4316086 8.7052965, 49.4317007 8.7059223, 49.4317379 8.7056901, 49.4318419 8.7053139, 49.4344754 8.6863785, 49.4347400 8.6862802, 49.4440417 8.7607029, 49.4440688 8.7606213, 49.4149008 8.6641860, 49.4149077 8.6641649, 49.4180002 8.7565605, 49.4137201 8.7475448, 49.4137332 8.7475363, 49.4137486 8.7475349, 49.4137615 8.7475448, 49.4137797 8.7474059, 49.4138029 8.7474016, 49.4148831 8.7497404, 49.4148868 8.7479978, 49.4151527 8.7563640, 49.4151832 8.7505051, 49.4155510 8.7428157, 49.4155544 8.7427972, 49.4155562 8.7428419, 49.4155982 8.7589848, 49.4156021 8.7589619, 49.4156152 8.7415910, 49.4156686 8.7426209, 49.4156725 8.7421792, 49.4156785 8.7425746, 49.4148726 8.7469187, 49.4112520 8.7462829, 49.4112724 8.7462973, 49.4113466 8.7459929, 49.4125678 8.7457320, 49.4128251 8.7456405, 49.4147095 8.7445952, 49.4151180 8.7605724, 49.4155490 8.7546778, 49.4234637 8.7522347, 49.4235281 8.7521732, 49.4248546 8.7504451, 49.4275324 8.7480598, 49.4277478 8.7478736, 49.4278819 8.7486168, 49.4321934 8.7465197, 49.4179564 8.7608483, 49.4151355 8.7622636, 49.4151544 8.7622039, 49.4151589 8.7619214, 49.4151672 8.7619353, 49.4151703 8.7621819, 49.4151716 8.7621468, 49.4151858 8.7621002, 49.4152411 8.7620209, 49.4193176 8.7611788, 49.4194443 8.7638623, 49.4211542 8.7663970, 49.4211638 8.7663807, 49.4361554 8.7473136, 49.4503971 8.7540258, 49.4505498 8.7548707, 49.4150982 8.6920129, 49.4128834 8.6763430, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349, 49.4042326 8.6765306, 49.4042591 8.6764899, 49.4042651 8.6766048, 49.4042806 8.6764879, 49.4042865 8.6766028, 49.4043021 8.6764859, 49.4043080 8.6766008, 49.4042758 8.6769736, 49.3764527 8.7503330, 49.3832310 8.7635477, 49.3850177 8.7598521, 49.3967294 8.6784456, 49.4277498 8.6794326, 49.4376060 8.6778079, 49.4109969 8.7018271, 49.4135622 8.7123456, 49.4135669 8.7123752, 49.4135720 8.7124026, 49.4138154 8.7145470, 49.4138294 8.7145607, 49.4138443 8.7145799, 49.4138789 8.7147380, 49.4138846 8.7147882, 49.4138920 8.7148371, 49.4210047 8.7197754, 49.4212544 8.7211149, 49.4214724 8.7212627, 49.4215003 8.7213772, 49.4195317 8.7042414, 49.4253449 8.7062774, 49.4274261 8.7150016, 49.4064554 8.6918633, 49.4075653 8.6902108, 49.4168755 8.6790034, 49.4174588 8.7442165, 49.4291086 8.6831848, 49.4563906 8.7469187, 49.4214385 8.7430129, 49.4216935 8.7426109, 49.4298773 8.7406510, 49.4314052 8.7205319, 49.4314637 8.7207288, 49.4314709 8.7207701, 49.4004143 8.6826744, 49.4103434 8.6975297, 49.4078085 8.6911371, 49.4224261 8.6791231, 49.3990722 8.6890995, 49.4071931 8.6946238, 49.4071949 8.6946447, 49.4071953 8.6946670, 49.4072038 8.6948346, 49.4072056 8.6948709, 49.4072063 8.6948526, 49.4072127 8.6950113, 49.4072144 8.6950309, 49.4072145 8.6950487, 49.4072403 8.6944723, 49.4073302 8.6951246, 49.4073498 8.6952644, 49.4073616 8.6951274, 49.4073796 8.6944660, 49.4073889 8.6952944, 49.4074110 8.6951213, 49.4074113 8.6953062, 49.4074376 8.6951102, 49.4076208 8.6955166, 49.4085567 8.6984721, 49.4085838 8.6986718, 49.4086914 8.6984200, 49.4087341 8.6986320, 49.4088395 8.6983628, 49.4088807 8.6985932, 49.4084040 8.6996182, 49.4084216 8.6996088, 49.4084408 8.6995987, 49.4183241 8.7109660, 49.4183534 8.7112773, 49.4185461 8.7111646, 49.4214848 8.6781702, 49.4215415 8.6781082, 49.4215513 8.6781535, 49.3992315 8.6710140, 49.4072938 8.6914379, 49.4066555 8.6904427, 49.4113362 8.6758006, 49.4128313 8.7018360, 49.4061585 8.6903063, 49.4063133 8.6910718, 49.4062193 8.6902164, 49.4062509 8.6913187, 49.4062642 8.6913883, 49.4062712 8.6914200, 49.4065256 8.6894680, 49.4221499 8.7232034, 49.4184811 8.6699057, 49.4151221 8.7620371, 49.4177261 8.7614656, 49.4087408 8.6948581, 49.4057652 8.6829089, 49.3770570 8.7037872, 49.4276918 8.6792933, 49.4221718 8.6830698, 49.4284350 8.6851029, 49.4329321 8.6806773, 49.4375579 8.6778878, 49.4248551 8.6842312, 49.4248865 8.6878012, 49.4338496 8.6803071, 49.4050779 8.6763506, 49.4145642 8.6791001, 49.4135694 8.6925166, 49.4159532 8.6836921, 49.4156740 8.6813317, 49.4218996 8.6752378, 49.4204972 8.6680274, 49.3763340 8.6903976, 49.3805945 8.6911695, 49.3769487 8.6846577, 49.3862379 8.6927467, 49.3811048 8.6780165, 49.4093291 8.6596550, 49.4162144 8.6702242, 49.4155972 8.6663847, 49.4132974 8.7097572, 49.4038060 8.7273316, 49.4040883 8.7365303, 49.3794075 8.6800350, 49.3753020 8.7105644, 49.3774350 8.7110455, 49.3841273 8.7139546, 49.4125123 8.7110100, 49.4151012 8.6731211, 49.4158568 8.6728207, 49.4000303 8.6917151, 49.4000488 8.6917225, 49.3947281 8.7165182, 49.4112569 8.7030447, 49.3718129 8.7285170, 49.3719890 8.7321161, 49.4285342 8.6860967, 49.4279736 8.6864593, 49.4280012 8.6865692, 49.4283321 8.6836841, 49.4042867 8.6760445, 49.4046185 8.6759242, 49.4020821 8.7437959, 49.4020681 8.7444081, 49.4039410 8.6759975, 49.4040475 8.6759775, 49.4041302 8.6755556, 49.4041420 8.6755374, 49.4010895 8.6737918, 49.4037999 8.6762631, 49.4048319 8.6776675, 49.4075656 8.6930731, 49.4116784 8.7028078, 49.4436332 8.6767203, 49.4045128 8.6751651, 49.4462367 8.6752509, 49.4467163 8.6741899, 49.4466446 8.6742587, 49.4071802 8.6893369, 49.4080003 8.6887809, 49.4045734 8.6760561, 49.4046470 8.6759216, 49.4360761 8.6814958, 49.4365473 8.6813729, 49.4268495 8.6858867, 49.4268685 8.6858709, 49.4268959 8.6865750, 49.4269168 8.6865652, 49.4269288 8.6853519, 49.4269485 8.6853552, 49.4269485 8.6858925, 49.4269660 8.6858873, 49.4270429 8.6858538, 49.4270484 8.6854051, 49.4270655 8.6858472, 49.4270698 8.6854222, 49.4271253 8.6864141, 49.4271441 8.6855759, 49.4271441 8.6863891, 49.4078499 8.6884637, 49.3841060 8.6837074, 49.4018418 8.6726917, 49.4013623 8.6726870, 49.4035624 8.6765204, 49.4425096 8.6694040, 49.4023324 8.6670234, 49.4127255 8.7132864, 49.4135174 8.7817164, 49.4286563 8.7824937, 49.4533762 8.7238315, 49.4148310 8.7192634, 49.4103323 8.7353954, 49.4279707 8.6838908, 49.4150560 8.7716803, 49.4150601 8.7716627, 49.4150642 8.7716451, 49.4159877 8.7643853, 49.4159965 8.7643447, 49.4048445 8.6761839, 49.4049471 8.6762314, 49.4049557 8.6756478, 49.4050321 8.6758169, 49.4030610 8.6811985, 49.4035642 8.6819831, 49.4059522 8.6852467, 49.4136635 8.7632703, 49.4122451 8.7658820, 49.4181525 8.7414701, 49.4181608 8.7414829, 49.4185349 8.7408142, 49.4187580 8.7405498, 49.4121743 8.7517032, 49.4124159 8.7495130, 49.4124293 8.7494807, 49.4125175 8.7494611, 49.4125707 8.7494540, 49.4126622 8.7498917, 49.4127069 8.7496113, 49.4127078 8.7496600, 49.4134521 8.7382933, 49.4142223 8.7555186, 49.4147744 8.7633585, 49.4149096 8.7628777, 49.4149572 8.7582791, 49.4150115 8.7622237, 49.4150702 8.7619163, 49.4054812 8.7836435, 49.4158001 8.7657818, 49.4158018 8.7655150, 49.4158079 8.7654703, 49.4160363 8.7642679, 49.4160425 8.7642396, 49.4094855 8.7182657, 49.4114591 8.7705882, 49.4111425 8.7704739, 49.4111900 8.7704641, 49.4119501 8.7000203, 49.4119964 8.6988133, 49.4120018 8.6989349, 49.4120072 8.6990566, 49.3934396 8.7806213, 49.3934443 8.7806502, 49.3934469 8.7806752, 49.4094639 8.7149578, 49.4088380 8.6918600, 49.4151366 8.7617673, 49.4181473 8.7565975, 49.4177904 8.7599764, 49.4173760 8.7603090, 49.4101378 8.7039303, 49.4180271 8.7582998, 49.4177077 8.7607905, 49.4151843 8.7603553, 49.4078640 8.6914271, 49.4138174 8.7705256, 49.4221411 8.6971096, 49.4132187 8.7653935, 49.4252154 8.6874565, 49.4252008 8.6863559, 49.3947519 8.7087503, 49.4102265 8.6939011, 49.4091216 8.7132311, 49.4113896 8.7119508, 49.4273780 8.6782001, 49.3891812 8.6768465, 49.3979127 8.6724262, 49.3981734 8.6718714, 49.3981825 8.6718508, 49.3982573 8.6716829, 49.3982938 8.6709113, 49.3983375 8.6715026, 49.3983475 8.6708983, 49.3983556 8.6707639, 49.3983559 8.6708854, 49.3983669 8.6709310, 49.3983902 8.6707765, 49.3983965 8.6713702, 49.3984099 8.6713401, 49.3984225 8.6713117, 49.3984390 8.6707561, 49.3984404 8.6706863, 49.3984425 8.6708661, 49.3984851 8.6708428, 49.3985095 8.6706982, 49.3985367 8.6709364, 49.3985499 8.6709062, 49.3985548 8.6710778, 49.3985610 8.6708811, 49.3985656 8.6710534, 49.3985692 8.6708624, 49.3985795 8.6707479, 49.3987236 8.6710256, 49.3987464 8.6709695, 49.3987552 8.6711432, 49.3987609 8.6709337, 49.3987942 8.6711331, 49.3988039 8.6711102, 49.3988048 8.6713733, 49.3988165 8.6714003, 49.3988172 8.6710791, 49.3988287 8.6714284, 49.3988333 8.6710412, 49.3988441 8.6710159, 49.3989254 8.6710285, 49.3989431 8.6710341, 49.3989669 8.6710415, 49.3991080 8.6718293, 49.3992934 8.6715103, 49.3993188 8.6714735, 49.3993395 8.6714433, 49.3993496 8.6714287, 49.3993664 8.6714043, 49.4104061 8.7157086, 49.4108151 8.7149178, 49.4105292 8.7152167, 49.3769656 8.7551097, 49.4113551 8.7116070, 49.4092130 8.6930903, 49.4045235 8.6882943, 49.4137144 8.6921269, 49.4280965 8.6875928, 49.4281382 8.6876771, 49.4281430 8.6876704, 49.3903198 8.7340553, 49.3872710 8.7354484, 49.3873929 8.7356478, 49.4223460 8.7539976, 49.4094481 8.7011221, 49.3802219 8.6868984, 49.3944379 8.6770158, 49.3904225 8.6819080, 49.4230545 8.6906504, 49.3804723 8.6884268, 49.3798268 8.6903215, 49.3900486 8.6883781, 49.3896229 8.6900545, 49.3790377 8.6919226, 49.3857287 8.6902529, 49.3788917 8.6918226, 49.3881762 8.6886005, 49.4062901 8.6603224, 49.4065445 8.6597206, 49.4068117 8.6707739, 49.3721232 8.7129859, 49.4171231 8.7603742, 49.4133991 8.6740344, 49.4135596 8.6740236, 49.4161640 8.6686617, 49.4101645 8.7749164, 49.4112870 8.7102176, 49.4138118 8.6719647, 49.4101724 8.7749101, 49.4132788 8.7650492, 49.4173960 8.7485433, 49.4148281 8.6710977, 49.3841629 8.6716409, 49.3841632 8.6715765, 49.4085491 8.6801439, 49.4182525 8.6662118, 49.4156460 8.6666103, 49.4157103 8.6706413, 49.4116946 8.6715847, 49.4038758 8.6913357, 49.4213239 8.7627154, 49.4235077 8.7668512, 49.4235470 8.7668294, 49.4239402 8.7651827, 49.4181982 8.6672239, 49.4156419 8.6661970, 49.4133739 8.6940979, 49.4108048 8.6946155, 49.4017075 8.6672838, 49.4072203 8.6719856, 49.4076501 8.6726936, 49.4077117 8.6665043, 49.4083820 8.6677978, 49.4088053 8.6626673, 49.4088194 8.6626550, 49.4101363 8.6521754, 49.4101469 8.6522088, 49.4101555 8.6521855, 49.4102538 8.6521520, 49.3991176 8.6681880, 49.4137233 8.7111570, 49.4137348 8.7113230, 49.4137449 8.7114559, 49.4137550 8.7116406, 49.4137706 8.7118503, 49.4137793 8.7119624, 49.4077695 8.6948215, 49.4077800 8.6949583, 49.4018269 8.6852302, 49.4018057 8.6852432, 49.4143283 8.7699002, 49.3839947 8.6801414, 49.4069887 8.6681549, 49.4400410 8.7054293, 49.4403610 8.6901185, 49.4427770 8.7010917, 49.4428904 8.7011248, 49.4436522 8.7046253, 49.4447313 8.7167032, 49.4493112 8.7170805, 49.4501832 8.6816365, 49.4504996 8.7105690, 49.4510659 8.7137824, 49.4512781 8.7130789, 49.4514570 8.7128576, 49.4576955 8.7024629, 49.4175256 8.6906313, 49.4133107 8.7103589, 49.3786163 8.6868257, 49.3810024 8.6888615, 49.3799295 8.6843446, 49.4157129 8.7420168, 49.4157085 8.7420436, 49.3727648 8.7034774, 49.3744103 8.7047986, 49.4070381 8.6724331, 49.3765321 8.7073134, 49.3789910 8.7062655, 49.3790486 8.7061511, 49.3813337 8.7061950, 49.3843800 8.7049644, 49.4096598 8.6875604, 49.4161193 8.6695151, 49.4192446 8.6670292, 49.4190187 8.6670533, 49.4228034 8.7562833, 49.4186267 8.7633174, 49.4110019 8.6963668, 49.4095775 8.6928963, 49.4066118 8.6751595, 49.4151780 8.7091101, 49.4130490 8.7132403, 49.4454895 8.6843415, 49.4467774 8.6821383, 49.4470349 8.6856331, 49.4457295 8.6845885, 49.4457484 8.6845653, 49.4465007 8.6867256, 49.4474791 8.6852872, 49.4475191 8.6852251, 49.4541654 8.6930399, 49.4541922 8.6931063, 49.4058639 8.6880015, 49.4055473 8.6869151, 49.4056131 8.6868331, 49.4059837 8.6870296, 49.4255601 8.7054853, 49.4459612 8.7647881, 49.4492841 8.7244927, 49.4570546 8.7373690, 49.4570654 8.7374318, 49.4073424 8.6881133, 49.4225105 8.7607521, 49.4456911 8.7252542, 49.4474507 8.6816983, 49.4476801 8.7230986, 49.4477434 8.6815891, 49.4494285 8.6858551, 49.4514906 8.6903165, 49.4118434 8.7084139, 49.4118301 8.7082274, 49.4120407 8.7101017, 49.4117760 8.7068775, 49.4117663 8.7064409, 49.4116256 8.7077404, 49.3998478 8.6788359, 49.3994491 8.6769626, 49.4200540 8.6567921, 49.4061587 8.6617527, 49.4120722 8.7104053, 49.4120974 8.7105730, 49.4121297 8.7103849, 49.4121549 8.7105527, 49.4118680 8.7106616, 49.4013072 8.6721502, 49.4014465 8.6714876, 49.4015849 8.6707968, 49.4016021 8.6707184, 49.4017318 8.6700873, 49.4013697 8.6715978, 49.3993472 8.6710771, 49.4009632 8.6658836, 49.4009959 8.6658140, 49.4011343 8.6655103, 49.4011633 8.6654446, 49.4019197 8.6692954, 49.4019718 8.6690844, 49.4135324 8.6916012, 49.3807734 8.6884609, 49.4110119 8.7122254, 49.4135955 8.7092288, 49.4085554 8.6900358, 49.4085894 8.6902323, 49.4188847 8.6767281, 49.4471590 8.6743455, 49.3820987 8.7124588, 49.4051458 8.6859422, 49.3787743 8.6924168, 49.4197888 8.6714328, 49.4056550 8.6876583, 49.4233507 8.7642696, 49.4426344 8.6927752, 49.4447928 8.6895290, 49.4118150 8.7020910, 49.4455647 8.7378006, 49.4332243 8.6805482, 49.4059012 8.7242277, 49.4052285 8.7315097, 49.4093727 8.7028215, 49.4067051 8.7142475, 49.4098558 8.7167639, 49.4098722 8.7170163, 49.4098973 8.7173837, 49.4099475 8.7180563, 49.4099786 8.7184857, 49.4099950 8.7170975, 49.4100534 8.7194225, 49.4101050 8.7187620, 49.4121627 8.7182119, 49.4121842 8.7181162, 49.4122296 8.7184488, 49.4105161 8.7190962, 49.4127360 8.7206023, 49.3854871 8.7172741, 49.3877953 8.7164964, 49.3885396 8.7164124, 49.3798101 8.7239219, 49.3889269 8.7394096, 49.3925735 8.7149710, 49.3969482 8.6948600, 49.3977254 8.7093393, 49.4010648 8.6650738, 49.4098380 8.7162564, 49.4099390 8.7165322, 49.4103299 8.7168762, 49.4103829 8.7192261, 49.4105964 8.7178042, 49.4105993 8.7195552, 49.4107456 8.7191253, 49.4107807 8.7155977, 49.4109716 8.7182381, 49.4109986 8.7147633, 49.4110079 8.7147929, 49.4111457 8.7151424, 49.4112128 8.7185068, 49.4114128 8.7181597, 49.4114288 8.7181572, 49.4097556 8.7156766, 49.4098280 8.7162338, 49.4101613 8.7153622, 49.4104752 8.7182390, 49.4104821 8.7168792, 49.4104877 8.7194657, 49.4097080 8.7160380, 49.4097217 8.7160197, 49.4099981 8.7191416, 49.4099988 8.7191803, 49.4100422 8.7153160, 49.4104064 8.7192234, 49.4104274 8.7192173, 49.4104415 8.7182486, 49.4106064 8.7173521, 49.4106076 8.7156311, 49.4106272 8.7194392, 49.4106563 8.7181095, 49.4108853 8.7156490, 49.4110515 8.7148230, 49.4110551 8.7148607, 49.4110636 8.7148870, 49.4110720 8.7149133, 49.4115566 8.7152637, 49.4116103 8.7153334, 49.4116341 8.7181133, 49.4116378 8.7153197, 49.4109333 8.7154205, 49.4109379 8.7175902, 49.4109596 8.7182382, 49.4110919 8.7149751, 49.4111004 8.7150014, 49.4111088 8.7150277, 49.4111288 8.7150897, 49.4111320 8.7182111, 49.4111372 8.7151160, 49.4116536 8.7181114, 49.4116665 8.7153655, 49.4116823 8.7184156, 49.4116844 8.7154301, 49.4187077 8.7063438, 49.3709028 8.7109422, 49.4114686 8.7705695, 49.4253133 8.7614921, 49.4186335 8.7565871, 49.4188251 8.7567040, 49.4190140 8.7566290, 49.4190352 8.7566560, 49.4185940 8.7565551, 49.4197463 8.7604605, 49.4207104 8.7596133, 49.4207411 8.7595905, 49.4219259 8.7602991, 49.4219385 8.7603183, 49.4263861 8.7616530, 49.4206435 8.7565048, 49.4204665 8.7578129, 49.4207717 8.7595677, 49.4220708 8.7603329, 49.4298831 8.7657770, 49.4283041 8.7622011, 49.4526605 8.7512185, 49.4526605 8.7512413, 49.4265953 8.7562127, 49.4191215 8.7177315, 49.4371482 8.7630409, 49.4226907 8.7555486, 49.4065083 8.6677562, 49.4065929 8.6671666, 49.4084287 8.6611769, 49.4085181 8.6612070, 49.4094265 8.6529245, 49.4095597 8.6522897, 49.4343854 8.6821967, 49.4349136 8.6820812, 49.4381532 8.7268706, 49.4230250 8.7421400, 49.4230396 8.7421350, 49.4257707 8.7387430, 49.4356381 8.7252531, 49.4379769 8.7389567, 49.4141807 8.6864884, 49.4205459 8.7466924, 49.4228858 8.7420621, 49.3935785 8.6951043, 49.4334525 8.7382891, 49.4382468 8.6952598, 49.4383218 8.6951379, 49.3961494 8.6963931, 49.4306546 8.6920133, 49.4189955 8.7248358, 49.4215246 8.7428804, 49.4242588 8.7379921, 49.4271608 8.7342548, 49.4023929 8.6649975, 49.3982281 8.6679666, 49.4082103 8.6913456, 49.4082494 8.6913249, 49.4103490 8.7069722, 49.3843618 8.6952816, 49.4083514 8.6761325, 49.4042191 8.6751648, 49.4041278 8.6759022, 49.4041286 8.6759159, 49.4043907 8.6758759, 49.4043950 8.6758700, 49.4043951 8.6758758, 49.4043994 8.6758698, 49.4043995 8.6758756, 49.4044017 8.6758726, 49.4035398 8.6753065, 49.4035524 8.6753223, 49.4036499 8.6754541, 49.4036573 8.6754602, 49.4037022 8.6754667, 49.4037371 8.6758205, 49.4038959 8.6757618, 49.4040408 8.6759780, 49.4040510 8.6758571, 49.4040942 8.6759069, 49.4040950 8.6759205, 49.4043882 8.6758732, 49.4124828 8.7148310, 49.4117022 8.7115271, 49.4117363 8.7115060, 49.4117978 8.7118760, 49.4118218 8.7118576, 49.4118443 8.7114390, 49.4118631 8.7118261, 49.4118667 8.7114251, 49.4118869 8.7118078, 49.4119117 8.7113972, 49.4119342 8.7113833, 49.4122382 8.7129316, 49.4095387 8.6933681, 49.4095499 8.6933429, 49.4095581 8.6933826, 49.4102931 8.6927198, 49.4103305 8.6929293, 49.4103421 8.6928960, 49.4102259 8.6925667, 49.4102390 8.6925587, 49.4102518 8.6925507, 49.4102120 8.6935885, 49.4109528 8.6922372, 49.4109654 8.6922504, 49.4110751 8.6923977, 49.4110810 8.6924151, 49.4123496 8.7119283, 49.4099021 8.7003337, 49.4108200 8.6949938, 49.4150291 8.7081692, 49.4040132 8.6738468, 49.4040195 8.6738532, 49.4040200 8.6738315, 49.4040263 8.6738379, 49.4040563 8.6743517, 49.4040626 8.6743580, 49.4040631 8.6743363, 49.4040694 8.6743427, 49.4041965 8.6740312, 49.4042027 8.6745027, 49.4042029 8.6740376, 49.4030063 8.6756393, 49.4035897 8.6743213, 49.4035960 8.6743276, 49.4035964 8.6743060, 49.4038725 8.6741646, 49.4038789 8.6741709, 49.4038793 8.6741493, 49.4038856 8.6741556, 49.4030126 8.6756456, 49.4030131 8.6756239, 49.4030194 8.6756303, 49.4036028 8.6743123, 49.4042033 8.6740159, 49.4042091 8.6745090, 49.4042095 8.6744874, 49.4042096 8.6740222, 49.4042158 8.6744937, 49.4043441 8.6741825, 49.4043504 8.6741889, 49.4043508 8.6741672, 49.4043572 8.6741735, 49.4050523 8.6856736, 49.4084782 8.6937498, 49.4085211 8.6937683, 49.4220320 8.6976552, 49.4232372 8.6974657, 49.4232429 8.6974457, 49.4236711 8.6964872, 49.4055449 8.6883943, 49.4016204 8.6845377, 49.4051006 8.6848847, 49.4086553 8.6936567, 49.4132994 8.6919481, 49.4234494 8.6968852, 49.4234619 8.6968588, 49.4239644 8.6962809, 49.4239766 8.6962803, 49.4244382 8.6964563, 49.4248126 8.6965047, 49.4266516 8.6900922, 49.4279337 8.6910758, 49.4233185 8.6972468, 49.4244184 8.6964491, 49.4252472 8.6964019, 49.4254448 8.6963121, 49.4256648 8.6961988, 49.4256814 8.6961886, 49.4276688 8.6971645, 49.4276844 8.6971713, 49.4277077 8.6893931, 49.4287041 8.6962502, 49.4073803 8.6919832, 49.4163008 8.6717534, 49.4170921 8.6706966, 49.4100342 8.7062078, 49.4199403 8.6581676, 49.4263561 8.6613690, 49.4114202 8.6969720, 49.3999110 8.6783652, 49.3998036 8.6780609, 49.4483155 8.6893337, 49.4204769 8.7052380, 49.4221172 8.7055780, 49.4360737 8.6793655, 49.4329720 8.6805360, 49.4434767 8.6720046, 49.4431652 8.6709311, 49.4419297 8.6688858, 49.4063251 8.6755799, 49.4372140 8.6797393, 49.4378001 8.6797566, 49.4421821 8.6650097, 49.4405259 8.6652199, 49.4376306 8.6777982, 49.4287977 8.6836286, 49.4282796 8.6827973, 49.4047972 8.6739218, 49.4278804 8.6861552, 49.4082062 8.6763355, 49.3798890 8.6777329, 49.4271018 8.6801686, 49.4098483 8.6605879, 49.4214767 8.6751246, 49.4157016 8.6528859, 49.4204267 8.6756874, 49.4201425 8.6719237, 49.4203138 8.6703791, 49.4210841 8.6683206, 49.4200492 8.6683293, 49.4149913 8.6535552, 49.4039134 8.6767400, 49.4058862 8.6897740, 49.4060206 8.6905342, 49.4061503 8.6912857, 49.4088332 8.6757532, 49.4034240 8.6790856, 49.4282288 8.6836632, 49.3965511 8.6771437, 49.3935396 8.6817411, 49.3952870 8.6836845, 49.3958629 8.6832887, 49.4202026 8.6693547, 49.4225207 8.6751194, 49.4221340 8.6753895, 49.4218537 8.6754364, 49.4227238 8.6738472, 49.4227696 8.6727444, 49.4162298 8.6755281, 49.4154291 8.6756221, 49.4145364 8.6757808, 49.4162187 8.6774400, 49.4212459 8.6738490, 49.4210596 8.6732314, 49.4094114 8.6739566, 49.4089529 8.6602625, 49.4115623 8.6538584, 49.4132855 8.6517669, 49.4167321 8.6742199, 49.4156100 8.6707017, 49.4139089 8.6729704, 49.4180755 8.6627175, 49.4135711 8.6685440, 49.4133710 8.6685603, 49.4229672 8.6628733, 49.4253832 8.6563505, 49.4244918 8.6574290, 49.4201274 8.6592504, 49.4183168 8.6570383, 49.4129687 8.6642981, 49.4143409 8.6651836, 49.4194911 8.6655520, 49.4177447 8.6641338, 49.4215359 8.6818834, 49.4188910 8.6769323, 49.4211075 8.6775566, 49.4211894 8.6670319, 49.4130779 8.6696042, 49.4130810 8.6699968, 49.4134398 8.6714192, 49.4137439 8.6769747, 49.4155869 8.6784841, 49.4139913 8.6704329, 49.4136024 8.6776951, 49.3962000 8.7085445, 49.4234080 8.6595192, 49.4226921 8.6586119, 49.4229974 8.6608946, 49.4236303 8.6561909, 49.4240515 8.6571965, 49.4260202 8.6577463, 49.4200690 8.6616681, 49.4191043 8.6617726, 49.4204248 8.6636381, 49.4194488 8.6605899, 49.4192298 8.6640734, 49.4194061 8.6615040, 49.4175471 8.6615820, 49.4175057 8.6611975, 49.4177856 8.6598202, 49.4162074 8.6584117, 49.4162463 8.6598488, 49.4166299 8.6607801, 49.4141965 8.6658413, 49.4140546 8.6667870, 49.4145234 8.6662068, 49.4130970 8.6671099, 49.4337847 8.6803905, 49.4337620 8.6799996, 49.4133488 8.6736185, 49.4135576 8.6745116, 49.4126377 8.6749116, 49.4063838 8.6765104, 49.4085613 8.6631372, 49.4061810 8.6696987, 49.4071975 8.6762084, 49.3910080 8.6741013, 49.3913345 8.6763079, 49.3900958 8.6760409, 49.3966746 8.6792043, 49.3850197 8.6741885, 49.4193992 8.6682836, 49.4188931 8.6520438, 49.4187945 8.6519285, 49.4176786 8.7568038, 49.4174427 8.7569407, 49.4180751 8.7587556, 49.4192662 8.7566097, 49.4195655 8.7564736, 49.4226110 8.7421281, 49.4129370 8.6731498, 49.4152120 8.7062933, 49.4491425 8.6751887, 49.4288946 8.6862100, 49.4171569 8.6846986, 49.4162022 8.6847312, 49.4092092 8.6812299, 49.4081243 8.6917754, 49.4077406 8.6904605, 49.4067223 8.6865145, 49.4149163 8.6654747, 49.4507236 8.6784217, 49.4446326 8.6743638, 49.4449864 8.6741832, 49.3978801 8.6820904, 49.3848739 8.7095776, 49.4458920 8.6742896, 49.4143085 8.6953118, 49.4143538 8.6955138, 49.4146629 8.6946010, 49.4147014 8.6950938, 49.4144404 8.6947195, 49.4148906 8.6954429, 49.3768283 8.6892364, 49.4200609 8.6890566, 49.3803262 8.7254433, 49.3848261 8.7330761, 49.4242592 8.7437691, 49.4173756 8.7606525, 49.4505924 8.6845900, 49.4274397 8.6858018, 49.4275397 8.6861496, 49.4429091 8.6690474, 49.4106949 8.7084283, 49.4101399 8.7080219, 49.4076637 8.6962887, 49.4132295 8.7757064, 49.4486141 8.6746777, 49.3931903 8.6817010, 49.4137538 8.6648471, 49.4124311 8.7045745, 49.4113122 8.7063997, 49.4113519 8.7065985, 49.4114521 8.7051474, 49.4109673 8.7073171, 49.4110067 8.7070225, 49.4107349 8.7073040, 49.4107600 8.7070864, 49.4108526 8.7073421, 49.4111113 8.7072658, 49.4104560 8.7072665, 49.4124626 8.7053703, 49.4122564 8.7038180, 49.4121742 8.7052011, 49.4115180 8.7040462, 49.4115601 8.7060978, 49.4113137 8.7064091, 49.4184413 8.6639178, 49.4129542 8.7044420, 49.4105287 8.7055515, 49.4101358 8.7074154, 49.4090739 8.7026883, 49.4094981 8.7015823, 49.4096566 8.7077333, 49.4098303 8.7083950, 49.4099343 8.7058477, 49.4119021 8.6975187, 49.4114288 8.6979435, 49.4110943 8.6975331, 49.4108132 8.6980126, 49.4104160 8.6980515, 49.4099354 8.6980398, 49.4096933 8.6987803, 49.4127121 8.7144583, 49.4440385 8.6717215, 49.4444804 8.6709604, 49.4089831 8.6905347, 49.4091710 8.6908634, 49.4094153 8.6906953, 49.4096495 8.6905898, 49.4093287 8.6901174, 49.4095514 8.6900022, 49.4101602 8.6906176, 49.4100739 8.6902779, 49.4104549 8.6900196, 49.4102782 8.6900360, 49.4103453 8.6892983, 49.4104983 8.6887990, 49.4105996 8.6891960, 49.4106130 8.6895218, 49.4107252 8.6902781, 49.4100323 8.6886834, 49.4099625 8.6894405, 49.4100547 8.6878543, 49.4098093 8.6887675, 49.4091109 8.6881256, 49.4092130 8.6878890, 49.4093762 8.6882149, 49.4088437 8.6878948, 49.4087076 8.6873666, 49.4088390 8.6865694, 49.4083960 8.6871399, 49.4083523 8.6868745, 49.4084158 8.6842930, 49.4085999 8.6832613, 49.4083336 8.6832826, 49.4073626 8.6961046, 49.4086236 8.7038493, 49.4105126 8.6906872, 49.4102851 8.6877832, 49.4101205 8.6868012, 49.4099328 8.6869022, 49.4096844 8.6869692, 49.4099154 8.6865061, 49.4098831 8.6861779, 49.4096071 8.6847690, 49.4096829 8.6850673, 49.4094597 8.6857537, 49.4096638 8.6856990, 49.4099122 8.6855741, 49.4094714 8.6868435, 49.4094475 8.6872459, 49.4093412 8.6870318, 49.3974193 8.7796900, 49.4130703 8.7151662, 49.4133463 8.7163552, 49.4132424 8.7160458, 49.4076995 8.6755084, 49.3996504 8.6757886, 49.4157663 8.7123712, 49.4223148 8.6746219, 49.3855445 8.7101353, 49.4177435 8.6877403, 49.4254888 8.6894928, 49.4554917 8.7108449, 49.4344969 8.6847782, 49.4335894 8.6853414, 49.4493247 8.7171619, 49.4316276 8.7053393, 49.4092373 8.6934403, 49.3840303 8.7319662, 49.4166489 8.6721031, 49.4168939 8.6715527, 49.4176915 8.6881314, 49.4182453 8.6691484, 49.4201336 8.6838883, 49.4198183 8.6845408, 49.4210994 8.6858608, 49.4044484 8.6901151, 49.4044159 8.6910526, 49.4157370 8.6714754, 49.3849958 8.7327247, 49.3912799 8.7348521, 49.3844874 8.7079169, 49.4348723 8.6798701, 49.4084708 8.7744219, 49.4106260 8.7736249, 49.4084999 8.7750004, 49.4096965 8.7746403, 49.4095896 8.7745596, 49.4097963 8.7747701, 49.4081034 8.7753178, 49.4083756 8.7757148, 49.4080135 8.7726709, 49.4081473 8.7729053, 49.4085119 8.7719410, 49.4096359 8.7716832, 49.4093142 8.7711512, 49.4095779 8.7715834, 49.4100279 8.7717770, 49.4075464 8.7732045, 49.4103552 8.7719708, 49.3893649 8.6662793, 49.3911203 8.6725794, 49.4039746 8.7551200, 49.4041196 8.7536943, 49.3883810 8.7635234, 49.3872918 8.7341917, 49.3872364 8.7346514, 49.3818065 8.7467095, 49.3871999 8.7349917, 49.4121422 8.7045081, 49.4088000 8.6984868, 49.3801022 8.6812091, 49.3814817 8.6779564, 49.3814977 8.6777918, 49.4100113 8.7016140, 49.3989016 8.6746355, 49.4069958 8.6573300, 49.4038660 8.6717206, 49.4482877 8.6822129, 49.4297095 8.6822901, 49.4340707 8.6790422, 49.4326600 8.6805997, 49.4277051 8.6823985, 49.4089070 8.7072077, 49.4093409 8.7060374, 49.4331905 8.6827771, 49.4327974 8.6870571, 49.4146957 8.7191257, 49.4120976 8.7096738, 49.4128930 8.6937401, 49.3879687 8.6879096, 49.3881468 8.6882271, 49.4070420 8.6761280, 49.4290351 8.6868546, 49.4283062 8.6867403, 49.4121386 8.7104648, 49.4265924 8.6873755, 49.4278888 8.6873471, 49.4262545 8.6874841, 49.3962619 8.6860719, 49.3807720 8.6782823, 49.4085805 8.6761541, 49.3735956 8.7030427, 49.3890846 8.6883954, 49.4184415 8.6866326, 49.4214120 8.6811424, 49.4200469 8.6888749, 49.4197919 8.6885993, 49.4211709 8.6817036, 49.4200256 8.6883327, 49.4202560 8.6883704, 49.3953953 8.7086103, 49.4130496 8.7057710, 49.4097484 8.7051515, 49.4137573 8.6875431, 49.4261283 8.6876606, 49.4255958 8.6877467, 49.4252895 8.6896450, 49.4151862 8.6795007, 49.4153849 8.6793794, 49.4039369 8.6884541, 49.4233025 8.6807132, 49.4234428 8.6840685, 49.4243891 8.6864373, 49.4239240 8.6817311, 49.4228270 8.6911230, 49.4179555 8.6907278, 49.4127689 8.7147799, 49.4111631 8.7120067, 49.4060671 8.6838346, 49.4131304 8.7665767, 49.4100029 8.6521047, 49.3900974 8.6883942, 49.3800297 8.6925810, 49.4039055 8.6875262, 49.3802640 8.6848463, 49.3805355 8.6849044, 49.3939262 8.6891470, 49.3956033 8.6884888, 49.3808161 8.6905517, 49.3807025 8.6902232, 49.4067734 8.6837136, 49.4187857 8.6768219, 49.4187809 8.6767384, 49.4186852 8.6638016, 49.4063560 8.6836519, 49.4239759 8.6793816, 49.4107678 8.7077166, 49.4109456 8.7019862, 49.4085345 8.6820596, 49.4096282 8.6811489, 49.4104424 8.6919840, 49.4103493 8.6912088, 49.4086350 8.6786376, 49.4075765 8.6864605, 49.4083411 8.6839428, 49.4108377 8.6591604, 49.4110589 8.6579553, 49.3768893 8.6944349, 49.3808692 8.6779525, 49.4429209 8.6665224, 49.4332162 8.6832690, 49.4015374 8.6731285, 49.4021663 8.6853834, 49.3966514 8.6718493, 49.3890461 8.6840215, 49.4017367 8.6821163, 49.3968926 8.6802735, 49.4021904 8.6790167, 49.4154951 8.7332007, 49.4135832 8.7467488, 49.4045486 8.6762865, 49.4026134 8.6757101, 49.3976334 8.6709378, 49.4081624 8.6806522, 49.4150598 8.7727094, 49.4006359 8.6759247, 49.3964318 8.6793231, 49.4176645 8.6590769, 49.4119567 8.6571348, 49.4050466 8.6815538, 49.4045783 8.6829102, 49.4085882 8.6941458, 49.3713386 8.7202477, 49.4096951 8.6835813, 49.4097961 8.7016387, 49.3980621 8.7294523, 49.4016680 8.6740567, 49.4150755 8.7624400, 49.4150320 8.7620828, 49.3896278 8.7352655, 49.4472384 8.6758226, 49.4470879 8.6757617, 49.4092038 8.7122223, 49.3960044 8.6709715, 49.3949788 8.6699146, 49.3950680 8.6800049, 49.3960436 8.6718019, 49.3962304 8.6722292, 49.3957517 8.6718870, 49.3953878 8.6756074, 49.4097892 8.7063939, 49.4084468 8.7003941, 49.4152843 8.7204818, 49.3813905 8.7643802, 49.3839185 8.7575944, 49.3923472 8.7466824, 49.3875208 8.7503390, 49.4449871 8.6705662, 49.4125007 8.6537640, 49.4224157 8.6786831, 49.3894532 8.7370456, 49.3895678 8.7370642, 49.3892768 8.7345923, 49.4171332 8.6926969, 49.3766447 8.7050079, 49.3731436 8.7032594, 49.3725250 8.7041745, 49.3723135 8.7032611, 49.4077784 8.6939263, 49.4082673 8.6863585, 49.4086991 8.6956172, 49.3932314 8.7507117, 49.4159017 8.6697995, 49.4250581 8.7507586, 49.4094426 8.7049844, 49.4029808 8.6788786, 49.4109590 8.7049760, 49.4040413 8.7365764, 49.3799456 8.7244856, 49.4019049 8.7713017, 49.3865134 8.7038130, 49.3888980 8.7077795, 49.4063624 8.7315995, 49.3982175 8.7723404, 49.3954989 8.7710690, 49.3975902 8.7366726, 49.3873682 8.7504612, 49.4105874 8.7233315, 49.4007958 8.7275016, 49.4421834 8.6768545, 49.3918705 8.7219432, 49.4033414 8.7287167, 49.3967792 8.7245614, 49.4111026 8.7024580, 49.4009150 8.7298557, 49.4007196 8.7297407, 49.4035389 8.7279297, 49.4026240 8.7278681, 49.4072266 8.7144207, 49.4010872 8.7131843, 49.4094204 8.7462519, 49.4026441 8.7802131, 49.4087288 8.6979862, 49.4094023 8.6982765, 49.4141463 8.6944093, 49.4148467 8.6967256, 49.4150572 8.6984209, 49.4087816 8.6852872, 49.4084892 8.6860597, 49.4086175 8.6796932, 49.4086214 8.6802758, 49.4112044 8.6940182, 49.4047494 8.6753390, 49.4185616 8.6687042, 49.3937975 8.7087043, 49.3961629 8.6968177, 49.3870196 8.7195842, 49.3949506 8.7165457, 49.4166546 8.6730099, 49.4056935 8.6753617, 49.3827794 8.6823789, 49.3829854 8.6804822, 49.4137241 8.6932149, 49.3799388 8.6863729, 49.3810973 8.6895578, 49.3809588 8.6898013, 49.3796123 8.6875344, 49.3938241 8.6885892, 49.4218342 8.7455830, 49.4194809 8.7033801, 49.3925736 8.6762381, 49.3878242 8.6663099, 49.3866268 8.6977267, 49.3870220 8.6985183, 49.4091727 8.6930892, 49.4094455 8.6930370, 49.4095417 8.6933025, 49.4094946 8.6930779, 49.4095409 8.6928955, 49.4155403 8.7434262, 49.4112854 8.7578332, 49.4032430 8.7448100, 49.3924188 8.7407366, 49.3967229 8.7250259, 49.3744080 8.7048547, 49.4126021 8.6894511, 49.4124594 8.6881444, 49.4098190 8.7063061, 49.4085373 8.7758381, 49.3919273 8.7779993, 49.3958169 8.6851383, 49.3937100 8.6855417, 49.4282302 8.6874448, 49.4132893 8.6956239, 49.4085000 8.6939571, 49.4078262 8.6941716, 49.4096788 8.7079007, 49.4096785 8.7074005, 49.4101311 8.6910837, 49.4101822 8.6884713, 49.4099175 8.6890057, 49.4169024 8.6774545, 49.4170457 8.6775259, 49.4134444 8.6918647, 49.4082046 8.6830699, 49.4088779 8.6792701, 49.4080211 8.6834601, 49.4090548 8.6852623, 49.4092900 8.6865331, 49.4086943 8.6845447, 49.4288329 8.6854251, 49.4017089 8.6846814, 49.4079604 8.6841153, 49.4083191 8.6856688, 49.4080645 8.6851672, 49.4060576 8.6902372, 49.4073436 8.6889011, 49.4063263 8.6908480, 49.4265994 8.6890159, 49.4255887 8.6891453, 49.4254663 8.6892002, 49.4284964 8.6877953, 49.4299617 8.6876137, 49.4280495 8.6869299, 49.4243518 8.6812639, 49.4427904 8.7010610, 49.4114775 8.7195875, 49.4090814 8.7182703, 49.4086229 8.7202663, 49.4298363 8.6853708, 49.4324477 8.6828324, 49.4317284 8.6827286, 49.4033869 8.7279290, 49.4141616 8.7704635, 49.4142260 8.7704357, 49.4235631 8.6886029, 49.3894370 8.6884317, 49.3892845 8.6883551, 49.3895530 8.6884195, 49.4120646 8.7134735, 49.4151056 8.6533976, 49.4000215 8.6915677, 49.4070728 8.7039593, 49.4057605 8.7102504, 49.4069654 8.7032895, 49.4051156 8.7101114, 49.4056643 8.6999181, 49.4003872 8.6990544, 49.4012936 8.7089277, 49.3912677 8.7018883, 49.3967708 8.6950821, 49.4078597 8.7085627, 49.4121130 8.7104783, 49.4100264 8.7102106, 49.4133774 8.7093673, 49.4104648 8.7110643, 49.4090884 8.7121174, 49.4158331 8.7024618, 49.4215135 8.7213252, 49.4198837 8.7110673, 49.4145963 8.7424363, 49.4146285 8.7415734, 49.4158248 8.7336485, 49.4159290 8.7336568, 49.4199542 8.7402035, 49.4187468 8.7410394, 49.4180468 8.7420026, 49.4208144 8.7400015, 49.4202707 8.7392359, 49.4195583 8.7389992, 49.3966895 8.6864231, 49.4190608 8.6828828, 49.3862997 8.7039562, 49.3862241 8.7044324, 49.4089481 8.7124297, 49.4089685 8.7125699, 49.4090107 8.7127458, 49.3899857 8.7053174, 49.3907835 8.7032534, 49.3914706 8.7026871, 49.3806555 8.7065541, 49.4122679 8.7142811, 49.4075656 8.6766123, 49.3948947 8.7018296, 49.4042490 8.7188969, 49.4215697 8.7459451, 49.4178193 8.7615639, 49.4179208 8.7599422, 49.4157208 8.7418677, 49.4156600 8.7430138, 49.4152079 8.7442967, 49.4036104 8.6814823, 49.4163470 8.6659723, 49.4071432 8.7078562, 49.4067775 8.7075784, 49.3991614 8.6713811, 49.4070645 8.7127391, 49.4113511 8.7130776, 49.4088934 8.7133144, 49.4115392 8.7128522, 49.4120223 8.7062092, 49.4231838 8.7514439, 49.4531615 8.7230749, 49.4101768 8.7066874, 49.4105472 8.7780302, 49.4045675 8.6848235, 49.4096864 8.6929826, 49.4099326 8.6928092, 49.4097527 8.6932084, 49.4096327 8.6929459, 49.4102627 8.6928342, 49.4208463 8.6738282, 49.4090781 8.7054333, 49.4088637 8.7053912, 49.4139598 8.6937014, 49.4131244 8.6897970, 49.4122418 8.6816335, 49.4171772 8.7603354, 49.4178582 8.7604307, 49.4355093 8.7254841, 49.4175872 8.7007866, 49.4350143 8.7097094, 49.4316519 8.7052478, 49.4377365 8.6957804, 49.4196545 8.6977706, 49.4290723 8.7151671, 49.4497278 8.7149660, 49.4217923 8.7056451, 49.4070226 8.7014890, 49.4384096 8.6837127, 49.4337050 8.6982644, 49.4386376 8.6862454, 49.4131989 8.7239585, 49.4497066 8.6783352, 49.4058690 8.6604558, 49.4048929 8.6675943, 49.4084589 8.6609835, 49.4064864 8.6678500, 49.4085569 8.6610137, 49.4049473 8.6755921, 49.4048677 8.6759756, 49.4066719 8.6669747, 49.4050106 8.6759322, 49.4051023 8.6755057, 49.4148153 8.6642766, 49.4163511 8.7711778, 49.3772124 8.6950909, 49.4140695 8.6872232, 49.4172010 8.6768150, 49.4187293 8.6769856, 49.3930474 8.6832081, 49.3774547 8.7085656, 49.3762592 8.7055890, 49.4328627 8.7783319, 49.4181427 8.7612103, 49.4119166 8.6961489, 49.4327755 8.6997170, 49.4317346 8.7061263, 49.4322270 8.6909619, 49.4176061 8.6615500, 49.4148094 8.6905503, 49.4146460 8.6905719, 49.4266687 8.7639549, 49.4151150 8.7494524, 49.4134479 8.7473282, 49.4147513 8.7446806, 49.4124413 8.7456969, 49.4150047 8.7453868, 49.4147956 8.7444452, 49.4143823 8.7483441, 49.4232907 8.7529822, 49.4175762 8.7619090, 49.4150603 8.7612435, 49.4181519 8.7605105, 49.4165526 8.6912073, 49.4277972 8.6793663, 49.4186343 8.6608593, 49.4121807 8.6993722, 49.4195637 8.7042135, 49.3777846 8.6947087, 49.3887612 8.6898215, 49.3745870 8.6933185, 49.3745512 8.6931398, 49.4141951 8.6773802, 49.4060071 8.6831370, 49.4256553 8.7393946, 49.4253980 8.7402529, 49.4299277 8.7407836, 49.4143279 8.6877116, 49.4145768 8.6900311, 49.4076774 8.6896431, 49.4075308 8.6897346, 49.4190729 8.6890667, 49.4187521 8.6903307, 49.4187110 8.6904478, 49.4159754 8.6729830, 49.4158552 8.6727509, 49.4159739 8.6732323, 49.4067994 8.6931128, 49.4067928 8.6935104, 49.4070263 8.6953186, 49.4088402 8.7022464, 49.4086281 8.7004350, 49.4083266 8.6988134, 49.4084032 8.6992511, 49.4086930 8.7008503, 49.4082856 8.6993919, 49.4400488 8.6895399, 49.4032152 8.6746268, 49.4071473 8.6720042, 49.4126031 8.7205963, 49.4123897 8.7201796, 49.4108875 8.7198273, 49.4121174 8.7199537, 49.3933484 8.7760935, 49.4168236 8.6627821, 49.4168236 8.6627821, 49.4168236 8.6627821, 49.4211179 8.6800477, 49.4210927 8.6788357, 49.3822054 8.6779650, 49.4154994 8.6745757, 49.4087163 8.6911997, 49.4094350 8.6528632, 49.4043967 8.6769160, 49.4076047 8.6749349, 49.3999783 8.6914430, 49.4126654 8.7038051, 49.4128948 8.7051740, 49.4290349 8.6871594, 49.4288599 8.6868212, 49.4458011 8.6752086, 49.4457825 8.6750883, 49.4070387 8.6723984, 49.4259339 8.6618748, 49.4507187 8.6805587, 49.4489035 8.6762140, 49.4267357 8.6857211, 49.3846497 8.6817785, 49.3846976 8.6847175, 49.3844191 8.6849082, 49.3847543 8.6816927, 49.3845422 8.6811475, 49.3844361 8.6812945, 49.3844812 8.6833063, 49.3843655 8.6831352, 49.3844693 8.6838984, 49.3847140 8.6828075, 49.3846153 8.6826858, 49.3916379 8.6832393, 49.3986872 8.6742906, 49.3990473 8.6713284, 49.4019576 8.6811178, 49.4019323 8.6807736, 49.4019771 8.6810189, 49.4019064 8.6809317, 49.4030467 8.6777744, 49.4403049 8.7370650, 49.4278253 8.6839436, 49.4279195 8.6840395, 49.4266417 8.6834045, 49.4149614 8.7627536, 49.4147153 8.7636838, 49.4148588 8.7631440, 49.4151372 8.7619776, 49.4074520 8.6739607, 49.4068864 8.6742272, 49.4066831 8.6742637, 49.4065288 8.6742965, 49.4074304 8.6738082, 49.4070673 8.6742200, 49.4072326 8.6739688, 49.4071113 8.6739332, 49.4071745 8.6739715, 49.4068234 8.6739182, 49.4068406 8.6742290, 49.4065740 8.6742948, 49.4067619 8.6739416, 49.4063755 8.6743398, 49.4063435 8.6743250, 49.4071878 8.6744576, 49.4064083 8.6743389, 49.4070217 8.6742218, 49.4067925 8.6739306, 49.4068540 8.6739069, 49.4067956 8.6742307, 49.4072178 8.6742893, 49.4075113 8.6739379, 49.4073401 8.6739636, 49.4074310 8.6738414, 49.4069770 8.6742236, 49.4073533 8.6740777, 49.4070461 8.6739348, 49.4075274 8.6742330, 49.4073911 8.6739622, 49.4071584 8.6742164, 49.4067497 8.6742326, 49.4074299 8.6737756, 49.4063104 8.6743095, 49.4074931 8.6738733, 49.4066188 8.6742931, 49.4069166 8.6738920, 49.4070675 8.6739342, 49.4069322 8.6742254, 49.4069478 8.6738909, 49.4074009 8.6740750, 49.4062796 8.6742939, 49.4071123 8.6742182, 49.4070894 8.6739337, 49.4074938 8.6739384, 49.4072034 8.6742480, 49.4068853 8.6738947, 49.4064567 8.6743367, 49.4073274 8.6744523, 49.4075006 8.6742374, 49.4072016 8.6742146, 49.4045857 8.6750253, 49.4035865 8.6820059, 49.4030383 8.6811813, 49.4059168 8.6855262, 49.4060029 8.6854623, 49.4067406 8.6760466, 49.4069553 8.6902031, 49.4076532 8.6926483, 49.4209716 8.7395001, 49.4148681 8.7627574, 49.4178026 8.7412411, 49.4177775 8.7408198, 49.4179019 8.7409040, 49.4210951 8.7398188, 49.4178687 8.7405082, 49.4150957 8.7621532, 49.4151231 8.7620372, 49.4150216 8.7723676, 49.4051851 8.7806376, 49.4094999 8.7187995, 49.4123406 8.7658191, 49.4111767 8.7708030, 49.4112682 8.7706277, 49.4105747 8.7718871, 49.4114477 8.7117426, 49.4179324 8.7578275, 49.4447844 8.7558449, 49.4134141 8.7156909, 49.4129097 8.7129751, 49.4127437 8.7131641, 49.3970019 8.6746884, 49.4127565 8.7719234, 49.4106087 8.7156269, 49.3834049 8.6789517, 49.4098213 8.6924212, 49.4174569 8.7484520, 49.4025655 8.6891887, 49.4036138 8.7270753, 49.4278064 8.7495089, 49.4288764 8.7498520, 49.4410069 8.6652065, 49.4422747 8.6663944, 49.4422553 8.6672498, 49.4177652 8.6880875, 49.4136740 8.6736399, 49.4085738 8.6928851, 49.4086523 8.6933648, 49.4425561 8.7519092, 49.4132859 8.6908940, 49.4155322 8.6699617, 49.3924005 8.7782292, 49.4278544 8.6884082, 49.4068263 8.6680762, 49.4072646 8.6691321, 49.4072916 8.6693315, 49.4049477 8.7776001, 49.4064182 8.7775809, 49.4172829 8.7456066, 49.3931588 8.7767282, 49.4102644 8.7748807, 49.4102824 8.7752511, 49.4161441 8.7553820, 49.4153885 8.7473120, 49.4152029 8.7091123, 49.4134479 8.6924308, 49.4144394 8.6710078, 49.4141167 8.6710146, 49.4138185 8.6710206, 49.4132935 8.6911529, 49.4131725 8.7092512, 49.4131247 8.7097212, 49.4083996 8.6921523, 49.4161156 8.6703451, 49.4159611 8.6705524, 49.4161026 8.6692956, 49.4104796 8.6607802, 49.4113226 8.6592808, 49.4145907 8.6663489, 49.4136723 8.7107377, 49.4135796 8.7138390, 49.4136153 8.7141506, 49.4137093 8.7167419, 49.4088095 8.6613580, 49.4085674 8.6625073, 49.4089016 8.6607853, 49.4132052 8.7122933, 49.4158015 8.7426821, 49.4152783 8.7629876, 49.4155726 8.7610190, 49.4576975 8.7025488, 49.4000585 8.6765799, 49.4161732 8.7555546, 49.4153272 8.7608768, 49.4152918 8.7608610, 49.4153534 8.7601741, 49.4102210 8.7748343, 49.4101629 8.7746784, 49.4094958 8.6684506, 49.4476354 8.6808109, 49.4476337 8.6811172, 49.4479946 8.6811792, 49.4160191 8.6700610, 49.4161314 8.6706351, 49.3924444 8.7782060, 49.3922131 8.7798986, 49.4187135 8.7240892, 49.4182654 8.7234671, 49.4063399 8.6900996, 49.4063668 8.6902286, 49.4065511 8.6906922, 49.4055849 8.6876896, 49.4052408 8.6862751, 49.4056965 8.6856838, 49.4209713 8.6746499, 49.3917631 8.6910070, 49.3914904 8.6905020, 49.4133894 8.7101136, 49.4446785 8.7641829, 49.4000181 8.6782987, 49.3931737 8.6788679, 49.4504867 8.6872115, 49.4198205 8.7343539, 49.4101553 8.6911774, 49.4066779 8.7141416, 49.4113423 8.7195551, 49.4110748 8.7197211, 49.3945251 8.6755375, 49.3945690 8.6743519, 49.3943175 8.6754654, 49.3973820 8.6940966, 49.3935162 8.7079473, 49.3987446 8.6923402, 49.3986523 8.6924283, 49.3972671 8.6941625, 49.3799065 8.7239334, 49.4061766 8.6754688, 49.4064397 8.6761648, 49.4275954 8.6823123, 49.3963113 8.6748861, 49.4103125 8.7748332, 49.4264733 8.7602041, 49.3916824 8.6702885, 49.4383671 8.7404676, 49.4373853 8.7411725, 49.4048709 8.6753023, 49.4014026 8.6800343, 49.3982248 8.6703696, 49.4166596 8.6925736, 49.4033925 8.6748011, 49.4036554 8.6741638, 49.4030818 8.6755033, 49.4030690 8.6754897, 49.4036681 8.6741773, 49.4033797 8.6747876, 49.4039602 8.6739790, 49.4041427 8.6741682, 49.4042899 8.6743214, 49.4124338 8.7117609, 49.4031240 8.6758606, 49.4029422 8.6757784, 49.4033073 8.6760596, 49.4029550 8.6757921, 49.4034582 8.6762131, 49.4035925 8.6763415, 49.4029835 8.6757044, 49.4274540 8.6971831, 49.4278787 8.6910220, 49.4178561 8.6661108, 49.4177188 8.6624888, 49.4138580 8.6676018, 49.4162081 8.6666428, 49.4187185 8.6769009, 49.3893705 8.7373749, 49.3810576 8.6896077, 49.4030621 8.7276422, 49.4023727 8.7276687, 49.4060475 8.6885018, 49.4203230 8.6891092, 49.4203313 8.6895228, 49.4130005 8.6887393 +49.4211952 8.6797713, 49.4247055 8.6449657, 49.4065042 8.6930977, 49.4046185 8.6759242, 49.4092373 8.6934403, 49.4089070 8.7072077, 49.4067734 8.6837136, 49.3789847 8.6763771 +48.8379931 2.3270595, 48.8224797 2.3195383, 48.8875758 2.3303180, 48.8413274 2.2797801, 48.8384087 2.2847485, 48.8979156 2.3166483, 48.8890374 2.3392764, 48.8624937 2.2850289, 48.8410409 2.2593377, 48.8868716 2.3419216 +1 +49.3811108 8.6608351, 49.3829231 8.6669185, 49.3923746 8.6760835 +0 +13 +224 +3 +yes +49.4592060 8.7521809, 49.4031563 8.7288155, 49.4032526 8.7289874, 49.4010156 8.7133745, 49.4012714 8.7099451, 49.4035347 8.7270885, 49.4198190 8.7257180, 49.4318454 8.7057299, 49.3784315 8.6932171, 49.4588749 8.7510057, 49.4085824 8.7204400 +yes +52.0291860 8.5142550, 49.2330740 6.9973444, 50.1074307 8.7650055, 50.1072273 8.7647436, 53.4593415 9.9824597, 51.1120248 13.0448680, 51.3434003 12.3777564, 53.0816826 8.7668217, 53.0785270 8.7790946, 51.3662367 12.7354244, 53.0763731 8.7814702, 53.0749711 8.7854362, 53.5870543 9.8523197, 53.0736960 8.8113880, 53.0776511 8.7744885, 53.0798099 8.7656249, 53.0749514 8.8058188, 53.0700008 8.8578411, 53.0722317 8.8027783, 53.0660402 8.8603661, 52.1492696 8.6409588, 49.4448734 7.7697663, 53.0836993 8.7681259, 52.4938477 13.3811864, 52.6401090 9.2041528, 52.6429039 9.2056691, 50.6909067 6.6458012, 53.1226519 8.7627701, 52.4859871 13.4239241, 51.1738592 11.4244641, 51.1733178 11.4239529, 51.1752559 11.4191939, 51.1770761 11.4206127, 53.0791955 8.8052958, 53.1368542 8.7413622, 51.5144694 12.1668357, 51.2675538 7.1607310, 50.6635320 11.5677944, 51.0527530 13.7389786, 49.4719088 8.4843272, 50.9602320 6.9768159, 48.5135683 9.0540270, 48.5136496 9.0546591, 48.5166244 9.0588300, 49.4711729 8.4842984, 52.6396913 9.2078891, 48.1065996 11.7222571, 52.6440907 9.2020649, 52.5449088 12.3430742, 52.5447248 12.3472627, 49.4040536 8.6759122, 52.5184534 13.4548208 +Premier Inn Leith, Mercure Hotel, Old Waverley Hotel, Royal British Hotel, Thistle Hotel +29 +1 +yes +Schloss Filmtheater, Gloria & Gloriette, Karlstorkino +828 +55.9821414 -3.4001668 +71 and 13 +BNP Paribas and 48.8737979 2.3160522 +8 +48.8700842 2.3190066 +yes +147 +en:Talbot Rice Gallery +55.9373944 -3.2348187 +2 +yes and 48.8769555 2.2661355, 48.8365051 2.4433783 +38 +yes +347 +yes +48.8403064 2.3155776 +76 +Theater im Kulturzentrum Karlstorbahnhof, Städtische Bühne, Theater und Philharmonisches Orchester, Taeter Theater, Zimmertheater, Zwinger1 und Zwinger3, Hebelhalle +yes +49.4124594 8.6881444 +8 +Dynastie, Tiger and Dragon's, bamboos, Asia Bistro, Thai Gourmet +1617 +49.4296874 8.6826637, 49.4279757 8.6835849, 49.4147764 8.6710359, 49.4278053 8.7495282, 49.4178891 8.7605933, 49.3974030 8.6486853, 49.3977437 8.6485764, 49.4045638 8.6759283, 49.4075919 8.6845735, 49.4092177 8.6922359, 49.4084542 8.6927289, 49.4078943 8.6929172, 49.4083041 8.6927592, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4015990 8.6856698, 49.4158218 8.6922416, 49.4072954 8.6910173, 49.4082595 8.6914326, 49.4082829 8.6916558, 49.4076226 8.6923209, 49.3808049 8.6889505, 49.3746833 8.6826514, 49.3656861 8.7051775, 49.3741444 8.7033717, 49.3742583 8.7034051, 49.3741763 8.7034993, 49.4103158 8.6974936, 49.4165191 8.6921856, 49.3790412 8.6689354, 49.3792964 8.6699345, 49.4048779 8.6827341, 49.4120923 8.7117858, 49.4071068 8.6898761, 49.4108200 8.6918918, 49.4227158 8.6483350, 49.3840770 8.6710133, 49.4160126 8.6922256, 49.3809325 8.6701888, 49.4168755 8.6790034, 49.3992315 8.6710140, 49.4283321 8.6836841, 49.3804723 8.6884268, 49.3807734 8.6884609, 49.4228152 8.6504004, 49.4082494 8.6913249, 49.4278253 8.6839436 +yes +76 +24 +Heinstein's +3.0024997669605269 +53.0485839 8.6313511, 53.0485936 8.6313802, 53.0486037 8.6314063, 53.0494724 8.6335621, 53.0494578 8.6335286, 53.0494852 8.6335943, 53.0494998 8.6336225, 53.0520881 8.6325667, 53.0516940 8.6297814, 53.0516682 8.6297841, 53.0516456 8.6297895, 53.0516214 8.6297922, 53.0517785 8.6077513, 53.0516366 8.6078318, 53.0518496 8.6077245, 53.0517108 8.6078050, 53.0590251 8.6234072, 53.0589009 8.6234019, 53.0589848 8.6234019, 53.0590605 8.6234046, 53.0589429 8.6233965, 53.0505000 8.6353079, 53.0289027 8.6383844, 53.0479116 8.6346100, 53.0289689 8.6384139, 53.0478728 8.6346395, 53.0478342 8.6346610, 53.0506008 8.6353450, 53.0505388 8.6353321, 53.0505678 8.6353106, 53.0505340 8.6352731, 53.0574582 8.5994310, 53.0575115 8.5993612, 53.0575002 8.5994283, 53.0574775 8.5993317, 53.0525977 8.6321456 +48.8678615 2.3515176, 48.8681982 2.3520494, 48.8742181 2.3379134, 48.8797487 2.3564752, 48.8827832 2.3594133, 48.8327554 2.3711889, 48.8294304 2.3758918, 48.8322707 2.3582796, 48.8704428 2.3883722, 48.8703637 2.3893764, 48.8695013 2.3822447, 48.8701522 2.3848448, 48.8705756 2.3882952, 48.8726648 2.3889559, 48.8692544 2.3857069, 48.8732512 2.3826034, 48.8719640 2.3809798, 48.8715124 2.3812630, 48.8707876 2.3814258, 48.8701383 2.3797607, 48.8703047 2.3816624, 48.8689756 2.3829202, 48.8674174 2.3831948, 48.8681056 2.3856641, 48.8692096 2.3486800, 48.8675048 2.3473847, 48.8674736 2.3471342, 48.8702235 2.3490322, 48.8818782 2.3342987, 48.8404563 2.3540242, 48.8457501 2.3710340, 48.8507318 2.3902220, 48.8273026 2.3137753, 48.8321419 2.3413424, 48.8330200 2.3329456, 48.8529986 2.3973185, 48.8537772 2.3960030, 48.8411229 2.3744020, 48.8713839 2.3723624, 48.8720555 2.3717928, 48.8725878 2.3713798, 48.8734747 2.3704890, 48.8741515 2.3743018, 48.8747572 2.3721336, 48.8756416 2.3688091, 48.8761685 2.3706316, 48.8767824 2.3701809, 48.8766895 2.3672800, 48.8750608 2.3672145, 48.8735860 2.3650243, 48.8718184 2.3654608, 48.8717399 2.3675792, 48.8714321 2.3669323, 48.8715550 2.3681089, 48.8696638 2.3693259, 48.8715040 2.3760459, 48.8700440 2.3716713, 48.8687232 2.3723495, 48.8683112 2.3698916, 48.8680322 2.3727849, 48.8631317 2.3869263, 48.8640310 2.3863813, 48.8665041 2.3812744, 48.8656858 2.3776485, 48.8674450 2.3750281, 48.8686005 2.3800123, 48.8681319 2.3792398, 48.8543046 2.3285742, 48.8520050 2.3739783, 48.8456295 2.4033753, 48.8663147 2.3719752, 48.8769811 2.4048559, 48.8749761 2.4031141, 48.8777348 2.3959932, 48.8758342 2.4011315, 48.8703695 2.3665503, 48.8748068 2.3638809, 48.8753882 2.3643616, 48.8831646 2.3720227, 48.8833551 2.3721300, 48.8836055 2.3731171, 48.8836902 2.3740022, 48.8840147 2.3752146, 48.8844169 2.3762767, 48.8849729 2.3784198, 48.8850377 2.3791735, 48.8851153 2.3790072, 48.8855033 2.3809706, 48.8856762 2.3815928, 48.8865051 2.3847954, 48.8873411 2.3873650, 48.8876230 2.3883824, 48.8878308 2.3891184, 48.8889239 2.3944490, 48.8827251 2.3816969, 48.8725474 2.3766326, 48.8739080 2.3960132, 48.8775377 2.3857736, 48.8831878 2.3714050, 48.8640393 2.3755646, 48.8706620 2.3611950, 48.8734580 2.3584123, 48.8732312 2.3586224, 48.8755934 2.3832701, 48.8756530 2.3832155, 48.8482774 2.3428253, 48.8784345 2.3578878, 48.8783277 2.3564922, 48.8703209 2.2825197, 48.8268477 2.3647861, 48.8541564 2.4000911, 48.8465229 2.3686904, 48.8463083 2.3680521, 48.8469932 2.3727161, 48.8467819 2.3725108, 48.8459580 2.3724556, 48.8455779 2.3697051, 48.8663510 2.3672959, 48.8658303 2.3698488, 48.8657851 2.3771616, 48.8665079 2.3800178, 48.8653617 2.3809810, 48.8760867 2.3599561, 48.8829095 2.3591741, 48.8834606 2.3606563, 48.8826329 2.3615224, 48.8854259 2.3538571, 48.8884161 2.3532369, 48.8841015 2.3597869, 48.8874152 2.3671866, 48.8853281 2.3720155, 48.8905441 2.3545731, 48.8902032 2.3626104, 48.8896626 2.3678766, 48.8830418 2.3799420, 48.8839897 2.3776750, 48.8839192 2.3777877, 48.8793674 2.3913866, 48.8642121 2.3813367, 48.8549764 2.3705401, 48.8491281 2.3756993, 48.8907340 2.3442268, 48.8482547 2.3739915, 48.8476489 2.3756562, 48.8505462 2.3785256, 48.8495764 2.3778022, 48.8488506 2.3771667, 48.8490151 2.3766595, 48.8493081 2.3747820, 48.8485986 2.3761016, 48.8466357 2.3723850, 48.8376761 2.3448921, 48.8355075 2.3583356, 48.8464369 2.3792454, 48.8584489 2.3792058, 48.8945048 2.3474462, 48.8929338 2.3489373, 48.8919373 2.3499061, 48.8943845 2.3506181, 48.8938805 2.3498536, 48.8953235 2.3467399, 48.8953754 2.3495531, 48.8995258 2.3457476, 48.8909128 2.3454738, 48.8916063 2.3445324, 48.8921962 2.3448571, 48.8923204 2.3442537, 48.8902437 2.3476818, 48.8906398 2.3495092, 48.8907675 2.3495020, 48.8923427 2.3461089, 48.8949846 2.3408277, 48.8842461 2.3613088, 48.8840672 2.3616073, 48.8841745 2.3614072, 48.8882926 2.3599384, 48.8845099 2.3646309, 48.8856332 2.3659515, 48.8920952 2.3613649, 48.8883041 2.3506540, 48.8883196 2.3501401, 48.8883144 2.3520272, 48.8883763 2.3527059, 48.8886896 2.3559132, 48.8886090 2.3548159, 48.8889395 2.3584021, 48.8890178 2.3582290, 48.8890523 2.3595116, 48.8866144 2.3504214, 48.8858198 2.3551215, 48.8863622 2.3561844, 48.8878527 2.3515748, 48.8872861 2.3561221, 48.8839769 2.3509507, 48.8850544 2.3495979, 48.8857811 2.3496248, 48.8861021 2.3496301, 48.8863490 2.3496462, 48.8876294 2.3496373, 48.8885253 2.3496748, 48.8890580 2.3496748, 48.8887476 2.3496695, 48.8889098 2.3496802, 48.8841020 2.3522661, 48.8840538 2.3519670, 48.8840388 2.3514774, 48.8892343 2.3496802, 48.8896364 2.3496856, 48.8847017 2.3493780, 48.8847898 2.3493834, 48.8848569 2.3493834, 48.8852449 2.3493834, 48.8851108 2.3493834, 48.8863243 2.3494209, 48.8860562 2.3494048, 48.8857987 2.3494048, 48.8866171 2.3494388, 48.8873464 2.3494796, 48.8876365 2.3494656, 48.8887125 2.3494781, 48.8889239 2.3494603, 48.8891003 2.3494710, 48.8884971 2.3494495, 48.8880001 2.3494761, 48.8904052 2.3495068, 48.8897932 2.3494533, 48.8892625 2.3494710, 48.8830632 2.3383743, 48.8857316 2.3349375, 48.8857096 2.3352645, 48.8854435 2.3359469, 48.8859008 2.3346803, 48.8853035 2.3363355, 48.8851642 2.3366575, 48.8843335 2.3382618, 48.8886961 2.3390540, 48.8851431 2.3383441, 48.8865032 2.3356719, 48.8885778 2.3354686, 48.8888861 2.3383196, 48.8842610 2.3413414, 48.8845571 2.3411073, 48.8847258 2.3403346, 48.8849081 2.3418344, 48.8895658 2.3377576, 48.8850086 2.3604185, 48.8907312 2.3639595, 48.8961106 2.3318024, 48.8991268 2.3345829, 48.8952517 2.3371563, 48.8962344 2.3344485, 48.8965875 2.3360980, 48.8956272 2.3391536, 48.8966215 2.3385776, 48.8983862 2.3383214, 48.8944354 2.3403228, 48.8944213 2.3442287, 48.9000243 2.3455555, 48.8996339 2.3501097, 48.8837052 2.3395939, 48.8832400 2.3421635, 48.8834792 2.3421669, 48.8839647 2.3413568, 48.8865870 2.3452064, 48.8832262 2.3499505, 48.8846010 2.3470099, 48.8881281 2.3463794, 48.8883520 2.3487355, 48.8869557 2.3324658, 48.8869663 2.3326053, 48.8890733 2.3333345, 48.8903665 2.3341127, 48.8903277 2.3330237, 48.8903732 2.3369030, 48.8916342 2.3355210, 48.8908322 2.3375902, 48.8908023 2.3394033, 48.8910048 2.3400771, 48.8912851 2.3396007, 48.8926693 2.3356185, 48.8934479 2.3366141, 48.8928829 2.3373736, 48.8929557 2.3385657, 48.8923455 2.3400044, 48.8904263 2.3404251, 48.8913682 2.3472930, 48.8603661 2.3754100, 48.8900474 2.3613408, 48.8314088 2.3488132, 48.8487505 2.3777984, 48.8503027 2.3774477, 48.8626941 2.3877054, 48.8785891 2.3856103, 48.8810145 2.3891669, 48.8321125 2.3499256, 48.8774636 2.3705618, 48.8682585 2.2932381, 48.8782580 2.3987300, 48.8832583 2.3346263, 48.8832465 2.3341658, 48.8831954 2.3348376, 48.8842151 2.3311538, 48.8830070 2.3349691, 48.8833032 2.3455032, 48.8841705 2.3313488, 48.8826156 2.3432538, 48.8834306 2.3335452, 48.8841164 2.3315750, 48.8824079 2.3419280, 48.8834666 2.3339320, 48.8831738 2.3344061, 48.8821954 2.3389929, 48.8836632 2.3332864, 48.8831695 2.3452574, 48.8824739 2.3367661, 48.8829388 2.3356827, 48.8831317 2.3458945, 48.8843696 2.3305004, 48.8842302 2.3305121, 48.8826517 2.3426287, 48.8827762 2.3362216, 48.8839947 2.3320999, 48.8842717 2.3309204, 48.8824891 2.3425994, 48.8830995 2.3449030, 48.8829578 2.3351297, 48.8832939 2.3340079, 48.8830087 2.3354500, 48.8840806 2.3311362, 48.8827159 2.3359415, 48.8828527 2.3354881, 48.8840902 2.3316931, 48.8911573 2.3437849, 48.8841548 2.3308314, 48.8839884 2.3315392, 48.8827419 2.3443694, 48.8824955 2.3419279, 48.8842291 2.3288540, 48.8840681 2.3286855, 48.8841801 2.3289398, 48.8859483 2.3285578, 48.8851713 2.3293553, 48.8576992 2.2797776, 48.8298513 2.2961748, 48.8373832 2.3826403, 48.8799725 2.3588623, 48.8800272 2.3588101, 48.8829349 2.3636381, 48.8829772 2.3594750, 48.8826392 2.3667648, 48.8770806 2.3638519, 48.8809351 2.3625812, 48.8809545 2.3624632, 48.8831311 2.3654083, 48.8830941 2.3655236, 48.8839358 2.3671407, 48.8289786 2.3807812, 48.8280552 2.3808361, 48.8292843 2.3823232, 48.8294517 2.3827405, 48.8291010 2.3833382, 48.8297120 2.3791681, 48.8809954 2.3651002, 48.8812463 2.3652224, 48.8827050 2.3670033, 48.8465800 2.3730993, 48.8839900 2.3286046, 48.8839605 2.3284938, 48.8763431 2.4041075, 48.8880685 2.3769540, 48.8888236 2.3460678, 48.8955600 2.3458430, 48.8909736 2.3451546, 48.8857875 2.3376754, 48.8856834 2.3380986, 48.8908443 2.3617886, 48.8850609 2.3402076, 48.8569556 2.3980459, 48.8564650 2.4027024, 48.8892956 2.3534520, 48.8883918 2.3276047, 48.8433038 2.3543255, 48.8418031 2.3029041, 48.8414214 2.2514890, 48.8665787 2.3687395, 48.8677539 2.3647162, 48.8672442 2.3624249, 48.8919172 2.3436860, 48.8917691 2.3440528, 48.8423698 2.3854379, 48.8469303 2.3075499, 48.8475588 2.3088840, 48.8486504 2.3085581, 48.8448872 2.3142661, 48.8446342 2.3148283, 48.8488629 2.3113707, 48.8543766 2.3286669, 48.8752295 2.2843527, 48.8531440 2.3776869, 48.8595596 2.2753644, 48.8595734 2.2750496, 48.8616150 2.2754832, 48.8659680 2.2795955, 48.8672885 2.2809372, 48.8680280 2.2809252, 48.8683971 2.2825564, 48.8473600 2.3864659, 48.8698073 2.3749191, 48.8698594 2.3755160, 48.8624876 2.3424711, 48.8650939 2.3440997, 48.8652964 2.3432812, 48.8659653 2.3433342, 48.8683868 2.3418763, 48.8671550 2.3566053, 48.8751636 2.4061686, 48.8904492 2.3770876, 48.8384989 2.2572066, 48.8396082 2.2579126, 48.8398593 2.2580096, 48.8651576 2.3510916, 48.8751432 2.3825052, 48.8750868 2.3823845, 48.8425813 2.3448154, 48.8940561 2.3541965, 48.8917696 2.3461211, 48.8918716 2.3465917, 48.8751867 2.4062512, 48.8968424 2.3818049, 48.8499326 2.3631550, 48.8688265 2.2482135, 48.8462126 2.4118560, 48.8437424 2.2986106, 48.8455688 2.3253845, 48.8459243 2.3259674, 48.8460036 2.3258028, 48.8464844 2.3265135, 48.8917516 2.3438452, 48.8911967 2.3437988, 48.8933614 2.3614463, 48.8861681 2.3474404, 48.8462352 2.3927786, 48.8935766 2.3294235, 48.8878878 2.3544913, 48.8880271 2.3560550, 48.8812030 2.3284499, 48.8742437 2.3321727, 48.8942439 2.3352879, 48.8988973 2.3399388, 48.8997428 2.3522502, 48.8921164 2.3345008, 48.8911613 2.3319378, 48.8921939 2.3316488, 48.8856755 2.3448166, 48.8930350 2.3633966, 48.8900140 2.3602197, 48.8762979 2.3397799, 48.8766916 2.3405068, 48.8933200 2.3491176, 48.8246903 2.3553751, 48.8377773 2.3494970, 48.8895988 2.3163725, 48.8825981 2.3645629, 48.8928809 2.3504734, 48.8920706 2.3346881, 48.8933750 2.3385392, 48.8413779 2.3118977, 48.8433854 2.3736074, 48.8510517 2.3092163, 48.8518484 2.3096816, 48.8369959 2.3933620, 48.8545431 2.2743043, 48.8589523 2.2771588, 48.8599813 2.3497684, 48.8968971 2.3856504, 48.8278579 2.3057957, 48.8302062 2.3335779, 48.8254086 2.3802466, 48.8984327 2.3695091, 48.8394454 2.3963015, 48.8605989 2.3512022, 48.8983279 2.3618983, 48.8983261 2.3617173, 48.8983518 2.3649038, 48.8982617 2.3563907, 48.8750935 2.3351732, 48.8436342 2.3043290, 48.8431682 2.3046133, 48.8918524 2.3632899, 48.8919900 2.3631317, 48.8756176 2.3432285, 48.8760560 2.3438036, 48.8762724 2.3440214, 48.8429539 2.4085434, 48.8443890 2.4068429, 48.8418110 2.4082929, 48.8257982 2.3468029, 48.8266018 2.3354681, 48.8272551 2.3352458, 48.8330622 2.3958487, 48.8336114 2.3861569, 48.8337322 2.3983467, 48.8337623 2.3951877, 48.8342999 2.3975412, 48.8343797 2.3963938, 48.8345191 2.3966361, 48.8348254 2.3934365, 48.8348947 2.3972942, 48.8349022 2.3933477, 48.8349654 2.3960429, 48.8358704 2.3961786, 48.8359891 2.3974455, 48.8360813 2.3872238, 48.8361353 2.3948924, 48.8361988 2.3988969, 48.8364221 2.3949270, 48.8364309 2.3988951, 48.8365523 2.3982569, 48.8366252 2.3929585, 48.8366508 2.3952223, 48.8366989 2.3943677, 48.8369456 2.4019945, 48.8370471 2.3917506, 48.8375850 2.3971765, 48.8376090 2.3907850, 48.8380876 2.3941069, 48.8382060 2.3900510, 48.8382377 2.3966077, 48.8384334 2.3930799, 48.8392532 2.4005400, 48.8393971 2.4089227, 48.8394590 2.3963160, 48.8398776 2.4385198, 48.8401062 2.4087456, 48.8403121 2.4025153, 48.8403240 2.3922740, 48.8404000 2.3925410, 48.8405290 2.3878980, 48.8406298 2.4087338, 48.8408716 2.4093998, 48.8408973 2.4043894, 48.8411011 2.3894090, 48.8411636 2.4011997, 48.8412990 2.3878120, 48.8414464 2.4049212, 48.8415076 2.4114849, 48.8415328 2.3867030, 48.8416660 2.4012796, 48.8419094 2.4012356, 48.8421054 2.4051399, 48.8422686 2.4130852, 48.8427012 2.4099683, 48.8430070 2.4049900, 48.8432746 2.4053848, 48.8435321 2.4018263, 48.8435985 2.3849459, 48.8438772 2.4055537, 48.8438822 2.4018602, 48.8441184 2.4107116, 48.8445290 2.4022130, 48.8445690 2.3838350, 48.8447684 2.4039094, 48.8450108 2.3819449, 48.8450601 2.4059175, 48.8451489 2.3992116, 48.8456490 2.4058577, 48.8458140 2.3781933, 48.8460195 2.4011318, 48.8464795 2.3973596, 48.8468250 2.3761200, 48.8469175 2.3998635, 48.8470370 2.3752130, 48.8473365 2.3968804, 48.8475637 2.3772093, 48.8476803 2.3969131, 48.8478107 2.3769587, 48.8486250 2.3761890, 48.8486464 2.3760764, 48.8486500 2.3759526, 48.8486995 2.3922091, 48.8488565 2.3718825, 48.8491107 2.3914645, 48.8491891 2.3706453, 48.8492039 2.3749537, 48.8493182 2.3945344, 48.8494100 2.3666950, 48.8495420 2.3885630, 48.8496199 2.3992270, 48.8496430 2.3879630, 48.8497090 2.3874500, 48.8499140 2.3738580, 48.8500548 2.3704157, 48.8501440 2.3736032, 48.8501956 2.3990356, 48.8507639 2.3673484, 48.8517110 2.3618880, 48.8517771 2.3894115, 48.8518450 2.3616490, 48.8521525 2.3608127, 48.8522346 2.3609020, 48.8526930 2.3593190, 48.8527195 2.3598976, 48.8527480 2.3589640, 48.8531388 2.3585705, 48.8532690 2.3582420, 48.8535826 2.3671894, 48.8536386 2.3574595, 48.8536840 2.3653980, 48.8540083 2.3867106, 48.8542800 2.3558000, 48.8543900 2.3585670, 48.8546430 2.3624970, 48.8551500 2.3611171, 48.8551661 2.3610199, 48.8553710 2.3839922, 48.8554533 2.3526702, 48.8555080 2.3530370, 48.8557740 2.3511230, 48.8557940 2.3561690, 48.8559788 2.3536549, 48.8576042 2.3453235, 48.8576673 2.3795437, 48.8578611 2.3794239, 48.8580233 2.3793056, 48.8588686 2.3399492, 48.8593222 2.3528610, 48.8597358 2.3468419, 48.8618647 2.3406148, 48.8659038 2.3352738, 48.8664823 2.3650887, 48.8680548 2.3339763, 48.8682365 2.3599800, 48.8683243 2.3611065, 48.8693195 2.3570045, 48.8692824 2.3567025, 48.8701819 2.3507724, 48.8703411 2.3499916, 48.8703632 2.3498715, 48.8704864 2.3493477, 48.8705032 2.3492529, 48.8716194 2.3500035, 48.8721225 2.3499157, 48.8721226 2.3502025, 48.8722370 2.3500383, 48.8737185 2.3504412, 48.8741816 2.3506318, 48.8747445 2.3507850, 48.8752900 2.3395820, 48.8758873 2.3483293, 48.8760619 2.3511508, 48.8762909 2.3511140, 48.8779921 2.3512114, 48.8784568 2.3428425, 48.8787058 2.3506082, 48.8792051 2.3494881, 48.8792478 2.3478686, 48.8794000 2.3508120, 48.8795410 2.3488399, 48.8798786 2.3436312, 48.8799663 2.3473845, 48.8339632 2.2872487, 48.8359881 2.2902310, 48.8372786 2.2895116, 48.8449733 2.3955604, 48.8452920 2.3209130, 48.8452821 2.3979496, 48.8463896 2.3943133, 48.8471562 2.3938782, 48.8489640 2.3916850, 48.8493880 2.3888810, 48.8496070 2.3873440, 48.8502461 2.3827334, 48.8504940 2.3815430, 48.8505009 2.3846476, 48.8513150 2.3816100, 48.8518018 2.3280805, 48.8525120 2.3807800, 48.8533500 2.3805110, 48.8537880 2.3957560, 48.8541520 2.3797770, 48.8561260 2.3783390, 48.8576484 2.3771545, 48.8584759 2.3764078, 48.8603270 2.3754070, 48.8618492 2.3647130, 48.8621758 2.3636326, 48.8622764 2.3665452, 48.8633235 2.3689417, 48.8645520 2.3597753, 48.8671223 2.3513757, 48.8700760 2.3506120, 48.8736310 2.3479604, 48.8755325 2.3482416, 48.8758100 2.3397850, 48.8760265 2.3400514, 48.8760800 2.3403660, 48.8768678 2.3487512, 48.8389060 2.3767670, 48.8390010 2.3874480, 48.8396552 2.3779295, 48.8543680 2.3547701, 48.8239017 2.3229235, 48.8242472 2.3213940, 48.8245758 2.3199505, 48.8255285 2.3158189, 48.8256468 2.3482018, 48.8258238 2.3144135, 48.8260929 2.3588377, 48.8261054 2.3131480, 48.8275286 2.3318231, 48.8290970 2.2993460, 48.8296899 2.2967192, 48.8300150 2.2961350, 48.8325027 2.2889045, 48.8366313 2.2763322, 48.8431275 2.2603574, 48.8451702 2.3983100, 48.8475546 2.3889290, 48.8478588 2.3908091, 48.8482240 2.3808030, 48.8482720 2.3787290, 48.8490260 2.3810470, 48.8492020 2.3781220, 48.8498208 2.3768806, 48.8499970 2.3791060, 48.8520364 2.3739698, 48.8540329 2.3736919, 48.8545885 2.3714719, 48.8546118 2.3729736, 48.8546280 2.3710930, 48.8550337 2.3704743, 48.8574091 2.3612872, 48.8577110 2.3608910, 48.8618100 2.3539090, 48.8627772 2.3535227, 48.8646021 2.3531390, 48.8700440 2.3507020, 48.8726232 2.2763923, 48.8737450 2.3479740, 48.8738400 2.3446450, 48.8761660 2.3441530, 48.8791390 2.3535520, 48.8798180 2.3528100, 48.8820870 2.3509300, 48.8861322 2.3494762, 48.8866800 2.3495020, 48.8876420 2.3494764, 48.8878870 2.3494964, 48.8906598 2.3495186, 48.8909454 2.3495172, 48.8989647 2.3237481, 48.8715019 2.4045081, 48.8762240 2.4062991, 48.8763811 2.4061703, 48.8769447 2.4050363, 48.8776734 2.4065084, 48.8779210 2.4059297, 48.8781032 2.4108393, 48.8782650 2.4058287, 48.8657823 2.3994721, 48.8572967 2.3515291, 48.8522308 2.3678097, 48.8242892 2.3764902, 48.8243395 2.3766423, 48.8259590 2.3538780, 48.8333535 2.3991671, 48.8378748 2.3573539, 48.8367172 2.3580385, 48.8370906 2.3578084, 48.8469222 2.3993098, 48.8490463 2.3989425, 48.8563665 2.3939744, 48.8572552 2.3854799, 48.8572776 2.3855905, 48.8576754 2.3919847, 48.8594350 2.3870127, 48.8722210 2.3643307, 48.8261039 2.3582769, 48.8468249 2.4104107, 48.8468448 2.4101919, 48.8468528 2.4101033, 48.8471654 2.4071583, 48.8472069 2.4066764, 48.8513516 2.4062448, 48.8517143 2.4071448, 48.8664981 2.3243419, 48.8941417 2.3326946, 48.8715688 2.4022351, 48.8949489 2.3601209, 48.8911550 2.3633069, 48.8394801 2.3713759, 48.8391251 2.3715959, 48.8378949 2.3555704, 48.8240305 2.3234209, 48.8275253 2.3261423, 48.8295090 2.3482501, 48.8296744 2.3329116, 48.8296889 2.3480032, 48.8300287 2.3471023, 48.8306286 2.3439710, 48.8307741 2.3363033, 48.8309276 2.3553044, 48.8309560 2.3563203, 48.8313659 2.3419868, 48.8314521 2.3413377, 48.8337067 2.3652426, 48.8343505 2.3671081, 48.8349875 2.3690185, 48.8369558 2.3731388, 48.8372547 2.3741922, 48.8389808 2.3876834, 48.8400503 2.3966865, 48.8405435 2.3976638, 48.8419125 2.3931180, 48.8425378 2.3971712, 48.8431508 2.3868501, 48.8438225 2.3907961, 48.8438547 2.3884184, 48.8441353 2.3903995, 48.8448504 2.3956453, 48.8449655 2.3825373, 48.8450610 2.3817030, 48.8455335 2.4059659, 48.8457371 2.3744755, 48.8458882 2.3745674, 48.8460421 2.3746885, 48.8461407 2.3758102, 48.8461570 2.3756299, 48.8462020 2.3762720, 48.8463517 2.4060121, 48.8463588 2.3819651, 48.8469945 2.3695400, 48.8469983 2.3840650, 48.8470022 2.3692654, 48.8485165 2.3710817, 48.8493154 2.3681094, 48.8494375 2.3698324, 48.8497678 2.3690872, 48.8499439 2.3739778, 48.8502341 2.3736347, 48.8502976 2.3687576, 48.8538513 2.4054931, 48.8636158 2.3993948, 48.8639863 2.3992574, 48.8652421 2.3951007, 48.8655085 2.3946733, 48.8677329 2.3907031, 48.8684805 2.3898741, 48.8688786 2.3895491, 48.8702670 2.3890490, 48.8704853 2.3883060, 48.8714250 2.3861474, 48.8717558 2.3890342, 48.8994665 2.3362669, 48.9005443 2.3357066, 48.8320164 2.4039323, 48.8320207 2.4038132, 48.8341445 2.4013757, 48.8351942 2.4016328, 48.8372220 2.4037368, 48.8314328 2.3873778, 48.8317821 2.3857254, 48.8320640 2.3883288, 48.8350055 2.3874833, 48.8358666 2.3847168, 48.8373190 2.3826641, 48.8374528 2.3917533, 48.8380369 2.3818677, 48.8387612 2.3810831, 48.8388667 2.3937811, 48.8389421 2.3806421, 48.8394110 2.3802556, 48.8573040 2.3514977, 48.8614181 2.3533893, 48.8616790 2.3513642, 48.8617384 2.3511100, 48.8617679 2.3509583, 48.8619491 2.3505495, 48.8620204 2.3499051, 48.8620520 2.3497369, 48.8638474 2.3430292, 48.8643157 2.3474095, 48.8648065 2.3458024, 48.8810201 2.3499806, 48.8472316 2.4033307, 48.8474060 2.3985801, 48.8475134 2.3982539, 48.8476893 2.3944332, 48.8480152 2.3982806, 48.8523912 2.3718273, 48.8678628 2.3622500, 48.8682145 2.3624441, 48.8753496 2.3569996, 48.8757151 2.3564916, 48.8759340 2.3562965, 48.8763508 2.3558909, 48.8769505 2.3553665, 48.8776793 2.3547127, 48.8779306 2.3546949, 48.8779709 2.3544608, 48.8789523 2.3541157, 48.8798131 2.3564484, 48.8287082 2.3506786, 48.8297015 2.3756891, 48.8297318 2.3756639, 48.8302556 2.3763483, 48.8302884 2.3764082, 48.8303257 2.3764732, 48.8554738 2.3844934, 48.8558003 2.3750398, 48.8563070 2.3766560, 48.8563443 2.3735148, 48.8563892 2.3736140, 48.8573040 2.3791655, 48.8575988 2.3723727, 48.8580871 2.3720646, 48.8599833 2.3751511, 48.8606643 2.3672378, 48.8612261 2.3646636, 48.8612423 2.3694822, 48.8615175 2.3633665, 48.8620657 2.3606971, 48.8625682 2.3596478, 48.8658847 2.3446913, 48.8659713 2.3446586, 48.8669646 2.3445039, 48.8486198 2.2907379, 48.8241171 2.3356096, 48.8251709 2.3747800, 48.8262226 2.3733016, 48.8265738 2.3354498, 48.8270035 2.3668285, 48.8275458 2.3738970, 48.8276171 2.3715500, 48.8279688 2.3733478, 48.8280437 2.3734448, 48.8303701 2.3343029, 48.8324259 2.3797103, 48.8328426 2.3359068, 48.8348268 2.3999659, 48.8363410 2.4027533, 48.8363547 2.4029753, 48.8367250 2.4043293, 48.8367567 2.3928042, 48.8375039 2.3386695, 48.8380611 2.4053828, 48.8381721 2.4055291, 48.8420689 2.3415277, 48.8298782 2.3572786, 48.8517163 2.4061866, 48.8523080 2.4042254, 48.8534161 2.4030439, 48.8310093 2.3571815, 48.8268348 2.3665087, 48.8272788 2.3567770, 48.8278792 2.3659999, 48.8282237 2.3563309, 48.8285149 2.3563221, 48.8291592 2.3654668, 48.8296502 2.3647788, 48.8268291 2.3641616, 48.8522322 2.3898977, 48.8524976 2.3895606, 48.8539546 2.3825521, 48.8544392 2.3816128, 48.8569327 2.3799755, 48.8585657 2.3781777, 48.8633818 2.3710966, 48.8671029 2.3655043, 48.8683370 2.3634922, 48.8699682 2.3607540, 48.8706171 2.3596295, 48.8708012 2.3598095, 48.8712575 2.3602178, 48.8713074 2.3601361, 48.8718731 2.3599327, 48.8724770 2.3594063, 48.8730997 2.3588306, 48.8734420 2.3585204, 48.8742775 2.3577777, 48.8785606 2.3557407, 48.8481543 2.3934076, 48.8542868 2.3877696, 48.8569986 2.3852716, 48.8575346 2.3847601, 48.8580303 2.3809765, 48.8581695 2.3807581, 48.8583918 2.3804386, 48.8608624 2.3805635, 48.8611746 2.3809999, 48.8452169 2.4120881, 48.8461924 2.4121067, 48.8466376 2.4114577, 48.8473580 2.4106924, 48.8473835 2.4103563, 48.8524722 2.4106454, 48.8526979 2.4111873, 48.8557704 2.4107086, 48.8574629 2.4101809, 48.8581256 2.4099841, 48.8587706 2.4100076, 48.8592004 2.4098008, 48.8608587 2.4094863, 48.8649243 2.4085167, 48.8651848 2.4086243, 48.8669825 2.4087455, 48.8681301 2.4072046, 48.8708037 2.4048775, 48.8748416 2.4030830, 48.8800875 2.3982376, 48.8801636 2.3979290, 48.8822748 2.3961932, 48.8897519 2.3898235, 48.8897859 2.3901176, 48.8900562 2.3906182, 48.8908981 2.3898028, 48.8924246 2.3879304, 48.8928662 2.3878039, 48.8931913 2.3928220, 48.8332843 2.3172595, 48.8257570 2.3480755, 48.8257663 2.3482098, 48.8276817 2.3715635, 48.8277542 2.3314326, 48.8277569 2.3294975, 48.8325094 2.3123346, 48.8338839 2.3082929, 48.8340082 2.3078231, 48.8347282 2.3054035, 48.8361022 2.3004952, 48.8362679 2.2934700, 48.8376932 2.4037117, 48.8397308 2.3978085, 48.8420906 2.3894385, 48.8425267 2.3896625, 48.8445646 2.3180923, 48.8470920 2.3268174, 48.8521103 2.3659956, 48.8555817 2.3636375, 48.8592929 2.3562507, 48.8596838 2.3565776, 48.8618200 2.3569043, 48.8746673 2.3308647, 48.8735099 2.3310689, 48.8323649 2.4042508, 48.8319766 2.3145168, 48.8325060 2.3158066, 48.8334834 2.3173462, 48.8338586 2.3183718, 48.8340668 2.3182365, 48.8341266 2.3177915, 48.8347650 2.3425150, 48.8349068 2.3452703, 48.8350373 2.3453379, 48.8350577 2.3457523, 48.8350801 2.3462140, 48.8361574 2.3222159, 48.8383431 2.2893686, 48.8389031 2.3587665, 48.8392803 2.3599626, 48.8394354 2.3604664, 48.8442862 2.2943443, 48.8444182 2.2937030, 48.8469994 2.2956834, 48.8472148 2.3034083, 48.8527070 2.3336447, 48.8228812 2.3586455, 48.8250947 2.3203976, 48.8266929 2.3240664, 48.8276403 2.3263672, 48.8366568 2.3904615, 48.8377732 2.2978996, 48.8390555 2.3541961, 48.8391729 2.3879459, 48.8393615 2.3547196, 48.8394955 2.3009500, 48.8395273 2.3563297, 48.8403152 2.3627036, 48.8403371 2.3598998, 48.8403767 2.3612985, 48.8421501 2.3099414, 48.8431512 2.3481982, 48.8442099 2.3456920, 48.8451757 2.3455730, 48.8457102 2.3460054, 48.8488355 2.3252187, 48.8506988 2.3354533, 48.8254520 2.3540117, 48.8320288 2.2933775, 48.8330901 2.2875209, 48.8338287 2.2951996, 48.8352845 2.3006101, 48.8353138 2.3004808, 48.8355333 2.3008990, 48.8375206 2.3108341, 48.8377213 2.3092594, 48.8380900 2.3040826, 48.8383431 2.3045795, 48.8384042 2.3046605, 48.8386443 2.3051222, 48.8396738 2.3028038, 48.8403607 2.4028757, 48.8406684 2.3153202, 48.8409914 2.3133930, 48.8414293 2.3136925, 48.8419801 2.3147584, 48.8471459 2.3017502, 48.8529188 2.3087416, 48.8560088 2.3152292, 48.8584188 2.3146004, 48.8664898 2.3645091, 48.8669961 2.3635905, 48.8670152 2.3630804, 48.8670361 2.3631640, 48.8674351 2.3629732, 48.8679849 2.3651178, 48.8686416 2.3633147, 48.8686663 2.3632144, 48.8488706 2.4054308, 48.8489816 2.4056570, 48.8494687 2.4051936, 48.8600707 2.3247081, 48.8297590 2.3779170, 48.8250371 2.3884441, 48.8275044 2.3763133, 48.8295479 2.3793241, 48.8312982 2.3805156, 48.8535184 2.3767685, 48.8567309 2.3731009, 48.8567919 2.3727131, 48.8596630 2.4036667, 48.8597113 2.4032404, 48.8672556 2.3729520, 48.8678310 2.3962785, 48.8712975 2.3932942, 48.8736717 2.3893707, 48.8752326 2.3699504, 48.8785201 2.3757987, 48.8785987 2.3756111, 48.8839930 2.3680663, 48.8841702 2.3653361, 48.8809813 2.3738144, 48.8813033 2.3729918, 48.8330219 2.3641260, 48.8337653 2.3094048, 48.8342723 2.3283804, 48.8354533 2.3258265, 48.8357486 2.3110952, 48.8366678 2.3127785, 48.8368862 2.3126418, 48.8408789 2.3214931, 48.8475924 2.3949477, 48.8480651 2.3944560, 48.8484606 2.3943801, 48.8489226 2.3946004, 48.8530598 2.3535567, 48.8552774 2.3345202, 48.8555651 2.3608523, 48.8570886 2.3297266, 48.8585185 2.3298224, 48.8586963 2.3287531, 48.8761034 2.3355444, 48.8762920 2.3325923, 48.8217293 2.3329753, 48.8342289 2.3218797, 48.8343205 2.2844154, 48.8348748 2.2829273, 48.8355558 2.2807022, 48.8360155 2.2791843, 48.8366129 2.3508583, 48.8372702 2.3535459, 48.8379882 2.3433930, 48.8382061 2.3565243, 48.8385318 2.3366177, 48.8396083 2.3376405, 48.8411746 2.3066119, 48.8412714 2.3397958, 48.8414201 2.3390745, 48.8452811 2.3694044, 48.8246139 2.3297884, 48.8248448 2.3309724, 48.8248677 2.3167742, 48.8249619 2.3287697, 48.8249980 2.3313844, 48.8257400 2.3120275, 48.8259545 2.3126700, 48.8260495 2.3309436, 48.8285948 2.3330627, 48.8290174 2.3328655, 48.8326036 2.3623992, 48.8334174 2.3642162, 48.8359245 2.3856627, 48.8401447 2.3704675, 48.8403742 2.3701490, 48.8409627 2.3362290, 48.8415305 2.3538584, 48.8419422 2.3357262, 48.8430208 2.3525662, 48.8432035 2.3315463, 48.8441253 2.3305131, 48.8452074 2.3522138, 48.8467725 2.3266058, 48.8484788 2.3326047, 48.8493788 2.3389951, 48.8500333 2.3399942, 48.8445302 2.3291617, 48.8496464 2.3378520, 48.8462036 2.2991334, 48.8466880 2.3668924, 48.8504922 2.3892597, 48.8506002 2.3865799, 48.8508572 2.3411144, 48.8515666 2.3400541, 48.8517508 2.3398717, 48.8521001 2.3863956, 48.8528464 2.3842636, 48.8529129 2.3851769, 48.8532221 2.3833883, 48.8545205 2.3824395, 48.8560866 2.3825736, 48.8610854 2.3101169, 48.8742389 2.3553630, 48.8744853 2.3555219, 48.8767135 2.3539984, 48.8767602 2.3536655, 48.8773020 2.3497131, 48.8780538 2.3450154, 48.8222079 2.3512623, 48.8221465 2.3506206, 48.8403122 2.2839206, 48.8421802 2.2856456, 48.8446133 2.2871390, 48.8459908 2.2882261, 48.8465650 2.3875568, 48.8481839 2.2902622, 48.8868930 2.3555588, 48.8332913 2.3012392, 48.8319028 2.3045724, 48.8763704 2.3313223, 48.8813097 2.3805063, 48.8407025 2.2998297, 48.8408105 2.3005583, 48.8428691 2.2953585, 48.8691839 2.3358994, 48.8419850 2.2935384, 48.8420971 2.3007593, 48.8432807 2.3001298, 48.8435688 2.2937775, 48.8452755 2.2974744, 48.8469016 2.2922005, 48.8469813 2.2932207, 48.8470332 2.2925959, 48.8471729 2.2924922, 48.8481405 2.2934613, 48.8488766 2.3550116, 48.8489122 2.3193174, 48.8489272 2.3523931, 48.8491216 2.3136783, 48.8491775 2.3141515, 48.8492908 2.3146445, 48.8493554 2.3527922, 48.8499990 2.3166689, 48.8508919 2.2958074, 48.8511850 2.2966292, 48.8454208 2.2917026, 48.8473674 2.2962615, 48.8475073 2.2831429, 48.8477824 2.2824011, 48.8682969 2.3657074, 48.8685578 2.3665766, 48.8351811 2.4063529, 48.8389376 2.2789040, 48.8416959 2.2795090, 48.8450469 2.2801242, 48.8454304 2.2845227, 48.8459998 2.2813073, 48.8462807 2.2851535, 48.8894150 2.3628554, 48.8850120 2.3563702, 48.8762217 2.3586964, 48.8433449 2.3251164, 48.8550540 2.3941000, 48.8560955 2.3926896, 48.8578050 2.3996283, 48.8582358 2.3823367, 48.8586186 2.3835107, 48.8592411 2.3830225, 48.8601008 2.3822123, 48.8626812 2.3797075, 48.8630453 2.3672473, 48.8633485 2.3671490, 48.8634092 2.3790356, 48.8644595 2.3839203, 48.8648530 2.3666639, 48.8657480 2.3705095, 48.8680948 2.3655417, 48.8682070 2.3654610, 48.8687325 2.3631261, 48.8740998 2.3453668, 48.8903381 2.3486643, 48.8905361 2.3482493, 48.8481499 2.3941327, 48.8277079 2.3495286, 48.8314922 2.3442625, 48.8320979 2.3443846, 48.8367757 2.3452596, 48.8548426 2.3031870, 48.8548827 2.3032421, 48.8567726 2.3001849, 48.8568344 2.3001716, 48.8569127 2.2999765, 48.8577877 2.3006194, 48.8596013 2.3072329, 48.8600760 2.3280535, 48.8612403 2.3243984, 48.8615577 2.3576761, 48.8617439 2.2982592, 48.8626940 2.3099487, 48.8627569 2.3393126, 48.8629258 2.3030795, 48.8629949 2.3080187, 48.8630650 2.3165032, 48.8635613 2.3394544, 48.8265121 2.3465625, 48.8321818 2.3392750, 48.8508705 2.3623119, 48.8512015 2.3822530, 48.8514794 2.3101353, 48.8540997 2.3239460, 48.8541902 2.3194979, 48.8550561 2.3402771, 48.8600928 2.3731117, 48.8535790 2.3638481, 48.8571030 2.3539440, 48.8571580 2.2667766, 48.8573414 2.3540716, 48.8574462 2.3575428, 48.8584854 2.2792832, 48.8597267 2.2821320, 48.8630086 2.3362399, 48.8631579 2.3415886, 48.8632373 2.3412593, 48.8653506 2.3423662, 48.8670831 2.3356438, 48.8682396 2.2933172, 48.8697732 2.2938530, 48.8744871 2.3117910, 48.8747123 2.3133715, 48.8747243 2.3027090, 48.8759626 2.2965087, 48.8308265 2.3530126, 48.8359247 2.2814968, 48.8381961 2.2812162, 48.8466206 2.4134552, 48.8530692 2.4125589, 48.8569190 2.4110486, 48.8647596 2.4089845, 48.8671280 2.4091658, 48.8673068 2.4087318, 48.8678522 2.4092408, 48.8718692 2.4084946, 48.8729156 2.4089018, 48.8730227 2.4088436, 48.8774817 2.4062578, 48.8799062 2.4010873, 48.8808314 2.4005187, 48.8827476 2.3997867, 48.8837604 2.3973570, 48.8853759 2.3967693, 48.8891501 2.3919739, 48.8921011 2.3883839, 48.8939074 2.3869648, 48.8950741 2.3853043, 48.8965893 2.3846935, 48.8974790 2.3852300, 48.8355408 2.3093378, 48.8413240 2.2886217, 48.8592270 2.3236594, 48.8624657 2.3115669, 48.8779515 2.3440896, 48.8380661 2.2876899, 48.8454913 2.3116790, 48.8455110 2.3111536, 48.8669202 2.3834926, 48.8689269 2.3715327, 48.8759321 2.3727655, 48.8984073 2.3709403, 48.8526033 2.3136415, 48.8357816 2.3023056, 48.8363872 2.3030756, 48.8365194 2.3011778, 48.8368720 2.3025022, 48.8369553 2.3024373, 48.8370310 2.3025696, 48.8388883 2.3004061, 48.8489669 2.2876751, 48.8689288 2.3715403, 48.8402950 2.3002166, 48.8404916 2.2780605, 48.8424961 2.3064436, 48.8433477 2.2798969, 48.8440160 2.3238242, 48.8471428 2.2860305, 48.8474003 2.2951465, 48.8480350 2.2869182, 48.8490968 2.2877519, 48.8249781 2.3039567, 48.8257243 2.3052770, 48.8265928 2.3048244, 48.8213106 2.3411460, 48.8239590 2.3308277, 48.8239711 2.3514442, 48.8239998 2.3510117, 48.8241733 2.3533935, 48.8244865 2.3278048, 48.8245804 2.3396886, 48.8246044 2.3382584, 48.8248799 2.3536513, 48.8256032 2.3217938, 48.8260622 2.3105582, 48.8266135 2.3534752, 48.8269262 2.3513163, 48.8281250 2.3216386, 48.8281819 2.3155262, 48.8289185 2.3222763, 48.8296026 2.3178273, 48.8322116 2.2883420, 48.8324706 2.3133021, 48.8329583 2.2774040, 48.8330016 2.2770756, 48.8330898 2.2768283, 48.8331174 2.2765291, 48.8333400 2.3145004, 48.8337099 2.3148700, 48.8337885 2.3608913, 48.8356331 2.4060202, 48.8360628 2.4058718, 48.8367584 2.3566102, 48.8368296 2.3568351, 48.8459364 2.3679712, 48.8488033 2.3687487, 48.8384611 2.3605477, 48.8671353 2.3480000, 48.8938413 2.3472931, 48.8942404 2.3460471, 48.8942255 2.3458385, 48.8466055 2.3466048, 48.8934234 2.3381216, 48.8929811 2.3381482, 48.8839216 2.3271785, 48.8839775 2.3271608, 48.8839670 2.3273081, 48.8841275 2.3270884, 48.8845343 2.3268965, 48.8846683 2.3268418, 48.8855156 2.3264429, 48.8862771 2.3262148, 48.8861526 2.3261584, 48.8865223 2.3259623, 48.8869014 2.3259253, 48.8871792 2.3257982, 48.8875030 2.3256728, 48.8874194 2.3255802, 48.8189427 2.3623110, 48.8193375 2.3442401, 48.8193930 2.3452226, 48.8200280 2.3394747, 48.8202391 2.3395613, 48.8205079 2.3556087, 48.8205508 2.3372668, 48.8205989 2.3495983, 48.8211121 2.3347051, 48.8215967 2.3323735, 48.8292229 2.3255814, 48.8292882 2.2971394, 48.8313803 2.3349575, 48.8316633 2.3221401, 48.8325886 2.3203616, 48.8357379 2.3250590, 48.8369802 2.2739149, 48.8386159 2.3222156, 48.8344865 2.4691570, 48.8357568 2.3008708, 48.8360131 2.3100586, 48.8369650 2.3090961, 48.8375624 2.3080571, 48.8385808 2.3067130, 48.8395895 2.3092578, 48.8714897 2.3427273, 48.8205058 2.3593321, 48.8505602 2.3001391, 48.8427552 2.2924068, 48.8434280 2.2929776, 48.8518541 2.2999378, 48.8526008 2.2998174, 48.8526618 2.2999032, 48.8560465 2.2944608, 48.8561074 2.2945466, 48.8566822 2.2923833, 48.8568355 2.2938443, 48.8582848 2.3558481, 48.8595125 2.3524319, 48.8608732 2.2962429, 48.8610323 2.2965408, 48.8613476 2.2971959, 48.8630993 2.3180109, 48.8348722 2.4086899, 48.8358883 2.4089442, 48.8360619 2.4087881, 48.8425612 2.3139626, 48.8475557 2.4085227, 48.8415102 2.4131166, 48.8416826 2.4130896, 48.8319771 2.3979134, 48.8323454 2.3551969, 48.8974525 2.3959552, 48.8678050 2.3496900, 48.8681841 2.3484645, 48.8682787 2.3487909, 48.8685115 2.3495915, 48.8690548 2.3514051, 48.8293654 2.3598900, 48.8312517 2.3580440, 48.8225167 2.3571540, 48.8897765 2.3719886, 48.8437894 2.2772811, 48.8441585 2.2771994, 48.8485264 2.2810711, 48.8487304 2.2813632, 48.8489564 2.2816880, 48.8512111 2.3987159, 48.8512690 2.4044346, 48.8514506 2.4058799, 48.8514709 2.3995095, 48.8515803 2.4001141, 48.8543196 2.3962849, 48.8568402 2.4046511, 48.8580682 2.3877975, 48.8600706 2.3886064, 48.8604792 2.4008059, 48.8611195 2.3880530, 48.8631905 2.3883955, 48.8650677 2.3956244, 48.8651291 2.3943708, 48.8654133 2.3895489, 48.8660045 2.3873365, 48.8662887 2.3905433, 48.8682334 2.3864308, 48.8686568 2.3866090, 48.8690384 2.3861855, 48.8704416 2.3841005, 48.8704583 2.3841770, 48.8726164 2.3842276, 48.8734281 2.3825503, 48.8735409 2.3833038, 48.8274961 2.3770388, 48.8883372 2.3743635, 48.8966561 2.3798725, 48.8301525 2.3594415, 48.8465069 2.4099879, 48.8757435 2.3262717, 48.8836814 2.3499178, 48.8201088 2.3481923, 48.8201319 2.3478823, 48.8202012 2.3481361, 48.8205445 2.3494030, 48.8233285 2.3741842, 48.8217463 2.3258742, 48.8219887 2.3306289, 48.8349501 2.4072247, 48.8351659 2.4069054, 48.8708394 2.3465254, 48.8736212 2.2769315, 48.8816472 2.3154087, 48.8824542 2.2862966, 48.8837737 2.2909262, 48.8843309 2.2884576, 48.8853037 2.2956381, 48.8892808 2.2928055, 48.8346342 2.3606245, 48.8550678 2.3246859, 48.8843190 2.3697260, 48.8849215 2.3709154, 48.8871420 2.3755550, 48.8488878 2.4063145, 48.8826421 2.3444926, 48.8618141 2.3222918, 48.8649047 2.3105605, 48.8649598 2.3105563, 48.8707207 2.3458677, 48.8710108 2.3455226, 48.8748858 2.3191940, 48.8814710 2.3009002, 48.8836868 2.2986830, 48.8845223 2.3081683, 48.8848975 2.3067652, 48.8871423 2.3009349, 48.8873797 2.3010160, 48.8688331 2.3251265, 48.8871184 2.2983257, 48.8887957 2.2976069, 48.8833935 2.3195861, 48.8845689 2.3194756, 48.8847283 2.3200247, 48.8848321 2.3192257, 48.8854073 2.2987197, 48.8862629 2.3178705, 48.8862908 2.3178312, 48.8874366 2.3136254, 48.8418848 2.2853423, 48.8507831 2.3944957, 48.8518835 2.3934531, 48.8520017 2.3935558, 48.8523499 2.3931181, 48.8617792 2.3745107, 48.8622369 2.3739210, 48.8623819 2.3639950, 48.8740920 2.3388296, 48.8754273 2.3247309, 48.8394875 2.2840062, 48.8397475 2.2846463, 48.8427503 2.2863046, 48.8468131 2.2904315, 48.8500437 2.3954755, 48.8391079 2.3390778, 48.8422773 2.3762540, 48.8391187 2.4008037, 48.8397181 2.4041355, 48.8423773 2.3977129, 48.8432024 2.3913685, 48.8449650 2.3837024, 48.8526582 2.2904698, 48.8577122 2.2791705, 48.8581675 2.2754001, 48.8516727 2.3995074, 48.8317848 2.3580564, 48.8331084 2.3230703, 48.8629913 2.4001471, 48.8332462 2.4027150, 48.8422716 2.3666416, 48.8425115 2.3664241, 48.8425602 2.3663854, 48.8432847 2.3745921, 48.8611021 2.3537247, 48.8459524 2.3314941, 48.8467856 2.2815796, 48.8473038 2.3299657, 48.8822077 2.3636469, 48.8822937 2.3628730, 48.8826834 2.3615248, 48.8842662 2.3384857, 48.8843570 2.3383511, 48.8843580 2.3554674, 48.8855628 2.3868905, 48.8973410 2.3866230, 48.8480167 2.2901082, 48.8654197 2.3615883, 48.8659969 2.3276111, 48.8453920 2.3132117, 48.8602828 2.3469501, 48.8771319 2.3510066, 48.8431362 2.3363642, 48.8778732 2.3448763 +yes ++33 (0) 144680816 +1.921881365326831 +49.4075160 8.6918700 +yes +yes +10 +1 +http://www.crafters-barn.co.uk/ +264 +yes +50.0728540 8.2223309, 50.1427837 8.8829934, 49.4538388 7.5818814, 49.4465012 7.5754817, 49.4499742 7.5668379, 49.0428181 8.6889683 +Musée de l'Armée, Musée de l'Assistance Publique Hôpitaux de Paris and 01.40.27.50.05, Musée des Arts Décoratifs - Musée de la Publicité and 01.44.55.57.50, Musée national des Arts et Métiers and +33 (0)1 53 01 82 00, Tour de Jean-sans-Peur, Musée Gustave Moreau and 01.48.74.38.50, Les Égouts de Paris and 01.53.68.27.81, Musée Pasteur and 01.45.68.82.83, Espace Dali and 01.42.64.40.10, Musée de la carte à Jouer, Musée en Herbe and 01.40.67.97.66, Maison Européenne de la Photographie and +33 1 44 78 75 00, Musée de l'Eventail and 01.42.08.90.20, Musée de la Poupée and 01.44.54.04.48, Catacombes de Paris and +33 1 43224763, Musée de l'Erotisme and 01.42.58.28.73, Musée des années 30, Musée du Petit Palais and 01.53.43.40.00, Musée de la Légion d'Honneur et des Ordres de Chevalerie and 01.40.62.84.25, Conciergerie, Musée du Vin and 01.45.25.63.26, Musée de la Poste and +33 1 42 79 24 24, galerie-musée Baccarat and +33 1 40 22 11 00, Salle des collections, Musée du Service de Santé des Armées, Choco-Story - Le musée gourmand du chocolat and 00.33.(0)1.42.29.68.60, Musée-Jardin Paul Landowski, Cité de l'architecture et du patrimoine and 01.58.51.52.00, Musée de la Marine and +33 (0)1 53 65 69 69, +33 (0)1 53 65 69 53, Musée de la franc-maçonnerie and 01.45.23.74.09, Espace des Sciences Pierre-Gilles de Gennes, Deyrolle, Fondation Le Corbusier and 01.42.88.41.53, Musée de la Contrefaçon and +33 1 56 26 14 03, Musée Dapper and 01.45.00.91.75, Musée Adzak - Espace d'Art International and 01.45.43.06.98, Musée d'Anatomie Delmas-Orfila-Rouvière and 01.42.86.20.47, Musée Arménien de France, Musée Boleslas Biegas - Musée Adam Mickiewicz and 01.43.54.35.61, Musée Bible et Terre Sainte and 01.45.44.09.55, Musée Bouilhet-Christofle - Musée d'Orfèvrerie and 01.49.22.41.15, Musée Clemenceau and 01.45.20.53.41, Musée-Librairie du Compagnonnage and 01.43.26.25.03, Musée d'Anatomie Pathologique Dupuytren and 01.42.34.68.60, Musée Valentin Haüy, Musée Henner and 01.47.63.42.73, Musée d'histoire de la Médecine, Musée Maillol and 01.42.22.59.58, Musée des Lettres et Manuscrits and +33 1 42 22 48 48, Musée du Montparnasse and +33 1 42229196, Musée de Minéralogie and 01.40.51.92.90, Musée Moissan, Crypte Archéologique du Parvis Notre-Dame and 01.55.42.50.10, Bibliothèque-Musée de l'Opéra and 01.53.79.37.47, Musée Pierre Marly - Lunettes et Lorgnettes, Musée de la Préfecture de Police and 01.44.41.52.50, Centre Culturel Suisse, Tour de la Cathédrale and 01.53.10.07.00, Maison de la Pêche et de la Nature, Le trésor de Notre-Dame de Paris, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin and 01.40.64.39.44, Musée national d'art moderne, Maxim's Art Nouveau "Collection 1900" and 01.42.65.30.47, Collection des minéraux - Jussieu, Fondation Henri Cartier-Bresson and +33156802700, Galerie Royale, Académie de la Magie, Musée du Barreau and +33 1 44 32 47 48, Katakomben von Paris, Institut des Lettres et Manuscrits, Musée du quai Branly and 01.56.61.70.00, Galerie de Minéralogie et de Géologie and 01.40.79.54.79, Institut du Monde Arabe and 01.40.51.38.38, Jardin Tino Rossi - Musée de la Sculpture en Plein Air, Halle Saint-Pierre and 01.42.58.72.89, Hôtel de Sully, Jeu de Paume and +33 1 47031250, Musée de l'Orangerie and 01.44.50.43.00, Atelier Brancusi, Futur Fondation Galeries Lafayette, Musée Curie and 01.56.24.55.33, Grand Palais, Pavillon de l'Arsenal and 01.42.76.33.97, 01.42.76.26.32, Musée National du Moyen Âge and 01.53.73.78.13, Musée d'Art et d'Histoire du Judaïsme and 01.53.01.86.53, Archives Nationales and 01.40.27.60.96, Musée de la Serrure, Musée Picasso and 01.85.56.00.36, Musée Cognacq-Jay and 01.40.27.07.21, Musée national Eugène Delacroix and 01.44.41.86.50, Orangerie du Sénat, Musée d'Orsay, Musée national Ernest-Hébert, Institut Néerlandais and 01.53.59.12.40, Immeuble Molitor, Pinacothèque de Paris and 01.42.68.02.01, Musée Nissim de Camondo and 01.44.55.57.50, Musée Cernuschi and 01.53.96.21.50, Musée Rodin and 01.44.18.61.10, Musée Jacquemart-André and 01.45.42.11.59, Musée De Dion-Bouton, Musée Renault and 01.46.05.21.58, Pavillon de Vendôme and 01 .47 .15 .31 .05, Musée Paul-Belmondo, Fondation Pierre Bergé Yves Saint-Laurent, Musée d'Art Moderne de la Ville de Paris and 01.53.67.40.00, Palais de Tokyo and 01.47.23.54.01, Fondation Cartier and 01.42.18.56.50, Musée Guimet and 01.58.52.53.00, Maison Chana Orloff, Musée Bourdelle and 01.49.54.73.73, Musée d'Ennery and +33 1 45535796, Musée Roybet Fould, Musée Marmottan and 01.44.96.50.33, Grande Galerie de l'Évolution and 01.40.79.54.79, 01.40.79.56.01, Musée de la Vie Romantique and 01.55.31.95.67, Maison de Balzac and +33 1 55744180, Pavillon de l'eau and 01.42.24.54.02, Mémorial de la Shoah and +33 1 42 77 44 72, Maison de la Culture du Japon and 01.44.37.95 .01, Musée Zadkine and 01.55.42.77.20, Musée de Montmartre and 01.49.25.89.39, Musée de la chasse et de la nature and 01.53.01.92.40, Manufacture des Gobelins, Musée du Luxembourg and 01.40.13.62.00, Palais de la Découverte, Centre Culturel Suédois and 01.44.78.80.20, Musée de la magie, Fondation Louis Vuitton and 01.40.69.96.00, Hôtel des Monnaies, Musée Galliera and 01.56.52.86.00, Musée Carnavalet and 01.44.59.58.58, Le Louvre, Sainte-Chapelle and 01.53.40.60.80 +yes +52.5154199 13.4105362, 52.5190924 13.3555706, 52.5201452 13.4091755, 52.5101563 13.3900661, 52.3882604 13.5184385, 52.4592360 13.3138055, 52.5166244 13.3871483, 52.5190463 13.4025073, 52.5197220 13.4037775, 52.5199288 13.4041583, 52.5242445 13.3468542, 48.4940023 9.2123679 +19 and Rue des Petits Carreaux, 79-81 and Avenue du Général Leclerc, 24 and Rue de la Py, 112 and Avenue de Villiers, 105 and Avenue de Villiers, Boulevard Saint-Michel, 19 and Rue du Louvre, 21 and Rue du Louvre, 134 and Rue Réaumur, 34 and Boulevard de Sébastopol, 201 and Rue du Temple, 110 and Boulevard Saint-Germain, 158b and Rue du Temple, 108 and Boulevard Jourdan, 45 and Avenue de Versailles, 47 and Rue de Sèvres, 202, 45 and Avenue de Saxe, 190 and Avenue Daumesnil, 10 and Boulevard de Denain, 41 and Avenue Montaigne, 1 and Avenue Reille, 1 and Rue de l'Amiral Mouchez, 245 and Rue de Charenton, 20 and Rue de Harlay, 71 and Avenue du Docteur Arnold Netter, Boulevard Voltaire, 90 and Avenue du Général Leclerc, 119 and Boulevard Voltaire, 1 and Boulevard de Denain, 27, 6 and Place Lachambeaudie, 2 and Place de l'Opéra, 41  and Rue de l'Ambroisie, 370 and Rue de Vaugirard, 403 bis and Rue de Vaugirard, 376 and Rue de Vaugirard, 16 and Place de Clichy, 60 and Boulevard de Grenelle, 83, 86, 43 and Avenue Montaigne, 73 and Rue Saint-Lazare, 100 and Rue La Fayette, 1 and Place de la Porte de Vanves, 227 and Rue de Tolbiac, 67 and Boulevard Brune, 2 and Square Desnouettes, 163 and Boulevard Lefebvre, 17 and Rue Balard, 19 and Rue Cauchy, 67 and Rue de Bretagne, 76 and Avenue Émile Zola, 40b and Rue des Entrepreneurs, 2 and Place Charles Michels, 40 and Rue Lecourbe, 26 and Boulevard de Grenelle, 44 and Rue La Fayette, 121 and Rue Saint-Antoine, 16 and Place de la Madeleine, 79 and Rue du Commerce, 69 and Rue du Commerce +1.034897728230403 +Musée du quai Branly +3 +yes +Playfair Monument and 55.9548066 -3.1831153 +48.0169900 0.1529468, 48.1846137 0.6536841, 48.1857639 0.6528687, 48.1853805 0.6538558, 48.1877586 0.6535933, 47.6623642 -1.9999542, 47.5178122 -2.0364437, 47.5658346 -1.6168284, 47.8885629 -0.2360682, 47.6376411 -1.0473284, 47.7331874 -1.1600826, 47.9936287 0.1902660, 47.7547948 -1.0018843, 48.2195485 0.6367839, 47.5306968 -0.1184749, 47.6084592 -1.7444525, 48.0660784 -0.1560527, 48.2411687 -0.6198366, 48.4390727 -0.1176280, 48.1829382 -0.3020747, 48.3582544 -0.1919164, 47.4710760 -0.5444181, 48.0411951 -0.0567503, 48.0991378 0.7992432, 48.0238361 0.2048137 +49.4250839 8.6878203 +33.8661283 -78.5157683, 9.9190691 -84.1043455, 43.0682876 -89.4237330, 51.2202794 6.7668908, 40.5505038 -105.0588116, 52.3092512 10.5048372, 50.9299219 7.0410660, 37.8921647 -122.2875029, 45.4833460 -122.6973901, 34.8699075 -82.4217196, 37.8309388 -122.2534367, 45.4738904 -122.6944691, 45.4689193 -122.6998986, 36.5480751 136.6768741, 47.6348285 -122.3678767, 47.6352291 -122.3611254, 47.6354371 -122.3691588, 47.6360161 -122.3632067, 47.6360563 -122.3635408, 47.6380056 -122.3597605, 47.6397472 -122.3703871, 47.6423122 -122.3596549, 47.6433235 -122.3564015, 47.6590651 -122.3309314, 47.6627918 -122.3260786, 47.6331595 -122.3557352, 47.6332355 -122.3485177, 47.6340544 -122.3497776, 47.6356366 -122.3526532, 47.6390715 -122.3556740, 47.6394988 -122.3558193, 47.6398796 -122.3039421, 47.6312368 -122.3607318, 47.6780965 -122.3654225, 47.6791839 -122.2918082, 47.6812405 -122.3658989, 47.6848247 -122.3640519, 47.6851819 -122.3663810, 47.6875899 -122.3508686, 47.6877530 -122.3513310, 47.5759861 -122.3895807, 54.2931879 12.3312166, 37.3533651 -122.0192511, 45.4714889 -122.7085161, 45.4724924 -122.7139019, 47.6793976 -122.3151326, 45.4840253 -122.6919901, 37.3696542 -122.0610695, 47.6729304 -122.3822712, 45.4909900 -122.6808017, 48.4240865 -122.3041378, 43.0837020 -89.3630813, 45.4700947 -122.7140540, 24.1365487 120.6847372, 24.1364264 120.6848012, 47.6579151 -122.3398155, 47.7068039 -122.3136815, 40.5421826 -105.0926619, 40.5881599 -105.0859558, 40.5046766 -105.0763670, 40.5402661 -105.0568005, 40.5406510 -105.1197369, 40.5510115 -105.1281838, 40.5569822 -105.1058599, 40.5613313 -105.0603891, 40.5726317 -105.1313133, 40.5949375 -105.1149659, 47.6413320 -122.3607444, -23.3354177 -69.8454819, 45.5313084 -73.5663196, 45.5205527 -73.8548441, 45.4288519 -73.6386740, 45.4296620 -73.6332480, 45.4212210 -73.6364625, 45.4837011 -73.5767996, 45.4226913 -73.6480121, 45.4213471 -73.6294566, 45.4307218 -73.5944806, 45.5249930 -73.5847874, 45.5139656 -73.5567183, 45.5686581 -73.5986567, 45.5719684 -73.6275751, 45.4678555 -73.5487821, 45.5423101 -73.6239441, 45.5747645 -73.6836766, 45.5592809 -73.6772557, 45.5360011 -73.5699325, 45.6503675 -73.5775808, -39.0344407 -67.5389173, 14.1867832 -91.3053447, 45.5101571 -73.5508775, 45.5110669 -73.5671424, 45.5137509 -73.5557592, 45.5204867 -73.5510170, 45.5110188 -73.5513353, 45.5089717 -73.5591084, 45.5069198 -73.5576086, 29.7200281 -84.7499100, 45.4782620 -122.7246306, 47.6221801 -122.3318128, 44.4563636 -73.2139044, -26.5678201 -54.7664945, 45.4850463 -122.7281510, 18.4123975 -66.3301084, 41.0529923 -83.6503835, -38.5267065 -70.3695118, -38.5572170 -58.7389424, 45.4635749 -122.6942153, 45.4796245 -122.6927696, -31.4135921 -64.1702113, 25.0164685 121.4655036, -34.7660388 -61.8921789, 39.9321249 116.4497695, 45.4660951 -122.6841482, 52.3467781 71.8793420, 52.3542375 71.8926866, 47.6649352 -122.3525860, 39.9336949 116.4562033, 39.9223560 116.4383658, 45.4641198 -122.6551186, -32.9204327 -62.4553342, -33.1328801 -64.3340832, 6.1737085 -75.6426148, -33.3830869 -64.7217634, -30.8659791 -60.9690041, -38.9360383 -68.0870831, -53.7696740 -67.7252920, -53.7868740 -67.6992357, -33.1328654 -64.3341580, -41.0423082 -62.8264077, 42.9760109 -76.3362960, -31.5355176 -68.5392717, 46.5200190 -94.2886313, 46.5214433 -94.2893446, 44.9360154 -93.0945604, 9.9177824 -84.0870274, -2.8988040 -79.0041980, -16.4987475 -68.1969586, -16.4793644 -68.1758499, -16.5575197 -68.1929803, -16.5542797 -68.1951450, 20.0756399 -103.5491219, 37.7924005 126.9868878, 39.9556451 -75.1010119, 19.3082261 -100.1429360, 18.8790023 -71.7062418, 20.1448369 -101.1839145, -35.0538221 -58.7628395, 36.5848700 2.1246054, 46.2338815 -63.1267798, 46.2338299 -63.1267879, 46.2352679 -63.1238031, 46.2360703 -63.1303618, 47.6910046 -122.2939249, 32.7186227 51.5309889, 47.6221388 -122.3120812, -35.5154506 -58.3184979, -16.4817023 -68.2198025, 43.0708859 -89.4239939, 18.8987390 -96.9979693, 43.0711964 -89.4269965, 19.2098038 -98.7559652, 37.7651411 -122.4546866, 43.0652885 -89.4197511, 9.8464846 -84.3142159, 18.4769799 -69.8995354, -33.5702568 -70.6321304, 10.0794015 -69.1300939, -37.8011791 -73.4012679, 10.9785637 -74.7819280, 4.5950418 -74.3417260, 39.1023875 -94.5848408, 11.6884695 -84.4573671, 39.9321796 116.4391677, -41.0424203 -62.8265546, -11.0197418 -68.7583579, -37.4790155 -73.3416764, 9.1203661 -79.5544695, -16.4956960 -68.2136104, -16.4906771 -68.2092927, -16.4914322 -68.2348824, -16.5655774 -68.1934277, -16.5645488 -68.1949844, -16.5305833 -68.2056835, -16.5820863 -68.1876364, -16.5557693 -68.2234231, -13.0756386 -76.3868080, 18.8790429 -71.7062606, 7.6419550 -72.2789029, 9.6534798 -83.9702206 +209 +L'Atelier SFR, The Phone House, The Phone House, espace SFR, Al Madina, Orange, Espace SFR, Orange, SFR, Yilpa Telecom, Orange, The Phone House, The phone house, Stop Phone, Kremlin Phone, Allo Phone, Phone House, Orange, Vivre Mobile, Argana, Riquet Phone, Numéricable, Allo La Place, Phone House, Comtel, Riquet Phone, Torcy House, Orange, SFR, SFR, Bouygues, Orange, SFR, Docteur iPhone, France 4G Télécom, Orange, Bouygues Telecom, SFR, Bouygues Telecom, Orange, Orange, Satelex Services, Bouygues Telecom, Orange, Orange, espace SFR, S.P.S., Mobil S, Orange, Bouygues Telecom, Numericable, Free Center, Rubinya, Orange +55.9466868 -3.1916914, 55.9536185 -3.1862787, 55.9534683 -3.1859868, 55.9533184 -3.1857689, 55.9535165 -3.1863169, 55.9536601 -3.1865378, 55.9534244 -3.1861994 +75 +15 +yes +yes +46.6167350 -1.8692222, 47.4157721 -1.8539595, 47.6623642 -1.9999542, 47.5178122 -2.0364437, 47.2053637 -2.0487648, 46.6646452 -1.7570749, 46.6625119 -1.7637588, 46.4072147 -1.4060013, 47.5658346 -1.6168284, 47.6376411 -1.0473284, 47.7331874 -1.1600826, 47.1117065 -2.1078804, 47.0386966 -1.6404113, 47.7547948 -1.0018843, 47.1027718 -1.1206474, 47.1002886 -1.1228630, 47.2606386 -1.5123732, 47.2757188 -2.4265544, 46.7916310 -2.0633590, 47.6084592 -1.7444525, 46.5333900 -1.7720741, 47.3427522 -2.4270051, 46.5890791 -1.1245053, 46.5894219 -1.1237864, 47.0319246 -1.0921844, 46.8367326 -0.8835602, 46.4906189 -1.7944913, 46.7700629 -1.5054141, 47.1854515 -1.9446521, 46.5712586 -1.8264870, 47.3639737 -1.0215598, 47.1335252 -2.2132604, 47.2194968 -1.5498408 +yes +717 +yes and 2 +Centre culturel italien +0 +49.3707442 10.9941112, 47.5736349 7.6049328, 53.8890822 10.6556899, 53.8891364 10.6556766, 53.8891893 10.6556637, 53.8890285 10.6557029, 53.8892427 10.6556507, 53.8883350 10.6561524, 53.8883942 10.6556770, 53.8886006 10.6557836, 53.8885465 10.6566485, 53.8882814 10.6561411, 53.8884683 10.6570599, 53.8883426 10.6556504, 53.8884955 10.6561862, 53.8887178 10.6553823, 53.8884154 10.6570780, 53.8885490 10.6557569, 53.8884926 10.6566510, 53.8883846 10.6566560, 53.8885491 10.6561975, 53.8884418 10.6561749, 53.8886733 10.6553304, 53.8884972 10.6557302, 53.8884385 10.6566536, 53.8883309 10.6566586, 53.8885213 10.6570418, 53.8883883 10.6561636, 53.8886286 10.6552784, 53.8884456 10.6557035, 53.8885742 10.6570237, 50.9211401 6.9441213, 54.6627618 10.0314984, 54.6627974 10.0297148, 54.6627899 10.0301479, 48.4635434 135.0843335, 48.4726508 135.0897167, 48.4721528 135.0887979, 48.5364269 135.0604026, 48.5357113 135.0609107, 48.4996820 135.1153412, 48.5012031 135.1148856, 48.5007220 135.1143628, 48.5001631 135.1158640, 48.4996742 135.1163669, 48.5007141 135.1153885 +Königreichssaal, St. Laurentius, Versöhnungsgemeinde, Kapelle, Kirche am Markt, Angehörigen Kapelle, Erlöserkirche, Freie evangelische Gemeinde, Christliche Baptistengemeinde, Evangelische Friedenskirche, Peterskirche, Heiliggeistkirche, St. Michael, St. Vitus, St. Albert, Sankt Paul, St. Raphael, Neuapostolische Kirche, Jakobuskirche, Johanneskirche, Adventgemeinde Heidelberg, Markushaus, St. Bonifatius, Evangelisches Gemeindezentrum, Hoffnungskirche, St. Johannes, Jesuitenkirche, Providenzkirche, Lutherkirche, Chapel, Neuapostolische Kirche, St. Bartholomäus, Kreuzkirche, Christuskirche, Alte Kirche - St. Bartholomäus, Bergkirche, Gutleuthofkapelle, Emmaus-Gemeinde, Lukaskirche, Sankt Anna, Evangelische Studierendengemeinde (Karl-Jaspers-Haus), Die ARCHE - Evangelische Wichern-Gemeinde, St. Thomas, Abteikirche Stift Neuburg, St. Laurentius, St. Teresa Kirche, Melanchthonkirche, St. Marien, St. Johann der Täufer, St. Laurentius, Sankt Peter, Peterskirche, St. Peter, Kirche Jesu Christi +165 +yes +24 +no +tertiary, tertiary, tertiary +yes +55.9579565 -3.2439627 +Ciao Roma, Zizzi, Cafe Arista, Osteria Del Tempo Perso, Piatto Verde, Pizza Express, Prezzo, Giuliano's, Cafe Domenico's, Vittoria, De Niro, Al Dente, Papillo, Il Castello, Anima, Valvona & Crolla, Vittoria, Frankie & Benny's, Italian Connection, Inca, Bella Italia, Origano, Amarone Pizzeria, Caffe e Cucina, Mia, Zucca, Taste of Italy, Quattero Zero, Zizzi, Caffe Centro, La Bruschetta, Gali, Vina Veritas, Locanda De Gusti, Da Riccardo, Bella Italia, La Lanterna, Strada, Al Borgo, Pizza Hut, Jamie's Italian, La Barca, Asti, Pizza Express, Gennaro, The Hispanola, The Sicilian Restaurant, Al Fresco, Mamma Roma, Giuliano's, La Favorita, Nonna's, Dantes, La Favorita, Rigatoni, Positano, Cucina, The New Bell, Zizzi, Ti Amo, Azzazzy, Jolly, Moratti, Lucano's Kitchen, Tani Modi, Fabio's +yes +yes +501 +0.3066907550557873 +Picardy Place +Maison Verte, Calvary Chapel, Temple de l'Oratoire du Louvre, Temple Sainte-Marie, Temple de la Rencontre, Église protestante chinoise de Paris, Temple protestant du Foyer de l'Âme, Église Réformée du Luxembourg, Église Réformée du Saint-Esprit, Temple de Pentemont, Deutsche Evangelische Christuskirche Paris, Église Réformée chinoise de Belleville, Église Protestante Danoise, Temple des Batignolles, Paroisse de Plaisance, Église Réformée de l'Annonciation, Église Luthérienne de l'Ascension, Temple Réformé de l'Etoile, Église Protestante Suéduoise +48.8876919 2.3789669 +yes +68 +1565 and Mont Aigoual, 1685, 1179 and Roc de Peyre, 175 and Mont Saint-Clair, 221.79 and Dent de Marcoule, 1067.87 and Mont Mimat, 1101.8, 1417.39 and Mont Grand, 620 and Guidon du Bouquet, 398 and Le Coutach, 470 and Leiris, 848 and Mont Saint-Baudille, Col de Lasclier, 1562 and Le Rocher des Laubies, 1503 and Le Moure de la Gardille, 1680 and Pic Cassini, 1247 and Mont Gargo, 185 and Mont Saint-Bauzille, 1001 and Mont Milan, 752 and Roc Castel, 481 and Pic de Vissou, 864 and Pic d'Anjeau, 940 and La Seranne, 1551 and Truc de Fortunio, 1366 and Saint-Guiral, 535 and Mont Liausson, 502 and Mont Mars, 822 and Mauripe, Sauco Roundo, Gratassac, 914 and Pic de la Tourette, 330 and La Pourcaresse, 1008 and Le truc de Grèzes, 325 and Le Suquet, 1192 and Pic d'Usclat, 1203.8, 1174, 1211.1 and Le Tourrel, 1127.7, 1106.55 and Mont Chabrio, 1657.41 and Signal des Laubies, 1674.3, 1031.1 and La Chaumette, 1421.47 and Signal du Bouges, 662 and Pic Saint-Loup, 1421 and Montagne du Liconès, 1151 and Puech d'Alluech, 1057.6, 1699.27 and Signal de Finiels, 525 and Mont Haut, 782 and Peyre Martine, Puech Bartelié, 1233.2 and Esquino d'Aze, 1075.97 and Serre de Pauparelle, 1152.68, 1219.84, 1239.07, 695 and Signal de Saint Pierre, 1688, 815 and Mont Brion, 112 and Mont Saint-Loup +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8169651 2.3597405, 48.8256612 2.4077565, 48.8801709 2.3706981, 48.8556200 2.3068506, 48.8652569 2.3516674, 48.8950280 2.3447570, 48.8315802 2.3158225, 48.8300663 2.3232285, 48.8314449 2.3165689, 48.8298344 2.3228877, 48.8311423 2.3178852, 48.8456181 2.3051375, 48.8319942 2.3245602, 48.8758196 2.3557131, 48.8304021 2.3248398, 48.8673061 2.3458878, 48.8595728 2.3896050, 48.8510838 2.3409320, 48.8730354 2.3533915, 48.8702836 2.3508959, 48.8721968 2.3539367, 48.8510673 2.3670936, 48.8569549 2.3497208, 48.8562998 2.3535246, 48.8569724 2.3588681, 48.8570939 2.3592300, 48.8706615 2.3508326, 48.8417539 2.3228265, 48.8417906 2.3194104, 48.8373758 2.3176784, 48.8494146 2.3482770, 48.8514966 2.3009053, 48.8542089 2.3049026, 48.8539589 2.3040725, 48.8534705 2.3029031, 48.8528568 2.3020177, 48.8494772 2.3513322, 48.8521302 2.3358217, 48.8525398 2.3683116, 48.8513093 2.3691996, 48.8555874 2.3684232, 48.8794107 2.3753630, 48.8553332 2.3464366, 48.8537039 2.3474380, 48.8389743 2.3594500, 48.8528715 2.3435491, 48.8513763 2.3250565, 48.8393301 2.3500747, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8688161 2.3275703, 48.8618419 2.3435168, 48.8624039 2.3374638, 48.8663165 2.3370822, 48.8672925 2.3255509, 48.8616428 2.3359304, 48.8659000 2.3372420, 48.8615254 2.3440287, 48.8585872 2.3458523, 48.8674660 2.3326727, 48.8663449 2.3382902, 48.8663903 2.3380844, 48.8660027 2.3646613, 48.8573191 2.3660431, 48.8580708 2.3643313, 48.8654622 2.3553300, 48.8577996 2.3607146, 48.8629482 2.3611507, 48.8644553 2.3543144, 48.8363545 2.3536716, 48.8522718 2.3406371, 48.8375553 2.3201124, 48.8483622 2.3739893, 48.8491606 2.4165683, 48.8391922 2.3168608, 48.8346500 2.3172863, 48.8319392 2.3309271, 48.8453963 2.3255943, 48.8445352 2.3242726, 48.8405754 2.3213430, 48.8414313 2.3069539, 48.8674536 2.3536254, 48.8648091 2.3411291, 48.8705392 2.3328697, 48.8687993 2.3373273, 48.8648222 2.3475072, 48.8689038 2.3422059, 48.8643869 2.3503038, 48.8695611 2.3317879, 48.8691942 2.3321035, 48.8663658 2.3442726, 48.8609918 2.3544137, 48.8562533 2.3609683, 48.8557612 2.3561274, 48.8533876 2.3620076, 48.8575825 2.3562566, 48.8577181 2.3586116, 48.8555902 2.3628384, 48.8577346 2.3566096, 48.8553135 2.3591057, 48.8536147 2.3682805, 48.8533255 2.3540705, 48.8573914 2.3563278, 48.8574318 2.3576301, 48.8572146 2.3577144, 48.8577212 2.3576336, 48.8563923 2.3573717, 48.8608910 2.3527350, 48.8437435 2.3544856, 48.8498300 2.3549148, 48.8446680 2.3483159, 48.8525895 2.3466883, 48.8429882 2.3495477, 48.8423393 2.3498473, 48.8474495 2.3471573, 48.8527413 2.3333559, 48.8405040 2.3347917, 48.8556694 2.3399888, 48.8555375 2.3409454, 48.8537528 2.3324105, 48.8533939 2.3394107, 48.8493501 2.3391528, 48.8546811 2.3332029, 48.8497831 2.3401650, 48.8441458 2.3298957, 48.8468341 2.3265156, 48.8550882 2.3414828, 48.8442966 2.3310034, 48.8510774 2.3385693, 48.8540787 2.3330795, 48.8541444 2.3326307, 48.8680799 2.3215688, 48.8710439 2.3094204, 48.8702443 2.3283595, 48.8732490 2.3415929, 48.8476672 2.3527426, 48.8460795 2.3742445, 48.8468043 2.3696423, 48.8438213 2.3729021, 48.8714582 2.3357136, 48.8719507 2.3429771, 48.8718710 2.3418144, 48.8705409 2.3532213, 48.8711564 2.3649322, 48.8755778 2.3590863, 48.8759060 2.3588881, 48.8727960 2.3635124, 48.8526670 2.3323656, 48.8494031 2.3370695, 48.8445885 2.3722564, 48.8439502 2.3728916, 48.8633384 2.3675429, 48.8635832 2.3671683, 48.8660128 2.3794462, 48.8638332 2.3670685, 48.8679153 2.3737355, 48.8656744 2.3707975, 48.8683924 2.3793396, 48.8645151 2.3730525, 48.8679409 2.3754781, 48.8554631 2.3741053, 48.8533962 2.3787654, 48.8554359 2.3744522, 48.8533316 2.3759759, 48.8561021 2.3751898, 48.8667776 2.3826288, 48.8656637 2.3778893, 48.8658803 2.3779414, 48.8630685 2.3709736, 48.8657344 2.3781951, 48.8655073 2.3763355, 48.8659834 2.3791601, 48.8663909 2.3810388, 48.8527123 2.3742095, 48.8567799 2.3773631, 48.8249137 2.3571341, 48.8260261 2.3459422, 48.8450730 2.3795209, 48.8473223 2.3735841, 48.8333341 2.3793218, 48.8263535 2.3601541, 48.8264524 2.3594353, 48.8346687 2.3775990, 48.8278970 2.3505521, 48.8349997 2.3270026, 48.8332286 2.3157120, 48.8234665 2.3685489, 48.8840787 2.3324082, 48.8865294 2.3408144, 48.8869322 2.3399586, 48.8847049 2.3404648, 48.8689647 2.3915789, 48.8267459 2.3664051, 48.8654581 2.3446776, 48.8615333 2.3574473, 48.8596461 2.3534386, 48.8501935 2.3250319, 48.8470403 2.3693549, 48.8452383 2.3641683, 48.8523143 2.3350471, 48.8755021 2.3103942, 48.8516415 2.3185465, 48.8482525 2.3194882, 48.8604171 2.3059560, 48.8537038 2.3235630, 48.8449146 2.3734371, 48.8421585 2.3029483, 48.8406684 2.3041928, 48.8437952 2.3734663, 48.8695170 2.4328399, 48.8523799 2.4036853, 48.8559899 2.3159343, 48.8554206 2.3183101, 48.8488472 2.3218448, 48.8514780 2.3379065, 48.8683478 2.4330037, 48.8545251 2.3212715, 48.8526298 2.3263322, 48.8521100 2.3268827, 48.8528896 2.3356791, 48.8514207 2.3433804, 48.8795968 2.3519355, 48.8522486 2.3480461, 48.8513208 2.3334888, 48.8516658 2.3278801, 48.8486899 2.3209398, 48.8474544 2.3181308, 48.8433635 2.3051384, 48.8227135 2.3260702, 48.8189756 2.3612028, 48.8469142 2.3813987, 48.8464198 2.3775114, 48.8442218 2.3811783, 48.8444155 2.3816924, 48.8469709 2.3171693, 48.8504070 2.3475208, 48.8499365 2.3494237, 48.8508359 2.3253843, 48.8522270 2.3302639, 48.8469113 2.3137238, 48.8454762 2.3120307, 48.8455138 2.3102008, 48.8413443 2.3078397, 48.8453869 2.3708665, 48.8444301 2.3181336, 48.8435094 2.3104432, 48.8459721 2.3236611, 48.8479947 2.3295614, 48.8484226 2.3426974, 48.8517684 2.3387959, 48.8507495 2.3326789, 48.8455266 2.3019080, 48.8455659 2.3086884, 48.8465149 2.3169266, 48.8496947 2.3229620, 48.8529756 2.3361563, 48.8513775 2.3427806, 48.8842024 2.3388617, 48.8475761 2.3025411, 48.8477633 2.3023462, 48.8560670 2.3097025, 48.8734018 2.3235239, 48.8712726 2.3703692, 48.8477136 2.3011375, 48.8430732 2.3244918, 48.8424588 2.3289261, 48.8434993 2.3257407, 48.8420387 2.3244015, 48.8384698 2.3158768, 48.8395778 2.3094998, 48.8430511 2.3069675, 48.8427695 2.3027722, 48.8425061 2.3025319, 48.8428313 2.3024426, 48.8416259 2.3030314, 48.8416654 2.3032066, 48.8420231 2.3029260, 48.8550776 2.3535796, 48.8568920 2.3534398, 48.8568210 2.3523008, 48.8441012 2.3081233, 48.8428872 2.3031638, 48.8473525 2.3160099, 48.8544589 2.4006544, 48.8435952 2.3057630, 48.8424518 2.3053432, 48.8425186 2.3236239, 48.8432872 2.3245561, 48.8437904 2.3249468, 48.8437882 2.3156320, 48.8616525 2.3535093, 48.8532432 2.3117287, 48.8490001 2.3033585, 48.8446716 2.3110739, 48.8532560 2.3307851, 48.8541427 2.3314320, 48.8475203 2.3650738, 48.8476495 2.3658974, 48.8459217 2.3669243, 48.8461560 2.3704219, 48.8475463 2.3713427, 48.8456772 2.3714536, 48.8480731 2.3678319, 48.8537482 2.3105482, 48.8500524 2.3076923, 48.8510323 2.3074986, 48.8536610 2.3238906, 48.8500734 2.3482448, 48.8501755 2.3620809, 48.8501676 2.3621707, 48.8579355 2.3103822, 48.8579412 2.3104681, 48.8578708 2.3103454, 48.8593908 2.3144172, 48.8585003 2.3229386, 48.8770907 2.3512337, 48.8505668 2.3455319, 48.8492048 2.3556646, 48.8452432 2.3693333, 48.8330132 2.3364634, 48.8244377 2.4128671, 48.8425359 2.3619057, 48.8446917 2.3101829, 48.8427351 2.3034933, 48.8361460 2.3103122, 48.8364203 2.3067894, 48.8374026 2.3058911, 48.8594450 2.4361085, 48.8596579 2.4367736, 48.8583758 2.4318504, 48.8582168 2.4316682, 48.8576232 2.4273765, 48.8572770 2.4234848, 48.8585303 2.4270690, 48.8585303 2.4271390, 48.8587147 2.4278326, 48.8586655 2.4271302, 48.8595368 2.4236590, 48.8617417 2.4314904, 48.8595521 2.4310009, 48.8586233 2.4359753, 48.8485711 2.3284734, 48.8506902 2.3304172, 48.8463195 2.3671559, 48.8513330 2.3624841, 48.8535846 2.3574562, 48.8452225 2.3735396, 48.8448045 2.3735389, 48.8569169 2.3216982, 48.8558498 2.3207071, 48.8543421 2.3306133, 48.8566284 2.3271644, 48.8406788 2.3548958, 48.8510369 2.3288914, 48.8500011 2.3270079, 48.8477830 2.3233449, 48.8454622 2.3188063, 48.8596007 2.4367605, 48.8595599 2.4367534, 48.8225672 2.4097572, 48.8598508 2.3183041, 48.8597204 2.3183152, 48.8457331 2.3099256, 48.8472412 2.3109555, 48.8476453 2.3135075, 48.8500676 2.3175242, 48.8540017 2.3240619, 48.8517950 2.3250816, 48.8517770 2.3252172, 48.8516223 2.3251656, 48.8427370 2.3209794, 48.8441323 2.3201211, 48.8426689 2.3210349, 48.8607606 2.3756443, 48.8299268 2.3465439, 48.8383937 2.3485348, 48.8403879 2.3515598, 48.8398105 2.3061597, 48.8586271 2.3007824, 48.8449916 2.3240393, 48.8460429 2.3238386, 48.8697560 2.3414883, 48.8690961 2.3437971, 48.8797179 2.3570269, 48.8253815 2.3947492, 48.8197981 2.4160056, 48.8649605 2.3450799, 48.8670451 2.3482613, 48.8671035 2.3471909, 48.8451704 2.3284896, 48.8691369 2.3682501, 48.8813252 2.3220105, 48.8274124 2.3148434, 48.8524729 2.3738150, 48.8673444 2.3739608, 48.8672350 2.3692879, 48.8826925 2.3828693, 48.8662404 2.3855356, 48.8631427 2.3877152, 48.8570811 2.3559832, 48.8588049 2.3266129, 48.8334988 2.3198962, 48.8276899 2.3209286, 48.8527753 2.4059315, 48.8445460 2.4150005, 48.8551966 2.4016334, 48.8540343 2.4058858, 48.8413622 2.3437999, 48.8415875 2.3505588, 48.8403969 2.3564692, 48.8521826 2.3288834, 48.8651191 2.3417893, 48.8549926 2.4194769, 48.8550176 2.4194858, 48.8547004 2.4176221, 48.8553049 2.4152098, 48.8545966 2.4174281, 48.8546120 2.4176273, 48.8526512 2.4178210, 48.8528087 2.4179553, 48.8527870 2.4179611, 48.8526158 2.4179109, 48.8525735 2.4179149, 48.8525881 2.4179488, 48.8549902 2.4154032, 48.8523892 2.4174521, 48.8530297 2.4225414, 48.8531799 2.4227035, 48.8528780 2.4238693, 48.8529118 2.4245808, 48.8536761 2.4245154, 48.8536539 2.4244823, 48.8528640 2.4239020, 48.8526561 2.4238459, 48.8528444 2.4236233, 48.8518298 2.4239552, 48.8489614 2.4262759, 48.8491888 2.4232171, 48.8506435 2.4183607, 48.8509170 2.4210877, 48.8509252 2.4212226, 48.8494689 2.4189858, 48.8492857 2.4177520, 48.8493804 2.4178251, 48.8516516 2.4182106, 48.8546953 2.4230965, 48.8686452 2.3957029, 48.8728505 2.3993800, 48.8724174 2.3980455, 48.8686944 2.3502259, 48.8709590 2.3477192, 48.8410120 2.3066005, 48.8751549 2.3379848, 48.8733432 2.3379745, 48.8297742 2.3340925, 48.8317381 2.3369416, 48.8352367 2.3263118, 48.8495920 2.3118988, 48.8652332 2.3505855, 48.8661215 2.3507823, 48.8678615 2.3515176, 48.8681982 2.3520494, 48.8739628 2.3483713, 48.8742224 2.3396921, 48.8742897 2.3390843, 48.8761301 2.3377037, 48.8488951 2.3254247, 48.8488333 2.3253506, 48.8545441 2.4229761, 48.8544631 2.4223445, 48.8542523 2.4219270, 48.8570028 2.3007925, 48.8386496 2.3228171, 48.8374062 2.4163948, 48.8647212 2.3469127, 48.8693629 2.3549762, 48.8692952 2.3553367, 48.8626015 2.3440440, 48.8535511 2.4188088, 48.8536584 2.4195641, 48.8461967 2.3783357, 48.8657442 2.3458247, 48.8658103 2.3452891, 48.8717201 2.3371530, 48.8699489 2.3360007, 48.8728819 2.3542143, 48.8745507 2.3567836, 48.8763320 2.3353305, 48.8742181 2.3379134, 48.8840331 2.3599166, 48.8797487 2.3564752, 48.8827832 2.3594133, 48.8346693 2.3672842, 48.8428024 2.3024212, 48.8337013 2.3466308, 48.8332139 2.3445199, 48.8634544 2.3348757, 48.8707881 2.3459106, 48.8713990 2.3457625, 48.8566023 2.4025142, 48.8655369 2.4143919, 48.8655234 2.4149389, 48.8448495 2.3836596, 48.8463962 2.3870738, 48.8302539 2.3458528, 48.8322987 2.3553750, 48.8588835 2.3307705, 48.8697776 2.3105917, 48.8686679 2.3066263, 48.8701667 2.3511661, 48.8626616 2.3670401, 48.8581081 2.3677623, 48.8687918 2.3397996, 48.8520874 2.3738549, 48.8582001 2.3497997, 48.8583079 2.3497964, 48.8535124 2.3349428, 48.8534242 2.3334679, 48.8496184 2.3521690, 48.8494725 2.3556898, 48.8502265 2.3482852, 48.8499990 2.3688118, 48.8622352 2.3395906, 48.8621947 2.3416613, 48.8672098 2.3654644, 48.8667808 2.3656961, 48.8666591 2.3656152, 48.8664563 2.3643496, 48.8667250 2.3639036, 48.8684771 2.3626799, 48.8666678 2.3662969, 48.8665492 2.3669492, 48.8666829 2.3679194, 48.8658039 2.3707172, 48.8657085 2.3712657, 48.8651568 2.3742225, 48.8655987 2.3744866, 48.8645531 2.3774428, 48.8637682 2.3814854, 48.8632649 2.3858206, 48.8630511 2.3852954, 48.8632411 2.3861008, 48.8633686 2.3882903, 48.8626607 2.3872306, 48.8786773 2.3755952, 48.8785775 2.3753580, 48.8782645 2.3740462, 48.8779867 2.3739646, 48.8781966 2.3734146, 48.8782398 2.3737861, 48.8774801 2.3700505, 48.8781543 2.3710006, 48.8774751 2.3738895, 48.8782178 2.3740370, 48.8741020 2.3753013, 48.8811959 2.3730150, 48.8822577 2.3705521, 48.8770967 2.3743348, 48.8784404 2.3739693, 48.8783411 2.3725952, 48.8780431 2.3720976, 48.8783247 2.3732090, 48.8838984 2.3707556, 48.8841289 2.3719174, 48.8479197 2.3992555, 48.8426264 2.3901753, 48.8484038 2.3977491, 48.8463128 2.3945522, 48.8759764 2.3707416, 48.8532985 2.3263609, 48.8420601 2.3893615, 48.8563247 2.3152562, 48.8820575 2.3366575, 48.8827175 2.3362016, 48.8798316 2.3403839, 48.8821984 2.3397918, 48.8721672 2.3266440, 48.8360044 2.3574926, 48.8237611 2.3626525, 48.8444572 2.3762234, 48.8815299 2.3159881, 48.8813511 2.3153761, 48.8317250 2.3147515, 48.8318670 2.3144693, 48.8311601 2.3117228, 48.8587218 2.4028880, 48.8521928 2.4013589, 48.8542722 2.4004111, 48.8884003 2.3790168, 48.8823672 2.3208340, 48.8822341 2.3195753, 48.8829037 2.3179094, 48.8456068 2.3428904, 48.8477733 2.3484340, 48.8415272 2.3511512, 48.8718873 2.3570864, 48.8288139 2.3506397, 48.8477803 2.3019256, 48.8477295 2.3020629, 48.8845714 2.3233053, 48.8844355 2.3243334, 48.8851560 2.3252063, 48.8867718 2.3236539, 48.8847610 2.3245933, 48.8879876 2.3341073, 48.8889479 2.3316294, 48.8689224 2.3335350, 48.8454862 2.3697712, 48.8835953 2.3233585, 48.8492934 2.3349249, 48.8504228 2.4065330, 48.8611046 2.3413657, 48.8610917 2.3414339, 48.8517156 2.3336409, 48.8858410 2.3405929, 48.8891314 2.3403708, 48.8717809 2.3937884, 48.8685166 2.3920862, 48.8678821 2.3921769, 48.8876134 2.3796187, 48.8580038 2.3999627, 48.8595367 2.4030888, 48.8600086 2.4039364, 48.8566933 2.4002542, 48.8387954 2.3034409, 48.8844316 2.3506830, 48.8491445 2.3035292, 48.8188844 2.3237502, 48.8178584 2.3299165, 48.8609633 2.3016431, 48.8609068 2.3015143, 48.8543529 2.3051441, 48.8473002 2.3015819, 48.8466733 2.3017106, 48.8457695 2.3018737, 48.8455718 2.3018823, 48.8649951 2.3377982, 48.8491104 2.3034797, 48.8475898 2.3031985, 48.8522469 2.3266487, 48.8531701 2.3263925, 48.8521565 2.3266646, 48.8515210 2.3266631, 48.8762160 2.3198347, 48.8759240 2.3229225, 48.8751239 2.3193212, 48.8752707 2.3164208, 48.8754510 2.3155141, 48.8777916 2.3180541, 48.8765765 2.3175668, 48.8766173 2.3130385, 48.8766073 2.3132319, 48.8796223 2.3145554, 48.8795914 2.3183667, 48.8806320 2.3194004, 48.8818486 2.3225844, 48.8809530 2.3244796, 48.8380635 2.3056765, 48.8403553 2.3038378, 48.8523905 2.3413027, 48.8524074 2.3414445, 48.8456039 2.3547969, 48.8453724 2.3548312, 48.8490204 2.3392177, 48.8489616 2.3391032, 48.8637261 2.3340606, 48.8639768 2.3341784, 48.8643067 2.3348568, 48.8728127 2.3145756, 48.8727422 2.3099714, 48.8727445 2.3083275, 48.8716299 2.3140084, 48.8730075 2.3164825, 48.8736476 2.3204627, 48.8736614 2.3208856, 48.8706262 2.3242484, 48.8724892 2.3267639, 48.8722561 2.3259576, 48.8732165 2.3236650, 48.8735130 2.3204415, 48.8700637 2.3230592, 48.8715224 2.3074911, 48.8704701 2.3076472, 48.8415760 2.3664732, 48.8414831 2.3661485, 48.8712783 2.3155587, 48.8605866 2.3617807, 48.8835954 2.3291657, 48.8820013 2.3330275, 48.8455384 2.3288228, 48.8536478 2.3380576, 48.8276825 2.3271004, 48.8290423 2.3331547, 48.8300247 2.3311059, 48.8519626 2.3388319, 48.8526502 2.3390840, 48.8536059 2.3382770, 48.8538386 2.3384740, 48.8539544 2.3370609, 48.8533551 2.3356842, 48.8276087 2.3346707, 48.8300409 2.3310810, 48.8332389 2.3329284, 48.8526288 2.3385336, 48.8415160 2.3436441, 48.8445750 2.3454978, 48.8450073 2.3757975, 48.8442783 2.3769332, 48.8538018 2.3337187, 48.8193344 2.3436498, 48.8697269 2.3107378, 48.8923205 2.3416630, 48.8925057 2.3450965, 48.8374507 2.3523064, 48.8364602 2.3723041, 48.8365958 2.3740207, 48.8351429 2.3731146, 48.8326142 2.3712146, 48.8327554 2.3711889, 48.8324164 2.3712490, 48.8322017 2.3717812, 48.8320209 2.3720902, 48.8303052 2.3730491, 48.8296796 2.3757017, 48.8294557 2.3759783, 48.8294304 2.3758918, 48.8287267 2.3764073, 48.8284873 2.3763340, 48.8283951 2.3766208, 48.8424152 2.3276286, 48.8413725 2.3310575, 48.8319838 2.3583000, 48.8579325 2.3515044, 48.8904568 2.3984851, 48.8874715 2.3994717, 48.8858277 2.3979326, 48.8892044 2.3949432, 48.8536039 2.3444118, 48.8535412 2.3444065, 48.8515050 2.3430786, 48.8501002 2.3428094, 48.8499611 2.3431466, 48.8497949 2.3431065, 48.8497377 2.3428278, 48.8481900 2.3416831, 48.8473294 2.3412516, 48.8461467 2.3400524, 48.8307271 2.3566617, 48.8307708 2.3567939, 48.8308701 2.3570791, 48.8327092 2.3625620, 48.8317439 2.3618766, 48.8566990 2.3570528, 48.8569081 2.3579840, 48.8329491 2.3541747, 48.8335351 2.3537862, 48.8304784 2.3562767, 48.8312038 2.3565530, 48.8333114 2.3539298, 48.8336129 2.3544305, 48.8334332 2.3545467, 48.8326050 2.3544168, 48.8322707 2.3582796, 48.8921108 2.3751961, 48.8920516 2.3752857, 48.8770457 2.4050940, 48.8770622 2.4052339, 48.8527942 2.4060014, 48.8334069 2.3555105, 48.8522066 2.3483892, 48.8524157 2.3382646, 48.8457083 2.3191961, 48.8544496 2.3557731, 48.8523526 2.3444419, 48.8568120 2.3062305, 48.8342726 2.3085148, 48.8341153 2.3087657, 48.8338554 2.3083709, 48.8537402 2.4056302, 48.8538057 2.4056125, 48.8530182 2.4058632, 48.8484568 2.3995601, 48.8478160 2.3975417, 48.8422244 2.3415804, 48.8540277 2.3358692, 48.8551205 2.3589562, 48.8390699 2.3214477, 48.8828817 2.3596543, 48.8641353 2.3676323, 48.8692451 2.3919892, 48.8554073 2.3268543, 48.8503222 2.3325549, 48.8682344 2.3721212, 48.8718838 2.3720170, 48.8336932 2.3094058, 48.8697474 2.3709540, 48.8716445 2.3921866, 48.8704428 2.3883722, 48.8729609 2.3894775, 48.8703637 2.3893764, 48.8807957 2.3680128, 48.8659081 2.3781743, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8593821 2.3790898, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8412432 2.3252996, 48.8409061 2.3218163, 48.8814427 2.3685496, 48.8743224 2.3737632, 48.8703950 2.3709651, 48.8694860 2.3821154, 48.8695013 2.3822447, 48.8700223 2.3840638, 48.8702788 2.3842745, 48.8700731 2.3844758, 48.8701522 2.3848448, 48.8702594 2.3860980, 48.8702820 2.3863469, 48.8705756 2.3882952, 48.8715131 2.3862265, 48.8715301 2.3874968, 48.8726817 2.3841494, 48.8726253 2.3842524, 48.8613883 2.3754494, 48.8726648 2.3889559, 48.8690010 2.3856816, 48.8692544 2.3857069, 48.8778843 2.3510144, 48.8782964 2.4109300, 48.8538078 2.3277103, 48.8529470 2.3434116, 48.8573363 2.3574834, 48.8575522 2.3577300, 48.8534187 2.3767493, 48.8732512 2.3826034, 48.8719640 2.3809798, 48.8715124 2.3812630, 48.8707876 2.3814258, 48.8701383 2.3797607, 48.8701219 2.3796800, 48.8696528 2.3800869, 48.8703047 2.3816624, 48.8725516 2.3783579, 48.8724783 2.3782205, 48.8689756 2.3829202, 48.8689555 2.3855043, 48.8673835 2.3830489, 48.8674174 2.3831948, 48.8680300 2.3851169, 48.8681056 2.3856641, 48.8694555 2.3406786, 48.8522503 2.3344195, 48.8743115 2.3756487, 48.8683745 2.3500412, 48.8539901 2.3267207, 48.8806072 2.3538936, 48.8692096 2.3486800, 48.8675048 2.3473847, 48.8673495 2.3470736, 48.8674736 2.3471342, 48.8702235 2.3490322, 48.8700483 2.3490020, 48.8535279 2.3681762, 48.8402491 2.3214518, 48.8404976 2.3244044, 48.8431992 2.3244536, 48.8547827 2.4053007, 48.8638253 2.3808706, 48.8611898 2.3813091, 48.8845723 2.4081565, 48.8949604 2.3648581, 48.8950049 2.3648565, 48.8948520 2.3651050, 48.8489374 2.3729446, 48.8482032 2.3715312, 48.8484200 2.3719584, 48.8482427 2.3721197, 48.8484636 2.3724140, 48.8471107 2.3753997, 48.8890111 2.3798549, 48.8455069 2.3806458, 48.8630805 2.4151688, 48.8523266 2.4155894, 48.8470542 2.4160413, 48.8470892 2.4158499, 48.8659368 2.3775981, 48.8464606 2.4154979, 48.8462106 2.4156776, 48.8439439 2.4149475, 48.8416186 2.4152244, 48.8415917 2.4151604, 48.8347493 2.4131753, 48.8467984 2.3769382, 48.8456871 2.3741212, 48.8483053 2.3759065, 48.8482055 2.3763201, 48.8462392 2.3793434, 48.8442424 2.3717797, 48.8818782 2.3342987, 48.8882137 2.3785003, 48.8723344 2.3492288, 48.8838281 2.3984467, 48.8813616 2.3964237, 48.8802934 2.3966027, 48.8842507 2.3842625, 48.8211748 2.3337795, 48.8336473 2.4129352, 48.8370031 2.4203543, 48.8446086 2.4216697, 48.8414397 2.4307042, 48.8509876 2.3461191, 48.8533987 2.4060810, 48.8570374 2.4045098, 48.8573212 2.4038990, 48.8305048 2.3677879, 48.8498852 2.3079985, 48.8510833 2.3092502, 48.8512789 2.3096976, 48.8513322 2.3097491, 48.8405382 2.3537295, 48.8404563 2.3540242, 48.8406418 2.3541771, 48.8411143 2.3555601, 48.8460249 2.3758514, 48.8459315 2.3760161, 48.8460309 2.3745805, 48.8457501 2.3710340, 48.8243871 2.4184684, 48.8491257 2.3916769, 48.8492146 2.3916803, 48.8505550 2.3903815, 48.8507318 2.3902220, 48.8518448 2.3890950, 48.8521875 2.3889688, 48.8517486 2.3881145, 48.8515667 2.3867566, 48.8523206 2.3894881, 48.8526340 2.3885654, 48.8354329 2.4314376, 48.8250001 2.3885505, 48.8211687 2.3786713, 48.8202354 2.3234198, 48.8273026 2.3137753, 48.8321419 2.3413424, 48.8314413 2.3409219, 48.8332267 2.3368964, 48.8330200 2.3329456, 48.8331702 2.3326392, 48.8398137 2.3124499, 48.8387859 2.3504803, 48.8387241 2.3502199, 48.8398577 2.3474231, 48.8182194 2.3532369, 48.8176870 2.3444409, 48.8162232 2.3442349, 48.8163362 2.3406043, 48.8460504 2.3085941, 48.8525976 2.3324258, 48.8525749 2.3316556, 48.8516359 2.3307926, 48.8533286 2.3346314, 48.8528637 2.3346429, 48.8478855 2.3676795, 48.8167450 2.3551427, 48.8212529 2.3213669, 48.8823390 2.3402606, 48.8742044 2.3259209, 48.8472243 2.3185062, 48.8841355 2.3287497, 48.8889153 2.3930360, 48.8882804 2.3908204, 48.8860526 2.3426933, 48.8826497 2.3364419, 48.8346575 2.3330609, 48.8181616 2.3296906, 48.8848341 2.3250170, 48.8514886 2.3986829, 48.8549220 2.3872314, 48.8543661 2.3848507, 48.8538830 2.3825811, 48.8504943 2.3832077, 48.8503080 2.3839716, 48.8499521 2.3844522, 48.8504791 2.3876698, 48.8492760 2.3949290, 48.8574923 2.3804674, 48.8564633 2.3790389, 48.8525384 2.3807630, 48.8796218 2.3265596, 48.8779635 2.3272883, 48.8781948 2.3299908, 48.8767294 2.3305305, 48.8765720 2.3325312, 48.8768744 2.3327773, 48.8777601 2.3273644, 48.8741098 2.3268289, 48.8747962 2.3265054, 48.8754796 2.3249611, 48.8742093 2.3255963, 48.8813849 2.3314972, 48.8751600 2.3319950, 48.8605695 2.4368663, 48.8693736 2.3204383, 48.8691297 2.3202320, 48.8698925 2.3226128, 48.8691755 2.3245526, 48.8690381 2.3244370, 48.8682809 2.3089380, 48.8675830 2.3075899, 48.8668994 2.3066488, 48.8662025 2.3081844, 48.8649899 2.3027111, 48.8652497 2.3101782, 48.8668521 2.3157882, 48.8672033 2.3175552, 48.8672307 2.3169458, 48.8189432 2.3244643, 48.8181334 2.3302614, 48.8720928 2.3297590, 48.8728662 2.3283943, 48.8729832 2.3294159, 48.8510874 2.3007761, 48.8300837 2.3230365, 48.8296810 2.3218792, 48.8296720 2.3219044, 48.8295085 2.3227327, 48.8297359 2.3228829, 48.8630061 2.3625592, 48.8628927 2.3617428, 48.8198243 2.3386394, 48.8189960 2.3382666, 48.8142814 2.3410360, 48.8528282 2.4062488, 48.8617353 2.4310729, 48.8535709 2.4057993, 48.8532189 2.4059066, 48.8570643 2.4044749, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8474511 2.3483430, 48.8572672 2.4160273, 48.8583893 2.4147064, 48.8532082 2.4034787, 48.8521024 2.4034631, 48.8522256 2.4039240, 48.8525358 2.4040103, 48.8520446 2.4018024, 48.8517989 2.4013336, 48.8513195 2.3984311, 48.8513939 2.3984124, 48.8514276 2.3983132, 48.8516489 2.3984431, 48.8529986 2.3973185, 48.8533079 2.3971045, 48.8538176 2.3967148, 48.8539232 2.3938833, 48.8537772 2.3960030, 48.8542199 2.3960813, 48.8547572 2.3940413, 48.8553405 2.3950264, 48.8672258 2.3079158, 48.8332144 2.3333365, 48.8375393 2.3360135, 48.8402279 2.3373018, 48.8838862 2.3277689, 48.8849265 2.3336510, 48.8861318 2.3340926, 48.8892891 2.3930976, 48.8880361 2.3910565, 48.8518792 2.3487076, 48.8427433 2.3125629, 48.8405803 2.3153009, 48.8411229 2.3744020, 48.8575055 2.4348839, 48.8573006 2.4349186, 48.8535844 2.4342564, 48.8547894 2.4359043, 48.8553838 2.4327661, 48.8556487 2.4310475, 48.8564412 2.4331210, 48.8541098 2.4311814, 48.8540737 2.4317427, 48.8540666 2.4317775, 48.8542034 2.4314571, 48.8529390 2.4303874, 48.8524727 2.4347296, 48.8572619 2.4331507, 48.8575091 2.4334478, 48.8530468 2.4262525, 48.8515893 2.4297267, 48.8489798 2.4265183, 48.8506149 2.4262653, 48.8540380 2.4258844, 48.8581334 2.4372472, 48.8586127 2.4371331, 48.8586961 2.4368858, 48.8584141 2.4368718, 48.8620035 2.3484170, 48.8621883 2.3485126, 48.8172559 2.3274565, 48.8651078 2.3744344, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8696045 2.3711651, 48.8697201 2.3714649, 48.8695951 2.3715600, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8663599 2.3735117, 48.8660888 2.3735141, 48.8649570 2.3752834, 48.8653000 2.3752307, 48.8653041 2.3760609, 48.8679081 2.3779048, 48.8642583 2.3781838, 48.8658521 2.3778040, 48.8658893 2.3773900, 48.8672490 2.3760970, 48.8671899 2.3758377, 48.8672858 2.3755373, 48.8398102 2.3636157, 48.8713839 2.3723624, 48.8717635 2.3722590, 48.8720555 2.3717928, 48.8725878 2.3713798, 48.8734747 2.3704890, 48.8743760 2.3738893, 48.8741515 2.3743018, 48.8747572 2.3721336, 48.8754558 2.3702131, 48.8756416 2.3688091, 48.8761391 2.3683073, 48.8750213 2.3693259, 48.8740565 2.3704295, 48.8761685 2.3706316, 48.8767824 2.3701809, 48.8775727 2.3697840, 48.8775235 2.3696933, 48.8762486 2.3684489, 48.8766895 2.3672800, 48.8793418 2.3684468, 48.8774951 2.3660254, 48.8761335 2.3680786, 48.8755898 2.3677238, 48.8750608 2.3672145, 48.8746849 2.3665197, 48.8736428 2.3646883, 48.8735860 2.3650243, 48.8734003 2.3641075, 48.8727632 2.3665793, 48.8718184 2.3654608, 48.8718713 2.3655305, 48.8717399 2.3675792, 48.8718241 2.3676242, 48.8719097 2.3674864, 48.8710868 2.3661930, 48.8714321 2.3669323, 48.8715032 2.3674435, 48.8715550 2.3681089, 48.8722806 2.3695753, 48.8700477 2.3689483, 48.8696638 2.3693259, 48.8713012 2.3699655, 48.8712614 2.3699654, 48.8710595 2.3701442, 48.8706915 2.3704032, 48.8701426 2.3706965, 48.8699145 2.3712122, 48.8698774 2.3708946, 48.8718449 2.3766037, 48.8720215 2.3765754, 48.8717641 2.3760651, 48.8715040 2.3760459, 48.8705991 2.3727035, 48.8700440 2.3716713, 48.8690397 2.3729073, 48.8686239 2.3728982, 48.8687232 2.3723495, 48.8683203 2.3721799, 48.8693186 2.3741284, 48.8683112 2.3698916, 48.8680322 2.3727849, 48.8682174 2.3737692, 48.8688510 2.3761882, 48.8679859 2.3782324, 48.8663091 2.3713917, 48.8664224 2.3652804, 48.8663460 2.3644859, 48.8673441 2.3627982, 48.8674473 2.3626414, 48.8675118 2.3625438, 48.8676022 2.3623822, 48.8677049 2.3622367, 48.8677682 2.3620989, 48.8681927 2.3630580, 48.8667141 2.3660388, 48.8667966 2.3673783, 48.8661992 2.3687088, 48.8659451 2.3700477, 48.8652993 2.3734818, 48.8654797 2.3747464, 48.8653692 2.3748561, 48.8647763 2.3762361, 48.8651925 2.3758399, 48.8648400 2.3777430, 48.8647413 2.3853844, 48.8629074 2.3860380, 48.8631317 2.3869263, 48.8641296 2.3859610, 48.8639802 2.3867074, 48.8640310 2.3863813, 48.8641439 2.3864843, 48.8642946 2.3862990, 48.8650417 2.3850337, 48.8652815 2.3850044, 48.8661032 2.3840553, 48.8661736 2.3841890, 48.8662357 2.3840946, 48.8663260 2.3839916, 48.8665492 2.3839008, 48.8668485 2.3837377, 48.8670348 2.3836519, 48.8672012 2.3825153, 48.8670092 2.3824038, 48.8666938 2.3828675, 48.8667481 2.3822535, 48.8666129 2.3816919, 48.8667100 2.3812708, 48.8665041 2.3812744, 48.8666422 2.3812622, 48.8664122 2.3800058, 48.8661582 2.3798761, 48.8661982 2.3800386, 48.8662789 2.3801569, 48.8656428 2.3768934, 48.8656858 2.3776485, 48.8656937 2.3771252, 48.8650645 2.3775756, 48.8657840 2.3770479, 48.8659421 2.3769020, 48.8661373 2.3770649, 48.8661962 2.3766789, 48.8668329 2.3764659, 48.8669356 2.3763865, 48.8177134 2.3731023, 48.8176237 2.3728869, 48.8179174 2.3755720, 48.8183576 2.3751482, 48.8177851 2.3739963, 48.8442805 2.3494077, 48.8460777 2.3542886, 48.8680369 2.3754008, 48.8681892 2.3749537, 48.8676415 2.3754429, 48.8674450 2.3750281, 48.8674891 2.3754429, 48.8689288 2.3802494, 48.8687538 2.3799490, 48.8686917 2.3798288, 48.8686005 2.3800123, 48.8681319 2.3792398, 48.8679866 2.3783803, 48.8680763 2.3782066, 48.8679182 2.3781466, 48.8676267 2.3787920, 48.8445017 2.3247331, 48.8598744 2.3476273, 48.8514969 2.3476094, 48.8463542 2.3546880, 48.8518241 2.3377078, 48.8719922 2.3643316, 48.8770310 2.3879568, 48.8680340 2.3867035, 48.8645121 2.3683814, 48.8641829 2.3687115, 48.8433627 2.3377702, 48.8343356 2.3292251, 48.8378680 2.3520336, 48.8324374 2.3619273, 48.8325468 2.3622967, 48.8315083 2.3567419, 48.8319231 2.3546881, 48.8317268 2.3568922, 48.8321515 2.3564215, 48.8318807 2.3568124, 48.8309612 2.3573410, 48.8313024 2.3580825, 48.8306130 2.3545699, 48.8302998 2.3547708, 48.8299156 2.3543416, 48.8284954 2.3531059, 48.8262955 2.3569037, 48.8259948 2.3570144, 48.8491407 2.3785568, 48.8465318 2.3790521, 48.8491774 2.3781154, 48.8455640 2.3806988, 48.8463307 2.3795208, 48.8468005 2.3839097, 48.8467150 2.3839386, 48.8454696 2.3871278, 48.8459092 2.3777264, 48.8515628 2.3840327, 48.8601187 2.3790729, 48.8483419 2.3941371, 48.8505980 2.3756315, 48.8479594 2.3771753, 48.8486594 2.3777375, 48.8480388 2.3805151, 48.8468326 2.3790947, 48.8489783 2.3772212, 48.8494401 2.3773810, 48.8494663 2.3769237, 48.8468335 2.3820503, 48.8532825 2.3792329, 48.8508436 2.3784137, 48.8509991 2.3778569, 48.8511896 2.3757690, 48.8497953 2.3742831, 48.8494366 2.3743781, 48.8484434 2.3726021, 48.8490503 2.3712312, 48.8477004 2.3736634, 48.8500663 2.3739032, 48.8447706 2.3779554, 48.8466461 2.3799067, 48.8451286 2.3836536, 48.8446020 2.3775270, 48.8460766 2.3773448, 48.8541173 2.3674450, 48.8533975 2.3591296, 48.8497380 2.3851348, 48.8500278 2.3840780, 48.8501150 2.3831061, 48.8500450 2.3839320, 48.8502585 2.3814712, 48.8482880 2.3932662, 48.8522803 2.3779953, 48.8516730 2.3781826, 48.8516520 2.3783332, 48.8504188 2.3794482, 48.8465865 2.3816584, 48.8466308 2.3820511, 48.8615762 2.3523794, 48.8622962 2.3522413, 48.8504878 2.3821280, 48.8499708 2.3841427, 48.8471042 2.3871676, 48.8471871 2.3870859, 48.8505497 2.3846148, 48.8505497 2.3842151, 48.8722818 2.3462050, 48.8739244 2.3454201, 48.8645230 2.3550690, 48.8627431 2.3531218, 48.8628573 2.3522080, 48.8613333 2.3538187, 48.8624613 2.3594619, 48.8653692 2.3620602, 48.8650045 2.3627574, 48.8651127 2.3625685, 48.8489304 2.3762840, 48.8489281 2.3761561, 48.8462285 2.3784270, 48.8462717 2.3788092, 48.8462620 2.3786885, 48.8453283 2.3813011, 48.8446037 2.3833732, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8501765 2.3792170, 48.8507286 2.3779068, 48.8509545 2.3780414, 48.8502726 2.3811628, 48.8498437 2.3844726, 48.8529864 2.3827830, 48.8492104 2.3895170, 48.8477398 2.3888781, 48.8478628 2.3928249, 48.8476122 2.3930340, 48.8441929 2.3885529, 48.8424054 2.3895404, 48.8420168 2.3896839, 48.8830400 2.3466469, 48.8826393 2.3448094, 48.8821036 2.3462700, 48.8806743 2.3516188, 48.8803621 2.3527476, 48.8808367 2.3523965, 48.8767124 2.4051857, 48.8754784 2.4059676, 48.8756268 2.3994827, 48.8805125 2.3980130, 48.8818468 2.4029049, 48.8778919 2.3959017, 48.8786295 2.4120287, 48.8787438 2.4166396, 48.8823605 2.4189638, 48.8817509 2.4206632, 48.8753427 2.4241351, 48.8738114 2.4278172, 48.8705682 2.4241651, 48.8684736 2.4178051, 48.8731764 2.4132389, 48.8733436 2.4105571, 48.8745312 2.4152731, 48.8277658 2.4184354, 48.8328402 2.4028704, 48.8294130 2.4015885, 48.8312754 2.3988833, 48.8254543 2.4099127, 48.8470593 2.4352005, 48.8464464 2.4335921, 48.8461449 2.4297430, 48.8472181 2.4311420, 48.8475005 2.4314767, 48.8475683 2.4314939, 48.8474754 2.4333566, 48.8475422 2.4332316, 48.8478620 2.4257604, 48.8461955 2.4262494, 48.8479545 2.4245283, 48.8486323 2.4231722, 48.8482037 2.4230408, 48.8480541 2.4217350, 48.8486810 2.4264213, 48.8488480 2.4263142, 48.8448592 2.4292748, 48.8438505 2.4310874, 48.8437295 2.4312317, 48.8497167 2.4355576, 48.8487565 2.4308541, 48.8487420 2.4316492, 48.8464257 2.4312063, 48.8528975 2.4241718, 48.8487774 2.3429251, 48.8543046 2.3285742, 48.8520050 2.3739783, 48.8456295 2.4033753, 48.8663147 2.3719752, 48.8769811 2.4048559, 48.8749761 2.4031141, 48.8777348 2.3959932, 48.8758342 2.4011315, 48.8703695 2.3665503, 48.8748068 2.3638809, 48.8748801 2.3637951, 48.8753882 2.3643616, 48.8466750 2.4313535, 48.8463023 2.4206617, 48.8366376 2.3507046, 48.8367310 2.3500387, 48.8367142 2.3522749, 48.8311541 2.3565888, 48.8833656 2.3710732, 48.8831646 2.3720227, 48.8833551 2.3721300, 48.8836055 2.3731171, 48.8836902 2.3740022, 48.8840147 2.3752146, 48.8844169 2.3762767, 48.8837907 2.3764722, 48.8849729 2.3784198, 48.8850377 2.3791735, 48.8851153 2.3790072, 48.8854643 2.3799694, 48.8855033 2.3809706, 48.8856762 2.3815928, 48.8865051 2.3847954, 48.8873411 2.3873650, 48.8876230 2.3883824, 48.8878308 2.3891184, 48.8889239 2.3944490, 48.8330843 2.3545682, 48.8332943 2.3549487, 48.8329033 2.3622084, 48.8330139 2.3615547, 48.8372429 2.3177892, 48.8710907 2.3582585, 48.8350396 2.3318427, 48.8347711 2.3321841, 48.8332031 2.3317979, 48.8303495 2.3339288, 48.8613834 2.3525372, 48.8635331 2.3476629, 48.8640524 2.3476114, 48.8392766 2.3208448, 48.8329640 2.3315905, 48.8330519 2.3316747, 48.8644935 2.3509011, 48.8300228 2.3559482, 48.8296427 2.3513003, 48.8318964 2.3563061, 48.8318054 2.3563929, 48.8317279 2.3564905, 48.8316149 2.3566107, 48.8314963 2.3566536, 48.8827251 2.3816969, 48.8617066 2.3445035, 48.8612681 2.3493661, 48.8624112 2.3480599, 48.8617033 2.3441258, 48.8599405 2.3466434, 48.8589421 2.3475982, 48.8588348 2.3518897, 48.8572632 2.3514945, 48.8561847 2.3532145, 48.8655904 2.3564268, 48.8661173 2.3596343, 48.8683793 2.3679055, 48.8664719 2.3693573, 48.8658257 2.3693390, 48.8634351 2.3712286, 48.8633521 2.3710595, 48.8616617 2.3727419, 48.8600810 2.3710999, 48.8569493 2.3706558, 48.8538990 2.3697241, 48.8663247 2.3710849, 48.8644965 2.3730964, 48.8632938 2.3872069, 48.8664996 2.3830714, 48.8686598 2.3815066, 48.8711417 2.3782119, 48.8727055 2.3764695, 48.8725474 2.3766326, 48.8719039 2.3850869, 48.8701140 2.3966278, 48.8700610 2.3963739, 48.8706874 2.3989838, 48.8678503 2.4009656, 48.8653208 2.3990687, 48.8643044 2.3982089, 48.8653996 2.3977973, 48.8651813 2.3944221, 48.8665630 2.3915757, 48.8666928 2.3914298, 48.8662217 2.3895964, 48.8662129 2.3890609, 48.8649496 2.3880757, 48.8656935 2.3876189, 48.8694311 2.3950347, 48.8673252 2.3964509, 48.8672461 2.3965024, 48.8673873 2.3963565, 48.8712622 2.4039026, 48.8739080 2.3960132, 48.8737273 2.3960303, 48.8753136 2.3924598, 48.8754660 2.3929490, 48.8754434 2.3890467, 48.8739926 2.3894557, 48.8764991 2.3923568, 48.8743201 2.3860568, 48.8750539 2.3826407, 48.8764595 2.3793277, 48.8761604 2.3801173, 48.8761999 2.3804521, 48.8777890 2.3812354, 48.8779272 2.3814563, 48.8778573 2.3813972, 48.8796002 2.3888045, 48.8777466 2.3856191, 48.8774643 2.3860740, 48.8775377 2.3857736, 48.8819518 2.3925799, 48.8791126 2.3785037, 48.8797928 2.3748927, 48.8814004 2.3733460, 48.8827127 2.3746701, 48.8826601 2.3752883, 48.8827392 2.3752196, 48.8847298 2.3801436, 48.8862604 2.3774382, 48.8862942 2.3825537, 48.8862880 2.3831916, 48.8862492 2.3830897, 48.8862210 2.3829609, 48.8864942 2.3848741, 48.8831878 2.3714050, 48.8891556 2.3835322, 48.8904705 2.3869396, 48.8771673 2.3743225, 48.8731252 2.3798302, 48.8638482 2.3754413, 48.8640393 2.3755646, 48.8645976 2.3751492, 48.8621139 2.3771509, 48.8588447 2.3789316, 48.8612874 2.3810745, 48.8579887 2.3818494, 48.8586573 2.3836132, 48.8586656 2.3839098, 48.8586939 2.3840128, 48.8587510 2.3841928, 48.8570456 2.3728609, 48.8645209 2.3464137, 48.8637982 2.3425857, 48.8585540 2.3586704, 48.8645325 2.3616659, 48.8625383 2.3596046, 48.8616570 2.3566882, 48.8621158 2.3649459, 48.8580787 2.3502718, 48.8594346 2.3558245, 48.8691099 2.3622572, 48.8685184 2.3599117, 48.8707796 2.3431008, 48.8758064 2.3472929, 48.8661857 2.3449657, 48.8724202 2.3554241, 48.8212165 2.3424964, 48.8191551 2.3383937, 48.8197575 2.3387369, 48.8582719 2.3677365, 48.8613324 2.3672902, 48.8644708 2.3660442, 48.8633741 2.3663922, 48.8657197 2.3652646, 48.8645282 2.3695189, 48.8678878 2.3727490, 48.8691580 2.3718028, 48.8727830 2.3700050, 48.8740363 2.3624556, 48.8716766 2.3645864, 48.8706620 2.3611950, 48.8709568 2.3611877, 48.8707002 2.3614113, 48.8734580 2.3584123, 48.8732312 2.3586224, 48.8732053 2.3585526, 48.8750670 2.3596454, 48.8756963 2.3594622, 48.8761479 2.3608784, 48.8767569 2.3560938, 48.8755329 2.3562073, 48.8720809 2.3576446, 48.8686256 2.3557047, 48.8696775 2.3543727, 48.8610006 2.3534840, 48.8631013 2.3527609, 48.8571905 2.3539864, 48.8599108 2.3609341, 48.8581811 2.3646296, 48.8557177 2.3579066, 48.8791705 2.3859215, 48.8278860 2.3709325, 48.8630582 2.3414297, 48.8146542 2.3918514, 48.8681798 2.3714175, 48.8683391 2.3714311, 48.8722393 2.3651243, 48.8783172 2.4150868, 48.8683233 2.3660938, 48.8275755 2.3532310, 48.8245681 2.3401310, 48.8411613 2.3524312, 48.8427458 2.3524509, 48.8451570 2.4339974, 48.8758235 2.3834309, 48.8748569 2.3825637, 48.8753656 2.3823741, 48.8738274 2.3848673, 48.8743779 2.3850894, 48.8755934 2.3832701, 48.8756530 2.3832155, 48.8747784 2.3848811, 48.8482774 2.3428253, 48.8793536 2.3584016, 48.8784345 2.3578878, 48.8783181 2.3578049, 48.8783277 2.3564922, 48.8795963 2.3570245, 48.8716304 2.3858800, 48.8497477 2.3435781, 48.8502811 2.3449753, 48.8489015 2.3412990, 48.8474669 2.3424422, 48.8473878 2.3433434, 48.8391823 2.3706120, 48.8685757 2.4338571, 48.8638367 2.3749471, 48.8725482 2.3581799, 48.8778514 2.3157284, 48.8657219 2.3739666, 48.8654326 2.3745496, 48.8581077 2.3801470, 48.8224407 2.4125856, 48.8200888 2.4152531, 48.8217832 2.4141390, 48.8215566 2.4133556, 48.8214215 2.4136841, 48.8239534 2.3165091, 48.8245932 2.3184383, 48.8243515 2.3193929, 48.8839948 2.3588579, 48.8708665 2.3612821, 48.8710381 2.3610667, 48.8663456 2.4118041, 48.8668186 2.4119143, 48.8673098 2.4121289, 48.8683117 2.4115585, 48.8647712 2.4045352, 48.8667000 2.4069400, 48.8643044 2.4095653, 48.8227462 2.3249989, 48.8470909 2.4366979, 48.8451391 2.4342025, 48.8627754 2.4202931, 48.8582023 2.4176462, 48.8579293 2.4178018, 48.8494965 2.3428666, 48.8369621 2.3916125, 48.8363262 2.3866379, 48.8824469 2.4148265, 48.8427362 2.3297851, 48.8425183 2.3350723, 48.8440936 2.3330640, 48.8851298 2.3208036, 48.8857055 2.3215074, 48.8839773 2.3197792, 48.8742269 2.3755468, 48.8664641 2.3722308, 48.8742514 2.3675121, 48.8914177 2.4053946, 48.8361883 2.4001628, 48.8374501 2.3974695, 48.8361733 2.3992550, 48.8375744 2.3973236, 48.8357501 2.3998388, 48.8361649 2.3976709, 48.8322048 2.3854989, 48.8365312 2.3932203, 48.8351057 2.3855326, 48.8332585 2.3858128, 48.8323315 2.3862257, 48.8361823 2.3989988, 48.8355057 2.3978609, 48.8347892 2.4008341, 48.8366987 2.3918047, 48.8375906 2.3974847, 48.8391490 2.3938241, 48.8381280 2.3966112, 48.8398751 2.3939229, 48.8403103 2.3946599, 48.8394177 2.3984809, 48.8392370 2.3959499, 48.8390556 2.3959183, 48.8385750 2.3962263, 48.8361512 2.3875057, 48.8354853 2.3854944, 48.8377492 2.3970006, 48.8375405 2.4016838, 48.8584087 2.4363958, 48.8646486 2.4083438, 48.8644029 2.4080476, 48.8463152 2.4205352, 48.8647135 2.4083257, 48.8645193 2.4105979, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8636820 2.4079099, 48.8646806 2.4060380, 48.8467254 2.4174208, 48.8879678 2.3259712, 48.8623679 2.4111234, 48.8615965 2.4057488, 48.8626997 2.4034148, 48.8350620 2.4078967, 48.8354775 2.4060799, 48.8360911 2.4057236, 48.8352503 2.3857030, 48.8400454 2.3808140, 48.8399906 2.3811474, 48.8347357 2.3876562, 48.8393156 2.3801287, 48.8398654 2.3799031, 48.8401087 2.3804879, 48.8396394 2.3801031, 48.8394044 2.3805434, 48.8393185 2.3806604, 48.8337437 2.3886482, 48.8375435 2.3824463, 48.8340292 2.3977888, 48.8374325 2.3912706, 48.8192778 2.3740096, 48.8157795 2.3678212, 48.8206897 2.3639393, 48.8420158 2.3412105, 48.8465305 2.3431266, 48.8384599 2.3406020, 48.8395192 2.3610330, 48.8798495 2.4167430, 48.8827568 2.4191077, 48.8801655 2.4233038, 48.8785177 2.4146019, 48.8447051 2.3110485, 48.8418578 2.3031404, 48.8891565 2.3974249, 48.8884623 2.4082739, 48.8853628 2.4039648, 48.8863445 2.4073385, 48.8843356 2.4082993, 48.8680246 2.4170870, 48.8697950 2.4160906, 48.8513851 2.3427515, 48.8427677 2.3244722, 48.8411388 2.3244182, 48.8394501 2.3295825, 48.8368320 2.3312845, 48.8350879 2.3415777, 48.8402870 2.3794757, 48.8350103 2.3759945, 48.8376967 2.3825388, 48.8337873 2.3947302, 48.8323342 2.4046376, 48.8570745 2.3418077, 48.8189430 2.3746452, 48.8309193 2.3795654, 48.8305362 2.3780147, 48.8269199 2.3653028, 48.8268477 2.3647861, 48.8268904 2.3650970, 48.8267972 2.3644166, 48.8268013 2.3644366, 48.8266395 2.3631137, 48.8265936 2.3638347, 48.8267042 2.3418398, 48.8266959 2.3418366, 48.8313314 2.3159690, 48.8313237 2.3160082, 48.8276961 2.3323037, 48.8492197 2.4218652, 48.8526158 2.3471643, 48.8506752 2.3329343, 48.8536884 2.3438503, 48.8465209 2.3169152, 48.8223603 2.3376975, 48.8333496 2.3122320, 48.8468908 2.3696558, 48.8422395 2.3861184, 48.8463028 2.3793259, 48.8399294 2.4045970, 48.8448378 2.4051177, 48.8474520 2.4048594, 48.8473395 2.4060719, 48.8354938 2.4305358, 48.8375477 2.4255552, 48.8346793 2.4193483, 48.8684023 2.3502078, 48.8662853 2.3197532, 48.8659622 2.3186038, 48.8679910 2.3372848, 48.8554435 2.3595073, 48.8474970 2.3970587, 48.8372431 2.4025512, 48.8372480 2.4035465, 48.8465303 2.3834704, 48.8463112 2.3834371, 48.8261455 2.3412338, 48.8257113 2.3415668, 48.8537247 2.3438855, 48.8532253 2.3431503, 48.8529019 2.3430541, 48.8528829 2.3425509, 48.8531182 2.3429777, 48.8522343 2.3401016, 48.8502442 2.3485713, 48.8519093 2.3341886, 48.8844724 2.3214773, 48.8421330 2.3862159, 48.8417493 2.3866178, 48.8426501 2.3861170, 48.8410791 2.3878034, 48.8411331 2.3881993, 48.8412077 2.3889160, 48.8510126 2.4018663, 48.8364073 2.3595567, 48.8708308 2.4178082, 48.8325651 2.3114089, 48.8325568 2.3113862, 48.8326373 2.3560872, 48.8326306 2.3560783, 48.8397551 2.3618303, 48.8397407 2.3618144, 48.8430740 2.3643198, 48.8430681 2.3643136, 48.8504321 2.3997456, 48.8504192 2.3990241, 48.8518769 2.4008958, 48.8396241 2.4024373, 48.8517859 2.4015820, 48.8477533 2.3981316, 48.8485668 2.3983079, 48.8512318 2.4017230, 48.8374817 2.3437947, 48.8309119 2.3434856, 48.8284622 2.3428564, 48.8548336 2.3455606, 48.8552512 2.3476157, 48.8553803 2.3476867, 48.8554064 2.3475533, 48.8552816 2.3474675, 48.8316089 2.3555656, 48.8319371 2.3141252, 48.8327575 2.3159370, 48.8317286 2.3137879, 48.8318327 2.3145828, 48.8315258 2.3151731, 48.8315542 2.3147243, 48.8319092 2.3145268, 48.8327180 2.3158597, 48.8327519 2.3161172, 48.8329370 2.3161042, 48.8330455 2.3162946, 48.8332491 2.3170528, 48.8332152 2.3169841, 48.8333903 2.3171214, 48.8340458 2.3163660, 48.8338366 2.3181857, 48.8798940 2.4164508, 48.8362254 2.3224012, 48.8363089 2.3225218, 48.8364089 2.3224024, 48.8324709 2.3200140, 48.8321640 2.3202607, 48.8320698 2.3204689, 48.8324257 2.3207007, 48.8324031 2.3208037, 48.8323749 2.3209067, 48.8514297 2.3722999, 48.8544625 2.3823250, 48.8507756 2.3816053, 48.8558275 2.3755799, 48.8615019 2.3742714, 48.8603556 2.3761167, 48.8611405 2.3748465, 48.8602505 2.3758377, 48.8591024 2.3760107, 48.8491930 2.3705959, 48.8507729 2.3759001, 48.8464081 2.3717860, 48.8840850 2.3374869, 48.8832613 2.3264678, 48.8833347 2.3264334, 48.8833178 2.3262875, 48.8832839 2.3261502, 48.8595820 2.3876147, 48.8592458 2.3868272, 48.8583848 2.3904386, 48.8605667 2.3751425, 48.8614987 2.3729851, 48.8615468 2.3727192, 48.8867306 2.3464815, 48.8663999 2.3328148, 48.8346976 2.3971134, 48.8388270 2.3896712, 48.8390942 2.3895101, 48.8367172 2.3924117, 48.8366661 2.3926576, 48.8366787 2.3933514, 48.8362289 2.3950798, 48.8490892 2.3707721, 48.8603910 2.3760420, 48.8611991 2.3750738, 48.8620210 2.3732276, 48.8637354 2.3705262, 48.8649181 2.3685344, 48.8327416 2.3788209, 48.8835907 2.3332827, 48.8748125 2.3251922, 48.8673311 2.3076664, 48.8390731 2.4174218, 48.8361576 2.4188383, 48.8437046 2.4178928, 48.8453202 2.4234778, 48.8227507 2.4056073, 48.8203310 2.4085683, 48.8219082 2.4130009, 48.8238413 2.4099086, 48.8371199 2.3900909, 48.8561113 2.3406430, 48.8428146 2.3128644, 48.8428238 2.3126866, 48.8687535 2.4330161, 48.8576592 2.4373995, 48.8353914 2.4079102, 48.8199090 2.3593459, 48.8296212 2.3650676, 48.8309699 2.3641295, 48.8293299 2.3654239, 48.8291983 2.3649157, 48.8844475 2.3427325, 48.8833472 2.3495749, 48.8822817 2.3504868, 48.8481405 2.4285935, 48.8285441 2.3803051, 48.8284008 2.3842784, 48.8827033 2.3434430, 48.8822885 2.3414974, 48.8820176 2.3394460, 48.8817974 2.3532647, 48.8771098 2.3551079, 48.8477369 2.3279061, 48.8477318 2.3279086, 48.8252614 2.3574047, 48.8249557 2.3571699, 48.8258127 2.3576619, 48.8217484 2.4144762, 48.8883776 2.3495011, 48.8866559 2.3493852, 48.8192641 2.3597593, 48.8214983 2.3589309, 48.8440901 2.3896786, 48.8432477 2.3892875, 48.8450283 2.3826090, 48.8453967 2.3826032, 48.8463781 2.3796937, 48.8466733 2.3823365, 48.8470342 2.3868537, 48.8469567 2.3869061, 48.8436555 2.3879252, 48.8465001 2.3808215, 48.8466891 2.3824558, 48.8467101 2.3827554, 48.8501888 2.3787984, 48.8508333 2.3797344, 48.8505704 2.3800670, 48.8506115 2.3813881, 48.8494049 2.3783024, 48.8481949 2.3766544, 48.8482849 2.3767134, 48.8502082 2.3780865, 48.8498295 2.3739314, 48.8456109 2.3933509, 48.8410573 2.3873134, 48.8922817 2.3443080, 48.8700107 2.4026455, 48.8896848 2.3792648, 48.8538990 2.3696060, 48.8757902 2.3561915, 48.8745856 2.3876774, 48.8745188 2.3863253, 48.8791100 2.3541841, 48.8791806 2.3542322, 48.8796019 2.3544582, 48.8844476 2.3388182, 48.8872379 2.3326374, 48.8875505 2.3343018, 48.8102599 2.3581802, 48.8544166 2.3926353, 48.8369085 2.4021711, 48.8370521 2.4018326, 48.8345868 2.4005135, 48.8344550 2.4007736, 48.8440435 2.4057776, 48.8436827 2.4056942, 48.8444753 2.4055101, 48.8396803 2.3945209, 48.8400366 2.3946968, 48.8424148 2.4052197, 48.8397862 2.3968956, 48.8368227 2.4037506, 48.8367633 2.4038970, 48.8411703 2.4049568, 48.8368603 2.3917906, 48.8393074 2.3970077, 48.8241006 2.3358465, 48.8843283 2.3861616, 48.8743920 2.3574266, 48.8482696 2.3715140, 48.8844757 2.3382719, 48.8859435 2.3414431, 48.8343080 2.3572209, 48.8492375 2.3711135, 48.8568075 2.3541182, 48.8503975 2.3429508, 48.8602512 2.3502694, 48.8546459 2.3450877, 48.8478582 2.3735429, 48.8483197 2.3742134, 48.8470790 2.3740473, 48.8492375 2.3751897, 48.8448799 2.3727316, 48.8506309 2.3733225, 48.8493959 2.3750250, 48.8495128 2.3751092, 48.8462275 2.3737111, 48.8466535 2.3736929, 48.8484928 2.3740738, 48.8469009 2.3721664, 48.8479197 2.3716692, 48.8461048 2.3740873, 48.8458407 2.3720988, 48.8459184 2.3726478, 48.8484256 2.3742938, 48.8491474 2.3746104, 48.8471402 2.3725177, 48.8490161 2.3747617, 48.8464256 2.3723704, 48.8460157 2.3736299, 48.8476475 2.3732272, 48.8465693 2.3723121, 48.8474806 2.3718625, 48.8470772 2.3727405, 48.8461202 2.3724487, 48.8532023 2.3707747, 48.8539688 2.3699642, 48.8475609 2.3752480, 48.8458613 2.3547220, 48.8462262 2.3548763, 48.8462050 2.3548474, 48.8447140 2.3479947, 48.8445578 2.3478015, 48.8446768 2.3494263, 48.8397766 2.3563951, 48.8439693 2.3547644, 48.8439889 2.3550231, 48.8400361 2.3581380, 48.8403571 2.3507117, 48.8469814 2.3726034, 48.8489233 2.3748786, 48.8460336 2.3725445, 48.8459741 2.3725698, 48.8459507 2.3730386, 48.8458244 2.3719271, 48.8464620 2.3718673, 48.8477030 2.3740290, 48.8473830 2.3423380, 48.8482524 2.3418405, 48.8483010 2.3417712, 48.8472783 2.3856965, 48.8516369 2.3837296, 48.8504806 2.3788351, 48.8447794 2.3825189, 48.8516180 2.4015641, 48.8539136 2.4024675, 48.8539293 2.4000508, 48.8541564 2.4000911, 48.8304077 2.3343316, 48.8478209 2.3770331, 48.8497251 2.3785877, 48.8501253 2.3762844, 48.8477171 2.3873421, 48.8493623 2.3902888, 48.8489954 2.3908138, 48.8497475 2.3788828, 48.8468146 2.3805349, 48.8511987 2.3837123, 48.8442266 2.3492264, 48.8459544 2.3720668, 48.8843315 2.3304472, 48.8310200 2.3347804, 48.8274915 2.3316869, 48.8252128 2.3624715, 48.8251313 2.3623868, 48.8248667 2.3622623, 48.8246283 2.3669508, 48.8281581 2.3663065, 48.8199327 2.3650855, 48.8693591 2.3567215, 48.8687850 2.3594780, 48.8777755 2.4052173, 48.8863208 2.3451631, 48.8864916 2.3449490, 48.8865096 2.3452428, 48.8490479 2.3745263, 48.8486432 2.3745061, 48.8471159 2.3736501, 48.8462167 2.3740567, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8462033 2.3752807, 48.8462167 2.3753959, 48.8460166 2.3767039, 48.8460708 2.3770013, 48.8458957 2.3755864, 48.8458632 2.3752950, 48.8458252 2.3749543, 48.8458024 2.3747494, 48.8457782 2.3745532, 48.8456771 2.3745689, 48.8461276 2.3743237, 48.8465674 2.3746137, 48.8467410 2.3734830, 48.8469550 2.3732669, 48.8469247 2.3730534, 48.8466746 2.3729742, 48.8466393 2.3727596, 48.8470632 2.3766059, 48.8568469 2.3792392, 48.8569719 2.3793107, 48.8574421 2.3793069, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8471014 2.3715594, 48.8472565 2.3708817, 48.8471819 2.3707631, 48.8467280 2.3702882, 48.8467932 2.3690947, 48.8465554 2.3692393, 48.8463534 2.3689294, 48.8465229 2.3686904, 48.8463589 2.3683266, 48.8463083 2.3680521, 48.8460104 2.3669740, 48.8469932 2.3727161, 48.8467819 2.3725108, 48.8459580 2.3724556, 48.8454329 2.3684999, 48.8455779 2.3697051, 48.8456188 2.3700692, 48.8453198 2.3707747, 48.8453260 2.3706140, 48.8456688 2.3707898, 48.8457759 2.3715126, 48.8458427 2.3706835, 48.8457141 2.3704736, 48.8431185 2.3716816, 48.8274146 2.3319952, 48.8269211 2.3322906, 48.8267472 2.3324515, 48.8274542 2.3356985, 48.8260575 2.3569948, 48.8263182 2.3595211, 48.8286985 2.3607276, 48.8308958 2.3768610, 48.8269269 2.3666605, 48.8840058 2.3529245, 48.8374833 2.3535202, 48.8374935 2.3535342, 48.8379005 2.3555967, 48.8379182 2.3556557, 48.8392719 2.3386499, 48.8392465 2.3387222, 48.8382197 2.3418042, 48.8382351 2.3417326, 48.8515184 2.3695612, 48.8500437 2.3697078, 48.8503770 2.3164290, 48.8896403 2.3358780, 48.8717482 2.3408661, 48.8717354 2.3404728, 48.8531236 2.3680462, 48.8529971 2.3680045, 48.8502113 2.3668644, 48.8501724 2.3668483, 48.8500136 2.3667732, 48.8499590 2.3632112, 48.8513238 2.3624304, 48.8526693 2.3608308, 48.8836715 2.3491968, 48.8852026 2.3499755, 48.8852293 2.3471969, 48.8516794 2.3474841, 48.8752261 2.3252146, 48.8768733 2.3217840, 48.8778075 2.3226060, 48.8750824 2.3241658, 48.8756710 2.3261070, 48.8755523 2.3252222, 48.8752761 2.3255792, 48.8752120 2.3251191, 48.8750862 2.3247240, 48.8771445 2.3224363, 48.8756940 2.3269533, 48.8835297 2.3282798, 48.8842985 2.3268322, 48.8838538 2.3270648, 48.8831483 2.3273794, 48.8765103 2.3232267, 48.8795372 2.3214211, 48.8670106 2.4227092, 48.8453387 2.3377568, 48.8504481 2.3735499, 48.8498111 2.3438572, 48.8376830 2.3448082, 48.8516341 2.3471068, 48.8554611 2.3836770, 48.8905909 2.3820031, 48.8566083 2.3533348, 48.8471162 2.4365305, 48.8602357 2.3722066, 48.8474704 2.3718474, 48.8666829 2.3665357, 48.8663510 2.3672959, 48.8658303 2.3698488, 48.8663441 2.3693939, 48.8657851 2.3771616, 48.8665079 2.3800178, 48.8653617 2.3809810, 48.8760867 2.3599561, 48.8829095 2.3591741, 48.8834606 2.3606563, 48.8826329 2.3615224, 48.8854259 2.3538571, 48.8884161 2.3532369, 48.8841015 2.3597869, 48.8874152 2.3671866, 48.8853281 2.3720155, 48.8905441 2.3545731, 48.8902032 2.3626104, 48.8896626 2.3678766, 48.8830418 2.3799420, 48.8839897 2.3776750, 48.8839192 2.3777877, 48.8793674 2.3913866, 48.8570613 2.4225369, 48.8642121 2.3813367, 48.8549764 2.3705401, 48.8563547 2.3050003, 48.8491281 2.3756993, 48.8907340 2.3442268, 48.8482547 2.3739915, 48.8476489 2.3756562, 48.8505462 2.3785256, 48.8495764 2.3778022, 48.8488506 2.3771667, 48.8490151 2.3766595, 48.8493081 2.3747820, 48.8485986 2.3761016, 48.8483197 2.4205769, 48.8466357 2.3723850, 48.8805089 2.3247630, 48.8920861 2.3792943, 48.8922518 2.3794780, 48.8920861 2.3791828, 48.8919041 2.3801340, 48.8906427 2.3820001, 48.8909556 2.3819203, 48.8895378 2.3833861, 48.8795193 2.3372522, 48.8860003 2.3379474, 48.8871034 2.3395432, 48.8872913 2.3493292, 48.8849270 2.3525804, 48.8925222 2.3614454, 48.8681911 2.4172149, 48.8881990 2.3259122, 48.8881036 2.3258701, 48.8551549 2.3558324, 48.8670855 2.3530694, 48.8647563 2.3632147, 48.8775035 2.3271975, 48.8674231 2.3585861, 48.8535530 2.3577268, 48.8847020 2.3249240, 48.8574215 2.3681791, 48.8862612 2.3438540, 48.8548590 2.3685707, 48.8549249 2.3685762, 48.8533482 2.3683534, 48.8531999 2.3682676, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8585847 2.3032822, 48.8570811 2.3046405, 48.8567473 2.3041925, 48.8562200 2.3044115, 48.8560475 2.3045247, 48.8555290 2.3047711, 48.8555382 2.3054236, 48.8553164 2.3055412, 48.8551046 2.3056319, 48.8549906 2.3050099, 48.8547805 2.3051304, 48.8546797 2.3051724, 48.8549635 2.3057177, 48.8547343 2.3058060, 48.8544128 2.3063400, 48.8546400 2.3064825, 48.8546463 2.3053441, 48.8487705 2.3484391, 48.8488367 2.3472494, 48.8454096 2.3428012, 48.8473867 2.3183769, 48.8451686 2.3207087, 48.8759394 2.3585316, 48.8559133 2.3670811, 48.8522230 2.3849242, 48.8525692 2.3830882, 48.8510651 2.3842956, 48.8525445 2.3847726, 48.8463782 2.3799128, 48.8452457 2.3838856, 48.8455904 2.3558120, 48.8381135 2.3571067, 48.8364909 2.3591271, 48.8363055 2.3583190, 48.8239780 2.3622896, 48.8239587 2.3634647, 48.8117115 2.3880896, 48.8368051 2.3525786, 48.8360471 2.3592963, 48.8357999 2.3591086, 48.8444030 2.3753907, 48.8833658 2.3279263, 48.8836330 2.3284520, 48.8839932 2.3218563, 48.8845426 2.3213297, 48.8635971 2.3376992, 48.8412568 2.3561020, 48.8802722 2.3675063, 48.8714048 2.3070491, 48.8346913 2.3085180, 48.8349885 2.3078024, 48.8364186 2.3103935, 48.8375167 2.3079044, 48.8369162 2.3060561, 48.8570345 2.3629840, 48.8549662 2.3612793, 48.8376761 2.3448921, 48.8355075 2.3583356, 48.8354147 2.3582479, 48.8464369 2.3792454, 48.8524629 2.4041332, 48.8475869 2.3900296, 48.8472771 2.3956036, 48.8488604 2.3968465, 48.8483749 2.3994783, 48.8443280 2.3896931, 48.8390850 2.3568747, 48.8584562 2.3550423, 48.8582859 2.3552011, 48.8577895 2.3548000, 48.8575194 2.3544616, 48.8576438 2.3546760, 48.8577293 2.3547383, 48.8578549 2.3549208, 48.8582377 2.3548214, 48.8576530 2.3575640, 48.8586846 2.3536545, 48.8589115 2.3534861, 48.8598365 2.3549664, 48.8602520 2.3534175, 48.8572292 2.3551661, 48.8873012 2.3255264, 48.8956591 2.3766927, 48.8953890 2.3744930, 48.8743118 2.3204772, 48.8138944 2.3912196, 48.8108367 2.3839381, 48.8632334 2.3399229, 48.8463269 2.4174467, 48.8576477 2.3541855, 48.8591132 2.3538810, 48.8844890 2.3447472, 48.8841058 2.3521880, 48.8142568 2.3910625, 48.8343459 2.3060180, 48.8343850 2.3935686, 48.8331731 2.3864450, 48.8330278 2.3862477, 48.8330467 2.3860133, 48.8109531 2.3911089, 48.8105994 2.3914147, 48.8146337 2.3919376, 48.8142465 2.3904242, 48.8345376 2.3968492, 48.8333803 2.3954357, 48.8463967 2.3722583, 48.8468486 2.3717970, 48.8776102 2.3938459, 48.8333091 2.3546040, 48.8493535 2.3714981, 48.8335479 2.3631531, 48.8330119 2.3635033, 48.8322800 2.3612312, 48.8331196 2.3540446, 48.8330807 2.3564517, 48.8329329 2.3563708, 48.8321701 2.3590298, 48.8829327 2.3181031, 48.8609908 2.3480933, 48.8319327 2.3582100, 48.8633934 2.3347841, 48.8651992 2.3333992, 48.8536005 2.3428569, 48.8344171 2.3656055, 48.8330825 2.3614982, 48.8542764 2.3406582, 48.8555347 2.4004378, 48.8554112 2.4000945, 48.8341628 2.3648150, 48.8333280 2.3647429, 48.8332640 2.3561912, 48.8703112 2.3424791, 48.8707741 2.3411912, 48.8705661 2.3420906, 48.8706517 2.3426340, 48.8709334 2.3427566, 48.8556682 2.4008139, 48.8648503 2.4014328, 48.8702685 2.3939738, 48.8584489 2.3792058, 48.8945048 2.3474462, 48.8929338 2.3489373, 48.8919373 2.3499061, 48.8943845 2.3506181, 48.8938805 2.3498536, 48.8953235 2.3467399, 48.8953754 2.3495531, 48.8321364 2.3546768, 48.8305388 2.3568213, 48.8505276 2.3447826, 48.8513045 2.3459712, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8332913 2.3338394, 48.8388048 2.4168757, 48.8379927 2.4176004, 48.8387275 2.4173701, 48.8371907 2.4184718, 48.8375203 2.4169158, 48.8359170 2.3591570, 48.8355997 2.3589131, 48.8353091 2.3587223, 48.8351976 2.3586346, 48.8573507 2.3496668, 48.8323948 2.3645635, 48.8324644 2.3651997, 48.8312654 2.3772757, 48.8243928 2.3770244, 48.8451544 2.3536617, 48.8534095 2.3799147, 48.8565989 2.4064934, 48.8723362 2.3823271, 48.8582851 2.4065730, 48.8257118 2.3749729, 48.8253500 2.3613456, 48.8661377 2.3353287, 48.8384805 2.3113686, 48.8584702 2.3501538, 48.8585293 2.3496680, 48.8594701 2.3526678, 48.8774012 2.4069914, 48.8909128 2.3454738, 48.8916063 2.3445324, 48.8921962 2.3448571, 48.8923204 2.3442537, 48.8902437 2.3476818, 48.8906398 2.3495092, 48.8907675 2.3495020, 48.8923427 2.3461089, 48.8872790 2.3272010, 48.8871654 2.3269257, 48.8861847 2.3270688, 48.8392195 2.3712618, 48.8321878 2.3587424, 48.8842461 2.3613088, 48.8840672 2.3616073, 48.8841745 2.3614072, 48.8882926 2.3599384, 48.8845099 2.3646309, 48.8856332 2.3659515, 48.8920952 2.3613649, 48.8705772 2.3552836, 48.8883041 2.3506540, 48.8883196 2.3501401, 48.8883144 2.3520272, 48.8883763 2.3527059, 48.8886896 2.3559132, 48.8886090 2.3548159, 48.8889395 2.3584021, 48.8890178 2.3582290, 48.8890523 2.3595116, 48.8866144 2.3504214, 48.8858198 2.3551215, 48.8863622 2.3561844, 48.8878527 2.3515748, 48.8872861 2.3561221, 48.8839769 2.3509507, 48.8850544 2.3495979, 48.8857811 2.3496248, 48.8861021 2.3496301, 48.8863490 2.3496462, 48.8876294 2.3496373, 48.8885253 2.3496748, 48.8890580 2.3496748, 48.8887476 2.3496695, 48.8889098 2.3496802, 48.8841020 2.3522661, 48.8840538 2.3519670, 48.8840388 2.3514774, 48.8892343 2.3496802, 48.8896364 2.3496856, 48.8146308 2.3939665, 48.8144158 2.3970444, 48.8121614 2.3920250, 48.8360736 2.3104263, 48.8375411 2.3916661, 48.8794653 2.4161392, 48.8437124 2.4182167, 48.8432691 2.4180076, 48.8406799 2.4177361, 48.8405998 2.4181025, 48.8407538 2.4174120, 48.8540282 2.3047490, 48.8278209 2.3706492, 48.8438654 2.3518035, 48.8847017 2.3493780, 48.8847898 2.3493834, 48.8848569 2.3493834, 48.8852449 2.3493834, 48.8851108 2.3493834, 48.8863243 2.3494209, 48.8860562 2.3494048, 48.8857987 2.3494048, 48.8866171 2.3494388, 48.8873464 2.3494796, 48.8876365 2.3494656, 48.8887125 2.3494781, 48.8889239 2.3494603, 48.8891003 2.3494710, 48.8884971 2.3494495, 48.8880001 2.3494761, 48.8904052 2.3495068, 48.8897932 2.3494533, 48.8892625 2.3494710, 48.8830632 2.3383743, 48.8857316 2.3349375, 48.8857096 2.3352645, 48.8854435 2.3359469, 48.8859008 2.3346803, 48.8853035 2.3363355, 48.8851642 2.3366575, 48.8843335 2.3382618, 48.8886961 2.3390540, 48.8851431 2.3383441, 48.8865032 2.3356719, 48.8885778 2.3354686, 48.8888861 2.3383196, 48.8842610 2.3413414, 48.8845571 2.3411073, 48.8847258 2.3403346, 48.8849081 2.3418344, 48.8895658 2.3377576, 48.8799557 2.3862343, 48.8850086 2.3604185, 48.8907312 2.3639595, 48.8826461 2.3813790, 48.8402359 2.3617231, 48.8944354 2.3403228, 48.8944213 2.3442287, 48.8538840 2.3375740, 48.8837052 2.3395939, 48.8832400 2.3421635, 48.8834792 2.3421669, 48.8839647 2.3413568, 48.8865870 2.3452064, 48.8832262 2.3499505, 48.8846010 2.3470099, 48.8881281 2.3463794, 48.8883520 2.3487355, 48.8869557 2.3324658, 48.8869663 2.3326053, 48.8890733 2.3333345, 48.8903665 2.3341127, 48.8903277 2.3330237, 48.8903732 2.3369030, 48.8916342 2.3355210, 48.8908322 2.3375902, 48.8908023 2.3394033, 48.8910048 2.3400771, 48.8912851 2.3396007, 48.8926693 2.3356185, 48.8928829 2.3373736, 48.8929557 2.3385657, 48.8923455 2.3400044, 48.8904263 2.3404251, 48.8913682 2.3472930, 48.8808823 2.3404014, 48.8804958 2.3402435, 48.8784082 2.3429043, 48.8809016 2.3336730, 48.8801859 2.3312932, 48.8188024 2.3258578, 48.8542757 2.3194575, 48.8570901 2.3152530, 48.8515609 2.3146168, 48.8648840 2.4053930, 48.8695840 2.4023587, 48.8675480 2.4092194, 48.8645440 2.4097670, 48.8678875 2.4087032, 48.8661368 2.4057912, 48.8450873 2.4015561, 48.8455770 2.3958841, 48.8468380 2.4001158, 48.8603661 2.3754100, 48.8833930 2.3812455, 48.8830692 2.3825494, 48.8839003 2.3840684, 48.8478151 2.3161845, 48.8470337 2.3212693, 48.8856788 2.3405124, 48.8534880 2.3040058, 48.8803039 2.3798878, 48.8575059 2.3526422, 48.8605714 2.3454975, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8806821 2.3741833, 48.8806125 2.3769485, 48.8825820 2.3812532, 48.8286167 2.3222750, 48.8291859 2.3226894, 48.8765664 2.4182091, 48.8590672 2.3498178, 48.8695049 2.3065969, 48.8900474 2.3613408, 48.8768016 2.3394255, 48.8768660 2.3356326, 48.8773919 2.3395256, 48.8445390 2.3211809, 48.8305262 2.3381265, 48.8411654 2.3324666, 48.8475509 2.3775378, 48.8259800 2.3574792, 48.8259306 2.3602462, 48.8233030 2.3659003, 48.8246654 2.3631367, 48.8279577 2.3586262, 48.8419264 2.3635292, 48.8236413 2.3615505, 48.8219370 2.3633250, 48.8437079 2.3657319, 48.8563005 2.3020494, 48.8564205 2.3021781, 48.8560717 2.3021776, 48.8569411 2.3035154, 48.8550972 2.3053909, 48.8560924 2.3046935, 48.8567518 2.3043714, 48.8584436 2.3037809, 48.8583176 2.3038374, 48.8586100 2.3037057, 48.8586338 2.3034705, 48.8590703 2.3034761, 48.8615949 2.3022747, 48.8615612 2.3022878, 48.8627174 2.3794641, 48.8671282 2.3756094, 48.8720047 2.3455258, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.8242173 2.3882310, 48.8306926 2.3359923, 48.8248112 2.3677360, 48.8561576 2.4045951, 48.8496002 2.3981379, 48.8541960 2.4019145, 48.8513139 2.3817099, 48.8528829 2.3864220, 48.8524264 2.3887673, 48.8493781 2.3785737, 48.8530453 2.3745559, 48.8479680 2.3710745, 48.8485260 2.3720544, 48.8504050 2.3701018, 48.8517234 2.3993213, 48.8503838 2.3895178, 48.8469782 2.3850371, 48.8652131 2.3628703, 48.8625821 2.3543114, 48.8649450 2.3550985, 48.8646517 2.3565127, 48.8647871 2.3552146, 48.8649151 2.3552894, 48.8646274 2.3569545, 48.8650523 2.3569392, 48.8623935 2.3593935, 48.8530035 2.3827478, 48.8499264 2.3748210, 48.8570725 2.3615477, 48.8239910 2.3632719, 48.8470031 2.3813757, 48.8517886 2.3889465, 48.8523104 2.4012993, 48.8276417 2.3303431, 48.8289443 2.3298857, 48.8289302 2.3293063, 48.8288878 2.3328361, 48.8319530 2.3307976, 48.8647403 2.3667122, 48.8735413 2.3799338, 48.8609931 2.4003293, 48.8719959 2.3774019, 48.8722880 2.3780140, 48.8730352 2.3796739, 48.8448840 2.3824674, 48.8737065 2.3769426, 48.8405555 2.3621060, 48.8402568 2.3634668, 48.8412107 2.3625935, 48.8420852 2.3631705, 48.8419766 2.3631327, 48.8420084 2.3635501, 48.8421166 2.3637562, 48.8431538 2.3637431, 48.8435679 2.3643122, 48.8453908 2.3674378, 48.8454429 2.3715868, 48.8519783 2.3698258, 48.8737979 2.3160522, 48.8737596 2.3158539, 48.8708265 2.3779442, 48.8466424 2.3872245, 48.8463168 2.3872077, 48.8836808 2.4033633, 48.8461025 2.3834255, 48.8485516 2.3780692, 48.8211710 2.3587038, 48.8505179 2.3931013, 48.8841470 2.3223431, 48.8840917 2.3224995, 48.8841654 2.3220842, 48.8794250 2.3337401, 48.8794405 2.3338166, 48.8821959 2.3406004, 48.8430137 2.3209354, 48.8849719 2.3794107, 48.8858346 2.3758518, 48.8734931 2.3899725, 48.8852235 2.3791945, 48.8734321 2.3900290, 48.8861026 2.3764226, 48.8857448 2.3756657, 48.8748438 2.3895179, 48.8857082 2.3756616, 48.8737442 2.3897852, 48.8812335 2.3681216, 48.8314088 2.3488132, 48.8878588 2.3596648, 48.8753301 2.3889995, 48.8204792 2.3667808, 48.8185097 2.3744183, 48.8202218 2.3721389, 48.8217969 2.3688453, 48.8291806 2.3561302, 48.8451034 2.3492462, 48.8472505 2.3480517, 48.8472832 2.3477251, 48.8470809 2.3486565, 48.8553731 2.3435125, 48.8565275 2.3420348, 48.8568716 2.3421327, 48.8563329 2.3422554, 48.8569183 2.3418674, 48.8594652 2.3441791, 48.8577895 2.3468656, 48.8582957 2.3474796, 48.8583659 2.3474922, 48.8584398 2.3475072, 48.8590591 2.3475385, 48.8592361 2.3476099, 48.8592775 2.3476294, 48.8591202 2.3475207, 48.8594544 2.3471922, 48.8595548 2.3473567, 48.8595754 2.3474694, 48.8865040 2.3276000, 48.8551784 2.3460397, 48.8552141 2.3463416, 48.8557679 2.3464388, 48.8538879 2.3474900, 48.8529207 2.3436323, 48.8536129 2.3494706, 48.8542243 2.3500208, 48.8542384 2.3498773, 48.8542020 2.3503178, 48.8600943 2.3451124, 48.8604674 2.3454225, 48.8593562 2.3461342, 48.8594808 2.3467106, 48.8595507 2.3467483, 48.8597005 2.3469841, 48.8599442 2.3474167, 48.8598564 2.3477249, 48.8598395 2.3478001, 48.8603899 2.3475800, 48.8609975 2.3482090, 48.8597051 2.3483832, 48.8599899 2.3488202, 48.8608470 2.3488026, 48.8601724 2.3488956, 48.8603586 2.3484772, 48.8600139 2.3442832, 48.8609295 2.3450073, 48.8612791 2.3423684, 48.8613359 2.3426577, 48.8612560 2.3431916, 48.8613382 2.3448649, 48.8617216 2.3432877, 48.8628456 2.3420046, 48.8639344 2.3425970, 48.8637021 2.3430520, 48.8602965 2.3418540, 48.8588694 2.3415282, 48.8588810 2.3417760, 48.8596955 2.3406333, 48.8608773 2.3423534, 48.8616909 2.3518430, 48.8617494 2.3405457, 48.8617157 2.3404593, 48.8632704 2.3339882, 48.8633059 2.3340632, 48.8628907 2.3351275, 48.8631557 2.3352468, 48.8636678 2.3350046, 48.8637726 2.3355646, 48.8626095 2.3362830, 48.8625470 2.3362555, 48.8624056 2.3372600, 48.8620104 2.3390904, 48.8622902 2.3393649, 48.8620988 2.3398606, 48.8622685 2.3398888, 48.8626050 2.3395217, 48.8620047 2.3412336, 48.8626905 2.3414763, 48.8629625 2.3415806, 48.8177880 2.3249332, 48.8196164 2.3234545, 48.8615068 2.3488951, 48.8611512 2.3495492, 48.8613828 2.3490415, 48.8616954 2.3482560, 48.8619643 2.3491461, 48.8622712 2.3492903, 48.8625411 2.3496651, 48.8625160 2.3495885, 48.8625821 2.3483927, 48.8635373 2.3490562, 48.8631582 2.3498973, 48.8629810 2.3484703, 48.8644969 2.3453886, 48.8633332 2.3460793, 48.8633690 2.3462612, 48.8634242 2.3462790, 48.8641188 2.3464674, 48.8641678 2.3467038, 48.8636473 2.3431563, 48.8640959 2.3415983, 48.8640954 2.3438023, 48.8647135 2.3426384, 48.8648693 2.3427189, 48.8648458 2.3445503, 48.8625475 2.3407883, 48.8629462 2.3411925, 48.8629792 2.3415194, 48.8630681 2.3412176, 48.8634426 2.3400377, 48.8630447 2.3413417, 48.8639239 2.3401572, 48.8634071 2.3418915, 48.8647612 2.3406523, 48.8646538 2.3408552, 48.8659486 2.3400023, 48.8644737 2.3401639, 48.8644890 2.3404697, 48.8655554 2.3403846, 48.8660175 2.3407258, 48.8660668 2.3390095, 48.8661019 2.3389239, 48.8629745 2.3357764, 48.8635380 2.3355250, 48.8650200 2.3366293, 48.8656093 2.3369261, 48.8663099 2.3374684, 48.8664907 2.3376599, 48.8627666 2.3376540, 48.8671663 2.3347590, 48.8645744 2.3350797, 48.8660066 2.3354463, 48.8669921 2.3366321, 48.8669846 2.3362939, 48.8652120 2.3344828, 48.8661000 2.3337438, 48.8660278 2.3340077, 48.8663175 2.3340111, 48.8663930 2.3354840, 48.8663406 2.3354494, 48.8666001 2.3357750, 48.8672190 2.3346698, 48.8646841 2.3338346, 48.8647572 2.3326227, 48.8652752 2.3332993, 48.8666053 2.3338903, 48.8660273 2.3312781, 48.8658325 2.3324895, 48.8658744 2.3325173, 48.8659399 2.3325614, 48.8663779 2.3317318, 48.8669595 2.3323778, 48.8671333 2.3324843, 48.8670401 2.3324272, 48.8673651 2.3318225, 48.8676684 2.3316870, 48.8673997 2.3319574, 48.8674379 2.3324048, 48.8671882 2.3325179, 48.8675087 2.3324647, 48.8676565 2.3320208, 48.8675328 2.3323476, 48.8672699 2.3325679, 48.8674795 2.3326070, 48.8656306 2.3303026, 48.8656453 2.3303694, 48.8669041 2.3315149, 48.8667074 2.3326398, 48.8678727 2.3316533, 48.8680817 2.3307073, 48.8656430 2.3278956, 48.8677297 2.3303206, 48.8676486 2.3245195, 48.8687717 2.3252969, 48.8694746 2.3247589, 48.8690559 2.3243639, 48.8480970 2.3469090, 48.8487505 2.3777984, 48.8503027 2.3774477, 48.8674009 2.3345287, 48.8687712 2.3355475, 48.8742798 2.3760564, 48.8721892 2.3775902, 48.8722280 2.3777350, 48.8722562 2.3773810, 48.8745796 2.3732477, 48.8740584 2.3761419, 48.8741651 2.3760614, 48.8763000 2.3770222, 48.8741821 2.3751159, 48.8744252 2.3738880, 48.8687898 2.3338477, 48.8689710 2.3345642, 48.8496754 2.3496176, 48.8693146 2.3347338, 48.8698110 2.3346634, 48.8696005 2.3358328, 48.8695636 2.3360181, 48.8677601 2.3371944, 48.8677062 2.3374280, 48.8773553 2.3492240, 48.8708415 2.3535560, 48.8690695 2.3343056, 48.8702877 2.3349212, 48.8781128 2.3689171, 48.8703066 2.3348742, 48.8704060 2.3348727, 48.8706992 2.3344564, 48.8706891 2.3340754, 48.8679928 2.3379544, 48.8670925 2.3387264, 48.8690399 2.3387540, 48.8690592 2.3388180, 48.8704283 2.3371521, 48.8712809 2.3371470, 48.8704581 2.3373664, 48.8705949 2.3395281, 48.8714078 2.3378085, 48.8714851 2.3377970, 48.8115398 2.3841166, 48.8121398 2.3863784, 48.8105676 2.3884401, 48.8108414 2.3911974, 48.8692036 2.3392113, 48.8690729 2.3399905, 48.8691872 2.3393294, 48.8693708 2.3397160, 48.8691071 2.3397858, 48.8692514 2.3401242, 48.8626941 2.3877054, 48.8716597 2.3407937, 48.8717230 2.3394983, 48.8716938 2.3397200, 48.8716249 2.3410422, 48.8717356 2.3405719, 48.8717946 2.3395399, 48.8696799 2.3415731, 48.8697491 2.3403685, 48.8696136 2.3403891, 48.8695691 2.3402609, 48.8688297 2.3421626, 48.8686859 2.3420376, 48.8675928 2.3409167, 48.8664997 2.3400225, 48.8686652 2.3421761, 48.8672176 2.3404674, 48.8687628 2.3297223, 48.8688935 2.3334536, 48.8704135 2.3318678, 48.8700309 2.3292678, 48.8685956 2.3322485, 48.8689537 2.3327977, 48.8689050 2.3327814, 48.8702717 2.3306225, 48.8690262 2.3325457, 48.8691969 2.3433101, 48.8698000 2.3425335, 48.8687745 2.3432434, 48.8662163 2.3412156, 48.8667156 2.3435590, 48.8671729 2.3441962, 48.8666678 2.3411775, 48.8652915 2.3440961, 48.8654099 2.3443331, 48.8707568 2.3429733, 48.8676499 2.3455667, 48.8441325 2.3546669, 48.8444395 2.3549581, 48.8448060 2.3546073, 48.8445996 2.3549442, 48.8449061 2.3551595, 48.8457867 2.3553999, 48.8705191 2.3428655, 48.8709276 2.3429934, 48.8704558 2.3474977, 48.8706525 2.3468928, 48.8674968 2.3472550, 48.8674306 2.3462505, 48.8766283 2.3394115, 48.8668920 2.3473928, 48.8645135 2.3468506, 48.8654683 2.3468972, 48.8646153 2.3468169, 48.8660916 2.3526753, 48.8657334 2.3566710, 48.8666598 2.3498307, 48.8667885 2.3495539, 48.8645295 2.3512403, 48.8647371 2.3502921, 48.8650900 2.3505466, 48.8639502 2.3511027, 48.8648587 2.3516262, 48.8644149 2.3508382, 48.8625665 2.3522237, 48.8684235 2.3536158, 48.8680177 2.3532845, 48.8677443 2.3535117, 48.8686982 2.3541762, 48.8670418 2.3496240, 48.8683427 2.3501494, 48.8685043 2.3498910, 48.8681440 2.3484373, 48.8696741 2.3519506, 48.8641253 2.3698504, 48.8127956 2.3610646, 48.8146549 2.3613384, 48.8700666 2.3501189, 48.8704497 2.3486046, 48.8701362 2.3501207, 48.8704075 2.3483529, 48.8703899 2.3484689, 48.8521023 2.3568721, 48.8518091 2.3568234, 48.8518760 2.3566725, 48.8518531 2.3567202, 48.8515139 2.3573256, 48.8520260 2.3557283, 48.8447284 2.3419203, 48.8425031 2.3446224, 48.8095766 2.3626796, 48.8519507 2.3561108, 48.8527730 2.3537103, 48.8514200 2.3437555, 48.8515128 2.3437930, 48.8529293 2.3446424, 48.8521424 2.3569051, 48.8523186 2.3568760, 48.8530396 2.3537559, 48.8558532 2.3515975, 48.8563139 2.3504798, 48.8612900 2.3499825, 48.8615937 2.3514953, 48.8595402 2.3527444, 48.8614606 2.3537904, 48.8613508 2.3533982, 48.8612937 2.3537009, 48.8613539 2.3526643, 48.8593262 2.3559033, 48.8558397 2.3555062, 48.8914586 2.3497646, 48.8276950 2.3526554, 48.8544169 2.3554757, 48.8555040 2.3574259, 48.8560190 2.3572778, 48.8560559 2.3572415, 48.8560141 2.3571788, 48.8563329 2.3553132, 48.8834373 2.3324889, 48.8590577 2.3501929, 48.8595433 2.3489177, 48.8575096 2.3479041, 48.8593929 2.3493115, 48.8583173 2.3517204, 48.8577035 2.3502326, 48.8595480 2.3490548, 48.8573638 2.3512963, 48.8590250 2.3503203, 48.8583244 2.3499582, 48.8591774 2.3488521, 48.8589164 2.3485650, 48.8592685 2.3488863, 48.8591081 2.3500160, 48.8600408 2.3499857, 48.8616594 2.3501884, 48.8617621 2.3502461, 48.8597261 2.3540740, 48.8591328 2.3525765, 48.8824587 2.3401820, 48.8794020 2.3884400, 48.8796442 2.3890696, 48.8795960 2.3896580, 48.8600862 2.3565927, 48.8605623 2.3551334, 48.8560385 2.4049110, 48.8605425 2.4091699, 48.8256891 2.3501301, 48.8296848 2.3541069, 48.8278037 2.3523028, 48.8268925 2.3513505, 48.8274198 2.3518171, 48.8533299 2.3424383, 48.8119106 2.3570184, 48.8572208 2.3551092, 48.8571117 2.3550358, 48.8571384 2.3549764, 48.8571292 2.3541619, 48.8572463 2.3550135, 48.8570142 2.3541389, 48.8568296 2.3551652, 48.8569458 2.3554337, 48.8271315 2.3323734, 48.8274828 2.3325351, 48.8638719 2.3519655, 48.8646409 2.3536613, 48.8635758 2.3531607, 48.8636089 2.3534360, 48.8640159 2.3502075, 48.8640570 2.3503760, 48.8641785 2.3510736, 48.8581626 2.3561038, 48.8599753 2.3568642, 48.8596070 2.3565697, 48.8595500 2.3565735, 48.8577487 2.3576815, 48.8579512 2.3567221, 48.8577587 2.3558712, 48.8564037 2.3572215, 48.8573858 2.3575923, 48.8569706 2.3578174, 48.8570944 2.3576266, 48.8573873 2.3589592, 48.8567788 2.3558116, 48.8575151 2.3587307, 48.8586071 2.3585283, 48.8580313 2.3580479, 48.8574097 2.3590501, 48.8422251 2.3519017, 48.8422550 2.3522128, 48.8433232 2.3528098, 48.8633842 2.3464893, 48.8256293 2.3483441, 48.8259202 2.3471664, 48.8257885 2.3477809, 48.8569391 2.3587226, 48.8562824 2.3592731, 48.8562386 2.3592343, 48.8558049 2.3600410, 48.8402209 2.3517797, 48.8555549 2.3612781, 48.8559169 2.3603985, 48.8411303 2.3546717, 48.8549508 2.3624309, 48.8556266 2.3621786, 48.8563675 2.3643268, 48.8554988 2.3630222, 48.8549153 2.3623782, 48.8550149 2.3631694, 48.8565540 2.3642255, 48.8553861 2.3625173, 48.8556083 2.3627374, 48.8553790 2.3625438, 48.8552888 2.3629682, 48.8553171 2.3630156, 48.8552064 2.3625817, 48.8552557 2.3616146, 48.8557023 2.3630589, 48.8552125 2.3615428, 48.8555544 2.3581927, 48.8549470 2.3612543, 48.8557611 2.3570094, 48.8556412 2.3606593, 48.8451155 2.4345033, 48.8260343 2.3476244, 48.8538346 2.3644665, 48.8540797 2.3659063, 48.8538463 2.3645345, 48.8540284 2.3650261, 48.8562566 2.3646932, 48.8539723 2.3672909, 48.8549472 2.3633131, 48.8537619 2.3675235, 48.8538720 2.3672376, 48.8549776 2.3673407, 48.8540510 2.3686163, 48.8538949 2.3685489, 48.8540837 2.3685677, 48.8542760 2.3691388, 48.8543409 2.3691660, 48.8416734 2.3481104, 48.8398659 2.3475405, 48.8540659 2.3616249, 48.8549238 2.3592860, 48.8554369 2.3580795, 48.8554539 2.3579276, 48.8548402 2.3583739, 48.8551687 2.3602451, 48.8543977 2.3599670, 48.8540729 2.3612004, 48.8508419 2.3621258, 48.8513526 2.3628780, 48.8521583 2.3613070, 48.8525480 2.3641850, 48.8527075 2.3633017, 48.8532015 2.3640647, 48.8544815 2.3628958, 48.8536886 2.3643812, 48.8545334 2.3627527, 48.8542200 2.3635016, 48.8542835 2.3633155, 48.8539861 2.3622411, 48.8532791 2.3664896, 48.8521321 2.3650946, 48.8519412 2.3645366, 48.8521775 2.3663665, 48.8507856 2.3671256, 48.8507596 2.3670235, 48.8498781 2.3644772, 48.8477690 2.3654853, 48.8629367 2.3522066, 48.8621665 2.3511124, 48.8626959 2.3521061, 48.8622789 2.3510860, 48.8619134 2.3509953, 48.8621524 2.3537603, 48.8659461 2.3533729, 48.8657000 2.3535311, 48.8650633 2.3535236, 48.8650455 2.3535907, 48.8652453 2.3533870, 48.8659520 2.3532863, 48.8647008 2.3554661, 48.8650917 2.3557671, 48.8671336 2.3577810, 48.8657064 2.3565852, 48.8659826 2.3540443, 48.8643855 2.3550009, 48.8645093 2.3542545, 48.8644586 2.3544256, 48.8644805 2.3545447, 48.8646620 2.3539239, 48.8644591 2.3546214, 48.8679243 2.3618751, 48.8682730 2.3614921, 48.8678851 2.3621385, 48.8674036 2.3627826, 48.8669898 2.3620443, 48.8832515 2.3879250, 48.8830654 2.3856822, 48.8517088 2.3431054, 48.8667033 2.3609857, 48.8667188 2.3611850, 48.8673544 2.3583696, 48.8674734 2.3577982, 48.8667351 2.3612430, 48.8658122 2.3570399, 48.8656157 2.3570603, 48.8609575 2.3483442, 48.8607500 2.3491700, 48.8658006 2.3578626, 48.8660231 2.3581385, 48.8664919 2.3600081, 48.8662353 2.3610229, 48.8723040 2.3535120, 48.8661285 2.3594408, 48.8655917 2.3595983, 48.8651109 2.3571532, 48.8649701 2.3570435, 48.8751228 2.3939970, 48.8777176 2.3937456, 48.8724707 2.3776998, 48.8717657 2.3765997, 48.8714128 2.3768852, 48.8189632 2.3613966, 48.8208495 2.3637354, 48.8235845 2.3656863, 48.8262413 2.3615997, 48.8232934 2.3654521, 48.8237603 2.3652263, 48.8518893 2.3417124, 48.8516010 2.3437321, 48.8511469 2.3428392, 48.8508150 2.3422269, 48.8530176 2.3445259, 48.8644851 2.3569256, 48.8521687 2.3444775, 48.8609387 2.3545725, 48.8609056 2.3546714, 48.8613715 2.3542463, 48.8614471 2.3583969, 48.8628432 2.3600037, 48.8637749 2.3607964, 48.8638993 2.3606178, 48.8636674 2.3608969, 48.8635375 2.3610562, 48.8652895 2.3605043, 48.8656120 2.3608400, 48.8649528 2.3628140, 48.8648961 2.3629259, 48.8658753 2.3611105, 48.8652889 2.3632073, 48.8665805 2.3619623, 48.8651842 2.3631892, 48.8647607 2.3633251, 48.8660249 2.3647181, 48.8664891 2.3643204, 48.8662147 2.3645043, 48.8663091 2.3639231, 48.8663722 2.3641412, 48.8636551 2.3631224, 48.8516511 2.3354386, 48.8517582 2.3381629, 48.8463274 2.3476351, 48.8533184 2.3416729, 48.8704217 2.3232384, 48.8632446 2.3614945, 48.8633001 2.3620149, 48.8632099 2.3622012, 48.8636998 2.3626132, 48.8626425 2.3632356, 48.8626516 2.3633443, 48.8625213 2.3635276, 48.8630524 2.3640855, 48.8621296 2.3644112, 48.8620957 2.3644902, 48.8621981 2.3629228, 48.8617499 2.3623904, 48.8622881 2.3631634, 48.8612625 2.3644482, 48.8620347 2.3635571, 48.8622670 2.3635372, 48.8619291 2.3641444, 48.8639888 2.3639782, 48.8645550 2.3645938, 48.8615020 2.3620520, 48.8604574 2.3618940, 48.8792700 2.3844462, 48.8785891 2.3856103, 48.8810145 2.3891669, 48.8449381 2.3496655, 48.8465258 2.3513354, 48.8594649 2.3600214, 48.8598192 2.3606888, 48.8602716 2.3621222, 48.8577749 2.3606479, 48.8590981 2.3594568, 48.8583524 2.3594541, 48.8639803 2.3651991, 48.8520518 2.3465211, 48.8516494 2.3469103, 48.8526479 2.3470482, 48.8488337 2.3480608, 48.8621350 2.3667173, 48.8615090 2.3660863, 48.8614452 2.3647591, 48.8609593 2.3669247, 48.8617960 2.3778943, 48.8624536 2.3800165, 48.8590822 2.3674570, 48.8575642 2.3677839, 48.8560432 2.3669557, 48.8840145 2.3317743, 48.8800693 2.3538016, 48.8559327 2.3681748, 48.8942160 2.3873171, 48.8658583 2.3522098, 48.8630587 2.3508787, 48.8542244 2.3561302, 48.8590889 2.3486591, 48.8605292 2.3572991, 48.8562137 2.3535054, 48.8580180 2.3499733, 48.8496476 2.3511453, 48.8494771 2.3555409, 48.8443855 2.3606510, 48.8495427 2.3537859, 48.8495364 2.3666202, 48.8544692 2.3379604, 48.8620353 2.3503145, 48.8612709 2.3498777, 48.8525082 2.3679448, 48.8552582 2.3605246, 48.8635347 2.3512387, 48.8630803 2.3510377, 48.8609783 2.3810776, 48.8542985 2.3783997, 48.8421221 2.3217245, 48.8881390 2.3534840, 48.8871861 2.3533770, 48.8476074 2.3428362, 48.8643899 2.3635207, 48.8718710 2.3683060, 48.8848656 2.3830530, 48.8827367 2.3814655, 48.8716043 2.3645626, 48.8694570 2.3635710, 48.8468855 2.3408953, 48.8636510 2.3505320, 48.8107198 2.3845021, 48.8103452 2.3853505, 48.8107593 2.3865273, 48.8105464 2.3862937, 48.8101027 2.3896175, 48.8099429 2.3893929, 48.8139661 2.3907253, 48.8592743 2.3796462, 48.8589937 2.3814395, 48.8625209 2.3796607, 48.8618044 2.3781115, 48.8470420 2.3413880, 48.8471180 2.3410080, 48.8470620 2.3413100, 48.8474500 2.3412160, 48.8513211 2.3556751, 48.8575593 2.3848465, 48.8459422 2.3434742, 48.8630735 2.3791446, 48.8629401 2.3792630, 48.8628392 2.3793646, 48.8478202 2.3402069, 48.8406646 2.3219283, 48.8409458 2.3211307, 48.8418918 2.3218739, 48.8420110 2.3206428, 48.8422162 2.3202513, 48.8438796 2.3245430, 48.8521680 2.3314230, 48.8571890 2.3477470, 48.8566870 2.3553310, 48.8447287 2.3244719, 48.8479918 2.3275469, 48.8428059 2.3239714, 48.8549793 2.3291241, 48.8427198 2.3420521, 48.8805625 2.3348575, 48.8813024 2.3361254, 48.8643222 2.3548396, 48.8644140 2.3547850, 48.8687006 2.3354843, 48.8382008 2.3515664, 48.8786073 2.3705829, 48.8796835 2.3722606, 48.8688813 2.3296955, 48.8701022 2.3301353, 48.8689120 2.3292609, 48.8644425 2.3302320, 48.8640110 2.3357070, 48.8699070 2.3321250, 48.8845820 2.3333830, 48.8855760 2.3346400, 48.8860180 2.3351210, 48.8861637 2.3381011, 48.8819220 2.3375560, 48.8651140 2.3778720, 48.8821123 2.3666359, 48.8789675 2.3644250, 48.8790715 2.3649117, 48.8792180 2.3665493, 48.8820420 2.3678327, 48.8820491 2.3660464, 48.8816895 2.3656251, 48.8818956 2.3658787, 48.8779726 2.3655032, 48.8782055 2.3656749, 48.8788300 2.3662059, 48.8809308 2.3651881, 48.8812888 2.3651008, 48.8808303 2.3650793, 48.8814582 2.3647576, 48.8812021 2.3647160, 48.8807422 2.3649558, 48.8801571 2.3666317, 48.8800594 2.3668295, 48.8815137 2.3659229, 48.8777011 2.3652544, 48.8803699 2.3667330, 48.8831690 2.3710377, 48.8817976 2.3657678, 48.8815272 2.3646569, 48.8813513 2.3657268, 48.8808723 2.3646162, 48.8811695 2.3646071, 48.8760311 2.3700774, 48.8610786 2.3535904, 48.8615010 2.3537550, 48.8394781 2.3518278, 48.8416802 2.3556271, 48.8417641 2.3556159, 48.8411075 2.3561671, 48.8411617 2.3562621, 48.8430777 2.3636948, 48.8429787 2.3633417, 48.8419172 2.3589420, 48.8359676 2.3585104, 48.8400778 2.3373997, 48.8392433 2.3391037, 48.8520344 2.3993968, 48.8803135 2.3898477, 48.8801882 2.3901266, 48.8802834 2.3902661, 48.8811978 2.3776297, 48.8420207 2.3411311, 48.8643474 2.3548457, 48.8643090 2.3532130, 48.8642700 2.3531320, 48.8413087 2.3389738, 48.8413263 2.3391080, 48.8382571 2.3458273, 48.8883530 2.3917794, 48.8864637 2.3771916, 48.8536730 2.3797768, 48.8398800 2.3609348, 48.8373167 2.3491914, 48.8480846 2.3334838, 48.8455093 2.3329557, 48.8451543 2.3325456, 48.8475334 2.3382332, 48.8474672 2.3379586, 48.8474379 2.3363959, 48.8335617 2.3141734, 48.8370268 2.3124692, 48.8336111 2.3147957, 48.8335546 2.3150800, 48.8767367 2.4093454, 48.8854169 2.3658931, 48.8852688 2.3676204, 48.8694004 2.3648970, 48.8321125 2.3499256, 48.8329194 2.3512077, 48.8238740 2.3180838, 48.8326598 2.3800230, 48.8566054 2.3397822, 48.8577157 2.3371252, 48.8632105 2.3998501, 48.8618768 2.4014860, 48.8645112 2.3981788, 48.8647595 2.3990532, 48.8627531 2.4005845, 48.8671314 2.3577761, 48.8668458 2.3586800, 48.8668914 2.3584627, 48.8670160 2.3581568, 48.8670538 2.3582562, 48.8668315 2.3590233, 48.8662871 2.3578056, 48.8668006 2.3582106, 48.8664997 2.3601015, 48.8680162 2.3548820, 48.8667335 2.3540236, 48.8647030 2.3567983, 48.8647921 2.3568339, 48.8643639 2.3541873, 48.8668939 2.3583012, 48.8668657 2.3585775, 48.8774636 2.3705618, 48.8775915 2.3706404, 48.8780661 2.3700636, 48.8543308 2.3402565, 48.8537741 2.3390379, 48.8536188 2.3393161, 48.8551444 2.3395098, 48.8782580 2.3987300, 48.8572964 2.3373427, 48.8576139 2.3354110, 48.8533950 2.3355231, 48.8533506 2.3334547, 48.8546132 2.3335075, 48.8546432 2.3327719, 48.8546484 2.3333477, 48.8533032 2.3340213, 48.8521594 2.3307743, 48.8529586 2.3360296, 48.8516089 2.3354609, 48.8516697 2.3388251, 48.8519539 2.3394857, 48.8491904 2.3391833, 48.8494085 2.3375661, 48.8494338 2.3377819, 48.8476948 2.3714376, 48.8575400 2.3362149, 48.8576071 2.3358845, 48.8480587 2.3392944, 48.8489183 2.3392705, 48.8477108 2.3407718, 48.8481339 2.3411979, 48.8801119 2.3535250, 48.8688629 2.3592316, 48.8703048 2.3508014, 48.8790233 2.3543823, 48.8796462 2.3557937, 48.8709985 2.3535865, 48.8590770 2.3279978, 48.8756316 2.3991077, 48.8455626 2.3726390, 48.8511931 2.3304049, 48.8506265 2.3304803, 48.8487297 2.3287519, 48.8485082 2.3285161, 48.8508230 2.3279333, 48.8514421 2.3272954, 48.8502811 2.3276257, 48.8508389 2.3266905, 48.8516407 2.3251860, 48.8551090 2.3306870, 48.8698923 2.3755947, 48.8487629 2.3975462, 48.8685624 2.3685743, 48.8503580 2.3831342, 48.8690249 2.3683671, 48.8568213 2.3685042, 48.8469960 2.3301669, 48.8427653 2.3300120, 48.8426139 2.3298989, 48.8439265 2.3302977, 48.8469707 2.3323837, 48.8466468 2.3323592, 48.8447355 2.3323563, 48.8406025 2.3362353, 48.8425197 2.3348793, 48.8426574 2.3347286, 48.8426551 2.3348501, 48.8416922 2.3314753, 48.8416177 2.3314774, 48.8396688 2.3373962, 48.8418958 2.3302251, 48.8419379 2.3304718, 48.8420145 2.3302544, 48.8827520 2.3817592, 48.8863301 2.3709574, 48.8904247 2.3760144, 48.8944147 2.3812747, 48.8899953 2.3754730, 48.8422661 2.3280738, 48.8424306 2.3290349, 48.8699280 2.3499165, 48.8651036 2.3570995, 48.8632239 2.3566007, 48.8440612 2.3225950, 48.8438384 2.3223092, 48.8433918 2.3244608, 48.8471137 2.3267431, 48.8442156 2.3244262, 48.8485184 2.3248051, 48.8489974 2.3252251, 48.8473682 2.3262422, 48.8460135 2.3197443, 48.8469097 2.3213077, 48.8499302 2.3238399, 48.8685290 2.3895370, 48.8709269 2.3577774, 48.8707153 2.3567140, 48.8367623 2.3463790, 48.8570290 2.3204791, 48.8391455 2.3957152, 48.8180996 2.3286545, 48.8443992 2.3820174, 48.8478715 2.3198313, 48.8477564 2.3193946, 48.8467204 2.3172126, 48.8469920 2.3172024, 48.8473522 2.3183754, 48.8816033 2.3884873, 48.8321351 2.3486444, 48.8313804 2.3480743, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8564288 2.3346389, 48.8467363 2.3268420, 48.8473592 2.3309027, 48.8530169 2.3313456, 48.8513553 2.3348681, 48.8558131 2.3388661, 48.8521220 2.3374608, 48.8555910 2.3384582, 48.8556378 2.3385568, 48.8537453 2.3365413, 48.8557427 2.3387366, 48.8534529 2.3385450, 48.8691076 2.3112127, 48.8293608 2.3803043, 48.8296767 2.3796195, 48.8299075 2.3795677, 48.8299220 2.3787029, 48.8296558 2.3789838, 48.8701795 2.3108738, 48.8701112 2.3111019, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8673734 2.3222301, 48.8643001 2.3323292, 48.8695610 2.3204803, 48.8693756 2.3206236, 48.8705692 2.3211241, 48.8701399 2.3208052, 48.8706806 2.3211802, 48.8703312 2.3232727, 48.8714664 2.3224733, 48.8711649 2.3221410, 48.8079896 2.3576969, 48.8086083 2.3629931, 48.8413457 2.3655792, 48.8712520 2.3169520, 48.8712577 2.3176917, 48.8729875 2.3210140, 48.8727654 2.3210286, 48.8731588 2.3180736, 48.8726568 2.3215983, 48.8726629 2.3106385, 48.8727071 2.3105863, 48.8703638 2.3102774, 48.8723435 2.3099599, 48.8727117 2.3106761, 48.8725939 2.3104452, 48.8723529 2.3102456, 48.8714188 2.3150011, 48.8806819 2.3876000, 48.8732419 2.3115596, 48.8737653 2.3157653, 48.8740832 2.3160181, 48.8728071 2.3158911, 48.8738587 2.3163169, 48.8729521 2.3158478, 48.8740946 2.3177657, 48.8737509 2.3196440, 48.8744903 2.3184375, 48.8744495 2.3205466, 48.8755838 2.3199456, 48.8750678 2.3201909, 48.8396584 2.3567615, 48.8397067 2.3568218, 48.8776040 2.3524312, 48.8738325 2.3224396, 48.8735529 2.3223447, 48.8736367 2.3223675, 48.8712562 2.3235785, 48.8734665 2.3242182, 48.8713058 2.3233311, 48.8732551 2.3241335, 48.8729576 2.3236844, 48.8713495 2.3232715, 48.8726217 2.3262164, 48.8722237 2.3257923, 48.8731505 2.3255205, 48.8724761 2.3240966, 48.8721839 2.3251685, 48.8719895 2.3260176, 48.8279138 2.3225247, 48.8832583 2.3346263, 48.8832465 2.3341658, 48.8831954 2.3348376, 48.8842151 2.3311538, 48.8830070 2.3349691, 48.8833032 2.3455032, 48.8841705 2.3313488, 48.8826156 2.3432538, 48.8834306 2.3335452, 48.8841164 2.3315750, 48.8824079 2.3419280, 48.8834666 2.3339320, 48.8831738 2.3344061, 48.8821954 2.3389929, 48.8836632 2.3332864, 48.8831695 2.3452574, 48.8824739 2.3367661, 48.8829388 2.3356827, 48.8831317 2.3458945, 48.8843696 2.3305004, 48.8842302 2.3305121, 48.8826517 2.3426287, 48.8827762 2.3362216, 48.8839947 2.3320999, 48.8842717 2.3309204, 48.8824891 2.3425994, 48.8830995 2.3449030, 48.8829578 2.3351297, 48.8832939 2.3340079, 48.8830087 2.3354500, 48.8840806 2.3311362, 48.8827159 2.3359415, 48.8828527 2.3354881, 48.8840902 2.3316931, 48.8911573 2.3437849, 48.8841548 2.3308314, 48.8839884 2.3315392, 48.8827419 2.3443694, 48.8824955 2.3419279, 48.8842291 2.3288540, 48.8840681 2.3286855, 48.8841801 2.3289398, 48.8859483 2.3285578, 48.8851713 2.3293553, 48.8461325 2.3412680, 48.8674254 2.3444285, 48.8744933 2.3211100, 48.8756119 2.3237102, 48.8743886 2.3211490, 48.8746980 2.3252714, 48.8750673 2.3239545, 48.8751646 2.3250295, 48.8753759 2.3236510, 48.8748826 2.3266542, 48.8752230 2.3264851, 48.8753241 2.3259291, 48.8752570 2.3254427, 48.8741256 2.3249605, 48.8740876 2.3267342, 48.8741599 2.3254911, 48.8741556 2.3274201, 48.8759721 2.3267452, 48.8741206 2.3250025, 48.8742483 2.3248090, 48.8780124 2.3180149, 48.8761914 2.3213046, 48.8754293 2.3236426, 48.8758310 2.3206114, 48.8769049 2.3214132, 48.8760259 2.3235129, 48.8765466 2.3235471, 48.8762683 2.3234720, 48.8778017 2.3225743, 48.8771550 2.3220451, 48.8869689 2.3475030, 48.8604478 2.3444956, 48.8777590 2.3228786, 48.8803557 2.3235567, 48.8801220 2.3241052, 48.8776805 2.3267977, 48.8778520 2.3265712, 48.8770026 2.3270417, 48.8796202 2.3268466, 48.8785701 2.3268262, 48.8797765 2.3268873, 48.8794888 2.3267113, 48.8766444 2.3270121, 48.8797413 2.3271672, 48.8830756 2.3269207, 48.8831176 2.3264261, 48.8820671 2.3242802, 48.8821564 2.3257619, 48.8808916 2.3244418, 48.8807077 2.3245325, 48.8835944 2.3283960, 48.8833162 2.3276704, 48.8832767 2.3277563, 48.8834770 2.3281748, 48.8837504 2.3286298, 48.8840835 2.3286332, 48.8834171 2.3280471, 48.8836441 2.3266599, 48.8833400 2.3254009, 48.8829218 2.3256282, 48.8829212 2.3254797, 48.8831342 2.3236837, 48.8830214 2.3238111, 48.8801277 2.3203119, 48.8793007 2.3221454, 48.8796822 2.3216553, 48.8799079 2.3202876, 48.8798173 2.3215782, 48.8799360 2.3212877, 48.8805205 2.3183206, 48.8813689 2.3170128, 48.8810818 2.3162341, 48.8799932 2.3179419, 48.8779762 2.3183300, 48.8786152 2.3156839, 48.8798040 2.3153072, 48.8785087 2.3157093, 48.8778652 2.3158506, 48.8223980 2.3278952, 48.8794469 2.3138767, 48.8769627 2.3148350, 48.8791820 2.3141155, 48.8766669 2.3130694, 48.8767157 2.3178938, 48.8767711 2.3179268, 48.8753406 2.3169637, 48.8749225 2.3191966, 48.8754098 2.3151509, 48.8749869 2.3172752, 48.8749238 2.3194549, 48.8752650 2.3165061, 48.8558538 2.3252896, 48.8738521 2.3147064, 48.8225465 2.3277499, 48.8751556 2.3094294, 48.8749212 2.3089779, 48.8731957 2.3115713, 48.8188018 2.3371410, 48.8733445 2.3091989, 48.8745431 2.3093666, 48.8237172 2.3265140, 48.8477369 2.3121791, 48.8496728 2.3082844, 48.8185040 2.3384113, 48.8181578 2.3401279, 48.8221841 2.3293882, 48.8729879 2.3074334, 48.8724450 2.3072214, 48.8700986 2.3070512, 48.8699553 2.3082890, 48.8707572 2.3085752, 48.8696331 2.3067786, 48.8707001 2.3083322, 48.8694349 2.3074180, 48.8703856 2.3070023, 48.8715518 2.3062553, 48.8715784 2.3063992, 48.8715219 2.3073286, 48.8713131 2.3073190, 48.8629714 2.3463765, 48.8666488 2.3440729, 48.8708475 2.3057806, 48.8674712 2.3054788, 48.8657528 2.3040463, 48.8669256 2.3076130, 48.8668818 2.3076173, 48.8672769 2.3062806, 48.8670111 2.3076126, 48.8313695 2.3205695, 48.8770626 2.3411440, 48.8229279 2.3305939, 48.8602188 2.3423098, 48.8613591 2.3400077, 48.8583933 2.3023795, 48.8723302 2.3781841, 48.8675571 2.3965533, 48.8689212 2.3954887, 48.8697942 2.3944982, 48.8711155 2.4001775, 48.8716186 2.4041500, 48.8727345 2.3796635, 48.8706337 2.3954670, 48.8713425 2.4039078, 48.8710202 2.3789233, 48.8788328 2.3896914, 48.8600728 2.4041262, 48.8526933 2.4056082, 48.8597085 2.4049673, 48.8583918 2.4006119, 48.8448202 2.3293072, 48.8433715 2.3266113, 48.8370007 2.3812275, 48.8646790 2.4054480, 48.8461742 2.4105318, 48.8465849 2.4113407, 48.8648400 2.4152310, 48.8646770 2.3992490, 48.8819322 2.3258693, 48.8159221 2.3770557, 48.8697412 2.3069468, 48.8701205 2.3072750, 48.8698436 2.3061758, 48.8694849 2.3077729, 48.8696809 2.3071292, 48.8699522 2.3058242, 48.8704110 2.3068932, 48.8384390 2.3511134, 48.8382008 2.3505003, 48.8382672 2.3505293, 48.8382699 2.3505108, 48.8378958 2.3507127, 48.8377870 2.3508117, 48.8378105 2.3508549, 48.8891960 2.3333376, 48.8893758 2.3334530, 48.8375022 2.3543890, 48.8390096 2.3532786, 48.8389834 2.3506256, 48.8386419 2.3508748, 48.8930467 2.3394449, 48.8799166 2.3359231, 48.8389664 2.3530576, 48.8384933 2.3512141, 48.8382170 2.3510056, 48.8379492 2.3512092, 48.8376898 2.3513509, 48.8378570 2.3515198, 48.8376483 2.3516414, 48.8204882 2.3602086, 48.8203447 2.3628121, 48.8199857 2.3627088, 48.8199140 2.3618618, 48.8202391 2.3951491, 48.8191259 2.3966796, 48.8339810 2.3847461, 48.8373832 2.3826403, 48.8353141 2.3838347, 48.8397720 2.3826569, 48.8352990 2.3814978, 48.8415341 2.3497282, 48.8135137 2.3767015, 48.8108413 2.3796908, 48.8158317 2.3769711, 48.8614760 2.3530830, 48.8604416 2.3503543, 48.8598478 2.3513855, 48.8139181 2.3758182, 48.8737994 2.3354968, 48.8824947 2.3773446, 48.8885223 2.3927021, 48.8884941 2.3926163, 48.8885364 2.3928738, 48.8885830 2.3930712, 48.8886258 2.3931229, 48.8888115 2.3939896, 48.8233195 2.3476283, 48.8557793 2.4084458, 48.8935929 2.3994808, 48.8189768 2.3657077, 48.8234454 2.3709722, 48.8227762 2.3624835, 48.8214034 2.3722415, 48.8207003 2.3640557, 48.8260744 2.3543019, 48.8762458 2.4177548, 48.8787743 2.4087695, 48.8790383 2.4084495, 48.8782046 2.4088226, 48.8793770 2.4082476, 48.8785854 2.4080833, 48.8244936 2.3379891, 48.8222464 2.3552235, 48.8233563 2.3542079, 48.8246704 2.3465277, 48.8251740 2.3417242, 48.8239192 2.3485650, 48.8238645 2.3485192, 48.8242035 2.3397900, 48.8244362 2.3385188, 48.8238988 2.3446115, 48.8246212 2.3416597, 48.8819609 2.3610276, 48.8831626 2.3618001, 48.8832736 2.3614499, 48.8829824 2.3614134, 48.8835841 2.3602483, 48.8839950 2.3594946, 48.8833936 2.3599667, 48.8828988 2.3592335, 48.8828405 2.3615206, 48.8827589 2.3595149, 48.8835628 2.3609310, 48.8840217 2.3614210, 48.8829252 2.3616011, 48.8829454 2.3619100, 48.8828267 2.3620896, 48.8824542 2.3621063, 48.8735147 2.3546804, 48.8725743 2.3544129, 48.8679601 2.3808000, 48.8733935 2.3902484, 48.8739298 2.3893471, 48.8821165 2.3636110, 48.8787523 2.3641791, 48.8775739 2.3642408, 48.8770173 2.3640220, 48.8800819 2.3647141, 48.8803249 2.3646120, 48.8802548 2.3643651, 48.8937287 2.3847900, 48.8952805 2.3850234, 48.8799725 2.3588623, 48.8800272 2.3588101, 48.8801565 2.3594651, 48.8806816 2.3601083, 48.8815776 2.3583327, 48.8827513 2.3591491, 48.8817822 2.3584614, 48.8829349 2.3636381, 48.8727865 2.3799743, 48.8727273 2.3786615, 48.8912148 2.3413495, 48.8517860 2.3418206, 48.8829772 2.3594750, 48.8796109 2.3574120, 48.8795879 2.3575096, 48.8796495 2.3570308, 48.8797114 2.3574553, 48.8804717 2.3578445, 48.8608729 2.3451379, 48.8482752 2.3934752, 48.8792421 2.3631885, 48.8784279 2.3643183, 48.8605186 2.3511396, 48.8607908 2.3512861, 48.8934866 2.3992947, 48.8936838 2.3993233, 48.8826930 2.3668426, 48.8826392 2.3667648, 48.8770806 2.3638519, 48.8601059 2.3247967, 48.8599671 2.3250425, 48.8601182 2.3248078, 48.8640823 2.3242375, 48.8472376 2.3539786, 48.8832324 2.3637211, 48.8820288 2.3635484, 48.8822211 2.3634868, 48.8753587 2.3261663, 48.8760417 2.3267034, 48.8549710 2.3707330, 48.8796547 2.3374136, 48.8794368 2.3375133, 48.8219547 2.3608058, 48.8193723 2.3655267, 48.8196355 2.3653170, 48.8669641 2.3142243, 48.8651920 2.3140147, 48.8670174 2.3136289, 48.8657282 2.3139318, 48.8651787 2.3134167, 48.8659279 2.3136078, 48.8763139 2.3563480, 48.8702381 2.3689388, 48.8705380 2.3685763, 48.8809351 2.3625812, 48.8809545 2.3624632, 48.8807358 2.3629915, 48.8827554 2.3649189, 48.8831311 2.3654083, 48.8830941 2.3655236, 48.8832881 2.3655987, 48.8833481 2.3657221, 48.8839354 2.3678464, 48.8838331 2.3670954, 48.8839358 2.3671407, 48.8296146 2.3822728, 48.8296210 2.3809399, 48.8289786 2.3807812, 48.8280188 2.3803469, 48.8280552 2.3808361, 48.8284669 2.3791072, 48.8292843 2.3823232, 48.8294517 2.3827405, 48.8291010 2.3833382, 48.8287974 2.3821578, 48.8286556 2.3812238, 48.8282637 2.3802920, 48.8293967 2.3790084, 48.8297120 2.3791681, 48.8299110 2.3769622, 48.8293821 2.3782449, 48.8289803 2.3785924, 48.8281932 2.3793805, 48.8283867 2.3805867, 48.8314453 2.3762846, 48.8310761 2.3766188, 48.8321522 2.3756247, 48.8332346 2.3745478, 48.8340181 2.3740832, 48.8511260 2.3460443, 48.8580602 2.3089956, 48.8517830 2.3177917, 48.8595784 2.3072201, 48.8597452 2.3084577, 48.8746858 2.3662628, 48.8425329 2.3202995, 48.8679999 2.3369853, 48.8318780 2.3674139, 48.8444634 2.4058653, 48.8903045 2.3534684, 48.8804027 2.3645128, 48.8809954 2.3651002, 48.8807643 2.3648588, 48.8808736 2.3650414, 48.8807784 2.3649259, 48.8806639 2.3647867, 48.8806637 2.3648615, 48.8809755 2.3651656, 48.8795889 2.3635682, 48.8782154 2.3621471, 48.8790673 2.3627937, 48.8775877 2.3615896, 48.8781096 2.3616482, 48.8776297 2.3614015, 48.8764602 2.3609294, 48.8765025 2.3607095, 48.8763120 2.3610528, 48.8765925 2.3611628, 48.8761919 2.3607846, 48.8762341 2.3608075, 48.8905790 2.4065144, 48.8361906 2.3922156, 48.8847598 2.3507721, 48.8846886 2.3508402, 48.8802074 2.3638169, 48.8792090 2.3625482, 48.8812463 2.3652224, 48.8806571 2.3643506, 48.8813045 2.3655093, 48.8822323 2.3662711, 48.8821920 2.3662947, 48.8828408 2.3670033, 48.8831548 2.3679716, 48.8830789 2.3673359, 48.8827050 2.3670033, 48.8475310 2.3871419, 48.8397936 2.3818812, 48.8243977 2.3360819, 48.8649222 2.3994933, 48.8297310 2.3179488, 48.8516782 2.3146314, 48.8628604 2.3719559, 48.8677797 2.3773892, 48.8365930 2.3046690, 48.8363767 2.4236251, 48.8295071 2.4201091, 48.8300361 2.4231832, 48.8295708 2.4234828, 48.8384857 2.3139931, 48.8880790 2.3433440, 48.8425610 2.3055230, 48.8488720 2.3128820, 48.8817158 2.3974038, 48.8345717 2.3321583, 48.8517060 2.3188780, 48.8430906 2.4215578, 48.8597630 2.3718080, 48.8322990 2.3969380, 48.8852454 2.3310516, 48.8612160 2.3941080, 48.8397680 2.3287550, 48.8893940 2.3388820, 48.8562087 2.3767474, 48.8556820 2.3852020, 48.8238387 2.3531949, 48.8674870 2.3165830, 48.8315645 2.4109263, 48.8312210 2.4129893, 48.8311370 2.3128840, 48.8778330 2.3934820, 48.8555310 2.3895370, 48.8417190 2.3204800, 48.8551080 2.3942800, 48.8599920 2.3625150, 48.8270122 2.3540304, 48.8424551 2.3888122, 48.8623280 2.3486460, 48.8855390 2.3268800, 48.8501704 2.3439958, 48.8525988 2.4088082, 48.8316177 2.3780517, 48.8898369 2.3739136, 48.8307590 2.3592040, 48.8526713 2.3815527, 48.8417000 2.3374070, 48.8210197 2.3568688, 48.8951024 2.3643279, 48.8433760 2.3364170, 48.8504870 2.3502540, 48.8654640 2.3863600, 48.8702780 2.3853090, 48.8684460 2.3844060, 48.8483008 2.3594250, 48.8743960 2.3620000, 48.8590555 2.3853281, 48.8708487 2.3842762, 48.8808400 2.3880660, 48.8185772 2.3545050, 48.8221640 2.3407800, 48.8861910 2.3437000, 48.8229962 2.3483008, 48.8548880 2.3860580, 48.8334140 2.3198533, 48.8342986 2.3307561, 48.8649444 2.4051523, 48.8711656 2.3608619, 48.8683392 2.3860944, 48.8512040 2.3336860, 48.8211700 2.3525560, 48.8412050 2.4011810, 48.8957085 2.3611060, 48.8280471 2.4193059, 48.8319760 2.4160891, 48.8322537 2.4156461, 48.8404327 2.4302364, 48.8523056 2.3854632, 48.8827393 2.3748215, 48.8649924 2.3911518, 48.8283394 2.3695038, 48.8814860 2.3253960, 48.8890670 2.3382500, 48.8713595 2.3858455, 48.8756264 2.3549455, 48.8316594 2.3202088, 48.8940100 2.3515980, 48.8515687 2.3455917, 48.8606179 2.4048647, 48.8221234 2.3755099, 48.8501856 2.3598181, 48.8832242 2.3300482, 48.8543340 2.3134030, 48.8479841 2.3021348, 48.8783392 2.3518796, 48.8672620 2.3546160, 48.8373130 2.3123540, 48.8929520 2.3468380, 48.8319794 2.3254293, 48.8876110 2.3980200, 48.8581731 2.4063523, 48.8581782 2.3488219, 48.8579930 2.3811530, 48.8701720 2.3941990, 48.8252925 2.3693389, 48.8528480 2.3236680, 48.8366880 2.3168190, 48.8311305 2.3217527, 48.8760549 2.4066379, 48.8224115 2.3234656, 48.8648810 2.3598580, 48.8563720 2.3423640, 48.8785620 2.3603690, 48.8656244 2.4005700, 48.8678880 2.4110180, 48.8782870 2.3930910, 48.8687996 2.3670827, 48.8488580 2.3354220, 48.8323838 2.3266258, 48.8302050 2.3165310, 48.8578985 2.3627922, 48.8338684 2.3623631, 48.8186719 2.3602335, 48.8311679 2.3698529, 48.8353270 2.3472350, 48.8675640 2.3439900, 48.8435250 2.3852390, 48.8239822 2.3186264, 48.8847495 2.3583714, 48.8680920 2.3674820, 48.8749920 2.3693880, 48.8691100 2.3880580, 48.8927720 2.3393440, 48.8582469 2.3636013, 48.8847394 2.3599665, 48.8708650 2.3267180, 48.8851070 2.3774500, 48.8759177 2.3199403, 48.8411853 2.3632232, 48.8618850 2.3795690, 48.8766520 2.3471580, 48.8432899 2.3273991, 48.8863250 2.3533990, 48.8501986 2.3439620, 48.8937263 2.3632365, 48.8505319 2.3140947, 48.8866720 2.3745570, 48.8519585 2.3815373, 48.8735686 2.3764151, 48.8486812 2.4047540, 48.8186727 2.3590770, 48.8422355 2.3539722, 48.8862884 2.3363224, 48.8940029 2.3839514, 48.8509163 2.4000959, 48.8737600 2.4116660, 48.8608430 2.4112060, 48.8729910 2.3967970, 48.8569010 2.3829850, 48.8670820 2.3921970, 48.8394056 2.4219004, 48.8491125 2.4034753, 48.8387600 2.3533490, 48.8650341 2.4104986, 48.8939970 2.3494640, 48.8765790 2.3317425, 48.8570984 2.3707315, 48.8861355 2.3561753, 48.8446043 2.3875639, 48.8780460 2.3546040, 48.8885760 2.3372580, 48.8544710 2.3306000, 48.8482791 2.3738928, 48.8541916 2.4013975, 48.8671567 2.3104167, 48.8674916 2.3104095, 48.8653971 2.3105177, 48.8678026 2.3100770, 48.8656474 2.3104264, 48.8799198 2.3624384, 48.8804191 2.3624653, 48.8801632 2.3624358, 48.8806906 2.3621407, 48.8807012 2.3618242, 48.8807735 2.3621112, 48.8477459 2.4005894, 48.8682247 2.3381270, 48.8681145 2.3380654, 48.8167343 2.3794519, 48.8365374 2.3516855, 48.8815009 2.3685984, 48.8124881 2.3760676, 48.8155517 2.3934471, 48.8319137 2.3445927, 48.8143542 2.3787887, 48.8471866 2.3534537, 48.8491388 2.3559696, 48.8406432 2.3520718, 48.8408454 2.3523400, 48.8406538 2.3514482, 48.8390129 2.3499462, 48.8315105 2.3698744, 48.8387533 2.3310982, 48.8395777 2.3302123, 48.8490162 2.3701002, 48.8523614 2.3398708, 48.8521302 2.3389535, 48.8249480 2.3573521, 48.8401996 2.3509062, 48.8403358 2.3506549, 48.8928215 2.3985124, 48.8740698 2.3727422, 48.8463451 2.3737061, 48.8498772 2.3811118, 48.8495091 2.3797387, 48.8495044 2.3793334, 48.8465065 2.3730628, 48.8463681 2.3733407, 48.8459991 2.3734585, 48.8465800 2.3730993, 48.8465204 2.3733044, 48.8433254 2.3023574, 48.8435384 2.3065535, 48.8150286 2.3456431, 48.8148511 2.3492039, 48.8366110 2.3126681, 48.8700560 2.3301669, 48.8781954 2.4224230, 48.8905420 2.3939914, 48.8953649 2.3864414, 48.8772168 2.4062867, 48.8921927 2.3896612, 48.8707204 2.3239555, 48.8705451 2.3238330, 48.8706016 2.3238683, 48.8377715 2.3234750, 48.8406208 2.3129284, 48.8411414 2.3136506, 48.8388721 2.3164471, 48.8384100 2.3116290, 48.8401231 2.3149792, 48.8542991 2.3674061, 48.8538841 2.3681040, 48.8533487 2.3667989, 48.8536236 2.3667526, 48.8537034 2.3664740, 48.8536267 2.3664311, 48.8193627 2.3266599, 48.8396268 2.3145492, 48.8404224 2.3130691, 48.8403603 2.3126619, 48.8430176 2.3242123, 48.8388336 2.3158922, 48.8408422 2.3172666, 48.8415445 2.3143815, 48.8412580 2.3079007, 48.8425738 2.3218677, 48.8410422 2.3148300, 48.8749075 2.3418631, 48.8740990 2.3471708, 48.8759825 2.3462270, 48.8739914 2.3464038, 48.8760665 2.3440322, 48.8741142 2.3446221, 48.8742352 2.3423076, 48.8752606 2.3418409, 48.8751282 2.3408094, 48.8760583 2.3441230, 48.8762130 2.3456817, 48.8757020 2.3437474, 48.8741222 2.3448869, 48.8766243 2.3463455, 48.8752057 2.3418014, 48.8737830 2.3446276, 48.8750436 2.3412323, 48.8747398 2.3467172, 48.8741144 2.3424987, 48.8738360 2.3447471, 48.8756838 2.3435083, 48.8761473 2.3456662, 48.8760516 2.3450644, 48.8770209 2.3458704, 48.8769144 2.3458107, 48.8479223 2.3736079, 48.8451934 2.3802706, 48.8362921 2.4047413, 48.8758907 2.3810965, 48.8325290 2.3252190, 48.8276699 2.3261967, 48.8326630 2.3254130, 48.8724084 2.3639647, 48.8516854 2.3468389, 48.8417733 2.3185097, 48.8411418 2.3133493, 48.8485184 2.4348611, 48.8485081 2.4353061, 48.8368728 2.3346505, 48.8482882 2.3806325, 48.8413530 2.3568801, 48.8442705 2.3560097, 48.8424181 2.3609453, 48.8447026 2.3568665, 48.8435512 2.3549103, 48.8448858 2.3578698, 48.8445537 2.3572323, 48.8460917 2.3593780, 48.8446377 2.3567328, 48.8419222 2.3590115, 48.8438344 2.3546970, 48.8437534 2.3546611, 48.8450203 2.3575273, 48.8460448 2.3594929, 48.8437555 2.3548025, 48.8439256 2.3553329, 48.8413724 2.3560171, 48.8455890 2.3583924, 48.8437212 2.3551124, 48.8429819 2.3631352, 48.8428723 2.3552404, 48.8442344 2.3557221, 48.8427689 2.3623241, 48.8419694 2.3616061, 48.8420406 2.3624430, 48.8421125 2.3625595, 48.8421654 2.3615859, 48.8394820 2.3097854, 48.8904147 2.3597111, 48.8839900 2.3286046, 48.8839605 2.3284938, 48.8949842 2.3821818, 48.8947991 2.3827102, 48.8951764 2.3824259, 48.8785492 2.3318734, 48.8911227 2.4028435, 48.8689109 2.3408822, 48.8275263 2.3351820, 48.8584723 2.4148023, 48.8899959 2.3389104, 48.8763431 2.4041075, 48.8362844 2.3061932, 48.8413551 2.3134214, 48.8406209 2.3131425, 48.8408995 2.3133856, 48.8366118 2.3066363, 48.8360758 2.3099894, 48.8377889 2.3112404, 48.8801236 2.3667122, 48.8799930 2.3669160, 48.8256117 2.3156483, 48.8846736 2.3626003, 48.8845801 2.3625895, 48.8846083 2.3626888, 48.8842378 2.3608157, 48.8833010 2.3854417, 48.8846806 2.3623964, 48.8797648 2.3567638, 48.8906387 2.3764631, 48.8867364 2.3716195, 48.8787241 2.3620455, 48.8855864 2.3701866, 48.8917841 2.3754089, 48.8910215 2.4011225, 48.8909532 2.3762481, 48.8716440 2.3678590, 48.8810608 2.3640684, 48.8810016 2.3640265, 48.8815607 2.3646012, 48.8817018 2.3639112, 48.8842012 2.3591315, 48.8842153 2.3560766, 48.8880139 2.3770318, 48.8880685 2.3769540, 48.8243361 2.3260774, 48.8240301 2.3251973, 48.8235176 2.3258353, 48.8235582 2.3253743, 48.8233119 2.3260789, 48.8225768 2.3276097, 48.8229502 2.3248811, 48.8413446 2.3177334, 48.8410150 2.3160260, 48.8412041 2.3167359, 48.8408951 2.3161732, 48.8412756 2.3177202, 48.8436874 2.3302939, 48.8888236 2.3460678, 48.8955600 2.3458430, 48.8909736 2.3451546, 48.8878856 2.3659310, 48.8733204 2.3254505, 48.8845445 2.3602834, 48.8848152 2.3606854, 48.8846300 2.3608651, 48.8664544 2.3344768, 48.8667755 2.3343748, 48.8676389 2.3332399, 48.8691704 2.3325104, 48.8315183 2.3664031, 48.8314132 2.3666206, 48.8280956 2.3585627, 48.8293080 2.3652192, 48.8271491 2.3665620, 48.8286456 2.3651923, 48.8291187 2.3655696, 48.8308432 2.3659695, 48.8173865 2.3727529, 48.8265805 2.3302230, 48.8269224 2.3285268, 48.8604747 2.3677991, 48.8505335 2.3887324, 48.8414876 2.3868742, 48.8453467 2.3836640, 48.8903952 2.3301771, 48.8369274 2.3592628, 48.8516069 2.3839844, 48.8513298 2.3837511, 48.8655911 2.3030514, 48.8657369 2.3033357, 48.8766152 2.3574727, 48.8240570 2.3358712, 48.8928637 2.3634518, 48.8962560 2.3589998, 48.8907716 2.3308685, 48.8914267 2.3486643, 48.8950968 2.3687029, 48.8912142 2.3513181, 48.8937350 2.3474870, 48.8841667 2.3418884, 48.8894575 2.3334080, 48.8888295 2.3559941, 48.8928646 2.3401075, 48.8866760 2.3532946, 48.8951369 2.3599640, 48.8866165 2.3262539, 48.8883502 2.3535905, 48.8910569 2.3398224, 48.8864478 2.3329208, 48.8901247 2.3605177, 48.8954760 2.3497870, 48.8896461 2.3382212, 48.8846860 2.3536867, 48.8904472 2.3492576, 48.8852757 2.3345602, 48.8944930 2.3415130, 48.8867353 2.3613685, 48.8918507 2.3354184, 48.8928650 2.3444840, 48.8895980 2.3628765, 48.8957920 2.3455810, 48.8944869 2.3522760, 48.8846342 2.3441510, 48.8877079 2.3504076, 48.8861209 2.3568514, 48.8870108 2.3668702, 48.8899467 2.3427294, 48.8885796 2.3472110, 48.8908959 2.3450395, 48.8708908 2.3743059, 48.8703845 2.3744929, 48.8665002 2.3708740, 48.8594585 2.3560654, 48.8606979 2.3554288, 48.8608937 2.3534909, 48.8602163 2.3530380, 48.8587314 2.3571857, 48.8605259 2.3552067, 48.8712890 2.3773958, 48.8776228 2.3708847, 48.8781735 2.3715144, 48.8784859 2.3741475, 48.8786657 2.3782387, 48.8780030 2.3781296, 48.8765046 2.3790929, 48.8790979 2.3742637, 48.8774152 2.3742123, 48.8769989 2.3740996, 48.8873966 2.3492159, 48.8875689 2.3536169, 48.8875165 2.3520499, 48.8508625 2.3961635, 48.8831639 2.3275572, 48.8609081 2.3309365, 48.8437364 2.3392987, 48.8713120 2.3736247, 48.8714742 2.3750525, 48.8713989 2.3748429, 48.8717746 2.3758883, 48.8717450 2.3763419, 48.8717642 2.3765169, 48.8719061 2.3762543, 48.8870068 2.3868037, 48.8715920 2.3753803, 48.8710718 2.3739992, 48.8701850 2.3766208, 48.8702060 2.3709819, 48.8701630 2.3708030, 48.8701560 2.3711369, 48.8705298 2.3731250, 48.8464713 2.3870797, 48.8408726 2.3875568, 48.8707796 2.3732614, 48.8857875 2.3376754, 48.8856834 2.3380986, 48.8908443 2.3617886, 48.8850609 2.3402076, 48.8707630 2.3736928, 48.8709201 2.3740599, 48.8710092 2.3742679, 48.8710893 2.3748362, 48.8562928 2.4086751, 48.8555569 2.4090964, 48.8535427 2.4096248, 48.8661570 2.3251630, 48.8648196 2.3294492, 48.8569556 2.3980459, 48.8564650 2.4027024, 48.8495059 2.3954641, 48.8484892 2.3941720, 48.8495831 2.3952770, 48.8549101 2.3613791, 48.8592147 2.3578986, 48.8591972 2.3579988, 48.8624940 2.3445634, 48.8846348 2.3590969, 48.8477882 2.3978367, 48.8949558 2.3870960, 48.8475082 2.3756380, 48.8480088 2.3759639, 48.8863319 2.3711222, 48.8932223 2.3631390, 48.8920738 2.3615515, 48.8907907 2.3766980, 48.8844341 2.3687996, 48.8933960 2.3636868, 48.8857831 2.3704180, 48.8851652 2.3594355, 48.8882670 2.3737456, 48.8890319 2.3744326, 48.8842463 2.3674355, 48.8929330 2.3634606, 48.8933928 2.3736857, 48.8896780 2.3752100, 48.8842985 2.3684154, 48.8873865 2.3724047, 48.8948588 2.3721971, 48.8862739 2.3595599, 48.8942132 2.3657813, 48.8886939 2.3740545, 48.8955459 2.3703338, 48.8862598 2.3626862, 48.8860205 2.3612559, 48.8897668 2.3683274, 48.8874695 2.3672750, 48.8873800 2.3672402, 48.8872163 2.3671561, 48.8856917 2.3661401, 48.8850074 2.3674278, 48.8843615 2.3542291, 48.8842940 2.3538553, 48.8893604 2.3711944, 48.8830609 2.3674369, 48.8909176 2.3600891, 48.8819509 2.3660462, 48.8890567 2.3712581, 48.8872523 2.3728586, 48.8833210 2.3677773, 48.8859966 2.3713041, 48.8862555 2.3564214, 48.8920710 2.3616583, 48.8837594 2.3683249, 48.8835852 2.3687084, 48.8874192 2.3730547, 48.8843277 2.3553188, 48.8865440 2.3719981, 48.8862163 2.3564628, 48.8892956 2.3534520, 48.8493037 2.3948863, 48.8883918 2.3276047, 48.8527859 2.4060423, 48.8532174 2.4087275, 48.8134004 2.3591607, 48.8467534 2.3735713, 48.8672772 2.3368959, 48.8630516 2.3705475, 48.8296616 2.3177920, 48.8283684 2.3161973, 48.8855880 2.3605114, 48.8857312 2.3605852, 48.8859173 2.3606402, 48.8866286 2.3612403, 48.8902851 2.3688154, 48.8900187 2.3629443, 48.8899798 2.3641177, 48.8899894 2.3635134, 48.8347149 2.3277467, 48.8354063 2.3258802, 48.8358672 2.3242187, 48.8355698 2.3250292, 48.8348588 2.3273891, 48.8350846 2.3267608, 48.8341036 2.3294199, 48.8324180 2.3247172, 48.8342294 2.3264332, 48.8307191 2.3193023, 48.8269809 2.3245691, 48.8304006 2.3192272, 48.8323241 2.3308583, 48.8320415 2.3248498, 48.8709233 2.3331660, 48.8712559 2.3345380, 48.8708364 2.3345554, 48.8701868 2.3794253, 48.8565125 2.3947303, 48.8564548 2.3947397, 48.8463464 2.3945644, 48.8297820 2.3470870, 48.8694854 2.4165551, 48.8320767 2.3388679, 48.8587145 2.3573966, 48.8707845 2.3750862, 48.8700714 2.3755537, 48.8565035 2.3940625, 48.8689943 2.4151668, 48.8955070 2.3483656, 48.8951815 2.3483062, 48.8465689 2.3814277, 48.8470280 2.3414730, 48.8469807 2.3416967, 48.8599466 2.3277279, 48.8470055 2.3415722, 48.8603993 2.3262152, 48.8478006 2.3440011, 48.8471492 2.3421620, 48.8535250 2.3447123, 48.8472967 2.3417837, 48.8368961 2.3177487, 48.8367758 2.3180171, 48.8375111 2.3195564, 48.8396082 2.3324972, 48.8539346 2.3493079, 48.8529322 2.3520857, 48.8559760 2.3666852, 48.8499857 2.3459367, 48.8626827 2.3523046, 48.8618932 2.3433243, 48.8182992 2.3784546, 48.8169487 2.3795873, 48.8485371 2.3779078, 48.8511475 2.3804023, 48.8510187 2.3802119, 48.8506286 2.3783987, 48.8184928 2.3783255, 48.8642832 2.3420572, 48.8824125 2.3814642, 48.8824238 2.3812690, 48.8534825 2.3444519, 48.8533661 2.3445967, 48.8527928 2.3463041, 48.8758609 2.3285927, 48.8530250 2.3465982, 48.8527336 2.3464352, 48.8525998 2.3463499, 48.8526089 2.3464638, 48.8511726 2.3459012, 48.8510655 2.3458688, 48.8510285 2.3479160, 48.8505969 2.3487384, 48.8515005 2.3480197, 48.8505010 2.3475831, 48.8507465 2.3484894, 48.8508738 2.3460187, 48.8512339 2.3482344, 48.8506193 2.3486612, 48.8515100 2.3477222, 48.8656690 2.3706000, 48.8465904 2.3434584, 48.8467134 2.3429597, 48.8482231 2.3417751, 48.8470699 2.3417135, 48.8466322 2.3434321, 48.8481836 2.3416278, 48.8467301 2.3428821, 48.8498704 2.3434646, 48.8764243 2.3592623, 48.8757565 2.3604345, 48.8757885 2.3583741, 48.8760791 2.3593001, 48.8757202 2.3603702, 48.8754673 2.3591581, 48.8422628 2.3136097, 48.8427362 2.3122657, 48.8414932 2.3132873, 48.8429440 2.3130453, 48.8426877 2.3123128, 48.8418232 2.3130030, 48.8425813 2.3133329, 48.8425822 2.3123874, 48.8420308 2.3127675, 48.8425225 2.3124389, 48.8718579 2.3184821, 48.8718922 2.3185257, 48.8719013 2.3184579, 48.8613479 2.3294517, 48.8728991 2.3179333, 48.8718323 2.3192183, 48.8659123 2.3250771, 48.8712346 2.3211809, 48.8712198 2.3210983, 48.8848552 2.3794020, 48.8850887 2.3797004, 48.8849782 2.3792829, 48.8663059 2.3244457, 48.8423192 2.3232600, 48.8433038 2.3543255, 48.8296114 2.3182270, 48.8422545 2.3231808, 48.8495867 2.3963351, 48.8691909 2.3123689, 48.8694855 2.3127606, 48.8520513 2.3398772, 48.8773360 2.3157316, 48.8504365 2.3250405, 48.8566502 2.3266740, 48.8433085 2.3563833, 48.8437841 2.3555072, 48.8437869 2.3553777, 48.8437047 2.3566102, 48.8432890 2.3553540, 48.8433150 2.3563738, 48.8432457 2.3560311, 48.8437851 2.3554321, 48.8433394 2.3563627, 48.8436728 2.3566486, 48.8437841 2.3554689, 48.8611575 2.3438966, 48.8663775 2.3472549, 48.8696963 2.3404343, 48.8696864 2.3404289, 48.8690173 2.3420166, 48.8696240 2.3403949, 48.8690828 2.3406045, 48.8692220 2.3422745, 48.8687999 2.3403122, 48.8686596 2.3417521, 48.8684512 2.3417404, 48.8712109 2.3430984, 48.8696608 2.3393758, 48.8648568 2.3224814, 48.8226335 2.3469267, 48.8488005 2.3485576, 48.8485654 2.3482310, 48.8496798 2.3526713, 48.8497262 2.3529879, 48.8452718 2.3398200, 48.8460712 2.3400150, 48.8455667 2.3397339, 48.8461975 2.3400915, 48.8441700 2.3392159, 48.8446501 2.3392294, 48.8445289 2.3394114, 48.8444122 2.3394917, 48.8446486 2.3394898, 48.8464390 2.3404727, 48.8441471 2.3389604, 48.8878847 2.3259177, 48.8506128 2.3526191, 48.8500084 2.3546558, 48.8511253 2.3510912, 48.8515559 2.3496810, 48.8509952 2.3511014, 48.8521095 2.3485408, 48.8313290 2.3203574, 48.8316539 2.3201884, 48.8472106 2.3483382, 48.8466399 2.3489993, 48.8471676 2.3484712, 48.8472384 2.3483071, 48.8471167 2.3485711, 48.8463190 2.3519261, 48.8451702 2.3458299, 48.8452340 2.3448440, 48.8414796 2.3258678, 48.8407751 2.3245796, 48.8439434 2.3420437, 48.8415876 2.3435962, 48.8420353 2.3432522, 48.8420505 2.3432527, 48.8438494 2.3420774, 48.8460312 2.3413867, 48.8431709 2.3416539, 48.8448275 2.3423892, 48.8426788 2.3414503, 48.8433479 2.3414598, 48.8575636 2.3501179, 48.8496043 2.3739078, 48.8462789 2.3405322, 48.8460866 2.3403696, 48.8463554 2.3405710, 48.8461211 2.3404463, 48.8459922 2.3409379, 48.8394458 2.3383398, 48.8389350 2.3403744, 48.8376389 2.3465515, 48.8375784 2.3462734, 48.8378226 2.3456909, 48.8388735 2.3499896, 48.8391263 2.3497984, 48.8388061 2.3500511, 48.8393158 2.3503572, 48.8414062 2.3496761, 48.8430873 2.3523909, 48.8428744 2.3519560, 48.8430338 2.3494597, 48.8433167 2.3520295, 48.8425969 2.3517238, 48.8429501 2.3517845, 48.8432657 2.3515822, 48.8431709 2.3494420, 48.8428564 2.3519895, 48.8433377 2.3523278, 48.8425907 2.3519394, 48.8415362 2.3502718, 48.8428285 2.3484260, 48.8428073 2.3483266, 48.8446194 2.3521389, 48.8445541 2.3522743, 48.8450551 2.3490236, 48.8445658 2.3524623, 48.8455001 2.3492453, 48.8449589 2.3493182, 48.8452352 2.3492038, 48.8453933 2.3492411, 48.8452357 2.3490360, 48.8451938 2.3492149, 48.8449425 2.3498446, 48.8450354 2.3496519, 48.8449041 2.3498515, 48.8448216 2.3496568, 48.8589666 2.4059365, 48.8389864 2.3510927, 48.8421262 2.3534706, 48.8384619 2.3563683, 48.8375628 2.3535312, 48.8384169 2.3562199, 48.8387726 2.3573303, 48.8387237 2.3571215, 48.8384808 2.3564239, 48.8411226 2.3622939, 48.8395766 2.3564711, 48.8403889 2.3609058, 48.8608198 2.3503260, 48.8520143 2.3467491, 48.8885709 2.3479030, 48.8388290 2.3501857, 48.8386423 2.3498590, 48.8555518 2.3602965, 48.8558414 2.3601168, 48.8580164 2.3612756, 48.8602119 2.3561984, 48.8603491 2.3508475, 48.8585424 2.3554995, 48.8578946 2.3548830, 48.8580164 2.3548706, 48.8168431 2.3604808, 48.8170906 2.3594427, 48.8371125 2.4029059, 48.8584177 2.3025456, 48.8342318 2.3319172, 48.8343455 2.3319342, 48.8344349 2.3317649, 48.8344566 2.3316949, 48.8342256 2.3318425, 48.8344078 2.3318296, 48.8343773 2.3318884, 48.8589842 2.3037923, 48.8571424 2.3046100, 48.8589692 2.3031638, 48.8559597 2.3045704, 48.8589930 2.3030851, 48.8214576 2.3411303, 48.8562829 2.3019390, 48.8597553 2.3011269, 48.8660801 2.3535484, 48.8661318 2.3536080, 48.8841171 2.3650610, 48.8546108 2.3061433, 48.8569221 2.3035938, 48.8417910 2.3293787, 48.8368456 2.3591245, 48.8359122 2.3596749, 48.8600034 2.3094820, 48.8623669 2.3098112, 48.8602874 2.3097025, 48.8624426 2.3091556, 48.8602217 2.3097138, 48.8579055 2.3100803, 48.8593696 2.3144127, 48.8595020 2.3116861, 48.8474359 2.3956182, 48.8530145 2.3117479, 48.8517091 2.3142208, 48.8616904 2.3160412, 48.8568826 2.3152071, 48.8418031 2.3029041, 48.8897504 2.3908138, 48.8501505 2.3397562, 48.8563141 2.3830600, 48.8507370 2.3741124, 48.8499922 2.3740320, 48.8516089 2.3778622, 48.8503505 2.3762126, 48.8498722 2.3743592, 48.8510250 2.3756065, 48.8464501 2.3805579, 48.8465347 2.3810262, 48.8452145 2.3770818, 48.8452780 2.3769369, 48.8456974 2.3753974, 48.8430680 2.3837014, 48.8445706 2.3835054, 48.8560410 2.3690859, 48.8896373 2.3480452, 48.8612999 2.3312271, 48.8622873 2.3343842, 48.8620274 2.3339571, 48.8610641 2.3333414, 48.8615378 2.3364753, 48.8658377 2.3554835, 48.8622606 2.3343531, 48.8619976 2.3337949, 48.8619195 2.3335781, 48.8606634 2.3346215, 48.8655795 2.3559318, 48.8621856 2.3342654, 48.8621093 2.3341739, 48.8610858 2.3333141, 48.8612130 2.3332141, 48.8608811 2.3333659, 48.8619635 2.3336827, 48.8609084 2.3333829, 48.8608024 2.3333169, 48.8622110 2.3342946, 48.8623363 2.3344445, 48.8620231 2.3339156, 48.8612415 2.3331972, 48.8621347 2.3342032, 48.8619759 2.3337185, 48.8620069 2.3338355, 48.8613711 2.3348960, 48.8611609 2.3332471, 48.8608303 2.3333339, 48.8623642 2.3344747, 48.8676735 2.3543284, 48.8619368 2.3336139, 48.8611373 2.3332669, 48.8584322 2.3229184, 48.8178358 2.3756647, 48.8160131 2.3677039, 48.8702176 2.3497792, 48.8702611 2.3495657, 48.8565160 2.3269654, 48.8439160 2.3088973, 48.8474457 2.3180776, 48.8474428 2.3181013, 48.8247155 2.3622282, 48.8231634 2.3625006, 48.8245453 2.3629329, 48.8245788 2.3669133, 48.8215997 2.3632601, 48.8245519 2.3668617, 48.8247113 2.3669079, 48.8254918 2.3663285, 48.8250539 2.3658028, 48.8245418 2.3643383, 48.8217881 2.3649842, 48.8214455 2.3651681, 48.8365061 2.3589584, 48.8494402 2.3154249, 48.8473587 2.3122933, 48.8462262 2.3142889, 48.8299382 2.3626544, 48.8597545 2.4033363, 48.8567106 2.3947298, 48.8563540 2.3948325, 48.8594767 2.3890495, 48.8468991 2.3122150, 48.8478053 2.3133841, 48.8478498 2.3111276, 48.8733076 2.3256182, 48.8714072 2.3293794, 48.8710024 2.3294337, 48.8719199 2.3288943, 48.8724460 2.3296815, 48.8515887 2.3004692, 48.8717034 2.3766791, 48.8540230 2.3997826, 48.8519846 2.4014456, 48.8538606 2.4025990, 48.8554207 2.4011828, 48.8529453 2.4006573, 48.8516581 2.3996110, 48.8513810 2.3980258, 48.8491906 2.3784376, 48.8512398 2.3832978, 48.8508003 2.3840730, 48.8505216 2.3862840, 48.8503732 2.3908375, 48.8503573 2.3914142, 48.8502779 2.3906229, 48.8503926 2.3895903, 48.8503887 2.3930028, 48.8502002 2.3918245, 48.8507491 2.3956735, 48.8664040 2.3693590, 48.8664987 2.3684919, 48.8665787 2.3687395, 48.8672613 2.3653112, 48.8676617 2.3646892, 48.8680319 2.3652462, 48.8677539 2.3647162, 48.8678242 2.3628446, 48.8645657 2.3465079, 48.8672442 2.3624249, 48.8685310 2.3627215, 48.8645339 2.3458426, 48.8682358 2.3624700, 48.8663164 2.3596590, 48.8665784 2.3618269, 48.8647002 2.3457111, 48.8665669 2.3611510, 48.8664790 2.3612544, 48.8658537 2.3525545, 48.8660852 2.3706279, 48.8671863 2.3624934, 48.8665083 2.3616710, 48.8658957 2.3524620, 48.8672351 2.3624899, 48.8670533 2.3622765, 48.8657517 2.3712388, 48.8655880 2.3691209, 48.8417044 2.3764576, 48.8418032 2.3767741, 48.8734234 2.3305255, 48.8944130 2.3404956, 48.8919172 2.3436860, 48.8917691 2.3440528, 48.8715078 2.3339896, 48.8752166 2.3329602, 48.8784002 2.3375553, 48.8759120 2.3269790, 48.8772426 2.3277376, 48.8830873 2.3292402, 48.8809872 2.3359307, 48.8812329 2.3301337, 48.8827025 2.3280076, 48.8810990 2.3316104, 48.8824281 2.3336567, 48.8831967 2.3294138, 48.8766198 2.3392717, 48.8792406 2.3346510, 48.8795478 2.3371494, 48.8796385 2.3372131, 48.8717823 2.3424721, 48.8809484 2.3370198, 48.8769401 2.3393848, 48.8770249 2.3413662, 48.8832546 2.3471915, 48.8809300 2.3404709, 48.8809021 2.3403319, 48.8808071 2.3403392, 48.8821086 2.3394912, 48.8818258 2.3395224, 48.8499483 2.4348207, 48.8651635 2.3419355, 48.8840421 2.3326829, 48.8766106 2.3457504, 48.8765185 2.3448908, 48.8739328 2.3406145, 48.8716545 2.3432165, 48.8718967 2.3415625, 48.8853691 2.3353615, 48.8857113 2.3355174, 48.8855561 2.3353079, 48.8855279 2.3354474, 48.8861381 2.3353884, 48.8480589 2.3805939, 48.8356055 2.4057969, 48.8360885 2.4045153, 48.8379895 2.3992701, 48.8373037 2.4015452, 48.8432331 2.3835289, 48.8471366 2.3867728, 48.8359385 2.4061399, 48.8381251 2.3989722, 48.8438778 2.3820130, 48.8382469 2.3985623, 48.8475339 2.3882237, 48.8472696 2.3870269, 48.8402240 2.3925825, 48.8407841 2.3912112, 48.8368349 2.4023336, 48.8469648 2.3841028, 48.8417221 2.3867120, 48.8416280 2.3866804, 48.8367677 2.4029493, 48.8399742 2.3934259, 48.8356227 2.4057366, 48.8486352 2.3946941, 48.8364138 2.4038057, 48.8371301 2.4025386, 48.8469016 2.3834720, 48.8407749 2.3897142, 48.8472885 2.3869957, 48.8349917 2.4065581, 48.8359164 2.4062185, 48.8366296 2.4029905, 48.8426339 2.3847145, 48.8406474 2.3907616, 48.8364626 2.4043651, 48.8338360 2.4107895, 48.8398239 2.3944271, 48.8378794 2.4004320, 48.8480677 2.3925076, 48.8412536 2.3886959, 48.8417549 2.3864187, 48.8484449 2.3942334, 48.8380872 2.3994343, 48.8477051 2.3885456, 48.8460393 2.3780826, 48.8371231 2.4019810, 48.8470892 2.3842101, 48.8476871 2.3901194, 48.8385089 2.3991495, 48.8400576 2.3948756, 48.8443902 2.3815803, 48.8471042 2.3852055, 48.8471787 2.3866836, 48.8426310 2.3854954, 48.8479792 2.3931721, 48.8449275 2.3804850, 48.8473748 2.3861373, 48.8391909 2.3969895, 48.8475231 2.3881137, 48.8368962 2.4026322, 48.8347163 2.4076218, 48.8359135 2.4058277, 48.8391579 2.3963790, 48.8389784 2.3959056, 48.8384252 2.3989983, 48.8423698 2.3854379, 48.8813769 2.3721944, 48.8475270 2.3021767, 48.8476742 2.3009702, 48.8479740 2.3007339, 48.8477423 2.3011339, 48.8468451 2.3046139, 48.8464494 2.3063550, 48.8455537 2.3108109, 48.8459424 2.3060603, 48.8468885 2.3042494, 48.8450445 2.3104567, 48.8479639 2.3012878, 48.8474822 2.3019418, 48.8475414 2.3012068, 48.8468990 2.3044201, 48.8467540 2.3049111, 48.8476230 2.3013276, 48.8447637 2.3102862, 48.8410891 2.3368145, 48.8473611 2.3081232, 48.8470685 2.3072875, 48.8473569 2.3077931, 48.8471976 2.3076608, 48.8470152 2.3071391, 48.8469054 2.3075203, 48.8469303 2.3075499, 48.8472092 2.3070017, 48.8218802 2.3268475, 48.8250195 2.3264168, 48.8476662 2.3078147, 48.8475588 2.3088840, 48.8474933 2.3107909, 48.8478638 2.3111059, 48.8474398 2.3107795, 48.8809105 2.3400348, 48.8377870 2.3917644, 48.8390532 2.3961644, 48.8388419 2.3895552, 48.8390560 2.3924535, 48.8378894 2.3906889, 48.8381405 2.3924690, 48.8391569 2.3892705, 48.8385292 2.3895336, 48.8397585 2.3884230, 48.8389160 2.3896782, 48.8390438 2.3923714, 48.8384650 2.3928000, 48.8392544 2.3893624, 48.8730035 2.3534809, 48.8654085 2.3767039, 48.8627451 2.3395900, 48.8484357 2.3094387, 48.8482418 2.3105178, 48.8485448 2.3086944, 48.8486504 2.3085581, 48.8512285 2.3098214, 48.8503424 2.3089610, 48.8499851 2.3083895, 48.8504098 2.3090292, 48.8505805 2.3092017, 48.8510836 2.3097113, 48.8518742 2.3103492, 48.8517546 2.3104073, 48.8773925 2.3384012, 48.8514424 2.3108980, 48.8503908 2.3115133, 48.8517685 2.3133289, 48.8513975 2.3107849, 48.8512872 2.3111153, 48.8510873 2.3111882, 48.8514163 2.3135568, 48.8498367 2.3124580, 48.8499808 2.3116300, 48.8517506 2.3131416, 48.8503624 2.3488792, 48.8503408 2.3483420, 48.8570795 2.3793482, 48.8569128 2.3780314, 48.8607706 2.3747898, 48.8527591 2.3685273, 48.8630663 2.3527335, 48.8470660 2.3954688, 48.8601693 2.3891491, 48.8599140 2.3909353, 48.8446026 2.3117965, 48.8792942 2.4149624, 48.8795658 2.4161587, 48.8792801 2.4138949, 48.8792448 2.4147210, 48.8857975 2.3651047, 48.8858404 2.3652834, 48.8707314 2.3497989, 48.8828690 2.3183304, 48.8829889 2.3183223, 48.8829466 2.3176571, 48.8710357 2.3522560, 48.8714920 2.3541352, 48.8716725 2.3535841, 48.8710551 2.3579616, 48.8799989 2.4165267, 48.8788312 2.4158401, 48.8796268 2.4148076, 48.8804360 2.4177825, 48.8774236 2.4101645, 48.8795262 2.4150247, 48.8786231 2.4180717, 48.8805352 2.4178356, 48.8805634 2.4182863, 48.8789194 2.4131901, 48.8442654 2.3304438, 48.8451205 2.3179540, 48.8787372 2.3542451, 48.8783105 2.3537689, 48.8445056 2.3203943, 48.8446279 2.3203361, 48.8845852 2.3601492, 48.8973913 2.3849076, 48.8458069 2.3492233, 48.8481138 2.3765844, 48.8503695 2.3874778, 48.8792727 2.3541794, 48.8800493 2.3536899, 48.8793095 2.3546327, 48.8794561 2.3542776, 48.8794747 2.3547243, 48.8791462 2.3541109, 48.8796589 2.3543864, 48.8788491 2.3549176, 48.8794660 2.3569589, 48.8819418 2.3521616, 48.8820806 2.3518696, 48.8368662 2.3071536, 48.8383079 2.3085101, 48.8773450 2.3706072, 48.8774219 2.3704960, 48.8774256 2.3694794, 48.8839135 2.3676289, 48.8812245 2.3639751, 48.8815039 2.3649120, 48.8734790 2.3750462, 48.8732283 2.3745203, 48.8787212 2.3698437, 48.8458629 2.3710158, 48.8605552 2.3544304, 48.8460660 2.3742687, 48.8426729 2.3023971, 48.8431492 2.3040014, 48.8503634 2.3868517, 48.8503643 2.3849720, 48.8454432 2.3124549, 48.8457318 2.3137224, 48.8615137 2.3197027, 48.8578293 2.3192199, 48.8474837 2.3126225, 48.8512536 2.3251315, 48.8556397 2.3256421, 48.8590997 2.3185547, 48.8486555 2.3203894, 48.8520795 2.3018025, 48.8569538 2.3096130, 48.8614149 2.3094414, 48.8606986 2.3148434, 48.8583091 2.3237904, 48.8566893 2.3067753, 48.8588632 2.3319175, 48.8597138 2.3258235, 48.8436549 2.3146779, 48.8438107 2.3152002, 48.8437516 2.3150319, 48.8726908 2.3752657, 48.8698134 2.3700786, 48.8678130 2.3782397, 48.8673989 2.3038079, 48.8705420 2.3773342, 48.8701060 2.3758709, 48.8757327 2.3977989, 48.8655296 2.3772848, 48.8648666 2.3774480, 48.8674203 2.3758861, 48.8682312 2.3751770, 48.8655345 2.3775152, 48.8693522 2.3713516, 48.8692142 2.3714534, 48.8694819 2.3712557, 48.8685558 2.3695906, 48.8673820 2.3728092, 48.8673041 2.3731992, 48.8690400 2.3726204, 48.8431097 2.3128917, 48.8448779 2.3106086, 48.8431692 2.3127228, 48.8333957 2.3653856, 48.8678500 2.3687750, 48.8649857 2.3752785, 48.8702549 2.3098514, 48.8673662 2.3064825, 48.8768924 2.3218191, 48.8733783 2.3097112, 48.8660987 2.3722759, 48.8626375 2.3735329, 48.8608995 2.3677192, 48.8609387 2.3678708, 48.8633327 2.3688747, 48.8633817 2.3689965, 48.8663125 2.3723460, 48.8649676 2.3711282, 48.8661552 2.3797640, 48.8656909 2.3777859, 48.8639261 2.3703310, 48.8670939 2.3749249, 48.8671390 2.3755303, 48.8639860 2.3704728, 48.8644441 2.3741599, 48.8646935 2.3723809, 48.8644002 2.3730285, 48.8677794 2.3780026, 48.8646865 2.3738115, 48.8509100 2.3440225, 48.8765188 2.3353132, 48.8767451 2.3353322, 48.8764727 2.3353018, 48.8764220 2.3352962, 48.8766354 2.3353309, 48.8765638 2.3353212, 48.8453270 2.3106657, 48.8453817 2.3105262, 48.8448328 2.3107301, 48.8448872 2.3142661, 48.8446342 2.3148283, 48.8445654 2.3175610, 48.8449195 2.3183472, 48.8446117 2.3178842, 48.8445698 2.3179499, 48.8465728 2.3168133, 48.8453227 2.3190283, 48.8455384 2.3189591, 48.8452520 2.3184602, 48.8452353 2.3184253, 48.8454872 2.3119300, 48.8760923 2.3383718, 48.8745269 2.3383294, 48.8751673 2.3379807, 48.8766241 2.3397060, 48.8751689 2.3383360, 48.8750574 2.3385110, 48.8820895 2.3193350, 48.8686720 2.3127647, 48.8671021 2.3110061, 48.8696061 2.3103371, 48.8219925 2.3300366, 48.8244091 2.3255676, 48.8314280 2.3555815, 48.8408412 2.3543039, 48.8322217 2.3293463, 48.8595500 2.3794207, 48.8646004 2.3751995, 48.8674715 2.3750082, 48.8632185 2.3775523, 48.8646245 2.3695884, 48.8637330 2.3792298, 48.8450099 2.3109341, 48.8460501 2.3109746, 48.8612759 2.3785003, 48.8771800 2.3394491, 48.8671825 2.3131358, 48.8668030 2.3107239, 48.8543533 2.3962677, 48.8668874 2.3528247, 48.8680937 2.3485890, 48.8592377 2.3714158, 48.8592072 2.3714462, 48.8602229 2.3727573, 48.8626137 2.3716303, 48.8546701 2.3693933, 48.8660252 2.3152733, 48.8366253 2.3205727, 48.8323092 2.3130666, 48.8345539 2.3173489, 48.8251368 2.3656211, 48.8254617 2.3652375, 48.8256887 2.3653770, 48.8257690 2.3653555, 48.8243378 2.3638857, 48.8826774 2.3602875, 48.8571479 2.3729822, 48.8577490 2.3740410, 48.8555583 2.3708327, 48.8569621 2.3721314, 48.8567777 2.3726141, 48.8558410 2.3721540, 48.8545648 2.3719500, 48.8536042 2.3707268, 48.8570802 2.3784715, 48.8536882 2.3708103, 48.8538783 2.3707951, 48.8546993 2.3708799, 48.8557897 2.3753324, 48.8573966 2.3799370, 48.8576277 2.3796210, 48.8545778 2.3710477, 48.8544587 2.3716617, 48.8488608 2.3113318, 48.8488629 2.3113707, 48.8480733 2.3112387, 48.8472345 2.3091715, 48.8431101 2.4168376, 48.8446622 2.3729559, 48.8933245 2.3887800, 48.8941743 2.3916574, 48.8542690 2.3799429, 48.8345104 2.3934103, 48.8455102 2.3829497, 48.8553433 2.3747935, 48.8538434 2.3724806, 48.8534383 2.3703873, 48.8418339 2.3497835, 48.8835544 2.3321896, 48.8509424 2.3779382, 48.8695383 2.3950747, 48.8517205 2.3567051, 48.8549268 2.3539661, 48.8264546 2.3410881, 48.8263809 2.3414522, 48.8260610 2.3415721, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8260540 2.3415206, 48.8263361 2.3414409, 48.8261927 2.3418257, 48.8266751 2.3420292, 48.8260655 2.3415482, 48.8250885 2.3208185, 48.8278525 2.3262538, 48.8327381 2.3245435, 48.8329043 2.3245191, 48.8575297 2.3795048, 48.8528709 2.3486106, 48.8862540 2.3333605, 48.8570588 2.3798634, 48.8576289 2.3848279, 48.8539335 2.3775047, 48.8531848 2.3778720, 48.8524031 2.3825246, 48.8565451 2.3836259, 48.8568830 2.3829069, 48.8958659 2.3827194, 48.8966206 2.3871195, 48.8953387 2.3825799, 48.8928628 2.3852622, 48.8219932 2.3234435, 48.8543766 2.3286669, 48.8506577 2.3948665, 48.8231861 2.3549946, 48.8232299 2.3543424, 48.8792690 2.3823512, 48.8211670 2.3407757, 48.8303551 2.3540212, 48.8528721 2.3890596, 48.8546913 2.3857584, 48.8555740 2.3904061, 48.8712861 2.3349203, 48.8713129 2.3350843, 48.8639822 2.3355945, 48.8963398 2.3844708, 48.8543018 2.3064024, 48.8564566 2.3025481, 48.8311615 2.3425606, 48.8314493 2.3411256, 48.8315129 2.3409781, 48.8306954 2.3438443, 48.8594440 2.3503990, 48.8594790 2.3504550, 48.8864724 2.3248425, 48.8865355 2.3247648, 48.8853340 2.3271479, 48.8865796 2.3246830, 48.8856946 2.3275147, 48.8854389 2.3273189, 48.8854208 2.3272834, 48.8865668 2.3247279, 48.8853732 2.3272103, 48.8856651 2.3275744, 48.8853573 2.3271741, 48.8865584 2.3246320, 48.8856885 2.3274765, 48.8453215 2.4289446, 48.8649900 2.3816769, 48.8472498 2.3715912, 48.8460948 2.3709948, 48.8468117 2.3696539, 48.8471469 2.3697404, 48.8473444 2.3778677, 48.8502019 2.3688037, 48.8503931 2.3688912, 48.8506208 2.3689945, 48.8367957 2.3917944, 48.8507314 2.3754330, 48.8461255 2.3694043, 48.8469826 2.3690835, 48.8493300 2.3749472, 48.8341870 2.3157058, 48.8216474 2.3653328, 48.8232565 2.3578824, 48.8230746 2.3579144, 48.8229667 2.3585907, 48.8234162 2.3578095, 48.8224620 2.3587564, 48.8225668 2.3587247, 48.8235590 2.3584151, 48.8223317 2.3587958, 48.8230555 2.3585643, 48.8230325 2.3585712, 48.8280214 2.3265442, 48.8283319 2.3249564, 48.8236808 2.3308088, 48.8520072 2.3570804, 48.8532674 2.3539562, 48.8744843 2.3304643, 48.8200408 2.3479644, 48.8212446 2.3690189, 48.8226584 2.3668672, 48.8190929 2.3443682, 48.8195872 2.3642183, 48.8407510 2.3161284, 48.8408847 2.3255233, 48.8357296 2.3158704, 48.8323111 2.3252588, 48.8289690 2.3280388, 48.8296366 2.3263748, 48.8240050 2.3260887, 48.8257339 2.3264008, 48.8256825 2.3151865, 48.8574201 2.3243023, 48.8459313 2.3090188, 48.8457977 2.3185660, 48.8505096 2.3274022, 48.8311741 2.3447143, 48.8330426 2.3312889, 48.8330416 2.3357290, 48.8305266 2.3291048, 48.8347199 2.3367751, 48.8348054 2.3320949, 48.8346868 2.3410351, 48.8376293 2.3387512, 48.8369790 2.3350851, 48.8349524 2.3463908, 48.8394809 2.3371526, 48.8417537 2.3377112, 48.8416255 2.3485536, 48.8281988 2.3566483, 48.8239378 2.3581173, 48.8340823 2.3537029, 48.8240665 2.3530961, 48.8297239 2.3690723, 48.8404168 2.3535555, 48.8520468 2.3397933, 48.8558630 2.3465049, 48.8528153 2.3347150, 48.8544526 2.3311094, 48.8580548 2.3474799, 48.8598724 2.3490644, 48.8623038 2.3502010, 48.8625013 2.3507772, 48.8636772 2.3510372, 48.8580013 2.3464643, 48.8623046 2.3423204, 48.8603000 2.3464643, 48.8636409 2.3426454, 48.8631527 2.3417623, 48.8650306 2.3407360, 48.8549469 2.3729734, 48.8477025 2.3536570, 48.8658631 2.3695102, 48.8610722 2.3670951, 48.8655959 2.3652444, 48.8655288 2.3523437, 48.8669313 2.3543718, 48.8613680 2.3530523, 48.8626723 2.3594550, 48.8600851 2.3608850, 48.8650242 2.3602350, 48.8437230 2.4019904, 48.8445383 2.3775163, 48.8405196 2.4047985, 48.8395307 2.3783327, 48.8406003 2.3922472, 48.8387954 2.3810242, 48.8537699 2.3826458, 48.8556078 2.3835929, 48.8541941 2.3777992, 48.8495092 2.3936775, 48.8521926 2.3936896, 48.8532589 2.3878909, 48.8504312 2.3841184, 48.8460954 2.3766582, 48.8455898 2.3850416, 48.8649600 2.3947898, 48.8648944 2.3762643, 48.8657274 2.3810297, 48.8575027 2.3926652, 48.8608171 2.3885376, 48.8571820 2.3811598, 48.8582893 2.3802180, 48.8622924 2.3792422, 48.8642156 2.3796666, 48.8634043 2.3873675, 48.8635967 2.3838899, 48.8662870 2.3897869, 48.8490543 2.4025492, 48.8548100 2.3960622, 48.8556270 2.4100482, 48.8544980 2.4122851, 48.8600077 2.4010312, 48.8641235 2.4090336, 48.8649012 2.4008295, 48.8649070 2.3998063, 48.8699848 2.3287478, 48.8750248 2.3145888, 48.8851026 2.3266307, 48.8853192 2.3267751, 48.8833981 2.3265291, 48.8815640 2.3207727, 48.8727102 2.3345720, 48.8707655 2.3471293, 48.8689559 2.3407457, 48.8712959 2.3437499, 48.8844160 2.3292308, 48.8835474 2.3336949, 48.8816820 2.3456299, 48.8832578 2.3459960, 48.8834110 2.3475269, 48.8837284 2.3488082, 48.8763445 2.3614950, 48.8684955 2.3674002, 48.8700553 2.3666721, 48.8762256 2.3723091, 48.8725652 2.3640736, 48.8738041 2.3703747, 48.8774841 2.3709987, 48.8705409 2.3514636, 48.8707624 2.3546578, 48.8690350 2.3562439, 48.8794220 2.3546823, 48.8850648 2.3549532, 48.8818932 2.3663627, 48.8917911 2.3353655, 48.8957759 2.3460150, 48.8891775 2.3451972, 48.8904593 2.3545937, 48.8950801 2.3589964, 48.8751448 2.3735780, 48.8683632 2.3815998, 48.8685956 2.3900339, 48.8735031 2.3753876, 48.8722991 2.3766565, 48.8703700 2.3791942, 48.8770727 2.3925548, 48.8736648 2.3896765, 48.8719517 2.3920209, 48.8891494 2.3933914, 48.8822173 2.3934544, 48.8872647 2.3758855, 48.8888297 2.3790479, 48.8829941 2.3814519, 48.8786649 2.3784063, 48.8855727 2.3811520, 48.8834799 2.3835649, 48.8863045 2.3939114, 48.8709467 2.4091775, 48.8755868 2.3978758, 48.8706206 2.3982918, 48.8759333 2.4069996, 48.8839109 2.3979467, 48.8502257 2.3782954, 48.8503235 2.3783645, 48.8495013 2.3784402, 48.8524128 2.3716564, 48.8792880 2.3773054, 48.8245289 2.3642446, 48.8515963 2.3430149, 48.8704365 2.3414021, 48.8831571 2.3884076, 48.8833528 2.3881059, 48.8850543 2.3872280, 48.8454338 2.3886185, 48.8362694 2.3592046, 48.8369033 2.3593290, 48.8376257 2.3602554, 48.8383701 2.3607602, 48.8634173 2.3547815, 48.8632423 2.3546660, 48.8501938 2.3666710, 48.8538420 2.3492906, 48.8536514 2.3489902, 48.8537524 2.3572131, 48.8540777 2.3579438, 48.8515470 2.3572626, 48.8536419 2.3531333, 48.8479782 2.3529858, 48.8416546 2.3484221, 48.8415381 2.3513578, 48.8760825 2.3441472, 48.8592087 2.3525980, 48.8560015 2.3425743, 48.8315512 2.3198720, 48.8720949 2.3323339, 48.8705731 2.3103284, 48.8580159 2.3469052, 48.8406306 2.3924750, 48.8401706 2.3924398, 48.8408330 2.4201155, 48.8290910 2.3744112, 48.8241209 2.3870877, 48.8241325 2.3878869, 48.8549579 2.3931564, 48.8846283 2.3670547, 48.8843707 2.3678261, 48.8847919 2.3672165, 48.8847056 2.3671187, 48.8845782 2.3669813, 48.8685677 2.3920616, 48.8489936 2.3797035, 48.8467974 2.3756328, 48.8494222 2.3777750, 48.8274992 2.3424210, 48.8467447 2.3755957, 48.8480172 2.3808332, 48.8481089 2.3765510, 48.8481759 2.3764337, 48.8484871 2.3802731, 48.8487838 2.3807914, 48.8570855 2.3550986, 48.8201860 2.3400152, 48.8248017 2.3362648, 48.8243806 2.3892291, 48.8735064 2.3141502, 48.8707525 2.3240257, 48.8858230 2.3749446, 48.8558868 2.4042383, 48.8500456 2.3533390, 48.8544203 2.3257043, 48.8435306 2.3879731, 48.8283297 2.3816403, 48.8274933 2.3708430, 48.8680115 2.3865009, 48.8685414 2.3894117, 48.8320548 2.3861467, 48.8348284 2.3879340, 48.8527619 2.4312139, 48.8503640 2.3847349, 48.8502152 2.3848125, 48.8503348 2.3847070, 48.8487674 2.3765835, 48.8449330 2.3838312, 48.8376243 2.3186409, 48.8351017 2.3201496, 48.8351935 2.3203079, 48.8218202 2.3423613, 48.8444522 2.3901640, 48.8443813 2.3902545, 48.8441304 2.3900727, 48.8441332 2.3900872, 48.8441406 2.3900780, 48.8443950 2.3840945, 48.8444028 2.3766004, 48.8444172 2.3902043, 48.8444988 2.3768719, 48.8828920 2.3240924, 48.8840667 2.3535149, 48.8703495 2.3238202, 48.8675028 2.3316819, 48.8691092 2.3404299, 48.8818734 2.3448089, 48.8933604 2.3480566, 48.8941850 2.3732201, 48.8894834 2.3802541, 48.8880227 2.3896758, 48.8836546 2.3973646, 48.8772808 2.3938276, 48.8750529 2.3991679, 48.8707626 2.3933673, 48.8690447 2.4092159, 48.8735092 2.3750458, 48.8260323 2.3598011, 48.8226689 2.3629591, 48.8552277 2.3952797, 48.8475537 2.4030007, 48.8655330 2.3844487, 48.8698655 2.3794311, 48.8719508 2.3687341, 48.8649647 2.3703759, 48.8576339 2.3709762, 48.8316444 2.3266871, 48.8432411 2.3236379, 48.8563765 2.3554581, 48.8473573 2.3704877, 48.8445644 2.3839569, 48.8432368 2.3854870, 48.8448130 2.3836511, 48.8446673 2.3830913, 48.8446804 2.3831393, 48.8425065 2.3895916, 48.8390807 2.3911401, 48.8459410 2.3879568, 48.8357609 2.3867807, 48.8357070 2.4058099, 48.8635536 2.3457667, 48.8315141 2.3780681, 48.8336684 2.3642546, 48.8241785 2.3576816, 48.8231239 2.3475899, 48.8295076 2.3485033, 48.8267596 2.3417744, 48.8383346 2.3427083, 48.8430603 2.3517476, 48.8403876 2.3625569, 48.8319284 2.3270407, 48.8315363 2.3171405, 48.8369539 2.3208269, 48.8414863 2.3240339, 48.8490817 2.3275344, 48.8497031 2.3273499, 48.8467518 2.3915036, 48.8566373 2.3809209, 48.8847666 2.3373500, 48.8887917 2.3829835, 48.8876043 2.3372648, 48.8399992 2.3240094, 48.8597779 2.3530954, 48.8697908 2.3549967, 48.8394650 2.3235600, 48.8702624 2.3461888, 48.8829861 2.3333274, 48.8392531 2.3231864, 48.8837701 2.3265034, 48.8597455 2.3531991, 48.8692693 2.3318524, 48.8597303 2.3459285, 48.8295361 2.3515265, 48.8794685 2.3296284, 48.8530200 2.3453773, 48.8828282 2.3366019, 48.8810211 2.3348222, 48.8840055 2.3266609, 48.8442922 2.3305405, 48.8275676 2.3774556, 48.8622030 2.3518225, 48.8723016 2.3429996, 48.8785619 2.3313946, 48.8415099 2.3244398, 48.8843397 2.3320078, 48.8436363 2.3254799, 48.8721414 2.3433983, 48.8577976 2.3569319, 48.8407733 2.3243516, 48.8713709 2.3448748, 48.8685182 2.3898030, 48.8472463 2.3959684, 48.8734883 2.3453635, 48.8288148 2.3446816, 48.8678179 2.3891525, 48.8601015 2.3815463, 48.8788666 2.3193694, 48.8701073 2.3787698, 48.8714333 2.3421383, 48.8483455 2.3489543, 48.8475212 2.3521266, 48.8412698 2.3495453, 48.8530650 2.3443173, 48.8701190 2.3487548, 48.8508083 2.3417802, 48.8533984 2.3421350, 48.8484020 2.3408453, 48.8544954 2.3401739, 48.8427727 2.3305988, 48.8747486 2.3240211, 48.8755636 2.3279594, 48.8713796 2.3448127, 48.8717708 2.3553091, 48.8545349 2.3691603, 48.8704786 2.3546023, 48.8436131 2.3220274, 48.8338418 2.3309488, 48.8531440 2.3776869, 48.8487929 2.3780969, 48.8488537 2.3789042, 48.8426136 2.3860555, 48.8462737 2.3755090, 48.8469638 2.3755868, 48.8713001 2.3766068, 48.8704762 2.3775322, 48.8712948 2.3768375, 48.8704356 2.3764056, 48.8712066 2.3768241, 48.8466539 2.3999463, 48.8465081 2.4010506, 48.8449997 2.4059414, 48.8459220 2.4058540, 48.8470725 2.4064857, 48.8426319 2.3973692, 48.8396015 2.3958093, 48.8408405 2.3894586, 48.8404388 2.3885071, 48.8391796 2.3955829, 48.8449573 2.4022523, 48.8432250 2.4013484, 48.8434535 2.4014222, 48.8423480 2.4023598, 48.8461317 2.4105193, 48.8462230 2.4111019, 48.8497121 2.3553355, 48.8476483 2.3769905, 48.8840444 2.3273785, 48.8777522 2.3178837, 48.8716241 2.3914872, 48.8319641 2.3766161, 48.8319830 2.3768014, 48.8420844 2.4108250, 48.8597885 2.3387650, 48.8598288 2.3386151, 48.8599042 2.3391076, 48.8599686 2.3379896, 48.8599978 2.3378565, 48.8600039 2.3391566, 48.8602353 2.3376837, 48.8603309 2.3377357, 48.8604134 2.3393753, 48.8605050 2.3394196, 48.8607293 2.3379406, 48.8607384 2.3392453, 48.8607716 2.3391030, 48.8608290 2.3379926, 48.8609095 2.3384821, 48.8609437 2.3383429, 48.8539886 2.4120537, 48.8776662 2.3398701, 48.8765486 2.3385813, 48.8789843 2.3413053, 48.8777824 2.3398244, 48.8791352 2.3437478, 48.8768988 2.3387135, 48.8775239 2.3395383, 48.8382747 2.4058132, 48.8382837 2.4058464, 48.8383375 2.4059297, 48.8376044 2.4083554, 48.8657387 2.3544863, 48.8383753 2.3982048, 48.8387420 2.3963264, 48.8390768 2.3942535, 48.8371288 2.3917395, 48.8370556 2.3918823, 48.8372166 2.3915674, 48.8387373 2.3961225, 48.8516698 2.3805401, 48.8764828 2.3370142, 48.8755310 2.3372367, 48.8766560 2.3371844, 48.8768851 2.3377701, 48.8766806 2.3400707, 48.8352841 2.3987932, 48.8370920 2.3937052, 48.8356474 2.3972691, 48.8706953 2.3490853, 48.8703131 2.3487884, 48.8278377 2.4034794, 48.8266511 2.4059312, 48.8277778 2.4042796, 48.8255688 2.4051308, 48.8269901 2.4055393, 48.8284062 2.4034364, 48.8266758 2.4052443, 48.8277070 2.4036725, 48.8533507 2.4016216, 48.8662293 2.3379767, 48.8686345 2.3376621, 48.8390600 2.3102329, 48.8917628 2.3346006, 48.8257108 2.3218692, 48.8594342 2.4029865, 48.8687850 2.3380000, 48.8413849 2.3139125, 48.8444671 2.3954139, 48.8491922 2.3899823, 48.8481288 2.3939309, 48.8703423 2.3428105, 48.8710339 2.3430453, 48.8703870 2.3428247, 48.8705105 2.3428082, 48.8731247 2.3808610, 48.8508939 2.3012223, 48.8305422 2.3206552, 48.8304290 2.3205552, 48.8331435 2.3229221, 48.8514993 2.3988476, 48.8500661 2.3838221, 48.8433920 2.3865369, 48.8340319 2.3194403, 48.8337840 2.3198864, 48.8337204 2.3201626, 48.8338246 2.3197979, 48.8314491 2.3414315, 48.8732343 2.3096141, 48.8691716 2.3247431, 48.8696360 2.3251272, 48.8566013 2.3030438, 48.8363741 2.3098652, 48.8447537 2.3186687, 48.8364783 2.3062501, 48.8376916 2.3077038, 48.8366211 2.3097495, 48.8365310 2.3099065, 48.8354238 2.3118648, 48.8356242 2.3114974, 48.8361292 2.3106080, 48.8362908 2.3104294, 48.8386677 2.3065876, 48.8395590 2.3060143, 48.8662137 2.3353607, 48.8660390 2.3352910, 48.8657884 2.3351488, 48.8649854 2.3569095, 48.8645459 2.3566348, 48.8667391 2.3539859, 48.8649994 2.3553511, 48.8639860 2.3693922, 48.8635748 2.3698602, 48.8634416 2.3695504, 48.8635544 2.3694256, 48.8634434 2.3691079, 48.8636313 2.3699957, 48.8637107 2.3697771, 48.8636110 2.3699568, 48.8528319 2.3709145, 48.8716652 2.3369422, 48.8719692 2.3361261, 48.8724813 2.3352798, 48.8715773 2.3365388, 48.8714095 2.3355863, 48.8713898 2.3354731, 48.8714562 2.3349266, 48.8712985 2.3353269, 48.8716006 2.3368692, 48.8716019 2.3368770, 48.8716120 2.3368171, 48.8716165 2.3368125, 48.8725191 2.3353232, 48.8752025 2.3376055, 48.8751468 2.3355442, 48.8750628 2.3386203, 48.8750364 2.3392304, 48.8766742 2.3373282, 48.8766460 2.3368602, 48.8768502 2.3324723, 48.8769295 2.3383704, 48.8769349 2.3331592, 48.8766672 2.3325273, 48.8767858 2.3369975, 48.8768033 2.3372248, 48.8766547 2.3369547, 48.8768072 2.3364970, 48.8758550 2.3388379, 48.8767868 2.3367967, 48.8767450 2.3377873, 48.8768931 2.3327041, 48.8769081 2.3380397, 48.8389372 2.3163214, 48.8156713 2.3582001, 48.8142658 2.3585488, 48.8131105 2.3575134, 48.8715356 2.3340932, 48.8710457 2.3357596, 48.8710628 2.3358464, 48.8717139 2.3340286, 48.8710277 2.3356624, 48.8708929 2.3349679, 48.8710045 2.3355038, 48.8715206 2.3340424, 48.8716898 2.3334554, 48.8720026 2.3359899, 48.8735786 2.3648071, 48.8554556 2.3256454, 48.8386344 2.3143780, 48.8305349 2.3455551, 48.8258967 2.3573107, 48.8288239 2.3418815, 48.8740909 2.3274858, 48.8431975 2.3125168, 48.8707193 2.3495070, 48.8716416 2.3409433, 48.8734969 2.3525798, 48.8711315 2.3440128, 48.8706004 2.3472072, 48.8706911 2.3467398, 48.8709873 2.3449321, 48.8707711 2.3461822, 48.8712885 2.3431427, 48.8721862 2.3501755, 48.8708723 2.3480533, 48.8706525 2.3467197, 48.8737265 2.3505928, 48.8704690 2.3480544, 48.8713484 2.3428832, 48.8716176 2.3411379, 48.8707327 2.3464923, 48.8714861 2.3419548, 48.8705588 2.3479808, 48.8715254 2.3499824, 48.8716074 2.3412011, 48.8716782 2.3500401, 48.8647153 2.3341053, 48.8751154 2.3557100, 48.8749802 2.3559340, 48.8744702 2.3552896, 48.8742779 2.3554847, 48.8784174 2.3564644, 48.8761304 2.3564812, 48.8788443 2.3570270, 48.8753708 2.3561756, 48.8769831 2.3560361, 48.8775010 2.3561316, 48.8773577 2.3564531, 48.8770495 2.3560410, 48.8759259 2.3559201, 48.8785393 2.3568626, 48.8767619 2.3563475, 48.8754523 2.3562375, 48.8786854 2.3569358, 48.8796001 2.3577149, 48.8779934 2.3562593, 48.8782144 2.3566970, 48.8759988 2.3559438, 48.8792586 2.3573016, 48.8789525 2.3570837, 48.8768603 2.3560228, 48.8761180 2.3564486, 48.8761263 2.3564411, 48.8769179 2.3560295, 48.8783334 2.3564225, 48.8261137 2.3420629, 48.8264627 2.3442784, 48.8358630 2.3380882, 48.8172529 2.3602221, 48.8799927 2.3591789, 48.8822759 2.3688196, 48.8811904 2.3637372, 48.8826836 2.3705827, 48.8828802 2.3713360, 48.8835025 2.3736534, 48.8827558 2.3708586, 48.8828255 2.3711188, 48.8812174 2.3638517, 48.8834234 2.3734013, 48.8813765 2.3652818, 48.8817998 2.3666492, 48.8827937 2.3706294, 48.8828326 2.3719171, 48.8828533 2.3714104, 48.8834463 2.3733288, 48.8900402 2.3918023, 48.8912248 2.3930476, 48.8914158 2.3933740, 48.8914454 2.3932139, 48.8946014 2.3912450, 48.8224891 2.3474392, 48.8222126 2.3504401, 48.8256278 2.3503006, 48.8275490 2.3490346, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8750088 2.3393609, 48.8757800 2.3396684, 48.8751634 2.3407635, 48.8233280 2.3543382, 48.8299328 2.3501105, 48.8311758 2.3480989, 48.8371959 2.3514837, 48.8527113 2.3442100, 48.8552739 2.3473751, 48.8624252 2.3386199, 48.8639956 2.3355407, 48.8674261 2.3406263, 48.8659581 2.3419245, 48.8664385 2.3508954, 48.8681380 2.3453696, 48.8676791 2.3454560, 48.8212269 2.3421677, 48.8266942 2.3386593, 48.8493100 2.3284272, 48.8205245 2.3513062, 48.8796296 2.3553194, 48.8800642 2.3523843, 48.8809546 2.3510669, 48.8689508 2.3362959, 48.8700724 2.3349268, 48.8662573 2.3370528, 48.8667422 2.3365735, 48.8699611 2.3351928, 48.8682398 2.3365168, 48.8696120 2.3356753, 48.8676561 2.3370904, 48.8675328 2.3370273, 48.8696664 2.3354448, 48.8698393 2.3358297, 48.8708380 2.3349612, 48.8681500 2.3362914, 48.8672079 2.3368573, 48.8688219 2.3359090, 48.8688160 2.3362566, 48.8688035 2.3365534, 48.8707797 2.3349624, 48.8666564 2.3369830, 48.8666406 2.3370669, 48.8695217 2.3356845, 48.8669153 2.3365074, 48.8702490 2.3349166, 48.8688150 2.3361103, 48.8676983 2.3366997, 48.8681903 2.3364995, 48.8682794 2.3373819, 48.8686158 2.3366832, 48.8696855 2.3354998, 48.8699075 2.3352050, 48.8678747 2.3364447, 48.8733496 2.3352682, 48.8742744 2.3329601, 48.8705692 2.3341202, 48.8482512 2.3292214, 48.8476438 2.3027692, 48.8361875 2.3193936, 48.8315372 2.3291516, 48.8354101 2.3485767, 48.8351279 2.3535099, 48.8348276 2.3668095, 48.8226784 2.3919888, 48.8290119 2.3742988, 48.8751334 2.3514260, 48.8719812 2.3356533, 48.8648963 2.3741522, 48.8626586 2.3715845, 48.8476750 2.3269685, 48.8648724 2.3746850, 48.8649185 2.3746481, 48.8640573 2.3358570, 48.8658609 2.3370619, 48.8641660 2.3361960, 48.8656996 2.3366338, 48.8651667 2.3364852, 48.8652254 2.3367395, 48.8658764 2.3368066, 48.8659797 2.3371165, 48.8640682 2.3359120, 48.8644947 2.3361361, 48.8439514 2.4312009, 48.8599096 2.3178151, 48.8698972 2.3290820, 48.8703362 2.3315753, 48.8710076 2.3200209, 48.8597079 2.3182507, 48.8666350 2.3099131, 48.8703978 2.3225405, 48.8706039 2.3262245, 48.8710247 2.3249533, 48.8702620 2.3312290, 48.8702706 2.3312786, 48.8706031 2.3221827, 48.8577488 2.3222584, 48.8580367 2.3228472, 48.8580518 2.3227826, 48.8609239 2.3145274, 48.8669596 2.3113451, 48.8703163 2.3309310, 48.8707016 2.3218346, 48.8548000 2.3455200, 48.8468000 2.3358800, 48.8527000 2.3492200, 48.8518000 2.3475300, 48.8239147 2.4001430, 48.8275825 2.3495237, 48.8275665 2.3493951, 48.8277214 2.3493461, 48.8278072 2.3494399, 48.8747866 2.3414819, 48.8582656 2.3882446, 48.8432795 2.4310714, 48.8781729 2.3383243, 48.8455210 2.3927387, 48.8570504 2.3810504, 48.8570892 2.3809592, 48.8881295 2.3773067, 48.8764332 2.3253672, 48.8468273 2.3109956, 48.8699382 2.3403209, 48.8658900 2.3506042, 48.8543675 2.3835627, 48.8658986 2.3742587, 48.8663671 2.3715603, 48.8648305 2.3731176, 48.8371729 2.3726157, 48.8972266 2.3855240, 48.8543455 2.3561847, 48.8473600 2.3864659, 48.8796615 2.3550800, 48.8798267 2.3542435, 48.8799837 2.3538854, 48.8818140 2.3525350, 48.8798780 2.3540920, 48.8798990 2.3540330, 48.8795907 2.3547699, 48.8613430 2.3487510, 48.8613780 2.3495790, 48.8575110 2.3466500, 48.8549950 2.3458720, 48.8543860 2.3452440, 48.8538530 2.3437110, 48.8526640 2.3534610, 48.8530320 2.3533850, 48.8529300 2.3536810, 48.8546430 2.3547940, 48.8523740 2.3670920, 48.8472625 2.3418020, 48.8822817 2.3707138, 48.8823434 2.3703224, 48.8801409 2.3753984, 48.8838484 2.3703052, 48.8805044 2.3746913, 48.8419411 2.3897697, 48.8361075 2.3240698, 48.8738314 2.3297043, 48.8727906 2.3327950, 48.8735301 2.3302675, 48.8533006 2.4091489, 48.8537801 2.4114641, 48.8246134 2.4085703, 48.8245079 2.4087393, 48.8263541 2.4052937, 48.8261912 2.4060202, 48.8257011 2.4068892, 48.8697793 2.3750857, 48.8694594 2.3740498, 48.8695851 2.3744330, 48.8698073 2.3749191, 48.8698594 2.3755160, 48.8702910 2.3769090, 48.8616152 2.3446790, 48.8616509 2.3443800, 48.8609430 2.3453853, 48.8624876 2.3424711, 48.8639231 2.3448506, 48.8650409 2.3443222, 48.8650939 2.3440997, 48.8652964 2.3432812, 48.8658825 2.3432946, 48.8659653 2.3433342, 48.8668379 2.3438017, 48.8673891 2.3438562, 48.8674613 2.3438214, 48.8682924 2.3433350, 48.8683330 2.3418525, 48.8683712 2.3423646, 48.8683868 2.3418763, 48.8683986 2.3428322, 48.8240781 2.3667729, 48.8537952 2.4109052, 48.8540420 2.4102463, 48.8535604 2.4103242, 48.8533426 2.4103453, 48.8260577 2.4069482, 48.8533437 2.4110062, 48.8258219 2.4066625, 48.8258786 2.4044670, 48.8530681 2.4104272, 48.8259571 2.4071178, 48.8257808 2.4073707, 48.8251812 2.4076886, 48.8220684 2.4142656, 48.8220695 2.4139829, 48.8230229 2.4110104, 48.8252959 2.4075229, 48.8261537 2.4058090, 48.8261120 2.4067185, 48.8275343 2.4045775, 48.8671550 2.3566053, 48.8598716 2.3677862, 48.8586303 2.3897622, 48.8579937 2.3897210, 48.8631926 2.3875837, 48.8631999 2.3875442, 48.8498873 2.3503879, 48.8758431 2.3240197, 48.8758446 2.3239509, 48.8758449 2.3239844, 48.8796269 2.3891937, 48.8576517 2.3848585, 48.8553399 2.3867625, 48.8792482 2.3624736, 48.8967561 2.3835805, 48.8732753 2.3592374, 48.8141320 2.3909081, 48.8150893 2.3923296, 48.8147961 2.3980803, 48.8146937 2.4024630, 48.8144872 2.3840460, 48.8169351 2.3814871, 48.8144872 2.3840460, 48.8376093 2.3551119, 48.8377658 2.3556217, 48.8484590 2.3503760, 48.8465399 2.3518782, 48.8462637 2.3522618, 48.8584947 2.3265348, 48.8640655 2.3345802, 48.8256754 2.3500062, 48.8260463 2.3458083, 48.8257509 2.3631735, 48.8707547 2.3780072, 48.8248377 2.3236483, 48.8238612 2.3234793, 48.8239653 2.3231923, 48.8243856 2.3234123, 48.8246116 2.3235303, 48.8238600 2.3236681, 48.8244668 2.3237073, 48.8242408 2.3233372, 48.8270872 2.3248231, 48.8280919 2.3264056, 48.8274776 2.3257190, 48.8277229 2.3261642, 48.8275711 2.3258960, 48.8277248 2.3271996, 48.8280761 2.3273229, 48.8284080 2.3276636, 48.8274068 2.3262715, 48.8291215 2.3276639, 48.8290544 2.3276046, 48.8291991 2.3278057, 48.8290281 2.3277415, 48.8236221 2.3247553, 48.8234694 2.3234788, 48.8234387 2.3236225, 48.8234660 2.3229699, 48.8236938 2.3240481, 48.8228519 2.3260098, 48.8207875 2.3249534, 48.8226361 2.3257162, 48.8474011 2.3777561, 48.8491890 2.3746194, 48.8752927 2.3875604, 48.8387842 2.4064887, 48.8403734 2.3690860, 48.8388484 2.3702978, 48.8369096 2.3712028, 48.8376057 2.3732965, 48.8365782 2.3714028, 48.8397347 2.3696009, 48.8359107 2.3720037, 48.8312779 2.3775666, 48.8458375 2.4227748, 48.8315850 2.3242790, 48.8314815 2.3265356, 48.8732552 2.3604924, 48.8731705 2.3596985, 48.8731847 2.3591245, 48.8720524 2.3605992, 48.8509963 2.3562136, 48.8434040 2.3889105, 48.8429335 2.3895933, 48.8425237 2.3899126, 48.8722045 2.3371834, 48.8521286 2.3374207, 48.8489464 2.3974432, 48.8450801 2.3278995, 48.8441269 2.3312094, 48.8216180 2.3421128, 48.8892175 2.3514659, 48.8891328 2.3517824, 48.8487334 2.3940682, 48.8759986 2.3816785, 48.8469541 2.4077243, 48.8469268 2.4080604, 48.8675732 2.3338667, 48.8337665 2.3191153, 48.8341125 2.3181604, 48.8901469 2.3557510, 48.8907562 2.3403810, 48.8757608 2.4266674, 48.8725873 2.4297686, 48.8726339 2.4297509, 48.8755256 2.4254652, 48.8913122 2.3504296, 48.8824856 2.3440987, 48.8558178 2.3536690, 48.8378904 2.3224575, 48.8751636 2.4061686, 48.8544686 2.3341824, 48.8830455 2.3398008, 48.8823251 2.3397496, 48.8873987 2.3561308, 48.8910970 2.3741558, 48.8907094 2.3763123, 48.8911479 2.3740014, 48.8912509 2.3733007, 48.8907671 2.3759930, 48.8912248 2.3734447, 48.8902798 2.3758317, 48.8914269 2.3723843, 48.8912652 2.3732218, 48.8907239 2.3762320, 48.8912388 2.3733672, 48.8913438 2.3727883, 48.8907416 2.3761340, 48.8904492 2.3770876, 48.8905238 2.3761696, 48.8905385 2.3761863, 48.8906015 2.3762702, 48.8906402 2.3763268, 48.8906505 2.3759000, 48.8907110 2.3761517, 48.8907565 2.3751966, 48.8908100 2.3757534, 48.8908797 2.3744767, 48.8908896 2.3744217, 48.8909033 2.3743272, 48.8909178 2.3742399, 48.8910821 2.3734196, 48.8910858 2.3739625, 48.8911318 2.3731636, 48.8915094 2.3724074, 48.8902005 2.3757322, 48.8658704 2.3983197, 48.8485558 2.3279413, 48.8763666 2.3587710, 48.8625473 2.3875787, 48.8682496 2.3663122, 48.8682866 2.3661153, 48.8689587 2.3676791, 48.8451014 2.4322443, 48.8456035 2.4284431, 48.8410700 2.4300006, 48.8532340 2.3831638, 48.8778515 2.3272456, 48.8476438 2.3479747, 48.8264889 2.3633645, 48.8647821 2.3501454, 48.8641239 2.3504617, 48.8651576 2.3510916, 48.8662221 2.3520174, 48.8786096 2.3782351, 48.8751432 2.3825052, 48.8750868 2.3823845, 48.8750284 2.3815228, 48.8780545 2.3715328, 48.8735546 2.3841519, 48.8743059 2.3351845, 48.8743099 2.3348778, 48.8436817 2.3546669, 48.8532919 2.3476372, 48.8704694 2.3212950, 48.8703892 2.3212386, 48.8495928 2.3812853, 48.8618926 2.3832643, 48.8615272 2.3827496, 48.8618255 2.3830658, 48.8617144 2.3826179, 48.8430114 2.3751952, 48.8429514 2.3751858, 48.8441122 2.3786311, 48.8446111 2.3755813, 48.8909515 2.3479396, 48.8908275 2.3460063, 48.8905461 2.3453913, 48.8911373 2.3471492, 48.8907355 2.3482159, 48.8287894 2.3699667, 48.8281729 2.3156151, 48.8295186 2.3712567, 48.8328070 2.3117312, 48.8328362 2.3117649, 48.8677158 2.3837011, 48.8851558 2.3360026, 48.8815254 2.3543330, 48.8352398 2.3696811, 48.8420173 2.3480157, 48.8431426 2.3492259, 48.8428742 2.3485446, 48.8430296 2.3492151, 48.8430013 2.3491186, 48.8428672 2.3484588, 48.8334354 2.3313239, 48.8945691 2.3441669, 48.8946670 2.3443629, 48.8949500 2.3433680, 48.8944316 2.3452559, 48.8937368 2.3473963, 48.8938461 2.3475036, 48.8645796 2.3718543, 48.8687716 2.3221560, 48.8935750 2.3428010, 48.8508859 2.3775576, 48.8528026 2.3743383, 48.8935060 2.3426870, 48.8936330 2.3428880, 48.8948080 2.3430620, 48.8652953 2.3815900, 48.8940560 2.3431940, 48.8941520 2.3429690, 48.8943730 2.3432450, 48.8951370 2.3433760, 48.8943990 2.3447720, 48.8943100 2.3457250, 48.8942700 2.3458810, 48.8941300 2.3458060, 48.8941720 2.3462340, 48.8941340 2.3463850, 48.8940340 2.3461900, 48.8939590 2.3470250, 48.8937040 2.3474530, 48.8936100 2.3477290, 48.8928950 2.3433840, 48.8930400 2.3435230, 48.8931490 2.3433290, 48.8934680 2.3423420, 48.8255689 2.3215157, 48.8256253 2.3214943, 48.8945330 2.3413180, 48.8321456 2.3262397, 48.8732230 2.3544700, 48.8712160 2.3580210, 48.8706730 2.3594270, 48.8703827 2.3595938, 48.8704589 2.3594512, 48.8703260 2.3596800, 48.8703260 2.3600480, 48.8697550 2.3610960, 48.8694260 2.3613550, 48.8694730 2.3616430, 48.8692910 2.3615800, 48.8691880 2.3617720, 48.8694980 2.3633100, 48.8693370 2.3635590, 48.8693670 2.3632040, 48.8691390 2.3634440, 48.8690220 2.3633990, 48.8688800 2.3629980, 48.8689960 2.3630690, 48.8691820 2.3631770, 48.8697450 2.3637220, 48.8686940 2.3597770, 48.8686410 2.3599800, 48.8689770 2.3602190, 48.8690369 2.3600697, 48.8694340 2.3601620, 48.8695100 2.3602240, 48.8695810 2.3602770, 48.8702570 2.3608890, 48.8701370 2.3610220, 48.8703390 2.3609580, 48.8704690 2.3610130, 48.8706510 2.3613960, 48.8709730 2.3613960, 48.8710750 2.3612300, 48.8713600 2.3621720, 48.8715680 2.3620320, 48.8718800 2.3626150, 48.8718820 2.3623620, 48.8719160 2.3626810, 48.8721550 2.3626770, 48.8722430 2.3630420, 48.8724460 2.3632870, 48.8726535 2.3631861, 48.8726860 2.3635650, 48.8732160 2.3629280, 48.8313478 2.3132516, 48.8841589 2.3322157, 48.8711140 2.3337868, 48.8300641 2.3145322, 48.8549374 2.3061290, 48.8264682 2.3299850, 48.8285724 2.3161086, 48.8546324 2.3061937, 48.8554617 2.3069499, 48.8555640 2.3069164, 48.8555848 2.3069195, 48.8722679 2.3371342, 48.8722687 2.3371875, 48.8723421 2.3369877, 48.8499500 2.3769797, 48.8508024 2.3768778, 48.8502524 2.3764928, 48.8679829 2.3864573, 48.8684217 2.3859196, 48.8681803 2.3861104, 48.8313000 2.3882082, 48.8315037 2.3662884, 48.8145900 2.3605822, 48.8417557 2.3487402, 48.8726701 2.4079021, 48.8433669 2.3494429, 48.8559235 2.3925572, 48.8722479 2.3978396, 48.8566955 2.3731518, 48.8570910 2.3727607, 48.8914670 2.3493410, 48.8943280 2.3442500, 48.8937040 2.3443030, 48.8931040 2.3440780, 48.8929850 2.3440490, 48.8927220 2.3440920, 48.8926550 2.3442290, 48.8937130 2.3451630, 48.8937300 2.3449020, 48.8939200 2.3452590, 48.8709866 2.3363950, 48.8731527 2.3385700, 48.8505156 2.3091488, 48.8433389 2.3495892, 48.8664049 2.3413812, 48.8687508 2.3345042, 48.8692412 2.3299818, 48.8468527 2.4170511, 48.8466083 2.4182804, 48.8465656 2.4185668, 48.8469632 2.4166417, 48.8470284 2.4077647, 48.8707775 2.3387098, 48.8689281 2.3302927, 48.8695802 2.3230555, 48.8533051 2.4010825, 48.8570621 2.3817062, 48.8410914 2.3489485, 48.8446979 2.3491285, 48.8446176 2.3491298, 48.8664844 2.3389311, 48.8700770 2.3223918, 48.8696595 2.3052249, 48.8662502 2.3285392, 48.8739879 2.3430920, 48.8147908 2.3897357, 48.8419574 2.3290304, 48.8529638 2.3701915, 48.8634808 2.3437738, 48.8226529 2.4101092, 48.8608218 2.3464552, 48.8111920 2.3780919, 48.8110754 2.3780355, 48.8133317 2.3888945, 48.8135916 2.3885631, 48.8136375 2.3886678, 48.8718416 2.3144851, 48.8696738 2.3309961, 48.8724435 2.3281256, 48.8628275 2.3277881, 48.8521273 2.3846642, 48.8913400 2.3514860, 48.8914220 2.3515420, 48.8915940 2.3516290, 48.8917510 2.3517290, 48.8919510 2.3518460, 48.8928400 2.3529200, 48.8933290 2.3479650, 48.8947860 2.3445300, 48.8956620 2.3457420, 48.8955250 2.3458800, 48.8957270 2.3457050, 48.8716249 2.3434418, 48.8941134 2.3651745, 48.8941408 2.3643965, 48.8942739 2.3608266, 48.8910520 2.3649118, 48.8910731 2.3646543, 48.8888458 2.3595338, 48.8885019 2.3596679, 48.8849463 2.3516964, 48.8849657 2.3509440, 48.8947641 2.3506342, 48.8969913 2.3529624, 48.8724800 2.3404835, 48.8724927 2.3528401, 48.8714038 2.3104401, 48.8644111 2.3256564, 48.8435991 2.3495369, 48.8436740 2.3495038, 48.8116214 2.3850943, 48.8715946 2.3262057, 48.8669510 2.3270370, 48.8706950 2.3313289, 48.8445643 2.3491518, 48.8451117 2.3493401, 48.8449670 2.3488185, 48.8448364 2.3492811, 48.8448928 2.3492758, 48.8447887 2.3491498, 48.8426449 2.3435197, 48.8431091 2.3419694, 48.8406254 2.3514242, 48.8406978 2.3515047, 48.8679841 2.3255481, 48.8706291 2.3297804, 48.8693141 2.3323713, 48.8414118 2.3440069, 48.8425813 2.3448154, 48.8424224 2.3451614, 48.8440817 2.3394081, 48.8424630 2.3156606, 48.8636829 2.3283540, 48.8547085 2.3620151, 48.8680526 2.3287936, 48.8684086 2.3268250, 48.8546899 2.3251122, 48.8372850 2.3106653, 48.8662803 2.3394262, 48.8710959 2.3416366, 48.8651186 2.3284372, 48.8699813 2.3246311, 48.8423313 2.3428566, 48.8445379 2.3489273, 48.8445159 2.3485397, 48.8433693 2.3513433, 48.8624680 2.3549738, 48.8279876 2.3272822, 48.8555111 2.3595266, 48.8421636 2.3432160, 48.8597985 2.4338358, 48.8596785 2.4338680, 48.8193240 2.3236972, 48.8189508 2.3234810, 48.8191333 2.3230642, 48.8597088 2.3086607, 48.8529952 2.3376020, 48.8501520 2.3419436, 48.8687853 2.3250184, 48.8443095 2.3492103, 48.8434300 2.3494242, 48.8432628 2.3494718, 48.8447332 2.3491164, 48.8446591 2.3491299, 48.8824430 2.3395146, 48.8697266 2.3414020, 48.8704552 2.3394761, 48.8437358 2.3472026, 48.8384430 2.3563154, 48.8954044 2.3511534, 48.8373350 2.3058145, 48.8372006 2.3061816, 48.8751011 2.3616070, 48.8660415 2.3361004, 48.8240127 2.3580960, 48.8240888 2.3580723, 48.8883787 2.3534523, 48.8447791 2.3492894, 48.8435770 2.3493886, 48.8629947 2.3545853, 48.8728991 2.3470277, 48.8372502 2.3914765, 48.8377834 2.3909830, 48.8940561 2.3541965, 48.8917696 2.3461211, 48.8918716 2.3465917, 48.8939174 2.3431529, 48.8911748 2.3607925, 48.8683505 2.3748549, 48.8645120 2.4161498, 48.8629399 2.4155168, 48.8437872 2.3493332, 48.8442707 2.3492157, 48.8597360 2.3466694, 48.8606298 2.3466023, 48.8634010 2.3478656, 48.8873793 2.3371742, 48.8794294 2.4156069, 48.8806999 2.4220224, 48.8240428 2.3967972, 48.8401572 2.3240577, 48.8751867 2.4062512, 48.8412056 2.3941921, 48.8799295 2.3575665, 48.8418196 2.3905033, 48.8968424 2.3818049, 48.8864168 2.3442029, 48.8866377 2.3443434, 48.8481277 2.4272151, 48.8866611 2.3713511, 48.8899236 2.3398500, 48.8865304 2.3443480, 48.8305691 2.3437858, 48.8441758 2.3479878, 48.8445200 2.3486356, 48.8445253 2.3488180, 48.8445218 2.3487080, 48.8438395 2.3493280, 48.8459828 2.3741796, 48.8477463 2.3951627, 48.8447240 2.3729528, 48.8790699 2.3540350, 48.8562896 2.3705562, 48.8570416 2.3726643, 48.8583199 2.3756060, 48.8582954 2.3754987, 48.8604886 2.3704044, 48.8939381 2.3543052, 48.8189033 2.3228824, 48.8535516 2.3746079, 48.8707816 2.3496418, 48.8499326 2.3631550, 48.8290907 2.3609632, 48.8287266 2.3577412, 48.8615684 2.3783425, 48.8857166 2.3381509, 48.8848997 2.3377794, 48.8841301 2.3388858, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8846283 2.3377325, 48.8849290 2.3370700, 48.8851813 2.3369680, 48.8846072 2.3383226, 48.8475785 2.4004192, 48.8481085 2.4036760, 48.8477834 2.4056017, 48.8478611 2.4055458, 48.8491151 2.3992867, 48.8495350 2.3991507, 48.8754340 2.3230260, 48.8272515 2.3324249, 48.8274320 2.3314214, 48.8743786 2.3636125, 48.8524138 2.4039321, 48.8526347 2.4037316, 48.8690004 2.3384279, 48.8549413 2.4087999, 48.8520184 2.4094142, 48.8535259 2.4120078, 48.8231719 2.3553444, 48.8462126 2.4118560, 48.8558395 2.3835889, 48.8608328 2.3202142, 48.8609201 2.3180354, 48.8555779 2.3258692, 48.8570577 2.3190096, 48.8796310 2.3548543, 48.8516633 2.4098056, 48.8688688 2.3293533, 48.8617696 2.3477277, 48.8439446 2.3493055, 48.8438873 2.3493114, 48.8422145 2.3455341, 48.8434841 2.3451307, 48.8419250 2.3444075, 48.8435640 2.3386465, 48.8485015 2.3421189, 48.8501669 2.3420537, 48.8455001 2.3427289, 48.8663676 2.3860046, 48.8686610 2.3900468, 48.8739830 2.3725892, 48.8742654 2.3727129, 48.8668000 2.3495673, 48.8750802 2.3235709, 48.8561278 2.3314027, 48.8491689 2.3364515, 48.8842439 2.3208990, 48.8602476 2.3525764, 48.8648255 2.3978523, 48.8933357 2.3510120, 48.8878706 2.3493757, 48.8847676 2.3506962, 48.8900150 2.3386297, 48.8722691 2.3468122, 48.8831291 2.3341159, 48.8810244 2.3451276, 48.8251672 2.3753747, 48.8410007 2.3779168, 48.8768622 2.3589369, 48.8758269 2.3554902, 48.8820340 2.3381510, 48.8337651 2.3086915, 48.8334129 2.3092754, 48.8843019 2.3905346, 48.8927700 2.3745823, 48.8839103 2.3739430, 48.8886607 2.3737892, 48.8691728 2.4085455, 48.8580953 2.3988158, 48.8464663 2.3272295, 48.8566315 2.4020574, 48.8436087 2.3253227, 48.8442816 2.3244689, 48.8436931 2.3250669, 48.8433712 2.3246895, 48.8438272 2.3247198, 48.8437155 2.3249989, 48.8439457 2.3244951, 48.8435643 2.3254572, 48.8440394 2.3252776, 48.8434985 2.3253726, 48.8435531 2.3252093, 48.8455688 2.3253845, 48.8458630 2.3256709, 48.8459243 2.3259674, 48.8459484 2.3259864, 48.8460036 2.3258028, 48.8464844 2.3265135, 48.8468167 2.3269118, 48.8828717 2.3288427, 48.8827209 2.3281869, 48.8827606 2.3283572, 48.8482530 2.4016764, 48.8484150 2.3998595, 48.8476850 2.4080780, 48.8600249 2.4009571, 48.8596732 2.4008904, 48.8596966 2.4009450, 48.8598137 2.4007026, 48.8598148 2.4006077, 48.8602450 2.4036827, 48.8602742 2.4037442, 48.8402155 2.3458349, 48.8589058 2.3989762, 48.8606245 2.4045354, 48.8353252 2.3805436, 48.8795681 2.4164781, 48.8508424 2.4062247, 48.8525397 2.4062717, 48.8790996 2.3538362, 48.8659551 2.3738289, 48.8227101 2.3777404, 48.8356633 2.3751497, 48.8489864 2.3403461, 48.8519186 2.3373763, 48.8817068 2.3196827, 48.8838814 2.3289545, 48.8785513 2.3191831, 48.8677168 2.3842251, 48.8917516 2.3438452, 48.8911967 2.3437988, 48.8933614 2.3614463, 48.8555899 2.3867736, 48.8560496 2.3884378, 48.8558032 2.4171869, 48.8425831 2.3967408, 48.8423307 2.3962500, 48.8431786 2.4118113, 48.8433516 2.3972224, 48.8448527 2.4123915, 48.8447201 2.4123031, 48.8401109 2.4071422, 48.8527026 2.3765031, 48.8531504 2.3773721, 48.8511314 2.3762510, 48.8513051 2.3765410, 48.8501042 2.3782626, 48.8352673 2.4018017, 48.8499769 2.3748764, 48.8532457 2.3759666, 48.8511667 2.3770664, 48.8349006 2.3856248, 48.8354795 2.3859524, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8235339 2.3535561, 48.8231032 2.3543307, 48.8501700 2.4001960, 48.8727210 2.3098530, 48.8583239 2.4334742, 48.8521580 2.3738714, 48.8795704 2.3522406, 48.8793693 2.3525786, 48.8861681 2.3474404, 48.8404972 2.3950481, 48.8823708 2.3546777, 48.8414282 2.3751870, 48.8762899 2.3352405, 48.8603849 2.3722146, 48.8618251 2.3720347, 48.8770700 2.3392078, 48.8462352 2.3927786, 48.8671989 2.3667020, 48.8660229 2.3666774, 48.8661411 2.3671105, 48.8276838 2.3319307, 48.8668369 2.3739208, 48.8667946 2.3743500, 48.8566794 2.3823726, 48.8701182 2.3328493, 48.8714714 2.3280397, 48.8914883 2.3506742, 48.8865819 2.3505079, 48.8867280 2.3409619, 48.8286998 2.3507416, 48.8286000 2.3506267, 48.8332718 2.3868776, 48.8332740 2.3869138, 48.8750750 2.3586783, 48.8695686 2.3540691, 48.8729261 2.3537842, 48.8736230 2.3526886, 48.8729261 2.3542213, 48.8732572 2.3529431, 48.8552626 2.4326105, 48.8570793 2.4330413, 48.8573328 2.4331297, 48.8554303 2.4324705, 48.8527467 2.4312145, 48.8528536 2.4314057, 48.8532404 2.4304022, 48.8554545 2.4329266, 48.8474225 2.4339614, 48.8743650 2.3427007, 48.8412651 2.3237285, 48.8412198 2.3236119, 48.8416006 2.3224232, 48.8417364 2.3228852, 48.8857288 2.3428801, 48.8857182 2.3428332, 48.8410399 2.3210471, 48.8476487 2.4368726, 48.8765542 2.3611207, 48.8337153 2.3863338, 48.8762330 2.3783499, 48.8359076 2.3859497, 48.8789434 2.3780844, 48.8776230 2.3777304, 48.8717406 2.3715881, 48.8772835 2.3756704, 48.8649019 2.3984981, 48.8657031 2.3995395, 48.8183068 2.3303100, 48.8276580 2.3500100, 48.8276701 2.3500783, 48.8429112 2.3235502, 48.8420581 2.3222156, 48.8420075 2.3219512, 48.8423579 2.3222342, 48.8426136 2.3217510, 48.8425995 2.3220085, 48.8424434 2.3219416, 48.8422510 2.3218934, 48.8430431 2.3223965, 48.8426424 2.3222812, 48.8423484 2.3212962, 48.8421833 2.3220777, 48.8779977 2.3266274, 48.8722395 2.3541753, 48.8733313 2.3530301, 48.8732730 2.3532176, 48.8727613 2.3519183, 48.8727251 2.3521315, 48.8508395 2.3843514, 48.8526377 2.4062734, 48.8421090 2.3213512, 48.8418212 2.3214760, 48.8850396 2.3205857, 48.8180278 2.3754108, 48.8180421 2.3753992, 48.8159720 2.3757470, 48.8878878 2.3544913, 48.8880271 2.3560550, 48.8817044 2.3525759, 48.8163844 2.3745100, 48.8732300 2.3400464, 48.8674944 2.3533853, 48.8144410 2.3858020, 48.8211226 2.3412820, 48.8196610 2.3252732, 48.8333002 2.3325229, 48.8488761 2.3682264, 48.8496205 2.4036764, 48.8282269 2.3275024, 48.8392213 2.3299129, 48.8708622 2.3349641, 48.8793707 2.3458902, 48.8557457 2.4009907, 48.8559569 2.4014635, 48.8558805 2.4016616, 48.8783213 2.4114864, 48.8487330 2.3561350, 48.8468610 2.3536998, 48.8490828 2.3559798, 48.8449764 2.3549028, 48.8813107 2.3778658, 48.8722815 2.3635605, 48.8795792 2.3764981, 48.8814690 2.3788770, 48.8552161 2.3664464, 48.8714989 2.3580961, 48.8754478 2.3646548, 48.8810188 2.3786602, 48.8745073 2.3650898, 48.8760589 2.3705573, 48.8797439 2.3761658, 48.8201698 2.3641255, 48.8211831 2.3635911, 48.8502906 2.3928948, 48.8753266 2.3704350, 48.8752613 2.3705179, 48.8509430 2.3489714, 48.8476389 2.3773813, 48.8801808 2.3373122, 48.8353533 2.3477721, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8705229 2.3425664, 48.8776130 2.3321167, 48.8767506 2.3327911, 48.8777152 2.3320765, 48.8777130 2.3318740, 48.8769692 2.3323827, 48.8761690 2.3320880, 48.8776233 2.3319343, 48.8758728 2.3354163, 48.8759973 2.3351877, 48.8762282 2.3327974, 48.8752392 2.3359440, 48.8761960 2.3332490, 48.8717348 2.3426744, 48.8717988 2.3422890, 48.8720797 2.3405228, 48.8721385 2.3402693, 48.8720485 2.3407198, 48.8717827 2.3402091, 48.8713165 2.3435900, 48.8713571 2.3432580, 48.8715029 2.3424432, 48.8715088 2.3415405, 48.8715193 2.3423495, 48.8716636 2.3427222, 48.8716892 2.3413115, 48.8717651 2.3403142, 48.8717993 2.3417088, 48.8718366 2.3403543, 48.8721397 2.3393564, 48.8719292 2.3408327, 48.8697525 2.3517557, 48.8708172 2.3482539, 48.8710210 2.3469210, 48.8710350 2.3468353, 48.8696399 2.3521119, 48.8706185 2.3473437, 48.8699131 2.3519891, 48.8701054 2.3514869, 48.8701778 2.3512504, 48.8702314 2.3510796, 48.8703308 2.3501756, 48.8704451 2.3482133, 48.8705697 2.3483676, 48.8708652 2.3474521, 48.8709038 2.3471924, 48.8710522 2.3467304, 48.8388096 2.3823806, 48.8083684 2.3630820, 48.8095183 2.3628255, 48.8092957 2.3621925, 48.8094653 2.3611223, 48.8829700 2.3205585, 48.8712019 2.3413851, 48.8553805 2.3368914, 48.8380973 2.3926743, 48.8816031 2.3282156, 48.8820557 2.3285353, 48.8810393 2.3287050, 48.8780225 2.3319547, 48.8812217 2.3283853, 48.8819163 2.3282898, 48.8815556 2.3282349, 48.8812596 2.3282561, 48.8810901 2.3284438, 48.8804253 2.3287401, 48.8801158 2.3291143, 48.8809390 2.3290257, 48.8816188 2.3284123, 48.8815002 2.3282628, 48.8802806 2.3288294, 48.8814226 2.3285073, 48.8805559 2.3289093, 48.8817375 2.3283675, 48.8812070 2.3286079, 48.8803547 2.3289832, 48.8807207 2.3286359, 48.8809958 2.3285271, 48.8812030 2.3284499, 48.8821364 2.3279588, 48.8571157 2.3684747, 48.8578918 2.3464512, 48.8743640 2.3328049, 48.8743336 2.3345374, 48.8743562 2.3331088, 48.8742801 2.3357676, 48.8741989 2.3323945, 48.8742391 2.3333145, 48.8742191 2.3339210, 48.8742326 2.3334984, 48.8742002 2.3321838, 48.8743271 2.3320123, 48.8743326 2.3322873, 48.8741996 2.3346158, 48.8743344 2.3324943, 48.8743369 2.3320794, 48.8742512 2.3330600, 48.8741848 2.3351560, 48.8743601 2.3329097, 48.8742352 2.3331688, 48.8743344 2.3324039, 48.8742439 2.3332327, 48.8742300 2.3335755, 48.8742269 2.3336382, 48.8742148 2.3347299, 48.8742437 2.3321727, 48.8742456 2.3328589, 48.8742469 2.3336448, 48.8742841 2.3351598, 48.8728885 2.3451791, 48.8921164 2.3345008, 48.8911613 2.3319378, 48.8856755 2.3448166, 48.8930350 2.3633966, 48.8900140 2.3602197, 48.8334449 2.3538589, 48.8643444 2.3274838, 48.8357356 2.3522840, 48.8301847 2.3456951, 48.8352173 2.3476295, 48.8329777 2.3472248, 48.8765391 2.3394762, 48.8763100 2.3399916, 48.8770037 2.3406740, 48.8762070 2.3400723, 48.8765114 2.3406889, 48.8766343 2.3407712, 48.8765191 2.3406058, 48.8765034 2.3395297, 48.8766574 2.3401427, 48.8763841 2.3396912, 48.8764750 2.3395753, 48.8766336 2.3408729, 48.8766574 2.3405656, 48.8762979 2.3397799, 48.8766916 2.3405068, 48.8767915 2.3372725, 48.8353690 2.3465771, 48.8933200 2.3491176, 48.8395564 2.3497363, 48.8751240 2.3369439, 48.8751258 2.3368667, 48.8761627 2.3401745, 48.8320324 2.3866588, 48.8400881 2.3806431, 48.8398677 2.3819967, 48.8398721 2.3821834, 48.8402787 2.3799233, 48.8240405 2.3250200, 48.8517277 2.3664938, 48.8359510 2.3274377, 48.8648511 2.3817815, 48.8518481 2.4241323, 48.8878086 2.3255499, 48.8445744 2.3876337, 48.8779906 2.3450959, 48.8462888 2.4207873, 48.8246903 2.3553751, 48.8200183 2.3651320, 48.8377773 2.3494970, 48.8763089 2.3364262, 48.8712127 2.3428611, 48.8702093 2.4204687, 48.8490395 2.3485570, 48.8826732 2.3757224, 48.8826652 2.3762351, 48.8826088 2.3768306, 48.8825596 2.3779677, 48.8624965 2.3439076, 48.8523973 2.3894913, 48.8642191 2.3423423, 48.8680574 2.3417881, 48.8655111 2.3426280, 48.8644270 2.3423345, 48.8698783 2.3425685, 48.8691169 2.3422291, 48.8702023 2.3421494, 48.8637180 2.3427315, 48.8637692 2.3426419, 48.8638673 2.3421689, 48.8643025 2.3423599, 48.8650391 2.3428079, 48.8655271 2.3423422, 48.8656506 2.3418330, 48.8675845 2.3413784, 48.8675929 2.3416886, 48.8699035 2.3424435, 48.8089348 2.3648472, 48.8426094 2.3977284, 48.8451294 2.4027346, 48.8515069 2.4066855, 48.8794276 2.4184801, 48.8790836 2.4178465, 48.8800418 2.4142030, 48.8351363 2.3445567, 48.8260954 2.3467344, 48.8304114 2.3551773, 48.8864203 2.3325703, 48.8854403 2.3309916, 48.8641319 2.3484339, 48.8692088 2.4085611, 48.8843107 2.3903306, 48.8863919 2.3865004, 48.8709579 2.3576608, 48.8123757 2.3619529, 48.8819047 2.3985349, 48.8590759 2.4003273, 48.8865801 2.3354932, 48.8872935 2.3361945, 48.8853856 2.3359893, 48.8873015 2.3360309, 48.8858892 2.3361945, 48.8125092 2.3618641, 48.8125171 2.3620133, 48.8095597 2.3594455, 48.8644583 2.3274519, 48.8301165 2.3261956, 48.8881851 2.3480652, 48.8884653 2.3485324, 48.8869647 2.3478228, 48.8867173 2.3477674, 48.8791144 2.3365425, 48.8883991 2.3510703, 48.8869141 2.3514696, 48.8635328 2.3632361, 48.8825806 2.3672397, 48.8541484 2.3323158, 48.8538475 2.3325263, 48.8539666 2.3321106, 48.8539543 2.3320945, 48.8920227 2.3428666, 48.8807365 2.3660941, 48.8245551 2.3763634, 48.8857577 2.3451141, 48.8857859 2.3452590, 48.8544440 2.3312616, 48.8554636 2.3337901, 48.8604940 2.3409119, 48.8702948 2.3422163, 48.8309917 2.3237944, 48.8812525 2.3584914, 48.8830672 2.3651696, 48.8825981 2.3645629, 48.8830046 2.3650381, 48.8830637 2.3612591, 48.8728704 2.3813019, 48.8101508 2.3625322, 48.8846517 2.3291078, 48.8847090 2.3292720, 48.8851897 2.3294400, 48.8834736 2.3604504, 48.8896591 2.3426912, 48.8898849 2.3426094, 48.8838668 2.3274744, 48.8857760 2.3287243, 48.8910607 2.3394636, 48.8849775 2.3295394, 48.8902288 2.3476015, 48.8465148 2.4289319, 48.8466235 2.4291176, 48.8461814 2.4288952, 48.8440277 2.3578583, 48.8440733 2.3580327, 48.8441013 2.3580010, 48.8441297 2.3579739, 48.8286085 2.3529303, 48.8429926 2.3485399, 48.8764091 2.3236995, 48.8827601 2.3372823, 48.8248510 2.3607452, 48.8416788 2.3272221, 48.8519424 2.3384522, 48.8620414 2.3297804, 48.8628867 2.3292924, 48.8631141 2.3305616, 48.8645244 2.3241300, 48.8928809 2.3504734, 48.8322708 2.3674245, 48.8556751 2.3337849, 48.8918784 2.3346478, 48.8915644 2.3350420, 48.8915892 2.3347229, 48.8919172 2.3352889, 48.8872260 2.3324699, 48.8958920 2.3466158, 48.8960577 2.3464495, 48.8956490 2.3465730, 48.8959308 2.3457254, 48.8904006 2.3349160, 48.8905328 2.3349026, 48.8906192 2.3344868, 48.8894588 2.3334837, 48.8884483 2.3329205, 48.8875488 2.3327381, 48.8917144 2.3354766, 48.8917726 2.3352969, 48.8915645 2.3352835, 48.8920706 2.3346881, 48.8933968 2.3371262, 48.8933750 2.3385392, 48.8934250 2.3386202, 48.8929700 2.3402831, 48.8088930 2.3648168, 48.8089022 2.3647604, 48.8089205 2.3649005, 48.8089311 2.3649722, 48.8089638 2.3650692, 48.8089936 2.3651590, 48.8090161 2.3650023, 48.8090210 2.3652524, 48.8091158 2.3652557, 48.8091279 2.3651391, 48.8396619 2.3229538, 48.8879853 2.3396455, 48.8090382 2.3650851, 48.8521891 2.3465789, 48.8518599 2.3446879, 48.8547555 2.3384628, 48.8527027 2.3467086, 48.8525189 2.3466440, 48.8887735 2.3938208, 48.8522608 2.4040943, 48.8514101 2.4052556, 48.8514486 2.4064449, 48.8491856 2.4063562, 48.8490772 2.4063369, 48.8479595 2.4050367, 48.8480831 2.4040261, 48.8189971 2.3575128, 48.8189926 2.3575382, 48.8192558 2.3573491, 48.8190889 2.3574967, 48.8721179 2.3385859, 48.8859512 2.3781916, 48.8909107 2.3755163, 48.8860470 2.3791509, 48.8222536 2.3618120, 48.8221935 2.3616081, 48.8221264 2.3613884, 48.8222287 2.3611417, 48.8221688 2.3609429, 48.8221335 2.3607766, 48.8315453 2.3647312, 48.8923038 2.3388466, 48.8927798 2.3416901, 48.8931361 2.3423335, 48.8323795 2.3620094, 48.8325490 2.3620175, 48.8328561 2.3610753, 48.8314449 2.3640412, 48.8577690 2.3998080, 48.8446658 2.3899217, 48.8391806 2.3825585, 48.8389227 2.3824998, 48.8383292 2.3826173, 48.8520536 2.4091515, 48.8301597 2.3816491, 48.8221897 2.3589982, 48.8334932 2.3194586, 48.8219714 2.3582637, 48.8221377 2.3582427, 48.8217964 2.3583170, 48.8220277 2.3582482, 48.8685514 2.3683075, 48.8825100 2.3378415, 48.8834581 2.3344321, 48.8234610 2.3537855, 48.8846868 2.3416679, 48.8843749 2.3411643, 48.8846003 2.3411844, 48.8841743 2.3417867, 48.8842759 2.3413619, 48.8198844 2.3619743, 48.8462350 2.4249809, 48.8463637 2.4250747, 48.8466892 2.4264442, 48.8467895 2.4265022, 48.8471582 2.4294551, 48.8195477 2.3338738, 48.8477236 2.3032589, 48.8820510 2.4101920, 48.8886357 2.3901364, 48.8413779 2.3118977, 48.8803114 2.4117221, 48.8803256 2.4120198, 48.8432413 2.3224129, 48.8438502 2.3225577, 48.8912689 2.3395224, 48.8753270 2.3689900, 48.8720517 2.3351032, 48.8304109 2.3569512, 48.8298312 2.3567979, 48.8662620 2.3356061, 48.8670216 2.3359869, 48.8569678 2.3519723, 48.8683080 2.3897771, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8505220 2.3461000, 48.8507185 2.3452276, 48.8505641 2.3458479, 48.8464932 2.3439185, 48.8484873 2.3463043, 48.8500822 2.3477323, 48.8507620 2.3449853, 48.8463607 2.3432591, 48.8505565 2.3459027, 48.8464051 2.3430548, 48.8464373 2.3431173, 48.8476756 2.3411763, 48.8499865 2.3481714, 48.8501851 2.3484297, 48.8748542 2.3087625, 48.8628332 2.3825028, 48.8302605 2.3138234, 48.8305332 2.3138423, 48.8308414 2.3123480, 48.8308711 2.3136966, 48.8311654 2.3137963, 48.8316692 2.3141635, 48.8358896 2.3152881, 48.8375785 2.3184257, 48.8376267 2.3186493, 48.8712517 2.3429020, 48.8748866 2.3088194, 48.8768246 2.3154058, 48.8444941 2.3897502, 48.8471824 2.3866402, 48.8485106 2.4350206, 48.8503916 2.4344973, 48.8376821 2.3457867, 48.8420674 2.3760001, 48.8414550 2.3765636, 48.8419010 2.3761630, 48.8420279 2.3760760, 48.8422603 2.3759362, 48.8433854 2.3736074, 48.8540831 2.3285075, 48.8672161 2.3065357, 48.8795791 2.4011974, 48.8794785 2.4002318, 48.8496451 2.3534642, 48.8453042 2.3498920, 48.8928033 2.3785257, 48.8927495 2.3785104, 48.8525880 2.4184826, 48.8528539 2.4193380, 48.8625297 2.3799298, 48.8620663 2.3803024, 48.8720302 2.3920402, 48.8536582 2.4244058, 48.8576598 2.4272461, 48.8571430 2.4229626, 48.8555424 2.4223833, 48.8562466 2.4264258, 48.8549210 2.4186865, 48.8554898 2.4013519, 48.8564313 2.4002327, 48.8567743 2.4001839, 48.8570961 2.3998935, 48.8574084 2.3993454, 48.8575637 2.3994629, 48.8579395 2.3997934, 48.8590223 2.4024858, 48.8589783 2.4022376, 48.8589383 2.4057326, 48.8590692 2.4058632, 48.8575224 2.4077895, 48.8577147 2.4074098, 48.8571003 2.4079730, 48.8573471 2.4084118, 48.8572287 2.4082747, 48.8569748 2.4079915, 48.8570206 2.4087900, 48.8518332 2.3373498, 48.8514439 2.3380763, 48.8549221 2.4119401, 48.8556888 2.4005126, 48.8539073 2.4012043, 48.8793921 2.3895039, 48.8519052 2.4236470, 48.8516079 2.4261266, 48.8526846 2.4239243, 48.8531236 2.4235386, 48.8537915 2.4244888, 48.8536991 2.4236240, 48.8522009 2.4263143, 48.8520139 2.4238385, 48.8534715 2.4234390, 48.8554053 2.4340312, 48.8571054 2.4314615, 48.8575624 2.4360669, 48.8560712 2.4256465, 48.8574266 2.4331540, 48.8577619 2.4353641, 48.8563589 2.4272504, 48.8548394 2.4175545, 48.8542026 2.4276788, 48.8552221 2.4229206, 48.8895806 2.3929015, 48.8847068 2.3794407, 48.8725254 2.3564163, 48.8720689 2.3560867, 48.8716754 2.3575262, 48.8724942 2.3562527, 48.8725036 2.3562580, 48.8725198 2.3562571, 48.8725473 2.3562826, 48.8753704 2.3575042, 48.8656739 2.3463704, 48.8371809 2.3497368, 48.8371189 2.3502507, 48.8516647 2.3719912, 48.8204649 2.3388910, 48.8443192 2.3900381, 48.8289587 2.3797130, 48.8289617 2.3797089, 48.8292373 2.3805159, 48.8294451 2.3808673, 48.8534987 2.3177448, 48.8973173 2.3848230, 48.8972521 2.3847586, 48.8970881 2.3845721, 48.8648559 2.3969632, 48.8616106 2.3019528, 48.8459096 2.3748745, 48.8622551 2.3149819, 48.8538751 2.3124512, 48.8420157 2.3726058, 48.8430720 2.3835489, 48.8472114 2.3812727, 48.8609194 2.3070577, 48.8591296 2.3194176, 48.8476062 2.3772809, 48.8580602 2.3104534, 48.8696527 2.3111802, 48.8541706 2.3068705, 48.8091546 2.3649598, 48.8969286 2.3866620, 48.8577965 2.3842350, 48.8453249 2.3924410, 48.8709110 2.3462011, 48.8526225 2.3605373, 48.8527756 2.3604759, 48.8527916 2.3608490, 48.8529200 2.3600286, 48.8530925 2.3597085, 48.8531602 2.3598156, 48.8532277 2.3589001, 48.8533913 2.3581164, 48.8534869 2.3593371, 48.8535051 2.3580579, 48.8540659 2.3610972, 48.8541003 2.3609648, 48.8731487 2.3445761, 48.8713070 2.3479965, 48.8525391 2.4047416, 48.8525041 2.4054710, 48.8505469 2.4061987, 48.8753952 2.3433018, 48.8502723 2.4063088, 48.8526949 2.3089511, 48.8510517 2.3092163, 48.8518484 2.3096816, 48.8529307 2.3090379, 48.8538143 2.3069683, 48.8541796 2.3066834, 48.8493210 2.4123278, 48.8448163 2.3733745, 48.8522713 2.3728858, 48.8743665 2.3618973, 48.8705258 2.3609598, 48.8742228 2.3624553, 48.8693235 2.3602586, 48.8727849 2.3634181, 48.8339369 2.3145520, 48.8363345 2.3104066, 48.8358696 2.3958145, 48.8358361 2.3959436, 48.8362526 2.3943323, 48.8364609 2.3940728, 48.8369959 2.3933620, 48.8379393 2.3947080, 48.8616349 2.3514454, 48.8620103 2.3504016, 48.8619070 2.3508109, 48.8617849 2.3518205, 48.8618170 2.3506485, 48.8616656 2.3513122, 48.8613154 2.3514779, 48.8618213 2.3511884, 48.8618296 2.3505926, 48.8619390 2.3509944, 48.8673541 2.3180025, 48.8689632 2.3129455, 48.8683826 2.3147872, 48.8567114 2.4103333, 48.8595904 2.4050515, 48.8594938 2.4051634, 48.8283068 2.3264318, 48.8665921 2.3829389, 48.8665427 2.3829818, 48.8585499 2.3900827, 48.8742509 2.3267610, 48.8756033 2.3260400, 48.8668276 2.3999886, 48.8708913 2.3580857, 48.8688368 2.3624724, 48.8691941 2.3573560, 48.8692734 2.3564413, 48.8699288 2.3950557, 48.8719573 2.3957786, 48.8734565 2.3909548, 48.8425042 2.4283102, 48.8420092 2.4240851, 48.8408073 2.3218471, 48.8484291 2.4369767, 48.8471758 2.4348566, 48.8464546 2.4345692, 48.8786755 2.3549221, 48.8776027 2.3270929, 48.8751640 2.3321790, 48.8660566 2.3039258, 48.8674435 2.3066185, 48.8760737 2.3314470, 48.8776629 2.3503063, 48.8882304 2.3741760, 48.8880750 2.3740150, 48.8882739 2.3742342, 48.8776378 2.3267921, 48.8933121 2.3848968, 48.8946426 2.3818500, 48.8926684 2.3791196, 48.8932861 2.3844526, 48.8349568 2.3963498, 48.8598245 2.3479142, 48.8592985 2.3479258, 48.8607520 2.3551307, 48.8601373 2.3481716, 48.8625488 2.3540088, 48.8599332 2.3492544, 48.8624420 2.3521861, 48.8600406 2.3484986, 48.8600556 2.3483497, 48.8616973 2.3497749, 48.8610832 2.3541404, 48.8630686 2.3546427, 48.8606162 2.3549537, 48.8601051 2.3500266, 48.8633570 2.3506638, 48.8591455 2.3478511, 48.8593308 2.3476821, 48.8602833 2.3482093, 48.8632590 2.3519986, 48.8611395 2.3539719, 48.8630018 2.3509388, 48.8614419 2.3528860, 48.8589924 2.3475806, 48.8591148 2.3478378, 48.8591224 2.3472049, 48.8592067 2.3534078, 48.8597459 2.3542980, 48.8597947 2.3481558, 48.8599813 2.3497684, 48.8601111 2.3484132, 48.8605147 2.3550422, 48.8607150 2.3496929, 48.8607407 2.3533231, 48.8608690 2.3535460, 48.8615861 2.3538350, 48.8619499 2.3529357, 48.8620249 2.3537411, 48.8621035 2.3535221, 48.8624608 2.3528454, 48.8625131 2.3505652, 48.8626380 2.3503800, 48.8627388 2.3544858, 48.8630130 2.3520043, 48.8630530 2.3526294, 48.8630774 2.3526152, 48.8630836 2.3506216, 48.8631431 2.3517067, 48.8634711 2.3500128, 48.8601905 2.3476020, 48.8601948 2.3475156, 48.8596378 2.3474576, 48.8604384 2.3466636, 48.8636482 2.3489320, 48.8637123 2.3501453, 48.8629250 2.3487647, 48.8600209 2.3471788, 48.8636829 2.3493064, 48.8628881 2.3488962, 48.8637682 2.3499143, 48.8620454 2.3494700, 48.8634421 2.3485303, 48.8633388 2.3485138, 48.8603324 2.3474365, 48.8606768 2.3486445, 48.8626544 2.3497602, 48.8628820 2.3480806, 48.8637288 2.3492623, 48.8637423 2.3492027, 48.8479468 2.3805001, 48.8448439 2.3826317, 48.8468721 2.3812651, 48.8505114 2.3788484, 48.8450449 2.3494549, 48.8577440 2.4279651, 48.8644061 2.3713501, 48.8288751 2.3167202, 48.8305978 2.3143161, 48.8314530 2.3131078, 48.8654002 2.3689374, 48.8414148 2.4182911, 48.8413945 2.4194391, 48.8412648 2.4178016, 48.8412533 2.4177480, 48.8356746 2.3226602, 48.8355850 2.3240208, 48.8356592 2.3240019, 48.8366420 2.3235880, 48.8364355 2.3230794, 48.8354175 2.3228183, 48.8347274 2.3935263, 48.8348557 2.3933268, 48.8350680 2.3931610, 48.8351044 2.3931231, 48.8354238 2.3929281, 48.8357428 2.3922686, 48.8968971 2.3856504, 48.8365016 2.3919794, 48.8363755 2.3920736, 48.8346667 2.3880981, 48.8363401 2.3920991, 48.8371689 2.3900453, 48.8476343 2.3974001, 48.8446991 2.3828833, 48.8452414 2.3792066, 48.8388762 2.3961905, 48.8377454 2.3971411, 48.8378158 2.3970726, 48.8385395 2.3965024, 48.8432840 2.3834396, 48.8440274 2.3842239, 48.8448269 2.3800646, 48.8449387 2.3800015, 48.8451743 2.3712064, 48.8456270 2.3785622, 48.8458965 2.3747978, 48.8462434 2.3767506, 48.8400356 2.3360672, 48.8395556 2.3365605, 48.8277105 2.3319457, 48.8814585 2.3701955, 48.8888444 2.3785107, 48.8461741 2.3758496, 48.8489499 2.3971094, 48.8456047 2.3544832, 48.8192937 2.3232019, 48.8651570 2.3627039, 48.8607749 2.3784617, 48.8614835 2.3771934, 48.8555652 2.3871679, 48.8871386 2.4099027, 48.8830788 2.3285289, 48.8832816 2.3287396, 48.8217455 2.3523997, 48.8221973 2.3554703, 48.8100432 2.3621169, 48.8206871 2.3210565, 48.8489126 2.4232463, 48.8304768 2.3747802, 48.8115606 2.3551878, 48.8116199 2.3552423, 48.8643128 2.3266632, 48.8641893 2.3299462, 48.8343920 2.3220856, 48.8822854 2.3399369, 48.8495790 2.3543056, 48.8438948 2.3207191, 48.8693740 2.3077196, 48.8310397 2.3791345, 48.8437332 2.4306786, 48.8439584 2.4314083, 48.8442360 2.3235210, 48.8442760 2.3236880, 48.8443641 2.3231615, 48.8444056 2.3230253, 48.8398650 2.3230690, 48.8398470 2.3238410, 48.8550414 2.4148541, 48.8564616 2.4267765, 48.8525035 2.3849901, 48.8519848 2.3846342, 48.8405177 2.3236190, 48.8756781 2.3992089, 48.8452447 2.4330221, 48.8485257 2.4347426, 48.8442090 2.3857064, 48.8453354 2.3850906, 48.8552492 2.3391068, 48.8643014 2.4002976, 48.8294447 2.3791512, 48.8288966 2.3760626, 48.8616234 2.4058937, 48.8486397 2.3653776, 48.8472637 2.4367867, 48.8474299 2.4344711, 48.8474332 2.4344060, 48.8474354 2.4342492, 48.8474387 2.4341425, 48.8474550 2.4338746, 48.8720371 2.3481740, 48.8582338 2.4341820, 48.8810334 2.3731370, 48.8808570 2.3744052, 48.8816465 2.3719957, 48.8818907 2.3720105, 48.8810026 2.3740798, 48.8813934 2.3725805, 48.8815725 2.3721513, 48.8809708 2.3734937, 48.8808782 2.3736050, 48.8808002 2.3729937, 48.8446470 2.4049516, 48.8816605 2.3742025, 48.8743652 2.3625584, 48.8732358 2.3613894, 48.8732268 2.3624203, 48.8733184 2.3615096, 48.8339693 2.3179784, 48.8405572 2.3224049, 48.8713202 2.3658560, 48.8944510 2.3440420, 48.8131067 2.3616397, 48.8142316 2.3612488, 48.8147716 2.3611034, 48.8153877 2.3609123, 48.8153143 2.3609359, 48.8139779 2.3613252, 48.8135895 2.3614772, 48.8149985 2.3610400, 48.8417263 2.3245973, 48.8419109 2.3245351, 48.8435173 2.3219294, 48.8407069 2.3164233, 48.8428397 2.3260649, 48.8416495 2.3246134, 48.8433410 2.3248673, 48.8409248 2.3157527, 48.8417952 2.3245691, 48.8430469 2.3258843, 48.8413133 2.3184421, 48.8419805 2.3245034, 48.8414979 2.3246397, 48.8432840 2.3249954, 48.8404349 2.3156482, 48.8429231 2.3260926, 48.8405515 2.3159715, 48.8407506 2.3165877, 48.8427732 2.3210206, 48.8405038 2.3158186, 48.8428632 2.3240193, 48.8415277 2.3195025, 48.8411641 2.3189124, 48.8404090 2.3155450, 48.8408520 2.3154700, 48.8416910 2.3246067, 48.8412683 2.3182655, 48.8415356 2.3248762, 48.8410405 2.3217676, 48.8910090 2.3460570, 48.8098910 2.3635510, 48.8100440 2.3635490, 48.8078290 2.3615060, 48.8085340 2.3587330, 48.8919620 2.3459940, 48.8371723 2.3209043, 48.8125972 2.3621933, 48.8687522 2.3154832, 48.8304137 2.3773682, 48.8341167 2.3339725, 48.8336788 2.3331356, 48.8295616 2.3691128, 48.8288832 2.3693573, 48.8274219 2.3701668, 48.8274304 2.3681740, 48.8271902 2.3689921, 48.8293003 2.3686112, 48.8304833 2.3684583, 48.8272432 2.3687533, 48.8342481 2.3734295, 48.8727890 2.3429679, 48.8728311 2.3429546, 48.8727157 2.3429899, 48.8728753 2.3429491, 48.8725590 2.3430087, 48.8726054 2.3430164, 48.8479464 2.4345472, 48.8404449 2.3243133, 48.8393146 2.3237992, 48.8394700 2.3227210, 48.8457158 2.3823706, 48.8219928 2.4027040, 48.8208255 2.4020831, 48.8207628 2.4022990, 48.8234676 2.4058718, 48.8235097 2.4055687, 48.8239202 2.3655030, 48.8231449 2.3164243, 48.8211852 2.3229555, 48.8211334 2.3227542, 48.8211175 2.3226927, 48.8211709 2.3228999, 48.8212005 2.3230152, 48.8211498 2.3228182, 48.8561348 2.4048284, 48.8561119 2.4048766, 48.8579931 2.4032941, 48.8468777 2.4086290, 48.8468470 2.4088515, 48.8479121 2.4058825, 48.8497371 2.3992735, 48.8641210 2.3809737, 48.8641572 2.3808312, 48.8647704 2.3816186, 48.8650199 2.3816335, 48.8668226 2.3830863, 48.8669144 2.3828198, 48.8719957 2.3430238, 48.8717767 2.3429926, 48.8720494 2.3430269, 48.8718412 2.3430035, 48.8719005 2.3430238, 48.8453430 2.3926730, 48.8432090 2.3887460, 48.8463490 2.4032630, 48.8502720 2.3963360, 48.8435767 2.3965557, 48.8464210 2.4032480, 48.8498670 2.3962590, 48.8489413 2.3910006, 48.8857903 2.3895902, 48.8870531 2.3881311, 48.8729655 2.3432485, 48.8717015 2.3432454, 48.8720337 2.3433324, 48.8723365 2.3433170, 48.8718705 2.3433170, 48.8718024 2.3432812, 48.8649600 2.3207507, 48.8659920 2.3215075, 48.8668835 2.3116323, 48.8686692 2.3103634, 48.8686841 2.3099161, 48.8689059 2.3096161, 48.8690546 2.3106303, 48.8692789 2.3103348, 48.8692931 2.3098862, 48.8525650 2.3914983, 48.8209712 2.3883665, 48.8628314 2.3879208, 48.8446028 2.3805301, 48.8446948 2.3803356, 48.8430973 2.3830716, 48.8193061 2.3373740, 48.8302062 2.3335779, 48.8508700 2.3332751, 48.8679715 2.3375806, 48.8390186 2.3533781, 48.8254086 2.3802466, 48.8396713 2.3471300, 48.8397850 2.3575188, 48.8400031 2.3575222, 48.8400384 2.3577299, 48.8407685 2.3562597, 48.8407848 2.3562522, 48.8408017 2.3562465, 48.8575432 2.3631867, 48.8984327 2.3695091, 48.8229131 2.3581886, 48.8230394 2.3580746, 48.8228779 2.3555122, 48.8231701 2.3580518, 48.8232575 2.3580129, 48.8222518 2.3550558, 48.8232610 2.3543235, 48.8226942 2.3582047, 48.8232707 2.3553092, 48.8232751 2.3542283, 48.8237572 2.3538368, 48.8767250 2.3307380, 48.8262224 2.3748278, 48.8103859 2.3634255, 48.8099878 2.3804322, 48.8103162 2.3796972, 48.8610880 2.3512876, 48.8615948 2.3522768, 48.8614615 2.3514586, 48.8484894 2.4372244, 48.8394454 2.3963015, 48.8394576 2.3962737, 48.8605989 2.3512022, 48.8841484 2.3227392, 48.8840708 2.3230235, 48.8495312 2.4181317, 48.8222866 2.3235525, 48.8861392 2.3337047, 48.8518241 2.3982324, 48.8515798 2.3992009, 48.8515911 2.3992945, 48.8983279 2.3618983, 48.8983261 2.3617173, 48.8983518 2.3649038, 48.8720846 2.3660947, 48.8716623 2.3681061, 48.8450849 2.3736722, 48.8450972 2.3739673, 48.8448238 2.3691876, 48.8471374 2.3947373, 48.8416499 2.3895371, 48.8573786 2.3543034, 48.8577844 2.3546061, 48.8442166 2.3890513, 48.8445865 2.3900144, 48.8446393 2.3899483, 48.8447328 2.3894590, 48.8460490 2.3883759, 48.8451775 2.3885757, 48.8455384 2.3888508, 48.8456435 2.3883893, 48.8467978 2.3874491, 48.8462215 2.3870803, 48.8463910 2.3878730, 48.8470847 2.3868148, 48.8468937 2.3869270, 48.8470414 2.3872131, 48.8603639 2.3478222, 48.8603388 2.3480663, 48.8606775 2.3486913, 48.8600805 2.3520305, 48.8598889 2.3522642, 48.8275287 2.3149795, 48.8597934 2.3508151, 48.8798447 2.3453589, 48.8600048 2.3507638, 48.8846966 2.3919640, 48.8846914 2.3902220, 48.8848153 2.3229754, 48.8714407 2.3097914, 48.8281219 2.3158457, 48.8465012 2.4195559, 48.8461616 2.4192892, 48.8463722 2.4206930, 48.8473303 2.4193760, 48.8473675 2.4193797, 48.8477269 2.4196385, 48.8485180 2.4350298, 48.8733188 2.3446580, 48.8804108 2.3562078, 48.8600106 2.3509612, 48.8735773 2.3706207, 48.8750935 2.3351732, 48.8436342 2.3043290, 48.8431682 2.3046133, 48.8412254 2.3738186, 48.8878312 2.3787631, 48.8918524 2.3632899, 48.8919900 2.3631317, 48.8701201 2.3491659, 48.8415077 2.4307920, 48.8609895 2.3473093, 48.8596119 2.3520509, 48.8568591 2.3538840, 48.8763400 2.3386612, 48.8756176 2.3432285, 48.8760560 2.3438036, 48.8762724 2.3440214, 48.8730582 2.3434334, 48.8730540 2.3435221, 48.8429539 2.4085434, 48.8443890 2.4068429, 48.8418110 2.4082929, 48.8655913 2.3471265, 48.8613396 2.3430061, 48.8603595 2.3510541, 48.8604654 2.3511118, 48.8605702 2.3511696, 48.8606843 2.3512326, 48.8121539 2.3917982, 48.8120995 2.3913637, 48.8238476 2.3506828, 48.8402963 2.3339966, 48.8207235 2.3507707, 48.8601441 2.3501434, 48.8618770 2.3502017, 48.8689535 2.3541673, 48.8341834 2.3261480, 48.8257982 2.3468029, 48.8266018 2.3354681, 48.8272551 2.3352458, 48.8330622 2.3958487, 48.8336114 2.3861569, 48.8337322 2.3983467, 48.8337623 2.3951877, 48.8342999 2.3975412, 48.8343797 2.3963938, 48.8345191 2.3966361, 48.8348254 2.3934365, 48.8348947 2.3972942, 48.8349022 2.3933477, 48.8349654 2.3960429, 48.8358704 2.3961786, 48.8359891 2.3974455, 48.8360813 2.3872238, 48.8361353 2.3948924, 48.8361988 2.3988969, 48.8364221 2.3949270, 48.8364309 2.3988951, 48.8365523 2.3982569, 48.8366252 2.3929585, 48.8366508 2.3952223, 48.8366989 2.3943677, 48.8369456 2.4019945, 48.8370471 2.3917506, 48.8375850 2.3971765, 48.8376090 2.3907850, 48.8380876 2.3941069, 48.8382060 2.3900510, 48.8382377 2.3966077, 48.8384334 2.3930799, 48.8392532 2.4005400, 48.8393971 2.4089227, 48.8394590 2.3963160, 48.8401062 2.4087456, 48.8403121 2.4025153, 48.8403240 2.3922740, 48.8404000 2.3925410, 48.8405290 2.3878980, 48.8406298 2.4087338, 48.8408716 2.4093998, 48.8408973 2.4043894, 48.8411011 2.3894090, 48.8411636 2.4011997, 48.8412990 2.3878120, 48.8414464 2.4049212, 48.8415076 2.4114849, 48.8415328 2.3867030, 48.8416660 2.4012796, 48.8419094 2.4012356, 48.8421054 2.4051399, 48.8422686 2.4130852, 48.8427012 2.4099683, 48.8430070 2.4049900, 48.8432746 2.4053848, 48.8435321 2.4018263, 48.8435985 2.3849459, 48.8438772 2.4055537, 48.8438822 2.4018602, 48.8441184 2.4107116, 48.8445290 2.4022130, 48.8445690 2.3838350, 48.8447684 2.4039094, 48.8450108 2.3819449, 48.8450601 2.4059175, 48.8451489 2.3992116, 48.8456490 2.4058577, 48.8458140 2.3781933, 48.8460195 2.4011318, 48.8464795 2.3973596, 48.8468250 2.3761200, 48.8469175 2.3998635, 48.8470370 2.3752130, 48.8473365 2.3968804, 48.8475637 2.3772093, 48.8476803 2.3969131, 48.8478107 2.3769587, 48.8486250 2.3761890, 48.8486464 2.3760764, 48.8486500 2.3759526, 48.8486995 2.3922091, 48.8488565 2.3718825, 48.8491107 2.3914645, 48.8491891 2.3706453, 48.8492039 2.3749537, 48.8493182 2.3945344, 48.8494100 2.3666950, 48.8495420 2.3885630, 48.8496199 2.3992270, 48.8496430 2.3879630, 48.8497090 2.3874500, 48.8499140 2.3738580, 48.8500548 2.3704157, 48.8501440 2.3736032, 48.8501956 2.3990356, 48.8507639 2.3673484, 48.8517110 2.3618880, 48.8517771 2.3894115, 48.8518450 2.3616490, 48.8521525 2.3608127, 48.8522346 2.3609020, 48.8526930 2.3593190, 48.8527195 2.3598976, 48.8527480 2.3589640, 48.8531388 2.3585705, 48.8532690 2.3582420, 48.8535826 2.3671894, 48.8536386 2.3574595, 48.8536840 2.3653980, 48.8540083 2.3867106, 48.8542800 2.3558000, 48.8543900 2.3585670, 48.8546430 2.3624970, 48.8551500 2.3611171, 48.8551661 2.3610199, 48.8553710 2.3839922, 48.8554533 2.3526702, 48.8555080 2.3530370, 48.8557740 2.3511230, 48.8557940 2.3561690, 48.8559788 2.3536549, 48.8576042 2.3453235, 48.8576673 2.3795437, 48.8578611 2.3794239, 48.8580233 2.3793056, 48.8588686 2.3399492, 48.8593222 2.3528610, 48.8597358 2.3468419, 48.8618647 2.3406148, 48.8659038 2.3352738, 48.8664823 2.3650887, 48.8680548 2.3339763, 48.8682365 2.3599800, 48.8683243 2.3611065, 48.8693195 2.3570045, 48.8692824 2.3567025, 48.8701819 2.3507724, 48.8703411 2.3499916, 48.8703632 2.3498715, 48.8704864 2.3493477, 48.8705032 2.3492529, 48.8716194 2.3500035, 48.8721225 2.3499157, 48.8721226 2.3502025, 48.8722370 2.3500383, 48.8737185 2.3504412, 48.8741816 2.3506318, 48.8747445 2.3507850, 48.8752900 2.3395820, 48.8758873 2.3483293, 48.8760619 2.3511508, 48.8761825 2.3510275, 48.8762909 2.3511140, 48.8779921 2.3512114, 48.8784568 2.3428425, 48.8787058 2.3506082, 48.8792051 2.3494881, 48.8792478 2.3478686, 48.8794000 2.3508120, 48.8795410 2.3488399, 48.8798786 2.3436312, 48.8799663 2.3473845, 48.8205221 2.3499531, 48.8204523 2.3498034, 48.8518337 2.3885816, 48.8676507 2.3427272, 48.8203353 2.3492312, 48.8199467 2.3483675, 48.8226912 2.3495447, 48.8233348 2.3532089, 48.8120117 2.3871686, 48.8127411 2.3857008, 48.8126050 2.3874435, 48.8119187 2.3872169, 48.8480339 2.3711696, 48.8483465 2.3710764, 48.8488787 2.3707634, 48.8515203 2.3696022, 48.8537094 2.3705397, 48.8537227 2.3702879, 48.8534314 2.3706101, 48.8826655 2.3531967, 48.8828483 2.3532440, 48.8823834 2.3531283, 48.8500168 2.3926915, 48.8502098 2.3923579, 48.8497025 2.3932209, 48.8841048 2.3216813, 48.8498626 2.3938772, 48.8840213 2.3219041, 48.8841728 2.3219390, 48.8494363 2.3945868, 48.8385781 2.3705346, 48.8392685 2.3708042, 48.8381652 2.3706674, 48.8449733 2.3955604, 48.8452920 2.3209130, 48.8452821 2.3979496, 48.8463896 2.3943133, 48.8471562 2.3938782, 48.8489640 2.3916850, 48.8493880 2.3888810, 48.8496070 2.3873440, 48.8502461 2.3827334, 48.8504940 2.3815430, 48.8505009 2.3846476, 48.8513150 2.3816100, 48.8518018 2.3280805, 48.8525120 2.3807800, 48.8533500 2.3805110, 48.8537880 2.3957560, 48.8541520 2.3797770, 48.8561260 2.3783390, 48.8576484 2.3771545, 48.8584759 2.3764078, 48.8603270 2.3754070, 48.8618492 2.3647130, 48.8621758 2.3636326, 48.8622764 2.3665452, 48.8633235 2.3689417, 48.8645520 2.3597753, 48.8671223 2.3513757, 48.8700760 2.3506120, 48.8736310 2.3479604, 48.8755325 2.3482416, 48.8758100 2.3397850, 48.8760265 2.3400514, 48.8760800 2.3403660, 48.8768678 2.3487512, 48.8489499 2.3541277, 48.8246333 2.3621995, 48.8240842 2.3636888, 48.8241109 2.3637054, 48.8240998 2.3638457, 48.8237126 2.3653208, 48.8225139 2.3638751, 48.8221895 2.3632536, 48.8223064 2.3631664, 48.8222916 2.3627648, 48.8222392 2.3628073, 48.8223782 2.3631115, 48.8223716 2.3627130, 48.8224283 2.3626633, 48.8230753 2.3626307, 48.8234533 2.3618634, 48.8232058 2.3603599, 48.8728990 2.3346516, 48.8478375 2.3535433, 48.8226659 2.3580445, 48.8229485 2.3577916, 48.8229254 2.3569509, 48.8230185 2.3566795, 48.8222859 2.3473947, 48.8210082 2.3427545, 48.8211212 2.3425439, 48.8211618 2.3417447, 48.8389060 2.3767670, 48.8390010 2.3874480, 48.8396552 2.3779295, 48.8543680 2.3547701, 48.8361400 2.3232008, 48.8221069 2.3505029, 48.8202708 2.3594105, 48.8202117 2.3594306, 48.8195166 2.3596336, 48.8194688 2.3590386, 48.8193950 2.3590616, 48.8193544 2.3597323, 48.8193606 2.3601238, 48.8414957 2.3371064, 48.8417477 2.3371307, 48.8415976 2.3371190, 48.8419834 2.3371310, 48.8418619 2.3371366, 48.8422384 2.3371968, 48.8239017 2.3229235, 48.8242472 2.3213940, 48.8245758 2.3199505, 48.8255285 2.3158189, 48.8256468 2.3482018, 48.8258238 2.3144135, 48.8260929 2.3588377, 48.8261054 2.3131480, 48.8275286 2.3318231, 48.8451702 2.3983100, 48.8475546 2.3889290, 48.8478588 2.3908091, 48.8482240 2.3808030, 48.8482720 2.3787290, 48.8490260 2.3810470, 48.8492020 2.3781220, 48.8498208 2.3768806, 48.8499970 2.3791060, 48.8520364 2.3739698, 48.8540329 2.3736919, 48.8545885 2.3714719, 48.8546118 2.3729736, 48.8546280 2.3710930, 48.8550337 2.3704743, 48.8574091 2.3612872, 48.8577110 2.3608910, 48.8618100 2.3539090, 48.8627772 2.3535227, 48.8646021 2.3531390, 48.8700440 2.3507020, 48.8737450 2.3479740, 48.8738400 2.3446450, 48.8761660 2.3441530, 48.8791390 2.3535520, 48.8798180 2.3528100, 48.8820870 2.3509300, 48.8861322 2.3494762, 48.8866800 2.3495020, 48.8876420 2.3494764, 48.8878870 2.3494964, 48.8906598 2.3495186, 48.8909454 2.3495172, 48.8506402 2.3427239, 48.8511253 2.3446769, 48.8122390 2.3613201, 48.8123520 2.3612691, 48.8123785 2.3612530, 48.8127724 2.3617251, 48.8129614 2.3610733, 48.8131168 2.3610438, 48.8133217 2.3609714, 48.8506918 2.3841353, 48.8145369 2.3614435, 48.8143161 2.3607058, 48.8144556 2.3606173, 48.8145228 2.3613147, 48.8147842 2.3605422, 48.8148230 2.3605315, 48.8151292 2.3601961, 48.8187866 2.3610099, 48.8226770 2.3469702, 48.8237890 2.3481077, 48.8229290 2.3469037, 48.8227998 2.3462308, 48.8226622 2.3461282, 48.8220105 2.3463703, 48.8253834 2.3497343, 48.8259715 2.3507845, 48.8256496 2.3504330, 48.8256632 2.3497741, 48.8258771 2.3495257, 48.8256384 2.3493057, 48.8258284 2.3486459, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8255453 2.3475405, 48.8256778 2.3462187, 48.8771870 2.3513170, 48.8257731 2.3455104, 48.8260781 2.3450782, 48.8260527 2.3450339, 48.8257972 2.3453018, 48.8258685 2.3448678, 48.8264939 2.3422757, 48.8264077 2.3428246, 48.8256413 2.3500952, 48.8764165 2.3555503, 48.8764781 2.3553328, 48.8765890 2.3553673, 48.8426583 2.3073002, 48.8272380 2.3220817, 48.8423305 2.3075420, 48.8361937 2.3095039, 48.8601247 2.4309498, 48.8771434 2.3517304, 48.8764892 2.3552357, 48.8765119 2.3549110, 48.8765499 2.3550110, 48.8768355 2.3527879, 48.8770861 2.3518933, 48.8266961 2.3392484, 48.8268524 2.3383549, 48.8276520 2.3326075, 48.8277073 2.3307027, 48.8279313 2.3307106, 48.8277124 2.3302466, 48.8277018 2.3297638, 48.8277159 2.3298764, 48.8682736 2.3412653, 48.8277088 2.3287499, 48.8277159 2.3275188, 48.8277230 2.3275992, 48.8277300 2.3277843, 48.8273186 2.3263279, 48.8365117 2.3931886, 48.8309811 2.3172117, 48.8310197 2.3171605, 48.8311173 2.3166315, 48.8463247 2.3542973, 48.8474791 2.3523484, 48.8154625 2.3638923, 48.8154122 2.3632391, 48.8647426 2.3979362, 48.8148734 2.3627498, 48.8148231 2.3622389, 48.8148743 2.3639179, 48.8098430 2.3618112, 48.8098589 2.3613470, 48.8099103 2.3607553, 48.8091161 2.3610037, 48.8091073 2.3609702, 48.8090993 2.3609380, 48.8124837 2.3871372, 48.8124426 2.3871835, 48.8123663 2.3872619, 48.8123292 2.3873129, 48.8123610 2.3868616, 48.8123190 2.3869052, 48.8122457 2.3869876, 48.8122024 2.3870319, 48.8121539 2.3880498, 48.8121207 2.3880840, 48.8126819 2.3862937, 48.8118566 2.3898327, 48.8122314 2.3870295, 48.8124561 2.3871476, 48.8117474 2.3906746, 48.8115778 2.3903715, 48.8114966 2.3902267, 48.8123444 2.3868994, 48.8123428 2.3872773, 48.8664637 2.4000823, 48.8673359 2.3991033, 48.8674669 2.3990064, 48.8715794 2.4041825, 48.8736876 2.4050632, 48.8690375 2.4018799, 48.8681245 2.4017154, 48.8684845 2.4013925, 48.8665408 2.3996952, 48.8675264 2.4005840, 48.8673402 2.4006763, 48.8679278 2.4013702, 48.8679434 2.4014755, 48.8680495 2.4014213, 48.8680507 2.4015447, 48.8682598 2.4015540, 48.8683220 2.4016258, 48.8688060 2.4017709, 48.8688371 2.4017940, 48.8690675 2.4022654, 48.8143764 2.3434872, 48.8149595 2.3483612, 48.8155173 2.3447586, 48.8144404 2.3497005, 48.8147949 2.3488666, 48.8709604 2.4036547, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8730171 2.4047378, 48.8772965 2.4093947, 48.8709768 2.4035156, 48.8729522 2.4050353, 48.8718932 2.4046138, 48.8721618 2.4043561, 48.8700499 2.4031251, 48.8748544 2.4054806, 48.8769262 2.4061080, 48.8714551 2.4043701, 48.8716275 2.4045199, 48.8711831 2.4041560, 48.8698381 2.4029325, 48.8722236 2.4047280, 48.8772063 2.4094486, 48.8702353 2.4031395, 48.8705273 2.4034029, 48.8713337 2.4042119, 48.8714440 2.4045360, 48.8715019 2.4045081, 48.8721599 2.4047025, 48.8722019 2.4044780, 48.8736783 2.4050852, 48.8738942 2.4051527, 48.8740366 2.4050675, 48.8762240 2.4062991, 48.8763811 2.4061703, 48.8769898 2.4054164, 48.8774098 2.4070114, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8756694 2.4011802, 48.8711865 2.4001138, 48.8768593 2.4057793, 48.8762568 2.4026044, 48.8680913 2.3978796, 48.8692292 2.3966523, 48.8725672 2.3992261, 48.8784629 2.4100715, 48.8701577 2.3958401, 48.8690126 2.3971718, 48.8769740 2.4053224, 48.8732754 2.3993407, 48.8780164 2.4108510, 48.8726193 2.3990837, 48.8701445 2.3959121, 48.8702568 2.3970354, 48.8707130 2.3991468, 48.8707754 2.3989361, 48.8708354 2.3989370, 48.8711097 2.4001519, 48.8711850 2.4004090, 48.8712072 2.4001549, 48.8712159 2.4002871, 48.8712217 2.4002298, 48.8723933 2.3993546, 48.8726309 2.3990147, 48.8727647 2.3994633, 48.8728768 2.3993183, 48.8728938 2.3993172, 48.8733527 2.3993062, 48.8734256 2.3990749, 48.8735753 2.3990719, 48.8742140 2.3985840, 48.8753906 2.3990200, 48.8755656 2.3996641, 48.8758525 2.4010202, 48.8758552 2.4019932, 48.8758607 2.4010867, 48.8758784 2.4027378, 48.8758866 2.4011952, 48.8759645 2.4018531, 48.8762275 2.4030379, 48.8763320 2.4034081, 48.8765048 2.4039735, 48.8767145 2.4045468, 48.8768873 2.4052913, 48.8769447 2.4050363, 48.8776734 2.4065084, 48.8777001 2.4053079, 48.8779210 2.4059297, 48.8780658 2.4109854, 48.8781032 2.4108393, 48.8781597 2.4107923, 48.8782650 2.4058287, 48.8783033 2.4112825, 48.8785981 2.4091821, 48.8786831 2.4091366, 48.8646840 2.3980595, 48.8251897 2.3469815, 48.8248691 2.3468871, 48.8250908 2.3464880, 48.8237982 2.3450583, 48.8230883 2.3447901, 48.8237048 2.3451996, 48.8219312 2.3422877, 48.8226168 2.3442269, 48.8240226 2.3413467, 48.8239465 2.3416177, 48.8247674 2.3413234, 48.8248954 2.3414221, 48.8250781 2.3413713, 48.8256029 2.3415131, 48.8645296 2.3999995, 48.8650286 2.3978764, 48.8653038 2.3983748, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8664565 2.3996388, 48.8647748 2.3993182, 48.8643290 2.3977966, 48.8661206 2.3993734, 48.8647416 2.4000331, 48.8655701 2.3988667, 48.8655819 2.3982331, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8650490 2.3975315, 48.8653472 2.3979562, 48.8646156 2.3980291, 48.8641688 2.3976584, 48.8642835 2.3981370, 48.8645686 2.3986116, 48.8646661 2.3999637, 48.8648392 2.3978485, 48.8648400 2.3978274, 48.8649034 2.3999292, 48.8649167 2.3996207, 48.8649547 2.4001524, 48.8649879 2.3978217, 48.8650741 2.3972853, 48.8651883 2.3985982, 48.8652188 2.3989491, 48.8653550 2.3980167, 48.8654901 2.3978337, 48.8655753 2.3991180, 48.8657823 2.3994721, 48.8673886 2.3988664, 48.8255787 2.3417572, 48.8245328 2.3394230, 48.8821571 2.3281764, 48.8333333 2.3556520, 48.8462947 2.4215157, 48.8456693 2.4284217, 48.8414468 2.4144659, 48.8438908 2.4240046, 48.8456718 2.4237071, 48.8456998 2.4282037, 48.8457116 2.4279991, 48.8463467 2.4286638, 48.8385555 2.3567522, 48.8385802 2.3568194, 48.8575448 2.3507955, 48.8573962 2.3495429, 48.8583089 2.3478780, 48.8567290 2.3486047, 48.8567698 2.3537979, 48.8569103 2.3479938, 48.8569413 2.3478736, 48.8570693 2.3504424, 48.8572967 2.3515291, 48.8573370 2.3494764, 48.8575122 2.3463154, 48.8576797 2.3474237, 48.8579572 2.3466352, 48.8581459 2.3478668, 48.8582478 2.3479213, 48.8582571 2.3473959, 48.8585864 2.3477527, 48.8587983 2.3475129, 48.8661899 2.3718762, 48.8135121 2.3892260, 48.8524191 2.3679142, 48.8522308 2.3678097, 48.8343361 2.3668535, 48.8319649 2.3723199, 48.8344622 2.3673602, 48.8322674 2.3703758, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8271728 2.3685245, 48.8224197 2.3593888, 48.8226287 2.3606739, 48.8227058 2.3609553, 48.8225825 2.3611738, 48.8226746 2.3608366, 48.8226533 2.3607500, 48.8227567 2.3618443, 48.8229131 2.3618148, 48.8231151 2.3621098, 48.8230552 2.3621472, 48.8214836 2.3639524, 48.8209801 2.3644246, 48.8243498 2.3621084, 48.8242991 2.3620875, 48.8244278 2.3621405, 48.8244847 2.3621306, 48.8245544 2.3621635, 48.8239970 2.3618533, 48.8245778 2.3614015, 48.8241677 2.3617205, 48.8250784 2.3610028, 48.8247279 2.3612848, 48.8249548 2.3611007, 48.8257664 2.3605166, 48.8257097 2.3600718, 48.8253582 2.3607812, 48.8254715 2.3606886, 48.8260853 2.3604941, 48.8256469 2.3607545, 48.8256982 2.3612634, 48.8255348 2.3609777, 48.8256127 2.3614328, 48.8254727 2.3611014, 48.8255281 2.3616006, 48.8254308 2.3611848, 48.8252349 2.3615748, 48.8253116 2.3614221, 48.8249807 2.3620807, 48.8247239 2.3594920, 48.8248051 2.3598326, 48.8250256 2.3619913, 48.8768078 2.4066474, 48.8213603 2.3347178, 48.8216005 2.3337522, 48.8224005 2.3283664, 48.8224332 2.3281893, 48.8232060 2.3266224, 48.8232523 2.3263756, 48.8233935 2.3258237, 48.8232142 2.3265525, 48.8233176 2.3240021, 48.8233300 2.3239779, 48.8242238 2.3224615, 48.8242464 2.3195866, 48.8247112 2.3199067, 48.8240306 2.3209791, 48.8250441 2.3183751, 48.8564210 2.3497120, 48.8147115 2.3918897, 48.8120345 2.3912341, 48.8125282 2.3767154, 48.8124576 2.3767691, 48.8134114 2.3733895, 48.8387916 2.3812873, 48.8328265 2.3361398, 48.8303448 2.3338271, 48.8295986 2.3338514, 48.8326497 2.3356190, 48.8334329 2.3320275, 48.8123443 2.3746960, 48.8664178 2.3522546, 48.8679582 2.3516149, 48.8674094 2.3516806, 48.8686121 2.3859914, 48.8292803 2.3687447, 48.8242892 2.3764902, 48.8243395 2.3766423, 48.8259590 2.3538780, 48.8333535 2.3991671, 48.8342051 2.3135017, 48.8366334 2.4095667, 48.8384694 2.4012891, 48.8177106 2.3982189, 48.8820461 2.3336672, 48.8536438 2.3402017, 48.8591372 2.3430272, 48.8526953 2.3470942, 48.8622322 2.3573881, 48.8600347 2.4024972, 48.8608921 2.3439350, 48.8581223 2.3362437, 48.8690313 2.3433548, 48.8578089 2.3606384, 48.8902743 2.3602888, 48.8890315 2.3624318, 48.8889739 2.3623979, 48.8906110 2.3613962, 48.8899355 2.3618064, 48.8911052 2.3611596, 48.8908415 2.3611676, 48.8909716 2.3611648, 48.8899801 2.3617329, 48.8104596 2.3892371, 48.8369513 2.3561959, 48.8378748 2.3573539, 48.8367172 2.3580385, 48.8370906 2.3578084, 48.8304775 2.3673228, 48.8248321 2.3174022, 48.8254202 2.3167049, 48.8252648 2.3158680, 48.8250589 2.3163847, 48.8256612 2.3136542, 48.8262642 2.3127271, 48.8264426 2.3130329, 48.8469222 2.3993098, 48.8490463 2.3989425, 48.8563665 2.3939744, 48.8572552 2.3854799, 48.8572776 2.3855905, 48.8576754 2.3919847, 48.8594350 2.3870127, 48.8722210 2.3643307, 48.8533715 2.3422551, 48.8310515 2.3425823, 48.8474853 2.3018312, 48.8474881 2.3018494, 48.8264842 2.3599429, 48.8276987 2.3717961, 48.8254306 2.3745724, 48.8260635 2.3616139, 48.8261039 2.3582769, 48.8261271 2.3589262, 48.8281835 2.3735871, 48.8508651 2.4065384, 48.8467079 2.4104905, 48.8440402 2.4107413, 48.8468249 2.4104107, 48.8468448 2.4101919, 48.8468528 2.4101033, 48.8469391 2.4103030, 48.8471654 2.4071583, 48.8472069 2.4066764, 48.8513516 2.4062448, 48.8517143 2.4071448, 48.8664981 2.3243419, 48.8509847 2.4071520, 48.8510074 2.4065270, 48.8913537 2.3623037, 48.8912306 2.3619236, 48.8913500 2.3613552, 48.8898740 2.3601766, 48.8899888 2.3601160, 48.8913687 2.3615676, 48.8781367 2.3447619, 48.8715688 2.4022351, 48.8901550 2.3611961, 48.8900693 2.3622119, 48.8900609 2.3623123, 48.8250029 2.3166081, 48.8272256 2.3831977, 48.8949489 2.3601209, 48.8911550 2.3633069, 48.8164343 2.3285923, 48.8309472 2.3666202, 48.8841496 2.3640114, 48.8684859 2.3702604, 48.8900866 2.3603615, 48.8394801 2.3713759, 48.8391251 2.3715959, 48.8369209 2.3526719, 48.8371917 2.3528301, 48.8372144 2.3529137, 48.8372738 2.3531061, 48.8372893 2.3538086, 48.8374941 2.3543561, 48.8375300 2.3539139, 48.8377816 2.3554257, 48.8378949 2.3555704, 48.8379577 2.3560229, 48.8380217 2.3560121, 48.8904554 2.3613786, 48.8457722 2.3952172, 48.8240305 2.3234209, 48.8275253 2.3261423, 48.8295090 2.3482501, 48.8296744 2.3329116, 48.8296889 2.3480032, 48.8300287 2.3471023, 48.8306286 2.3439710, 48.8307741 2.3363033, 48.8309276 2.3553044, 48.8309560 2.3563203, 48.8313659 2.3419868, 48.8314521 2.3413377, 48.8337067 2.3652426, 48.8343505 2.3671081, 48.8349875 2.3690185, 48.8369558 2.3731388, 48.8372547 2.3741922, 48.8389808 2.3876834, 48.8400503 2.3966865, 48.8405435 2.3976638, 48.8419125 2.3931180, 48.8425378 2.3971712, 48.8431508 2.3868501, 48.8438225 2.3907961, 48.8438547 2.3884184, 48.8441353 2.3903995, 48.8448504 2.3956453, 48.8449655 2.3825373, 48.8450610 2.3817030, 48.8455335 2.4059659, 48.8457371 2.3744755, 48.8458882 2.3745674, 48.8460421 2.3746885, 48.8461407 2.3758102, 48.8461570 2.3756299, 48.8462020 2.3762720, 48.8463517 2.4060121, 48.8463588 2.3819651, 48.8469945 2.3695400, 48.8469983 2.3840650, 48.8470022 2.3692654, 48.8485165 2.3710817, 48.8493154 2.3681094, 48.8494375 2.3698324, 48.8497678 2.3690872, 48.8499439 2.3739778, 48.8502341 2.3736347, 48.8502976 2.3687576, 48.8538513 2.4054931, 48.8636158 2.3993948, 48.8639863 2.3992574, 48.8652421 2.3951007, 48.8655085 2.3946733, 48.8677329 2.3907031, 48.8684805 2.3898741, 48.8688786 2.3895491, 48.8702670 2.3890490, 48.8704853 2.3883060, 48.8714250 2.3861474, 48.8717558 2.3890342, 48.8315085 2.3570011, 48.8900224 2.3626977, 48.8900145 2.3627866, 48.8913601 2.3631469, 48.8898494 2.3629189, 48.8899105 2.3620699, 48.8911316 2.3641074, 48.8911480 2.3638611, 48.8367512 2.3562703, 48.8368334 2.3563141, 48.8372824 2.3577423, 48.8277530 2.3505091, 48.8710452 2.3583430, 48.8816643 2.3664685, 48.8817430 2.3657091, 48.8585418 2.3648460, 48.8911935 2.3792213, 48.8521711 2.3714010, 48.8240504 2.3356831, 48.8240627 2.3308903, 48.8237907 2.3314831, 48.8240750 2.3283368, 48.8235152 2.3304799, 48.8241368 2.3280257, 48.8242940 2.3282027, 48.8244671 2.3310137, 48.8241951 2.3294043, 48.8245642 2.3282644, 48.8243293 2.3287472, 48.8245147 2.3285541, 48.8248609 2.3290503, 48.8245871 2.3263627, 48.8250198 2.3200783, 48.8249015 2.3203760, 48.8576869 2.3888826, 48.8901067 2.3618300, 48.8320164 2.4039323, 48.8320207 2.4038132, 48.8341445 2.4013757, 48.8351942 2.4016328, 48.8372220 2.4037368, 48.8803395 2.3738607, 48.8632906 2.3969375, 48.8636364 2.3968839, 48.8597103 2.3998209, 48.8387714 2.4093332, 48.8398694 2.4182884, 48.8490942 2.3396105, 48.8397083 2.4096056, 48.8396415 2.4181892, 48.8314328 2.3873778, 48.8317821 2.3857254, 48.8320640 2.3883288, 48.8350055 2.3874833, 48.8358666 2.3847168, 48.8373190 2.3826641, 48.8374528 2.3917533, 48.8380369 2.3818677, 48.8387612 2.3810831, 48.8388667 2.3937811, 48.8389421 2.3806421, 48.8394110 2.3802556, 48.8573040 2.3514977, 48.8614181 2.3533893, 48.8616790 2.3513642, 48.8617384 2.3511100, 48.8617679 2.3509583, 48.8619491 2.3505495, 48.8620204 2.3499051, 48.8620520 2.3497369, 48.8638474 2.3430292, 48.8643157 2.3474095, 48.8648065 2.3458024, 48.8577225 2.3496460, 48.8552405 2.3375518, 48.8552856 2.3399457, 48.8555538 2.3334871, 48.8542055 2.3303219, 48.8901377 2.3597002, 48.8901098 2.3596369, 48.8174391 2.3251637, 48.8908511 2.3602853, 48.8916443 2.3596030, 48.8904169 2.3596324, 48.8909114 2.3604949, 48.8906117 2.3602364, 48.8909059 2.3606042, 48.8432520 2.3116523, 48.8434173 2.3127954, 48.8280995 2.3190414, 48.8763474 2.3877275, 48.8709254 2.3085765, 48.8810201 2.3499806, 48.8294497 2.3691497, 48.8303825 2.3751684, 48.8303577 2.3751842, 48.8662240 2.3388110, 48.8796743 2.3454738, 48.8783418 2.3453839, 48.8322843 2.3152081, 48.8323761 2.3150659, 48.8835862 2.3696037, 48.8844373 2.3587346, 48.8959172 2.3812055, 48.8717135 2.3253034, 48.8911754 2.3596165, 48.8900400 2.3632191, 48.8907659 2.3596503, 48.8912089 2.3601196, 48.8908932 2.3596443, 48.8472316 2.4033307, 48.8474060 2.3985801, 48.8475134 2.3982539, 48.8476893 2.3944332, 48.8480152 2.3982806, 48.8523912 2.3718273, 48.8678628 2.3622500, 48.8682145 2.3624441, 48.8753496 2.3569996, 48.8757151 2.3564916, 48.8759340 2.3562965, 48.8763508 2.3558909, 48.8769505 2.3553665, 48.8776793 2.3547127, 48.8779306 2.3546949, 48.8779709 2.3544608, 48.8789523 2.3541157, 48.8798131 2.3564484, 48.8201237 2.3643148, 48.8287628 2.3508143, 48.8259411 2.3547905, 48.8281212 2.3500641, 48.8278444 2.3497300, 48.8257450 2.3500109, 48.8257808 2.3487518, 48.8257810 2.3469176, 48.8258180 2.3512599, 48.8258437 2.3479059, 48.8258499 2.3519400, 48.8259193 2.3535805, 48.8260601 2.3538016, 48.8278445 2.3496676, 48.8279309 2.3495913, 48.8287082 2.3506786, 48.8298207 2.3497671, 48.8849791 2.3863829, 48.8297015 2.3756891, 48.8297318 2.3756639, 48.8302556 2.3763483, 48.8302884 2.3764082, 48.8303257 2.3764732, 48.8554738 2.3844934, 48.8558003 2.3750398, 48.8563070 2.3766560, 48.8563443 2.3735148, 48.8563892 2.3736140, 48.8573040 2.3791655, 48.8575988 2.3723727, 48.8580871 2.3720646, 48.8599833 2.3751511, 48.8606643 2.3672378, 48.8612261 2.3646636, 48.8612423 2.3694822, 48.8615175 2.3633665, 48.8620657 2.3606971, 48.8625682 2.3596478, 48.8658847 2.3446913, 48.8659713 2.3446586, 48.8669646 2.3445039, 48.8241171 2.3356096, 48.8251709 2.3747800, 48.8262226 2.3733016, 48.8265738 2.3354498, 48.8270035 2.3668285, 48.8275458 2.3738970, 48.8276171 2.3715500, 48.8279688 2.3733478, 48.8280437 2.3734448, 48.8303701 2.3343029, 48.8324259 2.3797103, 48.8328426 2.3359068, 48.8348268 2.3999659, 48.8363410 2.4027533, 48.8363547 2.4029753, 48.8367250 2.4043293, 48.8367567 2.3928042, 48.8375039 2.3386695, 48.8380611 2.4053828, 48.8381721 2.4055291, 48.8420689 2.3415277, 48.8303346 2.3579037, 48.8303533 2.3580717, 48.8303844 2.3578871, 48.8304203 2.3580788, 48.8304421 2.3578232, 48.8305106 2.3580445, 48.8305699 2.3576824, 48.8305823 2.3579841, 48.8305979 2.3576468, 48.8306330 2.3579676, 48.8306906 2.3579250, 48.8306968 2.3577332, 48.8307140 2.3578646, 48.8307148 2.3577948, 48.8436310 2.3100919, 48.8750791 2.4237831, 48.8435379 2.3114498, 48.8110114 2.3903499, 48.8748132 2.4244291, 48.8105770 2.3898239, 48.8249295 2.3605759, 48.8298782 2.3572786, 48.8121561 2.3455277, 48.8121656 2.3454670, 48.8121922 2.3454324, 48.8121970 2.3456216, 48.8122302 2.3456151, 48.8122379 2.3454280, 48.8122621 2.3456050, 48.8126777 2.3451291, 48.8531717 2.4274580, 48.8482373 2.3469649, 48.8508540 2.3477158, 48.8689060 2.3919843, 48.8416771 2.4282177, 48.8682148 2.3979085, 48.8149242 2.3491947, 48.8141498 2.3492667, 48.8144504 2.3497618, 48.8146703 2.3477824, 48.8140762 2.3495749, 48.8149250 2.3454004, 48.8145973 2.3447291, 48.8145023 2.3445460, 48.8148358 2.3455753, 48.8146719 2.3491005, 48.8147778 2.3479413, 48.8149631 2.3480434, 48.8151173 2.3484075, 48.8301869 2.3802993, 48.8517163 2.4061866, 48.8523080 2.4042254, 48.8534161 2.4030439, 48.8196529 2.3647206, 48.8556190 2.3071441, 48.8555242 2.4213456, 48.8541163 2.3390471, 48.8426080 2.3301580, 48.8205827 2.3643748, 48.8222971 2.3590009, 48.8232673 2.3541002, 48.8309399 2.3810186, 48.8339877 2.3859431, 48.8457908 2.3539346, 48.8370765 2.3521704, 48.8478098 2.4348432, 48.8473408 2.4348372, 48.8475864 2.4357373, 48.8751593 2.3701002, 48.8585317 2.4337075, 48.8593469 2.4316636, 48.8587081 2.4325702, 48.8593963 2.4317070, 48.8600781 2.3465254, 48.8595769 2.3472174, 48.8595293 2.3467856, 48.8619711 2.3477793, 48.8841936 2.3491540, 48.8308164 2.3569249, 48.8312806 2.3593713, 48.8304836 2.3566079, 48.8306339 2.3565203, 48.8307798 2.3565461, 48.8308793 2.3564894, 48.8309449 2.3569926, 48.8309482 2.3563554, 48.8310070 2.3563176, 48.8310093 2.3571815, 48.8310613 2.3573344, 48.8310873 2.3571592, 48.8515332 2.3460413, 48.8516027 2.3460829, 48.8283426 2.3654057, 48.8314760 2.3641970, 48.8315017 2.3608865, 48.8324177 2.3616433, 48.8280428 2.3570384, 48.8271111 2.3573127, 48.8257851 2.3598664, 48.8284045 2.3568525, 48.8287545 2.3559409, 48.8262889 2.3423183, 48.8260589 2.3584625, 48.8262056 2.3584116, 48.8263443 2.3617182, 48.8263836 2.3570058, 48.8266597 2.3568935, 48.8268145 2.3634592, 48.8268348 2.3665087, 48.8269226 2.3568292, 48.8269700 2.3568093, 48.8270302 2.3639531, 48.8271184 2.3667517, 48.8272069 2.3567423, 48.8272363 2.3567348, 48.8272788 2.3567770, 48.8274640 2.3567110, 48.8275734 2.3566440, 48.8276061 2.3566713, 48.8278792 2.3659999, 48.8279455 2.3568515, 48.8279668 2.3644980, 48.8281960 2.3564573, 48.8282189 2.3564280, 48.8282237 2.3563309, 48.8282434 2.3565433, 48.8283451 2.3562431, 48.8283555 2.3562150, 48.8283601 2.3563168, 48.8283770 2.3650543, 48.8283888 2.3655621, 48.8284641 2.3562063, 48.8284729 2.3649999, 48.8284723 2.3655382, 48.8285149 2.3563221, 48.8285359 2.3654369, 48.8285623 2.3561554, 48.8285831 2.3561729, 48.8288668 2.3652562, 48.8289038 2.3651263, 48.8289131 2.3654247, 48.8289299 2.3567254, 48.8290078 2.3655668, 48.8290690 2.3648630, 48.8290950 2.3561659, 48.8291460 2.3577224, 48.8291592 2.3654668, 48.8292215 2.3649631, 48.8292354 2.3648894, 48.8294445 2.3643751, 48.8296502 2.3647788, 48.8297218 2.3646366, 48.8299425 2.3645998, 48.8300157 2.3570873, 48.8303572 2.3568440, 48.8305711 2.3641769, 48.8311201 2.3637648, 48.8312784 2.3581099, 48.8312981 2.3583557, 48.8315605 2.3635129, 48.8316683 2.3631977, 48.8317557 2.3604147, 48.8321135 2.3604370, 48.8320852 2.3603455, 48.8321944 2.3622035, 48.8324846 2.3616424, 48.8324918 2.3622519, 48.8325620 2.3618635, 48.8326137 2.3620177, 48.8327614 2.3622482, 48.8261024 2.3594483, 48.8261611 2.3604678, 48.8261735 2.3605547, 48.8261983 2.3593167, 48.8262246 2.3601836, 48.8262818 2.3599933, 48.8262849 2.3606816, 48.8263019 2.3608178, 48.8263699 2.3596644, 48.8264163 2.3598711, 48.8264875 2.3630190, 48.8265354 2.3633525, 48.8266498 2.3632069, 48.8267930 2.3654672, 48.8268029 2.3643460, 48.8268236 2.3644888, 48.8268291 2.3641616, 48.8268903 2.3662147, 48.8269089 2.3652180, 48.8267977 2.3663149, 48.8269435 2.3633896, 48.8269324 2.3638037, 48.8267862 2.3639559, 48.8268539 2.3636108, 48.8269117 2.3634246, 48.8322812 2.3623411, 48.8267971 2.3636208, 48.8272546 2.3651819, 48.8365709 2.3742554, 48.8538843 2.3710891, 48.8275456 2.3565272, 48.8280589 2.3563698, 48.8263842 2.3568786, 48.8300151 2.3572624, 48.8303208 2.3570220, 48.8292086 2.3568667, 48.8300765 2.3566608, 48.8153391 2.3448291, 48.8729593 2.3892019, 48.8741225 2.3893282, 48.8748365 2.3888937, 48.8511846 2.3478208, 48.8467824 2.3813171, 48.8411291 2.4320878, 48.8522322 2.3898977, 48.8524976 2.3895606, 48.8539546 2.3825521, 48.8544392 2.3816128, 48.8569327 2.3799755, 48.8585657 2.3781777, 48.8633818 2.3710966, 48.8671029 2.3655043, 48.8683370 2.3634922, 48.8699682 2.3607540, 48.8706171 2.3596295, 48.8708012 2.3598095, 48.8712575 2.3602178, 48.8713074 2.3601361, 48.8718731 2.3599327, 48.8724770 2.3594063, 48.8730997 2.3588306, 48.8734420 2.3585204, 48.8742775 2.3577777, 48.8785606 2.3557407, 48.8206503 2.3210333, 48.8204084 2.3209442, 48.8601919 2.4036487, 48.8900480 2.3607496, 48.8898650 2.3626449, 48.8909898 2.3608038, 48.8904400 2.3637643, 48.8901985 2.3637340, 48.8906438 2.3596534, 48.8909653 2.3596380, 48.8551489 2.3398837, 48.8469115 2.3435159, 48.8922565 2.3879668, 48.8896721 2.3596605, 48.8890437 2.3606481, 48.8895540 2.3596572, 48.8899144 2.3604238, 48.8467226 2.4102506, 48.8790165 2.3902411, 48.8821978 2.3665612, 48.8890487 2.3604033, 48.8914345 2.3596388, 48.8897921 2.3604602, 48.8910188 2.3609138, 48.8913355 2.3596375, 48.8897517 2.3604732, 48.8901098 2.3617740, 48.8893542 2.3601189, 48.8329514 2.3692712, 48.8608042 2.3799887, 48.8512675 2.3899326, 48.8605689 2.3786648, 48.8603005 2.3783793, 48.8481543 2.3934076, 48.8519310 2.3891606, 48.8542868 2.3877696, 48.8569986 2.3852716, 48.8575346 2.3847601, 48.8580303 2.3809765, 48.8581695 2.3807581, 48.8583918 2.3804386, 48.8594275 2.3791564, 48.8601780 2.3784708, 48.8604263 2.3782604, 48.8608624 2.3805635, 48.8611746 2.3809999, 48.8858062 2.3345963, 48.8096689 2.3629717, 48.8762181 2.3718774, 48.8420324 2.3637585, 48.8451325 2.3454414, 48.8458811 2.4282677, 48.8459567 2.4286014, 48.8215947 2.3230123, 48.8220619 2.3226785, 48.8210818 2.3222697, 48.8216741 2.3229683, 48.8219451 2.3232523, 48.8219542 2.3232864, 48.8215572 2.3230330, 48.8220346 2.3227025, 48.8219370 2.3232224, 48.8219619 2.3233149, 48.8868550 2.3608645, 48.8237489 2.3639942, 48.8854958 2.3656011, 48.8888984 2.3604882, 48.8889239 2.3604830, 48.8399414 2.3948970, 48.8421069 2.3896051, 48.8735521 2.3649705, 48.8445983 2.3417212, 48.8452169 2.4120881, 48.8461924 2.4121067, 48.8466376 2.4114577, 48.8473580 2.4106924, 48.8473835 2.4103563, 48.8524722 2.4106454, 48.8526979 2.4111873, 48.8557704 2.4107086, 48.8574629 2.4101809, 48.8581256 2.4099841, 48.8587706 2.4100076, 48.8592004 2.4098008, 48.8608587 2.4094863, 48.8649243 2.4085167, 48.8651848 2.4086243, 48.8669825 2.4087455, 48.8681301 2.4072046, 48.8708037 2.4048775, 48.8748416 2.4030830, 48.8800875 2.3982376, 48.8801636 2.3979290, 48.8822748 2.3961932, 48.8897519 2.3898235, 48.8897859 2.3901176, 48.8900562 2.3906182, 48.8908981 2.3898028, 48.8924246 2.3879304, 48.8928662 2.3878039, 48.8931913 2.3928220, 48.8332843 2.3172595, 48.8354567 2.3766787, 48.8930154 2.3876090, 48.8098954 2.3619830, 48.8098143 2.3626382, 48.8098588 2.3620742, 48.8090770 2.3624027, 48.8091027 2.3623940, 48.8845594 2.3650486, 48.8196569 2.3220677, 48.8338132 2.3201157, 48.8296315 2.3814341, 48.8288129 2.3816584, 48.8306388 2.3813576, 48.8843507 2.3642047, 48.8862013 2.3566961, 48.8861995 2.3567861, 48.8257570 2.3480755, 48.8257663 2.3482098, 48.8276817 2.3715635, 48.8277542 2.3314326, 48.8277569 2.3294975, 48.8325094 2.3123346, 48.8326504 2.3120265, 48.8338839 2.3082929, 48.8340082 2.3078231, 48.8376932 2.4037117, 48.8397308 2.3978085, 48.8420906 2.3894385, 48.8425267 2.3896625, 48.8445646 2.3180923, 48.8470920 2.3268174, 48.8521103 2.3659956, 48.8555817 2.3636375, 48.8592929 2.3562507, 48.8596838 2.3565776, 48.8618200 2.3569043, 48.8239032 2.3657211, 48.8461248 2.4233803, 48.8461335 2.4236914, 48.8461392 2.4232057, 48.8610209 2.3105163, 48.8610229 2.3109043, 48.8610190 2.3113026, 48.8920212 2.3617816, 48.8919648 2.3596358, 48.8925714 2.3595715, 48.8977200 2.3586590, 48.8976429 2.3589492, 48.8973798 2.3589436, 48.8284670 2.3264398, 48.8360293 2.3987610, 48.8892547 2.3782943, 48.8545111 2.3633739, 48.8901546 2.3614003, 48.8901565 2.3589941, 48.8901495 2.3592264, 48.8114906 2.3840833, 48.8342510 2.3976866, 48.8346767 2.3969733, 48.8346779 2.3969086, 48.8355574 2.3971295, 48.8355714 2.3970738, 48.8351646 2.3976296, 48.8352730 2.3987266, 48.8358656 2.3983311, 48.8347080 2.3971806, 48.8342927 2.3976622, 48.8343788 2.3972427, 48.8350123 2.3991323, 48.8747013 2.3307416, 48.8738516 2.3311552, 48.8745880 2.3309443, 48.8746180 2.3297594, 48.8736376 2.3310868, 48.8746673 2.3308647, 48.8746733 2.3307385, 48.8746753 2.3305365, 48.8747720 2.3306636, 48.8745933 2.3307016, 48.8745633 2.3314580, 48.8746973 2.3308647, 48.8745893 2.3308470, 48.8740176 2.3311821, 48.8735099 2.3310689, 48.8743253 2.3314260, 48.8746733 2.3307385, 48.8124313 2.3617541, 48.8473899 2.4102789, 48.8484564 2.4353693, 48.8323649 2.4042508, 48.8319766 2.3145168, 48.8325060 2.3158066, 48.8334834 2.3173462, 48.8335457 2.3172542, 48.8338586 2.3183718, 48.8340668 2.3182365, 48.8341266 2.3177915, 48.8347650 2.3425150, 48.8349068 2.3452703, 48.8350373 2.3453379, 48.8350577 2.3457523, 48.8350801 2.3462140, 48.8361574 2.3222159, 48.8389031 2.3587665, 48.8392803 2.3599626, 48.8394354 2.3604664, 48.8472148 2.3034083, 48.8527070 2.3336447, 48.8468848 2.4351107, 48.8470170 2.4351016, 48.8329971 2.3865539, 48.8444665 2.4240626, 48.8454138 2.3449157, 48.8820577 2.3422422, 48.8798304 2.3575115, 48.8911010 2.3515017, 48.8917130 2.3492982, 48.8918470 2.3497087, 48.8878948 2.3493748, 48.8228812 2.3586455, 48.8419273 2.3255444, 48.8419458 2.3253394, 48.8420169 2.3254159, 48.8479230 2.4347878, 48.8392807 2.3902734, 48.8394408 2.3901626, 48.8394886 2.3899208, 48.8393289 2.3907831, 48.8389122 2.3910647, 48.8859544 2.3562670, 48.8863988 2.3563957, 48.8871043 2.3599792, 48.8873089 2.3595500, 48.8875981 2.3596144, 48.8891501 2.3600864, 48.8623031 2.3667215, 48.8634536 2.3668626, 48.8292546 2.3609495, 48.8310548 2.3612243, 48.8264604 2.3691548, 48.8867265 2.3692541, 48.8842868 2.3649687, 48.8843386 2.3644627, 48.8843953 2.3649309, 48.8846074 2.3647555, 48.8857802 2.3686094, 48.8862633 2.3689061, 48.8863797 2.3693225, 48.8878961 2.3705889, 48.8880468 2.3703744, 48.8896210 2.3717466, 48.8327810 2.3359512, 48.8487274 2.3758510, 48.8467389 2.3809082, 48.8250947 2.3203976, 48.8266929 2.3240664, 48.8276403 2.3263672, 48.8366568 2.3904615, 48.8390555 2.3541961, 48.8391729 2.3879459, 48.8393615 2.3547196, 48.8395273 2.3563297, 48.8403152 2.3627036, 48.8403371 2.3598998, 48.8403767 2.3612985, 48.8421501 2.3099414, 48.8431512 2.3481982, 48.8442099 2.3456920, 48.8451757 2.3455730, 48.8457102 2.3460054, 48.8488355 2.3252187, 48.8506988 2.3354533, 48.8380011 2.3605213, 48.8531703 2.4233702, 48.8528421 2.4249527, 48.8532657 2.4245289, 48.8497187 2.3083307, 48.8498617 2.3082589, 48.8292182 2.3745377, 48.8516152 2.3183721, 48.8534062 2.3417373, 48.8750168 2.3409909, 48.8757535 2.3399225, 48.8126600 2.3618130, 48.8456711 2.3490720, 48.8452705 2.3491887, 48.8455873 2.3490693, 48.8107781 2.3625562, 48.8210556 2.3567317, 48.8749302 2.3555936, 48.8936132 2.3841788, 48.8659386 2.3788507, 48.8213142 2.3566414, 48.8212987 2.3567515, 48.8213082 2.3566973, 48.8213185 2.3565892, 48.8254520 2.3540117, 48.8375206 2.3108341, 48.8377213 2.3092594, 48.8380900 2.3040826, 48.8383431 2.3045795, 48.8384042 2.3046605, 48.8386443 2.3051222, 48.8403607 2.4028757, 48.8406684 2.3153202, 48.8409914 2.3133930, 48.8414293 2.3136925, 48.8419801 2.3147584, 48.8471459 2.3017502, 48.8529188 2.3087416, 48.8560088 2.3152292, 48.8584188 2.3146004, 48.8352427 2.3769655, 48.8369196 2.3750884, 48.8373155 2.3746781, 48.8300792 2.4152641, 48.8849455 2.3527050, 48.8849667 2.3521042, 48.8848468 2.3565674, 48.8850090 2.3595929, 48.8849808 2.3595500, 48.8448267 2.3832538, 48.8612184 2.3359626, 48.8607940 2.3357198, 48.8611505 2.3363233, 48.8609255 2.3361637, 48.8613287 2.3357359, 48.8606908 2.3360605, 48.8608125 2.3354395, 48.8920141 2.3622108, 48.8918519 2.3634768, 48.8916614 2.3634553, 48.8675820 2.3627052, 48.8681313 2.3656514, 48.8668440 2.3637026, 48.8678874 2.3648918, 48.8662370 2.3646913, 48.8664898 2.3645091, 48.8665592 2.3644087, 48.8666802 2.3641540, 48.8666879 2.3641696, 48.8667598 2.3654966, 48.8667903 2.3637908, 48.8668096 2.3646253, 48.8669108 2.3644467, 48.8669297 2.3636473, 48.8669953 2.3631776, 48.8669961 2.3635905, 48.8670152 2.3630804, 48.8670214 2.3635235, 48.8670355 2.3642267, 48.8670361 2.3631640, 48.8671087 2.3634985, 48.8671452 2.3640332, 48.8673694 2.3650795, 48.8673980 2.3650399, 48.8674058 2.3629347, 48.8674351 2.3629732, 48.8674598 2.3628272, 48.8675385 2.3647969, 48.8676126 2.3647082, 48.8676136 2.3625917, 48.8676252 2.3632445, 48.8677253 2.3630872, 48.8677894 2.3623659, 48.8678337 2.3629170, 48.8678703 2.3621859, 48.8679052 2.3646802, 48.8679322 2.3627623, 48.8679443 2.3620076, 48.8679849 2.3651178, 48.8683870 2.3633979, 48.8684727 2.3632550, 48.8686416 2.3633147, 48.8686663 2.3632144, 48.8689428 2.3628299, 48.8689874 2.3627877, 48.8690297 2.3627510, 48.8298488 2.3665110, 48.8520717 2.3832753, 48.8481687 2.4345506, 48.8480369 2.4345445, 48.8476526 2.4234794, 48.8903352 2.3587990, 48.8903987 2.3592281, 48.8419215 2.3870862, 48.8419664 2.3871201, 48.8418904 2.3870862, 48.8418677 2.3871280, 48.8418769 2.3871760, 48.8418924 2.3870718, 48.8418649 2.3871388, 48.8418108 2.3875951, 48.8417327 2.3875879, 48.8417636 2.3880006, 48.8418410 2.3880025, 48.8394773 2.3242229, 48.8563545 2.3025991, 48.8562747 2.3028390, 48.8574816 2.3802365, 48.8690083 2.3564593, 48.8160973 2.3511206, 48.8136741 2.3481541, 48.8136670 2.3480361, 48.8482693 2.4357193, 48.8137588 2.3477625, 48.8157688 2.3492591, 48.8146243 2.3477410, 48.8147833 2.3516517, 48.8167437 2.3491143, 48.8153732 2.3510991, 48.8159313 2.3500531, 48.8156381 2.3500048, 48.8155145 2.3504125, 48.8152213 2.3498012, 48.8152566 2.3498870, 48.8155498 2.3505412, 48.8150871 2.3495435, 48.8151294 2.3496561, 48.8150129 2.3494093, 48.8149528 2.3493289, 48.8165671 2.3511903, 48.8159772 2.3514586, 48.8185747 2.3602641, 48.8619692 2.3675752, 48.8615300 2.3686675, 48.8614043 2.3675596, 48.8608788 2.3675481, 48.8290841 2.3607574, 48.8291352 2.3608175, 48.8621628 2.3647719, 48.8455039 2.3750047, 48.8455237 2.3764533, 48.8760446 2.3484651, 48.8116397 2.3869564, 48.8557667 2.3453212, 48.8550679 2.3462868, 48.8741216 2.3427260, 48.8117754 2.3855022, 48.8136719 2.3895246, 48.8138417 2.3900307, 48.8593870 2.3702037, 48.8593028 2.3689081, 48.8537623 2.3817697, 48.8109074 2.3840762, 48.8739758 2.3852798, 48.8801837 2.4205403, 48.8790034 2.4238161, 48.8456597 2.3425776, 48.8772925 2.4158179, 48.8795946 2.4163042, 48.8785849 2.4122788, 48.8526175 2.3431162, 48.8784205 2.4222948, 48.8855875 2.3531342, 48.8806519 2.4004273, 48.8815514 2.4001315, 48.8924739 2.3853741, 48.8959011 2.3832799, 48.8850314 2.3781308, 48.8799452 2.3455279, 48.8488706 2.4054308, 48.8489816 2.4056570, 48.8494687 2.4051936, 48.8643458 2.3599234, 48.8295482 2.3749878, 48.8296803 2.3748515, 48.8599478 2.3246517, 48.8599472 2.3245275, 48.8599536 2.3248067, 48.8599716 2.3245504, 48.8600672 2.3244033, 48.8600707 2.3247081, 48.8600794 2.3243610, 48.8601037 2.3242800, 48.8606611 2.3260607, 48.8606849 2.3259641, 48.8666867 2.3495864, 48.8297590 2.3779170, 48.8297930 2.3779994, 48.8288321 2.3761798, 48.8292800 2.3744982, 48.8304530 2.3781049, 48.8296037 2.3747044, 48.8298860 2.3752461, 48.8291217 2.3762659, 48.8298050 2.3750908, 48.8279652 2.3768853, 48.8283295 2.3766600, 48.8283467 2.3766535, 48.8285414 2.3789971, 48.8288068 2.3787300, 48.8288361 2.3787070, 48.8290555 2.3783649, 48.8292488 2.3741831, 48.8292831 2.3742590, 48.8294602 2.3757359, 48.8301041 2.3776040, 48.8302260 2.3779065, 48.8303224 2.3771556, 48.8305203 2.3782754, 48.8305874 2.3770026, 48.8307809 2.3768658, 48.8768004 2.3899160, 48.8238319 2.3396086, 48.8103949 2.3618092, 48.8106981 2.3617361, 48.8603698 2.3266950, 48.8603951 2.3266114, 48.8604141 2.3265484, 48.8604226 2.3265204, 48.8604418 2.3266906, 48.8604458 2.3264436, 48.8604538 2.3266512, 48.8604593 2.3263987, 48.8604713 2.3265936, 48.8604920 2.3262906, 48.8605022 2.3264917, 48.8605049 2.3262481, 48.8605162 2.3262107, 48.8605165 2.3264448, 48.8605419 2.3263610, 48.8605508 2.3263318, 48.8605662 2.3262810, 48.8606040 2.3261566, 48.8606369 2.3258113, 48.8607182 2.3257806, 48.8802805 2.4173865, 48.8661563 2.3250762, 48.8683478 2.3383121, 48.8124799 2.3759776, 48.8123503 2.3767597, 48.8124991 2.3777755, 48.8126164 2.3761373, 48.8806262 2.4186147, 48.8803431 2.4217569, 48.8111035 2.3798770, 48.8128982 2.3700984, 48.8777259 2.4176779, 48.8678207 2.3478985, 48.8606339 2.3618031, 48.8660965 2.3482633, 48.8549614 2.3379207, 48.8671733 2.3471661, 48.8675818 2.3472683, 48.8667602 2.3505401, 48.8644860 2.3502765, 48.8378943 2.3222768, 48.8286016 2.3219064, 48.8612225 2.3119810, 48.8752946 2.3892538, 48.8754558 2.3899992, 48.8081536 2.3738470, 48.8122567 2.3739058, 48.8127327 2.3707897, 48.8131872 2.3706889, 48.8142377 2.3767508, 48.8146602 2.3787108, 48.8150299 2.3689536, 48.8155924 2.3685119, 48.8561136 2.3566520, 48.8530641 2.3387326, 48.8533052 2.3459080, 48.8533580 2.3457272, 48.8533695 2.3456875, 48.8535061 2.3452281, 48.8535613 2.3450411, 48.8535722 2.3450043, 48.8537320 2.3446401, 48.8537489 2.3446808, 48.8538473 2.3441717, 48.8538563 2.3441477, 48.8538673 2.3441177, 48.8538757 2.3440941, 48.8715766 2.3537539, 48.8914559 2.3448389, 48.8740405 2.3857795, 48.8749608 2.3892009, 48.8736385 2.3889782, 48.8739867 2.3864968, 48.8747724 2.3875276, 48.8739345 2.3878755, 48.8739549 2.3860921, 48.8716471 2.3695539, 48.8712919 2.3698711, 48.8718150 2.3717657, 48.8723380 2.3716377, 48.8727815 2.3712192, 48.8726878 2.3710159, 48.8730570 2.3709970, 48.8733970 2.3707413, 48.8734671 2.3704021, 48.8734037 2.3704680, 48.8733502 2.3703282, 48.8731595 2.3702542, 48.8729660 2.3702046, 48.8716620 2.3693326, 48.8633424 2.3714600, 48.8617341 2.3650289, 48.8554103 2.3643002, 48.8416283 2.3665291, 48.8416730 2.3664594, 48.8411402 2.3654371, 48.8415221 2.3661615, 48.8415620 2.3662647, 48.8415955 2.3663513, 48.8409358 2.3247136, 48.8794344 2.3881410, 48.8776787 2.3858246, 48.8542640 2.3651059, 48.8542452 2.3648816, 48.8537965 2.3646707, 48.8537744 2.3647227, 48.8536688 2.3651544, 48.8535577 2.3656033, 48.8563379 2.3653392, 48.8555655 2.3665858, 48.8549123 2.3654914, 48.8554404 2.3644187, 48.8801930 2.3906171, 48.8576608 2.3609703, 48.8750094 2.3896199, 48.8751184 2.3890182, 48.8582179 2.3593845, 48.8755856 2.3816591, 48.8616662 2.3146849, 48.8880273 2.3373781, 48.8883177 2.3371911, 48.8727883 2.3630691, 48.8725766 2.3640561, 48.8605999 2.3617816, 48.8441811 2.3576296, 48.8445790 2.3614939, 48.8849737 2.3369336, 48.8587148 2.3486171, 48.8358783 2.3528351, 48.8668462 2.3528123, 48.8658864 2.3524475, 48.8737724 2.3861774, 48.8740700 2.3880327, 48.8738683 2.3893369, 48.8785291 2.4120957, 48.8666934 2.3539857, 48.8666590 2.3541047, 48.8599854 2.3672407, 48.8725060 2.3265052, 48.8670465 2.3537266, 48.8668410 2.3533606, 48.8672803 2.3538862, 48.8572232 2.3616056, 48.8762128 2.3876684, 48.8903070 2.3600864, 48.8903282 2.3600864, 48.8580971 2.3653667, 48.8142942 2.3915517, 48.8141679 2.3916746, 48.8140287 2.3917998, 48.8540002 2.3615994, 48.8735435 2.3844995, 48.8889949 2.3583055, 48.8891642 2.3597646, 48.8893970 2.3596573, 48.8895811 2.3597672, 48.8616362 2.3492126, 48.8610370 2.3488844, 48.8618630 2.3148367, 48.8470631 2.3700997, 48.8470970 2.3701595, 48.8471459 2.3702456, 48.8472462 2.3704229, 48.8474998 2.3708712, 48.8446534 2.3728628, 48.8447152 2.3728597, 48.8475826 2.3710176, 48.8477262 2.3712711, 48.8482512 2.3721967, 48.8483965 2.3718260, 48.8471795 2.3719974, 48.8470564 2.3720521, 48.8469948 2.3720795, 48.8623921 2.3674662, 48.8787624 2.3883183, 48.8867304 2.3598075, 48.8417447 2.4330345, 48.8720387 2.3918784, 48.8741080 2.3859246, 48.8736692 2.3899840, 48.8737092 2.3898832, 48.8744280 2.3893709, 48.8886626 2.3599790, 48.8860248 2.3369308, 48.8902739 2.3358959, 48.8748174 2.3787774, 48.8764030 2.3793479, 48.8763176 2.3776123, 48.8743153 2.3863229, 48.8737855 2.3857401, 48.8125184 2.3568857, 48.8124954 2.3569680, 48.8856373 2.3263659, 48.8907179 2.3749478, 48.8931856 2.3736960, 48.8250371 2.3884441, 48.8275044 2.3763133, 48.8295479 2.3793241, 48.8312982 2.3805156, 48.8535184 2.3767685, 48.8567309 2.3731009, 48.8567919 2.3727131, 48.8596630 2.4036667, 48.8597113 2.4032404, 48.8672556 2.3729520, 48.8678310 2.3962785, 48.8712975 2.3932942, 48.8736717 2.3893707, 48.8752326 2.3699504, 48.8785201 2.3757987, 48.8785987 2.3756111, 48.8839930 2.3680663, 48.8841702 2.3653361, 48.8385177 2.3227898, 48.8484966 2.4362364, 48.8746407 2.3851288, 48.8809813 2.3738144, 48.8813033 2.3729918, 48.8779378 2.4190454, 48.8874196 2.3791285, 48.8319874 2.3777146, 48.8767665 2.3719387, 48.8310454 2.3779874, 48.8730284 2.3811633, 48.8733348 2.3779302, 48.8223529 2.3539603, 48.8199141 2.3514732, 48.8199460 2.3513904, 48.8199660 2.3514921, 48.8214630 2.3588696, 48.8226985 2.3584907, 48.8561049 2.4371952, 48.8596856 2.4328716, 48.8917305 2.3461501, 48.8906054 2.3436342, 48.8226090 2.3400474, 48.8911601 2.3472858, 48.8225527 2.3400837, 48.8225214 2.3400967, 48.8905525 2.3481725, 48.8239560 2.3366723, 48.8750217 2.3892571, 48.8198771 2.3422222, 48.8197803 2.3430846, 48.8123843 2.3623469, 48.8921867 2.3354421, 48.8654434 2.3665508, 48.8614471 2.3729562, 48.8666976 2.3655874, 48.8448082 2.4018695, 48.8447378 2.4025094, 48.8469506 2.3967840, 48.8441092 2.4022649, 48.8450981 2.4030570, 48.8453425 2.4001936, 48.8445374 2.4047983, 48.8459401 2.3981714, 48.8330219 2.3641260, 48.8337653 2.3094048, 48.8342723 2.3283804, 48.8354533 2.3258265, 48.8357486 2.3110952, 48.8366678 2.3127785, 48.8368862 2.3126418, 48.8408789 2.3214931, 48.8475924 2.3949477, 48.8480651 2.3944560, 48.8484606 2.3943801, 48.8489226 2.3946004, 48.8530598 2.3535567, 48.8552774 2.3345202, 48.8555651 2.3608523, 48.8570886 2.3297266, 48.8585185 2.3298224, 48.8586963 2.3287531, 48.8761034 2.3355444, 48.8762920 2.3325923, 48.8843206 2.3540618, 48.8431553 2.4102659, 48.8469580 2.4075011, 48.8431170 2.4096136, 48.8278448 2.3714158, 48.8576254 2.3808196, 48.8766245 2.3445219, 48.8755665 2.3990398, 48.8765230 2.4035884, 48.8494789 2.3371871, 48.8495030 2.3371323, 48.8496541 2.3374034, 48.8661825 2.3452310, 48.8184587 2.3595777, 48.8186142 2.3587533, 48.8186708 2.3587607, 48.8187191 2.3588150, 48.8187388 2.3588956, 48.8188381 2.3590916, 48.8167116 2.3578660, 48.8167195 2.3570640, 48.8167261 2.3577226, 48.8167414 2.3582707, 48.8167473 2.3578447, 48.8167831 2.3578400, 48.8167973 2.3577217, 48.8168164 2.3578793, 48.8168334 2.3579438, 48.8168587 2.3582922, 48.8169402 2.3583037, 48.8169721 2.3571088, 48.8170202 2.3583068, 48.8171700 2.3584699, 48.8172585 2.3582725, 48.8173262 2.3580419, 48.8175126 2.3583256, 48.8175756 2.3580011, 48.8175870 2.3580740, 48.8176040 2.3581574, 48.8176168 2.3582219, 48.8181346 2.3609207, 48.8178167 2.3603607, 48.8184463 2.3602441, 48.8184994 2.3603771, 48.8185793 2.3601108, 48.8186719 2.3601556, 48.8186856 2.3606232, 48.8186904 2.3602619, 48.8186981 2.3603933, 48.8187049 2.3606355, 48.8187285 2.3606540, 48.8187483 2.3604992, 48.8187500 2.3605576, 48.8187561 2.3606557, 48.8187765 2.3601229, 48.8187838 2.3601855, 48.8176532 2.3606248, 48.8193633 2.3602971, 48.8193706 2.3607627, 48.8166550 2.3605732, 48.8189433 2.3610579, 48.8831104 2.3242250, 48.8837964 2.3210243, 48.8527614 2.3515044, 48.8653670 2.4169562, 48.8652118 2.4162588, 48.8647219 2.4165307, 48.8776217 2.3939651, 48.8776968 2.3952330, 48.8764364 2.3934657, 48.8765453 2.3938412, 48.8454007 2.4352808, 48.8459620 2.4353156, 48.8450722 2.4349688, 48.8217293 2.3329753, 48.8342289 2.3218797, 48.8366129 2.3508583, 48.8372702 2.3535459, 48.8379882 2.3433930, 48.8382061 2.3565243, 48.8385318 2.3366177, 48.8396083 2.3376405, 48.8411746 2.3066119, 48.8412714 2.3397958, 48.8414201 2.3390745, 48.8452811 2.3694044, 48.8438510 2.4177648, 48.8439962 2.4177561, 48.8349953 2.3170932, 48.8530718 2.3455009, 48.8397730 2.3514917, 48.8787109 2.3950327, 48.8786894 2.3945983, 48.8604285 2.3434854, 48.8775224 2.3930979, 48.8521348 2.3393496, 48.8577082 2.3492535, 48.8608090 2.3675701, 48.8641879 2.3657984, 48.8641592 2.3663881, 48.8628632 2.3665085, 48.8594971 2.3673180, 48.8472632 2.3686633, 48.8577037 2.3677906, 48.8544371 2.3690641, 48.8539102 2.3699317, 48.8568748 2.3684913, 48.8470293 2.3690164, 48.8462686 2.3631462, 48.8465015 2.4365963, 48.8462894 2.4365111, 48.8450252 2.4362761, 48.8465650 2.4366292, 48.8451160 2.4363398, 48.8455873 2.4364340, 48.8511583 2.4295017, 48.8522846 2.4279169, 48.8517171 2.4066230, 48.8246139 2.3297884, 48.8248448 2.3309724, 48.8248677 2.3167742, 48.8249619 2.3287697, 48.8249980 2.3313844, 48.8260495 2.3309436, 48.8285948 2.3330627, 48.8290174 2.3328655, 48.8326036 2.3623992, 48.8334174 2.3642162, 48.8359245 2.3856627, 48.8401447 2.3704675, 48.8403742 2.3701490, 48.8409627 2.3362290, 48.8415305 2.3538584, 48.8419422 2.3357262, 48.8430208 2.3525662, 48.8432035 2.3315463, 48.8441253 2.3305131, 48.8452074 2.3522138, 48.8467725 2.3266058, 48.8484788 2.3326047, 48.8493788 2.3389951, 48.8500333 2.3399942, 48.8624682 2.3635794, 48.8602122 2.3858360, 48.8521732 2.3388298, 48.8854126 2.3770897, 48.8635520 2.3425906, 48.8591882 2.3451519, 48.8584285 2.3451526, 48.8588750 2.3449998, 48.8540476 2.3699964, 48.8543674 2.3701218, 48.8547650 2.3703199, 48.8597235 2.3725623, 48.8146822 2.4010226, 48.8178841 2.3973945, 48.8176898 2.3969882, 48.8177132 2.3970926, 48.8597150 2.3615075, 48.8156383 2.3936345, 48.8155145 2.3925743, 48.8156913 2.3937315, 48.8156969 2.3928952, 48.8157188 2.3929517, 48.8157650 2.3928334, 48.8157950 2.3933056, 48.8158132 2.3929094, 48.8158716 2.3940584, 48.8158899 2.3940978, 48.8159398 2.3941887, 48.8159967 2.3942966, 48.8163104 2.3947963, 48.8163873 2.3950099, 48.8165036 2.3951262, 48.8165703 2.3950594, 48.8165800 2.3953924, 48.8171706 2.3945058, 48.8172052 2.3945973, 48.8172200 2.3945253, 48.8172473 2.3945006, 48.8172696 2.3944099, 48.8173073 2.3945273, 48.8173163 2.3947834, 48.8173955 2.3947370, 48.8177359 2.3975007, 48.8173492 2.3986584, 48.8182506 2.3980068, 48.8177668 2.3985598, 48.8176337 2.3987282, 48.8179037 2.3978145, 48.8179883 2.3982972, 48.8174526 2.3985388, 48.8165654 2.3949222, 48.8174776 2.3970294, 48.8166547 2.3994601, 48.8178585 2.3980529, 48.8159059 2.3979329, 48.8165641 2.3999418, 48.8166323 2.3999400, 48.8166784 2.3998883, 48.8168960 2.3992051, 48.8169088 2.3992003, 48.8169814 2.3956959, 48.8175265 2.3984534, 48.8175533 2.3971624, 48.8175581 2.3966660, 48.8177590 2.3982629, 48.8183348 2.3978986, 48.8937054 2.3492738, 48.8893918 2.3447704, 48.8462585 2.3740519, 48.8466386 2.3740238, 48.8114693 2.3847804, 48.8445302 2.3291617, 48.8448398 2.3291657, 48.8113843 2.3846175, 48.8199882 2.3571489, 48.8215209 2.3576523, 48.8215584 2.3576426, 48.8216084 2.3576348, 48.8216425 2.3576284, 48.8461779 2.3549621, 48.8461716 2.3548935, 48.8459004 2.3547097, 48.8459537 2.3546947, 48.8459381 2.3547739, 48.8459560 2.3548600, 48.8460626 2.3546771, 48.8494488 2.3376165, 48.8496464 2.3378520, 48.8515572 2.3384274, 48.8516756 2.3382308, 48.8522552 2.3385407, 48.8523605 2.3385609, 48.8489414 2.4100282, 48.8564552 2.3511205, 48.8419262 2.3651705, 48.8522264 2.3385705, 48.8213549 2.3576983, 48.8213060 2.3577128, 48.8215751 2.3568192, 48.8215343 2.3568339, 48.8214567 2.3568620, 48.8213706 2.3568881, 48.8213312 2.3569003, 48.8212756 2.3569029, 48.8212158 2.3569268, 48.8211521 2.3569396, 48.8210879 2.3569725, 48.8209687 2.3570081, 48.8206375 2.3571097, 48.8207534 2.3570814, 48.8205136 2.3571727, 48.8208942 2.3576958, 48.8207623 2.3577442, 48.8206411 2.3577804, 48.8205039 2.3578100, 48.8203014 2.3575073, 48.8202111 2.3575247, 48.8212799 2.3568400, 48.8212131 2.3568615, 48.8211562 2.3568740, 48.8210982 2.3568935, 48.8210748 2.3565468, 48.8211205 2.3565517, 48.8211707 2.3565499, 48.8212080 2.3565523, 48.8212630 2.3565456, 48.8213291 2.3565416, 48.8213739 2.3565446, 48.8214357 2.3565482, 48.8214781 2.3565487, 48.8466880 2.3668924, 48.8504922 2.3892597, 48.8506002 2.3865799, 48.8508572 2.3411144, 48.8515666 2.3400541, 48.8517508 2.3398717, 48.8521001 2.3863956, 48.8528464 2.3842636, 48.8529129 2.3851769, 48.8532221 2.3833883, 48.8545205 2.3824395, 48.8560866 2.3825736, 48.8610854 2.3101169, 48.8742389 2.3553630, 48.8744853 2.3555219, 48.8767135 2.3539984, 48.8767602 2.3536655, 48.8773020 2.3497131, 48.8780538 2.3450154, 48.8222079 2.3512623, 48.8222079 2.3513239, 48.8220967 2.3507682, 48.8221004 2.3506702, 48.8221041 2.3505666, 48.8221465 2.3506206, 48.8211392 2.3471688, 48.8517016 2.3285488, 48.8520110 2.3284815, 48.8239919 2.3635306, 48.8240523 2.3628127, 48.8082112 2.3631348, 48.8608697 2.3679199, 48.8467985 2.3747872, 48.8370898 2.3512464, 48.8438542 2.3424632, 48.8523071 2.3446538, 48.8523579 2.3447087, 48.8439360 2.3521362, 48.8222822 2.3596195, 48.8314615 2.3664212, 48.8929579 2.3376602, 48.8930088 2.3377693, 48.8643323 2.3740909, 48.8788116 2.3448907, 48.8249366 2.3622787, 48.8396133 2.3228908, 48.8865752 2.3770595, 48.8888874 2.3790640, 48.8890273 2.3785304, 48.8492061 2.4332485, 48.8496954 2.4344420, 48.8619992 2.3644231, 48.8636991 2.3600389, 48.8510597 2.3686542, 48.8480074 2.4314069, 48.8484639 2.4321756, 48.8477360 2.4309668, 48.8634980 2.3632261, 48.8637373 2.3634903, 48.8465650 2.3875568, 48.8463716 2.4290882, 48.8458973 2.4282742, 48.8464012 2.4287314, 48.8548653 2.3258711, 48.8578709 2.3682503, 48.8576256 2.3683245, 48.8573074 2.3684033, 48.8566728 2.3031742, 48.8444534 2.3488046, 48.8648741 2.3568648, 48.8647110 2.3556670, 48.8647065 2.3557113, 48.8411112 2.3657854, 48.8788639 2.4164575, 48.8325306 2.3357618, 48.8327372 2.3358964, 48.8326973 2.3358705, 48.8786186 2.4075133, 48.8687439 2.3725567, 48.8687984 2.3727205, 48.8901801 2.3579407, 48.8921834 2.3635197, 48.8733376 2.3225100, 48.8613268 2.3701752, 48.8614009 2.3699607, 48.8273570 2.3419023, 48.8294677 2.3494266, 48.8688148 2.3556948, 48.8744006 2.3588789, 48.8598506 2.3506084, 48.8167502 2.3327484, 48.8199175 2.3212812, 48.8276674 2.3600431, 48.8279422 2.3594556, 48.8577103 2.3716555, 48.8899908 2.3632081, 48.8687323 2.3745696, 48.8691442 2.3743705, 48.8706706 2.3729576, 48.8690549 2.3744043, 48.8706840 2.3716682, 48.8611479 2.3689726, 48.8638679 2.3648260, 48.8281550 2.3775324, 48.8737876 2.3254797, 48.8738529 2.3254255, 48.8425193 2.3260648, 48.8710277 2.3356624, 48.8110348 2.3833052, 48.8891219 2.3724461, 48.8890796 2.3723602, 48.8759983 2.3280939, 48.8757911 2.3276502, 48.8756697 2.3283966, 48.8756169 2.3280376, 48.8929100 2.3599148, 48.8394722 2.3232687, 48.8395348 2.3235658, 48.8390409 2.3209288, 48.8731075 2.3603509, 48.8748935 2.3811373, 48.8868930 2.3555588, 48.8781923 2.3452434, 48.8767035 2.3442886, 48.8780982 2.3447722, 48.8782291 2.3451211, 48.8766714 2.3443634, 48.8929554 2.3636687, 48.8930915 2.3631580, 48.8929606 2.3633496, 48.8932747 2.3631869, 48.8322630 2.3676449, 48.8856144 2.3258652, 48.8389598 2.3704270, 48.8569115 2.3643067, 48.8761220 2.3317510, 48.8797579 2.3290545, 48.8798222 2.3536407, 48.8799292 2.3534275, 48.8316089 2.3555656, 48.8316089 2.3555656, 48.8569603 2.3713113, 48.8565579 2.3711226, 48.8459784 2.3603720, 48.8769985 2.3602115, 48.8771644 2.3597829, 48.8769967 2.3602263, 48.8771699 2.3597638, 48.8771867 2.3597002, 48.8243136 2.4192238, 48.8317261 2.3100042, 48.8672775 2.3441465, 48.8666300 2.3441053, 48.8661252 2.3444240, 48.8644516 2.3451744, 48.8665424 2.3444859, 48.8656756 2.3448565, 48.8664867 2.3445169, 48.8659496 2.3445011, 48.8650282 2.3451533, 48.8649842 2.3451707, 48.8653520 2.3447568, 48.8657315 2.3448468, 48.8657774 2.3445761, 48.8659315 2.3446745, 48.8660578 2.3446116, 48.8662401 2.3446245, 48.8666928 2.3441000, 48.8585753 2.3796813, 48.8467516 2.3809922, 48.8465163 2.3789989, 48.8455614 2.3805006, 48.8472631 2.3789855, 48.8565920 2.3951782, 48.8589893 2.4016192, 48.8623327 2.3527653, 48.8767283 2.4142630, 48.8629574 2.3670436, 48.8689100 2.3859683, 48.8777936 2.3651771, 48.8758559 2.3196867, 48.8812197 2.3164987, 48.8811807 2.3164846, 48.8177108 2.3246199, 48.8199006 2.3214135, 48.8329457 2.3647065, 48.8214751 2.3576631, 48.8818765 2.3453450, 48.8818977 2.3455167, 48.8809875 2.3406458, 48.8809240 2.3404741, 48.8772738 2.3263243, 48.8772711 2.3269492, 48.8761280 2.3384291, 48.8761937 2.3384548, 48.8762503 2.3384716, 48.8803605 2.3986503, 48.8521921 2.3771906, 48.8576132 2.4157021, 48.8624572 2.3776986, 48.8822051 2.3936533, 48.8796554 2.3966912, 48.8511831 2.3785314, 48.8820102 2.4200172, 48.8087038 2.3623689, 48.8753058 2.3579456, 48.8880878 2.3625470, 48.8246848 2.3401055, 48.8260534 2.3414524, 48.8772487 2.4155903, 48.8153650 2.3609320, 48.8389034 2.3510109, 48.8429170 2.3523355, 48.8507946 2.3484559, 48.8467055 2.3514623, 48.8473180 2.3512660, 48.8444716 2.3118167, 48.8728060 2.3646742, 48.8722199 2.3662906, 48.8705355 2.3858494, 48.8772018 2.3707749, 48.8493078 2.3774714, 48.8392014 2.3497085, 48.8400466 2.3498724, 48.8403852 2.3496532, 48.8405842 2.3504848, 48.8922563 2.3451633, 48.8922743 2.3450572, 48.8770064 2.3684202, 48.8771612 2.3641684, 48.8307007 2.3544853, 48.8523523 2.3354901, 48.8520540 2.3392420, 48.8517216 2.3369453, 48.8538085 2.3382792, 48.8524073 2.3397507, 48.8524893 2.3393624, 48.8523795 2.3394490, 48.8280277 2.3557522, 48.8761128 2.3302242, 48.8755958 2.3283907, 48.8760136 2.3310108, 48.8754564 2.3283800, 48.8758586 2.3298896, 48.8754384 2.3285619, 48.8758779 2.3299633, 48.8763654 2.3316481, 48.8763704 2.3313223, 48.8764858 2.3319975, 48.8509886 2.3003532, 48.8381318 2.3517955, 48.8387946 2.3486773, 48.8304045 2.3475111, 48.8820265 2.3813632, 48.8313480 2.3541827, 48.8303481 2.3510629, 48.8818730 2.3810389, 48.8822335 2.3814925, 48.8804194 2.3766425, 48.8836091 2.3810186, 48.8295968 2.3493740, 48.8298392 2.3491024, 48.8298648 2.3489985, 48.8299110 2.3492795, 48.8301553 2.3507953, 48.8303304 2.3510083, 48.8305184 2.3471025, 48.8310961 2.3541682, 48.8312123 2.3540959, 48.8313570 2.3543595, 48.8777590 2.3707497, 48.8777905 2.3707526, 48.8780028 2.3710523, 48.8787222 2.3744794, 48.8813097 2.3805063, 48.8816032 2.3808594, 48.8824847 2.3815501, 48.8827557 2.3814455, 48.8833951 2.3811772, 48.8834402 2.3811365, 48.8835118 2.3809656, 48.8846924 2.3795882, 48.8847828 2.3802243, 48.8367477 2.3065081, 48.8328697 2.3068297, 48.8342127 2.3084129, 48.8361118 2.3069082, 48.8364649 2.3061455, 48.8365007 2.3061630, 48.8365269 2.3066049, 48.8366412 2.3045647, 48.8386515 2.3086284, 48.8389963 2.3074140, 48.8758373 2.3459265, 48.8795087 2.3434753, 48.8317774 2.3387153, 48.8227114 2.3260174, 48.8228970 2.3250330, 48.8229323 2.3261674, 48.8230576 2.3243884, 48.8236717 2.3228847, 48.8237106 2.3225015, 48.8255735 2.3139108, 48.8782227 2.4227236, 48.8194422 2.3258214, 48.8528114 2.3539541, 48.8662716 2.4063088, 48.8663075 2.4062823, 48.8931864 2.3844167, 48.8917005 2.3612335, 48.8924455 2.3635357, 48.8372250 2.3524442, 48.8364615 2.3516931, 48.8469168 2.3372024, 48.8472894 2.3369695, 48.8472848 2.3371388, 48.8472825 2.3372754, 48.8472786 2.3374342, 48.8471150 2.3377021, 48.8470235 2.3376992, 48.8468998 2.3376922, 48.8467139 2.3376747, 48.8468199 2.3376864, 48.8465610 2.3369240, 48.8465595 2.3370711, 48.8465572 2.3372334, 48.8465533 2.3373735, 48.8467285 2.3366415, 48.8468584 2.3366543, 48.8469406 2.3366566, 48.8470351 2.3366718, 48.8471365 2.3366753, 48.8933622 2.3648120, 48.8225960 2.3611286, 48.8717792 2.3922236, 48.8892294 2.3935497, 48.8750371 2.3453587, 48.8767354 2.3606489, 48.8767391 2.3608267, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8486339 2.4271392, 48.8486974 2.4273900, 48.8666073 2.3928050, 48.8688670 2.3900956, 48.8689000 2.3365552, 48.8691839 2.3358994, 48.8693989 2.3358078, 48.8694678 2.3358237, 48.8695047 2.3358723, 48.8695875 2.3358342, 48.8126004 2.3703630, 48.8208030 2.3633818, 48.8289143 2.3738647, 48.8282892 2.3724696, 48.8241342 2.3887432, 48.8242585 2.3889696, 48.8348880 2.3450609, 48.8278106 2.3717446, 48.8277431 2.3716358, 48.8275512 2.3707206, 48.8274435 2.3705955, 48.8272993 2.3681039, 48.8205400 2.3633918, 48.8205631 2.3634931, 48.8224381 2.3627498, 48.8302412 2.3405881, 48.8759800 2.3435799, 48.8763927 2.3443424, 48.8646081 2.3352596, 48.8647343 2.3355750, 48.8647738 2.3356255, 48.8662103 2.3356323, 48.8759674 2.3436727, 48.8759783 2.3436839, 48.8760560 2.3436865, 48.8719299 2.3413389, 48.8602282 2.3444320, 48.8841247 2.3209960, 48.8832982 2.3234280, 48.8547918 2.3860308, 48.8547565 2.3859396, 48.8548329 2.3856345, 48.8545629 2.3851571, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8498132 2.3518796, 48.8561385 2.3685150, 48.8711280 2.3521453, 48.8498202 2.3789350, 48.8757138 2.3237237, 48.8331033 2.3705524, 48.8593988 2.3759303, 48.8926082 2.3632978, 48.8909612 2.3621700, 48.8273102 2.3225383, 48.8272887 2.3226595, 48.8790612 2.3664752, 48.8647682 2.3664782, 48.8488766 2.3550116, 48.8489122 2.3193174, 48.8489272 2.3523931, 48.8491216 2.3136783, 48.8491775 2.3141515, 48.8492908 2.3146445, 48.8493554 2.3527922, 48.8499990 2.3166689, 48.8615352 2.3424505, 48.8939441 2.3979076, 48.8953105 2.3626213, 48.8445237 2.3089198, 48.8962481 2.3594957, 48.8973562 2.3599476, 48.8947703 2.3652163, 48.8962268 2.3624023, 48.8682969 2.3657074, 48.8685578 2.3665766, 48.8949090 2.3637139, 48.8955708 2.3634069, 48.8948184 2.3632576, 48.8945415 2.3621745, 48.8948909 2.3621540, 48.8545746 2.3446665, 48.8550316 2.3449206, 48.8550827 2.3439980, 48.8444751 2.3093056, 48.8442882 2.3080071, 48.8487164 2.4345039, 48.8493257 2.4344654, 48.8486398 2.4347259, 48.8461374 2.3068822, 48.8467261 2.3064315, 48.8147588 2.3915030, 48.8143845 2.3910545, 48.8143334 2.3910129, 48.8143773 2.3910574, 48.8140452 2.3913943, 48.8140840 2.3913640, 48.8141156 2.3913433, 48.8141376 2.3913145, 48.8142048 2.3912635, 48.8142626 2.3912184, 48.8143100 2.3911776, 48.8143190 2.3908976, 48.8143645 2.3911199, 48.8144044 2.3910816, 48.8144362 2.3910490, 48.8144472 2.3910433, 48.8144561 2.3909396, 48.8144575 2.3910253, 48.8144696 2.3910258, 48.8144879 2.3910104, 48.8146441 2.3908723, 48.8147573 2.3907901, 48.8149714 2.3905584, 48.8606042 2.3677659, 48.8607123 2.3679772, 48.8515765 2.3436771, 48.8203424 2.3209032, 48.8206096 2.3214393, 48.8521735 2.3442731, 48.8520404 2.3443625, 48.8515776 2.3438599, 48.8520835 2.3444093, 48.8518887 2.3442140, 48.8524757 2.3445678, 48.8530106 2.3457721, 48.8529435 2.3456985, 48.8528864 2.3462159, 48.8100238 2.3584472, 48.8099728 2.3598708, 48.8099570 2.3600672, 48.8351811 2.4063529, 48.8893267 2.4064616, 48.8929242 2.4019279, 48.8544579 2.3112189, 48.8654584 2.3691446, 48.8260647 2.3576772, 48.8627357 2.3116723, 48.8627432 2.3119541, 48.8627462 2.3120662, 48.8627508 2.3122393, 48.8627552 2.3124077, 48.8627567 2.3124638, 48.8627612 2.3126344, 48.8627658 2.3128087, 48.8627672 2.3128611, 48.8627732 2.3130879, 48.8627754 2.3131677, 48.8627792 2.3133147, 48.8627836 2.3134772, 48.8627883 2.3136547, 48.8627913 2.3137681, 48.8628323 2.3117173, 48.8628383 2.3119441, 48.8628413 2.3120562, 48.8628473 2.3122842, 48.8628503 2.3123977, 48.8628519 2.3124576, 48.8628563 2.3126244, 48.8628593 2.3127379, 48.8628609 2.3127971, 48.8628623 2.3128511, 48.8628683 2.3130779, 48.8628706 2.3131633, 48.8628744 2.3133047, 48.8628789 2.3134747, 48.8628834 2.3136447, 48.8628848 2.3137002, 48.8628864 2.3137581, 48.8265384 2.3420357, 48.8317429 2.3726646, 48.8325421 2.3667365, 48.8647931 2.3036486, 48.8650426 2.3079320, 48.8651506 2.3100983, 48.8657054 2.3060399, 48.8659467 2.3140142, 48.8659629 2.3037630, 48.8659879 2.3136076, 48.8660568 2.3081676, 48.8660748 2.3071977, 48.8665012 2.3048814, 48.8667360 2.3095710, 48.8668599 2.3158209, 48.8670494 2.3039249, 48.8672708 2.3058045, 48.8672794 2.3077726, 48.8673372 2.3120532, 48.8673797 2.3060703, 48.8674830 2.3038290, 48.8680834 2.3099634, 48.8683760 2.3086635, 48.8693965 2.3135036, 48.8694796 2.3064771, 48.8703477 2.3129777, 48.8706268 2.3098022, 48.8707930 2.3149783, 48.8709820 2.3087502, 48.8710261 2.3085538, 48.8710988 2.3093502, 48.8713220 2.3077780, 48.8713750 2.3160591, 48.8719350 2.3116565, 48.8721008 2.3124301, 48.8723380 2.3069699, 48.8723504 2.3086540, 48.8723813 2.3072537, 48.8726918 2.3152858, 48.8727122 2.3083838, 48.8727738 2.3101160, 48.8729778 2.3099637, 48.8732492 2.3145043, 48.8732979 2.3159042, 48.8734138 2.3132235, 48.8734291 2.3158992, 48.8735169 2.3158936, 48.8736893 2.3107682, 48.8739627 2.3082106, 48.8745355 2.3117236, 48.8763389 2.3111717, 48.8765865 2.3106761, 48.8831706 2.3184525, 48.8834100 2.3191983, 48.8836822 2.3187586, 48.8122399 2.3579504, 48.8108859 2.3580359, 48.8414487 2.3662536, 48.8415133 2.3664560, 48.8197193 2.3223837, 48.8194488 2.3232831, 48.8221288 2.3258121, 48.8845071 2.3703915, 48.8803180 2.3712520, 48.8531325 2.3448283, 48.8529010 2.3458674, 48.8530831 2.3451327, 48.8530967 2.3453771, 48.8532232 2.3449207, 48.8528548 2.3460331, 48.8530912 2.3454025, 48.8529158 2.3458178, 48.8528801 2.3459362, 48.8529135 2.3460822, 48.8530593 2.3452208, 48.8531271 2.3452514, 48.8529444 2.3459453, 48.8530349 2.3453279, 48.8528985 2.3461598, 48.8531949 2.3450333, 48.8531460 2.3451752, 48.8528383 2.3461107, 48.8529227 2.3457849, 48.8531071 2.3449244, 48.8530259 2.3454331, 48.8531325 2.3389945, 48.8528398 2.3392414, 48.8534928 2.3391049, 48.8600507 2.3566528, 48.8674198 2.3346001, 48.8296326 2.3575198, 48.8305375 2.3580300, 48.8845024 2.3699867, 48.8858375 2.3725175, 48.8856874 2.3721590, 48.8867667 2.3745936, 48.8866654 2.3743630, 48.8868944 2.3745974, 48.8876631 2.3761477, 48.8884174 2.3778947, 48.8817691 2.3705494, 48.8936524 2.3592349, 48.8944651 2.3595384, 48.8971804 2.3586921, 48.8982278 2.3591507, 48.8527458 2.3514040, 48.8528590 2.3510623, 48.8525635 2.3513635, 48.8528449 2.3519488, 48.8529095 2.3515447, 48.8497401 2.3508144, 48.8494708 2.3495778, 48.8331060 2.3547764, 48.8894150 2.3628554, 48.8850120 2.3563702, 48.8968947 2.3588877, 48.8984477 2.3690228, 48.8694647 2.3205041, 48.8708297 2.3198162, 48.8708454 2.3213869, 48.8709035 2.3189060, 48.8709852 2.3206588, 48.8711890 2.3169578, 48.8712229 2.3212990, 48.8713402 2.3210564, 48.8714517 2.3217836, 48.8715619 2.3188800, 48.8726833 2.3215369, 48.8733998 2.3194017, 48.8734458 2.3215269, 48.8734490 2.3214676, 48.8737552 2.3223785, 48.8741242 2.3202099, 48.8741894 2.3226422, 48.8744426 2.3203559, 48.8744527 2.3192732, 48.8744579 2.3215681, 48.8746259 2.3170130, 48.8751010 2.3174803, 48.8752101 2.3198480, 48.8752415 2.3228642, 48.8754143 2.3163173, 48.8756152 2.3185533, 48.8757410 2.3215885, 48.8758978 2.3194344, 48.8760860 2.3210935, 48.8761481 2.3202830, 48.8764319 2.3157243, 48.8764369 2.3177417, 48.8767020 2.3196440, 48.8767878 2.3193231, 48.8767945 2.3217772, 48.8768497 2.3189942, 48.8770537 2.3138386, 48.8771501 2.3228854, 48.8774521 2.3210244, 48.8775993 2.3114707, 48.8777530 2.3175110, 48.8777553 2.3150122, 48.8779285 2.3159181, 48.8779366 2.3224574, 48.8783761 2.3196887, 48.8786780 2.3137784, 48.8786980 2.3177660, 48.8789772 2.3189266, 48.8790239 2.3230057, 48.8792000 2.3158994, 48.8793082 2.3186672, 48.8793086 2.3140602, 48.8794483 2.3216115, 48.8795869 2.3214830, 48.8798755 2.3217055, 48.8800328 2.3155796, 48.8800529 2.3240220, 48.8801269 2.3198219, 48.8806145 2.3171109, 48.8807405 2.3153253, 48.8808722 2.3232632, 48.8813966 2.3233284, 48.8815205 2.3231048, 48.8820648 2.3194902, 48.8828840 2.3231572, 48.8832221 2.3217173, 48.8832818 2.3205676, 48.8833184 2.3234782, 48.8836440 2.3205811, 48.8839513 2.3200381, 48.8844774 2.3213549, 48.8917982 2.3501197, 48.8935018 2.3509687, 48.8941706 2.3509487, 48.8948571 2.3526912, 48.8951461 2.3495186, 48.8951672 2.3479407, 48.8954733 2.3497638, 48.8958043 2.3466479, 48.8970813 2.3526284, 48.8797258 2.3725494, 48.8115975 2.3864072, 48.8746584 2.3661215, 48.8414470 2.3175240, 48.8415020 2.3174490, 48.8189028 2.3234055, 48.8837788 2.3266314, 48.8839108 2.3249205, 48.8852020 2.3241350, 48.8853682 2.3292936, 48.8856102 2.3218509, 48.8856679 2.3248815, 48.8857203 2.3261448, 48.8859996 2.3218871, 48.8862175 2.3258772, 48.8862181 2.3241641, 48.8866205 2.3278364, 48.8867531 2.3232716, 48.8876128 2.3272353, 48.8876416 2.3334008, 48.8889318 2.3333614, 48.8890747 2.3323580, 48.8890880 2.3311581, 48.8893150 2.3416436, 48.8894222 2.3383989, 48.8895728 2.3368859, 48.8896888 2.3413595, 48.8899984 2.3294374, 48.8900358 2.3312974, 48.8900668 2.3339317, 48.8901027 2.3401433, 48.8907385 2.3380919, 48.8909771 2.3442157, 48.8909903 2.3390287, 48.8910713 2.3414735, 48.8912076 2.3431058, 48.8912717 2.3412804, 48.8915159 2.3366767, 48.8916237 2.3448218, 48.8916510 2.3345360, 48.8916848 2.3444219, 48.8918050 2.3441336, 48.8922025 2.3425036, 48.8922824 2.3448656, 48.8923980 2.3442772, 48.8924156 2.3412747, 48.8924659 2.3417125, 48.8930627 2.3407026, 48.8932064 2.3396066, 48.8932281 2.3430294, 48.8933595 2.3403151, 48.8934775 2.3440514, 48.8935120 2.3374245, 48.8935711 2.3454461, 48.8935810 2.3458771, 48.8938104 2.3471913, 48.8939486 2.3457817, 48.8943770 2.3440724, 48.8946627 2.3439619, 48.8946961 2.3455850, 48.8948359 2.3447136, 48.8214977 2.3568478, 48.8900962 2.4054925, 48.8901524 2.4054918, 48.8903555 2.4067924, 48.8870925 2.4056057, 48.8275383 2.3571726, 48.8083429 2.3631293, 48.8491265 2.3038627, 48.8506165 2.3004771, 48.8290807 2.3169825, 48.8676694 2.3433379, 48.8527669 2.3446610, 48.8521288 2.3444359, 48.8526719 2.3446864, 48.8528975 2.3446411, 48.8527110 2.3446730, 48.8528195 2.3446512, 48.8529973 2.3446935, 48.8526334 2.3445601, 48.8177596 2.3252324, 48.8786911 2.3684186, 48.8788154 2.3656788, 48.8447327 2.3911137, 48.8266940 2.3666020, 48.8243545 2.3680684, 48.8539433 2.3435961, 48.8340933 2.3218873, 48.8646344 2.3327860, 48.8655969 2.3308553, 48.8657286 2.3334876, 48.8664929 2.3287391, 48.8673765 2.3262936, 48.8677722 2.3249917, 48.8680096 2.3313520, 48.8680505 2.3267260, 48.8685480 2.3303190, 48.8686100 2.3235942, 48.8687745 2.3254282, 48.8689925 2.3292440, 48.8694014 2.3319283, 48.8697270 2.3263148, 48.8706099 2.3232470, 48.8706166 2.3243388, 48.8709664 2.3234796, 48.8711366 2.3230162, 48.8712363 2.3262154, 48.8718789 2.3272815, 48.8719060 2.3281941, 48.8722322 2.3288404, 48.8723480 2.3324620, 48.8724060 2.3265853, 48.8724193 2.3238584, 48.8726193 2.3262478, 48.8726680 2.3334573, 48.8727354 2.3250721, 48.8727438 2.3329606, 48.8728787 2.3306360, 48.8729284 2.3354060, 48.8730920 2.3308914, 48.8730996 2.3275514, 48.8732548 2.3247994, 48.8736376 2.3310868, 48.8738515 2.3259516, 48.8742680 2.3333269, 48.8747386 2.3248354, 48.8749551 2.3312402, 48.8751747 2.3396132, 48.8752122 2.3357476, 48.8752165 2.3334654, 48.8752649 2.3333896, 48.8752695 2.3330619, 48.8753468 2.3370991, 48.8759733 2.3421392, 48.8762638 2.3331757, 48.8763949 2.3386268, 48.8764861 2.3412119, 48.8765118 2.3416086, 48.8765467 2.3426191, 48.8765525 2.3407254, 48.8766430 2.3274960, 48.8769196 2.3354993, 48.8770614 2.3311360, 48.8770812 2.3318997, 48.8773557 2.3355444, 48.8776934 2.3402110, 48.8778139 2.3394567, 48.8779438 2.3320302, 48.8779976 2.3279206, 48.8780089 2.3443801, 48.8780194 2.3381422, 48.8782930 2.3509068, 48.8783261 2.3299445, 48.8784130 2.3399540, 48.8784144 2.3373688, 48.8784204 2.3453814, 48.8784242 2.3410929, 48.8788021 2.3280473, 48.8788208 2.3450926, 48.8789477 2.3345873, 48.8789540 2.3497944, 48.8789817 2.3364052, 48.8790152 2.3442312, 48.8791524 2.3478308, 48.8792245 2.3364947, 48.8794328 2.3511004, 48.8795428 2.3474051, 48.8797650 2.3410166, 48.8798667 2.3435948, 48.8800118 2.3250967, 48.8801225 2.3511238, 48.8801315 2.3250307, 48.8801686 2.3312200, 48.8802061 2.3257321, 48.8802837 2.3516584, 48.8804027 2.3407672, 48.8805673 2.3491621, 48.8806093 2.3318185, 48.8806276 2.3342233, 48.8806317 2.3259723, 48.8806957 2.3516043, 48.8807210 2.3347923, 48.8807408 2.3286691, 48.8810141 2.3450431, 48.8810221 2.3415214, 48.8810991 2.3364447, 48.8812533 2.3277520, 48.8814171 2.3485814, 48.8815470 2.3244898, 48.8816086 2.3479024, 48.8817961 2.3422508, 48.8819707 2.3296270, 48.8819961 2.3237258, 48.8820155 2.3246949, 48.8820528 2.3236882, 48.8820617 2.3355547, 48.8820804 2.3337251, 48.8820947 2.3287593, 48.8821383 2.3378924, 48.8826150 2.3420785, 48.8827482 2.3396221, 48.8828033 2.3263736, 48.8829862 2.3289264, 48.8830059 2.3465855, 48.8830771 2.3312226, 48.8832673 2.3348643, 48.8832945 2.3336845, 48.8834766 2.3297369, 48.8835589 2.3423646, 48.8836138 2.3448442, 48.8836512 2.3319569, 48.8836819 2.3303465, 48.8837839 2.3439078, 48.8839960 2.3307500, 48.8840949 2.3417916, 48.8841601 2.3384809, 48.8841806 2.3395877, 48.8842271 2.3525314, 48.8844041 2.3451523, 48.8844340 2.3551288, 48.8844369 2.3439456, 48.8844672 2.3380435, 48.8845950 2.3470065, 48.8846849 2.3360733, 48.8847614 2.3484352, 48.8848492 2.3379967, 48.8849222 2.3308445, 48.8849553 2.3294255, 48.8849669 2.3542103, 48.8849687 2.3507256, 48.8850502 2.3520744, 48.8851030 2.3511582, 48.8851641 2.3340439, 48.8852210 2.3497901, 48.8855079 2.3541642, 48.8856116 2.3396011, 48.8856228 2.3498339, 48.8857035 2.3557329, 48.8857606 2.3406887, 48.8858871 2.3558589, 48.8860287 2.3397744, 48.8860550 2.3483599, 48.8861046 2.3415390, 48.8861265 2.3464882, 48.8862752 2.3341623, 48.8865084 2.3396743, 48.8865590 2.3442373, 48.8871894 2.3375292, 48.8872573 2.3513205, 48.8873945 2.3433426, 48.8875101 2.3353784, 48.8876064 2.3413781, 48.8878339 2.3486082, 48.8879339 2.3561388, 48.8882096 2.3467457, 48.8882887 2.3420340, 48.8883160 2.3513066, 48.8883534 2.3525373, 48.8885554 2.3540671, 48.8888058 2.3559584, 48.8890100 2.3531280, 48.8893492 2.3449997, 48.8896158 2.3461133, 48.8900020 2.3515230, 48.8903302 2.3535017, 48.8903480 2.3531599, 48.8904285 2.3486604, 48.8905130 2.3500905, 48.8910509 2.3516036, 48.8757681 2.3578797, 48.8758238 2.3578824, 48.8762217 2.3586964, 48.8570381 2.3480446, 48.8575762 2.3494199, 48.8579164 2.3467953, 48.8580648 2.3466748, 48.8586813 2.3485587, 48.8590149 2.3473254, 48.8593750 2.3407877, 48.8595485 2.3436063, 48.8596015 2.3467635, 48.8603309 2.3435680, 48.8609387 2.3448599, 48.8611214 2.3446695, 48.8613203 2.3431014, 48.8613826 2.3399197, 48.8615030 2.3537880, 48.8615771 2.3418562, 48.8616112 2.3441771, 48.8616280 2.3393880, 48.8618802 2.3507259, 48.8623333 2.3389057, 48.8623677 2.3520008, 48.8623818 2.3418636, 48.8626127 2.3542906, 48.8629079 2.3532453, 48.8631055 2.3358246, 48.8631800 2.3527500, 48.8633003 2.3336176, 48.8633189 2.3466557, 48.8633520 2.3337895, 48.8635365 2.3357222, 48.8636998 2.3399068, 48.8639508 2.3319640, 48.8639621 2.3420802, 48.8642335 2.3453599, 48.8645472 2.3463386, 48.8646226 2.3426480, 48.8646870 2.3406606, 48.8647941 2.3511884, 48.8648400 2.3355843, 48.8651267 2.3429107, 48.8651708 2.3405472, 48.8652931 2.3537230, 48.8653326 2.3552559, 48.8653611 2.3524876, 48.8654999 2.3423967, 48.8658039 2.3372520, 48.8661711 2.3384355, 48.8662258 2.3403557, 48.8666590 2.3541047, 48.8667309 2.3520789, 48.8668074 2.3494867, 48.8669351 2.3443363, 48.8670834 2.3358592, 48.8673540 2.3406581, 48.8675796 2.3535504, 48.8677334 2.3377298, 48.8678514 2.3362272, 48.8678705 2.3451971, 48.8679636 2.3511355, 48.8679881 2.3352776, 48.8680475 2.3479599, 48.8680796 2.3480760, 48.8681299 2.3505334, 48.8681721 2.3349800, 48.8683093 2.3371647, 48.8683443 2.3411932, 48.8683889 2.3341099, 48.8685980 2.3469430, 48.8688537 2.3494779, 48.8688643 2.3391192, 48.8688978 2.3365035, 48.8688994 2.3348917, 48.8690412 2.3516028, 48.8691748 2.3344736, 48.8692087 2.3515210, 48.8692112 2.3456861, 48.8692485 2.3385287, 48.8693074 2.3454967, 48.8695829 2.3340383, 48.8698140 2.3396216, 48.8699372 2.3487469, 48.8700523 2.3413779, 48.8705156 2.3446299, 48.8706302 2.3373159, 48.8707194 2.3472729, 48.8707212 2.3496908, 48.8707331 2.3434405, 48.8710744 2.3351823, 48.8711554 2.3357637, 48.8711662 2.3521201, 48.8712410 2.3361569, 48.8712698 2.3534684, 48.8713594 2.3457604, 48.8714836 2.3414477, 48.8715326 2.3458904, 48.8723391 2.3467595, 48.8723480 2.3370773, 48.8723487 2.3487518, 48.8723966 2.3449630, 48.8725909 2.3501335, 48.8726445 2.3501474, 48.8727987 2.3405829, 48.8729581 2.3428034, 48.8731471 2.3395601, 48.8735640 2.3406389, 48.8739829 2.3481547, 48.8740470 2.3477340, 48.8740527 2.3421136, 48.8740548 2.3433864, 48.8740592 2.3425436, 48.8741494 2.3421417, 48.8742044 2.3397071, 48.8758785 2.3461185, 48.8761600 2.3483493, 48.8769202 2.3525222, 48.8770470 2.3471076, 48.8773771 2.3538771, 48.8774205 2.3535167, 48.8775902 2.3506534, 48.8776601 2.3553429, 48.8783861 2.3554997, 48.8787287 2.3546414, 48.8791515 2.3558469, 48.8797101 2.3534886, 48.8820092 2.3523456, 48.8823077 2.3510798, 48.8830825 2.3511342, 48.8585765 2.3864186, 48.8516699 2.3435357, 48.8530171 2.3437086, 48.8527079 2.3443015, 48.8524385 2.3434434, 48.8524830 2.3434653, 48.8518891 2.3436357, 48.8528599 2.3440994, 48.8410792 2.3509139, 48.8542344 2.3429198, 48.8957541 2.3476530, 48.8957586 2.3475660, 48.8539085 2.3086472, 48.8539541 2.3074346, 48.8551010 2.3095913, 48.8551532 2.3028063, 48.8552457 2.3067057, 48.8553363 2.3049928, 48.8553675 2.3068985, 48.8553929 2.3034896, 48.8559676 2.3059142, 48.8561045 2.3013326, 48.8562930 2.3025878, 48.8563056 2.3087302, 48.8563317 2.3096037, 48.8565079 2.3059903, 48.8568139 2.3076562, 48.8568319 2.3281152, 48.8571848 2.3085841, 48.8573852 2.3049322, 48.8574009 2.3030910, 48.8575384 2.3042998, 48.8578092 2.3321558, 48.8578154 2.3085010, 48.8578522 2.3192642, 48.8579820 2.3153470, 48.8580034 2.3086802, 48.8580229 2.3057868, 48.8581278 2.3108897, 48.8582323 2.3294789, 48.8583538 2.3295573, 48.8585346 2.3026259, 48.8585840 2.3199152, 48.8587092 2.3291167, 48.8587126 2.3247215, 48.8587381 2.3315547, 48.8589269 2.3283811, 48.8590443 2.3031744, 48.8590768 2.3305368, 48.8591000 2.3261231, 48.8591132 2.3179817, 48.8591582 2.3049131, 48.8594540 2.3062761, 48.8596508 2.3074975, 48.8596523 2.3226562, 48.8596919 2.3225563, 48.8597389 2.3018836, 48.8599169 2.3108575, 48.8599536 2.3248067, 48.8599563 2.3245226, 48.8600667 2.3148082, 48.8600752 2.3243791, 48.8602078 2.3234366, 48.8604166 2.3095659, 48.8606849 2.3259641, 48.8607318 2.3179448, 48.8607741 2.3023809, 48.8608367 2.3113974, 48.8608588 2.3201641, 48.8610382 2.3054909, 48.8611677 2.3056568, 48.8613121 2.3192107, 48.8622880 2.3059787, 48.8624061 2.3113873, 48.8653840 2.3274850, 48.8540526 2.3381367, 48.8433449 2.3251164, 48.8550540 2.3941000, 48.8560955 2.3926896, 48.8578050 2.3996283, 48.8582358 2.3823367, 48.8586186 2.3835107, 48.8592411 2.3830225, 48.8601008 2.3822123, 48.8626812 2.3797075, 48.8630453 2.3672473, 48.8633485 2.3671490, 48.8634092 2.3790356, 48.8644595 2.3839203, 48.8648530 2.3666639, 48.8657480 2.3705095, 48.8680948 2.3655417, 48.8682070 2.3654610, 48.8687325 2.3631261, 48.8740998 2.3453668, 48.8822164 2.3337987, 48.8461635 2.4121025, 48.8654497 2.3690938, 48.8709594 2.3479984, 48.8660577 2.3461115, 48.8350277 2.3205989, 48.8751006 2.3400657, 48.8748884 2.3397356, 48.8757351 2.3405971, 48.8750444 2.3389313, 48.8871516 2.3511027, 48.8315787 2.3542019, 48.8336520 2.3101620, 48.8337528 2.3087365, 48.8347380 2.3111012, 48.8348521 2.3075912, 48.8351341 2.3079342, 48.8354547 2.3057014, 48.8356004 2.3111710, 48.8357565 2.3059665, 48.8358801 2.3060665, 48.8361740 2.3098463, 48.8363383 2.3097267, 48.8366412 2.3045647, 48.8374548 2.3058579, 48.8374548 2.3080728, 48.8379248 2.3111213, 48.8379890 2.3069174, 48.8384950 2.3052994, 48.8385040 2.3067669, 48.8385066 2.3122890, 48.8386486 2.3135249, 48.8386719 2.3078559, 48.8386741 2.3067215, 48.8386877 2.3035456, 48.8386971 2.3115691, 48.8387412 2.3154065, 48.8393646 2.3070353, 48.8394827 2.3080856, 48.8397488 2.3061030, 48.8404963 2.3049668, 48.8405816 2.3086616, 48.8410500 2.3026163, 48.8413523 2.3073527, 48.8415111 2.3021720, 48.8416574 2.3083906, 48.8418418 2.3033696, 48.8419435 2.3093074, 48.8423393 2.3029467, 48.8423425 2.3021226, 48.8423676 2.3065419, 48.8435213 2.3080903, 48.8436881 2.3022154, 48.8437389 2.3024471, 48.8438234 2.3069381, 48.8444024 2.3089223, 48.8457141 2.3051500, 48.8458276 2.3037371, 48.8458503 2.3041384, 48.8463648 2.3074017, 48.8465226 2.3068476, 48.8470290 2.3104710, 48.8472268 2.3092341, 48.8472459 2.3076019, 48.8476609 2.3090669, 48.8480234 2.3010758, 48.8485462 2.3085865, 48.8496156 2.3012326, 48.8499794 2.3076988, 48.8501100 2.3060241, 48.8501962 2.3016109, 48.8506514 2.3086796, 48.8507327 2.3114270, 48.8521368 2.3091381, 48.8525064 2.3091028, 48.8525170 2.3003130, 48.8714453 2.3779907, 48.8385936 2.4043447, 48.8419332 2.3977625, 48.8555664 2.3791618, 48.8101616 2.3619565, 48.8926487 2.3594311, 48.8753587 2.3704700, 48.8683317 2.3921668, 48.8794010 2.3973642, 48.8831921 2.3953289, 48.8381765 2.3815493, 48.8435530 2.3220799, 48.8345270 2.3676018, 48.8528174 2.3454656, 48.8524768 2.3451560, 48.8528047 2.3455506, 48.8522237 2.3452202, 48.8528366 2.3455838, 48.8520545 2.3450880, 48.8524991 2.3448569, 48.8523811 2.3455175, 48.8523985 2.3454156, 48.8526936 2.3454400, 48.8518297 2.3444041, 48.8524942 2.3450079, 48.8525154 2.3452198, 48.8525300 2.3444340, 48.8524984 2.3449165, 48.8523948 2.3451403, 48.8526323 2.3452414, 48.8525589 2.3451535, 48.8523556 2.3455883, 48.8527431 2.3454930, 48.8525232 2.3451020, 48.8526255 2.3453560, 48.8524246 2.3449029, 48.8526532 2.3453925, 48.8527658 2.3454086, 48.8524155 2.3453426, 48.8525696 2.3452847, 48.8527323 2.3453722, 48.8482895 2.4084728, 48.8466594 2.4106749, 48.8479317 2.4084678, 48.8443704 2.4109328, 48.8727300 2.4014992, 48.8330093 2.3868281, 48.8956082 2.3863617, 48.8963229 2.3877822, 48.8966783 2.3884868, 48.8717878 2.3638160, 48.8829241 2.3432202, 48.8453825 2.3103100, 48.8507735 2.3622964, 48.8468849 2.3100155, 48.8731139 2.3807450, 48.8903381 2.3486643, 48.8905361 2.3482493, 48.8690065 2.3742189, 48.8437820 2.3881621, 48.8437338 2.3880357, 48.8524106 2.3862003, 48.8485041 2.3805544, 48.8721796 2.3274785, 48.8715853 2.3272917, 48.8694647 2.3205041, 48.8707068 2.3177487, 48.8708297 2.3198162, 48.8708454 2.3213869, 48.8709035 2.3189060, 48.8709852 2.3206588, 48.8711890 2.3169578, 48.8712229 2.3212990, 48.8713402 2.3210564, 48.8714517 2.3217836, 48.8715619 2.3188800, 48.8726833 2.3215369, 48.8733998 2.3194017, 48.8734458 2.3215269, 48.8734490 2.3214676, 48.8737552 2.3223785, 48.8741242 2.3202099, 48.8741894 2.3226422, 48.8744426 2.3203559, 48.8744527 2.3192732, 48.8744579 2.3215681, 48.8746259 2.3170130, 48.8751010 2.3174803, 48.8752101 2.3198480, 48.8752415 2.3228642, 48.8754143 2.3163173, 48.8756152 2.3185533, 48.8757410 2.3215885, 48.8758978 2.3194344, 48.8760860 2.3210935, 48.8761481 2.3202830, 48.8764319 2.3157243, 48.8764369 2.3177417, 48.8767020 2.3196440, 48.8767878 2.3193231, 48.8767945 2.3217772, 48.8768497 2.3189942, 48.8770537 2.3138386, 48.8771501 2.3228854, 48.8774521 2.3210244, 48.8775993 2.3114707, 48.8777530 2.3175110, 48.8777553 2.3150122, 48.8779285 2.3159181, 48.8779366 2.3224574, 48.8783761 2.3196887, 48.8786780 2.3137784, 48.8786980 2.3177660, 48.8789772 2.3189266, 48.8790239 2.3230057, 48.8792000 2.3158994, 48.8793082 2.3186672, 48.8793086 2.3140602, 48.8794483 2.3216115, 48.8795869 2.3214830, 48.8798755 2.3217055, 48.8800328 2.3155796, 48.8800529 2.3240220, 48.8801269 2.3198219, 48.8806145 2.3171109, 48.8807405 2.3153253, 48.8808722 2.3232632, 48.8813966 2.3233284, 48.8815205 2.3231048, 48.8820648 2.3194902, 48.8828840 2.3231572, 48.8832221 2.3217173, 48.8832818 2.3205676, 48.8833184 2.3234782, 48.8839513 2.3200381, 48.8917982 2.3501197, 48.8935018 2.3509687, 48.8941706 2.3509487, 48.8948571 2.3526912, 48.8951461 2.3495186, 48.8951672 2.3479407, 48.8954733 2.3497638, 48.8958043 2.3466479, 48.8970813 2.3526284, 48.8646577 2.3697145, 48.8543573 2.3136915, 48.8884177 2.3743799, 48.8480006 2.4345439, 48.8243767 2.3882824, 48.8240361 2.3627306, 48.8759290 2.3241447, 48.8764290 2.3259972, 48.8764091 2.3244207, 48.8761420 2.3253990, 48.8759449 2.3241482, 48.8760338 2.3245155, 48.8765475 2.3254916, 48.8760532 2.3249007, 48.8762511 2.3264503, 48.8222398 2.3591920, 48.8474387 2.3948976, 48.8455733 2.3932777, 48.8444922 2.3906935, 48.8475003 2.3947757, 48.8438714 2.3884965, 48.8441015 2.3902675, 48.8442066 2.3901213, 48.8442986 2.3903755, 48.8455774 2.3934588, 48.8458523 2.3940231, 48.8458668 2.3928146, 48.8667163 2.3367639, 48.8476545 2.3944723, 48.8481499 2.3941327, 48.8596625 2.3487464, 48.8236296 2.3258107, 48.8183865 2.3239908, 48.8184006 2.3239280, 48.8182338 2.3244286, 48.8274032 2.3423677, 48.8277079 2.3495286, 48.8314922 2.3442625, 48.8320979 2.3443846, 48.8367757 2.3452596, 48.8155824 2.3602430, 48.8155033 2.3602627, 48.8260107 2.3418204, 48.8254379 2.3417367, 48.8275172 2.3481095, 48.8232984 2.3491235, 48.8245450 2.3642314, 48.8649652 2.3469748, 48.8548426 2.3031870, 48.8548827 2.3032421, 48.8577877 2.3006194, 48.8596013 2.3072329, 48.8600760 2.3280535, 48.8612403 2.3243984, 48.8615577 2.3576761, 48.8626940 2.3099487, 48.8627569 2.3393126, 48.8629258 2.3030795, 48.8629949 2.3080187, 48.8630650 2.3165032, 48.8635613 2.3394544, 48.8322518 2.3505076, 48.8274091 2.3702950, 48.8262624 2.3422039, 48.8170719 2.3295227, 48.8171046 2.3289082, 48.8172653 2.3269485, 48.8171141 2.3283805, 48.8172737 2.3276440, 48.8655847 2.3476269, 48.8717156 2.3724284, 48.8682865 2.3740040, 48.8557030 2.3747134, 48.8343678 2.3941240, 48.8457586 2.3270884, 48.8529574 2.3648321, 48.8210463 2.3725549, 48.8258933 2.3769015, 48.8216635 2.3641183, 48.8339084 2.3226213, 48.8394410 2.3322130, 48.8302211 2.3529383, 48.8659387 2.3929440, 48.8475088 2.4104704, 48.8474749 2.4107917, 48.8686052 2.3443989, 48.8187770 2.3236463, 48.8186881 2.3240918, 48.8186575 2.3242610, 48.8184393 2.3244621, 48.8189946 2.3236282, 48.8735457 2.3708331, 48.8265121 2.3465625, 48.8321818 2.3392750, 48.8293214 2.3692986, 48.8508705 2.3623119, 48.8512015 2.3822530, 48.8514794 2.3101353, 48.8540997 2.3239460, 48.8541902 2.3194979, 48.8550561 2.3402771, 48.8600928 2.3731117, 48.8292238 2.3439360, 48.8910518 2.3314128, 48.8907746 2.3312473, 48.8490077 2.3495940, 48.8537886 2.3474561, 48.8461806 2.3049798, 48.8454569 2.3021602, 48.8173425 2.3289478, 48.8535790 2.3638481, 48.8571030 2.3539440, 48.8573414 2.3540716, 48.8574462 2.3575428, 48.8630086 2.3362399, 48.8631579 2.3415886, 48.8632373 2.3412593, 48.8653506 2.3423662, 48.8670831 2.3356438, 48.8744871 2.3117910, 48.8747123 2.3133715, 48.8461901 2.3512999, 48.8770585 2.3479815, 48.8558171 2.3591925, 48.8155795 2.3589085, 48.8421369 2.3176494, 48.8422999 2.3174583, 48.8428342 2.3162838, 48.8429747 2.3188550, 48.8433254 2.3137596, 48.8434671 2.3141943, 48.8436537 2.3222563, 48.8444891 2.3116986, 48.8445846 2.3211161, 48.8446144 2.3243851, 48.8452204 2.3187649, 48.8455784 2.3239099, 48.8455809 2.3219769, 48.8459065 2.3118982, 48.8462631 2.3193835, 48.8463396 2.3127780, 48.8466040 2.3190709, 48.8467670 2.3127162, 48.8474660 2.3160188, 48.8474753 2.3165293, 48.8476592 2.3121381, 48.8477851 2.3195679, 48.8479950 2.3233385, 48.8478094 2.3139811, 48.8492009 2.3142460, 48.8497021 2.3197907, 48.8498155 2.3199511, 48.8499241 2.3132717, 48.8501017 2.3175896, 48.8501349 2.3249523, 48.8504140 2.3240365, 48.8503875 2.3142865, 48.8507929 2.3238718, 48.8508108 2.3194005, 48.8508134 2.3132588, 48.8509410 2.3193307, 48.8510338 2.3192879, 48.8513602 2.3137134, 48.8516479 2.3197110, 48.8516519 2.3193545, 48.8516964 2.3160855, 48.8517388 2.3252453, 48.8523746 2.3262806, 48.8524136 2.3173189, 48.8527947 2.3190850, 48.8528415 2.3291596, 48.8530951 2.3262349, 48.8532135 2.3270320, 48.8535574 2.3151657, 48.8535809 2.3141731, 48.8536440 2.3299961, 48.8541301 2.3312281, 48.8544570 2.3287727, 48.8545108 2.3146096, 48.8547795 2.3146348, 48.8550665 2.3191598, 48.8552749 2.3279053, 48.8553640 2.3179921, 48.8554022 2.3301476, 48.8556439 2.3298387, 48.8557141 2.3235223, 48.8559870 2.3271496, 48.8560628 2.3170538, 48.8563335 2.3315077, 48.8563459 2.3239987, 48.8563942 2.3210916, 48.8565349 2.3212197, 48.8566110 2.3416102, 48.8568588 2.3197826, 48.8569854 2.3383301, 48.8570093 2.3414970, 48.8570242 2.3422386, 48.8572420 2.3380131, 48.8577451 2.3350889, 48.8534312 2.3389430, 48.8581170 2.3176186, 48.8518377 2.3336366, 48.8736489 2.3149511, 48.8754876 2.3480736, 48.8466623 2.4348343, 48.8776068 2.3489868, 48.8620665 2.3838398, 48.8879018 2.3544119, 48.8912273 2.3652498, 48.8344271 2.3454806, 48.8344685 2.3455658, 48.8169918 2.3258616, 48.8235887 2.3709824, 48.8190595 2.3486008, 48.8176437 2.3260953, 48.8176444 2.3258395, 48.8173940 2.3297916, 48.8171085 2.3312786, 48.8171734 2.3308750, 48.8175189 2.3306660, 48.8429321 2.3245088, 48.8425774 2.3246010, 48.8379338 2.3451570, 48.8669596 2.3540803, 48.8342486 2.3425441, 48.8342162 2.3447405, 48.8343274 2.3449900, 48.8342849 2.3425292, 48.8813835 2.3281151, 48.8878510 2.3535887, 48.8310392 2.3425080, 48.8308265 2.3530126, 48.8275984 2.3335328, 48.8826169 2.3296364, 48.8831199 2.3303330, 48.8834005 2.3305918, 48.8453508 2.4347565, 48.8462119 2.4348196, 48.8462654 2.4348179, 48.8458099 2.4348069, 48.8617117 2.3497830, 48.8261226 2.3577385, 48.8597393 2.3087639, 48.8598677 2.3086797, 48.8366915 2.3872945, 48.8358873 2.3963035, 48.8358890 2.3866572, 48.8359297 2.3867278, 48.8359554 2.3960408, 48.8359725 2.3959740, 48.8359742 2.3867660, 48.8361094 2.3872805, 48.8362994 2.3876544, 48.8363676 2.3944462, 48.8365365 2.3936955, 48.8367867 2.3928240, 48.8367894 2.3928135, 48.8367966 2.3927857, 48.8914513 2.4007092, 48.8347265 2.3446963, 48.8910795 2.4008572, 48.8378379 2.3473550, 48.8348733 2.3446364, 48.8183932 2.3258641, 48.8180636 2.3258685, 48.8192793 2.3258826, 48.8185791 2.3258552, 48.8184872 2.3258565, 48.8191025 2.3258715, 48.8368314 2.3382202, 48.8305790 2.3195353, 48.8430784 2.3847046, 48.8434945 2.3838411, 48.8451050 2.3806444, 48.8451648 2.3805083, 48.8452255 2.3803788, 48.8466206 2.4134552, 48.8530692 2.4125589, 48.8569190 2.4110486, 48.8647596 2.4089845, 48.8671280 2.4091658, 48.8673068 2.4087318, 48.8678522 2.4092408, 48.8718692 2.4084946, 48.8729156 2.4089018, 48.8730227 2.4088436, 48.8774817 2.4062578, 48.8799062 2.4010873, 48.8808314 2.4005187, 48.8827476 2.3997867, 48.8837604 2.3973570, 48.8853759 2.3967693, 48.8891501 2.3919739, 48.8921011 2.3883839, 48.8939074 2.3869648, 48.8950741 2.3853043, 48.8965893 2.3846935, 48.8974790 2.3852300, 48.8484552 2.3315803, 48.8478188 2.3317288, 48.8475857 2.3296611, 48.8470992 2.3320504, 48.8478953 2.3316238, 48.8502142 2.3307201, 48.8661080 2.3480098, 48.8514201 2.3758635, 48.8774505 2.3685222, 48.8678023 2.3499020, 48.8678124 2.3498067, 48.8471588 2.3719205, 48.8504635 2.3752653, 48.8606025 2.3457538, 48.8444091 2.3842831, 48.8600001 2.3452392, 48.8611778 2.3447865, 48.8442555 2.3844474, 48.8601414 2.3453350, 48.8449869 2.3820879, 48.8461498 2.3724726, 48.8488509 2.3782764, 48.8489671 2.3729974, 48.8500845 2.3748802, 48.8506003 2.3754366, 48.8607328 2.3456697, 48.8612868 2.3461069, 48.8666717 2.3501829, 48.8667659 2.3491772, 48.8355408 2.3093378, 48.8592270 2.3236594, 48.8624657 2.3115669, 48.8779515 2.3440896, 48.8128540 2.3871804, 48.8454913 2.3116790, 48.8455110 2.3111536, 48.8669202 2.3834926, 48.8689269 2.3715327, 48.8759321 2.3727655, 48.8984073 2.3709403, 48.8853124 2.3253739, 48.8110214 2.3782777, 48.8525740 2.3134937, 48.8525833 2.3135404, 48.8526033 2.3136415, 48.8689288 2.3715403, 48.8424961 2.3064436, 48.8440160 2.3238242, 48.8702188 2.3108394, 48.8919944 2.3633128, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8697269 2.3949223, 48.8715298 2.3681493, 48.8372276 2.3646862, 48.8769773 2.3262750, 48.8753264 2.3590187, 48.8799626 2.3536843, 48.8445922 2.3731473, 48.8413218 2.3206480, 48.8455223 2.3425685, 48.8536307 2.3312600, 48.8213106 2.3411460, 48.8239590 2.3308277, 48.8239711 2.3514442, 48.8239998 2.3510117, 48.8241733 2.3533935, 48.8244865 2.3278048, 48.8245804 2.3396886, 48.8246044 2.3382584, 48.8248799 2.3536513, 48.8256032 2.3217938, 48.8266135 2.3534752, 48.8269262 2.3513163, 48.8281250 2.3216386, 48.8281819 2.3155262, 48.8289185 2.3222763, 48.8296026 2.3178273, 48.8324706 2.3133021, 48.8333400 2.3145004, 48.8337099 2.3148700, 48.8337885 2.3608913, 48.8356331 2.4060202, 48.8360628 2.4058718, 48.8367584 2.3566102, 48.8368296 2.3568351, 48.8459364 2.3679712, 48.8488033 2.3687487, 48.8614046 2.3531748, 48.8594247 2.3541247, 48.8594211 2.3542124, 48.8334174 2.3618852, 48.8360650 2.3596394, 48.8362427 2.3596851, 48.8366167 2.3595885, 48.8366724 2.3596246, 48.8376250 2.3599216, 48.8850419 2.3744732, 48.8838417 2.3719439, 48.8837483 2.3717520, 48.8850102 2.3744075, 48.8853557 2.3751166, 48.8384611 2.3605477, 48.8846076 2.3697324, 48.8847187 2.3693992, 48.8843398 2.3684081, 48.8846076 2.3697324, 48.8847187 2.3693992, 48.8407489 2.3325635, 48.8515711 2.3623262, 48.8650085 2.3673694, 48.8629594 2.3673222, 48.8908885 2.3778488, 48.8627650 2.3673900, 48.8671353 2.3480000, 48.8467474 2.3783883, 48.8471339 2.3781711, 48.8420534 2.3270460, 48.8712921 2.3250770, 48.8674112 2.3229787, 48.8718050 2.3260042, 48.8711680 2.3244832, 48.8705122 2.3238078, 48.8704742 2.3237783, 48.8704346 2.3237502, 48.8689760 2.3246971, 48.8699476 2.3254321, 48.8696624 2.3230123, 48.8697219 2.3226142, 48.8116113 2.3888455, 48.8121801 2.3883198, 48.8295478 2.3565241, 48.8291546 2.3568286, 48.8295252 2.3565008, 48.8424086 2.3513701, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8403450 2.3126650, 48.8938413 2.3472931, 48.8942404 2.3460471, 48.8942255 2.3458385, 48.8548397 2.3327630, 48.8550742 2.3329300, 48.8549423 2.3328154, 48.8297226 2.3219729, 48.8731938 2.3290960, 48.8325364 2.3417797, 48.8314181 2.3371743, 48.8327337 2.3418100, 48.8330472 2.3399437, 48.8339254 2.3432235, 48.8338525 2.3429060, 48.8329977 2.3417898, 48.8563876 2.4098516, 48.8466055 2.3466048, 48.8934234 2.3381216, 48.8929811 2.3381482, 48.8839216 2.3271785, 48.8839775 2.3271608, 48.8839670 2.3273081, 48.8841275 2.3270884, 48.8845343 2.3268965, 48.8846683 2.3268418, 48.8855156 2.3264429, 48.8862771 2.3262148, 48.8861526 2.3261584, 48.8865223 2.3259623, 48.8869014 2.3259253, 48.8871792 2.3257982, 48.8875030 2.3256728, 48.8874194 2.3255802, 48.8572041 2.3519819, 48.8572192 2.3519137, 48.8572350 2.3518428, 48.8572508 2.3517719, 48.8572661 2.3517033, 48.8560656 2.3513775, 48.8560820 2.3513063, 48.8560988 2.3512327, 48.8561157 2.3511592, 48.8561320 2.3510885, 48.8919499 2.3369440, 48.8594141 2.3491854, 48.8605440 2.3490975, 48.8589870 2.3482181, 48.8714017 2.3382665, 48.8732628 2.3407395, 48.8237995 2.3254184, 48.8235069 2.3253377, 48.8236544 2.3253945, 48.8529506 2.4178518, 48.8298598 2.3564266, 48.8292574 2.3564506, 48.8299806 2.3563975, 48.8433447 2.3026630, 48.8487244 2.3363303, 48.8839482 2.3865956, 48.8472293 2.4312408, 48.8832359 2.3459108, 48.8603210 2.3564177, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8146772 2.3838576, 48.8153007 2.3857780, 48.8150764 2.3854133, 48.8306620 2.3114368, 48.8309698 2.3120278, 48.8319648 2.3140431, 48.8344971 2.4006966, 48.8239744 2.3528049, 48.8236433 2.3530302, 48.8741108 2.3436798, 48.8805026 2.3961626, 48.8314166 2.3251141, 48.8321210 2.3246559, 48.8337101 2.3186360, 48.8540626 2.3612455, 48.8436106 2.3422313, 48.8747610 2.3399353, 48.8189427 2.3623110, 48.8193375 2.3442401, 48.8193930 2.3452226, 48.8200280 2.3394747, 48.8202391 2.3395613, 48.8205079 2.3556087, 48.8205508 2.3372668, 48.8205989 2.3495983, 48.8211121 2.3347051, 48.8215967 2.3323735, 48.8236280 2.3761871, 48.8292229 2.3255814, 48.8313803 2.3349575, 48.8316633 2.3221401, 48.8325886 2.3203616, 48.8357379 2.3250590, 48.8386159 2.3222156, 48.8532271 2.3906633, 48.8319258 2.3247528, 48.8718921 2.4037539, 48.8346470 2.3196240, 48.8532124 2.3749112, 48.8593876 2.3489534, 48.8591424 2.3496306, 48.8594147 2.3492122, 48.8593718 2.3493758, 48.8593594 2.3494831, 48.8594723 2.3495716, 48.8598042 2.3498100, 48.8598817 2.3498211, 48.8592624 2.3495841, 48.8592324 2.3496685, 48.8591750 2.3498375, 48.8591459 2.3499381, 48.8591582 2.3498992, 48.8587506 2.3498885, 48.8585618 2.3501138, 48.8584400 2.3500508, 48.8582309 2.3499153, 48.8586577 2.3512239, 48.8585324 2.3516236, 48.8584636 2.3518059, 48.8589383 2.3514814, 48.8594394 2.3491586, 48.8815660 2.3478333, 48.8196478 2.3446330, 48.8206209 2.3503189, 48.8565984 2.4372528, 48.8708285 2.3567888, 48.8701655 2.3796486, 48.8436699 2.3724975, 48.8761646 2.3446559, 48.8461007 2.3752397, 48.8467252 2.3767361, 48.8301909 2.3563247, 48.8394868 2.3971498, 48.8365549 2.3948731, 48.8373822 2.3914239, 48.8377537 2.3919934, 48.8393056 2.3967931, 48.8393248 2.3967327, 48.8393449 2.3966796, 48.8394296 2.3967095, 48.8394300 2.3967676, 48.8394300 2.3968352, 48.8397868 2.3974178, 48.8760697 2.3717288, 48.8762025 2.3710966, 48.8668246 2.3443795, 48.8666808 2.3456284, 48.8666058 2.3460447, 48.8665292 2.3464186, 48.8665024 2.3465774, 48.8667552 2.3451020, 48.8804479 2.3766239, 48.8295801 2.3570095, 48.8667159 2.3453933, 48.8274980 2.3718441, 48.8564317 2.3347979, 48.8720337 2.3408590, 48.8160406 2.3835571, 48.8737471 2.3451402, 48.8731623 2.3449978, 48.8719437 2.3446492, 48.8739748 2.3451867, 48.8735309 2.3450913, 48.8460079 2.4246510, 48.8555154 2.3007432, 48.8705878 2.3425842, 48.8483378 2.3594757, 48.8310133 2.3479849, 48.8359481 2.3498941, 48.8362085 2.3507215, 48.8336968 2.3465746, 48.8337957 2.3464960, 48.8348194 2.3458781, 48.8248876 2.3256746, 48.8264147 2.3262238, 48.8687270 2.3475909, 48.8610529 2.3020976, 48.8605209 2.3023944, 48.8613553 2.3023359, 48.8902655 2.3544161, 48.8902734 2.3546516, 48.8907840 2.3529231, 48.8714000 2.4083505, 48.8713019 2.4091675, 48.8570120 2.3850989, 48.8666603 2.4028543, 48.8360131 2.3100586, 48.8369650 2.3090961, 48.8375624 2.3080571, 48.8385808 2.3067130, 48.8395895 2.3092578, 48.8714897 2.3427273, 48.8279631 2.3510342, 48.8276841 2.3501384, 48.8277176 2.3503583, 48.8237415 2.3254034, 48.8234639 2.3253578, 48.8239399 2.3255661, 48.8914921 2.3613348, 48.8679628 2.4027679, 48.8677994 2.4032649, 48.8911449 2.3614088, 48.8250855 2.3258682, 48.8911611 2.3865761, 48.8233730 2.3268718, 48.8304476 2.3543290, 48.8304902 2.3544604, 48.8303310 2.3543233, 48.8304313 2.3542566, 48.8301931 2.3538796, 48.8740637 2.3160837, 48.8742737 2.3172451, 48.8742260 2.3159522, 48.8552215 2.3598904, 48.8551659 2.3601680, 48.8551235 2.3603692, 48.8551245 2.3604541, 48.8550776 2.3606106, 48.8196794 2.3595779, 48.8205058 2.3593321, 48.8208830 2.3590614, 48.8268975 2.3251827, 48.8258340 2.3245387, 48.8274224 2.3261640, 48.8274789 2.3263189, 48.8592190 2.3947920, 48.8597166 2.3945353, 48.8545231 2.3626948, 48.8544579 2.3624454, 48.8543661 2.3625621, 48.8538565 2.3611419, 48.8539037 2.3621825, 48.8624888 2.3394585, 48.8618771 2.3408195, 48.8295109 2.3563809, 48.8651631 2.3471088, 48.8679384 2.3435621, 48.8680096 2.3435345, 48.8642261 2.3500027, 48.8641600 2.3508375, 48.8639977 2.3501757, 48.8641399 2.3507425, 48.8651441 2.3467946, 48.8676664 2.3437165, 48.8679005 2.3435952, 48.8582848 2.3558481, 48.8595125 2.3524319, 48.8630993 2.3180109, 48.8917040 2.3496280, 48.8735748 2.3177002, 48.8678347 2.3438681, 48.8493157 2.3784984, 48.8701190 2.3851060, 48.8348722 2.4086899, 48.8358883 2.4089442, 48.8360619 2.4087881, 48.8425612 2.3139626, 48.8475557 2.4085227, 48.8329552 2.3629170, 48.8310119 2.3691821, 48.8305746 2.3590826, 48.8312746 2.3688607, 48.8316872 2.3724426, 48.8297680 2.3590749, 48.8300773 2.3581857, 48.8301184 2.3578787, 48.8310054 2.3586192, 48.8313599 2.3721870, 48.8314915 2.3586482, 48.8319196 2.3599107, 48.8321411 2.3674744, 48.8327423 2.3625997, 48.8331514 2.3635943, 48.8335438 2.3646054, 48.8295989 2.3477981, 48.8557761 2.3581437, 48.8630965 2.3391181, 48.8632467 2.3379664, 48.8636448 2.3397088, 48.8631247 2.3342740, 48.8643981 2.3303564, 48.8456633 2.4345253, 48.8216786 2.4131430, 48.8214371 2.4135331, 48.8285566 2.4030554, 48.8205703 2.4147500, 48.8208817 2.4147098, 48.8214129 2.4136675, 48.8231376 2.4114859, 48.8254899 2.4074193, 48.8259819 2.4065518, 48.8263554 2.4059990, 48.8320206 2.3980120, 48.8358990 2.3466845, 48.8733986 2.3215098, 48.8901851 2.3629536, 48.8888376 2.3731738, 48.8546823 2.3502166, 48.8740226 2.3337460, 48.8802997 2.3577529, 48.8804486 2.3543495, 48.8804310 2.3540947, 48.8803768 2.3546246, 48.8801870 2.3552631, 48.8801873 2.3552421, 48.8619404 2.3145726, 48.8796452 2.3570797, 48.8797199 2.3571545, 48.8804330 2.3540743, 48.8334394 2.3321755, 48.8544848 2.3300596, 48.8484830 2.3465489, 48.8516378 2.3234420, 48.8280833 2.3518785, 48.8415102 2.4131166, 48.8416826 2.4130896, 48.8463295 2.4202963, 48.8482348 2.4207871, 48.8693569 2.4230831, 48.8344693 2.4044067, 48.8348210 2.4050151, 48.8322154 2.3982746, 48.8329088 2.4001708, 48.8345869 2.4046238, 48.8319771 2.3979134, 48.8335336 2.4018517, 48.8343346 2.4041298, 48.8489944 2.3476761, 48.8903302 2.3647026, 48.8509791 2.3426696, 48.8759062 2.3683702, 48.8336080 2.3554429, 48.8558979 2.3067417, 48.8566648 2.3063442, 48.8569595 2.3061913, 48.8498557 2.3451858, 48.8631173 2.3365427, 48.8675021 2.3098437, 48.8339315 2.3535154, 48.8344090 2.3538607, 48.8343358 2.3532328, 48.8334871 2.3538301, 48.8342764 2.3539253, 48.8343901 2.3531943, 48.8337767 2.3536196, 48.8329666 2.3548590, 48.8323454 2.3551969, 48.8745891 2.3627432, 48.8754929 2.3615609, 48.8728158 2.3579631, 48.8590580 2.3986870, 48.8598370 2.3974270, 48.8604580 2.3996200, 48.8605160 2.3981120, 48.8620610 2.3984020, 48.8623120 2.3981950, 48.8483435 2.4337996, 48.8973908 2.3817659, 48.8538689 2.3274803, 48.8669154 2.3360156, 48.8843844 2.3286648, 48.8968374 2.3787112, 48.8971449 2.3819951, 48.8410900 2.3740378, 48.8706152 2.3532598, 48.8281734 2.3581151, 48.8281213 2.3581379, 48.8282088 2.3580869, 48.8298944 2.3567517, 48.8279789 2.3582481, 48.8284861 2.3582883, 48.8514668 2.3336573, 48.8876260 2.3607080, 48.8874370 2.3698420, 48.8728468 2.4296322, 48.8762168 2.4256559, 48.8306371 2.3542033, 48.8301553 2.3526298, 48.8299498 2.3520500, 48.8304537 2.3536286, 48.8304963 2.3537726, 48.8301901 2.3527078, 48.8306699 2.3543176, 48.8488823 2.3702261, 48.8951201 2.3923772, 48.8676645 2.3368980, 48.8678227 2.3369768, 48.8248631 2.3286651, 48.8691288 2.3921028, 48.8250223 2.3283919, 48.8760081 2.3682405, 48.8735347 2.3647853, 48.8678050 2.3496900, 48.8468258 2.4090233, 48.8364949 2.3523935, 48.8761265 2.4133759, 48.8588192 2.3623802, 48.8701642 2.3537129, 48.8590400 2.3622970, 48.8588424 2.3620611, 48.8586471 2.3628035, 48.8594872 2.3600407, 48.8681841 2.3484645, 48.8682787 2.3487909, 48.8685115 2.3495915, 48.8690548 2.3514051, 48.8406868 2.3703229, 48.8292095 2.3653864, 48.8293654 2.3598900, 48.8294195 2.3608937, 48.8301355 2.3619849, 48.8301467 2.3580834, 48.8301714 2.3582842, 48.8897483 2.3636170, 48.8907611 2.3619378, 48.8458824 2.3754339, 48.8283995 2.3582668, 48.8289870 2.3575962, 48.8298938 2.3573281, 48.8524475 2.3894597, 48.8527486 2.3889981, 48.8526497 2.3891013, 48.8525392 2.3892934, 48.8529257 2.3887696, 48.8526917 2.3890319, 48.8526385 2.3889177, 48.8528806 2.3888431, 48.8890079 2.3632043, 48.8893152 2.3632428, 48.8440184 2.3516159, 48.8703084 2.3528255, 48.8698720 2.3253770, 48.8471209 2.3451247, 48.8538600 2.3320680, 48.8850869 2.3651538, 48.8895729 2.3670765, 48.8541107 2.3568241, 48.8962126 2.3808930, 48.8965172 2.3798898, 48.8749003 2.3428357, 48.8840985 2.3910764, 48.8849161 2.3956341, 48.8969772 2.3790309, 48.8971217 2.3818511, 48.8423637 2.3259492, 48.8369247 2.3655074, 48.8370392 2.3656876, 48.8366117 2.3660108, 48.8526993 2.3846497, 48.8424383 2.3176561, 48.8504757 2.3251066, 48.8524079 2.3158258, 48.8535864 2.3249939, 48.8536256 2.3247887, 48.8503322 2.3249809, 48.8508952 2.3189047, 48.8526041 2.3304466, 48.8518778 2.3321617, 48.8497717 2.3196836, 48.8519794 2.3321639, 48.8466762 2.3247816, 48.8456465 2.3213787, 48.8455993 2.3212150, 48.8455338 2.3209426, 48.8436803 2.3160913, 48.8457384 2.3235400, 48.8522398 2.3252710, 48.8406073 2.3127443, 48.8457996 2.3234822, 48.8557805 2.3084038, 48.8604452 2.3020032, 48.8594707 2.3055947, 48.8507372 2.3284837, 48.8604641 2.3021394, 48.8596489 2.3055053, 48.8498294 2.3196734, 48.8579529 2.3083225, 48.8560914 2.3029731, 48.8492010 2.3314973, 48.8474620 2.3419998, 48.8489509 2.3315523, 48.8604830 2.3022520, 48.8585004 2.3057333, 48.8585754 2.3113202, 48.8396674 2.3497245, 48.8396212 2.3497285, 48.8401276 2.3498418, 48.8403006 2.3496960, 48.8402622 2.3497016, 48.8405554 2.3497762, 48.8410617 2.3495530, 48.8409500 2.3497288, 48.8416725 2.3497548, 48.8417916 2.3497766, 48.8417688 2.3496085, 48.8418859 2.3497875, 48.8419165 2.3497914, 48.8418378 2.3496214, 48.8420720 2.3498351, 48.8421234 2.3498351, 48.8421722 2.3498440, 48.8422841 2.3498549, 48.8424383 2.3496720, 48.8424242 2.3498245, 48.8424716 2.3498216, 48.8425009 2.3496614, 48.8426011 2.3496377, 48.8426473 2.3496219, 48.8427514 2.3496041, 48.8427970 2.3495932, 48.8428392 2.3495813, 48.8428906 2.3495715, 48.8429466 2.3495606, 48.8440708 2.3494232, 48.8441339 2.3494004, 48.8441847 2.3493876, 48.8445679 2.3496772, 48.8445191 2.3496762, 48.8444631 2.3496901, 48.8442543 2.3498651, 48.8237872 2.3194324, 48.8267542 2.3240551, 48.8251055 2.3204216, 48.8266797 2.3240397, 48.8274252 2.3570590, 48.8285987 2.3566668, 48.8286371 2.3566600, 48.8286832 2.3563470, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8466576 2.3407228, 48.8466860 2.3406517, 48.8470498 2.3271559, 48.8475999 2.3286529, 48.8479507 2.3346295, 48.8482683 2.3316141, 48.8212980 2.3643164, 48.8383528 2.3897390, 48.8468650 2.4280959, 48.8507437 2.3370595, 48.8604075 2.3556155, 48.8602435 2.3561333, 48.8603464 2.3558088, 48.8601740 2.3563013, 48.8571765 2.3589357, 48.8964485 2.3809715, 48.8964530 2.3810372, 48.8964631 2.3811828, 48.8964670 2.3812401, 48.8969949 2.3825220, 48.8970885 2.3824702, 48.8751345 2.3951275, 48.8364059 2.4010293, 48.8207702 2.3440653, 48.8767675 2.3414635, 48.8748701 2.3410125, 48.8747214 2.3415841, 48.8766739 2.3412606, 48.8705943 2.3429365, 48.8193733 2.3456600, 48.8194303 2.3460957, 48.8194368 2.3458501, 48.8194507 2.3458999, 48.8194644 2.3459091, 48.8194678 2.3459953, 48.8710996 2.3430459, 48.8727441 2.3433035, 48.8739857 2.3425755, 48.8746840 2.3416410, 48.8749520 2.3408054, 48.8749528 2.3407670, 48.8752190 2.3410094, 48.8763917 2.3411816, 48.8765388 2.3405739, 48.8101445 2.3854008, 48.8699102 2.3115070, 48.8683555 2.3254379, 48.8686773 2.3255335, 48.8684709 2.3254367, 48.8690272 2.3251599, 48.8700437 2.3257977, 48.8702250 2.3258823, 48.8205142 2.3592990, 48.8312517 2.3580440, 48.8506640 2.3288086, 48.8517041 2.3505648, 48.8408366 2.3037928, 48.8409327 2.3040247, 48.8647800 2.4056236, 48.8113502 2.3833591, 48.8107508 2.3843038, 48.8160826 2.3772932, 48.8531320 2.3882360, 48.8215304 2.3647909, 48.8216643 2.3646597, 48.8111988 2.3844055, 48.8106307 2.3844452, 48.8110524 2.3845517, 48.8105637 2.3850918, 48.8106069 2.3844808, 48.8108922 2.3836919, 48.8110354 2.3837224, 48.8110917 2.3839068, 48.8112555 2.3845378, 48.8105913 2.3846446, 48.8114348 2.3872609, 48.8106001 2.3850502, 48.8112811 2.3842031, 48.8618356 2.3526300, 48.8323064 2.3247729, 48.8508926 2.3468988, 48.8496394 2.3490781, 48.8548595 2.4101096, 48.8574751 2.3504537, 48.8574049 2.3502723, 48.8574529 2.3505657, 48.8735950 2.3331480, 48.8738880 2.3330270, 48.8265827 2.3745998, 48.8270960 2.3756517, 48.8229081 2.3565023, 48.8225167 2.3571540, 48.8960916 2.3807621, 48.8769049 2.3270113, 48.8757336 2.3266104, 48.8454864 2.3196693, 48.8764040 2.3270060, 48.8768180 2.3270140, 48.8770340 2.3271360, 48.8767510 2.3273100, 48.8766230 2.3273770, 48.8518237 2.3263371, 48.8518277 2.3264706, 48.8518410 2.3270180, 48.8520482 2.3269387, 48.8522732 2.3263458, 48.8520072 2.3255283, 48.8897765 2.3719886, 48.8667290 2.3403192, 48.8892768 2.3755008, 48.8898348 2.3752178, 48.8662363 2.3386378, 48.8251232 2.3579151, 48.8269879 2.3834766, 48.8562529 2.3674838, 48.8947397 2.3820270, 48.8950748 2.3539271, 48.8947706 2.3527604, 48.8951621 2.3527628, 48.8950270 2.3539258, 48.8695340 2.3049808, 48.8473882 2.3059953, 48.8338061 2.3177640, 48.8412345 2.3039106, 48.8723494 2.3607849, 48.8893068 2.3728983, 48.8896856 2.3725339, 48.8790855 2.3716088, 48.8933156 2.3933426, 48.8621462 2.3770723, 48.8618250 2.3774424, 48.8285077 2.3612348, 48.8158888 2.3726455, 48.8165177 2.3742219, 48.8169152 2.3717542, 48.8169624 2.3717153, 48.8177049 2.3712848, 48.8189427 2.3917129, 48.8198750 2.3912678, 48.8184578 2.3734558, 48.8164278 2.3757500, 48.8203920 2.3908064, 48.8161970 2.3756628, 48.8176069 2.3718190, 48.8087689 2.3775491, 48.8136467 2.3781446, 48.8101505 2.3768927, 48.8194373 2.4079977, 48.8095228 2.3859418, 48.8227792 2.3982348, 48.8152711 2.3985665, 48.8098398 2.3776725, 48.8095674 2.3771720, 48.8150663 2.3989774, 48.8117891 2.3824154, 48.8512111 2.3987159, 48.8512690 2.4044346, 48.8514506 2.4058799, 48.8514709 2.3995095, 48.8515803 2.4001141, 48.8543196 2.3962849, 48.8568402 2.4046511, 48.8580682 2.3877975, 48.8600706 2.3886064, 48.8604792 2.4008059, 48.8611195 2.3880530, 48.8631905 2.3883955, 48.8650677 2.3956244, 48.8651291 2.3943708, 48.8654133 2.3895489, 48.8660045 2.3873365, 48.8662887 2.3905433, 48.8682334 2.3864308, 48.8686568 2.3866090, 48.8690384 2.3861855, 48.8704416 2.3841005, 48.8704583 2.3841770, 48.8726164 2.3842276, 48.8734281 2.3825503, 48.8735409 2.3833038, 48.8612245 2.3480050, 48.8558516 2.3966177, 48.8559380 2.3965287, 48.8461374 2.3543608, 48.8459597 2.3544163, 48.8474070 2.3524580, 48.8458615 2.3544188, 48.8461968 2.3543595, 48.8475663 2.3529826, 48.8519343 2.3358691, 48.8521193 2.3364208, 48.8519784 2.3354942, 48.8520777 2.3364208, 48.8447679 2.3497792, 48.8681125 2.3487760, 48.8710949 2.4179817, 48.8678076 2.4259286, 48.8715766 2.4253599, 48.8547012 2.4264456, 48.8727664 2.4259058, 48.8745269 2.4247009, 48.8683783 2.4261566, 48.8713416 2.4246815, 48.8710659 2.4245418, 48.8684382 2.4254082, 48.8674203 2.4173859, 48.8550250 2.3290640, 48.8546210 2.3304540, 48.8283114 2.3769459, 48.8284449 2.3773286, 48.8280979 2.3774687, 48.8519979 2.3358911, 48.8311018 2.3750269, 48.8288363 2.3789616, 48.8290227 2.3793812, 48.8485543 2.4344492, 48.8485865 2.4337899, 48.8486571 2.4328554, 48.8485781 2.4339011, 48.8491100 2.4362178, 48.8491307 2.4361939, 48.8303119 2.3757398, 48.8307377 2.3751655, 48.8304165 2.3754516, 48.8305383 2.3753467, 48.8306923 2.3753998, 48.8309389 2.3749423, 48.8310217 2.3759342, 48.8287672 2.3790174, 48.8290058 2.3792428, 48.8290267 2.3790323, 48.8471340 2.3864431, 48.8467506 2.3832061, 48.8909348 2.3617899, 48.8815103 2.3372869, 48.8329435 2.4149758, 48.8323315 2.4178175, 48.8323359 2.4200595, 48.8322107 2.4176394, 48.8330064 2.4147766, 48.8626307 2.3439700, 48.8627212 2.3435074, 48.8629562 2.3448387, 48.8625110 2.3444549, 48.8630210 2.3437930, 48.8624489 2.3440076, 48.8695246 2.3611967, 48.8315841 2.4199815, 48.8325584 2.4173403, 48.8324901 2.4167426, 48.8325371 2.4171377, 48.8328810 2.4170763, 48.8342079 2.4196014, 48.8337431 2.4190611, 48.8931121 2.3632801, 48.8931926 2.3637398, 48.8767476 2.3606011, 48.8767563 2.3605685, 48.8767664 2.3605325, 48.8767737 2.3605042, 48.8768169 2.3603356, 48.8768247 2.3603017, 48.8768458 2.3607271, 48.8769066 2.3606489, 48.8769352 2.3605683, 48.8769653 2.3606480, 48.8769709 2.3606236, 48.8769998 2.3603143, 48.8770077 2.3606684, 48.8770137 2.3606456, 48.8770220 2.3606654, 48.8770343 2.3606738, 48.8770373 2.3607050, 48.8770408 2.3601452, 48.8770432 2.3607309, 48.8771166 2.3603817, 48.8772181 2.3594482, 48.8772350 2.3608623, 48.8767974 2.3607201, 48.8148909 2.3638254, 48.8248862 2.3754798, 48.8251423 2.3760799, 48.8274961 2.3770388, 48.8308911 2.3747716, 48.8312932 2.3735896, 48.8311417 2.3739163, 48.8519590 2.3400717, 48.8523174 2.3400938, 48.8625107 2.3109476, 48.8913564 2.3630079, 48.8906813 2.3639575, 48.8912994 2.3631087, 48.8913356 2.3626442, 48.8549171 2.3551866, 48.8383546 2.3930656, 48.8394477 2.3924756, 48.8394636 2.3926446, 48.8394195 2.3921135, 48.8531969 2.3783676, 48.8498591 2.3399092, 48.8501139 2.3385275, 48.8497474 2.3380298, 48.8335611 2.3308711, 48.8403604 2.3787511, 48.8713994 2.3446987, 48.8749826 2.3285546, 48.8928183 2.3927190, 48.8757341 2.3271813, 48.8886086 2.3780545, 48.8883372 2.3743635, 48.8752966 2.3283748, 48.8488007 2.3403871, 48.8112886 2.3853321, 48.8371681 2.3519450, 48.8370786 2.3520317, 48.8485556 2.3413174, 48.8480411 2.3409988, 48.8484401 2.3413672, 48.8478589 2.3407967, 48.8336159 2.3303783, 48.8883876 2.3902362, 48.8891585 2.3938039, 48.8862020 2.3612523, 48.8421984 2.3516249, 48.8336470 2.3315763, 48.8335273 2.3314999, 48.8474158 2.4276466, 48.8450740 2.4234208, 48.8458430 2.4237622, 48.8458464 2.4237715, 48.8460330 2.4236164, 48.8362062 2.3237133, 48.8892282 2.3628734, 48.8347564 2.3296964, 48.8349296 2.3296602, 48.8532503 2.3737978, 48.8670687 2.3793313, 48.8667388 2.3796639, 48.8672848 2.3853206, 48.8671313 2.3852348, 48.8664979 2.3850779, 48.8553007 2.3755708, 48.8357249 2.3282524, 48.8948851 2.3827807, 48.8949003 2.3826544, 48.8949465 2.3824056, 48.8966561 2.3798725, 48.8884687 2.3780615, 48.8902123 2.3593561, 48.8899019 2.3601226, 48.8899236 2.3601457, 48.8901122 2.3603976, 48.8911594 2.3596819, 48.8912365 2.3600425, 48.8487519 2.3414295, 48.8485322 2.3419738, 48.8484295 2.3424166, 48.8393457 2.3371003, 48.8888328 2.3605282, 48.8889428 2.3605049, 48.8889995 2.3625923, 48.8893812 2.3628340, 48.8528020 2.4110674, 48.8765293 2.3766762, 48.8765787 2.3774487, 48.8765381 2.3785538, 48.8760857 2.3803012, 48.8760618 2.3804326, 48.8759710 2.3808578, 48.8831467 2.3852056, 48.8526874 2.3539909, 48.8446809 2.3466783, 48.8775011 2.3813787, 48.8767337 2.3866037, 48.8765415 2.3864454, 48.8782248 2.3818123, 48.8784224 2.3821811, 48.8793441 2.3856452, 48.8792550 2.3846850, 48.8794349 2.3875791, 48.8894902 2.3806301, 48.8899352 2.3788791, 48.8798221 2.3894418, 48.8912644 2.3784340, 48.8910965 2.3782517, 48.8516574 2.3385425, 48.8301525 2.3594415, 48.8302709 2.3590981, 48.8485948 2.4261423, 48.8482999 2.4248745, 48.8336698 2.3296041, 48.8337502 2.3300015, 48.8642559 2.3362323, 48.8743681 2.3769994, 48.8749997 2.3784035, 48.8465069 2.4099879, 48.8099646 2.3877087, 48.8486443 2.3753679, 48.8481127 2.3756890, 48.8492365 2.3739525, 48.8478160 2.3772935, 48.8495930 2.3774565, 48.8495553 2.3786800, 48.8500160 2.3788251, 48.8496527 2.3779307, 48.8500419 2.3782003, 48.8465400 2.3811858, 48.8467962 2.3835368, 48.8501437 2.3788464, 48.8504944 2.3783154, 48.8503285 2.3781973, 48.8501185 2.3780311, 48.8481611 2.3766463, 48.8460012 2.3764202, 48.8467980 2.3783355, 48.8553144 2.3878881, 48.8434604 2.4022375, 48.8430061 2.3486842, 48.8497173 2.3704111, 48.8512299 2.3698210, 48.8496167 2.3700570, 48.8534945 2.3706179, 48.8535356 2.3706586, 48.8486058 2.3978799, 48.8481689 2.3925595, 48.8469569 2.3847760, 48.8469044 2.3843200, 48.8468648 2.3840074, 48.8466247 2.3789460, 48.8464179 2.3800872, 48.8467149 2.3826525, 48.8854184 2.3809339, 48.8122223 2.3712034, 48.8133489 2.3703196, 48.8673896 2.3544810, 48.8602996 2.3436624, 48.8603776 2.3434701, 48.8598410 2.3424752, 48.8958679 2.3839964, 48.8958529 2.3839302, 48.8958300 2.3838707, 48.8961624 2.3861000, 48.8961819 2.3857796, 48.8683404 2.3702309, 48.8762491 2.3755713, 48.8765120 2.3753701, 48.8780220 2.3743079, 48.8752119 2.3738600, 48.8753759 2.3739351, 48.8753782 2.3736728, 48.8751695 2.3739029, 48.8603718 2.3521816, 48.8754994 2.3737769, 48.8741587 2.3777760, 48.8742151 2.3784198, 48.8746967 2.3796965, 48.8747991 2.3806675, 48.8746244 2.3809330, 48.8765910 2.3232000, 48.8747470 2.3159270, 48.8828751 2.3764954, 48.8761320 2.3341390, 48.8764230 2.3335430, 48.8763180 2.3309180, 48.8720638 2.3998952, 48.8757435 2.3262717, 48.8785795 2.3840106, 48.8847022 2.3794239, 48.8781141 2.3843466, 48.8779190 2.3852619, 48.8778925 2.3854242, 48.8770266 2.3854523, 48.8784073 2.3854415, 48.8777463 2.3853987, 48.8782848 2.3854140, 48.8785273 2.3854630, 48.8789083 2.3856186, 48.8791522 2.3858224, 48.8792668 2.3856534, 48.8789361 2.3851519, 48.8781070 2.3860947, 48.8782913 2.3861269, 48.8800423 2.3744552, 48.8801389 2.3744304, 48.8806716 2.3738195, 48.8859368 2.3931939, 48.8864735 2.3927102, 48.8746937 2.3271509, 48.8746971 2.3271657, 48.8746989 2.3271832, 48.8747046 2.3272041, 48.8747072 2.3272184, 48.8747107 2.3272555, 48.8747115 2.3271483, 48.8747115 2.3272666, 48.8747132 2.3271622, 48.8747132 2.3271788, 48.8747164 2.3272943, 48.8747176 2.3273097, 48.8747200 2.3273362, 48.8747204 2.3273245, 48.8747222 2.3272037, 48.8747226 2.3272205, 48.8747265 2.3272604, 48.8747277 2.3272685, 48.8747285 2.3273763, 48.8747326 2.3272919, 48.8747326 2.3273917, 48.8747330 2.3273067, 48.8747350 2.3271413, 48.8747350 2.3274145, 48.8747356 2.3271561, 48.8747358 2.3273178, 48.8747358 2.3273307, 48.8747367 2.3271701, 48.8747407 2.3271962, 48.8747407 2.3274404, 48.8747436 2.3272145, 48.8747443 2.3274681, 48.8747455 2.3273769, 48.8747460 2.3272518, 48.8747468 2.3273948, 48.8747468 2.3274835, 48.8747472 2.3275026, 48.8747488 2.3274182, 48.8747496 2.3272598, 48.8747500 2.3275193, 48.8747512 2.3274367, 48.8747545 2.3271370, 48.8747548 2.3275509, 48.8747557 2.3272832, 48.8747571 2.3275761, 48.8747573 2.3271492, 48.8747573 2.3271666, 48.8747577 2.3272974, 48.8747585 2.3271919, 48.8747589 2.3273221, 48.8747593 2.3273122, 48.8747599 2.3275979, 48.8747605 2.3274792, 48.8747609 2.3274632, 48.8747609 2.3274952, 48.8747618 2.3273652, 48.8747631 2.3272110, 48.8747638 2.3272469, 48.8747638 2.3272561, 48.8747658 2.3273806, 48.8747662 2.3275137, 48.8747670 2.3272795, 48.8747679 2.3276136, 48.8747695 2.3272968, 48.8747697 2.3275509, 48.8747699 2.3273116, 48.8747708 2.3276860, 48.8747711 2.3273258, 48.8747711 2.3274145, 48.8747714 2.3275753, 48.8747714 2.3276694, 48.8747743 2.3275971, 48.8747748 2.3277086, 48.8747751 2.3274342, 48.8747772 2.3273627, 48.8747776 2.3273818, 48.8747777 2.3277252, 48.8747784 2.3274607, 48.8747788 2.3274749, 48.8747812 2.3274909, 48.8747828 2.3274170, 48.8747834 2.3276093, 48.8747836 2.3275088, 48.8747857 2.3274287, 48.8747880 2.3276650, 48.8747880 2.3276842, 48.8747880 2.3277940, 48.8747903 2.3275421, 48.8747913 2.3274743, 48.8747920 2.3277060, 48.8747920 2.3277243, 48.8747922 2.3274589, 48.8747930 2.3274909, 48.8747942 2.3275076, 48.8747943 2.3275674, 48.8747966 2.3275962, 48.8747978 2.3278672, 48.8748023 2.3275413, 48.8748023 2.3276075, 48.8748041 2.3278411, 48.8748058 2.3277879, 48.8748058 2.3278638, 48.8748069 2.3275831, 48.8748081 2.3275657, 48.8748081 2.3276624, 48.8748092 2.3276860, 48.8748109 2.3279509, 48.8748121 2.3278611, 48.8748127 2.3276023, 48.8748132 2.3277043, 48.8748144 2.3277226, 48.8748161 2.3279866, 48.8748230 2.3276825, 48.8748241 2.3277077, 48.8748241 2.3277836, 48.8748247 2.3276598, 48.8748270 2.3279387, 48.8748276 2.3277234, 48.8748310 2.3279797, 48.8748356 2.3277810, 48.8748356 2.3278489, 48.8748362 2.3278298, 48.8748407 2.3278472, 48.8748476 2.3279352, 48.8748482 2.3278454, 48.8748551 2.3279771, 48.8748625 2.3279309, 48.8748694 2.3279710, 48.8413123 2.4117612, 48.8746841 2.3270910, 48.8746927 2.3271219, 48.8747001 2.3270093, 48.8747109 2.3270107, 48.8747140 2.3270778, 48.8747261 2.3270067, 48.8747269 2.3270475, 48.8747421 2.3270732, 48.8747552 2.3276805, 48.8300301 2.3296176, 48.8817180 2.3718295, 48.8337668 2.3278330, 48.8820002 2.3711763, 48.8354148 2.3235123, 48.8328155 2.3261603, 48.8825006 2.3706159, 48.8296835 2.3597033, 48.8297392 2.3595465, 48.8298567 2.3572407, 48.8490915 2.3487987, 48.8503538 2.3905532, 48.8587751 2.4075335, 48.8586001 2.4078519, 48.8587238 2.4076570, 48.8567853 2.4014546, 48.8135907 2.3828193, 48.8529290 2.3314950, 48.8530850 2.3312320, 48.8676326 2.3499450, 48.8593290 2.3226650, 48.8498887 2.3433647, 48.8502174 2.3432764, 48.8260443 2.3266660, 48.8255907 2.3265438, 48.8921038 2.3612542, 48.8742978 2.3267750, 48.8764651 2.3325771, 48.8782984 2.3583405, 48.8666813 2.3854927, 48.8816483 2.3644514, 48.8267959 2.3271211, 48.8261320 2.3286171, 48.8260648 2.3281689, 48.8899434 2.3710251, 48.8902450 2.3708454, 48.8803750 2.3978486, 48.8528204 2.3535885, 48.8752933 2.3228773, 48.8812111 2.3720335, 48.8811706 2.3719906, 48.8763043 2.3845917, 48.8762214 2.3834089, 48.8746866 2.3850531, 48.8745931 2.3852059, 48.8589381 2.3504712, 48.8570274 2.3983184, 48.8573676 2.3933983, 48.8641699 2.4083715, 48.8567608 2.3945887, 48.8571019 2.3984066, 48.8603983 2.4043015, 48.8646358 2.4081310, 48.8757475 2.3857007, 48.8753418 2.3815392, 48.8747667 2.3810283, 48.8747347 2.3813029, 48.8752868 2.3817360, 48.8836814 2.3499178, 48.8756291 2.3889686, 48.8752198 2.3890142, 48.8757614 2.3884818, 48.8754458 2.3822605, 48.8755279 2.3821599, 48.8749554 2.3828694, 48.8613787 2.3779035, 48.8372979 2.3511170, 48.8516564 2.3473784, 48.8851905 2.3788177, 48.8525504 2.3377722, 48.8590719 2.3810909, 48.8593084 2.3826283, 48.8604285 2.3815784, 48.8335564 2.3869198, 48.8334907 2.3868335, 48.8337569 2.3871813, 48.8329726 2.3861326, 48.8338510 2.3872594, 48.8740925 2.3837424, 48.8740264 2.3839194, 48.8741834 2.3841850, 48.8851105 2.3800766, 48.8858942 2.3827093, 48.8206809 2.3635646, 48.8207494 2.3637471, 48.8203146 2.3640270, 48.8201394 2.3641828, 48.8202229 2.3641774, 48.8785529 2.3744580, 48.8784427 2.3763167, 48.8784647 2.3757776, 48.8694492 2.3546663, 48.8552012 2.3739399, 48.8550829 2.3733686, 48.8546611 2.3726793, 48.8543470 2.3717003, 48.8746078 2.3810324, 48.8739520 2.3822179, 48.8735701 2.3830856, 48.8736839 2.3828415, 48.8735251 2.3828952, 48.8201088 2.3481923, 48.8201319 2.3478823, 48.8202012 2.3481361, 48.8205445 2.3494030, 48.8233285 2.3741842, 48.8777223 2.3322319, 48.8642117 2.3138141, 48.8743835 2.3178889, 48.8723341 2.3116489, 48.8491175 2.3039021, 48.8709008 2.3059242, 48.8747420 2.3873713, 48.8783980 2.3708887, 48.8786489 2.3710845, 48.8787477 2.3711783, 48.8792734 2.3714251, 48.8793968 2.3715404, 48.8794339 2.3715793, 48.8797029 2.3718315, 48.8794939 2.3720809, 48.8796658 2.3717979, 48.8804146 2.3725087, 48.8407193 2.3049672, 48.8418070 2.3034131, 48.8404786 2.3040335, 48.8405254 2.3043125, 48.8406121 2.3051658, 48.8406718 2.3048275, 48.8409660 2.3058020, 48.8445280 2.3226454, 48.8445064 2.3227126, 48.8444718 2.3228200, 48.8442836 2.3233862, 48.8445876 2.3224605, 48.8443285 2.3232584, 48.8445575 2.3225539, 48.8446976 2.3221192, 48.8447265 2.3220295, 48.8446671 2.3222139, 48.8442621 2.3229926, 48.8443405 2.3231060, 48.8445443 2.3220878, 48.8860404 2.3819393, 48.8818625 2.3741104, 48.8819062 2.3741667, 48.8819750 2.3739816, 48.8824966 2.3748996, 48.8831168 2.3764104, 48.8833797 2.3765177, 48.8835128 2.3767725, 48.8832729 2.3770581, 48.8841883 2.3779754, 48.8844335 2.3784113, 48.8843991 2.3787117, 48.8845623 2.3786634, 48.8401634 2.3044521, 48.8412701 2.3081103, 48.8533800 2.3665590, 48.8217463 2.3258742, 48.8219887 2.3306289, 48.8843953 2.3789809, 48.8827047 2.3800827, 48.8827047 2.3803448, 48.8845990 2.3787529, 48.8846696 2.3789004, 48.8849214 2.3800182, 48.8852366 2.3804179, 48.8851670 2.3806432, 48.8852067 2.3807525, 48.8678836 2.3493991, 48.8589178 2.3234187, 48.8589724 2.3234632, 48.8597592 2.3242049, 48.8593703 2.3238812, 48.8588292 2.3233490, 48.8853902 2.3812643, 48.8855353 2.3816653, 48.8855150 2.3816003, 48.8855935 2.3818316, 48.8792836 2.3779317, 48.8794291 2.3770037, 48.8802732 2.3751167, 48.8577770 2.3473733, 48.8634279 2.3351782, 48.8680916 2.3299623, 48.8805386 2.3751052, 48.8803860 2.3748678, 48.8804046 2.3748289, 48.8806436 2.3748947, 48.8806753 2.3748196, 48.8807035 2.3747471, 48.8808173 2.3744896, 48.8808967 2.3743140, 48.8832179 2.3866173, 48.8829957 2.3867138, 48.8830274 2.3870424, 48.8830777 2.3876231, 48.8835398 2.3889119, 48.8832858 2.3874568, 48.8141741 2.3911870, 48.8167779 2.3859022, 48.8177310 2.3846916, 48.8349501 2.4072247, 48.8351659 2.4069054, 48.8708394 2.3465254, 48.8833220 2.3877237, 48.8833431 2.3880013, 48.8832752 2.3888891, 48.8832338 2.3887228, 48.8841585 2.3912481, 48.8723326 2.3483178, 48.8549966 2.4012505, 48.8550533 2.3731077, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8431753 2.3523678, 48.8434679 2.3524207, 48.8437934 2.3525958, 48.8525395 2.3353602, 48.8304113 2.3357952, 48.8307183 2.3365731, 48.8644920 2.3749450, 48.8856585 2.3878153, 48.8860701 2.3911943, 48.8870513 2.3871615, 48.8880598 2.3919611, 48.8333762 2.3513160, 48.8431753 2.3523678, 48.8434679 2.3524207, 48.8437934 2.3525958, 48.8525395 2.3353602, 48.8304113 2.3357952, 48.8307183 2.3365731, 48.8423823 2.3027121, 48.8466518 2.3051464, 48.8466756 2.3050730, 48.8471520 2.3050056, 48.8466342 2.3052128, 48.8337390 2.3618054, 48.8343386 2.3607778, 48.8346342 2.3606245, 48.8470236 2.3465004, 48.8550678 2.3246859, 48.8480510 2.3539690, 48.8481540 2.3541110, 48.8481870 2.3541570, 48.8485630 2.3547360, 48.8486230 2.3548460, 48.8486600 2.3548950, 48.8488030 2.3550960, 48.8691985 2.3546294, 48.8705443 2.3327006, 48.8659300 2.3408572, 48.8662586 2.3612125, 48.8553209 2.3603751, 48.8369707 2.3521360, 48.8500790 2.3487204, 48.8432193 2.3520318, 48.8498446 2.3551829, 48.8434713 2.3236014, 48.8530282 2.3354092, 48.8402189 2.3365313, 48.8505206 2.3272579, 48.8512092 2.3331634, 48.8235768 2.3528601, 48.8220409 2.3498282, 48.8220651 2.3497136, 48.8780330 2.3300310, 48.8790340 2.3294180, 48.8799610 2.3291770, 48.8843190 2.3697260, 48.8849215 2.3709154, 48.8868177 2.3744113, 48.8860743 2.3730081, 48.8849000 2.3707095, 48.8849505 2.3709850, 48.8864162 2.3737748, 48.8871420 2.3755550, 48.8883341 2.3761366, 48.8880413 2.3770390, 48.8886151 2.3731039, 48.8887722 2.3738487, 48.8848937 2.3405138, 48.8844100 2.3396601, 48.8843962 2.3388368, 48.8843181 2.3391723, 48.8842803 2.3395848, 48.8846433 2.3402443, 48.8850060 2.3404263, 48.8585600 2.3535180, 48.8359828 2.3592084, 48.8528644 2.3463229, 48.8548128 2.3502457, 48.8582564 2.3530692, 48.8579136 2.3528123, 48.8463199 2.3445065, 48.8546283 2.3500077, 48.8579605 2.3528852, 48.8584497 2.3533925, 48.8596786 2.3613843, 48.8664229 2.3524616, 48.8634663 2.3525372, 48.8675053 2.3352170, 48.8506291 2.3395396, 48.8718009 2.3486390, 48.8216608 2.4049374, 48.8647781 2.3736732, 48.8527039 2.3856412, 48.8527723 2.3849647, 48.8528254 2.3852671, 48.8528091 2.3861979, 48.8532519 2.3874218, 48.8439032 2.3546898, 48.8839109 2.3897638, 48.8838985 2.3895734, 48.8859211 2.3934465, 48.8847791 2.3925318, 48.8849193 2.3927370, 48.8848752 2.3926673, 48.8851636 2.3926190, 48.8853223 2.3928282, 48.8862192 2.3936382, 48.8861530 2.3940741, 48.8754744 2.3873297, 48.8754373 2.3874893, 48.8453436 2.4286606, 48.8537312 2.3325450, 48.8553259 2.3692636, 48.8477315 2.3020959, 48.8497962 2.3008922, 48.8470633 2.3037370, 48.8450557 2.3057641, 48.8473348 2.3028088, 48.8490335 2.3011623, 48.8651610 2.3726873, 48.8643341 2.3728778, 48.8529637 2.3629258, 48.8826325 2.3446975, 48.8488878 2.4063145, 48.8826421 2.3444926, 48.8630357 2.3730890, 48.8618141 2.3222918, 48.8649047 2.3105605, 48.8649598 2.3105563, 48.8707207 2.3458677, 48.8710108 2.3455226, 48.8748858 2.3191940, 48.8707294 2.3587247, 48.8556477 2.3481362, 48.8647970 2.3376815, 48.8495520 2.3551790, 48.8495960 2.3546780, 48.8492860 2.3544000, 48.8493260 2.3534620, 48.8493470 2.3529650, 48.8493090 2.3539520, 48.8470580 2.3520490, 48.8469280 2.3518880, 48.8468240 2.3516360, 48.8462460 2.3515930, 48.8457050 2.3517750, 48.8756732 2.3873298, 48.8765843 2.3876396, 48.8785498 2.3880714, 48.8209363 2.3710302, 48.8792457 2.3884047, 48.8793070 2.3884134, 48.8761197 2.3896217, 48.8762026 2.3896150, 48.8712417 2.3797804, 48.8708280 2.3787238, 48.8671652 2.3360497, 48.8672298 2.3360756, 48.8379924 2.3573249, 48.8347529 2.3577560, 48.8488854 2.3676323, 48.8506007 2.3684957, 48.8279269 2.3606649, 48.8281328 2.3608761, 48.8284210 2.3605021, 48.8290169 2.3599418, 48.8492131 2.4119154, 48.8254239 2.3694610, 48.8275704 2.3672600, 48.8313949 2.3614586, 48.8336951 2.3651195, 48.8338003 2.3625255, 48.8502691 2.3768309, 48.8514077 2.3619724, 48.8557425 2.3657180, 48.8557863 2.3654533, 48.8582183 2.3633569, 48.8824243 2.3722767, 48.8813148 2.3745552, 48.8810714 2.3750809, 48.8808394 2.3756442, 48.8806172 2.3761511, 48.8765708 2.3923094, 48.8791599 2.3910656, 48.8395113 2.4061466, 48.8405076 2.4080728, 48.8407300 2.4111999, 48.8409893 2.4021854, 48.8419636 2.4099074, 48.8420117 2.4099305, 48.8428499 2.3882529, 48.8435586 2.3837116, 48.8443380 2.3820200, 48.8463579 2.4045679, 48.8465345 2.4039066, 48.8467508 2.4047042, 48.8481084 2.4046457, 48.8519692 2.3809344, 48.8521453 2.3853886, 48.8358697 2.3734634, 48.8362808 2.3737861, 48.8363138 2.3737506, 48.8444058 2.3789793, 48.8402164 2.3217543, 48.8457339 2.3739189, 48.8633113 2.3469438, 48.8646137 2.3518676, 48.8676375 2.3535364, 48.8677030 2.3535925, 48.8786498 2.3705339, 48.8906019 2.3759113, 48.8688331 2.3251265, 48.8828257 2.3727684, 48.8827997 2.3733397, 48.8830186 2.3740035, 48.8826853 2.3804864, 48.8826632 2.3810175, 48.8834012 2.3711932, 48.8838102 2.3718772, 48.8869962 2.3785022, 48.8874247 2.3786846, 48.8875552 2.3794980, 48.8767105 2.3931022, 48.8769296 2.3805462, 48.8306620 2.3340064, 48.8308117 2.3334419, 48.8308495 2.3339432, 48.8623163 2.3093585, 48.8623851 2.3062652, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8840501 2.3678392, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8416423 2.4049657, 48.8461711 2.4107337, 48.8803051 2.3707908, 48.8818881 2.3705534, 48.8768371 2.3719871, 48.8769332 2.3718798, 48.8751251 2.3739572, 48.8490614 2.3923936, 48.8272319 2.3760444, 48.8217982 2.3682935, 48.8734806 2.3430215, 48.8728951 2.3773881, 48.8729547 2.3799476, 48.8747080 2.3869254, 48.8747781 2.3879795, 48.8748589 2.3884616, 48.8749063 2.3886098, 48.8755204 2.3905491, 48.8755208 2.3906946, 48.8755204 2.3907408, 48.8755958 2.3919063, 48.8135093 2.3872697, 48.8561953 2.3152892, 48.8570291 2.3152687, 48.8603670 2.4021230, 48.8619535 2.4014538, 48.8459525 2.3549704, 48.8708629 2.3427230, 48.8708013 2.3426831, 48.8707564 2.3426660, 48.8707938 2.3947912, 48.8514526 2.3266647, 48.8531899 2.3355676, 48.8836015 2.3202065, 48.8833935 2.3195861, 48.8847283 2.3200247, 48.8763972 2.3573847, 48.8764451 2.3569589, 48.8764541 2.3569048, 48.8830980 2.4163097, 48.8796992 2.4113946, 48.8826062 2.4128265, 48.8452318 2.4177396, 48.8349942 2.4068310, 48.8702947 2.3763586, 48.8731134 2.3817865, 48.8494503 2.3422354, 48.8600610 2.3493948, 48.8795130 2.3360991, 48.8828915 2.3811913, 48.8830697 2.3810418, 48.8837170 2.3804450, 48.8840675 2.3805918, 48.8753357 2.3819767, 48.8771545 2.4074241, 48.8755246 2.3943562, 48.8755669 2.3981395, 48.8755669 2.3980550, 48.8755731 2.3984479, 48.8759206 2.4001632, 48.8758598 2.4006983, 48.8770434 2.4049148, 48.8770937 2.4058924, 48.8650219 2.3030534, 48.8309342 2.3742973, 48.8308010 2.4194151, 48.8307541 2.4193421, 48.8731446 2.3278704, 48.8284996 2.3727561, 48.8531826 2.4225041, 48.8471786 2.4177925, 48.8576027 2.4341107, 48.8563982 2.4262880, 48.8537590 2.4240997, 48.8529604 2.4248400, 48.8462070 2.4159910, 48.8438984 2.4173675, 48.8461848 2.4163060, 48.8530540 2.4248279, 48.8544196 2.4196917, 48.8534291 2.4261530, 48.8583141 2.3549137, 48.8583876 2.3549851, 48.8606889 2.3547690, 48.8607641 2.3545314, 48.8607780 2.3544920, 48.8315966 2.3304662, 48.8329031 2.3315324, 48.8316986 2.3304675, 48.8330175 2.3316013, 48.8579708 2.3528081, 48.8874433 2.3939300, 48.8837350 2.3944175, 48.8663182 2.3718556, 48.8612688 2.3578488, 48.8542416 2.4171464, 48.8359778 2.3842126, 48.8336856 2.3889510, 48.8659762 2.3835715, 48.8149766 2.3600865, 48.8149201 2.3600274, 48.8146306 2.3598073, 48.8132689 2.3587579, 48.8125738 2.3582741, 48.8421213 2.3285111, 48.8416530 2.3269573, 48.8416037 2.3266135, 48.8378229 2.3513432, 48.8696780 2.3945412, 48.8708961 2.3969286, 48.8353583 2.4058762, 48.8875318 2.3413883, 48.8388851 2.3226121, 48.8278987 2.3720944, 48.8900474 2.3473370, 48.8844548 2.3219231, 48.8665219 2.3404139, 48.8535415 2.3396356, 48.8355980 2.3258432, 48.8821377 2.3372542, 48.8828185 2.3827206, 48.8837364 2.3368191, 48.8829792 2.3828781, 48.8838218 2.3835473, 48.8837306 2.3838350, 48.8840234 2.3842246, 48.8405548 2.4191248, 48.8483073 2.4179954, 48.8420173 2.4175176, 48.8424925 2.4178019, 48.8469224 2.4171317, 48.8474846 2.4178245, 48.8322089 2.3384309, 48.8507831 2.3944957, 48.8518835 2.3934531, 48.8520017 2.3935558, 48.8523499 2.3931181, 48.8617792 2.3745107, 48.8622369 2.3739210, 48.8623819 2.3639950, 48.8740920 2.3388296, 48.8754273 2.3247309, 48.8400642 2.4091298, 48.8410816 2.4113084, 48.8440626 2.4113218, 48.8409004 2.3218248, 48.8453700 2.3730774, 48.8460163 2.3825296, 48.8296846 2.3323901, 48.8574572 2.3810410, 48.8480906 2.3770269, 48.8556943 2.3595261, 48.8410203 2.3184680, 48.8927627 2.3791089, 48.8717681 2.3573818, 48.8567195 2.3532017, 48.8621989 2.3456002, 48.8315415 2.3198573, 48.8869464 2.3678509, 48.8639974 2.3617555, 48.8622381 2.3454960, 48.8754888 2.3889719, 48.8782924 2.3837340, 48.8716073 2.3573055, 48.8547169 2.3804970, 48.8712652 2.3978533, 48.8713525 2.3981536, 48.8433070 2.3693193, 48.8728138 2.3937426, 48.8730441 2.3935237, 48.8223085 2.3581722, 48.8847149 2.3814227, 48.8848613 2.3813261, 48.8781088 2.3929314, 48.8300151 2.3572215, 48.8303096 2.3567278, 48.8325523 2.3205074, 48.8589855 2.3540028, 48.8606485 2.3503847, 48.8732685 2.3890682, 48.8327672 2.3201392, 48.8868617 2.3693195, 48.8370016 2.4181712, 48.8698031 2.3099017, 48.8311012 2.3195882, 48.8746353 2.3733461, 48.8834996 2.3862037, 48.8745720 2.3872697, 48.8746103 2.3879631, 48.8536817 2.3714996, 48.8545486 2.3843630, 48.8753611 2.3908785, 48.8753638 2.3909416, 48.8752924 2.3915830, 48.8752209 2.3916903, 48.8752527 2.3915803, 48.8753735 2.3917908, 48.8753559 2.3919799, 48.8752112 2.3924936, 48.8752491 2.3932205, 48.8751698 2.3943041, 48.8752800 2.3929026, 48.8752306 2.3934592, 48.8752271 2.3936912, 48.8752218 2.3937958, 48.8751574 2.3942236, 48.8811450 2.3367110, 48.8818980 2.3374100, 48.8845920 2.3364580, 48.8815120 2.3375130, 48.8460779 2.4173230, 48.8328125 2.3452788, 48.8320470 2.3201850, 48.8450494 2.4177212, 48.8502351 2.3456241, 48.8497330 2.3457635, 48.8496872 2.3457994, 48.8458439 2.3017831, 48.8864590 2.3404788, 48.8491590 2.3498700, 48.8480400 2.3511660, 48.8485240 2.3499690, 48.8483460 2.3504620, 48.8485190 2.3493440, 48.8458790 2.3508800, 48.8693798 2.3066568, 48.8453348 2.3532344, 48.8454362 2.3531891, 48.8518374 2.3271357, 48.8515626 2.3275283, 48.8527313 2.3035652, 48.8524437 2.3031358, 48.8527246 2.3060632, 48.8840568 2.3401680, 48.8393985 2.4326981, 48.8394024 2.4327415, 48.8394037 2.4326487, 48.8394167 2.4327771, 48.8394180 2.4326091, 48.8394414 2.4325835, 48.8394688 2.4327403, 48.8394693 2.4325716, 48.8394905 2.4327027, 48.8394986 2.4325746, 48.8395122 2.4326697, 48.8395227 2.4325933, 48.8846800 2.3291860, 48.8822080 2.3199230, 48.8844290 2.3287650, 48.8846930 2.3299610, 48.8842160 2.3273070, 48.8822570 2.3201050, 48.8819840 2.3187180, 48.8819360 2.3185630, 48.8809770 2.3152110, 48.8816120 2.3160090, 48.8425038 2.4010062, 48.8694428 2.4054011, 48.8636468 2.3671522, 48.8622276 2.3455805, 48.8622539 2.3455343, 48.8425884 2.3361604, 48.8318948 2.3202576, 48.8822902 2.3395019, 48.8666273 2.3817444, 48.8487000 2.3486680, 48.8473110 2.3482170, 48.8461550 2.3472670, 48.8229490 2.4137641, 48.8231652 2.4161555, 48.8223815 2.4142476, 48.8691390 2.4092451, 48.8680339 2.4109234, 48.8744321 2.3247119, 48.8704232 2.3339330, 48.8426923 2.3634778, 48.8613499 2.3582846, 48.8169329 2.3955926, 48.8169329 2.3955926, 48.8310513 2.3195553, 48.8325941 2.3183175, 48.8383000 2.3470600, 48.8543921 2.3426853, 48.8178811 2.3973542, 48.8727403 2.3545304, 48.8178634 2.3980958, 48.8178175 2.3984901, 48.8174996 2.3988777, 48.8174493 2.3989273, 48.8173963 2.3989984, 48.8172859 2.3991271, 48.8599130 2.4042262, 48.8802753 2.3518849, 48.8500437 2.3954755, 48.8858115 2.3857107, 48.8830402 2.3758122, 48.8732079 2.3741442, 48.8735416 2.3735789, 48.8736276 2.3734622, 48.8738133 2.3731015, 48.8744920 2.3729505, 48.8740245 2.3723480, 48.8743038 2.3728073, 48.8741051 2.3720932, 48.8739847 2.3718055, 48.8738359 2.3717117, 48.8743904 2.3720383, 48.8735359 2.3710279, 48.8737082 2.3705081, 48.8741858 2.3715930, 48.8743556 2.3717325, 48.8745316 2.3721362, 48.8745664 2.3724688, 48.8746023 2.3722673, 48.8751523 2.3731155, 48.8731543 2.3783690, 48.8731711 2.3799152, 48.8732152 2.3799126, 48.8732972 2.3799038, 48.8738742 2.3798465, 48.8740630 2.3798331, 48.8716669 2.3719109, 48.8716356 2.3717654, 48.8711163 2.3700022, 48.8711993 2.3697018, 48.8708528 2.3694611, 48.8709931 2.3689783, 48.8732657 2.3748785, 48.8736209 2.3748630, 48.8731016 2.3747665, 48.8726344 2.3737982, 48.8724447 2.3734415, 48.8721986 2.3733717, 48.8723062 2.3731759, 48.8722780 2.3731048, 48.8721635 2.3733040, 48.8717850 2.3725624, 48.8722491 2.3724459, 48.8718609 2.3727092, 48.8715427 2.3726645, 48.8721222 2.3726001, 48.8721600 2.3725531, 48.8727087 2.3737226, 48.8878559 2.3534540, 48.8540222 2.3721641, 48.8542603 2.3716689, 48.8541774 2.3718475, 48.8541359 2.3719456, 48.8540652 2.3718440, 48.8542657 2.3672153, 48.8542108 2.3674171, 48.8544297 2.3673782, 48.8555777 2.3673888, 48.8558432 2.3674030, 48.8746926 2.3541936, 48.8730916 2.3616811, 48.8384094 2.3844600, 48.8385526 2.3844982, 48.8386357 2.3839268, 48.8386925 2.3845364, 48.8387614 2.3840032, 48.8387719 2.3823784, 48.8387750 2.3824982, 48.8387982 2.3825006, 48.8388060 2.3824677, 48.8388084 2.3835182, 48.8388281 2.3825531, 48.8388498 2.3824569, 48.8388705 2.3825034, 48.8388749 2.3824170, 48.8388793 2.3824585, 48.8388904 2.3840713, 48.8388957 2.3825034, 48.8388968 2.3824835, 48.8389022 2.3824303, 48.8389046 2.3836278, 48.8389126 2.3825734, 48.8389154 2.3824519, 48.8389197 2.3825283, 48.8389329 2.3825383, 48.8389438 2.3824768, 48.8389462 2.3824119, 48.8389505 2.3831677, 48.8390023 2.3825170, 48.8390293 2.3826860, 48.8390336 2.3837125, 48.8390424 2.3833072, 48.8390642 2.3828554, 48.8390765 2.3825241, 48.8390870 2.3827957, 48.8390914 2.3826247, 48.8391178 2.3826278, 48.8391353 2.3825913, 48.8391451 2.3834334, 48.8391555 2.3826741, 48.8391626 2.3829833, 48.8392160 2.3827260, 48.8392468 2.3827607, 48.8392643 2.3831477, 48.8392652 2.3829868, 48.8392969 2.3830748, 48.8393168 2.3827723, 48.8393802 2.3831079, 48.8394217 2.3829185, 48.8394294 2.3830248, 48.8394666 2.3829052, 48.8394850 2.3825217, 48.8395418 2.3827110, 48.8395637 2.3827293, 48.8395680 2.3827027, 48.8395899 2.3827343, 48.8395976 2.3827011, 48.8396107 2.3827459, 48.8396194 2.3827060, 48.8396500 2.3825466, 48.8385911 2.3839503, 48.8386283 2.3840101, 48.8386567 2.3838706, 48.8387332 2.3840533, 48.8387595 2.3840832, 48.8387813 2.3839570, 48.8388425 2.3841031, 48.8388757 2.3823899, 48.8388863 2.3841496, 48.8389038 2.3840002, 48.8390167 2.3827620, 48.8390189 2.3825361, 48.8390583 2.3825793, 48.8391501 2.3828699, 48.8628419 2.3413590, 48.8627761 2.3414067, 48.8324237 2.3621092, 48.8339266 2.3625710, 48.8391079 2.3390778, 48.8401997 2.3954293, 48.8403010 2.3953091, 48.8407015 2.3947730, 48.8397385 2.3945362, 48.8397436 2.3945134, 48.8400782 2.3955244, 48.8401040 2.3947627, 48.8401175 2.3947478, 48.8419537 2.3930673, 48.8425023 2.3924372, 48.8753498 2.3460798, 48.8752300 2.3455656, 48.8643515 2.3547358, 48.8950228 2.3876904, 48.8964425 2.3818401, 48.8965429 2.3823604, 48.8659100 2.3367259, 48.8786910 2.4108117, 48.8789442 2.4107087, 48.8796760 2.4100182, 48.8666836 2.3693913, 48.8612115 2.3668968, 48.8909699 2.3839029, 48.8596062 2.3680483, 48.8595048 2.3686879, 48.8591538 2.3688576, 48.8589862 2.3689283, 48.8416174 2.3913852, 48.8599956 2.3704874, 48.8642214 2.3713206, 48.8624329 2.3726841, 48.8624956 2.3726066, 48.8618736 2.3728696, 48.8582325 2.3718450, 48.8632440 2.3706332, 48.8630703 2.3685776, 48.8837500 2.4095627, 48.8423566 2.3839810, 48.8422773 2.3762540, 48.8490376 2.4193390, 48.8379149 2.4079230, 48.8453589 2.4044766, 48.8429175 2.3482967, 48.8125972 2.3621933, 48.8125972 2.3621933, 48.8535911 2.3757106, 48.8693197 2.3050539, 48.8324657 2.3375075, 48.8620891 2.3780066, 48.8940948 2.3515003, 48.8915636 2.3488296, 48.8388247 2.3221905, 48.8524094 2.3465837, 48.8520736 2.3464136, 48.8522615 2.3461534, 48.8522996 2.3459479, 48.8580920 2.3523191, 48.8459395 2.3544549, 48.8684376 2.3706209, 48.8478853 2.4061185, 48.8646478 2.3699822, 48.8643358 2.3688108, 48.8214522 2.3333505, 48.8478200 2.4214587, 48.8487550 2.4232670, 48.8478886 2.4214355, 48.8378588 2.4114608, 48.8214088 2.3309102, 48.8612224 2.3648477, 48.8391187 2.4008037, 48.8397181 2.4041355, 48.8423773 2.3977129, 48.8432024 2.3913685, 48.8449650 2.3837024, 48.8751749 2.3642154, 48.8734440 2.3641694, 48.8731953 2.3643525, 48.8726645 2.3647941, 48.8733461 2.3642358, 48.8725150 2.3656983, 48.8714362 2.3657352, 48.8698453 2.3669656, 48.8690849 2.3675483, 48.8467785 2.3592477, 48.8470890 2.3545650, 48.8569847 2.3778145, 48.8567447 2.3780076, 48.8569233 2.3783614, 48.8573775 2.3791140, 48.8357873 2.4065510, 48.8766260 2.3543540, 48.8768960 2.3534930, 48.8410662 2.3658261, 48.8410809 2.3658156, 48.8411047 2.3659329, 48.8411315 2.3657638, 48.8411450 2.3657501, 48.8411688 2.3658790, 48.8411749 2.3658963, 48.8411757 2.3661246, 48.8411784 2.3658643, 48.8411820 2.3659153, 48.8411845 2.3658816, 48.8411885 2.3659325, 48.8411898 2.3658496, 48.8411916 2.3659006, 48.8411956 2.3659515, 48.8411959 2.3658669, 48.8411982 2.3659178, 48.8412030 2.3658859, 48.8412050 2.3659748, 48.8412053 2.3659368, 48.8412095 2.3659032, 48.8412121 2.3659938, 48.8412147 2.3659602, 48.8412166 2.3659222, 48.8412218 2.3659792, 48.8412260 2.3659455, 48.8412311 2.3660249, 48.8412331 2.3659645, 48.8412402 2.3660103, 48.8412439 2.3660479, 48.8412505 2.3660949, 48.8412527 2.3659956, 48.8412553 2.3660284, 48.8412577 2.3661139, 48.8412602 2.3660802, 48.8412604 2.3663509, 48.8412673 2.3660992, 48.8412693 2.3661545, 48.8412716 2.3660655, 48.8412764 2.3661735, 48.8412787 2.3660845, 48.8412790 2.3661398, 48.8412861 2.3661588, 48.8412903 2.3661251, 48.8412921 2.3662106, 48.8412974 2.3661441, 48.8412992 2.3662296, 48.8413018 2.3661959, 48.8413089 2.3662149, 48.8413126 2.3662590, 48.8413131 2.3661813, 48.8413197 2.3662780, 48.8413202 2.3662003, 48.8413222 2.3662490, 48.8413293 2.3662633, 48.8413326 2.3663126, 48.8413336 2.3662296, 48.8413398 2.3663316, 48.8413407 2.3662486, 48.8413423 2.3662979, 48.8413457 2.3665703, 48.8413494 2.3663169, 48.8413537 2.3662833, 48.8413555 2.3663779, 48.8413576 2.3656772, 48.8413602 2.3663932, 48.8413608 2.3663023, 48.8413651 2.3663632, 48.8413661 2.3658576, 48.8413667 2.3664465, 48.8413696 2.3656576, 48.8413722 2.3663822, 48.8413747 2.3658812, 48.8413759 2.3658475, 48.8413765 2.3663485, 48.8413810 2.3658952, 48.8413836 2.3663675, 48.8413860 2.3664123, 48.8413906 2.3658378, 48.8413929 2.3656295, 48.8413941 2.3664571, 48.8413956 2.3658573, 48.8413956 2.3659238, 48.8413993 2.3659178, 48.8414012 2.3664761, 48.8414038 2.3664424, 48.8414058 2.3656149, 48.8414089 2.3664969, 48.8414109 2.3658210, 48.8414109 2.3664614, 48.8414141 2.3658286, 48.8414152 2.3664278, 48.8414165 2.3658384, 48.8414186 2.3664822, 48.8414223 2.3664468, 48.8414299 2.3664675, 48.8414374 2.3665919, 48.8414428 2.3655648, 48.8414439 2.3664856, 48.8414491 2.3662744, 48.8414620 2.3662573, 48.8414697 2.3657097, 48.8414761 2.3657245, 48.8414314 2.3661953, 48.8414395 2.3662283, 48.8414855 2.3657192, 48.8414861 2.3667249, 48.8414949 2.3657124, 48.8414986 2.3667059, 48.8414997 2.3664149, 48.8415028 2.3657910, 48.8415031 2.3655062, 48.8415062 2.3657452, 48.8415078 2.3664063, 48.8415097 2.3657841, 48.8415165 2.3657823, 48.8415185 2.3666929, 48.8415257 2.3658228, 48.8415287 2.3667361, 48.8415355 2.3667724, 48.8415409 2.3654671, 48.8415412 2.3666774, 48.8415458 2.3657261, 48.8415532 2.3657486, 48.8415617 2.3657684, 48.8415622 2.3666592, 48.8415639 2.3668363, 48.8415708 2.3668587, 48.8415747 2.3666402, 48.8415793 2.3665566, 48.8415938 2.3665700, 48.8416106 2.3669157, 48.8416231 2.3667845, 48.8416299 2.3667983, 48.8416310 2.3668985, 48.8416356 2.3668121, 48.8416407 2.3667266, 48.8416532 2.3667076, 48.8416826 2.3667824, 48.8416847 2.3653584, 48.8417019 2.3668435, 48.8417341 2.3668728, 48.8417630 2.3668925, 48.8418015 2.3668881, 48.8418140 2.3668691, 48.8418254 2.3667586, 48.8418390 2.3667344, 48.8418568 2.3652033, 48.8418584 2.3669002, 48.8419107 2.3668190, 48.8419425 2.3667896, 48.8419645 2.3651129, 48.8420296 2.3650543, 48.8420496 2.3666964, 48.8421812 2.3663714, 48.8421854 2.3649108, 48.8422085 2.3664839, 48.8422257 2.3665562, 48.8422449 2.3664546, 48.8422845 2.3664216, 48.8423370 2.3663548, 48.8423739 2.3663264, 48.8423848 2.3647276, 48.8423938 2.3664019, 48.8424158 2.3661193, 48.8424377 2.3661860, 48.8424585 2.3662362, 48.8425584 2.3645761, 48.8405547 2.4059911, 48.8466055 2.3582174, 48.8466176 2.3581990, 48.8473520 2.3544890, 48.8920550 2.3461008, 48.8651944 2.3554408, 48.8665545 2.3603936, 48.8650138 2.3556963, 48.8190636 2.3378045, 48.8190433 2.3382617, 48.8190668 2.3382704, 48.8192971 2.4116232, 48.8516727 2.3995074, 48.8504308 2.3983982, 48.8301596 2.3342151, 48.8908871 2.3836986, 48.8919157 2.3820974, 48.8919633 2.3816291, 48.8921109 2.3816813, 48.8927269 2.3807490, 48.8927765 2.3805852, 48.8930260 2.3802433, 48.8911877 2.3833706, 48.8926611 2.3805354, 48.8327062 2.3968887, 48.8452732 2.3881818, 48.8707266 2.3515964, 48.8899568 2.3800977, 48.8904606 2.3790788, 48.8910196 2.3779829, 48.8909664 2.3776551, 48.8907115 2.3784896, 48.8902508 2.3794782, 48.8907119 2.3781803, 48.8904805 2.3790357, 48.8903403 2.3788314, 48.8906831 2.3786293, 48.8879464 2.3835928, 48.8895142 2.3498344, 48.8954829 2.3466824, 48.8559378 2.3789593, 48.8554706 2.3787234, 48.8317848 2.3580564, 48.8331084 2.3230703, 48.8414246 2.3661153, 48.8414151 2.3661625, 48.8414164 2.3661534, 48.8414213 2.3661660, 48.8414215 2.3661570, 48.8414974 2.3661442, 48.8415007 2.3661553, 48.8416171 2.3664287, 48.8416189 2.3664324, 48.8416324 2.3664861, 48.8629210 2.3641445, 48.8629885 2.3640093, 48.8516526 2.4192138, 48.8736147 2.3633962, 48.8753891 2.4055942, 48.8747235 2.4028142, 48.8426135 2.3896406, 48.8713746 2.3353089, 48.8301369 2.3291359, 48.8630406 2.3673064, 48.8708335 2.3864170, 48.8709285 2.3597311, 48.8712872 2.3602777, 48.8707054 2.3597617, 48.8709792 2.3597736, 48.8711489 2.3601690, 48.8825369 2.3507603, 48.8649741 2.3359158, 48.8572892 2.3686817, 48.8584243 2.3685727, 48.8592341 2.3681415, 48.8593853 2.3683292, 48.8401358 2.3202815, 48.8401808 2.3201765, 48.8402710 2.3200441, 48.8403040 2.3202632, 48.8403641 2.3198296, 48.8404212 2.3204915, 48.8404392 2.3197109, 48.8404542 2.3199482, 48.8404663 2.3202587, 48.8404813 2.3201263, 48.8405023 2.3202039, 48.8405113 2.3200669, 48.8405264 2.3202222, 48.8405354 2.3201537, 48.8405369 2.3200935, 48.8405384 2.3198204, 48.8405384 2.3202587, 48.8405564 2.3194278, 48.8405564 2.3196880, 48.8405624 2.3201719, 48.8405834 2.3201035, 48.8406045 2.3199985, 48.8406285 2.3203271, 48.8406405 2.3192954, 48.8406589 2.3204914, 48.8407277 2.3199802, 48.8407337 2.3194324, 48.8407787 2.3197474, 48.8407968 2.3204961, 48.8408118 2.3206558, 48.8408569 2.3206923, 48.8409109 2.3197565, 48.8409139 2.3197656, 48.8409320 2.3208110, 48.8409710 2.3196470, 48.8409924 2.3208432, 48.8411543 2.3192589, 48.8411543 2.3198433, 48.8411633 2.3207152, 48.8411753 2.3197291, 48.8412534 2.3198615, 48.8412985 2.3193274, 48.8414577 2.3201674, 48.8841973 2.3741821, 48.8553549 2.3555867, 48.8553224 2.3556518, 48.8360484 2.3486827, 48.8673865 2.3967482, 48.8584433 2.3828023, 48.8580910 2.3814281, 48.8581429 2.3816353, 48.8581768 2.3827711, 48.8586116 2.3834178, 48.8647967 2.3982709, 48.8650431 2.3984901, 48.8594153 2.4063574, 48.8594868 2.4062620, 48.8623435 2.4069746, 48.8629913 2.4001471, 48.8600323 2.4031223, 48.8541661 2.3685390, 48.8557389 2.3682126, 48.8603524 2.3676426, 48.8565384 2.3685512, 48.8584554 2.3675609, 48.8605999 2.4027524, 48.8389090 2.3816630, 48.8357533 2.3521704, 48.8597890 2.4027381, 48.8599301 2.4026085, 48.8599721 2.4037665, 48.8600188 2.4036630, 48.8605866 2.4029849, 48.8590499 2.4002749, 48.8590621 2.4002993, 48.8590948 2.4003587, 48.8591343 2.4001717, 48.8591407 2.4003439, 48.8592420 2.3998807, 48.8592662 2.3999638, 48.8592935 2.4001799, 48.8593042 2.4000745, 48.8593155 2.4001539, 48.8593277 2.4001116, 48.8585563 2.3988775, 48.8586143 2.3988460, 48.8586599 2.3989279, 48.8586903 2.3986088, 48.8587193 2.3989006, 48.8587676 2.3989699, 48.8587800 2.3987327, 48.8588229 2.3989447, 48.8588560 2.3988334, 48.8590355 2.3993435, 48.8590922 2.3994359, 48.8593962 2.4050659, 48.8759892 2.3685271, 48.8283283 2.3558986, 48.8310135 2.3574868, 48.8393688 2.3190560, 48.8395005 2.3187849, 48.8395196 2.3192206, 48.8396280 2.3189592, 48.8396769 2.3194014, 48.8397788 2.3191399, 48.8398234 2.3195725, 48.8399424 2.3193272, 48.8399424 2.3196887, 48.8399892 2.3187397, 48.8400231 2.3183103, 48.8400423 2.3186138, 48.8401124 2.3195337, 48.8401421 2.3189237, 48.8401442 2.3199017, 48.8401697 2.3184976, 48.8402016 2.3187849, 48.8402271 2.3190463, 48.8402656 2.3202127, 48.8402802 2.3197177, 48.8402806 2.3201854, 48.8402836 2.3201488, 48.8402866 2.3186202, 48.8402993 2.3188881, 48.8403032 2.3201077, 48.8403047 2.3201739, 48.8403137 2.3203018, 48.8403152 2.3201465, 48.8403242 2.3201169, 48.8403242 2.3201831, 48.8403392 2.3202059, 48.8403482 2.3201602, 48.8403652 2.3192077, 48.8404566 2.3190592, 48.8404566 2.3193175, 48.8404863 2.3188720, 48.8405100 2.3202842, 48.8406010 2.3189947, 48.8407267 2.3198743, 48.8407586 2.3208814, 48.8407635 2.3203173, 48.8408117 2.3197419, 48.8408287 2.3196806, 48.8408951 2.3199137, 48.8409071 2.3198818, 48.8409236 2.3198567, 48.8409431 2.3198270, 48.8409551 2.3198065, 48.8409604 2.3194385, 48.8409702 2.3197699, 48.8409807 2.3197540, 48.8409867 2.3197471, 48.8409957 2.3197403, 48.8409994 2.3198996, 48.8410077 2.3197197, 48.8410093 2.3193610, 48.8410197 2.3196923, 48.8410591 2.3192909, 48.8410594 2.3202880, 48.8410624 2.3191901, 48.8410648 2.3196010, 48.8410715 2.3207670, 48.8410798 2.3195714, 48.8410806 2.3191550, 48.8411024 2.3195394, 48.8411129 2.3195120, 48.8411194 2.3196532, 48.8411219 2.3194823, 48.8411384 2.3194572, 48.8411549 2.3194161, 48.8411715 2.3193842, 48.8411895 2.3193431, 48.8412135 2.3192952, 48.8412331 2.3192609, 48.8412526 2.3192198, 48.8413238 2.3205114, 48.8414035 2.3200822, 48.8583217 2.4080504, 48.8586330 2.3985247, 48.8586455 2.3985392, 48.8592251 2.3995582, 48.8592403 2.3995818, 48.8592474 2.3994995, 48.8592545 2.3995627, 48.8328552 2.3251354, 48.8651549 2.3952523, 48.8648765 2.3959329, 48.8592565 2.3822340, 48.8589660 2.3811882, 48.8578346 2.3793123, 48.8577162 2.3793963, 48.8630991 2.3664400, 48.8632016 2.3663520, 48.8772319 2.3600699, 48.8772370 2.3600479, 48.8772777 2.3599067, 48.8772828 2.3598847, 48.8773263 2.3597351, 48.8773314 2.3597131, 48.8773505 2.3601304, 48.8773671 2.3595683, 48.8773722 2.3595463, 48.8773963 2.3599672, 48.8774135 2.3594003, 48.8774186 2.3593783, 48.8774448 2.3597956, 48.8774856 2.3596288, 48.8775205 2.3602399, 48.8775321 2.3594608, 48.8775663 2.3600766, 48.8776149 2.3599051, 48.8776557 2.3597383, 48.8777021 2.3595702, 48.8777110 2.3603443, 48.8777568 2.3601810, 48.8778054 2.3600095, 48.8778462 2.3598427, 48.8778841 2.3604516, 48.8778926 2.3596746, 48.8779299 2.3602884, 48.8779785 2.3601168, 48.8780193 2.3599500, 48.8780657 2.3597820, 48.8781114 2.3605795, 48.8781572 2.3604163, 48.8782057 2.3602447, 48.8782465 2.3600780, 48.8782930 2.3599099, 48.8783222 2.3607134, 48.8783680 2.3605501, 48.8784165 2.3603786, 48.8784573 2.3602118, 48.8785038 2.3600437, 48.8785243 2.3608251, 48.8785701 2.3606619, 48.8786186 2.3604903, 48.8786595 2.3603235, 48.8786829 2.3609177, 48.8787059 2.3601555, 48.8787287 2.3607545, 48.8787772 2.3605829, 48.8787902 2.3609824, 48.8788180 2.3604162, 48.8788360 2.3608192, 48.8788645 2.3602481, 48.8788846 2.3606476, 48.8789254 2.3604808, 48.8789718 2.3603128, 48.8598452 2.4030310, 48.8762683 2.3597912, 48.8762732 2.3597662, 48.8762770 2.3597919, 48.8762779 2.3583622, 48.8762799 2.3597728, 48.8762818 2.3583519, 48.8762901 2.3600231, 48.8762969 2.3600298, 48.8763036 2.3582687, 48.8763074 2.3582584, 48.8763268 2.3598842, 48.8763331 2.3595464, 48.8763336 2.3598908, 48.8763360 2.3595309, 48.8763573 2.3597673, 48.8763587 2.3597882, 48.8763641 2.3597739, 48.8764472 2.3591361, 48.8764506 2.3591023, 48.8764511 2.3591258, 48.8764569 2.3591067, 48.8765173 2.3591663, 48.8765207 2.3591508, 48.8766929 2.3585009, 48.8767102 2.3584288, 48.8767119 2.3584226, 48.8768174 2.3601150, 48.8768316 2.3600915, 48.8768625 2.3603961, 48.8768683 2.3599353, 48.8768703 2.3599290, 48.8768756 2.3599055, 48.8768780 2.3598978, 48.8768873 2.3607028, 48.8768916 2.3606925, 48.8768938 2.3598430, 48.8768949 2.3599482, 48.8768954 2.3599404, 48.8768960 2.3598353, 48.8768990 2.3599290, 48.8769014 2.3599217, 48.8769043 2.3599118, 48.8769798 2.3599589, 48.8769882 2.3606416, 48.8769995 2.3606479, 48.8770163 2.3593793, 48.8770197 2.3593679, 48.8770350 2.3593225, 48.8770411 2.3593058, 48.8770534 2.3592570, 48.8770685 2.3591935, 48.8770732 2.3591686, 48.8770794 2.3591405, 48.8770828 2.3591208, 48.8770917 2.3590838, 48.8770951 2.3590729, 48.8770980 2.3590833, 48.8770984 2.3590628, 48.8771008 2.3590716, 48.8771047 2.3590490, 48.8771102 2.3590293, 48.8771221 2.3589843, 48.8771249 2.3589741, 48.8771276 2.3589664, 48.8771295 2.3589580, 48.8771324 2.3589492, 48.8771356 2.3589393, 48.8772445 2.3589404, 48.8772462 2.3584873, 48.8772464 2.3589318, 48.8772530 2.3584704, 48.8772549 2.3584910, 48.8772593 2.3584785, 48.8772854 2.3583542, 48.8772873 2.3583682, 48.8772941 2.3583616, 48.8773393 2.3585684, 48.8774620 2.3583045, 48.8772580 2.3953907, 48.8410848 2.3664258, 48.8410911 2.3664428, 48.8410977 2.3664173, 48.8411029 2.3664128, 48.8411167 2.3664179, 48.8411209 2.3663962, 48.8411261 2.3663916, 48.8411499 2.3663736, 48.8411606 2.3663562, 48.8411660 2.3663728, 48.8411736 2.3663492, 48.8412044 2.3663248, 48.8412096 2.3663202, 48.8412145 2.3663161, 48.8412254 2.3662954, 48.8412320 2.3663140, 48.8406763 2.3667807, 48.8406929 2.3669802, 48.8407070 2.3667478, 48.8407257 2.3667467, 48.8407291 2.3667426, 48.8407504 2.3669292, 48.8407642 2.3668988, 48.8407671 2.3667008, 48.8407708 2.3669135, 48.8407934 2.3666650, 48.8408122 2.3668723, 48.8408286 2.3666533, 48.8408368 2.3666401, 48.8408403 2.3666506, 48.8408504 2.3666342, 48.8408556 2.3666297, 48.8408607 2.3668074, 48.8408714 2.3668154, 48.8408754 2.3667963, 48.8408812 2.3668156, 48.8408909 2.3667968, 48.8408934 2.3665981, 48.8408986 2.3665936, 48.8409007 2.3667847, 48.8409079 2.3665841, 48.8409131 2.3665796, 48.8409260 2.3667491, 48.8409312 2.3667655, 48.8409362 2.3667411, 48.8409370 2.3665586, 48.8409410 2.3667545, 48.8409422 2.3665541, 48.8409514 2.3665463, 48.8409566 2.3665418, 48.8409712 2.3665309, 48.8409736 2.3667090, 48.8409784 2.3667209, 48.8409794 2.3665241, 48.8409832 2.3666963, 48.8409846 2.3665196, 48.8409884 2.3667107, 48.8410009 2.3666994, 48.8410034 2.3665012, 48.8410086 2.3664967, 48.8410144 2.3666855, 48.8410178 2.3664828, 48.8410235 2.3666769, 48.8410241 2.3664998, 48.8410247 2.3664825, 48.8410299 2.3664780, 48.8410331 2.3666516, 48.8410379 2.3664723, 48.8410407 2.3666436, 48.8410472 2.3664574, 48.8410517 2.3666344, 48.8410535 2.3664744, 48.8410541 2.3664570, 48.8410545 2.3666502, 48.8410593 2.3664525, 48.8410625 2.3666399, 48.8410673 2.3664468, 48.8410704 2.3666354, 48.8410788 2.3666274, 48.8410819 2.3666025, 48.8410871 2.3666224, 48.8410919 2.3666167, 48.8410979 2.3666099, 48.8411047 2.3666019, 48.8411173 2.3665700, 48.8411213 2.3665876, 48.8411331 2.3665759, 48.8411390 2.3665690, 48.8411509 2.3665621, 48.8411595 2.3665527, 48.8411655 2.3665455, 48.8411899 2.3665199, 48.8411940 2.3665004, 48.8412006 2.3665161, 48.8412099 2.3665037, 48.8412390 2.3662057, 48.8412394 2.3664796, 48.8412457 2.3664714, 48.8412552 2.3664638, 48.8412627 2.3664338, 48.8412707 2.3662865, 48.8412724 2.3664600, 48.8413557 2.3661821, 48.8413630 2.3662008, 48.8414519 2.3660567, 48.8763521 2.3598757, 48.8763675 2.3598186, 48.8764071 2.3600847, 48.8764890 2.3597768, 48.8766158 2.3601411, 48.8766245 2.3601074, 48.8766438 2.3601646, 48.8766554 2.3601235, 48.8766660 2.3600062, 48.8766689 2.3599402, 48.8766775 2.3599197, 48.8766891 2.3599534, 48.8766959 2.3599300, 48.8767282 2.3584412, 48.8767436 2.3583840, 48.8767783 2.3602122, 48.8767879 2.3586332, 48.8768352 2.3599938, 48.8768419 2.3599659, 48.8769509 2.3583518, 48.8769692 2.3583620, 48.8769846 2.3586875, 48.8769933 2.3586538, 48.8770126 2.3587109, 48.8770242 2.3586699, 48.8770348 2.3585526, 48.8770377 2.3584866, 48.8770464 2.3584661, 48.8770579 2.3584998, 48.8770647 2.3584764, 48.8771312 2.3588444, 48.8771379 2.3588209, 48.8772035 2.3584896, 48.8772180 2.3585028, 48.8419459 2.3757529, 48.8411643 2.3739380, 48.8413733 2.3746037, 48.8419912 2.3758460, 48.8503560 2.3786493, 48.8744982 2.3927178, 48.8765820 2.3595712, 48.8766266 2.3596110, 48.8766958 2.3594194, 48.8766976 2.3594210, 48.8766995 2.3594230, 48.8767083 2.3592263, 48.8767554 2.3593440, 48.8767588 2.3593315, 48.8767746 2.3592712, 48.8767800 2.3592598, 48.8768033 2.3596330, 48.8768094 2.3596123, 48.8769671 2.3590165, 48.8769677 2.3590087, 48.8769804 2.3588987, 48.8769870 2.3589002, 48.8771346 2.3601320, 48.8771404 2.3601367, 48.8771490 2.3601408, 48.8771616 2.3600228, 48.8771643 2.3600145, 48.8771801 2.3601564, 48.8771934 2.3601658, 48.8772601 2.3599126, 48.8772615 2.3599027, 48.8773286 2.3593696, 48.8773303 2.3593641, 48.8773498 2.3595736, 48.8773673 2.3592246, 48.8773765 2.3592302, 48.8773859 2.3592394, 48.8773927 2.3592431, 48.8774009 2.3592483, 48.8774121 2.3592552, 48.8774189 2.3592578, 48.8296240 2.3801601, 48.8780937 2.3647247, 48.8484242 2.3412319, 48.8559893 2.3328832, 48.8535947 2.3367962, 48.8529909 2.3348298, 48.8548020 2.3362572, 48.8544717 2.3370259, 48.8555653 2.3366336, 48.8581073 2.3283770, 48.8196857 2.3385703, 48.8205940 2.3352040, 48.8332462 2.4027150, 48.8495094 2.4344651, 48.8572542 2.4071947, 48.8571978 2.4071499, 48.8599190 2.4059896, 48.8600274 2.4065899, 48.8470173 2.4162807, 48.8469053 2.4174060, 48.8461651 2.4165192, 48.8461288 2.4169126, 48.8468981 2.4157604, 48.8680595 2.4086915, 48.8681030 2.4033390, 48.8690822 2.4084492, 48.8461904 2.4189051, 48.8465563 2.4186669, 48.8462055 2.4185077, 48.8465106 2.4191624, 48.8732212 2.3630839, 48.8609493 2.3803390, 48.8609818 2.3809160, 48.8611381 2.3809336, 48.8609042 2.3814382, 48.8463130 2.4213215, 48.8463873 2.4205294, 48.8460139 2.4207917, 48.8459377 2.4216165, 48.8615076 2.3805893, 48.8592360 2.3828098, 48.8666042 2.3853196, 48.8338804 2.3681948, 48.8704953 2.3458276, 48.8581195 2.3231884, 48.8614564 2.3780635, 48.8614752 2.3781069, 48.8610647 2.3776241, 48.8615428 2.3776813, 48.8610882 2.3812893, 48.8608398 2.3800020, 48.8611517 2.3814385, 48.8611979 2.3816119, 48.8616071 2.3823364, 48.8617059 2.3826218, 48.8945524 2.3527710, 48.8487082 2.3770069, 48.8556111 2.3402066, 48.8556266 2.3621786, 48.8556266 2.3621786, 48.8556266 2.3621786, 48.8623796 2.3727706, 48.8616421 2.3740024, 48.8612824 2.3749463, 48.8622102 2.3775622, 48.8621341 2.3774006, 48.8622823 2.3777025, 48.8626909 2.3786304, 48.8626244 2.3797994, 48.8624272 2.3797335, 48.8622688 2.3799159, 48.8623261 2.3800798, 48.8642436 2.3666668, 48.8641787 2.3666925, 48.8770140 2.3668362, 48.8477523 2.3131717, 48.8476019 2.3124307, 48.8633812 2.3618041, 48.8627388 2.3630556, 48.8640746 2.3609523, 48.8677655 2.3258785, 48.8459026 2.4220203, 48.8459202 2.4218168, 48.8462824 2.4216452, 48.8422716 2.3666416, 48.8423629 2.3665648, 48.8425115 2.3664241, 48.8425602 2.3663854, 48.8432847 2.3745921, 48.8705363 2.3358361, 48.8785492 2.3996608, 48.8726106 2.3907847, 48.8784996 2.3974229, 48.8442862 2.3237918, 48.8443083 2.3239728, 48.8460103 2.4247575, 48.8703347 2.3420559, 48.8533300 2.4347973, 48.8527506 2.4278305, 48.8752465 2.3932297, 48.8728789 2.3289009, 48.8725215 2.3295244, 48.8486800 2.3708566, 48.8488626 2.3712412, 48.8571998 2.3686785, 48.8594276 2.3683212, 48.8721402 2.3254288, 48.8721670 2.3253311, 48.8721199 2.3255281, 48.8519888 2.3423483, 48.8467371 2.3102329, 48.8547937 2.3759343, 48.8588805 2.3286990, 48.8661383 2.3340481, 48.8784033 2.3659429, 48.8803903 2.3673551, 48.8804349 2.3673901, 48.8537976 2.3699213, 48.8537389 2.3700602, 48.8440977 2.3759094, 48.8441062 2.3758566, 48.8441363 2.3758925, 48.8441922 2.3758550, 48.8441992 2.3759621, 48.8442056 2.3756394, 48.8442125 2.3758113, 48.8442140 2.3756239, 48.8442153 2.3758897, 48.8442208 2.3759899, 48.8442232 2.3756091, 48.8442248 2.3730778, 48.8442316 2.3755965, 48.8442361 2.3758386, 48.8442365 2.3759131, 48.8442394 2.3755789, 48.8442468 2.3755662, 48.8442540 2.3758603, 48.8442547 2.3755508, 48.8442626 2.3755346, 48.8442680 2.3758763, 48.8442728 2.3755177, 48.8442739 2.3759588, 48.8442867 2.3758956, 48.8442935 2.3759819, 48.8443006 2.3760795, 48.8443037 2.3759161, 48.8443186 2.3759374, 48.8443236 2.3761143, 48.8443319 2.3732463, 48.8443705 2.3731757, 48.8443882 2.3760846, 48.8443923 2.3761770, 48.8443949 2.3762904, 48.8444039 2.3760459, 48.8444041 2.3762058, 48.8444074 2.3763093, 48.8444268 2.3732956, 48.8444324 2.3732787, 48.8444613 2.3753875, 48.8444617 2.3762794, 48.8444709 2.3762944, 48.8444711 2.3753955, 48.8444794 2.3763093, 48.8445027 2.3764902, 48.8445106 2.3764932, 48.8445355 2.3733140, 48.8445390 2.3755579, 48.8445449 2.3755410, 48.8445473 2.3732911, 48.8445484 2.3734372, 48.8445630 2.3732613, 48.8445844 2.3734730, 48.8445871 2.3752308, 48.8445874 2.3758312, 48.8445875 2.3734070, 48.8445939 2.3758193, 48.8445957 2.3733919, 48.8445966 2.3758462, 48.8446003 2.3733848, 48.8446031 2.3758382, 48.8446041 2.3735018, 48.8446045 2.3733757, 48.8446077 2.3733687, 48.8446097 2.3734372, 48.8446124 2.3733609, 48.8446153 2.3734290, 48.8446161 2.3733546, 48.8446202 2.3734202, 48.8446250 2.3734123, 48.8446290 2.3734051, 48.8446320 2.3758533, 48.8446343 2.3733958, 48.8446395 2.3733857, 48.8446443 2.3733776, 48.8446446 2.3734221, 48.8446464 2.3758732, 48.8446495 2.3733692, 48.8446528 2.3733639, 48.8446570 2.3733567, 48.8446698 2.3733567, 48.8446735 2.3735774, 48.8446908 2.3750367, 48.8446928 2.3735605, 48.8446974 2.3735535, 48.8446977 2.3754456, 48.8446995 2.3752951, 48.8447016 2.3735443, 48.8447048 2.3735373, 48.8447094 2.3735295, 48.8447097 2.3754203, 48.8447132 2.3735232, 48.8447146 2.3752671, 48.8447169 2.3735162, 48.8447224 2.3735056, 48.8447226 2.3753879, 48.8447276 2.3729690, 48.8447281 2.3734940, 48.8447300 2.3762293, 48.8447323 2.3729589, 48.8447329 2.3734824, 48.8447377 2.3734761, 48.8447419 2.3734669, 48.8447429 2.3763672, 48.8447500 2.3763513, 48.8447593 2.3751716, 48.8447608 2.3763937, 48.8447640 2.3761360, 48.8447641 2.3763272, 48.8447657 2.3763769, 48.8447706 2.3761181, 48.8447725 2.3751482, 48.8447758 2.3736362, 48.8447772 2.3763430, 48.8447776 2.3737127, 48.8447777 2.3762992, 48.8447779 2.3730001, 48.8447797 2.3748706, 48.8447814 2.3730040, 48.8447876 2.3736153, 48.8447885 2.3763154, 48.8447888 2.3762807, 48.8448026 2.3762968, 48.8448040 2.3735875, 48.8448195 2.3750508, 48.8448308 2.3750285, 48.8448449 2.3737668, 48.8448495 2.3737597, 48.8448537 2.3737506, 48.8448569 2.3737436, 48.8448616 2.3737358, 48.8448653 2.3737295, 48.8448690 2.3737225, 48.8448723 2.3747046, 48.8448745 2.3737119, 48.8448802 2.3737002, 48.8448851 2.3736886, 48.8448862 2.3731359, 48.8448898 2.3736824, 48.8448931 2.3731443, 48.8448940 2.3736732, 48.8449039 2.3738749, 48.8449143 2.3758655, 48.8449157 2.3738898, 48.8449182 2.3738552, 48.8449238 2.3738469, 48.8449287 2.3738381, 48.8449334 2.3738302, 48.8449375 2.3738230, 48.8449428 2.3738137, 48.8449480 2.3738036, 48.8449528 2.3737955, 48.8449580 2.3737871, 48.8449613 2.3737818, 48.8449654 2.3737746, 48.8449871 2.3738480, 48.8449871 2.3744992, 48.8449956 2.3738341, 48.8451019 2.3742882, 48.8451555 2.3737343, 48.8451637 2.3734748, 48.8451673 2.3737104, 48.8451699 2.3734838, 48.8452179 2.3743667, 48.8452277 2.3742782, 48.8452328 2.3742684, 48.8452354 2.3735579, 48.8452379 2.3742599, 48.8452430 2.3742515, 48.8452463 2.3735712, 48.8452476 2.3742437, 48.8452748 2.3742513, 48.8452890 2.3738524, 48.8452957 2.3739518, 48.8452994 2.3739307, 48.8453008 2.3739434, 48.8453047 2.3737283, 48.8453050 2.3737203, 48.8471804 2.3954861, 48.8457530 2.3959415, 48.8802143 2.4096789, 48.8769502 2.4071482, 48.8904696 2.3392991, 48.8859778 2.3475855, 48.8744634 2.3207611, 48.8667059 2.3800163, 48.8758392 2.3442908, 48.8446532 2.3732990, 48.8446870 2.3732181, 48.8446958 2.3731949, 48.8450228 2.3738335, 48.8450514 2.3735846, 48.8450615 2.3735965, 48.8450796 2.3736183, 48.8450935 2.3736359, 48.8451120 2.3737576, 48.8451652 2.3736831, 48.8442317 2.3732994, 48.8442921 2.3731905, 48.8443049 2.3732137, 48.8443364 2.3731031, 48.8443318 2.3731258, 48.8443434 2.3731167, 48.8444014 2.3730030, 48.8432129 2.3749481, 48.8432845 2.3748106, 48.8432937 2.3748216, 48.8432834 2.3750270, 48.8433226 2.3747406, 48.8433281 2.3747516, 48.8433339 2.3747377, 48.8433453 2.3748784, 48.8433540 2.3748950, 48.8433859 2.3746405, 48.8433719 2.3748376, 48.8433749 2.3748513, 48.8433774 2.3748092, 48.8439225 2.3736874, 48.8439337 2.3736400, 48.8439368 2.3736461, 48.8434325 2.3747314, 48.8439392 2.3736287, 48.8439437 2.3736575, 48.8439599 2.3735964, 48.8439632 2.3736010, 48.8439656 2.3736047, 48.8439685 2.3736076, 48.8439708 2.3736108, 48.8439755 2.3737641, 48.8439919 2.3737234, 48.8439922 2.3737053, 48.8439953 2.3735464, 48.8439972 2.3737304, 48.8440063 2.3737461, 48.8440188 2.3736799, 48.8440216 2.3736829, 48.8440238 2.3736874, 48.8440265 2.3736909, 48.8440301 2.3736943, 48.8440483 2.3736230, 48.8440499 2.3734350, 48.8440605 2.3734498, 48.8440613 2.3734176, 48.8440637 2.3736453, 48.8440710 2.3734317, 48.8441106 2.3733071, 48.8441211 2.3733248, 48.8441057 2.3735185, 48.8441165 2.3734962, 48.8441182 2.3735349, 48.8441261 2.3735194, 48.8441660 2.3732459, 48.8441687 2.3733907, 48.8441755 2.3732448, 48.8441821 2.3734107, 48.8441806 2.3732346, 48.8442206 2.3733245, 48.8442260 2.3733132, 48.8442295 2.3731234, 48.8442435 2.3731216, 48.8442847 2.3730293, 48.8442771 2.3730446, 48.8442914 2.3730403, 48.8443475 2.3729232, 48.8434493 2.3749737, 48.8434690 2.3749387, 48.8434732 2.3752067, 48.8434849 2.3752212, 48.8435492 2.3752478, 48.8435808 2.3752978, 48.8435862 2.3753044, 48.8436367 2.3753499, 48.8436619 2.3754394, 48.8436689 2.3754300, 48.8436769 2.3754078, 48.8436770 2.3752434, 48.8436825 2.3753097, 48.8436873 2.3752223, 48.8436875 2.3753884, 48.8436902 2.3752987, 48.8436949 2.3752842, 48.8437027 2.3752732, 48.8437070 2.3752620, 48.8437147 2.3752510, 48.8437270 2.3751959, 48.8437287 2.3753396, 48.8437324 2.3752026, 48.8437366 2.3752097, 48.8437383 2.3752957, 48.8437395 2.3753521, 48.8437460 2.3752840, 48.8437510 2.3754037, 48.8437525 2.3752740, 48.8437587 2.3753927, 48.8437595 2.3752646, 48.8437634 2.3753781, 48.8437711 2.3753671, 48.8437754 2.3753559, 48.8437832 2.3753449, 48.8438231 2.3756979, 48.8438339 2.3757105, 48.8438687 2.3753543, 48.8438806 2.3756920, 48.8438879 2.3757020, 48.8438882 2.3756775, 48.8438906 2.3758749, 48.8438956 2.3756876, 48.8438983 2.3758632, 48.8439048 2.3758532, 48.8439118 2.3758438, 48.8439521 2.3757937, 48.8439594 2.3758037, 48.8440234 2.3758015, 48.8440308 2.3758115, 48.8440887 2.3756252, 48.8441427 2.3759565, 48.8441504 2.3759455, 48.8441940 2.3762374, 48.8442048 2.3762500, 48.8442519 2.3760922, 48.8442658 2.3759990, 48.8442736 2.3759880, 48.8443391 2.3764142, 48.8443468 2.3764026, 48.8443534 2.3763926, 48.8443603 2.3759776, 48.8443603 2.3763831, 48.8443727 2.3760561, 48.8443758 2.3762845, 48.8443764 2.3759768, 48.8443805 2.3760451, 48.8443820 2.3762673, 48.8443826 2.3759596, 48.8443891 2.3764701, 48.8444007 2.3764479, 48.8444017 2.3760875, 48.8444079 2.3760781, 48.8444167 2.3761589, 48.8444203 2.3761715, 48.8444254 2.3761762, 48.8444365 2.3760695, 48.8444402 2.3760820, 48.8444425 2.3761495, 48.8444453 2.3760867, 48.8445147 2.3758928, 48.8445213 2.3759095, 48.8445417 2.3761693, 48.8445461 2.3761582, 48.8445775 2.3760291, 48.8445849 2.3760132, 48.8446199 2.3760394, 48.8446302 2.3760560, 48.8440591 2.3758524, 48.8642749 2.3685528, 48.8642540 2.3684778, 48.8647760 2.3680660, 48.8654588 2.3684836, 48.8653031 2.3683931, 48.8654554 2.3689886, 48.8584849 2.4066443, 48.8567808 2.3972893, 48.8847780 2.3839350, 48.8532110 2.3437278, 48.8554043 2.3476213, 48.8576303 2.3483829, 48.8431887 2.3749839, 48.8432104 2.3750497, 48.8432618 2.3750609, 48.8432622 2.3749603, 48.8432772 2.3749271, 48.8433265 2.3748132, 48.8433496 2.3748490, 48.8433860 2.3747058, 48.8434087 2.3747481, 48.8434733 2.3744721, 48.8434821 2.3745702, 48.8435726 2.3743940, 48.8435786 2.3744910, 48.8435975 2.3743426, 48.8436477 2.3741666, 48.8437059 2.3742558, 48.8437260 2.3741054, 48.8437632 2.3739609, 48.8437797 2.3739206, 48.8437833 2.3739251, 48.8437839 2.3739140, 48.8437869 2.3739202, 48.8438008 2.3738421, 48.8438111 2.3740226, 48.8438250 2.3739305, 48.8438362 2.3740243, 48.8438394 2.3740299, 48.8438450 2.3740180, 48.8438529 2.3739931, 48.8438716 2.3737105, 48.8438722 2.3737630, 48.8438722 2.3737630, 48.8438844 2.3738311, 48.8438917 2.3738173, 48.8439101 2.3738974, 48.8439396 2.3737900, 48.8439623 2.3736834, 48.8439714 2.3736949, 48.8440898 2.3734598, 48.8440925 2.3733360, 48.8441473 2.3733668, 48.8441755 2.3731927, 48.8442249 2.3732793, 48.8442324 2.3731992, 48.8442600 2.3731550, 48.8442709 2.3731329, 48.8443032 2.3729639, 48.8443551 2.3730314, 48.8443714 2.3731326, 48.8443723 2.3728636, 48.8443738 2.3730837, 48.8443770 2.3731203, 48.8443821 2.3731124, 48.8444080 2.3729064, 48.8669190 2.3151373, 48.8676892 2.3127232, 48.8471762 2.3107124, 48.8545470 2.4196227, 48.8509679 2.4181100, 48.8750276 2.4027316, 48.8763671 2.3956190, 48.8748082 2.4028457, 48.8698537 2.4025720, 48.8711617 2.3300722, 48.8817452 2.3687501, 48.8518476 2.3933111, 48.8403727 2.3337448, 48.8381865 2.3423327, 48.8421264 2.3288678, 48.8457052 2.3419808, 48.8597756 2.4031330, 48.8603530 2.4031550, 48.8701010 2.3949960, 48.8719770 2.3923271, 48.8646300 2.3665505, 48.8661085 2.3669813, 48.8517000 2.3431200, 48.8242000 2.3888900, 48.8425000 2.3216700, 48.8722000 2.3397200, 48.8412953 2.3075765, 48.8414376 2.3081178, 48.8414906 2.3082385, 48.8422788 2.3101359, 48.8425076 2.3118940, 48.8365104 2.3100891, 48.8341782 2.3066372, 48.8744888 2.4155695, 48.8599164 2.3463862, 48.8471480 2.3172036, 48.8475959 2.3184518, 48.8476473 2.3185907, 48.8831240 2.3238175, 48.8600843 2.3501442, 48.8400060 2.4004934, 48.8408728 2.4043717, 48.8431180 2.3203628, 48.8819276 2.3203338, 48.8386975 2.3110254, 48.8425337 2.3640099, 48.8418066 2.3195355, 48.8493177 2.4179411, 48.8559651 2.3563778, 48.8537639 2.3391067, 48.8484157 2.3501294, 48.8503045 2.3303232, 48.8457103 2.4275167, 48.8414902 2.3233159, 48.8553652 2.3997587, 48.8371072 2.3743837, 48.8392820 2.3298973, 48.8491858 2.3251494, 48.8832127 2.3308278, 48.8810507 2.3407852, 48.8170107 2.3324779, 48.8461470 2.3242143, 48.8413329 2.3183133, 48.8489310 2.3471707, 48.8204679 2.3390610, 48.8204884 2.3390711, 48.8205814 2.3395233, 48.8481468 2.3197601, 48.8490626 2.3191414, 48.8501266 2.3186024, 48.8501791 2.3187017, 48.8878214 2.3802142, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8478436 2.3190965, 48.8524573 2.3415602, 48.8547424 2.3544531, 48.8549834 2.3538154, 48.8549571 2.3538809, 48.8547359 2.3551293, 48.8569769 2.3781738, 48.8570133 2.3782712, 48.8566264 2.3772226, 48.8568241 2.3777233, 48.8566192 2.3776248, 48.8565236 2.3773676, 48.8563976 2.3765843, 48.8560776 2.3757039, 48.8560048 2.3754788, 48.8558521 2.3750899, 48.8558279 2.3750061, 48.8555572 2.3747522, 48.8534957 2.3378664, 48.8465511 2.3138238, 48.8689558 2.3348921, 48.8575487 2.3495646, 48.8611021 2.3537247, 48.8615808 2.3421921, 48.8609420 2.3686815, 48.8680574 2.3408942, 48.8683838 2.3420677, 48.8741075 2.3445446, 48.8680333 2.3778031, 48.8693650 2.3817579, 48.8677141 2.3819114, 48.8691546 2.3800136, 48.8882663 2.3626035, 48.8590641 2.3684194, 48.8745019 2.3273404, 48.8633731 2.3584422, 48.8346652 2.3301689, 48.8320285 2.3249552, 48.8327169 2.3252508, 48.8336276 2.3316417, 48.8312333 2.3296496, 48.8313376 2.3296145, 48.8602693 2.3889177, 48.8596521 2.3868111, 48.8587082 2.3848399, 48.8620899 2.3661777, 48.8617952 2.3647367, 48.8542765 2.4027546, 48.8515574 2.4003677, 48.8633340 2.3613891, 48.8619859 2.3647571, 48.8623729 2.3651197, 48.8627347 2.3662302, 48.8614130 2.3705083, 48.8615747 2.3706299, 48.8618001 2.3720184, 48.8177909 2.3244221, 48.8647430 2.3818722, 48.8622747 2.3672224, 48.8620626 2.3672580, 48.8623682 2.3671929, 48.8628461 2.3362666, 48.8644915 2.3656032, 48.8643294 2.3657096, 48.8690385 2.3639054, 48.8679245 2.3658481, 48.8664714 2.3673929, 48.8650522 2.3663679, 48.8612440 2.3676094, 48.8619694 2.3673462, 48.8378987 2.3453148, 48.8656106 2.3572726, 48.8626759 2.3636324, 48.8635810 2.3667513, 48.8617050 2.3539300, 48.8440980 2.3080783, 48.8434559 2.3050545, 48.8627659 2.3625185, 48.8355630 2.3849120, 48.8357331 2.3846678, 48.8377299 2.3460567, 48.8404873 2.3458931, 48.8428599 2.3414993, 48.8425203 2.3384674, 48.8407969 2.3406144, 48.8406491 2.3343703, 48.8391318 2.3395208, 48.8415293 2.3294177, 48.8440602 2.3292343, 48.8468650 2.3299291, 48.8480349 2.3306234, 48.8615804 2.3711339, 48.8615576 2.3705429, 48.8617572 2.3718073, 48.8625029 2.3716831, 48.8636741 2.3696764, 48.8633878 2.3694245, 48.8633311 2.3692871, 48.8626670 2.3627237, 48.8609892 2.3675162, 48.8611497 2.3674810, 48.8630042 2.3673142, 48.8626333 2.3674542, 48.8629894 2.3679436, 48.8630159 2.3680267, 48.8809048 2.3467209, 48.8642921 2.3657377, 48.8617183 2.3720579, 48.8614465 2.3641573, 48.8573825 2.3774991, 48.8615938 2.3734258, 48.8616162 2.3708080, 48.8618200 2.3730192, 48.8617681 2.3611646, 48.8632870 2.3585986, 48.8625980 2.3538387, 48.8630387 2.3518815, 48.8632610 2.3511168, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8633292 2.3462367, 48.8635550 2.3471565, 48.8635288 2.3441618, 48.8699970 2.3549068, 48.8712181 2.3066750, 48.8673562 2.3530323, 48.8673705 2.3530335, 48.8673789 2.3530370, 48.8673880 2.3530477, 48.8712598 2.3552044, 48.8587772 2.3712220, 48.8659600 2.3653216, 48.8654733 2.3679992, 48.8666410 2.3664307, 48.8665862 2.3667443, 48.8661620 2.3675630, 48.8650347 2.3669146, 48.8650847 2.3656389, 48.8666335 2.3665296, 48.8663602 2.3680223, 48.8643746 2.3685025, 48.8641963 2.3679144, 48.8646177 2.3690280, 48.8629023 2.3681262, 48.8628347 2.3675662, 48.8543300 2.3711983, 48.8749871 2.3593369, 48.8747439 2.3591131, 48.8742167 2.3587245, 48.8585649 2.3784767, 48.8578407 2.3769477, 48.8343023 2.3639410, 48.8602002 2.3647046, 48.8588360 2.3643808, 48.8593740 2.3653569, 48.8623144 2.3663745, 48.8708703 2.3415985, 48.8705728 2.3415832, 48.8711859 2.3417171, 48.8709869 2.3416777, 48.8620724 2.3658250, 48.8637272 2.3671164, 48.8636903 2.3666893, 48.8709973 2.3788109, 48.8586999 2.3627020, 48.8580013 2.3652526, 48.8584347 2.3637448, 48.8453783 2.3929602, 48.8492511 2.3890811, 48.8844918 2.3308338, 48.8808115 2.3349165, 48.8459524 2.3314941, 48.8473038 2.3299657, 48.8822077 2.3636469, 48.8822937 2.3628730, 48.8826834 2.3615248, 48.8842662 2.3384857, 48.8843570 2.3383511, 48.8843580 2.3554674, 48.8855628 2.3868905, 48.8614253 2.3643489, 48.8593585 2.3673596, 48.8586082 2.3675198, 48.8578247 2.3662529, 48.8578018 2.3672245, 48.8575285 2.3645936, 48.8567071 2.3672138, 48.8599776 2.3643195, 48.8581319 2.3686779, 48.8654352 2.3322141, 48.8731027 2.3586476, 48.8738988 2.3585396, 48.8734890 2.3588318, 48.8737268 2.3586272, 48.8580112 2.3685170, 48.8647940 2.3660241, 48.8648526 2.3659926, 48.8640444 2.3658805, 48.8641120 2.3658485, 48.8683644 2.3699736, 48.8682556 2.4180358, 48.8535896 2.3766260, 48.8548638 2.3756068, 48.8534590 2.3792948, 48.8609686 2.3544829, 48.8608428 2.3548591, 48.8607371 2.3551324, 48.8612378 2.3536539, 48.8611118 2.3693564, 48.8495908 2.3740611, 48.8786937 2.4161353, 48.8797544 2.4131416, 48.8279008 2.3224596, 48.8237712 2.3188140, 48.8455488 2.4110597, 48.8440870 2.4099235, 48.8444532 2.4107855, 48.8654197 2.3615883, 48.8484998 2.3412712, 48.8443464 2.4069660, 48.8659969 2.3276111, 48.8711704 2.3532964, 48.8814750 2.3580850, 48.8653117 2.3295596, 48.8233460 2.3160166, 48.8490230 2.3129144, 48.8654853 2.3686016, 48.8518466 2.3669275, 48.8279596 2.3690455, 48.8279577 2.3690363, 48.8486365 2.3436088, 48.8282445 2.3185970, 48.8325511 2.3275682, 48.8337519 2.3264533, 48.8330778 2.3268974, 48.8663636 2.4020052, 48.8514912 2.3706641, 48.8314753 2.3212955, 48.8275165 2.3222495, 48.8334969 2.3204507, 48.8509826 2.3348581, 48.8338228 2.3257312, 48.8287686 2.3270872, 48.8398181 2.3539553, 48.8434500 2.3162551, 48.8520914 2.3457231, 48.8520498 2.3471195, 48.8506800 2.3408743, 48.8469926 2.3443789, 48.8284834 2.3390838, 48.8426154 2.3558949, 48.8335095 2.3583707, 48.8812606 2.3199181, 48.8520894 2.3359481, 48.8782451 2.3776203, 48.8816607 2.3795479, 48.8395681 2.3430437, 48.8370175 2.3399282, 48.8381233 2.3381623, 48.8377272 2.3337065, 48.8407613 2.3287967, 48.8412235 2.3288167, 48.8503229 2.3719619, 48.8371308 2.3201049, 48.8354145 2.3186821, 48.8308623 2.3104632, 48.8294209 2.3117338, 48.8282417 2.3124366, 48.8318593 2.3321176, 48.8448556 2.3266825, 48.8318902 2.3371638, 48.8273372 2.3438244, 48.8279649 2.3334629, 48.8227046 2.3325473, 48.8226277 2.3314456, 48.8264157 2.3400743, 48.8244538 2.3424960, 48.8299282 2.3426712, 48.8232102 2.3460360, 48.8250953 2.3487033, 48.8225891 2.3514200, 48.8233729 2.3520348, 48.8495037 2.3387231, 48.8263831 2.3518343, 48.8238254 2.3603106, 48.8490369 2.3777473, 48.8408530 2.3097088, 48.8406966 2.3089635, 48.8710842 2.4098080, 48.8419046 2.4066858, 48.8867960 2.3430272, 48.8336334 2.3956971, 48.8867143 2.3420696, 48.8430010 2.3073788, 48.8829020 2.3533116, 48.8468373 2.3601741, 48.8502092 2.3467124, 48.8500305 2.3469692, 48.8580159 2.4337027, 48.8366699 2.3085489, 48.8366318 2.3091017, 48.8360434 2.3091487, 48.8505880 2.3262612, 48.8399309 2.3505124, 48.8573272 2.3231557, 48.8457219 2.3091127, 48.8291963 2.3484434, 48.8341327 2.3354992, 48.8815039 2.3596777, 48.8254771 2.3560232, 48.8852759 2.3287719, 48.8853098 2.3300207, 48.8934254 2.3502251, 48.8715666 2.3690395, 48.8421078 2.3399259, 48.8753514 2.3391367, 48.8764338 2.3389235, 48.8292274 2.3144138, 48.8603535 2.3450738, 48.8691578 2.3873215, 48.8343403 2.3469900, 48.8573070 2.4005727, 48.8563515 2.4015439, 48.8488289 2.3520343, 48.8738281 2.3676232, 48.8780842 2.3672167, 48.8399853 2.4354878, 48.8720076 2.3153410, 48.8719347 2.3252557, 48.8920793 2.3444293, 48.8301022 2.3731882, 48.8514133 2.3453539, 48.8647293 2.3437855, 48.8799231 2.4029140, 48.8102596 2.3537170, 48.8955599 2.3923240, 48.8226001 2.3745365, 48.8970228 2.3778045, 48.8616725 2.3400056, 48.8865460 2.3987110, 48.8873261 2.3987992, 48.8818390 2.3949630, 48.8840066 2.4076010, 48.8397989 2.3483799, 48.8335588 2.3347973, 48.8176077 2.3331498, 48.8627769 2.3619724, 48.8793754 2.4181907, 48.8659943 2.3934446, 48.8743552 2.4101245, 48.8324637 2.3583124, 48.8459148 2.3453004, 48.8467486 2.3457052, 48.8464858 2.3468868, 48.8931401 2.3450441, 48.8439535 2.4265211, 48.8915823 2.3442872, 48.8487976 2.3453788, 48.8393007 2.4098962, 48.8373806 2.3847107, 48.8487087 2.3407361, 48.8521927 2.3428836, 48.8527859 2.3429879, 48.8460121 2.3936785, 48.8472608 2.3915475, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8939404 2.3440201, 48.8939717 2.3760943, 48.8927211 2.3719123, 48.8765093 2.3967201, 48.8770270 2.3963669, 48.8478738 2.3417683, 48.8512137 2.3425994, 48.8444725 2.3494231, 48.8489020 2.3780492, 48.8653656 2.3326546, 48.8462135 2.3676679, 48.8477461 2.3511419, 48.8465377 2.3511741, 48.8611834 2.4213949, 48.8491582 2.3503166, 48.8586522 2.4048512, 48.8334812 2.3848250, 48.8533726 2.3431427, 48.8534537 2.3432406, 48.8948811 2.3753138, 48.8931565 2.3752173, 48.8949298 2.3437869, 48.8881098 2.3937511, 48.8527860 2.3433192, 48.8527117 2.3434535, 48.8677409 2.4118097, 48.8553095 2.3668811, 48.8554490 2.3650796, 48.8553288 2.3657869, 48.8559134 2.3652568, 48.8557971 2.3659661, 48.8773026 2.3313881, 48.8796581 2.3337601, 48.8733469 2.3471633, 48.8453078 2.3279727, 48.8447303 2.3253916, 48.8296365 2.3191749, 48.8271977 2.3186334, 48.8445554 2.3918219, 48.8477056 2.3937576, 48.8530475 2.3402841, 48.8606366 2.3480234, 48.8428465 2.3450125, 48.8836733 2.4010511, 48.8480538 2.4084830, 48.8577970 2.3462635, 48.8572971 2.3480529, 48.8543637 2.3467385, 48.8556673 2.3468212, 48.8546261 2.3488485, 48.8934185 2.3476012, 48.8541008 2.3508942, 48.8634023 2.3451770, 48.8600412 2.3413119, 48.8595023 2.3413445, 48.8610303 2.3411379, 48.8397717 2.3041709, 48.8603630 2.3385405, 48.8628813 2.3500673, 48.8631053 2.3482929, 48.8640121 2.3431386, 48.8648399 2.3394096, 48.8627063 2.3387713, 48.8621731 2.3396914, 48.8635375 2.3361930, 48.8661384 2.3376341, 48.8646150 2.3358501, 48.8656383 2.3355496, 48.8473922 2.3048904, 48.8648403 2.3335688, 48.8674454 2.3255009, 48.8671208 2.3252153, 48.8700303 2.3244833, 48.8637900 2.3251989, 48.8675585 2.3352443, 48.8683542 2.3354770, 48.8679678 2.3355626, 48.8672834 2.3384559, 48.8711116 2.3378434, 48.8701314 2.3413473, 48.8667351 2.3405908, 48.8667853 2.3409551, 48.8720314 2.3317296, 48.8678404 2.3435108, 48.8677111 2.3436135, 48.8666855 2.3458176, 48.8667840 2.3448980, 48.8643844 2.3481707, 48.8659951 2.3472997, 48.8650604 2.3489492, 48.8673100 2.3491813, 48.8695324 2.3500407, 48.8694649 2.3483472, 48.8515255 2.3585434, 48.8512807 2.3575810, 48.8513292 2.3571102, 48.8513403 2.3568073, 48.8465485 2.3480584, 48.8468635 2.3476036, 48.8464522 2.3499137, 48.8473759 2.3481729, 48.8477242 2.3463368, 48.8471642 2.3459531, 48.8473765 2.3454667, 48.8483547 2.3477114, 48.8494880 2.3471975, 48.8566586 2.3502382, 48.8555103 2.3547440, 48.8605119 2.3524278, 48.8552378 2.3565856, 48.8545545 2.3582739, 48.8547107 2.3575542, 48.8561321 2.3560085, 48.8590777 2.3508458, 48.8609964 2.3511217, 48.8590241 2.3528243, 48.8596787 2.3549361, 48.8578675 2.3554896, 48.8580098 2.3551110, 48.8420784 2.3551117, 48.8589606 2.3577912, 48.8588712 2.3563977, 48.8593244 2.3572169, 48.8566620 2.3563500, 48.8581282 2.3585957, 48.8576958 2.3602417, 48.8577535 2.3591589, 48.8445132 2.3434493, 48.8446816 2.3425888, 48.8443593 2.3424477, 48.8568692 2.3618963, 48.8554458 2.3617217, 48.8559322 2.3606794, 48.8568692 2.3619825, 48.8557916 2.3618145, 48.8546118 2.3614419, 48.8441668 2.3441509, 48.8440444 2.3424842, 48.8438850 2.3436873, 48.8417082 2.3448259, 48.8421678 2.3473559, 48.8336577 2.3758171, 48.8478828 2.3449481, 48.8537719 2.3404642, 48.8538923 2.3602235, 48.8547299 2.3588397, 48.8544250 2.3606301, 48.8542205 2.3613106, 48.8533256 2.3598269, 48.8536180 2.3593838, 48.8517793 2.3624850, 48.8520858 2.3630147, 48.8530912 2.3629578, 48.8535551 2.3630510, 48.8531446 2.3665394, 48.8533048 2.3662366, 48.8530036 2.3653999, 48.8502323 2.3636287, 48.8497131 2.3627878, 48.8641131 2.3524347, 48.8654907 2.3542912, 48.8660191 2.3548825, 48.8665653 2.3534157, 48.8677538 2.3619057, 48.8669084 2.3599230, 48.8669283 2.3571354, 48.8661006 2.3605374, 48.8640009 2.3580845, 48.8514658 2.3409145, 48.8635084 2.3550623, 48.8628103 2.3567784, 48.8422077 2.3499509, 48.8410206 2.3476178, 48.8652347 2.3615395, 48.8460037 2.3443315, 48.8428826 2.3467101, 48.8648535 2.3638937, 48.8455024 2.3479009, 48.8495056 2.3411744, 48.8525619 2.3404829, 48.8638757 2.3617724, 48.8618121 2.3636118, 48.8608482 2.3604976, 48.8605513 2.3604636, 48.8593690 2.3611919, 48.8587098 2.3604486, 48.8576812 2.3627207, 48.8599672 2.3652140, 48.8584483 2.3650666, 48.8641419 2.3059394, 48.8408224 2.3556248, 48.8581239 2.4179280, 48.8394063 2.3388487, 48.8405270 2.3419263, 48.8410301 2.3394202, 48.8436908 2.3411284, 48.8377612 2.3526960, 48.8388681 2.3562783, 48.8389698 2.3465251, 48.8540956 2.3386733, 48.8568441 2.3371043, 48.8539667 2.3343780, 48.8553564 2.3319123, 48.8547259 2.3309615, 48.8542202 2.3326051, 48.8171104 2.3592722, 48.8205367 2.3517228, 48.8187381 2.3603132, 48.8274460 2.3845706, 48.8270153 2.3831548, 48.8277005 2.3804733, 48.8281345 2.3815668, 48.8289309 2.3834096, 48.8292817 2.3818329, 48.8299525 2.3812989, 48.8341301 2.3741390, 48.8324542 2.3754823, 48.8347819 2.3752986, 48.8324684 2.3762548, 48.8331207 2.3774143, 48.8356931 2.3735362, 48.8524015 2.3378046, 48.8284748 2.4153547, 48.8305866 2.4133509, 48.8269740 2.4220432, 48.8338090 2.4106889, 48.8310494 2.4086736, 48.8482401 2.3355377, 48.8472258 2.3389643, 48.8480293 2.3335576, 48.8462040 2.3345315, 48.8474005 2.3405897, 48.8464818 2.3340282, 48.8450832 2.3387297, 48.8484960 2.3353412, 48.8487894 2.3398575, 48.8499369 2.3334247, 48.8506119 2.3322896, 48.8709159 2.3488390, 48.8808624 2.3661835, 48.8798953 2.3658018, 48.8748621 2.3640685, 48.8690687 2.3568989, 48.8714289 2.3586492, 48.8725005 2.3637491, 48.8765155 2.3697729, 48.8789795 2.3519205, 48.8745975 2.3638853, 48.8804816 2.3601906, 48.8835038 2.3500486, 48.8758832 2.3621672, 48.8707111 2.3526824, 48.8742511 2.3562294, 48.8739698 2.3502828, 48.8747740 2.3583086, 48.8740835 2.3661993, 48.8769232 2.3550372, 48.8785401 2.3503089, 48.8690852 2.3564359, 48.8688927 2.3619774, 48.8700417 2.3629456, 48.8778905 2.3549883, 48.8802394 2.3662696, 48.8707439 2.3581854, 48.8813655 2.3677357, 48.8715401 2.3682094, 48.8718061 2.3577803, 48.8714724 2.3582382, 48.8724583 2.3622962, 48.8791694 2.3579809, 48.8712435 2.3585129, 48.8772979 2.3532928, 48.8759967 2.3763509, 48.8756563 2.3893068, 48.8825024 2.3773488, 48.8777778 2.3969518, 48.8798650 2.3717611, 48.8765775 2.3738107, 48.8840257 2.3785053, 48.8810534 2.3798892, 48.8807650 2.3809540, 48.8782864 2.4003329, 48.8808497 2.3766792, 48.8772540 2.3793034, 48.8839180 2.3908306, 48.8805352 2.3776953, 48.8785984 2.4069505, 48.8875554 2.3932245, 48.8766581 2.3845776, 48.8792584 2.4027040, 48.8803350 2.3915400, 48.8832602 2.3897914, 48.8888014 2.3950208, 48.8825097 2.3726639, 48.8777119 2.3829769, 48.8789480 2.3975957, 48.8772899 2.4044967, 48.8763922 2.3924421, 48.8827773 2.3720907, 48.8768476 2.4045269, 48.8823771 2.3827729, 48.8837520 2.3770262, 48.8833592 2.3837676, 48.8758353 2.3818821, 48.8793280 2.4092495, 48.8782636 2.3938847, 48.8825699 2.3942478, 48.8794623 2.3748343, 48.8768300 2.4049587, 48.8749512 2.3758843, 48.8835228 2.3900932, 48.8775012 2.4053652, 48.8872961 2.3884532, 48.8791033 2.4067884, 48.8762900 2.3881904, 48.8491305 2.3324247, 48.8511246 2.3315183, 48.8485200 2.3302805, 48.8490897 2.3313163, 48.8567549 2.3296065, 48.8564112 2.3276604, 48.8616442 2.3214269, 48.8830027 2.3819053, 48.8573070 2.3722448, 48.8573667 2.3785302, 48.8612993 2.3760466, 48.8679659 2.3772772, 48.8580028 2.3886404, 48.8698301 2.3789769, 48.8532758 2.3834775, 48.8488552 2.3942325, 48.8681170 2.3702881, 48.8556092 2.3748547, 48.8514007 2.3806923, 48.8489972 2.3942887, 48.8559242 2.3763609, 48.8582151 2.3817585, 48.8505758 2.3948498, 48.8617208 2.3870510, 48.8492288 2.3982130, 48.8687241 2.3739555, 48.8494165 2.3948501, 48.8667240 2.3744593, 48.8644022 2.3721640, 48.8690173 2.3800602, 48.8700142 2.3783921, 48.8587211 2.3792589, 48.8557998 2.3744188, 48.8620888 2.3721843, 48.8653480 2.3824511, 48.8616901 2.3768726, 48.8558974 2.3697016, 48.8691228 2.3722077, 48.8542270 2.3701448, 48.8651182 2.3816942, 48.8474963 2.3314096, 48.8433347 2.3291923, 48.8437015 2.3290857, 48.8440002 2.3289984, 48.8426659 2.3293835, 48.8441827 2.3289470, 48.8415376 2.3358192, 48.8422410 2.3360535, 48.8431501 2.3350178, 48.8439005 2.3362100, 48.8431501 2.3350178, 48.8424034 2.3353369, 48.8439412 2.3345941, 48.8413149 2.3345125, 48.8898926 2.3938223, 48.8841890 2.3721826, 48.8920038 2.3925843, 48.8942221 2.3932346, 48.8922574 2.3897916, 48.8863782 2.3808169, 48.8909125 2.3908221, 48.8884371 2.3696348, 48.8893083 2.3797923, 48.8922985 2.3808600, 48.8962335 2.3812698, 48.8869224 2.3699944, 48.8849786 2.3714049, 48.8878800 2.3695448, 48.8942892 2.3857311, 48.8914135 2.3730389, 48.8945682 2.3886565, 48.8434562 2.3271121, 48.8459170 2.3271128, 48.8544027 2.3283123, 48.8542728 2.3281460, 48.8538921 2.3290895, 48.8536841 2.3296836, 48.8523494 2.3282306, 48.8523092 2.3254287, 48.8583168 2.3192030, 48.8555836 2.3125833, 48.8581172 2.3158825, 48.8602703 2.3166848, 48.8591272 2.3154598, 48.8569650 2.3210744, 48.8589684 2.3183256, 48.8659254 2.3169572, 48.8661998 2.3078190, 48.8673922 2.3186960, 48.8692220 2.3131336, 48.8687177 2.3137578, 48.8679417 2.3153003, 48.8695579 2.3118828, 48.8709019 2.3121795, 48.8701045 2.3177100, 48.8706191 2.3164188, 48.8702691 2.3171729, 48.8700842 2.3190066, 48.8677416 2.3203787, 48.8708055 2.3203157, 48.8100412 2.3634094, 48.8151095 2.3628203, 48.8088380 2.3604124, 48.8100632 2.3609788, 48.8155498 2.3629729, 48.8123026 2.3568486, 48.8148368 2.3592517, 48.8152863 2.3634838, 48.8144345 2.3595949, 48.8709936 2.3196146, 48.8730514 2.3192651, 48.8712384 2.3204914, 48.8732220 2.3198534, 48.8719889 2.3172447, 48.8568281 2.3240933, 48.8564528 2.3218645, 48.8731641 2.3135886, 48.8762173 2.3188580, 48.8736950 2.3227605, 48.8763793 2.3198786, 48.8764436 2.3227714, 48.8812617 2.3221621, 48.8800310 2.3248307, 48.8799532 2.3249230, 48.8824166 2.3254431, 48.8815247 2.3258345, 48.8789360 2.3180062, 48.8794612 2.3161827, 48.8774812 2.3175782, 48.8773895 2.3113057, 48.8558406 2.3181691, 48.8565374 2.3198863, 48.8575952 2.3162844, 48.8549799 2.3152238, 48.8546938 2.3151617, 48.8536065 2.3189265, 48.8547914 2.3184454, 48.8544394 2.3206610, 48.8542063 2.3220164, 48.8516333 2.3163937, 48.8733405 2.3105570, 48.8747817 2.3090619, 48.8735777 2.3103416, 48.8506595 2.3134348, 48.8488137 2.3112580, 48.8490218 2.3095386, 48.8621157 2.3068946, 48.8622054 2.3113147, 48.8620107 2.3121034, 48.8620503 2.3077703, 48.8614652 2.3112185, 48.8598324 2.3057047, 48.8596683 2.3051766, 48.8588398 2.3009565, 48.8616921 2.3017708, 48.8586530 2.3014966, 48.8718575 2.3096862, 48.8745552 2.3434968, 48.8726368 2.3332498, 48.8733021 2.3461422, 48.8724832 2.3412640, 48.8713411 2.3335897, 48.8753730 2.3307359, 48.8745162 2.3280282, 48.8810211 2.3277299, 48.8783949 2.3273509, 48.8839359 2.3295920, 48.8784480 2.3305067, 48.8794555 2.3310828, 48.8668072 2.3074982, 48.8669466 2.3052755, 48.8661724 2.3095553, 48.8654950 2.3060890, 48.8657975 2.3070013, 48.8650070 2.3052518, 48.8755092 2.3364892, 48.8757852 2.3369238, 48.8761055 2.3425645, 48.8775032 2.3443702, 48.8775832 2.3381108, 48.8769406 2.3357171, 48.8788350 2.3363565, 48.8781775 2.3370777, 48.8791560 2.3349351, 48.8784814 2.3330760, 48.8786912 2.3329642, 48.8795687 2.3340594, 48.8580739 2.3032200, 48.8577998 2.3083264, 48.8574433 2.3080496, 48.8704391 2.4036853, 48.8654752 2.3969034, 48.8675540 2.4033383, 48.8733663 2.3980536, 48.8707745 2.4031842, 48.8664725 2.3994200, 48.8660241 2.3891973, 48.8726445 2.3819387, 48.8667184 2.3845734, 48.8672697 2.4082129, 48.8700810 2.3939859, 48.8721527 2.4039954, 48.8742474 2.3915343, 48.8692103 2.4060250, 48.8698708 2.3894444, 48.8759531 2.4058126, 48.8707470 2.3890101, 48.8737162 2.3989845, 48.8653099 2.3994450, 48.8741661 2.4028427, 48.8680477 2.3881885, 48.8686123 2.3874807, 48.8717538 2.3778592, 48.8768273 2.4061935, 48.8705165 2.3847431, 48.8706464 2.4029603, 48.8700069 2.3917127, 48.8680271 2.3944885, 48.8677442 2.4064420, 48.8711699 2.3828334, 48.8680108 2.3891033, 48.8661973 2.3852926, 48.8531996 2.4008117, 48.8629172 2.4032881, 48.8635111 2.4000883, 48.8610622 2.4083874, 48.8605116 2.4040387, 48.8594997 2.4020465, 48.8486664 2.4060717, 48.8570749 2.3987484, 48.8552365 2.3979568, 48.8612544 2.3928969, 48.8632403 2.4057584, 48.8527000 2.4007320, 48.8646263 2.3995431, 48.8643045 2.3993897, 48.8645555 2.3990625, 48.8644181 2.3973216, 48.8604193 2.4117833, 48.8591060 2.4071931, 48.8603726 2.4048020, 48.8582173 2.3974031, 48.8551420 2.4074493, 48.8940614 2.3981408, 48.8853542 2.4002846, 48.8849968 2.4010811, 48.8833482 2.4078477, 48.8829139 2.4028574, 48.8859819 2.4028046, 48.8783976 2.4232741, 48.8799172 2.4243102, 48.8797989 2.4242101, 48.8792217 2.4226421, 48.8793528 2.4158838, 48.8797616 2.4230673, 48.8810422 2.4188889, 48.8789212 2.4225945, 48.8803531 2.4243624, 48.8779107 2.4115571, 48.8806144 2.4138073, 48.8804704 2.4244582, 48.8823482 2.4217766, 48.8800161 2.4241722, 48.8817441 2.4200451, 48.8798835 2.4146440, 48.8856358 2.3793460, 48.8456516 2.3465029, 48.8851079 2.3221911, 48.8829281 2.3226645, 48.8845147 2.3220414, 48.8848055 2.3225753, 48.8852691 2.3273520, 48.8840983 2.3280005, 48.8871826 2.3279620, 48.8759086 2.3531702, 48.8757690 2.3542850, 48.8207874 2.3600379, 48.8207569 2.3696364, 48.8459792 2.4034956, 48.8449899 2.4047731, 48.8744385 2.3603136, 48.8790683 2.3500223, 48.8748204 2.3650641, 48.8440793 2.3007675, 48.8455404 2.3039588, 48.8449008 2.3028262, 48.8473426 2.3154628, 48.8886235 2.3400506, 48.8762997 2.3671483, 48.8774278 2.3664806, 48.8769307 2.3675682, 48.8753137 2.3745206, 48.8464207 2.3056421, 48.8452635 2.3065475, 48.8445961 2.3062818, 48.8918931 2.3366089, 48.8916829 2.3361699, 48.8916676 2.3364729, 48.8831627 2.3434328, 48.8843322 2.3316646, 48.8852591 2.3385563, 48.8834404 2.3424447, 48.8830878 2.3430268, 48.8842431 2.3378793, 48.8872369 2.3361985, 48.8429738 2.4063211, 48.8425509 2.4150533, 48.8428482 2.4072159, 48.8860532 2.3549746, 48.8852850 2.3516529, 48.8873605 2.3541200, 48.8862437 2.3524630, 48.8885339 2.3563367, 48.8442314 2.3972578, 48.8424786 2.3972916, 48.8887487 2.3533400, 48.8430526 2.3911051, 48.8438364 2.3903215, 48.8433066 2.3847100, 48.8453062 2.3897015, 48.8465201 2.3909177, 48.8464060 2.3874300, 48.8446697 2.3887600, 48.8950630 2.3500907, 48.8937115 2.3499835, 48.8949881 2.3515874, 48.8943495 2.3510361, 48.8346716 2.3947154, 48.8354779 2.3981863, 48.8377888 2.3934620, 48.8408375 2.3874300, 48.8475646 2.3844791, 48.8476359 2.3834813, 48.8501423 2.3827526, 48.8493084 2.3782105, 48.8495759 2.3775495, 48.8499033 2.3749234, 48.8480847 2.3771241, 48.8447461 2.3682946, 48.8413908 2.3722764, 48.8363395 2.3879989, 48.8363209 2.3872317, 48.8313947 2.3887948, 48.8313842 2.3453082, 48.8353282 2.3443622, 48.8324841 2.3481040, 48.8336874 2.3510049, 48.8340937 2.3527776, 48.8336219 2.3537795, 48.8363739 2.3491795, 48.8337431 2.3536971, 48.8360232 2.3500303, 48.8330343 2.3541878, 48.8347313 2.3458453, 48.8355227 2.3484624, 48.8300981 2.3497071, 48.8816137 2.3678619, 48.8741592 2.3523399, 48.8709868 2.3539752, 48.8282216 2.3502281, 48.8281048 2.3420248, 48.8280243 2.3513291, 48.8261636 2.3499910, 48.8303084 2.3537927, 48.8273857 2.3453119, 48.8302539 2.3536052, 48.8235980 2.3488324, 48.8232023 2.3480817, 48.8230296 2.3485201, 48.8255087 2.3537284, 48.8318443 2.3578147, 48.8330311 2.3559118, 48.8373800 2.3594717, 48.8374878 2.3592366, 48.8334901 2.3548903, 48.8369808 2.3616318, 48.8378854 2.3611545, 48.8351835 2.3533874, 48.8352545 2.3669997, 48.8389393 2.3641414, 48.8325517 2.3555391, 48.8381409 2.3592686, 48.8279080 2.3671721, 48.8228260 2.3656656, 48.8278250 2.3617461, 48.8319646 2.3639719, 48.8223014 2.3642343, 48.8243944 2.3698335, 48.8214938 2.3626350, 48.8314555 2.3593311, 48.8298280 2.3683033, 48.8332049 2.3674474, 48.8264091 2.3707059, 48.8255377 2.3755671, 48.8213641 2.3630210, 48.8285287 2.3620065, 48.8204187 2.3630912, 48.8288263 2.3665943, 48.8289425 2.3568654, 48.8251059 2.3629462, 48.8312041 2.3702611, 48.8297466 2.3673757, 48.8172877 2.3936138, 48.8195986 2.3967955, 48.8189408 2.3729378, 48.8156403 2.3741378, 48.8177633 2.3719943, 48.8126062 2.3776044, 48.8107354 2.3834282, 48.8141243 2.3773466, 48.8142641 2.3778953, 48.8161029 2.3946880, 48.8109596 2.3828637, 48.8141439 2.3952231, 48.8179649 2.3755932, 48.8139289 2.3888859, 48.8117505 2.3768962, 48.8181033 2.3755390, 48.8126076 2.3864890, 48.8116281 2.3880471, 48.8168660 2.3942540, 48.8163980 2.3941788, 48.8174654 2.3950189, 48.8342311 2.3345129, 48.8373961 2.3307530, 48.8429503 2.3255308, 48.8388397 2.3227192, 48.8320894 2.3350179, 48.8300730 2.3263037, 48.8295683 2.3277744, 48.8370539 2.3220176, 48.8361561 2.3231047, 48.8369184 2.3203414, 48.8294977 2.3226115, 48.8327851 2.3211151, 48.8350181 2.3229459, 48.8359370 2.3170768, 48.8332731 2.3154936, 48.8343750 2.3166882, 48.8315293 2.3138951, 48.8256327 2.3320576, 48.8274592 2.3274621, 48.8222354 2.3405407, 48.8263774 2.3402824, 48.8243640 2.3278423, 48.8222813 2.3365890, 48.8251835 2.3280702, 48.8264364 2.3398091, 48.8392359 2.3063319, 48.8430967 2.3047973, 48.8433657 2.3114422, 48.8435148 2.3087965, 48.8426176 2.3045363, 48.8412280 2.3124626, 48.8417016 2.3220312, 48.8439578 2.3133370, 48.8154777 2.3477956, 48.8154932 2.3515928, 48.8161597 2.3363231, 48.8133077 2.3458032, 48.8139826 2.3454287, 48.8146393 2.3489429, 48.8107971 2.3493081, 48.8141014 2.3475179, 48.8684042 2.4171067, 48.8719959 2.4252341, 48.8694342 2.4171859, 48.8687124 2.4169341, 48.8780805 2.4216411, 48.8565602 2.4165724, 48.8669518 2.4157723, 48.8568621 2.4163587, 48.8703094 2.4206940, 48.8926493 2.3939585, 48.8891291 2.3907548, 48.8895890 2.3922761, 48.8555569 2.4173211, 48.8594501 2.4339856, 48.8591250 2.4355886, 48.8541526 2.4180854, 48.8538772 2.4228563, 48.8538866 2.4211865, 48.8631858 2.4332983, 48.8569641 2.4290677, 48.8580715 2.4353137, 48.8492868 2.4277484, 48.8583096 2.4323016, 48.8546756 2.4213000, 48.8708239 2.3060540, 48.8167661 2.3285350, 48.8525069 2.4370059, 48.8464031 2.4316868, 48.8480265 2.4191578, 48.8494565 2.4324623, 48.8435807 2.4307677, 48.8476023 2.4344021, 48.8441230 2.3564135, 48.8421743 2.3612670, 48.8913410 2.3603495, 48.8945529 2.3635758, 48.8872133 2.3667612, 48.8909628 2.3615359, 48.8913834 2.3652307, 48.8928326 2.3611571, 48.8821604 2.3189011, 48.8824285 2.3187962, 48.8391686 2.3109456, 48.8768428 2.4045271, 48.8771585 2.4055681, 48.8778084 2.4030780, 48.8798326 2.3738931, 48.8353031 2.3389057, 48.8387179 2.3348410, 48.8538919 2.4083840, 48.8558123 2.3528997, 48.8562804 2.3531597, 48.8385454 2.3357931, 48.8487775 2.3737984, 48.8421105 2.3436246, 48.8484110 2.3432090, 48.8439710 2.3453279, 48.8695357 2.3416876, 48.8694697 2.3420289, 48.8696274 2.3412758, 48.8430840 2.3403551, 48.8463229 2.3505900, 48.8438126 2.3454672, 48.8430406 2.3457249, 48.8436918 2.3436451, 48.8407370 2.3407878, 48.8410188 2.3409683, 48.8388621 2.3550275, 48.8573938 2.3095174, 48.8620392 2.3077582, 48.8618590 2.3069789, 48.8626465 2.3146531, 48.8624628 2.3173680, 48.8518519 2.3229864, 48.8517794 2.3223521, 48.8527787 2.3157527, 48.8527385 2.3177505, 48.8573407 2.3204463, 48.8499446 2.3217861, 48.8494123 2.3176366, 48.8465734 2.3127269, 48.8792974 2.3420206, 48.8813464 2.3391817, 48.8677573 2.3108853, 48.8660959 2.3165080, 48.8460758 2.3058827, 48.8416104 2.3878997, 48.8644630 2.4007592, 48.8453035 2.3166071, 48.8452805 2.3165425, 48.8451240 2.3151945, 48.8435383 2.3128395, 48.8798754 2.3582529, 48.8262227 2.3303813, 48.8837717 2.3316956, 48.8915499 2.3605260, 48.8550018 2.3125388, 48.8707520 2.3995332, 48.8827153 2.3641480, 48.8784387 2.3649003, 48.8822652 2.3624986, 48.8814241 2.3625297, 48.8689638 2.3733836, 48.8844782 2.3868316, 48.8647054 2.3809051, 48.8675953 2.3744039, 48.8676853 2.3721562, 48.8632870 2.3824074, 48.8453920 2.3132117, 48.8449041 2.3110205, 48.8452225 2.3155627, 48.8477097 2.3117779, 48.8477196 2.3115767, 48.8480472 2.3947692, 48.8529554 2.3813914, 48.8530153 2.3811684, 48.8786894 2.3257337, 48.8685611 2.3053115, 48.8255156 2.3392912, 48.8519843 2.3866965, 48.8488474 2.3783714, 48.8871565 2.3617049, 48.8273896 2.3281103, 48.8325436 2.3237291, 48.8331839 2.3259257, 48.8279878 2.3254484, 48.8414406 2.3468844, 48.8311720 2.3517200, 48.8338878 2.3397983, 48.8485322 2.3824733, 48.8401462 2.3775676, 48.8552909 2.3565856, 48.8544752 2.3607477, 48.8412904 2.3514244, 48.8447360 2.3478715, 48.8473182 2.3484905, 48.8408215 2.3882583, 48.8406761 2.3933858, 48.8357713 2.3875769, 48.8485627 2.3866691, 48.8440841 2.4014301, 48.8443144 2.4020119, 48.8853349 2.3222678, 48.8786479 2.3169150, 48.8748230 2.3276144, 48.8434609 2.4122583, 48.8552361 2.3583063, 48.8550674 2.3546987, 48.8457500 2.3510261, 48.8361628 2.4101190, 48.8381748 2.3976367, 48.8362030 2.3955646, 48.8351978 2.3967217, 48.8533080 2.4010815, 48.8624814 2.3328854, 48.8601441 2.4200508, 48.8786978 2.3497467, 48.8808791 2.3486190, 48.8789469 2.3509225, 48.8782082 2.3485824, 48.8543462 2.3467503, 48.8252592 2.4120396, 48.8297549 2.3118834, 48.8875038 2.3421102, 48.8351793 2.3380648, 48.8524830 2.4248592, 48.8671802 2.3504651, 48.8618634 2.4100811, 48.8670146 2.3438358, 48.8602828 2.3469501, 48.8422835 2.3705897, 48.8489252 2.3299898, 48.8285554 2.3778229, 48.8219001 2.4047422, 48.8433630 2.3993165, 48.8790892 2.3528060, 48.8788393 2.3527377, 48.8778096 2.3307598, 48.8267003 2.4022882, 48.8265228 2.4020725, 48.8436332 2.4194524, 48.8251370 2.3245043, 48.8922752 2.3437961, 48.8940337 2.3446352, 48.8565315 2.3918695, 48.8819684 2.3432262, 48.8306327 2.3612256, 48.8834296 2.3531464, 48.8763644 2.3529474, 48.8743441 2.3510936, 48.8703281 2.3630771, 48.8490871 2.3236292, 48.8432370 2.4191274, 48.8432203 2.4194678, 48.8395437 2.4170098, 48.8397820 2.4149747, 48.8587767 2.3184504, 48.8614879 2.3185384, 48.8571293 2.3338018, 48.8483320 2.3530750, 48.8484974 2.3526026, 48.8427186 2.3626495, 48.8456895 2.3527610, 48.8423716 2.3617786, 48.8476188 2.3419587, 48.8908265 2.3499846, 48.8437371 2.3505713, 48.8438952 2.3497958, 48.8382268 2.3465518, 48.8412736 2.3500786, 48.8441404 2.3412975, 48.8449937 2.3508032, 48.8486810 2.3514754, 48.8381596 2.3548607, 48.8440354 2.3463430, 48.8413879 2.3487400, 48.8681320 2.3278504, 48.8679626 2.3271739, 48.8573467 2.3302809, 48.8720061 2.3822431, 48.8700853 2.3873833, 48.8591092 2.4147190, 48.8565252 2.4147927, 48.8193310 2.4084705, 48.8276460 2.4021405, 48.8214365 2.4054340, 48.8230635 2.4129775, 48.8236705 2.4161685, 48.8270160 2.4018190, 48.8216505 2.4151570, 48.8261235 2.4051665, 48.8199820 2.4150210, 48.8222835 2.4103795, 48.8197180 2.4161270, 48.8230105 2.3975875, 48.8767410 2.3938898, 48.8769031 2.3945063, 48.8731814 2.3895118, 48.8763891 2.3888986, 48.8546361 2.3664076, 48.8575078 2.3253228, 48.8353795 2.3867511, 48.8911262 2.3327854, 48.8554191 2.3476608, 48.8537332 2.3481282, 48.8537755 2.3479955, 48.8536511 2.3483919, 48.8536920 2.3482598, 48.8438799 2.3318027, 48.8420711 2.3326418, 48.8429871 2.3328540, 48.8478667 2.3282802, 48.8454077 2.3290637, 48.8461736 2.3290387, 48.8447531 2.3305345, 48.8451935 2.3308145, 48.8455550 2.3306342, 48.8363194 2.3328942, 48.8300731 2.3686179, 48.8296826 2.3678744, 48.8357250 2.3472947, 48.8359728 2.3460923, 48.8317406 2.3472366, 48.8305748 2.3490624, 48.8315162 2.3466648, 48.8280267 2.3531166, 48.8279245 2.3535702, 48.8285259 2.3538430, 48.8271261 2.3526169, 48.8297241 2.3607269, 48.8301790 2.3615119, 48.8299064 2.3610277, 48.8363951 2.3566406, 48.8369504 2.3538779, 48.8884008 2.3334999, 48.8903822 2.3425462, 48.8534472 2.3516225, 48.8725069 2.3849536, 48.8721688 2.3856239, 48.8272224 2.3648210, 48.8225335 2.4132820, 48.8744105 2.3869092, 48.8741271 2.3869625, 48.8771245 2.3845139, 48.8775277 2.3849275, 48.8771261 2.3849300, 48.8773022 2.3857993, 48.8915917 2.3455768, 48.8913003 2.3447131, 48.8827842 2.3630058, 48.8254721 2.3329981, 48.8305444 2.3791758, 48.8763165 2.3427507, 48.8186425 2.4135582, 48.8125486 2.3878550, 48.8230146 2.4096740, 48.8937208 2.3515676, 48.8662682 2.3974540, 48.8415882 2.3994023, 48.8370947 2.3950913, 48.8374679 2.3944825, 48.8370759 2.3941218, 48.8710259 2.3902795, 48.8577583 2.3827298, 48.8571801 2.3768693, 48.8574467 2.3768468, 48.8556298 2.3730832, 48.8077063 2.3626064, 48.8381010 2.3148758, 48.8374220 2.3149466, 48.8683047 2.3853240, 48.8685446 2.3851922, 48.8775846 2.3766713, 48.8206949 2.4090773, 48.8473548 2.4318742, 48.8640100 2.3847026, 48.8228980 2.4048193, 48.8223730 2.4086225, 48.8469061 2.4334223, 48.8943791 2.3502329, 48.8822652 2.3624986, 48.8752853 2.3628019, 48.8752047 2.3623837, 48.8751608 2.3622161, 48.8752872 2.3628395, 48.8752880 2.3628798, 48.8751835 2.3622402, 48.8752137 2.3624236, 48.8752609 2.3621534, 48.8751891 2.3621520, 48.8751637 2.3621795, 48.8754027 2.3622483, 48.8753932 2.3622858, 48.8752263 2.3621430, 48.8753882 2.3625815, 48.8753547 2.3624293, 48.8753095 2.3626486, 48.8753959 2.3625353, 48.8753312 2.3626673, 48.8753820 2.3624394, 48.8752913 2.3626221, 48.8753978 2.3625014, 48.8753941 2.3624679, 48.8753604 2.3626580, 48.8269267 2.3621476, 48.8629572 2.4182375, 48.8866946 2.3663960, 48.8968701 2.3795734, 48.8461952 2.4318193, 48.8465374 2.4319275, 48.8463529 2.4273745, 48.8865278 2.3552444, 48.8857716 2.3541044, 48.8504347 2.4314438, 48.8610254 2.4043644, 48.8829422 2.3389787, 48.8827134 2.3392700, 48.8837950 2.3408773, 48.8547353 2.4047571, 48.8540245 2.4041009, 48.8531090 2.4041933, 48.8362746 2.3799012, 48.8548077 2.4024914, 48.8410576 2.3578991, 48.8379027 2.3622168, 48.8896006 2.3518695, 48.8900462 2.3528052, 48.8864490 2.3514284, 48.8536155 2.4272374, 48.8890423 2.3512616, 48.8304857 2.3687811, 48.8174246 2.3742341, 48.8128368 2.3764192, 48.8120404 2.3773825, 48.8148938 2.3807912, 48.8438184 2.3917913, 48.8437068 2.3928909, 48.8439659 2.3917683, 48.8450727 2.3568909, 48.8780035 2.3314460, 48.8778096 2.3307598, 48.8803348 2.3294897, 48.8774056 2.3403228, 48.8781707 2.3386731, 48.8267667 2.3461780, 48.8815116 2.3323814, 48.8359002 2.3851872, 48.8886875 2.3424733, 48.8889906 2.3376891, 48.8869431 2.3340831, 48.8463601 2.3221321, 48.8527181 2.3396862, 48.8527833 2.3410480, 48.8532112 2.3412359, 48.8417730 2.3427614, 48.8617532 2.3179590, 48.8618560 2.3159779, 48.8206480 2.3248645, 48.8768623 2.3691229, 48.8772883 2.3695438, 48.8771057 2.3693620, 48.8220818 2.3406030, 48.8128298 2.3994381, 48.8094512 2.3568109, 48.8287694 2.4142981, 48.8809374 2.3160134, 48.8807347 2.3164691, 48.8829009 2.4221515, 48.8811100 2.3337815, 48.8597264 2.3157312, 48.8557139 2.3217298, 48.8553446 2.3231883, 48.8785506 2.3181272, 48.8447796 2.3561187, 48.8845399 2.3422905, 48.8365860 2.4088069, 48.8834526 2.3381247, 48.8350302 2.3229459, 48.8864240 2.3585025, 48.8535383 2.3599226, 48.8891069 2.3528423, 48.8894333 2.3528954, 48.8383829 2.3526435, 48.8497046 2.3472459, 48.8499208 2.3484960, 48.8357495 2.4201011, 48.8518567 2.4315324, 48.8673886 2.3081022, 48.8598793 2.3418182, 48.8585468 2.3050047, 48.8586724 2.3043036, 48.8930516 2.3823863, 48.8734524 2.3184400, 48.8585495 2.3697593, 48.8551214 2.3667794, 48.8720448 2.3638224, 48.8269881 2.3813635, 48.8154257 2.3693478, 48.8880359 2.3475513, 48.8883050 2.3474950, 48.8914330 2.3583288, 48.8531376 2.3591975, 48.8534868 2.3580109, 48.8770568 2.3199182, 48.8922367 2.3349043, 48.8900253 2.3304354, 48.8829897 2.3212017, 48.8342316 2.3374870, 48.8340099 2.3429189, 48.8274884 2.3801293, 48.8290604 2.3809395, 48.8266865 2.3831325, 48.8721490 2.3074818, 48.8356655 2.3952828, 48.8309355 2.3188357, 48.8169801 2.3326668, 48.8171862 2.3326710, 48.8435052 2.3798226, 48.8739728 2.3816530, 48.8600229 2.4177244, 48.8099338 2.3549803, 48.8763148 2.3956363, 48.8764119 2.3969357, 48.8843112 2.3942965, 48.8774715 2.4094535, 48.8846727 2.3748818, 48.8450405 2.3861897, 48.8450429 2.3868906, 48.8816883 2.3771346, 48.8808497 2.3766792, 48.8815510 2.3750857, 48.8529376 2.3498716, 48.8668278 2.3572924, 48.8364952 2.3553473, 48.8632940 2.3461861, 48.8601711 2.3501538, 48.8755716 2.4302807, 48.8801143 2.3454788, 48.8799075 2.3455690, 48.8277981 2.3154241, 48.8279032 2.3155377, 48.8460593 2.4202742, 48.8491951 2.3058630, 48.8541404 2.4078003, 48.8298857 2.3251080, 48.8805161 2.3447973, 48.8618144 2.3501671, 48.8272177 2.3758665, 48.8771319 2.3510066, 48.8155707 2.3618421, 48.8311061 2.3707956, 48.8309407 2.3710819, 48.8773569 2.4091134, 48.8219955 2.3878984, 48.8662111 2.4021275, 48.8122006 2.3740480, 48.8123343 2.3762589, 48.8468517 2.4341743, 48.8909946 2.3627629, 48.8372824 2.3536632, 48.8373216 2.3574246, 48.8750669 2.3536609, 48.8692213 2.3188925, 48.8719584 2.3433543, 48.8686047 2.3172472, 48.8436840 2.4276811, 48.8219190 2.3244450, 48.8219850 2.3247398, 48.8219426 2.3245905, 48.8467850 2.3251369, 48.8462836 2.3235558, 48.8511937 2.3222055, 48.8296942 2.3584768, 48.8299997 2.3587358, 48.8299341 2.3586911, 48.8168230 2.3928886, 48.8286079 2.3568587, 48.8327500 2.3614988, 48.8278362 2.3125738, 48.8282836 2.3126823, 48.8280417 2.3131887, 48.8949881 2.3515874, 48.8955616 2.3520134, 48.8809350 2.3264027, 48.8090657 2.3819449, 48.8754439 2.4120443, 48.8773216 2.3529467, 48.8285767 2.3615644, 48.8293819 2.3669467, 48.8090347 2.3632916, 48.8947243 2.3931498, 48.8135760 2.3886946, 48.8932259 2.3829888, 48.8512194 2.3187772, 48.8522456 2.3181292, 48.8471019 2.3247687, 48.8470001 2.3226929, 48.8417737 2.3651037, 48.8125853 2.3763373, 48.8073168 2.3732555, 48.8522672 2.3477182, 48.8123506 2.3565837, 48.8383195 2.3374280, 48.8571958 2.3391696, 48.8431362 2.3363642, 48.8091478 2.3892131, 48.8102440 2.3887092, 48.8100329 2.3889998, 48.8778732 2.3448763, 48.8078587 2.3635380, 48.8089469 2.3605686, 48.8387116 2.3423289, 48.8160201 2.3517436, 48.8151473 2.3517766, 48.8154663 2.3525529, 48.8787317 2.3451434, 48.8639636 2.3365682, 48.8648781 2.3453619, 48.8654608 2.3452436, 48.8654581 2.3447052, 48.8680174 2.3629641, 48.8689660 2.3867820, 48.8664038 2.3589370, 48.8520802 2.3391533, 48.8521150 2.3390689, 48.8762399 2.3589688, 48.8582260 2.3619639, 48.8631176 2.3370916, 48.8911441 2.4016170, 48.8909995 2.4020035, 48.8508082 2.3229326, 48.8791134 2.3511109, 48.8864169 2.3618208, 48.8864340 2.3614342, 48.8558814 2.3436259, 48.8823814 2.3993385, 48.8944990 2.3592670, 48.8964589 2.3589627, 48.8527947 2.3434202, 48.8216373 2.3475784, 48.8330815 2.3668374, 48.8216584 2.3558548, 48.8812622 2.3574706, 48.8609269 2.3698207, 48.8424022 2.3750941, 48.8362418 2.3837098, 48.8576851 2.3638759, 48.8322980 2.3569968, 48.8385002 2.3585546, 48.8339976 2.3637695, 48.8464730 2.3488067, 48.8377337 2.3652831, 48.8281622 2.3666304, 48.8315682 2.3419531, 48.8623556 2.3500864, 48.8616089 2.3496811, 48.8621691 2.3497941, 48.8359536 2.3961945, 48.8369700 2.3923213, 48.8367414 2.3931438, 48.8365131 2.3940686, 48.8368162 2.3928761, 48.8367701 2.3930789, 48.8359858 2.3961013, 48.8364507 2.3941584, 48.8359582 2.3720488, 48.8501312 2.3265665, 48.8937959 2.3754227, 48.8311227 2.3287719, 48.8613752 2.3532868, 48.8310687 2.3580834, 48.8376458 2.3597357, 48.8377834 2.3597919, 48.8380568 2.3599624, 48.8844978 2.3727600, 48.8381491 2.3600725, 48.8386642 2.3604752, 48.8742587 2.3804890, 48.8341673 2.3359552, 48.8575005 2.3472864, 48.8371783 2.3183145, 48.8145327 2.3840043, 48.8214447 2.3591422, 48.8210623 2.3592593, 48.8119797 2.3874943, 48.8218804 2.3245575, 48.8527093 2.3602879, 48.8531920 2.3604680, 48.8530404 2.3610674, 48.8745907 2.3898579, 48.8534305 2.3611806, 48.8653830 2.3165628, 48.8296129 2.3926750, 48.8515079 2.3168432, 48.8882215 2.3616899, 48.8250915 2.3272543, 48.8693410 2.3746063, 48.8591586 2.3518205, 48.8889374 2.3632101, 48.8968807 2.3803671, 48.8969639 2.3803583, 48.8509181 2.3189475, 48.8542319 2.3268749, 48.8457364 2.3210560, 48.8592075 2.3037055, 48.8507795 2.3360424, 48.8570162 2.3089249, 48.8108721 2.3899672, 48.8206154 2.3475095, 48.8752457 2.3981892, 48.8827000 2.3887807, 48.8950879 2.3531779, 48.8902445 2.3700712, 48.8541664 2.3157121, 48.8541132 2.3157557, 48.8539619 2.3154328, 48.8540177 2.3153477, 48.8541884 2.3154181, 48.8541406 2.3153587, 48.8540042 2.3157232, 48.8539533 2.3156181, 48.8559512 2.3968571, 48.8519326 2.3362074, 48.8289311 2.3522542, 48.8290515 2.3543309, 48.8483103 2.4071371, 48.8773298 2.3590519, 48.8771212 2.3598815, 48.8774623 2.3585389, 48.8128779 2.3882875, 48.8118029 2.3877262, 48.8119848 2.3869608, 48.8123331 2.3876651, 48.8104708 2.3836750, 48.8785362 2.3899541, 48.8953032 2.3950120, 48.8146340 2.3862288, 48.8917906 2.3880857, 48.8804474 2.3717724, 48.8236528 2.3578565, 48.8294259 2.3490793, 48.8790551 2.3277605, 48.8735355 2.3941907, 48.8732271 2.3945941, 48.8759609 2.3987521, 48.8430807 2.3520816, 48.8503036 2.4003405, 48.8739041 2.3803935, 48.8848741 2.3903465, 48.8868864 2.3886278, 48.8141540 2.3817936, 48.8125256 2.3789216, 48.8150019 2.3823960, 48.8138255 2.3839438, 48.8182950 2.3790504, 48.8185151 2.3789924, 48.8182424 2.3792963, 48.8827947 2.3766007, 48.8791899 2.4159467, 48.8084189 2.3617428, 48.8765193 2.4054761, 48.8764855 2.4110985, 48.8795536 2.3888039, 48.8419025 2.3689354, 48.8418328 2.3267443, 48.8708153 2.3962847, 48.8690877 2.3940459, 48.8691603 2.3947196, 48.8693070 2.3944964, 48.8701494 2.3991414, 48.8712599 2.3980832, 48.8728892 2.3875476, 48.8713725 2.3876685, 48.8729646 2.3884918, 48.8850114 2.3914386, 48.8834688 2.3896341, 48.8831849 2.3891465, 48.8385749 2.3187258, 48.8702712 2.3823122, 48.8722797 2.3807151, 48.8718499 2.3804798, 48.8737574 2.3792665, 48.8775210 2.3961862, 48.8286377 2.3827691, 48.8619086 2.4076898, 48.8621437 2.4083353, 48.8625288 2.4074996, 48.8622745 2.4082713, 48.8387993 2.3824771, 48.8772523 2.3138827, 48.8832336 2.3770248, 48.8898779 2.3548839, 48.8682007 2.3776287, 48.8645929 2.3574911, 48.8423553 2.3450638, 48.8420396 2.3453568, 48.8416997 2.3451499, 48.8418628 2.3455995, 48.8416292 2.3454839, 48.8421950 2.3453702, 48.8424163 2.3444687, 48.8414902 2.3449983, 48.8778259 2.3969489, 48.8881806 2.3808335, 48.8782599 2.3873608, 48.8769600 2.3706426, 48.8748787 2.4038367, 48.8415610 2.3994713, 48.8955969 2.3451522, 48.8467200 2.3470841, 48.8782894 2.3331903, 48.8769906 2.3697835, 48.8596786 2.4069798, 48.8594021 2.3997394, 48.8601141 2.4028795, 48.8649288 2.3937547, 48.8642614 2.3918586, 48.8600166 2.4034662, 48.8513183 2.3726630, 48.8511850 2.3729689, 48.8584409 2.3999616, 48.8587442 2.3995311, 48.8586283 2.3998491, 48.8467973 2.4162423, 48.8772545 2.4007508, 48.8746784 2.4114959, 48.8814920 2.4234081, 48.8624222 2.3452825, 48.8815405 2.4234310, 48.8873550 2.3868767, 48.8672905 2.3881073, 48.8671749 2.3895295, 48.8675720 2.3882336, 48.8578750 2.3835897, 48.8458363 2.3888759, 48.8460746 2.3893660, 48.8463164 2.3899013, 48.8131691 2.3864703, 48.8711200 2.3063909, 48.8565883 2.3770985, 48.8580355 2.3622000, 48.8660080 2.3494045, 48.8564265 2.3525270, 48.8556537 2.3446071, 48.8664194 2.3321315, 48.8668152 2.3553741, 48.8648904 2.3619769, 48.8398451 2.3417030, 48.8563449 2.3387717, 48.8485531 2.3371422, 48.8703766 2.3166056, 48.8680414 2.3235560, 48.8798008 2.3249163, 48.8798182 2.3497802, 48.8499950 2.4366773, 48.8121167 2.3776573, 48.8927888 2.3646984, 48.8456220 2.4245835, 48.8673569 2.3780427, 48.8761075 2.3574980, 48.8931899 2.3643143, 48.8880610 2.3765878, 48.8553966 2.3450136, 48.8518176 2.3625735, 48.8484170 2.3908135, 48.8193348 2.3369542, 48.8469042 2.3571435, 48.8786169 2.3204526 +10 +yes +48.8756710 2.3261070, 48.8833658 2.3279263, 48.8604416 2.3503543, 48.8299110 2.3769622, 48.8692051 2.2839987, 48.8733783 2.3097112, 48.8835544 2.3321896, 48.8620454 2.3494700, 48.8671733 2.3471661, 48.8471103 2.2861907, 48.8736489 2.3149511, 48.8494586 2.2981124, 48.8589870 2.3482181, 48.8761646 2.3446559, 48.8509791 2.3426696 +yes +48.8345817 2.2682119, 48.8500136 2.3667732, 48.8681145 2.3380654, 48.8359896 2.2543613, 48.8648963 2.3741522, 48.8673891 2.3438562, 48.8967040 2.3381418, 48.8351044 2.3931231, 48.8461741 2.3758496, 48.8679797 2.3012890, 48.8765890 2.3553673, 48.8311173 2.3166315, 48.8680507 2.4015447, 48.8711850 2.4004090, 48.8758607 2.4010867, 48.8649034 2.3999292, 48.8372144 2.3529137, 48.8300678 2.3017796, 48.8279475 2.2677537, 48.8746753 2.3305365, 48.8280761 2.2982196, 48.8327631 2.3007414, 48.8361118 2.3069082, 48.8416104 2.2988863, 48.8302910 2.2937263, 48.8313277 2.2916043, 48.8317429 2.3726646, 48.8359742 2.3867660, 48.8519590 2.3400717, 48.8484401 2.3413672, 48.8589381 2.3504712, 48.8445443 2.3220878, 48.8217982 2.3682935, 48.8570291 2.3152687, 48.8459525 2.3549704, 48.8514526 2.3266647, 48.8531899 2.3355676, 48.8494503 2.3422354, 48.8600610 2.3493948, 48.8649810 2.2947036, 48.8650219 2.3030534, 48.8378229 2.3513432, 48.8434559 2.3050545, 48.8327500 2.3614988, 48.8754439 2.4120443 +20 +49.4333190 8.6867073, 49.4189644 8.6822373, 49.4199838 8.7597906, 49.4227392 8.5971994, 49.4313284 8.6416542, 49.3967496 8.6929283, 49.3758602 8.6941971, 49.4216061 8.6481916, 49.4437124 8.7590947, 49.4014041 8.6551906, 49.4213729 8.7461819, 49.3924724 8.6994716, 49.4143929 8.7631903, 49.3743420 8.6581351, 49.4078072 8.7077293, 49.4127417 8.7657609 +22 +56.1631627 -4.0361299, 56.0579055 -2.7157742, 56.3530826 -3.9635371, 55.8287678 -4.2703258, 56.3044702 -3.0869872, 55.8471806 -4.3930825, 56.1647483 -4.0417513, 55.8629358 -3.5615468, 56.0009229 -2.5146591, 55.9454585 -3.2689721 +142889 +1882 +yes +Royal Yacht Britannia, Talbot Rice Gallery, Prisoners of War Museum, Royal Scottish Academy, McCrea Gallery, Gallery, South Queensferry Museum, The Maltings, Museum on the Mound, Surgeon Hall Museum, National Museum of Scotland, National Museum of Scotland, The Queen's Gallery, St Cecilia's Hall, The Museum of Fire, The People's Story, Trinity Apse, Royal Botanic Garden Edinburgh - Herbarium & Library, Museum of Edinburgh, Writers' Museum +2.9914535290616175 +90 +49.4077140 8.6927035, 49.3855726 8.6640495, 49.4168625 8.6756639, 49.4068403 8.6904933, 49.4284156 8.6874863, 49.4302144 8.6880405, 49.4276933 8.6860070, 49.4315638 8.7010326, 49.4296821 8.6938275, 49.4306782 8.6925479, 49.4281154 8.6828785, 49.4302586 8.6908941, 49.4297762 8.6979174, 49.4309794 8.6977655, 49.4318269 8.7053464, 49.4300194 8.6994748, 49.4168759 8.6768373, 49.4127267 8.6759075, 49.4194980 8.6698006, 49.4191883 8.6668931, 49.4190627 8.6671538, 49.4195733 8.6753773, 49.4194276 8.6698926, 49.4172938 8.6611640, 49.4172721 8.6610628, 49.4187478 8.6629979, 49.4187979 8.6627535, 49.4141544 8.6690244, 49.4204352 8.6593168, 49.4204555 8.6593989, 49.4170560 8.6767755, 49.3937693 8.7085194, 49.3938278 8.7086843, 49.4264566 8.6606563, 49.4224030 8.6583261, 49.4225946 8.6583220, 49.4134695 8.6701162, 49.4141557 8.6687509, 49.4129744 8.6753927, 49.4134157 8.6700445, 49.4147123 8.6663554, 49.4146345 8.6663168, 49.4152208 8.6752144, 49.4137552 8.6734387, 49.4136968 8.6737990, 49.4152504 8.6634751, 49.4153592 8.6633318, 49.3868240 8.6666546, 49.3868275 8.6664977, 49.4197775 8.6517101, 49.4199177 8.6518537, 49.4384234 8.6338501, 49.4358366 8.6401002, 49.4327492 8.6421461, 49.4329387 8.6416659, 49.4179165 8.7590022, 49.4206903 8.7598065, 49.4225411 8.7563401, 49.4226681 8.7640695, 49.4169243 8.7611264, 49.4174495 8.7631349, 49.4192923 8.7353176, 49.4176518 8.7654281, 49.4261182 8.7466617, 49.4173643 8.7528312, 49.4228054 8.7602424, 49.4173460 8.7480328, 49.4174366 8.7440418, 49.4174907 8.7438854, 49.4173419 8.7495937, 49.4159882 8.7159505, 49.4201498 8.7291026, 49.4152724 8.7089320, 49.4152263 8.7091544, 49.4161997 8.7168545, 49.4200831 8.7290987, 49.3954264 8.6432043, 49.4095587 8.6406677, 49.4094042 8.6407930, 49.4103049 8.7749034, 49.4136480 8.7107879, 49.4137160 8.7131886, 49.4182027 8.7277515, 49.4157033 8.7420650, 49.4152701 8.7477273, 49.4160568 8.7561098, 49.4155446 8.7610937, 49.3999244 8.6912464, 49.4002825 8.6911005, 49.4347422 8.6819187, 49.4070390 8.6405121, 49.4069714 8.6403637, 49.4027266 8.6409639, 49.4025395 8.6408427, 49.4133018 8.7430485, 49.4012674 8.6413844, 49.3942358 8.6465359, 49.4092508 8.6685941, 49.3993998 8.6479989, 49.3982943 8.6422644, 49.3974295 8.6485846, 49.3959164 8.6490146, 49.4021200 8.6471601, 49.4121061 8.6413161, 49.4121708 8.6412132, 49.4219707 8.6425694, 49.4222511 8.6425281, 49.4235762 8.6458169, 49.4260817 8.6440645, 49.4265588 8.6449577, 49.4268035 8.6470831, 49.4269829 8.6469862, 49.4260042 8.6475244, 49.4240544 8.6489779, 49.4239525 8.6492278, 49.4168743 8.6533143, 49.4161379 8.6535560, 49.4124076 8.6582474, 49.4118670 8.6588264, 49.4100899 8.6637778, 49.4097893 8.6645706, 49.4085503 8.6677104, 49.4026633 8.6438993, 49.4024410 8.6437828, 49.4061329 8.6714869, 49.4043662 8.6769558, 49.4042794 8.6767159, 49.4043928 8.6767032, 49.4040938 8.6777606, 49.4041378 8.6780055, 49.4041963 8.6783706, 49.4075933 8.6747057, 49.4075056 8.6748798, 49.4078534 8.6762963, 49.4079283 8.6756934, 49.4078625 8.6803507, 49.4079068 8.6803518, 49.4079150 8.6852124, 49.4079624 8.6851808, 49.4084050 8.6884254, 49.4084670 8.6883986, 49.4101809 8.6928995, 49.4099846 8.6928532, 49.4095745 8.6932967, 49.4093811 8.6931694, 49.4092112 8.6929959, 49.4090525 8.6927592, 49.4302825 8.6446990, 49.4303150 8.6447831, 49.4288899 8.6456839, 49.4289721 8.6457461, 49.3786078 8.6590335, 49.3787155 8.6590931, 49.3810931 8.6606845, 49.3811782 8.6604324, 49.4149281 8.7582758, 49.4111209 8.7057655, 49.4173023 8.6816986, 49.4174942 8.6819993, 49.4129809 8.7053485, 49.4132415 8.7055842, 49.4133149 8.7054986, 49.4173515 8.6908888, 49.4171632 8.6912051, 49.4119771 8.6972359, 49.4120763 8.6972060, 49.4055633 8.6828676, 49.4049949 8.6822918, 49.4129282 8.7027762, 49.4126418 8.7016223, 49.4090720 8.7054522, 49.4083347 8.6981500, 49.4138680 8.6938162, 49.4069337 8.6900774, 49.4068742 8.6934775, 49.4088905 8.7053904, 49.4092125 8.7080457, 49.4095401 8.7091480, 49.4133887 8.7086161, 49.4151598 8.7205422, 49.4182485 8.7275341, 49.4157984 8.7426431, 49.4153793 8.7473689, 49.4104435 8.7751466, 49.4136898 8.7167012, 49.4124611 8.7128500, 49.4114089 8.7119309, 49.4112562 8.7115057, 49.4080587 8.6999304, 49.3937235 8.6855690, 49.3937838 8.6859112, 49.3899388 8.6862253, 49.3900908 8.6859962, 49.3858312 8.6864369, 49.3860976 8.6865748, 49.3819530 8.6822724, 49.3819840 8.6821416, 49.3804922 8.6881021, 49.3800650 8.6821589, 49.3777175 8.6772835, 49.3771295 8.6773280, 49.3738122 8.6784447, 49.3736962 8.6791919, 49.3737490 8.6815039, 49.3738435 8.6818076, 49.3766641 8.6824455, 49.3784086 8.6792130, 49.3800355 8.6822461, 49.4066901 8.6710527, 49.4040171 8.6483480, 49.4057590 8.6522413, 49.4064411 8.6585122, 49.4051217 8.6683796, 49.4253727 8.6567163, 49.4253613 8.6568355, 49.4234438 8.6461975, 49.4188582 8.6442546, 49.4189879 8.6443079, 49.4005092 8.6783953, 49.4016334 8.6747771, 49.4014940 8.6745939, 49.3971927 8.6809442, 49.3961103 8.6778109, 49.3961779 8.6783236, 49.3914363 8.6753605, 49.3911604 8.6749842, 49.3843368 8.6660809, 49.3842531 8.6664769, 49.3825480 8.6626222, 49.3831403 8.6627909, 49.3772388 8.6689312, 49.3773229 8.6689436, 49.3781667 8.6723583, 49.3781350 8.6726299, 49.3787183 8.6751466, 49.3788110 8.6751258, 49.3738788 8.6865123, 49.3740405 8.6860545, 49.3655576 8.6888060, 49.3658553 8.6886497, 49.3670459 8.6823339, 49.3654285 8.6795857, 49.3650262 8.6826858, 49.3664996 8.6849313, 49.3597566 8.6880203, 49.3598527 8.6880176, 49.3648944 8.6867095, 49.3647436 8.6865978, 49.3653795 8.6868243, 49.3651452 8.6862208, 49.3611702 8.7032598, 49.3612894 8.7033782, 49.3629117 8.7034330, 49.3631114 8.7036796, 49.3639586 8.7049521, 49.3641187 8.7058135, 49.3659753 8.7049280, 49.3657374 8.7052114, 49.3704326 8.7052320, 49.3695318 8.7040962, 49.3691105 8.7041929, 49.3692780 8.7050764, 49.3729729 8.7037385, 49.3731400 8.7035823, 49.3739301 8.7029888, 49.3721274 8.7013964, 49.3721220 8.7015090, 49.3740113 8.7029918, 49.4281502 8.6876267, 49.4054462 8.6926553, 49.4055795 8.6925319, 49.4020433 8.6916031, 49.4025059 8.6915946, 49.3969358 8.6946462, 49.3969527 8.6948626, 49.3962708 8.6967836, 49.3961279 8.6969793, 49.3887992 8.7077330, 49.3889428 8.7075494, 49.3899181 8.7053132, 49.3901409 8.7050848, 49.3774334 8.6874070, 49.3800760 8.7238428, 49.3802417 8.7237658, 49.3846718 8.7336368, 49.3847273 8.7335051, 49.3881453 8.7311804, 49.3883857 8.7310699, 49.3893290 8.7351786, 49.3895883 8.7352661, 49.4006965 8.7274404, 49.4007968 8.7272657, 49.4033828 8.7277656, 49.3805204 8.6870977, 49.3805140 8.6873637, 49.4589515 8.7514129, 49.3782108 8.7043138, 49.3761850 8.7067807, 49.3737465 8.7064043, 49.4191756 8.7354062, 49.4174141 8.7528303, 49.4192238 8.7569340, 49.4192230 8.7568052, 49.4225640 8.7538372, 49.4220804 8.7546816, 49.4251381 8.7519780, 49.4253655 8.7515645, 49.4280034 8.7495084, 49.4284732 8.7495741, 49.4315730 8.7477819, 49.4318477 8.7473809, 49.4348206 8.7492267, 49.4346751 8.7493846, 49.4376096 8.7520352, 49.4376232 8.7519794, 49.4444499 8.7540908, 49.4441710 8.7537297, 49.4482465 8.7533745, 49.4482704 8.7532635, 49.4499167 8.7541218, 49.4504464 8.7545196, 49.4230856 8.7427679, 49.4261390 8.7465756, 49.4302597 8.7467416, 49.4302371 8.7468460, 49.4164575 8.7655388, 49.4137204 8.6940432, 49.4263179 8.7597527, 49.4240075 8.7578458, 49.4221501 8.7604263, 49.4211341 8.7608916, 49.4196712 8.7607872, 49.4186692 8.7629025, 49.4178557 8.7612468, 49.4178881 8.7611566, 49.4149816 8.7726518, 49.4144395 8.7746592, 49.4135295 8.7754971, 49.4098676 8.7743915, 49.3737160 8.6879001, 49.4129531 8.6764014, 49.4128723 8.6767666, 49.3838528 8.7099294, 49.4157501 8.7290618, 49.3726463 8.6154130, 49.3728140 8.6139261, 49.4120632 8.7372505, 49.4134397 8.7383386, 49.4112928 8.7421773, 49.4174337 8.6856825, 49.3984594 8.6893414, 49.3935028 8.6864962, 49.3936030 8.6864812, 49.4171447 8.7317364, 49.3838673 8.6822397, 49.3837731 8.6820911, 49.4154769 8.7343957, 49.4155063 8.6920455, 49.4157703 8.6921648, 49.4124517 8.7507225, 49.4068321 8.7149530, 49.4070152 8.7149103, 49.4062811 8.7145104, 49.4178951 8.7278057, 49.4009711 8.7136432, 49.3741809 8.6875901, 49.3998313 8.6768307, 49.3867786 8.6622115, 49.3867521 8.6619723, 49.4150504 8.7200383, 49.3955093 8.7094471, 49.4064011 8.6905312, 49.4064324 8.6907065, 49.4064641 8.6908840, 49.4064968 8.6910579, 49.4088954 8.7128442, 49.4098287 8.6928288, 49.4131082 8.7212285, 49.4049329 8.6756419, 49.4182044 8.7563075, 49.4302758 8.6879496, 49.4173175 8.6870887, 49.3588442 8.7045913, 49.4012204 8.6724017, 49.3962812 8.6769601, 49.3993531 8.6716017, 49.3994314 8.6716997, 49.4042522 8.6786859, 49.4038577 8.6765425, 49.4047148 8.6787123, 49.3615177 8.7052485, 49.3692511 8.7041089, 49.3769454 8.6654592, 49.4048572 8.6761515, 49.4049714 8.6760919, 49.4050841 8.6755115, 49.3919748 8.6758663, 49.4192296 8.6763297, 49.4016551 8.6733745, 49.3813474 8.7062072, 49.3784192 8.6931866, 49.4063962 8.6915499, 49.4050422 8.6812130, 49.4221737 8.7059025, 49.3866840 8.6624233, 49.3867622 8.6626209, 49.4339873 8.6824450, 49.4276629 8.6834280, 49.4158996 8.7321408, 49.4149736 8.7726601, 49.4135275 8.7754964, 49.4182237 8.7277602, 49.4182571 8.7275619 +3 +7 +Kirkcaldy, Cowdenbeath, Dunfermline, South Queensferry, Linlithgow, Kincardine, Broxburn, Grangemouth, Bo'ness, Inverkeithing, Dalgety Bay, Rosyth, Haddington, Musselburgh, Cockenzie and Port Seton, Gullane, Prestonpans, Tranent, Polmont +yes +0 +Holiday Inn +133 +yes +55 +48.8210997 2.3589704, 48.8791473 2.3474694, 48.8645853 2.3050980, 48.8367928 2.3780749, 48.8188321 2.4576115, 48.8323659 2.2806907, 48.8608636 2.4139162, 48.8857931 2.2880907, 48.8964346 2.3097184, 48.8899579 2.3961548, 48.8235298 2.3100220, 48.8543067 2.2543634, 48.8219825 2.3796095, 48.8537201 2.3564387, 48.8658546 2.3540003, 48.8664342 2.2684904, 48.8260164 2.2988457, 48.8976500 2.3315770, 48.8374241 2.3354339 +yes +7 +48.8523642 2.2968670 +Parking Magenta, École de Médecine, Hôtel de Ville, Lobau Rivoli, Parking Lecourbe - Mairie du XVème, Maubert - Saint-Germain, Parking Marché Saint-Germain, Lutèce, Saint-Michel, Parking Velpeau-Boucicaut, Saint-Sulpice, Parking Bastille, Parking Aquaboulevard, Parking Gaité-Montparnasse, Rennes Montparnasse, Parking Maine Montparnasse, Lyon Diderot, Parc Paris-Lyon, Parc Beaubourg, Saint-Germain des Prés, Garage Sully, Bac-Montalembert, Kléber Longchamp, Parking de l'Europe, Madeleine Tronchet, Berri Ponthieu, Garage Mansart, Parc Méditérannée, Parc Vincent Auriol - Bibliothèque, Bourse, Citroën Cévennes, Pasteur-Montparnasse, Hector Malot, Lobau Rivoli, Petits Champs, Opéra Bastille, Saint-Éloi, Rivoli - Pont Neuf, Saint-Germain l'Auxerrois, Le Louvre Parking, Sébastopol, Pyramides, Pyramides, Vendôme, Réaumur Saint-Denis, Centre Pompidou, Baudoyer, Saint-Martin, Daumesnil, Rond-Point, Concorde, Concorde, Malesherbes Anjou, Malesherbes Anjou, Franz Liszt, Haussmann - Printemps, Bergson, Villiers, Haussmann Berri, Haussmann Berri, Claridge, Élysées Ponthieu, George V, Champs-Élysées - George V, Berri - Washington, Champs-Élysées, Pierre Charron, François 1er, Alma Georges V, Alma Georges V, Marceau Étoile, Étoile Friedland, Étoile Friedland, Hoche, Hoche, Ternes, holiday inn - parking, Parking Cité des Sciences de la Villette, Parking Zenpark Rue Bichat, autocité, Patriarches, Étoile - Foch, Étoile - Foch, Porte Maillot, Étoile - Foch, Passy, Montholon, B, Soufflot Panthéon, 202, Lagrange, Soufflot Panthéon, Gay-Lussac, A, C, La Tour Maubourg, Invalides, Haussmann - Galeries Lafayette, Opéra Meyerbeer, Parking Du Mail, Gare du Nord, Euronort Lariboisière, Ledru Rollin Parking SA, Faubourg Saint-Antoine, Leroy Merlin, Picpus Nation, Tolbiac-Bibliothèque, Pont Marie, Haussman Printemps, Ternes, Les parking du midi, Parking square d'Anvers, Parking Turbigo - Saint-Denis, Gare du Nord, Parking Bercy Lumière, Parking Rambuteau, Parking Zenpark - Rue de Bagnolet, Bercy - Autocars, Gare du Nord, Alhambra, Océane, Tour Montparnasse, Bercy Saint-Émilion, Grand Garage Duchemin, Parking Saint-Lazare - Rue de Rome, Mac-Mahon, Mac-Mahon, Ternes, Carnot, Carnot, Champerret Yser, Porte des Lilas, Parking Camille Desmoulins, Custine Automobiles, Lebouteux 13, La Villette Cité de la Musique, Gare de l'Est - P1 Alsace, Gare de l'Est - P2 Saint-Martin, Parking Public Bercy (Novotel - Ibis), Notre-Dame, Parking Zenpark Alexandre Dumas, Parking Zenpark Bastille, Parking Zenpark Bercy, Parking Zenpark Caumartin, Parking Zenpark Château, Parking Zenpark Cité Blanche, Parking Zenpark Eure, Parking Zenpark Grands Boulevards, Parking Zenpark Stalingrad, Parking Zenpark Saint-Michel, Parking Zenpark - Grands Boulevards, Parking Zenpark Bercy, Parking Zenpark Neuve Tolbiac, Parking Zenpark Quai de Seine, Parking Zenpark Champs-Elysées - Roosevelt, Zenpark Paris - Nationale, Parking Clichy-Montmartre, Parking Gare de Bercy, parking souterrain de Radio France, Port de la Conférence, Cour de l'Est, Parking du Pont de l'Europe, Parc Trinité, Lilas Box, Saxe, Maillot-Pereire, Parking du Complexe "Étoile Lilas", Dépose minute, Parking Auguste Blanqui Abonnés +Azerbaijan, El Salvador, Mio, Mitte-Ndnn-Bar +23 +55.9162285 -3.2851455, 55.9407230 -3.2810409, 55.8845441 -3.3397807, 55.9053902 -3.1342693, 55.9221422 -3.3804954, 55.9714310 -3.2540033, 55.9362567 -3.1797890, 55.9331942 -3.1367474, 55.9426871 -3.1890489, 55.9134798 -3.1349607, 55.9400832 -3.2183795, 55.9552887 -3.4015520, 55.8960844 -3.3110681, 55.9365871 -3.1798120, 55.9322476 -3.1281129, 55.9533601 -3.1167696, 55.9087640 -3.3221593, 55.9550388 -3.1422629, 55.9514274 -3.1780862, 55.9482833 -3.1925126, 55.9485816 -3.1916892, 55.9320754 -3.1797041, 55.9289038 -3.2099695, 55.9372576 -3.2484056, 55.9613330 -3.1814329, 55.9754880 -3.1800099, 55.9908863 -3.4005664, 55.9052853 -3.2234270, 55.9714662 -3.2541142, 55.9616399 -3.2609726, 55.9767290 -3.2268402, 55.9067248 -3.2514090, 55.9554111 -3.2871171, 55.9589115 -3.2077864, 55.9484995 -3.1924483 +48.8454066 2.3605950 +yes +55.9676146 -3.1851220, 55.9389438 -3.1762512, 55.9342812 -3.1910903, 55.9468366 -3.1927193, 55.9242044 -3.2136831, 55.9267237 -3.2541012, 55.9399653 -3.2243647, 55.9530161 -3.2227017, 55.9543705 -3.2231752, 55.9138101 -3.1625880, 55.9139003 -3.1561271, 55.9021949 -3.1741206, 55.9311802 -3.1650916, 55.9535325 -3.1763565, 55.9591815 -3.2287132, 55.9369373 -3.2288584, 55.9293858 -3.1242296, 55.9546952 -3.1369685, 55.9449273 -3.0904981, 55.9265280 -3.1510008, 55.9684639 -3.1977758, 55.9668042 -3.1974105, 55.9696978 -3.1493775, 55.9540571 -3.1860764, 55.9719475 -3.1703032, 55.9456846 -3.1922146, 55.9093414 -3.2564463, 55.9087839 -3.2561638, 55.9085715 -3.2558102, 55.9631536 -3.1680074, 55.9534939 -3.1859938, 55.9535098 -3.1860262 +Greggs, Malone's Bakeries, Gregg's, Douglas's Bakery, Masons Bakery, Roll Up, Gregg's, Barnton Fine Foods, La Croissanterie, Mathiesons Bakers, Greggs, Storries Home Bakery, Morrison's Bakery, Greggs, Gregg's Bakery, Greggs, Greggs, Patissier Maxine, Patisserie Valerie, Bibi's Cake Boutique, Greggs, Dough Re Mi, Dough Re Mi, The Pine Tree Bakery, Donachie Bakers, Bayne's, Goodfellow & Steven, Greggs, Bakery Andante, Greggs, Greggs, Bayne's, Artisan Bakehouse, Nikki's Cakes, Goodfellow & Steven, Edinburgh Bakehouse, Greggs, Greggs, Bonningtons, The Wee Boulangerie, Jacob, Licks Cake Design, Greggs, Greggs, Mr Bun's Bakery, Glenvarloch Bakery, Archipelago Bakery, Sicilian Pastry Shop, Melinda's Cake Boutique, Malone's Bakery, Greggs, 1, Greggs +0 +55.9748673 -3.2157799 +yes +Villa Padjarkan +48.8373758 2.3176784, 48.8379602 2.2583959, 48.8410120 2.3066005, 48.8570028 2.3007925, 48.8579137 2.3005660, 48.8318670 2.3144693, 48.8689224 2.3335350, 48.8395609 2.3021892, 48.8375207 2.2967192, 48.8375266 2.2960585, 48.8276825 2.3271004, 48.8501002 2.3428094, 48.8554073 2.3268543, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8529470 2.3434116, 48.8488712 2.2873446, 48.8189960 2.3382666, 48.8722818 2.3462050, 48.8330519 2.3316747, 48.8367776 2.2983375, 48.8357338 2.3020633, 48.8642296 2.2884865, 48.8644747 2.2879509, 48.8645963 2.2880351, 48.8649321 2.2883111, 48.8654525 2.2886812, 48.8667948 2.2896169, 48.8677281 2.2909720, 48.8717354 2.3404728, 48.8344235 2.3052236, 48.8750824 2.3241658, 48.8831483 2.3273794, 48.8563547 2.3050003, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8546797 2.3051724, 48.8870858 2.3139323, 48.8896917 2.3219420, 48.8839932 2.3218563, 48.8830031 2.2877361, 48.8374001 2.2957684, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8789432 2.3031398, 48.8815632 2.3004421, 48.8844267 2.2977130, 48.8855270 2.2969790, 48.8849249 2.2981974, 48.8846750 2.2981530, 48.8773919 2.3395256, 48.8737979 2.3160522, 48.8384262 2.2988961, 48.8840917 2.3224995, 48.8379252 2.2975063, 48.8384650 2.2984232, 48.8386614 2.2988499, 48.8388963 2.2993041, 48.8807958 2.3003045, 48.8423511 2.2814155, 48.8529207 2.3436323, 48.8386703 2.2822723, 48.8633059 2.3340632, 48.8647135 2.3426384, 48.8648693 2.3427189, 48.8630681 2.3412176, 48.8634071 2.3418915, 48.8660175 2.3407258, 48.8673651 2.3318225, 48.8656306 2.3303026, 48.8690399 2.3387540, 48.8697491 2.3403685, 48.8695691 2.3402609, 48.8686652 2.3421761, 48.8689050 2.3327814, 48.8674306 2.3462505, 48.8578234 2.2746494, 48.8583112 2.2754219, 48.8518893 2.3417124, 48.8421221 2.3217245, 48.8521680 2.3314230, 48.8447287 2.3244719, 48.8428059 2.3239714, 48.8489183 2.3392705, 48.8506265 2.3304803, 48.8485082 2.3285161, 48.8508389 2.3266905, 48.8427653 2.3300120, 48.8420145 2.3302544, 48.8440612 2.3225950, 48.8442156 2.3244262, 48.8473522 2.3183754, 48.8711649 2.3221410, 48.8726629 2.3106385, 48.8732419 2.3115596, 48.8744495 2.3205466, 48.8752230 2.3264851, 48.8740876 2.3267342, 48.8778017 2.3225743, 48.8797413 2.3271672, 48.8830756 2.3269207, 48.8833400 2.3254009, 48.8813674 2.3151235, 48.8810818 2.3162341, 48.8786152 2.3156839, 48.8767711 2.3179268, 48.8778569 2.3059734, 48.8794539 2.3032046, 48.8749659 2.3041948, 48.8745760 2.3048788, 48.8687291 2.3014159, 48.8664956 2.3016793, 48.8677909 2.2995151, 48.8686254 2.2992361, 48.8725861 2.3019868, 48.8784635 2.2987871, 48.8698436 2.3061758, 48.8720243 2.2934411, 48.8684366 2.2915095, 48.8714262 2.2899337, 48.8689351 2.2833107, 48.8696967 2.2845776, 48.8694565 2.2845446, 48.8700723 2.2857876, 48.8690091 2.2852941, 48.8691634 2.2851996, 48.8749903 2.2860127, 48.8759692 2.2834989, 48.8748643 2.2834193, 48.8690546 2.2835943, 48.8655496 2.2837039, 48.8657006 2.2836110, 48.8667831 2.2790363, 48.8664481 2.2772490, 48.8659840 2.2742050, 48.8633053 2.2742098, 48.8624073 2.2760147, 48.8593999 2.2774250, 48.8583220 2.2745520, 48.8584493 2.2748476, 48.8580404 2.2776736, 48.8411414 2.3136506, 48.8760516 2.3450644, 48.8557164 2.2701238, 48.8417733 2.3185097, 48.8559683 2.2711042, 48.8369684 2.2533009, 48.8394820 2.3097854, 48.8502874 2.2762982, 48.8781855 2.2878593, 48.8362844 2.3061932, 48.8535026 2.2653555, 48.8491712 2.2665706, 48.8233119 2.3260789, 48.8475928 2.2669653, 48.8484138 2.2647127, 48.8478601 2.2637874, 48.8485576 2.2650178, 48.8454405 2.2582420, 48.8485516 2.2751179, 48.8415500 2.2669376, 48.8399984 2.2627388, 48.8307191 2.3193023, 48.8304006 2.3192272, 48.8758150 2.2867065, 48.8465904 2.3434584, 48.8481836 2.3416278, 48.8504365 2.3250405, 48.8439434 2.3420437, 48.8461211 2.3404463, 48.8480122 2.2605847, 48.8589930 2.3030851, 48.8417910 2.3293787, 48.8474457 2.3180776, 48.8478498 2.3111276, 48.8645339 2.3458426, 48.8452289 2.2582589, 48.8809021 2.3403319, 48.8455537 2.3108109, 48.8450445 2.3104567, 48.8474933 2.3107909, 48.8394375 2.2918836, 48.8514163 2.3135568, 48.8426729 2.3023971, 48.8431492 2.3040014, 48.8431097 2.3128917, 48.8673662 2.3064825, 48.8263809 2.3414522, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8278525 2.3262538, 48.8388287 2.2816271, 48.8397112 2.3025357, 48.8396385 2.3018330, 48.8283319 2.3249564, 48.8500696 2.2886536, 48.8560015 2.3425743, 48.8544203 2.3257043, 48.8588998 2.2749555, 48.8585344 2.2751198, 48.8768988 2.3387135, 48.8620598 2.2758197, 48.8632226 2.2764809, 48.8643683 2.2780086, 48.8682336 2.2816544, 48.8683009 2.2818137, 48.8716652 2.3369422, 48.8724813 2.3352798, 48.8768502 2.3324723, 48.8715356 2.3340932, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8751634 2.3407635, 48.8696664 2.3354448, 48.8640573 2.3358570, 48.8580367 2.3228472, 48.8468273 2.3109956, 48.8727906 2.3327950, 48.8371620 2.2788430, 48.8260463 2.3458083, 48.8275711 2.3258960, 48.8274068 2.3262715, 48.8390681 2.2569423, 48.8549374 2.3061290, 48.8709866 2.3363950, 48.8848997 2.3377794, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8509779 2.2927923, 48.8550471 2.2699500, 48.8418785 2.2997087, 48.8442816 2.3244689, 48.8391384 2.2822010, 48.8854990 2.3103821, 48.8276838 2.3319307, 48.8701182 2.3328493, 48.8430494 2.2949889, 48.8416006 2.3224232, 48.8430431 2.3223965, 48.8850396 2.3205857, 48.8860872 2.3177587, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8804253 2.3287401, 48.8743336 2.3345374, 48.8301847 2.3456951, 48.8425418 2.2920002, 48.8340558 2.2901416, 48.8330244 2.2891177, 48.8334343 2.2890580, 48.8642191 2.3423423, 48.8638673 2.3421689, 48.8815429 2.2914706, 48.8838668 2.3274744, 48.8889565 2.3226941, 48.8937935 2.3362303, 48.8915892 2.3347229, 48.8975742 2.3374320, 48.8959308 2.3457254, 48.8906192 2.3344868, 48.8929700 2.3402831, 48.8931959 2.3273644, 48.8938006 2.3360065, 48.8928237 2.3276058, 48.8927037 2.3270855, 48.8950865 2.3279515, 48.8927798 2.3416901, 48.8357045 2.2898603, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8507185 2.3452276, 48.8506024 2.2921760, 48.8434041 2.2832488, 48.8441583 2.2814225, 48.8601040 2.2800860, 48.8555902 2.2705124, 48.8709674 2.2927276, 48.8701195 2.2926560, 48.8607663 2.2829855, 48.8742509 2.3267610, 48.8674435 2.3066185, 48.8760737 2.3314470, 48.8314530 2.3131078, 48.8366420 2.3235880, 48.8798460 2.2882480, 48.8706907 2.3018397, 48.8711468 2.3021857, 48.8442760 2.3236880, 48.8443641 2.3231615, 48.8412683 2.3182655, 48.8750168 2.2842019, 48.8274443 2.3054531, 48.8642610 2.2877420, 48.8260781 2.3450782, 48.8257972 2.3453018, 48.8265662 2.3114209, 48.8266741 2.3089333, 48.8348018 2.2835149, 48.8289555 2.3008177, 48.8425217 2.2605998, 48.8399979 2.2631418, 48.8393773 2.2626930, 48.8445716 2.2773781, 48.8423827 2.2779816, 48.8393433 2.2612518, 48.8382522 2.2590990, 48.8556190 2.3071441, 48.8831104 2.3242250, 48.8522552 2.3385407, 48.8466920 2.2861937, 48.8464464 2.2864898, 48.8462140 2.2863069, 48.8471256 2.2857626, 48.8467862 2.2850085, 48.8737876 2.3254797, 48.8757911 2.3276502, 48.8853087 2.2914432, 48.8666300 2.3441053, 48.8751073 2.3063372, 48.8761128 2.3302242, 48.8760136 2.3310108, 48.8628914 2.2767409, 48.8326928 2.3011680, 48.8434103 2.2931530, 48.8367477 2.3065081, 48.8396815 2.2927792, 48.8759800 2.3435799, 48.8602282 2.3444320, 48.8442882 2.3080071, 48.8528372 2.2900682, 48.8524061 2.2912571, 48.8529003 2.2907372, 48.8504014 2.2929658, 48.8781331 2.2973879, 48.8310392 2.3425080, 48.8235069 2.3253377, 48.8314166 2.3251141, 48.8747610 2.3399353, 48.8610529 2.3020976, 48.8742737 2.3172451, 48.8788807 2.2940470, 48.8790502 2.2932877, 48.8787213 2.2930870, 48.8860790 2.2927720, 48.8862920 2.2922300, 48.8860610 2.2916910, 48.8815650 2.2950420, 48.8816640 2.2951850, 48.8698720 2.3253770, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8767675 2.3414635, 48.8801010 2.2887410, 48.8518237 2.3263371, 48.8518410 2.3270180, 48.8520482 2.3269387, 48.8896590 2.3042630, 48.8523174 2.3400938, 48.8480411 2.3409988, 48.8487519 2.3414295, 48.8763180 2.3309180, 48.8260443 2.3266660, 48.8255907 2.3265438, 48.8843962 2.3388368, 48.8841050 2.3049810, 48.8840570 2.3045230, 48.8835710 2.3045840, 48.8837420 2.3043460, 48.8315966 2.3304662, 48.8818980 2.3374100, 48.8497330 2.3457635, 48.8448871 2.2941778, 48.8452118 2.2941040, 48.8454696 2.2946866, 48.8702024 2.2869885, 48.8711617 2.3300722, 48.8403727 2.3337448, 48.8349994 2.3046409, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8313376 2.3296145, 48.8512137 2.3425994, 48.8648399 2.3394096, 48.8726368 2.3332498, 48.8733021 2.3461422, 48.8717746 2.2995211, 48.8347313 2.3458453, 48.8388397 2.3227192, 48.8791073 2.2907296, 48.8766198 2.2875734, 48.8680414 2.3235560 +93 +830 +Avenue du Général Leclerc, Avenue des Champs-Élysées, Boulevard du Montparnasse, Avenue des Champs-Élysées, Boulevard Brune, Boulevard Lefebvre, Avenue Émile Zola, Place Étienne Pernet, Rue de Longchamp, Rue de Longchamp +56 +49.4147206 8.7190868, 49.4104788 8.7037801, 49.4103985 8.7029994, 49.4073655 8.6761401, 49.4114393 8.7049112, 49.4105716 8.7092257, 49.3964318 8.6793231 +yes and 55.9186497 -3.1972073 +55.9035370 -4.3545470, 55.8144822 -4.1906873 +Édimbourg +Heiliggeistkirche and 49.4120976 8.7096738 +14 +275 +yes +yes +yes +55.9759087 -3.2152346 +yes +yes +51.0844645 13.6487103, 51.0273756 13.7474285, 51.0823918 13.7335753, 51.0824545 13.7336039, 51.0825170 13.7336323, 51.0829896 13.7332707, 51.0828616 13.7332262, 51.0827595 13.7331813, 51.0826580 13.7331399, 51.0825999 13.7331126, 51.0825362 13.7330866, 51.0827583 13.7327555, 51.0832603 13.7324804, 51.0831002 13.7336158, 51.0795251 13.6564388, 51.0803520 13.6560575, 51.0797631 13.6570269, 51.0805189 13.6559334, 51.0798370 13.6570887, 51.0801264 13.6570556, 51.0798991 13.6571398, 51.0798900 13.6567596, 51.0800585 13.6558509, 51.0795075 13.6568246, 51.0800106 13.6572306, 51.0802644 13.6565229, 51.0801590 13.6559327, 51.0796771 13.6569580, 51.0801474 13.6574467, 51.0795919 13.6568858, 51.0799591 13.6557717, 51.0806719 13.6547946, 51.0844031 13.6492495, 51.0844377 13.6491173, 51.0845865 13.6492686, 51.0848005 13.6481637, 51.0560319 13.6534353, 51.1129021 13.7134784, 51.0870850 13.7344070, 51.0879019 13.7346740, 51.0872746 13.7345070, 51.0400501 13.6372683, 51.0400368 13.6376398, 51.0397949 13.6376750, 51.0398668 13.6372683, 51.0396860 13.6366848, 51.0395593 13.6369259, 51.0392180 13.6369677, 51.0396431 13.6373610, 51.0396199 13.6371140, 51.0392895 13.6367341, 51.1523082 13.7957194, 51.1532344 13.7957454, 51.1521680 13.7957598, 51.1520584 13.7957188, 51.1536728 13.7955165, 51.1520531 13.7963601, 51.1522370 13.7957382, 51.0847930 13.6490593, 51.0849131 13.6491394, 51.0845156 13.6488769, 51.0847316 13.6490137, 51.0849792 13.6491835, 51.0844573 13.6488382, 51.0848531 13.6490969, 51.0685627 13.6241474, 51.0695246 13.6253081, 51.0699998 13.6237618, 51.0683859 13.6251032, 51.0701737 13.6247207, 51.0683173 13.6249097, 51.0694974 13.6255021, 51.0679836 13.6227283, 51.0698285 13.6245618, 51.0682702 13.6249019, 51.0700321 13.6235780, 51.0699302 13.6241295, 51.0706362 13.6240940, 51.0699677 13.6239464, 51.0699803 13.6233425, 51.0698958 13.6243490, 51.0683476 13.6228519, 51.0703047 13.6239192, 51.0681631 13.6226829, 51.0681586 13.6222257, 51.0705447 13.6245614, 51.0704860 13.6238946, 51.1190382 13.7795044, 51.0400538 13.6374139, 51.0422774 13.6356744, 51.0419915 13.6350658, 51.0422431 13.6350551, 51.0423833 13.6350452, 51.0422138 13.6356743, 51.0424026 13.6345030, 51.0424536 13.6356798, 51.0419222 13.6347316, 51.0425869 13.6359640, 51.0424255 13.6347004, 51.0423683 13.6356861, 51.0419113 13.6345174, 51.0423088 13.6353555, 51.0432389 13.7577645, 51.0436111 13.7590246, 51.1521334 13.7973645, 51.1521117 13.7971177, 51.1520977 13.7967766, 51.1526180 13.7960916, 51.1531397 13.7962202, 51.1521522 13.7975794, 51.0542981 13.6500944, 51.0444714 13.6375970, 51.0445916 13.6380352, 51.0452089 13.6382144, 51.0448329 13.6384755, 51.0420013 13.6356697, 51.0419801 13.6353571, 51.0449595 13.6381873, 51.0450957 13.6377784, 51.0451578 13.6382089, 51.0451645 13.6385095, 51.0445991 13.6376131, 51.0447789 13.6380437, 51.0449673 13.6384880, 51.0451001 13.6385027, 51.0450315 13.6384948, 51.0450594 13.6382009, 51.0416818 13.6350996, 51.0450879 13.6379787, 51.0454522 13.6334655, 51.0444342 13.6335000, 51.0444346 13.6335829, 51.0453155 13.6342072, 51.0453139 13.6338984, 51.0446628 13.6337701, 51.0446591 13.6334707, 51.0453174 13.6340041, 51.0453155 13.6341049, 51.0451033 13.6335278, 51.0444341 13.6336615, 51.0288807 13.7029059, 51.0288738 13.7030353, 51.0644000 13.6702199, 51.0645429 13.6701187, 51.0634300 13.6708257, 51.0629448 13.6704116, 51.0631020 13.6703333, 51.0643496 13.6698018, 51.0644680 13.6697240, 51.0644477 13.6701873, 51.0636715 13.6706991, 51.0634927 13.6708243, 51.0635567 13.6707778, 51.0643411 13.6702497, 51.0644908 13.6701611, 51.0644102 13.6697624, 51.0630231 13.6703734, 51.0641429 13.6701305, 51.0634263 13.6702687, 51.0639096 13.6702519, 51.0091874 13.7517437, 51.0791960 13.7360348, 51.0794212 13.7358213, 51.0870710 13.7344832, 51.0142964 13.7502569, 51.0640528 13.6635614, 51.0638879 13.6639550, 51.0641915 13.6639163, 51.0641879 13.6640152, 51.0638942 13.6637425, 51.0641939 13.6638145, 51.0639733 13.6633695, 51.0638080 13.6677778, 51.0632291 13.6683586, 51.0629009 13.6680561, 51.0636169 13.6676692, 51.0631196 13.6683612, 51.0628342 13.6680588, 51.0636968 13.6679241, 51.0545652 13.6571661, 51.0544809 13.6571568, 51.0545984 13.6575051, 51.0565349 13.6490424, 51.0580882 13.6488216, 51.0546570 13.6508731, 51.0571567 13.6545872, 51.0556063 13.6475528, 51.0569011 13.6540618, 51.0561655 13.6542541, 51.0546351 13.6507613, 51.0559429 13.6545543, 51.0571677 13.6557061, 51.0545624 13.6504539, 51.0568417 13.6544648, 51.0569245 13.6550228, 51.0568989 13.6556656, 51.0570603 13.6550313, 51.0567548 13.6539175, 51.0569839 13.6545736, 51.0570223 13.6555839, 51.0563415 13.6551338, 51.0557576 13.6480748, 51.0560964 13.6490288, 51.0556641 13.6496888, 51.0559435 13.6495665, 51.0561604 13.6490052, 51.0559214 13.6494670, 51.0561791 13.6494340, 51.0557350 13.6491827, 51.0562316 13.6494131, 51.0561324 13.6494525, 51.0562531 13.6489722, 51.0414360 13.6346991, 51.0537377 13.6809286, 51.0869121 13.6263809, 51.0864569 13.6264478, 51.0868109 13.6272543, 51.0865604 13.6261106, 51.0868648 13.6272874, 51.0863500 13.6267865, 51.0863754 13.6267068, 51.0864006 13.6266273, 51.0865935 13.6259527, 51.0865248 13.6262863, 51.0869641 13.6261298, 51.0869379 13.6262564, 51.0864323 13.6265290, 51.0687005 13.7630620, 51.0645983 13.6700479 +51.7468515 10.3624120 +55.9399419 -3.2040169 +Saint Columba's by the Castle and 55.9482972 -3.1955031 +55.9923452 -3.3344481, 55.8510441 -3.3315277, 55.9486773 -3.2003994, 55.9326054 -3.1487771, 55.9145657 -3.1773811, 55.9750379 -3.4145918, 55.9256295 -3.1408721 +yes +48.8527413 2.3333559 +yes +yes +no +49.3783407 8.6911080, 49.4282176 8.6862044, 49.4105621 8.7153069, 49.4282546 8.6861813 +yes +49.4129429 8.7045098, 49.4081527 8.6735594, 49.4176558 8.6587085, 49.4165055 8.6594547, 49.4148711 8.6635210, 49.4185873 8.7563730, 49.4171886 8.7613146, 49.4078352 8.6858842, 49.4077166 8.6770507, 49.4076619 8.6829409, 49.4079762 8.6870498, 49.4061197 8.6920317, 49.4058917 8.6902904, 49.4146832 8.6923348, 49.4144086 8.6920334, 49.4131784 8.7101075, 49.4074805 8.6879067, 49.4066312 8.6852959, 49.4091366 8.6592347, 49.4129225 8.7239221, 49.4136373 8.6927118, 49.4112725 8.7119074, 49.4095367 8.7037082, 49.4169935 8.6914785, 49.4146001 8.7738410, 49.4376003 8.7518747, 49.4124368 8.7095147, 49.4127909 8.7133593, 49.4135426 8.7142038, 49.4288015 8.6872183, 49.4142986 8.6902743, 49.4136357 8.6943202, 49.4258813 8.6617121, 49.4139051 8.6920559, 49.4162757 8.6922037, 49.4306151 8.6467040, 49.4104204 8.7158634, 49.4257744 8.6577657, 49.4139993 8.6932058, 49.4131782 8.7072377, 49.4129985 8.7075880, 49.4128971 8.7089006, 49.4121728 8.7080504, 49.4123763 8.7095125, 49.4127246 8.7091094, 49.4132139 8.7078103, 49.4079479 8.6956416, 49.4121887 8.7014037, 49.4119811 8.7001029, 49.4118690 8.6989413, 49.4130878 8.7091392, 49.4131986 8.7088233, 49.4076691 8.6751190, 49.4076624 8.6922255, 49.4083867 8.6927384, 49.4119138 8.7090833, 49.4119011 8.7089353, 49.4115665 8.7029371, 49.4115772 8.7046048, 49.4117134 8.7084690, 49.4091521 8.6979357, 49.4131305 8.6546204, 49.4140289 8.6610942, 49.4178759 8.6766696, 49.4213757 8.6586938, 49.4092258 8.7140567, 49.4070439 8.6949350, 49.4117441 8.7092576, 49.4110740 8.7008373, 49.4114705 8.7022980, 49.4115939 8.7046894, 49.4116506 8.7051386, 49.4119604 8.7038095, 49.4118295 8.7066501, 49.4116479 8.7066124, 49.4117726 8.7067669, 49.4117492 8.7058025, 49.4117230 8.7087903, 49.4122865 8.7059453, 49.4124399 8.7105960, 49.4111189 8.7110358, 49.4131432 8.7133745, 49.4081055 8.6756660, 49.4062164 8.6906512, 49.4061045 8.6919006, 49.4129103 8.7014032, 49.4106934 8.7057683, 49.4247718 8.6874951, 49.4203724 8.7396448, 49.4382046 8.6794526, 49.4373909 8.6752550, 49.4087049 8.7054045, 49.4136428 8.6936066, 49.4130575 8.7096585, 49.4115837 8.7106378, 49.4114155 8.7034039, 49.4079188 8.6896894, 49.4082939 8.6917604, 49.4084511 8.6746131, 49.4061961 8.6789422, 49.4179298 8.7611063, 49.4132974 8.7097572, 49.4125123 8.7110100, 49.4071802 8.6893369, 49.4078499 8.6884637, 49.4278664 8.6462916, 49.4181473 8.7565975, 49.4104061 8.7157086, 49.4108151 8.7149178, 49.4094481 8.7011221, 49.4068117 8.6707739, 49.4066118 8.6751595, 49.4118680 8.7106616, 49.4252823 8.6480351, 49.4190959 8.6518895, 49.4085554 8.6900358, 49.4234431 8.6469231, 49.4177824 8.6425471, 49.4227696 8.6727444, 49.4156100 8.6707017, 49.4162463 8.6598488, 49.4071975 8.6762084, 49.4096282 8.6811489, 49.4147851 8.6501119, 49.4282302 8.6874448, 49.4255887 8.6891453, 49.4254663 8.6892002, 49.4284964 8.6877953, 49.4280495 8.6869299, 49.4298363 8.6853708, 49.4317284 8.6827286, 49.4235631 8.6886029, 49.4139598 8.6937014, 49.4217923 8.7056451, 49.4384096 8.6837127, 49.4143279 8.6877116, 49.4145768 8.6900311, 49.4114477 8.7117426, 49.4179324 8.7578275, 49.4447844 8.7558449, 49.4134141 8.7156909, 49.4127437 8.7131641, 49.4278544 8.6884082, 49.4141167 8.6710146 +Yavuz Sultan Selim Camii +yes +69 +Schwabach, Basel, Lübeck +パリ +49.3779021 8.6887991, 49.4093314 8.7735071, 49.4089504 8.6905874, 49.4096905 8.6870861, 49.4094130 8.6857745, 49.4043206 8.6907217, 49.4100169 8.6878988, 49.4136043 8.6538078, 49.4155972 8.6663847, 49.4141807 8.6864884, 49.4225207 8.6751194, 49.4180755 8.6627175, 49.4177447 8.6641338, 49.4130779 8.6696042, 49.4141965 8.6658413, 49.4129370 8.6731498, 49.4184413 8.6639178, 49.4119021 8.6975187, 49.4089831 8.6905347, 49.4044159 8.6910526, 49.4214120 8.6811424, 49.4211709 8.6817036, 49.3953953 8.7086103, 49.4234428 8.6840685, 49.4104424 8.6919840, 49.4103493 8.6912088, 49.4082673 8.6863585, 49.4159017 8.6697995, 49.4163470 8.6659723, 49.4168236 8.6627821, 49.4168236 8.6627821, 49.4168236 8.6627821, 49.3811363 8.6573297, 49.4025655 8.6891887, 49.3917631 8.6910070, 49.4178561 8.6661108, 49.4177188 8.6624888, 49.4138580 8.6676018, 49.4162081 8.6666428, 49.3893705 8.7373749 +20 +Cathédrale Notre-Dame de Paris and 48.8529376 2.3498716 +67 +Taj Mahal +Le 114 Faubourg +49.3811108 8.6608351, 49.3829231 8.6669185, 49.3923746 8.6760835 +ハイデルベルク +public transport, weather shelter +Flughafen Frankfurt am Main +yes +55.9378000 -3.1771354, 55.9539470 -3.1868320, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9543521 -3.1879033, 55.9285894 -3.1685115 +9 +yes +381 +55.8994270 -3.2972350, 55.9232575 -3.2877434, 55.9372727 -3.3656602, 55.9377502 -3.4029754, 55.9365550 -3.3142140, 55.9836311 -3.3989193, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.8839472 -3.3405441, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9397193 -3.2934475 +3 +1 +48.8505273 2.3858439 +11 +yes +5 +55.9336225 -3.1249359, 55.9731723 -3.1754517, 55.9369949 -3.2187665, 55.9803988 -3.2235746, 55.9335760 -3.2285650, 55.9364814 -3.1940654, 55.9509774 -3.2113955, 55.9456430 -3.2126550, 55.9574980 -3.2089090, 55.9510870 -3.2135191, 55.9501610 -3.2185543, 55.9467690 -3.2234250, 55.9471780 -3.2179270, 55.9584000 -3.2182300, 55.9573850 -3.2145460, 55.9612410 -3.2084510, 55.9612608 -3.1947393, 55.9585590 -3.1894750, 55.9572253 -3.1905901, 55.9574810 -3.1829770, 55.9607690 -3.1844930, 55.9751120 -3.1699450, 55.9538149 -3.1866462, 55.9483102 -3.1849377, 55.9370308 -3.2067360, 55.9510250 -3.1900330, 55.9497190 -3.1919630, 55.9446609 -3.2150190, 55.9448704 -3.2331329, 55.9477760 -3.2103789, 55.9430598 -3.2193053, 55.9403560 -3.2253563, 55.9424189 -3.2051434, 55.9613613 -3.2013758, 55.9518970 -3.1777525, 55.9605194 -3.1745432, 55.9544280 -3.1965564, 55.9562232 -3.1975795, 55.9630294 -3.1912727, 55.9577847 -3.1940743, 55.9622871 -3.1825372, 55.9593812 -3.1775286, 55.9514170 -3.1863190, 55.9484476 -3.2048878, 55.9524190 -3.2092630, 55.9435870 -3.1925590, 55.9427426 -3.1970190, 55.9416940 -3.2014772, 55.9389981 -3.2114924, 55.9432142 -3.2138092, 55.9737983 -3.1644035, 55.9526606 -3.2018469, 55.9245851 -3.2217825, 55.9664930 -3.1948692, 55.9659495 -3.1909016, 55.9369709 -3.2238338, 55.9352245 -3.2129869, 55.9732340 -3.1870517, 55.9650310 -3.1952624, 55.9431510 -3.1850183, 55.9379028 -3.1838572, 55.9385188 -3.1804921, 55.9440195 -3.1801845, 55.9767916 -3.1745800, 55.9379280 -3.1997215, 55.9785772 -3.1680183, 55.9759825 -3.1825687, 55.9797482 -3.1979763, 55.9263143 -3.2084849, 55.9353379 -3.1982447, 55.9240780 -3.1729198, 55.9333823 -3.1800372, 55.9271775 -3.2122387, 55.9225263 -3.2116137, 55.9700855 -3.1735476, 55.9701547 -3.1858393, 55.9691782 -3.1658280, 55.9269556 -3.1843910, 55.9518287 -3.1107808, 55.9555761 -3.2863843, 55.9406804 -3.1723240, 55.9550663 -3.1537383, 55.9277228 -3.2305307, 55.9338258 -3.2369899, 55.9040570 -3.2856137, 55.9533158 -3.1164171, 55.9531172 -3.2042505, 55.9547774 -3.2196877, 55.9610228 -3.2289430, 55.9771785 -3.2459884, 55.9272641 -3.2496416, 55.9503933 -3.1777718, 55.9611416 -3.1627621, 55.9285398 -3.2100476, 55.9482867 -3.1839490, 55.9496098 -3.1863529 +55.9579565 -3.2439627, 55.9438677 -3.1918679, 55.9389097 -3.2419381, 55.9587892 -3.1643659, 55.9269783 -3.1633004, 55.9522822 -3.1120224, 55.9275143 -3.1636040, 55.9275143 -3.1636040, 55.9384423 -3.2403707, 55.9574632 -3.2408274, 55.9242943 -3.2525824 +55.9262985 -3.2466715, 55.9532557 -3.1913082, 55.9612706 -3.2423315, 55.9558419 -3.1599480, 55.9505200 -3.2066238, 55.9504567 -3.2091057, 55.9575799 -3.2074392, 55.9575530 -3.1882786, 55.9473523 -3.1859232, 55.9269823 -3.1640067, 55.9269823 -3.1640067, 55.9489892 -3.2104514, 55.9422542 -3.2936236, 55.9339703 -3.1006526, 55.9376863 -3.4023340, 55.9686600 -3.1423665, 55.9436637 -3.2079998, 55.9840102 -3.4068097 +49.4091649 8.6726851, 49.4121354 8.7011825, 49.4079210 8.6866720, 49.4092400 8.6923559, 49.4088507 8.6922324, 49.4127941 8.7097025, 49.4110763 8.7008753, 49.4113255 8.7025821, 49.4094909 8.6914211, 49.4033496 8.6774778, 49.4118757 8.7108162, 49.4117371 8.7091875, 49.4079388 8.6952668, 49.4050153 8.6915327, 49.4131659 8.7099659, 49.4080500 8.6812645, 49.4040305 8.6800031, 49.4092001 8.6921359, 49.4090167 8.7039135, 49.4090286 8.7040991, 49.4073921 8.6825502, 49.4092821 8.6942034, 49.4089977 8.6943008, 49.4125147 8.7108209, 49.4113057 8.7120202, 49.4131432 8.7133745, 49.4132612 8.7060850, 49.4130252 8.7094285, 49.4131065 8.7092091, 49.4095865 8.7066610, 49.4122271 8.7059479, 49.4121564 8.7037030, 49.4115410 8.7046342, 49.4091984 8.6941997, 49.4046591 8.6869762, 49.4044605 8.6806232, 49.4040961 8.6803560, 49.4058252 8.6861495, 49.4151692 8.7066598, 49.4316754 8.6324996, 49.4262008 8.6882693, 49.4168638 8.7149130, 49.4066053 8.6919726, 49.4048219 8.6927806, 49.4052550 8.6923037, 49.4082602 8.6992154, 49.4109886 8.6917670, 49.3870250 8.6611599, 49.3759070 8.6609254, 49.3799862 8.6876121, 49.4129001 8.6782904, 49.3653721 8.6843683, 49.4447844 8.7558449 +55.9833412 -3.4080681, 55.9400333 -3.1723378 +yes +no +Stieg, Metzgerei Lanzendorf, Metzgerei Unger, Fleischerei Friedl Rolf, Metzgerei Stieg, Gieser, Metzgerei Sommer, Unger, Metzgerei Benig, Metzgerei Wickenhäuser, Rebmann, Bolz +49.4300711 8.6823444 +yes +yes and 107 +yes +55.8994270 -3.2972350, 55.9002100 -3.2321660, 55.9100535 -3.1423251, 55.9051775 -3.1653894, 55.8839472 -3.3405441, 55.9102318 -3.2377415 +Gurkha Cafe +weather shelter, public transport +Schloss Filmtheater, Die Kamera +48.8574324 2.3409368, 48.8424681 2.3705204, 48.8423483 2.3706817, 48.8422096 2.3708780, 48.8639780 2.3058261, 48.8877064 2.3773415, 48.8873645 2.3767886, 48.8878470 2.3777753, 48.8879004 2.3778844, 48.8877413 2.3775591, 48.8875794 2.3772282, 48.8874181 2.3768983, 48.8874733 2.3770111, 48.8879540 2.3779939, 48.8877947 2.3776682, 48.8876336 2.3773389, 48.8876884 2.3774510, 48.8875249 2.3771165, 48.8552023 2.2872854, 48.8496593 2.3670787, 48.8492344 2.3675422, 48.8958210 2.3960294 +0 +yes +yes +48.8803471 2.2968238 +4 +yes +49.3826654 8.6703241, 49.3795039 8.6788777, 49.3994731 8.6498961, 49.3795039 8.6788791, 49.3795039 8.6788799, 49.3795039 8.6788784, 49.3795039 8.6788807 +77 +yes +5 +1 +55.8969575 -3.3064520, 55.9286779 -3.2096502, 55.9475295 -3.2065018, 55.9709217 -3.2085540, 55.9710794 -3.2083765, 55.9713224 -3.2074276, 55.9584008 -3.2092092, 55.9601757 -3.2559248, 55.9312309 -3.2523089, 55.9511924 -3.1760524, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9073786 -3.2585910, 55.9531081 -3.2008271, 55.9450251 -3.2048945, 55.9616053 -3.1809060, 55.9122939 -3.1636240, 55.9053215 -3.1319819, 55.9383223 -3.4081252, 55.9359156 -3.2099930, 55.9391016 -3.2261638, 55.9426048 -3.1828681, 55.9284825 -3.2096589, 55.9457396 -3.1854060, 55.9492055 -3.1928272, 55.9457630 -3.2348824, 55.9531031 -3.1974183, 55.9442023 -3.2038200, 55.9350165 -3.1943787, 55.9503960 -3.1873714, 55.9086565 -3.2096817, 55.9612140 -3.3062746, 55.9809058 -3.1784709, 55.9569588 -3.1874026, 55.9103533 -3.3220087, 55.9328871 -3.3087416, 55.9013749 -3.2048039, 55.9541472 -3.1916750, 55.9428244 -3.2815918, 55.9498996 -3.2091714, 55.9511059 -3.2031477, 55.9504209 -3.2072119, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9537368 -3.1946870, 55.9537500 -3.1946096, 55.9468356 -3.2159630, 55.9379488 -3.2323230, 55.9573609 -3.2064305, 55.9530711 -3.2010501, 55.9526098 -3.2039830, 55.9430480 -3.2039420, 55.9576925 -3.1843665, 55.9527506 -3.1965698, 55.9507785 -3.2057118, 55.9514350 -3.2026235, 55.9517068 -3.2027827, 55.9516311 -3.1963503, 55.9035407 -3.2854196, 55.9717098 -3.1715371, 55.9491465 -3.2108241, 55.9522247 -3.1996285, 55.9420700 -3.2221190, 55.9533643 -3.1992326, 55.9695931 -3.1723910, 55.9552824 -3.1886051, 55.9275226 -3.2095127, 55.9462004 -3.1850058, 55.9700768 -3.1718970, 55.9655823 -3.2732115, 55.9526548 -3.1971889, 55.9267933 -3.2094073, 55.9245093 -3.2096867, 55.9562269 -3.1380823, 55.9275049 -3.1644260, 55.9274977 -3.1640447, 55.9683279 -3.1734427, 55.9375948 -3.1784176, 55.9461675 -3.2083866, 55.9325351 -3.1397933, 55.9453646 -3.1914973, 55.9453776 -3.1916473, 55.9507459 -3.2052838, 55.9538645 -3.1977873, 55.9549461 -3.1936274, 55.9550466 -3.1929475, 55.9519378 -3.2048677, 55.9527501 -3.2005561, 55.9525006 -3.1971100, 55.9535447 -3.1920694, 55.9528295 -3.1149002, 55.9533094 -3.1146987, 55.9524703 -3.1136856, 55.9587335 -3.2260450, 55.9575370 -3.1698723, 55.9252818 -3.2099781, 55.9342963 -3.2105127, 55.9756176 -3.1666794, 55.9429604 -3.2929801, 55.9426525 -3.2829003, 55.9430016 -3.2880429, 55.9656482 -3.2744012, 55.9748270 -3.2379923, 55.9233852 -3.2910431, 55.9234641 -3.2913646, 55.9544888 -3.1913969, 55.9383988 -3.3146583, 55.9756625 -3.1668579, 55.9528337 -3.1973510, 55.9544909 -3.1908045 +7 +48.8337601 2.2980718 +yes +15 and 53.6336393 10.0363341, 53.6360504 10.0335862, 53.6440677 10.0246132, 53.6523113 10.0341830, 53.6643366 10.0352316, 53.6709255 10.0356700, 53.6367766 10.0336568, 53.6378772 10.0297658, 53.6379603 10.0299328, 53.6378461 10.0278999, 53.6380710 10.0270600, 53.6803028 10.0464602, 53.6371050 10.0329155, 53.6375635 10.0322890, 53.6377966 10.0314595 +yes +55.9511924 -3.1760524 +fr:Roc de Peyre, fr:Moure de la Gardille, fr:Pic d'Anjeau, fr:Signal de Mailhebiau, fr:Truc de Grèzes +55.9440035 -3.1620073, 55.9541294 -3.1809330, 55.9477108 -3.2639521, 55.9544518 -3.2745497, 55.9152214 -3.3945719, 55.9134128 -3.3949152, 55.9482519 -3.2642123, 55.9716648 -3.1905955, 55.9472868 -3.2703827, 55.9482565 -3.2674250, 55.9541135 -3.1088654, 55.9523925 -3.1039168, 55.9586663 -3.1191756, 55.9519300 -3.1027096, 55.9491007 -3.0951514, 55.9580191 -3.1179901, 55.9583615 -3.1185560, 55.9808431 -3.2595202, 55.9560356 -3.1824861, 55.9543903 -3.1831036, 55.9450930 -3.2608919, 55.9464057 -3.2635956, 55.9101888 -3.3263005 +asphalt, asphalt, asphalt, asphalt, asphalt +49.4026602 8.7297882, 49.4269174 8.7219719, 49.4155178 8.7899777, 49.4105654 8.7914079, 49.4255549 8.7739082, 49.4035191 8.7047078, 49.4195186 8.7046484, 49.4261495 8.7062630, 49.4035105 8.7605887, 49.4467404 8.7467641, 49.4580313 8.7464236, 49.3925405 8.6991164, 49.3828404 8.6974716 +49.4073193 8.7078225, 49.4143210 8.7642858 +51.2202794 6.7668908, 52.3092512 10.5048372, 50.9299219 7.0410660, 54.2931879 12.3312166 +yes +Forstquelle, Turnerbrunnen, Schneeberg, Schweinsbrunnen, Michelsbrunnen, Gaulskopfbrunnen, Buchbrunnen, Webersbrunnen, Bittersbrunnen, Strangwasenbrunnen, Hellenbachbrunnen, Hohler-Kästenbaum-Brunnen, Mausbach-Brunnen, Brunnen an der Jagdhütte, Großer Roßbrunnen, Kleiner Roßbrunnen, Erlenbrunnen, Rombachbrunnen +35 +35 +no +55.9670315 -3.2477797, 55.9586110 -3.1856655, 55.9736688 -3.1675716, 55.9907705 -3.3987419, 55.9537560 -3.1154614, 55.9466681 -3.2139844, 55.9332134 -3.1406814, 55.9605457 -3.2255054, 55.9076452 -3.2280715, 55.9404662 -3.2927628, 55.8851300 -3.3398078, 55.9042993 -3.1652640, 55.9431626 -3.1790248 +55.9432488 -3.1817167, 55.9280547 -3.2292838, 55.9058039 -3.2543852, 55.9409114 -3.2097700, 55.9703622 -3.1822317, 55.9629073 -3.1944999, 55.9358754 -3.1760269, 55.9344353 -3.2125210, 55.9416804 -3.2026036, 55.9438526 -3.1964947, 55.9592778 -3.1901889, 55.9613996 -3.1820673, 55.9580853 -3.1891489, 55.9468876 -3.1828168, 55.9488813 -3.1834652, 55.9492101 -3.2153200, 55.9544768 -3.1997466, 55.9126235 -3.3200599, 55.9489685 -3.1194874, 55.9328025 -3.3133858, 55.9309502 -3.1942179, 55.9741682 -3.2117651, 55.9296473 -3.1707716, 55.9718479 -3.1748613, 55.9390126 -3.2052535, 55.9379190 -3.2748726, 55.9410176 -3.2095848, 55.9292876 -3.2059198, 55.9598760 -3.2111177, 55.9296228 -3.1686332, 55.9167292 -3.1640730, 55.9351051 -3.2071646, 55.9335197 -3.2097268, 55.9462699 -3.1973167, 55.9324830 -3.1925693, 55.9310878 -3.1608248, 55.9344607 -3.1586816, 55.9350533 -3.2069968, 55.9350865 -3.2070121, 55.9492741 -3.4056494, 55.9335280 -3.2095487, 55.9408795 -3.2097114, 55.9016895 -3.1650816, 55.9242811 -3.1768126 +Artspace, Citadel Youth Centre and http://www.citadelyouthcentre.org.uk/, Torrance Gallery and http://www.torrancegallery.co.uk/, Doodles, Summerhall, North Edinburgh Arts Centre, The MGA Academy +49.4066800 8.6851295, 49.4123932 8.7103247, 49.4022609 8.6800427, 49.4133232 8.7072699, 49.4131657 8.7074358, 49.4089749 8.7019860, 49.4115371 8.7077542, 49.4116445 8.7062771, 49.4116271 8.7069102, 49.4121327 8.7076792, 49.4123530 8.7087690, 49.4104389 8.7086905, 49.4113532 8.7105806, 49.4090153 8.6964726, 49.4124896 8.7107633, 49.4125760 8.7095003, 49.4111071 8.7086876, 49.3798268 8.6903215, 49.4077695 8.6948215, 49.4200540 8.6567921, 49.4085894 8.6902323, 49.4299617 8.6876137, 49.3802935 8.6747903 +377 +Hôtel Montpensier +16 +no +paved, asphalt, asphalt, paved +yes +4, 5 +55.9433218 -3.1904284 +yes +49.3819891 8.7064791, 49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.3696607 8.7091979, 49.4157261 8.7004521, 49.4532301 8.7620686, 49.3877298 8.7446960, 49.4209333 8.7223854, 49.3946455 8.7166681, 49.4221949 8.7060036, 49.4157681 8.7006398, 49.4052183 8.7807063, 49.4390162 8.7105044, 49.4210179 8.7198036, 49.4272716 8.7035465, 49.4305777 8.6928339, 49.4497204 8.7157564, 49.4428768 8.7011414, 49.4040784 8.7535968, 49.4300341 8.7265054, 49.4040547 8.7550178, 49.3925114 8.7464235, 49.3936499 8.7467333, 49.4005231 8.7520710, 49.4095083 8.7002566, 49.4109969 8.7018271, 49.4103323 8.7353954 +49.4157830 8.7024600 +yes +62 +Thoraxklinik, Orthopädische Klinik, Medizinische Psychologie, Psychosomatische Ambulanz, Psychiatrische Klinik, Klinik für Kinder- und Jugendpsychiatrie, Psychiatrische Ambulanz, Kurpfalzkrankenhaus, Klinik für Allgemeine Innere Medizin und Psychosomatik, Physiotherapie Kathrin Kittelmann, Blutspendezentrale Heidelberg IKTZ, Kinderklinik, HIT, Zentrum für Schmerztherapie und Palliativmedizin - Überregionales Schmerzzentrum Heidelberg-Mannheim, Nierenzentrum, Chirurgische Klinik, NCT Heidelberg, Krankenhaus St. Vincentius, Institut für Medizinische Psychologie, Klinik für Kinder- und Jugendpsychiatrie - Tageszentrum für Jugendliche, St. Elisabeth, St. Elisabeth, Kliniken Schmieder Heidelberg, Salem, ATOS Klinik, Unfallchirurgie - Atos, Institut für Psychosomatische Kooperationsforschung und Familientherapie, Tropenmedizinische Ambulanz, Krehl-Klinik, Hautklinik, Frauenklinik und Hautklinik, Frauenklinik, Gemeinschaftspraxis Wittmann, St. Josefskrankenhaus, Bethanien-Krankenhaus, Kopfklinik, Kinderklinik, Kinderklinik, Krehl-Klinik, Rehabilitationsklinik Heidelberg-Königstuhl +Thermes de Cluny, L'enceinte de Philippe Auguste, Cavea des Arènes de Lutèce +132 and 43.6837822 -79.4260743, 43.6576795 -79.4987997, 43.7022711 -79.5255029, 53.9900182 -1.1048507, 54.0109332 -1.0814973, 53.9502911 -1.0730271, 53.9695593 -1.1044687, 53.9783035 -1.1064726, 53.9659202 -1.1066465, 53.9153104 -1.1359444, 53.9852880 -1.1561727, 53.9409591 -1.1265772, 53.9550521 -1.1301932, 53.9490348 -1.1324670, 53.9615418 -1.1120955, 53.9522410 -1.1122907, 53.9358339 -1.1263285, 54.0107556 -1.0814518, 53.9863055 -1.1105767, 53.9403226 -1.1185343, 54.0146884 -1.0718957, 53.9877014 -1.1050782, 53.9636588 -1.1373722, 53.9491771 -1.0804384, 53.9553252 -1.1119903, 53.9017427 -1.0873341, 53.9990117 -1.1284252, 53.9637219 -1.1380788, 53.9575852 -1.1178225, 53.9874393 -1.1204313, 53.9868873 -1.1220633, 53.9494875 -1.1413259, 53.9647966 -1.1058434, 53.9462069 -1.0762908, 53.9646978 -1.1104689, 53.9500452 -1.0806102, 43.6644716 -79.5073350, 53.9731081 -1.0720236, 53.9728750 -1.0718855, 43.6709565 -79.4808029, 43.6909696 -79.5078325, 43.6768364 -79.5008575, 43.6869909 -79.4927906, 43.7060427 -79.5305440, 53.9518846 -1.0748059, 43.6954667 -79.4292400, 53.9891412 -1.0750065, 53.9697935 -1.0788931, 53.9761008 -1.0866567, 53.9642505 -1.1103673, 53.9572111 -1.1022306, 53.9275166 -1.1585419, 53.9771511 -1.1335660, 43.6916751 -79.4801455, 43.6884518 -79.4620778, 43.6791418 -79.4807102, 43.6784874 -79.4805707, 53.9171538 -1.0961410, 43.6983920 -79.4349417, 43.7032269 -79.5060546, 43.6965563 -79.4691090, 53.9675172 -1.0774716, 43.6537880 -79.4901878, 43.6868311 -79.4924568, 54.0175617 -1.0838151, 53.9441501 -1.1072575, 43.6912619 -79.4333772, 43.6883062 -79.4538863, 53.9580671 -1.0717614, 53.9316497 -1.1069040, 43.7063756 -79.5161696, 43.6980072 -79.5193378, 43.6979105 -79.5191746, 43.6981548 -79.5195536, 43.6948627 -79.4854853, 43.7078482 -79.5309590, 43.6761780 -79.4788514, 43.6769072 -79.4772807, 43.6731469 -79.4908170, 53.9872557 -1.1137428, 53.9773826 -1.0941901, 53.9781054 -1.0952493, 53.9719535 -1.0928503, 43.6933502 -79.4302213, 43.6843140 -79.4879601, 43.6712702 -79.4926038, 43.6946390 -79.4359419, 43.6869082 -79.4775555, 43.6817542 -79.4986570, 43.7014365 -79.5073633, 53.9735958 -1.2046224, 43.6935978 -79.4761834, 43.7014532 -79.4510224, 43.7014588 -79.4506901, 43.6957307 -79.4305271, 43.7032224 -79.4392616, 53.9663972 -1.1227394, 43.6925004 -79.5088912, 43.7000154 -79.4462363, 43.7000042 -79.4464494, 43.7001712 -79.4461827, 43.7001539 -79.4458926, 43.7000636 -79.4460083, 53.9838702 -1.1222527, 43.6836390 -79.4590501, 43.6880963 -79.4613111, 43.6898241 -79.4643187, 53.9450082 -1.1361836, 43.6924209 -79.4689785, 53.9889063 -1.1110964, 43.6879894 -79.4708591, 53.9445374 -1.1245969, 53.9595274 -1.0981373, 53.9610119 -1.1037227, 43.6840446 -79.4389375, 43.6842718 -79.4397157, 43.6871180 -79.4284008, 53.9623408 -1.1308643, 43.6484124 -79.4885632, 53.9522747 -1.0911362, 43.6762467 -79.4781695, 43.6927596 -79.4362309, 43.6895001 -79.4353381, 43.6921445 -79.4472623, 43.6917638 -79.4436721, 43.6628673 -79.4872055, 43.6627881 -79.4870652, 43.6890777 -79.4991503, 43.6898499 -79.4650002, 43.6648262 -79.5030967, 43.7027737 -79.5207797, 43.6742489 -79.4976003 +Hotel Etab, Heidelberg Marriott Hotel, Hotel & Restaurant Auerstein, Hotel Schönberger Hof, Gästehaus Endrich, Parkhotel Atlantik, Leonardo Hotel, Hotel Tannhäuser, Hotel Bayrischer Hof, EMBL ISG Hotel, Ivory-Suite, Hotel Hackteufel, Hotel Perkeo, Hotel The Dubliner, Hotel Regina, IBIS, Neckartal, Goldener Falke, Hotel zum Ritter St. Georg, Europäischer Hof, Hotel Elite, Hotel Zur Alten Brücke, Qube Hotel, Hotel Central, Denner Hotel, Hotel Acor, Hotel Monpti, Hotel am Kornmarkt, NH Heidelberg, Hotel Goldene Rose, Hotel Nassauer Hof, Hotel am Rathaus, Hotel am Schloss, Hotel Kulturbrauerei Heidelberg, Hotel Villa Marstall, Hotel Goldener Hecht, Hotel Holländer Hof, Hotel Schnookeloch, Arthotel Heidelberg, Hotel Weisser Bock, Hotel Backmulde, Hip Hotel, Altstadt Hotel, Hotel Krokodil, Hiphotel Blume, Hotel Classic Inn, Hotel Diana, Kurpfalz-Residenz, Gästezimmer GZ, Bergheim 41, Kranich, Holiday Inn Express Heidelberg City Centre, Hotel Molkenkur, Gaestehaus der SRH, Heidelberg Suites, Hotel Heidelberger Land, Hotel Das Lamm, Astoria, Hotel Die Hirschgasse Heidelberg, Hotel Ballmann Garni, Crowne Plaza Heidelberg, Exzellenz Hotel, Hotel Boarding House, Hotel Kurpfalz, Hotel Anlage, Hotel Panorama, Leonardo Hotel Heidelberg, Hotel Schmitt, Goldene Rose, Hotel Heidelberg, Hotel Rose, Neu Heidelberg, hotelo, Ambiente, Cafe Hotel Frisch, DenRiKo, Schwarzer Adler, Zum Waldhorn, B&B Hotel and 49.4300711 8.6823444, 49.4091649 8.6726851, 49.4313225 8.6827624, 49.4121354 8.7011825, 49.4196577 8.7610727, 49.4158348 8.7294625, 49.4079210 8.6866720, 49.4092400 8.6923559, 49.4088507 8.6922324, 49.3703369 8.7056886, 49.4138040 8.6935807, 49.4127941 8.7097025, 49.4110763 8.7008753, 49.4113255 8.7025821, 49.4094909 8.6914211, 49.4033496 8.6774778, 49.4106777 8.7717326, 49.4118757 8.7108162, 49.4117371 8.7091875, 49.4079388 8.6952668, 49.4050153 8.6915327, 49.4131659 8.7099659, 49.4080500 8.6812645, 49.4040305 8.6800031, 49.4092001 8.6921359, 49.4090167 8.7039135, 49.4090286 8.7040991, 49.4119070 8.7119908, 49.4073921 8.6825502, 49.4092821 8.6942034, 49.4089977 8.6943008, 49.4125147 8.7108209, 49.4113057 8.7120202, 49.4131432 8.7133745, 49.4132612 8.7060850, 49.4130252 8.7094285, 49.4131065 8.7092091, 49.4129122 8.7088486, 49.4095865 8.7066610, 49.4122271 8.7059479, 49.4121564 8.7037030, 49.4115410 8.7046342, 49.4091984 8.6941997, 49.4046591 8.6869762, 49.4044605 8.6806232, 49.4040961 8.6803560, 49.3912497 8.6899838, 49.4086878 8.6815330, 49.4072069 8.6788242, 49.4083367 8.6887571, 49.3961597 8.6436240, 49.4058252 8.6861495, 49.4069371 8.7137255, 49.4119335 8.6547454, 49.4151692 8.7066598, 49.4316754 8.6324996, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4048325 8.6922035, 49.4066053 8.6919726, 49.4048219 8.6927806, 49.4052550 8.6923037, 49.3744135 8.6149237, 49.4082602 8.6992154, 49.4109886 8.6917670, 49.3870250 8.6611599, 49.4044331 8.6838472, 49.3772275 8.6672364, 49.3759070 8.6609254, 49.3799862 8.6876121, 49.4006254 8.6417864, 49.3988698 8.6808081, 49.4173698 8.7532486, 49.4129001 8.6782904, 49.3653721 8.6843683, 49.4179324 8.7578275, 49.4447844 8.7558449, 49.3971502 8.6748504 +134 +5 +55.9474486 -3.1859655, 55.9547783 -3.1976132, 55.9512066 -3.1850870, 55.9426063 -3.2085087, 55.9348214 -3.0945488, 55.9366417 -3.1570870, 55.9733698 -3.1917230, 55.9446070 -3.1860121, 55.9444906 -3.1858127, 55.9450275 -3.1853002, 55.9395675 -3.2038566, 55.9355709 -3.2102528, 55.9395567 -3.2208158, 55.9395988 -3.2206602, 55.9318108 -3.2374274, 55.9282620 -3.2003920, 55.9445252 -3.1859176, 55.9480977 -3.1860003, 55.9471995 -3.1855061, 55.9468154 -3.1855780, 55.9440261 -3.1820823, 55.9406312 -3.2039275, 55.9402760 -3.2038110, 55.9434664 -3.1831055, 55.9434196 -3.1842460, 55.9425019 -3.1793852, 55.9434281 -3.1802599, 55.9774101 -3.1718543, 55.9628304 -3.1997070, 55.9630892 -3.2001803, 55.9479312 -3.1940298, 55.9488004 -3.1932865, 55.9488010 -3.1925834, 55.9619662 -3.2352523, 55.9503936 -3.1748495, 55.9007148 -3.2329556, 55.9500635 -3.1892496, 55.9534622 -3.1963003, 55.9810888 -3.1948604, 55.9813469 -3.1948497, 55.9775639 -3.1689368, 55.9763814 -3.1707551, 55.9610381 -3.1807131, 55.9760230 -3.1696703, 55.9770082 -3.1723631, 55.9771560 -3.1735460, 55.9771245 -3.1733636, 55.9825548 -3.1951570, 55.9770419 -3.1725751, 55.9770800 -3.1727697, 55.9757237 -3.1680744, 55.9768212 -3.1696962, 55.9696870 -3.1601851, 55.9746544 -3.1708033, 55.9754457 -3.1703672, 55.9748068 -3.1719428, 55.9764963 -3.1714060, 55.9612898 -3.1713969, 55.9734916 -3.1731211, 55.9734370 -3.1678545, 55.9766362 -3.1692569, 55.9581662 -3.2088898, 55.9584860 -3.2082072, 55.9585295 -3.2049192, 55.9561318 -3.2024897, 55.9607716 -3.1994845, 55.9771770 -3.1718400, 55.9624799 -3.1788559, 55.9721688 -3.1727029, 55.9734119 -3.1676688, 55.9545214 -3.1981041, 55.9542551 -3.1979757, 55.9356483 -3.2096691, 55.9364920 -3.2084274, 55.9453065 -3.1835012, 55.9456929 -3.2031564, 55.9450873 -3.2046445, 55.9463793 -3.2017812, 55.9468801 -3.2026112, 55.9467570 -3.2027078, 55.9460060 -3.2052924, 55.9461895 -3.1912537, 55.9642340 -3.2119376, 55.9760874 -3.1678906, 55.9736874 -3.1725679, 55.9751258 -3.1658656, 55.9460137 -3.1821143, 55.9587464 -3.2103338, 55.9455352 -3.1866707, 55.9456867 -3.1862318, 55.9445731 -3.1850966, 55.9445434 -3.1856701, 55.9478908 -3.1920045, 55.9477659 -3.1919316, 55.9541180 -3.1855740, 55.9807233 -3.1953798, 55.9525178 -3.1990765, 55.9527244 -3.1978512, 55.9458340 -3.1851287, 55.9456579 -3.1864695, 55.9506084 -3.1874617, 55.9500934 -3.1836054, 55.9498204 -3.1834215, 55.9508055 -3.1777162, 55.9527611 -3.2030077, 55.9690445 -3.1682228, 55.9567027 -3.2027842, 55.9466421 -3.1371546, 55.9565342 -3.1985297, 55.9567499 -3.1986451, 55.9811460 -3.1776490, 55.9806886 -3.1784936, 55.9809733 -3.1781568, 55.9809041 -3.1782848, 55.9820170 -3.1763600, 55.9465573 -3.2166040, 55.9805956 -3.1934566, 55.9570779 -3.1884191, 55.9480209 -3.1999685, 55.9477134 -3.1957934, 55.9436378 -3.1937085, 55.9461006 -3.2053014, 55.9492755 -3.2122776, 55.9337528 -3.2109407, 55.9334827 -3.1781544, 55.9382383 -3.1924272, 55.9506835 -3.1901263, 55.9488068 -3.1956257, 55.9436353 -3.2027965, 55.9777657 -3.1686490, 55.9425676 -3.2218450, 55.9559071 -3.2028055, 55.9368453 -3.2080850, 55.9391854 -3.2049304, 55.9403048 -3.2042415, 55.9354188 -3.2098186, 55.9517680 -3.1097590, 55.9524705 -3.1146567, 55.9519693 -3.1107353, 55.9524356 -3.1964223, 55.9454688 -3.1847519, 55.9567479 -3.1931126, 55.9434972 -3.1847056, 55.9444992 -3.1839329, 55.9462089 -3.1892186, 55.9453153 -3.1845999, 55.9449737 -3.1886697, 55.9620904 -3.1793576, 55.9537919 -3.1943636, 55.9371166 -3.1786816, 55.9435115 -3.2193949, 55.9437549 -3.2193403, 55.9453892 -3.2171020, 55.9452977 -3.2171685, 55.9462869 -3.2159227, 55.9462644 -3.2147801, 55.9460218 -3.2124627, 55.9463199 -3.2060028, 55.9465542 -3.2158573, 55.9464746 -3.2019795, 55.9464280 -3.2034977, 55.9486448 -3.2062281, 55.9485519 -3.2140339, 55.9468350 -3.2051684, 55.9469209 -3.2045658, 55.9467269 -3.2047624, 55.9485678 -3.1946201, 55.9486421 -3.1944619, 55.9489611 -3.1926806, 55.9457412 -3.2099832, 55.9495552 -3.2091699, 55.9506581 -3.2090223, 55.9505668 -3.2093105, 55.9505740 -3.2087140, 55.9582298 -3.2268150, 55.9434367 -3.2195949, 55.9459910 -3.2187750, 55.9462622 -3.2145897, 55.9586309 -3.1903764, 55.9465828 -3.2144286, 55.9458930 -3.2127420, 55.9462614 -3.2149075, 55.9469392 -3.2157459, 55.9466500 -3.2155710, 55.9489596 -3.2105228, 55.9510015 -3.2097266, 55.9460126 -3.2207351, 55.9505780 -3.2098210, 55.9508641 -3.2099881, 55.9575799 -3.2074392, 55.9580520 -3.2065578, 55.9591363 -3.2144382, 55.9582616 -3.2096030, 55.9581637 -3.2094698, 55.9580113 -3.2092624, 55.9585716 -3.1897695, 55.9578403 -3.1887677, 55.9439438 -3.2188704, 55.9436529 -3.2196006, 55.9425916 -3.2009298, 55.9427456 -3.2017142, 55.9420344 -3.2038063, 55.9418227 -3.2036511, 55.9416648 -3.2030441, 55.9460150 -3.1908920, 55.9470537 -3.1917202, 55.9473009 -3.1911302, 55.9411221 -3.2032805, 55.9392380 -3.2127613, 55.9460599 -3.2291804, 55.9460417 -3.2226604, 55.9410190 -3.2179980, 55.9579150 -3.2068124, 55.9577295 -3.2066473, 55.9573896 -3.2066141, 55.9572260 -3.2056240, 55.9537733 -3.2038799, 55.9507047 -3.1827880, 55.9510404 -3.1846922, 55.9502539 -3.1878479, 55.9475890 -3.2135160, 55.9479040 -3.2136850, 55.9578281 -3.2064585, 55.9462100 -3.2053390, 55.9569075 -3.1939006, 55.9530794 -3.2035262, 55.9486670 -3.1956973, 55.9442170 -3.2180125, 55.9546639 -3.1975541, 55.9544395 -3.1974380, 55.9542190 -3.1973239, 55.9541769 -3.1973021, 55.9540060 -3.1972137, 55.9541028 -3.1972638, 55.9541197 -3.1979103, 55.9530164 -3.2013793, 55.9525837 -3.2041424, 55.9523991 -3.2052223, 55.9522681 -3.2060091, 55.9522441 -3.2061536, 55.9499431 -3.2078244, 55.9429955 -3.2045906, 55.9430360 -3.2042420, 55.9516199 -3.2027318, 55.9518670 -3.2035606, 55.9519125 -3.2029032, 55.9536150 -3.1883633, 55.9499018 -3.1935768, 55.9498329 -3.1910920, 55.9496897 -3.1897241, 55.9500792 -3.1891087, 55.9497794 -3.1891002, 55.9498804 -3.1883969, 55.9507029 -3.1895380, 55.9510625 -3.1882551, 55.9511343 -3.1876851, 55.9504690 -3.1879562, 55.9508281 -3.1833677, 55.9499013 -3.1834760, 55.9480205 -3.1941463, 55.9475711 -3.1964625, 55.9475446 -3.1965793, 55.9474740 -3.1968911, 55.9468749 -3.2055938, 55.9465925 -3.2054865, 55.9462020 -3.2059371, 55.9459497 -3.2061088, 55.9535003 -3.2044865, 55.9535044 -3.2004011, 55.9537081 -3.2003007, 55.9540962 -3.2002450, 55.9537909 -3.1998247, 55.9538415 -3.1995340, 55.9540148 -3.1994866, 55.9526921 -3.1998924, 55.9514403 -3.2044562, 55.9513975 -3.2047070, 55.9460248 -3.2126102, 55.9440530 -3.2064880, 55.9764471 -3.1711406, 55.9803418 -3.1792151, 55.9804368 -3.1789769, 55.9435020 -3.2024352, 55.9432539 -3.2025680, 55.9518969 -3.2025598, 55.9570492 -3.1932499, 55.9466960 -3.2046149, 55.9529509 -3.1973404, 55.9524196 -3.1984036, 55.9526199 -3.1984725, 55.9522016 -3.2030725, 55.9571910 -3.2077708, 55.9446418 -3.1854453, 55.9509598 -3.2058075, 55.9579896 -3.1895662, 55.9563319 -3.1887212, 55.9581296 -3.1899414, 55.9343180 -3.1037178, 55.9650007 -3.1762651, 55.9556173 -3.1925320, 55.9540378 -3.1993360, 55.9423736 -3.2037017, 55.9407524 -3.2038350, 55.9416779 -3.2026669, 55.9265283 -3.2084003, 55.9414320 -3.2180926, 55.9391841 -3.2128654, 55.9751211 -3.1634618, 55.9233856 -3.1748328, 55.9398684 -3.2196073, 55.9400581 -3.2188980, 55.9398220 -3.2197803, 55.9582132 -3.2095372, 55.9497095 -3.2073063, 55.9514958 -3.2041313, 55.9400291 -3.1697303, 55.9413456 -3.1835248, 55.9530272 -3.1892542, 55.9477347 -3.1956994, 55.9497047 -3.1880533, 55.9534027 -3.1920297, 55.9544769 -3.1974573, 55.9539860 -3.1972034, 55.9459525 -3.2060165, 55.9561918 -3.1852745, 55.9478903 -3.1915085, 55.9459447 -3.1909020, 55.9485947 -3.1945597, 55.9484900 -3.1938871, 55.9457476 -3.1909342, 55.9485587 -3.1943530, 55.9483248 -3.1864306, 55.9476976 -3.1919549, 55.9494442 -3.2078565, 55.9522731 -3.2016642, 55.9530413 -3.1976567, 55.9474107 -3.1857005, 55.9388452 -3.1790659, 55.9405357 -3.2246618, 55.9506503 -3.1887550, 55.9459152 -3.2048753, 55.9544956 -3.1996255, 55.9537668 -3.1902693, 55.9248346 -3.2543275, 55.9374976 -3.1806164, 55.9389691 -3.1803219, 55.9419979 -3.1791165, 55.9578375 -3.1855691, 55.9577188 -3.1854711, 55.9570718 -3.1867391, 55.9573525 -3.1857881, 55.9573946 -3.1857377, 55.9578561 -3.1853362, 55.9572831 -3.1858711, 55.9581118 -3.1850848, 55.9574938 -3.1856190, 55.9582219 -3.1849767, 55.9576798 -3.1858665, 55.9320058 -3.2097519, 55.9244481 -3.2103373, 55.9608511 -3.1806444, 55.9073767 -3.2581589, 55.9075931 -3.2558164, 55.9514989 -3.2098689, 55.9644870 -3.1767286, 55.9456613 -3.2057187, 55.9312746 -3.1719521, 55.9338124 -3.1784664, 55.9492753 -3.1855034, 55.9473523 -3.1859232, 55.9410964 -3.1808815, 55.9375777 -3.1779460, 55.9378124 -3.1781642, 55.9354709 -3.1798259, 55.9504193 -3.1866153, 55.9490741 -3.1893997, 55.9529899 -3.1973604, 55.9567716 -3.1807817, 55.9323952 -3.2102340, 55.9321089 -3.2101997, 55.9308794 -3.2100746, 55.9500237 -3.1859641, 55.9437654 -3.2187545, 55.9504916 -3.1861886, 55.9506853 -3.1853773, 55.9710599 -3.2100066, 55.9396263 -3.1829720, 55.9596608 -3.1714218, 55.9466096 -3.2157282, 55.9489839 -3.1929807, 55.9169756 -3.2120428, 55.9469467 -3.1868746, 55.9349914 -3.1790260, 55.9501695 -3.1909428, 55.9426782 -3.2016234, 55.9459543 -3.2110196, 55.9803312 -3.1788000, 55.9702196 -3.1702168, 55.9467924 -3.1855561, 55.9438281 -3.2186053, 55.9457016 -3.1899747, 55.9453485 -3.2171316, 55.9486496 -3.1940701, 55.9224536 -3.2108475, 55.9579863 -3.1811608, 55.9426269 -3.1823902, 55.9429144 -3.1826352, 55.9387155 -3.1789608, 55.9416801 -3.1819013, 55.9566001 -3.1617669, 55.9497766 -3.1880920, 55.9348643 -3.1686663, 55.9382910 -3.1812348, 55.9387708 -3.1815664, 55.9418959 -3.1837485, 55.9418211 -3.1837096, 55.9511825 -3.1075687, 55.9562823 -3.1983948, 55.9418000 -3.1789399, 55.9591452 -3.2145692, 55.9501282 -3.1886800, 55.9501474 -3.1919776, 55.9597144 -3.1824451, 55.9584764 -3.1835758, 55.9563144 -3.1853375, 55.9563910 -3.1855135, 55.9560587 -3.1853594, 55.9565748 -3.1857636, 55.9542906 -3.1861464, 55.9603660 -3.1816080, 55.9539327 -3.1863517, 55.9595195 -3.1827244, 55.9607917 -3.1806186, 55.9506624 -3.1904103, 55.9492455 -3.1893451, 55.9498216 -3.1888060, 55.9580202 -3.1851749, 55.9489961 -3.1873020, 55.9498654 -3.1872300, 55.9495368 -3.1870648, 55.9503997 -3.1842260, 55.9490417 -3.1857303, 55.9498761 -3.1930603, 55.9695051 -3.1724684, 55.9489892 -3.2104514, 55.9428546 -3.2034153, 55.9410667 -3.2032847, 55.9494976 -3.1832041, 55.9570561 -3.1868309, 55.9474907 -3.1912396, 55.9473547 -3.1907578, 55.9385351 -3.1788147, 55.9420479 -3.1791611, 55.9512610 -3.1800100, 55.9512749 -3.1799374, 55.9443287 -3.1812574, 55.9520043 -3.1768950, 55.9468472 -3.1856084, 55.9473137 -3.1851136, 55.9493042 -3.1940688, 55.9466056 -3.1912464, 55.9479666 -3.1920487, 55.9522129 -3.2063407, 55.9382413 -3.1927552, 55.9514215 -3.2038997, 55.9645858 -3.1766158, 55.9648350 -3.1763998, 55.9545797 -3.1975105, 55.9595680 -3.1714413, 55.9733312 -3.1670719, 55.9524366 -3.1994110, 55.9720484 -3.1727281, 55.9541108 -3.2007911, 55.9462949 -3.2053703, 55.9469863 -3.2072082, 55.9346438 -3.2211526, 55.9487803 -3.1950974, 55.9230657 -3.2475227, 55.9439545 -3.2066510, 55.9436637 -3.2079998, 55.9534112 -3.1955067, 55.9045849 -3.2066586, 55.9783017 -3.1800235, 55.9508007 -3.2089750, 55.9205723 -3.1672281 +Heidelberg Marriott Hotel +Cluny - Saint-Germain and 48.8505220 2.3461000 +48.8688161 2.3275703, 48.8663165 2.3370822, 48.8663449 2.3382902, 48.8695611 2.3317879, 48.8691942 2.3321035, 48.8510774 2.3385693, 48.8680799 2.3215688, 48.8656637 2.3778893, 48.8826925 2.3828693, 48.8662404 2.3855356, 48.8652332 2.3505855, 48.8779867 2.3739646, 48.8838984 2.3707556, 48.8847610 2.3245933, 48.8595367 2.4030888, 48.8667141 2.3660388, 48.8497380 2.3851348, 48.8492104 2.3895170, 48.8683391 2.3714311, 48.8683233 2.3660938, 48.8783181 2.3578049, 48.8510126 2.4018663, 48.8517859 2.4015820, 48.8338366 2.3181857, 48.8363089 2.3225218, 48.8867306 2.3464815, 48.8345868 2.4005135, 48.8344550 2.4007736, 48.8493959 2.3750250, 48.8464256 2.3723704, 48.8863208 2.3451631, 48.8864916 2.3449490, 48.8919041 2.3801340, 48.8906427 2.3820001, 48.8909556 2.3819203, 48.8895378 2.3833861, 48.8363055 2.3583190, 48.8584562 2.3550423, 48.8582377 2.3548214, 48.8576530 2.3575640, 48.8589115 2.3534861, 48.8598365 2.3549664, 48.8602520 2.3534175, 48.8572292 2.3551661, 48.8536005 2.3428569, 48.8872790 2.3272010, 48.8503838 2.3895178, 48.8753301 2.3889995, 48.8608773 2.3423534, 48.8617494 2.3405457, 48.8646538 2.3408552, 48.8689710 2.3345642, 48.8704581 2.3373664, 48.8693708 2.3397160, 48.8662163 2.3412156, 48.8625665 2.3522237, 48.8704075 2.3483529, 48.8523186 2.3568760, 48.8591081 2.3500160, 48.8577487 2.3576815, 48.8567788 2.3558116, 48.8554369 2.3580795, 48.8643855 2.3550009, 48.8644586 2.3544256, 48.8530176 2.3445259, 48.8609593 2.3669247, 48.8871861 2.3533770, 48.8813024 2.3361254, 48.8642700 2.3531320, 48.8864637 2.3771916, 48.8680162 2.3548820, 48.8537741 2.3390379, 48.8533950 2.3355231, 48.8709269 2.3577774, 48.8534529 2.3385450, 48.8643001 2.3323292, 48.8706806 2.3211802, 48.8712520 2.3169520, 48.8869689 2.3475030, 48.8803557 2.3235567, 48.8770026 2.3270417, 48.8766444 2.3270121, 48.8769627 2.3148350, 48.8354680 2.2893109, 48.8700490 2.3017240, 48.8683182 2.2984850, 48.8675571 2.3965533, 48.8526933 2.4056082, 48.8608729 2.3451379, 48.8219547 2.3608058, 48.8746858 2.3662628, 48.8903045 2.3534684, 48.8804191 2.3624653, 48.8921927 2.3896612, 48.8403603 2.3126619, 48.8742352 2.3423076, 48.8752057 2.3418014, 48.8750436 2.3412323, 48.8741144 2.3424987, 48.8551767 2.2700634, 48.8899959 2.3389104, 48.8909532 2.3762481, 48.8716440 2.3678590, 48.8594585 2.3560654, 48.8841660 2.2895992, 48.8875689 2.3536169, 48.8710893 2.3748362, 48.8872163 2.3671561, 48.8955070 2.3483656, 48.8626827 2.3523046, 48.8427362 2.3122657, 48.8429440 2.3130453, 48.8420308 2.3127675, 48.8850887 2.3797004, 48.8520143 2.3467491, 48.8478519 2.2606251, 48.8368456 2.3591245, 48.8560410 2.3690859, 48.8508003 2.3840730, 48.8670533 2.3622765, 48.8368019 2.2791434, 48.8369546 2.2791133, 48.8651635 2.3419355, 48.8813769 2.3721944, 48.8468990 2.3044201, 48.8385292 2.3895336, 48.8654085 2.3767039, 48.8710357 2.3522560, 48.8710551 2.3579616, 48.8690400 2.3726204, 48.8671390 2.3755303, 48.8646245 2.3695884, 48.8602229 2.3727573, 48.8536882 2.3708103, 48.8557897 2.3753324, 48.8545778 2.3710477, 48.8862540 2.3333605, 48.8649900 2.3816769, 48.8831571 2.3884076, 48.8570855 2.3550986, 48.8497121 2.3553355, 48.8716241 2.3914872, 48.8594342 2.4029865, 48.8637107 2.3697771, 48.8750628 2.3386203, 48.8710457 2.3357596, 48.8706525 2.3467197, 48.8784174 2.3564644, 48.8796001 2.3577149, 48.8768603 2.3560228, 48.8811904 2.3637372, 48.8827558 2.3708586, 48.8700724 2.3349268, 48.8681500 2.3362914, 48.8672079 2.3368573, 48.8658764 2.3368066, 48.8535604 2.4103242, 48.8530681 2.4104272, 48.8376093 2.3551119, 48.8239653 2.3231923, 48.8270872 2.3248231, 48.8274776 2.3257190, 48.8280761 2.3273229, 48.8291991 2.3278057, 48.8759986 2.3816785, 48.8337665 2.3191153, 48.8341125 2.3181604, 48.8823251 2.3397496, 48.8873987 2.3561308, 48.8658704 2.3983197, 48.8956894 2.3411820, 48.8428672 2.3484588, 48.8946670 2.3443629, 48.8949500 2.3433680, 48.8937368 2.3473963, 48.8938461 2.3475036, 48.8935060 2.3426870, 48.8941720 2.3462340, 48.8941340 2.3463850, 48.8940340 2.3461900, 48.8936100 2.3477290, 48.8930400 2.3435230, 48.8732230 2.3544700, 48.8712160 2.3580210, 48.8706730 2.3594270, 48.8703260 2.3600480, 48.8697550 2.3610960, 48.8694730 2.3616430, 48.8704690 2.3610130, 48.8709730 2.3613960, 48.8710750 2.3612300, 48.8715680 2.3620320, 48.8719160 2.3626810, 48.8726860 2.3635650, 48.8722479 2.3978396, 48.8914670 2.3493410, 48.8929850 2.3440490, 48.8939200 2.3452590, 48.8405023 2.2650429, 48.8914220 2.3515420, 48.8915940 2.3516290, 48.8917510 2.3517290, 48.8919510 2.3518460, 48.8445643 2.3491518, 48.8431091 2.3419694, 48.8693141 2.3323713, 48.8862067 2.3175438, 48.8624680 2.3549738, 48.8883787 2.3534523, 48.8437872 2.3493332, 48.8663676 2.3860046, 48.8686610 2.3900468, 48.8408842 2.2997786, 48.8407778 2.2998335, 48.8525397 2.4062717, 48.8527026 2.3765031, 48.8501042 2.3782626, 48.8532457 2.3759666, 48.8660229 2.3666774, 48.8668369 2.3739208, 48.8667946 2.3743500, 48.8732730 2.3532176, 48.8793707 2.3458902, 48.8571157 2.3684747, 48.8357356 2.3522840, 48.8766343 2.3407712, 48.8515019 2.2777745, 48.8648511 2.3817815, 48.8328925 2.2883940, 48.8490395 2.3485570, 48.8709579 2.3576608, 48.8881851 2.3480652, 48.8884653 2.3485324, 48.8869647 2.3478228, 48.8920227 2.3428666, 48.8857577 2.3451141, 48.8554636 2.3337901, 48.8604940 2.3409119, 48.8910607 2.3394636, 48.8827601 2.3372823, 48.8519424 2.3384522, 48.8883514 2.2971194, 48.8933968 2.3371262, 48.8521891 2.3465789, 48.8887735 2.3938208, 48.8490772 2.4063369, 48.8975354 2.3338607, 48.8975417 2.3342523, 48.8939135 2.3350409, 48.8939770 2.3330775, 48.8935624 2.3293592, 48.8954780 2.3285255, 48.8964866 2.3287937, 48.8974071 2.3296252, 48.8957777 2.3393455, 48.8350746 2.2888425, 48.8340535 2.2873426, 48.8221377 2.3582427, 48.8912689 2.3395224, 48.8683080 2.3897771, 48.8748542 2.3087625, 48.8302605 2.3138234, 48.8421986 2.2819707, 48.8963284 2.3330215, 48.8575637 2.3994629, 48.8577147 2.4074098, 48.8518332 2.3373498, 48.8969286 2.3866620, 48.8505469 2.4061987, 48.8882304 2.3741760, 48.8633570 2.3506638, 48.8356746 2.3226602, 48.8354175 2.3228183, 48.8607749 2.3784617, 48.8555652 2.3871679, 48.8822854 2.3399369, 48.8442360 2.3235210, 48.8405572 2.3224049, 48.8407069 2.3164233, 48.8409248 2.3157527, 48.8413133 2.3184421, 48.8414979 2.3246397, 48.8432840 2.3249954, 48.8407506 2.3165877, 48.8415356 2.3248762, 48.8781338 2.2877691, 48.8910090 2.3460570, 48.8728753 2.3429491, 48.8394700 2.3227210, 48.8419451 2.2631629, 48.8420009 2.2643568, 48.8913333 2.3185158, 48.8561348 2.4048284, 48.8468777 2.4086290, 48.8468470 2.4088515, 48.8479121 2.4058825, 48.8493703 2.2944544, 48.8836495 2.3167431, 48.8720494 2.3430269, 48.8228779 2.3555122, 48.8281219 2.3158457, 48.8730582 2.3434334, 48.8613396 2.3430061, 48.8227998 2.3462308, 48.8765119 2.3549110, 48.8309811 2.3172117, 48.8240226 2.3413467, 48.8248954 2.3414221, 48.8295986 2.3338514, 48.8364982 2.2975868, 48.8352818 2.3025475, 48.8358889 2.3006491, 48.8600347 2.4024972, 48.8608921 2.3439350, 48.8581223 2.3362437, 48.8427979 2.2601266, 48.8394583 2.2629179, 48.8277530 2.3505091, 48.8426097 2.2818352, 48.8196529 2.3647206, 48.8551489 2.3398837, 48.8512675 2.3899326, 48.8845594 2.3650486, 48.8904042 2.3201855, 48.8917130 2.3492982, 48.8392807 2.3902734, 48.8455873 2.3490693, 48.8352427 2.3769655, 48.8369196 2.3750884, 48.8614043 2.3675596, 48.8741216 2.3427260, 48.8944467 2.3202187, 48.8526175 2.3431162, 48.8660965 2.3482633, 48.8549614 2.3379207, 48.8715766 2.3537539, 48.8712919 2.3698711, 48.8733970 2.3707413, 48.8734671 2.3704021, 48.8733502 2.3703282, 48.8668410 2.3533606, 48.8197803 2.3430846, 48.8453425 2.4001936, 48.8530718 2.3455009, 48.8608697 2.3679199, 48.8643323 2.3740909, 48.8396133 2.3228908, 48.8637373 2.3634903, 48.8444534 2.3488046, 48.8613268 2.3701752, 48.8614009 2.3699607, 48.8661252 2.3444240, 48.8659496 2.3445011, 48.8657315 2.3448468, 48.8657774 2.3445761, 48.8511831 2.3785314, 48.8392014 2.3497085, 48.8711280 2.3521453, 48.8790612 2.3664752, 48.8265384 2.3420357, 48.8221288 2.3258121, 48.8530831 2.3451327, 48.8529444 2.3459453, 48.8600507 2.3566528, 48.8527079 2.3443015, 48.8822164 2.3337987, 48.8660577 2.3461115, 48.8753587 2.3704700, 48.8528366 2.3455838, 48.8576488 2.2779659, 48.8884177 2.3743799, 48.8275172 2.3481095, 48.8518377 2.3336366, 48.8831199 2.3303330, 48.8834005 2.3305918, 48.8661080 2.3480098, 48.8650085 2.3673694, 48.8629594 2.3673222, 48.8627650 2.3673900, 48.8467474 2.3783883, 48.8699476 2.3254321, 48.8696624 2.3230123, 48.8403450 2.3126650, 48.8594147 2.3492122, 48.8593718 2.3493758, 48.8591750 2.3498375, 48.8591459 2.3499381, 48.8666058 2.3460447, 48.8274980 2.3718441, 48.8725856 2.3023103, 48.8359481 2.3498941, 48.8687270 2.3475909, 48.8279631 2.3510342, 48.8276841 2.3501384, 48.8237415 2.3254034, 48.8551659 2.3601680, 48.8624888 2.3394585, 48.8618771 2.3408195, 48.8678347 2.3438681, 48.8336080 2.3554429, 48.8569595 2.3061913, 48.8728158 2.3579631, 48.8299498 2.3520500, 48.8304537 2.3536286, 48.8691288 2.3921028, 48.8588424 2.3620611, 48.8527486 2.3889981, 48.8526497 2.3891013, 48.8440184 2.3516159, 48.8703084 2.3528255, 48.8422841 2.3498549, 48.8602435 2.3561333, 48.8727441 2.3433035, 48.8764040 2.3270060, 48.8546210 2.3304540, 48.8815103 2.3372869, 48.8497474 2.3380298, 48.8713994 2.3446987, 48.8655102 2.2838972, 48.8532503 2.3737978, 48.8670687 2.3793313, 48.8667388 2.3796639, 48.8672848 2.3853206, 48.8671313 2.3852348, 48.8664979 2.3850779, 48.8553007 2.3755708, 48.8948851 2.3827807, 48.8760857 2.3803012, 48.8387171 2.4582291, 48.8775011 2.3813787, 48.8486443 2.3753679, 48.8430061 2.3486842, 48.8468648 2.3840074, 48.8598410 2.3424752, 48.8762491 2.3755713, 48.8752119 2.3738600, 48.8753782 2.3736728, 48.8782984 2.3583405, 48.8267959 2.3271211, 48.8812111 2.3720335, 48.8747667 2.3810283, 48.8749554 2.3828694, 48.8785529 2.3744580, 48.8735251 2.3828952, 48.8656456 2.3001103, 48.8716947 2.3062494, 48.8642117 2.3138141, 48.8743835 2.3178889, 48.8723341 2.3116489, 48.8709008 2.3059242, 48.8747420 2.3873713, 48.8783980 2.3708887, 48.8786489 2.3710845, 48.8793968 2.3715404, 48.8442836 2.3233862, 48.8818625 2.3741104, 48.8831168 2.3764104, 48.8835128 2.3767725, 48.8843991 2.3787117, 48.8855150 2.3816003, 48.8833431 2.3880013, 48.8525395 2.3353602, 48.8525395 2.3353602, 48.8423823 2.3027121, 48.8844100 2.3396601, 48.8843181 2.3391723, 48.8528644 2.3463229, 48.8861530 2.3940741, 48.8818660 2.3056448, 48.8469280 2.3518880, 48.8457050 2.3517750, 48.8765843 2.3876396, 48.8768371 2.3719871, 48.8755204 2.3905491, 48.8837170 2.3804450, 48.8755731 2.3984479, 48.8770937 2.4058924, 48.8357004 2.2929900, 48.8350897 2.3042236, 48.8837364 2.3368191, 48.8840234 2.3842246, 48.8556943 2.3595261, 48.8847149 2.3814227, 48.8606485 2.3503847, 48.8924468 2.3253223, 48.8751698 2.3943041, 48.8845920 2.3364580, 48.8815120 2.3375130, 48.8844290 2.3287650, 48.8704232 2.3339330, 48.8727403 2.3545304, 48.8743038 2.3728073, 48.8737082 2.3705081, 48.8745664 2.3724688, 48.8738742 2.3798465, 48.8716356 2.3717654, 48.8721986 2.3733717, 48.8542603 2.3716689, 48.8541774 2.3718475, 48.8540652 2.3718440, 48.8542657 2.3672153, 48.8666836 2.3693913, 48.8642214 2.3713206, 48.8630703 2.3685776, 48.8915636 2.3488296, 48.8524094 2.3465837, 48.8733461 2.3642358, 48.8725150 2.3656983, 48.8690849 2.3675483, 48.8573775 2.3791140, 48.8504308 2.3983982, 48.8301596 2.3342151, 48.8554706 2.3787234, 48.8629210 2.3641445, 48.8301369 2.3291359, 48.8630406 2.3673064, 48.8584243 2.3685727, 48.8592565 2.3822340, 48.8589660 2.3811882, 48.8582525 2.2944389, 48.8680595 2.4086915, 48.8611381 2.3809336, 48.8624272 2.3797335, 48.8519888 2.3423483, 48.8904696 2.3392991, 48.8859778 2.3475855, 48.8667059 2.3800163, 48.8457052 2.3419808, 48.8471480 2.3172036, 48.8476473 2.3185907, 48.8481468 2.3197601, 48.8478436 2.3190965, 48.8549571 2.3538809, 48.8560048 2.3754788, 48.8555572 2.3747522, 48.8618001 2.3720184, 48.8635810 2.3667513, 48.8615804 2.3711339, 48.8636741 2.3696764, 48.8633311 2.3692871, 48.8630042 2.3673142, 48.8614465 2.3641573, 48.8573825 2.3774991, 48.8615938 2.3734258, 48.8632870 2.3585986, 48.8666410 2.3664307, 48.8543300 2.3711983, 48.8749871 2.3593369, 48.8747439 2.3591131, 48.8701314 2.3413473, 48.8537719 2.3404642, 48.8758353 2.3818821, 48.8514007 2.3806923, 48.8667240 2.3744593, 48.8332731 2.3154936, 48.8455561 2.2971265, 48.8277981 2.3154241, 48.8359536 2.3961945, 48.8365131 2.3940686, 48.8381491 2.3600725, 48.8773298 2.3590519, 48.8292002 2.3082962 +48.8166550 2.3605732, 48.8827947 2.3766007, 48.8830752 2.3125555 +48.8330778 2.3268974 +635 +55.9635684 -3.1844376, 55.9575068 -3.1501850, 55.9436142 -3.2051647, 55.9340839 -3.0942935, 55.9679996 -3.2373783, 55.9857135 -3.3943177, 55.9668781 -3.2394194, 55.9679736 -3.2375792, 55.9190795 -3.1651500, 55.9235845 -3.2848604 +3 and 48.3908215 -4.4845938, 48.6510102 -2.0245876, 48.6084394 -4.3313468 +55.9340842 -3.2110851, 55.9440689 -3.1919649, 55.9515573 -3.1786333, 55.9458970 -3.2052450, 55.9575352 -3.2075320, 55.9807924 -3.1779232, 55.9472510 -3.2151012, 55.9454049 -3.1915247, 55.9545520 -3.1869140, 55.9438908 -3.1833205, 55.9528284 -3.1902144, 55.9410985 -3.2183716, 55.9457075 -3.2175746, 55.9380313 -3.3125422 +29 and Zwickauer Straße, Niedersedlitzer Straße, Bergmannstraße, Washingtonstraße, Marie-Curie-Straße, Potthoffstraße, Gustav-Adolf-Platz, Barbarossaplatz, Georg-Palitzsch-Straße, Keplerstraße, Gostritzer Straße, Scharfenberger Straße, Tharandter Straße, Gamigstraße, Nickerner Weg, Nickerner Weg, Oehmestraße, Tharandter Straße, Tharandter Straße, Tharandter Straße, Senftenberger Straße, Gustav-Adolf-Platz, Tharandter Straße, Tharandter Straße +131 +http://www.musee-armee.fr/, www.aphp.fr/, http://www.lesartsdecoratifs.fr/francais/arts-decoratifs/, http://www.arts-et-metiers.net/, http://www.tourjeansanspeur.com/, www.musee-moreau.fr, http://www.paris.fr/loisirs/musees-expos/musee-des-egouts/visite-publique-des-egouts-de-paris/rub 9691 stand 5943 port 23931, http://www.pasteur.fr/ip/easysite/pasteur/fr/institut-pasteur/musees/musee-pasteur, www.daliparis.com/, http://www.cite-sciences.fr/, http://maisonsvictorhugo.paris.fr/, http://www.musee-en-herbe.com/, http://www.mep-fr.org, www.annehoguet.fr/musee.htm, http://www.cite-sciences.fr/fr/cite-des-sciences/contenu/c/1248104303612/cite-des-enfants/, http://www.museedelapoupeeparis.com/, catacombes.paris.fr/, www.musee-erotisme.com, http://www.petitpalais.paris.fr/, http://www.musee-legiondhonneur.fr/, http://conciergerie.monuments-nationaux.fr/, www.museeduvinparis.com, http://www.ladressemuseedelaposte.com/, http://www.baccarat.fr/fr/univers-baccarat/musees/gallery-opening-hours.htm, http://forumdesimages.fr/, www.museeduchocolat.fr, http://www.citechaillot.fr/fr/, www.musee-marine.fr, http://www.museefm.org/, www.fondationlecorbusier.asso.fr, http://musee-contrefacon.com/, www.dapper.com.fr, http://www.pavillons-de-bercy.com/, www.mairie6.paris.fr, www.le-maf.com/, www.bibliotheque-polonaise-paris-shlp.fr, www.icp.fr, http://www.christofle.com/, www.musee-clemenceau.fr/, www.compagnons.org/, www.upmc.fr/, www.avh.asso.fr/, www.musee-henner.fr/, www.bium.univ-paris5.fr/musee/, www.museemaillol.com/, http://www.museedeslettres.fr/, www.museedumontparnasse.net/, http://www.mines-paristech.fr/, www.paris.fr/, crypte.paris.fr/, www.bnf.fr/, prefecturedepolice.interieur.gouv.fr, http://www.paris.fr/loisirs/musees-expos/memorial-leclerc-et-de-la-liberation-de-paris-musee-jean-moulin/p6923, http://www.centrepompidou.fr/cpv/ressource.action?param.id=FR R-89fd49e847165bc78d564f6dbeb6777¶m.idSource=FR E-2ab598d3369ad7a58ead7e6be32ba7b, http://www.maxims-musee-artnouveau.com/, http://www.cite-sciences.fr/fr/carrefour-numerique/, http://www.artludique.com, http://www.henricartierbresson.org, http://www.espacereinedesaba.org/, http://www.avocatparis.org/home/presentation-et-missions/histoire-du-barreau-de-paris/musee-virtuel.html, http://www.quaibranly.fr/, http://www.museum-mineral.fr/, http://www.mnhn.fr/fr/visitez/lieux/galeries-anatomie-comparee-paleontologie, www.imarabe.org/, equipement.paris.fr/JARDIN TINO ROSSI, www.hallesaintpierre.org, www.jeudepaume.org, www.musee-orangerie.fr/, www.curie.fr/, www.grandpalais.fr/, http://www.pavillon-arsenal.com/, www.musee-moyenage.fr/, www.mahj.org, http://www.archivesnationales.culture.gouv.fr/, http://www.museepicassoparis.fr/, http://www.paris.fr/loisirs/musees-expos/musee-cognacq-jay/p6466, www.musee-delacroix.fr, http://www.histoire-immigration.fr/, http://www.musee-orsay.fr, www.museedufumeur.net, www.institutneerlandais.com/, www.pinacotheque.com/, www.lesartsdecoratifs.fr/, http://cernuschi.paris.fr/, www.musee-rodin.fr/, http://www.musee-jacquemart-andre.com/, www.cinematheque.fr/, http://www.fondation-pb-ysl.net, www.mam.paris.fr/, www.palaisdetokyo.com/, fondation.cartier.com/, www.guimet.fr/, paris.fr/loisirs/musees-expos/musee-bourdelle/p6408, http://www.guimet.fr/fr/musee-dennery/informations-pratiques, www.marmottan.com, http://vie-romantique.paris.fr, http://balzac.paris.fr, http://eaudeparis.fr/lespace-culture/pavillon-de-leau/, http://www.memorialdelashoah.org/, http://www.mcjp.fr/, http://zadkine.paris.fr, www.museedemontmartre.fr/, www.chassenature.org, http://www.mobiliernational.culture.gouv.fr/, www.museeduluxembourg.fr/, http://www.palais-decouverte.fr/, www.si.se/Paris/, http://www.fondationlouisvuitton.fr/, http://www.monnaiedeparis.fr/, http://palaisgalliera.paris.fr/, http://carnavalet.paris.fr/, http://www.louvre.fr/, http://sainte-chapelle.monuments-nationaux.fr/ +Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Petite Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine à l'Albien, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Cuvier, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Puits artésien de la Butte-aux-Cailles, fontaine d'eau rafraîchie, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Tour Eiffel, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Boulevard du Palais, Jardin du Luxembourg Playground, Notre-Dame, Square Rene Viviani, Novotel Paris Les Halles, Fontaine Eau de Paris, Fontaine Wallace 125, rue de Meaux, Fontaine Wallace, Eau potable, Fontaine Wallace, Fontaine Wallace, "La Source" (Fontaine à eau potable), Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace +E 35 +yes +6 +55.9606990 -3.2496993, 55.9400545 -3.1930414, 55.9494596 -3.1096499, 55.9138280 -3.1645331, 55.9376548 -3.1781132, 55.9403771 -3.4162904, 55.9195401 -3.1576764, 55.9259844 -3.2829976, 55.9351037 -3.2894757, 55.9502710 -3.2958592, 55.9732511 -3.1566940 +2.0550453394597277 +wlan +292 +0 +11 +Piscine Blomet, Piscine Henry de Montherland, Piscine Suzanne Berlioux, Alfred Nakache, Piscine Saint-Merri, Piscine Château Landon, Piscine Didot, Piscine Émile Anthoine, Piscine Aspirant Dunand, Piscine de la Plaine, Piscine Cour des lions, Piscine Georges Drigny, Piscine municipale Bernard Lafay, Piscine Catherine Lagatu, Piscine Mathis, Piscine Beaujon, Centre sportif Saint-Germain, Aquaboulevard, Piscine Pontoise, Piscine Fernand-Blanluet, Piscine Pailleron, Piscine Georges Hermant, Centre sportif Alfred Nakache, Piscine Georges Vallerey, Piscine des Amiraux, Piscine Château des Rentiers, Piscine d'Auteuil, Piscine Molitor, Piscine René et André Mourlon, Piscine Keller, Piscine Joséphine Baker, Piscine Jean Taris, Piscine Roger Le Gall, Piscine de la Butte Aux Cailles, Piscine Champerret, Piscine Dunois +0 +53.0485839 8.6313511, 53.0485936 8.6313802, 53.0486037 8.6314063, 53.0494724 8.6335621, 53.0494578 8.6335286, 53.0494852 8.6335943, 53.0494998 8.6336225, 53.0520881 8.6325667, 53.0516940 8.6297814, 53.0516682 8.6297841, 53.0516456 8.6297895, 53.0516214 8.6297922, 53.0517785 8.6077513, 53.0516366 8.6078318, 53.0518496 8.6077245, 53.0517108 8.6078050, 53.0590251 8.6234072, 53.0589009 8.6234019, 53.0589848 8.6234019, 53.0590605 8.6234046, 53.0589429 8.6233965, 53.0505000 8.6353079, 53.0506008 8.6353450, 53.0505388 8.6353321, 53.0505678 8.6353106, 53.0505340 8.6352731, 53.0574582 8.5994310, 53.0575115 8.5993612, 53.0575002 8.5994283, 53.0574775 8.5993317, 53.0525977 8.6321456 +2243833 +6 +Roseto, Il Sogno, Salerno il Calabrese, Pizzeria Da Madeo, davinci, Pizzeria Europa, Trattoria Vecchia Bari, Taormina, Alfredo OSTERIA, Mercato, Pasta Bar, Da Mario, Restaurant Kurpfälzisches Museum, Ristorante / Enoteca Akademie, Mamma Leone, ProSecco, Stadtgarten, Trattoria Da Rocco, Santa Lucia, Piccolo Mondo, Rossini, Zafferano, VINCIdue, Ristorante Da Pino, Die Olive Feinkostgeschäft und Snackbar, Giardino, Il Gambero Rosso, Ristorante Italia, Papi Bar, La Vite, Goldene Rose, Stellwerk, Römer Pils Stube, Pizzeria Da Rocco Corona, La Locanda 26, Casa Sorrento, By Lina +49.3805076 8.6913796, 49.4098890 8.7063691, 49.4428552 8.7525697, 49.4116089 8.6773078, 49.4191809 8.7564457, 49.4192023 8.7564431, 49.4343094 8.7486730, 49.4243544 8.7433985, 49.3961047 8.6875838, 49.4276366 8.6827967, 49.4374337 8.6803411, 49.4132997 8.6919729, 49.3784782 8.6591509, 49.3789372 8.6646280, 49.4080084 8.6940492, 49.3828843 8.6904877, 49.4187886 8.6442958, 49.3639893 8.7056214, 49.3657829 8.7050967, 49.3728927 8.7038472, 49.4031962 8.7278159, 49.4016050 8.6845129, 49.3803804 8.6888305, 49.4166719 8.6922486, 49.3768611 8.6887922, 49.3778904 8.6643682, 49.3787580 8.6756367, 49.3909523 8.6618014, 49.3771834 8.6692793, 49.4261853 8.6446150, 49.4186611 8.7633544, 49.4107798 8.7061328, 49.4140696 8.7184550, 49.3749627 8.6158813, 49.4301309 8.6907932, 49.4278654 8.7486231, 49.3869602 8.7092367, 49.4332443 8.6805201, 49.4307092 8.6924155, 49.4172221 8.6817577, 49.3741755 8.6886390, 49.3762842 8.6771341, 49.3766854 8.6825351, 49.4339270 8.6786101, 49.3871791 8.7350466, 49.3800814 8.6727714, 49.4011499 8.6909716, 49.3811655 8.6709398, 49.3845955 8.7081656, 49.4105744 8.6916465, 49.4062671 8.6797009, 49.4088091 8.7068231, 49.4109623 8.6909012, 49.4089627 8.6813526, 49.4109261 8.7125920, 49.4122797 8.7133174, 49.4129194 8.7022179, 49.4090650 8.6813526, 49.4136080 8.7136083, 49.4129132 8.7053546, 49.4061093 8.6758875, 49.4134315 8.7103016, 49.4146455 8.7188499, 49.4062388 8.6917406, 49.4056528 8.6927157, 49.4043812 8.6796436, 49.4083809 8.6986013, 49.4080333 8.6763139, 49.4072113 8.6916915, 49.4103365 8.7039131, 49.4168778 8.7249065, 49.4133316 8.7381491, 49.4076180 8.6891919, 49.4201358 8.6806591, 49.4211077 8.6784794, 49.3737385 8.6825043, 49.3745624 8.6786856, 49.4175873 8.5930822, 49.3895906 8.6884286, 49.4122790 8.7132837, 49.3812556 8.6671021, 49.3854627 8.6732681, 49.4311045 8.6454842, 49.4171606 8.7606666, 49.4171643 8.7606441, 49.4151832 8.7505051, 49.4156686 8.7426209, 49.4125678 8.7457320, 49.4151180 8.7605724, 49.4235281 8.7521732, 49.4278819 8.7486168, 49.4084216 8.6996088, 49.4084408 8.6995987, 49.4062642 8.6913883, 49.4062712 8.6914200, 49.4000303 8.6917151, 49.4000488 8.6917225, 49.4114591 8.7705882, 49.3822762 8.6627779, 49.3891812 8.6768465, 49.3991080 8.6718293, 49.3841629 8.6716409, 49.3834567 8.6610378, 49.4072203 8.6719856, 49.4083820 8.6677978, 49.3740978 8.6628076, 49.4143283 8.7699002, 49.4069887 8.6681549, 49.4106864 8.6497651, 49.4227595 8.6489390, 49.3692466 8.7061199, 49.3790486 8.7061511, 49.4073424 8.6881133, 49.4067051 8.7142475, 49.4127360 8.7206023, 49.4219259 8.7602991, 49.4016204 8.6845377, 49.4051006 8.6848847, 49.4132994 8.6919481 +49.4634974 8.4956993 +55.9374159 -3.1700169 +Robert-Bosch-Straße, Friedhofstraße, Kiefernweg, Unterer Kohlwasen +48.8379931 2.3270595, 48.8184662 2.3501586, 48.8224797 2.3195383, 48.8413274 2.2797801, 48.8384087 2.2847485, 48.8370749 2.4110506, 48.8327412 2.3975487, 48.8256492 2.4145211, 48.8410409 2.2593377, 48.8439975 2.4003952, 48.8301712 2.3992796, 48.8192381 2.4359906 +http://gloria-kamera-kinos.de +48.8479197 2.3992555, 48.8444572 2.3762234, 48.8336197 2.4448135, 48.8267972 2.3644166, 48.8526158 2.3471643, 48.8468908 2.3696558, 48.8422395 2.3861184, 48.8463028 2.3793259, 48.8399294 2.4045970, 48.8448378 2.4051177, 48.8474520 2.4048594, 48.8473395 2.4060719, 48.8350796 2.4339399, 48.8354938 2.4305358, 48.8375477 2.4255552, 48.8346793 2.4193483, 48.8684023 2.3502078, 48.8554435 2.3595073, 48.8502442 2.3485713, 48.8410791 2.3878034, 48.8364073 2.3595567, 48.8326306 2.3560783, 48.8397407 2.3618144, 48.8430681 2.3643136, 48.8552512 2.3476157, 48.8553803 2.3476867, 48.8554064 2.3475533, 48.8552816 2.3474675, 48.8316089 2.3555656, 48.8462050 2.3548474, 48.8445578 2.3478015, 48.8397766 2.3563951, 48.8439889 2.3550231, 48.8400361 2.3581380, 48.8403571 2.3507117, 48.8777755 2.4052173, 48.8374935 2.3535342, 48.8379182 2.3556557, 48.8501724 2.3668483, 48.8872913 2.3493292, 48.8849270 2.3525804, 48.8925222 2.3614454, 48.8551549 2.3558324, 48.8670855 2.3530694, 48.8647563 2.3632147, 48.8674231 2.3585861, 48.8535530 2.3577268, 48.8554112 2.4000945, 48.8276950 2.3526554, 48.8718710 2.3683060, 48.8503580 2.3831342, 48.8699280 2.3499165, 48.8321351 2.3486444, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8293608 2.3803043, 48.8299075 2.3795677, 48.8370007 2.3812275, 48.8204882 2.3602086, 48.8203447 2.3628121, 48.8199857 2.3627088, 48.8339810 2.3847461, 48.8353141 2.3838347, 48.8352990 2.3814978, 48.8787743 2.4087695, 48.8790383 2.4084495, 48.8782046 2.4088226, 48.8793770 2.4082476, 48.8785854 2.4080833, 48.8649222 2.3994933, 48.8628604 2.3719559, 48.8677797 2.3773892, 48.8363767 2.4236251, 48.8295071 2.4201091, 48.8212233 2.4336070, 48.8300361 2.4231832, 48.8295708 2.4234828, 48.8291280 2.4377720, 48.8817158 2.3974038, 48.8350776 2.4353579, 48.8430906 2.4215578, 48.8597630 2.3718080, 48.8322990 2.3969380, 48.8612160 2.3941080, 48.8562087 2.3767474, 48.8556820 2.3852020, 48.8238387 2.3531949, 48.8315645 2.4109263, 48.8312210 2.4129893, 48.8778330 2.3934820, 48.8555310 2.3895370, 48.8998070 2.3740820, 48.8551080 2.3942800, 48.8599920 2.3625150, 48.8270122 2.3540304, 48.8424551 2.3888122, 48.8623280 2.3486460, 48.8525988 2.4088082, 48.8898369 2.3739136, 48.8307590 2.3592040, 48.8526713 2.3815527, 48.8210197 2.3568688, 48.8951024 2.3643279, 48.8504870 2.3502540, 48.8654640 2.3863600, 48.8702780 2.3853090, 48.8684460 2.3844060, 48.8483008 2.3594250, 48.8743960 2.3620000, 48.8590555 2.3853281, 48.8708487 2.3842762, 48.8808400 2.3880660, 48.8304600 2.4499760, 48.8366079 2.4625007, 48.8185772 2.3545050, 48.8229962 2.3483008, 48.8548880 2.3860580, 48.8649444 2.4051523, 48.8711656 2.3608619, 48.8683392 2.3860944, 48.8211700 2.3525560, 48.8412050 2.4011810, 48.8957085 2.3611060, 48.8325969 2.4424252, 48.8280471 2.4193059, 48.8341687 2.4613030, 48.8319760 2.4160891, 48.8322537 2.4156461, 48.8385501 2.4606113, 48.8237496 2.4396773, 48.8234381 2.4570355, 48.8302710 2.4501255, 48.8272306 2.4306540, 48.8308745 2.4295234, 48.8404327 2.4302364, 48.8351339 2.4507573, 48.8355228 2.4555897, 48.8270280 2.4256131, 48.8523056 2.3854632, 48.8827393 2.3748215, 48.8649924 2.3911518, 48.8283394 2.3695038, 48.8713595 2.3858455, 48.8756264 2.3549455, 48.8940100 2.3515980, 48.8606179 2.4048647, 48.8221234 2.3755099, 48.8501856 2.3598181, 48.8783392 2.3518796, 48.8672620 2.3546160, 48.8876110 2.3980200, 48.9001410 2.3907160, 48.8581731 2.4063523, 48.8581782 2.3488219, 48.8579930 2.3811530, 48.8701720 2.3941990, 48.8252925 2.3693389, 48.8760549 2.4066379, 48.8648810 2.3598580, 48.8785620 2.3603690, 48.8656244 2.4005700, 48.8678880 2.4110180, 48.8782870 2.3930910, 48.8687996 2.3670827, 48.8578985 2.3627922, 48.8338684 2.3623631, 48.8186719 2.3602335, 48.8311679 2.3698529, 48.8353270 2.3472350, 48.8435250 2.3852390, 48.8847495 2.3583714, 48.8680920 2.3674820, 48.8749920 2.3693880, 48.8691100 2.3880580, 48.8582469 2.3636013, 48.8847394 2.3599665, 48.8851070 2.3774500, 48.8411853 2.3632232, 48.8618850 2.3795690, 48.8766520 2.3471580, 48.8863250 2.3533990, 48.8937263 2.3632365, 48.8866720 2.3745570, 48.8519585 2.3815373, 48.8735686 2.3764151, 48.8486812 2.4047540, 48.8186727 2.3590770, 48.8422355 2.3539722, 48.8997980 2.3671430, 48.8940029 2.3839514, 48.8509163 2.4000959, 48.8737600 2.4116660, 48.8608430 2.4112060, 48.8729910 2.3967970, 48.8569010 2.3829850, 48.8670820 2.3921970, 48.8394056 2.4219004, 48.8491125 2.4034753, 48.8387600 2.3533490, 48.8650341 2.4104986, 48.8939970 2.3494640, 48.8570984 2.3707315, 48.8861355 2.3561753, 48.8446043 2.3875639, 48.8780460 2.3546040, 48.8482791 2.3738928, 48.8541916 2.4013975, 48.8477459 2.4005894, 48.8315105 2.3698744, 48.8451934 2.3802706, 48.8437212 2.3551124, 48.8678242 2.3628446, 48.8243378 2.3638857, 48.8933245 2.3887800, 48.8941743 2.3916574, 48.8536514 2.3489902, 48.8408330 2.4201155, 48.8912248 2.3930476, 48.8946014 2.3912450, 48.8527000 2.3492200, 48.8518000 2.3475300, 48.8242821 2.4231989, 48.8387842 2.4064887, 48.8449387 2.4418585, 48.8516633 2.4098056, 48.8668000 2.3495673, 48.8600249 2.4009571, 48.8589058 2.3989762, 48.8559569 2.4014635, 48.8819047 2.3985349, 48.8590759 2.4003273, 48.8264004 2.4327560, 48.8189971 2.3575128, 48.8323795 2.3620094, 48.8520536 2.4091515, 48.8198844 2.3619743, 48.8569678 2.3519723, 48.8499865 2.3481714, 48.8895806 2.3929015, 48.8847068 2.3794407, 48.8420092 2.4240851, 48.8232610 2.3543235, 48.8232751 2.3542283, 48.8632906 2.3969375, 48.8597103 2.3998209, 48.8303825 2.3751684, 48.8930154 2.3876090, 48.8296315 2.3814341, 48.8300792 2.4152641, 48.8419664 2.3871201, 48.8815514 2.4001315, 48.8283467 2.3766535, 48.8725766 2.3640561, 48.8441811 2.3576296, 48.8668462 2.3528123, 48.8658864 2.3524475, 48.8764030 2.3793479, 48.8310454 2.3779874, 48.8527614 2.3515044, 48.8577082 2.3492535, 48.8564552 2.3511205, 48.8888874 2.3790640, 48.8786186 2.4075133, 48.8276674 2.3600431, 48.8279422 2.3594556, 48.8281550 2.3775324, 48.8316089 2.3555656, 48.8316089 2.3555656, 48.8459784 2.3603720, 48.8243136 2.4192238, 48.8629574 2.3670436, 48.8705355 2.3858494, 48.8771612 2.3641684, 48.8662716 2.4063088, 48.8305375 2.3580300, 48.8527458 2.3514040, 48.8361094 2.3872805, 48.8774505 2.3685222, 48.8563876 2.4098516, 48.8897483 2.3636170, 48.8893152 2.3632428, 48.8895729 2.3670765, 48.8531320 2.3882360, 48.8548595 2.4101096, 48.8950748 2.3539271, 48.8287672 2.3790174, 48.8290058 2.3792428, 48.8324901 2.4167426, 48.8325371 2.4171377, 48.8770432 2.3607309, 48.8928183 2.3927190, 48.8528020 2.4110674, 48.8854184 2.3809339, 48.8847022 2.3794239, 48.8220651 2.3497136, 48.8556477 2.3481362, 48.8379924 2.3573249, 48.8506007 2.3684957, 48.8279269 2.3606649, 48.8281328 2.3608761, 48.8284210 2.3605021, 48.8290169 2.3599418, 48.8313949 2.3614586, 48.8502691 2.3768309, 48.8514077 2.3619724, 48.8557425 2.3657180, 48.8557863 2.3654533, 48.8405076 2.4080728, 48.8407300 2.4111999, 48.8420117 2.4099305, 48.8435586 2.3837116, 48.8463579 2.4045679, 48.8467508 2.4047042, 48.8481084 2.4046457, 48.8358697 2.3734634, 48.8362808 2.3737861, 48.8444058 2.3789793, 48.8769296 2.3805462, 48.8307541 2.4193421, 48.8663182 2.3718556, 48.8209696 2.4454995, 48.8453348 2.3532344, 48.8736147 2.3633962, 48.8708335 2.3864170, 48.8223127 2.4420635, 48.8594153 2.4063574, 48.8759892 2.3685271, 48.8640746 2.3609523, 48.8602693 2.3889177, 48.8593740 2.3653569, 48.8620888 2.3721843, 48.8416104 2.3878997 +City of Edinburgh Council, Transport for Scotland, Forth Estuary Transport Authority, The Forth Road Bridge, Forth Estuary Transport Authority, Forth Estuary Transport Authority, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport for Scotland, Transport for Scotland, Transport for Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, City of Edinburgh Council, Transport Scotland, Transport Scotland, Transport for Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, City of Edinburgh Council, City of Edinburgh Council, Transport Scotland, Transport Scotland, Transport Scotland, City of Edinburgh Council, City of Edinburgh Council, City of Edinburgh Council, City of Edinburgh Council, Transport Scotland, Transport Scotland, City of Edinburgh Council, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland +Bruntsfield Hotel +Elysée Lounge +20 +yes +34 +55.9498298 -3.1876708 +http://www.hovicha.com +49.9606475 11.6260343, 49.3608074 11.0505849, 49.2234454 12.6611867, 49.4836508 10.9835475, 50.0042360 9.0624526, 49.9124639 10.8920010, 50.0012000 9.0683238, 49.4141881 12.4140633, 49.7934099 12.2899120, 50.0060004 11.4141590, 49.9766936 9.1566232, 49.9845565 9.1639906, 49.1891725 11.1874594, 49.3687740 11.3057878, 50.0452138 10.2340424, 50.2598647 10.9666557, 50.2583057 10.9646137, 49.7502077 9.1790325, 50.3759930 11.7382095, 49.7922309 10.0258144, 49.3013427 10.5817647, 49.3053748 10.5718491, 49.2915039 11.4151762, 49.2943053 11.4096947, 50.1264898 9.1161746, 50.3177512 12.1012234, 50.3176182 12.1006372, 49.7835917 12.3094464, 50.2753812 10.9496791, 49.9769664 9.0630892, 49.8037322 10.1655094, 49.6668795 10.1406107, 50.0652139 9.6733677, 50.3707482 9.9786124, 49.4279782 11.1963294, 49.8693054 11.8872381, 50.2743347 10.9487550, 50.2137895 10.2353350, 49.9958129 10.1809319, 49.8793240 9.1557405, 49.3028718 10.5524844, 49.8400694 9.1484987, 49.9843990 9.1243968, 49.9843771 9.1237845, 49.9761625 9.1464150, 49.4491408 11.8705906, 49.3155280 10.5816018, 49.3017966 10.5709171, 50.1940569 10.0700854, 49.6241375 12.2242896, 49.7971702 9.9451436, 50.1363929 10.0063977, 50.0606042 11.8190607, 49.9762960 11.0354409, 49.7951466 9.9470589, 50.0480580 9.0084119, 49.4275675 11.9755052, 49.6214957 10.1161508, 49.1588258 11.1729362, 49.4555015 10.7961629, 49.7258203 10.2733316, 49.7255798 10.2739995, 49.3437809 12.3643806, 49.7306394 10.2306925, 48.9733293 12.8819444, 49.6659633 10.0619433, 49.7164805 10.2729330, 49.6100055 10.9988801, 50.1997379 10.9686029, 49.7981681 10.2394993, 49.7998357 10.2304975, 49.9147722 9.2009359, 49.8596561 10.4283018, 49.3771405 12.7026831, 49.7178240 10.2789839, 49.4563268 11.0759138, 50.0420746 11.6720609, 50.2588834 10.9676799, 50.0162735 9.7428022, 49.3793293 11.2078031, 49.3618383 12.4477189, 50.2594742 10.9696824, 50.2596861 10.9742321, 49.3029794 10.5717125, 49.9629473 11.1017275, 50.1048363 11.8889127, 48.9954252 12.0237005, 50.1096264 11.4141541, 49.5612829 11.3326991, 49.9117025 9.0621792, 49.7987170 9.9438007, 49.7970854 9.9309045, 49.6214272 10.8281375, 49.3732280 11.2134993, 49.3028074 10.5770004, 49.3022738 10.5773653, 50.3733173 11.5112514, 49.8044695 9.9274491, 49.7966414 9.9259417, 50.0952309 9.7217054, 50.0428392 11.4838079, 49.9284665 11.5112743, 49.0075578 13.4083931, 49.4527997 11.4905453, 49.6993172 10.0079515, 49.7795207 11.1831885, 50.1098191 9.8196676, 49.7497963 11.5185637, 49.0106437 12.4811226, 49.2660036 12.6113604, 49.5350217 11.8060476, 49.3561733 11.0994230, 49.3475346 11.1144511, 49.4556965 11.0803640, 49.8559541 9.9555809, 49.9983539 9.1085923, 49.9680252 9.5605615, 49.2380981 11.1638554, 49.1507114 11.3923191, 49.9318443 10.9552363, 49.7757531 9.9302996, 48.9243720 10.5417636, 49.9479898 9.1547196, 49.8947803 10.7258987, 50.0062150 11.4624009, 50.0010014 11.4376082, 50.0346299 11.4677444, 49.8480148 10.0638963, 49.8882725 11.5570158, 49.4532944 11.0807305, 49.7278952 10.2465747, 49.3013933 10.5813723, 49.9580652 9.5624478, 50.1899940 10.9244425, 49.8990567 10.3483512, 50.4616412 10.0202973, 49.0143666 10.9906645, 50.3251895 9.7798956, 49.9708810 9.3061199, 49.8669231 10.2242417, 49.8036251 10.2536001, 49.4697674 11.1687149, 49.9782548 10.1735166, 49.9719514 10.1713027, 49.9714489 10.1701613, 49.9749985 10.1717629, 49.9739756 10.1742360, 50.0821249 9.4629424, 49.1886050 11.0154692, 49.7329267 12.0697249, 49.7310450 12.0683404, 49.6369793 10.8503152, 50.2493996 11.0489650, 49.3486879 11.0697906, 49.7938977 9.9417177, 50.1240570 9.6186063, 49.7951151 9.9244810, 49.7060651 10.0246300, 50.0940130 11.0140999, 50.0938638 11.0222558, 49.7274911 10.3164065, 49.8294448 11.7475129, 49.9328745 11.5121784, 50.0114295 10.4639672, 49.7277244 10.2429385, 49.2788252 11.4634516, 49.0175769 11.0081340, 50.2214645 11.9356910, 50.2855025 12.1008402, 49.4492001 11.0791133, 49.7719018 9.2454886, 50.3861394 9.9329049, 49.5400470 10.7102900, 49.9961847 11.4216082, 50.1319979 10.8134964, 49.4725779 11.0358474, 50.0941321 11.0243351, 50.0939697 11.0248649, 49.9233047 10.2362144, 49.4518375 11.1548748, 49.3760667 10.1646476, 50.1443874 11.9537653, 49.0511001 11.7847275, 49.3243011 12.8922854, 49.3497904 12.8859420, 49.5191482 11.5071905, 49.8209353 9.7999591, 49.8073007 11.1705527, 49.8239347 11.1477475, 49.8462447 10.0556889, 50.2548425 12.0280849, 49.5849742 11.0541747, 49.5846415 11.0658824, 49.5855024 11.0604600, 49.5887762 11.0703214, 49.5887954 11.0736693, 49.5771080 11.0872537, 49.5783210 11.1007853, 49.5829777 11.1038052, 49.9531135 11.4272279, 49.6283830 10.5413943, 49.8220062 9.9402939, 49.8203829 9.9301434, 49.8140956 9.9396143, 49.7398938 9.2446445, 49.7355434 9.2405658, 49.5797883 11.1318384, 49.5800402 11.1324198, 49.5719765 11.0830531, 49.5677990 11.0849588, 49.5609001 11.0924246, 49.5681364 11.0689140, 49.5708790 11.0680247, 49.7244775 9.2299795, 49.7248770 9.2293711, 49.9589117 10.8087491, 49.9672770 11.7432501, 49.9909971 11.7468775, 49.9947925 11.7477127, 49.8871153 9.1178803, 50.3302575 12.0690000, 50.0170225 11.7056704, 50.0571508 11.0729935, 50.0514811 10.2419621, 49.7135651 10.1330925, 49.9601080 11.8330026, 50.0201111 10.2162916, 49.7865362 9.3648841, 49.4242659 11.1773818, 49.9826914 11.9467996, 49.7721400 10.6860600, 49.6055564 11.0142816, 49.0097753 10.8440491, 50.2736630 10.9490065, 49.8415675 11.2064513, 50.1163113 9.8925864, 50.1583224 10.5557718, 50.0418210 11.6710138, 49.7743609 9.9823905, 50.1503594 10.1029654, 49.0445983 11.4760465, 50.0467669 11.6732356, 49.5837217 11.0347448, 49.5835680 11.0381075, 49.5779627 11.0366973, 49.5323221 11.0949302, 50.0383957 10.1050053, 50.0414034 10.1165266, 49.4719068 10.9952115, 49.4728549 10.9963617, 49.5102362 10.0432970, 49.4791364 10.9858762, 49.4717518 10.9960697, 49.3389467 12.8146818, 48.9651063 12.3820209, 50.1003879 10.5878290, 50.0501235 10.1422209, 49.6236211 11.4208589, 50.0586195 8.9998085, 49.9617054 10.0518851, 49.1260615 12.1333535, 49.1256211 12.1361069, 49.1255453 12.1369761, 49.1044233 11.8101537, 49.0308094 12.0929987, 49.3131522 12.2445134, 49.3422506 12.2848751, 49.7426624 9.7182264, 49.3274576 11.3453758, 50.0222269 11.2001046, 50.1078612 9.9327703, 49.2233186 12.1547666, 49.2331221 11.9525808, 49.4536913 11.0800086, 50.0948613 11.7333105, 50.0502973 12.0609370, 49.6199523 11.0187751, 50.0394083 9.0653132, 50.4840139 10.1832475, 49.5426210 11.3374210, 50.0254865 11.6880247, 49.9687258 11.5747570, 49.5032451 11.7435371, 50.0997781 11.6086337, 50.1054293 11.6083476, 49.5959178 10.9480422, 49.0116277 13.2042654, 49.4554430 11.0700439, 49.1844101 12.0257204, 50.4968425 10.1786164, 49.1645854 11.9617084, 49.6103445 10.9654205, 49.3605749 11.3519976, 50.5010842 10.1143538, 49.4463529 10.3036488, 49.9754844 9.1779534, 50.2544516 10.9647986, 49.0460002 11.3538095, 49.5978172 11.0040967, 49.5984193 11.0080342, 49.6007476 11.0144054, 49.9097705 10.8319451, 49.6886843 9.4155824, 50.0451147 10.2256217, 50.0188478 9.3635115, 49.4297829 11.5457238, 49.9996359 9.0602127, 50.0922889 9.6522458, 49.4483665 11.0863447, 50.5106076 10.1023834, 50.5132156 10.1048660, 50.2125278 10.9380856, 49.8114903 10.0129581, 50.0194156 9.2635056, 49.9663879 9.1856672, 49.9686216 9.2033126, 50.0471266 9.0803453, 49.5129971 11.4296031, 50.2010526 10.9527322, 50.0252099 9.2972011, 49.6154988 10.3092219, 50.1394576 9.8749448, 49.4894386 11.4795879, 49.4894042 11.4795580, 49.9126111 10.1379856, 49.7203673 11.0601324, 49.5785264 10.8406085, 48.9295466 13.5781872, 49.8820339 11.1300099, 49.9949273 9.2766082, 49.9997614 9.2804789, 49.4904322 11.4787933, 49.9774224 9.1458993, 50.0497968 10.5720106, 50.1121897 9.8800006, 50.0894585 10.2128221, 50.0952367 10.2099885, 49.8616405 11.6570392, 49.5466339 11.9989292, 49.5475287 12.0005339, 49.1624256 12.0837400, 49.1648372 12.0804576, 49.1650022 12.1008606, 49.1641694 12.0801967, 49.9279182 10.7537020, 49.2050461 12.0387575, 49.5455014 12.0005665, 50.1476870 9.8734272, 49.9800710 10.8546688, 49.9766425 9.1393224, 49.7715003 9.5474320, 49.9722482 9.1426877, 50.0080661 9.2025804, 48.9964840 12.1112392, 49.9123877 11.5130613, 50.2435965 10.5186225, 48.9742962 13.1352720, 50.1116490 9.6486984, 49.8907112 11.5576850, 49.8988856 11.5412436, 49.5503094 12.0325901, 49.0409666 12.1261312, 50.0388313 9.0612891, 50.3300146 11.6693425, 50.0245932 9.6911894, 49.8624559 12.0950023, 49.1593765 11.9394701, 49.4948272 10.8065266, 50.0932927 9.6671570, 50.2247998 12.1446066, 50.2699412 12.1148272, 50.0643165 9.1620037, 49.8361603 9.8687822, 49.6896465 11.0099568, 49.7192490 11.0421798, 49.0079067 12.1165366, 49.9472089 10.6129673, 48.9777730 10.8863175, 49.3710655 12.2559091, 50.1213622 11.9904154, 50.3665316 11.9524574, 49.7941658 9.9317878, 49.2309993 12.6565069, 49.2309058 12.6607232, 50.3628917 11.9370021, 49.0253061 11.0055020, 49.5420981 11.3604985, 50.0232563 9.7965866, 49.7928585 9.9424740, 50.0235275 9.3731392, 49.0165046 12.0887646, 49.5129283 11.4823227, 49.4535459 12.1806422, 49.4535406 12.1806536, 49.4535421 12.1806457, 49.4535570 12.1806551, 49.4535474 12.1806465, 49.4535439 12.1806499, 49.4415884 10.2865204, 49.6072418 11.6332576, 49.2190762 10.6676897, 49.2040901 10.7017360, 49.9967356 9.1120639, 49.5713889 11.9282692, 49.5502166 11.0447091, 49.4860333 10.5672499, 50.0027595 9.1002640, 50.0508054 10.2135347, 49.3452344 10.5098414, 49.9939430 9.5826016, 50.3113074 11.9095828, 50.2218379 10.9028994, 50.2042367 10.9286580, 49.9523438 11.8670610, 49.9228189 10.7769457, 49.6777552 9.2316082, 49.3970486 11.1262502, 49.5696464 11.3112755, 50.0807288 9.1119339, 50.1840124 10.3599152, 49.3518845 11.4485073, 50.1421473 11.9753124, 49.0806939 12.0824892, 50.0445931 9.0224418, 49.6180199 10.6306271, 49.3855010 11.2133431, 49.6848998 11.5026780, 49.3175931 12.8435562, 49.4653009 11.2455613, 50.2738698 10.9460111, 50.2740126 10.9465172, 50.2736933 10.9464107, 50.3009356 11.0212587, 49.1669984 11.9955209, 49.2813735 12.0377887, 49.8828192 10.8963667, 50.0177947 11.3252030, 49.9711209 11.7503505, 48.9255859 10.5001108, 49.0070924 12.3792350, 49.5168691 10.5187847, 49.7832351 9.8172359, 49.9724725 11.7387437, 49.6093000 10.2743000, 49.5545131 11.0786710, 49.9567536 12.1214341, 49.7933694 9.9239401, 49.9392269 11.4453954, 50.0989052 10.1794705, 49.5697539 11.3399346, 50.3275697 11.8592399, 49.1657640 12.0997544, 50.3802233 11.7655001, 50.0853057 9.9448500, 50.0481066 10.3334860, 49.5661346 11.0160944, 49.6926339 10.9976604, 50.3933146 11.6886249, 49.0490274 12.6476381, 50.3240837 10.2164507, 49.9511533 9.6731332, 50.0888918 11.7391512, 50.1068714 10.2236964, 50.0444236 10.1297437, 50.0600050 9.2357066, 49.6568842 11.0583057, 49.7210233 11.0552324, 49.7855645 9.5196414, 49.7569832 11.5351092, 49.6377725 11.0697594, 49.7182173 11.0660421, 50.1067324 11.6086009, 49.8898746 10.1576760, 49.6823210 11.0692847, 49.9326046 10.3652365, 49.8001754 9.9359286, 49.8001754 9.9359410, 50.0785634 9.1938671, 49.3190811 10.4766577, 49.6668139 11.0697145, 49.1672629 10.3546860, 50.0610078 9.0126947, 50.1124977 10.1788871, 49.7907406 9.7543083, 50.0835399 11.3315150, 50.1316444 10.8172494, 50.1306654 10.8134916, 49.7671397 11.0796935, 49.8668080 11.4201143, 49.7399321 10.1621791, 49.7228699 11.0658476, 49.5281851 11.4954622, 49.7587008 9.9798297, 50.2073315 10.0917382, 49.8464216 11.0367188, 49.3662294 11.3096085, 49.5202124 11.1286750, 49.7992164 9.9420775, 50.0038463 9.2022640, 50.0033674 9.2024593, 50.0033156 9.2023493, 49.5474904 11.3311641, 48.9872511 13.1747092, 49.6504742 9.9412032, 49.4284487 11.0856285, 50.2303774 11.6747940, 49.4080404 11.0945211, 49.3391485 12.1214552, 49.6704405 10.9295047, 49.3252029 12.1130808, 49.6470044 12.0474891, 49.7773560 9.1903451, 49.1875381 11.0258093, 49.5573571 11.3376876, 50.2224054 12.0285376, 49.3115707 12.0782223, 49.9997940 9.2157125, 50.1586517 12.0450508, 50.3959147 11.7517171, 50.0754361 11.6758203, 49.5120207 11.4438338, 49.5030032 11.5429371, 49.7603667 10.1693043, 49.7911340 9.9347407, 49.1640074 13.1074417, 49.1314094 10.3905568, 49.6786902 10.0657015, 49.9233769 11.6005430, 50.1506416 10.2052209, 50.0554302 10.2249170, 49.2153402 11.1430235, 49.5419494 11.3432673, 50.2481179 12.0346542, 49.5290954 11.3210636, 49.7025130 10.3167934, 50.0244804 12.3084366, 49.9233224 9.1575897, 49.6892285 9.3729957, 49.4728015 10.9918927, 49.1868686 11.1976287, 50.1755442 11.7976128, 50.0612784 9.1505055, 49.7306848 10.2298315, 50.0379127 12.0038680, 49.9946339 11.7861359, 49.7874912 9.9360832, 49.7884396 9.9365530, 49.5583611 11.9772712, 50.1907032 11.6789749, 49.3271140 12.1141460, 50.1082542 11.6047778, 49.0205921 12.0952396, 49.7199662 11.0576030, 49.2250749 11.5402651, 49.6968431 9.2904653, 49.3424310 12.5290121, 49.8907183 9.7520487, 49.8661914 9.7805145, 48.9931521 11.3673226, 49.3700693 11.1852992, 50.0131184 11.5462805, 49.8671429 11.9362476, 49.4153205 11.0253169, 49.4503794 11.2104533, 50.0548172 10.0107407, 49.7830009 9.4544131, 49.4493131 11.1490114, 49.6833604 9.3650835, 50.2052252 12.1457506, 49.6321395 10.9234401, 49.7235776 9.7385532, 49.9086379 11.7596314, 49.7919770 9.2677067, 49.8011523 10.1625284, 49.3262209 12.9527050, 50.0328796 11.7627971, 49.9491040 11.9686054, 50.0150071 11.8553126, 50.0325244 11.7628357, 49.5315196 11.0047675, 49.4568640 10.5930690, 49.7099827 10.0226918, 49.6906276 10.0575946, 49.9978054 9.1814089, 49.6753801 11.4191505, 49.4061558 11.2850594, 49.6745103 10.0204639, 49.4486914 10.6347427, 49.0586716 11.3190942, 49.0672116 11.3132756, 49.7459368 9.9928879, 49.5922516 11.0522246, 49.2434542 12.9349168, 49.0351785 11.5424379, 49.6906096 11.1008071, 49.2241870 12.6609190, 49.7273904 11.4744562, 49.6502619 11.2472294, 49.6686464 12.0996487, 49.8124528 9.8288392, 50.0487739 10.4111525, 49.6093876 11.0005095, 50.2478755 11.3297769, 49.4544927 11.0480158, 49.9540225 9.1169443, 49.8813207 10.8680894, 48.9399526 13.6174750, 49.8907921 10.8829169, 49.8858747 11.3346866, 49.8935679 10.8779344, 50.0015859 10.1991002, 50.0019106 10.1995409, 49.2990096 10.4097309, 49.8984450 12.0457164, 48.9577183 12.8734443, 48.9222054 11.1980123, 49.0348960 12.6122460, 49.2132941 12.6724124, 49.2223433 12.6878565, 50.2329225 10.7273277, 48.9670759 13.3186444, 48.9608782 13.3116962, 48.9602160 13.3124150, 48.9796758 13.3094109, 49.0242625 12.1398854, 49.0535718 12.6805814, 49.0535391 12.6763560, 50.2834211 11.0269897, 48.9562504 13.4658944, 50.0226249 11.8149188, 49.0188390 12.0832940, 50.0967401 11.5404060, 49.8684456 9.0912272, 49.8664885 9.0801663, 49.4857054 10.9490790, 49.8170477 11.8481107, 49.8174632 11.8597217, 49.8262324 11.8368387, 49.8588983 9.0844705, 48.9652790 13.5883822, 49.0779854 10.6278093, 49.5254924 11.9614494, 50.1223636 11.7840136, 50.0395891 11.9515272, 50.0480085 11.9954977, 49.6527115 9.9460333, 49.4050315 11.2926985, 49.5779343 11.1683618, 48.9426280 12.4692627, 48.9667118 12.8349224, 49.8210346 11.7431909, 49.8823055 9.5946429, 50.3261561 10.1942060, 49.0096436 10.5004746, 48.9701961 12.3265193, 50.0218969 10.2104849, 49.9975724 10.2051489, 49.6486918 11.0055125, 49.6396102 11.0018464, 50.0615527 11.8200016, 49.2971394 10.4224499, 49.0246651 12.6579342, 49.9043847 10.1925310, 49.2991739 10.4129817, 49.0263084 10.5697255, 49.0229720 10.5678961, 49.4567316 11.0810079, 49.7969352 10.0326571, 49.4519331 11.0756381, 49.0603052 10.2922231, 49.6885963 10.2005582, 50.0463262 9.2106036, 49.9758962 9.4013618, 49.4651000 11.0933450, 50.0371178 10.6203680, 49.5696911 11.3111204, 49.4521167 11.0522513, 49.3783037 10.1804272, 50.0044733 9.4174121, 49.9473973 11.6150938, 49.3765250 10.1742094, 49.4271207 11.0462448, 49.2942609 10.4159890, 49.5225359 12.2661674, 49.6075148 10.9690880, 49.8873532 11.4850110, 49.4406952 11.1143875, 49.9627815 11.4660231, 49.2301097 11.1002383, 49.6514341 11.4676563, 49.2030593 11.0503672, 49.6772117 12.1660213, 49.8393342 10.0303396, 49.8450631 10.0188812, 49.8374383 10.0363478, 49.4519991 11.0892892, 49.5444496 11.9443589, 49.5447464 11.9443084, 49.8331266 9.1351218, 49.4541507 11.0730452, 49.3824822 11.0376624, 49.9461964 10.5660012, 49.0691833 10.3196646, 49.8813681 10.8709591, 49.8813104 10.8704349, 49.3880327 11.3025418, 49.6059368 11.5082344, 50.0989308 10.2009066, 48.9650564 13.5881898, 50.0691374 9.1647686, 50.0829706 9.1744757, 49.5435705 11.9422976, 49.6663115 9.2174563, 50.0618440 9.1613757, 50.2010281 10.0796309, 50.2010221 10.0796052, 49.4477239 11.6857625, 49.4460554 11.6835686, 49.7999154 10.0325942, 50.2010192 10.0795865, 50.2010431 10.0796589, 50.1967193 10.0810149, 49.8879820 12.4296686, 49.0139001 13.2324271, 50.3106075 11.9096814, 50.0179173 10.7019968, 49.8821023 10.9042255, 50.0117430 10.7006733, 50.0090888 10.6946217, 50.0127154 10.6848692, 50.0147562 10.6980013, 50.0265449 10.7009359, 50.0230313 10.6984522, 50.0185988 10.7020142, 50.0191858 10.7030163, 50.0258687 10.7346556, 50.0234700 10.6789837, 50.0110610 10.6749711, 50.0099854 10.7365010, 50.0140379 10.7367517, 49.9936057 10.6936812, 49.9954107 10.6881365, 49.9991832 10.7065311, 50.0515127 10.6825199, 50.0415119 10.7259111, 50.0203839 10.7509132, 50.0221701 10.7110301, 49.5019190 12.0527679, 49.7315595 12.3461012, 50.3040141 10.4778811, 50.3042160 10.4780918, 49.5100108 12.5477321, 49.7197325 11.1517517, 49.8045771 9.9985236, 49.4354020 10.4140882, 49.6767965 12.1612248, 49.7931062 9.7625034, 49.7994913 9.7519600, 49.7600378 9.7167061, 49.7897273 9.7536498, 49.7911878 9.7544082, 49.9090658 12.5278358, 49.6821913 12.1675909, 50.0497889 11.6009071, 49.2505113 10.8274746, 49.3705840 11.3317226, 49.7772736 12.0910176, 49.0152337 12.1047908, 49.8986046 11.8430735, 50.2964998 10.1773597, 49.0148423 12.0988033, 49.8970555 11.7010378, 49.5220581 12.0202369, 49.3732915 11.2109773, 49.0188010 12.0865158, 49.0196418 12.1076991, 49.0224799 12.0972137, 50.0028821 10.8639429, 49.0086624 12.1140073, 49.0079845 12.0596346, 49.0063004 12.0842723, 49.9852673 12.4733816, 49.5182739 12.0223498, 49.0161006 12.0649200, 49.7695834 11.2501592, 49.7667641 11.3365491, 49.7667629 11.3371417, 49.2994881 10.4152111, 49.2988060 10.4146451, 49.5036987 11.5105657, 49.5039492 11.5098909, 50.0384874 9.1829561, 49.9649565 9.2033405, 49.0155580 12.1020225, 49.0186698 12.0861070, 49.0143791 12.0568333, 49.0128154 12.0501601, 49.9480493 11.5152437, 50.3208914 10.2288371, 49.0135863 12.0980858, 49.0141433 12.0909775, 48.9616275 13.3707694, 50.0571318 12.1630188, 50.1339740 10.9997596, 49.6719429 10.1092270, 49.0230406 12.0759531, 49.9695730 11.8248926, 49.0139872 12.0993480, 49.2834623 11.1245195, 50.0456727 12.1526067, 49.6695593 10.4735573, 49.2279800 12.3591491, 49.5978247 12.1277408, 49.9636948 11.4430543, 49.9769946 9.1519363, 49.9750834 9.1465191, 49.9788040 9.1492982, 49.9780571 9.1469089, 49.9769598 9.1483522, 49.9769575 9.1483487, 49.9788030 9.1492978, 49.9788085 9.1459478, 49.9761670 9.1475691, 49.9761691 9.1475708, 49.9777357 9.1470002, 49.9771118 9.1463000, 49.9780562 9.1469097, 49.9771124 9.1462986, 49.9758163 9.1473677, 49.9787300 9.1460637, 49.9761690 9.1475695, 49.9750841 9.1465179, 49.9788033 9.1492993, 49.9761677 9.1475697, 49.9788078 9.1459490, 49.9787293 9.1460649, 49.9761677 9.1475684, 49.9756861 9.1455040, 49.9769575 9.1483509, 49.9769951 9.1519377, 48.9213941 13.3631052, 49.7431992 10.3143552, 49.7332682 10.2910088, 49.7331557 10.2909352, 49.7320459 10.2893973, 49.7971708 9.9181959, 50.0468919 11.7900887, 50.1018467 11.9289190, 50.0720623 11.7343687, 49.5807360 10.9930423, 49.4781588 10.9815611, 50.0710288 9.3453874, 49.5880202 11.0348171, 49.5057702 12.0479512, 49.0701610 12.3965810, 49.0088027 12.2709315, 50.0608396 12.1181770, 50.0798842 12.1424534, 49.8396607 9.4499388, 49.9405337 11.5815981, 49.5976027 11.0106106, 49.5767614 10.9846288, 49.2820607 11.4621282, 49.2767281 11.4605954, 49.2752957 11.4611307, 49.2737454 11.4693648, 49.2791542 11.4630600, 50.0096304 11.5342528, 50.0091730 11.5180114, 50.0536602 10.5881133, 49.9758512 9.1489083, 49.9753342 9.1484946, 49.9725262 9.1520096, 49.9734825 9.1574246, 49.9758505 9.1489071, 49.9721775 9.1427265, 49.9752614 9.1500359, 49.9758903 9.1478404, 49.9758497 9.1489083, 49.9753686 9.1562911, 49.9758906 9.1478427, 49.9752873 9.1484977, 49.9727283 9.1509584, 49.9753357 9.1484953, 49.9859727 9.1375629, 49.9707705 9.1548378, 49.9753679 9.1562926, 49.9721820 9.1427261, 49.9758912 9.1478414, 49.9727276 9.1509624, 49.9758897 9.1478418, 49.9758243 9.1479574, 49.9758925 9.1478414, 49.9753347 9.1484961, 49.9721737 9.1427298, 49.9753690 9.1562929, 49.9758520 9.1489071, 49.9758251 9.1479562, 49.9753352 9.1484938, 49.5520120 10.0648801, 49.5528638 10.0662568, 49.5525157 10.0635550, 49.5517965 10.0635343, 49.5525797 10.0635125, 49.5528648 10.0662560, 49.5517981 10.0635366, 49.5528633 10.0662553, 49.5520142 10.0648834, 49.5517973 10.0635354, 49.5528642 10.0662524, 49.5522235 10.0652652, 49.5522739 10.0660112, 49.5520112 10.0648789, 49.5522242 10.0652665, 49.5525147 10.0635556, 49.5522749 10.0660104, 49.5520149 10.0648846, 49.5520123 10.0648784, 49.5528643 10.0662545, 49.7492292 11.2476398, 50.0077507 9.0697798, 49.9904785 10.5903260, 49.7932175 9.9300690, 49.7932157 9.9300660, 49.2907084 10.2654545, 49.9459834 9.2137807, 49.1519360 12.1734992, 50.2947661 10.0964550, 50.2853904 10.0977305, 50.2863806 10.1002136, 49.7531999 11.8335514, 49.2326998 10.4977047, 49.9397941 10.6765837, 49.7637415 11.0302848, 50.0068525 9.2035019, 49.9674144 9.3973865, 49.8782430 12.3371545, 49.2965371 10.4370565, 49.8335959 9.8463313, 49.3754615 10.1723479, 49.3757566 10.1729165, 49.2069877 12.0869222, 50.1307235 10.0261636, 49.0961493 12.0473105, 49.5687334 11.5124981, 50.0100085 10.7388904, 49.9755613 11.3360106, 49.4881221 11.1056632, 49.2751769 11.3032585, 50.1335623 11.6582094, 49.0900685 13.3194516, 49.8244119 9.2195855, 49.3500534 10.2008191, 49.4683097 11.0018808, 49.5952508 11.0283102, 49.8268841 12.4254832, 49.7628101 9.7103322, 49.7377834 10.7343469, 49.7485218 10.7514389, 50.1266242 10.9322564, 49.7736898 11.4977477, 49.6730978 12.1569376, 49.4450506 11.8566044, 49.4450517 11.8566084, 50.0343837 12.0057082, 50.0389404 12.0059588, 49.3237343 11.3634148, 50.0399899 10.2563410, 50.0901476 11.9226350, 49.9046225 11.5856532, 49.0196241 12.0926982, 49.0196255 12.0926983, 49.6557652 9.1356940, 49.0211080 12.0903255, 49.0312029 12.1063028, 49.0312049 12.1062961, 49.0312084 12.1063023, 49.0325759 12.1057144, 49.0185305 12.0953889, 49.0185345 12.0953894, 49.1755022 10.8293237, 49.0190701 12.0946023, 49.0176917 12.0961121, 49.0185908 12.0921057, 49.0185915 12.0921105, 49.0185924 12.0921057, 49.0185926 12.0921125, 49.0185929 12.0921080, 49.0185929 12.0921105, 49.0185931 12.0921031, 49.0185934 12.0921144, 49.0185941 12.0921007, 49.0185951 12.0921031, 49.0185952 12.0921079, 49.8916234 10.8922621, 49.0199275 12.0918002, 49.0199275 12.0918026, 49.0207086 12.0971412, 49.0178839 12.0974031, 49.0170893 12.1040414, 49.0197670 12.0892004, 49.0197695 12.0892010, 49.0197721 12.0892016, 49.0148994 12.0776648, 49.0149005 12.0776669, 49.0149008 12.0776631, 49.0149019 12.0776653, 49.0194381 12.0923903, 49.0197664 12.0922483, 49.0197664 12.0922513, 49.0197669 12.0922536, 49.0185726 12.0948193, 49.0185728 12.0948165, 49.0185744 12.0948225, 49.0185745 12.0948195, 49.0185746 12.0948167, 49.0183173 12.0948407, 49.0180503 12.0962374, 49.0180507 12.0962358, 49.0180522 12.0962387, 49.0180527 12.0962370, 49.0180531 12.0962355, 49.0168881 12.0944982, 49.0168905 12.0945030, 49.0168908 12.0944989, 49.0168935 12.0944996, 49.0169572 12.0964730, 49.0187855 12.0866987, 49.0187856 12.0866955, 49.0187871 12.0866972, 49.0196952 12.0908512, 49.0196955 12.0908472, 49.0196970 12.0908553, 49.0196980 12.0908517, 49.0196983 12.0908477, 49.3700364 10.3326346, 49.0244130 12.0975018, 49.9689726 9.1406710, 50.1461039 9.8787634, 49.6459023 10.6960875, 49.6190605 10.6550751, 49.3267742 11.3290333, 49.9506568 9.2425169, 50.3603618 10.0183521, 50.2603176 10.1625667, 50.5294158 10.1365952, 50.0185900 11.5947993, 50.0415115 11.6710379, 50.0455047 11.6729648, 49.7690804 10.5270426, 49.7440739 10.3678749, 50.0572140 11.6809567, 49.6013550 11.0040634, 49.6004854 11.0101482, 49.6031869 11.0142698, 49.5983557 11.0157815, 49.5963195 11.0110567, 49.5964441 11.0047821, 49.5954984 11.0051944, 49.5946707 11.0051020, 49.5908949 11.0066095, 49.5977584 11.0068971, 49.8545526 9.9567436, 49.6728265 12.1490093, 48.9675009 12.3906760, 50.1159200 11.8631050, 50.0182437 11.8324940, 50.0190952 11.8331859, 49.9335870 11.7378440, 49.9329190 11.7325956, 50.0909091 12.0894665, 49.5247695 11.9030735, 49.6391565 10.9970110, 49.3040254 10.5718175, 48.9718495 13.4328515, 50.0326497 9.4312794, 50.1586640 11.5704392, 49.9850909 11.6517051, 49.9835532 10.0788877, 49.3815362 10.1702658, 49.5999179 11.0029460, 49.5999184 11.0029346, 49.5999207 11.0029411, 49.5947349 11.0049181, 49.5947890 11.0049002, 49.5947348 11.0049148, 49.5947365 11.0049179, 49.5947357 11.0049180, 49.5947364 11.0049146, 49.5947880 11.0049003, 49.5947356 11.0049147, 49.8916123 10.8934082, 50.0125545 11.6992003, 49.2940718 10.4071127, 49.4938239 12.1796909, 49.2736602 12.5400565, 49.3021051 10.5757277, 49.3625693 10.1920107, 49.0180645 12.0899199, 49.5063706 12.0586238, 49.3760472 10.1740553, 49.5841546 11.1376266, 49.5392559 12.1610923, 49.9347352 11.5927808, 50.1764459 11.7554872, 49.8366567 11.3502874, 49.5136483 11.9690411, 49.5108070 11.9702656, 49.9619007 9.7687548, 49.2954987 12.3550665, 49.7925294 9.9300247, 49.7925284 9.9300253, 49.7925270 9.9300242, 49.7925280 9.9300237, 49.7925304 9.9300241, 49.7925290 9.9300231, 49.7925300 9.9300225, 49.5967084 11.0363646, 49.9634476 9.7630263, 49.5914363 11.0057192, 49.5915983 11.0279183, 50.2152548 12.0074059, 50.2320320 11.9824924, 50.2681384 11.3609612, 49.5321619 11.0340201, 50.0127842 9.2598896, 49.4198255 11.1952648, 49.8007861 9.9500409, 49.8042227 9.9401073, 49.8016833 9.9521581, 49.8008487 9.9495065, 49.8023538 9.9484639, 49.8039340 9.9462076, 49.8016832 9.9521600, 49.8040711 9.9415613, 49.8017616 9.9429421, 49.8022170 9.9424916, 49.8033057 9.9423584, 49.8031096 9.9453756, 49.7986567 10.2312619, 50.0680003 10.8822450, 49.5503024 11.2688007, 50.1253347 11.5988929, 49.0373017 11.4713987, 49.9061473 11.7649973, 49.4782605 11.0208604, 50.1507631 10.8945447, 49.7661741 11.9355854, 49.8607443 10.3813672, 49.8506179 11.5871782, 49.9434533 9.8565390, 49.5417838 10.5613637, 49.9585470 9.7663805, 49.9595391 9.7650959, 49.3786586 10.1793133, 49.3767932 10.1758881, 49.3767932 10.1758781, 49.3767932 10.1758848, 49.3755384 10.1827213, 49.3762093 10.1795702, 49.3767932 10.1758815, 49.3786586 10.1793103, 49.3755376 10.1827181, 49.3772183 10.1774557, 49.3619592 12.3332809, 50.3608095 10.3546411, 50.3703190 10.3585862, 50.3791048 10.3732742, 49.6020631 11.0009575, 49.6006180 11.0054816, 49.5988014 11.0020055, 49.5971402 11.0046461, 49.5968877 11.0046365, 49.5967905 11.0047592, 50.0185855 9.3106506, 50.2699881 11.3611322, 49.7956968 9.1574279, 49.7946620 9.9417414, 49.8813986 12.3387714, 49.8843655 12.3365134, 49.2360159 10.9442065, 50.0412319 11.2518353, 49.8556988 12.2213404, 49.1257675 11.2687419, 49.0515267 10.9673498, 50.0076854 10.5983304, 48.9239093 13.4441838, 50.0129397 12.0050924, 49.5929601 10.9994155, 50.1047922 12.1674481, 49.4506724 11.0895491, 49.0006194 12.3996130, 48.9993664 12.3982370, 48.9700616 13.5641641, 50.0837449 9.0707465, 49.3528140 12.3797332, 49.3790168 12.3987072, 49.5561735 11.5420028, 49.5458338 11.5409081, 49.5564497 11.5434917, 50.0030759 9.4208477, 50.1338452 11.4297540, 49.5048933 12.6154745, 50.0532552 9.0105856, 49.2366324 10.4923511, 49.9358251 11.5223760, 49.6933701 9.2896788, 49.7031080 9.3017167, 49.6924824 9.1730686, 49.6820227 9.2096023, 49.0757627 11.9068162, 50.0166247 10.7766176, 50.0112161 10.8035765, 49.4786149 12.4996766, 50.1640464 10.9623428, 49.9689695 11.5310708, 49.3567688 12.4175171, 49.5615772 11.0869061, 49.1026763 13.1112906, 49.4258166 12.6794486, 49.6361333 10.1434699, 49.7954103 9.9404940, 49.7954095 9.9404929, 49.7954100 9.9404913, 49.7954108 9.9404925, 48.9941475 13.2205163, 49.7863466 9.9361498, 49.7855176 9.9367566, 49.7855179 9.9367582, 49.7863509 9.9361479, 49.7863477 9.9361497, 49.7855189 9.9367578, 49.7863499 9.9361496, 49.7863509 9.9361495, 49.7855179 9.9367547, 49.7863504 9.9361512, 49.7855187 9.9367562, 49.6722786 11.1781259, 49.5147535 11.0599168, 49.5149154 11.0598238, 49.5150009 11.0602343, 49.5150581 11.0599041, 49.7867513 9.9365291, 49.7871642 9.9375666, 49.7859343 9.9388582, 49.7867503 9.9365280, 49.7867521 9.9376445, 49.7862145 9.9391909, 49.7862387 9.9375395, 49.7862153 9.9391920, 49.7867497 9.9365293, 49.7871600 9.9375648, 49.7867531 9.9376450, 49.7871631 9.9375664, 49.7867495 9.9365311, 49.7871609 9.9375667, 49.7867517 9.9376461, 49.7871598 9.9375665, 49.7871610 9.9375650, 49.7867527 9.9376466, 49.7862169 9.9391942, 49.7867506 9.9365304, 49.7907691 9.9344337, 49.7898028 9.9354473, 49.7878385 9.9379272, 49.7907695 9.9344322, 49.7907687 9.9344352, 49.7906708 9.9343376, 49.7908044 9.9343457, 49.7907265 9.9348801, 49.7907265 9.9348823, 49.7907250 9.9348800, 49.7907258 9.9348812, 49.7888553 9.9280158, 49.7888525 9.9280146, 49.7888578 9.9280136, 49.7888627 9.9280144, 49.7888669 9.9280136, 49.7888659 9.9280138, 49.7882443 9.9325119, 49.7888585 9.9280152, 49.7893070 9.9302257, 49.7888606 9.9280148, 49.7886188 9.9283324, 49.7888631 9.9280126, 49.7888532 9.9280162, 49.7886196 9.9283311, 49.7886200 9.9283327, 49.7888663 9.9280120, 49.7888596 9.9280150, 49.7888638 9.9280142, 49.7888521 9.9280164, 49.7888574 9.9280154, 49.7888563 9.9280156, 49.7923864 9.9285144, 49.7925589 9.9280484, 49.7901921 9.9287343, 49.7923858 9.9285161, 49.7912924 9.9303975, 49.7924914 9.9334357, 49.7901910 9.9287350, 49.7925590 9.9280500, 49.7900984 9.9292869, 49.7925346 9.9308533, 49.7920112 9.9292930, 49.7935785 9.9296478, 49.7912936 9.9303974, 49.7925600 9.9280484, 49.7932061 9.9346117, 49.7923876 9.9285145, 49.7925567 9.9280500, 49.7923881 9.9285161, 49.7920122 9.9292921, 49.7925557 9.9280499, 49.7924923 9.9334366, 49.7901911 9.9287333, 49.7925567 9.9280483, 49.7912928 9.9303960, 49.7923870 9.9285161, 49.7935747 9.9296483, 49.7920103 9.9292939, 49.7925343 9.9308500, 49.7925344 9.9308516, 49.7925579 9.9280500, 49.7923772 9.9285195, 49.7932050 9.9346115, 49.7900980 9.9292852, 49.7925333 9.9308511, 49.7900973 9.9292864, 49.7925335 9.9308527, 49.7925579 9.9280483, 49.5952579 11.0039749, 49.9960359 10.5460702, 49.6494931 10.4272512, 49.1311132 11.2126115, 49.7647053 11.7962899, 49.8618788 11.8979045, 50.1152569 12.1216525, 49.7307051 9.3184515, 50.1046531 12.1021386, 50.1035974 12.1287697, 49.6955708 9.3096830, 49.7995986 9.9397919, 49.7995986 9.9397920, 49.5111470 11.4098766, 49.2989766 10.5787231, 49.9618409 11.6711507, 49.0108389 12.4811544, 50.2495248 10.1962480, 49.0680644 10.3198579, 49.0689606 10.3152672, 49.0689613 10.3152651, 49.0689599 10.3152641, 49.0680623 10.3198569, 49.0680634 10.3198574, 49.0689616 10.3152666, 49.0689602 10.3152657, 49.0680641 10.3198594, 49.0689609 10.3152636, 49.0674064 10.3202774, 49.0680691 10.3198774, 49.1180031 10.7540594, 49.7922637 9.9483254, 49.7930089 9.9489359, 49.7922627 9.9483265, 49.7930099 9.9489368, 49.7930080 9.9489351, 49.7922647 9.9483244, 49.7922637 9.9483236, 49.7922637 9.9483273, 49.7928082 9.9487755, 49.7898532 9.9433227, 49.7892789 9.9440666, 49.7892796 9.9440680, 49.7897006 9.9433279, 49.7897016 9.9433278, 49.7913883 9.9475148, 49.7898522 9.9433228, 49.7966267 9.9394975, 49.7967915 9.9393942, 49.7966280 9.9395002, 49.7961026 9.9401177, 49.7958722 9.9397294, 49.7967900 9.9393940, 49.7914631 9.9441426, 49.7958708 9.9397269, 49.7966260 9.9394961, 49.7914629 9.9441409, 49.7966299 9.9395043, 49.7958715 9.9397282, 49.7966292 9.9395029, 49.7914618 9.9441413, 49.7914621 9.9441430, 49.7966247 9.9394934, 49.7966241 9.9394920, 49.7967895 9.9393957, 49.7967907 9.9393953, 49.7967909 9.9393930, 49.7962096 9.9386493, 49.7963427 9.9388767, 49.7962090 9.9386480, 49.8018736 10.1512931, 49.6406789 12.4388138, 49.1798457 11.7586122, 49.8006520 12.3857626, 49.9514872 12.1060524, 49.7978227 9.9385033, 49.7976682 9.9393560, 49.7988824 9.9402123, 49.7976681 9.9393507, 49.7976685 9.9393523, 49.7978221 9.9385048, 49.7973862 9.9392221, 49.7978217 9.9385004, 49.7978233 9.9385047, 49.7976671 9.9393513, 49.7988816 9.9402111, 49.7976692 9.9393555, 49.7977416 9.9418692, 49.7976678 9.9393544, 49.7980834 9.9405811, 49.7976688 9.9393539, 49.7976674 9.9393528, 49.7980845 9.9405813, 49.7926160 9.9465886, 49.7926148 9.9465885, 49.7924154 9.9448690, 49.7926315 9.9478039, 49.7926154 9.9465868, 49.7935570 9.9466037, 49.7943517 9.9466373, 49.7926164 9.9465903, 49.7924149 9.9448704, 49.7926316 9.9478023, 49.7926153 9.9465902, 49.7932395 9.9460028, 49.7924142 9.9448689, 49.7932392 9.9460043, 49.7935581 9.9466035, 49.7943507 9.9466375, 49.7926142 9.9465901, 49.8213947 11.3136234, 49.3983962 10.5127273, 49.3990800 10.5131906, 49.7830222 11.4348553, 49.7797573 9.8779032, 49.7797971 9.8778845, 49.7797835 9.8778902, 49.7797695 9.8778967, 49.7797941 9.8781370, 49.7848704 9.8816363, 49.7848715 9.8816359, 49.5959844 11.0033360, 50.0896982 10.5675728, 49.5847486 11.0087016, 49.5838431 11.0094163, 50.3542407 10.5183849, 50.2793921 10.4262507, 50.1003243 9.2700884, 48.9513267 13.4829135, 49.4364865 10.9746967, 49.5579890 11.3411660, 49.5579971 11.3411597, 49.5572334 11.3415166, 49.5572321 11.3415180, 49.5582233 11.3409457, 49.5594751 11.3408029, 49.5604712 11.3407820, 49.5589938 11.3404077, 49.5583436 11.3404497, 49.5577582 11.3399783, 49.5585840 11.3406609, 49.5584189 11.3405005, 49.5584259 11.3405053, 49.5594771 11.3407944, 49.5604659 11.3407875, 49.5604708 11.3407872, 49.5604663 11.3407817, 50.2571790 10.0620673, 49.9587512 11.5802173, 49.9447427 11.5773091, 49.9442251 11.5776919, 49.9443692 11.5763951, 49.9410438 11.5748716, 49.6446348 9.8766831, 49.8788169 12.3370226, 49.4503458 11.0625646, 49.4503311 11.0626034, 49.4564236 11.0939156, 49.4564073 11.0939222, 49.4666635 11.0960817, 49.4564158 11.0939191, 49.4666480 11.0961021, 49.4531051 11.0889258, 49.4531169 11.0890098, 49.4515650 11.0737476, 49.4451835 11.0701178, 49.2150275 12.7622283, 49.4531034 11.0889267, 49.4531047 11.0889332, 49.4531054 11.0889272, 49.4531059 11.0889298, 49.4531062 11.0889312, 49.4531203 11.0890155, 49.4531200 11.0890149, 49.4531180 11.0890119, 49.4531184 11.0890125, 49.4531192 11.0890136, 49.4531207 11.0890161, 49.4531196 11.0890142, 49.4531177 11.0890112, 49.4531173 11.0890105, 49.4531188 11.0890130, 49.7516975 11.7265102, 50.4578393 10.2328439, 49.5402175 11.0439096, 49.4534629 11.0604342, 49.4534632 11.0604329, 49.4534638 11.0604303, 49.4534638 11.0604346, 49.4534641 11.0604290, 49.4534653 11.0604325, 49.4534659 11.0604299, 49.4534662 11.0604286, 49.4535567 11.0605329, 49.4535572 11.0605302, 49.4535587 11.0605323, 49.4535590 11.0605310, 49.3756375 11.2127250, 49.3811301 11.2026228, 49.7606167 9.9772922, 49.7848282 9.9380024, 49.7848733 9.9380623, 49.7916590 9.9457111, 49.7865810 9.9384816, 49.7865828 9.9384844, 49.7879758 9.9398772, 49.2791168 11.4474779, 49.9873489 9.2780503, 49.7318034 9.9202857, 49.7318921 9.9202117, 49.7319749 9.9203380, 49.2765759 11.4603898, 50.1398487 11.0918818, 49.2784356 11.4552455, 49.2800695 11.4584632, 49.8494694 9.4069936, 48.9567005 10.9079175, 49.2804964 11.4619377, 49.4913726 11.7661043, 49.0135720 12.1459346, 49.1071095 13.2047136, 49.7910101 9.9334762, 49.7910066 9.9334875, 49.7985360 9.9266653, 49.6592217 11.5167515, 49.9394884 11.5305029, 49.3329703 11.4406888, 49.0317793 12.0933680, 49.9455720 11.1648235, 49.9495296 9.8874687, 49.6755114 10.1517058, 49.4277234 11.0439324, 49.5501746 10.8786893, 49.8050396 11.5284272, 48.9677056 10.9237975, 48.9774526 10.9561557, 48.9602673 10.9498042, 49.0512827 11.8145616, 49.6899734 12.1492885, 49.9020566 10.3449565, 48.9446626 13.6012764, 48.9402070 13.5950476, 50.4025312 10.0065915, 50.4005600 10.0107167, 50.4051246 10.0055267, 49.6458378 12.2104212, 49.6369228 12.2020412, 49.8234349 11.6667095, 49.1737777 12.8528844, 49.4495822 11.0617262, 49.6766225 12.1607203, 49.6769325 12.1608543, 49.6772034 12.1609933, 49.1778799 11.4136321, 49.6833617 12.1507245, 48.9886198 11.2887496, 48.9850995 11.0831851, 48.9820014 11.0891933, 48.9834097 11.0900086, 49.7844007 9.9375790, 49.7844180 9.9374878, 49.7838096 9.9396762, 49.1784941 11.6516372, 49.7385288 10.7390450, 50.0999797 9.8392708, 49.7383173 11.0597508, 49.7256094 11.0584419, 49.9745379 9.1831466, 49.3778005 12.7064711, 49.7010799 10.0000174, 49.4042504 10.4761430, 49.4515646 11.0737472, 49.4531042 11.0889304, 49.4584844 11.0955008, 49.4401820 11.0693832, 49.4524574 11.0663503, 49.4524577 11.0663502, 49.4524575 11.0663504, 49.4524573 11.0663505, 49.4401816 11.0693824, 49.4584792 11.0954932, 49.4493192 11.0630722, 49.4489438 11.0869699, 49.4493243 11.0630823, 49.4489505 11.0869784, 49.4442885 11.0906328, 49.4584813 11.0955080, 49.4584751 11.0955004, 49.8247899 12.1940792, 49.9773664 9.1516409, 49.9773665 9.1516401, 49.9773668 9.1516416, 49.9773669 9.1516408, 49.9773673 9.1516416, 49.9777012 9.1523025, 49.9777018 9.1523036, 49.5406982 11.1029197, 49.5830074 11.0720065, 49.5806680 11.0408936, 49.5669690 11.0434983, 49.6641607 10.4608530, 49.6640174 10.4609621, 49.2873631 10.2624581, 49.2904965 10.2630052, 49.3143601 10.2962603, 49.8558808 9.3997297, 49.0248904 11.0046911, 49.6009390 11.0027339, 49.6009409 11.0027339, 49.8841615 11.9164322, 49.3432447 12.3640770, 49.3300666 12.4136162, 50.3416351 11.7143397, 50.0666062 12.0711517, 49.9480885 11.8915341, 50.3053524 10.0213184, 49.7220245 12.1913195, 49.7204497 12.1998025, 49.7154331 12.2107545, 49.9748497 9.1456239, 49.9761683 9.1475690, 49.9748492 9.1456249, 49.9761684 9.1475702, 49.9748468 9.1456262, 49.9748473 9.1456251, 49.5983479 12.2578390, 50.0777379 11.9240709, 49.9769927 9.1484309, 49.9786284 9.1435443, 49.9743789 9.1488575, 49.9763387 9.1472780, 49.9769931 9.1484317, 49.9743817 9.1494905, 49.9743790 9.1488557, 49.9763385 9.1472795, 49.9769935 9.1484325, 50.2324713 9.7972070, 50.2274987 9.8015171, 50.2125796 9.8078351, 50.0609693 10.1301670, 49.7956233 9.9339097, 49.7943732 9.9355099, 49.7893753 9.9303739, 50.0964003 11.6507085, 49.0165313 12.0929675, 49.0142314 12.0978208, 49.0142509 12.0983715, 49.0145444 12.0943274, 49.0148619 12.0936434, 50.1071864 11.6113150, 49.8308091 11.9002786, 49.8121183 11.6156822, 49.9732320 9.1562722, 49.9725473 9.1460345, 49.9725481 9.1460355, 49.7811895 9.8754454, 50.0463306 10.2422178, 50.1262114 10.1323272, 50.1260980 10.1320650, 49.9599944 9.1674078, 49.9790176 9.1378227, 49.9785802 9.1497577, 49.9785782 9.1497577, 49.9790183 9.1378214, 49.9767006 9.1434450, 49.9790189 9.1378227, 49.9785791 9.1497594, 49.9785792 9.1497560, 49.7878831 9.1558386, 50.1823681 10.8135295, 48.9389978 13.5126937, 49.6626801 11.9936761, 49.7965388 9.9259564, 48.9435067 12.0285624, 49.8026070 12.1691206, 49.8075440 12.1639654, 49.8033895 12.1561119, 49.8018280 12.1559349, 50.0966697 12.2230986, 50.0974045 12.2239071, 50.0965526 12.2228208, 49.9183578 10.9061724, 50.0927176 10.2708298, 49.3664352 11.2626077, 48.9299739 10.9695181, 49.6439302 11.1185170, 49.7288907 10.5445346, 50.0431869 10.2304967, 49.4710348 11.0172151, 49.4482963 11.0654784, 49.8555425 12.2214595, 49.6449426 9.2199396, 49.4019599 10.7243349, 49.6443425 9.2223859, 48.9995875 11.1062950, 49.5075741 11.2794565, 49.5075692 11.2794307, 49.9040712 10.0964998, 49.9758154 11.7336493, 49.8906463 10.8815396, 49.8999822 10.3506192, 49.9590090 11.5788897, 49.9589325 11.5810671, 49.7067822 11.2546397, 49.7633614 11.4467299, 49.9462668 11.5753721, 49.8989204 10.3485227, 50.0438223 10.7182321, 49.9710536 10.6694916, 49.9927820 10.2724251, 50.3199349 9.8181952, 49.6775007 9.2831816, 49.2258187 10.7269246, 49.7343649 12.3586803, 48.9678967 12.3917663, 49.3663032 11.9178031, 49.0317249 10.9702087, 49.0288485 10.9765390, 49.2530850 10.2873176, 49.0672016 10.3182782, 49.4706490 11.9408120, 49.5018247 12.5383206, 50.2723903 10.4116010, 49.7653436 9.5229885, 49.0518566 11.7822209, 49.4932776 11.4751642, 49.9040764 11.0311000, 49.4390879 11.1394627, 49.8829364 9.5814255, 50.3199340 11.9165126, 49.0413060 11.4708290, 49.0190540 12.0985788, 49.6695229 10.1503714, 49.6097897 10.7076412, 49.7354916 12.3568963, 50.3121132 11.9174085, 49.0183174 12.0958518, 50.5222310 10.0713603, 50.2544924 10.0620117, 50.3707322 9.9786099, 49.4023947 11.1359481, 49.8978821 10.2241692, 49.4496586 10.3195263, 50.0041308 9.8215312, 50.1509972 12.0529393, 49.3007818 11.1215015, 49.1178053 10.7597381, 49.1974796 12.7466092, 49.8271514 9.4032808, 49.4206070 11.8806656, 49.8621215 11.9530041, 49.2841959 11.4810539, 50.3469859 11.2885524, 50.1624704 10.0762669, 49.0063017 12.0967461 +55.9652866 -3.3173288, 55.9426432 -3.2801965, 55.9442896 -3.2708207, 55.9438150 -3.2706214, 55.9827744 -3.3988810, 55.9796500 -3.3006918, 55.9329934 -3.3152155, 55.9899019 -3.3868462, 55.9031798 -3.2852677, 55.9898690 -3.3921144, 55.9901625 -3.3961304, 55.9430311 -3.2839568, 55.9426584 -3.2803285, 55.9420361 -3.2670729, 55.9488427 -3.3624818, 55.9482570 -3.3655019, 55.9906648 -3.3973688, 55.9082967 -3.3202293, 55.9101031 -3.3218843, 55.9102819 -3.3218516, 55.8838914 -3.3385867, 55.8840866 -3.3391023, 55.9895667 -3.3989278, 55.9727826 -3.3512226, 55.9420681 -3.2954846, 55.9428183 -3.2938163, 55.9379137 -3.3141798, 55.9424726 -3.2928349, 55.9475057 -3.2948807 +1 +Fahrschule Jung, Fahrschule Lechner, Fahrschule Jung +-36.6014154 -72.1075231, 52.0291860 8.5142550, 49.2330740 6.9973444, 50.1074307 8.7650055, 50.1072273 8.7647436, 22.6191549 -83.7428456, 14.5807496 120.9762753, 14.5805360 120.9763947, 14.5818436 120.9756658, 50.7226010 1.6050050, 43.0426296 -87.9248245, 51.6074169 0.0416652, 45.3988026 -71.8998852, 45.4046469 -71.8920328, 45.4015922 -71.8952807, 45.4022589 -71.8983628, 45.4034563 -71.8949627, 45.4036683 -71.8853371, 45.4036176 -71.8851449, 45.3995729 -71.8883202, 45.3954825 -71.8909197, 45.7615378 4.9252989, 45.7242776 4.8539418, 52.2091369 0.1194683, 53.4593415 9.9824597, 51.1120248 13.0448680, 42.3242563 -72.6318461, 51.3434003 12.3777564, 43.3124639 5.3737685, 53.0816826 8.7668217, 53.0785270 8.7790946, 51.3662367 12.7354244, 50.3177954 -122.7985892, 47.2213673 -1.5513629, 53.0763731 8.7814702, 53.0749711 8.7854362, 53.5870543 9.8523197, 53.0736960 8.8113880, 45.4045773 -71.8936895, 53.0776511 8.7744885, 53.0798099 8.7656249, 43.9194950 -80.0972496, -35.2890739 149.1367795, -35.2892904 149.1372959, 35.4652380 139.6232660, 35.4573160 139.6345000, 35.4573770 139.6350780, 35.4565940 139.6334420, 5.4147578 100.3381401, 5.4186019 100.3362716, 5.4118952 100.3404014, 5.4153257 100.3388199, 5.4152656 100.3388868, 5.4196810 100.3364259, 5.4154139 100.3371358, 53.0749514 8.8058188, 52.2057098 0.1190323, -37.7993784 144.9868054, 45.5188570 -73.5691740, 45.5128430 -73.5632300, 12.1280531 -86.2702926, 50.5271501 3.1717475, 50.5312150 3.1752250, 41.9454600 -85.6346896, -33.9242974 151.2277579, 53.1953609 -2.8860461, 45.5260704 -73.5812544, 48.7916119 2.3885259, 48.7906282 2.3890615, 48.7933393 2.3960812, 45.5348157 -73.5824182, 45.5335479 -73.5839377, 41.1380774 -104.8037385, 53.0700008 8.8578411, 53.0722317 8.8027783, 53.0660402 8.8603661, 51.4157789 -0.0719009, 40.6114262 -75.3787269, 34.4740034 -104.2505389, 34.4721371 -104.2458022, 34.4720752 -104.2456546, 34.4720984 -104.2457056, 34.4728845 -104.2482698, 34.4739459 -104.2507535, 34.4720708 -104.2455326, 34.4722123 -104.2455165, 34.4731034 -104.2452054, 34.4738773 -104.2456748, 34.4738795 -104.2451169, 34.4729906 -104.2450283, 34.4729110 -104.2450230, 34.4730172 -104.2451061, 34.4721548 -104.2435746, 34.4721570 -104.2434968, 34.4721659 -104.2434351, 34.4722344 -104.2435612, 34.4722410 -104.2434727, 34.4739149 -104.2452563, 34.4734108 -104.2455353, 34.4733511 -104.2455353, 56.8486310 60.6143852, 56.8286462 60.5963142, 56.8253290 60.5739171, 56.8346004 60.5892016, 56.8348313 60.5912228, 56.8347581 60.5905843, 34.4712586 -104.2445012, 34.4690252 -104.2361273, 34.4691490 -104.2364170, 34.4663981 -104.2293199, 34.4664070 -104.2293789, 34.4664247 -104.2294432, 34.4664556 -104.2295237, 34.4664601 -104.2295827, 34.4664778 -104.2296632, 34.4663185 -104.2296846, 34.4728713 -104.2456008, 34.4728717 -104.2455800, 34.4728451 -104.2455639, 34.4729734 -104.2455210, 34.4731061 -104.2455102, 34.4719651 -104.2465134, 34.4718457 -104.2448933, 34.4716157 -104.2453439, 34.4724162 -104.2455102, 34.4724737 -104.2455156, 34.4725665 -104.2455156, 34.4726240 -104.2455210, 34.4725400 -104.2455102, 34.4577324 -104.2016293, 34.4041459 -104.1933627, 34.4041592 -104.1934325, 34.4041548 -104.1934754, 34.4041548 -104.1935290, 51.5620485 -0.0156984, 52.1492696 8.6409588, 52.7721456 -108.2978049, 52.7721439 -108.2980108, 52.7735140 -108.2996220, 52.7735147 -108.2994796, 44.3247854 3.5933287, 32.8953849 -96.8706526, 37.8444350 -122.2519760, -32.0515595 115.8443811, 40.6157425 -73.9868157, 53.1676433 -1.4134747, 49.4448734 7.7697663, 53.0836993 8.7681259, 38.0537709 -84.4864406, 38.0540489 -84.4864496, 38.0440262 -84.4958034, 38.0595431 -84.4915847, -7.1845494 -78.4398653, 56.8406483 60.6572407, 56.2068996 -3.1838643, 56.2070642 -3.1842310, 45.2947957 4.8252328, 48.8013456 2.3789682, -37.7836523 175.2603574, 51.5109264 -0.0586168, 38.0521886 -84.4884016, 38.0494548 -84.4935773, 38.0429257 -84.4952821, 38.0443167 -84.4933857, -33.4413297 121.7231524, -33.4414474 121.7232133, -17.3923104 -66.1567482, 47.2021812 -1.5779209, 47.2022677 -1.5778037, 44.5352686 5.8261649, 52.4938477 13.3811864, 51.5260751 -0.0840468, 41.1532430 -81.3579184, 52.6401090 9.2041528, 52.6429039 9.2056691, -17.3929057 -66.1552616, 37.8675132 -122.3000141, 37.8675551 -122.2997592, 50.6909067 6.6458012, 53.3596621 -1.4659833, 51.4556489 -2.6038496, 45.4172733 -75.6983647, 52.5831591 -1.9784181, 51.5503609 -0.4845400, 39.2079410 -85.9230402, 39.1973373 -85.8800930, 39.2031083 -85.9228088, 39.1891273 -85.9736222, 39.2019531 -85.9208501, 39.2085646 -85.8988681, 39.2019178 -85.9179194, 39.2543531 -85.8913927, 39.2031322 -85.8989603, 39.2039094 -85.9154693, 39.2025960 -85.9217800, 39.2023044 -85.9209961, 39.8701379 -86.1431395, 53.1226519 8.7627701, 53.4817974 -2.2326613, 53.4831916 -2.2376310, 41.0442752 -83.6504895, 45.3947619 -75.7347314, 2.1971711 102.2488118, 41.0388746 -83.6498780, 52.4859871 13.4239241, 48.8592827 2.3509543, 45.5176517 -73.5566963, 51.1738592 11.4244641, 51.1733178 11.4239529, 51.1752559 11.4191939, 51.1770761 11.4206127, 51.4184661 -0.0727819, 42.7623332 -71.4668150, 42.7620908 -71.4667229, 42.7584057 -71.4682910, 42.7575240 -71.4647036, 42.7573052 -71.4669363, 42.7587805 -71.4640241, 42.7571556 -71.4675184, 42.7576189 -71.4657748, 42.7624523 -71.4657367, 42.7627189 -71.4664833, 42.7641415 -71.4660125, 42.7595174 -71.4680177, 42.7598112 -71.4657442, 42.7566036 -71.4695809, 42.7601179 -71.4658109, 42.7566142 -71.4701980, 42.7625651 -71.4652902, 42.7576305 -71.4656179, 42.7563894 -71.4703902, 5.4116061 100.3340429, 5.4154939 100.3387651, 5.4213171 100.3336350, 53.0791955 8.8052958, 53.1368542 8.7413622, 52.9504001 -1.1535231, 52.9503388 -1.1534482, 52.9503704 -1.1534869, 52.9504304 -1.1535602, 35.7137350 139.7045451, 48.7910119 2.2844280, 51.5144694 12.1668357, 51.5203741 -0.0713723, 43.9170530 7.2473706, 43.9171164 7.2476744, 43.5280686 5.4456013, 34.9206548 -81.7417946, 34.7157862 -81.6227769, 49.8590939 2.8321954, 49.0420788 -122.3043045, 47.3644143 0.6842258, 41.1477855 -81.3427719, 19.3300825 -99.1776362, 42.5158610 2.9761019, 38.0566576 -84.4817862, 38.0565753 -84.4817514, 38.0565161 -84.4823656, 38.0562543 -84.4828350, 38.0562434 -84.4827559, 38.0538909 -84.4860503, 38.0531209 -84.4815269, 38.0523959 -84.4809835, 38.0521224 -84.4871313, 38.0476572 -84.4873995, 38.0447085 -84.4907952, 38.0488445 -84.4986986, 31.9816820 -106.5839655, -32.9489433 -60.6265801, 38.0555396 -84.5174851, 38.0531741 -84.5086204, 42.8760574 74.5909103, 42.8736545 74.5745013, 42.8698006 74.6047406, 42.8580103 74.6099489, 42.8797935 74.5831435, 42.8789744 74.5764774, 42.8831894 74.5947887, 42.8768682 74.5914738, 56.8584597 60.6033627, 56.8287642 60.6191814, 42.8402730 74.5860882, 42.8505673 74.5389765, 42.8747517 74.6231748, 42.8294579 74.6077761, 42.8294907 74.6069557, -34.5793686 -58.4311628, 49.0457739 -122.2878072, 49.0487688 -122.2891869, 49.0486962 -122.2915555, 32.8799668 -117.2359539, 49.0526675 -122.3176918, 41.3750699 -83.6496567, 49.0511778 -122.3115905, 41.3760811 -83.6365378, 38.6387863 -90.1826610, 33.7505161 -84.3955465, 33.7502641 -84.3952434, 25.6719073 -100.3072634, 25.6724172 -100.2976594, 25.6724023 -100.2979786, 25.6723878 -100.2982153, 42.3598743 -71.0907366, 42.3593372 -71.0932901, 45.5592467 -122.6433910, 47.6682120 -122.3844430, 43.6491422 -79.3796433, 38.0537735 -84.4861755, 38.0573765 -84.4810954, 38.0572076 -84.4810820, 38.0555159 -84.4837642, 38.0536161 -84.4871264, 43.6530620 -79.4702480, 49.0494648 -122.2892041, 33.9930356 -118.3202702, 49.0500839 -122.3347082, 49.0460146 -122.2914095, -24.8631428 152.3535916, -33.0383617 -68.8885714, -32.9224661 -68.8642691, -32.9227781 -68.8647867, -32.9234618 -68.8645089, -32.9280550 -68.8554674, 40.1230055 -104.9435093, -32.9253184 -68.8591653, 1.5597574 110.3426026, 1.5596639 110.3425985, 41.3734556 -83.6512187, 45.5215050 -122.6862631, 38.0539022 -84.4865570, 38.0581892 -84.4821898, 38.0475174 -84.4966938, 47.6204615 -122.3507418, 41.3746042 -83.6441767, 51.2675538 7.1607310, 50.6635320 11.5677944, 51.0527530 13.7389786, 41.2806386 -82.7903114, 46.4976863 -80.9975128, 41.3851630 -83.6418716, 49.2811474 -123.1132131, 49.4719088 8.4843272, -35.3036563 149.1372453, 50.9602320 6.9768159, 46.7471651 -71.3409155, -20.2773275 -40.3014543, 43.6054536 3.8842159, 39.0170851 -77.5150639, 48.5135683 9.0540270, 48.5136496 9.0546591, 48.5166244 9.0588300, 45.7858145 4.8075880, 43.7056239 7.2593116, 43.1959215 5.6172785, 45.7505612 3.0910310, 45.7779285 4.8279690, 45.7316295 4.8668787, 45.7484993 4.8788479, 45.7498654 4.8759864, 45.7698700 4.7879340, 45.7698985 4.7880655, 45.7549115 4.8434004, 45.7245886 4.8263897, 45.7433556 4.8405258, 45.7196057 4.8008161, 49.4711729 8.4842984, 45.9937525 4.7191450, 28.1627997 -15.4284758, 45.7318565 4.8358705, 45.9911135 4.7189355, 45.8236656 4.9516614, 45.7326668 4.8630359, 50.3827443 3.0887317, 45.9896165 4.7139395, 45.0673527 4.8330052, 45.7375747 4.8616255, 45.7725199 4.8663498, 45.7321697 4.8664580, 45.7336465 4.8632348, 45.7328203 4.8629032, 45.7320947 4.8674966, 45.7330177 4.8657973, 45.7324535 4.8672057, 45.7331360 4.8666865, 45.7335600 4.8653728, 45.7325955 4.8671070, 45.7319545 4.8635870, 45.7321249 4.8634546, 45.7316965 4.8647521, 45.7323801 4.8642213, 45.7322374 4.8643323, 45.7323075 4.8663529, 45.7329498 4.8637779, 45.7314132 4.8640073, 45.7385048 4.8613236, 45.7387649 4.8607244, 45.7389336 4.8609359, 45.7328475 4.8659300, 45.7310051 4.8652929, 45.7331061 4.8636557, 45.7333891 4.8624614, 45.7315452 4.8648710, 45.7756330 4.7951910, 45.7332067 4.8666311, 45.8155738 4.8472165, 45.8156435 4.8475277, 42.3797616 -71.0987931, 42.3798687 -71.0954403, 45.0674616 4.8330187, 45.0673053 4.8333600, 45.7649855 4.8287925, 45.7165371 4.8098566, 45.7493533 4.8609118, 45.6634167 4.8424264, 37.8311549 -122.2549431, 45.7209120 4.8541671, 45.7235048 4.8539594, 45.7222175 4.8540626, 45.7227953 4.8540163, 45.7249477 4.8538288, 45.7681064 4.8280574, 45.7659207 4.8312600, 45.7759090 4.8015510, 45.7760780 4.7952180, 45.7764025 4.7984375, 45.7250410 5.2514110, 45.6870490 5.3207140, 45.8202824 4.8705136, 45.7498366 5.1566655, 45.7664155 5.0049470, 45.7704495 4.8643856, 45.7617643 4.8152072, 45.7621030 4.8160960, 45.7618195 4.8162683, 45.7342924 4.8626980, 45.5249515 4.8766560, 45.7745993 4.8606941, 45.8437735 4.7340205, 45.7150814 4.8078204, 45.7175164 4.8098900, 45.7450213 4.8660796, 45.7502318 4.8416473, 45.7513725 4.8390037, 45.7205996 4.8439283, 45.7690470 4.7998735, 45.7697129 4.9524500, 45.7714030 5.0001735, 45.5828000 4.6317350, 45.7083270 4.8272787, 45.7318628 4.9995743, 45.7316843 5.0009960, 45.7317208 4.9997166, 45.7322290 4.9975134, 45.7340142 4.9964253, 45.7337846 4.9972670, 45.7723084 4.8215466, 45.9923090 4.7148511, 45.9992002 4.7068090, 45.7449245 4.8424444, 45.7452687 4.8413678, 45.7252956 4.8413865, 45.7696009 4.8272315, -27.3565875 -55.9031998, 43.4354452 3.6736282, 43.6083431 3.8757537, 43.6064367 3.8760233, 45.3980277 5.4163392, 46.0560780 4.5925965, 45.6584498 4.7736478, 45.7081288 4.7481631, 52.4786505 -1.8811401, -20.2726011 -40.3056313, 45.7680770 4.8801051, 45.6946293 4.9406443, 45.7296178 4.8752517, 45.7463509 4.8459884, 45.7677299 4.8312641, 45.7297744 4.8742560, 51.5127453 -0.1381665, 41.8530567 -87.6314325, 45.7551709 4.8469660, 45.8764848 4.8346205, 45.8684698 4.8394062, 45.7434934 4.8478974, 45.7559238 4.8169452, 51.4736870 -0.0699055, 45.7447945 4.9069783, 52.6396913 9.2078891, 45.7179757 4.8174971, 45.7180962 4.8187223, 48.1065996 11.7222571, 52.6440907 9.2020649, 46.2956359 5.6817401, 39.8115545 -77.2260798, 41.5857316 -93.6176380, 50.7029544 3.2128655, 33.6299754 -112.3762740, 52.5449088 12.3430742, 52.5447248 12.3472627, 45.4183248 4.6827379, 49.4040536 8.6759122, 45.4487430 141.6434538, -22.9924192 -43.2498801, 42.8145199 -70.8741556, 49.0486387 -122.2901145, -25.4286258 -49.2645041, 4.5301583 -75.6693238, -27.3524135 -55.8986117, -24.0121107 -46.4140506, 37.7716576 -122.3995055, -23.9984813 -46.4136019, 49.0457202 -122.2896796, 58.3006092 -134.4084945, 39.0603766 125.8213718, 39.0579705 125.8225026, 13.7515025 100.4926302, 52.5184534 13.4548208 +0 +Viernheim, Hemsbach, Hirschhorn (Neckar), Weinheim, Eberbach, Neuhofen, Edingen-Neckarhausen, Dossenheim, Schriesheim, Ladenburg +3.2971201432222386 +61 +yes +933 +3 +48.8186338 2.3589337, 48.8370737 2.3788669, 48.9000609 2.3653350, 48.8563367 2.3884320, 48.8230158 2.3140310, 48.8685531 2.3429838, 48.8649072 2.2687029, 48.8723005 2.4127029 +562 +48.8484038 2.3977491, 48.8512856 2.2781094, 48.8467839 2.2854077, 48.8332389 2.3329284, 48.8526288 2.3385336, 48.8925057 2.3450965, 48.8536039 2.3444118, 48.8515050 2.3430786, 48.8473294 2.3412516, 48.8312038 2.3565530, 48.8806072 2.3538936, 48.8347711 2.3321841, 48.8278860 2.3709325, 48.8695890 2.2848365, 48.8581077 2.3801470, 48.8317286 2.3137879, 48.8668650 2.2788566, 48.8697674 2.2857979, 48.8424148 2.4052197, 48.8448799 2.3727316, 48.8815590 2.3150046, 48.8903495 2.3201315, 48.8941941 2.3135794, 48.8704998 2.3049572, 48.8854539 2.2915179, 48.8898626 2.3035373, 48.8774012 2.4069914, 48.8980267 2.3289128, 48.8844761 2.2976487, 48.8584436 2.3037809, 48.8795960 2.3896580, 48.8827367 2.3814655, 48.8420110 2.3206428, 48.8615010 2.3537550, 48.8645112 2.3981788, 48.8798173 2.3215782, 48.8747412 2.3049062, 48.8700986 2.3070512, 48.8687272 2.2986811, 48.8764317 2.3015489, 48.8748073 2.2956078, 48.8679763 2.2954876, 48.8666447 2.2899845, 48.8714962 2.2934996, 48.8659060 2.2863973, 48.8634029 2.2863046, 48.8617450 2.2859062, 48.8586868 2.2849457, 48.8482990 2.2647021, 48.8776228 2.3708847, 48.8780030 2.3781296, 48.8873966 2.3492159, 48.8831639 2.3275572, 48.8374622 2.2575596, 48.8527859 2.4060423, 48.8764243 2.3592623, 48.8663059 2.3244457, 48.8579055 2.3100803, 48.8655795 2.3559318, 48.8473587 2.3122933, 48.8766198 2.3392717, 48.8832546 2.3471915, 48.8460393 2.3780826, 48.8383701 2.3607602, 48.8320548 2.3861467, 48.8432250 2.4013484, 48.8226361 2.3257162, 48.8429514 2.3751858, 48.8597360 2.3466694, 48.8606298 2.3466023, 48.8445008 2.4411062, 48.8502906 2.3928948, 48.8713571 2.3432580, 48.8721397 2.3393564, 48.8538475 2.3325263, 48.8975838 2.3287233, 48.8937759 2.3363457, 48.8391806 2.3825585, 48.8672161 2.3065357, 48.8652369 2.3013632, 48.8616106 2.3019528, 48.8622551 2.3149819, 48.8538751 2.3124512, 48.8650500 2.3013405, 48.8696527 2.3111802, 48.8541706 2.3068705, 48.8699915 2.3014172, 48.8713160 2.3009696, 48.8756033 2.3260400, 48.8630530 2.3526294, 48.8462434 2.3767506, 48.8793033 2.3034301, 48.8682598 2.4015540, 48.8567698 2.3537979, 48.8257810 2.3469176, 48.8600781 2.3465254, 48.8325620 2.3618635, 48.8284670 2.3264398, 48.8666879 2.3641696, 48.8679052 2.3646802, 48.8679443 2.3620076, 48.8606611 2.3260607, 48.8307809 2.3768658, 48.8494789 2.3371871, 48.8521348 2.3393496, 48.8772711 2.3269492, 48.8764858 2.3319975, 48.8846924 2.3795882, 48.8306144 2.2924114, 48.8767391 2.3608267, 48.8643491 2.2725788, 48.8982278 2.3591507, 48.8607328 2.3456697, 48.8236433 2.3530302, 48.8643981 2.3303564, 48.8891585 2.3938039, 48.8577770 2.3473733, 48.8634279 2.3351782, 48.8680916 2.3299623, 48.8691985 2.3546294, 48.8705443 2.3327006, 48.8659300 2.3408572, 48.8662586 2.3612125, 48.8553209 2.3603751, 48.8369707 2.3521360, 48.8500790 2.3487204, 48.8432193 2.3520318, 48.8498446 2.3551829, 48.8434713 2.3236014, 48.8530282 2.3354092, 48.8402189 2.3365313, 48.8505206 2.3272579, 48.8512092 2.3331634, 48.8390765 2.3825241 +yes +49.4125622 8.6856608, 49.4132392 8.6920033, 49.4102265 8.6939011, 49.4171332 8.6926969, 49.4131244 8.6897970, 49.4122418 8.6816335 +yes +49.4157830 8.7024600, 49.4140666 8.7816898, 49.4577219 8.7490473, 49.4032925 8.7045178, 49.4289721 8.7151840, 49.4389757 8.7105067, 49.4198571 8.7455459, 49.4275029 8.7737015, 49.4373776 8.7102608, 49.4586993 8.7508080, 49.4422682 8.7212517, 49.4363628 8.7226574, 49.3798543 8.7242169, 49.3920053 8.7219191, 49.3936816 8.7338185, 49.3880529 8.7449374, 49.3892299 8.7356087, 49.4211542 8.7663844, 49.4041052 8.7535788, 49.4040430 8.7550549, 49.4018572 8.7381282, 49.3882183 8.7637532, 49.3713087 8.7206070, 49.3712490 8.7202415, 49.3885665 8.7398928, 49.4005245 8.7368649, 49.4001794 8.7358427, 49.3735025 8.7471203, 49.4145556 8.7378436, 49.3955998 8.7710686, 49.4068586 8.7117430, 49.4013232 8.7102589, 49.3926283 8.7303560, 49.4186446 8.7243774, 49.4192378 8.7252701, 49.3916523 8.7083614, 49.4040076 8.7273317, 49.4005726 8.7520996, 49.4312494 8.6531851, 49.3715147 8.7207735, 49.3569186 8.7160216, 49.4020661 8.7444436, 49.4158860 8.7648572, 49.3879028 8.7422176, 49.3933762 8.7504520, 49.3976730 8.7366267, 49.3975523 8.7366262, 49.3975987 8.7367489, 49.4126021 8.6894511, 49.4124594 8.6881444, 49.4282015 8.7615482 +86 +49.6441243 8.5564719, 49.0087591 8.5185870, 49.2985368 8.5677585, 49.6721557 8.7454758, 49.1842695 8.5319667, 49.1288811 8.5190059, 49.9809835 7.8983830, 48.7376304 8.7293812, 49.5337420 8.5138668, 49.4347356 8.5477477, 48.7925976 9.3061008, 49.8196948 8.4985181, 48.8056481 8.6846746, 49.7600299 9.3291305, 49.4662766 7.6813517, 48.7856247 8.6267606, 49.7759429 8.4585232, 49.2307784 9.2078871, 49.4206827 8.4171066, 49.6798785 9.0763050, 49.0007416 8.1512107, 49.4367044 8.5477748, 49.4100821 8.1059288, 49.2801412 9.1346454, 49.0888567 9.2804742, 48.9795411 8.5355564, 50.1031768 8.1927138, 49.2657113 8.7084865, 48.8041483 8.4631233, 49.4876783 8.2702108, 49.4677368 9.7970458, 50.0857016 8.9076265, 48.7483865 8.0614060, 49.0287165 9.0492016, 49.0410316 9.3169418, 48.8539592 9.2348027, 48.8539557 9.2347866, 48.9983747 8.4008525, 49.4148452 8.6616528, 49.6441921 8.5567222, 48.8058870 9.2026900, 49.3148737 8.6338634, 49.2040092 8.1101928, 49.2322156 8.5669673, 49.2988095 8.5680059, 48.9802618 8.4708375, 50.0065372 8.2026859, 49.3584373 8.5785675, 49.9732653 9.1956023, 50.1157093 8.7028470, 49.3459550 8.3249470, 49.1515965 8.2765440, 49.5210275 8.6234238, 48.8071875 9.1737724, 49.1022030 8.3828217, 49.2935362 8.5046053, 50.1165360 8.7067454, 48.8253103 8.6754059, 50.0263486 9.3879603, 49.8658698 8.6833388, 49.8662101 8.6833327, 49.9914197 8.2840289, 49.9915814 8.2834873, 49.3237980 8.5608339, 49.2651896 8.7827986, 48.9540766 8.4458308, 49.2426090 8.6870049, 48.9957220 9.1233047, 48.8665666 8.2860385, 49.4876947 8.2700669, 49.5254851 8.3704330, 49.1285534 8.5472366, 50.0330868 8.4258727, 49.4650298 7.6807066, 49.3714003 8.5192029, 49.1603286 9.1744885, 49.5513114 8.5821079, 48.8647904 8.2838755, 49.3582528 8.5752331, 49.4367038 8.5473860, 49.4345444 8.5480585, 49.3695564 8.9893293, 49.5336357 8.5167883, 49.4301824 8.4136152, 49.2768106 8.4785462, 49.9038888 8.4804344, 49.0562857 8.2706917, 49.2593457 8.4792839, 49.1499602 8.2782883, 50.0799929 8.7788988, 48.9849185 9.4605810, 50.0818294 8.5830720, 49.5855289 8.3604475, 49.0267743 9.0449298, 49.1220234 8.7286777, 49.2196715 8.6777887, 49.0350959 9.0509228, 49.0413083 9.3172317, 48.8995303 9.2000831, 49.0888017 9.2803752, 49.0888657 9.2805980, 49.6248616 8.6332287, 49.0174407 8.6954605, 49.5369447 8.5202986, 49.5381507 8.5127480, 50.1050054 8.1943039, 50.0675836 8.4932108, 50.0977193 8.4410081, 50.1155894 8.6989594, 49.1429609 9.0780047, 49.4696792 9.7928929, 48.9653382 9.4514415, 48.9917186 8.4203757, 48.9900715 8.4209385, 48.9909331 8.4206520, 48.9874812 8.4209171, 48.9885156 8.4224369, 48.9173133 8.4878677, 49.1201519 8.4078517, 49.1639956 8.5831769, 50.0134135 8.5766571, 49.0355835 9.0504869, 49.0689362 8.5095157, 48.8750061 8.7154801, 49.0534493 8.3745481, 49.1904102 8.1305350, 49.1836255 9.6389805, 49.0562524 8.2689839, 49.1579391 8.4191576, 49.8659120 8.6837805, 49.8500709 8.3693753, 48.8080900 9.1753283, 48.8070681 9.1714156, 50.0812734 8.9081352, 49.1978115 9.5038738, 49.0889411 9.4579901, 49.6154087 8.3705051, 49.6153418 8.3707592, 49.6155807 8.3704936, 49.0684589 8.4811478, 49.7088645 8.5219522, 49.5087923 9.3552786 +http://www.eldorado-hd.de/ +12 +49.4278053 8.7495282, 49.4178891 8.7605933, 49.4075919 8.6845735, 49.4092177 8.6922359, 49.4084542 8.6927289, 49.4078943 8.6929172, 49.4083041 8.6927592, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4015990 8.6856698, 49.4158218 8.6922416, 49.4072954 8.6910173, 49.4082595 8.6914326, 49.4082829 8.6916558, 49.4076226 8.6923209, 49.3808049 8.6889505, 49.3656861 8.7051775, 49.3741444 8.7033717, 49.3742583 8.7034051, 49.3741763 8.7034993, 49.4103158 8.6974936, 49.4165191 8.6921856, 49.4120923 8.7117858, 49.4151725 8.6902594, 49.4071068 8.6898761, 49.4108200 8.6918918, 49.4160126 8.6922256, 49.4278746 8.6871277, 49.4277708 8.6843289, 49.3795766 8.6901652, 49.4077632 8.6922107, 49.4101101 8.6935285, 49.4080641 8.6904292, 49.4283321 8.6836841, 49.3804723 8.6884268, 49.3807734 8.6884609, 49.4082494 8.6913249, 49.4278253 8.6839436, 49.4278064 8.7495089 +48.8298344 2.3228877, 48.8319942 2.3245602, 48.8672925 2.3255509, 48.8659000 2.3372420, 48.8615254 2.3440287, 48.8585872 2.3458523, 48.8674660 2.3326727, 48.8663903 2.3380844, 48.8648091 2.3411291, 48.8687993 2.3373273, 48.8689038 2.3422059, 48.8405040 2.3347917, 48.8556694 2.3399888, 48.8555375 2.3409454, 48.8537528 2.3324105, 48.8533939 2.3394107, 48.8493501 2.3391528, 48.8546811 2.3332029, 48.8497831 2.3401650, 48.8441458 2.3298957, 48.8468341 2.3265156, 48.8550882 2.3414828, 48.8442966 2.3310034, 48.8710439 2.3094204, 48.8695157 2.3030346, 48.8714582 2.3357136, 48.8719507 2.3429771, 48.8718710 2.3418144, 48.8349997 2.3270026, 48.8332286 2.3157120, 48.8413291 2.2990993, 48.8408025 2.2883022, 48.8581641 2.2723388, 48.8646895 2.2880988, 48.8869322 2.3399586, 48.8847049 2.3404648, 48.8654581 2.3446776, 48.8523143 2.3350471, 48.8755021 2.3103942, 48.8606089 2.3006648, 48.8516415 2.3185465, 48.8482525 2.3194882, 48.8604171 2.3059560, 48.8537038 2.3235630, 48.8584187 2.2875657, 48.8449916 2.3240393, 48.8395978 2.2669106, 48.8274124 2.3148434, 48.8588049 2.3266129, 48.8694500 2.3047988, 48.8334988 2.3198962, 48.8373556 2.2574212, 48.8378434 2.2578634, 48.8381218 2.2586505, 48.8488333 2.3253506, 48.8647212 2.3469127, 48.8658103 2.3452891, 48.8588835 2.3307705, 48.8697776 2.3105917, 48.8722601 2.3035046, 48.8686679 2.3066263, 48.8721672 2.3266440, 48.8845714 2.3233053, 48.8844355 2.3243334, 48.8867718 2.3236539, 48.8884368 2.3207195, 48.8886141 2.3198123, 48.8891033 2.3164088, 48.8879876 2.3341073, 48.8940712 2.3342515, 48.8886186 2.3167009, 48.8835953 2.3233585, 48.8492934 2.3349249, 48.8414290 2.2990451, 48.8517156 2.3336409, 48.8858410 2.3405929, 48.8891314 2.3403708, 48.8455384 2.3288228, 48.8519626 2.3388319, 48.8300409 2.3310810, 48.8776115 2.2679599, 48.8457083 2.3191961, 48.8523526 2.3444419, 48.8568120 2.3062305, 48.8540277 2.3358692, 48.8404976 2.3244044, 48.8491586 2.2872491, 48.8472243 2.3185062, 48.8300837 2.3230365, 48.8672258 2.3079158, 48.8838862 2.3277689, 48.8861318 2.3340926, 48.8518241 2.3377078, 48.8393461 2.2989248, 48.8739244 2.3454201, 48.8701181 2.2849979, 48.8473878 2.3433434, 48.8860554 2.3188123, 48.8519093 2.3341886, 48.8650517 2.3018704, 48.8284622 2.3428564, 48.8319371 2.3141252, 48.8327575 2.3159370, 48.8318327 2.3145828, 48.8330455 2.3162946, 48.8332491 2.3170528, 48.8362254 2.3224012, 48.8364089 2.3224024, 48.8324709 2.3200140, 48.8324257 2.3207007, 48.8324031 2.3208037, 48.8323749 2.3209067, 48.8840850 2.3374869, 48.8663999 2.3328148, 48.8678174 2.3028593, 48.8310200 2.3347804, 48.8865096 2.3452428, 48.8274542 2.3356985, 48.8755523 2.3252222, 48.8324911 2.2973690, 48.8342552 2.3021401, 48.8331822 2.3057910, 48.8330642 2.3057247, 48.8370250 2.2962718, 48.8320429 2.3030516, 48.8847020 2.3249240, 48.8567473 2.3041925, 48.8562200 2.3044115, 48.8560475 2.3045247, 48.8555290 2.3047711, 48.8555382 2.3054236, 48.8553164 2.3055412, 48.8549906 2.3050099, 48.8547805 2.3051304, 48.8454096 2.3428012, 48.8451686 2.3207087, 48.8836330 2.3284520, 48.8343459 2.3060180, 48.8803159 2.2995227, 48.8633934 2.3347841, 48.8707741 2.3411912, 48.8705661 2.3420906, 48.8709334 2.3427566, 48.8505276 2.3447826, 48.8513045 2.3459712, 48.8661377 2.3353287, 48.8871654 2.3269257, 48.8861847 2.3270688, 48.8974129 2.3292183, 48.8538840 2.3375740, 48.8459719 2.2775704, 48.8605714 2.3454975, 48.8286167 2.3222750, 48.8291859 2.3226894, 48.8768016 2.3394255, 48.8445390 2.3211809, 48.8305262 2.3381265, 48.8720047 2.3455258, 48.8289443 2.3298857, 48.8289302 2.3293063, 48.8288878 2.3328361, 48.8376310 2.2974210, 48.8958230 2.3395842, 48.8794405 2.3338166, 48.8430137 2.3209354, 48.8386044 2.2987363, 48.8565275 2.3420348, 48.8568716 2.3421327, 48.8563329 2.3422554, 48.8569183 2.3418674, 48.8333386 2.2983800, 48.8319312 2.3029513, 48.8577895 2.3468656, 48.8600943 2.3451124, 48.8604674 2.3454225, 48.8609295 2.3450073, 48.8612791 2.3423684, 48.8613359 2.3426577, 48.8612560 2.3431916, 48.8613382 2.3448649, 48.8617216 2.3432877, 48.8602965 2.3418540, 48.8588694 2.3415282, 48.8622902 2.3393649, 48.8620988 2.3398606, 48.8622685 2.3398888, 48.8626905 2.3414763, 48.8644969 2.3453886, 48.8633332 2.3460793, 48.8633690 2.3462612, 48.8634242 2.3462790, 48.8641678 2.3467038, 48.8636473 2.3431563, 48.8640954 2.3438023, 48.8625475 2.3407883, 48.8647612 2.3406523, 48.8659486 2.3400023, 48.8644890 2.3404697, 48.8655554 2.3403846, 48.8660668 2.3390095, 48.8661019 2.3389239, 48.8650200 2.3366293, 48.8656093 2.3369261, 48.8663099 2.3374684, 48.8660066 2.3354463, 48.8660278 2.3340077, 48.8663930 2.3354840, 48.8663406 2.3354494, 48.8666001 2.3357750, 48.8646841 2.3338346, 48.8660273 2.3312781, 48.8380436 2.2819311, 48.8447774 2.2964422, 48.8475784 2.2858410, 48.8499929 2.2889519, 48.8658325 2.3324895, 48.8658744 2.3325173, 48.8659399 2.3325614, 48.8663779 2.3317318, 48.8669595 2.3323778, 48.8670401 2.3324272, 48.8676684 2.3316870, 48.8671882 2.3325179, 48.8675087 2.3324647, 48.8676565 2.3320208, 48.8675328 2.3323476, 48.8674795 2.3326070, 48.8678727 2.3316533, 48.8680817 2.3307073, 48.8517565 2.2895333, 48.8527624 2.2872737, 48.8687898 2.3338477, 48.8677062 2.3374280, 48.8690695 2.3343056, 48.8706891 2.3340754, 48.8714078 2.3378085, 48.8690729 2.3399905, 48.8691872 2.3393294, 48.8691071 2.3397858, 48.8692514 2.3401242, 48.8716597 2.3407937, 48.8716249 2.3410422, 48.8688297 2.3421626, 48.8675928 2.3409167, 48.8664997 2.3400225, 48.8704135 2.3318678, 48.8691969 2.3433101, 48.8671729 2.3441962, 48.8705191 2.3428655, 48.8709276 2.3429934, 48.8515128 2.3437930, 48.8834373 2.3324889, 48.8271315 2.3323734, 48.8633842 2.3464893, 48.8521687 2.3444775, 48.8533184 2.3416729, 48.8516494 2.3469103, 48.8544692 2.3379604, 48.8468855 2.3408953, 48.8459422 2.3434742, 48.8422162 2.3202513, 48.8438796 2.3245430, 48.8687006 2.3354843, 48.8400778 2.3373997, 48.8413087 2.3389738, 48.8413263 2.3391080, 48.8382571 2.3458273, 48.8543308 2.3402565, 48.8546432 2.3327719, 48.8533032 2.3340213, 48.8529586 2.3360296, 48.8516089 2.3354609, 48.8514421 2.3272954, 48.8551090 2.3306870, 48.8416177 2.3314774, 48.8419379 2.3304718, 48.8422661 2.3280738, 48.8424306 2.3290349, 48.8471137 2.3267431, 48.8467204 2.3172126, 48.8530169 2.3313456, 48.8521220 2.3374608, 48.8673734 2.3222301, 48.8693756 2.3206236, 48.8705692 2.3211241, 48.8727654 2.3210286, 48.8703638 2.3102774, 48.8723529 2.3102456, 48.8738587 2.3163169, 48.8737509 2.3196440, 48.8744903 2.3184375, 48.8736367 2.3223675, 48.8713058 2.3233311, 48.8724761 2.3240966, 48.8721839 2.3251685, 48.8751646 2.3250295, 48.8753241 2.3259291, 48.8752570 2.3254427, 48.8741599 2.3254911, 48.8761914 2.3213046, 48.8760259 2.3235129, 48.8801220 2.3241052, 48.8831176 2.3264261, 48.8820671 2.3242802, 48.8832767 2.3277563, 48.8834770 2.3281748, 48.8837504 2.3286298, 48.8829218 2.3256282, 48.8831342 2.3236837, 48.8801277 2.3203119, 48.8799079 2.3202876, 48.8805205 2.3183206, 48.8558538 2.3252896, 48.8733445 2.3091989, 48.8745431 2.3093666, 48.8794607 2.3036933, 48.8724450 2.3072214, 48.8411028 2.2875550, 48.8707572 2.3085752, 48.8696331 2.3067786, 48.8715784 2.3063992, 48.8713131 2.3073190, 48.8713952 2.3012394, 48.8697736 2.3021852, 48.8669256 2.3076130, 48.8668818 2.3076173, 48.8672769 2.3062806, 48.8670111 2.3076126, 48.8671369 2.3028950, 48.8681586 2.3027800, 48.8660598 2.3017043, 48.8651464 2.3005883, 48.8724390 2.3021296, 48.8790339 2.2985581, 48.8787934 2.2983905, 48.8775425 2.2981350, 48.8783508 2.3004239, 48.8778323 2.2987883, 48.8690865 2.3022434, 48.8694700 2.3034453, 48.8699522 2.3058242, 48.8799166 2.3359231, 48.8753587 2.3261663, 48.8796547 2.3374136, 48.8753796 2.2958946, 48.8511260 2.3460443, 48.8517830 2.3177917, 48.8425329 2.3202995, 48.8679999 2.3369853, 48.8658930 2.2979628, 48.8721649 2.2948681, 48.8678330 2.2903912, 48.8387533 2.3310982, 48.8395777 2.3302123, 48.8670044 2.2897764, 48.8637238 2.2872368, 48.8691923 2.2884450, 48.8730386 2.2928973, 48.8692540 2.2857812, 48.8664391 2.2859464, 48.8666202 2.2859162, 48.8741506 2.2926613, 48.8744699 2.2916401, 48.8748891 2.2837909, 48.8665016 2.2891682, 48.8766202 2.2833645, 48.8734052 2.2811173, 48.8702950 2.2830521, 48.8654332 2.2855483, 48.8652388 2.2832232, 48.8671985 2.2798899, 48.8700560 2.3301669, 48.8637574 2.2772598, 48.8707204 2.3239555, 48.8705451 2.3238330, 48.8706016 2.3238683, 48.8629342 2.2763103, 48.8632435 2.2744521, 48.8595315 2.2787013, 48.8396268 2.3145492, 48.8430176 2.3242123, 48.8410422 2.3148300, 48.8741142 2.3446221, 48.8762130 2.3456817, 48.8516854 2.3468389, 48.8776819 2.2846763, 48.8411418 2.3133493, 48.8575743 2.2745958, 48.8564304 2.2797283, 48.8546720 2.2831002, 48.8556834 2.2695115, 48.8406209 2.3131425, 48.8408995 2.3133856, 48.8377889 2.3112404, 48.8510948 2.2675935, 48.8485486 2.2609653, 48.8485892 2.2607508, 48.8495519 2.2685978, 48.8478164 2.2424927, 48.8483714 2.2664428, 48.8243361 2.3260774, 48.8235176 2.3258353, 48.8410150 2.3160260, 48.8482315 2.2642376, 48.8473334 2.2588597, 48.8454540 2.2578610, 48.8655911 2.3030514, 48.8626372 2.2404388, 48.8449412 2.2575407, 48.8452233 2.2577704, 48.8394586 2.2616545, 48.8403523 2.2652749, 48.8402456 2.2655127, 48.8407348 2.2646847, 48.8378544 2.2962158, 48.8672772 2.3368959, 48.8296616 2.3177920, 48.8283684 2.3161973, 48.8397098 2.2848132, 48.8412353 2.2879283, 48.8347149 2.3277467, 48.8354063 2.3258802, 48.8358672 2.3242187, 48.8355698 2.3250292, 48.8348588 2.3273891, 48.8350846 2.3267608, 48.8341036 2.3294199, 48.8324180 2.3247172, 48.8342294 2.3264332, 48.8795990 2.2908850, 48.8368961 2.3177487, 48.8367758 2.3180171, 48.8396082 2.3324972, 48.8764826 2.2833917, 48.8499857 2.3459367, 48.8618932 2.3433243, 48.8642832 2.3420572, 48.8773156 2.2850715, 48.8773806 2.2848829, 48.8774160 2.2847302, 48.8533661 2.3445967, 48.8527336 2.3464352, 48.8525998 2.3463499, 48.8510655 2.3458688, 48.8508738 2.3460187, 48.8414932 2.3132873, 48.8425813 2.3133329, 48.8425225 2.3124389, 48.8773360 2.3157316, 48.8566502 2.3266740, 48.8696608 2.3393758, 48.8407751 2.3245796, 48.8431709 2.3416539, 48.8426788 2.3414503, 48.8463554 2.3405710, 48.8584177 2.3025456, 48.8569221 2.3035938, 48.8464241 2.2954995, 48.8602874 2.3097025, 48.8602217 2.3097138, 48.8530145 2.3117479, 48.8501505 2.3397562, 48.8859856 2.3190545, 48.8353460 2.2854410, 48.8462262 2.3142889, 48.8710024 2.3294337, 48.8577097 2.3005438, 48.8515887 2.3004692, 48.8568923 2.2921973, 48.8944130 2.3404956, 48.8752166 2.3329602, 48.8759120 2.3269790, 48.8830873 2.3292402, 48.8785075 2.2845239, 48.8786662 2.2845930, 48.8809300 2.3404709, 48.8818258 2.3395224, 48.8765185 2.3448908, 48.8718967 2.3415625, 48.8853691 2.3353615, 48.8857113 2.3355174, 48.8855561 2.3353079, 48.8855279 2.3354474, 48.8479740 2.3007339, 48.8468451 2.3046139, 48.8475414 2.3012068, 48.8467540 2.3049111, 48.8482418 2.3105178, 48.8505805 2.3092017, 48.8517546 2.3104073, 48.8514424 2.3108980, 48.8517685 2.3133289, 48.8498367 2.3124580, 48.8517506 2.3131416, 48.8446026 2.3117965, 48.8828690 2.3183304, 48.8823081 2.3158735, 48.8825903 2.3165065, 48.8829889 2.3183223, 48.8829466 2.3176571, 48.8445056 2.3203943, 48.8446279 2.3203361, 48.8775262 2.2949459, 48.8754540 2.2867414, 48.8756436 2.2866256, 48.8438107 2.3152002, 48.8437516 2.3150319, 48.8890725 2.3179865, 48.8765188 2.3353132, 48.8767451 2.3353322, 48.8764727 2.3353018, 48.8764220 2.3352962, 48.8449195 2.3183472, 48.8453227 2.3190283, 48.8760923 2.3383718, 48.8745269 2.3383294, 48.8751689 2.3383360, 48.8766449 2.2886055, 48.8782254 2.2853949, 48.8777760 2.2847660, 48.8323092 2.3130666, 48.8480733 2.3112387, 48.8264546 2.3410881, 48.8564566 2.3025481, 48.8314493 2.3411256, 48.8380307 2.2817398, 48.8833475 2.2875083, 48.8453517 2.2976315, 48.8341870 2.3157058, 48.8452541 2.2717989, 48.8400603 2.2864594, 48.8437006 2.2963141, 48.8744843 2.3304643, 48.8449901 2.2972313, 48.8515963 2.3430149, 48.8492402 2.2880111, 48.8820903 2.2863199, 48.8720949 2.3323339, 48.8705731 2.3103284, 48.8351017 2.3201496, 48.8351935 2.3203079, 48.8218202 2.3423613, 48.8370059 2.2837291, 48.8365516 2.2821427, 48.8356895 2.2807712, 48.8354976 2.2815391, 48.8370362 2.2836115, 48.8776662 2.3398701, 48.8601399 2.2750024, 48.8764828 2.3370142, 48.8766560 2.3371844, 48.8385818 2.2889747, 48.8383246 2.2880446, 48.8381278 2.2872162, 48.8377112 2.2593212, 48.8662293 2.3379767, 48.8675784 2.2807278, 48.8667500 2.2803710, 48.8687850 2.3380000, 48.8703423 2.3428105, 48.8566013 2.3030438, 48.8447537 2.3186687, 48.8662137 2.3353607, 48.8660390 2.3352910, 48.8657884 2.3351488, 48.8719692 2.3361261, 48.8715773 2.3365388, 48.8714095 2.3355863, 48.8752025 2.3376055, 48.8751468 2.3355442, 48.8750364 2.3392304, 48.8766742 2.3373282, 48.8766460 2.3368602, 48.8769295 2.3383704, 48.8769349 2.3331592, 48.8767858 2.3369975, 48.8768072 2.3364970, 48.8758550 2.3388379, 48.8767868 2.3367967, 48.8767450 2.3377873, 48.8710277 2.3356624, 48.8708929 2.3349679, 48.8710045 2.3355038, 48.8716416 2.3409433, 48.8706911 2.3467398, 48.8716176 2.3411379, 48.8707327 2.3464923, 48.8714861 2.3419548, 48.8716074 2.3412011, 48.8750088 2.3393609, 48.8689508 2.3362959, 48.8667422 2.3365735, 48.8682398 2.3365168, 48.8696120 2.3356753, 48.8676561 2.3370904, 48.8675328 2.3370273, 48.8698393 2.3358297, 48.8708380 2.3349612, 48.8688219 2.3359090, 48.8688160 2.3362566, 48.8688035 2.3365534, 48.8666564 2.3369830, 48.8669153 2.3365074, 48.8702490 2.3349166, 48.8688150 2.3361103, 48.8676983 2.3366997, 48.8681903 2.3364995, 48.8678747 2.3364447, 48.8658609 2.3370619, 48.8641660 2.3361960, 48.8656996 2.3366338, 48.8651667 2.3364852, 48.8652254 2.3367395, 48.8703362 2.3315753, 48.8597079 2.3182507, 48.8666350 2.3099131, 48.8703978 2.3225405, 48.8702620 2.3312290, 48.8702706 2.3312786, 48.8706031 2.3221827, 48.8707016 2.3218346, 48.8575110 2.3466500, 48.8549950 2.3458720, 48.8543860 2.3452440, 48.8538530 2.3437110, 48.8361075 2.3240698, 48.8616152 2.3446790, 48.8616509 2.3443800, 48.8373866 2.2787503, 48.8376849 2.2783476, 48.8370124 2.2782827, 48.8373420 2.2787571, 48.8584947 2.3265348, 48.8640655 2.3345802, 48.8936313 2.3222087, 48.8943755 2.3204813, 48.8248377 2.3236483, 48.8238612 2.3234793, 48.8243856 2.3234123, 48.8242408 2.3233372, 48.8280919 2.3264056, 48.8290544 2.3276046, 48.8315850 2.3242790, 48.8521286 2.3374207, 48.8830455 2.3398008, 48.8485558 2.3279413, 48.8390548 2.2577341, 48.8388575 2.2576602, 48.8404902 2.2580804, 48.8908275 2.3460063, 48.8905461 2.3453913, 48.8851558 2.3360026, 48.8410271 2.2662469, 48.8945691 2.3441669, 48.8944316 2.3452559, 48.8936330 2.3428880, 48.8940560 2.3431940, 48.8941520 2.3429690, 48.8943730 2.3432450, 48.8951370 2.3433760, 48.8943990 2.3447720, 48.8942700 2.3458810, 48.8941300 2.3458060, 48.8928950 2.3433840, 48.8948510 2.3409210, 48.8300641 2.3145322, 48.8285724 2.3161086, 48.8931040 2.3440780, 48.8926550 2.3442290, 48.8937130 2.3451630, 48.8937300 2.3449020, 48.8731527 2.3385700, 48.8505156 2.3091488, 48.8664049 2.3413812, 48.8687508 2.3345042, 48.8692412 2.3299818, 48.8707775 2.3387098, 48.8689281 2.3302927, 48.8695802 2.3230555, 48.8664844 2.3389311, 48.8700770 2.3223918, 48.8675314 2.3020548, 48.8696595 2.3052249, 48.8662502 2.3285392, 48.8739879 2.3430920, 48.8442421 2.2944260, 48.8486566 2.2967202, 48.8419574 2.3290304, 48.8634808 2.3437738, 48.8718416 2.3144851, 48.8696738 2.3309961, 48.8724435 2.3281256, 48.8947860 2.3445300, 48.8724800 2.3404835, 48.8714038 2.3104401, 48.8715946 2.3262057, 48.8669510 2.3270370, 48.8706950 2.3313289, 48.8673862 2.2911822, 48.8679841 2.3255481, 48.8706291 2.3297804, 48.8680526 2.3287936, 48.8684086 2.3268250, 48.8662803 2.3394262, 48.8710959 2.3416366, 48.8699813 2.3246311, 48.8597088 2.3086607, 48.8529952 2.3376020, 48.8501520 2.3419436, 48.8687853 2.3250184, 48.8688647 2.2646951, 48.8635574 2.2602856, 48.8660415 2.3361004, 48.8349766 2.2830210, 48.8327742 2.2887456, 48.8939174 2.3431529, 48.8873793 2.3371742, 48.8401572 2.3240577, 48.8864168 2.3442029, 48.8866377 2.3443434, 48.8294590 2.3017660, 48.8899236 2.3398500, 48.8865304 2.3443480, 48.8857166 2.3381509, 48.8274320 2.3314214, 48.8702183 2.2459747, 48.8690004 2.3384279, 48.8510173 2.2932405, 48.8509119 2.2937166, 48.8508690 2.2932272, 48.8485015 2.3421189, 48.8501669 2.3420537, 48.8455001 2.3427289, 48.8334129 2.3092754, 48.8434049 2.2987789, 48.8736424 2.3076398, 48.8984060 2.3445732, 48.8433712 2.3246895, 48.8435643 2.3254572, 48.8828717 2.3288427, 48.8827606 2.3283572, 48.8402155 2.3458349, 48.8935993 2.3230562, 48.8489864 2.3403461, 48.8668318 2.2544028, 48.8934373 2.3232735, 48.8427645 2.2780599, 48.8865873 2.3128095, 48.8714714 2.3280397, 48.8867280 2.3409619, 48.8427006 2.2950967, 48.8412651 2.3237285, 48.8412198 2.3236119, 48.8423579 2.3222342, 48.8426136 2.3217510, 48.8425995 2.3220085, 48.8426424 2.3222812, 48.8421833 2.3220777, 48.8418212 2.3214760, 48.8211226 2.3412820, 48.8333002 2.3325229, 48.8928740 2.3287813, 48.8801808 2.3373122, 48.8777152 2.3320765, 48.8777130 2.3318740, 48.8720797 2.3405228, 48.8717651 2.3403142, 48.8710210 2.3469210, 48.8710522 2.3467304, 48.8829700 2.3205585, 48.8820557 2.3285353, 48.8801158 2.3291143, 48.8815002 2.3282628, 48.8742801 2.3357676, 48.8742391 2.3333145, 48.8742326 2.3334984, 48.8741848 2.3351560, 48.8743601 2.3329097, 48.8742439 2.3332327, 48.8742300 2.3335755, 48.8742269 2.3336382, 48.8728885 2.3451791, 48.8765391 2.3394762, 48.8762070 2.3400723, 48.8765114 2.3406889, 48.8766574 2.3401427, 48.8764750 2.3395753, 48.8766574 2.3405656, 48.8500694 2.2761219, 48.8498994 2.2724503, 48.8514931 2.2777343, 48.8512248 2.2780374, 48.8506071 2.2713372, 48.8240405 2.3250200, 48.8359510 2.3274377, 48.8337887 2.2902462, 48.8339105 2.2899243, 48.8332825 2.2894710, 48.8331362 2.2888144, 48.8680574 2.3417881, 48.8698783 2.3425685, 48.8691169 2.3422291, 48.8702023 2.3421494, 48.8351363 2.3445567, 48.8260954 2.3467344, 48.8872935 2.3361945, 48.8853856 2.3359893, 48.8873015 2.3360309, 48.8858892 2.3361945, 48.8857859 2.3452590, 48.8688487 2.2348654, 48.8896591 2.3426912, 48.8857760 2.3287243, 48.8849775 2.3295394, 48.8416788 2.3272221, 48.8880810 2.2979280, 48.8556751 2.3337849, 48.8974737 2.3312683, 48.8959871 2.3304855, 48.8872260 2.3324699, 48.8904006 2.3349160, 48.8905328 2.3349026, 48.8884483 2.3329205, 48.8875488 2.3327381, 48.8915645 2.3352835, 48.8953965 2.3375071, 48.8344267 2.2884194, 48.8338498 2.2894608, 48.8396619 2.3229538, 48.8879853 2.3396455, 48.8518599 2.3446879, 48.8527027 2.3467086, 48.8947585 2.3282626, 48.8959929 2.3286918, 48.8961868 2.3389271, 48.8347833 2.2887478, 48.8342967 2.2879777, 48.8341388 2.2878870, 48.8335658 2.2868046, 48.8354116 2.2892340, 48.8337101 2.2863906, 48.8825100 2.3378415, 48.8846868 2.3416679, 48.8843749 2.3411643, 48.8846003 2.3411844, 48.8720517 2.3351032, 48.8662620 2.3356061, 48.8670216 2.3359869, 48.8484873 2.3463043, 48.8507620 2.3449853, 48.8463607 2.3432591, 48.8464051 2.3430548, 48.8308414 2.3123480, 48.8311654 2.3137963, 48.8781869 2.2884063, 48.8502006 2.2918459, 48.8501155 2.2920291, 48.8514439 2.3380763, 48.8656739 2.3463704, 48.8731487 2.3445761, 48.8530064 2.2754461, 48.8511636 2.2783753, 48.8526949 2.3089511, 48.8724637 2.2980607, 48.8707216 2.3006611, 48.8682088 2.3014586, 48.8729195 2.2988493, 48.8730465 2.2984497, 48.8541526 2.2759522, 48.8656555 2.2894172, 48.8652925 2.2891532, 48.8654719 2.2892837, 48.8283068 2.3264318, 48.8751640 2.3321790, 48.8348517 2.2891489, 48.8349806 2.2890202, 48.8848688 2.3069070, 48.8355850 2.3240208, 48.8364355 2.3230794, 48.8400356 2.3360672, 48.8395556 2.3365605, 48.8778735 2.2875843, 48.8705072 2.3019336, 48.8708689 2.3020289, 48.8697768 2.3036006, 48.8681112 2.3014721, 48.8704351 2.3043615, 48.8693740 2.3077196, 48.8360032 2.2916086, 48.8354526 2.2925379, 48.8360026 2.2919856, 48.8444056 2.3230253, 48.8398470 2.3238410, 48.8405177 2.3236190, 48.8777760 2.2877961, 48.8281574 2.3022904, 48.8944510 2.3440420, 48.8417263 2.3245973, 48.8419109 2.3245351, 48.8435173 2.3219294, 48.8416495 2.3246134, 48.8417952 2.3245691, 48.8419805 2.3245034, 48.8404349 2.3156482, 48.8429231 2.3260926, 48.8405515 2.3159715, 48.8427732 2.3210206, 48.8405038 2.3158186, 48.8415277 2.3195025, 48.8404090 2.3155450, 48.8408520 2.3154700, 48.8416910 2.3246067, 48.8410405 2.3217676, 48.8754701 2.2836788, 48.8753925 2.2852613, 48.8750872 2.2865005, 48.8756941 2.2862216, 48.8371723 2.3209043, 48.8727890 2.3429679, 48.8727157 2.3429899, 48.8450620 2.2639791, 48.8404449 2.3243133, 48.8393146 2.3237992, 48.8466620 2.2831751, 48.8465418 2.2833721, 48.8420648 2.2629254, 48.8231449 2.3164243, 48.8274421 2.3056058, 48.8272767 2.3063130, 48.8273081 2.3061699, 48.8851757 2.3075791, 48.8820348 2.3139529, 48.8719957 2.3430238, 48.8495349 2.2915103, 48.8494723 2.2914581, 48.8729655 2.3432485, 48.8718024 2.3432812, 48.8193061 2.3373740, 48.8318467 2.3029070, 48.8767250 2.3307380, 48.8841484 2.3227392, 48.8840708 2.3230235, 48.8861392 2.3337047, 48.8275287 2.3149795, 48.8848153 2.3229754, 48.8733188 2.3446580, 48.8752221 2.3038262, 48.8405967 2.2643349, 48.8470601 2.2681655, 48.8467068 2.2996176, 48.8730540 2.3435221, 48.8852970 2.3163291, 48.8402963 2.3339966, 48.8341834 2.3261480, 48.8676507 2.3427272, 48.8211212 2.3425439, 48.8410733 2.2637691, 48.8409491 2.2637071, 48.8264077 2.3428246, 48.8266961 2.3392484, 48.8268524 2.3383549, 48.8279313 2.3307106, 48.8277088 2.3287499, 48.8277300 2.3277843, 48.8248691 2.3468871, 48.8250908 2.3464880, 48.8237982 2.3450583, 48.8230883 2.3447901, 48.8237048 2.3451996, 48.8219312 2.3422877, 48.8821571 2.3281764, 48.8213603 2.3347178, 48.8216005 2.3337522, 48.8233935 2.3258237, 48.8328265 2.3361398, 48.8334329 2.3320275, 48.8367785 2.2975889, 48.8353295 2.3023316, 48.8355400 2.3018828, 48.8536438 2.3402017, 48.8591372 2.3430272, 48.8250589 2.3163847, 48.8256612 2.3136542, 48.8262642 2.3127271, 48.8263278 2.3124589, 48.8269282 2.3097177, 48.8533715 2.3422551, 48.8372157 2.2784595, 48.8373662 2.2784119, 48.8374744 2.2783898, 48.8377489 2.2783295, 48.8378835 2.2783147, 48.8409791 2.2776487, 48.8415966 2.2775907, 48.8417106 2.2775691, 48.8430969 2.2772758, 48.8313589 2.2922508, 48.8312406 2.2923850, 48.8313819 2.2919236, 48.8318056 2.2909044, 48.8321693 2.2900809, 48.8333911 2.2872190, 48.8333311 2.2873692, 48.8334759 2.2870071, 48.8347594 2.2843303, 48.8344487 2.2844456, 48.8343110 2.2848131, 48.8350242 2.2828765, 48.8348954 2.2832036, 48.8309240 2.2930315, 48.8288796 2.2990421, 48.8435115 2.2940634, 48.8316365 2.2921115, 48.8337223 2.2896712, 48.8437437 2.2775524, 48.8426810 2.2779896, 48.8426051 2.2779253, 48.8418037 2.2778904, 48.8416325 2.2779601, 48.8240750 2.3283368, 48.8235152 2.3304799, 48.8245642 2.3282644, 48.8250198 2.3200783, 48.8249015 2.3203760, 48.8372695 2.2771628, 48.8378574 2.2780721, 48.8377480 2.2779702, 48.8431163 2.2826694, 48.8423890 2.2820525, 48.8416776 2.2810225, 48.8490942 2.3396105, 48.8709254 2.3085765, 48.8662240 2.3388110, 48.8322843 2.3152081, 48.8563012 2.2797681, 48.8773588 2.2989656, 48.8774315 2.2986835, 48.8541163 2.3390471, 48.8426080 2.3301580, 48.8515332 2.3460413, 48.8516027 2.3460829, 48.8931060 2.3282113, 48.8487835 2.2875266, 48.8402141 2.2853650, 48.8445983 2.3417212, 48.8610209 2.3105163, 48.8610190 2.3113026, 48.8745880 2.3309443, 48.8746973 2.3308647, 48.8745893 2.3308470, 48.8454138 2.3449157, 48.8789100 2.2874734, 48.8419273 2.3255444, 48.8419458 2.3253394, 48.8420169 2.3254159, 48.8327810 2.3359512, 48.8563545 2.3025991, 48.8562747 2.3028390, 48.8920015 2.3179046, 48.8557667 2.3453212, 48.8456597 2.3425776, 48.8465513 2.2796735, 48.8946856 2.3193650, 48.8286016 2.3219064, 48.8530641 2.3387326, 48.8409358 2.3247136, 48.8642536 2.2721272, 48.8616662 2.3146849, 48.8849737 2.3369336, 48.8860248 2.3369308, 48.8902739 2.3358959, 48.8917305 2.3461501, 48.8906054 2.3436342, 48.8198771 2.3422222, 48.8661825 2.3452310, 48.8591882 2.3451519, 48.8584285 2.3451526, 48.8588750 2.3449998, 48.8515572 2.3384274, 48.8516756 2.3382308, 48.8438542 2.3424632, 48.8523071 2.3446538, 48.8523579 2.3447087, 48.8929579 2.3376602, 48.8788116 2.3448907, 48.8454616 2.2846288, 48.8464151 2.2854902, 48.8566728 2.3031742, 48.8327372 2.3358964, 48.8326973 2.3358705, 48.8471599 2.2855769, 48.8459727 2.2850778, 48.8425193 2.3260648, 48.8710277 2.3356624, 48.8756169 2.3280376, 48.8394722 2.3232687, 48.8395348 2.3235658, 48.8390409 2.3209288, 48.8781923 2.3452434, 48.8767035 2.3442886, 48.8761220 2.3317510, 48.8644516 2.3451744, 48.8665424 2.3444859, 48.8653520 2.3447568, 48.8818977 2.3455167, 48.8809875 2.3406458, 48.8809240 2.3404741, 48.8762503 2.3384716, 48.8444716 2.3118167, 48.8922563 2.3451633, 48.8520540 2.3392420, 48.8509886 2.3003532, 48.8318806 2.3042643, 48.8329686 2.3010817, 48.8319851 2.3034469, 48.8436104 2.2938618, 48.8374438 2.3009990, 48.8428377 2.2917440, 48.8367552 2.2993610, 48.8368605 2.3030920, 48.8386895 2.3004673, 48.8392782 2.3008123, 48.8431037 2.2954369, 48.8436199 2.2939852, 48.8758373 2.3459265, 48.8795087 2.3434753, 48.8369700 2.2985824, 48.8317774 2.3387153, 48.8750371 2.3453587, 48.8437191 2.2967019, 48.8763927 2.3443424, 48.8841247 2.3209960, 48.8832982 2.3234280, 48.8860152 2.3193197, 48.8490910 2.2871941, 48.8615352 2.3424505, 48.8515765 2.3436771, 48.8521735 2.3442731, 48.8520404 2.3443625, 48.8515776 2.3438599, 48.8520835 2.3444093, 48.8518887 2.3442140, 48.8524757 2.3445678, 48.8529435 2.3456985, 48.8528864 2.3462159, 48.8535544 2.2900587, 48.8533015 2.2903128, 48.8529010 2.3458674, 48.8530967 2.3453771, 48.8528548 2.3460331, 48.8530912 2.3454025, 48.8529158 2.3458178, 48.8528801 2.3459362, 48.8530593 2.3452208, 48.8531271 2.3452514, 48.8530349 2.3453279, 48.8528985 2.3461598, 48.8531949 2.3450333, 48.8531460 2.3451752, 48.8528383 2.3461107, 48.8529227 2.3457849, 48.8531071 2.3449244, 48.8530259 2.3454331, 48.8531325 2.3389945, 48.8528398 2.3392414, 48.8534928 2.3391049, 48.8533652 2.2880737, 48.8491265 2.3038627, 48.8506165 2.3004771, 48.8290807 2.3169825, 48.8676694 2.3433379, 48.8519408 2.2889178, 48.8531583 2.2878252, 48.8527669 2.3446610, 48.8521288 2.3444359, 48.8528975 2.3446411, 48.8527110 2.3446730, 48.8528195 2.3446512, 48.8529973 2.3446935, 48.8526334 2.3445601, 48.8501590 2.2937116, 48.8501219 2.2938863, 48.8540526 2.3381367, 48.8527451 2.2909129, 48.8917666 2.3218705, 48.8482224 2.2951925, 48.8501040 2.2917529, 48.8478257 2.2897580, 48.8477463 2.2896869, 48.8459218 2.2883699, 48.8453388 2.2878488, 48.8350277 2.3205989, 48.8528174 2.3454656, 48.8524768 2.3451560, 48.8528047 2.3455506, 48.8524991 2.3448569, 48.8523811 2.3455175, 48.8523985 2.3454156, 48.8526936 2.3454400, 48.8518297 2.3444041, 48.8524942 2.3450079, 48.8525154 2.3452198, 48.8525300 2.3444340, 48.8524984 2.3449165, 48.8523948 2.3451403, 48.8526323 2.3452414, 48.8525589 2.3451535, 48.8523556 2.3455883, 48.8527431 2.3454930, 48.8525232 2.3451020, 48.8526255 2.3453560, 48.8524246 2.3449029, 48.8526532 2.3453925, 48.8527658 2.3454086, 48.8524155 2.3453426, 48.8527323 2.3453722, 48.8564012 2.2779632, 48.8829241 2.3432202, 48.8721796 2.3274785, 48.8715853 2.3272917, 48.8804973 2.2853562, 48.8827366 2.2912231, 48.8961469 2.3382720, 48.8759290 2.3241447, 48.8764290 2.3259972, 48.8761420 2.3253990, 48.8667163 2.3367639, 48.8274032 2.3423677, 48.8254379 2.3417367, 48.8339084 2.3226213, 48.8394410 2.3322130, 48.8910518 2.3314128, 48.8461806 2.3049798, 48.8454569 2.3021602, 48.8479950 2.3233385, 48.8434408 2.2933619, 48.8534312 2.3389430, 48.8581170 2.3176186, 48.8316555 2.2928196, 48.8813835 2.3281151, 48.8826169 2.3296364, 48.8598677 2.3086797, 48.8347265 2.3446963, 48.8484552 2.3315803, 48.8502142 2.3307201, 48.8484725 2.2893525, 48.8606025 2.3457538, 48.8601414 2.3453350, 48.8903544 2.3289917, 48.8853124 2.3253739, 48.8803653 2.2993106, 48.8855401 2.2976447, 48.8702188 2.3108394, 48.8455223 2.3425685, 48.8536307 2.3312600, 48.8674112 2.3229787, 48.8704742 2.3237783, 48.8697219 2.3226142, 48.8433447 2.3026630, 48.8309698 2.3120278, 48.8741108 2.3436798, 48.8709398 2.3029345, 48.8321210 2.3246559, 48.8337101 2.3186360, 48.8319258 2.3247528, 48.8346470 2.3196240, 48.8725291 2.3001145, 48.8724675 2.3003188, 48.8666808 2.3456284, 48.8665292 2.3464186, 48.8665024 2.3465774, 48.8667552 2.3451020, 48.8667159 2.3453933, 48.8726851 2.3024789, 48.8737471 2.3451402, 48.8731623 2.3449978, 48.8719437 2.3446492, 48.8735309 2.3450913, 48.8555154 2.3007432, 48.8705878 2.3425842, 48.8605209 2.3023944, 48.8457271 2.2773879, 48.8680096 2.3435345, 48.8676664 2.3437165, 48.8679005 2.3435952, 48.8877980 2.2997590, 48.8811990 2.2897480, 48.8816790 2.2888680, 48.8817488 2.2888029, 48.8819610 2.2885470, 48.8814404 2.2894685, 48.8851028 2.2981721, 48.8848466 2.2963979, 48.8853809 2.2966584, 48.8845518 2.2979815, 48.8852175 2.2964748, 48.8834502 2.2938754, 48.8832548 2.2934886, 48.8822916 2.2913772, 48.8802886 2.2879403, 48.8358990 2.3466845, 48.8733986 2.3215098, 48.8845738 2.2910473, 48.8847627 2.2913861, 48.8813094 2.2861348, 48.8815854 2.2860365, 48.8822997 2.2865952, 48.8843811 2.2910193, 48.8837693 2.2907507, 48.8849514 2.2959483, 48.8850091 2.2954626, 48.8849348 2.2961330, 48.8845891 2.2945570, 48.8843134 2.2943799, 48.8848608 2.2951371, 48.8850188 2.2939952, 48.8852107 2.2935244, 48.8788664 2.2847106, 48.8740226 2.3337460, 48.8786554 2.2999384, 48.8762947 2.2890603, 48.8775890 2.2881553, 48.8619404 2.3145726, 48.8334394 2.3321755, 48.8484830 2.3465489, 48.8798757 2.2951878, 48.8796416 2.2949514, 48.8797688 2.2942800, 48.8799467 2.2942003, 48.8801083 2.2943052, 48.8805532 2.2934972, 48.8800771 2.2940804, 48.8815910 2.2925353, 48.8816270 2.2921775, 48.8841060 2.2909950, 48.8845760 2.2895318, 48.8826125 2.3011279, 48.8776740 2.2991918, 48.8776990 2.2990901, 48.8780258 2.2850956, 48.8846317 2.2893952, 48.8778621 2.2848987, 48.8802502 2.2957038, 48.8558979 2.3067417, 48.8498557 2.3451858, 48.8675021 2.3098437, 48.8885609 2.3172274, 48.8881694 2.3166376, 48.8883589 2.3169789, 48.8538689 2.3274803, 48.8335872 2.2986473, 48.8875090 2.2976290, 48.8871630 2.2970010, 48.8514668 2.3336573, 48.8876760 2.2983980, 48.8863430 2.2961140, 48.8859640 2.2915440, 48.8871530 2.2947410, 48.8853110 2.2955510, 48.8853440 2.2952310, 48.8850320 2.2952390, 48.8850780 2.2950060, 48.8840610 2.2937810, 48.8851190 2.2924220, 48.8852040 2.2920140, 48.8678227 2.3369768, 48.8809990 2.2857060, 48.8814470 2.2951720, 48.8856370 2.2977760, 48.8849010 2.2988890, 48.8538600 2.3320680, 48.8845430 2.2986640, 48.8846290 2.2984300, 48.8842560 2.2973050, 48.8842580 2.2968350, 48.8749003 2.3428357, 48.8423637 2.3259492, 48.8267542 2.3240551, 48.8771460 2.2924640, 48.8769040 2.2919650, 48.8771270 2.2920750, 48.8772510 2.2920010, 48.8774500 2.2920680, 48.8774750 2.2918560, 48.8776900 2.2917270, 48.8777680 2.2918880, 48.8779330 2.2915640, 48.8786180 2.2913310, 48.8798280 2.2917160, 48.8813710 2.2894860, 48.8347921 2.2897514, 48.8351951 2.2896751, 48.8747214 2.3415841, 48.8705943 2.3429365, 48.8746840 2.3416410, 48.8699102 2.3115070, 48.8683555 2.3254379, 48.8684709 2.3254367, 48.8690272 2.3251599, 48.8700437 2.3257977, 48.8702250 2.3258823, 48.8408366 2.3037928, 48.8840040 2.2933540, 48.8796560 2.2864960, 48.8323064 2.3247729, 48.8804350 2.2856120, 48.8804320 2.2856580, 48.8804050 2.2857730, 48.8806940 2.2861620, 48.8805790 2.2866490, 48.8799990 2.2875200, 48.8797930 2.2884240, 48.8797640 2.2885180, 48.8769049 2.3270113, 48.8454864 2.3196693, 48.8768180 2.3270140, 48.8770340 2.3271360, 48.8767510 2.3273100, 48.8766230 2.3273770, 48.8522732 2.3263458, 48.8520072 2.3255283, 48.8726661 2.3021404, 48.8727090 2.3021938, 48.8724271 2.3017769, 48.8695340 2.3049808, 48.8687825 2.3043355, 48.8473882 2.3059953, 48.8338061 2.3177640, 48.8412345 2.3039106, 48.8879180 2.3067900, 48.8880960 2.3065700, 48.8882020 2.3064360, 48.8882250 2.3064120, 48.8887260 2.3057200, 48.8883220 2.3062270, 48.8889330 2.3054700, 48.8889870 2.3053980, 48.8884000 2.2999400, 48.8799736 2.2892538, 48.8751250 2.2934560, 48.8752420 2.2940700, 48.8753410 2.2939710, 48.8550250 2.3290640, 48.8501139 2.3385275, 48.8335611 2.3308711, 48.8770440 2.2917940, 48.8769630 2.2916430, 48.8767720 2.2915790, 48.8777980 2.2906200, 48.8792110 2.2907480, 48.8618088 2.2825036, 48.8613662 2.2830289, 48.8613148 2.2830943, 48.8652864 2.2854968, 48.8653444 2.2836290, 48.8478589 2.3407967, 48.8336470 2.3315763, 48.8335273 2.3314999, 48.8758620 2.2937570, 48.8362062 2.3237133, 48.8349296 2.3296602, 48.8484295 2.3424166, 48.8446809 2.3466783, 48.8645257 2.2825794, 48.8336698 2.3296041, 48.8337502 2.3300015, 48.8659302 2.2858805, 48.8657556 2.2858886, 48.8813580 2.2854140, 48.8603776 2.3434701, 48.8765910 2.3232000, 48.8747470 2.3159270, 48.8359839 2.2844143, 48.8810780 2.3126420, 48.8300301 2.3296176, 48.8337668 2.3278330, 48.8354148 2.3235123, 48.8775700 2.2877800, 48.8529290 2.3314950, 48.8498887 2.3433647, 48.8519361 2.2987977, 48.8777223 2.3322319, 48.8407193 2.3049672, 48.8418070 2.3034131, 48.8546868 2.2950925, 48.8545526 2.2952974, 48.8409660 2.3058020, 48.8445280 2.3226454, 48.8445064 2.3227126, 48.8445876 2.3224605, 48.8443285 2.3232584, 48.8446976 2.3221192, 48.8446671 2.3222139, 48.8589178 2.3234187, 48.8589724 2.3234632, 48.8588292 2.3233490, 48.8864670 2.3115680, 48.8466756 2.3050730, 48.8466342 2.3052128, 48.8799610 2.3291770, 48.8848937 2.3405138, 48.8842803 2.3395848, 48.8846433 2.3402443, 48.8675053 2.3352170, 48.8506291 2.3395396, 48.8537312 2.3325450, 48.8842800 2.3047290, 48.8834170 2.3045710, 48.8820840 2.3044120, 48.8470633 2.3037370, 48.8450557 2.3057641, 48.8473348 2.3028088, 48.8826325 2.3446975, 48.8671652 2.3360497, 48.8672298 2.3360756, 48.8804060 2.3026459, 48.8803576 2.3030073, 48.8808754 2.3021137, 48.8808069 2.3021832, 48.8592799 2.2849225, 48.8623163 2.3093585, 48.8400915 2.3026528, 48.8473631 2.2860341, 48.8734806 2.3430215, 48.8708629 2.3427230, 48.8707564 2.3426660, 48.8836015 2.3202065, 48.8795130 2.3360991, 48.8322089 2.3384309, 48.8409004 2.3218248, 48.8325523 2.3205074, 48.8327672 2.3201392, 48.8311012 2.3195882, 48.8320470 2.3201850, 48.8826800 2.2865110, 48.8361138 2.2912062, 48.8372803 2.2893133, 48.8502351 2.3456241, 48.8864590 2.3404788, 48.8527246 2.3060632, 48.8846800 2.3291860, 48.8819840 2.3187180, 48.8819360 2.3185630, 48.8816120 2.3160090, 48.8822902 2.3395019, 48.8310513 2.3195553, 48.8325941 2.3183175, 48.8543921 2.3426853, 48.8628419 2.3413590, 48.8627761 2.3414067, 48.8753498 2.3460798, 48.8752300 2.3455656, 48.8588998 2.2853182, 48.8659100 2.3367259, 48.8324657 2.3375075, 48.8439086 2.2933248, 48.8522615 2.3461534, 48.8522996 2.3459479, 48.8920550 2.3461008, 48.8786060 2.2895840, 48.8785190 2.2893290, 48.8649741 2.3359158, 48.8752070 2.3041468, 48.8328552 2.3251354, 48.8581328 2.2944968, 48.8556111 2.3402066, 48.8477523 2.3131717, 48.8476019 2.3124307, 48.8768192 2.2635389, 48.8442862 2.3237918, 48.8443083 2.3239728, 48.8728789 2.3289009, 48.8721402 2.3254288, 48.8721670 2.3253311, 48.8721199 2.3255281, 48.8467371 2.3102329, 48.8744634 2.3207611, 48.8758392 2.3442908, 48.8435005 2.2942188, 48.8436406 2.2945169, 48.8436647 2.2952514, 48.8436712 2.2953928, 48.8517000 2.3431200, 48.8425000 2.3216700, 48.8722000 2.3397200, 48.8369503 2.2962225, 48.8414376 2.3081178, 48.8422788 2.3101359, 48.8425076 2.3118940, 48.8365104 2.3100891, 48.8341782 2.3066372, 48.8354947 2.3020460, 48.8599164 2.3463862, 48.8490626 2.3191414, 48.8501266 2.3186024, 48.8501791 2.3187017, 48.8534957 2.3378664, 48.8465511 2.3138238, 48.8689558 2.3348921, 48.8759088 2.3029263, 48.8321324 2.3033719, 48.8615808 2.3421921, 48.8741075 2.3445446, 48.8831840 2.2988520, 48.8822700 2.2945370, 48.8822490 2.2942850, 48.8821450 2.2944460, 48.8628461 2.3362666, 48.8378987 2.3453148, 48.8440980 2.3080783, 48.8780160 2.2938546, 48.8809048 2.3467209, 48.8708703 2.3415985, 48.8705728 2.3415832, 48.8711859 2.3417171, 48.8709869 2.3416777, 48.8654352 2.3322141, 48.8819434 2.2862186, 48.8483086 2.2872193, 48.8487087 2.3407361, 48.8527859 2.3429879, 48.8527860 2.3433192, 48.8416188 2.2808890, 48.8529099 2.2868719, 48.8621731 2.3396914, 48.8675585 2.3352443, 48.8679678 2.3355626, 48.8678404 2.3435108, 48.8666855 2.3458176, 48.8667840 2.3448980, 48.8540956 2.3386733, 48.8692220 2.3131336, 48.8679417 2.3153003, 48.8718575 2.3096862, 48.8745552 2.3434968, 48.8775832 2.3381108, 48.8791560 2.3349351, 48.8786912 2.3329642, 48.8464207 2.3056421, 48.8916829 2.3361699, 48.8916676 2.3364729, 48.8294977 2.3226115, 48.8315293 2.3138951, 48.8222354 2.3405407, 48.8430967 2.3047973, 48.8417016 2.3220312, 48.8750787 2.2865522, 48.8761844 2.2731721, 48.8769614 2.2666348, 48.8787683 2.2627725, 48.8639756 2.2506990, 48.8775380 2.2845027, 48.8783349 2.2845148, 48.8660959 2.3165080, 48.8451240 2.3151945, 48.8853349 2.3222678, 48.8632940 2.3461861, 48.8279032 2.3155377, 48.8787317 2.3451434, 48.8648781 2.3453619, 48.8527947 2.3434202, 48.8311227 2.3287719, 48.8772523 2.3138827, 48.8813196 2.2935688, 48.8421950 2.3453702, 48.8782894 2.3331903, 48.8584113 2.2942650, 48.8664194 2.3321315 +yes +49.4194835 8.7033812, 49.4258222 8.7062319, 49.3551484 8.6336513, 49.4270542 8.7105990, 49.4184666 8.7052069, 49.4245168 8.7056416, 49.4235710 8.7025718, 49.4242799 8.7072520, 49.4224817 8.7024542, 49.4229479 8.7068545, 49.4193290 8.7035781, 49.4221380 8.7051571, 49.4263381 8.7055314, 49.4188706 8.7007961, 49.4276600 8.7101416, 49.4243184 8.7025688, 49.4189138 8.7068425, 49.4254814 8.7024102, 49.4213140 8.7019771, 49.4268509 8.7026924, 49.4254256 8.7051858, 49.4195009 8.7025277, 49.4201952 8.7010712, 49.4208217 8.7059731, 49.4233178 8.7053934, 49.4276906 8.7058352, 49.4238991 8.7095045, 49.4206459 8.7039110, 49.4265814 8.7086544, 49.4256259 8.7093622, 49.4257275 8.7070484, 49.4179403 8.7025717, 49.4207145 8.7089359, 49.4222472 8.7095805, 49.4248984 8.7025175 +Greyfriars Bobby's Grave, Memorial to Archibald Constable, Tombstone of David Allan, Vault of Dr Robert Candlish & James Candlish, Vault of Robert Burn, Vault of William Blackwood, Mausoleum of David Hume +1 +11 +55.9370725 -3.1787027, 55.9414545 -3.1720821, 55.9432488 -3.1817167, 55.9433939 -3.2029381, 55.9257567 -3.1931161, 55.9427756 -3.2095329, 55.9399781 -3.1828303, 55.9449491 -3.2071792, 55.9348092 -3.1789961, 55.9349346 -3.1790559, 55.9622932 -3.1707938, 55.9630455 -3.1835492, 55.9567935 -3.2430161, 55.9021076 -3.2215942, 55.9022196 -3.2209447, 55.9077375 -3.2604776, 55.9180753 -3.2699896, 55.9181751 -3.2737253, 55.9227143 -3.2873995, 55.9232575 -3.2877434, 55.9220870 -3.2792486, 55.9406104 -3.2945168, 55.9407533 -3.2932091, 55.9248270 -3.2482652, 55.9419600 -3.1485908, 55.9697725 -3.2317281, 55.9561550 -3.2435210, 55.9506326 -3.2083291, 55.9268506 -3.2089249, 55.9399419 -3.2040169, 55.9286779 -3.2096502, 55.9384391 -3.1976620, 55.9428730 -3.2038870, 55.9436791 -3.2039270, 55.9456114 -3.2058148, 55.9475295 -3.2065018, 55.9465039 -3.2061410, 55.9180713 -3.2162143, 55.9469750 -3.2823851, 55.9752131 -3.2377092, 55.9412502 -3.2182349, 55.9536786 -3.1901284, 55.9721209 -3.2298890, 55.9725068 -3.2186854, 55.9714321 -3.2145097, 55.9750719 -3.2156771, 55.9423554 -3.2011712, 55.9579671 -3.2416031, 55.9605521 -3.2145819, 55.9788578 -3.2164996, 55.9805715 -3.2239822, 55.9748673 -3.2157799, 55.9709217 -3.2085540, 55.9708138 -3.2084404, 55.9710794 -3.2083765, 55.9713224 -3.2074276, 55.9720450 -3.2023900, 55.9584008 -3.2092092, 55.9583145 -3.2090917, 55.9583533 -3.2082826, 55.9599202 -3.2058111, 55.9625886 -3.2112449, 55.9611686 -3.2084707, 55.9692647 -3.2701308, 55.9723825 -3.2717913, 55.9781491 -3.1930844, 55.9776175 -3.1973875, 55.9745345 -3.2095961, 55.9743932 -3.2096208, 55.9373031 -3.2494985, 55.9339171 -3.2137397, 55.9332526 -3.2167437, 55.9315955 -3.2232342, 55.9593096 -3.2186115, 55.9599432 -3.2183810, 55.9602435 -3.2197972, 55.9347916 -3.2219988, 55.9354958 -3.2269302, 55.9353315 -3.2267979, 55.9603138 -3.2576811, 55.9601757 -3.2559248, 55.9602463 -3.2561123, 55.9618697 -3.2638458, 55.9650659 -3.2695228, 55.9335740 -3.2140903, 55.9312309 -3.2523089, 55.9313511 -3.2524977, 55.9215923 -3.2427384, 55.9658660 -3.2741484, 55.9655574 -3.2737818, 55.9112968 -3.2371472, 55.9094685 -3.2331911, 55.9419788 -3.2729754, 55.9162817 -3.2253414, 55.9166163 -3.2225162, 55.9666338 -3.2511512, 55.9670315 -3.2477797, 55.9685007 -3.2487746, 55.9673162 -3.2494453, 55.9735787 -3.2512113, 55.9702624 -3.2503620, 55.9705786 -3.2518119, 55.9512778 -3.2161791, 55.9485764 -3.2236821, 55.9494426 -3.2166063, 55.9482651 -3.2171420, 55.9631351 -3.1914610, 55.9591074 -3.1908331, 55.9452751 -3.1844506, 55.9602556 -3.2380057, 55.9579565 -3.2439627, 55.9569762 -3.2432682, 55.9701877 -3.2307841, 55.9461347 -3.1884249, 55.9452785 -3.1910772, 55.9432977 -3.1864231, 55.9359281 -3.1875240, 55.9364668 -3.1651525, 55.9364818 -3.1700073, 55.9324348 -3.1563455, 55.9399085 -3.1711268, 55.9335343 -3.1615090, 55.9349176 -3.1600569, 55.9513129 -3.2052029, 55.9514512 -3.2053004, 55.9515016 -3.2049952, 55.9515296 -3.2039328, 55.9516706 -3.2039712, 55.9515783 -3.2036294, 55.9517885 -3.2022759, 55.9520416 -3.2017312, 55.9522669 -3.1993674, 55.9525442 -3.1989321, 55.9526722 -3.1981185, 55.9529694 -3.1964423, 55.9474486 -3.1859655, 55.9516586 -3.1968492, 55.9547783 -3.1976132, 55.9512066 -3.1850870, 55.9407230 -3.2810409, 55.9247069 -3.2095298, 55.9203574 -3.2123548, 55.9264736 -3.2039958, 55.9312196 -3.2000742, 55.9458585 -3.2094714, 55.9301196 -3.2055744, 55.9377907 -3.2060971, 55.9406318 -3.2038250, 55.9318987 -3.2098845, 55.9191421 -3.2209703, 55.9460031 -3.2110371, 55.9337210 -3.2007781, 55.9356258 -3.2013792, 55.9384127 -3.1976645, 55.9538198 -3.1905058, 55.9589777 -3.1971201, 55.9509639 -3.1815835, 55.9497063 -3.1833447, 55.9497528 -3.1798460, 55.9516637 -3.1783365, 55.9511924 -3.1760524, 55.9388593 -3.2287258, 55.9435848 -3.2191643, 55.9374270 -3.2345667, 55.9436381 -3.2320485, 55.9297115 -3.2566004, 55.9402802 -3.1759925, 55.9433280 -3.2852559, 55.9429898 -3.2899406, 55.9423831 -3.1450493, 55.9243150 -3.1675957, 55.9418747 -3.2730577, 55.9459241 -3.1820458, 55.9469320 -3.1819210, 55.9424010 -3.2799000, 55.9428090 -3.2846964, 55.9426238 -3.2800495, 55.9426432 -3.2801965, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9570161 -3.1870662, 55.9562790 -3.1859531, 55.9073786 -3.2585910, 55.9537826 -3.1827355, 55.9380641 -3.1929287, 55.9264851 -3.2095157, 55.9278181 -3.2094892, 55.9479184 -3.1866886, 55.9195362 -3.2408105, 55.9567725 -3.2185204, 55.9334208 -3.2296729, 55.9511981 -3.2192192, 55.9111428 -3.2387431, 55.9427311 -3.1824789, 55.9572495 -3.2067946, 55.9563941 -3.2111307, 55.9555277 -3.2092895, 55.9552324 -3.2130998, 55.9552081 -3.2164889, 55.9553747 -3.2203225, 55.9539242 -3.1943502, 55.9573849 -3.2140508, 55.9531165 -3.2090593, 55.9073652 -3.2588812, 55.9659202 -3.1554650, 55.9654174 -3.1551373, 55.9643410 -3.1548837, 55.9268205 -3.2444313, 55.9397496 -3.2204248, 55.9429175 -3.2108607, 55.9430078 -3.2108682, 55.9455180 -3.2068971, 55.9458432 -3.1911825, 55.9498009 -3.1875437, 55.9498298 -3.1876708, 55.9497004 -3.1878147, 55.9500525 -3.1873006, 55.9546221 -3.1877189, 55.9558479 -3.1868996, 55.9589756 -3.1545086, 55.9574015 -3.1611745, 55.9682325 -3.1530713, 55.9758399 -3.1698851, 55.9591640 -3.1832180, 55.9385133 -3.1977770, 55.9531081 -3.2008271, 55.9335642 -3.2450433, 55.9480679 -3.1861969, 55.9427330 -3.1878978, 55.9528642 -3.2264190, 55.9619035 -3.1442333, 55.9643648 -3.2331575, 55.9299818 -3.2625728, 55.9411797 -3.2700165, 55.9411930 -3.2700299, 55.9595427 -3.1717138, 55.9308388 -3.1901371, 55.9385382 -3.2105120, 55.9372948 -3.2172890, 55.9397279 -3.2201814, 55.9434746 -3.1803127, 55.9259159 -3.2475077, 55.9380028 -3.2917178, 55.9395343 -3.2706851, 55.9551815 -3.1828752, 55.9532891 -3.1942347, 55.9528215 -3.1966476, 55.9577481 -3.1745891, 55.9523152 -3.1996825, 55.9512080 -3.2029850, 55.9505306 -3.2060289, 55.9360698 -3.1801396, 55.9431462 -3.2098500, 55.9424957 -3.2178326, 55.9430404 -3.2209823, 55.9431450 -3.1777930, 55.9473014 -3.2066559, 55.9382479 -3.2288358, 55.9493199 -3.2107221, 55.9371375 -3.2021480, 55.9416831 -3.1813332, 55.9399477 -3.1799875, 55.9400554 -3.1800410, 55.9383873 -3.1947438, 55.9381286 -3.1934756, 55.9532580 -3.2007176, 55.9574289 -3.1707713, 55.9498239 -3.1879473, 55.9457420 -3.2062080, 55.9361540 -3.2091272, 55.9367921 -3.2080082, 55.9519655 -3.2019557, 55.9456455 -3.2052495, 55.9420725 -3.2685561, 55.9526727 -3.1905474, 55.9499553 -3.1886925, 55.9483500 -3.1918487, 55.9534890 -3.1892336, 55.9564328 -3.1863322, 55.9462158 -3.1854968, 55.9448431 -3.2048049, 55.9426898 -3.2037234, 55.9472487 -3.1909778, 55.9475118 -3.1893161, 55.9479802 -3.1868691, 55.9462178 -3.1884860, 55.9445944 -3.1837358, 55.9447090 -3.1838238, 55.9483392 -3.1987455, 55.9390205 -3.1796146, 55.9391727 -3.1798248, 55.9426063 -3.2085087, 55.9544772 -3.1926810, 55.9537095 -3.2040057, 55.9533620 -3.1976100, 55.9663235 -3.2142041, 55.9684282 -3.2075755, 55.9700556 -3.2078189, 55.9666343 -3.2256933, 55.9645546 -3.2384622, 55.9566631 -3.1959622, 55.9597916 -3.2004518, 55.9383859 -3.2394291, 55.9431070 -3.2222310, 55.9752750 -3.2542425, 55.9791698 -3.2312965, 55.9363180 -3.1961219, 55.9532515 -3.2795094, 55.9393878 -3.1872654, 55.9398905 -3.1798723, 55.9450251 -3.2048945, 55.9112029 -3.2297595, 55.9382045 -3.1790187, 55.9393085 -3.1795319, 55.9299097 -3.2092576, 55.9362743 -3.1942603, 55.9364425 -3.1941118, 55.9364298 -3.1945475, 55.9363223 -3.1940133, 55.9381921 -3.1929355, 55.9380470 -3.1915010, 55.9539102 -3.1944653, 55.9549825 -3.1926968, 55.9554031 -3.1946708, 55.9531123 -3.1913868, 55.9447005 -3.1877270, 55.9428356 -3.1884222, 55.9454993 -3.1874399, 55.9457618 -3.1854245, 55.9459188 -3.1884045, 55.9380581 -3.1934656, 55.9350171 -3.1942941, 55.9486960 -3.2853143, 55.9721574 -3.2632148, 55.9713670 -3.2529113, 55.9292251 -3.2099432, 55.9780196 -3.1734148, 55.9388513 -3.1691562, 55.9341605 -3.2104863, 55.9345768 -3.2003903, 55.9343790 -3.2006003, 55.9533080 -3.2819089, 55.9454998 -3.1881337, 55.9450783 -3.1887212, 55.9501390 -3.1751181, 55.9297109 -3.2086926, 55.9489520 -3.1813494, 55.9210967 -3.2266715, 55.9410406 -3.2238628, 55.9536712 -3.2193907, 55.9487114 -3.2851366, 55.9487753 -3.2841900, 55.9480103 -3.1837600, 55.9486091 -3.1831054, 55.9381703 -3.1892079, 55.9487321 -3.2833922, 55.9382556 -3.1704864, 55.9404236 -3.1696109, 55.9532940 -3.2961037, 55.9534451 -3.2962393, 55.9533899 -3.2966759, 55.9482056 -3.2747143, 55.9517036 -3.1735044, 55.9455830 -3.1876260, 55.9444953 -3.1872925, 55.9576902 -3.1997993, 55.9604265 -3.2008450, 55.9591476 -3.1949181, 55.9605294 -3.1929284, 55.9605737 -3.1931385, 55.9618144 -3.1951211, 55.9620863 -3.1958474, 55.9655017 -3.1900188, 55.9614827 -3.1898206, 55.9606405 -3.1834192, 55.9616053 -3.1809060, 55.9595023 -3.1900105, 55.9586110 -3.1856655, 55.9574763 -3.2071208, 55.9574011 -3.1728671, 55.9331306 -3.2291951, 55.9357602 -3.2102116, 55.9274398 -3.1872913, 55.9259230 -3.1834543, 55.9269210 -3.1867212, 55.9053438 -3.2494235, 55.9085287 -3.2095473, 55.9085331 -3.2094328, 55.9086734 -3.2091995, 55.9673609 -3.1800262, 55.9434453 -3.2029283, 55.9457242 -3.1982021, 55.9261467 -3.1629216, 55.9297559 -3.1757555, 55.9305265 -3.1760973, 55.9346360 -3.1418499, 55.9311887 -3.1461734, 55.9226046 -3.1871043, 55.9331970 -3.1413489, 55.9339659 -3.1780885, 55.9275329 -3.1935001, 55.9296041 -3.1758152, 55.9368184 -3.1806262, 55.9344345 -3.1791228, 55.9500367 -3.1401579, 55.9239989 -3.2365090, 55.9527511 -3.2060102, 55.9529618 -3.2047389, 55.9244068 -3.1757094, 55.9339861 -3.1786923, 55.9333887 -3.1798510, 55.9332026 -3.1779389, 55.9340894 -3.1466704, 55.9366417 -3.1570870, 55.9590460 -3.1902971, 55.9563500 -3.1719910, 55.9418780 -3.1484383, 55.9195933 -3.2025852, 55.9421150 -3.1792210, 55.9136110 -3.2108341, 55.9710589 -3.2774742, 55.9691806 -3.2021849, 55.9648549 -3.2026261, 55.9666311 -3.1963169, 55.9683710 -3.1956001, 55.9656770 -3.2034341, 55.9635684 -3.1844376, 55.9611876 -3.1811782, 55.9609569 -3.1808567, 55.9611193 -3.1807997, 55.9630757 -3.1816529, 55.9638228 -3.1780594, 55.9708598 -3.1795095, 55.9706228 -3.1795532, 55.9695540 -3.1814748, 55.9012867 -3.2047186, 55.9384134 -3.2182308, 55.9440892 -3.1808402, 55.9496694 -3.1834699, 55.9553422 -3.1896083, 55.9692963 -3.1850261, 55.9729056 -3.1882143, 55.9733698 -3.1917230, 55.9714470 -3.1982719, 55.9725476 -3.1752271, 55.9699868 -3.1737761, 55.9701973 -3.1739279, 55.9702141 -3.1720887, 55.9436788 -3.1917939, 55.9446070 -3.1860121, 55.9445684 -3.1859605, 55.9444906 -3.1858127, 55.9444257 -3.1854362, 55.9445478 -3.1851541, 55.9440818 -3.1852249, 55.9429435 -3.1846838, 55.9457451 -3.1898138, 55.9471305 -3.1857683, 55.9421441 -3.1839083, 55.9427088 -3.1845678, 55.9381612 -3.2182135, 55.9390679 -3.2188177, 55.9389940 -3.2237242, 55.9403080 -3.2179616, 55.9407101 -3.2180407, 55.9407057 -3.2099923, 55.9357656 -3.2102949, 55.9358639 -3.2091972, 55.9375205 -3.2172003, 55.9357905 -3.2212622, 55.9634754 -3.1970678, 55.9349872 -3.1934110, 55.9351614 -3.1931190, 55.9364906 -3.1946961, 55.9382472 -3.1928568, 55.9385499 -3.1951862, 55.9350686 -3.1943883, 55.9368505 -3.2110421, 55.9737204 -3.1771872, 55.9751035 -3.1815988, 55.9746746 -3.1826198, 55.9742114 -3.1859467, 55.9744484 -3.1849018, 55.9532918 -3.2008836, 55.9540937 -3.1989693, 55.9450275 -3.1853002, 55.9434584 -3.2046928, 55.9458479 -3.1861307, 55.9458249 -3.1868180, 55.9112630 -3.2382716, 55.9515330 -3.2004872, 55.9209990 -3.2014676, 55.9205456 -3.2064439, 55.9417690 -3.1765600, 55.9361114 -3.1942444, 55.9343386 -3.2056340, 55.9388322 -3.2261760, 55.9136261 -3.2390645, 55.9633657 -3.2006587, 55.9478972 -3.1859639, 55.9359156 -3.2099930, 55.9359074 -3.2099082, 55.9360866 -3.2087667, 55.9395675 -3.2038566, 55.9355709 -3.2102528, 55.9608923 -3.1970860, 55.9523210 -3.1965000, 55.9533496 -3.2007320, 55.9533815 -3.2007538, 55.9534180 -3.2007700, 55.9534497 -3.2007968, 55.9571867 -3.1639997, 55.9594665 -3.1504625, 55.9626310 -3.1593558, 55.9754036 -3.1792572, 55.9780588 -3.1803331, 55.9781026 -3.1779536, 55.9779864 -3.1732444, 55.9779219 -3.1732147, 55.9779507 -3.1735468, 55.9780888 -3.1742385, 55.9781653 -3.1742810, 55.9781945 -3.1744492, 55.9781519 -3.1745615, 55.9775259 -3.1713912, 55.9767032 -3.1714682, 55.9765056 -3.1715396, 55.9761405 -3.1695398, 55.9657634 -3.1762911, 55.9648030 -3.1769642, 55.9618573 -3.1797874, 55.9614066 -3.1810341, 55.9740136 -3.1728670, 55.9746059 -3.1755220, 55.9765876 -3.1717666, 55.9770245 -3.1795732, 55.9711396 -3.1709394, 55.9736951 -3.1710231, 55.9754491 -3.1672838, 55.9754859 -3.1673643, 55.9754690 -3.1675529, 55.9405419 -3.1809535, 55.9814339 -3.1885738, 55.9753390 -3.1704024, 55.9477999 -3.1815633, 55.9449036 -3.1886208, 55.9442459 -3.2019494, 55.9225931 -3.2163218, 55.9248774 -3.2169826, 55.9250231 -3.2098652, 55.9250486 -3.2099576, 55.9251419 -3.2106483, 55.9695187 -3.2703166, 55.9657818 -3.2742187, 55.9653783 -3.2708713, 55.9654792 -3.2690775, 55.9340842 -3.2110851, 55.9641877 -3.1933778, 55.9382377 -3.2261976, 55.9389908 -3.2261674, 55.9345763 -3.2251873, 55.9344088 -3.2279579, 55.9347308 -3.2212368, 55.9348452 -3.2317221, 55.9330967 -3.2291489, 55.9394219 -3.2263258, 55.9387429 -3.2218412, 55.9373499 -3.2350180, 55.9382017 -3.2313956, 55.9367034 -3.2391033, 55.9389001 -3.2286457, 55.9386142 -3.2289755, 55.9386065 -3.2302193, 55.9391016 -3.2261638, 55.9417361 -3.2032072, 55.9375461 -3.2171038, 55.9399098 -3.2190933, 55.9395567 -3.2208158, 55.9395988 -3.2206602, 55.9396213 -3.2205677, 55.9339775 -3.2336775, 55.9318108 -3.2374274, 55.9333493 -3.2349297, 55.9332532 -3.2351100, 55.9330858 -3.2353616, 55.9324660 -3.2361808, 55.9459457 -3.2032414, 55.9466240 -3.1985887, 55.9465706 -3.1982507, 55.9459092 -3.2020239, 55.9481856 -3.1916083, 55.9481951 -3.1915223, 55.9482640 -3.1901285, 55.9262985 -3.2466715, 55.9286545 -3.1995671, 55.9282620 -3.2003920, 55.9288803 -3.1997107, 55.9282699 -3.1971794, 55.9300538 -3.2006041, 55.9291787 -3.1994540, 55.9270985 -3.2345448, 55.9262193 -3.2367397, 55.9257251 -3.2379807, 55.9445243 -3.1835902, 55.9425318 -3.1745423, 55.9446453 -3.1860635, 55.9445252 -3.1859176, 55.9600988 -3.2301499, 55.9480518 -3.1863033, 55.9480977 -3.1860003, 55.9471995 -3.1855061, 55.9470671 -3.1857568, 55.9468154 -3.1855780, 55.9461648 -3.1859720, 55.9459925 -3.1848262, 55.9462878 -3.1850892, 55.9459437 -3.1863927, 55.9456190 -3.1849011, 55.9440261 -3.1820823, 55.9440689 -3.1919649, 55.9444789 -3.1879512, 55.9406312 -3.2039275, 55.9409069 -3.2033041, 55.9402760 -3.2038110, 55.9372309 -3.2071189, 55.9375368 -3.2027382, 55.9361178 -3.2094100, 55.9334822 -3.1884629, 55.9575618 -3.1847902, 55.9491314 -3.1876537, 55.9757878 -3.2301721, 55.9621811 -3.2003284, 55.9526181 -3.1750774, 55.9471770 -3.1904575, 55.9254145 -3.2090883, 55.9764403 -3.1701500, 55.9504129 -3.2949801, 55.9601603 -3.2006854, 55.9299490 -3.2096090, 55.9592433 -3.2230171, 55.9481079 -3.1917724, 55.9808227 -3.2245927, 55.9479318 -3.1942157, 55.9166326 -3.2276420, 55.9467615 -3.2168254, 55.9524553 -3.1968363, 55.9501797 -3.1870275, 55.9428645 -3.2037697, 55.9484729 -3.1956543, 55.9478512 -3.2019348, 55.9452311 -3.1921670, 55.9449743 -3.1941250, 55.9701331 -3.1723584, 55.9411858 -3.2034013, 55.9558388 -3.1571446, 55.9250843 -3.2616025, 55.9473220 -3.2061120, 55.9382464 -3.1945920, 55.9356972 -3.2104575, 55.9457633 -3.2087758, 55.9458777 -3.2095906, 55.9466672 -3.2371272, 55.9308474 -3.2091419, 55.9461542 -3.1854391, 55.9057145 -3.2240658, 55.9618487 -3.1523081, 55.9499509 -3.2074622, 55.9379652 -3.1900697, 55.9487732 -3.1929905, 55.9724535 -3.2516505, 55.9311441 -3.2270782, 55.9319054 -3.2265205, 55.9323774 -3.2261777, 55.9327304 -3.2258543, 55.9330657 -3.2255356, 55.9251049 -3.2386756, 55.9434664 -3.1831055, 55.9434196 -3.1842460, 55.9390954 -3.1817053, 55.9425019 -3.1793852, 55.9406973 -3.1812038, 55.9434738 -3.2972773, 55.9434281 -3.1802599, 55.9447981 -3.1837792, 55.9336355 -3.2249068, 55.9341147 -3.2243301, 55.9241751 -3.2482578, 55.9426048 -3.1828681, 55.9536926 -3.2888163, 55.9338854 -3.2269959, 55.9288531 -3.2399727, 55.9444072 -3.1838777, 55.9388114 -3.2234850, 55.9434539 -3.1782183, 55.9438954 -3.1837198, 55.9432514 -3.2138686, 55.9434340 -3.2137230, 55.9448603 -3.1813584, 55.9774101 -3.1718543, 55.9628304 -3.1997070, 55.9628429 -3.2002421, 55.9630892 -3.2001803, 55.9659295 -3.2301633, 55.9664006 -3.2307336, 55.9679166 -3.2363594, 55.9434363 -3.1521617, 55.9457918 -3.1542034, 55.9475269 -3.1955313, 55.9478247 -3.1945545, 55.9479312 -3.1940298, 55.9488004 -3.1932865, 55.9488010 -3.1925834, 55.9494649 -3.1929782, 55.9494705 -3.1929503, 55.9506580 -3.1906398, 55.9499136 -3.1881658, 55.9532557 -3.1913082, 55.9626190 -3.2334642, 55.9619050 -3.2336519, 55.9615242 -3.2324707, 55.9625619 -3.2342817, 55.9625158 -3.2364890, 55.9619662 -3.2352523, 55.9488780 -3.1775878, 55.9475233 -3.1771707, 55.9705235 -3.2271545, 55.9580210 -3.2034978, 55.9405358 -3.2135323, 55.9415231 -3.2036653, 55.9424521 -3.1962323, 55.9424840 -3.1951526, 55.9426105 -3.1916905, 55.9423275 -3.1905258, 55.9422606 -3.1903187, 55.9418231 -3.1888920, 55.9413668 -3.1874191, 55.9411227 -3.1866614, 55.9410184 -3.1862592, 55.9409790 -3.1861376, 55.9465927 -3.1540114, 55.9470254 -3.1527259, 55.9478310 -3.1503864, 55.9488598 -3.1502689, 55.9496873 -3.1503116, 55.9500881 -3.1504469, 55.9505028 -3.1505858, 55.9538371 -3.1558978, 55.9416410 -3.1851981, 55.9420495 -3.1869416, 55.9421295 -3.1882490, 55.9382190 -3.1871150, 55.9501234 -3.2328720, 55.9500080 -3.2339019, 55.9553798 -3.1839728, 55.9551974 -3.1827848, 55.9541875 -3.1811831, 55.9542356 -3.1810732, 55.9542606 -3.1809036, 55.9540838 -3.1802470, 55.9515361 -3.1795713, 55.9515664 -3.1795081, 55.9515868 -3.1794043, 55.9515835 -3.1793356, 55.9503936 -3.1748495, 55.9624109 -3.2365738, 55.9629813 -3.2350949, 55.9619272 -3.2334212, 55.9465695 -3.1854535, 55.9460079 -3.1882051, 55.9274462 -3.2455645, 55.9566494 -3.1736928, 55.9562339 -3.1688603, 55.9339947 -3.2249266, 55.9344540 -3.2253532, 55.9346173 -3.2256117, 55.9342050 -3.2249326, 55.9343823 -3.2251693, 55.9196760 -3.2531202, 55.9196920 -3.2531744, 55.9226241 -3.2478361, 55.9236556 -3.2387809, 55.9267409 -3.2326273, 55.9279667 -3.2297308, 55.9408870 -3.2213705, 55.9408825 -3.2212995, 55.9408772 -3.2212176, 55.9408720 -3.2211546, 55.9188986 -3.2541216, 55.9265907 -3.2093624, 55.9295664 -3.1853673, 55.9329497 -3.1704352, 55.9371619 -3.1744741, 55.9353301 -3.1943090, 55.9386958 -3.1915143, 55.9390294 -3.1890609, 55.9379382 -3.1857984, 55.9340733 -3.1747120, 55.9613541 -3.2933788, 55.9481529 -3.1885730, 55.9515573 -3.1786333, 55.9284825 -3.2096589, 55.9461803 -3.2070135, 55.9481922 -3.1962833, 55.9481940 -3.1962668, 55.9502196 -3.2294226, 55.9502091 -3.2295031, 55.9453045 -3.2316341, 55.9395209 -3.1619598, 55.9417387 -3.1502308, 55.9413643 -3.1486408, 55.9398207 -3.1647960, 55.9322747 -3.2098231, 55.9405698 -3.1948224, 55.9322155 -3.2098211, 55.9337387 -3.2104313, 55.9356956 -3.2096210, 55.9342480 -3.2099670, 55.9250348 -3.2099016, 55.9556996 -3.1881309, 55.9500635 -3.1892496, 55.9288850 -3.2096120, 55.9415942 -3.1500219, 55.9415320 -3.1500182, 55.9414780 -3.1500392, 55.9268034 -3.2091405, 55.9534622 -3.1963003, 55.9392681 -3.1916690, 55.9599520 -3.1873930, 55.9476467 -3.2048254, 55.9476016 -3.2046699, 55.9385215 -3.1946814, 55.9619780 -3.1678642, 55.9518983 -3.2239071, 55.9509290 -3.2278430, 55.9511210 -3.2277490, 55.9248694 -3.2515324, 55.9152586 -3.2496769, 55.9810888 -3.1948604, 55.9813469 -3.1948497, 55.9802041 -3.1978016, 55.9759864 -3.1734500, 55.9798126 -3.1895152, 55.9795875 -3.1875878, 55.9789603 -3.1865433, 55.9807177 -3.1950262, 55.9451951 -3.1837450, 55.9774474 -3.1689618, 55.9775639 -3.1689368, 55.9763814 -3.1707551, 55.9764475 -3.1716495, 55.9610381 -3.1807131, 55.9760230 -3.1696703, 55.9764292 -3.1693439, 55.9744390 -3.1724043, 55.9770082 -3.1723631, 55.9806635 -3.1777421, 55.9771560 -3.1735460, 55.9771245 -3.1733636, 55.9825548 -3.1951570, 55.9682208 -3.1678522, 55.9770419 -3.1725751, 55.9770800 -3.1727697, 55.9771339 -3.1730719, 55.9757237 -3.1680744, 55.9767011 -3.1697310, 55.9768212 -3.1696962, 55.9764155 -3.1709357, 55.9696870 -3.1601851, 55.9752829 -3.1671784, 55.9746544 -3.1708033, 55.9754457 -3.1703672, 55.9761159 -3.1686683, 55.9748068 -3.1719428, 55.9764963 -3.1714060, 55.9746156 -3.1675124, 55.9748242 -3.1673277, 55.9748577 -3.1715255, 55.9612898 -3.1713969, 55.9690959 -3.1845578, 55.9651753 -3.1899997, 55.9801324 -3.1928179, 55.9477632 -3.2035527, 55.9734916 -3.1731211, 55.9734370 -3.1678545, 55.9766362 -3.1692569, 55.9736688 -3.1675716, 55.9781324 -3.1931769, 55.9821090 -3.1943241, 55.9753398 -3.1672928, 55.9689301 -3.1680431, 55.9612706 -3.2423315, 55.9745822 -3.1606973, 55.9587858 -3.2096834, 55.9589500 -3.2099661, 55.9581960 -3.2080531, 55.9581662 -3.2088898, 55.9584860 -3.2082072, 55.9589789 -3.2101654, 55.9579590 -3.2062075, 55.9585295 -3.2049192, 55.9561318 -3.2024897, 55.9607377 -3.1996416, 55.9607716 -3.1994845, 55.9623588 -3.1972207, 55.9625337 -3.1963070, 55.9642406 -3.1930473, 55.9726865 -3.1759133, 55.9731405 -3.1755422, 55.9636428 -3.1765263, 55.9366534 -3.2383328, 55.9366188 -3.2384622, 55.9366902 -3.2381919, 55.9747144 -3.1719088, 55.9743443 -3.1729943, 55.9750359 -3.1717187, 55.9755525 -3.1702383, 55.9738614 -3.1646538, 55.9740422 -3.1659303, 55.9741812 -3.1661010, 55.9742569 -3.1663486, 55.9752315 -3.1658012, 55.9751522 -3.1648119, 55.9763107 -3.1693903, 55.9763771 -3.1661542, 55.9753270 -3.1646507, 55.9747307 -3.1636460, 55.9744303 -3.1776966, 55.9771733 -3.1795355, 55.9771268 -3.1778690, 55.9775207 -3.1788650, 55.9760995 -3.1730677, 55.9762199 -3.1723018, 55.9771770 -3.1718400, 55.9731723 -3.1754517, 55.9773363 -3.1760364, 55.9609375 -3.1808473, 55.9605906 -3.1808776, 55.9592564 -3.1803344, 55.9592747 -3.1800604, 55.9595776 -3.1788148, 55.9594792 -3.1784829, 55.9593617 -3.1781813, 55.9592892 -3.1764609, 55.9591242 -3.1753106, 55.9624799 -3.1788559, 55.9640287 -3.1778115, 55.9635625 -3.1776653, 55.9589434 -3.1740590, 55.9596265 -3.1729451, 55.9605538 -3.1725333, 55.9655868 -3.1763270, 55.9652947 -3.1767059, 55.9666861 -3.1748416, 55.9665208 -3.1750073, 55.9643379 -3.1706905, 55.9657604 -3.1703822, 55.9674237 -3.1748024, 55.9690233 -3.1728199, 55.9690950 -3.1689790, 55.9723853 -3.1732016, 55.9723305 -3.1731044, 55.9721688 -3.1727029, 55.9702845 -3.1717442, 55.9702545 -3.1718515, 55.9699428 -3.1720727, 55.9698245 -3.1721960, 55.9708328 -3.1699423, 55.9711233 -3.1703563, 55.9737281 -3.1686016, 55.9734119 -3.1676688, 55.9714801 -3.1615916, 55.9473560 -3.1862560, 55.9472450 -3.1859400, 55.9471464 -3.1859252, 55.9532957 -3.1984157, 55.9545214 -3.1981041, 55.9542551 -3.1979757, 55.9695565 -3.1832256, 55.9714796 -3.1776354, 55.9723593 -3.1759903, 55.9727023 -3.1754426, 55.9336099 -3.2286410, 55.9447520 -3.1840600, 55.9797812 -3.1890945, 55.9790159 -3.1841078, 55.9705925 -3.1711804, 55.9645394 -3.2127643, 55.9777755 -3.2433672, 55.9760698 -3.1951310, 55.9581445 -3.2872164, 55.9744918 -3.1857029, 55.9746016 -3.1849846, 55.9784826 -3.2320600, 55.9789817 -3.2315749, 55.9787948 -3.2321459, 55.9791425 -3.2314689, 55.9241977 -3.2103373, 55.9291125 -3.2093344, 55.9356483 -3.2096691, 55.9357669 -3.2094553, 55.9462976 -3.1912247, 55.9455377 -3.1909164, 55.9364920 -3.2084274, 55.9816900 -3.1886748, 55.9709777 -3.2090219, 55.9545791 -3.1422991, 55.9548248 -3.1415950, 55.9264063 -3.2467300, 55.9771231 -3.1966894, 55.9360200 -3.2090070, 55.9738045 -3.1858283, 55.9404616 -3.1698412, 55.9387349 -3.2010412, 55.9710845 -3.2074438, 55.9720425 -3.2050523, 55.9202135 -3.2126749, 55.9219957 -3.1957248, 55.9229858 -3.1947070, 55.9435654 -3.2358763, 55.9503992 -3.1867667, 55.9745221 -3.2097210, 55.9725416 -3.2010685, 55.9715954 -3.2077321, 55.9711003 -3.2085870, 55.9612961 -3.1711082, 55.9447505 -3.1852146, 55.9453065 -3.1835012, 55.9447808 -3.1841195, 55.9457396 -3.1854060, 55.9454763 -3.2007654, 55.9457050 -3.2037107, 55.9456972 -3.2040704, 55.9457321 -3.2021180, 55.9456158 -3.2019242, 55.9459690 -3.2019202, 55.9453277 -3.2024821, 55.9456636 -3.2023531, 55.9456209 -3.2024908, 55.9456929 -3.2031564, 55.9450873 -3.2046445, 55.9461731 -3.2013007, 55.9461031 -3.2014738, 55.9459909 -3.2018101, 55.9462907 -3.2015596, 55.9463793 -3.2017812, 55.9465905 -3.2021823, 55.9468801 -3.2026112, 55.9467570 -3.2027078, 55.9466130 -3.2023833, 55.9459899 -3.2037387, 55.9458970 -3.2052450, 55.9460060 -3.2052924, 55.9456989 -3.2041882, 55.9501558 -3.1884318, 55.9463346 -3.2055472, 55.9349001 -3.1943041, 55.9741503 -3.1833122, 55.9444114 -3.2940849, 55.9706505 -3.2086749, 55.9492055 -3.1928272, 55.9225657 -3.2301524, 55.9228577 -3.2291352, 55.9232283 -3.2269378, 55.9455366 -3.1913887, 55.9456102 -3.1913727, 55.9461313 -3.1912692, 55.9461895 -3.1912537, 55.9462577 -3.1912354, 55.9463015 -3.2358815, 55.9450532 -3.2343378, 55.9493479 -3.1906070, 55.9456779 -3.2355278, 55.9453919 -3.2338736, 55.9455668 -3.2348848, 55.9457152 -3.2346362, 55.9456396 -3.2353061, 55.9456275 -3.2352361, 55.9457630 -3.2348824, 55.9389097 -3.2419381, 55.9425943 -3.2128320, 55.9429739 -3.2134360, 55.9488740 -3.2489910, 55.9509100 -3.2434200, 55.9494980 -3.2358476, 55.9456660 -3.2308795, 55.9456737 -3.2344230, 55.9456591 -3.2343478, 55.9456205 -3.2341061, 55.9454993 -3.2344943, 55.9329723 -3.2355483, 55.9473852 -3.1916772, 55.9475088 -3.1917576, 55.9471518 -3.1915252, 55.9498377 -3.1939928, 55.9498425 -3.1930486, 55.9532791 -3.1974386, 55.9531031 -3.1974183, 55.9561340 -3.1989483, 55.9264851 -3.2464048, 55.9491804 -3.2967532, 55.9424464 -3.2955938, 55.9445998 -3.2051834, 55.9443287 -3.2046976, 55.9442023 -3.2038200, 55.9211191 -3.2303230, 55.9474400 -3.2923526, 55.9430446 -3.2899748, 55.9456740 -3.2861378, 55.9512182 -3.2954264, 55.9443925 -3.2802364, 55.9457004 -3.2739703, 55.9515300 -3.2808442, 55.9479751 -3.2794176, 55.9642340 -3.2119376, 55.9590502 -3.1909659, 55.9713367 -3.2075738, 55.9443973 -3.1868138, 55.9454900 -3.2437100, 55.9469800 -3.2417000, 55.9484440 -3.2442745, 55.9460532 -3.2214294, 55.9467329 -3.2156094, 55.9452634 -3.2437676, 55.9382217 -3.2058349, 55.9425021 -3.1970043, 55.9367136 -3.2408009, 55.9173034 -3.2149399, 55.9371649 -3.2025037, 55.9363800 -3.1997880, 55.9368530 -3.2004540, 55.9393621 -3.1916353, 55.9456516 -3.2353753, 55.9463436 -3.2054589, 55.9422110 -3.2027507, 55.9438249 -3.2056297, 55.9589078 -3.2117046, 55.9315200 -3.2861400, 55.9420711 -3.2690435, 55.9416140 -3.2558905, 55.9447200 -3.2512600, 55.9420100 -3.2484400, 55.9780639 -3.1804798, 55.9620429 -3.1977538, 55.9604376 -3.2013529, 55.9604183 -3.2014949, 55.9591864 -3.2124140, 55.9591737 -3.2122413, 55.9370660 -3.2969585, 55.9392100 -3.2806000, 55.9393811 -3.2704873, 55.9354550 -3.2598605, 55.9468637 -3.2297538, 55.9436917 -3.2398371, 55.9436136 -3.2397405, 55.9405368 -3.2831106, 55.9413015 -3.2818091, 55.9191956 -3.2130499, 55.9460239 -3.2230837, 55.9459933 -3.2231784, 55.9366457 -3.2075087, 55.9366703 -3.2079324, 55.9621347 -3.1794502, 55.9669748 -3.1747167, 55.9669857 -3.1747050, 55.9675892 -3.1703364, 55.9395488 -3.1870788, 55.9446114 -3.1865865, 55.9461370 -3.1853123, 55.9461292 -3.1853065, 55.9314090 -3.1822354, 55.9253256 -3.2005966, 55.9281345 -3.1804917, 55.9305500 -3.1762100, 55.9076779 -3.2582348, 55.9504119 -3.1888113, 55.9478244 -3.2213073, 55.9499694 -3.2195589, 55.9487598 -3.2123252, 55.9487951 -3.2108329, 55.9487898 -3.2108459, 55.9487788 -3.2108716, 55.9589846 -3.1832689, 55.9593578 -3.1768112, 55.9623585 -3.1714714, 55.9646364 -3.1735638, 55.9655614 -3.1691044, 55.9450256 -3.2268882, 55.9536450 -3.1936151, 55.9760874 -3.1678906, 55.9736874 -3.1725679, 55.9751258 -3.1658656, 55.9588433 -3.2109114, 55.9591509 -3.2146545, 55.9512937 -3.2112702, 55.9460346 -3.2134605, 55.9463344 -3.2161852, 55.9574881 -3.1992547, 55.9661313 -3.1638552, 55.9524365 -3.2168591, 55.9562610 -3.2021290, 55.9513695 -3.2128397, 55.9654450 -3.1802602, 55.9548807 -3.2054706, 55.9350165 -3.1943787, 55.9460137 -3.1821143, 55.9371585 -3.2494475, 55.9450054 -3.2718056, 55.9347429 -3.2433134, 55.9322639 -3.2309042, 55.9376366 -3.2347523, 55.9369077 -3.2366239, 55.9363670 -3.2407328, 55.9520924 -3.2063038, 55.9576002 -3.1888027, 55.9548242 -3.1983902, 55.9574612 -3.1710201, 55.9558419 -3.1599480, 55.9371035 -3.2439605, 55.9818809 -3.1948176, 55.9632540 -3.1957380, 55.9585033 -3.1646213, 55.9593827 -3.1562296, 55.9628514 -3.1597814, 55.9471310 -3.1906350, 55.9592473 -3.2132417, 55.9593364 -3.2144530, 55.9587464 -3.2103338, 55.9591071 -3.2116272, 55.9590549 -3.2115512, 55.9585881 -3.2103788, 55.9591595 -3.2128882, 55.9588539 -3.2110421, 55.9578390 -3.2128140, 55.9574336 -3.2134743, 55.9548931 -3.1712934, 55.9371653 -3.1787251, 55.9436074 -3.2192026, 55.9691762 -3.1592418, 55.9671192 -3.1610299, 55.9526079 -3.2185281, 55.9630520 -3.1962925, 55.9503960 -3.1873714, 55.9405116 -3.2947547, 55.9399996 -3.2911100, 55.9503821 -3.1868960, 55.9433250 -3.2363632, 55.9453641 -3.1865530, 55.9455352 -3.1866707, 55.9456867 -3.1862318, 55.9459460 -3.1878623, 55.9445731 -3.1850966, 55.9445434 -3.1856701, 55.9493090 -3.1830646, 55.9436340 -3.1927890, 55.9478908 -3.1920045, 55.9477659 -3.1919316, 55.9495349 -3.1929486, 55.9310201 -3.2194717, 55.9309551 -3.2196555, 55.9310441 -3.2256150, 55.9312633 -3.2137919, 55.9349884 -3.2314231, 55.9300135 -3.2135077, 55.9538496 -3.1787470, 55.9521538 -3.1888028, 55.9520917 -3.1892975, 55.9521212 -3.1893253, 55.9368221 -3.2872838, 55.9346543 -3.2844878, 55.9342762 -3.2766962, 55.9368280 -3.2706901, 55.9267768 -3.2325501, 55.9265880 -3.2362930, 55.9764239 -3.1659535, 55.9622747 -3.2001258, 55.9592917 -3.2185993, 55.9575875 -3.2415188, 55.9573543 -3.2332686, 55.9763996 -3.1659688, 55.9760198 -3.1681503, 55.9582403 -3.2265941, 55.9717406 -3.1741296, 55.9625335 -3.1998581, 55.9746244 -3.1717856, 55.9624052 -3.1998575, 55.9588912 -3.2211449, 55.9706462 -3.2515635, 55.9709461 -3.2425812, 55.9673110 -3.2456184, 55.9712487 -3.2524233, 55.9672451 -3.2455099, 55.9709114 -3.2425772, 55.9706587 -3.2515739, 55.9672842 -3.2456821, 55.9702305 -3.2515134, 55.9714310 -3.2540033, 55.9592253 -3.2129434, 55.9680564 -3.1656726, 55.9799286 -3.2012947, 55.9794390 -3.2011303, 55.9795838 -3.2010514, 55.9794434 -3.2011947, 55.9786873 -3.2006437, 55.9796829 -3.2014770, 55.9784426 -3.2011199, 55.9797146 -3.2012098, 55.9787186 -3.2008831, 55.9791564 -3.2013330, 55.9786267 -3.2010567, 55.9794210 -3.2012457, 55.9787610 -3.2009019, 55.9791637 -3.2012792, 55.9799135 -3.2014483, 55.9795468 -3.2013664, 55.9790126 -3.2013853, 55.9749007 -3.1672556, 55.9788648 -3.2009088, 55.9788535 -3.2008575, 55.9788361 -3.2011054, 55.9788605 -3.2008124, 55.9788770 -3.2008233, 55.9788948 -3.2006927, 55.9788174 -3.2012321, 55.9799603 -3.2009914, 55.9788687 -3.2007502, 55.9788487 -3.2010347, 55.9788705 -3.2008699, 55.9788853 -3.2007572, 55.9788557 -3.2009857, 55.9788783 -3.2006842, 55.9790398 -3.2011265, 55.9788474 -3.2009018, 55.9788274 -3.2011722, 55.9437166 -3.2040299, 55.9464995 -3.1932533, 55.9448981 -3.1942117, 55.9435195 -3.2043969, 55.9591181 -3.1496342, 55.9498802 -3.1891726, 55.9552796 -3.1440360, 55.9538343 -3.1493870, 55.9651726 -3.1550168, 55.9500668 -3.1885889, 55.9547615 -3.1614369, 55.9504925 -3.1856345, 55.9493236 -3.1929136, 55.9504971 -3.1855975, 55.9619817 -3.1533477, 55.9498898 -3.1890965, 55.9536631 -3.1541511, 55.9492238 -3.1941539, 55.9502174 -3.1865501, 55.9505940 -3.1856465, 55.9498851 -3.1891359, 55.9553219 -3.1667379, 55.9551114 -3.1532181, 55.9502737 -3.1870781, 55.9611774 -3.1518223, 55.9554051 -3.1670277, 55.9546947 -3.1578562, 55.9575068 -3.1501850, 55.9314494 -3.1869748, 55.9416576 -3.1883214, 55.9412229 -3.1869842, 55.9423396 -3.1985687, 55.9368984 -3.1811783, 55.9357294 -3.2217893, 55.9354242 -3.1897423, 55.9423597 -3.1983768, 55.9354613 -3.1902988, 55.9341279 -3.2244599, 55.9426036 -3.1916439, 55.9424726 -3.1914952, 55.9409958 -3.1861854, 55.9347865 -3.2217088, 55.9424745 -3.1968698, 55.9339423 -3.2232291, 55.9424847 -3.1966165, 55.9332970 -3.2046324, 55.9424725 -3.1912702, 55.9418355 -3.1889284, 55.9421352 -3.2033494, 55.9401630 -3.1832349, 55.9353802 -3.1899199, 55.9421588 -3.2004891, 55.9333677 -3.2123755, 55.9375387 -3.1808698, 55.9731305 -3.1950625, 55.9538898 -3.2435872, 55.9527134 -3.2284353, 55.9536484 -3.2360453, 55.9546849 -3.2317176, 55.9256121 -3.1473387, 55.9255558 -3.1473167, 55.9254849 -3.1471298, 55.9255885 -3.1473368, 55.9255445 -3.1473013, 55.9255241 -3.1472486, 55.9255074 -3.1471930, 55.9256417 -3.1473368, 55.9254972 -3.1471633, 55.9254768 -3.1470924, 55.9255278 -3.1472659, 55.9255359 -3.1472812, 55.9255176 -3.1472256, 55.9630069 -3.2773773, 55.9633560 -3.2761756, 55.9646089 -3.2795091, 55.9639218 -3.2753952, 55.9644744 -3.2764552, 55.9642945 -3.2803351, 55.9638292 -3.2801968, 55.9641863 -3.2754567, 55.9643389 -3.2771164, 55.9645514 -3.2795049, 55.9646789 -3.2797902, 55.9630069 -3.2776474, 55.9647666 -3.2762084, 55.9649490 -3.2763608, 55.9472234 -3.2024422, 55.9479871 -3.1862306, 55.9449721 -3.1863791, 55.9479019 -3.1867698, 55.9470660 -3.2019687, 55.9431252 -3.1992894, 55.9482540 -3.2061050, 55.9478974 -3.1862047, 55.9500998 -3.1782582, 55.9434302 -3.2029443, 55.9465349 -3.1857185, 55.9472762 -3.1979213, 55.9465436 -3.1854289, 55.9477576 -3.1936583, 55.9502038 -3.1902321, 55.9693966 -3.1688854, 55.9771941 -3.1796570, 55.9776661 -3.1969988, 55.9776264 -3.1970905, 55.9776339 -3.1970307, 55.9802605 -3.1977296, 55.9765929 -3.1854698, 55.9789189 -3.1867824, 55.9415107 -3.2233608, 55.9226414 -3.2544133, 55.9295258 -3.2094364, 55.9733890 -3.2058000, 55.9724087 -3.1997599, 55.9719753 -3.2019093, 55.9722034 -3.2009871, 55.9302979 -3.1705559, 55.9212194 -3.2187366, 55.9073269 -3.2574527, 55.9768522 -3.1881006, 55.9820447 -3.1896654, 55.9669733 -3.1745264, 55.9677041 -3.2243177, 55.9657563 -3.2435361, 55.9800424 -3.2091064, 55.9805891 -3.1775801, 55.9780874 -3.2043007, 55.9801656 -3.2091915, 55.9725324 -3.1754041, 55.9657293 -3.2435261, 55.9700408 -3.2078082, 55.9670709 -3.1749630, 55.9799752 -3.2018461, 55.9790932 -3.2109028, 55.9437881 -3.2070159, 55.9455865 -3.2342233, 55.9455978 -3.2346741, 55.9371539 -3.2494937, 55.9246468 -3.2763740, 55.9372962 -3.2491878, 55.9332779 -3.2613713, 55.9246368 -3.2764158, 55.9299176 -3.2625346, 55.9372632 -3.2492416, 55.9246048 -3.2765477, 55.9271075 -3.2707414, 55.9247996 -3.2823520, 55.9332415 -3.2614077, 55.9325591 -3.2593705, 55.9247876 -3.2822715, 55.9641861 -3.2128706, 55.9692611 -3.1512327, 55.9642958 -3.1488430, 55.9639379 -3.1504049, 55.9745306 -3.1933636, 55.9748675 -3.1904209, 55.9746493 -3.1922925, 55.9743880 -3.1929616, 55.9749058 -3.1941793, 55.9746366 -3.1955294, 55.9747764 -3.1956967, 55.9745714 -3.1934532, 55.9754612 -3.1960906, 55.9399014 -3.1712062, 55.9273390 -3.1465879, 55.9271255 -3.1468646, 55.9752483 -3.2153052, 55.9758317 -3.2144035, 55.9727434 -3.2070307, 55.9275895 -3.1645483, 55.9399619 -3.1799104, 55.9241128 -3.1723545, 55.9300110 -3.2100136, 55.9429085 -3.1832259, 55.9334156 -3.1665149, 55.9276372 -3.1682132, 55.9338015 -3.1610908, 55.9429869 -3.1832327, 55.9321255 -3.1800006, 55.9334491 -3.1664892, 55.9399489 -3.1799452, 55.9269153 -3.1638236, 55.9406102 -3.1806228, 55.9420827 -3.2691559, 55.9425700 -3.2686698, 55.9434680 -3.2668439, 55.9439063 -3.2690157, 55.9435751 -3.2689147, 55.9430873 -3.2690735, 55.9443551 -3.2687653, 55.9437874 -3.2690161, 55.9436834 -3.2692135, 55.9429229 -3.2689057, 55.9437737 -3.2692883, 55.9443555 -3.2688034, 55.9434933 -3.2688802, 55.9443517 -3.2688330, 55.9443334 -3.2690333, 55.9443160 -3.2698145, 55.9443712 -3.2697548, 55.9442862 -3.2696535, 55.9447923 -3.2696041, 55.9442414 -3.2696230, 55.9442249 -3.2698579, 55.9441862 -3.2699833, 55.9441998 -3.2697898, 55.9441846 -3.2700353, 55.9441913 -3.2699266, 55.9442482 -3.2695243, 55.9441947 -3.2698513, 55.9442041 -3.2697012, 55.9442198 -3.2699298, 55.9448190 -3.2682874, 55.9445364 -3.2691035, 55.9445089 -3.2686640, 55.9448125 -3.2683165, 55.9445401 -3.2690632, 55.9445281 -3.2686754, 55.9447678 -3.2682625, 55.9445452 -3.2690217, 55.9444816 -3.2686505, 55.9438104 -3.2704203, 55.9441745 -3.2708613, 55.9451248 -3.2679627, 55.9451178 -3.2677005, 55.9438841 -3.2704641, 55.9451136 -3.2677340, 55.9436988 -3.2702051, 55.9440136 -3.2699584, 55.9437582 -3.2698008, 55.9440197 -3.2698813, 55.9439194 -3.2696742, 55.9437988 -3.2695451, 55.9440168 -3.2699147, 55.9437958 -3.2695753, 55.9437871 -3.2696296, 55.9437147 -3.2700828, 55.9440096 -3.2700013, 55.9437646 -3.2697579, 55.9437095 -3.2701295, 55.9439723 -3.2703260, 55.9440281 -3.2698087, 55.9439896 -3.2701946, 55.9437462 -3.2698728, 55.9439914 -3.2701621, 55.9445568 -3.2712370, 55.9444828 -3.2712985, 55.9445676 -3.2713832, 55.9445489 -3.2712116, 55.9444306 -3.2707867, 55.9446757 -3.2680033, 55.9443715 -3.2709187, 55.9443640 -3.2709035, 55.9444425 -3.2708312, 55.9439403 -3.2686377, 55.9439366 -3.2685388, 55.9472894 -3.2704332, 55.9464505 -3.2693921, 55.9453787 -3.2713449, 55.9440090 -3.2721798, 55.9472851 -3.2706337, 55.9455441 -3.2712955, 55.9465141 -3.2730188, 55.9472398 -3.2702471, 55.9473110 -3.2704551, 55.9472948 -3.2703506, 55.9358149 -3.2386102, 55.9461826 -3.2690791, 55.9456455 -3.2716123, 55.9366987 -3.2379969, 55.9453342 -3.2700548, 55.9462962 -3.2726401, 55.9454803 -3.2690632, 55.9457537 -3.2698792, 55.9461758 -3.2691227, 55.9463484 -3.2727821, 55.9453896 -3.2713832, 55.9451134 -3.2711892, 55.9462094 -3.2725069, 55.9443505 -3.2706792, 55.9448784 -3.2691910, 55.9449196 -3.2690293, 55.9451823 -3.2694942, 55.9445985 -3.2697772, 55.9445979 -3.2697349, 55.9445979 -3.2698218, 55.9450181 -3.2688395, 55.9443896 -3.2704309, 55.9442896 -3.2708207, 55.9438150 -3.2706214, 55.9730625 -3.2354168, 55.9792487 -3.2313758, 55.9743076 -3.2196459, 55.9786761 -3.2242350, 55.9741111 -3.2386308, 55.9753661 -3.2384939, 55.9698356 -3.2316222, 55.9763800 -3.2460031, 55.9756661 -3.2270053, 55.9757390 -3.2302742, 55.9751276 -3.2195128, 55.9779244 -3.2225429, 55.9746980 -3.2385027, 55.9439343 -3.2725445, 55.9438317 -3.2725467, 55.9437621 -3.2725408, 55.9503380 -3.2726676, 55.9456126 -3.2685460, 55.9456241 -3.2684706, 55.9473517 -3.2692143, 55.9475440 -3.2688587, 55.9475589 -3.2686972, 55.9451123 -3.2677559, 55.9452218 -3.2681462, 55.9451658 -3.2680317, 55.9394746 -3.1894768, 55.9411641 -3.1512729, 55.9416434 -3.1717268, 55.9439748 -3.1524219, 55.9411330 -3.1514431, 55.9448237 -3.1529181, 55.9423063 -3.1449329, 55.9450073 -3.1529020, 55.9402037 -3.1756282, 55.9421609 -3.1451559, 55.9446352 -3.1525535, 55.9434855 -3.1422046, 55.9419802 -3.1708710, 55.9396994 -3.1851263, 55.9417559 -3.1765404, 55.9410719 -3.1516059, 55.9503022 -3.2071924, 55.9512603 -3.2014806, 55.9533454 -3.1938651, 55.9509730 -3.2032088, 55.9512978 -3.2012401, 55.9593299 -3.1509841, 55.9617190 -3.1525405, 55.9566137 -3.1888783, 55.9577467 -3.1851022, 55.9562406 -3.1911609, 55.9526010 -3.1937812, 55.9507246 -3.2045394, 55.9517979 -3.1983521, 55.9524251 -3.1947161, 55.9505481 -3.2054984, 55.9709486 -3.1523987, 55.9525246 -3.1941907, 55.9506016 -3.2052108, 55.9516546 -3.1992268, 55.9523506 -3.1951713, 55.9575602 -3.1724450, 55.9580154 -3.1583704, 55.9592196 -3.1553714, 55.9458843 -3.2055992, 55.9504298 -3.2064570, 55.9575913 -3.1753293, 55.9547280 -3.1926660, 55.9521682 -3.1962149, 55.9452317 -3.2051701, 55.9515517 -3.1998326, 55.9576458 -3.1789105, 55.9537198 -3.1936624, 55.9567999 -3.1876847, 55.9520466 -3.1969809, 55.9560815 -3.1929397, 55.9636100 -3.1540929, 55.9515119 -3.2000849, 55.9577704 -3.1828555, 55.9564876 -3.1896175, 55.9510185 -3.2029566, 55.9513839 -3.2007749, 55.9599237 -3.1506789, 55.9465689 -3.2059027, 55.9410597 -3.2238899, 55.9610620 -3.2661513, 55.9579168 -3.2594573, 55.9611170 -3.2586621, 55.9591633 -3.2694132, 55.9472750 -3.2701680, 55.9472780 -3.2702638, 55.9472901 -3.2702199, 55.9460756 -3.2679698, 55.9461143 -3.2678766, 55.9461569 -3.2677804, 55.9460226 -3.2680862, 55.9476973 -3.2666365, 55.9476234 -3.2666513, 55.9478812 -3.2669807, 55.9477799 -3.2670205, 55.9477692 -3.2669562, 55.9439389 -3.2713024, 55.9438362 -3.2717741, 55.9457140 -3.2662994, 55.9473537 -3.2693023, 55.9423791 -3.2684339, 55.9423375 -3.2684623, 55.9426333 -3.2684129, 55.9541180 -3.1855740, 55.9807233 -3.1953798, 55.9459500 -3.2183311, 55.9525178 -3.1990765, 55.9527244 -3.1978512, 55.9517351 -3.1896593, 55.9526200 -3.1872149, 55.9495835 -3.1876144, 55.9514986 -3.1796557, 55.9514881 -3.1797075, 55.9514580 -3.1798555, 55.9514691 -3.1798034, 55.9236959 -3.2040638, 55.9212525 -3.2097389, 55.9514550 -3.1958932, 55.9246180 -3.2215117, 55.9268322 -3.2091083, 55.9252645 -3.2148714, 55.9245389 -3.2241470, 55.9268608 -3.2091094, 55.9282888 -3.2095850, 55.9226159 -3.2225114, 55.9777985 -3.1974975, 55.9798593 -3.1946097, 55.9780428 -3.1860386, 55.9784324 -3.1831445, 55.9773792 -3.1799210, 55.9379636 -3.2403672, 55.9371924 -3.2382206, 55.9394624 -3.2262304, 55.9449761 -3.2499915, 55.9522107 -3.2715039, 55.9457322 -3.2402496, 55.9439988 -3.2573278, 55.9572715 -3.2768003, 55.9437035 -3.2584097, 55.9458226 -3.2352228, 55.9478145 -3.2639367, 55.9555972 -3.2734936, 55.9453565 -3.2446690, 55.9708436 -3.1716098, 55.9076063 -3.2536486, 55.9079031 -3.2547777, 55.9570137 -3.1821671, 55.9774386 -3.2624501, 55.9772118 -3.2672281, 55.9772339 -3.2660670, 55.9624258 -3.1975866, 55.9651110 -3.2694445, 55.9573540 -3.2494949, 55.9555020 -3.2480075, 55.9555258 -3.2619699, 55.9574373 -3.2496763, 55.9634767 -3.2722179, 55.9605444 -3.2566921, 55.9566447 -3.2377940, 55.9772777 -3.2461729, 55.9623920 -3.1996454, 55.9623670 -3.1996983, 55.9621922 -3.2000688, 55.9631054 -3.1964986, 55.9612545 -3.2082697, 55.9057072 -3.2230862, 55.9057886 -3.2220852, 55.9058118 -3.2222166, 55.9056645 -3.2224845, 55.9361919 -3.2787960, 55.9406861 -3.2945485, 55.9113200 -3.2226013, 55.9559675 -3.1875732, 55.9575352 -3.2075320, 55.9428445 -3.2718177, 55.9457769 -3.1881838, 55.9457904 -3.1881060, 55.9458340 -3.1851287, 55.9456579 -3.1864695, 55.9464609 -3.1857555, 55.9444948 -3.1852753, 55.9460238 -3.1818387, 55.9456169 -3.1836938, 55.9409109 -3.1847511, 55.9537781 -3.1881740, 55.9506084 -3.1874617, 55.9500934 -3.1836054, 55.9498204 -3.1834215, 55.9508055 -3.1777162, 55.9695532 -3.1595985, 55.9559652 -3.1503593, 55.9695519 -3.1615654, 55.9694468 -3.1623711, 55.9692700 -3.1637686, 55.9696498 -3.1596886, 55.9342608 -3.2766739, 55.9343068 -3.2766933, 55.9341525 -3.2766615, 55.9342032 -3.2767154, 55.9504487 -3.1855770, 55.9527611 -3.2030077, 55.9481787 -3.1818614, 55.9360525 -3.2265524, 55.9369949 -3.2187665, 55.9686273 -3.1585988, 55.9469357 -3.2061870, 55.9468336 -3.2067128, 55.9510529 -3.1895716, 55.9474405 -3.2025897, 55.9469842 -3.2055924, 55.9484546 -3.2033792, 55.9477666 -3.2049354, 55.9519571 -3.1962325, 55.9475027 -3.1864955, 55.9450666 -3.1879264, 55.9084110 -3.2094163, 55.9082785 -3.2093082, 55.9086565 -3.2096817, 55.9083456 -3.2093594, 55.9650759 -3.2031617, 55.9807357 -3.1771531, 55.9801105 -3.1784204, 55.9803382 -3.1778904, 55.9509532 -3.1703030, 55.9449293 -3.1531235, 55.9426622 -3.1700360, 55.9536680 -3.1591788, 55.9510831 -3.1696039, 55.9471411 -3.1970342, 55.9472696 -3.1965989, 55.9471162 -3.1970611, 55.9476455 -3.1953503, 55.9470721 -3.1972816, 55.9444791 -3.1881383, 55.9441090 -3.1902632, 55.9441665 -3.1899295, 55.9431021 -3.1885851, 55.9442010 -3.1896725, 55.9442375 -3.1894117, 55.9434877 -3.1870683, 55.9411521 -3.2175600, 55.9416473 -3.2167635, 55.9417417 -3.2166027, 55.9412822 -3.2173787, 55.9414839 -3.2157963, 55.9502375 -3.1783811, 55.9578332 -3.2413256, 55.9338912 -3.2338462, 55.9533340 -3.1882867, 55.9535985 -3.1880495, 55.9540940 -3.1883181, 55.9647669 -3.1742071, 55.9615002 -3.2416803, 55.9612219 -3.2575527, 55.9617112 -3.2842794, 55.9459285 -3.2185692, 55.9550948 -3.1901047, 55.9550392 -3.1900725, 55.9544162 -3.1979157, 55.9551557 -3.1901442, 55.9550768 -3.1902732, 55.9488944 -3.2004735, 55.9682084 -3.1584193, 55.9747341 -3.1674332, 55.9690445 -3.1682228, 55.9235577 -3.1750912, 55.9401640 -3.1700061, 55.9709409 -3.1571862, 55.9467290 -3.2153860, 55.9220580 -3.1538560, 55.9283784 -3.2791498, 55.9237183 -3.2367632, 55.9785853 -3.2328696, 55.9626030 -3.2336790, 55.9697755 -3.2322849, 55.9522245 -3.1734903, 55.9629859 -3.1961423, 55.9551121 -3.1428079, 55.9702557 -3.1722514, 55.9707819 -3.1795895, 55.9718556 -3.1742189, 55.9598707 -3.1836010, 55.9596341 -3.1834611, 55.9632066 -3.1785776, 55.9606353 -3.1818678, 55.9634276 -3.1783427, 55.9571142 -3.1859300, 55.9583267 -3.1846366, 55.9598382 -3.1829707, 55.9589142 -3.1841338, 55.9591802 -3.1838027, 55.9615406 -3.1806868, 55.9702777 -3.1722352, 55.9568895 -3.1872332, 55.9714725 -3.1735772, 55.9649663 -3.1768207, 55.9658985 -3.1759685, 55.9645028 -3.1902250, 55.9575852 -3.1728943, 55.9608065 -3.2464135, 55.9539273 -3.1922043, 55.9805680 -3.2249628, 55.9579175 -3.2082759, 55.9406050 -3.2947431, 55.9573347 -3.1870575, 55.9413584 -3.2170640, 55.9567027 -3.2027842, 55.9502256 -3.2037940, 55.9435000 -3.2324052, 55.9647720 -3.2042289, 55.9647197 -3.2042135, 55.9646674 -3.2043527, 55.9646282 -3.2123860, 55.9227843 -3.1745345, 55.9228926 -3.1745133, 55.9217304 -3.1744023, 55.9630073 -3.1966593, 55.9584822 -3.1838031, 55.9627948 -3.1786344, 55.9585203 -3.1837638, 55.9589264 -3.1833589, 55.9658761 -3.1755965, 55.9758546 -3.1700490, 55.9698878 -3.1717364, 55.9698710 -3.1719035, 55.9673457 -3.1743716, 55.9659789 -3.1755949, 55.9608269 -3.1809491, 55.9626007 -3.1788719, 55.9617000 -3.1800168, 55.9648938 -3.2106033, 55.9640769 -3.2117760, 55.9729683 -3.2415304, 55.9710850 -3.2302781, 55.9660823 -3.2332303, 55.9663376 -3.2322283, 55.9570699 -3.2073173, 55.9571426 -3.2068415, 55.9456193 -3.2178696, 55.9407217 -3.2685394, 55.9666564 -3.2048348, 55.9316272 -3.2648845, 55.9746900 -3.1865330, 55.9459387 -3.2172281, 55.9535442 -3.2058828, 55.9468426 -3.2042839, 55.9418064 -3.1502056, 55.9765012 -3.2156968, 55.9768410 -3.2157391, 55.9654428 -3.2696179, 55.9680693 -3.2059108, 55.9704584 -3.2081175, 55.9704953 -3.2081485, 55.9699562 -3.2076464, 55.9707533 -3.2083928, 55.9565342 -3.1985297, 55.9648879 -3.2026755, 55.9637633 -3.2012504, 55.9567499 -3.1986451, 55.9561450 -3.2942798, 55.9618298 -3.2008369, 55.9599171 -3.2005727, 55.9611747 -3.2012488, 55.9591669 -3.1999850, 55.9594671 -3.2002995, 55.9712906 -3.2063874, 55.9706415 -3.2086153, 55.9713338 -3.2069948, 55.9695498 -3.2075521, 55.9676635 -3.2058310, 55.9692804 -3.2074893, 55.9537621 -3.1970655, 55.9366240 -3.1802622, 55.9259084 -3.1931834, 55.9809058 -3.1784709, 55.9811460 -3.1776490, 55.9806886 -3.1784936, 55.9809733 -3.1781568, 55.9807522 -3.1787546, 55.9809041 -3.1782848, 55.9809689 -3.1779757, 55.9805231 -3.1789886, 55.9807924 -3.1779232, 55.9808102 -3.1777011, 55.9804391 -3.1785758, 55.9820170 -3.1763600, 55.9234603 -3.2480989, 55.9591543 -3.2259572, 55.9590419 -3.2244693, 55.9584175 -3.1836030, 55.9386253 -3.2265154, 55.9727205 -3.1965557, 55.9727236 -3.1965337, 55.9727179 -3.1965732, 55.9551635 -3.1504704, 55.9110678 -3.2397229, 55.9551513 -3.1497023, 55.9622829 -3.1985522, 55.9711437 -3.2084607, 55.9708639 -3.2085268, 55.9014700 -3.2230460, 55.9014970 -3.2224341, 55.9635314 -3.2337201, 55.9624600 -3.2363981, 55.9623235 -3.2362031, 55.9482310 -3.1848072, 55.9400736 -3.1717606, 55.9569588 -3.1874026, 55.9808127 -3.2595224, 55.9514755 -3.1782823, 55.9511672 -3.1780596, 55.9509125 -3.1777434, 55.9486026 -3.1924520, 55.9345452 -3.2208560, 55.9392875 -3.2226223, 55.9465573 -3.2166040, 55.9775384 -3.1973714, 55.9768854 -3.1971875, 55.9776251 -3.1971457, 55.9390363 -3.1799981, 55.9374159 -3.1700169, 55.9805956 -3.1934566, 55.9569347 -3.1878220, 55.9571722 -3.1885204, 55.9574895 -3.1883335, 55.9570705 -3.1879231, 55.9570779 -3.1884191, 55.9568932 -3.1877875, 55.9573876 -3.1882337, 55.9570085 -3.1883445, 55.9426281 -3.2128809, 55.9430915 -3.2136268, 55.9527396 -3.1977443, 55.9480325 -3.1815054, 55.9480039 -3.1817137, 55.9560952 -3.1981151, 55.9480209 -3.1999685, 55.9489665 -3.2010611, 55.9493788 -3.1869167, 55.9691533 -3.2784692, 55.9692477 -3.2784288, 55.9693072 -3.2788977, 55.9693548 -3.2789797, 55.9696962 -3.2776885, 55.9697099 -3.2776419, 55.9712220 -3.2801035, 55.9715957 -3.2808185, 55.9716282 -3.2807288, 55.9717402 -3.2779034, 55.9717600 -3.2779104, 55.9717836 -3.2776240, 55.9717999 -3.2776311, 55.9718160 -3.2776350, 55.9718386 -3.2779414, 55.9718557 -3.2779493, 55.9718960 -3.2776816, 55.9719644 -3.2780539, 55.9719738 -3.2795632, 55.9719843 -3.2795094, 55.9720028 -3.2794220, 55.9720946 -3.2789216, 55.9721642 -3.2784518, 55.9477134 -3.1957934, 55.9469231 -3.1978666, 55.9484235 -3.1941366, 55.9532707 -3.1946443, 55.9590285 -3.1830258, 55.9541444 -3.1874139, 55.9492653 -3.1878166, 55.9503609 -3.1881082, 55.9263726 -3.2095225, 55.9437913 -3.2075720, 55.9435956 -3.2082094, 55.9438322 -3.2058300, 55.9439569 -3.2059882, 55.9414930 -3.1764095, 55.9744930 -3.1740238, 55.9746031 -3.1741015, 55.9743735 -3.1740128, 55.9501068 -3.1901274, 55.9502048 -3.1904658, 55.9502374 -3.1901476, 55.9777985 -3.2431662, 55.9436378 -3.1937085, 55.9645746 -3.1623361, 55.9661091 -3.1556801, 55.9594943 -3.1560234, 55.9595036 -3.1564207, 55.9594927 -3.1561524, 55.9575205 -3.1699980, 55.9585573 -3.1641856, 55.9588531 -3.1715965, 55.9505032 -3.1770192, 55.9644079 -3.2126470, 55.9509705 -3.1758549, 55.9389695 -3.1739145, 55.9389943 -3.1739655, 55.9390348 -3.1740554, 55.9385725 -3.1743857, 55.9390147 -3.1740075, 55.9390548 -3.1740993, 55.9390736 -3.1741349, 55.9386396 -3.1734783, 55.9386176 -3.1743667, 55.9233792 -3.1742497, 55.9233858 -3.1742718, 55.9234025 -3.1742718, 55.9234130 -3.1742582, 55.9234165 -3.1742395, 55.9353260 -3.1974910, 55.9359590 -3.1944058, 55.9461006 -3.2053014, 55.9646577 -3.1742534, 55.9761453 -3.2491420, 55.9493237 -3.2123286, 55.9492755 -3.2122776, 55.9337528 -3.2109407, 55.9592003 -3.2070598, 55.9470741 -3.2010696, 55.9272281 -3.2094764, 55.9439543 -3.2071456, 55.9319254 -3.2512353, 55.9803988 -3.2235746, 55.9500005 -3.2077642, 55.9334827 -3.1781544, 55.9482625 -3.1920719, 55.9564790 -3.1878171, 55.9571919 -3.1851054, 55.9570940 -3.1852268, 55.9588991 -3.2258357, 55.9335760 -3.2285650, 55.9780202 -3.2428479, 55.9425693 -3.2033171, 55.9382383 -3.1924272, 55.9859605 -3.1898881, 55.9864916 -3.1885470, 55.9506835 -3.1901263, 55.9488068 -3.1956257, 55.9422140 -3.2733877, 55.9436353 -3.2027965, 55.9576954 -3.1637490, 55.9590948 -3.2432678, 55.9586188 -3.2408490, 55.9676788 -3.1745637, 55.9396281 -3.2041820, 55.9777657 -3.1686490, 55.9779143 -3.1684989, 55.9552280 -3.1478679, 55.9549996 -3.1445229, 55.9484747 -3.1864289, 55.9126616 -3.2035825, 55.9171931 -3.1941869, 55.9126891 -3.2038767, 55.9106369 -3.2236918, 55.9425676 -3.2218450, 55.9475020 -3.1919993, 55.9485285 -3.1947345, 55.9542346 -3.1873800, 55.9508675 -3.1907041, 55.9508879 -3.1905922, 55.9536227 -3.1920912, 55.9508253 -3.2079252, 55.9520662 -3.2007312, 55.9502522 -3.2086385, 55.9506787 -3.2078124, 55.9722589 -3.2532136, 55.9218026 -3.1745330, 55.9220250 -3.1740037, 55.9222596 -3.1746208, 55.9451505 -3.1872267, 55.9222225 -3.1735760, 55.9222306 -3.1737186, 55.9222484 -3.1736116, 55.9013749 -3.2048039, 55.9015123 -3.2048112, 55.9014995 -3.2048220, 55.9557144 -3.2050284, 55.9573512 -3.1955177, 55.9582765 -3.1894464, 55.9568218 -3.1985851, 55.9559071 -3.2028055, 55.9052704 -3.2299197, 55.9073936 -3.2270867, 55.9167735 -3.2461744, 55.9086485 -3.2285406, 55.9085511 -3.2284975, 55.9095328 -3.2331203, 55.9189185 -3.2647989, 55.9057737 -3.2228121, 55.9211096 -3.2429362, 55.9778271 -3.2436779, 55.9503499 -3.1810630, 55.9516064 -3.1841709, 55.9503183 -3.1884815, 55.9236878 -3.2368618, 55.9238196 -3.2366622, 55.9236578 -3.2367354, 55.9237248 -3.2366306, 55.9237612 -3.2366178, 55.9833943 -3.2415959, 55.9095305 -3.2330886, 55.9366857 -3.2080378, 55.9347829 -3.1798219, 55.9250057 -3.2459826, 55.9268452 -3.2441755, 55.9325861 -3.2362182, 55.9358156 -3.2103653, 55.9359705 -3.2098110, 55.9360380 -3.2096024, 55.9278483 -3.2300129, 55.9377646 -3.2063686, 55.9376421 -3.2063586, 55.9369027 -3.2077163, 55.9372048 -3.2071638, 55.9368453 -3.2080850, 55.9373902 -3.2070428, 55.9375452 -3.2065188, 55.9391854 -3.2049304, 55.9403048 -3.2042415, 55.9404664 -3.2042389, 55.9280547 -3.2292838, 55.9116349 -3.2144369, 55.9137619 -3.2215458, 55.9166500 -3.2282550, 55.9177564 -3.2099928, 55.9058039 -3.2543852, 55.9058659 -3.2543314, 55.9058985 -3.2437992, 55.9729590 -3.2150233, 55.9574260 -3.1873226, 55.9418938 -3.1804392, 55.9426222 -3.1809843, 55.9577201 -3.1877521, 55.9584746 -3.1893143, 55.9587876 -3.1938665, 55.9590983 -3.1918268, 55.9800499 -3.1791627, 55.9373982 -3.2204158, 55.9371368 -3.2188280, 55.9371037 -3.2185759, 55.9364362 -3.2192427, 55.9369080 -3.2188220, 55.9662294 -3.1638763, 55.9676214 -3.1664619, 55.9762860 -3.1692979, 55.9155222 -3.2133212, 55.9172588 -3.2246527, 55.9130555 -3.2448631, 55.9134923 -3.2440172, 55.9234034 -3.2439546, 55.9015515 -3.2210483, 55.9022093 -3.2131738, 55.9126848 -3.2283598, 55.9247393 -3.2762275, 55.9362381 -3.2789309, 55.9675511 -3.1756374, 55.9341037 -3.1788197, 55.9344639 -3.1793948, 55.9338757 -3.2105970, 55.9354910 -3.2098022, 55.9354188 -3.2098186, 55.9355278 -3.2097605, 55.9364334 -3.2079099, 55.9368144 -3.2072231, 55.9372344 -3.2066228, 55.9376983 -3.2059000, 55.9780182 -3.1722292, 55.9780370 -3.1723323, 55.9780570 -3.1724415, 55.9780621 -3.1724905, 55.9782654 -3.1746803, 55.9785235 -3.1761930, 55.9786511 -3.1756543, 55.9786950 -3.1756505, 55.9787141 -3.1732727, 55.9787749 -3.1736603, 55.9787935 -3.1769111, 55.9788336 -3.1755778, 55.9788462 -3.1740536, 55.9788573 -3.1741016, 55.9789044 -3.1755354, 55.9789084 -3.1744460, 55.9474590 -3.2064804, 55.9832621 -3.2415270, 55.9834316 -3.2423711, 55.9834316 -3.2423890, 55.9836698 -3.2462331, 55.9836701 -3.2462220, 55.9836844 -3.2504406, 55.9836890 -3.2504214, 55.9837405 -3.2490546, 55.9837405 -3.2490698, 55.9524356 -3.1964223, 55.9454688 -3.1847519, 55.9567479 -3.1931126, 55.9551490 -3.1957714, 55.9553311 -3.1942954, 55.9553403 -3.1942429, 55.9553748 -3.1943211, 55.9553863 -3.1942604, 55.9289432 -3.2488889, 55.9265395 -3.2441561, 55.9358853 -3.2101222, 55.9495537 -3.1836402, 55.9038541 -3.2176307, 55.9041465 -3.2071128, 55.9109891 -3.2235171, 55.9249983 -3.2408003, 55.9265173 -3.2463462, 55.9291936 -3.2433016, 55.9313843 -3.2522107, 55.9329546 -3.2402835, 55.9078224 -3.2262252, 55.9091985 -3.2241889, 55.9095509 -3.2288170, 55.9099481 -3.2276233, 55.9113957 -3.2252868, 55.9116752 -3.2253678, 55.9692484 -3.2701169, 55.9517687 -3.2034896, 55.9032280 -3.1930251, 55.9042257 -3.1978022, 55.9071385 -3.2051046, 55.9086019 -3.2094913, 55.9090257 -3.2065112, 55.9411936 -3.1485976, 55.9505209 -3.1777619, 55.9503720 -3.1813833, 55.9504108 -3.1802868, 55.9507721 -3.1811578, 55.9465819 -3.2028447, 55.9467650 -3.2021954, 55.9486309 -3.1952308, 55.9513408 -3.1864418, 55.9514994 -3.1837738, 55.9775296 -3.2431666, 55.9434972 -3.1847056, 55.9444992 -3.1839329, 55.9459854 -3.1883969, 55.9462645 -3.1891555, 55.9449647 -3.1887877, 55.9462089 -3.1892186, 55.9453153 -3.1845999, 55.9449737 -3.1886697, 55.9759686 -3.1688891, 55.9784699 -3.1821994, 55.9072276 -3.2585733, 55.9071899 -3.2569516, 55.9083920 -3.2527955, 55.9658637 -3.1761995, 55.9570449 -3.1939224, 55.9541472 -3.1916750, 55.9438531 -3.2042371, 55.9519521 -3.2087311, 55.9528038 -3.2061494, 55.9528140 -3.2093938, 55.9532254 -3.2097569, 55.9536618 -3.2155670, 55.9536915 -3.2042720, 55.9539747 -3.2143294, 55.9542100 -3.2076372, 55.9553506 -3.2198094, 55.9554278 -3.2089861, 55.9554724 -3.2173189, 55.9554860 -3.2009332, 55.9563802 -3.2017624, 55.9572186 -3.2098642, 55.9573665 -3.1964754, 55.9585472 -3.2054534, 55.9595644 -3.1990439, 55.9599933 -3.2054953, 55.9608712 -3.2094075, 55.9611926 -3.1991203, 55.9615597 -3.1997555, 55.9617191 -3.2025890, 55.9620904 -3.1793576, 55.9281635 -3.2479491, 55.9278540 -3.2486519, 55.9379459 -3.1928989, 55.9527684 -3.2488426, 55.9512987 -3.2096416, 55.9654063 -3.1759213, 55.9796234 -3.1879513, 55.9364814 -3.1940654, 55.9091332 -3.2602393, 55.9103257 -3.2684300, 55.9116143 -3.2626993, 55.9812296 -3.1751262, 55.9812432 -3.1752913, 55.9037452 -3.2259008, 55.9037783 -3.2258512, 55.9704887 -3.1722539, 55.9697359 -3.1722727, 55.9690697 -3.1733366, 55.9690434 -3.1728767, 55.9655072 -3.1758319, 55.9599112 -3.1822027, 55.9682958 -3.1740264, 55.9679644 -3.1743435, 55.9459700 -3.1799511, 55.9459700 -3.1803320, 55.9671880 -3.2831070, 55.9691460 -3.1666762, 55.9574681 -3.1806815, 55.9598822 -3.2008315, 55.9614848 -3.1812115, 55.9610969 -3.1806925, 55.9537919 -3.1943636, 55.9520661 -3.2796118, 55.9569903 -3.2540214, 55.9682857 -3.2739342, 55.9557748 -3.2584453, 55.9620235 -3.2416435, 55.9395842 -3.2047515, 55.9395958 -3.2047474, 55.9376968 -3.2030817, 55.9489030 -3.2106596, 55.9396953 -3.1932716, 55.9575251 -3.1904112, 55.9380044 -3.1928820, 55.9264941 -3.2093621, 55.9600584 -3.1713347, 55.9471310 -3.1866144, 55.9485879 -3.1925352, 55.9371647 -3.1783812, 55.9371166 -3.1786816, 55.9373104 -3.1783920, 55.9373625 -3.1783129, 55.9362567 -3.1797890, 55.9377476 -3.1786173, 55.9507069 -3.1772921, 55.9691017 -3.1683343, 55.9077558 -3.1994418, 55.9345771 -3.1419751, 55.9210238 -3.1598869, 55.9219909 -3.1537713, 55.9174822 -3.1582168, 55.9281906 -3.1742270, 55.9191327 -3.1562193, 55.9306331 -3.1627430, 55.9172236 -3.1644150, 55.9143561 -3.1647767, 55.9145718 -3.1648438, 55.9205387 -3.1634751, 55.9159327 -3.1674277, 55.9118079 -3.1688573, 55.9629073 -3.2208615, 55.9585507 -3.1844662, 55.9583991 -3.1846137, 55.9422761 -3.1451006, 55.9327244 -3.2707029, 55.9327440 -3.2706734, 55.9292344 -3.2698484, 55.9258492 -3.2715384, 55.9271219 -3.1643833, 55.9342795 -3.1927449, 55.9074446 -3.2561802, 55.9751700 -3.1799079, 55.9765134 -3.1793029, 55.9750744 -3.1805743, 55.9763792 -3.1792419, 55.9744134 -3.1848066, 55.9744305 -3.1846747, 55.9742810 -3.1856430, 55.9743179 -3.1854057, 55.9744911 -3.1843927, 55.9746268 -3.1837751, 55.9593582 -3.1855608, 55.9596851 -3.1884394, 55.9600368 -3.1898003, 55.9435115 -3.2193949, 55.9437549 -3.2193403, 55.9453892 -3.2171020, 55.9452977 -3.2171685, 55.9462869 -3.2159227, 55.9462644 -3.2147801, 55.9466681 -3.2139844, 55.9462412 -3.2122800, 55.9460218 -3.2124627, 55.9463199 -3.2060028, 55.9462610 -3.2137192, 55.9465542 -3.2158573, 55.9464746 -3.2019795, 55.9464280 -3.2034977, 55.9486448 -3.2062281, 55.9483828 -3.2061195, 55.9474318 -3.2069644, 55.9494425 -3.2125026, 55.9443448 -3.2151223, 55.9440221 -3.2146912, 55.9485519 -3.2140339, 55.9468350 -3.2051684, 55.9469209 -3.2045658, 55.9467269 -3.2047624, 55.9485678 -3.1946201, 55.9486421 -3.1944619, 55.9489611 -3.1926806, 55.9460725 -3.1912850, 55.9457241 -3.2098787, 55.9457412 -3.2099832, 55.9459738 -3.2058563, 55.9576658 -3.1845555, 55.9428244 -3.2815918, 55.9308207 -3.2096951, 55.9444851 -3.2547877, 55.9576011 -3.1846430, 55.9655583 -3.2726116, 55.9584582 -3.1901573, 55.9406449 -3.2837782, 55.9412624 -3.2833187, 55.9254960 -3.2091940, 55.9254960 -3.2091420, 55.9254940 -3.2090630, 55.9537247 -3.1879151, 55.9498114 -3.2093822, 55.9498996 -3.2091714, 55.9503620 -3.2076707, 55.9500194 -3.2088527, 55.9506457 -3.2094956, 55.9511059 -3.2031477, 55.9495552 -3.2091699, 55.9505200 -3.2066238, 55.9506581 -3.2090223, 55.9499459 -3.2090440, 55.9504209 -3.2072119, 55.9505668 -3.2093105, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9510094 -3.2037204, 55.9498173 -3.2082904, 55.9498530 -3.2092931, 55.9499100 -3.2084201, 55.9504567 -3.2091057, 55.9505740 -3.2087140, 55.9532127 -3.1978312, 55.9534187 -3.2003464, 55.9537368 -3.1946870, 55.9537500 -3.1946096, 55.9537219 -3.1906118, 55.9415518 -3.1758352, 55.9415631 -3.1758245, 55.9415746 -3.1758137, 55.9415854 -3.1758015, 55.9408910 -3.1748387, 55.9411539 -3.1749656, 55.9412175 -3.1755933, 55.9415879 -3.1748238, 55.9377776 -3.2165048, 55.9162825 -3.2606117, 55.9743623 -3.1997016, 55.9472618 -3.1852830, 55.9688495 -3.1843180, 55.9736313 -3.2504530, 55.9582298 -3.2268150, 55.9460585 -3.1892450, 55.9429037 -3.2078542, 55.9442284 -3.2027690, 55.9431025 -3.2203832, 55.9434367 -3.2195949, 55.9398197 -3.1822531, 55.9724777 -3.2416271, 55.9463680 -3.2170383, 55.9464520 -3.2170081, 55.9460480 -3.2212644, 55.9456505 -3.2177477, 55.9472510 -3.2151012, 55.9459910 -3.2187750, 55.9468356 -3.2159630, 55.9462622 -3.2145897, 55.9460151 -3.2225209, 55.9826346 -3.1875882, 55.9470490 -3.2155230, 55.9586309 -3.1903764, 55.9460632 -3.2204482, 55.9744650 -3.2049590, 55.9471070 -3.2126300, 55.9465828 -3.2144286, 55.9458930 -3.2127420, 55.9460218 -3.2127523, 55.9462614 -3.2149075, 55.9469392 -3.2157459, 55.9468703 -3.2158788, 55.9466500 -3.2155710, 55.9248058 -3.2496194, 55.9489596 -3.2105228, 55.9494472 -3.2102130, 55.9495769 -3.2099473, 55.9504859 -3.2078999, 55.9510015 -3.2097266, 55.9514905 -3.2100788, 55.9513702 -3.2115575, 55.9460126 -3.2207351, 55.9452758 -3.2335326, 55.9552911 -3.1906311, 55.9767910 -3.1761270, 55.9457861 -3.2218053, 55.9324470 -3.2604690, 55.9447263 -3.2504267, 55.9495320 -3.2122353, 55.9505780 -3.2098210, 55.9514971 -3.2122176, 55.9508641 -3.2099881, 55.9575799 -3.2074392, 55.9580520 -3.2065578, 55.9466880 -3.2153150, 55.9591363 -3.2144382, 55.9589630 -3.2123829, 55.9589427 -3.2121340, 55.9582616 -3.2096030, 55.9581637 -3.2094698, 55.9580113 -3.2092624, 55.9582374 -3.2089867, 55.9459800 -3.2223160, 55.9585716 -3.1897695, 55.9605718 -3.2003659, 55.9580127 -3.1896007, 55.9579047 -3.1888679, 55.9578403 -3.1887677, 55.9418430 -3.2160580, 55.9524450 -3.1890880, 55.9429888 -3.2211088, 55.9439438 -3.2188704, 55.9441393 -3.2180644, 55.9436529 -3.2196006, 55.9429336 -3.2206366, 55.9425916 -3.2009298, 55.9427456 -3.2017142, 55.9429785 -3.2019828, 55.9420344 -3.2038063, 55.9418227 -3.2036511, 55.9421758 -3.2031848, 55.9416648 -3.2030441, 55.9410490 -3.2037100, 55.9454049 -3.1915247, 55.9458208 -3.1909205, 55.9460150 -3.1908920, 55.9470537 -3.1917202, 55.9473009 -3.1911302, 55.9411221 -3.2032805, 55.9426900 -3.2041310, 55.9392380 -3.2127613, 55.9374410 -3.2166040, 55.9472539 -3.1909375, 55.9403718 -3.2037308, 55.9524171 -3.1893005, 55.9460599 -3.2291804, 55.9449245 -3.2516302, 55.9447213 -3.2505249, 55.9447141 -3.2506394, 55.9447337 -3.2503518, 55.9449025 -3.2479805, 55.9373900 -3.2387570, 55.9379488 -3.2323230, 55.9460417 -3.2226604, 55.9509774 -3.2113955, 55.9499766 -3.2119592, 55.9492824 -3.2109601, 55.9473573 -3.2114254, 55.9469393 -3.2131902, 55.9456430 -3.2126550, 55.9410190 -3.2179980, 55.9397765 -3.2200019, 55.9431741 -3.2209094, 55.9399557 -3.2200027, 55.9461264 -3.2216438, 55.9512360 -3.2191980, 55.9574980 -3.2089090, 55.9586178 -3.2076404, 55.9603694 -3.2018536, 55.9604541 -3.2011738, 55.9602930 -3.2010932, 55.9593762 -3.2008365, 55.9593510 -3.2005298, 55.9579544 -3.2067393, 55.9579150 -3.2068124, 55.9577295 -3.2066473, 55.9576259 -3.2073436, 55.9572855 -3.2073687, 55.9573896 -3.2066141, 55.9573609 -3.2064305, 55.9572746 -3.2059149, 55.9572260 -3.2056240, 55.9562845 -3.2025675, 55.9537733 -3.2038799, 55.9510870 -3.2135191, 55.9501610 -3.2185543, 55.9467690 -3.2234250, 55.9471780 -3.2179270, 55.9507047 -3.1827880, 55.9510404 -3.1846922, 55.9502539 -3.1878479, 55.9475890 -3.2135160, 55.9479040 -3.2136850, 55.9578281 -3.2064585, 55.9496669 -3.1898830, 55.9584000 -3.2182300, 55.9573850 -3.2145460, 55.9612410 -3.2084510, 55.9612608 -3.1947393, 55.9228326 -3.2329688, 55.9585590 -3.1894750, 55.9572253 -3.1905901, 55.9574810 -3.1829770, 55.9607690 -3.1844930, 55.9751120 -3.1699450, 55.9538149 -3.1866462, 55.9483102 -3.1849377, 55.9370308 -3.2067360, 55.9510250 -3.1900330, 55.9497190 -3.1919630, 55.9498540 -3.1918598, 55.9462100 -3.2053390, 55.9569075 -3.1939006, 55.9530794 -3.2035262, 55.9486670 -3.1956973, 55.9446609 -3.2150190, 55.9442170 -3.2180125, 55.9545384 -3.1981123, 55.9546639 -3.1975541, 55.9545246 -3.1975013, 55.9544395 -3.1974380, 55.9542190 -3.1973239, 55.9541769 -3.1973021, 55.9540060 -3.1972137, 55.9541028 -3.1972638, 55.9540721 -3.1972479, 55.9541197 -3.1979103, 55.9536404 -3.1975985, 55.9534114 -3.1989539, 55.9530711 -3.2010501, 55.9530164 -3.2013793, 55.9526918 -3.2040299, 55.9526098 -3.2039830, 55.9525837 -3.2041424, 55.9523991 -3.2052223, 55.9523166 -3.2057181, 55.9522681 -3.2060091, 55.9522441 -3.2061536, 55.9499431 -3.2078244, 55.9448704 -3.2331329, 55.9477760 -3.2103789, 55.9457989 -3.2102876, 55.9444244 -3.2075319, 55.9443619 -3.2058261, 55.9429955 -3.2045906, 55.9430360 -3.2042420, 55.9430480 -3.2039420, 55.9429877 -3.2038987, 55.9431079 -3.2050681, 55.9432521 -3.2093489, 55.9459797 -3.2144666, 55.9498937 -3.2187915, 55.9439154 -3.2057327, 55.9511115 -3.2111311, 55.9473254 -3.2153966, 55.9465369 -3.2167495, 55.9477795 -3.2138683, 55.9479863 -3.2061624, 55.9512634 -3.2030080, 55.9517147 -3.1997452, 55.9518558 -3.1995955, 55.9524797 -3.1968606, 55.9531523 -3.1916197, 55.9500529 -3.2073534, 55.9479753 -3.2059750, 55.9576925 -3.1843665, 55.9515601 -3.2026968, 55.9527506 -3.1965698, 55.9553600 -3.1895310, 55.9516170 -3.2029580, 55.9464020 -3.2364590, 55.9507080 -3.2063304, 55.9496423 -3.2119222, 55.9496638 -3.2118615, 55.9549792 -3.1927655, 55.9498027 -3.2080511, 55.9507785 -3.2057118, 55.9513450 -3.2025708, 55.9514350 -3.2026235, 55.9516199 -3.2027318, 55.9517068 -3.2027827, 55.9518670 -3.2035606, 55.9519125 -3.2029032, 55.9553391 -3.1910036, 55.9536150 -3.1883633, 55.9536535 -3.1880989, 55.9533030 -3.1880900, 55.9523240 -3.1963700, 55.9527200 -3.1967290, 55.9516311 -3.1963503, 55.9498942 -3.1936994, 55.9499018 -3.1935768, 55.9498329 -3.1910920, 55.9496897 -3.1897241, 55.9500792 -3.1891087, 55.9497794 -3.1891002, 55.9497983 -3.1889682, 55.9498111 -3.1888791, 55.9498363 -3.1887038, 55.9498804 -3.1883969, 55.9507029 -3.1895380, 55.9506408 -3.1885864, 55.9508998 -3.1880831, 55.9510625 -3.1882551, 55.9511343 -3.1876851, 55.9505405 -3.1879922, 55.9504690 -3.1879562, 55.9504288 -3.1865438, 55.9510930 -3.1843044, 55.9508281 -3.1833677, 55.9505903 -3.1838069, 55.9504166 -3.1838232, 55.9499013 -3.1834760, 55.9483685 -3.1896671, 55.9477348 -3.1940191, 55.9480205 -3.1941463, 55.9476619 -3.1952834, 55.9475711 -3.1964625, 55.9475446 -3.1965793, 55.9474740 -3.1968911, 55.9473325 -3.1972807, 55.9473047 -3.1975703, 55.9489363 -3.2064093, 55.9475764 -3.2058313, 55.9468749 -3.2055938, 55.9465925 -3.2054865, 55.9462020 -3.2059371, 55.9459497 -3.2061088, 55.9459497 -3.2062912, 55.9459489 -3.2062161, 55.9459016 -3.2068813, 55.9524898 -3.1736491, 55.9515512 -3.2128690, 55.9588848 -3.1901234, 55.9535003 -3.2044865, 55.9526359 -3.2032013, 55.9529843 -3.2011306, 55.9535044 -3.2004011, 55.9536675 -3.2005050, 55.9539653 -3.2006949, 55.9537081 -3.2003007, 55.9540962 -3.2002450, 55.9537909 -3.1998247, 55.9538415 -3.1995340, 55.9540148 -3.1994866, 55.9544427 -3.1980662, 55.9553629 -3.1953585, 55.9538261 -3.1967340, 55.9526921 -3.1998924, 55.9514403 -3.2044562, 55.9513975 -3.2047070, 55.9561726 -3.1860291, 55.9430598 -3.2193053, 55.9403560 -3.2253563, 55.9591927 -3.2424370, 55.9593810 -3.2409668, 55.9578254 -3.2417500, 55.9572789 -3.2414496, 55.9573001 -3.2497968, 55.9577040 -3.2497565, 55.9578001 -3.2499657, 55.9551108 -3.2236774, 55.9580462 -3.2504434, 55.9573737 -3.2496483, 55.9573346 -3.2494534, 55.9086875 -3.2285621, 55.9087635 -3.2285593, 55.9461958 -3.2134368, 55.9460248 -3.2126102, 55.9476322 -3.1921629, 55.9440530 -3.2064880, 55.9424189 -3.2051434, 55.9446843 -3.1840095, 55.9545520 -3.1869140, 55.9564993 -3.1858115, 55.9764471 -3.1711406, 55.9750156 -3.1711884, 55.9817870 -3.1759060, 55.9803418 -3.1792151, 55.9804368 -3.1789769, 55.9717098 -3.1715371, 55.9449000 -3.2054670, 55.9440628 -3.2044110, 55.9448580 -3.2052730, 55.9435020 -3.2024352, 55.9432539 -3.2025680, 55.9428317 -3.2018207, 55.9429314 -3.2012879, 55.9424297 -3.2007180, 55.9457344 -3.2006330, 55.9520417 -3.2029789, 55.9515458 -3.2098937, 55.9511224 -3.2096268, 55.9491465 -3.2108241, 55.9494123 -3.2120620, 55.9518969 -3.2025598, 55.9522247 -3.1996285, 55.9521342 -3.1995774, 55.9517385 -3.2025540, 55.9521478 -3.1999911, 55.9518750 -3.2026857, 55.9570492 -3.1932499, 55.9420700 -3.2221190, 55.9421739 -3.2218963, 55.9629541 -3.2004462, 55.9613613 -3.2013758, 55.9436142 -3.2051647, 55.9450120 -3.1915042, 55.9509356 -3.1902406, 55.9512130 -3.1899433, 55.9514327 -3.1791744, 55.9518970 -3.1777525, 55.9518910 -3.1778598, 55.9521229 -3.1772750, 55.9605194 -3.1745432, 55.9544280 -3.1965564, 55.9562232 -3.1975795, 55.9630294 -3.1912727, 55.9577847 -3.1940743, 55.9622871 -3.1825372, 55.9593812 -3.1775286, 55.9514170 -3.1863190, 55.9459887 -3.2186193, 55.9484476 -3.2048878, 55.9440199 -3.1928377, 55.9467666 -3.2048667, 55.9466960 -3.2046149, 55.9524190 -3.2092630, 55.9435870 -3.1925590, 55.9427426 -3.1970190, 55.9529708 -3.1966729, 55.9529509 -3.1973404, 55.9531629 -3.1967629, 55.9524196 -3.1984036, 55.9526199 -3.1984725, 55.9533643 -3.1992326, 55.9532211 -3.1977817, 55.9541145 -3.2019669, 55.9522016 -3.2030725, 55.9538577 -3.2057618, 55.9532266 -3.2030444, 55.9600994 -3.1836563, 55.9571910 -3.2077708, 55.9470088 -3.1865074, 55.9446418 -3.1854453, 55.9438908 -3.1833205, 55.9436868 -3.1832528, 55.9463737 -3.1994809, 55.9462839 -3.2154869, 55.9463231 -3.2360054, 55.9427001 -3.2368551, 55.9510803 -3.2099400, 55.9508119 -3.2093728, 55.9506980 -3.2096052, 55.9510473 -3.2098688, 55.9509598 -3.2058075, 55.9437277 -3.2031170, 55.9514618 -3.2102379, 55.9582002 -3.1893276, 55.9579896 -3.1895662, 55.9563319 -3.1887212, 55.9581296 -3.1899414, 55.9565980 -3.1890916, 55.9583902 -3.1900711, 55.9581410 -3.1892356, 55.9575530 -3.1882786, 55.9587130 -3.1904804, 55.9407050 -3.1770755, 55.9660610 -3.1753526, 55.9650007 -3.1762651, 55.9628476 -3.1784512, 55.9695931 -3.1723910, 55.9675676 -3.1741203, 55.9613719 -3.1803838, 55.9585145 -3.1835988, 55.9555659 -3.1887444, 55.9551846 -3.1885010, 55.9555428 -3.1890343, 55.9547780 -3.1878473, 55.9554986 -3.1892850, 55.9554159 -3.1897540, 55.9556173 -3.1925320, 55.9552824 -3.1886051, 55.9550127 -3.1965360, 55.9588948 -3.2226026, 55.9588367 -3.2230381, 55.9540378 -3.1993360, 55.9429686 -3.2825386, 55.9444997 -3.2050505, 55.9454499 -3.2050290, 55.9398717 -3.2039988, 55.9446523 -3.2044338, 55.9462626 -3.2131325, 55.9416940 -3.2014772, 55.9416091 -3.2031920, 55.9423736 -3.2037017, 55.9433906 -3.2033709, 55.9407524 -3.2038350, 55.9416779 -3.2026669, 55.9416673 -3.2032137, 55.9389981 -3.2114924, 55.9424514 -3.2039522, 55.9265283 -3.2084003, 55.9431477 -3.2092431, 55.9604656 -3.1823666, 55.9603525 -3.1825331, 55.9462802 -3.2152844, 55.9370625 -3.2366340, 55.9460303 -3.2165960, 55.9371077 -3.2348958, 55.9375068 -3.2343238, 55.9374269 -3.2345024, 55.9457249 -3.2172529, 55.9339030 -3.2104192, 55.9277517 -3.2091678, 55.9368800 -3.2378130, 55.9399617 -3.1815162, 55.9526370 -3.1734364, 55.9129439 -3.1781448, 55.9735700 -3.1770333, 55.9764377 -3.1660066, 55.9773601 -3.2412136, 55.9775460 -3.2409559, 55.9589778 -3.2242327, 55.9471241 -3.2018386, 55.9567573 -3.1568591, 55.9472046 -3.1869088, 55.9643969 -3.1550074, 55.9755855 -3.1668607, 55.9524631 -3.1889421, 55.9419257 -3.2048191, 55.9417451 -3.2041258, 55.9409114 -3.2097700, 55.9448531 -3.2027015, 55.9449462 -3.2026298, 55.9450377 -3.2025610, 55.9471998 -3.1971218, 55.9472163 -3.1970651, 55.9472459 -3.1969515, 55.9376674 -3.2169124, 55.9375217 -3.2165181, 55.9430311 -3.2839568, 55.9678281 -3.2362601, 55.9782301 -3.1817185, 55.9709053 -3.1720004, 55.9755743 -3.1668014, 55.9428019 -3.2845529, 55.9427523 -3.2832346, 55.9427891 -3.2843330, 55.9426584 -3.2803285, 55.9424714 -3.2803701, 55.9421898 -3.2791792, 55.9427331 -3.2828068, 55.9513163 -3.2950780, 55.9512626 -3.2960170, 55.9428432 -3.2880774, 55.9430772 -3.2879515, 55.9429213 -3.2881096, 55.9410736 -3.2842578, 55.9656426 -3.2745290, 55.9417354 -3.2158291, 55.9414320 -3.2180926, 55.9382505 -3.1916117, 55.9275226 -3.2095127, 55.9748738 -3.2379781, 55.9561231 -3.1987844, 55.9391841 -3.2128654, 55.9751211 -3.1634618, 55.9704606 -3.1709009, 55.9235220 -3.1748267, 55.9234436 -3.1750692, 55.9233856 -3.1748328, 55.9431786 -3.2083293, 55.9398684 -3.2196073, 55.9400581 -3.2188980, 55.9407826 -3.2168911, 55.9432142 -3.2138092, 55.9398220 -3.2197803, 55.9589932 -3.2102545, 55.9592742 -3.2136077, 55.9582132 -3.2095372, 55.9592301 -3.2130079, 55.9589560 -3.2081809, 55.9595314 -3.2070282, 55.9463571 -3.2082808, 55.9480934 -3.2060409, 55.9497597 -3.2074169, 55.9514814 -3.2042156, 55.9497095 -3.2073063, 55.9514958 -3.2041313, 55.9504340 -3.1780145, 55.9510376 -3.1777222, 55.9181892 -3.2127084, 55.9737983 -3.1644035, 55.9231651 -3.2343395, 55.9351263 -3.1792596, 55.9428222 -3.1894552, 55.9430175 -3.1898549, 55.9462604 -3.1881758, 55.9396572 -3.1699848, 55.9400291 -3.1697303, 55.9413456 -3.1835248, 55.9402730 -3.1715946, 55.9526606 -3.2018469, 55.9472291 -3.1962216, 55.9530272 -3.1892542, 55.9486923 -3.1882174, 55.9477347 -3.1956994, 55.9497047 -3.1880533, 55.9495157 -3.1879514, 55.9404684 -3.1808980, 55.9504304 -3.2083735, 55.9534027 -3.1920297, 55.9635396 -3.1950865, 55.9590719 -3.1912520, 55.9583336 -3.2079185, 55.9540290 -3.2007355, 55.9544769 -3.1974573, 55.9539860 -3.1972034, 55.9494269 -3.1858448, 55.9502517 -3.1806273, 55.9504584 -3.1859540, 55.9512562 -3.1805063, 55.9528901 -3.1862028, 55.9528944 -3.1767101, 55.9539319 -3.1873789, 55.9561721 -3.1565201, 55.9420361 -3.2670729, 55.9471692 -3.2089134, 55.9445564 -3.2071394, 55.9462004 -3.1850058, 55.9569349 -3.1875427, 55.9700768 -3.1718970, 55.9379594 -3.1925477, 55.9364386 -3.1946827, 55.9370518 -3.2026703, 55.9437069 -3.1924656, 55.9348055 -3.1945667, 55.9456119 -3.1903588, 55.9381931 -3.1953331, 55.9348402 -3.1942906, 55.9351301 -3.1942645, 55.9436795 -3.2029234, 55.9385199 -3.1950385, 55.9385854 -3.1951941, 55.9383344 -3.1929849, 55.9353447 -3.1944175, 55.9459525 -3.2060165, 55.9451633 -3.2049525, 55.9392818 -3.1963912, 55.9376070 -3.1783432, 55.9383368 -3.1931748, 55.9361196 -3.1946362, 55.9384241 -3.1975168, 55.9379608 -3.1783021, 55.9415183 -3.1817519, 55.9267200 -3.2093466, 55.9432724 -3.2018829, 55.9486091 -3.1930739, 55.9485570 -3.1935392, 55.9481394 -3.1916619, 55.9575992 -3.2083598, 55.9570070 -3.1853290, 55.9561918 -3.1852745, 55.9473239 -3.1974729, 55.9474125 -3.1971623, 55.9475008 -3.1967728, 55.9478313 -3.1953377, 55.9479185 -3.1950739, 55.9479678 -3.1948846, 55.9492026 -3.1944624, 55.9495199 -3.1939483, 55.9468275 -3.1914896, 55.9488466 -3.1866449, 55.9487847 -3.1860065, 55.9438771 -3.2190360, 55.9414085 -3.2235025, 55.9524023 -3.1867211, 55.9555053 -3.1853840, 55.9521101 -3.1881430, 55.9525000 -3.1872298, 55.9466587 -3.2084167, 55.9478903 -3.1915085, 55.9459447 -3.1909020, 55.9478547 -3.1881410, 55.9486424 -3.1865786, 55.9496783 -3.1871360, 55.9485947 -3.1945597, 55.9484900 -3.1938871, 55.9520969 -3.1883010, 55.9486315 -3.1920775, 55.9472830 -3.1916106, 55.9457476 -3.1909342, 55.9485463 -3.1864684, 55.9483926 -3.1950195, 55.9485587 -3.1943530, 55.9480207 -3.1915820, 55.9460305 -3.1922264, 55.9483248 -3.1864306, 55.9492997 -3.1869455, 55.9484218 -3.1951206, 55.9485926 -3.1942539, 55.9476976 -3.1919549, 55.9509189 -3.1904398, 55.9478483 -3.1913274, 55.9496956 -3.1870785, 55.9462614 -3.2144247, 55.9426513 -3.2033463, 55.9561166 -3.2020559, 55.9575951 -3.1993135, 55.9560603 -3.1927566, 55.9494442 -3.2078565, 55.9522731 -3.2016642, 55.9530413 -3.1976567, 55.9423834 -3.1891736, 55.9577513 -3.2066055, 55.9539831 -3.1996939, 55.9601534 -3.2010233, 55.9474107 -3.1857005, 55.9504170 -3.1756059, 55.9505168 -3.1753619, 55.9519673 -3.1889358, 55.9520301 -3.1896005, 55.9521145 -3.1891397, 55.9245851 -3.2217825, 55.9664930 -3.1948692, 55.9659495 -3.1909016, 55.9369709 -3.2238338, 55.9322096 -3.2283435, 55.9074156 -3.2563499, 55.9073527 -3.2575753, 55.9423719 -3.1449189, 55.9430156 -3.1499440, 55.9431294 -3.1482150, 55.9433496 -3.1499648, 55.9434845 -3.1482740, 55.9442758 -3.1483804, 55.9447373 -3.1490083, 55.9396025 -3.1913584, 55.9352245 -3.2129869, 55.9732340 -3.1870517, 55.9431483 -3.2208634, 55.9431533 -3.2208722, 55.9431672 -3.2208971, 55.9444914 -3.2039187, 55.9454470 -3.2056810, 55.9455097 -3.2056957, 55.9442841 -3.1970931, 55.9453214 -3.2056259, 55.9383523 -3.2265410, 55.9412518 -3.2237478, 55.9391150 -3.2260666, 55.9431598 -3.2208839, 55.9588831 -3.2114011, 55.9650310 -3.1952624, 55.9445881 -3.2014053, 55.9421366 -3.1818857, 55.9533521 -3.1936660, 55.9388452 -3.1790659, 55.9452194 -3.1845036, 55.9350508 -3.1940011, 55.9585188 -3.1644249, 55.9593563 -3.2549832, 55.9601436 -3.2558120, 55.9603846 -3.2565330, 55.9604422 -3.2566980, 55.9748372 -3.2381839, 55.9751724 -3.2380439, 55.9711706 -3.2421740, 55.9751875 -3.2384831, 55.9712345 -3.2422923, 55.9430340 -3.1847582, 55.9431510 -3.1850183, 55.9446444 -3.1969562, 55.9437264 -3.1923238, 55.9428649 -3.2112864, 55.9393929 -3.2264816, 55.9405357 -3.2246618, 55.9437303 -3.2113198, 55.9517703 -3.2028837, 55.9450561 -3.1854467, 55.9454644 -3.1843039, 55.9447791 -3.1851557, 55.9447317 -3.1852668, 55.9446739 -3.1853850, 55.9506503 -3.1887550, 55.9586760 -3.1904335, 55.9459152 -3.2048753, 55.9457110 -3.2046766, 55.9622313 -3.1960833, 55.9488399 -3.2138338, 55.9509095 -3.2095661, 55.9506309 -3.2061083, 55.9511164 -3.2060639, 55.9544956 -3.1996255, 55.9545750 -3.1991152, 55.9525280 -3.2044479, 55.9524770 -3.2041438, 55.9533167 -3.2002814, 55.9533627 -3.2968088, 55.9534681 -3.2961183, 55.9534317 -3.2962880, 55.9419274 -3.2677863, 55.9534304 -3.2964763, 55.9512581 -3.2961392, 55.9534512 -3.2963903, 55.9379028 -3.1838572, 55.9385188 -3.1804921, 55.9440195 -3.1801845, 55.9767916 -3.1745800, 55.9379280 -3.1997215, 55.9655439 -3.2732183, 55.9656127 -3.2709323, 55.9651310 -3.2741321, 55.9655924 -3.2711422, 55.9653338 -3.2728138, 55.9655262 -3.2738894, 55.9656260 -3.2705743, 55.9661413 -3.2745340, 55.9651286 -3.2696496, 55.9655823 -3.2732115, 55.9651389 -3.2742406, 55.9526548 -3.1971889, 55.9537668 -3.1902693, 55.9536977 -3.1912623, 55.9521730 -3.1918404, 55.9226881 -3.2490752, 55.9251539 -3.2458905, 55.9248346 -3.2543275, 55.9252669 -3.2596328, 55.9374976 -3.1806164, 55.9389691 -3.1803219, 55.9372983 -3.1808444, 55.9395810 -3.1916680, 55.9382960 -3.1915943, 55.9437949 -3.1828597, 55.9415966 -3.1785656, 55.9449358 -3.1841532, 55.9419979 -3.1791165, 55.9443629 -3.1809005, 55.9457233 -3.1826212, 55.9403689 -3.1759804, 55.9578375 -3.1855691, 55.9577188 -3.1854711, 55.9570718 -3.1867391, 55.9573525 -3.1857881, 55.9577559 -3.1854347, 55.9573946 -3.1857377, 55.9578561 -3.1853362, 55.9572831 -3.1858711, 55.9581118 -3.1850848, 55.9574938 -3.1856190, 55.9582219 -3.1849767, 55.9576798 -3.1858665, 55.9248045 -3.2100047, 55.9247025 -3.2100678, 55.9274756 -3.2091201, 55.9269189 -3.2094159, 55.9289228 -3.2092688, 55.9254653 -3.2096301, 55.9252500 -3.2096757, 55.9269727 -3.2090631, 55.9290803 -3.2097412, 55.9259390 -3.2095229, 55.9280620 -3.2092020, 55.9246481 -3.2100800, 55.9320058 -3.2097519, 55.9244481 -3.2103373, 55.9294664 -3.2094139, 55.9294013 -3.2094010, 55.9267933 -3.2094073, 55.9293168 -3.2093923, 55.9262463 -3.2095051, 55.9261281 -3.2094874, 55.9286670 -3.2092547, 55.9245093 -3.2096867, 55.9549491 -3.1518173, 55.9549237 -3.1446490, 55.9549717 -3.1475017, 55.9554516 -3.1404952, 55.9381420 -3.2180332, 55.9693226 -3.1726044, 55.9608511 -3.1806444, 55.9785772 -3.1680183, 55.9701325 -3.1699531, 55.9653751 -3.1766360, 55.9703622 -3.1822317, 55.9759825 -3.1825687, 55.9797482 -3.1979763, 55.9073767 -3.2581589, 55.9075931 -3.2558164, 55.9431400 -3.2080436, 55.9625044 -3.2362710, 55.9627903 -3.2341275, 55.9581259 -3.1898042, 55.9581019 -3.1901113, 55.9629073 -3.1944999, 55.9514989 -3.2098689, 55.9572217 -3.1988976, 55.9569734 -3.2030163, 55.9535853 -3.1955773, 55.9263143 -3.2084849, 55.9174952 -3.2773520, 55.9375981 -3.2260815, 55.9378921 -3.2318406, 55.9391368 -3.2261256, 55.9334605 -3.2453422, 55.9414710 -3.2036216, 55.9295687 -3.1756519, 55.9353379 -3.1982447, 55.9240780 -3.1729198, 55.9333823 -3.1800372, 55.9269676 -3.1644151, 55.9264292 -3.1646478, 55.9275049 -3.1644260, 55.9275653 -3.1640491, 55.9275714 -3.1644217, 55.9274305 -3.1643195, 55.9274977 -3.1640447, 55.9242094 -3.1728587, 55.9239552 -3.1723571, 55.9240756 -3.1746808, 55.9241838 -3.1735301, 55.9230650 -3.1714407, 55.9232656 -3.1716767, 55.9542485 -3.1780183, 55.9483648 -3.2095727, 55.9486281 -3.2213235, 55.9606193 -3.1813095, 55.9657504 -3.1756144, 55.9682374 -3.1740770, 55.9634187 -3.1784171, 55.9661173 -3.1752952, 55.9683279 -3.1734427, 55.9749611 -3.1671987, 55.9637290 -3.1774461, 55.9660965 -3.1759111, 55.9667902 -3.1747478, 55.9725422 -3.1752884, 55.9644870 -3.1767286, 55.9684920 -3.1733359, 55.9621788 -3.1792688, 55.9456613 -3.2057187, 55.9462480 -3.2126362, 55.9736032 -3.1729794, 55.9375948 -3.1784176, 55.9371960 -3.1779642, 55.9312746 -3.1719521, 55.9338124 -3.1784664, 55.9492753 -3.1855034, 55.9473523 -3.1859232, 55.9410964 -3.1808815, 55.9375777 -3.1779460, 55.9358754 -3.1760269, 55.9313945 -3.1717080, 55.9269436 -3.1736547, 55.9345630 -3.1791442, 55.9356662 -3.2012277, 55.9383304 -3.1790799, 55.9378124 -3.1781642, 55.9316186 -3.1716761, 55.9354709 -3.1798259, 55.9504193 -3.1866153, 55.9519102 -3.2244910, 55.9573976 -3.1618135, 55.9506617 -3.1888466, 55.9490741 -3.1893997, 55.9492048 -3.1931875, 55.9529899 -3.1973604, 55.9528284 -3.1902144, 55.9527657 -3.1913036, 55.9567716 -3.1807817, 55.9533414 -3.1913502, 55.9525962 -3.1906138, 55.9428288 -3.1846229, 55.9458839 -3.1909124, 55.9456783 -3.1909904, 55.9463053 -3.1838351, 55.9849796 -3.1929699, 55.9241951 -3.2516849, 55.9235770 -3.2506294, 55.9241147 -3.2517815, 55.9268426 -3.1666054, 55.9323952 -3.2102340, 55.9271775 -3.2122387, 55.9406634 -3.2170179, 55.9321089 -3.2101997, 55.9309744 -3.2100917, 55.9308794 -3.2100746, 55.9217848 -3.2112290, 55.9225263 -3.2116137, 55.9193505 -3.1670289, 55.9198686 -3.1673390, 55.9500237 -3.1859641, 55.9522020 -3.2008125, 55.9437654 -3.2187545, 55.9504916 -3.1861886, 55.9506853 -3.1853773, 55.9513815 -3.1997735, 55.9513880 -3.1997267, 55.9514184 -3.1995207, 55.9514207 -3.1994931, 55.9517524 -3.1953405, 55.9517542 -3.1953203, 55.9517756 -3.1951610, 55.9517804 -3.1951206, 55.9517840 -3.1950856, 55.9517917 -3.1950229, 55.9517953 -3.1949985, 55.9517994 -3.1949645, 55.9518036 -3.1949390, 55.9518048 -3.1949146, 55.9518083 -3.1948806, 55.9518137 -3.1948519, 55.9518190 -3.1947903, 55.9518220 -3.1947584, 55.9518274 -3.1947297, 55.9518298 -3.1947042, 55.9518303 -3.1953437, 55.9518595 -3.1951780, 55.9518708 -3.1951291, 55.9518910 -3.1950091, 55.9518946 -3.1942642, 55.9518982 -3.1942423, 55.9518987 -3.1949751, 55.9519025 -3.1942205, 55.9519061 -3.1941986, 55.9519071 -3.1949177, 55.9519083 -3.1941742, 55.9519148 -3.1941472, 55.9519169 -3.1941292, 55.9519234 -3.1941009, 55.9519350 -3.1947287, 55.9519479 -3.1939300, 55.9519536 -3.1938927, 55.9519594 -3.1938606, 55.9519651 -3.1938272, 55.9519673 -3.1938105, 55.9519709 -3.1937809, 55.9519730 -3.1937616, 55.9519772 -3.1945152, 55.9519820 -3.1944854, 55.9519831 -3.1937064, 55.9519867 -3.1936768, 55.9519909 -3.1944302, 55.9519932 -3.1936370, 55.9519969 -3.1943866, 55.9519982 -3.1935997, 55.9520083 -3.1935406, 55.9520094 -3.1942932, 55.9520141 -3.1942687, 55.9520165 -3.1942528, 55.9520195 -3.1942305, 55.9520205 -3.1934686, 55.9520242 -3.1942103, 55.9520256 -3.1934287, 55.9520278 -3.1941859, 55.9520328 -3.1933979, 55.9520385 -3.1933568, 55.9520464 -3.1932976, 55.9520498 -3.1940914, 55.9520534 -3.1940627, 55.9520544 -3.1932501, 55.9520575 -3.1940329, 55.9520580 -3.1932257, 55.9520617 -3.1940128, 55.9520644 -3.1931845, 55.9520781 -3.1931100, 55.9522180 -3.2035286, 55.9522476 -3.2035315, 55.9522761 -3.2035428, 55.9523007 -3.1932461, 55.9523075 -3.1931928, 55.9523702 -3.1928516, 55.9523787 -3.1927914, 55.9524973 -3.1927038, 55.9525369 -3.1928318, 55.9525391 -3.1927678, 55.9638490 -3.2091504, 55.9389663 -3.2013275, 55.9700855 -3.1735476, 55.9701547 -3.1858393, 55.9514046 -3.2116423, 55.9413339 -3.2710077, 55.9413445 -3.2708146, 55.9710599 -3.2100066, 55.9711012 -3.2093205, 55.9629763 -3.2004815, 55.9710811 -3.2096935, 55.9342382 -3.1671304, 55.9443702 -3.1853406, 55.9396263 -3.1829720, 55.9407158 -3.1849880, 55.9409652 -3.1851060, 55.9411294 -3.1853959, 55.9409378 -3.1851043, 55.9409212 -3.1850865, 55.9408927 -3.1851058, 55.9408824 -3.1851412, 55.9250719 -3.2093337, 55.9695710 -3.1711010, 55.9581122 -3.1717750, 55.9587969 -3.1719078, 55.9593630 -3.1715405, 55.9597638 -3.1717472, 55.9596608 -3.1714218, 55.9609479 -3.1710198, 55.9625299 -3.1711547, 55.9632270 -3.1710142, 55.9643430 -3.1707813, 55.9645162 -3.1702580, 55.9685365 -3.1680214, 55.9672024 -3.1745196, 55.9662045 -3.1758253, 55.9536869 -3.1905900, 55.9699452 -3.1597683, 55.9691782 -3.1658280, 55.9523009 -3.1919415, 55.9337398 -3.1670223, 55.9332168 -3.1662616, 55.9330352 -3.1660131, 55.9332806 -3.1663576, 55.9489972 -3.1907968, 55.9496736 -3.2095516, 55.9466096 -3.2157282, 55.9489839 -3.1929807, 55.9549137 -3.2859373, 55.9269556 -3.1843910, 55.9555761 -3.2863843, 55.9406804 -3.1723240, 55.9550663 -3.1537383, 55.9277228 -3.2305307, 55.9338258 -3.2369899, 55.9437419 -3.2035084, 55.9169756 -3.2120428, 55.9548088 -3.1927863, 55.9520842 -3.1995492, 55.9541892 -3.2015393, 55.9532255 -3.2070146, 55.9427851 -3.2011908, 55.9273784 -3.1875336, 55.9273713 -3.1874512, 55.9441079 -3.1919941, 55.9265863 -3.2092898, 55.9503190 -3.1916579, 55.9469467 -3.1868746, 55.9469811 -3.1866713, 55.9349914 -3.1790260, 55.9509401 -3.1790287, 55.9527199 -3.1794014, 55.9632358 -3.1796142, 55.9501695 -3.1909428, 55.9274324 -3.1996630, 55.9310201 -3.2640394, 55.9303417 -3.2637536, 55.9303636 -3.2638502, 55.9305298 -3.2635743, 55.9308144 -3.2639192, 55.9018528 -3.2249445, 55.9458278 -3.1977595, 55.9357289 -3.2103587, 55.9426782 -3.2016234, 55.9459543 -3.2110196, 55.9490200 -3.2103883, 55.9593280 -3.2143392, 55.9545977 -3.1418305, 55.9374032 -3.1711512, 55.9392787 -3.1786578, 55.9392916 -3.1784800, 55.9410201 -3.1806656, 55.9409384 -3.1805218, 55.9435127 -3.1836307, 55.9446441 -3.1839145, 55.9353259 -3.1974274, 55.9356823 -3.2014008, 55.9372592 -3.2021206, 55.9432337 -3.2066617, 55.9716423 -3.1733651, 55.9780340 -3.1804425, 55.9803312 -3.1788000, 55.9484950 -3.1869711, 55.9485719 -3.1869309, 55.9429165 -3.1831794, 55.9463406 -3.1997703, 55.9450154 -3.1980120, 55.9750142 -3.2192282, 55.9506808 -3.1887592, 55.9700986 -3.1698502, 55.9702196 -3.1702168, 55.9752558 -3.1806246, 55.9750583 -3.1806968, 55.9753808 -3.1803118, 55.9273555 -3.2742181, 55.9276617 -3.2736646, 55.9277478 -3.2723148, 55.9278153 -3.2730433, 55.9312295 -3.1720873, 55.9312185 -3.1718146, 55.9367281 -3.2073693, 55.9194696 -3.2656157, 55.9359755 -3.1801084, 55.9344353 -3.2125210, 55.9239739 -3.2513488, 55.9265097 -3.2760604, 55.9268770 -3.2740426, 55.9340161 -3.1746636, 55.9520998 -3.1898519, 55.9522424 -3.1890178, 55.9467924 -3.1855561, 55.9428529 -3.2085302, 55.9438281 -3.2186053, 55.9457016 -3.1899747, 55.9606571 -3.2015356, 55.9622495 -3.1990119, 55.9436603 -3.2189402, 55.9428747 -3.2225218, 55.9441478 -3.2185498, 55.9453485 -3.2171316, 55.9528443 -3.2826346, 55.9525739 -3.2905955, 55.9269823 -3.1640067, 55.9275143 -3.1636040, 55.9269746 -3.1638464, 55.9258469 -3.1648168, 55.9269718 -3.1636040, 55.9536039 -3.2004645, 55.9541733 -3.1959554, 55.9539972 -3.1945597, 55.9557737 -3.1922262, 55.9486496 -3.1940701, 55.9479383 -3.1949977, 55.9471021 -3.1971869, 55.9459359 -3.2044651, 55.9410985 -3.2183716, 55.9417528 -3.2165088, 55.9230518 -3.1726728, 55.9233383 -3.1720153, 55.9229568 -3.2110453, 55.9224147 -3.2108712, 55.9224536 -3.2108475, 55.9624754 -3.2326403, 55.9531172 -3.2042505, 55.9547774 -3.2196877, 55.9610228 -3.2289430, 55.9771785 -3.2459884, 55.9272641 -3.2496416, 55.9503933 -3.1777718, 55.9611416 -3.1627621, 55.9710220 -3.1729438, 55.9484210 -3.1872643, 55.9442196 -3.1823211, 55.9487715 -3.1838332, 55.9310070 -3.1625786, 55.9310400 -3.1625989, 55.9285398 -3.2100476, 55.9503683 -3.2078227, 55.9492302 -3.1861131, 55.9464428 -3.2144326, 55.9302432 -3.1758973, 55.9302956 -3.1759280, 55.9305753 -3.1761248, 55.9303422 -3.1759669, 55.9305617 -3.1761991, 55.9149038 -3.1653059, 55.9149515 -3.1653569, 55.9192762 -3.1670567, 55.9190764 -3.1840963, 55.9275143 -3.1636040, 55.9269718 -3.1636040, 55.9448310 -3.1949994, 55.9447936 -3.1961912, 55.9446376 -3.1965778, 55.9269823 -3.1640067, 55.9269746 -3.1638464, 55.9445589 -3.1947495, 55.9444142 -3.1965059, 55.9258509 -3.1647719, 55.9447377 -3.1971839, 55.9442766 -3.1978649, 55.9590496 -3.2185241, 55.9634063 -3.1905331, 55.9570806 -3.1866874, 55.9579863 -3.1811608, 55.9419851 -3.1817354, 55.9420181 -3.1817682, 55.9426269 -3.1823902, 55.9441244 -3.1834199, 55.9436319 -3.1832335, 55.9394450 -3.1794906, 55.9429144 -3.1826352, 55.9449915 -3.1837960, 55.9387155 -3.1789608, 55.9430993 -3.2022474, 55.9432017 -3.2024329, 55.9416804 -3.2026036, 55.9324266 -3.1585275, 55.9396108 -3.1802505, 55.9226141 -3.1712965, 55.9441352 -3.1838172, 55.9402010 -3.1806961, 55.9430010 -3.1832231, 55.9405968 -3.1809949, 55.9417832 -3.1819934, 55.9389299 -3.1796142, 55.9422498 -3.1824651, 55.9422007 -3.1824177, 55.9407127 -3.1810825, 55.9416801 -3.1819013, 55.9418646 -3.1820790, 55.9566001 -3.1617669, 55.9485654 -3.2238711, 55.9601987 -3.1784502, 55.9417129 -3.1849464, 55.9417884 -3.1851916, 55.9418282 -3.1853346, 55.9418526 -3.1852528, 55.9418744 -3.1849589, 55.9418899 -3.1847817, 55.9418905 -3.1855192, 55.9419227 -3.1854387, 55.9420262 -3.1854659, 55.9421747 -3.1855648, 55.9497766 -3.1880920, 55.9412750 -3.1446800, 55.9415424 -3.1458664, 55.9381006 -3.2918884, 55.9521152 -3.1889313, 55.9348643 -3.1686663, 55.9461675 -3.2083866, 55.9603728 -3.2011331, 55.9600158 -3.2009544, 55.9599868 -3.2009399, 55.9456493 -3.2062730, 55.9330745 -3.2607364, 55.9416959 -3.1484162, 55.9207513 -3.1600951, 55.9565253 -3.1867411, 55.9382910 -3.1812348, 55.9387708 -3.1815664, 55.9393704 -3.1819547, 55.9386998 -3.1815256, 55.9391687 -3.1818314, 55.9391994 -3.1818509, 55.9418959 -3.1837485, 55.9418211 -3.1837096, 55.9520027 -3.2062005, 55.9523984 -3.2038646, 55.9530497 -3.2000438, 55.9534470 -3.1976948, 55.9535975 -3.1968237, 55.9438526 -3.1964947, 55.9574672 -3.1996888, 55.9558685 -3.2023407, 55.9357235 -3.2103787, 55.9564824 -3.2020734, 55.9251361 -3.2602340, 55.9254914 -3.2593484, 55.9226813 -3.2869674, 55.9226804 -3.2865306, 55.9244531 -3.2772357, 55.9457070 -3.2036262, 55.9617178 -3.1799032, 55.9609525 -3.1843888, 55.9718740 -3.2631817, 55.9726124 -3.2667334, 55.9447090 -3.1977550, 55.9379590 -3.1812949, 55.9562984 -3.1984034, 55.9562823 -3.1983948, 55.9511467 -3.1887459, 55.9491345 -3.1940862, 55.9418000 -3.1789399, 55.9460012 -3.2184457, 55.9354932 -3.2368783, 55.9811288 -3.1900190, 55.9504645 -3.1888468, 55.9512470 -3.1890625, 55.9561109 -3.1927794, 55.9594281 -3.2190345, 55.9592101 -3.2187091, 55.9594112 -3.2188445, 55.9591813 -3.2186897, 55.9592873 -3.2187611, 55.9591452 -3.2145692, 55.9614502 -3.1995923, 55.9557019 -3.1925998, 55.9506454 -3.1833436, 55.9501282 -3.1886800, 55.9492040 -3.1911503, 55.9501474 -3.1919776, 55.9501671 -3.1923382, 55.9590552 -3.1913244, 55.9504193 -3.2001988, 55.9505097 -3.1997700, 55.9527128 -3.2015822, 55.9619626 -3.1978807, 55.9575704 -3.1997457, 55.9563641 -3.1858503, 55.9530844 -3.1892765, 55.9735019 -3.1681649, 55.9597144 -3.1824451, 55.9584764 -3.1835758, 55.9673363 -3.2476441, 55.9592778 -3.1901889, 55.9425986 -3.2065382, 55.9480934 -3.1947062, 55.9375231 -3.2086299, 55.9611799 -3.1900622, 55.9475726 -3.1917992, 55.9282591 -3.2096099, 55.9443966 -3.1836641, 55.9328277 -3.2102719, 55.9563144 -3.1853375, 55.9563910 -3.1855135, 55.9560587 -3.1853594, 55.9559381 -3.1856471, 55.9780598 -3.1805503, 55.9782204 -3.1808990, 55.9387622 -3.1734552, 55.9387870 -3.1735062, 55.9388074 -3.1735482, 55.9388275 -3.1735961, 55.9389888 -3.1717191, 55.9390958 -3.1739542, 55.9396811 -3.1731682, 55.9400456 -3.1761228, 55.9408960 -3.1768412, 55.9565748 -3.1857636, 55.9542906 -3.1861464, 55.9604516 -3.1823872, 55.9605594 -3.1822284, 55.9613996 -3.1820673, 55.9603660 -3.1816080, 55.9606880 -3.1810699, 55.9369677 -3.2108383, 55.9500057 -3.2078391, 55.9492651 -3.1928568, 55.9492681 -3.1928747, 55.9532061 -3.1907837, 55.9557574 -3.1923186, 55.9544405 -3.1913711, 55.9545361 -3.1914287, 55.9539327 -3.1863517, 55.9457035 -3.2045586, 55.9595875 -3.1826332, 55.9595195 -3.1827244, 55.9607917 -3.1806186, 55.9505000 -3.1893565, 55.9509718 -3.1888797, 55.9509023 -3.1888514, 55.9602934 -3.1864558, 55.9580853 -3.1891489, 55.9525959 -3.1925077, 55.9506624 -3.1904103, 55.9507033 -3.1908798, 55.9511065 -3.1889687, 55.9281900 -3.2092341, 55.9275755 -3.2091498, 55.9219280 -3.1788973, 55.9492455 -3.1893451, 55.9498216 -3.1888060, 55.9456721 -3.2183737, 55.9580202 -3.1851749, 55.9595167 -3.1836388, 55.9375402 -3.2341841, 55.9374313 -3.2336362, 55.9383738 -3.2308953, 55.9384149 -3.2307759, 55.9375260 -3.2342477, 55.9368627 -3.2362988, 55.9377385 -3.2338819, 55.9518891 -3.1996221, 55.9520193 -3.2031623, 55.9571270 -3.1879784, 55.9569058 -3.1873560, 55.9575859 -3.1880531, 55.9489093 -3.1872526, 55.9489961 -3.1873020, 55.9497912 -3.1875398, 55.9469260 -3.1971063, 55.9468711 -3.1973098, 55.9468419 -3.1974179, 55.9477216 -3.1942184, 55.9498654 -3.1872300, 55.9499346 -3.1872649, 55.9495368 -3.1870648, 55.9366262 -3.2789069, 55.9504575 -3.1842655, 55.9495411 -3.1835954, 55.9505080 -3.1843266, 55.9496224 -3.1870411, 55.9503520 -3.1853604, 55.9503997 -3.1842260, 55.9490417 -3.1857303, 55.9566721 -3.1719836, 55.9551528 -3.1962671, 55.9506736 -3.1858277, 55.9506040 -3.1855672, 55.9505002 -3.1861418, 55.9504052 -3.1874662, 55.9504159 -3.1874711, 55.9504267 -3.1874760, 55.9504373 -3.1874809, 55.9332627 -3.2293915, 55.9431451 -3.1776866, 55.9498761 -3.1930603, 55.9499058 -3.1934663, 55.9498145 -3.1930381, 55.9508603 -3.1830939, 55.9486873 -3.1939415, 55.9663705 -3.1750858, 55.9646101 -3.1766025, 55.9695051 -3.1724684, 55.9692540 -3.1726808, 55.9659991 -3.1754152, 55.9513595 -3.2114694, 55.9503586 -3.2093043, 55.9489892 -3.2104514, 55.9509410 -3.2098198, 55.9443540 -3.2014790, 55.9424111 -3.2032571, 55.9428546 -3.2034153, 55.9410667 -3.2032847, 55.9408607 -3.2037023, 55.9509436 -3.1826714, 55.9511264 -3.1815271, 55.9485211 -3.1937338, 55.9457049 -3.2017505, 55.9494976 -3.1832041, 55.9493407 -3.1826552, 55.9445230 -3.1852101, 55.9342354 -3.2104629, 55.9308204 -3.2100640, 55.9519877 -3.1777932, 55.9221514 -3.1535849, 55.9216610 -3.1548109, 55.9221123 -3.1536690, 55.9219920 -3.1539768, 55.9218556 -3.1543133, 55.9218887 -3.1542292, 55.9216028 -3.1545854, 55.9217192 -3.1545460, 55.9217490 -3.1545148, 55.9220531 -3.1536922, 55.9512729 -3.2953795, 55.9508519 -3.2915917, 55.9508650 -3.2918021, 55.9510584 -3.2907423, 55.9511428 -3.2906352, 55.9524090 -3.1999436, 55.9535635 -3.1977820, 55.9538687 -3.1922380, 55.9773393 -3.1724494, 55.9769800 -3.1722296, 55.9570561 -3.1868309, 55.9545683 -3.1975115, 55.9533858 -3.2003255, 55.9521910 -3.1770091, 55.9789535 -3.2110248, 55.9492258 -3.1822133, 55.9485446 -3.1779102, 55.9449763 -3.1994667, 55.9493277 -3.1830946, 55.9308970 -3.2761417, 55.9308699 -3.2764985, 55.9449994 -3.1905191, 55.9450146 -3.1904231, 55.9450298 -3.1903272, 55.9450449 -3.1902313, 55.9451338 -3.1906532, 55.9453646 -3.1914973, 55.9474907 -3.1912396, 55.9455563 -3.1906327, 55.9473547 -3.1907578, 55.9472481 -3.1873561, 55.9472634 -3.1872646, 55.9472809 -3.1871602, 55.9472964 -3.1870676, 55.9475422 -3.1874943, 55.9475575 -3.1874028, 55.9475750 -3.1872984, 55.9475905 -3.1872058, 55.9385351 -3.1788147, 55.9389978 -3.1791896, 55.9390424 -3.1790541, 55.9385297 -3.1777184, 55.9393104 -3.1793752, 55.9379216 -3.1782656, 55.9395588 -3.1795881, 55.9471706 -3.1875904, 55.9472026 -3.1876928, 55.9472333 -3.1877797, 55.9473065 -3.1867806, 55.9473617 -3.1867210, 55.9474310 -3.1878868, 55.9474791 -3.1878348, 55.9474896 -3.1894394, 55.9475351 -3.1877754, 55.9476372 -3.1868653, 55.9476704 -3.1869573, 55.9477335 -3.1882821, 55.9411719 -3.1809503, 55.9407447 -3.1806858, 55.9407899 -3.1790526, 55.9420479 -3.1791611, 55.9390017 -3.1784821, 55.9215832 -3.1791111, 55.9466232 -3.1903104, 55.9398954 -3.2195349, 55.9401102 -3.2187383, 55.9404460 -3.2175554, 55.9427929 -3.1825316, 55.9227217 -3.1743920, 55.9228810 -3.1754273, 55.9231124 -3.1754193, 55.9229249 -3.1782458, 55.9499694 -3.1797507, 55.9499757 -3.1798160, 55.9500637 -3.1794660, 55.9500938 -3.1794485, 55.9509274 -3.1808976, 55.9509324 -3.1810462, 55.9420724 -3.1830370, 55.9509016 -3.1807350, 55.9509075 -3.1807070, 55.9509169 -3.1808593, 55.9509634 -3.1804904, 55.9500360 -3.1798094, 55.9500832 -3.1798450, 55.9501211 -3.1798897, 55.9501723 -3.1796916, 55.9501877 -3.1796344, 55.9502096 -3.1797430, 55.9502160 -3.1797125, 55.9502405 -3.1796744, 55.9503400 -3.1800982, 55.9503693 -3.1801329, 55.9504024 -3.1799672, 55.9504254 -3.1799918, 55.9506541 -3.1793734, 55.9507349 -3.1794177, 55.9506189 -3.1835665, 55.9507741 -3.1824251, 55.9506746 -3.1830976, 55.9500035 -3.1797701, 55.9512610 -3.1800100, 55.9512749 -3.1799374, 55.9439525 -3.1820438, 55.9445315 -3.1823329, 55.9469241 -3.1821671, 55.9471624 -3.1824118, 55.9453523 -3.1818869, 55.9439473 -3.1828226, 55.9443287 -3.1812574, 55.9442897 -3.1818378, 55.9474180 -3.1841339, 55.9468876 -3.1828168, 55.9520043 -3.1768950, 55.9462478 -3.1850509, 55.9468669 -3.1856272, 55.9468472 -3.1856084, 55.9473137 -3.1851136, 55.9461822 -3.1850459, 55.9526834 -3.1734548, 55.9343702 -3.2060066, 55.9229601 -3.1790391, 55.9234202 -3.1790544, 55.9511538 -3.1760663, 55.9508387 -3.1774957, 55.9385096 -3.1950376, 55.9487062 -3.1943344, 55.9487553 -3.1962659, 55.9495866 -3.1950358, 55.9495999 -3.1953020, 55.9496043 -3.1950457, 55.9496221 -3.1950556, 55.9496228 -3.1953142, 55.9496458 -3.1953264, 55.9496737 -3.1953225, 55.9489842 -3.1953136, 55.9493042 -3.1940688, 55.9489571 -3.1957241, 55.9459432 -3.1848323, 55.9461084 -3.1836449, 55.9494614 -3.1938002, 55.9496093 -3.1936827, 55.9494708 -3.1903277, 55.9495520 -3.1903500, 55.9324201 -3.2283154, 55.9332542 -3.2297846, 55.9476045 -3.1861249, 55.9488813 -3.1834652, 55.9501364 -3.1885541, 55.9501318 -3.1886125, 55.9528247 -3.2065333, 55.9529149 -3.2065700, 55.9533425 -3.2047904, 55.9495175 -3.1899415, 55.9495499 -3.1899552, 55.9496571 -3.1899975, 55.9453776 -3.1916473, 55.9466056 -3.1912464, 55.9479666 -3.1920487, 55.9458687 -3.1913239, 55.9540835 -3.1946291, 55.9538883 -3.1945191, 55.9507459 -3.2052838, 55.9518450 -3.1742267, 55.9529627 -3.2034667, 55.9536998 -3.2038425, 55.9530225 -3.2010179, 55.9530534 -3.2008361, 55.9530651 -3.2069553, 55.9522129 -3.2063407, 55.9532657 -3.2030242, 55.9532876 -3.2029340, 55.9525268 -3.2039465, 55.9714402 -3.1705296, 55.9714533 -3.1704865, 55.9302053 -3.2392441, 55.9356364 -3.2013828, 55.9382392 -3.1926647, 55.9384377 -3.1915943, 55.9382413 -3.1927552, 55.9378769 -3.1933451, 55.9483173 -3.2061075, 55.9477716 -3.2059103, 55.9459933 -3.2113099, 55.9515113 -3.2040403, 55.9477228 -3.2058906, 55.9514215 -3.2038997, 55.9492101 -3.2153200, 55.9462508 -3.2133365, 55.9476252 -3.2058510, 55.9686225 -3.1663840, 55.9476740 -3.2058708, 55.9513366 -3.2050641, 55.9477676 -3.1954394, 55.9479756 -3.2040239, 55.9486422 -3.1962925, 55.9487023 -3.1964050, 55.9506935 -3.2051468, 55.9604000 -3.2010907, 55.9523945 -3.2120603, 55.9521663 -3.2127584, 55.9500040 -3.2125578, 55.9497188 -3.2145570, 55.9536330 -3.2038115, 55.9500915 -3.2177587, 55.9489122 -3.2150138, 55.9498407 -3.2129057, 55.9494796 -3.2083138, 55.9481228 -3.2089748, 55.9510978 -3.2113738, 55.9638417 -3.1758536, 55.9645858 -3.1766158, 55.9645802 -3.1747388, 55.9647390 -3.1764944, 55.9638726 -3.1762619, 55.9648350 -3.1763998, 55.9630054 -3.1634490, 55.9646237 -3.1737261, 55.9642771 -3.1697028, 55.9641140 -3.1725593, 55.9641614 -3.1722839, 55.9642136 -3.1728002, 55.9643083 -3.1722337, 55.9643717 -3.1727457, 55.9544768 -3.1997466, 55.9216794 -3.1718411, 55.9627083 -3.1784053, 55.9636334 -3.1775897, 55.9632708 -3.1779782, 55.9635031 -3.1777306, 55.9634030 -3.1778210, 55.9626859 -3.1776408, 55.9626935 -3.1778609, 55.9634353 -3.1777955, 55.9629468 -3.1783377, 55.9635528 -3.1766129, 55.9633292 -3.1768705, 55.9627176 -3.1785700, 55.9636635 -3.1766551, 55.9634773 -3.1777444, 55.9623753 -3.1728175, 55.9623636 -3.1790432, 55.9624134 -3.1789821, 55.9622388 -3.1791817, 55.9624341 -3.1765218, 55.9624801 -3.1786765, 55.9538645 -3.1977873, 55.9545797 -3.1975105, 55.9539210 -3.2001008, 55.9539108 -3.1977153, 55.9218603 -3.1939403, 55.9232493 -3.1902587, 55.9233776 -3.1896124, 55.9237045 -3.1906975, 55.9246454 -3.1953741, 55.9254354 -3.1947577, 55.9407892 -3.1837439, 55.9407325 -3.1837862, 55.9606579 -3.1715414, 55.9455845 -3.1909569, 55.9461074 -3.1908473, 55.9601469 -3.1818976, 55.9602485 -3.1817652, 55.9549903 -3.1932546, 55.9549461 -3.1936274, 55.9550466 -3.1929475, 55.9598818 -3.1717194, 55.9600554 -3.1716610, 55.9219330 -3.1748598, 55.9218016 -3.1748987, 55.9219960 -3.1749734, 55.9522132 -3.2037570, 55.9722254 -3.2582467, 55.9722373 -3.2578621, 55.9503626 -3.2071980, 55.9509478 -3.2066848, 55.9526988 -3.2085257, 55.9527795 -3.2080212, 55.9529409 -3.2077810, 55.9590444 -3.1715716, 55.9595680 -3.1714413, 55.9518140 -3.2061799, 55.9519378 -3.2048677, 55.9518714 -3.2053095, 55.9513520 -3.2049738, 55.9733939 -3.1675353, 55.9733312 -3.1670719, 55.9542281 -3.1981535, 55.9541351 -3.1997066, 55.9543888 -3.1989928, 55.9548130 -3.1959084, 55.9531961 -3.2032873, 55.9754341 -3.1737320, 55.9527501 -3.2005561, 55.9507981 -3.2057966, 55.9530265 -3.2058413, 55.9529173 -3.1995774, 55.9713786 -3.1713983, 55.9708769 -3.1716878, 55.9713160 -3.1704361, 55.9713293 -3.1704148, 55.9714836 -3.1716872, 55.9716292 -3.1714729, 55.9716322 -3.1714902, 55.9724168 -3.1697202, 55.9732475 -3.1694257, 55.9732677 -3.1693959, 55.9732879 -3.1693662, 55.9733081 -3.1693364, 55.9733283 -3.1693066, 55.9728610 -3.1689743, 55.9751480 -3.1670086, 55.9752100 -3.1670316, 55.9755689 -3.1666066, 55.9758774 -3.1660901, 55.9521649 -3.2010251, 55.9519986 -3.2023490, 55.9525961 -3.2004597, 55.9522376 -3.2006090, 55.9521505 -3.2011079, 55.9524547 -3.2003712, 55.9523745 -3.2002212, 55.9528145 -3.2005067, 55.9520147 -3.2000958, 55.9514577 -3.2026368, 55.9521413 -3.2003019, 55.9517562 -3.2027381, 55.9473312 -3.1958530, 55.9506466 -3.2029246, 55.9506827 -3.2031009, 55.9509818 -3.1665599, 55.9510378 -3.1985031, 55.9516327 -3.1728113, 55.9527120 -3.1911888, 55.9771722 -3.1686654, 55.9331228 -3.2352413, 55.9525006 -3.1971100, 55.9519161 -3.1979846, 55.9738130 -3.1660750, 55.9739636 -3.1645829, 55.9740361 -3.1645204, 55.9530600 -3.1973963, 55.9529817 -3.1991968, 55.9531257 -3.1972587, 55.9524366 -3.1994110, 55.9527862 -3.1991610, 55.9528048 -3.1990557, 55.9742334 -3.1627736, 55.9743971 -3.1634368, 55.9744969 -3.1645171, 55.9747892 -3.1642995, 55.9748440 -3.1644846, 55.9750621 -3.1716018, 55.9750654 -3.1718127, 55.9742887 -3.1683638, 55.9744239 -3.1691820, 55.9524600 -3.1964337, 55.9530736 -3.1967211, 55.9528853 -3.1966329, 55.9527597 -3.1966490, 55.9537783 -3.1947889, 55.9720484 -3.1727281, 55.9726775 -3.1738979, 55.9723466 -3.1740682, 55.9529730 -3.1951895, 55.9534020 -3.1946327, 55.9717635 -3.1735496, 55.9728535 -3.1734538, 55.9728700 -3.1734359, 55.9728878 -3.1734277, 55.9729128 -3.1734295, 55.9729302 -3.1734449, 55.9729461 -3.1734685, 55.9535447 -3.1920694, 55.9535343 -3.1919288, 55.9729020 -3.1734278, 55.9733795 -3.1746652, 55.9743460 -3.1742161, 55.9744616 -3.1745919, 55.9745256 -3.1747701, 55.9746511 -3.1740770, 55.9744468 -3.1763141, 55.9745286 -3.1757264, 55.9745343 -3.1758337, 55.9530322 -3.1896343, 55.9530541 -3.1894581, 55.9531007 -3.1895823, 55.9499543 -3.1878155, 55.9605039 -3.1694895, 55.9598814 -3.1713652, 55.9233855 -3.2869336, 55.9482867 -3.1839490, 55.9496098 -3.1863529, 55.9541108 -3.2007911, 55.9462949 -3.2053703, 55.9481710 -3.1916741, 55.9469863 -3.2072082, 55.9429251 -3.2038964, 55.9482698 -3.1839334, 55.9510276 -3.2031942, 55.9528163 -3.2009260, 55.9618047 -3.1704970, 55.9746361 -3.1775991, 55.9748666 -3.1747021, 55.9748935 -3.1745351, 55.9749178 -3.1759773, 55.9749369 -3.1750796, 55.9749809 -3.1764209, 55.9749981 -3.1769166, 55.9750316 -3.1746083, 55.9751150 -3.1770111, 55.9751199 -3.1751925, 55.9751581 -3.1769090, 55.9751915 -3.1757570, 55.9751949 -3.1759526, 55.9753007 -3.1761602, 55.9634016 -3.1766095, 55.9634052 -3.1766291, 55.9636382 -3.1754565, 55.9636651 -3.1744634, 55.9636669 -3.1745132, 55.9636787 -3.1760301, 55.9637709 -3.1759142, 55.9637728 -3.1759640, 55.9732747 -3.1733776, 55.9656757 -3.1756750, 55.9722974 -3.1721866, 55.9727235 -3.1726089, 55.9728088 -3.1726327, 55.9544329 -3.1950792, 55.9550493 -3.1952197, 55.9739316 -3.1698802, 55.9556549 -3.1915634, 55.9766070 -3.1718381, 55.9653172 -3.1704847, 55.9650499 -3.1748827, 55.9411313 -3.2167882, 55.9393998 -3.1735716, 55.9319915 -3.1798966, 55.9479359 -3.2033290, 55.9426871 -3.1890489, 55.9518191 -3.1796232, 55.9475115 -3.1893474, 55.9478706 -3.1875187, 55.9404588 -3.2944172, 55.9696237 -3.2312974, 55.9253578 -3.2483932, 55.9323123 -3.2905531, 55.9276315 -3.2611513, 55.9016607 -3.2241566, 55.9262359 -3.1654883, 55.9227951 -3.1616860, 55.9434333 -3.1979031, 55.9578808 -3.1647965, 55.9544793 -3.1426073, 55.9800643 -3.1795555, 55.9821786 -3.1756498, 55.9289063 -3.1978643, 55.9368078 -3.2005621, 55.9300695 -3.2173312, 55.9215400 -3.2123691, 55.9763668 -3.2263424, 55.9636812 -3.2272697, 55.9224589 -3.2814656, 55.9579976 -3.2248804, 55.9331742 -3.2140675, 55.9152135 -3.2365672, 55.9275852 -3.2164208, 55.9437787 -3.2629382, 55.9435294 -3.2654687, 55.9436259 -3.2619723, 55.9690220 -3.1695919, 55.9775947 -3.2459989, 55.9734214 -3.2507279, 55.9735728 -3.2552888, 55.9453813 -3.1852436, 55.9461229 -3.1864604, 55.9462637 -3.1945246, 55.9506841 -3.2000992, 55.9521111 -3.1797138, 55.9226021 -3.1742368, 55.9440654 -3.1877246, 55.9567295 -3.1849346, 55.9444292 -3.1967044, 55.9445111 -3.1983353, 55.9441006 -3.1982327, 55.9530161 -3.2227017, 55.9314453 -3.2359598, 55.9234755 -3.2477828, 55.9654892 -3.1615795, 55.9658709 -3.1655098, 55.9660647 -3.1745557, 55.9400832 -3.2183795, 55.9605725 -3.1900983, 55.9523306 -3.2247264, 55.9506405 -3.2280071, 55.9538752 -3.2273603, 55.9599316 -3.1441732, 55.9604659 -3.1501981, 55.9282702 -3.2905058, 55.9373142 -3.2104866, 55.9287405 -3.2200096, 55.9384423 -3.2403707, 55.9398187 -3.2297358, 55.9484124 -3.1836303, 55.9226662 -3.2254126, 55.9350432 -3.1974969, 55.9369891 -3.2014350, 55.9559159 -3.1551037, 55.9396348 -3.1719819, 55.9418632 -3.1505954, 55.9183491 -3.2390342, 55.9465675 -3.1864711, 55.9292460 -3.2045523, 55.9486154 -3.1834112, 55.9471658 -3.1800476, 55.9510411 -3.1708174, 55.9629115 -3.1702968, 55.9221448 -3.2270956, 55.9056862 -3.1959770, 55.9422542 -3.2936236, 55.9237847 -3.1626217, 55.9523895 -3.2805878, 55.9399107 -3.1697157, 55.9388808 -3.1702860, 55.9365871 -3.1798120, 55.9456944 -3.1986519, 55.9703825 -3.1685452, 55.9332134 -3.1406814, 55.9307050 -3.1452443, 55.9305193 -3.1456531, 55.9323067 -3.1467718, 55.9321048 -3.1417445, 55.9419520 -3.2027917, 55.9221929 -3.1873317, 55.9029473 -3.2042927, 55.9308822 -3.1586149, 55.9356181 -3.1431581, 55.9366082 -3.1592634, 55.9382408 -3.1739315, 55.9372934 -3.1427896, 55.9411807 -3.1490609, 55.9412514 -3.1428579, 55.9539478 -3.1401032, 55.9482823 -3.1439944, 55.9271257 -3.1809044, 55.9265280 -3.1510008, 55.9339981 -3.1469608, 55.9118066 -3.2517527, 55.9248212 -3.2647912, 55.9773633 -3.2471160, 55.9527240 -3.2512456, 55.9450101 -3.1858398, 55.9468320 -3.1869997, 55.9454192 -3.1860553, 55.9405307 -3.2034601, 55.9082374 -3.2366942, 55.9111784 -3.2296130, 55.9158656 -3.2803635, 55.9280288 -3.2881415, 55.9610357 -3.1963165, 55.9758026 -3.1754319, 55.9706894 -3.1958369, 55.9497651 -3.1780477, 55.9550388 -3.1422629, 55.9309502 -3.1942179, 55.9360803 -3.2260420, 55.9365416 -3.2274826, 55.9339873 -3.2236723, 55.9290401 -3.2025345, 55.9602512 -3.1936038, 55.9263499 -3.2181344, 55.9300384 -3.1736254, 55.9402144 -3.2252877, 55.9377206 -3.2258204, 55.9414217 -3.2221759, 55.9486925 -3.2000899, 55.9481163 -3.2005051, 55.9346438 -3.2211526, 55.9411994 -3.1818116, 55.9422143 -3.1843904, 55.9455169 -3.1830207, 55.9441448 -3.1847026, 55.9442904 -3.1841510, 55.9421481 -3.1863693, 55.9447507 -3.1796881, 55.9456704 -3.1811256, 55.9430744 -3.1777261, 55.9446561 -3.1803403, 55.9623803 -3.2348858, 55.9494277 -3.1775329, 55.9487518 -3.1780877, 55.9485518 -3.1781362, 55.9491775 -3.1780460, 55.9466674 -3.1799160, 55.9467039 -3.1783594, 55.9517150 -3.1772389, 55.9520666 -3.1782554, 55.9514274 -3.1780862, 55.9442077 -3.1850195, 55.9611696 -3.2316847, 55.9609929 -3.2342787, 55.9607831 -3.2371118, 55.9615933 -3.2374124, 55.9619320 -3.2374854, 55.9631141 -3.2367935, 55.9634777 -3.2359757, 55.9488000 -3.1850162, 55.9508692 -3.1835613, 55.9496410 -3.1840791, 55.9482833 -3.1925126, 55.9485816 -3.1916892, 55.9320754 -3.1797041, 55.9289038 -3.2099695, 55.9372576 -3.2484056, 55.9375668 -3.2481897, 55.9518134 -3.1865125, 55.9613330 -3.1814329, 55.9491518 -3.1851392, 55.9845079 -3.2223358, 55.9494705 -3.1908525, 55.9720506 -3.1705546, 55.9481456 -3.1868202, 55.9483629 -3.1876394, 55.9484892 -3.1877617, 55.9481205 -3.1869530, 55.9462373 -3.1906430, 55.9478959 -3.1907476, 55.9476459 -3.1911817, 55.9244139 -3.2658901, 55.9487698 -3.1941172, 55.9487803 -3.1950974, 55.9052992 -3.2211253, 55.9634913 -3.1955890, 55.9231436 -3.2518020, 55.9754880 -3.1800099, 55.9766360 -3.1950228, 55.9807254 -3.2242925, 55.9827482 -3.1947966, 55.9820923 -3.1881161, 55.9284416 -3.2408621, 55.9306269 -3.2393487, 55.9709946 -3.2069888, 55.9663575 -3.1958162, 55.9713037 -3.2306913, 55.9695021 -3.2293678, 55.9741682 -3.2117651, 55.9211529 -3.1991584, 55.9272521 -3.2235895, 55.9282852 -3.2235581, 55.9574593 -3.1648578, 55.9226879 -3.2251365, 55.9383517 -3.2266621, 55.9390955 -3.2281220, 55.9305995 -3.2413240, 55.9539144 -3.1587511, 55.9582182 -3.2036684, 55.9608885 -3.2047238, 55.9353613 -3.2393280, 55.9230657 -3.2475227, 55.9317976 -3.2278388, 55.9346243 -3.2280989, 55.9383815 -3.1877040, 55.9600239 -3.1973819, 55.9663393 -3.2086646, 55.9650292 -3.2107237, 55.9667709 -3.2059283, 55.9443491 -3.2712547, 55.9446542 -3.2717797, 55.9450592 -3.2712300, 55.9727731 -3.1780368, 55.9804104 -3.1919302, 55.9679394 -3.1728771, 55.9385478 -3.1892353, 55.9610501 -3.2220436, 55.9729929 -3.1628209, 55.9351917 -3.2109226, 55.9779564 -3.1649104, 55.9800652 -3.2042302, 55.9439545 -3.2066510, 55.9209185 -3.1686343, 55.9239749 -3.1779212, 55.9246612 -3.1815724, 55.9260122 -3.1931603, 55.9264995 -3.1847934, 55.9426143 -3.2718758, 55.9409940 -3.2083656, 55.9798454 -3.2021900, 55.9759375 -3.2015749, 55.9766598 -3.1948968, 55.9764777 -3.1935321, 55.9637496 -3.2851479, 55.9276896 -3.1509176, 55.9274521 -3.1503413, 55.9275727 -3.1506409, 55.9254765 -3.1644984, 55.9263987 -3.1628516, 55.9280015 -3.1625220, 55.9260602 -3.1659685, 55.9251658 -3.1663274, 55.9254307 -3.1665057, 55.9590395 -3.2250691, 55.9605457 -3.2255054, 55.9587335 -3.2260450, 55.9593683 -3.2257099, 55.9599741 -3.2911482, 55.9599216 -3.2887651, 55.9514878 -3.2915839, 55.9436637 -3.2079998, 55.9782443 -3.2238463, 55.9759267 -3.2278467, 55.9751151 -3.2193081, 55.9762144 -3.2241714, 55.9854919 -3.2222993, 55.9758198 -3.2323187, 55.9747107 -3.2382500, 55.9755242 -3.2379423, 55.9713618 -3.2381377, 55.9679996 -3.2373783, 55.9342034 -3.1931303, 55.9460352 -3.2404177, 55.9464332 -3.2481332, 55.9381173 -3.2348593, 55.9379531 -3.2328868, 55.9472990 -3.2368673, 55.9494623 -3.2105484, 55.9763061 -3.2457130, 55.9763561 -3.2451182, 55.9496531 -3.2051547, 55.9470070 -3.2042875, 55.9349172 -3.2781183, 55.9089711 -3.2560883, 55.9488232 -3.2332997, 55.9763716 -3.1862130, 55.9464512 -3.2693904, 55.9452629 -3.2700881, 55.9447684 -3.1528732, 55.9408827 -3.1764274, 55.9330632 -3.1771455, 55.9383947 -3.2562456, 55.9452888 -3.1819541, 55.9493755 -3.1801013, 55.9478904 -3.1809905, 55.9498164 -3.1924123, 55.9512868 -3.1894562, 55.9506838 -3.1849407, 55.9514869 -3.1801710, 55.9507347 -3.1844306, 55.9507312 -3.1855926, 55.9208549 -3.2614987, 55.9311921 -3.2649611, 55.9301341 -3.1678546, 55.9296473 -3.1707716, 55.9300084 -3.1692556, 55.9307377 -3.1718855, 55.9312615 -3.2941807, 55.9573948 -3.1710345, 55.9015605 -3.2034316, 55.9363343 -3.2393760, 55.9334103 -3.2358080, 55.9104667 -3.2253120, 55.9087826 -3.2212955, 55.9076452 -3.2280715, 55.9052853 -3.2234270, 55.9047400 -3.2228682, 55.9058615 -3.2220141, 55.9070370 -3.2196609, 55.9044165 -3.2224233, 55.9090576 -3.2279500, 55.9090922 -3.2239505, 55.9626750 -3.1983267, 55.9607676 -3.2059199, 55.9594302 -3.2076115, 55.9603211 -3.2068531, 55.9554789 -3.1913810, 55.9401022 -3.1817999, 55.9671482 -3.1898092, 55.9438548 -3.1856370, 55.9534112 -3.1955067, 55.9540545 -3.1958519, 55.9547187 -3.1893018, 55.9705136 -3.2090520, 55.9045849 -3.2066586, 55.9519010 -3.2481568, 55.9523635 -3.2486330, 55.9523251 -3.2541631, 55.9704118 -3.2140175, 55.9536168 -3.2152726, 55.9556720 -3.1896134, 55.9430835 -3.2219817, 55.9587913 -3.2420040, 55.9583778 -3.2421373, 55.9573940 -3.2424916, 55.9584602 -3.2323511, 55.9567019 -3.2381175, 55.9588441 -3.2305299, 55.9590153 -3.2322733, 55.9653075 -3.1884766, 55.9611769 -3.2425780, 55.9615806 -3.2409418, 55.9613606 -3.2419902, 55.9619750 -3.2400369, 55.9622821 -3.2456187, 55.9668781 -3.2394194, 55.9467379 -3.1966389, 55.9596219 -3.2030610, 55.9379000 -3.1749129, 55.9686272 -3.1672689, 55.9716300 -3.1599323, 55.9433998 -3.2065327, 55.9722472 -3.1751421, 55.9675455 -3.1569398, 55.9718479 -3.1748613, 55.9560374 -3.1699685, 55.9718431 -3.1725925, 55.9776230 -3.2433010, 55.9776625 -3.2409852, 55.9771738 -3.2430088, 55.9773044 -3.2412374, 55.9798298 -3.1971422, 55.9704477 -3.1958250, 55.9703493 -3.1961174, 55.9704547 -3.1964895, 55.9404662 -3.2927628, 55.9418085 -3.2938103, 55.9409118 -3.2928528, 55.9563797 -3.2090019, 55.9567298 -3.2082704, 55.9594852 -3.1875701, 55.9605648 -3.1852708, 55.9622747 -3.1983063, 55.9556731 -3.1599309, 55.9561167 -3.1678741, 55.9548458 -3.1441071, 55.9640969 -3.1974516, 55.9626676 -3.2000599, 55.9191510 -3.2123681, 55.9602514 -3.1792425, 55.9828725 -3.2257526, 55.9786282 -3.1784319, 55.9394393 -3.2936438, 55.9393840 -3.2949198, 55.9596625 -3.2024027, 55.9775262 -3.2412239, 55.9679736 -3.2375792, 55.9669928 -3.1677035, 55.9504839 -3.2321423, 55.9305761 -3.1559101, 55.9311166 -3.1557491, 55.9371467 -3.2065090, 55.9359437 -3.2382687, 55.9360694 -3.2391515, 55.9353294 -3.2394954, 55.9376218 -3.2483001, 55.9783017 -3.1800235, 55.9805959 -3.1832658, 55.9809475 -3.1748973, 55.9396373 -3.1795919, 55.9415413 -3.1765387, 55.9606718 -3.1730123, 55.9587930 -3.1899340, 55.9586835 -3.1836675, 55.9398778 -3.1763187, 55.9611856 -3.1865315, 55.9454748 -3.2133562, 55.9660452 -3.2748349, 55.9664497 -3.2729235, 55.9637916 -3.2690502, 55.9425609 -3.2205340, 55.9421735 -3.2231061, 55.9435969 -3.2367712, 55.9410215 -3.2404052, 55.9437556 -3.2442061, 55.9749582 -3.2141026, 55.9367525 -3.2236850, 55.9381980 -3.2233304, 55.9411163 -3.2946751, 55.9094166 -3.2080359, 55.9816356 -3.1755155, 55.9632079 -3.2509875, 55.9552946 -3.2619485, 55.9598506 -3.2240155, 55.9817826 -3.1942506, 55.9810266 -3.1939926, 55.9811977 -3.1933980, 55.9813243 -3.1938987, 55.9811060 -3.1942189, 55.9811219 -3.1927295, 55.9812872 -3.1942703, 55.9810235 -3.1943227, 55.9810882 -3.1928819, 55.9810439 -3.1926011, 55.9811933 -3.1929701, 55.9809849 -3.1928242, 55.9813860 -3.1941338, 55.9809438 -3.1941571, 55.9812539 -3.1931285, 55.9810905 -3.1933833, 55.9788677 -3.2108480, 55.9741923 -3.2061226, 55.9102318 -3.2377415, 55.9109047 -3.2387736, 55.9754361 -3.2140115, 55.9747440 -3.2136660, 55.9231850 -3.2486394, 55.9508007 -3.2089750, 55.9637505 -3.2335268, 55.9428585 -3.1864559, 55.9846458 -3.1940711, 55.9563611 -3.1696322, 55.9439600 -3.2055529, 55.9595062 -3.2148354, 55.9672194 -3.2519524, 55.9724265 -3.2579266, 55.9682716 -3.2544583, 55.9221429 -3.1752023, 55.9223399 -3.1759213, 55.9722426 -3.2542844, 55.9670991 -3.2534481, 55.9650977 -3.2490516, 55.9575370 -3.1698723, 55.9068858 -3.2268022, 55.9253343 -3.2104022, 55.9252818 -3.2099781, 55.9718838 -3.2534179, 55.9810691 -3.2383577, 55.9306416 -3.2087396, 55.9390126 -3.2052535, 55.9382569 -3.1735978, 55.9385296 -3.2738255, 55.9364542 -3.2790390, 55.9125969 -3.2367843, 55.9139120 -3.2359804, 55.9122150 -3.2360285, 55.9257870 -3.2656567, 55.9674017 -3.1804959, 55.9342963 -3.2105127, 55.9326296 -3.2093529, 55.9397056 -3.2127147, 55.9799121 -3.2416420, 55.9712125 -3.2539350, 55.9714662 -3.2541142, 55.9376681 -3.1815462, 55.9181587 -3.2705015, 55.9340911 -3.1776728, 55.9342211 -3.1778645, 55.9514241 -3.2207842, 55.9732423 -3.2016374, 55.9724670 -3.2012980, 55.9598722 -3.2116091, 55.9778933 -3.1745058, 55.9784170 -3.1773402, 55.9780971 -3.1753475, 55.9783089 -3.1763226, 55.9777459 -3.1734796, 55.9789813 -3.1763388, 55.9781314 -3.1744029, 55.9051373 -3.2232377, 55.9781967 -3.1747064, 55.9757314 -3.1804855, 55.9760054 -3.1829902, 55.9754079 -3.1820516, 55.9389084 -3.2719917, 55.9379190 -3.2748726, 55.9511827 -3.2055031, 55.9324188 -3.2919653, 55.9310369 -3.2899192, 55.9613846 -3.1948052, 55.9284497 -3.2741217, 55.9345857 -3.2096226, 55.9778984 -3.1730783, 55.9410173 -3.1832050, 55.9657968 -3.2699304, 55.9694092 -3.2702934, 55.9416964 -3.1483778, 55.9582905 -3.2794012, 55.9767945 -3.1754739, 55.9766864 -3.1738715, 55.9687659 -3.2129962, 55.9660731 -3.1740541, 55.9700618 -3.1685905, 55.9777295 -3.1642417, 55.9713517 -3.2751363, 55.9716217 -3.2748645, 55.9357478 -3.1903059, 55.9561104 -3.2932448, 55.9547210 -3.2212015, 55.9489783 -3.2074982, 55.9771152 -3.2561088, 55.9473796 -3.2162168, 55.9413783 -3.2819125, 55.9775665 -3.1730962, 55.9767627 -3.1685149, 55.9759609 -3.1666596, 55.9775601 -3.1677040, 55.9352870 -3.1783681, 55.9384344 -3.2383937, 55.9400215 -3.2835991, 55.9422778 -3.2816309, 55.9731449 -3.1689705, 55.9722626 -3.1718229, 55.9724369 -3.1737659, 55.9725956 -3.1724850, 55.9735295 -3.1719581, 55.9422361 -3.2854972, 55.9426182 -3.2848408, 55.9408188 -3.2854591, 55.9424261 -3.2853919, 55.9401807 -3.2851421, 55.9397418 -3.2866275, 55.9184060 -3.1567270, 55.9405468 -3.2072228, 55.9398774 -3.2036951, 55.9450514 -3.2016119, 55.9425974 -3.2817995, 55.9427324 -3.2894308, 55.9428132 -3.2886637, 55.9428834 -3.2895145, 55.9430576 -3.2887151, 55.9429003 -3.2891706, 55.9421047 -3.2806000, 55.9421878 -3.2816836, 55.9418910 -3.2811010, 55.9382573 -3.1889080, 55.9433390 -3.1786743, 55.9352274 -3.1798948, 55.9354661 -3.1805170, 55.9370598 -3.1807869, 55.9375196 -3.1796111, 55.9372843 -3.1802503, 55.9415697 -3.1758286, 55.9415585 -3.1758394, 55.9415921 -3.1758060, 55.9415812 -3.1758177, 55.9411606 -3.1749707, 55.9403039 -3.1758789, 55.9403220 -3.1758391, 55.9411756 -3.1749572, 55.9415942 -3.1748284, 55.9412195 -3.1755812, 55.9403131 -3.1758590, 55.9408932 -3.1748265, 55.9416412 -3.1759641, 55.9411089 -3.1758742, 55.9419221 -3.1751737, 55.9413694 -3.1751296, 55.9421224 -3.1755399, 55.9420435 -3.1759728, 55.9417717 -3.1760016, 55.9412937 -3.1748715, 55.9419213 -3.1762309, 55.9417190 -3.1758050, 55.9416370 -3.1757316, 55.9421785 -3.1756667, 55.9411631 -3.1744380, 55.9420584 -3.1756683, 55.9419621 -3.1753235, 55.9421292 -3.1750657, 55.9415161 -3.1750333, 55.9415743 -3.1747965, 55.9415635 -3.1757823, 55.9414662 -3.2429306, 55.9380788 -3.2164911, 55.9740721 -3.2549433, 55.9701531 -3.2408519, 55.9422906 -3.1878107, 55.9424910 -3.1860227, 55.9480890 -3.2360821, 55.9322321 -3.2172464, 55.9650430 -3.1970342, 55.9399461 -3.2681429, 55.9430863 -3.2187411, 55.9554624 -3.2241042, 55.9419112 -3.2188990, 55.9483346 -3.2942197, 55.9243327 -3.2086992, 55.9421466 -3.2052971, 55.9457075 -3.2175746, 55.9450840 -3.2432639, 55.9287806 -3.2587079, 55.9109797 -3.2089126, 55.9419464 -3.1773362, 55.9410176 -3.2095848, 55.9416893 -3.1760907, 55.9417070 -3.1760764, 55.9416987 -3.1760841, 55.9412278 -3.1756909, 55.9412476 -3.1757447, 55.9412372 -3.1757196, 55.9412183 -3.1743024, 55.9412083 -3.1743042, 55.9411987 -3.1743085, 55.9411888 -3.1743128, 55.9389958 -3.2265743, 55.9269527 -3.2080383, 55.9292876 -3.2059198, 55.9278315 -3.2088719, 55.9764201 -3.1763322, 55.9710130 -3.1805984, 55.9179473 -3.1972800, 55.9182561 -3.1989900, 55.9132484 -3.1780898, 55.9549575 -3.1410285, 55.9754348 -3.1685187, 55.9819343 -3.1951000, 55.9405416 -3.2928536, 55.9193644 -3.2228522, 55.9191174 -3.2378985, 55.9192124 -3.2367725, 55.9642544 -3.1552869, 55.9761891 -3.1670909, 55.9756176 -3.1666794, 55.9758400 -3.1668709, 55.9616399 -3.2609726, 55.9429604 -3.2929801, 55.9431663 -3.2838745, 55.9430804 -3.2830608, 55.9432585 -3.2860976, 55.9433798 -3.2860859, 55.9433113 -3.2870890, 55.9426525 -3.2829003, 55.9429172 -3.2885050, 55.9430016 -3.2880429, 55.9428951 -3.2860475, 55.9598760 -3.2111177, 55.9420912 -3.2950431, 55.9656482 -3.2744012, 55.9420681 -3.2954846, 55.9428183 -3.2938163, 55.9806315 -3.1941324, 55.9768676 -3.1714974, 55.9748270 -3.2379923, 55.9308539 -3.2761099, 55.9460256 -3.1970185, 55.9224134 -3.2358339, 55.9232515 -3.2341430, 55.9506991 -3.1804199, 55.9228372 -3.1787829, 55.9339081 -3.2001289, 55.9381722 -3.1723579, 55.9391719 -3.1689528, 55.9405990 -3.1722908, 55.9212581 -3.1741946, 55.9216273 -3.1782748, 55.9241930 -3.1744106, 55.9212881 -3.1716104, 55.9584022 -3.2407277, 55.9543261 -3.2217641, 55.9458113 -3.2173471, 55.9451443 -3.1904604, 55.9416788 -3.1843079, 55.9226382 -3.1721985, 55.9376476 -3.2417193, 55.9365765 -3.1906732, 55.9428537 -3.2567285, 55.9486145 -3.2162817, 55.9767290 -3.2268402, 55.9384718 -3.2294237, 55.9382369 -3.2291610, 55.9828789 -3.2415813, 55.9635638 -3.2312763, 55.9044775 -3.2067494, 55.9067248 -3.2514090, 55.9042642 -3.2336659, 55.9582618 -3.2523094, 55.9432361 -3.1906794, 55.9376675 -3.1916760, 55.9331889 -3.2150781, 55.9342476 -3.2456539, 55.9462953 -3.2204393, 55.9472630 -3.2049020, 55.9653800 -3.2706969, 55.9649794 -3.2748487, 55.9333547 -3.2382786, 55.9336416 -3.2375159, 55.9236496 -3.2861719, 55.9235691 -3.2868011, 55.9255394 -3.2590716, 55.9249862 -3.2552372, 55.9197724 -3.2646706, 55.9246038 -3.2533704, 55.9310562 -3.2789944, 55.9378551 -3.2430479, 55.9342259 -3.2112430, 55.9302075 -3.2099997, 55.9260946 -3.2833643, 55.9420456 -3.2665689, 55.9450353 -3.2498470, 55.9488571 -3.1936393, 55.9400371 -3.2200755, 55.9231845 -3.2883989, 55.9560907 -3.1878581, 55.9556763 -3.1879855, 55.9364788 -3.1804752, 55.9365673 -3.1810320, 55.9337994 -3.2511195, 55.9251847 -3.2668441, 55.9242943 -3.2525824, 55.9281220 -3.1676809, 55.9296228 -3.1686332, 55.9240973 -3.1713473, 55.9205723 -3.1672281, 55.9167292 -3.1640730, 55.9190795 -3.1651500, 55.9351736 -3.2474351, 55.9368512 -3.1906944, 55.9303474 -3.1688301, 55.9231711 -3.1630255, 55.9284277 -3.2771034, 55.9251682 -3.2504770, 55.9433431 -3.2880696, 55.9554111 -3.2871171, 55.9551063 -3.2863133, 55.9553468 -3.2876097, 55.9554662 -3.2864616, 55.9550547 -3.2853818, 55.9304008 -3.2059444, 55.9351051 -3.2071646, 55.9335197 -3.2097268, 55.9340775 -3.2344416, 55.9186700 -3.2386355, 55.9194000 -3.2392334, 55.9181062 -3.2402690, 55.9190442 -3.2405398, 55.9186959 -3.2407877, 55.9325805 -3.2889506, 55.9295794 -3.1885044, 55.9292647 -3.1898349, 55.9274691 -3.1872211, 55.9366569 -3.1786654, 55.9390667 -3.2357495, 55.9291158 -3.1990147, 55.9310105 -3.2637876, 55.9305427 -3.2629432, 55.9327690 -3.2064845, 55.9462699 -3.1973167, 55.9463372 -3.2009161, 55.9347843 -3.1777102, 55.9310132 -3.1730716, 55.9345092 -3.2106395, 55.9343748 -3.1948025, 55.9324830 -3.1925693, 55.9423304 -3.2222253, 55.9315854 -3.2267880, 55.9296779 -3.1904705, 55.9466989 -3.2004459, 55.9482972 -3.1955031, 55.9239634 -3.1724671, 55.9220936 -3.1720186, 55.9381406 -3.2071920, 55.9609398 -3.2353282, 55.9611023 -3.2337205, 55.9615648 -3.2337688, 55.9310878 -3.1608248, 55.9332555 -3.1585963, 55.9615076 -3.1962176, 55.9617797 -3.1967210, 55.9618418 -3.1964188, 55.9118407 -3.1733683, 55.9142368 -3.1767805, 55.9171133 -3.1693870, 55.9499151 -3.1945526, 55.9337107 -3.2143913, 55.9384227 -3.2096374, 55.9673672 -3.2023565, 55.9331209 -3.2609346, 55.9414121 -3.1461173, 55.9344607 -3.1586816, 55.9492492 -3.2166441, 55.9584013 -3.2102800, 55.9415712 -3.1423967, 55.9417952 -3.1435367, 55.9372219 -3.1675591, 55.9376359 -3.1437325, 55.9582727 -3.2142012, 55.9578400 -3.2137240, 55.9580057 -3.2137170, 55.9583384 -3.2143374, 55.9578384 -3.2135045, 55.9586941 -3.2142670, 55.9579707 -3.2133574, 55.9595991 -3.2078396, 55.9589115 -3.2077864, 55.9461251 -3.1413986, 55.9585641 -3.2034909, 55.9522035 -3.2050327, 55.9532532 -3.1988728, 55.9527412 -3.2019245, 55.9537795 -3.1957406, 55.9588705 -3.2081707, 55.9370148 -3.1687967, 55.9363884 -3.1696824, 55.9601264 -3.1937826, 55.9206859 -3.1596962, 55.9208169 -3.1598554, 55.9366260 -3.1734697, 55.9578355 -3.2056417, 55.9576157 -3.2060293, 55.9576413 -3.2059278, 55.9580732 -3.2011430, 55.9579644 -3.2017381, 55.9580494 -3.2012821, 55.9579410 -3.2018748, 55.9584126 -3.2005043, 55.9582239 -3.2009160, 55.9587356 -3.2012076, 55.9229466 -3.2475426, 55.9569863 -3.2004490, 55.9571215 -3.2003372, 55.9569959 -3.2010702, 55.9570258 -3.1998342, 55.9568113 -3.2014707, 55.9568346 -3.2013336, 55.9567905 -3.2018529, 55.9571440 -3.1998405, 55.9569850 -3.2000388, 55.9563224 -3.2001027, 55.9562856 -3.2003225, 55.9563043 -3.2002104, 55.9563423 -3.1999840, 55.9563645 -3.1998513, 55.9558901 -3.2012614, 55.9563424 -3.1994368, 55.9262637 -3.2243126, 55.9254217 -3.2108083, 55.9633397 -3.1866387, 55.9317876 -3.2353092, 55.9571314 -3.1945091, 55.9570903 -3.1942658, 55.9571062 -3.1948163, 55.9570078 -3.1956389, 55.9574245 -3.1945101, 55.9570801 -3.1952413, 55.9593471 -3.1962794, 55.9588288 -3.1994335, 55.9583111 -3.1990412, 55.9585624 -3.1980766, 55.9583421 -3.1992286, 55.9586095 -3.1976521, 55.9584283 -3.1986380, 55.9585084 -3.1979077, 55.9575802 -3.1968697, 55.9566931 -3.1981359, 55.9567965 -3.1968319, 55.9566552 -3.1982909, 55.9568562 -3.1972327, 55.9568774 -3.1971123, 55.9470079 -3.2203178, 55.9305554 -3.2379452, 55.9567662 -3.1885665, 55.9566534 -3.1920437, 55.9568104 -3.1898625, 55.9566771 -3.1918966, 55.9565541 -3.1926150, 55.9570880 -3.1893684, 55.9567192 -3.1908266, 55.9565429 -3.1914874, 55.9565039 -3.1916747, 55.9581431 -3.1932114, 55.9580069 -3.1929658, 55.9350533 -3.2069968, 55.9350865 -3.2070121, 55.9560597 -3.2073932, 55.9426363 -3.2453765, 55.9539415 -3.2061599, 55.9538842 -3.2068469, 55.9541878 -3.2062819, 55.9538990 -3.2065724, 55.9516793 -3.2103388, 55.9335280 -3.2095487, 55.9611738 -3.2007261, 55.9612899 -3.2007540, 55.9610369 -3.2004541, 55.9610414 -3.2006404, 55.9614051 -3.2007464, 55.9620034 -3.1995271, 55.9317819 -3.2955267, 55.9324370 -3.2945924, 55.9380692 -3.2958496, 55.9502297 -3.1939281, 55.9606540 -3.1948258, 55.9595489 -3.1922083, 55.9583753 -3.1909823, 55.9578621 -3.1897878, 55.9574569 -3.1920171, 55.9575620 -3.1916915, 55.9575374 -3.1909923, 55.9576308 -3.1912457, 55.9575648 -3.1913957, 55.9577829 -3.1897123, 55.9576959 -3.1905223, 55.9577544 -3.1902024, 55.9494095 -3.1864626, 55.9408795 -3.2097114, 55.9415305 -3.2096039, 55.9345607 -3.2083144, 55.9477482 -3.1983184, 55.9484995 -3.1924483, 55.9482088 -3.1927240, 55.9480798 -3.1929875, 55.9476449 -3.1962205, 55.9432298 -3.2014873, 55.9467112 -3.1954578, 55.9475963 -3.1940675, 55.9382616 -3.2091627, 55.9395772 -3.2053724, 55.9399587 -3.2058503, 55.9401754 -3.2051474, 55.9459124 -3.1915662, 55.9477804 -3.1928983, 55.9402430 -3.1727693, 55.9466336 -3.1922732, 55.9460773 -3.1915078, 55.9460762 -3.1916340, 55.9372942 -3.2112450, 55.9386346 -3.2107489, 55.9409866 -3.2107158, 55.9407779 -3.2120796, 55.9410206 -3.2114030, 55.9222605 -3.1522385, 55.9402022 -3.2097896, 55.9498358 -3.1944874, 55.9495178 -3.1951770, 55.9490749 -3.1954965, 55.9544888 -3.1913969, 55.9278308 -3.2029884, 55.9509187 -3.1896338, 55.9549766 -3.1940333, 55.9220620 -3.1790686, 55.9484660 -3.1908405, 55.9491359 -3.1879889, 55.9578836 -3.1723330, 55.9580966 -3.1722775, 55.9493593 -3.1850273, 55.9498809 -3.1852975, 55.9070828 -3.2093020, 55.9496587 -3.1844840, 55.9497910 -3.1868298, 55.9494266 -3.1860127, 55.9544711 -3.1956283, 55.9500589 -3.1853856, 55.9500722 -3.1849837, 55.9510003 -3.1870928, 55.9608626 -3.1709376, 55.9618365 -3.1669617, 55.9617695 -3.1672858, 55.9617360 -3.1670315, 55.9617015 -3.1669427, 55.9510336 -3.1857059, 55.9513675 -3.1810136, 55.9515036 -3.1804098, 55.9499184 -3.2133490, 55.9507199 -3.2116484, 55.9492178 -3.2148611, 55.9501657 -3.2128195, 55.9434309 -3.1997040, 55.9435924 -3.1979007, 55.9594881 -3.1871746, 55.9410282 -3.2065235, 55.9488780 -3.2000101, 55.9405277 -3.1801470, 55.9400777 -3.1787980, 55.9335152 -3.2105421, 55.9193931 -3.2787375, 55.9181911 -3.2782631, 55.9188677 -3.2805660, 55.9196291 -3.2799665, 55.9204553 -3.2780930, 55.9201801 -3.2782104, 55.9199010 -3.2768654, 55.9183106 -3.2760785, 55.9178305 -3.2802163, 55.9192966 -3.2811296, 55.9190402 -3.2822249, 55.9181350 -3.2823908, 55.9589084 -3.1973993, 55.9524851 -3.1785482, 55.9527783 -3.1777107, 55.9525789 -3.1786026, 55.9526096 -3.1778455, 55.9401136 -3.2035933, 55.9398424 -3.2041012, 55.9525625 -3.1763202, 55.9525134 -3.1760443, 55.9424726 -3.2928349, 55.9360140 -3.2013086, 55.9510367 -3.1792500, 55.9509261 -3.1791989, 55.9503655 -3.1805329, 55.9266569 -3.2906587, 55.9259672 -3.2906739, 55.9262051 -3.2898454, 55.9509562 -3.1793029, 55.9716128 -3.1531798, 55.9743102 -3.1591483, 55.9471723 -3.2950498, 55.9475057 -3.2948807, 55.9646922 -3.1748195, 55.9659516 -3.1739827, 55.9432327 -3.1903850, 55.9433218 -3.1904284, 55.9502335 -3.1832343, 55.9462673 -3.1864377, 55.9462171 -3.1866653, 55.9502544 -3.1792709, 55.9799828 -3.2336228, 55.9515884 -3.1767930, 55.9510805 -3.1774572, 55.9233418 -3.1754307, 55.9557050 -3.1593134, 55.9480729 -3.2006300, 55.9242811 -3.1768126, 55.9731731 -3.1669137, 55.9756413 -3.1693138, 55.9758911 -3.1692936, 55.9758604 -3.1697211, 55.9753361 -3.1696582, 55.9756625 -3.1668579, 55.9721048 -3.1685421, 55.9721151 -3.1680154, 55.9717652 -3.1690738, 55.9732515 -3.1673385, 55.9715681 -3.1606383, 55.9692273 -3.1671765, 55.9730053 -3.1675964, 55.9756256 -3.1775110, 55.9713870 -3.1706865, 55.9729528 -3.1695492, 55.9751541 -3.1650251, 55.9751577 -3.1653774, 55.9763527 -3.1666992, 55.9766234 -3.1668946, 55.9528337 -3.1973510, 55.9770520 -3.1688358, 55.9763420 -3.1688202, 55.9768312 -3.1689243, 55.9769477 -3.1679184, 55.9764831 -3.1675618, 55.9766276 -3.1674364, 55.9767630 -3.1679004, 55.9763615 -3.1673944, 55.9762132 -3.1674013, 55.9764423 -3.1672457, 55.9736969 -3.1671845, 55.9743212 -3.1625378, 55.9740795 -3.1632105, 55.9740620 -3.1630357, 55.9742799 -3.1619687, 55.9742593 -3.1633249, 55.9742318 -3.1635897, 55.9752231 -3.1690512, 55.9746912 -3.1702181, 55.9750377 -3.1689925, 55.9746574 -3.1700411, 55.9749450 -3.1691192, 55.9749017 -3.1700282, 55.9720281 -3.1737035, 55.9727889 -3.1744380, 55.9727346 -3.1745843, 55.9721351 -3.1736643, 55.9741171 -3.1730714, 55.9735318 -3.1745179, 55.9740812 -3.1745082, 55.9739348 -3.1746700, 55.9742013 -3.1746074, 55.9744262 -3.1756289, 55.9743317 -3.1760719, 55.9738875 -3.1759382, 55.9743689 -3.1762422, 55.9741727 -3.1757146, 55.9741963 -3.1758890, 55.9740011 -3.1760644, 55.9740555 -3.1757628, 55.9253013 -3.2894404, 55.9241260 -3.2892037, 55.9235279 -3.2886413, 55.9244036 -3.2888357, 55.9236537 -3.2877037, 55.9235845 -3.2848604, 55.9737812 -3.1727710, 55.9739374 -3.1725951, 55.9739122 -3.1731923, 55.9747248 -3.1723013, 55.9746745 -3.1725116, 55.9730956 -3.1719611, 55.9737461 -3.1722015, 55.9735419 -3.1722524, 55.9737264 -3.1720461, 55.9734307 -3.1722581, 55.9733652 -3.1721379, 55.9733894 -3.1719573, 55.9732022 -3.1719596, 55.9732758 -3.1714536, 55.9725117 -3.1719833, 55.9716033 -3.1728525, 55.9716849 -3.1726165, 55.9719508 -3.1722289, 55.9718987 -3.1720621, 55.9550047 -3.1950755, 55.9736826 -3.1690330, 55.9737219 -3.1688570, 55.9753470 -3.1700225, 55.9746740 -3.1690745, 55.9745309 -3.1710571, 55.9744986 -3.1695250, 55.9745046 -3.1693685, 55.9746944 -3.1711617, 55.9759337 -3.1724595, 55.9759996 -3.1723194, 55.9758148 -3.1719840, 55.9760071 -3.1718126, 55.9759678 -3.1720731, 55.9756249 -3.1743429, 55.9756742 -3.1728919, 55.9474254 -3.1872595, 55.9764777 -3.1935321, 55.9501836 -3.1903813, 55.9764763 -3.1861996, 55.9436134 -3.2678368, 55.9789651 -3.2338860, 55.9491658 -3.2048210, 55.9497896 -3.2057497, 55.9397193 -3.2934475, 55.9397826 -3.2930873, 55.9672312 -3.2394326, 55.9718215 -3.2052420, 55.9732950 -3.1966033, 55.9753062 -3.2134399, 55.9745116 -3.2044948, 55.9740769 -3.2060525, 55.9744149 -3.2047233, 55.9748045 -3.2066664, 55.9691367 -3.2785220, 55.9723641 -3.2012431, 55.9501209 -3.2050581, 55.9500762 -3.2064723, 55.9498529 -3.2060188, 55.9431626 -3.1790248, 55.9544909 -3.1908045 +124 and 43.6837822 -79.4260743, 43.6576795 -79.4987997, 43.7022711 -79.5255029, 53.9502911 -1.0730271, 53.9360281 -1.0702516, 53.9153104 -1.1359444, 53.9409591 -1.1265772, 53.9550521 -1.1301932, 53.9490348 -1.1324670, 53.9615418 -1.1120955, 53.9522410 -1.1122907, 53.9358339 -1.1263285, 53.9629477 -0.9755778, 53.9303232 -1.0689686, 53.9642135 -1.0653371, 53.9403226 -1.1185343, 53.9636588 -1.1373722, 53.9491771 -1.0804384, 53.9553252 -1.1119903, 53.9017427 -1.0873341, 53.9575241 -1.0493096, 53.9637219 -1.1380788, 53.9575852 -1.1178225, 53.9494875 -1.1413259, 53.9647966 -1.1058434, 53.9563077 -1.0554740, 53.9462069 -1.0762908, 53.9646978 -1.1104689, 53.9500452 -1.0806102, 43.6644716 -79.5073350, 53.9579066 -1.0615711, 43.6709565 -79.4808029, 53.9578916 -1.0384236, 43.6909696 -79.5078325, 43.6768364 -79.5008575, 43.6869909 -79.4927906, 43.7060427 -79.5305440, 53.9411226 -1.0453008, 53.9402545 -1.0628004, 53.9412901 -1.0485025, 53.9518846 -1.0748059, 43.6954667 -79.4292400, 53.9642505 -1.1103673, 53.9572111 -1.1022306, 53.9275166 -1.1585419, 43.6916751 -79.4801455, 43.6884518 -79.4620778, 43.6791418 -79.4807102, 43.6784874 -79.4805707, 53.9171538 -1.0961410, 43.6983920 -79.4349417, 43.7032269 -79.5060546, 53.9511412 -1.0357185, 43.6965563 -79.4691090, 53.9417894 -1.0651445, 43.6537880 -79.4901878, 43.6868311 -79.4924568, 53.9441501 -1.1072575, 43.6912619 -79.4333772, 43.6883062 -79.4538863, 53.9580671 -1.0717614, 53.9316497 -1.1069040, 43.7063756 -79.5161696, 43.6980072 -79.5193378, 43.6979105 -79.5191746, 43.6981548 -79.5195536, 43.6948627 -79.4854853, 53.9605571 -1.0416518, 43.7078482 -79.5309590, 53.8979156 -0.9664321, 43.6761780 -79.4788514, 43.6769072 -79.4772807, 43.6731469 -79.4908170, 53.9564001 -1.0614879, 53.9602131 -1.0579907, 53.9598297 -1.0582374, 43.6933502 -79.4302213, 43.6843140 -79.4879601, 43.6712702 -79.4926038, 43.6946390 -79.4359419, 43.6869082 -79.4775555, 43.6817542 -79.4986570, 43.7014365 -79.5073633, 43.6935978 -79.4761834, 43.7014532 -79.4510224, 43.7014588 -79.4506901, 43.6957307 -79.4305271, 53.9622142 -1.0110749, 43.7032224 -79.4392616, 43.6925004 -79.5088912, 43.7000154 -79.4462363, 43.7000042 -79.4464494, 43.7001712 -79.4461827, 43.7001539 -79.4458926, 43.7000636 -79.4460083, 43.6836390 -79.4590501, 43.6880963 -79.4613111, 43.6898241 -79.4643187, 53.9450082 -1.1361836, 43.6924209 -79.4689785, 43.6879894 -79.4708591, 53.9586201 -1.0293671, 53.9445374 -1.1245969, 53.9595274 -1.0981373, 53.9610119 -1.1037227, 43.6840446 -79.4389375, 43.6842718 -79.4397157, 43.6871180 -79.4284008, 53.9623408 -1.1308643, 43.6484124 -79.4885632, 53.9522747 -1.0911362, 43.6762467 -79.4781695, 43.6927596 -79.4362309, 43.6895001 -79.4353381, 43.6921445 -79.4472623, 43.6917638 -79.4436721, 43.6628673 -79.4872055, 43.6627881 -79.4870652, 43.6890777 -79.4991503, 43.6898499 -79.4650002, 43.6648262 -79.5030967, 43.7027737 -79.5207797, 43.6742489 -79.4976003, 53.9640155 -1.0652996 +487500 +48.8541652 2.3604172, 48.8963839 2.3624261, 48.8248737 2.3087392, 48.8993122 2.3609092, 48.8993233 2.3617724, 48.8304425 2.2721214, 48.8564445 2.2915808, 48.8313000 2.4416725, 48.8314585 2.4435718, 48.8306063 2.4405136, 48.8319652 2.4454636, 48.8317943 2.4469582, 48.8309202 2.4463017, 48.8291949 2.4452916, 48.8291208 2.4475259, 48.8280917 2.4493365, 48.8288155 2.4504391, 48.8279653 2.4512915, 48.8172489 2.3419302, 48.8527928 2.4131895, 48.8516351 2.4139817, 48.8589361 2.4130244, 48.8219145 2.3772908, 48.8916479 2.3973660, 48.8189840 2.3359160, 48.8493218 2.2850640, 48.8413729 2.2530487, 48.8173566 2.3642554, 48.8745694 2.2772092, 48.8651890 2.2695538, 48.8414290 2.2530717, 48.8192373 2.3541308, 48.8182299 2.4585231, 48.8194154 2.4605790, 48.8353668 2.4412540, 48.8314775 2.2726540, 48.8460923 2.2570997, 48.8262013 2.4576009, 48.8288698 2.4604906, 48.8252883 2.4577897, 48.8271040 2.4569086, 48.8267231 2.4561442, 48.8284019 2.4610162, 48.8276508 2.4590248, 48.8274884 2.4576702, 48.8256615 2.4585554, 48.8270526 2.4603840, 48.8265841 2.4609108, 48.8964444 2.3124004, 48.8892773 2.3152853, 48.8995126 2.3630674, 48.8396076 2.4117403, 48.8267883 2.2989248, 48.8996533 2.3245162, 48.9003238 2.3498399, 48.8560241 2.4128978, 48.8570641 2.4125995, 48.8617355 2.4119807, 48.8207864 2.3270956, 48.8407199 2.2797907, 48.8650432 2.2584123, 48.8325304 2.4014430, 48.9002424 2.3481720, 48.8999996 2.3408061, 48.8330580 2.4421058, 48.8323107 2.4404839, 48.8307714 2.4424382, 48.8289808 2.4410748, 48.8289999 2.4427711, 48.8441298 2.3930950, 48.8314075 2.4542498, 48.8355851 2.4389815, 48.8537172 2.2616103, 48.8905198 2.3004678, 48.8489058 2.4157395, 48.8360783 2.4383689, 48.8352273 2.4395834, 48.8321213 2.3663327, 48.8172226 2.3451045, 48.8275756 2.3594809, 48.8185965 2.3670404, 48.8839549 2.2846685, 48.8313882 2.2716642, 48.8856508 2.3759414, 48.8185234 2.3466553, 48.8276232 2.2954956, 48.8235209 2.3144545, 48.8369677 2.2900219, 48.8511630 2.2567335, 48.8189318 2.4610821, 48.8243189 2.4615574, 48.8960440 2.3610957, 48.8563764 2.3886135, 48.8665252 2.3904723, 48.8712726 2.3865486, 48.8941086 2.3968276, 48.8904713 2.3737426, 48.8904321 2.3106567, 48.8919636 2.3123125, 48.8360029 2.2835490, 48.8940790 2.3261529 +0 +yes +1 +183 +no +88 +61 +Greggs, Malone's Bakeries, Gregg's, Douglas's Bakery, Masons Bakery, Roll Up, Gregg's, Barnton Fine Foods, La Croissanterie, Mathiesons Bakers, Greggs, Storries Home Bakery, Morrison's Bakery, Greggs, Gregg's Bakery, Greggs, Greggs, Patissier Maxine, Patisserie Valerie, Bibi's Cake Boutique, Greggs, Dough Re Mi, Dough Re Mi, The Pine Tree Bakery, Donachie Bakers, Bayne's, Goodfellow & Steven, Greggs, Bakery Andante, Greggs, Greggs, Bayne's, Artisan Bakehouse, Nikki's Cakes, Goodfellow & Steven, Edinburgh Bakehouse, Greggs, Greggs, Bonningtons, The Wee Boulangerie, Jacob, Licks Cake Design, Greggs, Greggs, Mr Bun's Bakery, Glenvarloch Bakery, Archipelago Bakery, Sicilian Pastry Shop, Melinda's Cake Boutique, Malone's Bakery, Greggs, 1, Greggs +48.8373758 2.2723483, 48.8479197 2.3992555, 48.8480669 2.2646701, 48.8444572 2.3762234, 48.8672033 2.3175552, 48.8336197 2.4448135, 48.8794780 2.2911520, 48.8374741 2.2964370, 48.8426769 2.2964541, 48.8447051 2.3110485, 48.8418578 2.3031404, 48.8356667 2.3025546, 48.8418917 2.2973124, 48.8375362 2.2963597, 48.8371698 2.2968218, 48.8411351 2.2996815, 48.8513851 2.3427515, 48.8267972 2.3644166, 48.8266959 2.3418366, 48.8313237 2.3160082, 48.8276961 2.3323037, 48.8526158 2.3471643, 48.8536884 2.3438503, 48.8465209 2.3169152, 48.8223603 2.3376975, 48.8333496 2.3122320, 48.8468908 2.3696558, 48.8422395 2.3861184, 48.8463028 2.3793259, 48.8399294 2.4045970, 48.8448378 2.4051177, 48.8474520 2.4048594, 48.8473395 2.4060719, 48.8350796 2.4339399, 48.8354938 2.4305358, 48.8375477 2.4255552, 48.8346793 2.4193483, 48.8684023 2.3502078, 48.8662853 2.3197532, 48.8659622 2.3186038, 48.8679910 2.3372848, 48.8554435 2.3595073, 48.8529019 2.3430541, 48.8502442 2.3485713, 48.8844724 2.3214773, 48.8848286 2.2981665, 48.8815112 2.2955182, 48.8637584 2.2404391, 48.8410791 2.3878034, 48.8684582 2.2651973, 48.8652473 2.2754857, 48.8364073 2.3595567, 48.8325568 2.3113862, 48.8326306 2.3560783, 48.8397407 2.3618144, 48.8430681 2.3643136, 48.8548336 2.3455606, 48.8552512 2.3476157, 48.8553803 2.3476867, 48.8554064 2.3475533, 48.8552816 2.3474675, 48.8316089 2.3555656, 48.8724857 2.2964468, 48.8578487 2.2776036, 48.8561596 2.2803320, 48.8587309 2.2850498, 48.8503867 2.2499063, 48.8474160 2.2734653, 48.8645482 2.2749436, 48.8798361 2.2946562, 48.8867832 2.3174727, 48.8834250 2.3133443, 48.8832839 2.3261502, 48.8620110 2.2617158, 48.8578293 2.2627189, 48.8522460 2.2310858, 48.8561113 2.3406430, 48.8359176 2.2934497, 48.8415640 2.2914435, 48.8321096 2.3027626, 48.8488952 2.2875621, 48.8450063 2.2934495, 48.8428146 2.3128644, 48.8584946 2.2687106, 48.8590276 2.2701439, 48.8582201 2.2684874, 48.8580507 2.2679638, 48.8621864 2.2858577, 48.8627962 2.2854972, 48.8620791 2.2848191, 48.8477318 2.3279086, 48.8587970 2.2574756, 48.8844757 2.3382719, 48.8859435 2.3414431, 48.8462050 2.3548474, 48.8445578 2.3478015, 48.8397766 2.3563951, 48.8439889 2.3550231, 48.8400361 2.3581380, 48.8403571 2.3507117, 48.8777755 2.4052173, 48.8374935 2.3535342, 48.8379182 2.3556557, 48.8392719 2.3386499, 48.8382351 2.3417326, 48.8501724 2.3668483, 48.8805089 2.3247630, 48.8795193 2.3372522, 48.8860003 2.3379474, 48.8871034 2.3395432, 48.8872913 2.3493292, 48.8849270 2.3525804, 48.8994594 2.3456310, 48.8925222 2.3614454, 48.8881990 2.3259122, 48.8551549 2.3558324, 48.8670855 2.3530694, 48.8647563 2.3632147, 48.8775035 2.3271975, 48.8674231 2.3585861, 48.8535530 2.3577268, 48.8554797 2.2377372, 48.8509506 2.2377234, 48.8554112 2.4000945, 48.8276950 2.3526554, 48.8718710 2.3683060, 48.8480846 2.3334838, 48.8451543 2.3325456, 48.8474672 2.3379586, 48.8474379 2.3363959, 48.8503580 2.3831342, 48.8699280 2.3499165, 48.8570290 2.3204791, 48.8321351 2.3486444, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8293608 2.3803043, 48.8299075 2.3795677, 48.8188018 2.3371410, 48.8185040 2.3384113, 48.8181578 2.3401279, 48.8370007 2.3812275, 48.8204882 2.3602086, 48.8203447 2.3628121, 48.8199857 2.3627088, 48.8339810 2.3847461, 48.8353141 2.3838347, 48.8352990 2.3814978, 48.8787743 2.4087695, 48.8790383 2.4084495, 48.8782046 2.4088226, 48.8793770 2.4082476, 48.8785854 2.4080833, 48.8418885 2.2735712, 48.8640823 2.3242375, 48.8428738 2.2978005, 48.8243977 2.3360819, 48.8649222 2.3994933, 48.8297310 2.3179488, 48.8516782 2.3146314, 48.8706300 2.2979200, 48.8628604 2.3719559, 48.8677797 2.3773892, 48.8365930 2.3046690, 48.8363767 2.4236251, 48.8295071 2.4201091, 48.8212233 2.4336070, 48.8300361 2.4231832, 48.8954660 2.3118560, 48.9006880 2.3443120, 48.8726523 2.2991152, 48.8295708 2.4234828, 48.8384857 2.3139931, 48.8880790 2.3433440, 48.8425610 2.3055230, 48.8606880 2.2465600, 48.8291280 2.4377720, 48.8488720 2.3128820, 48.8817158 2.3974038, 48.8345717 2.3321583, 48.8350776 2.4353579, 48.8517060 2.3188780, 48.8430906 2.4215578, 48.8630654 2.2649414, 48.8635021 2.2620126, 48.8597630 2.3718080, 48.8963810 2.3139000, 48.8322990 2.3969380, 48.8852454 2.3310516, 48.8612160 2.3941080, 48.8397680 2.3287550, 48.8893940 2.3388820, 48.8374610 2.2851470, 48.8954560 2.3210460, 48.8562087 2.3767474, 48.8556820 2.3852020, 48.8238387 2.3531949, 48.8674870 2.3165830, 48.8315645 2.4109263, 48.8312210 2.4129893, 48.8532780 2.2711410, 48.8311370 2.3128840, 48.8778330 2.3934820, 48.8555310 2.3895370, 48.8898960 2.2981300, 48.8417190 2.3204800, 48.8871960 2.3058630, 48.8998070 2.3740820, 48.8551080 2.3942800, 48.8459400 2.2689590, 48.8599920 2.3625150, 48.8270122 2.3540304, 48.8424551 2.3888122, 48.8623280 2.3486460, 48.8855390 2.3268800, 48.8569870 2.2983049, 48.8501704 2.3439958, 48.8399030 2.2904890, 48.8585128 2.2948820, 48.8525988 2.4088082, 48.8691890 2.2731280, 48.8898369 2.3739136, 48.8307590 2.3592040, 48.8526713 2.3815527, 48.8417000 2.3374070, 48.8210197 2.3568688, 48.8523510 2.2944030, 48.8383280 2.2782440, 48.8951024 2.3643279, 48.8433760 2.3364170, 48.8504870 2.3502540, 48.8654640 2.3863600, 48.8702780 2.3853090, 48.8289169 2.3068462, 48.8684460 2.3844060, 48.8530930 2.2487630, 48.8483008 2.3594250, 48.8743960 2.3620000, 48.8590555 2.3853281, 48.8510180 2.2721570, 48.8417750 2.2766630, 48.8909945 2.3180223, 48.8581770 2.2475410, 48.8708487 2.3842762, 48.8559797 2.2830925, 48.8808400 2.3880660, 48.8304600 2.4499760, 48.8366079 2.4625007, 48.8185772 2.3545050, 48.8789680 2.3090890, 48.8221640 2.3407800, 48.8861910 2.3437000, 48.8229962 2.3483008, 48.8548880 2.3860580, 48.8334140 2.3198533, 48.8782185 2.2703461, 48.8342986 2.3307561, 48.8649444 2.4051523, 48.8711656 2.3608619, 48.8683392 2.3860944, 48.8512040 2.3336860, 48.8519135 2.2527965, 48.8617560 2.2470009, 48.8211700 2.3525560, 48.8876610 2.2899050, 48.8412050 2.4011810, 48.8957085 2.3611060, 48.8325969 2.4424252, 48.8280471 2.4193059, 48.8341687 2.4613030, 48.8521115 2.2541524, 48.8319760 2.4160891, 48.8322537 2.4156461, 48.8736560 2.2651653, 48.8385501 2.4606113, 48.8237496 2.4396773, 48.8234381 2.4570355, 48.8634236 2.2498140, 48.8715892 2.2642560, 48.8302710 2.4501255, 48.8515696 2.2338766, 48.8272306 2.4306540, 48.8308745 2.4295234, 48.8404327 2.4302364, 48.8670116 2.2393588, 48.8589309 2.2291849, 48.8593085 2.2283998, 48.8683594 2.2629205, 48.8351339 2.4507573, 48.8355228 2.4555897, 48.8728525 2.2727107, 48.8270280 2.4256131, 48.8523056 2.3854632, 48.8827393 2.3748215, 48.8649924 2.3911518, 48.8992390 2.3401270, 48.8283394 2.3695038, 48.8814860 2.3253960, 48.8890670 2.3382500, 48.8713595 2.3858455, 48.8756264 2.3549455, 48.8316594 2.3202088, 48.8940100 2.3515980, 48.8515687 2.3455917, 48.8606179 2.4048647, 48.8221234 2.3755099, 48.8501856 2.3598181, 48.8832242 2.3300482, 48.8543340 2.3134030, 48.8479841 2.3021348, 48.8381900 2.2706380, 48.8921127 2.3319234, 48.8783392 2.3518796, 48.8672620 2.3546160, 48.8373130 2.3123540, 48.8929520 2.3468380, 48.8319794 2.3254293, 48.8876110 2.3980200, 48.9001410 2.3907160, 48.8285390 2.2936320, 48.8581731 2.4063523, 48.8581782 2.3488219, 48.8937910 2.3254410, 48.8579930 2.3811530, 48.8878070 2.3168387, 48.8701720 2.3941990, 48.8252925 2.3693389, 48.8528480 2.3236680, 48.8954540 2.3265480, 48.8366880 2.3168190, 48.8311305 2.3217527, 48.8281910 2.2975610, 48.8760549 2.4066379, 48.8646712 2.2945788, 48.8224115 2.3234656, 48.8648810 2.3598580, 48.8563720 2.3423640, 48.8785620 2.3603690, 48.8656244 2.4005700, 48.8976745 2.3255573, 48.8678880 2.4110180, 48.8782870 2.3930910, 48.8687996 2.3670827, 48.8488580 2.3354220, 48.8323838 2.3266258, 48.8302050 2.3165310, 48.8578985 2.3627922, 48.8338684 2.3623631, 48.8186719 2.3602335, 48.8311679 2.3698529, 48.8353270 2.3472350, 48.8512390 2.2749420, 48.8675640 2.3439900, 48.8940810 2.3257310, 48.8389116 2.2802003, 48.8435250 2.3852390, 48.8239822 2.3186264, 48.8847495 2.3583714, 48.8680920 2.3674820, 48.8268397 2.3045308, 48.8749920 2.3693880, 48.8691100 2.3880580, 48.8927720 2.3393440, 48.8582469 2.3636013, 48.8847394 2.3599665, 48.8708650 2.3267180, 48.8851070 2.3774500, 48.8759177 2.3199403, 48.8985920 2.3386760, 48.8411853 2.3632232, 48.8618850 2.3795690, 48.8766520 2.3471580, 48.8973940 2.3352610, 48.8432899 2.3273991, 48.8863250 2.3533990, 48.8501986 2.3439620, 48.8892960 2.3080360, 48.8937263 2.3632365, 48.8295130 2.2974440, 48.8505319 2.3140947, 48.8513900 2.2954500, 48.8866720 2.3745570, 48.8519585 2.3815373, 48.8735686 2.3764151, 48.8486812 2.4047540, 48.8186727 2.3590770, 48.8422355 2.3539722, 48.8829640 2.2906840, 48.8862884 2.3363224, 48.8997980 2.3671430, 48.8940029 2.3839514, 48.8509163 2.4000959, 48.8990940 2.3343970, 48.8737600 2.4116660, 48.8608430 2.4112060, 48.8729910 2.3967970, 48.8991980 2.3373340, 48.8399790 2.2978655, 48.8569010 2.3829850, 48.8670820 2.3921970, 48.8394056 2.4219004, 48.8491125 2.4034753, 48.8387600 2.3533490, 48.8650341 2.4104986, 48.8939970 2.3494640, 48.8765790 2.3317425, 48.8570984 2.3707315, 48.8861355 2.3561753, 48.8866310 2.2931960, 48.8446043 2.3875639, 48.8780460 2.3546040, 48.8885760 2.3372580, 48.8544710 2.3306000, 48.8444200 2.2902970, 48.8482791 2.3738928, 48.8541916 2.4013975, 48.8477459 2.4005894, 48.8401440 2.3004225, 48.8315105 2.3698744, 48.8682815 2.2937862, 48.8377715 2.3234750, 48.8451934 2.3802706, 48.8437212 2.3551124, 48.8691909 2.3123689, 48.8313290 2.3203574, 48.8678242 2.3628446, 48.8686720 2.3127647, 48.8671021 2.3110061, 48.8450099 2.3109341, 48.8243378 2.3638857, 48.8933245 2.3887800, 48.8941743 2.3916574, 48.8412410 2.2855118, 48.8219932 2.3234435, 48.8211670 2.3407757, 48.8536514 2.3489902, 48.8408330 2.4201155, 48.8337204 2.3201626, 48.8338246 2.3197979, 48.8912248 2.3930476, 48.8946014 2.3912450, 48.8548000 2.3455200, 48.8468000 2.3358800, 48.8527000 2.3492200, 48.8518000 2.3475300, 48.8242821 2.4231989, 48.8387842 2.4064887, 48.8321456 2.3262397, 48.8608218 2.3464552, 48.8685507 2.2728757, 48.8449387 2.4418585, 48.8563416 2.2955451, 48.8724483 2.2489997, 48.8687857 2.2448905, 48.8735492 2.2502871, 48.8706241 2.2491259, 48.8705077 2.2469076, 48.8729282 2.2477712, 48.8734222 2.2509255, 48.8670602 2.2431900, 48.8688615 2.2471136, 48.8516633 2.4098056, 48.8668000 2.3495673, 48.8600249 2.4009571, 48.8589058 2.3989762, 48.8559569 2.4014635, 48.8902559 2.3155823, 48.8895081 2.3152790, 48.8909868 2.3143418, 48.8916562 2.3142685, 48.8819047 2.3985349, 48.8590759 2.4003273, 48.8644583 2.3274519, 48.8879169 2.3153097, 48.8879452 2.3155854, 48.8914702 2.3147632, 48.8264004 2.4327560, 48.8189971 2.3575128, 48.8323795 2.3620094, 48.8697228 2.2704730, 48.8520536 2.4091515, 48.8198844 2.3619743, 48.8195477 2.3338738, 48.8569678 2.3519723, 48.8499865 2.3481714, 48.8895806 2.3929015, 48.8847068 2.3794407, 48.8420092 2.4240851, 48.8643128 2.3266632, 48.8232610 2.3543235, 48.8232751 2.3542283, 48.8359580 2.3022176, 48.8237907 2.3314831, 48.8632906 2.3969375, 48.8597103 2.3998209, 48.8303825 2.3751684, 48.8930154 2.3876090, 48.8296315 2.3814341, 48.8300792 2.4152641, 48.8419664 2.3871201, 48.8815514 2.4001315, 48.8283467 2.3766535, 48.8238319 2.3396086, 48.8612225 2.3119810, 48.8625039 2.3009824, 48.8880273 2.3373781, 48.8725766 2.3640561, 48.8441811 2.3576296, 48.8668462 2.3528123, 48.8658864 2.3524475, 48.8764030 2.3793479, 48.8310454 2.3779874, 48.8226090 2.3400474, 48.8239560 2.3366723, 48.8527614 2.3515044, 48.8577082 2.3492535, 48.8564552 2.3511205, 48.8888874 2.3790640, 48.8421923 2.2737321, 48.8386247 2.2767307, 48.8786186 2.4075133, 48.8276674 2.3600431, 48.8279422 2.3594556, 48.8281550 2.3775324, 48.8585066 2.2446643, 48.8316089 2.3555656, 48.8316089 2.3555656, 48.8459784 2.3603720, 48.8869922 2.3168829, 48.8243136 2.4192238, 48.8629574 2.3670436, 48.8705355 2.3858494, 48.8771612 2.3641684, 48.8365007 2.3061630, 48.8408118 2.2763450, 48.8662716 2.4063088, 48.8487971 2.2855992, 48.8305375 2.3580300, 48.8527458 2.3514040, 48.8340933 2.3218873, 48.8342849 2.3425292, 48.8361094 2.3872805, 48.8774505 2.3685222, 48.8563876 2.4098516, 48.8897483 2.3636170, 48.8893152 2.3632428, 48.8895729 2.3670765, 48.8479507 2.3346295, 48.8531320 2.3882360, 48.8548595 2.4101096, 48.8950748 2.3539271, 48.8737508 2.2552546, 48.8572052 2.2975105, 48.8287672 2.3790174, 48.8290058 2.3792428, 48.8324901 2.4167426, 48.8325371 2.4171377, 48.8770432 2.3607309, 48.8928183 2.3927190, 48.8528020 2.4110674, 48.8854184 2.3809339, 48.8847022 2.3794239, 48.8220651 2.3497136, 48.8402419 2.2911223, 48.8556477 2.3481362, 48.8647970 2.3376815, 48.8379924 2.3573249, 48.8506007 2.3684957, 48.8279269 2.3606649, 48.8281328 2.3608761, 48.8284210 2.3605021, 48.8290169 2.3599418, 48.8313949 2.3614586, 48.8502691 2.3768309, 48.8514077 2.3619724, 48.8557425 2.3657180, 48.8557863 2.3654533, 48.8405076 2.4080728, 48.8407300 2.4111999, 48.8420117 2.4099305, 48.8435586 2.3837116, 48.8463579 2.4045679, 48.8467508 2.4047042, 48.8481084 2.4046457, 48.8358697 2.3734634, 48.8362808 2.3737861, 48.8444058 2.3789793, 48.8769296 2.3805462, 48.8307541 2.4193421, 48.8663182 2.3718556, 48.8209696 2.4454995, 48.8453348 2.3532344, 48.8736147 2.3633962, 48.8708335 2.3864170, 48.8223127 2.4420635, 48.8594153 2.4063574, 48.8759892 2.3685271, 48.8640746 2.3609523, 48.8602693 2.3889177, 48.8593740 2.3653569, 48.8279008 2.3224596, 48.8620888 2.3721843, 48.8416104 2.3878997 +yes +yes +3 and 55.9354242 -3.1897423, 55.9542006 -3.1087433, 55.9374159 -3.1700169 +recreation ground, allotments, construction, cemetery, industrial, grass, commercial, farmland, railway, basin, retail, village green, residential, forest, farmyard, orchard, meadow, military, proving ground, greenfield, landfill, traffic island, vineyard, sand, scrub, garage, brownfield, greenhouse horticulture, quarry, garages, farm +2.6754177782878759 +yes +Tiergartenstraße +51 +yes +Camping de Paris - Bois de Boulogne +01.40.67.97.66, +33 1 44 78 75 00, +33 1 44859800, 01 46 36 07 07, 01 44 85 98 00, +33 1 44781233, 01.53.01.96.96, 01 48 03 11 09, +33 1 55 74 70 40, 01.44.78.80.20 +yes +de:Heidenloch (Heidelberg) +4.3205587903235791 +11 +231 +55.9308997 -3.1309460, 55.9390317 -3.1727940, 55.9350432 -3.1974969, 55.9530140 -3.1069114, 55.9838271 -3.1959330, 55.9715399 -3.1754017, 55.9609898 -3.2094322, 55.9423816 -3.2176526 +23 +25 +1 +Pharmacie Internationale +60 +Südwestrundfunk (SWR) +48.8275543 9.1735007, 48.8317303 9.1734075, 48.7617346 9.1602369, 48.7789392 9.1250259, 48.7596919 9.2545814, 48.7755956 9.2787713, 48.7822418 9.1959176, 48.7297433 9.1126553, 48.7404705 9.2193208, 48.7701954 9.1501963, 48.8038663 9.2046417, 48.7817024 9.1785053, 48.7738605 9.1653114, 48.7745628 9.1768249, 48.7755661 9.1822665, 48.8075764 9.2215905, 48.7748791 9.2033224, 48.7855023 9.2078250, 48.7728984 9.2422225, 48.7603190 9.1527564, 48.8099398 9.1822005, 48.7835213 9.1904669, 48.7777675 9.1786644, 48.7836164 9.1815941, 48.8051636 9.2143167, 48.8075633 9.2031061, 48.8056941 9.2052973, 48.8046584 9.2081441, 48.7733571 9.1814780, 48.7935947 9.1983330, 48.8302021 9.2116521, 48.8031501 9.2176920, 48.7482479 9.1675385, 48.7803811 9.2504393, 48.8062716 9.1978670, 48.8137095 9.1121176, 48.7459605 9.1628840, 48.8142557 9.1680503, 48.7637176 9.1680843, 48.7829026 9.1869980, 48.7314704 9.1097357, 48.7803731 9.1800642, 48.7790681 9.1778545, 48.7789470 9.1790715, 48.8029161 9.0920608, 48.7103495 9.2034577, 48.8040371 9.2077185, 48.8299794 9.1677017, 48.8066438 9.2064316, 48.7625523 9.2679330, 48.7714772 9.1787823, 48.7739785 9.1452043, 48.7743064 9.1728145, 48.7607878 9.0913690, 48.8367097 9.2219462, 48.8053640 9.1717932, 48.8047872 9.1737641, 48.8071042 9.1709399, 48.7454315 9.2048052, 48.7750049 9.1779775, 48.7865061 9.0839294, 48.8347151 9.2143326, 48.8016329 9.2177209, 48.7813410 9.2686106, 48.7836705 9.1815229, 48.8414941 9.2304961, 48.7764847 9.1755588, 48.8076517 9.1765509, 48.8280349 9.1541290, 48.7735308 9.1564212, 48.8022186 9.2108011, 48.7173535 9.1056474, 48.8228892 9.2406244 +Römischer Tempel, Dicker Turm +5 +indian, italian, regional, chinese, thai, german, french, vegetarian, greek, spanish, mediterranean, japanese, malaysian, eritrean, international, persian, asian, moroccan, burger, vietnamese, turkish, african, cuban, korean, vegan, Flammkuchen +H+G Bank and 49.4120923 8.7117858 +yes and 62 and 48.8651191 2.3417893, 48.8776904 2.2687637, 48.8889479 2.3316294, 48.8678821 2.3921769, 48.8844316 2.3506830, 48.8551205 2.3589562, 48.8424054 2.3895404, 48.8947814 2.3190669, 48.8549238 2.3592860, 48.8698923 2.3755947, 48.8832324 2.3637211, 48.8842940 2.3538553, 48.8245519 2.3668617, 48.8442654 2.3304438, 48.8595500 2.3794207, 48.8476483 2.3769905, 48.8425237 2.3899126, 48.8776787 2.3858246, 48.8770064 2.3684202, 48.8683317 2.3921668, 48.8522237 2.3452202, 48.8947391 2.3190753, 48.8903302 2.3647026, 48.8951201 2.3923772, 48.8676645 2.3368980, 48.8541107 2.3568241, 48.8892150 2.3050790, 48.8519784 2.3354942, 48.8784073 2.3854415, 48.8782913 2.3861269, 48.8838102 2.3718772, 48.8875552 2.3794980, 48.8480906 2.3770269, 48.8698453 2.3669656, 48.8766670 2.2637973, 48.8488289 2.3520343, 48.8640121 2.3431386, 48.8605119 2.3524278, 48.8609964 2.3511217, 48.8581282 2.3585957, 48.8665653 2.3534157, 48.8748621 2.3640685, 48.8714289 2.3586492, 48.8491305 2.3324247, 48.8616442 2.3214269, 48.8942221 2.3932346, 48.8909125 2.3908221, 48.8914135 2.3730389, 48.8523494 2.3282306, 48.8775032 2.3443702, 48.8660241 2.3891973, 48.8700810 2.3939859, 48.8852691 2.3273520, 48.8852591 2.3385563, 48.8480847 2.3771241, 48.8312041 2.3702611, 48.8520334 2.2747877, 48.8497046 2.3472459, 48.8582260 2.3619639, 48.8310687 2.3580834, 48.8902445 2.3700712, 48.8673569 2.3780427 +yes +Mannheim +yes +0 +La Poste +2243833 +yes +Fair & Quer, NahKauf, Edeka, Netto, Penny, ALDI SÜD, denn's Biomarkt, Lidl, Fair & Quer, City-Markt Rüdinger, Netto, Penny, Mahlzahn Vollkornbäckerei, Netto, Feinkost Sahin, dm, Masala, Apfel und Korn, Heil's Feinschmeckerladen, Shopette, Kaufland, REWE City, REWE city, Penny, Alnatura, Reformhaus Escher (Vita Nova), Lebe Gesund, Alnatura, Serpa Markt, Nahkauf, City-Markt Rüdinger, Scheck-In-Center, Netto, Rewe, Kaufland, denn's Biomarkt, Lidl, Aldi, Rewe, Lidl, Penny, Nah und gut, Rewe, Kaufland, Aldi Süd, Lidl, Aldi Süd, Aldi, Aldi, REWE Center, ALDI Süd +no +48.8510673 2.3670936, 48.8494146 2.3482770, 48.8452383 2.3641683, 48.8442218 2.3811783, 48.8690961 2.3437971, 48.8426264 2.3901753, 48.8675566 2.2753192, 48.8542310 2.2688050, 48.8503222 2.3325549, 48.8638367 2.3749471, 48.8725482 2.3581799, 48.8922817 2.3443080, 48.8843283 2.3861616, 48.8582851 2.4065730, 48.8561576 2.4045951, 48.8577179 2.2773092, 48.8638302 2.2764451, 48.8855926 2.2970145, 48.8841470 2.3223431, 48.8433337 2.2768334, 48.8414384 2.3002634, 48.8755541 2.3045372, 48.8553731 2.3435125, 48.8628456 2.3420046, 48.8616954 2.3482560, 48.8669041 2.3315149, 48.8542985 2.3783997, 48.8589937 2.3814395, 48.8473592 2.3309027, 48.8340181 2.3740832, 48.8652119 2.2905036, 48.8701850 2.3766208, 48.8896373 2.3480452, 48.8671825 2.3131358, 48.8668030 2.3107239, 48.8501938 2.3666710, 48.8445644 2.3839569, 48.8777522 2.3178837, 48.8544686 2.3341824, 48.8694260 2.3613550, 48.8807365 2.3660941, 48.8632590 2.3519986, 48.8416861 2.2637661, 48.8804108 2.3562078, 48.8361400 2.3232008, 48.8768355 2.3527879, 48.8911935 2.3792213, 48.8550679 2.3462868, 48.8411402 2.3654371, 48.8764364 2.3934657, 48.8472751 2.2844418, 48.8933622 2.3648120, 48.8767354 2.3606489, 48.8577240 2.2943986, 48.8543637 2.3467385, 48.8541008 2.3508942, 48.8808624 2.3661835, 48.8922985 2.3808600, 48.8620107 2.3121034, 48.8401192 2.3024490, 48.8654752 2.3969034, 48.8851079 2.3221911, 48.8852850 2.3516529, 48.8330311 2.3559118, 48.8381409 2.3592686, 48.8264091 2.3707059, 48.8288263 2.3665943, 48.8361561 2.3231047, 48.8880610 2.3765878 +yes +yes +1 +48.1133979 11.5580798, 48.2167392 11.5288862, 47.5645037 9.6756220, 48.1917560 11.2604606, 48.1672232 11.5486553, 48.0529514 11.6690600, 48.0652614 11.6606034, 48.1502805 11.5678752, 48.1724666 11.5709000, 47.8174163 10.5345680, 48.1395725 11.6047921, 48.0954169 11.5566816, 48.3830181 10.4715717, 48.0913305 11.6784142, 47.8527854 12.3359177, 47.6768601 11.8377311, 48.1106870 12.1546587, 48.1128273 12.1503231, 48.6589620 13.2511100, 48.5745332 13.4639931, 48.1452629 11.4616156, 48.1101440 11.5418164, 48.6831112 10.8195081, 48.1188084 11.4450399, 48.1169283 11.4307756, 48.1121499 11.6495213, 47.8376039 11.7570497, 48.7077119 10.7968484, 48.3552389 10.9787058, 48.0087205 11.7329256, 48.0216058 11.7817301, 48.4036435 11.9891592, 48.5330823 12.1608939, 48.6793602 10.8398813, 48.6721648 10.8601728, 48.4303767 10.6017105, 47.9110333 11.6747920, 48.5335696 12.1598458, 47.8670880 12.7062222, 47.8282218 12.9077877, 48.7156858 10.7825564, 48.0481813 11.7018372, 48.0771391 11.7151740, 48.0772066 11.7150615, 48.1436359 11.5777273, 48.1433386 11.5761135, 48.0955077 11.7278751, 48.7136659 13.2701615, 48.1144089 11.7961741, 47.3109958 10.2208189, 48.0597408 11.6211259, 48.0672766 11.6621456, 48.3649975 11.4598175, 47.9837849 11.7003225, 48.5732476 10.8367687, 48.0199151 11.7286030, 48.5764989 10.8567173, 47.6606856 10.3497681, 48.1439897 11.5890544, 48.1504174 11.5926415, 48.1425164 11.5819824, 48.1413020 11.5773712, 48.4393971 10.4521982, 48.7256870 13.6028288, 48.7279362 13.6020419, 48.4034482 10.4623921, 48.1529504 11.2588493, 47.7145411 10.3070947, 48.7365394 13.5593114, 47.9066812 11.2801198, 48.7345934 13.5963213, 48.7364847 13.5964511, 48.7382158 13.6078165, 48.4985997 10.4042132, 47.4419272 11.2615129, 48.6364406 10.8242648, 48.7302984 13.6011798, 48.6624403 10.5210395, 48.1029807 11.8361371, 48.1350817 11.8749388, 47.9136232 11.2885710, 47.9129446 11.2857099, 48.8323467 12.1397113, 47.9081793 11.2773451, 47.9111525 10.5746665, 47.5549764 10.3203858, 48.2061893 11.5287483, 48.7223938 13.6179050, 47.9477750 11.2973595, 48.0026541 11.3213801, 48.0029713 11.3200625, 47.9431822 11.2570840, 48.1011013 11.6307959, 48.2372271 11.5475541, 48.2509071 11.5479241, 47.9410010 11.3016771, 47.9488326 11.3073731, 47.8632158 12.0083649, 48.0760825 11.5427810, 47.8977079 11.7820554, 48.1358816 11.5497163, 48.1273073 11.5451210, 48.1365137 11.5736815, 48.0392695 11.1435565, 48.3455521 12.1317089, 48.0002694 11.7956966, 48.8732355 11.3304000, 48.5982247 13.5518268, 48.2568821 11.4533336, 48.1804331 11.2800013, 47.5806808 12.9900205, 48.1010084 11.5468015, 48.1684687 11.5687037, 48.1711863 11.7155717, 48.1907849 11.2798642, 47.9032628 11.2772693, 48.6457043 13.5429788, 47.9003514 11.2741039, 48.7163700 13.6172725, 48.0766582 11.6626169, 48.6167866 11.9930003, 47.9125378 11.4195676, 48.1792348 11.3734128, 48.1782705 11.6260539, 48.1418146 11.5678012, 48.3834205 10.4714165, 48.1372350 11.5755354, 48.8581460 12.2279055, 48.4051825 11.9906620, 48.1350984 11.5760826, 47.7647020 12.3237407, 48.4676545 11.9380643, 48.4683631 11.9372170, 48.4675850 11.9354037, 48.1162625 11.5773134, 48.1155748 11.5803688, 48.2868645 11.4176679, 48.1489142 11.4594334, 48.0738927 11.3926369, 48.0960216 11.4131009, 48.2731929 11.4236388, 47.4676949 11.2491918, 48.1637344 11.4579506, 48.1476363 11.6010835, 48.2849053 11.4363469, 48.1799294 11.5750893, 47.8639011 12.6442624, 48.3046921 11.5429995, 48.1798173 11.5493366, 48.1767245 11.5477536, 47.8729654 12.1972526, 48.2738619 10.2290878, 48.5308012 11.4964571, 48.1596505 11.9979333, 48.1043551 11.2253453, 48.1707150 11.2528747, 48.0774058 12.0911230, 48.1189200 11.4453575, 47.7684577 11.6491787, 48.7011673 12.0279415, 48.2872819 10.2192824, 47.7602384 11.7365376, 47.9707197 11.7805174, 47.7501179 11.6777269, 47.9724108 10.1739626, 48.1256571 11.6629814, 48.7865388 10.6881358, 47.4336111 11.2579089, 47.7041339 12.0283575, 47.6066818 11.3147285, 47.7480474 10.6074388, 48.0017408 11.2701528, 47.6520979 11.4211323, 48.0742257 11.6533857, 48.0596775 11.6671957, 47.6295533 10.1893894, 48.1287664 11.4349115, 47.6824907 11.5717732, 47.9132392 11.2862167, 48.3591440 12.6093476, 48.1403023 11.5739691, 48.2510565 11.5076920, 48.0480677 11.7024896, 47.6268703 11.2381280, 48.0313078 11.6009454, 47.8825405 12.3323531, 48.4431330 10.7802592, 48.8044464 10.4946908, 47.7086603 11.7559246, 48.1598332 11.5978295, 48.1609141 11.5986413, 47.6172547 11.7431278, 48.0017688 10.5957050, 48.3788752 10.7774869, 48.1540535 11.5364883, 47.9798977 10.3083041, 48.1577100 11.5604800, 48.4080801 10.6837646, 48.2015987 10.1362656, 48.3195203 11.6884744, 48.7073907 10.6685039, 48.1431039 11.5739255, 47.8189913 11.3224155, 48.4686468 11.1766687, 47.7518380 11.5542307, 48.1094874 11.6715247, 48.0436899 11.6184000, 48.0340516 11.2124902, 48.1695372 11.5704440, 48.5779716 10.4885527, 48.1951367 11.5726760, 48.6886965 10.9194547, 47.6855301 10.1332724, 48.2558722 11.0933001, 48.6105657 13.6209883, 47.5859700 11.0639976, 47.5433790 10.4274455, 47.5964215 11.0654629, 48.3843367 10.8229418, 48.1888895 11.2264458, 48.7976268 11.5458268, 48.0367037 11.1887722, 48.5368053 11.4792245, 48.8988008 11.6460326, 47.9699197 10.9587540, 47.9727825 10.9565821, 47.5869550 10.6152976, 48.8406685 11.8248245, 47.6663871 10.7409189, 47.7196300 13.0070178, 47.5031642 13.0178510, 47.5763930 12.9428503, 47.5858088 12.9880887, 48.0669364 10.9956216, 47.7945484 11.8652626, 48.8228747 11.8710406, 47.5336896 12.9724350, 47.5301100 12.9619598, 47.5031123 12.9328624, 48.5606131 13.2960716, 48.1910596 11.3134435, 48.1716866 11.2891123, 48.8211211 11.5141945, 47.8516723 12.0615827, 47.8485888 12.0672963, 48.1508584 11.6433653, 48.0377230 11.4622667, 47.5548126 10.7321880, 47.7364685 10.7761580, 48.1469931 11.6257305, 48.0686738 11.6615712, 48.6328788 13.1769786, 48.0426344 10.2945479, 48.1635399 11.5422013, 48.6126614 10.9500893, 48.4554508 13.2099038, 48.1201768 11.6588925, 48.0814807 10.8544651, 48.1623524 10.8066057, 48.1465398 10.8191243, 48.8284245 12.7200960, 48.8833939 11.7772066, 48.3676250 10.8969115, 47.9828283 11.5203806, 47.6097785 9.9042077, 48.3081584 12.3332939, 47.8125152 12.1214531, 47.8648888 12.7820620, 47.8519085 12.7832926, 48.3710829 13.2776572, 48.2201211 11.6774482, 48.2245882 11.6741143, 48.6986345 10.9775657, 48.4362093 10.1872509, 48.2263875 11.6752754, 47.7270982 10.3387905, 48.2137470 11.8802685, 48.1386282 11.5783400, 48.1258240 11.6768961, 47.9424984 11.3431273, 48.5730213 12.5785231, 48.2445643 10.3686453, 48.1278863 11.3497181, 47.7633885 10.2960897, 48.1303964 10.2218735, 48.0876973 11.6096828, 48.0713652 11.6061007, 47.7838440 12.2774723, 48.0645494 11.6250396, 48.1477907 11.6012806, 48.1411124 11.5911449, 48.1420419 11.5694098, 48.6018811 12.3128591, 48.0125422 11.5154911, 47.7705922 11.6748336, 48.3573921 10.8798938, 48.3575354 10.8799292, 48.5946076 12.4311920, 48.1187522 11.6097745, 47.5564464 9.6592698, 48.1012876 11.6309166, 48.1216394 11.5816197, 48.1400779 11.5683717, 47.6753407 11.4912807, 48.1338649 11.5674133, 48.1424482 11.5727949, 48.1225592 11.5679070, 48.3997027 10.8527239, 48.0790364 11.7432694, 48.1114620 11.7728378, 48.0217457 11.8128583, 48.0045195 11.8446675, 47.7200990 10.3177561, 48.1586030 11.5801588, 48.4990785 12.0623824, 48.1374225 11.3642089, 48.2385309 11.5735864, 47.6319208 10.8479840, 48.0371732 10.3385081, 47.7010787 10.2943220, 47.7012335 10.2961026, 48.1136230 11.4812146, 48.1308581 11.5826367, 48.1766390 11.7434041, 48.2167506 11.5288939, 48.2169135 11.5289632, 47.7514802 10.2469871, 47.7269398 10.3115748, 48.1970602 11.8109996, 48.1936977 11.4594269, 48.3755745 10.8916871, 48.1052088 11.4596178, 47.7209713 10.2750525, 48.6612244 12.5310457, 48.1516220 11.5525356, 48.1619407 11.5761975, 48.1619237 11.5760965, 48.1619235 11.5760954, 48.1618271 11.5756350, 48.1619234 11.5760944, 48.1420322 11.5715095, 48.1425078 11.5724864, 48.1417931 11.5707416, 48.1431184 11.5721749, 48.0653013 10.2404773, 48.0764092 10.2250972, 48.0741438 10.1991626, 47.8474883 10.6340669, 48.1388639 11.5739365, 47.8045823 12.2214612, 47.7144504 12.1290737, 47.9098136 11.6754772, 48.1508795 11.5801207, 47.8733749 11.8703542, 47.9029318 12.2354760, 48.3887190 10.0749717, 48.4911642 11.1847507, 48.0027874 10.2193812, 48.3838616 11.0471515, 48.2484642 11.6828738, 48.1581096 11.6156226, 48.3591631 12.5094907, 48.3586447 12.5343924, 47.7275214 12.1230949, 47.8835529 10.6135457, 47.8866331 10.6122228, 47.7286487 10.3072214, 48.1166096 11.7662870, 47.7666534 10.2992963, 48.0631239 12.2330584, 48.1566658 11.6254379, 48.6743210 10.8205105, 48.2418607 12.4527747, 47.7220243 10.2723610, 47.6003867 9.8854237, 48.8389038 13.4055938, 48.0007322 12.4072228, 48.3327301 11.6172233, 48.5734486 13.4640106, 48.1598066 11.4148877, 48.8432843 10.6049178, 48.1687944 11.4573356, 48.1433520 11.5818825, 48.1440058 11.5811138, 48.1440394 11.5811862, 48.1441172 11.5805089, 48.1435307 11.5821849, 48.4010364 13.3712269, 48.0835944 11.8228819, 48.5377879 11.8593020, 48.1587358 10.8316505, 48.1523379 10.8592314, 47.5539683 10.0209528, 48.4732128 13.2135492, 47.8046498 12.3714877, 48.9002004 13.0360209, 48.3222795 11.8443135, 47.7027468 11.7615738, 48.1491588 11.4340765, 48.7652337 11.3044727, 48.1916228 11.8684710, 47.5983532 11.1855142, 47.5561583 9.9641943, 48.5435989 13.2387134, 47.9160513 11.5805505, 47.9005583 11.6080856, 47.8914385 11.5880742, 47.8662085 11.5423723, 47.9178138 11.2048534, 47.9480348 11.5977988, 47.9538922 11.4985415, 47.9081813 11.5466083, 47.9375040 11.5280923, 47.9516801 11.4760690, 47.9463678 11.6443382, 48.1191023 11.1316690, 48.1416278 11.5902260, 47.7361150 10.3078127, 47.9564047 11.3632268, 47.4769809 12.9616386, 48.1617099 11.5810683, 47.3149196 10.2665696, 48.0159193 11.8961216, 47.6174194 11.7819493, 48.0182478 11.7123423, 48.7636807 11.7840985, 48.6352619 13.1810639, 48.6332943 13.1730816, 48.5166731 12.1256140, 47.7006458 10.3100172, 48.6989114 11.8723543, 47.3090259 10.2945389, 48.5436782 12.1537502, 48.1266612 11.6705674, 47.9450697 11.1834532, 47.5529805 10.0247259, 47.8670370 12.0073600, 48.1641322 11.5315335, 48.2245720 10.3729953, 48.0613572 11.2266624, 48.2344666 11.6737996, 47.9211183 11.4202190, 47.4559350 11.2758423, 48.3057015 11.4866372, 48.1460001 11.5805266, 48.1768831 11.6030792, 47.8748319 10.5326390, 48.1966964 11.8107166, 48.6333358 12.4004686, 48.1200168 11.6770560, 48.1192391 11.6769136, 48.0744642 11.2630791, 47.6967777 10.3451365, 47.8477656 11.5822566, 48.0749573 11.2580368, 47.6847222 10.4126955, 48.1953186 11.5755861, 47.7438297 10.2245692, 47.8627828 12.3682165, 48.1405264 11.0193437, 47.7800823 11.1272811, 47.5822042 9.8499454, 48.1200435 11.3643107, 48.6913587 12.2076836, 48.6904770 12.2075236, 48.3041089 11.8588743, 48.5682510 12.3257440, 48.6183133 13.3896849, 47.9844666 11.7161086, 47.8664443 11.7837703, 47.9806706 11.5715732, 47.6407172 11.8119658, 48.1811702 11.5169736, 47.5023951 10.3301636, 48.1477773 11.7316890, 48.1478657 11.7322591, 48.3080477 10.8951232, 48.6790671 10.8204961, 48.8938835 13.0411789, 47.7716047 11.3153159, 47.7740347 11.3283659, 48.3488417 10.5851900, 48.7416090 11.4478339, 48.5741240 12.5789391, 48.6693239 10.5122669, 47.3707494 10.3584031, 48.3582039 10.5952767, 48.3558373 10.5896427, 48.0302908 10.8525179, 48.5553424 12.4154760, 48.7499032 12.3372814, 48.5941545 10.5418061, 47.8177812 11.5831907, 47.7181107 11.7940329, 47.9483644 11.2978052, 48.0605044 12.2198648, 47.7560236 11.7451567, 47.7340849 11.7658323, 48.1307110 11.5923150, 47.6258509 9.9781993, 47.8049408 11.1960620, 47.8593309 12.1240177, 47.9313740 11.4208664, 47.4458890 10.2753054, 47.6138892 10.5938423, 47.6146175 10.5964515, 48.2069696 11.6425405, 48.0587790 11.7725479, 47.6420716 12.1021865, 47.6889758 11.1840864, 47.7219398 11.2945828, 48.1897158 10.8269885, 48.8633623 13.6780136, 48.0969582 11.5924226, 47.8252837 12.0966772, 47.8521215 12.0634403, 48.0840599 10.8580061, 48.0506355 10.8773806, 48.3969018 9.9999972, 47.6434474 11.7466035, 47.6450803 11.7423983, 48.0967228 10.9185587, 47.8463854 12.2296970, 48.2814995 10.4848715, 48.8136490 11.5110770, 48.5979327 11.2976076, 48.4008166 11.7440251, 47.9339678 12.7348143, 47.9337012 12.7343361, 47.9556546 10.8697326, 47.9673121 10.9183741, 48.1344222 11.5961059, 48.6556535 10.2793136, 48.1509192 11.5766855, 47.7408140 12.7027315, 47.9632050 10.8787058, 48.0901367 11.6484822, 47.6446179 10.7295722, 47.6734563 11.5974212, 48.4987681 12.1754338, 47.9410297 11.3016252, 47.8307822 11.8016392, 48.8115053 12.2818893, 48.5821928 13.2391059, 47.6543967 10.2580417, 47.6256276 10.6899881, 48.5148832 11.5443784, 48.5114077 11.5445715, 48.0496911 10.7834808, 47.6452968 10.4412319, 47.7528561 12.5191508, 48.3225772 11.6015380, 48.2303373 11.5684865, 47.5464361 10.2806561, 47.9353129 11.0794910, 48.5502505 11.9452100, 48.4194543 11.0959927, 48.1479010 11.8192123, 48.1522516 11.8536961, 48.1579435 11.8151236, 48.1687671 11.9126528, 48.7191192 11.1036130, 48.8272520 12.3966062, 48.1739333 11.5481724, 47.6254457 12.5110784, 47.4381358 11.0495098, 48.5634852 11.9882072, 48.8265783 13.7752130, 48.0496211 10.8715988, 48.0460830 10.8749417, 47.8083086 12.5920009, 48.7957646 12.6424422, 48.8838557 12.5678186, 47.7706974 11.3175793, 48.1481073 11.7289669, 47.8993548 12.8624100, 47.8673146 12.1277265, 48.6534476 10.4951067, 48.2766485 12.3846048, 48.0638021 11.2036139, 48.1674911 11.5451430, 47.5779644 9.8409547, 48.0937782 11.4886530, 48.6792146 10.8199705, 48.1408800 11.5640079, 48.3594388 10.8985692, 48.7565516 13.5148193, 47.7242821 10.3141892, 47.7285579 10.3103498, 47.7221323 10.3118430, 47.7262186 10.3160945, 47.7251108 10.3069304, 47.7262768 10.3160850, 47.7204451 10.3137190, 47.7251096 10.3069306, 47.7309546 10.3094793, 47.7266756 10.3143688, 47.7262180 10.3160963, 47.7266754 10.3143710, 47.7221327 10.3118425, 47.7253575 10.3158079, 47.7221319 10.3118433, 47.7266744 10.3143693, 47.7275054 10.3127716, 47.7309538 10.3094786, 47.7222724 10.3151809, 47.7262179 10.3160983, 47.7205801 10.3113422, 47.7284022 10.3065761, 47.6210461 12.1777480, 48.2069586 11.3270236, 48.8496834 10.4857345, 48.8482751 10.4858320, 48.8493967 10.4852209, 47.9822735 11.4885352, 48.8517100 10.4934753, 48.8537545 10.4922091, 48.8536370 10.4910977, 48.8537334 10.4921703, 48.8542772 10.4938004, 48.8507618 10.4919803, 48.8532499 10.4925690, 48.8542877 10.4937795, 48.8532700 10.4925383, 48.8542646 10.4938180, 48.8536497 10.4910542, 48.8507841 10.4919674, 48.1094506 11.7266607, 48.6410373 10.5313159, 48.2477983 11.4401776, 48.2511189 11.4408524, 48.2511196 11.4408547, 48.2471125 11.4395942, 48.2471134 11.4395935, 48.2511207 11.4408524, 48.8178925 11.0809786, 48.8245525 11.0724318, 48.2927027 11.4798357, 47.6190551 11.3475254, 48.8920941 11.1840999, 48.3989347 11.1712240, 48.2352747 12.8234436, 47.6602222 10.3510584, 47.6572599 10.3508058, 48.8991372 11.1878472, 48.8512301 10.4888424, 48.8523275 10.4919721, 48.8451876 10.4939668, 48.8541292 10.4916755, 48.8539854 10.4880578, 48.8496775 10.4925785, 48.8505244 10.4879424, 48.8523182 10.4919848, 48.8512395 10.4888313, 48.8541017 10.4916755, 48.8477268 10.4932959, 48.8496839 10.4925741, 48.2257460 10.6578602, 48.1906255 11.3715878, 48.2398447 10.6666094, 48.2331131 10.6222457, 48.2280822 10.7614312, 47.8502657 12.9639733, 47.8941448 12.1380495, 48.7635782 11.4224738, 48.7633148 11.4204362, 48.7638216 11.4214954, 48.7646048 11.4293850, 48.7633155 11.4204348, 48.7659842 11.4300553, 48.7638215 11.4214919, 48.7638216 11.4214937, 48.7646069 11.4293837, 48.7646059 11.4293843, 48.7646054 11.4293827, 48.0831501 11.5408608, 48.1200261 11.5495680, 48.1200218 11.5495670, 48.1200271 11.5495696, 48.1311897 11.5566510, 48.1200196 11.5495694, 48.1200271 11.5495680, 48.1200217 11.5495702, 48.1200228 11.5495654, 48.1962042 11.3731773, 48.1200218 11.5495654, 48.1311905 11.5566500, 48.1200218 11.5495718, 48.1200260 11.5495696, 48.1200228 11.5495687, 48.1200228 11.5495718, 47.9829128 12.1298784, 48.3073913 11.9294207, 48.8830526 11.1923901, 48.0691848 11.3773647, 48.3644252 10.8768637, 48.0248220 10.2582044, 48.0643201 11.4200679, 47.9100035 10.5742540, 47.9100050 10.5742518, 47.9100031 10.5742513, 48.3684478 10.8903656, 48.1554042 11.5459282, 47.8169133 12.3425923, 48.8160063 13.3690565, 48.2104282 11.6748380, 47.7242216 12.8623232, 47.7185209 12.1322924, 48.8976919 11.1537933, 48.0544354 10.8784777, 48.0544586 10.8784699, 47.6957621 10.2378885, 48.5352936 12.1538950, 48.8522201 10.4931751, 48.8498220 10.4903906, 48.8502970 10.4922689, 48.8498471 10.4904059, 48.8522059 10.4931953, 48.8532785 10.4928130, 48.8496601 10.4856974, 48.8496708 10.4857163, 48.8496477 10.4856799, 48.8521881 10.4932048, 48.8532905 10.4928264, 48.8534004 10.4892605, 48.8533934 10.4892679, 48.8533030 10.4928402, 48.8482940 10.4858635, 48.8502801 10.4922763, 48.8532666 10.4928045, 48.8531124 10.4912383, 48.8516841 10.4897454, 48.8514823 10.4924972, 48.8531284 10.4912472, 48.8531497 10.4912610, 48.8514908 10.4925360, 48.8517014 10.4897391, 48.8517157 10.4897351, 47.8692224 12.6550306, 48.6991076 10.4888000, 48.0827435 11.8239421, 48.7789409 13.4416277, 48.0701021 11.8683821, 48.6567340 12.3030025, 48.0829495 11.8239749, 47.7892014 12.3063237, 48.1275732 11.7411203, 47.6782491 11.1981707, 47.9808205 11.5709699, 48.8722097 13.3716860, 48.0189284 11.5913994, 47.9712056 11.5651943, 47.7182352 11.0417325, 48.3078447 10.9012213, 48.3074280 10.9007914, 47.7665712 10.4012543, 48.1433019 11.6171321, 48.3578768 10.8608426, 47.7394301 12.0912820, 48.2748956 11.4707489, 47.7658961 12.3264238, 48.0606524 11.8506605, 48.0225887 11.9300372, 48.3418069 10.9886881, 47.8852671 11.6003827, 47.8423723 11.5854156, 47.9290227 11.4768712, 48.8410570 11.5318713, 48.1026468 10.8452603, 47.6534906 11.5020849, 48.3688473 10.8987725, 48.1525638 11.7410681, 48.1253719 12.6753670, 48.2355809 12.4317737, 48.2225206 12.4269633, 47.5883957 12.9893172, 47.8480477 11.4745505, 48.0620830 11.5214274, 47.5734512 9.8406759, 48.0167267 10.9114811, 48.0465646 11.5142681, 47.6410480 11.9992875, 47.4418761 11.2582606, 48.0397728 11.5225044, 47.6257705 11.7093124, 48.5308753 13.1752456, 48.6353244 13.4786526, 48.0827751 11.8241935, 48.2681020 11.4687779, 47.6623215 11.4890566, 47.6615700 11.4886820, 47.6528220 11.4593720, 48.1678123 11.9108847, 48.4803108 11.9459449, 48.4801120 11.9405859, 47.7615614 12.1850432, 48.4001496 11.7431475, 48.4001523 11.7431449, 48.4001532 11.7431439, 48.4001514 11.7431458, 48.4001559 11.7431412, 48.4001541 11.7431430, 48.4007607 11.7445270, 48.3995132 11.7424412, 48.4001505 11.7431466, 48.4001550 11.7431421, 48.0302320 11.5198002, 48.8914645 11.1745881, 48.1636994 11.4992629, 48.1638954 11.5006114, 47.8748390 10.2216490, 47.5690462 10.6816003, 47.7334230 12.8910243, 48.0446423 10.8756748, 47.4485214 11.3739173, 47.6718840 11.6473889, 48.0607948 11.6184129, 47.6484915 12.0931252, 48.6862566 11.6120963, 48.1513324 11.5941030, 47.6772885 12.4698671, 47.5425352 9.6817195, 47.8572809 11.7969272, 48.1796129 11.2551298, 47.6681210 11.7064390, 47.6677988 11.7053201, 47.6609640 11.7055680, 48.8747287 11.1645790, 48.4840860 10.3676764, 47.6471760 11.9526540, 48.6122223 12.1926004, 48.0583724 10.8675451, 48.1917310 11.2652696, 48.1962886 11.2705080, 48.1961081 11.2696309, 48.1967606 11.2704517, 48.1967499 11.2707065, 48.1951533 11.2660877, 48.3007715 11.3808588, 48.2808759 11.6737437, 48.1942938 11.2697727, 48.1941755 11.2706956, 48.1940936 11.2704915, 48.1940575 11.2702662, 48.1942220 11.2708888, 48.1946872 11.2695367, 48.1959364 11.2671284, 48.2685891 10.8306042, 48.2684512 10.8307732, 48.8506121 10.4971452, 47.7269118 12.1058124, 48.4805144 10.3621024, 48.4825420 11.6301966, 47.4125642 10.9782774, 47.6831295 11.5763012, 48.3986459 11.7457661, 48.5949122 11.6561854, 47.8697313 12.6394417, 48.0163156 10.9179297, 48.7750094 11.3772950, 48.7764712 11.3740040, 48.5415771 12.1614274, 48.0769911 11.5173999, 48.0257085 11.5959285, 48.7262394 11.4138936, 48.2336061 12.7101152, 48.3072145 11.3329276, 48.1060045 11.4224434, 48.4215809 11.0664908, 47.5649294 10.0293330, 47.7832209 11.1427052, 48.1164516 11.7457503, 47.7227471 12.8663906, 48.0816872 12.0609230, 48.3291750 11.9250679, 48.5052660 13.4522395, 48.2398892 12.6898530, 47.7347322 12.8876517, 48.4592157 11.1286345, 48.4196679 10.0708906, 47.8752939 10.4026098, 47.8633560 10.4122926, 47.6648917 11.8866486, 47.7224481 12.8774277, 48.4045914 11.9889563, 48.3659809 11.6092197, 48.1125639 11.7873969, 48.8035706 11.4955081, 48.8017857 11.4931013, 48.0424196 10.8369763, 48.8378723 12.1833660, 48.1263201 11.8782617, 48.0432704 11.5177994, 47.7260291 12.1109024, 48.0957791 11.7622930, 47.7351805 12.1103036, 47.7502995 12.0906760, 47.6631098 11.9347543, 47.8563407 10.1296254, 47.8569040 10.1353766, 47.8564406 10.1303072, 48.4552782 11.9126341, 48.1247230 11.9803220, 48.5728017 13.4633595, 48.1405104 11.5935655, 48.1220763 11.5438001, 48.1405112 11.5935605, 48.1405097 11.5935706, 48.1220770 11.5437989, 48.3070385 11.9079993, 47.6923168 12.2660427, 48.1580588 11.4442607, 47.6931296 12.3891410, 48.4724441 11.1555816, 47.6502013 11.9345166, 47.6501599 11.9345446, 47.6485872 11.9324325, 48.2985551 11.9050355, 47.5620371 10.6940910, 47.5622933 10.6947643, 48.7362449 11.1813297, 47.7842673 10.0891458, 48.1647650 11.5899480, 48.1282133 11.5527531, 48.1255776 11.6306425, 48.1917267 11.3744581, 47.8567739 11.6863454, 48.2490350 11.5586567, 47.5027371 11.3009433, 47.4815259 11.3571177, 48.0739860 11.5144815, 48.4306622 11.5979945, 48.8303475 12.9625458, 48.8303482 12.9625450, 48.8303492 12.9625441, 48.8342572 12.9618574, 48.8342580 12.9618573, 48.8342589 12.9618574, 47.5945458 10.0720192, 48.3825938 11.1185478, 47.8454487 12.3706689, 47.9519330 12.2752926, 48.3234735 11.5329278, 48.5324057 12.1498019, 48.1290254 11.6311058, 48.3251363 11.8655590, 47.7186656 12.8727953, 47.7283278 12.8874375, 48.2176073 11.6301119, 47.6097012 12.8662571, 48.8453913 12.9581656, 48.3109723 10.1580109, 48.1385566 11.5968928, 48.2936431 11.6542585, 47.4926387 11.0868270, 48.1815609 11.5157431, 47.4940720 11.1051383, 48.8482307 12.9391855, 47.4473011 10.2391801, 48.1300418 11.6068213, 48.8815221 12.5648911, 48.8818937 12.5646408, 48.1965731 11.5757210, 47.6696072 11.1928075, 47.8040137 12.8559330, 47.7215596 10.5566826, 47.5953829 11.7822341, 47.6044414 12.9864303, 47.7498419 12.8495333, 47.7545069 12.8488217, 47.7551318 12.8493986, 47.9900882 11.6446685, 48.1050505 11.3065439, 48.0493957 11.4506929, 48.4071582 10.7242874, 48.1759606 10.1872537, 47.5823437 12.8658692, 47.5823262 12.8659575, 48.3516035 11.1773410, 48.1615304 11.5918723, 47.5421323 12.9394960, 47.5444136 12.9527252, 48.3152361 10.9105676, 47.8564924 12.4847039, 47.7053568 12.0322933, 47.7092784 12.0441586, 47.7039798 12.0231242, 48.2682507 11.4695839, 48.2721605 11.4646675, 48.2718239 11.4652688, 48.2716386 11.4650139, 48.2721166 11.4647511, 48.2724362 11.4649601, 47.7292845 12.4392342, 47.7634284 12.4516572, 48.4601209 10.9659842, 48.1633205 10.1201881, 47.7468620 12.2479646, 47.7400398 12.2332605, 48.4463681 11.1109072, 48.4462480 11.1110447, 48.0313595 11.5868381, 48.5449365 10.8512596, 48.5449379 10.8512573, 48.5449372 10.8512585, 48.5448166 10.8512625, 47.7267192 12.8687083, 47.6978718 10.3244047, 47.6686694 11.6625171, 48.1342423 11.5700387, 47.7705856 11.3174944, 48.4422191 10.9365381, 48.4455951 10.9653992, 48.4548947 11.0057076, 48.2005479 11.3085417, 47.9862377 10.1803043, 48.0260123 11.5251821, 47.6604914 11.5080991, 47.6614539 11.5187932, 47.6593777 11.5030454, 47.6498945 11.4676288, 47.6601322 11.5051051, 48.8736549 12.0076293, 48.1349504 11.5943735, 48.5839393 11.0900128, 48.0271457 12.5541518, 47.6433999 12.1751083, 47.6407574 12.1696156, 47.6411215 12.1703695, 47.6403878 12.1635277, 48.3996544 11.8520538, 48.2126195 11.3374382, 47.8659427 12.0111514, 48.4056651 11.9909489, 48.0784519 12.5696682, 47.9165852 12.0318879, 48.8403993 10.4941533, 48.8417958 10.4918787, 47.9842362 10.1778101, 47.7232401 12.8761185, 47.6431611 11.9170922, 47.8662840 12.0159958, 47.6173936 11.7076257, 48.8457640 10.4830272, 47.4793650 11.0207555, 47.6996482 12.2430712, 48.6835709 11.6132535, 48.6848902 11.6136339, 47.8393271 11.9691096, 47.7020991 12.0130841, 47.5807355 10.5575467, 48.4061678 10.0436362, 48.3479535 11.9235535, 47.5702330 10.5947204, 47.7021170 12.0131818, 47.5040513 11.2786897, 47.9718784 11.6528135, 47.5538725 10.7902108, 47.7200677 12.8755116, 47.8774590 11.0274014, 48.3823871 11.3496783, 47.7581962 12.2737426, 47.6493815 11.9316988, 47.4376224 11.2612534, 48.8049165 11.8889334, 48.0040033 11.5136520, 48.0397308 11.5226714, 47.9367272 12.9322049, 47.7108046 12.1251726, 47.6339493 13.0038067, 47.6442786 12.0466307, 47.7143850 11.4039809, 47.8032737 11.5000786, 47.7064576 11.3975548, 48.6114773 10.5668229, 48.6111031 10.5659055, 48.8311137 13.4591452, 48.3996250 11.7420086, 48.7160743 10.7775891, 48.7331262 11.1759620, 48.7389356 11.1886864, 47.6472166 11.9289408, 48.7331262 11.1759620, 48.7385744 11.1815885, 48.3507189 10.9354257, 48.1073936 11.4528835, 48.1521700 11.5278539, 48.1497300 11.5273092, 47.7197728 12.8759652, 47.9837290 11.0930118, 48.7841110 13.5796127, 47.8826998 11.9182081, 48.4584489 10.9817953, 48.3415480 11.9222212, 48.3482984 10.9104624, 48.1627561 11.5861396, 48.4585333 11.1335081, 48.7864857 13.3751383, 48.0795080 11.5270511, 48.8156148 11.8875333, 47.7180909 11.6534598, 48.0044368 10.5885381, 48.1970574 11.4581073, 48.4024034 11.0551394, 48.1717682 11.7160853, 48.5259749 12.3142889, 48.5330205 12.1628553, 48.5305960 12.1578907, 47.9916650 10.7829274, 48.7356699 11.5492059, 47.8508053 12.7851381, 47.6764212 11.8710364, 48.4487679 11.0832494, 48.2178130 11.0196429, 47.5088882 10.2795297, 48.1424597 11.5822622, 48.0976185 10.5417693, 48.1450137 11.5810073, 48.2393390 11.4385684, 48.2564046 11.4654355, 48.2596082 11.4451115, 48.2605838 11.4347639, 48.3445324 10.9353458, 48.1678985 11.7149075, 48.3718037 10.8963094, 48.3718041 10.8963083, 47.7873372 11.8339232, 47.7200996 12.7699376, 47.6054977 12.9858304, 47.6241300 12.9745039, 47.7900190 12.0771110, 47.9253148 10.2440388, 48.7548713 13.8178262, 47.7101114 12.1139656, 47.6945682 13.0460095, 47.8047485 10.2133142, 48.0715754 11.0005879, 48.7892575 10.6710487, 47.7641979 11.9958704, 48.1366177 11.5770164, 48.6879045 12.2017217, 47.9417533 12.9357259, 47.9422619 12.9367666, 47.9424226 12.9368673, 47.9386089 12.9354309, 48.4284030 10.8789123, 48.0292035 11.3673827, 47.5983444 10.9056374, 48.7557813 12.5888625, 47.8013284 10.3537356, 48.7435414 11.2146671, 48.1788331 11.4617680, 48.3609968 10.0706280, 48.3049382 11.9087780, 48.6919369 11.7130487, 48.1636845 11.4571067, 48.0456871 10.4243348, 47.4803785 11.2396359, 48.1134041 11.3410235, 48.6382488 10.6026814, 48.6364553 10.6022821, 47.7561605 12.0417945, 47.8459739 11.0299188, 47.7409841 12.0154738, 47.7481852 12.0511155, 47.7349927 12.0534271, 48.9024263 11.0894232, 48.3731122 11.0959923, 48.1948518 11.2632927, 48.3710824 13.2773536, 47.6056995 12.9094085, 47.6057338 12.9091081, 47.7601898 12.4233394, 47.7608375 12.4316584, 47.8611631 12.1264453, 48.3884186 11.0874478, 47.6453043 12.0985512, 47.6452987 12.0985287, 47.6537812 12.0983658, 47.7224967 12.8480335, 47.7063746 12.0346578, 48.8755548 11.0741983, 47.6900275 12.7995463, 47.6900364 12.7994766, 47.6900311 12.7995088, 48.2889659 11.4600298, 48.2866384 11.4602750, 48.2860387 11.4609057, 48.2863124 11.4604083, 48.8822337 12.5741336, 47.7670520 12.2581243, 47.7766786 12.2687321, 48.5106716 13.4421507, 47.9241734 12.0134157, 47.7210112 12.8922962, 47.6764419 11.2029616, 47.7786600 11.7336551, 48.1019055 11.5954917, 48.2671203 11.4312604, 48.2720955 11.4679281, 47.8976158 10.1161598, 47.5433929 11.2602180, 47.5456150 11.1901578, 48.0683448 11.6098579, 48.3629733 11.3766216, 48.7588183 13.0169252, 47.8544613 12.1599328, 48.0332314 10.8505875, 47.7221913 12.1894134, 47.7246273 12.1709999, 48.0504475 10.8407146, 48.0512785 10.8382489, 47.5401994 11.5451552, 48.3660798 10.5426582, 48.2819649 10.4691847, 48.0397151 10.6712233, 48.0397779 10.6716756, 47.6579035 11.9415792, 48.0376793 10.6702097, 48.2080415 11.3280417, 48.1398408 11.5780689, 48.1671028 11.5483431, 48.2700458 11.4683333, 48.7845193 13.8019909, 47.7771843 10.1273307, 48.0056471 10.3563100, 48.1969376 10.6769089, 48.1413436 11.5969927, 48.3575820 10.8800179, 48.1428635 11.4125410, 48.1940954 11.4600752, 47.7155084 10.3234417, 48.7656923 11.5351364, 48.4067613 11.7574390, 47.7259635 12.1148467, 48.3869392 10.8665406, 48.1403638 11.5719644, 48.1400691 11.5731123, 48.1401611 11.5727358, 48.1402587 11.5723472, 47.7730997 11.5727335, 48.4441900 11.1327054, 48.1026976 10.8452652, 47.6613522 11.2092731, 48.0263618 10.8448247, 48.8870984 10.4688551, 47.6766571 11.2022534, 48.0938038 11.4659904, 47.9414011 12.6023026, 47.9107077 10.5744731, 48.0261191 10.8449821, 48.2350566 12.4315667, 48.1532035 12.8174680, 48.0817897 10.8647284, 48.1570952 12.8253903, 47.7777085 12.3663525, 47.9707607 11.7802007, 48.2934356 11.9067051, 47.6673450 11.7145331, 47.8657489 12.0113892, 48.2453585 10.8031322, 48.1375637 11.5880668, 47.9097955 11.2828365, 48.0991170 11.4784139, 48.0978106 11.4892883, 48.9057654 12.6920206, 48.1039524 11.5792060, 48.2874464 11.4608564, 47.7785483 11.7334497, 47.7788087 11.7333363 +yes +4 +55.9544768 -3.1997466 +no +Bathgate, Polton, Bonnyrigg, Loanhead, Penicuik, Dalkeith, Livingston, Armadale, Gorebridge, Mayfield, Newtongrange, Eskbank, Lasswade +12 +49.4026602 8.7297882, 49.4269174 8.7219719, 49.4155178 8.7899777, 49.4105654 8.7914079, 49.4255549 8.7739082, 49.4035191 8.7047078, 49.4195186 8.7046484, 49.4261495 8.7062630, 49.4035105 8.7605887, 49.4467404 8.7467641, 49.4580313 8.7464236, 49.3925405 8.6991164, 49.3828404 8.6974716 +49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.4240406 8.6385449, 49.3851489 8.6733031, 49.3848920 8.6803000, 49.4061345 8.6593850, 49.3956207 8.6692054, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.4296958 8.6455225, 49.4172010 8.6768150 +48.8311423 2.3178852, 48.8807957 2.3680128, 48.8547827 2.4053007, 48.8890111 2.3798549, 48.8657219 2.3739666, 48.8363262 2.3866379, 48.8839773 2.3197792, 48.8374817 2.3437947, 48.8848036 2.2885994, 48.8785492 2.3318734, 48.8639231 2.3448506, 48.8659551 2.3738289, 48.8718921 2.4037539, 48.8226001 2.3745365, 48.8443455 2.2903102, 48.8465377 2.3511741, 48.8656383 2.3355496, 48.8557916 2.3618145, 48.8712435 2.3585129, 48.8511246 2.3315183, 48.8721527 2.4039954, 48.8475646 2.3844791, 48.8506939 2.2732195, 48.8911262 2.3327854, 48.8571958 2.3391696 +Regard de la Roquette, Thermes de Cluny, L'enceinte de Philippe Auguste, Cavea des Arènes de Lutèce and 48.8707489 2.3907280, 48.8506016 2.3432743, 48.8459665 2.3500377, 48.8535359 2.3481924, 48.8450745 2.3528309 +49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.4157261 8.7004521, 49.4532301 8.7620686, 49.4209333 8.7223854, 49.4221949 8.7060036, 49.4157681 8.7006398, 49.4390162 8.7105044, 49.4210179 8.7198036, 49.4272716 8.7035465, 49.4305777 8.6928339, 49.4497204 8.7157564, 49.4428768 8.7011414, 49.4300341 8.7265054, 49.4095083 8.7002566, 49.4109969 8.7018271, 49.4103323 8.7353954 +485 +yes +tobacco, chemist, mobile phone, watches, confectionery, mobile phone, beauty, watches, perfumery, mobile phone, mobile phone, gift, supermarket, mobile phone, clothes, shoes, shoes, communication, clothes, yes, clothes, department store, chemist, chemist, chemist, houseware +23 +Bruntsfield Hotel, Braid Hills Hotel, Britannia Hotel Edinburgh, Hilton Edinburgh Airport Hotel, Peffermill House, Premier Inn, Prestonfield House, Premier Inn Leith, Brooks Hotel, Holiday Inn Express, Ardmillan Hotel, Links Hotel, Apex Edinburgh International, Apex Edinburgh City, Travelodge, Holiday Inn Express, Malmaison, Le Monde, DoubleTree by Hilton Hotel Edinburgh City Centre, Premier Inn, Novotel, Ten Hill Place, Hot-el Apartments, Jurys Inn, The Carlton, The Salisbury, Apex Waterloo Place Hotel, Travelodge Edinburgh Central Waterloo Place, Radisson Blu Hotel, Macdonald Holyrood Hotel, The King James, Ocean Apartments, Sandaig Guest House, Lady Nairne Premier Inn, The Glasshouse, Six Marys Place, Travelodge Rose Street, Mercure Hotel, Old Waverley Hotel, Royal British Hotel, Hotel du Vin, Travelodge Edinburgh Central Queen Street, Travelodge Edinburgh Learmonth, Fraser Suites Edinburgh, Nira Caledonia, The Bonham Hotel, G & V Royal Mile, EasyHotel Prince Street West, Premier Inn, cityroomz, Hotel Ceilidh-Donia, Cumberland Hotel, Dunstane House, Murrayfield Hotel, Hampton Hotel, Murrayfield Park Hotel, Grosvenor Gardens Hotel, Thistle Hotel, The Chester Residence, Fountain Court, Grassmarket Hotel, Motel One, Frederick House Hotel, Regent House Hotel, Hotel Indigo, The Place, York House Hotel, 28 York Place, Fountain Court, Pollock Halls, Ibis, Travelodge Princes Street, The Scotsman Hotel, Holyrood Aparthotel, Rutland Hotel, Twelve Picardy Place, Northumberland Hotel, Minto Hotel, Kildonan Lodge Hotel, Cairn Hotel, Ballantrae Hotel, Terrace Hotel, Ailsa Craig Hotel, Crowne Plaza, Abbey Hotel, The Inverleith Hotel, Merith House Hotel, Culane House Hotel, ritz, Ellwyn Hotel, Hotel Twenty, Rosehall Hotel, Seahaven Hotel, Old Town Chambers, Albany Hotel, Motel One, Parliament House Hotel, Edinburgh House Hotel, Royal Mile Mansions, The Royal Scots Club, Royal Mile Apartments, St. Giles Apartments, The Guards Hotel, Travelodge Haymarket, Ibis Style, Abbot's House Hotel, Adelphi Hotel, Northfield House Hotel, Novotel Edinburgh Park, Sheraton Hotel, Kings Manor Hotel, Dundas Castle, Norton House Hotel, Dalmahoy Hotel & Country Club, Royal Ettrick Hotel, Travelodge Edinburgh Central, Holiday Inn Express Edinburgh, Ibis Edinburgh Centre South Bridge, Stay Central, Residence Inn, Fountain Court EQ2, Holiday Inn Corstorphine, Capital Hotel, Balmoral Hotel, Premier Inn, Dakota Hotel, Holiday Inn Edinburgh City West, Princes Street Suites, Park View House Hotel, Victoria Park House Hotel, Edinburgh City Hotel, Premier Inn, Apex Hotel, Waldorf Astoria Edinburgh - The Caledonian, Edinburgh Marriott Hotel, The Edinburgh Residence, Hilton Edinburgh Grosvenor, Tune Hotel, Hotel Dunstane City, Raj Hotel, Duthus Lodge, The Murrayfield House, Toby Carvery, White Lady, Ellersly House Hotel, Rockville Hotel, Premier Travel Inn, Travelodge, Western Manor House Hotel, Travelodge Cameron Toll, Premier Inn, Premier Inn Edinburgh Park, Channings Hotel, Robert Burns Hotel, Park View House Hotel, Park View House Hotel, Ibis Budget Edinburgh Park, Angels Share Hotel, George Hotel, Crowne Plaza - The Roxburghe and 55.9381717 -3.2059291, 55.9170545 -3.2126453, 55.9505670 -3.2225290, 55.9439031 -3.3598911, 55.9326021 -3.1487334, 55.9350859 -3.0949522, 55.9366417 -3.1570870, 55.9829450 -3.1956613, 55.9040576 -3.1262582, 55.9432024 -3.2113238, 55.9788008 -3.1794679, 55.9383157 -3.2261980, 55.9374614 -3.2026980, 55.9470365 -3.1966624, 55.9473807 -3.1953726, 55.9004968 -3.2332407, 55.9571354 -3.1863656, 55.9778438 -3.1685794, 55.9534973 -3.1960943, 55.9457041 -3.2034796, 55.9449778 -3.2001704, 55.9451010 -3.1996608, 55.9463681 -3.1836097, 55.9869221 -3.1897526, 55.9511304 -3.1861772, 55.9507512 -3.1875224, 55.9378000 -3.1771354, 55.9539470 -3.1868320, 55.9537732 -3.1875087, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9381523 -3.2262019, 55.9543521 -3.1879033, 55.9861075 -3.1884451, 55.9693080 -3.1630438, 55.9457634 -3.1363607, 55.9464498 -3.1371733, 55.9567078 -3.1856348, 55.9590183 -3.2140890, 55.9527034 -3.1979800, 55.9526004 -3.1943522, 55.9528213 -3.1930344, 55.9531957 -3.1908459, 55.9460909 -3.1901899, 55.9544345 -3.2000121, 55.9555590 -3.2193770, 55.9500000 -3.1919145, 55.9567037 -3.2072967, 55.9514396 -3.2157715, 55.9490912 -3.1927585, 55.9508812 -3.2044810, 55.9509781 -3.2039057, 55.9496513 -3.2089465, 55.9360381 -3.1684082, 55.9461251 -3.2278797, 55.9460715 -3.2290314, 55.9456220 -3.2434720, 55.9456700 -3.2428670, 55.9449170 -3.2477791, 55.9465750 -3.2197080, 55.9502855 -3.2173319, 55.9505500 -3.2171278, 55.9435627 -3.2111942, 55.9480061 -3.1947461, 55.9507105 -3.1915001, 55.9533335 -3.2009235, 55.9575692 -3.1881677, 55.9563589 -3.1885412, 55.9564772 -3.1901879, 55.9560830 -3.1902394, 55.9563959 -3.1906891, 55.9529277 -3.2049305, 55.9403255 -3.1714042, 55.9496209 -3.1880081, 55.9532228 -3.1923045, 55.9510822 -3.1885303, 55.9509990 -3.1784956, 55.9498559 -3.2079070, 55.9570461 -3.1868898, 55.9280036 -3.1678977, 55.9352622 -3.1753675, 55.9285894 -3.1685115, 55.9585668 -3.1822362, 55.9561192 -3.1923936, 55.9566328 -3.1758348, 55.9566882 -3.1778092, 55.9567108 -3.1786172, 55.9567484 -3.1799567, 55.9639309 -3.2027078, 55.9692074 -3.1640591, 55.9690941 -3.1648940, 55.9468672 -3.2176887, 55.9565225 -3.1350813, 55.9580553 -3.1811308, 55.9362102 -3.1697209, 55.9486278 -3.0962156, 55.9501484 -3.1911760, 55.9572424 -3.1901890, 55.9559010 -3.1933576, 55.9535324 -3.1900210, 55.9542058 -3.1859506, 55.9667456 -3.1821354, 55.9504080 -3.1879255, 55.9563084 -3.1978828, 55.9497259 -3.1916695, 55.9497748 -3.1914254, 55.9463285 -3.2172253, 55.9478631 -3.2219185, 55.9545707 -3.1947750, 55.9729694 -3.1638663, 55.9718007 -3.1618663, 55.9073072 -3.1532922, 55.9266859 -3.3110861, 55.9469005 -3.2078655, 55.9443419 -3.0957317, 55.9750379 -3.4145918, 55.9327298 -3.3841084, 55.9042254 -3.3705381, 55.9346438 -3.2211526, 55.9496850 -3.1838090, 55.9492869 -3.1846349, 55.9484098 -3.1872057, 55.9480944 -3.1899418, 55.9438601 -3.1928655, 55.9419198 -3.2084087, 55.9429504 -3.2673127, 55.9556904 -3.2797815, 55.9528516 -3.1895056, 55.9457529 -3.2138563, 55.9821414 -3.4001668, 55.9557436 -3.2429137, 55.9534472 -3.1867446, 55.9689173 -3.1657232, 55.9732863 -3.1914962, 55.9435346 -3.3748496, 55.9443687 -3.2008861, 55.9841923 -3.4052539, 55.9462114 -3.2229409, 55.9495596 -3.2075043, 55.9401166 -3.3114777, 55.9509665 -3.2176204, 55.9469876 -3.2170926, 55.9461601 -3.2182685, 55.9453819 -3.2287399, 55.9460399 -3.2300987, 55.9460125 -3.2297029, 55.9456993 -3.2426239, 55.9430594 -3.2838003, 55.9431091 -3.2825095, 55.9470690 -3.2478273, 55.9487584 -3.0879787, 55.9454008 -3.2138893, 55.9386393 -3.3928517, 55.9446689 -3.2547864, 55.9270730 -3.1668575, 55.9422318 -3.4055694, 55.9281033 -3.3081926, 55.9561713 -3.2187789, 55.9497822 -3.1039156, 55.9688800 -3.1656940, 55.9689762 -3.1655801, 55.9377896 -3.3196702, 55.9507284 -3.2077481, 55.9541170 -3.1964464, 55.9516265 -3.2058035 +yes +55.9274598 -3.3076072 +yes +48.8523642 2.2968670 +1 +49.3819891 8.7064791, 49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.3903727 8.7038688, 49.3716601 8.7156918, 49.4157261 8.7004521, 49.4532301 8.7620686, 49.4129054 8.7286879, 49.4209333 8.7223854, 49.4221949 8.7060036, 49.4291183 8.7154588, 49.4157681 8.7006398, 49.4088360 8.7691224, 49.3882437 8.7497467, 49.4390162 8.7105044, 49.4305905 8.7775493, 49.4272716 8.7035465, 49.4393938 8.7104846, 49.4497204 8.7157564, 49.4428768 8.7011414, 49.4395208 8.7105611, 49.4326079 8.7091648, 49.4328392 8.7092032, 49.4342309 8.7101843, 49.4342740 8.7112555, 49.4442518 8.7151750, 49.4447625 8.7168293, 49.4468314 8.7142297, 49.4308426 8.7277671, 49.3795036 8.7459449, 49.3921408 8.7451114, 49.3950715 8.7223322, 49.3736364 8.7471636, 49.4311330 8.7033214, 49.4278439 8.6859389, 49.4082372 8.7465476, 49.4136970 8.7613615, 49.4238953 8.7651482 +Kurpfälzisches Museum, Museum Geowissenschaften INF 235, Studentenmuseum mit Karzer, Zoologisches Museum, Museum Haus Cajeth, Heimatmuseum Rohrbach, Alte Universität, Kurpfälzisches Museum, Textilsammlung Max Berk, Völkerkundemuseum, Carl Bosch Museum, Museum am Ginkgo, Deutsches Apotheken-Museum +3 +4 +yes +255 +2044 +Esso, Jet, Shell, Independent, BP, Tesco, independent and 55.8994270 -3.2972350, 55.9232575 -3.2877434, 55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9002100 -3.2321660, 55.9579565 -3.2439627, 55.9297115 -3.2566004, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9372727 -3.3656602, 55.9344345 -3.1791228, 55.9100535 -3.1423251, 55.9377502 -3.4029754, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9365550 -3.3142140, 55.9836311 -3.3989193, 55.9826346 -3.1875882, 55.9248058 -3.2496194, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9051775 -3.1653894, 55.8839472 -3.3405441, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9695021 -3.2293678, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9102318 -3.2377415, 55.9781314 -3.1744029, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9242943 -3.2525824, 55.9398424 -3.2041012, 55.9397193 -3.2934475 +yes +55.9516586 -3.1968492, 55.9899700 -3.3959164, 55.9875100 -3.4039888, 55.9539273 -3.1922043, 55.9902127 -3.3859837, 55.9906294 -3.3854450, 55.9526370 -3.1734364, 55.9521101 -3.1881430, 55.9906129 -3.3848526, 55.9504193 -3.2001988, 55.9505097 -3.1997700, 55.9526834 -3.1734548 +43.6837822 -79.4260743, 43.6576795 -79.4987997, 43.7022711 -79.5255029, 53.9900182 -1.1048507, 54.0109332 -1.0814973, 53.9502911 -1.0730271, 53.9360281 -1.0702516, 53.9695593 -1.1044687, 53.9783035 -1.1064726, 53.9659202 -1.1066465, 53.9153104 -1.1359444, 53.9852880 -1.1561727, 53.9409591 -1.1265772, 54.0307341 -1.0382265, 53.9550521 -1.1301932, 53.9490348 -1.1324670, 53.9615418 -1.1120955, 53.9522410 -1.1122907, 53.9358339 -1.1263285, 53.9755492 -1.0707896, 53.9629477 -0.9755778, 54.0107556 -1.0814518, 53.9863055 -1.1105767, 53.9303232 -1.0689686, 53.9642135 -1.0653371, 53.9403226 -1.1185343, 54.0146884 -1.0718957, 53.9877014 -1.1050782, 53.9636588 -1.1373722, 53.9491771 -1.0804384, 53.9553252 -1.1119903, 53.9871551 -1.0474167, 53.9859898 -1.0651562, 53.9017427 -1.0873341, 53.9990117 -1.1284252, 54.0411661 -1.0300613, 54.0118558 -1.0595910, 53.9575241 -1.0493096, 53.9793720 -1.0633348, 53.9673959 -1.0714738, 53.9637219 -1.1380788, 53.9575852 -1.1178225, 53.9874393 -1.1204313, 53.9868873 -1.1220633, 53.9494875 -1.1413259, 53.9647966 -1.1058434, 53.9563077 -1.0554740, 53.9462069 -1.0762908, 53.9776740 -1.0644274, 53.9646978 -1.1104689, 53.9500452 -1.0806102, 43.6644716 -79.5073350, 53.9731081 -1.0720236, 53.9728750 -1.0718855, 53.9579066 -1.0615711, 43.6709565 -79.4808029, 53.9578916 -1.0384236, 43.6909696 -79.5078325, 43.6768364 -79.5008575, 43.6869909 -79.4927906, 43.7060427 -79.5305440, 53.9411226 -1.0453008, 53.9402545 -1.0628004, 53.9412901 -1.0485025, 53.9518846 -1.0748059, 43.6954667 -79.4292400, 53.9891412 -1.0750065, 53.9697935 -1.0788931, 54.0031479 -1.0620491, 53.9761008 -1.0866567, 53.9642505 -1.1103673, 53.9572111 -1.1022306, 54.0086708 -1.0590792, 53.9275166 -1.1585419, 53.9771511 -1.1335660, 43.6916751 -79.4801455, 43.6884518 -79.4620778, 53.9679082 -1.0462940, 43.6791418 -79.4807102, 43.6784874 -79.4805707, 53.9171538 -1.0961410, 43.6983920 -79.4349417, 43.7032269 -79.5060546, 53.9511412 -1.0357185, 53.9787147 -1.0614117, 43.6965563 -79.4691090, 53.9417894 -1.0651445, 53.9675172 -1.0774716, 43.6537880 -79.4901878, 43.6868311 -79.4924568, 54.0175617 -1.0838151, 53.9441501 -1.1072575, 43.6912619 -79.4333772, 43.6883062 -79.4538863, 53.9955927 -1.0554353, 53.9580671 -1.0717614, 53.9316497 -1.1069040, 43.7063756 -79.5161696, 43.6980072 -79.5193378, 43.6979105 -79.5191746, 43.6981548 -79.5195536, 43.6948627 -79.4854853, 53.9605571 -1.0416518, 43.7078482 -79.5309590, 53.8979156 -0.9664321, 43.6761780 -79.4788514, 43.6769072 -79.4772807, 43.6731469 -79.4908170, 53.9872557 -1.1137428, 53.9773826 -1.0941901, 53.9781054 -1.0952493, 53.9719535 -1.0928503, 53.9564001 -1.0614879, 53.9602131 -1.0579907, 53.9598297 -1.0582374, 43.6933502 -79.4302213, 43.6843140 -79.4879601, 43.6712702 -79.4926038, 43.6946390 -79.4359419, 43.6869082 -79.4775555, 43.6817542 -79.4986570, 43.7014365 -79.5073633, 53.9799100 -1.0663846, 53.9735958 -1.2046224, 43.6935978 -79.4761834, 43.7014532 -79.4510224, 43.7014588 -79.4506901, 43.6957307 -79.4305271, 53.9622142 -1.0110749, 43.7032224 -79.4392616, 53.9663972 -1.1227394, 43.6925004 -79.5088912, 43.7000154 -79.4462363, 43.7000042 -79.4464494, 43.7001712 -79.4461827, 43.7001539 -79.4458926, 43.7000636 -79.4460083, 53.9838702 -1.1222527, 43.6836390 -79.4590501, 43.6880963 -79.4613111, 43.6898241 -79.4643187, 53.9450082 -1.1361836, 43.6924209 -79.4689785, 53.9889063 -1.1110964, 43.6879894 -79.4708591, 53.9586201 -1.0293671, 53.9445374 -1.1245969, 53.9595274 -1.0981373, 53.9610119 -1.1037227, 43.6840446 -79.4389375, 43.6842718 -79.4397157, 43.6871180 -79.4284008, 53.9623408 -1.1308643, 43.6484124 -79.4885632, 53.9522747 -1.0911362, 43.6762467 -79.4781695, 43.6927596 -79.4362309, 43.6895001 -79.4353381, 43.6921445 -79.4472623, 43.6917638 -79.4436721, 43.6628673 -79.4872055, 43.6627881 -79.4870652, 43.6890777 -79.4991503, 43.6898499 -79.4650002, 43.6648262 -79.5030967, 43.7027737 -79.5207797, 43.6742489 -79.4976003, 53.9640155 -1.0652996 +3398 +Mo-Sa 07:00-22:00, Su 09:00-20:00 +55.9529398 -3.1154068 +BP, Elan, Total, Esso Express, Avia, Esso, Agip and 48.8316281 2.3594731, 48.8535333 2.4151180, 48.8169651 2.3597405, 48.8346251 2.2657680, 48.9012005 2.3862959, 48.8801709 2.3706981, 48.8315802 2.3158225, 48.8455659 2.3086884, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8501676 2.3621707, 48.8593908 2.3144172, 48.8299268 2.3465439, 48.8609726 2.2828299, 48.8563247 2.3152562, 48.8611046 2.3413657, 48.8475898 2.3031985, 48.8463297 2.2794951, 48.9003252 2.3734463, 48.8402491 2.3214518, 48.8804901 2.2865619, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8323948 2.3645635, 48.8645440 2.4097670, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.9007525 2.3748724, 48.8635857 2.2722338, 48.8536267 2.3664311, 48.8408422 2.3172666, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8387798 2.2536841, 48.8281523 2.2728394, 48.8168431 2.3604808, 48.8595020 2.3116861, 48.8407841 2.3912112, 48.8607706 2.3747898, 48.8787212 2.3698437, 48.8586303 2.3897622, 48.8579937 2.3897210, 48.8364028 2.2775659, 48.8558395 2.3835889, 48.8519985 2.2908966, 48.8656358 2.2892405, 48.8786755 2.3549221, 48.8797035 2.3026873, 48.8478375 2.3535433, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8936152 2.3152934, 48.8522407 2.2805336, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8711680 2.3244832, 48.8436106 2.3422313, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.8233460 2.3160166, 48.8338034 2.2847592, 48.8464060 2.3874300, 48.9007173 2.3745755, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8206480 2.3248645, 48.8936129 2.3029112 +49.4054825 8.6765974 +48.8417284 2.3673532, 48.8266274 2.3623332, 48.8270015 2.3644472, 48.8264059 2.3462773, 48.8572229 2.3511352, 48.8406041 2.3197465, 48.8803386 2.3548871, 48.8291407 2.3744435, 48.8607653 2.3255954, 48.8573441 2.2907449, 48.8779836 2.2844324, 48.8411596 2.3657360, 48.8506960 2.3623652, 48.8767586 2.3603190, 48.8772257 2.3595264, 48.8422312 2.3663524, 48.8414190 2.3661244, 48.8767648 2.3593400, 48.8443828 2.3753836, 48.8446750 2.3731936 +49.1430184 8.3983163, 49.3996765 9.1224099, 49.5701123 8.6110383, 49.5625122 8.4648744, 49.0007392 9.0803846, 49.6559644 8.4741783, 49.6215104 8.6250307, 49.4580607 9.1028750, 49.5817521 9.4022085, 49.1754398 8.1387981, 49.5672194 8.6111115, 49.3513988 9.1205190, 49.3250351 8.5277211, 49.1220327 9.1804503, 49.8535869 8.5851220, 49.3923970 8.6519350, 49.3469248 8.4886426, 49.2372364 8.6785232, 48.9318095 8.8153525, 49.6065555 8.3688858, 49.5860723 8.1390132, 49.1347078 8.5642507, 49.4112255 8.3495432, 49.3305895 8.2135419, 49.3552239 8.2900422, 49.4726490 8.1967491, 48.9772411 8.3426112, 49.6947805 9.1823138, 49.3439085 9.4008570, 49.3023341 8.4531545, 49.2473775 8.8938385, 49.3993143 9.1237375, 49.5813741 9.4010960, 49.8419087 8.3767621, 49.6781057 8.9716419, 49.4745881 8.5138087, 49.3055840 8.6585456, 49.1497865 8.9189679, 49.8393238 8.8494477, 49.2579834 9.2751932, 49.2310049 9.4229576, 49.4435541 9.3619443 +49.3974030 8.6486853, 49.3977437 8.6485764, 49.4045638 8.6759283, 49.4015990 8.6856698, 49.3808049 8.6889505, 49.3746833 8.6826514, 49.3656861 8.7051775, 49.3741444 8.7033717, 49.3742583 8.7034051, 49.3741763 8.7034993, 49.3790412 8.6689354, 49.3792964 8.6699345, 49.4048779 8.6827341, 49.3840770 8.6710133, 49.3809325 8.6701888, 49.3795766 8.6901652, 49.3992315 8.6710140, 49.3804723 8.6884268, 49.3807734 8.6884609 +48.8569549 2.3497208, 48.8562998 2.3535246, 48.8521302 2.3358217, 48.8553332 2.3464366, 48.8513763 2.3250565, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8453963 2.3255943, 48.8566284 2.3271644, 48.8661306 2.2897626, 48.8722447 2.3050374, 48.8450073 2.3757975, 48.8466279 2.2560360, 48.8694555 2.3406786, 48.8388399 2.2765067, 48.8176870 2.3444409, 48.8398451 2.2739161, 48.8566083 2.3533348, 48.8632334 2.3399229, 48.8620104 2.3390904, 48.8670418 2.3496240, 48.8657000 2.3535311, 48.8652453 2.3533870, 48.8443992 2.3820174, 48.8691076 2.3112127, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8729875 2.3210140, 48.8726568 2.3215983, 48.8776040 2.3524312, 48.8758310 2.3206114, 48.8720777 2.3056372, 48.8715518 2.3062553, 48.8688688 2.3012670, 48.8720769 2.2997667, 48.8721868 2.3033146, 48.8707626 2.3051595, 48.8701277 2.3044062, 48.8674712 2.3054788, 48.8667016 2.3011326, 48.8655118 2.3015698, 48.8713039 2.2970137, 48.8741074 2.2994150, 48.8744570 2.3007315, 48.8763620 2.3015161, 48.8767241 2.3018198, 48.8782249 2.2965872, 48.8972935 2.3883460, 48.8952805 2.3850234, 48.8599671 2.3250425, 48.8705380 2.3685763, 48.8293967 2.3790084, 48.8403358 2.3506549, 48.8725027 2.2851552, 48.8736890 2.2914977, 48.8768968 2.2823678, 48.8722856 2.2840680, 48.8693205 2.2843750, 48.8677158 2.2805552, 48.8396031 2.2624046, 48.8471492 2.3421620, 48.8470699 2.3417135, 48.8613479 2.3294517, 48.8623669 2.3098112, 48.8593696 2.3144127, 48.8734234 2.3305255, 48.8715078 2.3339896, 48.8459424 2.3060603, 48.8319830 2.3768014, 48.8720026 2.3359899, 48.8703752 2.3029557, 48.8738314 2.3297043, 48.8790223 2.2930687, 48.8647821 2.3501454, 48.8815254 2.3543330, 48.8634010 2.3478656, 48.8580953 2.3988158, 48.8671989 2.3667020, 48.8410399 2.3210471, 48.8429112 2.3235502, 48.8423484 2.3212962, 48.8320324 2.3866588, 48.8336457 2.2895795, 48.8764091 2.3236995, 48.8476756 2.3411763, 48.8305332 2.3138423, 48.8763053 2.2944546, 48.8763219 2.2947532, 48.8788573 2.2928071, 48.8761984 2.2930848, 48.8760963 2.2927992, 48.8532277 2.3589001, 48.8863474 2.2875098, 48.8740366 2.4050675, 48.8780164 2.4108510, 48.8260635 2.3616139, 48.8239032 2.3657211, 48.8892294 2.3935497, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8381765 2.3815493, 48.8731938 2.3290960, 48.8212980 2.3643164, 48.8549966 2.4012505, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8292317 2.3084985, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8465587 2.2612329, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8868617 2.3693195, 48.8698031 2.3099017, 48.8343023 2.3639410, 48.8720076 2.3153410, 48.8624814 2.3328854 +55.9474486 -3.1859655, 55.9426063 -3.2085087, 55.9363223 -3.1940133, 55.9355709 -3.2102528, 55.9395988 -3.2206602, 55.9488010 -3.1925834, 55.9813469 -3.1948497, 55.9763814 -3.1707551, 55.9764475 -3.1716495, 55.9610381 -3.1807131, 55.9768212 -3.1696962, 55.9612898 -3.1713969, 55.9364920 -3.2084274, 55.9467570 -3.2027078, 55.9604183 -3.2014949, 55.9587839 -3.1832973, 55.9477659 -3.1919316, 55.9827744 -3.3988810, 55.9375452 -3.2065188, 55.9354188 -3.2098186, 55.9524356 -3.1964223, 55.9655072 -3.1758319, 55.9537919 -3.1943636, 55.9264941 -3.2093621, 55.9437549 -3.2193403, 55.9469209 -3.2045658, 55.9576658 -3.1845555, 55.9506581 -3.2090223, 55.9505740 -3.2087140, 55.9532127 -3.1978312, 55.9459910 -3.2187750, 55.9469392 -3.2157459, 55.9581637 -3.2094698, 55.9436529 -3.2196006, 55.9392380 -3.2127613, 55.9502539 -3.1878479, 55.9541028 -3.1972638, 55.9516199 -3.2027318, 55.9031798 -3.2852677, 55.9529509 -3.1973404, 55.9526199 -3.1984725, 55.9898690 -3.3921144, 55.9581410 -3.1892356, 55.9265283 -3.2084003, 55.9477347 -3.1956994, 55.9474107 -3.1857005, 55.9578375 -3.1855691, 55.9573946 -3.1857377, 55.9578561 -3.1853362, 55.9572831 -3.1858711, 55.9269189 -3.2094159, 55.9320058 -3.2097519, 55.9073767 -3.2581589, 55.9644870 -3.1767286, 55.9410964 -3.1808815, 55.9378124 -3.1781642, 55.9489839 -3.1929807, 55.9349914 -3.1790260, 55.9501695 -3.1909428, 55.9467924 -3.1855561, 55.9419851 -3.1817354, 55.9584764 -3.1835758, 55.9493277 -3.1830946, 55.9474907 -3.1912396, 55.9545797 -3.1975105, 55.9439545 -3.2066510, 55.9420681 -3.2954846 +Boulogne-Billancourt, Arcueil, Le Chesnay, Gentilly, Palaiseau, Antony, Viroflay, Athis-Mons, Garches, Noisiel, Verrières-le-Buisson, Le Plessis-Robinson, Vélizy-Villacoublay, Savigny-sur-Orge, Maisons-Alfort, Bry-sur-Marne, Chevilly-Larue, Morangis, Limeil-Brévannes, Villeneuve-le-Roi, Châtillon, Vitry-sur-Seine, Meudon, Joinville-le-Pont, Noisy-le-Grand, Bourg-la-Reine, La Celle-Saint-Cloud, Malakoff, Saint-Mandé, Massy, Le Plessis-Trévise, Sceaux, Villiers-sur-Marne, L'Haÿ-les-Roses, Chaville, Saint-Maurice, Alfortville, Nogent-sur-Marne, Thiais, Fontenay-sous-Bois, Champigny-sur-Marne, Issy-les-Moulineaux, Créteil, Boissy-Saint-Léger, Longjumeau, Charenton-le-Pont, Fresnes, Saint-Cloud, Châtenay-Malabry, Vigneux-sur-Seine, Cachan, Sucy-en-Brie, Le Perreux-sur-Marne, Montgeron, Le Kremlin-Bicêtre, Champs-sur-Marne, Fontenay-aux-Roses, Yerres, Bonneuil-sur-Marne, Choisy-le-Roi, Vanves, Villejuif, Valenton, Versailles, Villeneuve-Saint-Georges, Chennevières-sur-Marne, Ville-d'Avray, Ormesson-sur-Marne, Bagneux, Chilly-Mazarin, Montrouge, Sèvres, La Queue-en-Brie, Villebon-sur-Yvette, Paris, Paris, Paris, Paris, Paris, Cynthiana, Saint-Maur-des-Fossés, Orly, Juvisy-sur-Orge, Ivry-sur-Seine, Vincennes, Clamart, Denning, Subiaco, Morrison Bluff, Caulksville, Blue Mountain, Detroit, Universal, Goss, Henry, Cottage Grove, Big Sandy +no +2243833 +Heidenloch, Römischer Tempel, Lochheim, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall and 49.4194835 8.7033812, 49.4258222 8.7062319, 49.3551484 8.6336513, 49.4270542 8.7105990, 49.4184666 8.7052069, 49.4245168 8.7056416, 49.4235710 8.7025718, 49.4242799 8.7072520, 49.4224817 8.7024542, 49.4229479 8.7068545, 49.4193290 8.7035781, 49.4221380 8.7051571, 49.4263381 8.7055314, 49.4188706 8.7007961, 49.4276600 8.7101416, 49.4243184 8.7025688, 49.4189138 8.7068425, 49.4254814 8.7024102, 49.4213140 8.7019771, 49.4268509 8.7026924, 49.4254256 8.7051858, 49.4195009 8.7025277, 49.4201952 8.7010712, 49.4208217 8.7059731, 49.4233178 8.7053934, 49.4276906 8.7058352, 49.4238991 8.7095045, 49.4206459 8.7039110, 49.4265814 8.7086544, 49.4256259 8.7093622, 49.4257275 8.7070484, 49.4179403 8.7025717, 49.4207145 8.7089359, 49.4222472 8.7095805, 49.4248984 8.7025175 +0 +Königstuhl, Heidenknörzel, Kammerstein, Lammerskopf, Gaisberg, Michaelsberg, Heiligenberg, Auerhahnenkopf, Apfelskopf, Dossenheimer Kopf, Ameisenbuckel, Karlslust +6 +10 +yes +yes ++496221166707 and http://www.eldorado-hd.de/ +Traverse Theatre, HMV Picture House, Edinburgh People's Theatre, Stand Comedy Club, Roxy Art House, Leitheatre, Edinburgh Playhouse, Festival Theatre, King's Theatre, The Queen's Hall, Bedlam Theatre, Royal Lyceum Theatre, Church Hill Theatre, Leith Theatre, Usher Hall +Tills Books, Oxfam Book Shop, St. Columba's Hospice Book Shop (secondhand), Waterstones, Edinburgh Books, Word Power, Oxfam Books, Waterstones, Blackwells, The Works, St Columba's Hospice, The Edinburgh Bookshop, Robert Murray Stamp Shop, Robert Murray Stamp Shop, Blackwells, Waterstone's, Books4Less, Waterstone's, Bookworm, Armchair Books, Peter Bell Books, Second Edintion, Aurora Books, Golden Hare Books, Analogue books, Avizandum, Deadhead Comics, Transreal, Mcnaughtans, Elvis Shakespeare, Oxfam, Southside Books, Waterstone's, WHSmith, W H Smith +yes +yes +350 and 53.2761342 10.4887315, 53.2785461 10.4325550, 53.2788878 10.4304511, 53.2789685 10.4288410, 53.2790665 10.4275363, 53.2793515 10.4296426, 53.2795102 10.4307986, 53.2799998 10.4311699, 53.2800388 10.4305360, 53.2802531 10.4298171, 53.2809568 10.4325528, 53.2811750 10.4273023, 53.2815625 10.4295745, 53.2819911 10.4325519, 53.2826269 10.4275353, 53.2826725 10.4291199, 53.2826929 10.4307084, 53.2830280 10.4271192, 53.2831022 10.4287052, 53.2831150 10.4325998, 53.2837288 10.4279036, 53.2838773 10.4307180, 53.2839650 10.4284990, 53.2841272 10.4300084, 53.2844130 10.4326432, 53.2845618 10.4317124, 53.2849266 10.4286468, 53.2852440 10.4326785, 53.2853993 10.4312437, 53.2862019 10.4312152, 53.2862903 10.4296828, 53.2863750 10.4281667, 53.2755425 10.4331058, 53.2761180 10.4342194, 53.2777425 10.4325522, 53.2784206 10.4363617, 53.2787675 10.4341599, 53.2792207 10.4369299, 53.2797841 10.4352717, 53.2798691 10.4329383, 53.2802341 10.4377177, 53.2804318 10.4357138, 53.2804958 10.4341054, 53.2809025 10.4367483, 53.2810767 10.4351505, 53.2811385 10.4383054, 53.2815542 10.4387704, 53.2818275 10.4359059, 53.2818582 10.4345100, 53.2819239 10.4373488, 53.2823376 10.4392990, 53.2825169 10.4360569, 53.2830035 10.4345927, 53.2833004 10.4377685, 53.2833131 10.4391705, 53.2835717 10.4400953, 53.2836192 10.4362508, 53.2840499 10.4383614, 53.2841091 10.4371511, 53.2842429 10.4346390, 53.2852186 10.4350928, 53.2859174 10.4342212, 53.2861266 10.4418947, 53.2864599 10.4407835, 53.2866391 10.4384732, 53.2867455 10.4400080, 53.2710726 10.4382947, 53.2712649 10.4401709, 53.2715637 10.4389128, 53.2715925 10.4369872, 53.2716948 10.4356207, 53.2718374 10.4407911, 53.2719692 10.4318737, 53.2722286 10.4381808, 53.2723073 10.4283180, 53.2723904 10.4339771, 53.2724363 10.4306150, 53.2726881 10.4386844, 53.2728290 10.4358632, 53.2729874 10.4377402, 53.2730720 10.4325897, 53.2732284 10.4344339, 53.2734787 10.4368595, 53.2735875 10.4305386, 53.2736198 10.4281482, 53.2737720 10.4388769, 53.2741165 10.4378899, 53.2742165 10.4350736, 53.2744887 10.4302344, 53.2745759 10.4321830, 53.2747589 10.4355519, 53.2750037 10.4313911, 53.2750244 10.4339792, 53.2756698 10.4357777, 53.2762404 10.4301091, 53.2769792 10.4292635, 53.2770442 10.4300230, 53.2772394 10.4288761, 53.2777241 10.4276349, 53.2779813 10.4305866, 53.2726055 10.4416071, 53.2728502 10.4404349, 53.2734544 10.4426876, 53.2743250 10.4409690, 53.2744621 10.4388953, 53.2747879 10.4443669, 53.2750500 10.4378589, 53.2751288 10.4397836, 53.2751450 10.4422597, 53.2757981 10.4406575, 53.2760134 10.4424302, 53.2760164 10.4368845, 53.2761627 10.4389881, 53.2761796 10.4452081, 53.2763269 10.4435753, 53.2766362 10.4424130, 53.2766704 10.4390843, 53.2771652 10.4411989, 53.2772523 10.4373479, 53.2774570 10.4432890, 53.2774622 10.4454378, 53.2776832 10.4389597, 53.2780373 10.4403893, 53.2780504 10.4415209, 53.2781549 10.4473295, 53.2783446 10.4438912, 53.2784492 10.4458331, 53.2789054 10.4449397, 53.2789458 10.4393966, 53.2794086 10.4432135, 53.2794484 10.4380709, 53.2795354 10.4453708, 53.2796264 10.4421588, 53.2800367 10.4398083, 53.2800561 10.4433928, 53.2801021 10.4465008, 53.2804990 10.4442490, 53.2805738 10.4408210, 53.2810142 10.4458552, 53.2815482 10.4424549, 53.2820320 10.4405398, 53.2797657 10.4502715, 53.2800199 10.4497269, 53.2801004 10.4492386, 53.2806957 10.4514076, 53.2809171 10.4481633, 53.2809629 10.4492709, 53.2813039 10.4508782, 53.2813871 10.4469217, 53.2814826 10.4528633, 53.2816343 10.4403479, 53.2817669 10.4438881, 53.2818878 10.4501453, 53.2819890 10.4484668, 53.2822309 10.4530921, 53.2823413 10.4472747, 53.2824481 10.4497679, 53.2825917 10.4423832, 53.2828899 10.4517158, 53.2830861 10.4532008, 53.2832324 10.4444640, 53.2832644 10.4490285, 53.2833666 10.4420578, 53.2837859 10.4440672, 53.2840219 10.4478656, 53.2840421 10.4427225, 53.2845804 10.4425334, 53.2848516 10.4434057, 53.2853521 10.4442130, 53.2858661 10.4462832, 53.2858796 10.4480533, 53.2859562 10.4447281, 53.2845328 10.4543058, 53.2846452 10.4532757, 53.2856692 10.4514935, 53.2859074 10.4541269, 53.2859706 10.4326894, 53.2860876 10.4504262, 53.2860891 10.4516431, 53.2862331 10.4551076, 53.2864368 10.4486951, 53.2865416 10.4522857, 53.2865468 10.4341588, 53.2867524 10.4442833, 53.2868220 10.4349471, 53.2868925 10.4499564, 53.2869911 10.4489239, 53.2871062 10.4438475, 53.2871192 10.4506975, 53.2871194 10.4520651, 53.2872992 10.4574875, 53.2873154 10.4546493, 53.2874758 10.4563049, 53.2875741 10.4457860, 53.2877174 10.4444075, 53.2878229 10.4555057, 53.2878324 10.4429645, 53.2881349 10.4550950, 53.2884875 10.4437367, 53.2888166 10.4526623, 53.2889339 10.4538563, 53.2881558 10.4478585, 53.2882657 10.4469997, 53.2888313 10.4496181, 53.2890622 10.4467478, 53.2896048 10.4486217, 53.2897562 10.4474893, 53.2899887 10.4449804, 53.2906473 10.4474064, 53.2906569 10.4510389, 53.2907103 10.4449384, 53.2907284 10.4465969, 53.2907509 10.4479661, 53.2914642 10.4483187, 53.2914817 10.4489736, 53.2916190 10.4504909, 53.2921300 10.4494183, 53.2844239 10.4552791, 53.2856557 10.4564919, 53.2877152 10.4596216, 53.2883024 10.4565032, 53.2883276 10.4601175, 53.2886603 10.4570435, 53.2886754 10.4588919, 53.2892513 10.4569805, 53.2895030 10.4592396, 53.2897695 10.4619477, 53.2863131 10.4265248, 53.2872355 10.4327684, 53.2876366 10.4262801, 53.2877399 10.4345791, 53.2878013 10.4389019, 53.2878291 10.4355610, 53.2878367 10.4372062, 53.2880742 10.4416461, 53.2884106 10.4402480, 53.2884385 10.4351391, 53.2884497 10.4361964, 53.2887476 10.4287357, 53.2889652 10.4273053, 53.2892675 10.4423403, 53.2893199 10.4371074, 53.2893432 10.4387193, 53.2893811 10.4401862, 53.2894471 10.4338566, 53.2899882 10.4279237, 53.2900173 10.4351990, 53.2901080 10.4370574, 53.2902004 10.4393046, 53.2902606 10.4383364, 53.2904159 10.4364033, 53.2905766 10.4328178, 53.2905819 10.4283490, 53.2906678 10.4351769, 53.2907212 10.4262747, 53.2908081 10.4379270, 53.2908976 10.4336480, 53.2909769 10.4366348, 53.2910409 10.4305047, 53.2913822 10.4286086, 53.2930728 10.4263859, 53.2932250 10.4288652, 53.2932524 10.4316868, 53.2936115 10.4273995, 53.2943354 10.4293190, 53.2945085 10.4266900, 53.2950907 10.4276795, 53.2772158 10.4658264, 53.2777014 10.4641203, 53.2780024 10.4621416, 53.2782612 10.4585624, 53.2782945 10.4498138, 53.2782958 10.4652568, 53.2784461 10.4657086, 53.2785414 10.4547227, 53.2786263 10.4641222, 53.2786328 10.4520188, 53.2787736 10.4557550, 53.2787924 10.4670508, 53.2790828 10.4662430, 53.2791022 10.4648568, 53.2791640 10.4630981, 53.2792677 10.4514601, 53.2793765 10.4674115, 53.2794189 10.4528188, 53.2794217 10.4637224, 53.2795526 10.4585785, 53.2796594 10.4660088, 53.2797526 10.4542423, 53.2798863 10.4626378, 53.2799338 10.4677675, 53.2800722 10.4608966, 53.2801571 10.4519139, 53.2803121 10.4666314, 53.2806292 10.4644867, 53.2806672 10.4593631, 53.2810451 10.4657299, 53.2811282 10.4604347, 53.2811311 10.4631622, 53.2815557 10.4641010, 53.2816662 10.4552491, 53.2818042 10.4539243, 53.2818947 10.4607963, 53.2821785 10.4631616, 53.2821829 10.4561119, 53.2824551 10.4585111, 53.2824798 10.4621966, 53.2827543 10.4647244, 53.2828941 10.4598433, 53.2832188 10.4557112, 53.2834286 10.4540762, 53.2834431 10.4682343, 53.2836004 10.4666031, 53.2836872 10.4638191, 53.2837723 10.4609960, 53.2843918 10.4648994, 53.2965086 10.4505225, 53.2970659 10.4507086, 53.2972331 10.4482649, 53.2972909 10.4465259, 53.2980193 10.4288210, 53.2722859 10.4750874, 53.2736634 10.4801685, 53.2738513 10.4776452, 53.2739393 10.4759802, 53.2740538 10.4816901, 53.2740773 10.4816892, 53.2741338 10.4816490, 53.2742179 10.4516208, 53.2744281 10.4771164, 53.2745874 10.4742626, 53.2746080 10.4707787, 53.2746293 10.4736401, 53.2746485 10.4656168, 53.2755292 10.4821798, 53.2756433 10.4783543, 53.2756842 10.4805945, 53.2760968 10.4743407, 53.2761750 10.4827802, 53.2769644 10.4708135, 53.2769781 10.4833074, 53.2772690 10.4745942, 53.2682855 10.4693710, 53.2859902 10.4520524, 53.2851469 10.4511304, 53.2882270 10.4453029, 53.2872393 10.4408913, 53.2912110 10.4482268, 53.2895850 10.4328281, 53.2834187 10.4575743 +yes +Heidenloch, Römischer Tempel, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall +55.9470233 -3.2136778, 55.9040174 -3.2248441, 55.9044388 -3.2231298, 55.9055392 -3.2245241, 55.9070009 -3.2266338, 55.9337225 -3.2114222, 55.9454900 -3.2173512, 55.9459397 -3.2196471, 55.9467297 -3.2160853, 55.9468911 -3.2157329, 55.9495730 -3.2096804, 55.9498456 -3.2090591, 55.9470251 -3.2128783, 55.9466831 -3.2111062, 55.9457511 -3.2083497, 55.9420067 -3.2142265, 55.9429862 -3.2105745, 55.9435721 -3.2079032, 55.9452599 -3.2068906, 55.9458494 -3.2043614, 55.9463849 -3.2002560, 55.9473655 -3.1962398, 55.9476701 -3.1928242, 55.9476671 -3.2034432, 55.9476364 -3.2015298, 55.9486521 -3.1951042, 55.9486914 -3.1982744, 55.9493803 -3.1935304, 55.9867620 -3.3969118, 55.9890911 -3.3975569, 55.9909234 -3.3992102, 55.9871450 -3.3956272, 55.9500952 -3.2159210, 55.9514349 -3.2130963, 55.9577146 -3.2175590, 55.9574409 -3.2136525, 55.9577176 -3.2110983, 55.9594385 -3.2162145, 55.9591627 -3.2129430, 55.9587082 -3.2097806, 55.9582498 -3.2083579, 55.9601149 -3.2048779, 55.9590746 -3.2001052, 55.9574525 -3.1992269, 55.9576308 -3.2078827, 55.9571589 -3.2057631, 55.9570635 -3.2040021, 55.9579700 -3.1990768, 55.9589149 -3.1952296, 55.9516292 -3.2116129, 55.9505151 -3.2088197, 55.9516840 -3.2088535, 55.9565296 -3.2022609, 55.9551067 -3.2015189, 55.9026109 -3.2208010, 55.9079326 -3.2251115, 55.9091271 -3.2224615, 55.9325309 -3.2101524, 55.9352614 -3.1942899, 55.9360447 -3.1944235, 55.9385819 -3.1950517, 55.9398783 -3.1952903, 55.9366483 -3.1940225, 55.9381677 -3.1922430, 55.9397207 -3.1863782, 55.9396831 -3.1901910, 55.9415623 -3.2000095, 55.9432237 -3.2023940, 55.9346560 -3.2102493, 55.9360542 -3.2094587, 55.9371071 -3.2072084, 55.9398797 -3.2045183, 55.9413443 -3.2035998, 55.9428297 -3.2037418, 55.9399009 -3.2118071, 55.9409026 -3.2095928, 55.9418569 -3.2046167, 55.9451034 -3.2054205, 55.9464821 -3.2059437, 55.9479806 -3.2093194, 55.9480111 -3.2070831, 55.9492390 -3.2069040, 55.9415413 -3.1997466, 55.9397680 -3.1895210, 55.9398950 -3.1857881, 55.9443353 -3.2022970, 55.9507141 -3.2047476, 55.9508345 -3.2040132, 55.9509544 -3.2033403, 55.9512832 -3.2014235, 55.9513658 -3.2009238, 55.9534513 -3.1984184, 55.9545267 -3.1976404, 55.9530617 -3.1968880, 55.9525579 -3.1966188, 55.9514556 -3.1965060, 55.9502363 -3.1950715, 55.9515098 -3.1917476, 55.9518015 -3.1918652, 55.9523041 -3.1921025, 55.9487161 -3.1921254, 55.9473980 -3.1913002, 55.9475336 -3.1896852, 55.9461587 -3.1899395, 55.9461484 -3.1857678, 55.9446725 -3.1868648, 55.9426946 -3.1843831, 55.9415201 -3.1833659, 55.9523582 -3.1952481, 55.9524140 -3.1949299, 55.9530238 -3.1937098, 55.9548982 -3.1930798, 55.9531749 -3.1905850, 55.9561036 -3.1918150, 55.9566140 -3.1887839, 55.9597614 -3.1911416, 55.9587469 -3.1900917, 55.9574145 -3.1883681, 55.9540301 -3.1883045, 55.9542782 -3.1877994, 55.9553364 -3.1870704, 55.9555140 -3.1882376, 55.9607383 -3.1852653, 55.9588728 -3.1841437, 55.9619623 -3.1801852, 55.9623731 -3.1823283, 55.9722461 -3.1760338, 55.9719668 -3.1730260, 55.9760045 -3.1700682, 55.9771964 -3.1743509, 55.9771466 -3.1737565, 55.9765391 -3.1705490, 55.9759268 -3.1678383, 55.9755202 -3.1648177, 55.9711134 -3.1726962, 55.9713906 -3.1702867, 55.9729980 -3.1685221, 55.9504910 -3.1854886, 55.9510338 -3.1816628, 55.9501355 -3.1837930, 55.9537308 -3.1871585, 55.9538854 -3.1830563, 55.9579461 -3.1831271, 55.9579339 -3.1826673, 55.9578767 -3.1789396, 55.9733850 -3.1663395, 55.9573263 -3.1468079, 55.9551375 -3.1512278, 55.9551965 -3.1477860, 55.9552066 -3.1457361, 55.9541352 -3.1478987, 55.9524812 -3.1884943, 55.9517665 -3.1881346, 55.9512784 -3.1879129, 55.9489276 -3.1868532, 55.9484886 -3.1866438, 55.9457222 -3.1847309, 55.9454420 -3.1844541, 55.9459249 -3.1824225, 55.9431937 -3.1796005, 55.9415447 -3.1780319, 55.9406915 -3.1765923, 55.9430769 -3.1830456, 55.9428271 -3.1828112, 55.9413427 -3.1812830, 55.9399611 -3.1824940, 55.9375604 -3.1807719, 55.9405823 -3.1806167, 55.9393125 -3.1783897, 55.9349560 -3.1933400, 55.9355213 -3.1900428, 55.9359617 -3.1872388, 55.9369103 -3.1811043, 55.9369174 -3.1773439, 55.9403137 -3.1729254, 55.9383803 -3.1730161, 55.9368395 -3.1706322, 55.9362943 -3.1703276, 55.9380056 -3.1727326, 55.9365575 -3.1804052, 55.9378596 -3.1785699, 55.9371680 -3.1785827, 55.9357290 -3.1880801, 55.9352794 -3.1908999, 55.9392124 -3.1781004, 55.9403904 -3.1806688, 55.9380758 -3.1813799, 55.9406842 -3.1776524, 55.9417310 -3.1818531, 55.9432691 -3.1832993, 55.9401121 -3.1759873, 55.9416881 -3.1786246, 55.9430330 -3.1796430, 55.9442893 -3.1810875, 55.9456619 -3.1831172, 55.9457698 -3.1849764, 55.9488929 -3.1870504, 55.9492763 -3.1872419, 55.9513723 -3.1882358, 55.9521151 -3.1886009, 55.9529056 -3.1458123, 55.9536640 -3.1473562, 55.9550460 -3.1447760, 55.9550213 -3.1476460, 55.9550728 -3.1523790, 55.9555903 -3.1566068, 55.9721901 -3.1629507, 55.9734772 -3.1676223, 55.9730686 -3.1650762, 55.9577127 -3.1801199, 55.9577689 -3.1829548, 55.9598986 -3.1836144, 55.9538702 -3.1838294, 55.9538082 -3.1860623, 55.9537460 -3.1864288, 55.9536090 -3.1872578, 55.9471148 -3.1782693, 55.9492792 -3.1822951, 55.9501804 -3.1839664, 55.9512348 -3.1865851, 55.9510428 -3.1899310, 55.9508278 -3.1825636, 55.9503437 -3.1858623, 55.9739384 -3.1675454, 55.9716823 -3.1695986, 55.9710945 -3.1729414, 55.9753350 -3.1670805, 55.9767364 -3.1725205, 55.9750843 -3.1712339, 55.9738978 -3.1727490, 55.9719290 -3.1728798, 55.9722046 -3.1746804, 55.9721384 -3.1759763, 55.9622037 -3.1793755, 55.9627392 -3.1787031, 55.9618397 -3.1798451, 55.9622890 -3.1826621, 55.9587684 -3.1837830, 55.9585718 -3.1839897, 55.9556859 -3.1866515, 55.9540735 -3.1877177, 55.9572218 -3.1884308, 55.9597602 -3.1915275, 55.9606648 -3.1931837, 55.9564422 -3.1886008, 55.9516360 -3.1915621, 55.9511728 -3.1894775, 55.9513768 -3.1853034, 55.9530038 -3.1904535, 55.9529734 -3.1906361, 55.9550011 -3.1944896, 55.9523721 -3.1941529, 55.9522306 -3.1949546, 55.9521243 -3.1955713, 55.9413619 -3.1834545, 55.9439756 -3.1855145, 55.9457447 -3.1858708, 55.9459185 -3.1889928, 55.9462149 -3.1911216, 55.9474608 -3.1915894, 55.9483990 -3.1921221, 55.9491051 -3.1925562, 55.9499555 -3.1941302, 55.9513921 -3.1967362, 55.9563095 -3.1988813, 55.9543603 -3.1978922, 55.9530372 -3.1971862, 55.9518480 -3.1998550, 55.9512810 -3.2003210, 55.9511317 -3.2011985, 55.9510603 -3.2016272, 55.9507178 -3.2036019, 55.9505841 -3.2043884, 55.9451215 -3.1923158, 55.9448465 -3.1948923, 55.9448398 -3.1982337, 55.9495373 -3.2067189, 55.9492326 -3.2066015, 55.9483042 -3.2035260, 55.9477777 -3.2074310, 55.9470945 -3.2058026, 55.9462523 -3.2055522, 55.9451884 -3.2051208, 55.9428068 -3.2035039, 55.9425641 -3.2034299, 55.9417455 -3.2046015, 55.9407315 -3.2096840, 55.9413134 -3.2033814, 55.9391987 -3.2046868, 55.9364506 -3.2080648, 55.9348230 -3.2100408, 55.9431515 -3.2018817, 55.9380639 -3.1919459, 55.9368177 -3.1935085, 55.9393298 -3.1949761, 55.9378804 -3.1946691, 55.9368007 -3.1944119, 55.9352311 -3.1940360, 55.9089266 -3.2227432, 55.9076164 -3.2261893, 55.9024927 -3.2209412, 55.9538170 -3.2010786, 55.9557714 -3.2021464, 55.9519898 -3.2056255, 55.9506446 -3.2093738, 55.9504970 -3.2090293, 55.9515635 -3.2119466, 55.9590112 -3.1954889, 55.9578837 -3.1987058, 55.9569531 -3.2042594, 55.9573600 -3.2073453, 55.9581370 -3.1998753, 55.9595344 -3.2006164, 55.9602477 -3.2031604, 55.9599422 -3.2050807, 55.9584545 -3.2079471, 55.9589660 -3.2114386, 55.9592891 -3.2157462, 55.9577015 -3.2172967, 55.9592592 -3.2207431, 55.9573790 -3.2117285, 55.9566490 -3.2146849, 55.9509150 -3.2138808, 55.9498016 -3.2162253, 55.9493877 -3.2175003, 55.9495686 -3.2189589, 55.9870411 -3.3960723, 55.9907091 -3.3983046, 55.9900975 -3.3975611, 55.9492297 -3.1934848, 55.9485101 -3.1950625, 55.9466052 -3.2025367, 55.9483763 -3.1903144, 55.9458867 -3.2015396, 55.9450777 -3.2041637, 55.9434137 -3.2080661, 55.9424851 -3.2120231, 55.9456681 -3.2081800, 55.9460697 -3.2125273, 55.9496579 -3.2091165, 55.9491712 -3.2102205, 55.9478015 -3.2132758, 55.9458699 -3.2215692, 55.9456796 -3.2170439, 55.9455214 -3.2171400, 55.9334398 -3.2118455, 55.9064805 -3.2256576, 55.9059136 -3.2239281, 55.9055130 -3.2235475, 55.9051874 -3.2237612, 55.9042466 -3.2225799, 55.9038972 -3.2233847, 55.9038681 -3.2263110, 55.9781461 -3.1735303, 55.9553235 -3.1920547, 55.9553332 -3.1919926, 55.9553429 -3.1919304, 55.9553525 -3.1918683, 55.9553622 -3.1918061, 55.9553719 -3.1917440, 55.9553816 -3.1916819, 55.9553913 -3.1916197, 55.9554010 -3.1915576, 55.9554107 -3.1914955, 55.9554204 -3.1914333, 55.9554301 -3.1913712, 55.9554398 -3.1913091, 55.9554495 -3.1912469, 55.9554592 -3.1911848, 55.9554688 -3.1911227, 55.9554785 -3.1910605, 55.9554882 -3.1909984, 55.9472325 -3.1901311, 55.9438324 -3.2142584, 55.9434037 -3.2147753, 55.9562981 -3.1986248, 55.9475607 -3.1861653, 55.9536715 -3.1868832, 55.9525909 -3.2000321, 55.9476032 -3.2085057, 55.9464631 -3.1990798, 55.9514733 -3.2002938, 55.9525341 -3.1942530, 55.9539398 -3.1954762, 55.9458721 -3.1870265, 55.9452545 -3.1868374, 55.9439698 -3.1852609, 55.9493416 -3.2102159, 55.9458574 -3.2195136, 55.9458637 -3.2199619, 55.9493651 -3.2098050, 55.9522213 -3.1920622, 55.9525355 -3.2025587, 55.9507195 -3.1921655, 55.9532131 -3.1997985, 55.9541367 -3.1918691, 55.9547528 -3.1939230, 55.9387978 -3.1791123 +Olympia, Cirque d'Hiver, Le Moulin Rouge, Palais des Glaces, La Boule Noire, Théatres de La Cartoucherie, Comédie des 3 Bornes, Théâtre de la Main d'Or, Théâtre de la Cité Internationale, Monfort-Théatre, Théâtre Clavel, Bouffes du Nord, Théâtre de la Bastille, Salle de la Mutuelle RATP, Café Oscar, Théâtre Antoine, Théâtre de la Michodière, La Pépinière Théâtre, La Cigale, Double Fond, Théâtre Déjazet, Aktéon Théâtre, Le Celeste, Theatre du Marais, Le Splendid, Théâtre de Chaillot, Folies Bergère, Amphithéâtre Rouelle, Théâtre Michel, Théâtre des Champs-Elysées, Comédie des Champs-Elysées, Théatre de Belleville, Le Bataclan, Théâtre Les Blancs Manteaux, Théâtre de l'Alambic Comédie, La Vieille Grille, Théâtre Paris-Villette, Théâtre des Mathurins, Théâtre Edouard VII, Athénée Théâtre Louis-Jouvet, Le Crazy horse de Paris, Salle Pleyel, Théâtre Traversière, Théatre de l'ile Saint-Louis Paul-Rey, Paradis latin, La Maroquinerie, Auditorium de Radio France, Salle Gaveau, Théatre de la Madeleine, Péniche Opéra, Les Rendez-Vous d'Ailleurs, Théo Théatre, La Main Au Panier, Théâtre Artistic Athévains, Théâtre des Abbesses, ABC Théâtre, Ciné 13 Théâtre, La Comédie Italienne, Café de la Gare, Théâtre Comédia, Théâtre Montparnasse, La Comédie des Boulevards, Comédie de Paris, Théâtre de la Gaîté-Montparnasse, L'Européen, Théâtre Essaïon, Théâtre Daunou, Théâtre des Déchargeurs, Théâtre des 5 Diamants, La Grande Comédie, Théâtre de la Huchette, Théâtre de Dix Heures, Théâtre Fontaine, Théâtre Le Méry, Le Lucernaire, Théâtre 13 - Seine, Maison de la Poésie - Paris, Théâtre du Nord-Ouest, Théâtre le Ranelagh, Théâtre de Paris, Théâtre d'Edgar et Café d'Edgar, Théâtre Ouvert, Théâtre de Poche Montparnasse, Théâtre 14 Jean-Marie Serreau, Le Palace, Le Point Virgule, Théâtre Rive Gauche, Théâtre des Nouveautés, Théâtre Trévise, Théâtre 13, Vingtième Théâtre, Théâtre du Temps, Théâtre Tristan Bernard, Le Zèbre, Théâtre des Variétés, Le Grand Point Virgule, Théatre, Salle Saint-Léon, Théâtre Montorgueil, Le Funambule De Montmartre, Le Temple, Zeartist's Cafe, La Machine, Le théâtre des béliers parisiens, Le Divan du Monde, Théâtre Pixel, Théâtre du Conservatoire d'Art Dramatique, L'Affiche, Nouveau théâtre, Salle Ferry, Théâtre de Poche Montparnasse, Atelier de Paris, Théâtre de l'Épée de Bois, Théâtre du Chaudron, Théâtre du Soleil, Les Trois Baudets, Le Passage vers les Etoiles, L'étoile du Nord, Bobino, Théatre Galerie de Nesle, Théâtre de l'Opprimé, La Passementerie, Auguste, Théâtre du Petit Montparnasse, Atelier de la Bonne Graine, Théâtre Dunois, Bouffon théâtre, Le Regard du Cygne, Auditorium Saint-Germain, Acting International, Théâtre Darius Milhaud, Théâtre Douze, Théâtre Saint-Blaise, Théâtre aux Mains Nues, Théâtre de l'Écho, Théatre Saint-Germain, Théâtre astral, Le mouchoir de poche, Théatre de la Terre, Théâtre des Quarts-d'Heure, Espace Bernanos, Théâtre du petit monde, Opéra Bastille, Odéon Théâtre de l'Europe, Le Cabaret Sauvage, Théâtre du Châtelet, Théâtre de la Ville, Comédie Française, Théâtre du Palais Royal, Théâtre des Bouffes Parisiens, Théâtre National de l'Opéra Comique, Opéra Garnier, Caveau de la République, Théâtre Mouffetard, Théâtre de la Tempête, Kiosque à Musique, Théatre du Luxembourg, Théâtre du Gymnase Marie Bell, Théâtre de la Porte-Saint-Martin, Théâtre de la Renaissance, Au Laurette Théâtre, Cité de la Musique, Le Tarmac de la Villette, Espace Cardin, Théâtre Marigny, Théâtre Guignol des Champs-Élysées, Théâtre de la Madeleine, Théâtre Mogador, Théatre de l'Oeuvre, Casino de Paris, Théâtre La Bruyère, Théâtre Saint-Georges, Le Tarmac, Studio de l'Ermitage, Théâtre de Ménilmontant, Théâtre de la Colline, Au Lapin Agile, Élysée Montmartre (Fermé), Théâtre des Deux Ânes, Théatre de l'Atelier, Le Trianon, Lavoir moderne parisien, Theâtre de la Plaine, Guignol, Marionnettes du Ranelagh, Salle Wagram, Théâtre Hébertot, Théâtre le Petit Hébertot, Théâtre du Rond-Point, Le Grand Parquet, Théâtre de l’Aquarium, Théâtre de verre, Chapiteaux Turbulents ! +3 +8 +5 +Untere Neckarstraße +48.8547859 2.3941295, 48.8248132 2.3380361, 48.8247461 2.3379663, 48.8769311 2.3319587, 48.8592815 2.4001391, 48.8368896 2.2901925, 48.8369266 2.2902167, 48.8314375 2.3610251, 48.8579759 2.4063828, 48.8540236 2.4015272, 48.8897293 2.2994259, 48.8897606 2.2993882, 48.8486322 2.3588365, 48.8779905 2.3662605, 48.8867597 2.3750239, 48.8862341 2.3762604, 48.8186493 2.3590514, 48.8173080 2.3582405, 48.8175522 2.3582541, 48.8628781 2.3670713, 48.8209066 2.3574248, 48.8208012 2.3572972, 48.8208287 2.3576033, 48.8208145 2.3574502, 48.8520197 2.2867484, 48.8897338 2.3634397, 48.8897354 2.3635038, 48.8290298 2.3791668, 48.8597144 2.4062420, 48.8654427 2.4002296, 48.8655443 2.4002869, 48.8656004 2.4000960, 48.8316069 2.3482725, 48.8388356 2.4064308, 48.8388787 2.4064483, 48.8896329 2.3152465, 48.8189949 2.3551879, 48.8189152 2.3552463, 48.8601347 2.3613407, 48.8864643 2.3247572, 48.8737445 2.3636077, 48.8422883 2.3537773, 48.8761720 2.3844227, 48.8761415 2.3844219 +La bobine de fil, Le mur des Canuts, Lyon et sa région, terre de l’humanisme, Lyon et sa région, terre de l’humanisme, Le Théâtre des Charpennes, Camionnette Disques Wem, Rue des grands chefs - Restaurant Paul Bocuse, Paul Bocuse - Restaurant Paul Bocuse, Mur de la Cour des Loges, La fresque des Lyonnais, La Bibliotheque de la Cité "des écrivains en Rhône-Alpes", Boulevard de la B.D., Boulevard de la B.D., Boulevard de la B.D., La Dombes, Fresque de Meyzieu, Fresque des Fourchettes, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Charlie Chaplin Bubbles, Mayoud Honda, Mur peint, Fresque, Fresque, Fresque "La Route de la Soie", La "Fresque Végétale Lumière", Poster en facade gratte ciel, Tag 16m2 and 45.7615378 4.9252989, 45.7858145 4.8075880, 45.7779285 4.8279690, 45.7698700 4.7879340, 45.7698985 4.7880655, 45.7725199 4.8663498, 45.7756330 4.7951910, 45.8155738 4.8472165, 45.8156435 4.8475277, 45.7649855 4.8287925, 45.7681064 4.8280574, 45.7659207 4.8312600, 45.7759090 4.8015510, 45.7760780 4.7952180, 45.7764025 4.7984375, 45.8202824 4.8705136, 45.7664155 5.0049470, 45.7704495 4.8643856, 45.7617643 4.8152072, 45.7621030 4.8160960, 45.7618195 4.8162683, 45.7745993 4.8606941, 45.8437735 4.7340205, 45.7690470 4.7998735, 45.7697129 4.9524500, 45.7714030 5.0001735, 45.7723084 4.8215466, 45.7696009 4.8272315, 45.7680770 4.8801051, 45.7677299 4.8312641, 45.8764848 4.8346205, 45.8684698 4.8394062 +2 +Wellington +yes +10 +Hilton Edinburgh Airport Hotel +477 +yes +2 +55.9523925 -3.1039168 +yes +24 +yes +41 +Stephen Sauvestre, Gustave Eiffel, Maurice Koechlin, Émile Nouguier +Eugène Flachat and 48.8869533 2.3007728 +http://www.glenfiddich.com, http://www.bladnoch.co.uk/, http://www.bruichladdich.com/, http://www.kilchomandistillery.com/, http://www.geistvonrathen.de/, http://www.schladerer.de/, http://www.vins.tourisme-gers.com/Recherche-Details.aspx?theme=armagnac&categorie=producteurscaves&FID=51554&k=chateau-cugnac-armagnac-condom, http://www.br-piekfeinebraende.de/, http://www.geistreich.biz/, http://www.distilleryprescott.com/, http://www.rhum-saintjames.com/, http://www.alte-brennerei-holz.de/, www.grassl.com, http://www.altlaender.com, http://www.welsh-whisky.co.uk/, http://www.jurawhisky.com, http://www.plymouthdistillery.com, http://www.plymouthdistillery.com, http://www.discovering-distilleries.com/dalwhinnie/, http://www.stgeorgespirits.com, http://www.chateau-breuil.com/, http://www.abhainndearg.co.uk/, http://www.ardbeg.com, http://www.malts.com/index.php/en can/Our-Whiskies/Lagavulin, http://dunordcraftspirits.com, http://www.mainedistilleries.com/, http://www.plymouthdistillery.com +yes +49.4202233 8.6640696, 49.4198130 8.6638525, 49.4195041 8.6641646, 49.4248122 8.6872355, 49.4263252 8.6863288, 49.4217251 8.6445344, 49.4084762 8.6902505, 49.4065473 8.6689860, 49.4208711 8.6448501, 49.4209873 8.6448339, 49.4204584 8.6876495, 49.4189459 8.6869645, 49.4193267 8.6867654, 49.4192376 8.6861722, 49.4192705 8.6864384, 49.3777088 8.7056335, 49.3780745 8.7048109, 49.3779505 8.7037486, 49.3745067 8.7032760, 49.3799563 8.6760435, 49.3799786 8.6763709, 49.3800051 8.6766463, 49.3802989 8.6762802, 49.3803460 8.6768554, 49.3793874 8.6774627, 49.3793531 8.6767040, 49.3793632 8.6770302, 49.3793710 8.6772783, 49.3793218 8.6759644, 49.3792705 8.6775154, 49.3796266 8.6836532, 49.3796294 8.6834790, 49.3795841 8.6831190, 49.3795295 8.6826857, 49.3997820 8.6405617, 49.3995752 8.6401758, 49.3926214 8.6768793, 49.3798526 8.6797819, 49.3799495 8.6800491, 49.3799490 8.6795094, 49.4081778 8.6881317, 49.4081698 8.6882899, 49.4082331 8.6884615, 49.4083237 8.6888854, 49.4084415 8.6900553, 49.4084860 8.6903641, 49.4084765 8.6898842, 49.4084627 8.6897477, 49.4084636 8.6896366, 49.4084248 8.6895282, 49.4083660 8.6893501, 49.4083662 8.6891344, 49.4083446 8.6889828, 49.4086172 8.6909674, 49.4086503 8.6908303, 49.4085091 8.6906855, 49.4086061 8.6905132, 49.4087890 8.6917902, 49.4087592 8.6915686, 49.4087155 8.6913580, 49.4086937 8.6910795, 49.4087163 8.6911997, 49.4264161 8.6863276, 49.4263838 8.6862184, 49.4261138 8.6866692, 49.4264855 8.6863041, 49.4262979 8.6865564, 49.4262677 8.6863603, 49.3822628 8.6596492, 49.3997181 8.6401339, 49.3996684 8.6405968, 49.3995169 8.6406436, 49.3994323 8.6402177, 49.4088119 8.6919989, 49.3628089 8.7050636, 49.3629886 8.7063068, 49.3633642 8.7049588, 49.3632257 8.7044001, 49.4069028 8.6689467, 49.4067040 8.6686868, 49.3826190 8.6602844, 49.3821944 8.6593300, 49.4077241 8.6695054, 49.4076008 8.6695056, 49.4074774 8.6695058, 49.4073539 8.6695060, 49.4072305 8.6695063, 49.4072462 8.6689669, 49.4073676 8.6689653, 49.4074890 8.6689637, 49.4076104 8.6689621, 49.4077317 8.6689605 +yes +0 +44 +key cutter, shoemaker, locksmith, seamstress, tailor, handicraft, hand craft, silversmith, screenprinter, electrician, keycutter, photographer, carpenter, watchmaker, blacksmith, stonemason +yes +203 +Bonaly Scout Camp, Edinburgh Caravan Club, Mortonhall Caravan and Camping Park, Linwater Caravan Park +49.4058676 8.6845278, 49.3755036 8.6875476, 49.4114903 8.6527163, 49.4084682 8.7011215, 49.4282350 8.6834880, 49.4080165 8.6707602, 49.3970333 8.6721539 +es:Annobón, en:Cocos (Keeling) Islands, en:Christmas Island, http://en.wikipedia.org/wiki/Banaba Island, pt:Ilha Brava, en:Norfolk Island, en:St. George Island (Alaska), en:Rapa Iti, en:Thule Island, de:Pitcairn, ru:Остров Уединения, pt:Trindade e Martim Vaz, en:Bouvet Island, http://en.wikipedia.org/wiki/Antipodes Island, fr:Amsterdam (île), fr:Saint-Paul (île), en:Ascension Island, en:Semisopochnoi Island, en:Napuka, en:Christmas Island, ru:Остров Атласова, en:Norfolk Island, en:Campbell Island, New Zealand, en:Floreana Island, en:Diego Garcia, en:Laurie Island, en:Peter I Island, en:Macquarie island, en:Franklin Island (Antarctica), ru:Остров Рудольфа, en:Howland Island, de:Osterinsel +14 +8 +56 +48.8337601 2.2980718, 48.8309772 2.2928903, 48.8339410 2.2950323, 48.8349198 2.2959694, 48.8385615 2.2891992, 48.8381491 2.2812684, 48.8811210 2.3732246, 48.8779567 2.3742972, 48.8781153 2.3727187, 48.8307104 2.3120538, 48.8367030 2.2977655, 48.8405834 2.2993396, 48.8463258 2.3017109, 48.8893373 2.3260663, 48.8822209 2.3332567, 48.8300409 2.3310810, 48.8332151 2.3611684, 48.8322056 2.3591376, 48.8712479 2.3628847, 48.8457070 2.3709161, 48.8778514 2.3653978, 48.8630548 2.3794488, 48.8563588 2.4021369, 48.8705460 2.3596280, 48.8297820 2.3231434, 48.8563936 2.4058269, 48.8560853 2.4051449, 48.8637600 2.3817121, 48.8316269 2.3219796, 48.8635138 2.4091631, 48.8518271 2.4017627, 48.8615895 2.3741154, 48.8602485 2.3756498, 48.8505112 2.3734697, 48.8460708 2.3737179, 48.8496820 2.3740608, 48.8490800 2.3750094, 48.8490486 2.3705522, 48.8551656 2.3600991, 48.8459906 2.3763165, 48.8474237 2.3715091, 48.8468588 2.3691970, 48.8934713 2.3255439, 48.8909446 2.3815154, 48.8472820 2.3181790, 48.8362003 2.3593757, 48.8863875 2.3186958, 48.8493049 2.3780822, 48.8493772 2.3775082, 48.8520216 2.4013947, 48.8521964 2.4026633, 48.8466612 2.3868559, 48.8475216 2.3868219, 48.8524263 2.3831212, 48.8538371 2.3820195, 48.8503861 2.3796236, 48.8495310 2.3784411, 48.8455986 2.3806304, 48.8507593 2.3788216, 48.8481410 2.3804390, 48.8824887 2.3152528, 48.8941438 2.3276936, 48.8332886 2.3557244, 48.8373701 2.2969471, 48.8662590 2.4060030, 48.8646392 2.4080329, 48.8651930 2.4052170, 48.8829824 2.3824508, 48.8541148 2.4028833, 48.8279466 2.3304154, 48.8619444 2.3516288, 48.8611025 2.3441314, 48.8500286 2.2891336, 48.8765487 2.3769364, 48.8752389 2.3825154, 48.8701184 2.3349370, 48.8773883 2.3713487, 48.8522577 2.3568176, 48.8443535 2.3549714, 48.8465773 2.3541793, 48.8618685 2.3509784, 48.8576627 2.3525871, 48.8587248 2.3501786, 48.8462572 2.3519644, 48.8637215 2.3528934, 48.8568317 2.3570851, 48.8572474 2.3590633, 48.8267666 2.3510620, 48.8257746 2.3474534, 48.8526580 2.3643423, 48.8658845 2.3575167, 48.8641612 2.3652384, 48.8885363 2.3534749, 48.8616550 2.3823490, 48.8405164 2.3219841, 48.8804129 2.3352691, 48.8794749 2.3336267, 48.8810172 2.3647737, 48.8814252 2.3658018, 48.8764651 2.3681086, 48.8383449 2.3457194, 48.8344303 2.3140331, 48.8620790 2.4013394, 48.8946928 2.3825532, 48.8943501 2.3144067, 48.8469243 2.3314911, 48.8721203 2.3123396, 48.8726364 2.3241496, 48.8804896 2.3190711, 48.8517936 2.3135511, 48.8466215 2.4086336, 48.8377558 2.3541054, 48.8387036 2.3509191, 48.8827594 2.3615206, 48.8830373 2.3593122, 48.8699837 2.3960859, 48.8790942 2.3629732, 48.8782374 2.3646053, 48.8825669 2.3666870, 48.8197848 2.3652117, 48.8448730 2.4055932, 48.8784075 2.3544102, 48.8410084 2.3943815, 48.8805633 2.3647086, 48.8796707 2.3636682, 48.8763896 2.3610152, 48.8803326 2.3639778, 48.8832959 2.3681138, 48.8859862 2.3714699, 48.8650067 2.2919269, 48.8374206 2.2895464, 48.8252367 2.3572513, 48.8671109 2.2875572, 48.8362585 2.3098681, 48.8503715 2.3790699, 48.8681484 2.2814134, 48.8662633 2.2740207, 48.8412244 2.3146196, 48.8416926 2.3144950, 48.8739761 2.3446348, 48.8525869 2.3545810, 48.8869795 2.3395686, 48.8556968 2.2748636, 48.8374709 2.3730609, 48.8314755 2.3541835, 48.8241809 2.3260188, 48.8232738 2.3262563, 48.8258667 2.3126560, 48.8468751 2.2700239, 48.8277034 2.3290464, 48.8714383 2.3749525, 48.8714917 2.3756604, 48.8425873 2.2683262, 48.8861537 2.3665372, 48.8291397 2.3173468, 48.8862628 2.3608446, 48.8899894 2.3635134, 48.8403968 2.2858802, 48.8451852 2.3793358, 48.8546996 2.3622532, 48.8873315 2.3475211, 48.8757382 2.2870119, 48.8427628 2.3131898, 48.8846035 2.3801294, 48.8287227 2.2733061, 48.8966748 2.3303545, 48.8957156 2.3308196, 48.8416043 2.3385745, 48.8282746 2.3160906, 48.8276845 2.3152274, 48.8471880 2.2956420, 48.8505880 2.3767286, 48.8573622 2.3923455, 48.8528949 2.2984341, 48.8451099 2.2604585, 48.8234260 2.3622734, 48.8237538 2.3645279, 48.8795652 2.3399721, 48.8782649 2.3446579, 48.8416777 2.3865802, 48.8356662 2.4056140, 48.8384665 2.3992857, 48.8390505 2.3976576, 48.8367225 2.4026707, 48.8420538 2.3352669, 48.8479330 2.3109984, 48.8400158 2.3885455, 48.8380676 2.3904670, 48.8372920 2.3914250, 48.8515655 2.3106825, 48.8573206 2.3799070, 48.8568774 2.3778976, 48.8791708 2.3545583, 48.8433099 2.2998521, 48.8422686 2.3028212, 48.8428121 2.3029849, 48.8766295 2.3386068, 48.8232376 2.3241574, 48.8623905 2.3858127, 48.8252485 2.3653047, 48.8235509 2.3617468, 48.8604567 2.3787781, 48.8941854 2.3817753, 48.8567231 2.3036505, 48.8316207 2.3444925, 48.8309991 2.3450497, 48.8448253 2.2941187, 48.8219529 2.3664594, 48.8241488 2.3575845, 48.8231660 2.3578863, 48.8264536 2.3293804, 48.8455609 2.2880163, 48.8703798 2.3425078, 48.8815370 2.2890680, 48.8814465 2.2860544, 48.8840798 2.2887768, 48.8642750 2.3750973, 48.8844394 2.3668122, 48.8279579 2.3273293, 48.8906856 2.3765193, 48.8328648 2.3160056, 48.8209152 2.3429194, 48.8217284 2.3424285, 48.8358292 2.2784139, 48.8465347 2.4059784, 48.8771396 2.3394367, 48.8777030 2.3395918, 48.8627753 2.2762117, 48.8627898 2.2765008, 48.8314375 2.3197845, 48.8378234 2.3078140, 48.8661247 2.3355594, 48.8767239 2.3326961, 48.8767816 2.3351954, 48.8747442 2.3555041, 48.8835914 2.3739721, 48.8649656 2.3746029, 48.8515852 2.2976307, 48.8695595 2.3743475, 48.8540049 2.4108468, 48.8580698 2.3901570, 48.8383400 2.3560643, 48.8466480 2.3513950, 48.8491900 2.3494261, 48.8286796 2.3431375, 48.8727378 2.3797947, 48.8942732 2.3207603, 48.8945377 2.3200415, 48.8934867 2.3227129, 48.8243403 2.3236549, 48.8273521 2.3254454, 48.8236051 2.3228034, 48.8314118 2.3268159, 48.8317243 2.3255633, 48.8730929 2.3615921, 48.8902931 2.3539796, 48.8912086 2.3476028, 48.8286520 2.3729316, 48.8443510 2.3492066, 48.8448929 2.3490511, 48.8947631 2.3433837, 48.8944528 2.3445585, 48.8931760 2.3432750, 48.8936140 2.3424950, 48.8699780 2.3603140, 48.8692770 2.3632250, 48.8689460 2.3599740, 48.8711600 2.3611170, 48.8718330 2.3625680, 48.8726030 2.3634490, 48.8551457 2.3064362, 48.8682200 2.3862795, 48.8569251 2.3724871, 48.8927820 2.3439810, 48.8652385 2.3467947, 48.8923110 2.3520290, 48.8442018 2.3394106, 48.8289915 2.3222506, 48.8593204 2.3472769, 48.8262063 2.3413104, 48.8856760 2.3378250, 48.8847970 2.3378803, 48.8528514 2.4064283, 48.8481389 2.4033143, 48.8285586 2.3331113, 48.8276535 2.3328559, 48.8513926 2.4064136, 48.8547850 2.2692675, 48.8651423 2.2891208, 48.8591269 2.4019235, 48.8600304 2.4040296, 48.8511503 2.3968083, 48.8863055 2.3474829, 48.8955331 2.3629901, 48.8523880 2.3766318, 48.8510502 2.3768840, 48.8507078 2.3790297, 48.8361116 2.3874192, 48.8235068 2.3533933, 48.8403649 2.3951878, 48.8907372 2.3457644, 48.8873229 2.3511583, 48.8376955 2.3463172, 48.8846893 2.3539417, 48.8416560 2.3224928, 48.8238291 2.3416075, 48.8577497 2.2739837, 48.8645340 2.4052672, 48.8780261 2.3268365, 48.8398765 2.2998351, 48.8816987 2.3281627, 48.8808802 2.3287802, 48.8360217 2.3527252, 48.8354391 2.3483666, 48.8498251 2.2722599, 48.8504305 2.2704038, 48.8528838 2.2756127, 48.8452361 2.4025749, 48.8805451 2.2927512, 48.8810529 2.2917751, 48.8872955 2.3492014, 48.8870640 2.3535779, 48.8825453 2.3671700, 48.8245686 2.3765029, 48.8813195 2.2953819, 48.8898589 2.3421554, 48.8906741 2.3434068, 48.8298993 2.3526634, 48.8281786 2.3525387, 48.8883534 2.3187513, 48.8890835 2.3224688, 48.8882779 2.2997302, 48.8939893 2.3329500, 48.8935546 2.3361391, 48.8947140 2.3351360, 48.8972639 2.3451996, 48.8979057 2.3340738, 48.8958814 2.3435581, 48.8912647 2.3345914, 48.8932962 2.3379872, 48.8493216 2.4063155, 48.8980433 2.3287001, 48.8979798 2.3377499, 48.8934867 2.3300359, 48.8928448 2.3280564, 48.8939770 2.3281101, 48.8942097 2.3280510, 48.8966030 2.3288474, 48.8932032 2.3271200, 48.8352792 2.2890637, 48.8220563 2.3588648, 48.8911913 2.3392274, 48.8499872 2.3478618, 48.8463001 2.3432338, 48.8498177 2.3482783, 48.8446190 2.3895985, 48.8497058 2.2914067, 48.8488722 2.2909525, 48.8516467 2.2919993, 48.8502983 2.2919285, 48.8430441 2.2833680, 48.8427407 2.2800381, 48.8569612 2.3997902, 48.8580950 2.4069089, 48.8574194 2.4075785, 48.8794256 2.3893510, 48.8824759 2.3233165, 48.8441370 2.3723808, 48.8533370 2.3079466, 48.8365811 2.3930159, 48.8457446 2.3932577, 48.8462449 2.3946154, 48.8682520 2.3960084, 48.8608742 2.3547652, 48.8644732 2.3715756, 48.8354190 2.3928675, 48.8389285 2.3961514, 48.8220200 2.3551611, 48.8713113 2.3039889, 48.8525737 2.3850093, 48.8777366 2.2878742, 48.8782149 2.3984639, 48.8761595 2.4036138, 48.8770014 2.4071325, 48.8814737 2.3729748, 48.8807820 2.3745741, 48.8843130 2.3091760, 48.8277275 2.3062018, 48.8287563 2.3015875, 48.8930590 2.3424350, 48.8750926 2.2837673, 48.8419136 2.3247626, 48.8385785 2.3227706, 48.8431110 2.2650609, 48.8594724 2.3491134, 48.8732334 2.3431543, 48.8774393 2.3494265, 48.8774984 2.3489986, 48.8849881 2.3071728, 48.8392226 2.3945147, 48.8446508 2.3731492, 48.8358462 2.2901616, 48.8852419 2.3788486, 48.8302344 2.3704299, 48.8814548 2.3450080, 48.8706548 2.3429479, 48.8657789 2.3469220, 48.8205834 2.3501740, 48.8234560 2.3498227, 48.8533833 2.3705439, 48.8239258 2.3642439, 48.8225364 2.3462505, 48.8227836 2.3470686, 48.8257161 2.3507275, 48.8257020 2.3460018, 48.8771653 2.3515517, 48.8763392 2.3556446, 48.8682998 2.4016012, 48.8697801 2.4028967, 48.8710424 2.4039943, 48.8720618 2.4046821, 48.8727710 2.3991263, 48.8650559 2.3971773, 48.8655264 2.3981686, 48.8344269 2.3672465, 48.8284908 2.3703198, 48.8258079 2.3604332, 48.8594207 2.3678969, 48.8248710 2.3196867, 48.8247915 2.3176000, 48.8301707 2.3337415, 48.8327495 2.3363992, 48.8333703 2.3323929, 48.8351459 2.3005345, 48.8353374 2.3022404, 48.8359317 2.3005525, 48.8440288 2.4105786, 48.8908851 2.3611676, 48.8263543 2.3123490, 48.8263472 2.3104526, 48.8274473 2.3073922, 48.8273336 2.3052629, 48.8372837 2.2784287, 48.8421188 2.2774869, 48.8260357 2.3595197, 48.8267984 2.3745150, 48.8276944 2.3706840, 48.8352679 2.2821201, 48.8558849 2.3751381, 48.8545384 2.3713228, 48.8287227 2.2995517, 48.8317316 2.3684804, 48.8395554 2.2619755, 48.8900586 2.3606383, 48.8715652 2.3861467, 48.8243982 2.3283690, 48.8437094 2.2827794, 48.8424843 2.2821195, 48.8418506 2.2815590, 48.8941162 2.3618889, 48.8933356 2.3615276, 48.8901273 2.3615642, 48.8397383 2.2615466, 48.8388211 2.2609376, 48.8900701 2.3596849, 48.8908274 2.3601975, 48.8903737 2.3602877, 48.8762839 2.3874942, 48.8258804 2.3538466, 48.8910933 2.3308427, 48.8840472 2.3777246, 48.8532483 2.3881569, 48.8310847 2.3808041, 48.8325943 2.3626569, 48.8276596 2.3564922, 48.8501827 2.3300326, 48.8729108 2.3892528, 48.8926192 2.3787994, 48.8594463 2.3795210, 48.8917249 2.3596358, 48.8933896 2.3598075, 48.8353878 2.3976074, 48.8393328 2.3898245, 48.8653879 2.3568423, 48.8858319 2.3683200, 48.8866975 2.3690587, 48.8918801 2.3632407, 48.8682722 2.3654615, 48.8557307 2.3714370, 48.8559510 2.3687418, 48.8632613 2.3690657, 48.8610703 2.3668902, 48.8615047 2.3648719, 48.8625898 2.3635210, 48.8624376 2.3641865, 48.8798043 2.3995910, 48.8294190 2.3760526, 48.8893342 2.3187256, 48.8435392 2.3876321, 48.8664075 2.3511385, 48.8752547 2.3898031, 48.8739410 2.3881658, 48.8740999 2.3854670, 48.8729667 2.3708014, 48.8536536 2.3652281, 48.8839440 2.2924260, 48.8841607 2.2936643, 48.8698850 2.3947954, 48.8869564 2.3228854, 48.8320028 2.3143006, 48.8764887 2.3444554, 48.8668204 2.3972017, 48.8708653 2.3088351, 48.8703111 2.3109794, 48.8438225 2.3306529, 48.8270270 2.3545480, 48.8441654 2.3422903, 48.8525204 2.3447674, 48.8436299 2.3520995, 48.8683492 2.3653361, 48.8444368 2.3317238, 48.8878098 2.3799348, 48.8455417 2.2847565, 48.8471374 2.2853376, 48.8640679 2.3650860, 48.8556183 2.3576323, 48.8725081 2.3789468, 48.8297066 2.3719377, 48.8658987 2.3445250, 48.8518380 2.3369161, 48.8368347 2.3064637, 48.8864904 2.3929252, 48.8409479 2.3520733, 48.8548553 2.3856848, 48.8551588 2.3869294, 48.8902682 2.3369864, 48.8648476 2.3661885, 48.8954171 2.3603570, 48.8462303 2.3082719, 48.8881816 2.3761106, 48.8224627 2.3258585, 48.8531572 2.3447239, 48.8495298 2.3495342, 48.8678864 2.3249680, 48.8406223 2.3162685, 48.8415260 2.3177790, 48.8516476 2.3430530, 48.8522113 2.3433310, 48.8799994 2.2917628, 48.8760421 2.3247263, 48.8259140 2.3418063, 48.8475433 2.3020749, 48.8848153 2.3335836, 48.8768943 2.3487181, 48.8340803 2.3449578, 48.8294924 2.3480229, 48.8483268 2.3315361, 48.8384271 2.3603013, 48.8718826 2.3260739, 48.8306192 2.3113448, 48.8708189 2.3031863, 48.8224695 2.3280079, 48.8867785 2.2961065, 48.8380124 2.3925384, 48.8393761 2.3972146, 48.8729941 2.3452007, 48.8363310 2.3511207, 48.8308373 2.3481222, 48.8328106 2.3467883, 48.8189800 2.3619660, 48.8852910 2.2958210, 48.8653095 2.3468349, 48.8780467 2.2960586, 48.8785810 2.2953365, 48.8785586 2.2954162, 48.8860217 2.2909345, 48.8342538 2.4039026, 48.8328046 2.3998654, 48.8897434 2.3684941, 48.8565550 2.3066461, 48.8662189 2.3411008, 48.8338577 2.3542234, 48.8588484 2.3622538, 48.8557977 2.3334124, 48.8537947 2.3371165, 48.8401916 2.3498220, 48.8405286 2.3497872, 48.8385999 2.2890636, 48.8410381 2.3194768, 48.8665493 2.2967911, 48.8732070 2.3032419, 48.8880020 2.3070560, 48.8894260 2.3021180, 48.8501962 2.3822724, 48.8469077 2.3843835, 48.8972873 2.3596764, 48.8588932 2.3539048, 48.8755295 2.3273771, 48.8757429 2.3272510, 48.8487020 2.3404334, 48.8341468 2.3292697, 48.8334796 2.3314573, 48.8772230 2.2922270, 48.8645795 2.2824038, 48.8338948 2.3299593, 48.8810540 2.2852110, 48.8839130 2.2907430, 48.8278199 2.3453108, 48.8746985 2.3800023, 48.8294976 2.3479900, 48.8746524 2.3059699, 48.8743208 2.3074302, 48.8798388 2.3745491, 48.8345685 2.3277223, 48.8824071 2.3708251, 48.8587325 2.3232162, 48.8736497 2.3266758, 48.8265944 2.3272409, 48.8538362 2.3322137, 48.8333843 2.3867041, 48.8808106 2.3727327, 48.8406281 2.3046706, 48.8533190 2.3669820, 48.8849774 2.3801611, 48.8854894 2.3815292, 48.8856226 2.3818987, 48.8830874 2.3878108, 48.8438379 2.3524738, 48.8438379 2.3524738, 48.8222496 2.3507278, 48.8851070 2.3036780, 48.8500752 2.3009300, 48.8496090 2.3539260, 48.8827302 2.3707486, 48.8609924 2.2838960, 48.8588106 2.2845183, 48.8306465 2.3335032, 48.8725875 2.3782042, 48.8755301 2.3910815, 48.8656747 2.3928548, 48.8827937 2.3812803, 48.8829828 2.3811149, 48.8755713 2.3983661, 48.8755863 2.3989012, 48.8767180 2.4047230, 48.8771405 2.4060238, 48.8591517 2.3557695, 48.8607522 2.3545715, 48.8608207 2.3543547, 48.8609593 2.3539532, 48.8610034 2.3538240, 48.8473351 2.3951813, 48.8472416 2.3961945, 48.8475546 2.3930901, 48.8476864 2.3973242, 48.8518800 2.3897180, 48.8505687 2.3925919, 48.8500483 2.3946347, 48.8575099 2.3809573, 48.8394381 2.3922677, 48.8395862 2.3939515, 48.8513422 2.3477785, 48.8745781 2.3873676, 48.8746258 2.3882005, 48.8753047 2.3926062, 48.8352480 2.2852870, 48.8583161 2.3282685, 48.8489230 2.3496710, 48.8367930 2.2958108, 48.8560138 2.2801813, 48.8568409 2.2789161, 48.8440022 2.2934092, 48.8642512 2.3689433, 48.8515116 2.3988887, 48.8907874 2.3784109, 48.8853720 2.2926050, 48.8583103 2.3822134, 48.8661157 2.3977226, 48.8671967 2.4092129, 48.8684503 2.4092879, 48.8621715 2.3774882, 48.8746232 2.3266224, 48.8467059 2.3087748, 48.8363398 2.2999746, 48.8653853 2.3686990, 48.8653218 2.3678518, 48.8413271 2.3076655, 48.8353741 2.3033228, 48.8477911 2.3189782, 48.8469433 2.3172689, 48.8685232 2.3413917, 48.8661744 2.3390884, 48.8833230 2.2987210, 48.8825490 2.2939790, 48.8615259 2.3704088, 48.8429707 2.3067870, 48.8642079 2.3555687, 48.8840313 2.3391067, 48.8616536 2.3637831, 48.8329453 2.2890084, 48.8670104 2.3443314, 48.8545691 2.3624284, 48.8410290 2.3406982, 48.8605092 2.3788107, 48.8547397 2.3848709, 48.8643859 2.3991316, 48.8298427 2.3644959, 48.8759393 2.2895530, 48.8619514 2.3325055, 48.8364245 2.3944189, 48.8770775 2.3600536, 48.8773723 2.3588805 and 48.8816147 2.3662734, 48.8485878 2.3779556, 48.8477085 2.3772628, 48.8519828 2.4015288, 48.8606467 2.3785883, 48.8932504 2.3277402, 48.8934830 2.3278313, 48.8661100 2.4057320, 48.8649560 2.4047670, 48.8623237 2.3634257, 48.8877005 2.3533788, 48.8629947 2.3795041, 48.8468796 2.3271500, 48.8776226 2.3150003, 48.8680219 2.3961889, 48.8839565 2.3613084, 48.8802192 2.3643090, 48.8672446 2.2975479, 48.8950477 2.3822690, 48.8474744 2.2680932, 48.8718766 2.3761721, 48.8704140 2.3727547, 48.8712167 2.3748802, 48.8705763 2.3732019, 48.8705794 2.3726376, 48.8871151 2.3474262, 48.8756613 2.2868772, 48.8472282 2.3082142, 48.8479879 2.3109130, 48.8383871 2.3900734, 48.8509763 2.3108973, 48.8234323 2.3584527, 48.8846619 2.3670751, 48.8461078 2.4020554, 48.8451767 2.4043841, 48.8626693 2.2763686, 48.8631682 2.2764416, 48.8245199 2.3237261, 48.8269977 2.3252696, 48.8286429 2.3278648, 48.8232893 2.3240570, 48.8930770 2.3421030, 48.8937980 2.3431330, 48.8931540 2.3429260, 48.8930830 2.3430390, 48.8929620 2.3432630, 48.8931090 2.3433990, 48.8933970 2.3424700, 48.8936660 2.3423840, 48.8933880 2.3479180, 48.8932130 2.3480590, 48.8379699 2.3924685, 48.8306222 2.3438186, 48.8262682 2.3413732, 48.8577722 2.3812528, 48.8275957 2.3325826, 48.8528674 2.4065219, 48.8304790 2.2943425, 48.8380975 2.2811300, 48.8360490 2.3873173, 48.8235110 2.3536356, 48.8898645 2.3422536, 48.8933633 2.3273912, 48.8316520 2.3639864, 48.8932561 2.3273882, 48.8351222 2.2888936, 48.8617519 2.3509405, 48.8650692 2.2881840, 48.8810899 2.3732979, 48.8946050 2.3468940, 48.8413680 2.3066850, 48.8272341 2.3065067, 48.8560716 2.4048790, 48.8449361 2.4054104, 48.8468235 2.3868122, 48.8358268 2.2900677, 48.8854678 2.3814749, 48.8233585 2.3653758, 48.8229202 2.3579643, 48.8195421 2.3590157, 48.8185260 2.3608397, 48.8228214 2.3471152, 48.8255307 2.3472637, 48.8256034 2.3464595, 48.8679663 2.4018628, 48.8686440 2.4015656, 48.8713217 2.4044435, 48.8766469 2.4051044, 48.8252680 2.3470445, 48.8656967 2.3983655, 48.8288068 2.3694717, 48.8225859 2.3275483, 48.8295686 2.3336315, 48.8357986 2.3017632, 48.8902265 2.3605416, 48.8276415 2.3069629, 48.8504748 2.2920807, 48.8902732 2.3613767, 48.8903006 2.3611752, 48.8246154 2.3286641, 48.8424455 2.2820766, 48.8417412 2.2814597, 48.8899232 2.3619412, 48.8387912 2.2608071, 48.8257312 2.3509065, 48.8490105 2.2910540, 48.8352424 2.3977037, 48.8841466 2.2886911, 48.8639331 2.3565353, 48.8870761 2.3594856, 48.8456895 2.3425970, 48.8458043 2.3426608, 48.8895396 2.3195127, 48.8248228 2.3573776, 48.8463586 2.2854231, 48.8641631 2.3455959, 48.8798647 2.3747261, 48.8324140 2.3030804, 48.8274692 2.3706917, 48.8767253 2.3445477, 48.8549118 2.3865002, 48.8499905 2.3788090, 48.8648212 2.3661053, 48.8447339 2.3101296, 48.8529991 2.2905857, 48.8597203 2.3563359, 48.8520043 2.3432322, 48.8258511 2.3417971, 48.8257747 2.3417859, 48.8339973 2.3446413, 48.8803144 2.2992162, 48.8378744 2.2816421, 48.8696814 2.3227806, 48.8475847 2.2667489, 48.8368174 2.3921011, 48.8397759 2.3970504, 48.8327512 2.3467251, 48.8911432 2.3616261, 48.8908663 2.3615027, 48.8907657 2.3616639, 48.8910109 2.3614919, 48.8908645 2.3615850, 48.8550035 2.3609057, 48.8882832 2.2996061, 48.8493157 2.3784984, 48.8559766 2.3066968, 48.8868040 2.2961690, 48.8840590 2.2934670, 48.8394962 2.3497379, 48.8399210 2.3496825, 48.8403322 2.3498058, 48.8380098 2.2891917, 48.8288930 2.3016130, 48.8807490 2.2859050, 48.8469150 2.3846047, 48.8502232 2.3819652, 48.8247845 2.3760253, 48.8334615 2.3311381, 48.8335012 2.3310323, 48.8770670 2.2919810, 48.8650824 2.2830488, 48.8816748 2.3725027, 48.8817568 2.3723149, 48.8798264 2.3719401, 48.8814694 2.3733482, 48.8420869 2.3029156, 48.8852044 2.3809157, 48.8855693 2.3817686, 48.8803367 2.3757350, 48.8433945 2.3520737, 48.8433945 2.3520737, 48.8424517 2.3029789, 48.8330926 2.3613863, 48.8884683 2.3744665, 48.8848082 2.3919927, 48.8832730 2.3045600, 48.8742457 2.3749831, 48.8743618 2.3860316, 48.8746255 2.3866149, 48.8754355 2.3898785, 48.8608528 2.3542797, 48.8491214 2.3779213, 48.8488752 2.3776934, 48.8748132 2.3888227, 48.8753144 2.3901825, 48.8752765 2.3929469, 48.8324280 2.3204198, 48.8735274 2.3747879, 48.8721753 2.3729178, 48.8446738 2.2939909, 48.8455257 2.2944696, 48.8569643 2.3786291, 48.8921632 2.3813552, 48.8908774 2.3782534, 48.8921294 2.3489558, 48.8787360 2.2899190, 48.8784220 2.2895090, 48.8583028 2.3830779, 48.8658290 2.3979596, 48.8482332 2.3197065, 48.8476699 2.3191596, 48.8472636 2.3181042, 48.8420825 2.3028095, 48.8785893 2.3450444 +49.4139740 8.7692291 +Clinique Paris V - Centre Médico Chirurgical, Clinique de Vinci (fermée), Centre de Protection Maternelle et Infantile, Clinique Geoffroy Saint-Hilaire, Centre municipal de santé, Clinique de la Muette, Institut Curie, Centre du Luxembourg (Consultations pluri-disciplinaires), Hôpital Marmottan, Maison De Santé Faidherbe, Centre de Bilan de Santé DEPSE, Laboratoire de biologie médicale, Centre de santé médical et dentaire, Hôpital Cognacq-Jay, Centre biologique chemin vert, COSEM Rome, Imagerie Médicale, Centres de dépistage anonymes et gratuits, Clinique Médicales, Médecine Physique Réadaptation, Clinique Canal de l'Ourcq, Hôpital privé des peupliers, Hôpital de jour pour enfants, Hôpital Sainte-Périne - Rossini - Chardon-Lagache, Hôpital Tenon, Hôpital Sainte-Anne, Fondation ophtalmologique Adolphe de Rothschild, Hôpital du Val de Grâce, Hôpital Cochin, Maternité Port Royal et Baudelocque, Hôpital Saint-Vincent de Paul, Hôpital des Quinze-Vingts, Hôpital Leopold Bellan, Hôpital Saint-Joseph, Hôpital Broussais, Hôpital de la Rochefoucauld, Institut Mutualiste Montsouris, Hôpital Européen Georges Pompidou, Hôpital Privé des Peupliers, Institut Pasteur, Hôpital Saint-Jacques, Hôpital Trousseau, Hôpital Lariboisière, Hopital Vaugirard, Hôpital Saint-Michel, Hôpital Fernand Widal, Hôpital Broca, Hôpital Saint-Louis, Hôpital Robert Debré, Hôpital National, Hopital Bichat, Maison médicale Jeanne Garnier, Hôpital Henri Dunant, Clinique Jouvenet, Clinique Edouard Rist, Notre-Dame de Bon Secours, Hôpital des Diaconnesses, Hôtel-Dieu, Maternité Sainte-Félicité, Centre de dépistage anonyme et gratuit, Hôpital Léopold Bellan, Les Cariatides d'Abbeville, Hôpital Jean Jaurès, Clinique des Buttes-Chaumont, Clinique Maussins-Nollet, Hôpital Tarnier, Clinique du Parc de Belleville, Hôpital Pierre Rouquès - Les Bluets, Maternité Les Bluets, Urgences, Institut de Cardiologie, Clinique Arago, Clinique Alleray Labrouste, Clinique Chirurgicale Victor Hugo, Climique Rémusat, Hôpital Sainte-Périne - Rossini - Chardon Lagache, Hôpital Croix Saint-Simon, Clinique Saint-Jean de Dieu, Hôpital Necker Enfants Malades, Hôpital Saint-Antoine, Hôpital Rothschild, Hôpital Esquirol, Clinique de la Jonquière, Clinique Rémy de Gourmont, Hôpital La Collégiale, Hôpital Bretonneau, Maternité Port Royal et Baudelocque, Hôpital des Gardiens de la Paix, Hôpital de la Pitié Salpétrière, Hôpital Maison-Blanche, Hopîtal Lasserre +yes +Theater im Kulturzentrum Karlstorbahnhof, Theater und Philharmonisches Orchester, Zwinger1 und Zwinger3 +yes +megalith, megalith +251 +783 +Alte Robinie, Alte Linde, NSG Enzwiese, Lehmgrube, Doline Immenloch, Entlesboden, Entlesboden, Obere Weide, Obere Weide and 49.2671510 9.7687357, 49.2652563 9.7596961, 49.1003017 9.4322353, 49.2858954 9.7152636, 49.2884127 9.7383219, 49.1558846 9.6333594, 49.1601952 9.5900561, 49.1543685 9.6336691, 49.1519834 9.6262729, 49.1543939 9.6234654 +Corstorphine Hill, Arthur's Seat, Blackford Hill, Allermuir Hill, Haggis Knowe, Crow Hill, Dunsapie Crag, Easter Craiglockhart Hill, Capelaw Hill, White Hill, Torduff Hill, Wester Craiglockhart, Buckstone Snab, The Braids, East Cairn Hill, Caerketton Hill, Whinny Hill, Mons Hill, Warklaw Hill, Calton Hill, Salisbury Crags, The Nether Hill, Dalmahoy Hill, Mansion Hill, New England +49.4111078 8.7122962 +yes +yes +6.7911808119601913 +McDonald's, Burger King, Die Kuh die lacht, Mandy's Fast Food Center +5 +95 +414 +Cambo House +55.8994270 -3.2972350, 55.9232575 -3.2877434, 55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9002100 -3.2321660, 55.9579565 -3.2439627, 55.9297115 -3.2566004, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9372727 -3.3656602, 55.9344345 -3.1791228, 55.9100535 -3.1423251, 55.9377502 -3.4029754, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9365550 -3.3142140, 55.9836311 -3.3989193, 55.9826346 -3.1875882, 55.9248058 -3.2496194, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9051775 -3.1653894, 55.8839472 -3.3405441, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9695021 -3.2293678, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9102318 -3.2377415, 55.9781314 -3.1744029, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9242943 -3.2525824, 55.9398424 -3.2041012, 55.9397193 -3.2934475 +yes +35 +Dalmeny Parish Church, St Stephens Comely Bank, True Jesus Church (St Lukes), Craiglockhart Parish Church, Queensferry Parish Church, St. Anne's Church, Muirhouse Kingdom Hall, Old Kirk of Edinburgh, St Paul's RC Church, St. Ninian's Church, St Ninians, St Christopher's, St Andrews Catholic Church, St Catherine of Alexandria, Pilrig St Paul's, St Johns, Leith Free Church, South Leith Baptist Church, Ardmillan Hall, Craigsbank Parish Church, Kirkliston Parish Church, Corstorphine Old Parish Church, Methodist Central Hall, Duke Street United Reformed Church, Saint Mark's, Capital City Church International (3Ci), Old Schoolhouse Christian Fellowship, St Cuthbert's, Davidson's Mains Parish Church, Saint Annes Church, Ferniehill Evangelical Church, All Nations Christian Fellowship, Methodist Central Hall, True Jesus Church, East Adam Street, Canongate Kirk, Bristo Memorial Church, The Robin Chapel, Niddrie Community Church, Richmond Craigmillar Church, Catholic Church of St Teresa, St Mary Magdalene, Duddingston Kirk, St Philips Joppa Parish Church, Tron Kirk, St Barnabas, Cramond Kirk, Barclay Viewforth Parish Church, St Michael's Parish church, Polwarth Church, Broughton St. Mary's, Saint Martin of Tours Episcopal Church, St Margaret's Chapel, Life church, Buccleuch and Greyfriars, Orthodox Church of St Andrew, Kirk O'Field, St. Giles' Cathedral, South Leith Parish Church, Augustine United Church, St Columba's, St Philip's Church, Kingdom Hall, Saint Cuthberts Church, Destiny Church, St Vincent's Chapel, Ebeneezer, Reid Memorial Church, Gilmore Place Free Presbyterian Church of Scotland, St Ninians Episcopal Church, Granton Salvation Army Hall, Seventh-day Adventist Church, Granton Parish Church, St Margaret and Mary, St Davids, Granton Baptist Church, Marchmont St Giles Parish Church, Murrayfield Parish church, Gorgie Mission, Gorgie Dalry Parish Church, Chruch of the Good Shepherd, Liberton Northfield Parish Church, Saint Cuthbert, Carrick Knowe Parish Church, Colinton Parish Church, Saint Margaret's and Saint Leonard's, Mayfield Salisbury Parish Church, Carrubbers Christian Centre, St Salvidor's Episcopal Church, Craigmillar Park Church, Fairmilehead Parish Church, St Mark's, St John's, Colinton Mains Parish Church, Canonmills Baptist Church, Stockbridge Parish Church, St Andrew's and St George's West, St. James Goldenacre, Inverleith Parish Church, Rhema Church, Leith St Andrew's, South Leith Parish Church, Newhaven Church, Greenbank Church, Abbeyhill Baptist Church, St Fillan, Wardie Parish Church, The Chaplaincy, Muirhouse St Andrews, Drylaw Parish Church, King's Church Edinburgh, Holy Cross RC Church, North Leith Parish Church, Leith Baptist Church, Charlotte Baptist Chapel, Bellevue Chapel, Morningside United Church, Ratho Parish Church, St Margaret's Catholic Church, World Conqueror Christian Centre, Saint Catherine's Argyle, Bristo Baptist Church, Palmerston Place Church, Duncan Street Batptist Church, St Mary's Star of the Sea, Church of the Sacred Heart of Jesus, Morningside Parish Church, Dean Parish Church, Juniper Green Parish Church, St Mary's Episcopal Cathedral, Blackhall St. Columba's Church, Chapel of St. Albert the Great, German Church, Holy Cross Church, Balerno Parish Church, Quaker Meeting House, St Mary's Metropolitan Cathedral (RC), St. Davids Broomhouse Church, St Peter's Catholic Church, St Columba's, Christ Church (Morningside), Saint Columba's by the Castle, Bruntsfield Evangelical Church, St Nicholas Parish Church, Kirkliston Parish Church of Scotland, Saint Stephen's Church, Priestfield Parish Church, St Paul's & St George's, St Michael and All Saints, Greyfriars Church, The Parish of St Gregory the Great, London Road Parish Church, London Road Parish Church, St. Patrick's, Old Saint Paul's, St Margaret's Episcopal Church, Community Church Edinburgh, Saint Peter's Church, Elim Edinburgh, Our Lady of Pochaiv and Saint Andrew, World Conqueror Christian Centre, St Albert's Catholic Chaplaincy, St Albert's Catholic Chaplaincy, St Serf's Parish Church, Church of St John +48.8973798 2.3589436 +yes +1663 +48 +48.8660881 2.3521709 +yes +5 +post office, post box, kindergarten, park, parking, telephone, pub, recycling, fuel, bicycle parking, atm, bank, cinema, doctors, pharmacy, toilets, school, place of worship, police, bar, nightclub, restaurant, library, car rental, cafe, Forestry Commission staff bicycle shed, college, biergarten, fire station, masonic lodge, fast food, arts centre, parking entrance, bench, university, taxi, theatre, marketplace, car sharing, grit bin, stripclub, public building, social facility, conference centre, dressmaker, gambling, consulate, brothel, veterinary, clock, waste basket, fountain, shop, vending machine, shelter, posts, dance hall, picnic bench, Austrian cosulate, swimming pool, Botanic House Hotel, dentist, chiropodist, juice bar, waste transfer station, motorcycle parking, car wash, chiropractor, bookmakers, waste disposal, fitness center, drinking water, photo booth, clinic, vacuum, jet wash, Rhythms of Resistance practice, casino, ice cream, tourism, embassy, charging station, courthouse, community centre, register office, hairdressing, Renaissance Restoration, printer, Haircutting, finanacial advisor, Hairdressing, Nailcare, physiotherapy, Sauna, studio, yes, spa, Yoga, Cabaret, funeral, bureau de change, academi, financial advice, internet cafe, sauna, language centre, prison, hospital, bandstand, grave yard, crematorium, mortuary, pontoon, RBGE Lecture theater, post depot, nursing home, harbour master, bus station, kiosk, Music Shop, social centre, health centre, scout hall, animal boarding, common, nursery, townhall +48.8108150 2.3016518, 48.8153367 2.2970255, 48.8812535 2.2714648, 48.8756694 2.2890915, 48.8719944 2.3006392, 48.8689763 2.3101131, 48.8664075 2.3221380, 48.8643585 2.3298436, 48.8623829 2.3361468, 48.8607697 2.3409358, 48.8587782 2.3474106, 48.8575436 2.3515947, 48.8552140 2.3606657, 48.8520122 2.3686542, 48.8457111 2.3727163, 48.8472696 2.3866995, 48.8475165 2.4063260, 48.8339081 2.2438908, 48.8487832 2.2988351, 48.8475338 2.3029524, 48.8504212 2.2936685, 48.7296445 2.3600059, 48.8242325 2.2730847, 48.8270162 2.2794048, 48.8326135 2.2884024, 48.8373212 2.2966299, 48.8919677 2.2377691, 48.8228800 2.3256282, 48.8280605 2.3269249, 48.8313954 2.3301258, 48.8340204 2.3325902, 48.8389018 2.3308032, 48.8330168 2.3366295, 48.8311288 2.3434842, 48.8297785 2.3504704, 48.8314217 2.3555589, 48.8331986 2.3628553, 48.8349549 2.3680817, 48.8370762 2.3729066, 48.8842870 2.3659442, 48.8480576 2.3960523, 48.8444696 2.4398829, 48.8454354 2.4293269, 48.8782117 2.3816608, 48.8808997 2.3738860, 48.8518166 2.4013757, 48.8463309 2.4190317, 48.8514736 2.3982446, 48.8664900 2.3833323, 48.8629761 2.3873271, 48.8582563 2.3901666, 48.8562640 2.3945621, 48.8720463 2.3769849, 48.8690586 2.3804560, 48.8774398 2.3708174, 48.8829026 2.3443344, 48.8823612 2.3373703, 48.8836162 2.3330841, 48.8835165 2.3274515, 48.8824462 2.3221220, 48.8812626 2.3155318, 48.8805420 2.3094230, 48.8737784 2.2950482, 48.8698038 2.2854485, 48.8714638 2.2768954, 48.8652545 2.4166605, 48.8645515 2.4088118, 48.8649326 2.3984802, 48.8643020 2.3794597, 48.8652193 2.3747542, 48.8666345 2.3614233, 48.8654878 2.3563464, 48.8663020 2.3524557, 48.8676419 2.3463248, 48.8686692 2.3412605, 48.8695654 2.3367072, 48.8707693 2.3322643, 48.8736019 2.3276269, 48.8754212 2.3255796, 48.8825292 2.3110507, 48.8839908 2.3042907, 48.8847948 2.2982623, 48.8856871 2.2926417, 48.8395785 2.3012923, 48.8415118 2.3080120, 48.8443954 2.3175634, 48.8468543 2.3166512, 48.8514000 2.3143901, 48.8568058 2.3151577, 48.8413343 2.4008998, 48.8905035 2.3598783, 48.9162246 2.2948689, 48.8707855 2.3611531, 48.8921077 2.2852229, 48.8579460 2.4357587, 48.8625988 2.4415690, 48.8971408 2.2803973, 48.8887892 2.2878755, 48.8526992 2.4061094, 48.8534759 2.4105242, 48.8558145 2.4237108, 48.8525808 2.3887914, 48.8547441 2.3853565, 48.8581580 2.3798044, 48.8610516 2.3747956, 48.8641314 2.3695694, 48.8694199 2.3544678, 48.8706004 2.3487793, 48.8715206 2.3432861, 48.8720176 2.3395091, 48.8730612 2.3333207, 48.8747030 2.3197963, 48.8464740 2.3659107, 48.8422880 2.3653598, 48.8460116 2.3549579, 48.8465082 2.3517283, 48.8499051 2.3487460, 48.8508926 2.3454617, 48.8521785 2.3394266, 48.8529427 2.3357457, 48.8363894 2.2784000, 48.8387450 2.2821427, 48.8410837 2.2879218, 48.8426906 2.2917758, 48.8389924 2.3896778, 48.8395253 2.3958919, 48.8401067 2.3799581, 48.8410654 2.3249923, 48.8429457 2.3126019, 48.8716770 2.2935098, 48.8669099 2.2902715, 48.8630266 2.2870524, 48.8573825 2.2859234, 48.8646725 2.2937783, 48.8640063 2.2780859, 48.8580816 2.2741958, 48.8555764 2.2702166, 48.8525598 2.2681802, 48.8480038 2.2641872, 48.8452505 2.2618802, 48.8430044 2.2600472, 48.8377707 2.2565741, 48.8649686 2.3006256, 48.8723362 2.3100827, 48.8736768 2.3145456, 48.8514587 2.3267159, 48.9038952 2.3053664, 48.8939640 2.3144204, 48.8905170 2.3201235, 48.8874127 2.3256961, 48.8470802 2.3076354, 48.8470463 2.2953101, 48.8606970 2.3210551, 48.8586775 2.3231168, 48.8481026 2.3277965, 48.8452766 2.3286613, 48.8656361 2.3227452, 48.8700644 2.3251637, 48.8446967 2.2937668, 48.8546428 2.3061015, 48.8575837 2.3102891, 48.8611770 2.3148333, 48.8633194 2.3666124, 48.8610965 2.3672267, 48.8575371 2.3679970, 48.8531361 2.3686313, 48.8511945 2.3759944, 48.8500259 2.3842705, 48.8444003 2.3899525, 48.8371074 2.4024837, 48.8266498 2.4057278, 48.8354584 2.4063451, 48.8450642 2.4010776, 48.8333461 2.3863163, 48.8269184 2.3662163, 48.8322556 2.3989811, 48.8656737 2.3344599, 48.8763705 2.3326310, 48.8760654 2.3385532, 48.8557241 2.3256659, 48.8784508 2.3374732, 48.8844760 2.3384377, 48.8898183 2.3386296, 48.8925606 2.3447103, 48.8977084 2.3592969, 48.8937935 2.3477372, 48.8873214 2.3497042, 48.8795577 2.3571375, 48.8762027 2.3579127, 48.8638408 2.3487041, 48.8723097 2.3558518, 48.8627762 2.3461709, 48.8551566 2.3471977, 48.8535657 2.3443622, 48.8536264 2.3333280, 48.8470711 2.3270822, 48.8421852 2.3289966, 48.8466102 2.2859257, 48.8461920 2.2786319, 48.8473202 2.2686743, 48.8477655 2.2583922, 48.8452670 2.2672606, 48.8470891 2.2728475, 48.8420002 2.2387333, 48.8406690 2.2287175, 48.8700162 2.3710617, 48.8612740 2.3535761, 48.8771276 2.4066804, 48.8754657 2.3990396, 48.8738469 2.3852526, 48.8750969 2.3893345, 48.8385876 2.3222085, 48.8317799 2.3140252, 48.8339551 2.3180764, 48.8225032 2.2984833, 48.8566177 2.3705298, 48.8602039 2.3721323, 48.8850187 2.3795672, 48.8869632 2.3867135, 48.8885434 2.3927045, 48.8911980 2.4025577, 48.8814188 2.3654808, 48.8772835 2.3492720, 48.8885069 2.3740693, 48.8908770 2.3772148, 48.8947998 2.3823744, 48.8974296 2.3854377, 48.8749537 2.3402103, 48.8759682 2.3441565, 48.8585901 2.3424101, 48.8512630 2.3622044, 48.8535245 2.3570872, 48.8429311 2.3521239, 48.8406731 2.3517801, 48.8356703 2.3525980, 48.8799166 2.3990372, 48.8819551 2.3933641, 48.8798096 2.4170873, 48.8715218 2.4043104, 48.8680997 2.4013152, 48.8382823 2.3608293, 48.8356584 2.3588519, 48.8927063 2.3274728, 48.8973715 2.3289008, 48.9061915 2.3320476, 48.8261434 2.3573719, 48.8225268 2.3585049, 48.8191302 2.3595477, 48.9231172 2.2862019, 48.9305465 2.2836436, 48.9142830 2.4036539, 48.9036536 2.3920966, 48.9207844 2.4106144, 48.8677590 2.3139517, 48.7963514 2.4492350, 48.7899066 2.4504803, 48.7797556 2.4594504, 48.8024711 2.4466949, 48.8090371 2.4347211, 48.8150770 2.4217740, 48.8214689 2.4136458, 48.9118944 2.3339725, 48.9196049 2.3429933, 48.8051317 2.3637903, 48.7869402 2.3673857, 48.7960877 2.3683672, 48.8103280 2.3622359, 48.8514725 2.3311829, 48.8439710 2.3243262, 48.8789208 2.3623079, 48.8844216 2.3602786, 48.8932382 2.4133209, 48.8795976 2.3270787, 48.9301278 2.3563841, 48.9368260 2.3590959, 48.9459311 2.3641518, 48.8538982 2.2893959, 48.8319438 2.2381100, 48.8296613 2.2308732, 48.8201086 2.3647992, 48.8216697 2.3693224, 48.8159011 2.3773455, 48.8109896 2.3839963, 48.8491398 2.3218984, 48.8756733 2.3273522, 48.8755336 2.3242020, 48.8780508 2.2982339, 48.7687211 2.4643844, 48.8837592 2.3495338, 48.8915769 2.3496679, 48.8663302 2.3215942, 48.8603937 2.3146892, 48.8537409 2.3693210, 48.8433310 2.3737787, 48.8456163 2.3095848, 48.9064052 2.4491919, 48.8975167 2.3446663, 48.8419339 2.3211592, 48.7290137 2.3699140, 48.8787548 2.3223081, 48.8767276 2.4064297, 48.8795817 2.3886032, 48.8825949 2.3703263, 48.8295791 2.3768615, 48.8767737 2.3935636, 48.8792625 2.3035538, 48.9068701 2.3657737, 48.8183938 2.3193550, 48.8956037 2.4251032, 48.8779888 2.2817745, 48.8582563 2.3901666, 48.8882249 2.2495172, 48.8849431 2.2599157, 48.8571078 2.3473222, 48.8596411 2.3468404, 48.8576652 2.3478702, 48.8589166 2.3467871, 48.8673076 2.3641562 +Heidenloch, Römischer Tempel, Lochheim, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall +415 +55.9512080 -3.2029850 +6 +24 +0 +83 +white +46 +3 +55.9479019 -3.1690156, 55.9439751 -3.1694877, 55.8964656 -3.2760789, 55.9197838 -3.1875367, 55.9305416 -3.3959991, 55.9343148 -3.2480921, 55.8886365 -3.3754440, 55.9176560 -3.3976191, 55.9559553 -3.2763209, 55.9607882 -3.2792058, 55.9346329 -3.2488234, 55.8858183 -3.3554460, 55.9709722 -3.3555690, 55.8954027 -3.2783381 +2 +49.4296874 8.6826637, 49.4279757 8.6835849, 49.4147764 8.6710359, 49.4278053 8.7495282, 49.3974030 8.6486853, 49.3977437 8.6485764, 49.4084243 8.6937725, 49.4072954 8.6910173, 49.4082595 8.6914326, 49.3746833 8.6826514, 49.3741444 8.7033717, 49.3742583 8.7034051, 49.4103158 8.6974936, 49.4165191 8.6921856, 49.4048779 8.6827341, 49.4071068 8.6898761, 49.4108200 8.6918918, 49.4227158 8.6483350, 49.3809325 8.6701888, 49.3795766 8.6901652, 49.4101101 8.6935285, 49.3992315 8.6710140, 49.4228152 8.6504004 +55.9742289 -3.2023602 +8 +29 +0 +51.4399233 7.3193298 ++33-1-40269017 +355 and 55.9253583 -3.4147034, 55.9245412 -3.3113504, 55.9838701 -3.4034761, 55.9996939 -3.3883352, 55.9794131 -3.3762107, 55.9879261 -3.3873321, 55.9812940 -3.3771341, 55.9215875 -3.3071576, 55.9169023 -3.2880468, 55.9172106 -3.2788656, 55.8940463 -3.3482149, 55.9203287 -3.4338967, 55.9067356 -3.2765428, 55.9112129 -3.2971404, 55.9136481 -3.2924112, 55.9222765 -3.3173383, 55.9245302 -3.4143898, 55.8921896 -3.3904545, 55.8928744 -3.3831777, 55.9342483 -3.2886138, 55.9185125 -3.2718794, 56.0005355 -3.4042125, 56.0005266 -3.4040011, 55.9115356 -3.3190780, 55.9119727 -3.3136012, 55.9169161 -3.2879655, 55.9216210 -3.3072178, 55.9187028 -3.3241409, 55.9194331 -3.3250368, 55.9012534 -3.3172353, 55.9260327 -3.3234503, 55.9201440 -3.3153742, 55.9172846 -3.2758018, 55.9052885 -3.3120708, 55.9127039 -3.3185766, 55.8956436 -3.3085216, 55.9178228 -3.2883067, 55.9177320 -3.2883616, 55.9177084 -3.2885519, 55.9168914 -3.2881838, 55.9208989 -3.3111331, 55.9234261 -3.3789665, 55.9284947 -3.3843026, 55.9347497 -3.3921486, 55.9399416 -3.4022022, 55.9424898 -3.4014836, 55.9173668 -3.2846812, 55.8966106 -3.3015427, 55.9191012 -3.2651146, 55.9659134 -3.2652795, 56.0005670 -3.4038864, 56.0005711 -3.4043334, 55.9386987 -3.3913489, 55.9264863 -3.4288285, 55.9363357 -3.2986518, 55.9277719 -3.3059687, 55.9162943 -3.2965876, 55.9198806 -3.3512702, 55.9064620 -3.2745346, 55.8990943 -3.2945157, 55.9030149 -3.2833882, 55.8958844 -3.3085762, 55.9514109 -3.3422820, 55.9666580 -3.2682414, 55.9203523 -3.3017825, 55.9245917 -3.4143875, 55.9202953 -3.4338960, 55.8889910 -3.2764883, 55.8905325 -3.2746290, 55.9338645 -3.2867061, 55.9303574 -3.2858444, 55.9325097 -3.2743332, 55.9156308 -3.2780598, 55.9403100 -3.3172931, 55.9402068 -3.3174470, 55.9130257 -3.2893735, 55.9119796 -3.2938532, 55.9100179 -3.2804925, 55.9101035 -3.2803751, 55.9057184 -3.2756582, 55.9057613 -3.2755133, 55.9137657 -3.2863134, 55.9062552 -3.2686221, 55.9060912 -3.2635206, 55.9033690 -3.2736040, 55.9034122 -3.2734109, 55.9003911 -3.2685569, 55.9890944 -3.3836060, 55.9892088 -3.3844692, 55.9889521 -3.3925230, 55.9347488 -3.3917488, 55.9551419 -3.4188844, 55.9303919 -3.3643927, 55.9374488 -3.3332089, 55.9792112 -3.3468255, 55.9261171 -3.4015537, 55.9260108 -3.4015503, 55.9287081 -3.4030907, 55.9574350 -3.4170582, 55.9574829 -3.4172555, 55.9643486 -3.4027677, 55.9644590 -3.4027248, 55.9275914 -3.3074492, 55.9188285 -3.2753539, 55.9124646 -3.2769931, 55.9178158 -3.2736164, 55.9003110 -3.2920130, 55.9172446 -3.2773680, 55.9344797 -3.2675638, 55.9293469 -3.2915960, 55.9287029 -3.3161849, 55.9408387 -3.4098588, 55.9275707 -3.3441434, 55.8916943 -3.3211093, 55.9600201 -3.3539411, 55.9641042 -3.3163667, 55.9129956 -3.2891261, 55.9396630 -3.3213183, 55.9168698 -3.2882590, 55.8860732 -3.3399261, 55.9439226 -3.3293194, 55.8927797 -3.2635293, 55.8657294 -3.3178967, 55.8561715 -3.3367531, 55.9251316 -3.4146061, 55.9254779 -3.4147399, 55.9004339 -3.3188436, 55.9329461 -3.2747956, 55.9244601 -3.3114765, 55.9252699 -3.3105658, 55.9396441 -3.3214611, 55.9241965 -3.3130785, 55.9192182 -3.3037407, 55.9198673 -3.3046957, 55.9673916 -3.4106960, 55.9334961 -3.4103614, 55.9398933 -3.4112294, 55.9659972 -3.3621260, 55.9346898 -3.4222766, 55.9225607 -3.4008937, 55.8771374 -3.3287515, 55.8866544 -3.3374530, 55.8858646 -3.3375740, 55.9212101 -3.3414649, 55.9091868 -3.3220855, 55.9396282 -3.4022402, 55.9387262 -3.4018519, 55.9793103 -3.3761870, 55.9617180 -3.4132830, 55.9617222 -3.4130523, 55.9374211 -3.3332788, 55.9867062 -3.3795502, 55.9614118 -3.4422153, 55.9472029 -3.4080139, 55.9470811 -3.4083701, 55.9471370 -3.4081966, 55.9219763 -3.4203941, 55.9201516 -3.3152932, 55.9222998 -3.3172749, 55.9265981 -3.3165664, 55.9212342 -3.3024056, 55.9203734 -3.3017859, 55.9204463 -3.3018734, 55.9627829 -3.3296636, 55.9261709 -3.2650765, 55.9147477 -3.3175730, 55.9390304 -3.3915516, 55.9388624 -3.3914362, 55.9475607 -3.2661403, 55.9309334 -3.3150690, 55.9331552 -3.3165436, 55.9337041 -3.3712199, 55.9347207 -3.2664128, 55.9301069 -3.2856870, 55.9277603 -3.3107484, 55.9277821 -3.3107229, 55.9287128 -3.3160778, 55.8918723 -3.2994420, 55.9441698 -3.2693328, 55.9465305 -3.2693949, 55.9453130 -3.2700572, 55.9441175 -3.2720063, 55.9374126 -3.4329432, 55.9426504 -3.4419958, 55.9150903 -3.3211208, 55.9147213 -3.3164547, 55.9843921 -3.4038630, 55.9733736 -3.3721666, 55.9615149 -3.4204840, 55.9566510 -3.4260417, 55.9565322 -3.4260555, 55.8948439 -3.2697613, 55.9038948 -3.2819499, 55.9114742 -3.3289109, 55.9003484 -3.3188428, 55.9004475 -3.3189882, 55.9303232 -3.2858247, 55.9277363 -3.3059625, 55.9293125 -3.2915775, 55.9343717 -3.3380326, 55.9336909 -3.3354767, 55.9524698 -3.3734976, 55.9651737 -3.3161001, 55.9474170 -3.4010655, 55.9531953 -3.4004826, 55.8964053 -3.3181888, 55.9869438 -3.3819439, 55.8996433 -3.2948470, 55.8986117 -3.2963244, 55.9499764 -3.4058056, 55.9495739 -3.4048963, 55.9439064 -3.4138957, 55.9254219 -3.4280602, 55.9255253 -3.4280577, 55.9010141 -3.3189125, 55.9196416 -3.2758298, 55.9175481 -3.2816550, 55.9211105 -3.4253433, 55.9206868 -3.4296551, 55.9214106 -3.3084104, 55.9185066 -3.2720477, 55.8986285 -3.2991643, 55.9171117 -3.3421022, 55.8584472 -3.4177884, 55.9715066 -3.2804764, 55.9714808 -3.2806451, 55.9712166 -3.2803296, 55.9888951 -3.3973524, 55.9795806 -3.3964157, 55.8702054 -3.3876295, 55.9340984 -3.4004483, 55.9339794 -3.4004240, 55.8969285 -3.3180149, 55.9629385 -3.4032441, 55.9623104 -3.4309700, 55.9328281 -3.2746596, 55.9328551 -3.2746954, 55.9329730 -3.2748287, 55.9323864 -3.2871966, 55.9427303 -3.4223013, 55.8832955 -3.3373489, 55.8818349 -3.3087404, 55.8896276 -3.3196792, 55.8919785 -3.3134755, 55.8968552 -3.3020135, 55.8927414 -3.3143917, 55.8947508 -3.3012201, 55.8841696 -3.3364601, 55.8807381 -3.3368118, 55.8774138 -3.3755830, 55.9054895 -3.3795410, 55.9018295 -3.3897743, 55.9387086 -3.4018441, 55.9347390 -3.4004629, 55.9347350 -3.4006735, 55.9408977 -3.3783402, 55.9418945 -3.3744896, 55.9370550 -3.3589671, 55.9369534 -3.3590018, 55.9254934 -3.4147419, 55.9713657 -3.3285830, 55.9139843 -3.3266712, 55.9138724 -3.3283900, 55.9138281 -3.3289507, 55.8840219 -3.3327174, 55.8909456 -3.2977491, 55.9563336 -3.3977999, 55.9702651 -3.3747743, 55.9793990 -3.3747495, 55.9795032 -3.3747767, 55.9402898 -3.3231801, 55.9404637 -3.3353169, 56.0028482 -3.4137500, 56.0027732 -3.4134188, 55.9575192 -3.4174461, 55.9551170 -3.4187252, 55.9415382 -3.3356085, 55.9761578 -3.3786363, 55.9409548 -3.4098374, 55.9206332 -3.3019882, 55.9867511 -3.3817443, 55.9867527 -3.3819155, 55.9865602 -3.3817051, 55.9300778 -3.2856656, 55.9291865 -3.2914547, 55.9324790 -3.2743161, 55.9291523 -3.2914405, 55.9404906 -3.3353136, 55.9347120 -3.2664838, 55.9117266 -3.2935809, 55.9173632 -3.2824005, 55.9156210 -3.2832169, 55.8722326 -3.3121904, 55.9565035 -3.4260650, 55.9566866 -3.4260323, 55.8975112 -3.2712979, 55.8974642 -3.2720985, 55.9509169 -3.4494853, 55.9594452 -3.3187542, 55.9389730 -3.2630427, 55.9380195 -3.2629562, 55.9386264 -3.2629284, 55.9388165 -3.2630172, 55.9128992 -3.3173628, 55.9142511 -3.3254009, 55.9710708 -3.3853507, 55.9712667 -3.3862514, 55.9347006 -3.2665504, 55.9193447 -3.3215440, 55.9144679 -3.3441278, 55.9199272 -3.3046850, 55.9212859 -3.3299990, 55.9587192 -3.3919290, 55.9294189 -3.4153351, 55.9279524 -3.4223584, 55.8895017 -3.2960696, 55.9881960 -3.3897624, 55.9392951 -3.3235462, 55.9392655 -3.3236898, 55.9103957 -3.3006028, 55.8939577 -3.3715831, 55.8976952 -3.3414516, 55.9008399 -3.3235718, 55.9239852 -3.3778710, 55.8923325 -3.3903179, 55.8924135 -3.3902631, 55.9148989 -3.2814860, 55.9661699 -3.3763106, 55.9600478 -3.3539062, 55.9660032 -3.3620577, 55.9334622 -3.4103647, 55.9340641 -3.4004428, 55.8923592 -3.3903273, 55.9120032 -3.2938699, 55.9137971 -3.2863402, 55.9104224 -3.3006131, 55.9130615 -3.2893982, 55.9112386 -3.2971527, 55.9149233 -3.2814984, 55.9643068 -3.3786468, 55.9293834 -3.4153028, 55.9264502 -3.4287984, 55.9279123 -3.4223325, 55.9339469 -3.4004134, 55.8677512 -3.3773434, 55.9932311 -3.4213582, 55.9851500 -3.4224768, 55.9845616 -3.4222185, 55.9794973 -3.3962181, 55.9147359 -3.2813285, 55.9902549 -3.4029695, 55.9996839 -3.3884053, 55.9869295 -3.3820116, 55.9346516 -3.4223004, 55.9522338 -3.4284125 +yes +49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.4157261 8.7004521, 49.4532301 8.7620686, 49.4129054 8.7286879, 49.4209333 8.7223854, 49.4221949 8.7060036, 49.4291183 8.7154588, 49.4157681 8.7006398, 49.4088360 8.7691224, 49.4390162 8.7105044, 49.4305905 8.7775493, 49.4272716 8.7035465, 49.4393938 8.7104846, 49.4497204 8.7157564, 49.4428768 8.7011414, 49.4395208 8.7105611, 49.4326079 8.7091648, 49.4328392 8.7092032, 49.4342309 8.7101843, 49.4342740 8.7112555, 49.4442518 8.7151750, 49.4447625 8.7168293, 49.4468314 8.7142297, 49.4308426 8.7277671, 49.4311330 8.7033214, 49.4278439 8.6859389, 49.4082372 8.7465476, 49.4136970 8.7613615, 49.4238953 8.7651482 +48.8560795 2.3115715, 48.8507240 2.3518758, 48.8403827 2.3113658, 48.8547934 2.3662431, 48.8551205 2.3589562, 48.8339752 2.3324559, 48.8559492 2.3460263, 48.8575222 2.2845690, 48.8414574 2.3172246, 48.8403652 2.3414281, 48.8411575 2.3473052, 48.8565109 2.3263842, 48.8519070 2.2652250, 48.8327663 2.3893382, 48.8302877 2.3141843, 48.8557584 2.3320096, 48.8513494 2.3555880, 48.8483211 2.3294718, 48.8522269 2.3350050, 48.8506815 2.3410772, 48.8476741 2.3140391, 48.8513629 2.3410046, 48.8547304 2.3248616, 48.8554427 2.3276941, 48.8434645 2.3207843, 48.8456499 2.3395974, 48.8434624 2.3362665, 48.8536113 2.3476422, 48.8495079 2.3483856, 48.8585526 2.3597161, 48.8533658 2.3493036, 48.8526313 2.3500601, 48.8404563 2.3198526, 48.8405179 2.3703276, 48.8465117 2.3551571, 48.8367685 2.3218491, 48.8530966 2.3611794, 48.8435231 2.3731854, 48.8340000 2.3323000, 48.8573239 2.3286291, 48.8418109 2.3577568, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8474726 2.3606473, 48.8546351 2.3638127, 48.8442282 2.3447813, 48.8505164 2.3621847, 48.8506605 2.3437398, 48.8581216 2.3616628, 48.8545855 2.3356172, 48.8352761 2.4093810, 48.8483248 2.3344265, 48.8586563 2.3821295, 48.8473326 2.3227159, 48.8433913 2.2512835, 48.8553042 2.3158566, 48.8370020 2.3826461, 48.8373190 2.3319319, 48.8260871 2.3327019, 48.8432079 2.3186583, 48.8421181 2.3562419, 48.8551953 2.2808684, 48.8463579 2.2732198, 48.8548859 2.3560679, 48.8547299 2.2897642, 48.8428133 2.3337722, 48.8344502 2.3520875, 48.8485953 2.3340184, 48.8582260 2.3619639, 48.8530932 2.3611938, 48.8563449 2.3387717, 48.8576820 2.3627148, 48.8553966 2.3450136 +yes diff --git a/smtsemparsecpp/data/nlmaps.de b/smtsemparsecpp/data/nlmaps.de new file mode 100644 index 000000000..59f276096 --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.de @@ -0,0 +1,2380 @@ +Wo gibt es Starbucks in Heidelberg ? +Wie viele McDonalds gibt es in Heidelberg ? +Hat Heidelberg Burger Kings ? +Wie viele Bahnhöfe gibt es in Heidelberg ? +Wo gibt es italienische Restaurants in Heidelberg ? +Wo gibt es indische Restaurants in Heidelberg ? +Existieren griechische Restaurants in Heidelberg ? +Welche Küchen gibt es in Heidelberg ? +Wo in Heidelberg kann ich Burgers essen ? +Welches Restaurant in Heidelberg biete Burgers an ? +Kann ich irgendwo in Heidelberg vegetarisch essen ? +Kannst du mir sagen wo in Heidelberg es Bars gibt ? +Kannst du mir den Ort eines Restaurants in Heidelberg nennen , das man mit einem Rollstuhl befahren kann ? +Wo in Heidelberg gibt es Restaurants in denen das Rauchen erlaubt ist ? +Wo in Heidelberg kann ich Eis kaufen ? +Wo in Heidelberg kann ich Eiscreme bekommen ? +Kannst du mir Bars in Heidelberg nennen in denen man rauchen darf ? +Wie lautet die Website des Kinos Die Kamera in Heidelberg ? +Wie viele Menschen leben in Heidelberg ? +Was ist die Einwohnerzahl von Heidelberg ? +Wie viele Bürger leben in Heidelberg ? +Welche Schule gibt es in Heidelberg ? +Welche Krankenhäuser existieren in Heidelberg ? +Welche Berge befinden sich in Heidelberg ? +Welche Gipfel gibt es in Heidelberg ? +Wie hoch sind die Berge in Heidelberg ? +Welche Höhe haben die Gipfel in Heidelberg ? +Wie hoch ist der Königstuhl in Heidelberg ? +Welche Kultstätten gibt es in Heidelberg ? +Wie viele christliche Kirchen kann man in der Stadt Heidelberg finden ? +Welche christlichen Kirchen gibt es in Heidelberg ? +Wie viele Moscheen gibt es in Heidelberg ? +Welche Moscheen findet man in Heidelberg ? +Welche katholischen Kirchen gibt es in Heidelberg ? +Wie viele katholische Kirchen gibt es in Heidelberg ? +Welche protestantischen Kirchen gibt es in Heidelberg ? +Wie viele protestantische Kirchen gibt es in Heidelberg ? +Welche Museen gibt es in Heidelberg ? +Wie heißt die Internetseite des Kinos Die Kamera in Heidelberg ? +Gibt es eine Bushaltestelle in der Blumenstraße , Heidelberg ? +Wenn ich in Heidelberg wäre , aus wie vielen Restaurants kann ich wählen ? +Wenn ich in Heidelberg wäre , aus wie vielen Bars könnte ich wählen ? +Aus welchen Küchen kann ich in Heidelberg wählen ? +Welche Küchen werden in Heidelberg angeboten ? +Welche Busse halten am Erich-Hübner-Platz in Heidelberg ? +Welche Busse halten an der Peterskirche in Heidelberg an ? +Gibt es Burgen in Heidelberg ? +Wo in Heidelberg gibt es Burgen ? +Wie viele Universitäten hat Heidelberg ? +Gibt es irgendwelche Universitäten in Heidelberg ? +Gibt es mehr als eine Universität in Heidelberg ? +Wo in Heidelberg befinden sich Banken ? +Wo in Heidelberg findet man Wanderkarten ? +Gibt es Wanderkarten in Heidelberg ? +Wo sind in Heidelberg Supermärkte ? +Welche Supermärkte gibt es in Heidelberg ? +Wo in Heidelberg befinden sich Bäckereien ? +Welche Bäckereien hat Heidelberg ? +Kannst du mir die Bücherläden von Heidelberg nennen ? +Kannst du mir die Orte von Bücherläden in Heidelberg sagen ? +Gibt es irgendwo in Heidelberg Edekas ? +Wie viele Edeka Märkte gibt es in Heidelberg ? +Wo in Heidelberg gibt es REWE Supermärkte ? +Kannst du mir den Standpunkt eines REWE in Heidelberg mitteilen ? +Wo gibt es Feuerwehren in Heidelberg ? +Gibt es Feuerwehren in Heidelberg ? +Kannst du mir die Orte von Polizeiwachen in Heidelberg sagen ? +Gibt es Polizeiwachen in Heidelberg ? +Kannst du mich über die Standpunkte von Büchereien in Heidelberg informieren ? +Gibt es Büchereien in Heidelberg ? +Falls es in Heidelberg Mitfahrzentralen gibt , kannst du mir sagen wo ? +Gibt es Mitfahrzentralen in Heidelberg ? +Kann man Mitfahrzentrale in Heidelberg finden ? +Wo kann ich eine Tankstelle in Heidelberg finden ? +Kannst du mir die Standorte von Tankstellen in Heidelberg sagen ? +Kannst du mir mögliche Parkgelegenheiten in Heidelberg nennen ? +Wo in Heidelberg kann ich mein Auto parken ? +Wo in Heidelberg kann ich unterirdisch mein Auto parken ? +An welchen Orten in Heidelberg kann man Autos unterirdisch parken ? +Wo sind Stellen in Heidelberg an denen Taxis warten ? +Wo warten Taxis in Heidelberg ? +Wo finde ich ein wartendes Taxi in Heidelberg ? +Wo kann ich einen Zahnarzt in Heidelberg finden ? +Wo sollte ich nach einem Zahnarzt in Heidelberg schauen ? +Wie viele Krankenhäuser gibt es in Heidelberg ? +Wie heißen die Krankenhäuser von Heidelberg ? +Wo sind die Krankenhäuser Heidelbergs ? +Gibt es ein Krankenhaus namens Kurpfalzkrankenhaus in Heidelberg ? +Welche Kinos gibt es in Heidelberg ? +Welche Kinos in Heidelberg kann man mit einem Rollstuhl befahren ? +Wie viele Kinos gibt es in Heidelberg ? +Wie heißt Heidelberg auf Japanisch ? +Wie heißt Heidelberg auf Französisch ? +Wo gibt es Gipfel in Heidelberg ? +Wo befinden sich die Berge Heidelbergs ? +Wie viele Restaurants gibt es in Heidelberg ? +Was ist die Anzahl von Bars in Heidelberg ? +Wie lautet die Wikipedia Seite des Königstuhls in Heidelberg ? +Wie lautet die Wikipedia Seite des Rathauses in Heidelberg ? +Wie lautet die Wikipedia Seite der Stadt Heidelberg ? +Wie viele Schulen befinden sich in Heidelberg ? +Kannst du mir die Anzahl der Schule in Heidelberg nennen ? +Wie viele Museen befinden sich in Heidelberg ? +Wenn ich in Heidelberg wäre , wie viele Museen könnte ich mir anschauen ? +Wie viele Berge gibt es in Heidelberg ? +Wie viele Denkmäler gibt es in Heidelberg ? +Was ist die Zahl der Denkmäler in Heidelberg ? +Wie viele Quellen gibt es in Heidelberg ? +Wie viele Feuerwehren befinden sich in Heidelberg ? +Kannst du mir die Zahl der Polizeiwachen in Heidelberg nennen ? +Was ist die Anzahl an Polizeiwachen in Heidelberg ? +Wie viele Bücherläden gibt es in Heidelberg ? +Wenn ich in Heidelberg wäre , wie viele Bibliotheken könnte ich besuchen ? +Wie viele Bibliotheken liegen in der Stadt Heidelberg ? +Wenn ich die Universitäten Heidelbergs zählen würde , welche Zahl würde ich bekommen ? +Wenn ich die McDonald's Restaurants Heidelbergs zählen würde , welche Zahl würde ich bekommen ? +Wie viele Restaurants existieren in Heidelberg , die asiatisches Essen servieren ? +Wie viele Restaurants in Heidelberg würden mir griechisches Essen servieren ? +Was ist die Zahl der Supermärkte in Heidelberg ? +Kannst du mir sagen wie viele Supermärkte Heidelberg hat ? +In wie vielen Geschäften in Heidelberg könnte ich einkaufen gehen ? +Wenn ich in Heidelberg wäre , in wie vielen Läden könnte ich einkaufen ? +Wie viele Apotheken gibt es in Heidelberg ? +Wie viele Burgen hat Heidelberg ? +Wie viele Mitfahrzentralen gibt es in Heidelberg ? +An wie vielen Ort könnte ich ein Taxi finden in Heidelberg ? +Wie viele Hotels liegen in dem Bezirk der Stadt Heidelberg ? +Wie viele Hotels befinden sich in Heidelberg ? +Wenn ich in Heidelberg wäre , wie viele Hotel Optionen hätte ich ? +Wie viele verschiedene Kunstwerke könnte ich mir in Heidelberg anschauen ? +Kannst du mir sagen wo ich ein Kunstwerk in Heidelberg finden kann ? +Kannst du mir eine Apotheke in Heidelberg nennen ? +Gibt es mehr als eine Apotheke in Heidelberg ? +Gibt es mehr als einen Buchladen in Heidelberg ? +Gibt es mehr als 1 Bücherei in Heidelberg ? +Gibt es mehrere Polizeiwachen in der Stadt Heidelberg ? +Gibt es mehr als eine Feuerwehr in Heidelberg ? +Gibt es mehr als eine Burg in Heidelberg ? +Kannst du mir bitte den Standort eines Hotels in Heidelberg nennen ? +Kannst du mir bitte die E-Mail Adresse eines Hotels in Heidelberg nennen ? +Kannst du mir bitte die Internetseite der Hotels in Heidelberg nennen ? +Kannst du mir bitte die Websites aller Hotels in Heidelberg nennen ? +Wo kann ich in Heidelberg ein Hotel finden ? +Würdest du mir bitte den Namen eines Hotels in Heidelberg sagen ? +Würdest du mir bitte den Namen eines Hotels mit 4 Sternen in Heidelberg sagen ? +Würdest du mir bitte den Namen eines Hotels , welches mit einem Rollstuhl befahren werden kann , in Heidelberg sagen ? +Würdest du mir bitte den Namen eines Hotels in Heidelberg geben , bei dem es WLAN gibt ? +Wo sind die Hotels Heidelbergs , in denen man WLAN hat ? +Bei wie vielen Hotels in Heidelberg kann man WLAN nutzen ? +Wie viele Hotels in Heidelberg haben 3 Sterne ? +Kannst du mir bitte alle Hotels mit 3 Sternen in Heidelberg sagen ? +Was ist der Name eines Hotels in Heidelberg bei dem ich auch parken kann ? +Bei wie vielen Hotels in Heidelberg kann man auch parken ? +Gibt es 5 oder mehr Hotels in Heidelberg ? +Kann man 10 oder mehr Hotels in Heidelberg finden ? +An wie vielen verschiedenen Orten in Heidelberg kann ich Picknick machen ? +Wo gibt es einen Rastplatz in Heidelberg ? +Kannst du mir alle Rastplätze in Heidelberg nennen ? +Gibt es irgendwelche Rastplätze in Heidelberg ? +Gibt es 5 oder mehr Rastplätze in Heidelberg ? +Gibt es irgendwelche Rastplätze mit einer Feuerstelle in Heidelberg ? +Wo in Heidelberg finde ich einen Rastplatz mit Feuerstelle ? +Wo in Heidelberg kann ich einen Rastplatz finden an dem man grillen kann ? +Gibt es irgendwelche schönen Aussichtspunkte in Heidelberg ? +Gibt es 3 oder mehr Aussichtspunkte in Heidelberg ? +Würdest du mir den Ort eines schönen Aussichtspunktes in Heidelberg sagen ? +Könntest du alle Aussichtspunkte Heidelbergs auflisten ? +Gibt es irgendwelche Aussichtspunkte in Heidelberg , die mit dem Rollstuhl zugänglich sind ? +Würdest du mir bitte den Ort eines Aussichtspunktes in Heidelberg nennen , den man mit dem Rollstuhl besichtigen kann ? +Kann ich irgendwo in Heidelberg Tennis spielen ? +Gibt es irgendwelche Orte in Heidelberg an denen man Tennis spielen kann ? +Würdest du mir den Ort eines Tennisplatzes in Heidelberg nennen ? +Gibt es mehrere Tennisplätze in Heidelberg ? +Kann ich in Heidelberg klettern gehen ? +Wo in Heidelberg kann ich mein Klettern üben ? +Gibt es 2 oder mehr Auswahlmöglichkeiten zum Klettern in Heidelberg ? +Gibt es einen Ort in Heidelberg wo man sich zum Rudern trifft ? +Wo in Heidelberg kann ich rudern gehen ? +Kann ich irgendwo in Heidelberg Skateboard fahren ? +Wo in Heidelberg ist es möglich Skateboard zu fahren ? +Kannst du mir alle Orte in Heidelberg nennen an denen man Skateboard fahren kann ? +Kann man irgendwo in Heidelberg Fußball spielen ? +Wo in Heidelberg kann ich Fußball spielen ? +Gibt es mehrere Orten zum Fußballspielen in Heidelberg ? +Könntest du mir bitte alle Bademöglichkeiten Heidelbergs nennen ? +Wie heißen die Bademöglichkeiten in Heidelberg ? +Kann man in Heidelberg schwimmen gehen ? +An wie viel verschiedenen Orten kann man in Heidelberg schwimmen gehen ? +Wie viele Ort in Heidelberg sind zum Skateboard fahren da ? +An wie vielen Stellen in Heidelberg kann ich Fußball spielen ? +Wie viele Möglichkeiten zum Rudern gibt es in Heidelberg ? +An wie vielen Orten kann ich in Heidelberg klettern gehen ? +Wie viele Tennisplätze hat Heidelberg ? +Wie viele Aussichtspunkte hat Heidelberg ? +Könntest du mir sagen aus wie vielen Rastplätzen man in Heidelberg auswählen kann ? +Wo in Heidelberg kann ich Tischtennis spielen ? +An wie vielen Orten in Heidelberg kann ich mein Tischtennis verbessern ? +Würdest du mir einen Ort in Heidelberg geben an dem ich Tischtennis spielen kann ? +Wie viele Möglichkeiten gibt es in Heidelberg Tischtennis zu spielen ? +Gibt es mehrere Orte zum Tischtennisspielen in Heidelberg ? +Wo in Heidelberg befinden sich Quellen ? +Gibt es mehrere Quellen in Heidelberg ? +Gibt es archäologisch Stätten in Heidelberg ? +Wie viele archäologische Stätten gibt es in Heidelberg ? +Würdest du mir bitte alle archäologisch Stätten in Heidelberg auflisten ? +Kannst du mir die Orte von allen archäologischen Stätten in Heidelberg geben ? +Kannst du mir die Namen von archäologischen Stätten in Heidelberg ? +Kannst du mir die verfügbaren Wikipedia Seiten der archäologischen Stätten von Heidelberg sagen ? +Bitte , kannst du mir die Namen von Theatern in Heidelberg nennen , die mein Mann , der im Rollstuhl sitzt , besuchen kann ? +Bitte , kannst du mir die Namen von Theatern in Heidelberg nennen , die meine Mutter , die im Rollstuhl sitzt , besuchen kann ? +Gibt es historische Türme in Heidelberg ? +Wo in Heidelberg würde ich einen historischen Turm finden ? +Wie viele historische Türme lassen sich in Heidelberg finden ? +Gibt es irgendwelche Denkmäler in Heidelberg ? +Wo in Heidelberg kann ich Monumente finden ? +Würdest du mir die Orte von Denkmälern in Heidelberg sagen ? +Gibt es eine Straße namens Werrgasse in Neuenheim ? +Gibt es eine Straße namens Marktstraße in Neuenheim ? +Gibt es eine Straße namens Amselgasse in Handschuhsheim ? +Existiert eine Straße , die Maaßstraße heißt in Wieblingen ? +Ist die Plöck in Neuenheim ? +Ist die Plöck in der Altstadt ? +Was sind die maximalen Geschwindigkeiten , die für die Plöck in Heidelberg aufgeführt sind ? +Wie viele Spuren hat die Plöck in Heidelberg ? +Aus welchem Material ist die Straße der Plöck in Heidelberg ? +Was sind die maximalen Geschwindigkeiten , die für die Maaßstraße in Heidelberg aufgeführt sind ? +Wie viele Spuren hat die Maaßstraße in Heidelberg ? +Welche Beschaffenheit hat die Maaßstraße in Heidelberg ? +Wo gibt es in Heidelberg Blitzer ? +Wie viele Blitzer gibt es in Heidelberg ? +Würdest du mir sagen wo in Heidelberg sich Blitzer befinden ? +Wie viele Ampeln hat Heidelberg ? +Würdest du mir bitte die Anzahl an Verkehrsampeln in Heidelberg geben ? +Gibt es im Moment in Heidelberg irgendwelche Baustellen ? +Wie viele Baustellen gibt es im Moment in Heidelberg ? +Führt die A5 nach Heidelberg ? +Gibt es eine Autobahn A5 , die nach Heidelberg führt ? +Bitte gib mir die Namen der Autobahnen in Heidelberg ? +Wie lauten die internationalen Referenznamen für die Autobahnen in Heidelberg ? +Gibt es in Heidelberg öffentlich zugängliche Defibrillatoren ? +Wie viele Defibrillatoren hat Heidelberg ? +Kannst du mir die Standpunkte aller Defibrillatoren in Heidelberg auflisten ? +Würdest du mir bitte den Standpunkt eines Notfalltelefons in Heidelberg geben ? +Wie viele Notfalltelefone gibt es in Heidelberg ? +Gibt es Notfalltelefone in Heidelberg ? +Wie heißen die Unfallstationen Heidelberg ? +Wo kann man in Heidelberg Unfallstationen finden ? +Wie viele Unfallstationen hat Heidelberg ? +Gibt es Feuerhydranten in Heidelberg ? +Wo sind überall Feuerhydranten in Heidelberg ? +In welcher Straße in Heidelberg ist der Italiener Roseto ? +Was ist die Homepage des Restaurants Zum Seppl in Heidelberg ? +Würdest du mir die Telefonnummer von Cesarino in Heidelberg nennen ? +Kann das Restaurant Cesarino in Heidelberg mit einem Rollstuhl befahren werden ? +Welche Küche gibt es bei Da Mario in Heidelberg ? +Was ist die Telefonnummer von Schwarzer Adler in Heidelberg ? +Gibt es ein Restaurant namens Taj Mahal in Heidelberg ? +Darf man im Taj Mahal in Heidelberg rauchen ? +Wie lautet die Telefonnummer des Taj Mahal in Heidelberg ? +Gibt es einen subway in Eppelheim ? +Wie viele subways gibt es in Heidelberg ? +Würdest du mir die Namen aller italienischen Restaurants in Heidelberg geben ? +Würdest du mir verraten wie die griechischen Restaurants in Heidelberg heißen ? +Wie lauten die Namen aller asiatischen Restaurants in Heidelberg ? +Wie viele japanische Restaurants gibt es in Heidelberg ? +Gibt es afrikanische Restaurants in Heidelberg ? +Kann ich irgendwo in Heidelberg afrikanisch essen ? +Gibt es ein Lokal in Heidelberg in dem Sandwich serviert werden ? +Wenn ich in Heidelberg wäre , aus wie vielen Restaurants , die deutsches Essen servieren , könnte ich auswählen ? +Gibt es japanische Restaurants in Heidelberg ? +Gibt es im Heidelberg Marriott Hotel ein Restaurant ? +Welche Freizeitbeschäftigungen werden im Heidelberg Marriott Hotel angeboten ? +Wie viele Zimmer hat das Heidelberg Marriott Hotel ? +In welcher Straße in Heidelberg liegt das Hotel Schönberger Hof ? +Wie viele Zimmer gibt es im Hotel Schönberger Hof in Heidelberg ? +Kann man das Hotel Schönberger Hof in Heidelberg mit einem Rollstuhl befahren ? +Wie viele Bäckereien gibt es in Heidelberg ? +Kannst du mir sagen wo ich in Heidelberg eine Bäckerei finde ? +Würdest du bitte alle Bäckereien in Heidelberg auflisten ? +Was sind die Standorte aller Bäckereien in Heidelberg ? +Kannst du mir die Telefonnummer einer Bäckerei in Heidelberg geben ? +Wie viele Metzgereien gibt es in Heidelberg ? +Wie viele Metzgereien in Heidelberg kann man mit einem Rollstuhl befahren ? +Kannst du mir den Standort einer Metzgerei in Heidelberg geben ? +Kannst du mir den Standort in Heidelberg einer Bäckerei , die man mit einem Rollstuhl befahren kann , geben ? +Wie heißen die Metzgereien Heidelbergs ? +Kann ich irgendwo in Heidelberg Meeresfrüchte kaufen ? +Kann ich irgendwo in Heidelberg Meeresfrüchte essen ? +Wo in Heidelberg kann ich Schreibwaren kaufen ? +Würdest du bitte alle Orte in Heidelberg auflisten , an denen man Schreibwaren kaufen kann ? +In wie vielen Geschäften in Heidelberg kann ich Schreibwaren kaufen ? +Wie viele Postämter gibt es in Heidelberg ? +Wo in Heidelberg gibt es Postämter ? +Kannst du mir sagen , wo in Heidelberg ich ein Postamt finden kann ? +Würdest du mir bitte den Ort eines Postamtes in Heidelberg nennen , das man mit einem Rollstuhl erreichen kann ? +Wo in Heidelberg kann ich Apartments finden ? +Aus wie vielen Apartments kann ich in Heidelberg auswählen ? +Wie viele Theater gibt es in Heidelberg ? +Kannst du mir die Namen der Theater in Heidelberg nennen ? +Wo in Heidelberg gibt es Theater ? +Wo gibt es Starbucks in Edinburgh ? +Wie viele McDonalds gibt es in Edinburgh ? +Hat Edinburgh Burger Kings ? +Wie viele Bahnhöfe gibt es in Edinburgh ? +Wo gibt es italienische Restaurants in Edinburgh ? +Wo gibt es indische Restaurants in Edinburgh ? +Existieren griechische Restaurants in Edinburgh ? +Welche Küchen gibt es in Edinburgh ? +Wo in Edinburgh kann ich Burgers essen ? +Welches Restaurant in Edinburgh biete Burgers an ? +Kann ich irgendwo in Edinburgh vegetarisch essen ? +Kannst du mir sagen wo in Edinburgh es Bars gibt ? +Kannst du mir den Ort eines Restaurants in Edinburgh nennen , das man mit einem Rollstuhl befahren kann ? +Wo in Edinburgh gibt es Restaurants in denen das Rauchen nicht erlaubt ist ? +Wo in Edinburgh kann ich Eis kaufen ? +Wo in Edinburgh kann ich Eiscreme bekommen ? +Kannst du mir Bars in Edinburgh nennen in denen es kostenloses Internet gibt ? +Wie lautet die Website des Kinos Vue in Edinburgh ? +Wie viele Menschen leben in Edinburgh ? +Was ist die Einwohnerzahl von Edinburgh ? +Wie viele Bürger leben in Edinburgh ? +Welche Schule gibt es in Edinburgh ? +Welche Krankenhäuser existieren in Edinburgh ? +Welche Berge befinden sich in Edinburgh ? +Welche Gipfel gibt es in Edinburgh ? +Wie hoch sind die Berge in Edinburgh ? +Welche Höhe haben die Gipfel in Edinburgh ? +Wie hoch ist der Arthur's Seat in Edinburgh ? +Welche Kultstätten gibt es in Edinburgh ? +Wie viele christliche Kirchen kann man in der Stadt Edinburgh finden ? +Welche christlichen Kirchen gibt es in Edinburgh ? +Wie viele Moscheen gibt es in Edinburgh ? +Welche Moscheen findet man in Edinburgh ? +Welche katholischen Kirchen gibt es in Edinburgh ? +Wie viele katholische Kirchen gibt es in Edinburgh ? +Welche Church of Scotland Kirchen gibt es in Edinburgh ? +Wie viele Church of Scotland Kirchen gibt es in Edinburgh ? +Welche Museen gibt es in Edinburgh ? +Wie heißt die Internetseite des Kinos Vue in Edinburgh ? +Gibt es eine Bushaltestelle in der Lothian Road , Edinburgh ? +Wenn ich in Edinburgh wäre , aus wie vielen Restaurants kann ich wählen ? +Wenn ich in Edinburgh wäre , aus wie vielen Bars könnte ich wählen ? +Aus welchen Küchen kann ich in Edinburgh wählen ? +Welche Küchen werden in Edinburgh angeboten ? +Halten Busse am South Gyle Park in Edinburgh an ? +Halten Busse an The Square in Edinburgh an ? +Gibt es Burgen in Edinburgh ? +Wo in Edinburgh gibt es Burgen ? +Wie viele Universitäten hat Edinburgh ? +Gibt es irgendwelche Universitäten in Edinburgh ? +Gibt es mehr als eine Universität in Edinburgh ? +Wo in Edinburgh befinden sich Banken ? +Wo in Edinburgh findet man Wanderkarten ? +Gibt es Wanderkarten in Edinburgh ? +Wo sind in Edinburgh Supermärkte ? +Welche Supermärkte gibt es in Edinburgh ? +Wo in Edinburgh befinden sich Bäckereien ? +Welche Bäckereien hat Edinburgh ? +Kannst du mir die Bücherläden von Edinburgh nennen ? +Kannst du mir die Orte von Bücherläden in Edinburgh sagen ? +Gibt es irgendwo in Edinburgh Tescos ? +Wie viele Tesco Märkte gibt es in Edinburgh ? +Wo in Edinburgh gibt es Sainsbury's Supermärkte ? +Kannst du mir den Standpunkt eines Sainsbury's in Edinburgh mitteilen ? +Wo gibt es Feuerwehren in Edinburgh ? +Gibt es Feuerwehren in Edinburgh ? +Kannst du mir die Orte von Polizeiwachen in Edinburgh sagen ? +Gibt es Polizeiwachen in Edinburgh ? +Kannst du mich über die Standpunkte von Büchereien in Edinburgh informieren ? +Gibt es Büchereien in Edinburgh ? +Falls es in Edinburgh Mitfahrzentralen gibt , kannst du mir sagen wo ? +Gibt es Mitfahrzentralen in Edinburgh ? +Kann man Mitfahrzentrale in Edinburgh finden ? +Wo kann ich eine Tankstelle in Edinburgh finden ? +Kannst du mir die Standorte von Tankstellen in Edinburgh sagen ? +Kannst du mir mögliche Parkgelegenheiten in Edinburgh nennen ? +Wo in Edinburgh kann ich mein Auto parken ? +Wo in Edinburgh kann ich unterirdisch mein Auto parken ? +An welchen Orten in Edinburgh kann man Autos unterirdisch parken ? +Wo sind Stellen in Edinburgh an denen Taxis warten ? +Wo warten Taxis in Edinburgh ? +Wo finde ich ein wartendes Taxi in Edinburgh ? +Wo kann ich einen Zahnarzt in Edinburgh finden ? +Wo sollte ich nach einem Zahnarzt in Edinburgh schauen ? +Wie viele Kindergärten gibt es in Edinburgh ? +Wie heißen die Kindergärten von Edinburgh ? +Wo sind die Kindergärten Edinburghs ? +Gibt es ein Kindergarten namens The Edinburgh Nursery in Edinburgh ? +Welche Kinos gibt es in Edinburgh ? +Welche Kinos in Edinburgh kann man mit einem Rollstuhl befahren ? +Wie viele Kinos gibt es in Edinburgh ? +Wie heißt Edinburgh auf Japanisch ? +Wie heißt Edinburgh auf Französisch ? +Wo gibt es Gipfel in Edinburgh ? +Wo befinden sich die Berge Edinburghs ? +Wie viele Restaurants gibt es in Edinburgh ? +Was ist die Anzahl von Bars in Edinburgh ? +Wie lautet die Wikipedia Seite der William Chambers Statue in Edinburgh ? +Wie lautet die Wikipedia Seite der Talbot Rice Gallery in Edinburgh ? +Wie lautet die Wikipedia Seite der Stadt Edinburgh ? +Wie viele Schulen befinden sich in Edinburgh ? +Kannst du mir die Anzahl der Schule in Edinburgh nennen ? +Wie viele Museen befinden sich in Edinburgh ? +Wenn ich in Edinburgh wäre , wie viele Museen könnte ich mir anschauen ? +Wie viele Berge gibt es in Edinburgh ? +Wie viele Denkmäler gibt es in Edinburgh ? +Was ist die Zahl der Denkmäler in Edinburgh ? +Wie viele Quellen gibt es in Edinburgh ? +Wie viele Feuerwehren befinden sich in Edinburgh ? +Kannst du mir die Zahl der Polizeiwachen in Edinburgh nennen ? +Was ist die Anzahl an Polizeiwachen in Edinburgh ? +Wie viele Bücherläden gibt es in Edinburgh ? +Wenn ich in Edinburgh wäre , wie viele Bibliotheken könnte ich besuchen ? +Wie viele Bibliotheken liegen in der Stadt Edinburgh ? +Wenn ich die Universitäten Edinburghs zählen würde , welche Zahl würde ich bekommen ? +Wenn ich die McDonald's Restaurants Edinburghs zählen würde , welche Zahl würde ich bekommen ? +Wie viele Restaurants existieren in Edinburgh , die asiatisches Essen servieren ? +Wie viele Restaurants in Edinburgh würden mir griechisches Essen servieren ? +Was ist die Zahl der Supermärkte in Edinburgh ? +Kannst du mir sagen wie viele Supermärkte Edinburgh hat ? +In wie vielen Geschäften in Edinburgh könnte ich einkaufen gehen ? +Wenn ich in Edinburgh wäre , in wie vielen Läden könnte ich einkaufen ? +Wie viele Apotheken gibt es in Edinburgh ? +Wie viele Burgen hat Edinburgh ? +Wie viele Mitfahrzentralen gibt es in Edinburgh ? +An wie vielen Ort könnte ich ein Taxi finden in Edinburgh ? +Wie viele Hotels liegen in dem Bezirk der Stadt Edinburgh ? +Wie viele Hotels befinden sich in Edinburgh ? +Wenn ich in Edinburgh wäre , wie viele Hotel Optionen hätte ich ? +Wie viele verschiedene Kunstwerke könnte ich mir in Edinburgh anschauen ? +Kannst du mir sagen wo ich ein Kunstwerk in Edinburgh finden kann ? +Kannst du mir eine Apotheke in Edinburgh nennen ? +Gibt es mehr als eine Apotheke in Edinburgh ? +Gibt es mehr als einen Buchladen in Edinburgh ? +Gibt es mehr als 1 Bücherei in Edinburgh ? +Gibt es mehrere Polizeiwachen in der Stadt Edinburgh ? +Gibt es mehr als eine Feuerwehr in Edinburgh ? +Gibt es mehr als eine Burg in Edinburgh ? +Kannst du mir bitte den Standort eines Hotels in Edinburgh nennen ? +Kannst du mir bitte den Namen eines Hotels in Edinburgh nennen ? +Kannst du mir bitte die Internetseite der Hotels in Edinburgh nennen ? +Kannst du mir bitte die Websites aller Hotels in Edinburgh nennen ? +Wo kann ich in Edinburgh ein Hotel finden ? +Würdest du mir bitte den Namen eines Hotels in Edinburgh sagen ? +Würdest du mir bitte den Namen eines Hotels mit 4 Sternen in Edinburgh sagen ? +Würdest du mir bitte den Namen eines Hotels , welches mit einem Rollstuhl befahren werden kann , in Edinburgh sagen ? +Würdest du mir bitte den Namen eines Hotels in Edinburgh geben , das von Apex Hotels geführt wird ? +Wo sind die Hotels Edinburghs , die von Apex Hotels geführt werden ? +Wie viele Hotels in Edinburgh werden von Apex Hotels geleitet ? +Wie viele Hotels in Edinburgh haben 3 Sterne ? +Kannst du mir bitte alle Hotels mit 3 Sternen in Edinburgh sagen ? +Was ist der Name eines Hotels in Edinburgh in dem man nicht Rauchen darf ? +In wie vielen Hotels in Edinburgh darf man nicht rauchen ? +Gibt es 5 oder mehr Hotels in Edinburgh ? +Kann man 10 oder mehr Hotels in Edinburgh finden ? +An wie vielen verschiedenen Orten in Edinburgh kann ich Picknick machen ? +Wo gibt es einen Rastplatz in Edinburgh ? +Kannst du mir alle Rastplätze in Edinburgh nennen ? +Gibt es irgendwelche Rastplätze in Edinburgh ? +Gibt es 5 oder mehr Rastplätze in Edinburgh ? +Gibt es Attraktionen in Edinburgh ? +Wo in Edinburgh finde ich Attraktionen ? +Kannst du mir bitte alle Namen von Attraktionen in Edinburgh nennen ? +Gibt es irgendwelche schönen Aussichtspunkte in Edinburgh ? +Gibt es 3 oder mehr Aussichtspunkte in Edinburgh ? +Würdest du mir den Ort eines schönen Aussichtspunktes in Edinburgh sagen ? +Könntest du alle Aussichtspunkte Edinburghs auflisten ? +Gibt es irgendwelche Aussichtspunkte in Edinburgh , die mit dem Rollstuhl zugänglich sind ? +Würdest du mir bitte den Ort eines Aussichtspunktes in Edinburgh nennen , den man mit dem Rollstuhl besichtigen kann ? +Kann ich irgendwo in Edinburgh Rugby spielen ? +Gibt es irgendwelche Orte in Edinburgh an denen man Rugby spielen kann ? +Würdest du mir den Ort eines Rugbyplatzes in Edinburgh nennen ? +Gibt es mehrere Rugbyplätze in Edinburgh ? +Kann ich in Edinburgh klettern gehen ? +Wo in Edinburgh kann ich mein Klettern üben ? +Gibt es 2 oder mehr Auswahlmöglichkeiten zum Klettern in Edinburgh ? +Gibt es einen Ort in Edinburgh wo man Cricket spielen kann ? +Wo in Edinburgh kann ich Cricket spielen ? +Kann ich irgendwo in Edinburgh BMX fahren ? +Wo in Edinburgh ist es möglich BMX zu fahren ? +Kannst du mir alle Orte in Edinburgh nennen an denen man BMX fahren kann ? +Kann man irgendwo in Edinburgh Fußball spielen ? +Wo in Edinburgh kann ich Fußball spielen ? +Gibt es mehrere Orten zum Fußballspielen in Edinburgh ? +Könntest du mir bitte alle Bademöglichkeiten Edinburghs nennen ? +Wie heißen die Orte an denen man Rugby spielen kann in Edinburgh ? +Kann man in Edinburgh schwimmen gehen ? +An wie viel verschiedenen Orten kann man in Edinburgh schwimmen gehen ? +Wie viele Ort in Edinburgh sind zum BMX fahren da ? +An wie vielen Stellen in Edinburgh kann ich Fußball spielen ? +Wie viele Möglichkeiten zum Cricketspielen gibt es in Edinburgh ? +An wie vielen Orten kann ich in Edinburgh klettern gehen ? +Wie viele Rugbyplätze hat Edinburgh ? +Wie viele Aussichtspunkte hat Edinburgh ? +Könntest du mir sagen aus wie vielen Rastplätzen man in Edinburgh auswählen kann ? +Wo in Edinburgh kann ich Basketball spielen ? +An wie vielen Orten in Edinburgh kann ich mein Basketball verbessern ? +Würdest du mir einen Ort in Edinburgh geben an dem ich Basketball spielen kann ? +Wie viele Möglichkeiten gibt es in Edinburgh Basketball zu spielen ? +Gibt es mehrere Orte zum Basketballspielen in Edinburgh ? +Wo in Edinburgh befinden sich Quellen ? +Gibt es mehrere Quellen in Edinburgh ? +Gibt es archäologisch Stätten in Edinburgh ? +Wie viele archäologische Stätten gibt es in Edinburgh ? +Würdest du mir bitte alle archäologisch Stätten in Edinburgh auflisten ? +Kannst du mir die Orte von allen archäologischen Stätten in Edinburgh geben ? +Kannst du mir die Namen von archäologischen Stätten in Edinburgh ? +Kannst du mir die verfügbaren Internetseiten von archäologischen Stätten von Edinburgh sagen ? +Bitte , kannst du mir die Internetseiten von Theatern in Edinburgh nennen ? +Bitte , kannst du mir die Straßen in denen sich die Theater von Edinburgh befinden nennen ? +Gibt es Denkmäler in Edinburgh ? +Wo in Edinburgh würde ich ein Denkmal finden ? +Wie viele Denkmäler lassen sich in Edinburgh finden ? +Gibt es irgendwelche Monumente in Edinburgh ? +Wo in Edinburgh kann ich Monumente finden ? +Würdest du mir die Orte von Monumenten in Edinburgh sagen ? +Gibt es eine Straße namens Henderson Street in Leith ? +Gibt es eine Straße namens Abbey Avenue in Leith ? +Gibt es eine Straße namens St Vincent Street in Stockbridge ? +Existiert eine Straße , die Whitehouse Loan heißt in Morningside ? +Ist die Summerhall Place in Leith ? +Ist die Summerhall Place in Newington ? +Was sind die maximalen Geschwindigkeiten , die für die Summerhall Place in Edinburgh aufgeführt sind ? +Wie viele Spuren hat die Summerhall Place in Edinburgh ? +Aus welchem Material ist die Straße der Summerhall Place in Edinburgh ? +Was sind die maximalen Geschwindigkeiten , die für die Whitehouse Loan in Edinburgh aufgeführt sind ? +Wie viele Spuren hat die Whitehouse Loan in Edinburgh ? +Welche Beschaffenheit hat die Whitehouse Loan in Edinburgh ? +Wo gibt es in Edinburgh Blitzer ? +Wie viele Blitzer gibt es in Edinburgh ? +Würdest du mir sagen wo in Edinburgh sich Blitzer befinden ? +Wie viele Ampeln hat Edinburgh ? +Würdest du mir bitte die Anzahl an Verkehrsampeln in Edinburgh geben ? +Gibt es im Moment in Edinburgh irgendwelche Baustellen ? +Wie viele Baustellen gibt es im Moment in Edinburgh ? +Führt die M8 nach Edinburgh ? +Gibt es eine Autobahn M8 , die nach Edinburgh führt ? +Bitte gib mir die Namen der Autobahnen in Edinburgh ? +Was ist die maximal erlaubte Geschwindigkeit auf der Autobahn M90 in Edinburgh ? +Gibt es in Edinburgh Schlüsselnachmacher ? +Wie viele Schlüsselnachmacher gibt es in Edinburgh ? +Kannst du mir die Standpunkte aller Schlüsselnachmacher in Edinburgh auflisten ? +Würdest du mir bitte den Standpunkt eines Schuhmachers in Edinburgh geben ? +Wie viele Schuhmacher gibt es in Edinburgh ? +Gibt es Schuhmacher in Edinburgh ? +Wie heißen die Elektriker in Edinburgh ? +Wo kann man in Edinburgh Elektriker finden ? +Wie viele Elektriker gibt es in Edinburgh ? +Gibt es Schneider in Edinburgh ? +Wo sind überall Schneider in Edinburgh ? +In welcher Straße in Edinburgh ist der Italiener Giuliano's ? +Was ist die Homepage der Pizzeria The Crafters Barn in Edinburgh ? +Würdest du mir die Telefonnummer von Guru Balti in Edinburgh nennen ? +Kann das Restaurant Zizzi in Edinburgh mit einem Rollstuhl befahren werden ? +Welche Küche gibt es in der Piatto Verde in Edinburgh ? +Was ist die Telefonnummer der Piatto Verde in Edinburgh ? +Gibt es ein Restaurant namens La Garrigue in Edinburgh ? +Wie lautet die Website des Buffalo Grill in Edinburgh ? +Wie lautet die Telefonnummer des La Garrigue in Edinburgh ? +Gibt es einen subway in Newington ? +Wie viele subways gibt es in Edinburgh ? +Würdest du mir die Namen aller italienischen Restaurants in Edinburgh geben ? +Würdest du mir verraten wie die griechischen Restaurants in Edinburgh heißen ? +Wie lauten die Namen aller asiatischen Restaurants in Edinburgh ? +Wie viele japanische Restaurants gibt es in Edinburgh ? +Gibt es afrikanische Restaurants in Edinburgh ? +Kann ich irgendwo in Edinburgh afrikanisch essen ? +Gibt es ein Lokal in Edinburgh in dem Sandwich serviert werden ? +Wenn ich in Edinburgh wäre , aus wie vielen Restaurants , die britisches Essen servieren , könnte ich auswählen ? +Gibt es japanische Restaurants in Edinburgh ? +Gibt es ein Holiday Inn Express in Edinburgh ? +Wie viele Sterne hat das The Salisbury Hotel in Edinburgh ? +Was ist die Telefonnummer des The Salisbury Hotels in Edinburgh ? +In welcher Straße in Edinburgh liegt das Holiday Inn Express ? +In welcher Straße ist das Hotel Jurys Inn in Edinburgh ? +Kann man das Hotel Malmaison in Edinburgh mit einem Rollstuhl befahren ? +Wie viele Bäckereien gibt es in Edinburgh ? +Kannst du mir sagen wo ich in Edinburgh eine Bäckerei finde ? +Würdest du bitte alle Bäckereien in Edinburgh auflisten ? +Was sind die Standorte aller Bäckereien in Edinburgh ? +Kannst du mir den Straßenname einer Bäckerei in Edinburgh geben ? +Wie viele Metzgereien gibt es in Edinburgh ? +Wie viele Metzgereien in Edinburgh kann man mit einem Rollstuhl befahren ? +Kannst du mir den Standort einer Metzgerei in Edinburgh geben ? +Kannst du mir den Straßenname einer Metzgerei in Edinburgh geben ? +Wie heißen die Metzgereien Edinburghs ? +Kann ich irgendwo in Edinburgh Meeresfrüchte kaufen ? +Kann ich irgendwo in Edinburgh Meeresfrüchte essen ? +Wo in Edinburgh kann ich Schreibwaren kaufen ? +Würdest du bitte alle Orte in Edinburgh auflisten , an denen man Schreibwaren kaufen kann ? +In wie vielen Geschäften in Edinburgh kann ich Schreibwaren kaufen ? +Wie viele Postämter gibt es in Edinburgh ? +Wo in Edinburgh gibt es Postämter ? +Kannst du mir sagen , wo in Edinburgh ich ein Postamt finden kann ? +Würdest du mir bitte den Ort eines Postamtes in Edinburgh nennen , das man mit einem Rollstuhl erreichen kann ? +Wo in Edinburgh kann ich Brauereien finden ? +Wie vielen Brauereien kann ich in Edinburgh besuchen ? +Wie viele Theater gibt es in Edinburgh ? +Kannst du mir die Namen der Theater in Edinburgh nennen ? +Wo in Edinburgh gibt es Theater ? +Wo gibt es Starbucks in Paris ? +Wie viele McDonalds gibt es in Paris ? +Hat Paris Burger Kings ? +Wie viele Bahnhöfe gibt es in Paris ? +Wo gibt es italienische Restaurants in Paris ? +Wo gibt es indische Restaurants in Paris ? +Existieren griechische Restaurants in Paris ? +Welche Küchen gibt es in Paris ? +Wo in Paris kann ich Burgers essen ? +Welches Restaurant in Paris biete Burgers an ? +Kann ich irgendwo in Paris vegetarisch essen ? +Kannst du mir sagen wo in Paris es Bars gibt ? +Kannst du mir den Ort eines Restaurants in Paris nennen , das man mit einem Rollstuhl befahren kann ? +Wo in Paris gibt es Restaurants in denen das Rauchen erlaubt ist ? +Wo in Paris kann ich Eis kaufen ? +Wo in Paris kann ich Eiscreme bekommen ? +Kannst du mir Bars in Paris nennen in denen man französisch essen kann ? +Wie lautet die Website des Kinos Cinéma Chaplin in Paris ? +Wie viele Menschen leben in Paris ? +Was ist die Einwohnerzahl von Paris ? +Wie viele Bürger leben in Paris ? +Welche Schule gibt es in Paris ? +Welche Krankenhäuser existieren in Paris ? +Befindet sich der Eiffelturm in Paris ? +Wie lautet der japanische Name für den Eiffelturm in Paris ? +Wer erbaute den Eiffelturm in Paris ? +Wer sind die Architekten des Eiffelturms in Paris ? +Wie hoch ist der Eiffelturm in Paris ? +Welche Kultstätten gibt es in Paris ? +Wie viele christliche Kirchen kann man in der Stadt Paris finden ? +Welche christlichen Kirchen gibt es in Paris ? +Wie viele Moscheen gibt es in Paris ? +Welche Moscheen findet man in Paris ? +Welche katholischen Kirchen gibt es in Paris ? +Wie viele katholische Kirchen gibt es in Paris ? +Welche protestantischen Kirchen gibt es in Paris ? +Wie viele protestantische Kirchen gibt es in Paris ? +Welche Museen gibt es in Paris ? +Wie heißt die Internetseite des Kinos Cinéma Chaplin in Paris ? +Gibt es eine Bushaltestelle an dem Hôpital des Enfants Malades , Paris ? +Wenn ich in Paris wäre , aus wie vielen Restaurants kann ich wählen ? +Wenn ich in Paris wäre , aus wie vielen Bars könnte ich wählen ? +Aus welchen Küchen kann ich in Paris wählen ? +Welche Küchen werden in Paris angeboten ? +Wer betreibt die Bushaltestelle Pasteur - Lycée Buffon in Paris ? +Wer ist der Betreiber der Bushaltestelle Mairie du XV in Paris an ? +Gibt es Burgen in Paris ? +Wo in Paris gibt es Burgen ? +Wie viele Universitäten hat Paris ? +Gibt es irgendwelche Universitäten in Paris ? +Gibt es mehr als eine Universität in Paris ? +Wo in Paris befinden sich Banken ? +Wo in Paris findet man Informationskarten ? +Gibt es Informationskarten in Paris ? +Wo sind in Paris Supermärkte ? +Welche Supermärkte gibt es in Paris ? +Wo in Paris befinden sich Bäckereien ? +Welche Bäckereien hat Paris ? +Kannst du mir die Bücherläden von Paris nennen ? +Kannst du mir die Orte von Bücherläden in Paris sagen ? +Gibt es irgendwo in Paris Franprix ? +Wie viele Franprix Märkte gibt es in Paris ? +Wo in Paris gibt es Monoprix Supermärkte ? +Kannst du mir den Standpunkt eines Monoprix in Paris mitteilen ? +Wo gibt es Feuerwehren in Paris ? +Gibt es Feuerwehren in Paris ? +Kannst du mir die Orte von Polizeiwachen in Paris sagen ? +Gibt es Polizeiwachen in Paris ? +Kannst du mich über die Standpunkte von Büchereien in Paris informieren ? +Gibt es Büchereien in Paris ? +Falls es in Paris Mitfahrzentralen gibt , kannst du mir sagen wo ? +Gibt es Mitfahrzentralen in Paris ? +Kann man Mitfahrzentrale in Paris finden ? +Wo kann ich eine Tankstelle in Paris finden ? +Kannst du mir die Standorte von Tankstellen in Paris sagen ? +Kannst du mir mögliche Parkgelegenheiten in Paris nennen ? +Wo in Paris kann ich mein Auto parken ? +Wo in Paris kann ich unterirdisch mein Auto parken ? +An welchen Orten in Paris kann man Autos unterirdisch parken ? +Wo sind Stellen in Paris an denen Taxis warten ? +Wo warten Taxis in Paris ? +Wo finde ich ein wartendes Taxi in Paris ? +Wo kann ich einen Zahnarzt in Paris finden ? +Wo sollte ich nach einem Zahnarzt in Paris schauen ? +Wie viele Krankenhäuser gibt es in Paris ? +Wie heißen die Krankenhäuser von Paris ? +Wo sind die Krankenhäuser Paris' ? +Gibt es ein Krankenhaus namens Hôpital Marmottan in Paris ? +Welche Kinos gibt es in Paris ? +Welche Kinos in Paris kann man mit einem Rollstuhl befahren ? +Wie viele Kinos gibt es in Paris ? +Wie heißt Paris auf Japanisch ? +Wie heißt Paris auf Spanisch ? +Gibt es eine Haltestelle namens Pont Cardinet in Paris ? +Gibt es eine Haltestelle namens Argentine in Paris ? +Wie viele Restaurants gibt es in Paris ? +Was ist die Anzahl von Bars in Paris ? +Wie lautet die Wikipedia Seite des Eiffelturms in Paris ? +Wie lautet die Wikipedia Seite des ersten Arrondissements in Paris ? +Wie lautet die Wikipedia Seite der Stadt Paris ? +Wie viele Schulen befinden sich in Paris ? +Kannst du mir die Anzahl der Schule in Paris nennen ? +Wie viele Museen befinden sich in Paris ? +Wenn ich in Paris wäre , wie viele Museen könnte ich mir anschauen ? +Wie viele Berge gibt es in Paris ? +Wie viele Denkmäler gibt es in Paris ? +Was ist die Zahl der Denkmäler in Paris ? +Wie viele Quellen gibt es in Paris ? +Wie viele Feuerwehren befinden sich in Paris ? +Kannst du mir die Zahl der Polizeiwachen in Paris nennen ? +Was ist die Anzahl an Polizeiwachen in Paris ? +Wie viele Bücherläden gibt es in Paris ? +Wenn ich in Paris wäre , wie viele Bibliotheken könnte ich besuchen ? +Wie viele Bibliotheken liegen in der Stadt Paris ? +Wenn ich die Universitäten Paris' zählen würde , welche Zahl würde ich bekommen ? +Wenn ich die McDonald's Restaurants Paris' zählen würde , welche Zahl würde ich bekommen ? +Wie viele Restaurants existieren in Paris , die asiatisches Essen servieren ? +Wie viele Restaurants in Paris würden mir griechisches Essen servieren ? +Was ist die Zahl der Supermärkte in Paris ? +Kannst du mir sagen wie viele Supermärkte Paris hat ? +In wie vielen Geschäften in Paris könnte ich einkaufen gehen ? +Wenn ich in Paris wäre , in wie vielen Läden könnte ich einkaufen ? +Wie viele Apotheken gibt es in Paris ? +Wie viele Burgen hat Paris ? +Wie viele Mitfahrzentralen gibt es in Paris ? +An wie vielen Ort könnte ich ein Taxi finden in Paris ? +Wie viele Hotels liegen in dem Bezirk der Stadt Paris ? +Wie viele Hotels befinden sich in Paris ? +Wenn ich in Paris wäre , wie viele Hotel Optionen hätte ich ? +Wie viele verschiedene Kunstwerke könnte ich mir in Paris anschauen ? +Kannst du mir sagen wo ich ein Kunstwerk in Paris finden kann ? +Kannst du mir eine Apotheke in Paris nennen ? +Gibt es mehr als eine Apotheke in Paris ? +Gibt es mehr als einen Buchladen in Paris ? +Gibt es mehr als 1 Bücherei in Paris ? +Gibt es mehrere Polizeiwachen in der Stadt Paris ? +Gibt es mehr als eine Feuerwehr in Paris ? +Gibt es mehr als eine Burg in Paris ? +Kannst du mir bitte den Standort eines Hotels in Paris nennen ? +Kannst du mir bitte die E-Mail Adresse eines Hotels in Paris nennen ? +Kannst du mir bitte die Internetseite der Hotels in Paris nennen ? +Kannst du mir bitte die Websites aller Hotels in Paris nennen ? +Wo kann ich in Paris ein Hotel finden ? +Würdest du mir bitte den Namen eines Hotels in Paris sagen ? +Würdest du mir bitte den Namen eines Hotels mit 4 Sternen in Paris sagen ? +Würdest du mir bitte den Namen eines Hotels , welches mit einem Rollstuhl befahren werden kann , in Paris sagen ? +Würdest du mir bitte den Namen eines Hotels in Paris geben , das von Accor geführt wird ? +Wo sind die Hotels Paris' , die von Accor geführt werden ? +Wie viele Hotels in Paris werden von Accor geleitet ? +Wie viele Hotels in Paris haben 3 Sterne ? +Kannst du mir bitte alle Hotels in Paris mit 3 Sternen sagen ? +Was ist der Name eines Hotels in Paris , das man mit einem Rollstuhl befahren kann ? +Wie viele Hotels in Paris sind mit einem Rollstuhl befahrbar ? +Gibt es 5 oder mehr Hotels in Paris ? +Kann man 10 oder mehr Hotels in Paris finden ? +An wie vielen verschiedenen Orten in Paris kann ich Picknick machen ? +Wo gibt es einen Rastplatz in Paris ? +Kannst du mir alle Rastplätze in Paris nennen ? +Gibt es irgendwelche Rastplätze in Paris ? +Gibt es 5 oder mehr Rastplätze in Paris ? +Gibt es Attraktionen in Paris ? +Wo in Paris finde ich Attraktionen ? +Kannst du mir bitte alle Namen von Attraktionen in Paris nennen ? +Gibt es irgendwelche schönen Aussichtspunkte in Paris ? +Gibt es 3 oder mehr Aussichtspunkte in Paris ? +Würdest du mir den Ort eines schönen Aussichtspunktes in Paris sagen ? +Könntest du alle Aussichtspunkte Paris' auflisten ? +Gibt es irgendwelche Attraktionen in Paris , die mit dem Rollstuhl zugänglich sind ? +Würdest du mir bitte den Ort einer Attraktion in Paris nennen , die man mit dem Rollstuhl besichtigen kann ? +Kann ich irgendwo in Paris Tennis spielen ? +Gibt es irgendwelche Orte in Paris an denen man Tennis spielen kann ? +Würdest du mir den Ort eines Tennisplatzes in Paris nennen ? +Gibt es mehrere Tennisplätze in Paris ? +Kann ich in Paris Kampfsport ausüben ? +Wo in Paris kann ich meinen Kampfsport üben ? +Gibt es 2 oder mehr Auswahlmöglichkeiten zum Üben des Kampfsports in Paris ? +Gibt es einen Ort in Paris wo man sich zum Rudern trifft ? +Wo in Paris kann ich rudern gehen ? +Kann ich irgendwo in Paris Skateboard fahren ? +Wo in Paris ist es möglich Skateboard zu fahren ? +Kannst du mir alle Orte in Paris nennen an denen man Skateboard fahren kann ? +Kann man irgendwo in Paris Fußball spielen ? +Wo in Paris kann ich Fußball spielen ? +Gibt es mehrere Orten zum Fußballspielen in Paris ? +Könntest du mir bitte alle Bademöglichkeiten Paris' nennen ? +Wie heißen die Bademöglichkeiten in Paris ? +Kann man in Paris schwimmen gehen ? +An wie viel verschiedenen Orten kann man in Paris schwimmen gehen ? +Wie viele Ort in Paris sind zum Skateboard fahren da ? +An wie vielen Stellen in Paris kann ich Fußball spielen ? +Wie viele Möglichkeiten zum Rudern gibt es in Paris ? +An wie vielen Orten kann ich in Paris klettern gehen ? +Wie viele Tennisplätze hat Paris ? +Wie viele Aussichtspunkte hat Paris ? +Könntest du mir sagen aus wie vielen Rastplätzen man in Paris auswählen kann ? +Wo in Paris kann ich Tischtennis spielen ? +An wie vielen Orten in Paris kann ich mein Tischtennis verbessern ? +Würdest du mir einen Ort in Paris geben an dem ich Tischtennis spielen kann ? +Wie viele Möglichkeiten gibt es in Paris Tischtennis zu spielen ? +Gibt es mehrere Orte zum Tischtennisspielen in Paris ? +Wo in Paris befinden sich Höhleneingänge ? +Gibt es mehrere Höhleneingänge in Paris ? +Gibt es archäologisch Stätten in Paris ? +Wie viele archäologische Stätten gibt es in Paris ? +Würdest du mir bitte alle archäologisch Stätten in Paris auflisten ? +Kannst du mir die Orte von allen archäologischen Stätten in Paris geben ? +Kannst du mir die Namen von archäologischen Stätten in Paris ? +Kannst du mir die verfügbaren Wikipedia Seiten der archäologischen Stätten von Paris sagen ? +Bitte , kannst du mir die Namen von Theatern in Paris nennen , die mein Mann , der im Rollstuhl sitzt , besuchen kann ? +Bitte , kannst du mir die Namen von Theatern in Paris nennen , die meine Mutter , die im Rollstuhl sitzt , besuchen kann ? +Gibt es Grabmäler in Paris ? +Wo in Paris würde ich ein Grabmal finden ? +Wie viele Grabmäler lassen sich in Paris finden ? +Gibt es irgendwelche Denkmäler in Paris ? +Wo in Paris kann ich Monumente finden ? +Würdest du mir die Orte von Denkmälern in Paris sagen ? +Gibt es eine Straße namens Rue Poliveau im 5 . Arrondissement ? +Gibt es eine Straße namens Rue d'Amboise im 5 . Arrondissement ? +Gibt es eine Straße namens Boulevard de Sébastopol im 2 . Arrondissement ? +Existiert ein Platz , der Place de la République heißt in 10 . Arrondissement ? +Ist die Avenue du Général Lemonnier im 5 . Arrondissement ? +Ist die Avenue du Général Lemonnier in dem 1 . Arrondissement ? +Sind Fahrräder auf der Avenue du Général Lemonnier in Paris erlaubt ? +Ist die Avenue du Général Lemonnier in Paris eine Einbahnstraße ? +Welche Art von Straße ist die Avenue du Général Lemonnier in Paris ? +Was sind die maximalen Geschwindigkeiten , die für die Place de la République in Paris aufgeführt sind ? +Wie viele Spuren hat die Place de la République in Paris ? +Welche Art von Straße ist die Place de la République in Paris ? +Wo gibt es in Paris Blitzer ? +Wie viele Blitzer gibt es in Paris ? +Würdest du mir sagen wo in Paris sich Blitzer befinden ? +Wie viele Ampeln hat Paris ? +Würdest du mir bitte die Anzahl an Verkehrsampeln in Paris geben ? +Gibt es im Moment in Paris irgendwelche Baustellen ? +Wie viele Baustellen gibt es im Moment in Paris ? +Führt die A4 nach Paris ? +Gibt es eine Autobahn A4 , die nach Paris führt ? +Bitte gib mir die Namen der Autobahnen in Paris ? +Wie lauten die internationalen Referenznamen für die Autobahnen in Paris ? +Gibt es in Paris öffentlich zugängliche Defibrillatoren ? +Wie viele Defibrillatoren hat Paris ? +Kannst du mir die Standpunkte aller Defibrillatoren in Paris auflisten ? +Würdest du mir bitte den Standpunkt eines Notfalltelefons in Paris geben ? +Wie viele Notfalltelefone gibt es in Paris ? +Gibt es Notfalltelefone in Paris ? +Wie heißen die Unfallstationen Paris ? +Wo kann man in Paris Unfallstationen finden ? +Wie viele Unfallstationen hat Paris ? +Gibt es Feuerhydranten in Paris ? +Wo sind überall Feuerhydranten in Paris ? +In welcher Straße in Paris ist der Italiener Maria Luisa ? +Gibt es in der Pizzeria Venezia in Paris Internetzugang ? +Würdest du mir die Telefonnummer von L'Encrier in Paris nennen ? +Kann das Restaurant L'Encrier in Paris mit einem Rollstuhl befahren werden ? +Welche Küche gibt es in der Chez Jenny in Paris ? +Was ist die Telefonnummer der Chez Jenny in Paris ? +Gibt es ein Restaurant namens Ristorante Pellicano in Paris ? +Darf man im Ristorante Pellicano in Paris rauchen ? +Wie lautet die Telefonnummer des Ristorante Pellicano in Paris ? +Gibt es einen subway im 8 . Arrondissement ? +Wie viele subways gibt es in Paris ? +Würdest du mir die Namen aller italienischen Restaurants in Paris geben ? +Würdest du mir verraten wie die griechischen Restaurants in Paris heißen ? +Wie lauten die Namen aller asiatischen Restaurants in Paris ? +Wie viele japanische Restaurants gibt es in Paris ? +Gibt es afrikanische Restaurants in Paris ? +Kann ich irgendwo in Paris afrikanisch essen ? +Gibt es ein Lokal in Paris in dem Sandwich serviert werden ? +Wenn ich in Paris wäre , aus wie vielen Restaurants , die französisches Essen servieren , könnte ich auswählen ? +Gibt es japanische Restaurants in Paris ? +Was ist die Telefonnummer des Hôtel Victoria Châtelet in Paris ? +Wie lautet die Internetseite des Hôtel Victoria Châtelet in Paris ? +In welcher Straße in Paris liegt das Hôtel Victoria Châtelet ? +In welcher Straße in Paris liegt das Le Robinet d'Or Hof ? +Wie viele Sterne hat das Le Robinet d'Or in Paris ? +Kann man im Le Robinet d'Or in Paris rauchen ? +Wie viele Bäckereien gibt es in Paris ? +Kannst du mir sagen wo ich in Paris eine Bäckerei finde ? +Würdest du bitte alle Bäckereien in Paris auflisten ? +Was sind die Standorte aller Bäckereien in Paris ? +Kannst du mir die Telefonnummer einer Bäckerei in Paris geben ? +Wie viele Metzgereien gibt es in Paris ? +Wie viele Metzgereien in Paris kann man mit einem Rollstuhl befahren ? +Kannst du mir den Standort einer Metzgerei in Paris geben ? +Kannst du mir den Standort in Paris einer Metzgerei , die man mit einem Rollstuhl befahren kann , geben ? +Wie heißen die Metzgereien Paris' ? +Kann ich irgendwo in Paris Meeresfrüchte kaufen ? +Kann ich irgendwo in Paris Meeresfrüchte essen ? +Wo in Paris kann ich Schreibwaren kaufen ? +Würdest du bitte alle Orte in Paris auflisten , an denen man Schreibwaren kaufen kann ? +In wie vielen Geschäften in Paris kann ich Schreibwaren kaufen ? +Wie viele Postämter gibt es in Paris ? +Wo in Paris gibt es Postämter ? +Kannst du mir sagen , wo in Paris ich ein Postamt finden kann ? +Würdest du mir bitte den Ort eines Postamtes in Paris nennen , das man mit einem Rollstuhl erreichen kann ? +Wo in Paris kann ich Apartments finden ? +Aus wie vielen Apartments kann ich in Paris auswählen ? +Wie viele Theater gibt es in Paris ? +Kannst du mir die Namen der Theater in Paris nennen ? +Wo in Paris gibt es Theater ? +Gibt es ein Restaurant in der Nähe des Campus INF 325 in Heidelberg ? +Gibt es einen Supermarkt in der Nähe des Campus INF 325 in Heidelberg ? +Wie heißt das Restaurant am nächsten am Heidelberger Schloss ? +Welches ist das nächste Museum vom Heidelberg Hauptbahnhof ? +Welches ist der nächste internationale Flughafen von Heidelberg ? +Gibt es in der Nähe von Heidelberg einen internationalen Flughafen ? +Welches ist der nächste Parkplatz von Thalia in Heidelberg ? +Welches ist der nächste unterirdische Parkplatz von Thalia in Heidelberg ? +Wie viele Schulen gibt es im Norden von Heidelberg ? +Wie viele Bahnhöfe kann man im Norden von Heidelberg finden ? +Wie heißen Kinos , die man vom Bismarckplatz in Heidelberg zu Fuß erreichen kann ? +Welche Geschäfte gibt es um das Hard Rock Cafe in Heidelberg ? +Wie lauten die Öffnungszeiten der Galeria Kaufhof , die am nächsten am Bismarckplatz in Heidelberg ist ? +Wie nah ist der nächste Kindergarten vom Czernyring in Heidelberg ? +Wie weit weg ist die nächste Schule vom Angelweg in Heidelberg ? +Wie viele Schulen gibt es in der Nähe von Neuenheim ? +Wie viele Grundschulen gibt es in Neuenheim ? +Kann man eine Apotheke von dem Kino Die Kamera in Heidelberg aus zu Fuß erreichen ? +Wie heißt das nächste Restaurant von An der Neckarspitze in Heidelberg ? +Sollte ich das Auto nehmen , um zur nächsten Bäckerei von der Yorckstraße in Heidelberg zu kommen ? +Ist es möglich zum nächsten Fitnessstudio zu laufen von dem Wieblinger Weg in Heidelberg ? +Wie viele Planetarien gibt es im Umkreis von Heidelberg ? +Welche Schulen in Heidelberg haben eine Bushaltestelle weniger als 200 Meter entfernt ? +Wie viele Schulen in Heidelberg haben eine Bushaltestelle weniger als 200 Meter entfernt ? +Welche Art von Attraktivitäten gibt es in der Nähe des Bahnhofs Heidelberg-Altstadt ? +Welche gibt es Attraktivitäten in der Nähe des Bahnhofs Heidelberg-Altstadt ? +Kann man den Heidelberg Hauptbahnhof vom Heidelberger Schloss aus zu Fuß erreichen ? +Welche Geschäfte gibt es in der Nähe der Altstadt von Heidelberg ? +Welche Städte befinden sich im Umkreis von Heidelberg ? +Welche Städte befinden sich im Norden von Heidelberg ? +Wie viele Kilometer sind Heidelberg und Mannheim von einander entfernt ? +Wie viele Meilen sind Heidelberg und Mannheim von einander entfernt ? +Wie viele Kilometer sind Heidelberg und Stuttgart von einander entfernt ? +Wie viele Meilen liegen zwischen Frankfurt und Heidelberg ? +Wo ist der nächste Mercedes Händler von Heidelberg aus ? +Wie weit von Heidelberg entfernt ist das nächste Planetarium ? +In welcher Stadt ist das nächste Planetarium von Heidelberg aus ? +In welcher Straße ist der nächste Autohändler von Wieblingen in Heidelberg aus ? +Wie viele historische Herrschaftshäuser kann man als Tagesausflug von Heidelberg aus besuchen ? +Welches historische Herrschaftshaus ist das nächste von Heidelberg aus ? +Kann man ein historisches Herrschaftshaus als Tagesausflug von Heidelberg aus besuchen ? +Wie heißt das nächste Geschäft von der Mannheimer Straße in Heidelberg bei dem man ein Handy kaufen kann ? +Wie weit muss ich vom Heidelberger Hauptbahnhof aus fahren um eine Aufladestation zu finden ? +Kann man den nächsten Ort zum Klippenspringen von Heidelberg aus als Tagesausflug besuchen ? +Welche Flughäfen befinden sich maximal einen Tagesausflug weit von Heidelberg ? +Bitte gib mir die Orte aller Zoos , die man als Tagesausflug von Heidelberg aus besuchen kann . +Wie heißt der nächste Freizeitpark von Heidelberg aus ? +Wie viele Campingplätze gibt es im Norden von Heidelberg ? +Wie viele Restaurants gibt es im Norden von Heidelberg ? +Wie viele Fast Food Restaurants gibt es im Norden von Heidelberg ? +Bitte gib mir Kinos in Heidelberg , die einen Parkplatz in der Nähe haben . +Bitte gib mir Cafés in Heidelberg , die einen Parkplatz in der Nähe haben . +Welches ist die nächste Apotheke vom Heidelberger Schloss aus ? +Wo gibt es Restaurants im Norden von Heidelberg ? +Wie lauten die Öffnungszeiten des McDonalds der am nächsten am Heidelberger Hauptbahnhof ist ? +Kannst du mir sagen , wo es Flughäfen gibt , die maximal 50km von Heidelberg entfernt sind ? +Wie viele Orte für Minigolf gibt es im Norden von Heidelberg ? +Gibt es ein Schwimmbad im Norden von Heidelberg ? +Wie viele Schwimmbäder gibt es im Norden von Heidelberg ? +Wie heißen alle Schwimmbäder , die maximal 30km von Heidelberg entfernt sind ? +Gibt es Golfplätze im Umkreis von Heidelberg ? +Gibt es Weinreben im Norden von Heidelberg ? +Wie viele Hotels kann man vom Heidelberger Schloss aus zu Fuß erreichen ? +Wie viele 3 Sterne Hotels gibt es im Norden von Heidelberg ? +Wo gibt es 4 Sterne Hotels im Norden von Heidelberg ? +Wo gibt es 4 Sterne Hotels im Umkreis von Heidelberg ? +Gibt es eine Quelle im Norden von Heidelberg ? +Wie viele Quellen gibt es im Umkreis von Heidelberg ? +Wie heißen die Quellen im Umkreis von Heidelberg ? +Wie viele Bergspitzen in Heidelberg haben einen Parkplatz in der Nähe ? +Bei wie vielen Bergspitzen in Heidelberg gibt es eine Wanderkarte , die man zu Fuß erreichen kann ? +Wo gibt es Wanderkartenin Heidelberg , die in der Nähe eines Parkplatz sind ? +Wo sind die Bergspitzen in Heidelberg , die eine Wanderkarte in der Nähe haben , die man zu Fuß erreichen kann ? +Wo gibt es Hotels in Heidelberg und wie heißen diese ? +Wie viele 4 Sterne Hotels gibt es in Heidelberg und wo sind diese ? +Kannst du mir ein Kino in Heidelberg nennen , welches ein Restaurant in der Nähe hat , das man zu Fuß erreichen kann ? +Kannst du mir ein Kino in Heidelberg nennen von dem aus es eine Bar gibt , die nicht weiter als 500 Meter entfernt ist ? +Wo gibt es Bars in Heidelberg , in denen das Rauchen erlaubt ist und die eine Bushaltestelle in der Nähe haben ? +Wo gibt es Bars in Heidelberg , in denen das Rauchen erlaubt ist und eine Bushaltestelle maximal 400 Meter entfernt ist ? +Gibt es irgendwelche Parks in Heidelberg und wenn ja , wo sind diese ? +Kann man irgendwo in Heidelberg Minigolf spielen und wenn ja , wo ? +Wie heißen die Kopiergeschäfte in Heidelberg und wo kann ich sie finden ? +Wo in der Nähe von Heidelberg kann ich hingehen um American Football zu spielen ? +Wie viele griechische Restaurants gibt es in Heidelberg und wo sind diese ? +Wie viele griechische und italienische Restaurants gibt es in Heidelberg ? +Wo gibt es Metzger und Bäcker in Heidelberg ? +Wie viele Metzger und Bäcker gibt es in Heidelberg ? +Kann man Badminton oder Tennis in Heidelberg spielen ? +Kannst du mir den Namen des nächsten Restaurants oder der nächsten Bar vom Heidelberg Schloss aus nennen ? +Kannst du mir den Namen des nächsten Restaurants oder der nächsten Bar von dem Kino Die Kamera in Heidelberg nennen ? +Gibt es einen Ort in der Nähe von Heidelberg , wo man tauchen gehen kann ? +Kann man im Umkreis von Heidelberg irgendwo Tauchausrüstung kaufen ? +Wo ist das nächste indische oder asiatische Restaurant vom Kino Die Kamera in Heidelberg ? +Welches ist das nächste Fast Food Restaurant vom Heidelberger Hauptbahnhof aus ? +Welches ist das nächste italienische oder indische Restaurant vom Heidelberger Hauptbahnhof aus ? +Gibt es ein afrikanisches Restaurant in der Nähe des Bismarckplatz in Heidelberg , das man zu Fuß erreichen kann ? +Wo sind die nächste Bank und die nächste Apotheke von der Yorckstraße in Heidelberg ? +Wo sind der nächste Metzger und der nächste Bäcker von der Mannheimer Straße in Heidelberg ? +Wie weit sind das Heidelberger Schloss und der Heidelberg Hauptbahnhof von einander entfernt ? +Wie weit sind das Heidelberger Schloss und der Bahnhof Heidelberg-Altstadt von einander entfernt ? +Kann ich vom Heidelberger Schoss zum Hauptbahnhof laufen ? +Ist es möglich vom Heidelberger Schloss zum Bahnhof Heidelberg-Altstadt zu laufen ? +Welche archäologischen Stätten kann ich in Heidelberg finden ? +Wie viele archäologische Stätten kann ich in Heidelberg finden ? +Wo kann ich archäologischen Stätten in Heidelberg finden ? +Gibt es archäologischen Stätten in Heidelberg ? +Welche Art von archäologischen Stätten kann ich in Heidelberg finden ? +Wie viele Bushaltestellen in Heidelberg können mit einem Rollstuhl benutzt werden ? +Wie viele Bushaltestellen kann man in Heidelberg finden ? +Wo gibt es Bushaltestellen in Heidelberg ? +Gibt es mehr als 20 Bushaltestellen in Heidelberg ? +Von wem werden die Banken Heidelbergs betrieben ? +Wie viele Banken befinden sich in Heidelberg ? +Wo gibt es Banken im Norden von Heidelberg ? +Gibt es eine Bank in Wieblingen , Heidelberg ? +Wo gibt es Banken mit Geldautomaten in Heidelberg ? +Wo gibt es Banken in Heidelberg , die man mit Rollstuhl befahren kann ? +Kannst du mir die Adressen von Banken in Heidelberg geben ? +Wie viele Fahrradparkplätze gibt es in Heidelberg ? +Wie viele Rad Parkplätze gibt es in Heidelberg ? +Wo sind Fahrradparkplätze in Heidelberg ? +Wo sind Rad Parkplätze in Heidelberg ? +Gibt es mehr als ein Fahrradparkplatz in Heidelberg ? +Kannst du alle Orte aufzählen , an denen es überdachte Fahrradparkplätze in Heidelberg gibt ? +Kannst du alle Orte aufzählen , an denen es Fahrradparkplätze mit Schließfächern in Heidelberg gibt ? +Kannst du alle Orte aufzählen , an denen es überdachte Fahrradparkplätze mit Schließfächern in Heidelberg gibt ? +Wie hoch sind die Kapazitäten der verschiedenen Fahrradparkplätze in Heidelberg ? +Wo kann man sich in Heidelberg Fahrräder leihen ? +An wie vielen Orten in Heidelberg kann ich mir ein Fahrrad leihen ? +Wo gibt es Fahrradverleihe in Heidelberg ? +Gibt es Fahrradverleihe in Heidelberg ? +Kannst du mir die Webseiten von Fahrradverleihen in Heidelberg nennen ? +Kannst du mir die Telefonnummern von Fahrradverleihen in Heidelberg nennen ? +Wie heißen die Campingplätze in Heidelberg ? +Wie viele Campingplätze gibt es in Heidelberg ? +Wo gibt es Campingplätze in Heidelberg ? +Gibt es Campingplätze in Heidelberg ? +Wie heißen die Trinkwasserstellen in Heidelberg ? +Wie viele Trinkwasserstellen gibt es in Heidelberg ? +Wo kann ich Trinkwasser in Heidelberg finden ? +Gibt es mehr als 2 Orte mit Trinkwasser in Heidelberg ? +Wie hoch liegen die Trinkwasserstellen in Heidelberg ? +Wie viele Trinkwasserstellen in Heidelberg kann man mit dem Rollstuhl erreichen ? +Gibt es einen Golfplatz in Heidelberg ? +Wie heißen die Kindergärten Heidelbergs ? +Wie viele Kindergärten gibt es in Heidelberg ? +Wo gibt es Kindergärten in Heidelberg ? +Gibt es einen Kindergarten in Neuenheim ? +Gibt es einen protestantischen Kindergarten in Heidelberg ? +Wie viele Mitfahrzentralen gibt es in Heidelberg ? +Wer betreibt die Mitfahrzentralen in Heidelberg ? +Gibt mir die Webseite von Mitfahrzentralen in Heidelberg . +Wo sind Mitfahrzentralen in Heidelberg , die immer offen sind . +Wie viele Spielstraßen gibt es in Heidelberg ? +Wie viele Spielstraßen in Heidelberg sind zudem Einbahnstraßen ? +Wie viele Schwimmbäder gibt es in Heidelberg ? +Wo in Heidelberg kann ich schwimmen gehen ? +Wie viele Rathäuser gibt es in Heidelberg ? +Wo in Heidelberg gibt es Rathäuser ? +Wie viele der Rathäuser Heidelbergs kann man mit einem Rollstuhl befahren ? +Welche Art von Attraktivitäten gibt es in Heidelberg ? +Welche Aktivitäten gibt es für Touristen in Heidelberg ? +Welche Art von historischen Stätten gibt es in Heidelberg ? +Welche Art von Landbenutzungen sind in Heidelberg verzeichnet ? +Welche Art von Freizeitaktivitäten gibt es in Heidelberg ? +Welche Art von Handwerk gibt es in Heidelberg ? +Wie viele Friedhöfe gibt es in Heidelberg ? +Wo in Heidelberg gibt es Friedhöfe ? +Wie viele Bergwerke gibt es in Heidelberg ? +Wo gibt es Bergwerke in Heidelberg ? +Welche archäologischen Stätten existieren im Norden von Heidelberg ? +Wo kann ich archäologische Stätten in Heidelberg finden und wie heißen diese ? +Falls es archäologische Stätten in Heidelberg gibt , wie viele sind es ? +Wo ist die nächste Bushaltestelle von der Thalia in Heidelberg ? +Vom Heidelberger Schloss aus , wo ist die nächste Bank mit Geldautomat ? +Wo ist die nächste Bank mit Geldautomaten , die man mit dem Rollstuhl befahren kann , vom Heidelberger Schloss aus ? +Vom Heidelberger Schloss aus , wo ist die nächste Bank mit Geldautomat und wer betreibt sie ? +Wo ist der nächste Fahrradparkplatz von der Brunnengasse in Heidelberg ? +Wo ist der nächste überdachte Fahrradparkplatz von der Fischergasse in Heidelberg ? +Wie viele Fahrradverleihe gibt es im Norden von Heidelberg ? +Kannst du mir die Webseiten und Telefonnummern von Fahrradverleihen in Heidelberg nennen ? +Vom Heidelberger Hauptbahnhof aus , wo ist die nächste Trinkwasserstelle ? +Wo im Norden von Heidelberg gibt es Trinkwasser ? +Wo ist der nächste Kindergarten von der Brunnengasse in Heidelberg und wie heißt er ? +Wo ist das nächste Rathaus von Neuenheim , Heidelberg ? +Gibt es ein Rathaus in der Näher der Fischergasse in Heidelberg zu dem man hinlaufen kann ? +Welche historische Stätte ist dem Heidelberg Hauptbahnhof am nächsten ? +Welche Art historische Stätte ist dem Heidelberger Hauptbahnhof am nächsten ? +Gibt es historische Stätten in der Nähe des Heidelberger Hauptbahnhofs zu denen man laufen kann ? +Wie viele Friedhöfe befinden sich im Norden von Heidelberg ? +Wo sind die Friedhöfe im Norden von Heidelberg ? +Wie viele Bergwerke gibt es im Norden von Heidelberg ? +Wo sind die Bergwerke im Norden von Heidelberg ? +Wo in gibt es Heidelberg Benzin und wer betreibt die Tankstelle ? +Wie weit entfernt ist die nächste Tankstelle von der Plöck in Heidelberg ? +Wo ist die nächste Jet Tankstelle von INF 325 Heidelberg ? +Gibt es Tankstellen in Heidelberg , die immer offen sind ? +Wo im Norden von Heidelberg gibt es Tankstellen ? +Bitte sag mir wo es Tankstellen in Heidelberg gibt , die Diesel verkaufen ? +Verkauft die Tankstelle in der Bergheimer Straße in Heidelberg Diesel ? +Gibt es Denkmäler in Heidelberg , die Quellen sind ? +Was ist das nächste Denkmal vom Königstuhl in Heidelberg und wo ist es ? +Zähle alle Denkmäler auf , die man mit dem Rollstuhl besuchen kann und die nicht weiter als 7km vom Heidelberger Schloss entfernt sind . +Wie viele Denkmäler gibt es im Norden von Heidelberg ? +Gibt es Stolpersteine in Heidelberg ? +Wie viele Stolpersteine kann man in Heidelberg finden ? +Wie viele Stolpersteine sind in der Nähe des Heidelberger Schlosses ? +Wie viele Stolpersteine kann man vom Heidelberger Schloss aus zu Fuß erreichen ? +Wie viele Stolpersteine lassen sich im Norden von Heidelberg finden ? +Wie viele Stolpersteine befinden sich im Umkreis von Heidelberg ? +Wie viele Stolpersteine findet man nördlich von Heidelberg ? +Wo gibt es Stolpersteine im Norden von Heidelberg ? +Laut des Stolpersteins von Simon Hochherr in Heidelberg , wann wurde er geboren ? +Bitte zähle alle Orte von Stolpersteinen im Norden von Heidelberg auf , die man mit einem Rollstuhl besuchen kann ! +Bitte zähle alle Geburtstage der Menschen auf , die einen Stolperstein in Heidelberg haben . +Wann wurden die verschiedenen Stolpersteine in Heidelberg gelegt ? +Gibt es ein Planetarium in Heidelberg ? +Wo ist die nächste Kirche vom Heidelberger Schloss aus ? +Wo sind Kirchen , die Nahe am Heidelberger Schloss sind ? +Wie heißt die nächste Kirche von der Yorckstraße in Heidelberg aus und wo ist sie ? +Wie heißt die nächste protestantische Kirche von der Fischergasse in Heidelberg und wo ist sie ? +Wo ist die nächste katholische Kirche vom Heidelberger Hauptbahnhof aus ? +Wo gibt es Moscheen im Umkreis von Heidelberg ? +Wie viele Kirchen gibt es im Norden von Heidelberg ? +Gibt es Moscheen im Norden von Heidelberg ? +Gibt es Moscheen nördlich von Heidelberg ? +Wie weit sind die St . Laurentius und Kirche Jesu Christi in Heidelberg von einander entfernt ? +Kann ich von der Mannheimer Straße aus in Heidelberg zur nächsten Kirche laufen ? +Gibt es einen Andachtsort für Buddhisten in Heidelberg ? +Gibt es Fernmeldetürme in Heidelberg ? +Wie viele Fernmeldetürme gibt es in Heidelberg ? +Hat der Südwestrundfunk einen Fernmeldeturm in Heidelberg ? +Wo in Heidelberg ist der Fernsehturm ? +Wie viele Mobilfunkmasten gibt es in Heidelberg ? +Wer betreibt den Fernsehturm in Heidelberg ? +Gibt es Wasserbrunnen in Heidelberg ? +Wie viele Wasserbrunnen gibt es in Heidelberg ? +Gibt es 5 oder mehr Wasserbrunnen in Heidelberg ? +Gibt es einen Wasserbrunnen innerhalb von 2km um das Heidelberger Schloss ? +Kann man vom Heidelberger Schloss an einen Wasserbrunnen laufen ? +Gib mir Name und Ort aller Touristenaktivitäten in Heidelberg , die man mit dem Rollstuhl besuchen kann . +Gibt es Ruinen in Heidelberg ? +Wie viele Ruinen gibt es in Heidelberg ? +Gibt es mehr als 20 Ruinen in Heidelberg ? +Kannst du mir die Namen aller Ruinen in Heidelberg geben und die entsprechenden Wikipedia Seiten , falls vorhanden . +Ist irgendeine Ruine in Heidelberg auch ein Tempel ? +Wo gibt es Ruinen in Heidelberg und wie heißen diese ? +Welche Ruine ist dem Heidelberger Hauptbahnhof am nächsten ? +Bitte nenne mir alle Orte öffentlicher Toiletten in Heidelberg . +Bitte sag mir , wo vom Bismarckplatz in Heidelberg die nächste öffentliche Toilette ist . +Bitte sag mir , wo es nördlich vom Bismarckplatz in Heidelberg öffentliche Toiletten gibt . +Wie viele Second Hand Läden gibt es in Heidelberg ? +Wie viele Second Hand Läden gibt es im Norden von Heidelberg ? +Wo in Heidelberg gibt es Läden , die ausschließlich Second Hand Ware haben , und wie lauten die Öffnungszeiten ? +Gibt es Bio Supermärkte in Heidelberg ? +Wo in Heidelberg gibt es Bio Supermärkte ? +Gibt es Bio Supermärkte im Norden von Heidelberg ? +Wo ist der nächste Bio Supermarkt vom Campus INF 325 in Heidelberg ? +Wie viele Bio Supermärkte sind nicht weiter als 5km vom Campus INF 325 in Heidelberg entfernt ? +Gibt es einen Bio Supermarkt , den man vom Campus INF 325 in Heidelberg zu Fuß erreichen kann ? +Sollte ich vom Bismarckplatz in Heidelberg das Auto nehmen , um zum nächsten Bio Supermarkt zu kommen ? +Wie heißen die Bio Supermärkte Heidelbergs ? +Wo in Heidelberg gibt es Glas Recycling Stellen ? +Wo in Heidelberg gibt es Recycling Stellen für Kleidung ? +Wo ist die nächste Glas Recycling Stelle von der Mannheimer Straße in Heidelberg ? +Wo ist die nächste Recycling Stelle für Kleider von der Yorckstraße in Heidelberg ? +Wo gibt es Piere in Heidelberg ? +Wie viele Piere gibt es in Heidelberg ? +Wo ist das nächste Hotel vom Pier Neckarsonne Ausflugsschiff in Heidelberg ? +Wo ist das nächste Restaurant vom Pier Neckarsonne Ausflugsschiff in Heidelberg ? +Wie viele Werbesäulen gibt es in Heidelberg ? +Wo im Norden von Heidelberg gibt es Werbesäulen ? +Wo ist die nächste Werbesäule vom Kino Die Kamera in Heidelberg ? +Gibt es Helikopterlandeplätze in Heidelberg ? +Gibt es Helikopterlandeplätze im Norden von Heidelberg ? +Wo ist der nächste Helikopterlandeplatz von der Yorckstraße in Heidelberg ? +Gibt es Aufladestationen für elektrische Autos in Heidelberg und falls ja , wie viele ? +Wo gibt es Aufladestationen in Heidelberg ? +Wer betreibt die Aufladestationen in Heidelberg ? +Wo ist die nächste Aufladestation vom Campus INF 325 in Heidelberg ? +Gibt es ein Tierheim in Heidelberg ? +Gibt es mehrere Tierheime in Heidelberg ? +Wie heißen die Tierheime Heidelbergs ? +Gibt es Kulturzentren in Heidelberg und wenn ja , wie viele ? +Bitt gib mir die Namen und Webseiten von allen Kulturzentren in Heidelberg ! +Gibt es ein Kulturzentrum , das man vom Heidelberger Hauptbahnhof zu Fuß erreichen kann ? +Kann ich vom Heidelberger Hauptbahnhof aus zum nächsten Kulturzentrum laufen ? +Wie viele Kulturzentren liegen um dem Heidelberger Hauptbahnhof ? +Wo in Heidelberg gibt es Plätze zum Grillen ? +Wo ist der nächste Ort vom Campus INF 325 in Heidelberg an dem man grillen kann ? +Wo in Heidelberg gibt es Fahrschulen und wie heißen diese ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Norden von Heidelberg nennen ? +Welche Fahrschule ist der Mannheimer Straße in Heidelberg am nächsten und wo ist sie ? +Wo in Heidelberg gibt es Springbrunnen und wie viele gibt es ? +Kann ich vom Heidelberger Schloss zum nächsten Springbrunnen laufen ? +Wie weit sind das Heidelberger Schloss und der Sume-Brunnen voneinander entfernt ? +Wie weit sind das Heidelberger Schloss und Don Robert voneinander entfernt ? +Wo ist der nächste Springbrunnen vom Kino Die Kamera in Heidelberg ? +Welche Art von Unterständen gibt es in Heidelberg ? +Wie heißt der Wetterunterstand der dem Königstuhl in Heidelberg am nächsten ist und wo ist dieser ? +Wo gibt es U-Bahn Stationen in Île-de-France ? +Wie viele U-Bahn Stationen gibt es in Île-de-France ? +Gibt mir die Wikipedia Seiten von U-Bahn Stationen in Île-de-France ? +Gibt es U-Bahn Stationen in Île-de-France , die man mit einem Rollstuhl benutzen kann ? +Gibt es Briefkästen im Umkreis von Alaise ? +Wie viele Briefkästen gibt es im Umkreis von Alaise ? +Wer betreibt die Briefkästen rund um Alaise ? +Wann wird die Post in Briefkästen um Alaise eingesammelt ? +Welche Verbände betreiben die Bushaltestellen in San Francisco ? +Wie viele Bushaltestellen gibt es in San Francisco ? +Wo gibt es Bushaltestellen in San Francisco ? +Gibt es mehr als 30 Bushaltestellen in San Francisco ? +Gibt es verlassene Freizeitparks ? +Wie viele verlassene Freizeitparks gibt es ? +Wo gibt es verlassene Freizeitparks ? +Wie heißen die verlassenen Freizeitparks ? +Wann wurden die verschiedenen verlassenen Freizeitparks geschlossen ? +Wann wurden die nun verlassenen Freizeitparks eröffnet ? +Wie lauten die Straßennamen von Neuler ? +Wie viele Seilrutschen gibt es ? +Wo gibt es Seilrutschen ? +Wie viele Konferenzzentren sind verzeichnet ? +Wie viele Konferenzzentren sind in Deutschland verzeichnet ? +Wie heißen die Konferenzzentren ? +Wo gibt es Konferenzzentren ? +Gibt es Konferenzzentren in Deutschland ? +In welchen Städten gibt es Konferenzzentren ? +Wo kann ich Kunstwerke der berlin bears finden ? +Wie viele Kunstwerke gibt es von den berlin bears ? +Gibt es mehr als ein Kunstwerk von den berlin bears ? +Wie heißen die Kunstwerke der berlin bears ? +Welche Art von Kunstwerk erschaffen die berlin bears ? +Wie viele geplante Gebäude kannst du finden ? +Wo gibt es geplante Gebäude ? +Gibt es Gebäude in Planung ? +In welchen Städten gibt es Gebäude , die in Planung sind ? +Wie viele Brennereien zählst du ? +Wo kann man Brennereien finden ? +In welchen Städten gibt es Brennereien ? +Wie heißen die Brennereien ? +Gibt mir die Telefonnummern von Brennereien ! +Wie lauten die Webseiten von Brennereien ? +Wo gibt es Brennereien , die Whisky herstellen ? +Wie viele Mienenfelder gibt es auf der Erde ? +Wo gibt es Mienenfelder auf der Erde ? +Wie viele Kindergärten gibt es in Hamburg ? +Gibt es einen Kindergarten im Wördenmoorweg in Hamburg ? +Wo gibt es Kindergärten in Hamburg ? +Kannst du mir die Webseiten von Kindergärten in Hamburg geben ? +Wo gibt es abgelegene Inseln ? +Wie viele abgelegene Inseln gibt es ? +Gibt mir die Wikipedia Seiten von abgelegenen Inseln . +Gib mir die deutschen Namen von abgelegenen Inseln . +Wie heißen die abgelegenen Inseln ? +Wie heißen die abgelegenen Inseln auf Englisch ? +Wie viele Messegelände sind verzeichnet ? +Wo gibt es Messegelände ? +Wie heißen die Messegelände ? +Wo kann man Wasser treten ? +Kann man Wasser in Deutschland treten ? +Wie viele Orte zum Wassertreten gibt es ? +Wie viele Orte zum Wassertreten gibt es in Deutschland ? +Wie viele öffentliche Bücheregale sind verzeichnet ? +Gibt es öffentliche Bücheregale in Deutschland ? +Wo gibt es öffentliche Bücheregale ? +Wo gibt es öffentliche Bücheregale in Deutschland ? +Gibt es Wandgemälde in Deutschland ? +Kann man Wandgemälde in Deutschland finden ? +Wo auf der Welt gibt es Wandgemälde ? +Wo gibt es Wandgemälde in Deutschland ? +Gibt es Messegelände in Deutschland ? +Wo gibt es U-Bahn Stationen im Norden von Île-de-France ? +Wo gibt es Briefkästen im Norden von Schriesheim ? +Wo gibt es Briefkästen nördlich von Schriesheim ? +Wo gibt es Bushaltestellen im Norden von San Francisco ? +Welches ist der nächste Kindergarten vom Wördenmoorweg aus in Hamburg und wo ist dieser ? +Gibt es Stolpersteine in Ludwigshafen am Rhein ? +Wie viele Stolpersteine kann man in Magdeburg und Netphen finden ? +Gibt mir alle Stolpersteine in Osnabrück . +Wo gibt es Stolpersteine in Pinneberg ? +Wo gibt es Stolpersteine im Norden von Delmenhorst ? +Wen ehren die Stolpersteine in Kreuztal ? +Für welche Menschen gibt es Stolpersteine in Bielefeld ? +Wo auf der Welt gibt es Kontrollstationen für Fahrräder ? +Gib mir die Webseiten von Kontrollstationen für Fahrräder ! +Wie viele Kontrollstationen für Fahrräder sind verzeichnet ? +Wo auf der Welt gibt es Geschäfte namens Cash Converters ? +Wie viele Geschäfte namens Cash Converters gibt es ? +Welche Art von Geschäften sind Geschäfte namens Cash Converters ? +Wie viele Entitäten mit dem Namen Driving Test Centre gibt es und wo sind diese ? +Wo befindet sich der Kelso ROC Post und um welche Art von historischer Stätte handelt es sich ? +Wurde der Kelso ROC Post militärisch genutzt ? +Wo befindet sich Manure Pit ? +Wie viele Marks & Spencer Food gibt es ? +Wie viele Marks & Spencer Food gibt es in Großbritannien ? +Wo auf der Welt gibt es Friedhöfe für Haustiere ? +Gibt es Friedhöfe für Haustiere in Deutschland ? +Wie viele Volkshochschulen gibt es in Deutschland ? +Wie viele Migratenunterkünfte gibt es in Witten ? +Wo in Witten gibt es Migratenunterkünfte ? +Wo ist die nächste Migratenunterkunft vom Hauptbahnhof in Witten ? +Bitte führe alle Orte in Stuttgart auf an denen es Spielplätze gibt . +Wo in Stuttgart gibt es öffentliche Toilette ? +Bitte gib mir eine Liste von öffentlichen Toiletten sowie Spielplätze in Stuttgart . +Wo in Stuttgart gibt es Spielplätze , die man mit dem Rollstuhl befahren kann ? +Wo ist die nächste öffentliche Toilette vom Rührbrunnen in Stuttgart ? +Wie weit ist die nächste öffentliche Toilette vom Rührbrunnen in Stuttgart entfernt ? +Kann ich zur nächsten öffentlichen Toilette vom Rührbrunnen in Stuttgart aus laufen ? +Wo in Montpellier kann ich Tennis spielen ? +An wie vielen Orten in Montpellier kann man Tennis spielen ? +Wie viele Orte gibt es um Tennis zu spielen im Norden von Montpellier ? +Wo ist das nächste Restaurant oder die nächste Bar vom Tennis Club du Parc in Montpellier ? +Gibt es in Montpellier einen Tennisverein mit einer Bushalltestelle nicht weiter als 2km entfernt ? +Gibt es die Sternstraße in Bonn ? +Welche Art Geschäfte gibt es in der Sternstraße von Bonn ? +Wie heißen die Geschäfte in der Sternstraße in Bonn ? +Wie viele Aufladestationen gibt es in München und wo sind diese ? +Wer betreibt die Aufladestationen in München ? +Wo ist die nächste Aufladestationen von der Frauenkirche in München ? +Wo gibt es Postfilialen in Toulouse ? +Wo ist die nächste Post von der Polyclinique du Parc in Toulouse ? +Wie viele Restaurants gibt es in Berlin ? +Wie viele Restaurants gibt es im Norden von Berlin ? +Wo gibt es italienische Restaurants in Berlin ? +Was ist das nächste Restaurant vom Deutschen Bundestag aus in Berlin ? +Was ist das nächste Restaurant vom Brandenburger Tor aus in Berlin ? +Wie weit ist das nächste griechische Restaurant vom Berliner Hauptbahnhof entfernt ? +Wie viele Schulen gibt es in Bielefeld ? +Wo gibt es Schulen in Bielefeld ? +Wo gibt es Schulen im Norden von Bielefeld ? +Wie heißen die Schule in Bielefeld und wie lauten ihre Webseiten ? +Wie heißen die Grundschulen in Bielefeld ? +Wo gibt es Schulen in Bielefeld , die man als Rollstuhlfahrer besuchen kann . +Wo in Lyon gibt es Wandgemälde und wie heißen diese ? +Wo im Norden von Lyon gibt es Wandgemälde und wie heißen diese ? +Wie lauten die Namen und Webseiten von Wandgemälden in Lyon ? +Wer sind die Künstler der Wandgemälde in Lyon ? +Gibt es Wandgemälde in Lyon und wenn ja , wie viele ? +Wo in der Bretagne gibt es Brauereien ? +Wie viele Brauereien gibt es in der Bretagne und wo sind diese ? +Wie lauten die Namen und , falls vorhanden , die Öffnungszeiten von Brauereien in der Bretagne ? +Wie viele Brauereien gibt es in der Bretagne und wie heißen diese ? +Wo in Eure-et-Loir gibt es Brücken ? +Wie viele Brücken gibt es im Norden von Eure-et-Loir ? +Wie viele Brücken gibt es in Eure-et-Loir und wo sind diese ? +Wie viele der Brücken in Eure-et-Loir sind Einbahnstraßen ? +Gibt es Gewächshäuser in Dresden und wenn ja , wie viele und wo sind diese ? +Wo gibt es Gewächshäuser im Norden von Dresden ? +Wie viele Hydranten gibt es in Adendorf und wo sind diese ? +Wie viele der Hydranten in Adendorf sind unterirdisch ? +Gibt es Hydranten in Brietlingen ? +Wo sind Hydranten in Brietlingen ? +Wie viele der Hydranten in Lüneburg sind unterirdisch ? +Gibt es Hydranten in Lüneburg ? +Wo in Baden-Württemberg gibt es Notfalltelefone ? +Wie viele und wo in Baden-Württemberg gibt es Notfalltelefone ? +Wer betreibt die Notfalltelefone Baden-Württembergs ? +Wo in Baden-Baden gibt es Notfallsirenen ? +Wie viele Notfallsirenen gibt es in Witten ? +Wie viele Windräder gibt es in Sachsen ? +Wer sind die Hersteller der Windräder in Sachsen ? +Gibt es einen Starenweg in Lampertheim ? +Gibt es eine Blumenstraße in Lampertheim ? +Welche Art historischer Stätten gibt es in Nantes ? +Gibt es Denkmäler in Nantes ? +Gibt es Grenzsteine in Nantes ? +Wie viele Denkmäler oder Wegekreuze gibt es in Nantes ? +Wie viele historische Stätten gibt es in Nantes ? +Wie viele historische Stätten gibt es im Norden von Nantes ? +Wie heißen die historischen Stätten mit Inschriften und wie lauten diese in Nantes ? +Wo und wie viele Grenzsteine gibt es in Hummelsbüttel ? +Wie viele Kreisel hat Dresden und wie nennt man diese ? +Wo gibt es Kreisel im Norden von Dresden ? +Gibt es in Dresden 5 oder mehr Kreisel ? +Gibt es Naturschutzgebiet im Hohenlohekreis ? +Wie viele Naturschutzgebiete gibt es im Hohenlohekreis ? +Wie heißen die Naturschutzgebiet des Hohenlohekreises und wo befinden sich diese ? +Wie viele Spielplätze gibt es in York ? +Wo gibt es Spielplätze in York ? +Wo und wie viele Spielplätze gibt es im Norden von York ? +Wo ist der nächste Spielplatz von Ainsty Grove in York ? +Wie viele Wassertürme gibt es in Vendée ? +Wo gibt es Wassertürme in Vendée ? +Welche Art historischer Stätten kann man in Bayern finden ? +Wie viele Denkmäler gibt es in Bayern ? +Wo gibt es Denkmäler im Norden von Bayern ? +Welche Art von historischen Stätten gibt es in Marseille ? +Gibt es Monumente in Marseille und falls ja , wie viele ? +Kannst du mir die Namen von Monumenten in Marseille nennen ? +Bitte gib mir alle Orte an denen es Monumente gibt im Norden von Pays de la Loire ! +Wie viele Monumente gibt es in Pays de la Loire ? +Gibt es Höhlen in Osterode und wenn ja , wie viele ? +Wie heißen die Höhlen Osterodes und wo sind diese ? +Wie viele Quellen gibt es im Norden von Nîmes ? +Wo in Nîmes kann man Quellen finden ? +Wie viele Quellen und wie viele Bergspitzen gibt es in Nîmes ? +Wie viele Bergspitzen gibt es in Languedoc-Roussillon +Wie viele Bergspitzen gibt es im Norden von Languedoc-Roussillon ? +Wie werden die Bergspitzen im Norden von Languedoc-Roussillon genannt und wie hoch sind sie ? +Falls es Wikipedia Seiten der Bergspitzen im Norden von Languedoc-Roussillon , nenne sie mir bitte . +Gibt es ein Restaurant in der Nähe der Avenue des Ternes in Paris ? +Gibt es einen Supermarkt in der Nähe der Avenue des Ternes in Paris ? +Wie heißt das Restaurant am nächsten am Palais de l’Élysée in Paris ? +Welches ist das nächste Museum vom Gare du Nord in Paris ? +Welches ist der nächste internationale Flughafen von Paris ? +Gibt es in der Nähe von Paris einen internationalen Flughafen ? +Welches ist der nächste Parkplatz von Librairie Galignani in Paris ? +Welches ist der nächste unterirdische Parkplatz von Librairie Galignani in Paris ? +Wie viele Schulen gibt es im Norden von Paris ? +Wie viele Bahnhöfe kann man im Norden von Paris finden ? +Wie heißen Kinos , die man vom Place de la République in Paris zu Fuß erreichen kann ? +Welche Geschäfte gibt es um das Hard Rock Café in Paris ? +Wie lauten die Öffnungszeiten der La Flûte de Pan , die am nächsten am Place de la République in Paris ist ? +Wie nah ist der nächste Kindergarten von der Rue Bernard Dimey in Paris ? +Wie weit weg ist die nächste Schule von der Rue des Cloys in Paris ? +Wie viele Schulen gibt es in der Nähe vom 14 . Arrondissement ? +Wie viele Grundschulen gibt es im 14 . Arrondissement ? +Kann man eine Apotheke von dem Kino Le Cinaxe in Paris aus zu Fuß erreichen ? +Wie heißt das nächste Restaurant von der Rue de Cicé in Paris ? +Sollte ich das Auto nehmen , um zur nächsten Bäckerei von der Rue Lauriston in Paris zu kommen ? +Ist es möglich von der Rue Lauriston in Paris zum nächsten Fitnessstudio zu laufen ? +Wie viele Planetarien gibt es im Umkreis von Paris ? +Welche Schulen in Paris haben eine Bushaltestelle weniger als 200 Meter entfernt ? +Wie viele Schulen in Paris haben eine Bushaltestelle weniger als 200 Meter entfernt ? +Welche Art von Attraktivitäten gibt es in der Nähe des Bahnhofs Bastille in Paris ? +Welche gibt es Attraktivitäten in der Nähe des Bahnhof Bastille in Paris ? +Kann man den Gare du Nord in Paris vom Palais de l’Élysée in Paris aus zu Fuß erreichen ? +Welche Geschäfte gibt es in der Nähe des 5 . Arrondissements von Paris ? +Welche Städte befinden sich im Umkreis von Paris ? +Welche Städte befinden sich im Norden von Paris ? +Wie viele Kilometer sind Paris und Rennes von einander entfernt ? +Wie viele Meilen sind Paris und Rennes von einander entfernt ? +Wie viele Kilometer sind Paris und Lyon von einander entfernt ? +Wie viele Meilen liegen zwischen Marseille und Paris ? +Wo ist der nächste Renault Händler von Paris aus ? +In welcher Straße ist der nächste Autohändler vom 7 . Arrondissement in Paris ? +Wie heißt das nächste Geschäft von Quai de Béthune in Paris bei dem man ein Handy kaufen kann ? +Wie weit muss ich vom Gare du Nord in Paris aus fahren um eine Aufladestation zu finden ? +Kann man den nächsten Ort zum Klippenspringen von Paris aus als Tagesausflug besuchen ? +Welche Flughäfen gibt es in Paris ? +Bitte gib mir die Orte aller Zoos in Paris . +Wie heißt der nächste Freizeitpark von Paris aus ? +Wie viele Campingplätze gibt es im Norden von Paris ? +Wie viele Restaurants gibt es im Norden von Paris ? +Wie viele Fast Food Restaurants gibt es im Norden von Paris ? +Bitte gib mir Kinos in Paris , die einen Parkplatz in der Nähe haben . +Bitte gib mir Cafés in Paris , die einen Parkplatz in der Nähe haben . +Welches ist die nächste Apotheke vom Palais de l’Élysée in Paris ? +Wo gibt es Restaurants im Norden von Paris ? +Wie viele Orte für Minigolf gibt es im Norden von Paris ? +Gibt es ein Schwimmbad im Norden von Paris ? +Wie viele Schwimmbäder gibt es im Norden von Paris ? +Wie heißen alle Schwimmbäder , die maximal 30km von Paris entfernt sind ? +Gibt es Weinreben im Norden von Paris ? +Wie viele Hotels kann man vom Palais de l’Élysée in Paris zu Fuß erreichen ? +Wie viele 3 Sterne Hotels gibt es im Norden von Paris ? +Wo gibt es 4 Sterne Hotels im Norden von Paris ? +Wo gibt es 4 Sterne Hotels im Umkreis von Paris ? +Gibt es eine Quelle im Norden von Paris ? +Wie viele Quellen gibt es im Umkreis von Paris ? +Wie heißen die Quellen im Umkreis von Paris ? +Wo gibt es Hotels in Paris und wie heißen diese ? +Wie viele 4 Sterne Hotels gibt es in Paris und wo sind diese ? +Kannst du mir ein Kino in Paris nennen , welches ein Restaurant in der Nähe hat , das man zu Fuß erreichen kann ? +Kannst du mir ein Kino in Paris nennen von dem aus es eine Bar gibt , die nicht weiter als 500 Meter entfernt ist ? +Gibt es irgendwelche Parks in Paris und wenn ja , wo sind diese ? +Kann man irgendwo in Paris Minigolf spielen und wenn ja , wo ? +Wie heißen die Kopiergeschäfte in Paris und wo kann ich sie finden ? +Kann ich in der Nähe von Paris American Football zu spielen ? +Wie viele griechische Restaurants gibt es in Paris und wo sind diese ? +Wie viele griechische und italienische Restaurants gibt es in Paris ? +Wo gibt es Metzger und Bäcker in Paris ? +Wie viele Metzger und Bäcker gibt es in Paris ? +Kann man Badminton oder Tennis in Paris spielen ? +Kannst du mir den Namen des nächsten Restaurants oder der nächsten Bar vom Palais de l’Élysée in Paris aus nennen ? +Kannst du mir den Namen des nächsten Restaurants oder der nächsten Bar von dem Kino Le Cinaxe in Paris nennen ? +Wo ist das nächste indische oder asiatische Restaurant vom Kino Le Cinaxe in Paris ? +Welches ist das nächste Fast Food Restaurant vom Gare du Nord in Paris aus ? +Welches ist das nächste italienische oder indische Restaurant vom Gare du Nord in Paris aus ? +Gibt es ein afrikanisches Restaurant in der Nähe des Place de la République in Paris , das man zu Fuß erreichen kann ? +Wo sind die nächste Bank und die nächste Apotheke von der Rue Lauriston in Paris ? +Wo sind der nächste Metzger und der nächste Bäcker von Quai de Béthune in Paris ? +Wie weit sind der Palais de l’Élysée in Paris und der Gare du Nord in Paris von einander entfernt ? +Wie weit sind der Palais de l’Élysée in Paris und der Bahnhof Bastille von einander entfernt ? +Kann ich vom Palais de l’Élysée zum Gare du Nord in Paris laufen ? +Ist es möglich vom Palais de l’Élysée in Paris zum Bahnhof Bastille zu laufen ? +Welche archäologischen Stätten kann ich in Paris finden ? +Wie viele archäologische Stätten kann ich in Paris finden ? +Wo kann ich archäologischen Stätten in Paris finden ? +Gibt es archäologischen Stätten in Paris ? +Wie viele Bushaltestellen in Paris können mit einem Rollstuhl benutzt werden ? +Wie viele Bushaltestellen kann man in Paris finden ? +Wo gibt es Bushaltestellen in Paris ? +Gibt es mehr als 20 Bushaltestellen in Paris ? +Von wem werden die Banken Paris betrieben ? +Wie viele Banken befinden sich in Paris ? +Wo gibt es Banken im Norden von Paris ? +Gibt es eine Bank im 7 . Arrondissement , Paris ? +Wo gibt es Banken mit Geldautomaten in Paris ? +Wo gibt es Banken in Paris , die man mit Rollstuhl befahren kann ? +Kannst du mir die Adressen von Banken in Paris geben ? +Wie viele Fahrradparkplätze gibt es in Paris ? +Wie viele Rad Parkplätze gibt es in Paris ? +Wo sind Fahrradparkplätze in Paris ? +Wo sind Rad Parkplätze in Paris ? +Gibt es mehr als ein Fahrradparkplatz in Paris ? +Kannst du alle Orte aufzählen , an denen es überdachte Fahrradparkplätze mit Schließfächern in Paris gibt ? +Wie hoch sind die Kapazitäten der verschiedenen Fahrradparkplätze in Paris ? +Wo kann man sich in Paris Fahrräder leihen ? +An wie vielen Orten in Paris kann ich mir ein Fahrrad leihen ? +Wo gibt es Fahrradverleihe in Paris ? +Gibt es Fahrradverleihe in Paris ? +Kannst du mir die Webseiten von Fahrradverleihen in Paris nennen ? +Kannst du mir die Telefonnummern von Fahrradverleihen in Paris nennen ? +Wie heißen die Campingplätze in Paris ? +Wie viele Campingplätze gibt es in Paris ? +Wo gibt es Campingplätze in Paris ? +Gibt es Campingplätze in Paris ? +Wie heißen die Trinkwasserstellen in Paris ? +Wie viele Trinkwasserstellen gibt es in Paris ? +Wo kann ich Trinkwasser in Paris finden ? +Gibt es mehr als 2 Orte mit Trinkwasser in Paris ? +Wie viele Trinkwasserstellen in Paris kann man mit dem Rollstuhl erreichen ? +Gibt es einen Golfplatz in Paris ? +Wie heißen die Kindergärten Paris ? +Wie viele Kindergärten gibt es in Paris ? +Wo gibt es Kindergärten in Paris ? +Gibt es einen Kindergarten im 14 . Arrondissement ? +Gibt es Kindergärten in Paris ? +Wie viele Mitfahrzentralen gibt es in Paris ? +Wer betreibt die Mitfahrzentralen in Paris ? +Wie viele Spielstraßen gibt es in Paris ? +Wie viele Spielstraßen in Paris sind zudem Einbahnstraßen ? +Wie viele Schwimmbäder gibt es in Paris ? +Wo in Paris kann ich schwimmen gehen ? +Wie viele Rathäuser gibt es in Paris ? +Wo in Paris gibt es Rathäuser ? +Wie viele der Rathäuser Paris kann man mit einem Rollstuhl befahren ? +Welche Art von Attraktivitäten gibt es in Paris ? +Welche Aktivitäten gibt es für Touristen in Paris ? +Welche Art von historischen Stätten gibt es in Paris ? +Welche Art von Landbenutzungen sind in Paris verzeichnet ? +Welche Art von Freizeitaktivitäten gibt es in Paris ? +Welche Art von Handwerk gibt es in Paris ? +Wie viele Friedhöfe gibt es in Paris ? +Wo in Paris gibt es Friedhöfe ? +Wie viele Bergwerke gibt es in Paris ? +Wo gibt es Bergwerke in Paris ? +Welche archäologischen Stätten existieren im Norden von Paris ? +Wo kann ich archäologische Stätten in Paris finden und wie heißen diese ? +Falls es archäologische Stätten in Paris gibt , wie viele sind es ? +Wo ist die nächste Bushaltestelle von der Librairie Galignani in Paris ? +Vom Palais de l’Élysée in Paris aus , wo ist die nächste Bank mit Geldautomat ? +Wo ist die nächste Bank mit Geldautomaten , die man mit dem Rollstuhl befahren kann , vom Palais de l’Élysée in Paris aus ? +Vom Palais de l’Élysée in Paris aus , wo ist die nächste Bank mit Geldautomat und wer betreibt sie ? +Wo ist der nächste Fahrradparkplatz von der Avenue René Coty in Paris ? +Wo ist der nächste überdachte Fahrradparkplatz von der Rue Vercingétorix in Paris ? +Wie viele Fahrradverleihe gibt es im Norden von Paris ? +Kannst du mir die Webseiten und Telefonnummern von Fahrradverleihen in Paris nennen ? +Vom Pariser Hauptbahnhof aus , wo ist die nächste Trinkwasserstelle ? +Wo im Norden von Paris gibt es Trinkwasser ? +Wo ist der nächste Kindergarten von der Avenue René Coty in Paris und wie heißt er ? +Wo ist das nächste Rathaus vom 14 . Arrondissement , Paris ? +Gibt es ein Rathaus in der Näher der Rue Vercingétorix in Paris zu dem man hinlaufen kann ? +Welche historische Stätte ist dem Gare du Nord in Paris am nächsten ? +Welche Art historische Stätte ist dem Gare du Nord in Paris am nächsten ? +Gibt es historische Stätten in der Nähe des Gare du Nord in Paris zu denen man laufen kann ? +Wie viele Friedhöfe befinden sich im Norden von Paris ? +Wo sind die Friedhöfe im Norden von Paris ? +Wo in gibt es Paris Benzin und wer betreibt die Tankstelle ? +Wie weit entfernt ist die nächste Tankstelle von der Avenue de Ségu in Paris ? +Wo ist die nächste Jet Tankstelle von Avenue des Ternes Paris ? +Gibt es Tankstellen in Paris , die immer offen sind ? +Wo im Norden von Paris gibt es Tankstellen ? +Bitte sag mir wo es Tankstellen in Paris gibt , die Diesel verkaufen ? +Was ist das nächste Denkmal von der Rue Fragonard in Paris und wo ist es ? +Zähle alle Denkmäler auf , die man mit dem Rollstuhl besuchen kann und die nicht weiter als 7km vom Palais de l’Élysée in Paris entfernt sind . +Wie viele Denkmäler gibt es im Norden von Paris ? +Gibt es ein Planetarium in Paris ? +Wo ist die nächste Kirche vom Palais de l’Élysée in Paris aus ? +Wo sind Kirchen , die Nahe am Palais de l’Élysée in Paris sind ? +Wie heißt die nächste Kirche von der Rue Lauriston in Paris und wo ist sie ? +Wie heißt die nächste protestantische Kirche von der Rue Vercingétorix in Paris aus und wo ist sie ? +Wo ist die nächste katholische Kirche vom Gare du Nord in Paris ? +Wo gibt es Moscheen im Umkreis von Paris ? +Wie viele Kirchen gibt es im Norden von Paris ? +Gibt es Moscheen im Norden von Paris ? +Gibt es Moscheen nördlich von Paris ? +Wie weit sind Chapelle Saint-Bernard und Chapelle Sainte-Marie in Paris von einander entfernt ? +Kann ich von Quai de Béthune aus in Paris zur nächsten Kirche laufen ? +Gibt es einen Andachtsort für Buddhisten in Paris ? +Gibt es einen Wasserbrunnen innerhalb von 2km um das Palais de l’Élysée in Paris ? +Kann man vom Palais de l’Élysée in Paris an einen Wasserbrunnen laufen ? +Gib mir Name und Ort aller Touristenaktivitäten in Paris , die man mit dem Rollstuhl besuchen kann . +Wo ist die nächste öffentliche Toilette vom Gare du Nord in Paris ? +Bitte nenne mir alle Orte öffentlicher Toiletten in Paris . +Bitte sag mir , wo vom Place de la République in Paris aus die nächste öffentliche Toilette ist . +Bitte sag mir , wo es nördlich vom Place de la République in Paris öffentliche Toiletten gibt . +Wie viele Second Hand Läden gibt es in Paris ? +Wie viele Second Hand Läden gibt es im Norden von Paris ? +Wo in Paris gibt es Läden , die ausschließlich Second Hand Ware haben , und wie lauten die Öffnungszeiten ? +Gibt es Bio Supermärkte in Paris ? +Wo in Paris gibt es Bio Supermärkte ? +Gibt es Bio Supermärkte im Norden von Paris ? +Wo ist der nächste Bio Supermarkt von der Avenue des Ternes in Paris ? +Wie viele Bio Supermärkte sind nicht weiter als 5km von der Avenue des Ternes in Paris entfernt ? +Gibt es einen Bio Supermarkt , den man von der Avenue des Ternes in Paris zu Fuß erreichen kann ? +Sollte ich vom Place de la République in Paris aus das Auto nehmen , um zum nächsten Bio Supermarkt zu kommen ? +Wie heißen die Bio Supermärkte Paris ? +Wo in Paris gibt es Glas Recycling Stellen ? +Wo in Paris gibt es Recycling Stellen für Kleidung ? +Wo ist die nächste Glas Recycling Stelle von Quai de Béthune in Paris ? +Wo ist die nächste Recycling Stelle für Kleider von der Rue Lauriston in Paris ? +Wo gibt es Piere in Paris ? +Wie viele Piere gibt es in Paris ? +Wie viele Werbesäulen gibt es in Paris ? +Wo im Norden von Paris gibt es Werbesäulen ? +Wo ist die nächste Werbesäule vom Kino Le Cinaxe in Paris ? +Gibt es Helikopterlandeplätze in Paris ? +Gibt es Helikopterlandeplätze im Norden von Paris ? +Wo ist der nächste Helikopterlandeplatz von der Rue Lauriston in Paris ? +Gibt es Aufladestationen für elektrische Autos in Paris und falls ja , wie viele ? +Wo gibt es Aufladestationen in Paris ? +Wer betreibt die Aufladestationen in Paris ? +Wo ist die nächste Aufladestation von der Avenue des Ternes in Paris ? +Gibt es Kulturzentren in Paris und wenn ja , wie viele ? +Bitt gib mir die Namen und Webseiten von allen Kulturzentren in Paris ! +Gibt es ein Kulturzentrum , das man vom Gare du Nord in Paris zu Fuß erreichen kann ? +Kann ich vom Gare du Nord in Paris aus zum nächsten Kulturzentrum laufen ? +Wie viele Kulturzentren liegen um dem Gare du Nord in Paris ? +Wo in Paris gibt es Plätze zum Grillen ? +Wo ist die nächste Schule von der Avenue des Ternes in Paris ? +Wo in Paris gibt es Fahrschulen und wie heißen diese ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Norden von Paris nennen ? +Welche Fahrschule ist Quai de Béthune in Paris am nächsten und wo ist sie ? +Wo in Paris gibt es Springbrunnen und wie viele gibt es ? +Kann ich vom Palais de l’Élysée in Paris zum nächsten Springbrunnen laufen ? +Wie weit sind der Palais de l’Élysée in Paris und Léon de Bruxelles voneinander entfernt ? +Wie weit sind der Palais de l’Élysée in Paris und der Eiffelturm voneinander entfernt ? +Wo ist der nächste Springbrunnen vom Kino Le Cinaxe in Paris ? +Welche Art von Unterständen gibt es in Paris ? +Wie heißt der Wetterunterstand der der Rue Fragonard in Paris am nächsten ist und wo ist dieser ? +Welche Kulturzentren gibt es in Paris ? +Wie viele Kulturzentren gibt es in Paris ? +Wo in Paris gibt es Kulturzentren ? +Gibt es mehr als 5 Kulturzentren in Paris ? +Kannst du mir die Webseiten von Kulturzentren in Paris geben ? +Kannst du mir die Telefonnummern von Kulturzentren in Paris geben ? +Kannst du mir die Wikipedia Seiten von Kulturzentren in Paris geben ? +Kannst du mir die Adressen von Kulturzentren in Paris geben ? +Wo in Paris gibt es Museen ? +Wo in Paris gibt es Museen , die man mit dem Rollstuhl besuchen kann ? +Gib mir die Webseiten der Museen in Paris . +Sag mir die Telefonnummern von Museen in Paris . +Wie lauten die Wikipedia Seiten von Museen in Paris ? +Welche Museen von Paris haben WLAN ? +Welche Museen von Paris haben kostenloses WLAN ? +Gibt es ein Kulturzentrum in der Nähe des Eiffelturms in Paris ? +Welches Kulturzentrum ist Notre Dame in Paris am nächsten ? +Kann ich vom Musee du Louvre zum nächsten Kulturzentrum in Paris laufen ? +Wie viele Kulturzentren gibt es im Norden von Paris ? +Wo ist das nächste Kulturzentrum vom Musee de Louvre in Paris und wie heißt es ? +Welches Kulturzentrum ist dem Eiffelturm in Paris am nächsten ? +Wo gibt es im Norden von Paris Museen ? +Wie weit sind der Eiffelturm und Notre Dame in Paris voneinander entfernt ? +Wie weit sind der Musee du Louvre und Arc de Triomphe in Paris voneinander entfernt ? +Kann ich vom Musee du Louvre zum Arc de Triomphe in Paris laufen ? +Wie lauten die Webseiten und Namen der Museen oder Kulturzentren , die man zu Fuß vom Eiffelturm in Paris erreichen kann ? +Wie lauten die Webseiten der Museen oder Kulturzentren , die man zu Fuß vom Eiffelturm in Paris erreichen kann ? +Wie lautet der Name des nächsten Museum oder Kulturzentrum vom Eiffelturm in Paris ? +Wie lautet der Name des nächsten Museum oder Kulturzentrum von Notre Dame in Paris ? +Wie lauten die Telefonnummern und Namen von Museen die höchstens 5km vom Eiffelturm in Paris entfernt sind ? +Wie lauten die Telefonnummern und Namen von Museen die höchstens 10km von Notre Dame in Paris entfernt sind ? +Wo im Norden von Paris kann ich Geld wechseln ? +Vom Eiffelturm in Paris aus , wo ist die nächste Gelegenheit Geld zu wechseln ? +Vom Gare du Nord in Paris aus , wo ist die nächste Gelegenheit Geld zu wechseln ? +Wie viele Orte zum Geldwechseln gibt es im Norden von Paris ? +Wie viele Botschaften gibt es in Paris ? +Welche Länder haben Botschaften in Paris ? +Bitte gib mir die Namen der Botschaften in Paris . +Wie viele Gefängnisse gibt es in Paris ? +Wie lauten Name und Wikipedia Seite der Pariser Gefängnisse ? +Wo in Paris gibt es Gefängnisse ? +Gibt es Kathedralen in Paris und falls ja , wie heißen diese ? +Welchen Konfessionen gehören die Kathedralen von Paris an ? +Wo in Paris gibt es Kathedralen und wie heißen diese ? +Gibt es 5 oder mehr Kathedralen in Paris ? +Ist Notre Dame eine Kathedrale in Paris ? +Ist das Sacre Coeur eine Kathedrale in Paris ? +Wie viele Kathedralen gibt es im Norden von Paris ? +Welche Farbe hat das Dach des Sacre Coeurs in Paris ? +Kann man das Sacre Coeur in Paris mit dem Rollstuhl besuchen ? +Wo in Paris befindet sich das Sacre Coeur ? +Kann ich vom Gare du Nord in Paris zum Sacre Coeur laufen ? +Welches Restaurant ist dem Sacre Coeur in Paris am nächsten und wo ist es ? +Gibt es Grabmale in Paris ? +Gibt es 13 oder mehr Grabmale in Paris ? +Wo in Paris gibt es Grabmale ? +Wie heißen die Grabmale von Paris und wie lauten deren Wikipedia Seiten ? +Wie viele Grabmale gibt es im Norden von Paris ? +Gibt es ein Restaurant in der Nähe der Lothian Road in Edinburgh ? +Gibt es einen Supermarkt in der Nähe der Lothian Road in Edinburgh ? +Wie heißt das Restaurant am nächsten an der Camera Obscura in Edinburgh ? +Welches ist das nächste Museum vom Edinburgh Waverley ? +Welches ist der nächste Flughafen von Edinburgh ? +Gibt es in der Nähe von Edinburgh einen Flughafen ? +Wo ist der nächste Parkplatz von Waterstones in Edinburgh ? +Wo ist der nächste unterirdische Parkplatz von Waterstones in Edinburgh ? +Wie viele Schulen gibt es im Norden von Edinburgh ? +Wie viele Bahnhöfe kann man im Norden von Edinburgh finden ? +Wie heißen Kinos , die man von der High Street in Edinburgh zu Fuß erreichen kann ? +Welche Geschäfte gibt es um das Hard Rock Cafe in Edinburgh ? +Wie lauten die Öffnungszeiten des Tesco , der am nächsten an Deaconess Garden in Edinburgh ist ? +Wie nah ist der nächste Kindergarten vom Ulster Drive in Edinburgh ? +Wie weit weg ist die nächste Schule vom Restalrig Avenue in Edinburgh ? +Wie viele Schulen gibt es in der Nähe von Restalrig ? +Kann man eine Apotheke von dem Kino Vue in Edinburgh aus zu Fuß erreichen ? +Wie heißt das nächste Restaurant von der King Street in Edinburgh ? +Sollte ich das Auto nehmen , um zur nächsten Bäckerei von Mary King's Close in Edinburgh zu kommen ? +Ist es möglich zum nächsten Fitnessstudio zu laufen von Viewforth in Edinburgh ? +Wie viele Planetarien gibt es im Umkreis von Edinburgh ? +Welche Schulen in Edinburgh haben eine Bushaltestelle weniger als 200 Meter entfernt ? +Wie viele Schulen in Edinburgh haben eine Bushaltestelle weniger als 200 Meter entfernt ? +Welche Art von Attraktivitäten gibt es in der Nähe des Bahnhofs Haymarket in Edinburgh ? +Welche gibt es Attraktivitäten in der Nähe des Bahnhofs Haymarket in Edinburgh ? +Kann man den Palace of Holyroodhouse von Edinburgh Waverley aus zu Fuß erreichen ? +Welche Geschäfte gibt es in der Nähe der Alnwickhill von Edinburgh ? +Welche Städte befinden sich im Umkreis von Edinburgh ? +Welche Städte befinden sich im Norden von Edinburgh ? +Wie viele Kilometer sind Edinburgh und Leeds von einander entfernt ? +Wie viele Meilen sind Edinburgh und Leeds von einander entfernt ? +Wie viele Kilometer sind Edinburgh und Glasgow von einander entfernt ? +Wie viele Meilen liegen zwischen Aberdeen und Edinburgh ? +Wo ist der nächste Vauxhall Händler von Edinburgh aus ? +Gibt es ein Planetarium im Umkreis von Edinburgh ? +Gibt es Planetarien im Umkreis von Edinburgh ? +In welcher Straße ist der nächste Autohändler von Carrick Knowe in Edinburgh ? +Wie viele historische Herrschaftshäuser kann man als Tagesausflug von Edinburgh aus besuchen ? +Welches historische Herrschaftshaus ist das nächste von Edinburgh aus ? +Kann man ein historisches Herrschaftshaus als Tagesausflug von Edinburgh aus besuchen ? +Wie heißt das nächste Geschäft von der Newhaven Road in Edinburgh bei dem man ein Handy kaufen kann ? +Wie weit muss ich vom Edinburgh Waverley aus fahren um eine Aufladestation zu finden ? +Kann man den nächsten Ort zum Klippenspringen von Edinburgh aus als Tagesausflug besuchen ? +Welche Flughäfen befinden sich maximal einen Tagesausflug weit von Edinburgh ? +Bitte gib mir die Orte aller Zoos , die man als Tagesausflug von Edinburgh aus besuchen kann . +Wie heißt der nächste Freizeitpark von Edinburgh aus ? +Wie viele Campingplätze gibt es im Norden von Edinburgh ? +Wie viele Restaurants gibt es im Norden von Edinburgh ? +Wie viele Fast Food Restaurants gibt es im Norden von Edinburgh ? +Bitte gib mir Kinos in Edinburgh , die einen Parkplatz in der Nähe haben . +Bitte gib mir Cafés in Edinburgh , die einen Parkplatz in der Nähe haben . +Welches ist die nächste Apotheke von dem Palace of Holyroodhouse in Edinburgh ? +Wo gibt es Restaurants im Norden von Edinburgh ? +Wie lauten die Öffnungszeiten des Sainsbury's Local der am nächsten am Edinburgh Waverley ist ? +Kannst du mir sagen , wo es Flughäfen gibt , die maximal 50km von Edinburgh entfernt sind ? +Wie viele Orte für Minigolf gibt es im Norden von Edinburgh ? +Gibt es ein Schwimmbad im Norden von Edinburgh ? +Wie viele Schwimmbäder gibt es im Norden von Edinburgh ? +Wie heißen alle Schwimmbäder , die maximal 30km von Edinburgh entfernt sind ? +Gibt es Golfplätze im Umkreis von Edinburgh ? +Gibt es Weinreben im Norden von Edinburgh ? +Wie viele Hotels kann man vom Palace of Holyroodhouse in Edinburgh aus zu Fuß erreichen ? +Wie viele 3 Sterne Hotels gibt es im Norden von Edinburgh ? +Wo gibt es 4 Sterne Hotels im Norden von Edinburgh ? +Wo gibt es 4 Sterne Hotels im Umkreis von Edinburgh ? +Gibt es eine Quelle im Norden von Edinburgh ? +Wie viele Quellen gibt es im Umkreis von Edinburgh ? +Wie heißen die Quellen im Umkreis von Edinburgh ? +Wie viele Bergspitzen in Edinburgh haben einen Parkplatz in der Nähe ? +Bei wie vielen Bergspitzen in Edinburgh gibt es eine Wanderkarte , die man zu Fuß erreichen kann ? +Wo gibt es Wanderkarten in Edinburgh die in der Nähe eines Parkplatz sind ? +Wo sind die Bergspitzen in Edinburgh , die eine Wanderkarte in der Nähe haben , die man zu Fuß erreichen kann ? +Wo gibt es Hotels in Edinburgh und wie heißen diese ? +Wie viele 4 Sterne Hotels gibt es in Edinburgh und wo sind diese ? +Kannst du mir ein Kino in Edinburgh nennen , welches ein Restaurant in der Nähe hat , das man zu Fuß erreichen kann ? +Kannst du mir ein Kino in Edinburgh nennen von dem aus es eine Bar gibt , die nicht weiter als 500 Meter entfernt ist ? +Wo gibt es Bars in Edinburgh , die eine Bushaltestelle in der Nähe haben ? +Wo gibt es Bars in Edinburgh mit einer Bushaltestelle maximal 400 Meter entfernt ist ? +Gibt es irgendwelche Parks in Edinburgh und wenn ja , wo sind diese ? +Kann man irgendwo in Edinburgh Minigolf spielen und wenn ja , wo ? +Wie heißen die Kopiergeschäfte in Edinburgh und wo kann ich sie finden ? +Wo in der Nähe von Edinburgh kann ich hingehen um American Football zu spielen ? +Wie viele griechische Restaurants gibt es in Edinburgh und wo sind diese ? +Wie viele griechische und italienische Restaurants gibt es in Edinburgh ? +Wo gibt es Metzger und Bäcker in Edinburgh ? +Wie viele Metzger und Bäcker gibt es in Edinburgh ? +Kann man Badminton oder Tennis in Edinburgh spielen ? +Kannst du mir den Namen des nächsten Restaurants oder der nächsten Bar von Longstone Park in Edinburgh aus nennen ? +Kannst du mir den Namen des nächsten Restaurants oder der nächsten Bar von dem Kino Vue in Edinburgh nennen ? +Gibt es einen Ort in der Nähe von Edinburgh , wo man tauchen gehen kann ? +Kann man im Umkreis von Edinburgh irgendwo Tauchausrüstung kaufen ? +Wo ist das nächste indische oder asiatische Restaurant vom Kino Vue in Edinburgh ? +Welches ist das nächste Fast Food Restaurant vom Edinburgh Waverley aus ? +Welches ist das nächste italienische oder indische Restaurant vom Edinburgh Waverley aus ? +Gibt es ein afrikanisches Restaurant in der Nähe der High Street in Edinburgh , das man zu Fuß erreichen kann ? +Wo sind die nächste Bank und die nächste Apotheke von Mary King's Close in Edinburgh ? +Wo sind der nächste Metzger und der nächste Bäcker von der Newhaven Road in Edinburgh ? +Wie weit sind der Palace of Holyroodhouse und der Edinburgh Waverley von einander entfernt ? +Wie weit sind der Palace of Holyroodhouse und der Bahnhof Haymarket in Edinburgh von einander entfernt ? +Kann ich vom Palace of Holyroodhouse zum Edinburgh Waverley laufen ? +Ist es möglich von der Camera Obscura zum Bahnhof Haymarket in Edinburgh zu laufen ? +Welche archäologischen Stätten kann ich in Edinburgh finden ? +Wie viele archäologische Stätten kann ich in Edinburgh finden ? +Wo kann ich archäologischen Stätten in Edinburgh finden ? +Gibt es archäologischen Stätten in Edinburgh ? +Welche Art von archäologischen Stätten kann ich in Edinburgh finden ? +Wie viele Bushaltestellen in Edinburgh können mit einem Rollstuhl benutzt werden ? +Wie viele Bushaltestellen kann man in Edinburgh finden ? +Wo gibt es Bushaltestellen in Edinburgh ? +Gibt es mehr als 20 Bushaltestellen in Edinburgh ? +Von wem werden die Banken Edinburghs betrieben ? +Wie viele Banken befinden sich in Edinburgh ? +Wo gibt es Banken im Norden von Edinburgh ? +Gibt es eine Bank in Fountainbridge , Edinburgh ? +Wo gibt es Banken mit Geldautomaten in Edinburgh ? +Wo gibt es Banken in Edinburgh , die man mit Rollstuhl befahren kann ? +Kannst du mir die Adressen von Banken in Edinburgh geben ? +Wie viele Fahrradparkplätze gibt es in Edinburgh ? +Wie viele Rad Parkplätze gibt es in Edinburgh ? +Wo sind Fahrradparkplätze in Edinburgh ? +Wo sind Rad Parkplätze in Edinburgh ? +Gibt es mehr als ein Fahrradparkplatz in Edinburgh ? +Kannst du alle Orte aufzählen , an denen es überdachte Fahrradparkplätze in Edinburgh gibt ? +Kannst du alle Orte aufzählen , an denen es Fahrradparkplätze mit Schließfächern in Edinburgh gibt ? +Kannst du alle Orte aufzählen , an denen es überdachte Fahrradparkplätze mit Schließfächern in Edinburgh gibt ? +Wie hoch sind die Kapazitäten der verschiedenen Fahrradparkplätze in Edinburgh ? +Wie heißen die Campingplätze in Edinburgh ? +Wie viele Campingplätze gibt es in Edinburgh ? +Wo gibt es Campingplätze in Edinburgh ? +Gibt es Campingplätze in Edinburgh ? +Wie viele Trinkwasserstellen gibt es in Edinburgh ? +Wo kann ich Trinkwasser in Edinburgh finden ? +Gibt es mehr als 2 Orte mit Trinkwasser in Edinburgh ? +Gibt es einen Golfplatz in Edinburgh ? +Wie heißen die Kindergärten Edinburghs ? +Wie viele Kindergärten gibt es in Edinburgh ? +Wo gibt es Kindergärten in Norden von Edinburgh ? +Gibt es einen Kindergarten in Edinburgh ? +Wie viele Mitfahrzentralen gibt es in Edinburgh ? +Wer betreibt die Mitfahrzentralen in Edinburgh ? +Gibt mir die Webseite von Mitfahrzentralen in Edinburgh . +Wie viele Spielstraßen gibt es in Edinburgh ? +Wie viele Schwimmbäder gibt es in Edinburgh ? +Wo in Edinburgh kann ich schwimmen gehen ? +Wie viele Rathäuser gibt es in Edinburgh ? +Wo in Edinburgh gibt es Rathäuser ? +Welche Art von Attraktivitäten gibt es in Edinburgh ? +Welche Aktivitäten gibt es für Touristen in Edinburgh ? +Welche Art von historischen Stätten gibt es in Edinburgh ? +Welche Art von Landbenutzungen sind in Edinburgh verzeichnet ? +Welche Art von Freizeitaktivitäten gibt es in Edinburgh ? +Welche Art von Handwerk gibt es in Edinburgh ? +Wie viele Friedhöfe gibt es in Edinburgh ? +Wo in Edinburgh gibt es Friedhöfe ? +Wie viele Bergwerke gibt es in Edinburgh ? +Wo gibt es Bergwerke in Edinburgh ? +Welche archäologischen Stätten existieren im Norden von Edinburgh ? +Wo kann ich archäologische Stätten in Edinburgh finden und wie heißen diese ? +Falls es archäologische Stätten in Edinburgh gibt , wie viele sind es ? +Wo ist die nächste Bushaltestelle von der Waterstones in Edinburgh ? +Von Palace of Holyroodhouse in Edinburgh aus , wo ist die nächste Bank mit Geldautomat ? +Wo ist die nächste Bank mit Geldautomaten von dem Palace of Holyroodhouse in Edinburgh und wer betreibt diese ? +Wo ist der nächste Fahrradparkplatz von der Princes Street in Edinburgh ? +Wo ist der nächste überdachte Fahrradparkplatz von der Castlehill in Edinburgh ? +Wie viele Fish and Chips Läden gibt es im Norden von Edinburgh ? +Kannst du mir die Namen und Öffnungszeiten von Fish and Chips Läden in Edinburgh nennen ? +Vom Edinburgh Waverley aus , wo ist die nächste Trinkwasserstelle ? +Wo im Norden von Edinburgh gibt es Trinkwasser ? +Wo ist der nächste Kindergarten von der Princes Street in Edinburgh und wie heißt er ? +Wo ist das nächste Rathaus von Restalrig , Edinburgh ? +Gibt es ein Rathaus in der Näher der Castlehill in Edinburgh zu dem man hinlaufen kann ? +Welche historische Stätte ist dem Edinburgh Waverley am nächsten ? +Welche Art historische Stätte ist dem Edinburgh Waverley am nächsten ? +Gibt es historische Stätten in der Nähe des Edinburgh Waverleys zu denen man laufen kann ? +Wie viele Friedhöfe befinden sich im Norden von Edinburgh ? +Wo sind die Friedhöfe im Norden von Edinburgh ? +Wie viele Bergwerke gibt es im Norden von Edinburgh ? +Gibt es Bergwerke im Norden von Edinburgh ? +Wo in gibt es Edinburgh Benzin und wer betreibt die Tankstelle ? +Wie weit entfernt ist die nächste Tankstelle von Cambridge Gardens in Edinburgh ? +Wo ist die nächste Jet Tankstelle von Lothian Road Edinburgh ? +Gibt es Tankstellen in Edinburgh , die immer offen sind ? +Wo im Norden von Edinburgh gibt es Tankstellen ? +Bitte sag mir wo es Tankstellen in Edinburgh gibt , die Diesel verkaufen ? +Gibt es Denkmäler in Edinburgh , die Quellen sind ? +Was ist das nächste Denkmal von Calton Hill in Edinburgh und wo ist es ? +Zähle alle Denkmäler auf , die man mit dem Rollstuhl besuchen kann und die nicht weiter als 7km vom Palace of Holyroodhouse in Edinburgh entfernt sind . +Wie viele Denkmäler gibt es im Norden von Edinburgh ? +Gibt es ein Planetarium in Edinburgh ? +Wo ist die nächste Kirche von dem Palace of Holyroodhouse in Edinburgh aus ? +Wo sind Kirchen , die Nahe am Palace of Holyroodhouse in Edinburgh sind ? +Wie heißt die nächste Kirche von Mary King's Close in Edinburgh aus und wo ist sie ? +Wie heißt die nächste Kirche von Castlehill in Edinburgh aus und wo ist sie ? +Wo ist die nächste katholische Kirche vom Edinburgh Waverley aus ? +Wo gibt es Moscheen im Umkreis von Edinburgh ? +Wie viele Kirchen gibt es im Norden von Edinburgh ? +Gibt es Moscheen im Norden von Edinburgh ? +Gibt es Moscheen nördlich von Edinburgh ? +Wie weit sind Pilrig St Paul's und True Jesus Church in Edinburgh von einander entfernt ? +Kann ich von der Newhaven Road aus in Edinburgh zur nächsten Kirche laufen ? +Gibt es einen Andachtsort für Buddhisten in Edinburgh ? +Gibt es Fernmeldetürme in Edinburgh ? +Wie viele Fernmeldetürme gibt es in Edinburgh ? +Hat O2 einen Fernmeldeturm in Edinburgh ? +Wo in Edinburgh gibt es Fernmeldetürme von O2 ? +Wie viele Mobilfunkmasten gibt es in Edinburgh ? +Wie viele Fernmeldetürme betreibt O2 in Edinburgh ? +Gibt es Wasserbrunnen in Edinburgh ? +Wie viele Wasserbrunnen gibt es in Edinburgh ? +Gibt es 5 oder mehr Wasserbrunnen in Edinburgh ? +Gibt es einen Wasserbrunnen innerhalb von 2km um den Palace of Holyroodhouse in Edinburgh ? +Kann man von dem Palace of Holyroodhouse in Edinburgh an einen Wasserbrunnen laufen ? +Gib mir Name und Ort aller Touristenaktivitäten in Edinburgh , die man mit dem Rollstuhl besuchen kann . +Bitte nenne mir alle Orte öffentlicher Toiletten in Edinburgh . +Bitte sag mir , wo von der High Street in Edinburgh aus die nächste öffentliche Toilette ist . +Bitte sag mir , wo es nördlich von der High Street in Edinburgh öffentliche Toiletten gibt . +Wie viele Second Hand Läden gibt es in Edinburgh ? +Wie viele Second Hand Läden gibt es im Norden von Edinburgh ? +Wo in Edinburgh gibt es Läden , die ausschließlich Second Hand Ware haben , und wie lauten die Öffnungszeiten ? +Gibt es Bio Supermärkte in Edinburgh ? +Wo in Edinburgh gibt es Bio Supermärkte ? +Gibt es Bio Supermärkte im Norden von Edinburgh ? +Wo ist der nächste Bio Supermarkt von der Lothian Road in Edinburgh ? +Wie viele Bio Supermärkte sind nicht weiter als 5km von der Lothian Road in Edinburgh entfernt ? +Gibt es einen Bio Supermarkt , den man von der Lothian Road in Edinburgh zu Fuß erreichen kann ? +Sollte ich von der High Street in Edinburgh aus das Auto nehmen , um zum nächsten Bio Supermarkt zu kommen ? +Wie heißen die Bio Supermärkte Edinburghs ? +Wo in Edinburgh gibt es Glas Recycling Stellen ? +Wo in Edinburgh gibt es Recycling Stellen für Kleidung ? +Wo ist die nächste Glas Recycling Stelle von der Newhaven Road in Edinburgh ? +Wo ist die nächste Recycling Stelle für Kleider von Mary King's Close in Edinburgh ? +Wo gibt es Piere in Edinburgh ? +Wie viele Piere gibt es in Edinburgh ? +Wo ist das nächste Hotel vom Hawes Pier in Edinburgh ? +Wo ist das nächste Restaurant vom Hawes Pier in Edinburgh ? +Wie viele Werbesäulen gibt es in Edinburgh ? +Wo im Norden von Edinburgh gibt es Werbesäulen ? +Wo ist die nächste Werbesäule vom Kino Vue in Edinburgh ? +Gibt es Helikopterlandeplätze in Edinburgh ? +Gibt es Helikopterlandeplätze im Norden von Edinburgh ? +Wo ist der nächste Helikopterlandeplatz von Mary King's Close in Edinburgh ? +Wie viele Helikopterlandeplätze gibt es in Edinburgh ? +Gibt es Aufladestationen für elektrische Autos in Edinburgh und falls ja , wie viele ? +Wo gibt es Aufladestationen in Edinburgh ? +Wer betreibt die Aufladestationen in Edinburgh ? +Wo ist die nächste Aufladestation von der Lothian Road in Edinburgh ? +Gibt es ein Tierheim in Edinburgh ? +Gibt es mehrere Tierheime in Edinburgh ? +Wie heißen die Tierheime Edinburghs ? +Gibt es Kulturzentren in Edinburgh und wenn ja , wie viele ? +Bitt gib mir die Namen und Webseiten von allen Kulturzentren in Edinburgh ! +Gibt es ein Kulturzentrum , das man vom Edinburgh Waverley zu Fuß erreichen kann ? +Kann ich vom Edinburgh Waverley aus zum nächsten Kulturzentrum laufen ? +Wie viele Kulturzentren liegen um dem Edinburgh Waverley ? +Wo in Edinburgh gibt es Plätze zum Grillen ? +Wo in Edinburgh gibt es Springbrunnen und wie viele gibt es ? +Kann ich von dem Palace of Holyroodhouse in Edinburgh zum nächsten Springbrunnen laufen ? +Wie weit sind der Palace of Holyroodhouse und Calton Hill in Edinburgh voneinander entfernt ? +Wie weit sind der Palace of Holyroodhouse und die Camera Obscura in Edinburgh voneinander entfernt ? +Wo ist der nächste Springbrunnen vom Kino Vue in Edinburgh ? +Wo im Norden von Edinburgh kann ich Geld wechseln ? +Vom Edinburgh Castle aus , wo ist die nächste Gelegenheit Geld zu wechseln ? +Vom Edinburgh Waverley aus , wo ist die nächste Gelegenheit Geld zu wechseln ? +Wie viele Orte zum Geldwechseln gibt es im Norden von Edinburgh ? +Gibt es Kathedralen in Edinburgh und falls ja , wie heißen diese ? +Welchen Konfessionen gehören die Kathedralen von Edinburgh an ? +Wo in Edinburgh gibt es Kathedralen und wie heißen diese ? +Gibt es 5 oder mehr Kathedralen in Edinburgh ? +Ist St Mary's Episcopal Cathedral eine Kathedrale in Edinburgh ? +Ist Cramond Kirk eine Kathedrale in Edinburgh ? +Wie viele Kathedralen gibt es im Norden von Edinburgh ? +Gibt es Grabmale in Edinburgh ? +Gibt es 13 oder mehr Grabmale in Edinburgh ? +Wo in Edinburgh gibt es Grabmale ? +Wie heißen die Grabmale von Edinburgh und wie lauten deren Wikipedia Seiten ? +Wie viele Grabmale gibt es im Norden von Edinburgh ? +Wie viele Botschaften gibt es in Edinburgh ? +Welche Länder haben Botschaften in Edinburgh ? +Bitte gib mir die Namen der Botschaften in Edinburgh . +Wie viele Gefängnisse gibt es in Edinburgh ? +Wie lauten Name der Gefängnisse von Edinburgh ? +Wo in Edinburgh gibt es Gefängnisse ? +Ist eines der Gefängnisse von Edinburgh für Touristen betretbar ? +Gibt es Viadukte in Edinburgh und falls ja , wie viele ? +Wo in Edinburgh gibt es Viadukte ? +Wer betreibt die Brücken von Edinburgh ? +Wie viele Brücken gibt es in Edinburgh und wie heißen diese ? +Wie viele Brücken gibt es im Norden von Edinburgh und wo sind diese ? +Gibt es einen Hafen in Edinburgh ? +Wie viele Häfen gibt es in Edinburgh ? +Wo in Edinburgh gibt es Häfen ? +Gibt es Megalithe in Edinburgh und falls ja , wo ? +Wie weit ist der nächste Megalith von Edinburgh Flughafen entfernt ? +Wie weit ist der Cat Stane Megalith vom Edinburgh Flughafen entfernt ? +Wie weit liegen Calton Hill und der Edinburgh Flughafen auseinander ? +Wie weit liegen Calton Hill und dem Palace of Holyroodhouse in Edinburgh auseinander ? +Wo ist der nächste KFC vom Edinburgh Schloss ? +Wie viele KFC gibt es im Norden von Edinburgh ? +Wo liegt das Edinburgh Schloss ? +Welches ist das nächste Hotel vom Edinburgh Schloss ? +Wie viele Schulen gibt es im Osten von Heidelberg ? +Wie viele Bahnhöfe kann man im Osten von Heidelberg finden ? +Welche Städte befinden sich im Osten von Heidelberg ? +Wie viele Campingplätze gibt es im Osten von Heidelberg ? +Wie viele Restaurants gibt es im Osten von Heidelberg ? +Wie viele Fast Food Restaurants gibt es im Osten von Heidelberg ? +Wo gibt es Restaurants im Osten von Heidelberg ? +Wie viele Orte für Minigolf gibt es im Osten von Heidelberg ? +Gibt es ein Schwimmbad im Osten von Heidelberg ? +Wie viele Schwimmbäder gibt es im Osten von Heidelberg ? +Gibt es Weinreben im Osten von Heidelberg ? +Wie viele 3 Sterne Hotels gibt es im Osten von Heidelberg ? +Wo gibt es 4 Sterne Hotels im Osten von Heidelberg ? +Gibt es eine Quelle im Osten von Heidelberg ? +Wo gibt es Banken im Osten von Heidelberg ? +Welche archäologischen Stätten existieren im Osten von Heidelberg ? +Wie viele Fahrradverleihe gibt es im Osten von Heidelberg ? +Wo im Osten von Heidelberg gibt es Trinkwasser ? +Wie viele Friedhöfe befinden sich im Osten von Heidelberg ? +Wo sind die Friedhöfe im Osten von Heidelberg ? +Wie viele Bergwerke gibt es im Osten von Heidelberg ? +Wo sind die Bergwerke im Osten von Heidelberg ? +Wo im Osten von Heidelberg gibt es Tankstellen ? +Wie viele Denkmäler gibt es im Osten von Heidelberg ? +Wie viele Stolpersteine lassen sich im Osten von Heidelberg finden ? +Wie viele Stolpersteine findet man östlich von Heidelberg ? +Wo gibt es Stolpersteine im Osten von Heidelberg ? +Bitte zähle alle Orte von Stolpersteinen im Osten von Heidelberg auf , die man mit einem Rollstuhl besuchen kann ! +Wie viele Kirchen gibt es im Osten von Heidelberg ? +Gibt es Moscheen im Osten von Heidelberg ? +Gibt es Moscheen östlich von Heidelberg ? +Wo gibt es Briefkästen im Osten von Schriesheim ? +Wo gibt es Briefkästen östlich von Schriesheim ? +Wo gibt es Bushaltestellen im Osten von San Francisco ? +Bitte sag mir , wo es östlich vom Bismarckplatz in Heidelberg öffentliche Toiletten gibt . +Wie viele Second Hand Läden gibt es im Osten von Heidelberg ? +Gibt es Bio Supermärkte im Osten von Heidelberg ? +Wo im Osten von Heidelberg gibt es Werbesäulen ? +Gibt es Helikopterlandeplätze im Osten von Heidelberg ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Osten von Heidelberg nennen ? +Wie viele Orte gibt es um Tennis zu spielen im Osten von Montpellier ? +Wie viele Restaurants gibt es im Osten von Berlin ? +Wo gibt es Schulen im Osten von Bielefeld ? +Wo im Osten von Lyon gibt es Wandgemälde und wie heißen diese ? +Wie viele Brücken gibt es im Osten von Eure-et-Loir ? +Wo gibt es Gewächshäuser im Osten von Dresden ? +Wie viele historische Stätten gibt es im Osten von Nantes ? +Wo gibt es Kreisel im Osten von Dresden ? +Wo und wie viele Spielplätze gibt es im Osten von York ? +Wo gibt es Denkmäler im Osten von Bayern ? +Bitte gib mir alle Orte an denen es Monumente gibt im Osten von Pays de la Loire ! +Wie viele Quellen gibt es im Osten von Nîmes ? +Wie viele Bergspitzen gibt es im Osten von Languedoc-Roussillon ? +Wie werden die Bergspitzen im Osten von Languedoc-Roussillon genannt und wie hoch sind sie ? +Falls es Wikipedia Seiten der Bergspitzen im Osten von Languedoc-Roussillon , nenne sie mir bitte . +Wie viele Schulen gibt es im Osten von Paris ? +Wie viele Bahnhöfe kann man im Osten von Paris finden ? +Welche Städte befinden sich im Osten von Paris ? +Wie viele Campingplätze gibt es im Osten von Paris ? +Wie viele Restaurants gibt es im Osten von Paris ? +Wie viele Fast Food Restaurants gibt es im Osten von Paris ? +Wo gibt es Restaurants im Osten von Paris ? +Wie viele Orte für Minigolf gibt es im Osten von Paris ? +Gibt es ein Schwimmbad im Osten von Paris ? +Wie viele Schwimmbäder gibt es im Osten von Paris ? +Gibt es Weinreben im Osten von Paris ? +Wie viele 3 Sterne Hotels gibt es im Osten von Paris ? +Wo gibt es 4 Sterne Hotels im Osten von Paris ? +Gibt es eine Quelle im Osten von Paris ? +Wo gibt es Banken im Osten von Paris ? +Welche archäologischen Stätten existieren im Osten von Paris ? +Wie viele Fahrradverleihe gibt es im Osten von Paris ? +Wo im Osten von Paris gibt es Trinkwasser ? +Wie viele Friedhöfe befinden sich im Osten von Paris ? +Wo sind die Friedhöfe im Osten von Paris ? +Wo im Osten von Paris gibt es Tankstellen ? +Wie viele Denkmäler gibt es im Osten von Paris ? +Wie viele Kirchen gibt es im Osten von Paris ? +Gibt es Moscheen im Osten von Paris ? +Gibt es Moscheen östlich von Paris ? +Bitte sag mir , wo es östlich vom Place de la République in Paris öffentliche Toiletten gibt . +Wie viele Second Hand Läden gibt es im Osten von Paris ? +Gibt es Bio Supermärkte im Osten von Paris ? +Wo im Osten von Paris gibt es Werbesäulen ? +Gibt es Helikopterlandeplätze im Osten von Paris ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Osten von Paris nennen ? +Wie viele Kulturzentren gibt es im Osten von Paris ? +Wo gibt es im Osten von Paris Museen ? +Wo im Osten von Paris kann ich Geld wechseln ? +Wie viele Orte zum Geldwechseln gibt es im Osten von Paris ? +Wie viele Kathedralen gibt es im Osten von Paris ? +Wie viele Grabmale gibt es im Osten von Paris ? +Wie viele Schulen gibt es im Osten von Edinburgh ? +Wie viele Bahnhöfe kann man im Osten von Edinburgh finden ? +Welche Städte befinden sich im Osten von Edinburgh ? +Wie viele Campingplätze gibt es im Osten von Edinburgh ? +Wie viele Restaurants gibt es im Osten von Edinburgh ? +Wie viele Fast Food Restaurants gibt es im Osten von Edinburgh ? +Wo gibt es Restaurants im Osten von Edinburgh ? +Wie viele Orte für Minigolf gibt es im Osten von Edinburgh ? +Gibt es ein Schwimmbad im Osten von Edinburgh ? +Wie viele Schwimmbäder gibt es im Osten von Edinburgh ? +Gibt es Weinreben im Osten von Edinburgh ? +Wie viele 3 Sterne Hotels gibt es im Osten von Edinburgh ? +Wo gibt es 4 Sterne Hotels im Osten von Edinburgh ? +Gibt es eine Quelle im Osten von Edinburgh ? +Wo gibt es Banken im Osten von Edinburgh ? +Wo gibt es Kindergärten in Osten von Edinburgh ? +Welche archäologischen Stätten existieren im Osten von Edinburgh ? +Wie viele Fish and Chips Läden gibt es im Osten von Edinburgh ? +Wo im Osten von Edinburgh gibt es Trinkwasser ? +Wie viele Friedhöfe befinden sich im Osten von Edinburgh ? +Wo sind die Friedhöfe im Osten von Edinburgh ? +Wie viele Bergwerke gibt es im Osten von Edinburgh ? +Gibt es Bergwerke im Osten von Edinburgh ? +Wo im Osten von Edinburgh gibt es Tankstellen ? +Wie viele Denkmäler gibt es im Osten von Edinburgh ? +Wie viele Kirchen gibt es im Osten von Edinburgh ? +Gibt es Moscheen im Osten von Edinburgh ? +Gibt es Moscheen östlich von Edinburgh ? +Bitte sag mir , wo es östlich von der High Street in Edinburgh öffentliche Toiletten gibt . +Wie viele Second Hand Läden gibt es im Osten von Edinburgh ? +Gibt es Bio Supermärkte im Osten von Edinburgh ? +Wo im Osten von Edinburgh gibt es Werbesäulen ? +Gibt es Helikopterlandeplätze im Osten von Edinburgh ? +Wo im Osten von Edinburgh kann ich Geld wechseln ? +Wie viele Orte zum Geldwechseln gibt es im Osten von Edinburgh ? +Wie viele Kathedralen gibt es im Osten von Edinburgh ? +Wie viele Grabmale gibt es im Osten von Edinburgh ? +Wie viele Brücken gibt es im Osten von Edinburgh und wo sind diese ? +Wie viele KFC gibt es im Osten von Edinburgh ? +Wie viele Schulen gibt es im Westen von Heidelberg ? +Wie viele Bahnhöfe kann man im Westen von Heidelberg finden ? +Welche Städte befinden sich im Westen von Heidelberg ? +Wie viele Campingplätze gibt es im Westen von Heidelberg ? +Wie viele Restaurants gibt es im Westen von Heidelberg ? +Wie viele Fast Food Restaurants gibt es im Westen von Heidelberg ? +Wo gibt es Restaurants im Westen von Heidelberg ? +Wie viele Orte für Minigolf gibt es im Westen von Heidelberg ? +Gibt es ein Schwimmbad im Westen von Heidelberg ? +Wie viele Schwimmbäder gibt es im Westen von Heidelberg ? +Gibt es Weinreben im Westen von Heidelberg ? +Wie viele 3 Sterne Hotels gibt es im Westen von Heidelberg ? +Wo gibt es 4 Sterne Hotels im Westen von Heidelberg ? +Wo gibt es Banken im Westen von Heidelberg ? +Welche archäologischen Stätten existieren im Westen von Heidelberg ? +Wie viele Fahrradverleihe gibt es im Westen von Heidelberg ? +Wie viele Friedhöfe befinden sich im Westen von Heidelberg ? +Wo sind die Friedhöfe im Westen von Heidelberg ? +Wie viele Bergwerke gibt es im Westen von Heidelberg ? +Gibt es Bergwerke im Westen von Heidelberg ? +Wo im Westen von Heidelberg gibt es Tankstellen ? +Wie viele Denkmäler gibt es im Westen von Heidelberg ? +Wie viele Stolpersteine lassen sich im Westen von Heidelberg finden ? +Wie viele Stolpersteine findet man westlich von Heidelberg ? +Wo gibt es Stolpersteine im Westen von Heidelberg ? +Bitte zähle alle Orte von Stolpersteinen im Westen von Heidelberg auf , die man mit einem Rollstuhl besuchen kann ! +Wie viele Kirchen gibt es im Westen von Heidelberg ? +Gibt es Moscheen im Westen von Heidelberg ? +Gibt es Moscheen westlich von Heidelberg ? +Wo gibt es U-Bahn Stationen im Westen von Île-de-France ? +Wo gibt es Briefkästen im Westen von Schriesheim ? +Wo gibt es Briefkästen westlich von Schriesheim ? +Wo gibt es Bushaltestellen im Westen von San Francisco ? +Wo gibt es Stolpersteine im Westen von Delmenhorst ? +Bitte sag mir , wo es westlich vom Bismarckplatz in Heidelberg öffentliche Toiletten gibt . +Wie viele Second Hand Läden gibt es im Westen von Heidelberg ? +Gibt es Bio Supermärkte im Westen von Heidelberg ? +Wo im Westen von Heidelberg gibt es Werbesäulen ? +Gibt es Helikopterlandeplätze im Westen von Heidelberg ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Westen von Heidelberg nennen ? +Wie viele Orte gibt es um Tennis zu spielen im Westen von Montpellier ? +Wie viele Restaurants gibt es im Westen von Berlin ? +Wo gibt es Schulen im Westen von Bielefeld ? +Wo im Westen von Lyon gibt es Wandgemälde und wie heißen diese ? +Wie viele Brücken gibt es im Westen von Eure-et-Loir ? +Wie viele historische Stätten gibt es im Westen von Nantes ? +Wo und wie viele Spielplätze gibt es im Westen von York ? +Wo gibt es Denkmäler im Westen von Bayern ? +Bitte gib mir alle Orte an denen es Monumente gibt im Westen von Pays de la Loire ! +Wie viele Quellen gibt es im Westen von Nîmes ? +Wie viele Bergspitzen gibt es im Westen von Languedoc-Roussillon ? +Wie werden die Bergspitzen im Westen von Languedoc-Roussillon genannt und wie hoch sind sie ? +Falls es Wikipedia Seiten der Bergspitzen im Westen von Languedoc-Roussillon , nenne sie mir bitte . +Wie viele Schulen gibt es im Westen von Paris ? +Wie viele Bahnhöfe kann man im Westen von Paris finden ? +Welche Städte befinden sich im Westen von Paris ? +Wie viele Campingplätze gibt es im Westen von Paris ? +Wie viele Restaurants gibt es im Westen von Paris ? +Wie viele Fast Food Restaurants gibt es im Westen von Paris ? +Wo gibt es Restaurants im Westen von Paris ? +Wie viele Orte für Minigolf gibt es im Westen von Paris ? +Gibt es ein Schwimmbad im Westen von Paris ? +Wie viele Schwimmbäder gibt es im Westen von Paris ? +Gibt es Weinreben im Westen von Paris ? +Wie viele 3 Sterne Hotels gibt es im Westen von Paris ? +Wo gibt es 4 Sterne Hotels im Westen von Paris ? +Gibt es eine Quelle im Westen von Paris ? +Wo gibt es Banken im Westen von Paris ? +Welche archäologischen Stätten existieren im Westen von Paris ? +Wie viele Fahrradverleihe gibt es im Westen von Paris ? +Wo im Westen von Paris gibt es Trinkwasser ? +Wie viele Friedhöfe befinden sich im Westen von Paris ? +Wo sind die Friedhöfe im Westen von Paris ? +Wo im Westen von Paris gibt es Tankstellen ? +Wie viele Denkmäler gibt es im Westen von Paris ? +Wie viele Kirchen gibt es im Westen von Paris ? +Gibt es Moscheen im Westen von Paris ? +Gibt es Moscheen westlich von Paris ? +Bitte sag mir , wo es westlich vom Place de la République in Paris öffentliche Toiletten gibt . +Wie viele Second Hand Läden gibt es im Westen von Paris ? +Gibt es Bio Supermärkte im Westen von Paris ? +Wo im Westen von Paris gibt es Werbesäulen ? +Gibt es Helikopterlandeplätze im Westen von Paris ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Westen von Paris nennen ? +Wie viele Kulturzentren gibt es im Westen von Paris ? +Wo gibt es im Westen von Paris Museen ? +Wo im Westen von Paris kann ich Geld wechseln ? +Wie viele Orte zum Geldwechseln gibt es im Westen von Paris ? +Wie viele Kathedralen gibt es im Westen von Paris ? +Wie viele Grabmale gibt es im Westen von Paris ? +Wie viele Schulen gibt es im Westen von Edinburgh ? +Wie viele Bahnhöfe kann man im Westen von Edinburgh finden ? +Welche Städte befinden sich im Westen von Edinburgh ? +Wie viele Campingplätze gibt es im Westen von Edinburgh ? +Wie viele Restaurants gibt es im Westen von Edinburgh ? +Wie viele Fast Food Restaurants gibt es im Westen von Edinburgh ? +Wo gibt es Restaurants im Westen von Edinburgh ? +Wie viele Orte für Minigolf gibt es im Westen von Edinburgh ? +Gibt es ein Schwimmbad im Westen von Edinburgh ? +Wie viele Schwimmbäder gibt es im Westen von Edinburgh ? +Gibt es Weinreben im Westen von Edinburgh ? +Wie viele 3 Sterne Hotels gibt es im Westen von Edinburgh ? +Wo gibt es 4 Sterne Hotels im Westen von Edinburgh ? +Wo gibt es Banken im Westen von Edinburgh ? +Wo gibt es Kindergärten in Westen von Edinburgh ? +Welche archäologischen Stätten existieren im Westen von Edinburgh ? +Wie viele Fish and Chips Läden gibt es im Westen von Edinburgh ? +Wie viele Friedhöfe befinden sich im Westen von Edinburgh ? +Wo sind die Friedhöfe im Westen von Edinburgh ? +Wie viele Bergwerke gibt es im Westen von Edinburgh ? +Gibt es Bergwerke im Westen von Edinburgh ? +Wo im Westen von Edinburgh gibt es Tankstellen ? +Wie viele Denkmäler gibt es im Westen von Edinburgh ? +Wie viele Kirchen gibt es im Westen von Edinburgh ? +Gibt es Moscheen im Westen von Edinburgh ? +Gibt es Moscheen westlich von Edinburgh ? +Bitte sag mir , wo es westlich von der High Street in Edinburgh öffentliche Toiletten gibt . +Wie viele Second Hand Läden gibt es im Westen von Edinburgh ? +Gibt es Bio Supermärkte im Westen von Edinburgh ? +Gibt es Helikopterlandeplätze im Westen von Edinburgh ? +Wie viele Orte zum Geldwechseln gibt es im Westen von Edinburgh ? +Wie viele Kathedralen gibt es im Westen von Edinburgh ? +Wie viele Grabmale gibt es im Westen von Edinburgh ? +Wie viele Brücken gibt es im Westen von Edinburgh und wo sind diese ? +Wie viele KFC gibt es im Westen von Edinburgh ? +Wie viele Schulen gibt es im Süden von Heidelberg ? +Wie viele Bahnhöfe kann man im Süden von Heidelberg finden ? +Welche Städte befinden sich im Süden von Heidelberg ? +Wie viele Campingplätze gibt es im Süden von Heidelberg ? +Wie viele Restaurants gibt es im Süden von Heidelberg ? +Wie viele Fast Food Restaurants gibt es im Süden von Heidelberg ? +Wo gibt es Restaurants im Süden von Heidelberg ? +Wie viele Orte für Minigolf gibt es im Süden von Heidelberg ? +Gibt es ein Schwimmbad im Süden von Heidelberg ? +Wie viele Schwimmbäder gibt es im Süden von Heidelberg ? +Gibt es Weinreben im Süden von Heidelberg ? +Wie viele 3 Sterne Hotels gibt es im Süden von Heidelberg ? +Gibt es eine Quelle im Süden von Heidelberg ? +Wo gibt es Banken im Süden von Heidelberg ? +Welche archäologischen Stätten existieren im Süden von Heidelberg ? +Wie viele Fahrradverleihe gibt es im Süden von Heidelberg ? +Wo im Süden von Heidelberg gibt es Trinkwasser ? +Wie viele Friedhöfe befinden sich im Süden von Heidelberg ? +Wo sind die Friedhöfe im Süden von Heidelberg ? +Wie viele Bergwerke gibt es im Süden von Heidelberg ? +Wo sind die Bergwerke im Süden von Heidelberg ? +Wo im Süden von Heidelberg gibt es Tankstellen ? +Wie viele Denkmäler gibt es im Süden von Heidelberg ? +Wie viele Stolpersteine lassen sich im Süden von Heidelberg finden ? +Wie viele Stolpersteine findet man südlich von Heidelberg ? +Wo gibt es Stolpersteine im Süden von Heidelberg ? +Bitte zähle alle Orte von Stolpersteinen im Süden von Heidelberg auf , die man mit einem Rollstuhl besuchen kann ! +Wie viele Kirchen gibt es im Süden von Heidelberg ? +Gibt es Moscheen im Süden von Heidelberg ? +Gibt es Moscheen südlich von Heidelberg ? +Wo gibt es Briefkästen im Süden von Schriesheim ? +Wo gibt es Briefkästen südlich von Schriesheim ? +Wo gibt es Bushaltestellen im Süden von San Francisco ? +Wo gibt es Stolpersteine im Süden von Delmenhorst ? +Bitte sag mir , wo es südlich vom Bismarckplatz in Heidelberg öffentliche Toiletten gibt . +Wie viele Second Hand Läden gibt es im Süden von Heidelberg ? +Gibt es Bio Supermärkte im Süden von Heidelberg ? +Wo im Süden von Heidelberg gibt es Werbesäulen ? +Gibt es Helikopterlandeplätze im Süden von Heidelberg ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Süden von Heidelberg nennen ? +Wie viele Orte gibt es um Tennis zu spielen im Süden von Montpellier ? +Wie viele Restaurants gibt es im Süden von Berlin ? +Wo gibt es Schulen im Süden von Bielefeld ? +Wo im Süden von Lyon gibt es Wandgemälde und wie heißen diese ? +Wie viele Brücken gibt es im Süden von Eure-et-Loir ? +Wie viele historische Stätten gibt es im Süden von Nantes ? +Wo und wie viele Spielplätze gibt es im Süden von York ? +Wo gibt es Denkmäler im Süden von Bayern ? +Bitte gib mir alle Orte an denen es Monumente gibt im Süden von Pays de la Loire ! +Wie viele Quellen gibt es im Süden von Nîmes ? +Wie viele Bergspitzen gibt es im Süden von Languedoc-Roussillon ? +Wie werden die Bergspitzen im Süden von Languedoc-Roussillon genannt und wie hoch sind sie ? +Falls es Wikipedia Seiten der Bergspitzen im Süden von Languedoc-Roussillon , nenne sie mir bitte . +Wie viele Schulen gibt es im Süden von Paris ? +Wie viele Bahnhöfe kann man im Süden von Paris finden ? +Welche Städte befinden sich im Süden von Paris ? +Wie viele Campingplätze gibt es im Süden von Paris ? +Wie viele Restaurants gibt es im Süden von Paris ? +Wie viele Fast Food Restaurants gibt es im Süden von Paris ? +Wo gibt es Restaurants im Süden von Paris ? +Wie viele Orte für Minigolf gibt es im Süden von Paris ? +Gibt es ein Schwimmbad im Süden von Paris ? +Wie viele Schwimmbäder gibt es im Süden von Paris ? +Gibt es Weinreben im Süden von Paris ? +Wie viele 3 Sterne Hotels gibt es im Süden von Paris ? +Wo gibt es 4 Sterne Hotels im Süden von Paris ? +Gibt es eine Quelle im Süden von Paris ? +Wo gibt es Banken im Süden von Paris ? +Welche archäologischen Stätten existieren im Süden von Paris ? +Wie viele Fahrradverleihe gibt es im Süden von Paris ? +Wo im Süden von Paris gibt es Trinkwasser ? +Wie viele Friedhöfe befinden sich im Süden von Paris ? +Wo sind die Friedhöfe im Süden von Paris ? +Wo im Süden von Paris gibt es Tankstellen ? +Wie viele Denkmäler gibt es im Süden von Paris ? +Wie viele Kirchen gibt es im Süden von Paris ? +Gibt es Moscheen im Süden von Paris ? +Gibt es Moscheen südlich von Paris ? +Bitte sag mir , wo es südlich vom Place de la République in Paris öffentliche Toiletten gibt . +Wie viele Second Hand Läden gibt es im Süden von Paris ? +Gibt es Bio Supermärkte im Süden von Paris ? +Wo im Süden von Paris gibt es Werbesäulen ? +Gibt es Helikopterlandeplätze im Süden von Paris ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Süden von Paris nennen ? +Wie viele Kulturzentren gibt es im Süden von Paris ? +Wo gibt es im Süden von Paris Museen ? +Wo im Süden von Paris kann ich Geld wechseln ? +Wie viele Orte zum Geldwechseln gibt es im Süden von Paris ? +Wie viele Kathedralen gibt es im Süden von Paris ? +Wie viele Grabmale gibt es im Süden von Paris ? +Wie viele Schulen gibt es im Süden von Edinburgh ? +Wie viele Bahnhöfe kann man im Süden von Edinburgh finden ? +Welche Städte befinden sich im Süden von Edinburgh ? +Wie viele Campingplätze gibt es im Süden von Edinburgh ? +Wie viele Restaurants gibt es im Süden von Edinburgh ? +Wie viele Fast Food Restaurants gibt es im Süden von Edinburgh ? +Wo gibt es Restaurants im Süden von Edinburgh ? +Wie viele Orte für Minigolf gibt es im Süden von Edinburgh ? +Gibt es ein Schwimmbad im Süden von Edinburgh ? +Wie viele Schwimmbäder gibt es im Süden von Edinburgh ? +Gibt es Weinreben im Süden von Edinburgh ? +Wie viele 3 Sterne Hotels gibt es im Süden von Edinburgh ? +Wo gibt es Banken im Süden von Edinburgh ? +Wo gibt es Kindergärten in Süden von Edinburgh ? +Welche archäologischen Stätten existieren im Süden von Edinburgh ? +Wie viele Fish and Chips Läden gibt es im Süden von Edinburgh ? +Wie viele Friedhöfe befinden sich im Süden von Edinburgh ? +Wo sind die Friedhöfe im Süden von Edinburgh ? +Wie viele Bergwerke gibt es im Süden von Edinburgh ? +Gibt es Bergwerke im Süden von Edinburgh ? +Wo im Süden von Edinburgh gibt es Tankstellen ? +Wie viele Denkmäler gibt es im Süden von Edinburgh ? +Wie viele Kirchen gibt es im Süden von Edinburgh ? +Gibt es Moscheen im Süden von Edinburgh ? +Gibt es Moscheen südlich von Edinburgh ? +Bitte sag mir , wo es südlich von der High Street in Edinburgh öffentliche Toiletten gibt . +Wie viele Second Hand Läden gibt es im Süden von Edinburgh ? +Gibt es Bio Supermärkte im Süden von Edinburgh ? +Gibt es Helikopterlandeplätze im Süden von Edinburgh ? +Wie viele Orte zum Geldwechseln gibt es im Süden von Edinburgh ? +Wie viele Kathedralen gibt es im Süden von Edinburgh ? +Wie viele Grabmale gibt es im Süden von Edinburgh ? +Wie viele Brücken gibt es im Süden von Edinburgh und wo sind diese ? +Wie viele KFC gibt es im Süden von Edinburgh ? diff --git a/smtsemparsecpp/data/nlmaps.en b/smtsemparsecpp/data/nlmaps.en new file mode 100644 index 000000000..c23b025f5 --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.en @@ -0,0 +1,2380 @@ +Where are Starbucks in Heidelberg ? +How many McDonalds are there in Heidelberg ? +Does Heidelberg have any Burger Kings ? +How many railway stations are there in Heidelberg ? +Where are Italian restaurants in Heidelberg ? +Where are Indian restaurants in Heidelberg ? +Are there any Greek restaurants in Heidelberg ? +Which cuisines are in Heidelberg ? +Where can I eat burgers in Heidelberg ? +Which restaurants in Heidelberg serve burgers ? +Can I eat vegetarian anywhere in Heidelberg ? +Can you tell me where bars in Heidelberg are ? +Can you give me the location of a restaurant in Heidelberg that can be accessed with a wheelchair ? +Where in Heidelberg are restaurants in which smoking is allowed ? +Where in Heidelberg can I buy ice cream ? +Where in Heidelberg can I get ice cream ? +Can you give me bars in Heidelberg in which smoking is allowed ? +What is the website of the cinema Die Kamera in Heidelberg ? +How many people live in Heidelberg ? +What is the number of citizens Heidelberg has ? +How many citizens live in Heidelberg ? +Which schools exist in Heidelberg ? +Which hospitals exist in Heidelberg ? +What mountains are in Heidelberg ? +What peaks are in Heidelberg ? +How high are the mountains in Heidelberg ? +How high are the peaks in Heidelberg ? +How high is the mountain Königstuhl in Heidelberg ? +Which places of worship are there in Heidelberg ? +How many Christian churches can be found in the city Heidelberg ? +Which Christian churches are in Heidelberg ? +How many mosques are there in Heidelberg ? +Which mosques are there in the city of Heidelberg ? +Which catholic churches are there in Heidelberg ? +How many catholic churches are there in Heidelberg ? +Which protestant churches are there in Heidelberg ? +How many protestant churches are there in Heidelberg ? +Which museums are in Heidelberg ? +What is the homepage of the cinema Die Kamera in Heidelberg ? +Is there a bus stop in Blumenstraße , Heidelberg ? +If I was in Heidelberg , from how many restaurants could I choose ? +If I was in Heidelberg , from how many bars could I choose ? +Which cuisines can I choose from in Heidelberg ? +What cuisines are available in Heidelberg ? +Which buses stop at Erich-Hübner-Platz in Heidelberg ? +Which buses stop at Peterskirche in Heidelberg ? +Are there any castles in Heidelberg ? +Where in Heidelberg are castles ? +How many universities are there in Heidelberg ? +Are there any universities in Heidelberg ? +Is there more than one university in Heidelberg ? +Where are banks in Heidelberg ? +Where are hiking maps in Heidelberg ? +Are there any hiking maps in Heidelberg ? +Where are supermarkets in Heidelberg ? +Which supermarkets are in Heidelberg ? +Where are bakeries in Heidelberg ? +Which bakeries are in Heidelberg ? +Can you give me the book stores in Heidelberg ? +Can you give me the location of book stores in Heidelberg ? +Are there any Edekas in Heidelberg ? +How many Edekas are there in Heidelberg ? +Where are REWE supermarkets in Heidelberg ? +Can you tell me the location of a REWE in Heidelberg ? +Where are fire brigades in Heidelberg ? +Are there fire brigades in Heidelberg ? +Can you tell me where police stations are in Heidelberg ? +There are police stations in Heidelberg ? +Can you give me the location of libraries in Heidelberg ? +There are libraries in Heidelberg ? +If there are any car sharing places in Heidelberg , can you tell me where ? +Do car sharing places exist in Heidelberg ? +Can I find car sharing places in Heidelberg ? +Where can I find petrol stations in Heidelberg ? +Can you tell me the locations of petrol stations in Heidelberg ? +Can you give me possible parking locations in Heidelberg ? +Where in Heidelberg can I park my car ? +Where in Heidelberg can I park my car underground ? +In what location in Heidelberg can a car be parked underground ? +Where are places in which taxis wait in Heidelberg ? +Where do taxis wait in Heidelberg ? +Where can I find a waiting taxi in Heidelberg ? +Where can I find a dentist in Heidelberg ? +Where should I look for a dentist in Heidelberg ? +How many hospitals are there in Heidelberg ? +What are the hospitals of Heidelberg called ? +Where are hospitals in Heidelberg ? +Is there a hospital called Kurpfalzkrankenhaus in Heidelberg ? +Which cinemas are there in Heidelberg ? +Which cinemas in Heidelberg can I access with a wheelchair ? +How many cinemas are there in Heidelberg ? +What is Heidelberg called in Japanese ? +What is the name for Heidelberg in French ? +Where are peaks in Heidelberg ? +Where are the mountains of Heidelberg located ? +How many restaurants are there in Heidelberg ? +What is the number of bars in Heidelberg ? +What is the Wikipedia page of the Königstuhl in Heidelberg ? +What is the Wikipedia page of the town hall in Heidelberg ? +What is the Wikipedia page of the city Heidelberg ? +How many schools are there in Heidelberg ? +Can you give me the number of schools in Heidelberg ? +What is the number of museums in Heidelberg ? +If I was in Heidelberg , how many museums could I visit ? +How many mountains are there in Heidelberg ? +How many memorials can be found in Heidelberg ? +What is the number of memorials in Heidelberg ? +How many springs exist in Heidelberg ? +How many fire brigades can be found in Heidelberg ? +Can you tell me the amount of police stations Heidelberg has ? +What is the number of police stations in Heidelberg ? +How many book stores does Heidelberg have ? +If I was in Heidelberg , how many libraries could I visit ? +How many libraries lie in the city Heidelberg ? +If I counted Heidelberg's universities , what number would I get ? +If I counted Heidelberg's McDonald's , what number would I get ? +How many restaurants exist in Heidelberg that serve Asian food ? +How many restaurants exist in Heidelberg that would serve me Greek food ? +What is the number of supermarkets in Heidelberg ? +Can you tell me what number of supermarkets Heidelberg has ? +In how many places could I go shopping in Heidelberg ? +If I was in Heidelberg how many shops could I go shopping in ? +How many pharmacies are there in Heidelberg ? +How many castles does Heidelberg have ? +How many car sharing points are there in Heidelberg ? +At how many places could I find taxis in Heidelberg ? +How many hotels lie in the city district of Heidelberg ? +How many hotels are there in Heidelberg ? +If I was in Heidelberg how from how many hotels could I choose to stay in ? +How many different works of art can I look at in Heidelberg ? +Can you tell me the location of a work of art in Heidelberg ? +Can you tell me a pharmacy in Heidelberg ? +Is there more than one pharmacy in Heidelberg ? +Can I find more than I book store in Heidelberg ? +Is there more than 1 library in Heidelberg ? +Are there several police stations in the city of Heidelberg ? +Is there more than 1 fire brigade in Heidelberg ? +Does Heidelberg have more than one castle ? +Can you please tell me the location of a hotel in Heidelberg ? +Can you please tell me the email address of a hotel in Heidelberg ? +Can you please tell me the homepage of hotels in Heidelberg ? +Can you please tell me the websites of all hotels in Heidelberg ? +Where can I find a hotel in Heidelberg ? +Would you please tell me a name of a hotel in Heidelberg ? +Would you please tell me a name of a hotel in Heidelberg that has 4 stars ? +Would you please tell me a name of a hotel in Heidelberg that I can access with a wheelchair ? +Would you please tell me a name of a hotel in Heidelberg that has wlan ? +Where are the hotels in Heidelberg where you have wlan ? +At how many hotels of Heidelberg is wlan available ? +How many hotels in Heidelberg have 3 stars ? +Please , can you give me all names of hotels that have 3 stars in Heidelberg ? +What is the name of a hotel at which I can also park my car in Heidelberg ? +Would you tell me the number of hotels that have car parking available in Heidelberg ? +Are there 5 or more hotels in Heidelberg ? +Can I find 10 or more hotels in Heidelberg ? +At how many different locations could I have a picnic in Heidelberg ? +Where is a picnic site in Heidelberg ? +Can you give me the locations of all picnic sites in Heidelberg ? +Are there any picnic sites in the city of Heidelberg ? +Are there 5 or more picnic locations in Heidelberg ? +Are there any picnic sites with a fireplace in Heidelberg ? +Where in Heidelberg can I find a picnic site with a fireplace ? +Where can I find a picnic site at which I can barbecue in Heidelberg ? +Are there any nice viewpoints in Heidelberg ? +Can I find 3 or more viewpoints in Heidelberg ? +Would you give me the location of a nice viewpoint in Heidelberg ? +Could you list all locations of viewpoints in Heidelberg ? +Are there any viewpoints that can be accessed with a wheelchair in Heidelberg ? +Would you please tell me where the location of a viewpoint in Heidelberg is that can be accessed with a wheelchair ? +Can I play tennis anywhere in Heidelberg ? +Are there any locations in which tennis can be played in Heidelberg ? +Would you give me the location of a tennis court in Heidelberg please ? +Are there several tennis courts in Heidelberg ? +Can I go climbing in Heidelberg ? +Where in Heidelberg can I practice my climbing ? +Are there 2 or more options to go climbing in Heidelberg ? +Is there a place for rowing in Heidelberg ? +What is a location in Heidelberg where I can row ? +Can I go skateboarding somewhere in Heidelberg ? +Where is it possible to skateboard in Heidelberg ? +Could you give me all locations for skateboarding in Heidelberg ? +Is it possible to play football somewhere in Heidelberg ? +Where in Heidelberg can I practice football ? +Are there several locations in Heidelberg where one can play football ? +Please , could you give me all possible swimming locations in Heidelberg ? +What are the names of the swimming locations in Heidelberg ? +Is it possible to go swimming in Heidelberg ? +In how many different locations can I go swimming in Heidelberg ? +How many places are reserved for skateboarding in Heidelberg ? +At how many different places can I play football in Heidelberg ? +How many spots exist for rowing in Heidelberg ? +In how many spots can I go climbing in Heidelberg ? +How many tennis courts are there in Heidelberg ? +How many viewpoints does Heidelberg have ? +Would you tell me the number of picnic sites I can choose from in Heidelberg ? +Where in Heidelberg can I play table tennis ? +In how many locations of Heidelberg can I practice my table tennis technique ? +Would you give me a location in Heidelberg where I can play table tennis ? +How many opportunities are there to play table tennis in Heidelberg ? +Are there several spots in Heidelberg in which table tennis can be played ? +Where in Heidelberg are springs ? +Are there several springs in Heidelberg ? +Are there any archaeological sites in Heidelberg ? +How many archaeological sites exist in Heidelberg ? +Would you please list all archaeological sites in Heidelberg ? +Can you give me the location of all archaeological sites in Heidelberg ? +Can you give me the names of all archaeological sites in Heidelberg ? +Can you give me the available Wikipedia pages of archaeological sites in Heidelberg ? +Please tell me the names of theatres in Heidelberg that my husband who sits in a wheelchair can visit ? +Please tell me the names of theatres in Heidelberg that my mother who sits in a wheelchair can visit ? +Do historic towers exist in Heidelberg ? +Where would I find a historic tower in the city Heidelberg ? +How many historic towers can be found in Heidelberg ? +Are there any monuments in Heidelberg ? +Where in Heidelberg can I find a monument ? +Please , can you tell me the locations of monuments in Heidelberg ? +Is there a street called Werrgasse in Neuenheim ? +Is there a street called Marktstraße in Neuenheim ? +Is there a street called Amselgasse in Handschuhsheim ? +Does a street called Maaßstraße exist in Wieblingen ? +Is the Plöck in Neuenheim ? +Is the Plöck in the Altstadt ? +What are the maximum speeds listed for the Plöck in Heidelberg ? +How many lanes does the Plöck in Heidelberg have ? +What is the surface of the road Plöck in Heidelberg ? +What are the maximum speeds listed for the Maaßstraße in Heidelberg ? +How many lanes does the Maaßstraße in Heidelberg have ? +What is the surface of the road Maaßstraße in Heidelberg ? +Where in Heidelberg are speed cameras ? +How many speed cameras exist in Heidelberg ? +Would you tell me the location of all speed cameras in Heidelberg ? +How many traffic signals does Heidelberg have ? +Please , would you give me the number of traffic signals in Heidelberg ? +Are the any road constructions in Heidelberg at the moment ? +How many road constructions are ongoing in Heidelberg at the moment ? +Does the A5 lead to Heidelberg ? +Is there a motorway called A5 that leads to Heidelberg ? +Please give me the names of the motorways in Heidelberg ? +What are the international reference names for the motorways in Heidelberg ? +Does Heidelberg have any publicly available defibrillators ? +How many defibrillators does Heidelberg have ? +Can you give me all locations of defibrillators in Heidelberg ? +Please , would you give me the location of an emergency phone in Heidelberg ? +How many emergency phones are there in Heidelberg ? +Do emergency phones exist in Heidelberg ? +What are the ambulance stations of Heidelberg called ? +Where can the ambulance stations of Heidelberg be found ? +How many ambulance stations does Heidelberg have ? +Are there any fire hydrants in Heidelberg ? +What are all the locations of fire hydrants in Heidelberg ? +In which street in Heidelberg is the Italian restaurant Roseto ? +What is the website of the restaurant Zum Seppl in Heidelberg ? +Would you tell me the phone number of Cesarino in Heidelberg ? +Can the restaurant Cesarino in Heidelberg be accessed with a wheelchair ? +What kind of cuisine is served at Da Mario in Heidelberg ? +What is the telephone number of Schwarzer Adler in Heidelberg ? +Is there a restaurant called Taj Mahal in Heidelberg ? +Is smoking allowed inside the Taj Mahal in Heidelberg ? +What's the phone number of the Taj Mahal in Heidelberg ? +Is there a subway in Eppelheim ? +How many subways are in Heidelberg ? +Would you give me the names of all Italian restaurants in Heidelberg ? +Would you tell me what the Greek restaurants in Heidelberg are called ? +What are the names of all Asian restaurants in Heidelberg ? +How many Japanese restaurants are there in Heidelberg ? +Are there any African restaurants in Heidelberg ? +Can I eat African somewhere in Heidelberg ? +Is there a place that serves sandwiches in Heidelberg ? +If I was in Heidelberg from how many restaurants that serve German food could I choose from ? +Are there any Japanese restaurants in Heidelberg ? +Is there a restaurant at the Heidelberg Marriott Hotel ? +Which leisure activities are there at the Heidelberg Marriott Hotel ? +What is the number of rooms at the Heidelberg Marriott Hotel ? +In which street is the Hotel Schönberger Hof in Heidelberg ? +How many rooms does the Hotel Schönberger Hof in Heidelberg have ? +Can I access the Hotel Schönberger Hof in Heidelberg with a wheelchair ? +How many bakeries are there in Heidelberg ? +Can you tell me where a bakery is in Heidelberg ? +Would you please list all names of bakeries in Heidelberg ? +What are the locations of all bakeries of Heidelberg ? +Can you give me the phone number of a bakery in Heidelberg ? +How many butchers exist in Heidelberg ? +How many butchers in Heidelberg can be accessed with a wheelchair ? +Can you give me the location of a butcher in Heidelberg ? +Can you give me the location of a bakery in Heidelberg that can be accessed with a wheelchair ? +What are the names of butchers in Heidelberg ? +Is there anywhere in Heidelberg where I can buy seafood ? +Is there anywhere in Heidelberg where I can eat seafood ? +Where in Heidelberg can I buy stationary ? +Please , can you list all locations in which I can buy stationary in Heidelberg ? +At how many places can I buy stationary in Heidelberg ? +How many post offices can be found in Heidelberg ? +Where are post offices in Heidelberg ? +Can you tell me where I can find a post office in Heidelberg ? +Please , would you give me the location of a post office in Heidelberg that can be accessed with a wheelchair ? +Where in Heidelberg may I find apartments ? +How many apartments can I choose from in Heidelberg ? +How many theatres are in Heidelberg ? +Can you tell me the names of theatres in Heidelberg ? +Where in Heidelberg are theatres ? +Where are Starbucks in Edinburgh ? +How many McDonalds are there in Edinburgh ? +Does Edinburgh have any Burger Kings ? +How many railway stations are there in Edinburgh ? +Where are Italian restaurants in Edinburgh ? +Where are Indian restaurants in Edinburgh ? +Are there any Greek restaurants in Edinburgh ? +Which cuisines are in Edinburgh ? +Where can I eat burgers in Edinburgh ? +Which restaurants in Edinburgh serve burgers ? +Can I eat vegetarian anywhere in Edinburgh ? +Can you tell me where bars in Edinburgh are ? +Can you give me the location of a restaurant in Edinburgh that can be accessed with a wheelchair ? +Where in Edinburgh are restaurants in which smoking is not allowed ? +Where in Edinburgh can I buy ice cream ? +Where in Edinburgh can I get ice cream ? +Can you give me bars in Edinburgh in which free wifi exists ? +What is the website of the cinema Vue in Edinburgh ? +How many people live in Edinburgh ? +What is the number of citizens Edinburgh has ? +How many citizens live in Edinburgh ? +Which schools exist in Edinburgh ? +Which kindergartens exist in Edinburgh ? +What mountains are in Edinburgh ? +What peaks are in Edinburgh ? +How high are the mountains in Edinburgh ? +How high are the peaks in Edinburgh ? +How high is the mountain Arthur's Seat in Edinburgh ? +Which places of worship are there in Edinburgh ? +How many Christian churches can be found in the city Edinburgh ? +Which Christian churches are in Edinburgh ? +How many mosques are there in Edinburgh ? +Which mosques are there in the city of Edinburgh ? +Which catholic churches are there in Edinburgh ? +How many catholic churches are there in Edinburgh ? +Which churches of Scotland are there in Edinburgh ? +How many churches of Scotland are there in Edinburgh ? +Which museums are in Edinburgh ? +What is the homepage of the cinema Vue in Edinburgh ? +Is there a bus stop in Lothian Road , Edinburgh ? +If I was in Edinburgh , from how many restaurants could I choose ? +If I was in Edinburgh , from how many bars could I choose ? +Which cuisines can I choose from in Edinburgh ? +What cuisines are available in Edinburgh ? +Do buses stop at South Gyle Park in Edinburgh ? +Do buses stop at The Square in Edinburgh ? +Are there any castles in Edinburgh ? +Where in Edinburgh are castles ? +How many universities are there in Edinburgh ? +Are there any universities in Edinburgh ? +Is there more than one university in Edinburgh ? +Where are banks in Edinburgh ? +Where are hiking maps in Edinburgh ? +Are there any hiking maps in Edinburgh ? +Where are supermarkets in Edinburgh ? +Which supermarkets are in Edinburgh ? +Where are bakeries in Edinburgh ? +Which bakeries are in Edinburgh ? +Can you give me the book stores in Edinburgh ? +Can you give me the location of book stores in Edinburgh ? +Are there any Tescos in Edinburgh ? +How many Tescos are there in Edinburgh ? +Where are Sainsbury's supermarkets in Edinburgh ? +Can you tell me the location of a Sainsbury's in Edinburgh ? +Where are fire brigades in Edinburgh ? +Are there fire brigades in Edinburgh ? +Can you tell me where police stations are in Edinburgh ? +There are police stations in Edinburgh ? +Can you give me the location of libraries in Edinburgh ? +There are libraries in Edinburgh ? +If there are any car sharing places in Edinburgh , can you tell me where ? +Do car sharing places exist in Edinburgh ? +Can I find car sharing places in Edinburgh ? +Where can I find petrol stations in Edinburgh ? +Can you tell me the locations of petrol stations in Edinburgh ? +Can you give me possible parking locations in Edinburgh ? +Where in Edinburgh can I park my car ? +Where in Edinburgh can I park my car underground ? +In what location in Edinburgh can a car be parked underground ? +Where are places in which taxis wait in Edinburgh ? +Where do taxis wait in Edinburgh ? +Where can I find a waiting taxi in Edinburgh ? +Where can I find a dentist in Edinburgh ? +Where should I look for a dentist in Edinburgh ? +How many kindergartens are there in Edinburgh ? +What are the kindergartens of Edinburgh called ? +Where are kindergartens in Edinburgh ? +Is there a kindergarten called The Edinburgh Nursery in Edinburgh ? +Which cinemas are there in Edinburgh ? +Which cinemas in Edinburgh can I access with a wheelchair ? +How many cinemas are there in Edinburgh ? +What is Edinburgh called in Japanese ? +What is the name for Edinburgh in French ? +Where are peaks in Edinburgh ? +Where are the mountains of Edinburgh located ? +How many restaurants are there in Edinburgh ? +What is the number of bars in Edinburgh ? +What is the Wikipedia page of the William Chambers Statue in Edinburgh ? +What is the Wikipedia page of the Talbot Rice Gallery in Edinburgh ? +What is the Wikipedia page of the city Edinburgh ? +How many schools are there in Edinburgh ? +Can you give me the number of schools in Edinburgh ? +What is the number of museums in Edinburgh ? +If I was in Edinburgh , how many museums could I visit ? +How many mountains are there in Edinburgh ? +How many memorials can be found in Edinburgh ? +What is the number of memorials in Edinburgh ? +How many springs exist in Edinburgh ? +How many fire brigades can be found in Edinburgh ? +Can you tell me the amount of police stations Edinburgh has ? +What is the number of police stations in Edinburgh ? +How many book stores does Edinburgh have ? +If I was in Edinburgh , how many libraries could I visit ? +How many libraries lie in the city Edinburgh ? +If I counted Edinburgh's universities , what number would I get ? +If I counted Edinburgh's McDonald's , what number would I get ? +How many restaurants exist in Edinburgh that serve Asian food ? +How many restaurants exist in Edinburgh that would serve me Greek food ? +What is the number of supermarkets in Edinburgh ? +Can you tell me what number of supermarkets Edinburgh has ? +In how many places could I go shopping in Edinburgh ? +If I was in Edinburgh how many shops could I go shopping in ? +How many pharmacies are there in Edinburgh ? +How many castles does Edinburgh have ? +How many car sharing points are there in Edinburgh ? +At how many places could I find taxis in Edinburgh ? +How many hotels lie in the city district of Edinburgh ? +How many hotels are there in Edinburgh ? +If I was in Edinburgh how from how many hotels could I choose to stay in ? +How many different works of art can I look at in Edinburgh ? +Can you tell me the location of a work of art in Edinburgh ? +Can you tell me a pharmacy in Edinburgh ? +Is there more than one pharmacy in Edinburgh ? +Can I find more than I book store in Edinburgh ? +Is there more than 1 library in Edinburgh ? +Are there several police stations in the city of Edinburgh ? +Is there more than 1 fire brigade in Edinburgh ? +Does Edinburgh have more than one castle ? +Can you please tell me the location of a hotel in Edinburgh ? +Can you please tell me the name of a hotel in Edinburgh ? +Can you please tell me the homepage of hotels in Edinburgh ? +Can you please tell me the websites of all hotels in Edinburgh ? +Where can I find a hotel in Edinburgh ? +Would you please tell me a name of a hotel in Edinburgh ? +Would you please tell me a name of a hotel in Edinburgh that has 4 stars ? +Would you please tell me a name of a hotel in Edinburgh that I can access with a wheelchair ? +Would you please tell me a name of a hotel in Edinburgh that is operated by Apex Hotels ? +Where are the hotels in Edinburgh operated by Apex Hotels ? +How many hotels of Edinburgh are operated by Apex Hotels ? +How many hotels in Edinburgh have 3 stars ? +Please , can you give me all names of hotels in Edinburgh that have 3 stars ? +What is the name of a hotel in Edinburgh at which you are not allowed to smoke ? +Would you tell me the number of hotels in Edinburgh in which smoking is not allowed ? +Are there 5 or more hotels in Edinburgh ? +Can I find 10 or more hotels in Edinburgh ? +At how many different locations could I have a picnic in Edinburgh ? +Where is a picnic site in Edinburgh ? +Can you give me the locations of all picnic sites in Edinburgh ? +Are there any picnic sites in the city of Edinburgh ? +Are there 5 or more picnic locations in Edinburgh ? +Are there any tourist attractions in Edinburgh ? +Where in Edinburgh can I find attractions ? +Please , can you tell me the names of all attractions in Edinburgh ? +Are there any nice viewpoints in Edinburgh ? +Can I find 3 or more viewpoints in Edinburgh ? +Would you give me the location of a nice viewpoint in Edinburgh ? +Could you list all locations of viewpoints in Edinburgh ? +Are there any viewpoints in Edinburgh that can be accessed with a wheelchair ? +Would you please tell me where the location of a viewpoint in Edinburgh is that can be accessed with a wheelchair ? +Can I play rugby anywhere in Edinburgh ? +Are there any locations in which rugby can be played in Edinburgh ? +Would you give me the location of a rugby pitch in Edinburgh please ? +Are there several rugby pitches in Edinburgh ? +Can I go climbing in Edinburgh ? +Where in Edinburgh can I practice my climbing ? +Are there 2 or more options to go climbing in Edinburgh ? +Is there a place for playing cricket in Edinburgh ? +What is a location in Edinburgh where I can play cricket ? +Can I go BMX racing somewhere in Edinburgh ? +Where is it possible to BMX race in Edinburgh ? +Could you give me all locations for BMX racing in Edinburgh ? +Is it possible to play football somewhere in Edinburgh ? +Where in Edinburgh can I practice football ? +Are there several locations in Edinburgh where one can play football ? +Please , could you give me all possible swimming locations in Edinburgh ? +What are the names of the rugby locations in Edinburgh ? +Is it possible to go swimming in Edinburgh ? +In how many different locations can I go swimming in Edinburgh ? +How many places are reserved for BMX racing in Edinburgh ? +At how many different places can I play football in Edinburgh ? +How many spots exist for playing cricket in Edinburgh ? +In how many spots can I go climbing in Edinburgh ? +How many rugby pitches are there in Edinburgh ? +How many viewpoints does Edinburgh have ? +Would you tell me the number of picnic sites I can choose from in Edinburgh ? +Where in Edinburgh can I play basketball ? +In how many locations of Edinburgh can I practice my basketball technique ? +Would you give me a location in Edinburgh where I can play basketball ? +How many opportunities are there to play basketball in Edinburgh ? +Are there several spots in Edinburgh in which basketball can be played ? +Where in Edinburgh are springs ? +Are there several springs in Edinburgh ? +Are there any archaeological sites in Edinburgh ? +How many archaeological sites exist in Edinburgh ? +Would you please list all archaeological sites in Edinburgh ? +Can you give me the location of all archaeological sites in Edinburgh ? +Can you give me the names of all archaeological sites in Edinburgh ? +Can you give me the available websites of archaeological sites in Edinburgh ? +Please tell me the websites of theatres in Edinburgh ? +Please tell me the streets in which theatres of Edinburgh are located in ? +Do memorials exist in Edinburgh ? +Where would I find a memorial in the city Edinburgh ? +How many memorials can one find in Edinburgh ? +Are there any monuments in Edinburgh ? +Where in Edinburgh can I find a monument ? +Please , can you tell me the locations of monuments in Edinburgh ? +Is there a street called Henderson Street in Leith ? +Is there a street called Abbey Avenue in Leith ? +Is there a street called St Vincent Street in Stockbridge ? +Does a street called Whitehouse Loan exist in Morningside ? +Is the Summerhall Place in Leith ? +Is the Summerhall Place in Newington ? +What are the maximum speeds listed for the Summerhall Place in Edinburgh ? +How many lanes does the Summerhall Place in Edinburgh have ? +What is the surface of the road Summerhall Place in Edinburgh ? +What are the maximum speeds listed for the Whitehouse Loan in Edinburgh ? +How many lanes does the Whitehouse Loan in Edinburgh have ? +What is the surface of the road Whitehouse Loan in Edinburgh ? +Where in Edinburgh are speed cameras ? +How many speed cameras exist in Edinburgh ? +Would you tell me the location of all speed cameras in Edinburgh ? +How many traffic signals does Edinburgh have ? +Please , would you give me the number of traffic signals in Edinburgh ? +Are the any road constructions in Edinburgh at the moment ? +How many road constructions are ongoing in Edinburgh at the moment ? +Does the M8 lead to Edinburgh ? +Is there a motorway called M8 that leads to Edinburgh ? +Please give me the names of the motorways in Edinburgh ? +What is the maximum speed of the M90 in Edinburgh ? +Does Edinburgh have any key cutters ? +How many key cutters does Edinburgh have ? +Can you give me all locations of key cutters in Edinburgh ? +Please , would you give me the location of a shoemaker in Edinburgh ? +How many shoemakers are there in Edinburgh ? +Do shoemakers exist in Edinburgh ? +What are the electricians of Edinburgh called ? +Where can electricians be found in Edinburgh ? +How many electricians does Edinburgh have ? +Are there any tailors in Edinburgh ? +What are all the locations of tailors in Edinburgh ? +In which street in Edinburgh is the Italian restaurant Giuliano's ? +What is the website of the pizzeria The Crafters Barn in Edinburgh ? +Would you tell me the phone number of Guru Balti in Edinburgh ? +Can the restaurant Zizzi in Edinburgh be accessed with a wheelchair ? +What kind of cuisine is served at the Piatto Verde in Edinburgh ? +What is the telephone number of the Piatto Verde in Edinburgh ? +Is there a restaurant called La Garrigue in Edinburgh ? +What is the website of the Buffalo Grill in Edinburgh ? +What's the phone number of the La Garrigue in Edinburgh ? +Is there a subway in Newington ? +How many subways are in Edinburgh ? +Would you give me the names of all Italian restaurants in Edinburgh ? +Would you tell me what the Greek restaurants in Edinburgh are called ? +What are the names of all Asian restaurants in Edinburgh ? +How many Japanese restaurants are there in Edinburgh ? +Are there any African restaurants in Edinburgh ? +Can I eat African somewhere in Edinburgh ? +Is there a place that serves sandwiches in Edinburgh ? +If I was in Edinburgh from how many restaurants that serve British food could I choose from ? +Are there any Japanese restaurants in Edinburgh ? +Is there a Holiday Inn Express in Edinburgh ? +How many stars does The Salisbury hotel in Edinburgh have ? +What is the phone number of The Salisbury hotel in Edinburgh ? +In which street is the Holiday Inn Express in Edinburgh ? +In which street is the hotel Jurys Inn in Edinburgh ? +Can I access the hotel Malmaison in Edinburgh with a wheelchair ? +How many bakeries are there in Edinburgh ? +Can you tell me where a bakery is in Edinburgh ? +Would you please list all names of bakeries in Edinburgh ? +What are the locations of all bakeries of Edinburgh ? +Can you give me the street name of a bakery in Edinburgh ? +How many butchers exist in Edinburgh ? +How many butchers in Edinburgh can be accessed with a wheelchair ? +Can you give me the location of a butcher in Edinburgh ? +Can you give me the street name in Edinburgh ? +What are the names of butchers in Edinburgh ? +Is there anywhere in Edinburgh where I can buy seafood ? +Is there anywhere in Edinburgh where I can eat seafood ? +Where in Edinburgh can I buy stationary ? +Please , can you list all locations in which I can buy stationary in Edinburgh ? +At how many places can I buy stationary in Edinburgh ? +How many post offices can be found in Edinburgh ? +Where are post offices in Edinburgh ? +Can you tell me where I can find a post office in Edinburgh ? +Please , would you give me the location of a post office in Edinburgh that can be accessed with a wheelchair ? +Where in Edinburgh may I find a brewery ? +How many breweries can I visit in Edinburgh ? +How many theatres are in Edinburgh ? +Can you tell me the names of theatres in Edinburgh ? +Where in Edinburgh are theatres ? +Where are Starbucks in Paris ? +How many McDonalds are there in Paris ? +Does Paris have any Burger Kings ? +How many railway stations are there in Paris ? +Where are Italian restaurants in Paris ? +Where are Indian restaurants in Paris ? +Are there any Greek restaurants in Paris ? +Which cuisines are in Paris ? +Where can I eat burgers in Paris ? +Which restaurants in Paris serve burgers ? +Can I eat vegetarian anywhere in Paris ? +Can you tell me where bars in Paris are ? +Can you give me the location of a restaurant in Paris that can be accessed with a wheelchair ? +Where in Paris are restaurants in which smoking is allowed ? +Where in Paris can I buy ice cream ? +Where in Paris can I get ice cream ? +Can you give me bars in Paris in which French food is served ? +What is the website of the cinema Cinéma Chaplin in Paris ? +How many people live in Paris ? +What is the number of citizens Paris has ? +How many citizens live in Paris ? +Which schools exist in Paris ? +Which hospitals exist in Paris ? +Is the Eiffel Tower in Paris ? +What is the Japanese name for the Eiffel Tower in Paris ? +Who built the Eiffel Tower in Paris ? +Who were the architects of the Eiffel Tower in Paris ? +How high is the Eiffel Tower in Paris ? +Which places of worship are there in Paris ? +How many Christian churches can be found in the city Paris ? +Which Christian churches are in Paris ? +How many mosques are there in Paris ? +Which mosques are there in the city of Paris ? +Which catholic churches are there in Paris ? +How many catholic churches are there in Paris ? +Which protestant churches are there in Paris ? +How many protestant churches are there in Paris ? +Which museums are in Paris ? +What is the homepage of the cinema Cinéma Chaplin in Paris ? +Is there a bus stop at the Hôpital des Enfants Malades , Paris ? +If I was in Paris , from how many restaurants could I choose ? +If I was in Paris , from how many bars could I choose ? +Which cuisines can I choose from in Paris ? +What cuisines are available in Paris ? +Who operates the bus stop Pasteur - Lycée Buffon in Paris ? +Who is the operator of the bus stop Mairie du XV in Paris ? +Are there any castles in Paris ? +Where in Paris are castles ? +How many universities are there in Paris ? +Are there any universities in Paris ? +Is there more than one university in Paris ? +Where are banks in Paris ? +Where are information maps in Paris ? +Are there any information maps in Paris ? +Where are supermarkets in Paris ? +Which supermarkets are in Paris ? +Where are bakeries in Paris ? +Which bakeries are in Paris ? +Can you give me the book stores in Paris ? +Can you give me the location of book stores in Paris ? +Are there any Franprix in Paris ? +How many Franprix are there in Paris ? +Where are Monoprix supermarkets in Paris ? +Can you tell me the location of a Monoprix in Paris ? +Where are fire brigades in Paris ? +Are there fire brigades in Paris ? +Can you tell me where police stations are in Paris ? +There are police stations in Paris ? +Can you give me the location of libraries in Paris ? +There are libraries in Paris ? +If there are any car sharing places in Paris , can you tell me where ? +Do car sharing places exist in Paris ? +Can I find car sharing places in Paris ? +Where can I find petrol stations in Paris ? +Can you tell me the locations of petrol stations in Paris ? +Can you give me possible parking locations in Paris ? +Where in Paris can I park my car ? +Where in Paris can I park my car underground ? +In what location in Paris can a car be parked underground ? +Where are places in which taxis wait in Paris ? +Where do taxis wait in Paris ? +Where can I find a waiting taxi in Paris ? +Where can I find a dentist in Paris ? +Where should I look for a dentist in Paris ? +How many hospitals are there in Paris ? +What are the hospitals of Paris called ? +Where are hospitals in Paris ? +Is there a hospital called Hôpital Marmottan in Paris ? +Which cinemas are there in Paris ? +Which cinemas in Paris can I access with a wheelchair ? +How many cinemas are there in Paris ? +What is Paris called in Japanese ? +What is the name for Paris in Spanish ? +Is there a railway station called Pont Cardinet in Paris ? +Is there a railway station called Argentine in Paris ? +How many restaurants are there in Paris ? +What is the number of bars in Paris ? +What is the Wikipedia page of the Eiffel Tower in Paris ? +What is the Wikipedia page of the first Arrondissement in Paris ? +What is the Wikipedia page of the city Paris ? +How many schools are there in Paris ? +Can you give me the number of schools in Paris ? +What is the number of museums in Paris ? +If I was in Paris , how many museums could I visit ? +How many mountains are there in Paris ? +How many memorials can be found in Paris ? +What is the number of memorials in Paris ? +How many springs exist in Paris ? +How many fire brigades can be found in Paris ? +Can you tell me the amount of police stations Paris has ? +What is the number of police stations in Paris ? +How many book stores does Paris have ? +If I was in Paris , how many libraries could I visit ? +How many libraries lie in the city Paris ? +If I counted Paris's universities , what number would I get ? +If I counted Paris's McDonald's , what number would I get ? +How many restaurants exist in Paris that serve Asian food ? +How many restaurants exist in Paris that would serve me Greek food ? +What is the number of supermarkets in Paris ? +Can you tell me what number of supermarkets Paris has ? +In how many places could I go shopping in Paris ? +If I was in Paris how many shops could I go shopping in ? +How many pharmacies are there in Paris ? +How many castles does Paris have ? +How many car sharing points are there in Paris ? +At how many places could I find taxis in Paris ? +How many hotels lie in the city district of Paris ? +How many hotels are there in Paris ? +If I was in Paris how from how many hotels could I choose to stay in ? +How many different works of art can I look at in Paris ? +Can you tell me the location of a work of art in Paris ? +Can you tell me a pharmacy in Paris ? +Is there more than one pharmacy in Paris ? +Can I find more than I book store in Paris ? +Is there more than 1 library in Paris ? +Are there several police stations in the city of Paris ? +Is there more than 1 fire brigade in Paris ? +Does Paris have more than one castle ? +Can you please tell me the location of a hotel in Paris ? +Can you please tell me the email address of a hotel in Paris ? +Can you please tell me the homepage of hotels in Paris ? +Can you please tell me the websites of all hotels in Paris ? +Where can I find a hotel in Paris ? +Would you please tell me a name of a hotel in Paris ? +Would you please tell me a name of a hotel in Paris that has 4 stars ? +Would you please tell me a name of a hotel in Paris that I can access with a wheelchair ? +Would you please tell me a name of a hotel in Paris that is operated by Accor ? +Where are the hotels in Paris operated by Accor ? +How many hotels of Paris are operated by Accor ? +How many hotels in Paris have 3 stars ? +Please , can you give me all names of hotels in Paris that have 3 stars ? +What is the name of a hotel in Paris that can be accessed with a wheelchair ? +Would you tell me the number of hotels in Paris that one can access with a wheelchair ? +Are there 5 or more hotels in Paris ? +Can I find 10 or more hotels in Paris ? +At how many different locations could I have a picnic in Paris ? +Where is a picnic site in Paris ? +Can you give me the locations of all picnic sites in Paris ? +Are there any picnic sites in the city of Paris ? +Are there 5 or more picnic locations in Paris ? +Are there any tourist attractions in Paris ? +Where in Paris can I find attractions ? +Please , can you tell me the names of all attractions in Paris ? +Are there any nice viewpoints in Paris ? +Can I find 3 or more viewpoints in Paris ? +Would you give me the location of a nice viewpoint in Paris ? +Could you list all locations of viewpoints in Paris ? +Are there any attractions in Paris that can be accessed with a wheelchair ? +Would you please tell me where the location of an attraction in Paris is that can be accessed with a wheelchair ? +Can I play tennis anywhere in Paris ? +Are there any locations in which tennis can be played in Paris ? +Would you give me the location of a tennis court in Paris please ? +Are there several tennis courts in Paris ? +Can I practice martial arts in Paris ? +Where in Paris can I practice my martial arts ? +Are there 2 or more options to practice martial arts in Paris ? +Is there a place for rowing in Paris ? +What is a location in Paris where I can row ? +Can I go skateboarding somewhere in Paris ? +Where is it possible to skateboard in Paris ? +Could you give me all locations for skateboarding in Paris ? +Is it possible to play football somewhere in Paris ? +Where in Paris can I practice football ? +Are there several locations in Paris where one can play football ? +Please , could you give me all possible swimming locations in Paris ? +What are the names of the swimming locations in Paris ? +Is it possible to go swimming in Paris ? +In how many different locations can I go swimming in Paris ? +How many places are reserved for skateboarding in Paris ? +At how many different places can I play football in Paris ? +How many spots exist for rowing in Paris ? +In how many spots can I go climbing in Paris ? +How many tennis courts are there in Paris ? +How many viewpoints does Paris have ? +Would you tell me the number of picnic sites I can choose from in Paris ? +Where in Paris can I play table tennis ? +In how many locations of Paris can I practice my table tennis technique ? +Would you give me a location in Paris where I can play table tennis ? +How many opportunities are there to play table tennis in Paris ? +Are there several spots in Paris in which table tennis can be played ? +Where in Paris are cave entrances ? +Are there several cave entrances in Paris ? +Are there any archaeological sites in Paris ? +How many archaeological sites exist in Paris ? +Would you please list all archaeological sites in Paris ? +Can you give me the location of all archaeological sites in Paris ? +Can you give me the names of all archaeological sites in Paris ? +Can you give me the available Wikipedia pages of archaeological sites in Paris ? +Please tell me the names of theatres in Paris that my husband who sits in a wheelchair can visit ? +Please tell me the names of theatres in Paris that my mother who sits in a wheelchair can visit ? +Do tombs exist in Paris ? +Where would I find a tomb in the city Paris ? +How many tombs can be found in Paris ? +Are there any monuments in Paris ? +Where in Paris can I find a monument ? +Please , can you tell me the locations of monuments in Paris ? +Is there a street called Rue Poliveau in the 5th Arrondissement ? +Is there a street called Rue d'Amboise in the 5th Arrondissement ? +Is there a street called Boulevard de Sébastopol in the 2nd Arrondissement ? +Does a square called Place de la République exist in the 10th Arrondissement ? +Is the Avenue du Général Lemonnier in the 5th Arrondissement ? +Is the Avenue du Général Lemonnier in the 1st Arrondissement ? +Are bicycles allowed on the Avenue du Général Lemonnier in Paris ? +Is the Avenue du Général Lemonnier in Paris a one way street ? +What type of highway is the Avenue du Général Lemonnier in Paris ? +What are the maximum speeds listed for the Place de la République in Paris ? +How many lanes does the Place de la République in Paris have ? +What kind of highway is the Place de la République in Paris ? +Where in Paris are speed cameras ? +How many speed cameras exist in Paris ? +Would you tell me the location of all speed cameras in Paris ? +How many traffic signals does Paris have ? +Please , would you give me the number of traffic signals in Paris ? +Are the any road constructions in Paris at the moment ? +How many road constructions are ongoing in Paris at the moment ? +Does the A4 lead to Paris ? +Is there a motorway called A4 that leads to Paris ? +Please give me the names of the motorways in Paris ? +What are the international reference names for the motorways in Paris ? +Does Paris have any publicly available defibrillators ? +How many defibrillators does Paris have ? +Can you give me all locations of defibrillators in Paris ? +Please , would you give me the location of an emergency phone in Paris ? +How many emergency phones are there in Paris ? +Do emergency phones exist in Paris ? +What are the ambulance stations of Paris called ? +Where can the ambulance stations of Paris be found ? +How many ambulance stations does Paris have ? +Are there any fire hydrants in Paris ? +What are all the locations of fire hydrants in Paris ? +In which street in Paris is the Italian restaurant Maria Luisa ? +Does the Pizzeria Venezia in Paris offer internet access ? +Would you tell me the phone number of L'Encrier in Paris ? +Can the restaurant L'Encrier in Paris be accessed with a wheelchair ? +What kind of cuisine is served at the Chez Jenny in Paris ? +What is the telephone number of the Chez Jenny in Paris ? +Is there a restaurant called Ristorante Pellicano in Paris ? +Is smoking allowed inside the Ristorante Pellicano in Paris ? +What's the phone number of the Ristorante Pellicano in Paris ? +Is there a subway in the 8th Arrondissement ? +How many subways are in Paris ? +Would you give me the names of all Italian restaurants in Paris ? +Would you tell me what the Greek restaurants in Paris are called ? +What are the names of all Asian restaurants in Paris ? +How many Japanese restaurants are there in Paris ? +Are there any African restaurants in Paris ? +Can I eat African somewhere in Paris ? +Is there a place that serves sandwiches in Paris ? +If I was in Paris from how many restaurants that serve French food could I choose from ? +Are there any Japanese restaurants in Paris ? +What is the phone number of the Hôtel Victoria Châtelet in Paris ? +Can you tell me the website of the Hôtel Victoria Châtelet in Paris ? +In which street is the Hôtel Victoria Châtelet in Paris ? +In which street is the Le Robinet d'Or in Paris ? +How many stars does the Le Robinet d'Or in Paris have ? +Am I allowed to smoke at the Le Robinet d'Or in Paris ? +How many bakeries are there in Paris ? +Can you tell me where a bakery is in Paris ? +Would you please list all names of bakeries in Paris ? +What are the locations of all bakeries of Paris ? +Can you give me the phone number of a bakery in Paris ? +How many butchers exist in Paris ? +How many butchers in Paris can be accessed with a wheelchair ? +Can you give me the location of a butcher in Paris ? +Can you give me the location of a butcher in Paris that can be accessed with a wheelchair ? +What are the names of butchers in Paris ? +Is there anywhere in Paris where I can buy seafood ? +Is there anywhere in Paris where I can eat seafood ? +Where in Paris can I buy stationary ? +Please , can you list all locations in which I can buy stationary in Paris ? +At how many places can I buy stationary in Paris ? +How many post offices can be found in Paris ? +Where are post offices in Paris ? +Can you tell me where I can find a post office in Paris ? +Please , would you give me the location of a post office in Paris that can be accessed with a wheelchair ? +Where in Paris may I find apartments ? +How many apartments can I choose from in Paris ? +How many theatres are in Paris ? +Can you tell me the names of theatres in Paris ? +Where in Paris are theatres ? +Is there a restaurant close to the campus INF 325 in Heidelberg ? +Is there a supermarket close to the campus INF 325 in Heidelberg ? +What is the closest restaurant from Heidelberg castle ? +Which museum is closest to the Hauptbahnhof in Heidelberg ? +What is the closest international airport from Heidelberg ? +Are there any international airports around Heidelberg ? +What is the closest parking area for cars from Thalia in Heidelberg ? +What is the closest underground parking area for cars from Thalia in Heidelberg ? +How many schools are in the north of Heidelberg ? +How many train stations can be found in the north of Heidelberg ? +What are the names of cinemas that are within walking distance from the Bismarckplatz in Heidelberg ? +Which shops are around the Hard Rock Cafe in Heidelberg ? +What are the opening times of the Galeria Kaufhof that is closest to the Bismarckplatz in Heidelberg ? +How close is the closest kindergarten from Czernyring in Heidelberg ? +How far away is the next school from Angelweg in Heidelberg ? +How many schools are close to Neuenheim ? +How many schools are in Neuenheim ? +Is there a pharmacy in walking distance from Die Kamera in Heidelberg ? +What is the closest restaurant from An der Neckarspitze in Heidelberg ? +Should I take car to the closest bakery from Yorckstraße in Heidelberg ? +Is it possible to walk to the closest gym from Wieblinger Weg in Heidelberg ? +How many planetariums are in the vicinity of Heidelberg ? +Which schools in Heidelberg have a bus stop less than 200 meters away ? +How many schools in Heidelberg have a bus stop less than 200 meters away ? +What kind of amenities are close to Heidelberg-Altstadt train station ? +Where are amenities close to Heidelberg-Altstadt train station ? +Are the Heidelberg castle and the Heidelberg Hauptbahnhof within walking distance of each other ? +Which shops are within the vicinity of the Altstadt in Heidelberg ? +Which towns are around Heidelberg ? +Which towns are north of Heidelberg ? +How many kilometres are Heidelberg and Mannheim apart ? +How many miles are Heidelberg and Mannheim apart ? +How many kilometres are between Heidelberg and Stuttgart ? +What is the number of miles between Frankfurt and Heidelberg ? +Where is the closest Mercedes dealer ship from Heidelberg ? +How far away from Heidelberg is the closest planetarium ? +In which city is the closest planetarium from Heidelberg ? +In which street is the closest car dealer from Wieblingen in Heidelberg ? +How many historic manors are in day trip distance of Heidelberg ? +What is the closest historic manor from Heidelberg ? +Is there a historic manor in day trip distance from Heidelberg ? +What is the closest shop to buy a mobile phone from Mannheimer Straße in Heidelberg ? +How far do I have to drive for the closest charging station location from Heidelberg Hauptbahnhof ? +Is the closest cliff diving location within day trip distance of Heidelberg ? +Which airports are within day trip driving distance of Heidelberg ? +Please give me the location of all zoos within day trip driving distance of Heidelberg . +What is the name of the closest theme park from Heidelberg ? +How many caravan sites are in the north of Heidelberg ? +How many restaurants are in the north of Heidelberg ? +How many fast food restaurants sites are in the north of Heidelberg ? +Give me cinemas in Heidelberg that have a car park close by . +Give me cafes in Heidelberg that have a car park close by . +What is the closest pharmacy from the Heidelberg castle ? +Where are restaurants in the north of Heidelberg ? +What are the opening times of the McDonalds closest to the Hauptbahnhof in Heidelberg ? +Can you tell me where airports are that are at most 50km away from Heidelberg ? +How many locations are in the north of Heidelberg where you can play miniature golf ? +Is there a swimming pool in the north of Heidelberg ? +How many swimming pools are in the north of Heidelberg ? +Can you tell me the names of swimming pools that are at most 30km away from Heidelberg ? +Are there any golf courses in the vicinity of Heidelberg ? +Are there any vineyards in the north of Heidelberg ? +How many hotels are within walking distance of the Heidelberg castle ? +How many 3 star hotels are in the north of Heidelberg ? +Where are 4 star hotels in the north of Heidelberg ? +Where are 4 star hotels in the vicinity of Heidelberg ? +Where are springs in the north of Heidelberg ? +How many springs are in the vicinity of Heidelberg ? +What are the names of springs in the vicinity of Heidelberg ? +How many peaks in Heidelberg have car parks close by ? +How many peaks in Heidelberg have hiking maps in walking distance ? +Where are hiking maps in Heidelberg close to a car park ? +Where are the peaks in Heidelberg that have hiking maps in walking distance ? +Where are hotels in Heidelberg and what are their names ? +How many 4 star hotels are in Heidelberg and where are they ? +Can you tell me a cinema that has a restaurant in walking distance in Heidelberg ? +Can you tell me a cinema that has a bar no further than 500m away in Heidelberg ? +Where are bars were smoking is allowed and have a bus stop close by in Heidelberg ? +Where are bars were smoking is allowed and have a bus stop no further than 400m away in Heidelberg ? +Are there any parks in Heidelberg and if so where are they ? +Is there any miniature golf in Heidelberg and if so where ? +What are the names of copy shops in Heidelberg and where can I find them ? +Where can I go to play American football in the vicinity of Heidelberg ? +How many Greek restaurants are there in Heidelberg and where ? +How many Greek or Italian restaurants are there in Heidelberg ? +Where are butchers and bakeries in Heidelberg ? +How many butchers and bakeries are in Heidelberg ? +Can you play badminton or tennis in Heidelberg ? +Can you tell me the name of the closest bar or restaurant from Heidelberg castle ? +Can you tell me the name of the closest bar or restaurant from the cinema Die Kamera in Heidelberg ? +Is there anywhere near Heidelberg where I can go scuba diving ? +Can I buy scuba diving equipment anywhere in the vicinity of Heidelberg ? +Where is the closest Indian or Asian restaurant from the cinema Die Kamera in Heidelberg ? +What is the closest fast food restaurant from the main station in Heidelberg ? +What is the closest Italian or Indian restaurant from the main station in Heidelberg ? +Is an African restaurant in the walking distance from the Bismarckplatz in Heidelberg ? +Where are the closest bank and the closest pharmacy from the Yorckstraße in Heidelberg ? +Where is the closest butcher and bakery from the Mannheimer Straße in Heidelberg ? +How far apart are the Heidelberg Castle and the Heidelberg main station ? +How far apart are the Heidelberg Castle and the Heidelberg-Altstadt train station ? +Can I walk from the Heidelberg castle to the main station ? +Is it possible to walk from Heidelberg castle to the train station Heidelberg-Altstadt ? +Which archaeological sites can I find in Heidelberg ? +How many archaeological sites can I find in Heidelberg ? +Where can I find archaeological sites in Heidelberg ? +Do any archaeological sites exist in Heidelberg ? +What kind of archaeological sites exist in Heidelberg ? +How many bus stops in Heidelberg can be accessed with a wheelchair ? +How many bus stops can be found in Heidelberg ? +Where are bus stops in Heidelberg ? +Are there more than 20 bus stops in Heidelberg ? +Which bank operators do we have in Heidelberg ? +How many banks can be found in Heidelberg ? +Where are banks in the north of Heidelberg ? +Is there a bank in Wieblingen , Heidelberg ? +Where are banks with ATM's in Heidelberg ? +Where are banks that can be accessed with a wheelchair in Heidelberg ? +Can you give me the addresses of banks in Heidelberg ? +How many bike parking areas are there in Heidelberg ? +How many bicycle parking areas are there in Heidelberg ? +Where are bike parking areas are there in Heidelberg ? +Where are bicycle parking areas are there in Heidelberg ? +Are there more than one bike parking areas in Heidelberg ? +Can you list the location of all bike parking areas that are covered in Heidelberg ? +Can you list the location of all bicycle parking areas that have lockers in Heidelberg ? +Can you list the location of all bike parking areas that are covered and have lockers in Heidelberg ? +What are the capacities of the different bicycle parking areas in Heidelberg ? +Which bike rental places are there in Heidelberg ? +At how many places can I rent a bike in Heidelberg ? +Where are bike rentals in Heidelberg ? +Is there any bike rental in Heidelberg ? +Can you give me the websites of bike rentals in Heidelberg ? +Can you give me the phone numbers of bike rentals in Heidelberg ? +What are the camp sites in Heidelberg called ? +How many camp sites are there in Heidelberg ? +Where are camp sites in Heidelberg ? +Is there any camp site in Heidelberg ? +What are the names of the drinking water locations in Heidelberg ? +How many drinking water locations are there in Heidelberg ? +Where can I find drinking water in Heidelberg ? +Are there more than 2 spots with drinking water in Heidelberg ? +At which elevations can the drinking water spots be found in Heidelberg ? +How many drinking water spots can be reached with a wheelchair in Heidelberg ? +Is there a golf course in Heidelberg ? +What are the names of kindergartens in Heidelberg ? +How many kindergartens are in Heidelberg ? +Where are kindergartens in Heidelberg ? +Is there a kindergarten in Neuenheim ? +Is there a protestant kindergarten in Heidelberg ? +How many car sharing facilities are there in Heidelberg ? +Which companies are the operators of car sharing places in Heidelberg ? +Give me the websites of car sharing places in Heidelberg . +Give me the location of car sharing places in Heidelberg that are open all the time . +How many living streets are there in Heidelberg ? +How many of the living streets in Heidelberg are one way streets ? +How many swimming pools are there in Heidelberg ? +Where can I go swimming in Heidelberg ? +How many town halls are there in Heidelberg ? +Where in Heidelberg are town halls ? +How many of the town halls in Heidelberg can be accessed with a wheelchair ? +Which types of amenities are there in Heidelberg ? +What types of activities are there in Heidelberg for tourists ? +Which types of historic sites are there in Heidelberg ? +What types of land uses are recorded in Heidelberg ? +Which types of leisure activities are there in Heidelberg ? +Which types of crafts are there in Heidelberg ? +How many cemeteries are there in Heidelberg ? +Where are cemeteries in Heidelberg ? +How many quarries are there in Heidelberg ? +Where are quarries in Heidelberg ? +What archaeological sites exist in the north of Heidelberg ? +Where can I find archaeological sites in Heidelberg and what are they called ? +If there are any archaeological sites in Heidelberg , how many are there ? +Where is the closest bus stop from Thalia in Heidelberg ? +What is the closest bank with ATM's from the Heidelberg castle ? +Where is the closest bank with ATM's that can be accessed with a wheelchair from the Heidelberg castle ? +Where is the closest bank with ATM's from the Heidelberg castle and who operates it ? +Where is the closest bike parking area from Brunnengasse in Heidelberg ? +Where is the closest bike parking area that is covered from Fischergasse in Heidelberg ? +How many bike rental places are in the north of Heidelberg ? +Can you give me the websites and phone numbers of bike rentals in Heidelberg ? +Where is the closest drinking water location from the Heidelberg Hauptbahnhof ? +Where in the north of Heidelberg are drinking water locations ? +Where is the closest kindergarten from the Brunnengasse in Heidelberg and what is it called ? +Where is the closest town hall from Neuenheim , Heidelberg ? +Is there a town hall within walking distance from the Fischergasse in Heidelberg ? +What is the closest historic site from the Hauptbahnhof in Heidelberg ? +What kind of historic site is the closest one from the Hauptbahnhof in Heidelberg ? +Are there any historic sites within walking distance from the Hauptbahnhof in Heidelberg ? +How many cemeteries are there in the north of Heidelberg ? +Where are cemeteries in the north of Heidelberg ? +How many quarries are there in the north of Heidelberg ? +Are there any quarries in the north of Heidelberg ? +Where can I get petrol in Heidelberg and which brands are there ? +How far away is the nearest petrol station from the Plöck in Heidelberg ? +Where is the closest Jet petrol station from INF 325 in Heidelberg ? +Are there any petrol stations that are open 24/7 in Heidelberg ? +Where are petrol stations in the north of Heidelberg ? +Please list all location of petrol stations in Heidelberg that sell Diesel . +Does the petrol station in Bergheimer Straße of Heidelberg sell Diesel ? +Are there any memorials that are springs in Heidelberg ? +What is the closest memorial from the Königstuhl in Heidelberg and where is it ? +List all memorials that can be accessed with a wheelchair and are no further than 7km away from the Heidelberg castle . +How many memorials are there in the north of Heidelberg ? +Are there any Stolpersteine in Heidelberg ? +How many Stolpersteine can be found in Heidelberg ? +How many Stolpersteine are close to the Heidelberg castle ? +How many Stolpersteine are within walking distance from the Heidelberg castle ? +How many Stolpersteine can be found in the north of Heidelberg ? +How many Stolpersteine can be found in the vicinity of Heidelberg ? +How many Stolpersteine can be found north of Heidelberg ? +Where are Stolpersteine in the north of Heidelberg ? +According to the Stolperstein of Simon Hochherrr in Heidelberg , when was he born ? +Please list the locations of all Stolpersteine that can be accessed with a wheelchair in the north of Heidelberg ! +Please list all the birth dates of the people that have a Stolperstein in Heidelberg . +When where the various Stolpersteine in Heidelberg first laid ? +Is there a planetarium in Heidelberg ? +Where is the closest church from the Heidelberg castle ? +Where are churches close to Heidelberg castle ? +What is the closest church from Yorckstraße in Heidelberg and where is it ? +What is the closest protestant church from Fischergasse in Heidelberg and where is it ? +Where is the closest catholic church from the Heidelberg Hauptbahnhof ? +Where are mosques in the vicinity of Heidelberg ? +How many churches are there in the north of Heidelberg ? +Are there any mosques in the north of Heidelberg ? +Are there any mosques north of Heidelberg ? +How far are St. Laurentius and Kirche Jesu Christi in Heidelberg apart ? +Can I walk to the closest church from Mannheimer Straße in Heidelberg ? +Are there any places of worship for Buddhists in Heidelberg ? +Are there any communication towers in Heidelberg ? +How many communication towers are there in Heidelberg ? +Does the Südwestrundfunk have a communication tower in Heidelberg ? +Where is the Fernsehturm Heidelberg ? +How many mobile phone communication towers are there in Heidelberg ? +Who operates the Fernsehturm Heidelberg ? +Are there any water wells in Heidelberg ? +How many water wells are there in Heidelberg ? +Are there 5 or more water wells in Heidelberg ? +Is there a water well within 2km of the Heidelberg castle ? +Is there a water well within walking distance of the Heidelberg castle ? +Give me the name and location of all tourist related activities that can be accessed with a wheelchair in Heidelberg ! +Are there any ruins in Heidelberg ? +How many ruins are there in Heidelberg ? +Are there more than 20 ruins in Heidelberg ? +Can you give me the names of all ruins in Heidelberg and the Wikipedia pages when available ? +Are any of the ruins in Heidelberg temples ? +Where are ruins in Heidelberg and what are they called ? +Which ruin is closest to the Heidelberg Hauptbahnhof ? +Please give me all locations of public bathrooms in Heidelberg . +Please tell me where the closest bathroom is from the Bismarckplatz in Heidelberg . +Please tell me where bathrooms are north of the Bismarckplatz in Heidelberg . +How many second hand only stores are there in Heidelberg ? +How many second hand only stores are there in the north of Heidelberg ? +Where in Heidelberg are second hand only stores and what are their opening times ? +Are there any organic supermarkets in Heidelberg ? +Where in Heidelberg are organic supermarkets ? +Are there any organic supermarkets in the north of Heidelberg ? +Where is the closest organic supermarket from the campus INF 325 in Heidelberg ? +How many organic supermarkets are closer than 5km from the campus INF 325 in Heidelberg ? +Are there any organic supermarkets within walking distance from the campus INF 325 in Heidelberg ? +Should I take car to reach the next organic supermarket from Bismarckplatz in Heidelberg ? +What are the organic supermarkets of Heidelberg called ? +Where in Heidelberg can I recycle glass ? +Where in Heidelberg can I recycle clothes ? +Where is the closest glass recycling facility from Mannheimer Straße in Heidelberg ? +Where is the closest clothes recycling facility from Yorckstraße in Heidelberg ? +Where are piers in Heidelberg ? +How many piers are in Heidelberg ? +Where is the closest hotel from the pier Neckarsonne Ausflugsschiff in Heidelberg ? +Where is the closest restaurant or bar from the pier Neckarsonne Ausflugsschiff in Heidelberg ? +How many advertising columns are there in Heidelberg ? +Where are advertising columns in the north of Heidelberg ? +What is the closest advertising column from Die Kamera in Heidelberg ? +Are there any helipads in Heidelberg ? +Are there any helipads in the north of Heidelberg ? +Where is the closest helipad from Yorckstraße in Heidelberg ? +Are there any charging stations for electrical cars in Heidelberg and if so how many ? +Where are charging stations in Heidelberg ? +Who are the operators for charging stations in Heidelberg ? +Where is the closest charging station from the campus INF 325 in Heidelberg ? +Is there an animal shelter in Heidelberg ? +Are there several animal shelters in Heidelberg ? +What are the animal shelters of Heidelberg called ? +Are there any arts centres in Heidelberg and if so how many and where are they ? +Please give me the name and websites of all arts centres in Heidelberg ! +Is there an arts centre within walking distance from the Heidelberg Hauptbahnhof ? +Can I walk to the closest arts centre from the Heidelberg Hauptbahnhof ? +How many arts centres are around the Heidelberg Hauptbahnhof ? +Where in Heidelberg can I barbecue in public ? +Where is the closest spot to barbecue from the campus INF 325 in Heidelberg ? +Where in Heidelberg are driving schools and what are they called ? +Can you give me the names and telephone numbers of driving schools in the north of Heidelberg ? +Which driving school is closest to Mannheimer Straße in Heidelberg and where is it ? +Where are fountains in Heidelberg and how many are there ? +Can I walk to the closest fountain from the Heidelberg castle ? +How far apart are the Heidelberg castle and the Sume-Brunnen ? +How far apart are the Heidelberg castle and Don Robert ? +Where is the closest fountain from Die Kamera in Heidelberg ? +What kind of shelters are there in Heidelberg ? +What is the name of the weather shelter closest to the Königstuhl in Heidelberg and where is it ? +Where are subway stations in Île-de-France ? +How many subway stations are there in Île-de-France ? +Give me the Wikipedia pages of subway stations in Île-de-France ! +Are there any subway stations in Île-de-France that can be accessed with a wheelchair ? +Is there a post box around Alaise ? +How many post boxes are around Alaise ? +Who operates the post boxes around Alaise ? +When is the post collected from the post boxes in Alaise ? +Which networks operate bus stops in San Francisco ? +How many bus stops can be found in San Francisco ? +Where are bus stops in San Francisco ? +Are there more than 30 bus stops in San Francisco ? +Are there any abandoned theme parks ? +How many abandoned theme parks are there ? +Where are abandoned theme parks ? +What are the abandoned theme parks called ? +When did the abandoned theme parks close ? +When were the now abandoned theme parks first opened ? +What are the street names of Neuler ? +How many zip lines are there ? +Where are zip lines ? +How many conference centres are there ? +How many conference centres are in Germany ? +What are the conference centre’s names ? +Where are conference centres ? +Are there any conference centres in Germany ? +In which cities are conference centres ? +Where can I find artwork from the berlin bears ? +How many pieces of artwork are there from the berlin bears ? +Do the berlin bears have more than one piece of artwork ? +What are the pieces of art from the berlin bears called ? +What type of art do the berlin bears create ? +How many planned buildings can you find ? +Where are planned buildings ? +Are there any planned buildings ? +In which cities are planned buildings ? +How many distilleries do you count ? +Where can distilleries be found ? +In which cities are distilleries ? +What are the distilleries called ? +Give me the phone numbers of distilleries ! +What are the websites of distilleries ? +Where are distilleries that produce whisky ? +How many mine fields are there on Earth ? +Where are mine fields on Earth ? +How many kindergartens are there in Hamburg ? +Is there a kindergarten in the Wördenmoorweg street in Hamburg ? +Where are kindergartens in Hamburg ? +Can you give me the websites of kindergartens in Hamburg ? +Where in the world are remote islands ? +How many remote islands are there ? +Give me the Wikipedia pages of remote islands . +Give me the German names of the remote islands . +What are the names of the remote islands ? +What are the names of the remote islands in English ? +How many exhibition centres are listed ? +Where are exhibition centres ? +What are the exhibition centres called ? +Where can I tread water ? +Can you tread water in the Germany ? +How many places to tread water are there ? +How many places to tread water are there in Germany ? +How many public bookcases are noted ? +Are there any public bookcases in Germany ? +Where are public bookcases ? +Where are public bookcases in the Germany ? +Are there any murals in Germany ? +Are there any murals to be found in Germany ? +Where in the world are murals ? +Where are murals in Germany ? +Are there any exhibition centres in Germany ? +Where are subway stations in the north of Île-de-France ? +Where are post boxes in the north of Schriesheim ? +Where are post boxes north of Schriesheim ? +Where are bus stops in the north of San Francisco ? +What is the closest kindergarten from the Wördenmoorweg street in Hamburg called and where is it ? +Are there any Stolpersteine in Ludwigshafen am Rhein ? +How many Stolpersteine can be found in Magdeburg and Netphen ? +List all Stolpersteine found in Osnabrück . +Where are the Stolpersteine in Pinneberg ? +Where are Stolpersteine in the north of Delmenhorst ? +Who do the Stolpersteine in Kreuztal honour ? +For which people are there Stolpersteine in Bielefeld ? +Where in the world are monitoring stations for bicycles ? +Give me the websites of bicycle monitoring stations ! +How many bicycle monitoring stations are recorded ? +Where in the world are shops called Cash Converters ? +How many shops called Cash Converters are there ? +What kind of shops are shops called Cash Converters ? +How many entities with the name Driving Test Centre are there and where are they ? +Where is the Kelso ROC Post and what kind of historic site is it ? +Was Kelso ROC Post used by the military ? +Where is the Manure Pit ? +How many Marks & Spencer Food are there ? +How many Marks & Spencer Food are there in the UK ? +Where in the world are pet cemeteries ? +Are there any pet cemeteries in Germany ? +How many Volkshochschule are there in Germany ? +How many facilities for migrants are there in Witten ? +Where in Witten are facilities for migrants ? +Where is the closest migrant facility to the Witten Hauptbahnhof ? +Please list the location of all playgrounds in Stuttgart . +Where in Stuttgart are public bathrooms ? +Please list all locations of public bathrooms and playgrounds in Stuttgart . +Where are playgrounds in Stuttgart that can be accessed with wheelchairs ? +Where is the closest bathroom from Rührbrunnen in Stuttgart ? +How far is the closest bathroom from the Rührbrunnen in Stuttgart away ? +Can I walk to the closest public bathroom from the Rührbrunnen in Stuttgart ? +Where in Montpellier can I play tennis ? +How many places to play tennis are there in Montpellier ? +How many places to play tennis are there in the north of Montpellier ? +Where is the closest restaurant or bar from the Tennis Club du Parc in Montpellier ? +Is there a tennis club in Montpellier with a bus stop no further than 2km away ? +Is there a Sternstraße in Bonn ? +Which kind of shops are in the Sternstraße in Bonn ? +What are the shops in the Sternstraße in Bonn called ? +How many charging stations are there in Munich and where are they ? +Who operates the charging stations in Munich ? +Where is the closest charging station from the Frauenkirche in Munich ? +Where are post offices in Toulouse ? +Where is the closest post office from the Polyclinique du Parc in Toulouse ? +How many restaurants are there in Berlin ? +How many restaurants are there in the north of Berlin ? +Where are Italian restaurants in Berlin ? +What's the closest restaurant from the Deutscher Bundestag in Berlin ? +What's the closest restaurant from the Brandenburger Tor in Berlin ? +How far away is the closest Greek restaurant from Berlin Hauptbahnhof ? +How many schools are there in Bielefeld ? +Where are schools in Bielefeld ? +Where are schools in the north of Bielefeld ? +What are the schools of Bielefeld called and what are their websites ? +What are the primary schools of Bielefeld called ? +Where are schools in Bielefeld that can be accessed with a wheelchair ? +Where in Lyon are murals and what are they called ? +Where in the north Lyon are murals and what are they called ? +What are the names and websites of murals in Lyon ? +Who are the artists of murals in Lyon ? +Are there any murals in Lyon and if so how many ? +Where in Bretagne are breweries ? +How many breweries are there in Bretagne and where are they ? +What are the names and if available the opening times of breweries in Bretagne ? +How many breweries are there in Bretagne and what are they called ? +Where are bridges in the area of Eure-et-Loir ? +How many bridges are in the north of Eure-et-Loir ? +How many bridges are in the area of Eure-et-Loir and where are they ? +How many of the bridges in Eure-et-Loir are one way only ? +Are there any greenhouses in Dresden and if so how many and where are they ? +Where are greenhouses in the north of Dresden ? +How many fire hydrants are there in Adendorf and where are they ? +How many of the fire hydrants in Adendorf are underground ? +Are there any fire hydrants in Brietlingen ? +Where are fire hydrants in Brietlingen ? +How many of the fire hydrants in Lüneburg are underground ? +Are there any fire hydrants in Lüneburg ? +Where in Baden-Württemberg are emergency phones ? +How many and where in Baden-Württemberg are emergency phones ? +Who are the operators of emergency phones in Baden-Württemberg ? +Where in Baden-Baden are emergency sirens ? +How many emergency sirens are there in Witten ? +How many wind generators does Saxony have ? +Who are the manufacturers of wind generators in Saxony ? +Is there a street called Starenweg in Lampertheim ? +Is there a street called Blumenstraße in Lampertheim ? +What kind of historic sites can be found in Nantes ? +Are there any memorials in Nantes ? +Are there any boundary stones in Nantes ? +How many memorials or way side crosses can be found in Nantes ? +How many historic sites are in Nantes ? +How many historic sites are in the north of Nantes ? +In Nantes , what are the historic sites with inscriptions called and what is the inscription ? +Where and how many boundary stones are there in Hummelsbüttel ? +How many roundabouts does Dresden have and what are they called ? +Where are roundabouts in the north of Dresden ? +Does Dresden have 5 or more roundabouts ? +Are there any nature reserves in the Hohenlohekreis ? +How many nature reserves are there in the Hohenlohekreis ? +What are the nature reserves in the Hohenlohekreis called and where are they ? +How many playgrounds can be found in York ? +Where are playgrounds in York ? +Where and how many playgrounds are there in the north of York ? +Where is the closest playground from Ainsty Grove in York ? +How many water towers are there in Vendée ? +Where are water towers in Vendée ? +What kind of historic sites can be found in Bavaria ? +How many memorials are in Bavaria ? +Where are memorials in the north of Bavaria ? +What types of historic sites can be found in Marseille ? +Are there any monuments in Marseille and if so how many ? +Can you tell me the names of monuments in Marseille ? +Please list the location of all monuments in the north of Pays de la Loire ! +How many monuments are there in Pays de la Loire ? +Are there any caves in Osterode and if so how many ? +What are the caves in Osterode called and where are they ? +How many springs are in the north of Nîmes ? +Where in Nîmes can springs be found ? +How many springs are there in Nîmes and how many peaks ? +How many peaks are there in Languedoc-Roussillon ? +How many peaks are there in the north of Languedoc-Roussillon ? +What are the peaks in the north of Languedoc-Roussillon called and how high are they ? +If any of the peaks in the north of Languedoc-Roussillon have a Wikipedia pages , please list it . +Is there a restaurant close to the Avenue des Ternes in Paris ? +Is there a supermarket close to the Avenue des Ternes in Paris ? +What is the closest restaurant from Palais de l’Élysée in Paris ? +Which museum is closest to the Gare du Nord in Paris ? +What is the closest international airport from Paris ? +Are there any international airports around Paris ? +What is the closest parking area for cars from Librairie Galignani in Paris ? +Is there a close by underground parking area for cars from Librairie Galignani in Paris ? +How many schools are in the north of Paris ? +How many train stations can be found in the north of Paris ? +What are the names of cinemas that are within walking distance from the Place de la République in Paris ? +Which shops are around the Hard Rock Café in Paris ? +What are the opening times of La Flûte de Pan that is closest to the Place de la République in Paris ? +How close is the closest kindergarten from Rue Bernard Dimey in Paris ? +How far away is the next school from Rue des Cloys in Paris ? +How many schools are close to the 14th Arrondissement ? +How many schools are in the 14th Arrondissement ? +Is there a pharmacy in walking distance from Le Cinaxe in Paris ? +What is the closest restaurant from Rue de Cicé in Paris ? +Should I take car to the closest bakery from Rue Lauriston in Paris ? +Is it possible to walk to the closest gym from Rue Lauriston in Paris ? +How many planetariums are in the vicinity of Paris ? +Which schools in Paris have a bus stop less than 200 meters away ? +How many schools in Paris have a bus stop less than 200 meters away ? +What kind of amenities are close to Bastille train station in Paris ? +Where are amenities close to Bastille train station in Paris ? +Are the Palais de l’Élysée and Gare du Nord in Paris within walking distance of each other ? +Which shops are within the vicinity of the 5th Arrondissement in Paris ? +Which towns are around Paris ? +Which towns are north of Paris ? +How many kilometres are Paris and Rennes apart ? +How many miles are Paris and Rennes apart ? +How many kilometres are between Paris and Lyon ? +What is the number of miles between Marseille and Paris ? +Where is the closest Renault dealer ship from Paris ? +In which street is the closest car dealer from the 7th Arrondissement in Paris ? +What is the closest shop to buy a mobile phone from Quai de Béthune in Paris ? +How far do I have to drive for the closest charging station location from Paris Gare du Nord ? +Is the closest cliff diving location within day trip distance of Paris ? +Which airports are in Paris ? +Please give me the location of all zoos in Paris . +What is the name of the closest theme park from Paris ? +How many caravan sites are in the north of Paris ? +How many restaurants are in the north of Paris ? +How many fast food restaurants sites are in the north of Paris ? +Give me cinemas in Paris that have a car park close by . +Give me cafes in Paris that have a car park close by . +What is the closest pharmacy from the Palais de l’Élysée in Paris ? +Where are restaurants in the north of Paris ? +How many locations are in the north of Paris where you can play miniature golf ? +Is there a swimming pool in the north of Paris ? +How many swimming pools are in the north of Paris ? +Can you tell me the names of swimming pools that are at most 30km away from Paris ? +Are there any vineyards in the north of Paris ? +How many hotels are within walking distance of the Palais de l’Élysée in Paris ? +How many 3 star hotels are in the north of Paris ? +Where are 4 star hotels in the north of Paris ? +Where are 4 star hotels in the vicinity of Paris ? +Are there any springs in the north of Paris ? +How many springs are in the vicinity of Paris ? +What are the names of springs in the vicinity of Paris ? +Where are hotels in Paris and what are their names ? +How many 4 star hotels are in Paris and where are they ? +Can you tell me a cinema that has a restaurant in walking distance in Paris ? +Can you tell me a cinema that has a bar no further than 500m away in Paris ? +Are there any parks in Paris and if so where are they ? +Is there any miniature golf in Paris and if so where ? +What are the names of copy shops in Paris and where can I find them ? +Can I play American football somewhere close to Paris ? +How many Greek restaurants are there in Paris and where ? +How many Greek or Italian restaurants are there in Paris ? +Where are butchers and bakeries in Paris ? +How many butchers and bakeries are in Paris ? +Can you play badminton or tennis in Paris ? +Can you tell me the name of the closest bar or restaurant from Palais de l’Élysée in Paris ? +Can you tell me the name of the closest bar or restaurant from the cinema Le Cinaxe in Paris ? +Where is the closest Indian or Asian restaurant from the cinema Le Cinaxe in Paris ? +What is the closest fast food restaurant from Gare du Nord in Paris ? +What is the closest Italian or Indian restaurant from Gare du Nord in Paris ? +Is an African restaurant in the walking distance from the Place de la République in Paris ? +Where are the closest bank and the closest pharmacy from the Rue Lauriston in Paris ? +Where is the closest butcher and bakery from the Quai de Béthune in Paris ? +How far apart are the Palais de l’Élysée and Gare du Nord in Paris ? +How far apart are the Palais de l’Élysée and the Bastille train station in Paris ? +Can I walk from the Palais de l’Élysée to Gare du Nord in Paris ? +Is it possible to walk from Palais de l’Élysée to the train station Bastille in Paris ? +Which archaeological sites can I find in Paris ? +How many archaeological sites can I find in Paris ? +Where can I find archaeological sites in Paris ? +Do any archaeological sites exist in Paris ? +How many bus stops in Paris can be accessed with a wheelchair ? +How many bus stops can be found in Paris ? +Where are bus stops in Paris ? +Are there more than 20 bus stops in Paris ? +Which bank operators do we have in Paris ? +How many banks can be found in Paris ? +Where are banks in the north of Paris ? +Is there a bank in the 7th Arrondissement , Paris ? +Where are banks with ATM's in Paris ? +Where are banks that can be accessed with a wheelchair in Paris ? +Can you give me the addresses of banks in Paris ? +How many bike parking areas are there in Paris ? +How many bicycle parking areas are there in Paris ? +Where are bike parking areas are there in Paris ? +Where are bicycle parking areas are there in Paris ? +Are there more than one bike parking areas in Paris ? +Can you list the location of all bike parking areas that are covered and have lockers in Paris ? +What are the capacities of the different bicycle parking areas in Paris ? +Which bike rental places are there in Paris ? +At how many places can I rent a bike in Paris ? +Where are bike rentals in Paris ? +Is there any bike rental in Paris ? +Can you give me the websites of bike rentals in Paris ? +Can you give me the phone numbers of bike rentals in Paris ? +What are the camp sites in Paris called ? +How many camp sites are there in Paris ? +Where are camp sites in Paris ? +Is there any camp site in Paris ? +What are the names of the drinking water locations in Paris ? +How many drinking water locations are there in Paris ? +Where can I find drinking water in Paris ? +Are there more than 2 spots with drinking water in Paris ? +How many drinking water spots can be reached with a wheelchair in Paris ? +Is there a golf course in Paris ? +What are the names of kindergartens in Paris ? +How many kindergartens are in Paris ? +Where are kindergartens in Paris ? +Is there a kindergarten in the 14th Arrondissement ? +Are there kindergartens in Paris ? +How many car sharing facilities are there in Paris ? +Which companies are the operators of car sharing places in Paris ? +How many living streets are there in Paris ? +How many of the living streets in Paris are one way streets ? +How many swimming pools are there in Paris ? +Where can I go swimming in Paris ? +How many town halls are there in Paris ? +Where in Paris are town halls ? +How many of the town halls in Paris can be accessed with a wheelchair ? +Which types of amenities are there in Paris ? +What types of activities are there in Paris for tourists ? +Which types of historic sites are there in Paris ? +What types of land uses are recorded in Paris ? +Which types of leisure activities are there in Paris ? +Which types of crafts are there in Paris ? +How many cemeteries are there in Paris ? +Where are cemeteries in Paris ? +How many quarries are there in Paris ? +Are there quarries in Paris ? +What archaeological sites exist in the north of Paris ? +Where can I find archaeological sites in Paris and what are they called ? +If there are any archaeological sites in Paris , how many are there ? +Where is the closest bus stop from Librairie Galignani in Paris ? +What is the closest bank with ATM's from the Palais de l’Élysée in Paris ? +Where is the closest bank with ATM's that can be accessed with a wheelchair from the Palais de l’Élysée in Paris ? +Where is the closest bank with ATM's from the Palais de l’Élysée in Paris and who operates it ? +Where is the closest bike parking area from Avenue René Coty in Paris ? +Where is the closest bike parking area that is covered from Rue Vercingétorix in Paris ? +How many bike rental places are in the north of Paris ? +Can you give me the websites and phone numbers of bike rentals in Paris ? +Where is the closest drinking water location from Gare du Nord in Paris ? +Where in the north of Paris are drinking water locations ? +Where is the closest kindergarten from the Avenue René Coty in Paris and what is it called ? +Where is the closest town hall from the 14th Arrondissement , Paris ? +Is there a town hall within walking distance from the Rue Vercingétorix in Paris ? +What is the closest historic site from the Gare du Nord in Paris ? +What kind of historic site is the closest one from the Gare du Nord in Paris ? +Are there any historic sites within walking distance from the Gare du Nord in Paris ? +How many cemeteries are there in the north of Paris ? +Where are cemeteries in the north of Paris ? +Where can I get petrol in Paris and which brands are there ? +How far away is the nearest petrol station from the Avenue de Ségur in Paris ? +Where is the closest Esso petrol station from Avenue des Ternes in Paris ? +Are there any petrol stations that are open 24/7 in Paris ? +Where are petrol stations in the north of Paris ? +Please list all location of petrol stations in Paris that sell Diesel . +What is the closest memorial from the Rue Fragonard in Paris and where is it ? +List all memorials that can be accessed with a wheelchair and are no further than 7km away from the Palais de l’Élysée in Paris . +How many memorials are there in the north of Paris ? +Is there a planetarium in Paris ? +Where is the closest church from the Palais de l’Élysée in Paris ? +Where are churches close to Palais de l’Élysée in Paris ? +What is the closest church from Rue Lauriston in Paris and where is it ? +What is the closest protestant church from Rue Vercingétorix in Paris and where is it ? +Where is the closest catholic church from Gare du Nord in Paris ? +Where are mosques in the vicinity of Paris ? +How many churches are there in the north of Paris ? +Are there any mosques in the north of Paris ? +Are there any mosques north of Paris ? +How far are Chapelle Saint-Bernard and Chapelle Sainte-Marie in Paris apart ? +Can I walk to the closest church from Quai de Béthune in Paris ? +Are there any places of worship for Buddhists in Paris ? +Is there a fountain within 2km of the Palais de l’Élysée in Paris ? +Is there a fountain within walking distance of the Palais de l’Élysée in Paris ? +Give me the name and location of all tourist related activities that can be accessed with a wheelchair in Paris ! +Where are the closest public bathrooms from Gare du Nord in Paris ? +Please give me all locations of public bathrooms in Paris . +Please tell me where the closest bathroom is from the Place de la République in Paris . +Please tell me where bathrooms are north of the Place de la République in Paris . +How many second hand only stores are there in Paris ? +How many second hand only stores are there in the north of Paris ? +Where in Paris are second hand only stores and what are their opening times ? +Are there any organic supermarkets in Paris ? +Where in Paris are organic supermarkets ? +Are there any organic supermarkets in the north of Paris ? +Where is the closest organic supermarket from the Avenue des Ternes in Paris ? +How many organic supermarkets are closer than 5km from the Avenue des Ternes in Paris ? +Are there any organic supermarkets within walking distance from the Avenue des Ternes in Paris ? +Should I take car to reach the next organic supermarket from Place de la République in Paris ? +What are the organic supermarkets of Paris called ? +Where in Paris can I recycle glass ? +Where in Paris can I recycle clothes ? +Where is the closest glass recycling facility from Quai de Béthune in Paris ? +Where is the closest clothes recycling facility from Rue Lauriston in Paris ? +Where are piers in Paris ? +How many piers are in Paris ? +How many advertising columns are there in Paris ? +Where are advertising columns in the north of Paris ? +What is the closest advertising column from Le Cinaxe in Paris ? +Are there any helipads in Paris ? +Are there any helipads in the north of Paris ? +Where is the closest helipad from Rue Lauriston in Paris ? +Are there any charging stations for electrical cars in Paris and if so how many ? +Where are charging stations in Paris ? +Who are the operators for charging stations in Paris ? +Where is the closest charging station from the Avenue des Ternes in Paris ? +Are there any arts centres in Paris and if so how many and where are they ? +Please give me the name and websites of all arts centres in Paris ! +Is there an arts centre within walking distance from Gare du Nord in Paris ? +Can I walk to the closest arts centre from Gare du Nord in Paris ? +How many arts centres are around Gare du Nord in Paris ? +Where in Paris can I barbecue in public ? +Where is the closest school from the Avenue des Ternes in Paris ? +Where in Paris are driving schools and what are they called ? +Can you give me the names and telephone numbers of driving schools in the north of Paris ? +Which driving school is closest to Quai de Béthune in Paris and where is it ? +Where are fountains in Paris and how many are there ? +Can I walk to the closest fountain from the Palais de l’Élysée in Paris ? +How far apart are the Palais de l’Élysée and the Léon de Bruxelles in Paris ? +How far apart are the Palais de l’Élysée and Eiffel Tower in Paris ? +Where is the closest fountain from Le Cinaxe in Paris ? +What kind of shelters are there in Paris ? +What is the name of the weather shelter closest to the Rue Fragonard in Paris and where is it ? +Which arts centres are there in Paris ? +How many arts centres are there in Paris ? +Where are arts centres in Paris ? +Are there more than 5 arts centres in Paris ? +Can you give me the websites of arts centres in Paris ? +Can you give me the phone numbers of arts centres in Paris ? +Can you give me the Wikipedia pages of arts centres in Paris ? +Can you give me the addresses of arts centres in Paris ? +Where are museums in Paris ? +Where are museums that I can visit with a wheelchair in Paris ? +Give me the websites of museums in Paris . +Tell me the phone numbers of museums in Paris . +What are the Wikipedia pages of museums in Paris ? +Which museums in Paris have wlan ? +Which museums in Paris have free wlan ? +Is there an arts centre close to the Eiffel Tower in Paris ? +Which is the closest arts centre from Notre Dame in Paris ? +Can I walk to the closest arts centre from the Musee du Louvre in Paris ? +How many arts centres are in the north of Paris ? +Where is the closest arts centre from the Musee du Louvre in Paris and what is it called ? +Which is the closest arts centre from the Eiffel Tower in Paris ? +Where are museums in the north of Paris ? +How far apart are the Eiffel Tower and Notre Dame in Paris ? +How far apart are the Musee du Louvre and the Arc de Triomphe in Paris ? +Can I walk from Musee du Louvre to Arc de Triomphe in Paris ? +What are the websites and names of the museums or art centres in walking distance of the Eiffel Tower in Paris ? +What are the websites of the museums or art centres in walking distance of the Eiffel Tower in Paris ? +What is the name of the closest museum or art centre from the Eiffel Tower in Paris ? +What is the name of the closest museum or art centre from Notre Dame in Paris ? +What are the phone numbers and names of the museums at most 5km away from the Eiffel Tower in Paris ? +What are the phone numbers and names of the museums at most 10km away from Notre Dame in Paris ? +Where in the north of Paris can I exchange money ? +What is the closest money exchange from the Eiffel Tower in Paris ? +What is the closest money exchange from Gare du Nord in Paris ? +At how many places in the north of Paris can I exchange money ? +How many embassies are there in Paris ? +Which countries have an embassy in Paris ? +Please list the names of the embassies in Paris . +How many prisons does Paris count ? +What are the names of the Prisons in Paris and their Wikipedia pages ? +Where are the prisons of Paris located ? +Are there any cathedrals in Paris and if so what are they called ? +What are the denominations of the cathedrals in Paris ? +Where are cathedrals in Paris and what are they called ? +Are there 5 or more cathedrals in Paris ? +Is Notre Dame a cathedral in Paris ? +Is Sacre Coeur classed as a cathedral in Paris ? +How many cathedrals are there in the north of Paris ? +What colour does the roof of the Sacre Coeur in Paris have ? +Can the Sacre Coeur in Paris be accessed with a wheelchair ? +Where in Paris is the Sacre Coeur ? +Can I walk from Gare du Nord to the Sacre Coeur in Paris ? +What's the closest restaurant from the Sacre Coeur in Paris and where is it ? +Are there any tombs in Paris ? +Are there 13 or more tombs in Paris ? +Where are tombs in Paris ? +What are the tombs in Paris called and what are their Wikipedia pages ? +How many tombs are in the north of Paris ? +Is there a restaurant close to Lothian Road in Edinburgh ? +Is there a supermarket close to Lothian Road in Edinburgh ? +What is the closest restaurant from Camera Obscura in Edinburgh ? +Which museum is closest to Edinburgh Waverley ? +What is the closest airport from Edinburgh ? +Are there any airports around Edinburgh ? +Where is the closest parking area for cars from Waterstones in Edinburgh ? +Where is the closest underground parking area for cars from Waterstones in Edinburgh ? +How many schools are in the north of Edinburgh ? +How many train stations can be found in the north of Edinburgh ? +What are the names of cinemas that are within walking distance from High Street in Edinburgh ? +Which shops are around the Hard Rock Cafe in Edinburgh ? +What are the opening times of the Tesco that is closest to the Deaconess Garden in Edinburgh ? +How close is the closest kindergarten from Ulster Drive in Edinburgh ? +How far away is the next school from Restalrig Avenue in Edinburgh ? +How many schools are close to Restalrig ? +Is there a pharmacy in walking distance from Vue in Edinburgh ? +What is the closest restaurant from King Street in Edinburgh ? +Should I take car to the closest bakery from Mary King's Close in Edinburgh ? +Is it possible to walk to the closest gym from Viewforth in Edinburgh ? +How many planetariums are in the vicinity of Edinburgh ? +Which schools in Edinburgh have a bus stop less than 200 meters away ? +How many schools in Edinburgh have a bus stop less than 200 meters away ? +What kind of amenities are close to Haymarket train station in Edinburgh ? +Where are amenities close to Haymarket train station in Edinburgh ? +Are the Palace of Holyroodhouse and the Edinburgh Waverley within walking distance of each other ? +Which shops are within the vicinity of Alnwickhill in Edinburgh ? +Which towns are around Edinburgh ? +Which towns are north of Edinburgh ? +How many kilometres are Edinburgh and Leeds apart ? +How many miles are Edinburgh and Leeds apart ? +How many kilometres are between Edinburgh and Glasgow ? +What is the number of miles between Aberdeen and Edinburgh ? +Where is the closest Vauxhall dealer ship from Edinburgh ? +Is there a planetarium in the vicinity of Edinburgh ? +Are there any planetariums in the vicinity of Edinburgh ? +In which street is the closest car dealer from Carrick Knowe in Edinburgh ? +How many historic manors are in day trip distance of Edinburgh ? +What is the closest historic manor from Edinburgh ? +Is there a historic manor in day trip distance from Edinburgh ? +What is the closest shop to buy a mobile phone from Newhaven Road in Edinburgh ? +How far do I have to drive for the closest charging station location from Edinburgh Waverley ? +Is the closest cliff diving location within day trip distance of Edinburgh ? +Which airports are within day trip driving distance of Edinburgh ? +Please give me the location of all zoos within day trip driving distance of Edinburgh . +What is the name of the closest theme park from Edinburgh ? +How many caravan sites are in the north of Edinburgh ? +How many restaurants are in the north of Edinburgh ? +How many fast food restaurants sites are in the north of Edinburgh ? +Give me cinemas in Edinburgh that have a car park close by . +Give me cafes in Edinburgh that have a car park close by . +What is the closest pharmacy from the Palace of Holyroodhouse in Edinburgh ? +Where are restaurants in the north of Edinburgh ? +What are the opening times of the Sainsbury's Local closest to the Edinburgh Waverley in Edinburgh ? +Can you tell me where airports are that are at most 50km away from Edinburgh ? +How many locations are in the north of Edinburgh where you can play miniature golf ? +Is there a swimming pool in the north of Edinburgh ? +How many swimming pools are in the north of Edinburgh ? +Can you tell me the names of swimming pools that are at most 30km away from Edinburgh ? +Are there any golf courses in the vicinity of Edinburgh ? +Are there any vineyards in the north of Edinburgh ? +How many hotels are within walking distance of the Palace of Holyroodhouse in Edinburgh ? +How many 3 star hotels are in the north of Edinburgh ? +Where are 4 star hotels in the north of Edinburgh ? +Where are 4 star hotels in the vicinity of Edinburgh ? +Where are springs in the north of Edinburgh ? +How many springs are in the vicinity of Edinburgh ? +What are the names of springs in the vicinity of Edinburgh ? +How many peaks in Edinburgh have car parks close by ? +How many peaks in Edinburgh have hiking maps in walking distance ? +Where are hiking maps close to a car park in Edinburgh ? +Where are the peaks in Edinburgh that have hiking maps in walking distance ? +Where are hotels in Edinburgh and what are their names ? +How many 4 star hotels are in Edinburgh and where are they ? +Can you tell me a cinema that has a restaurant in walking distance in Edinburgh ? +Can you tell me a cinema that has a bar no further than 500m away in Edinburgh ? +Where are bars with a bus stop close by in Edinburgh ? +Where are bars with a bus stop no further than 400m away in Edinburgh ? +Are there any parks in Edinburgh and if so where are they ? +Is there any miniature golf in Edinburgh and if so where ? +What are the names of copy shops in Edinburgh and where can I find them ? +Where can I go to play American football in the vicinity of Edinburgh ? +How many Greek restaurants are there in Edinburgh and where ? +How many Greek or Italian restaurants are there in Edinburgh ? +Where are butchers and bakeries in Edinburgh ? +How many butchers and bakeries are in Edinburgh ? +Can you play badminton or tennis in Edinburgh ? +Can you tell me the name of the closest bar or restaurant from Longstone Park in Edinburgh ? +Can you tell me the name of the closest bar or restaurant from the cinema Vue in Edinburgh ? +Is there anywhere near Edinburgh where I can go scuba diving ? +Can I buy scuba diving equipment anywhere in the vicinity of Edinburgh ? +Where is the closest Indian or Asian restaurant from the cinema Vue in Edinburgh ? +What is the closest fast food restaurant from the Edinburgh Waverley ? +What is the closest Italian or Indian restaurant from the Edinburgh Waverley ? +Is an African restaurant in the walking distance from High Street in Edinburgh ? +Where is the closest bank and the closest pharmacy from the Mary King's Close in Edinburgh ? +Where is the closest butcher and bakery from the Newhaven Road in Edinburgh ? +How far apart are the Palace of Holyroodhouse and Edinburgh Waverley ? +How far apart are the Palace of Holyroodhouse and the Haymarket train station in Edinburgh ? +Can I walk from the Palace of Holyroodhouse to Edinburgh Waverley ? +Is it possible to walk from Palace of Holyroodhouse to the train station Haymarket in Edinburgh ? +Which archaeological sites can I find in Edinburgh ? +How many archaeological sites can I find in Edinburgh ? +Where can I find archaeological sites in Edinburgh ? +Do any archaeological sites exist in Edinburgh ? +What kind of archaeological sites exist in Edinburgh ? +How many bus stops in Edinburgh can be accessed with a wheelchair ? +How many bus stops can be found in Edinburgh ? +Where are bus stops in Edinburgh ? +Are there more than 20 bus stops in Edinburgh ? +Which bank operators do we have in Edinburgh ? +How many banks can be found in Edinburgh ? +Where are banks in the north of Edinburgh ? +Is there a bank in Fountainbridge , Edinburgh ? +Where are banks with ATM's in Edinburgh ? +Where are banks that can be accessed with a wheelchair in Edinburgh ? +Can you give me the addresses of banks in Edinburgh ? +How many bike parking areas are there in Edinburgh ? +How many bicycle parking areas are there in Edinburgh ? +Where are bike parking areas are there in Edinburgh ? +Where are bicycle parking areas are there in Edinburgh ? +Is there more than one bike parking areas in Edinburgh ? +Can you list the location of all bike parking areas that are covered in Edinburgh ? +Can you list the location of all bicycle parking areas that have lockers in Edinburgh ? +Can you list the location of all bike parking areas that are covered and have lockers in Edinburgh ? +What are the capacities of the different bicycle parking areas in Edinburgh ? +What are the camp sites in Edinburgh called ? +How many camp sites are there in Edinburgh ? +Where are camp sites in Edinburgh ? +Is there any camp site in Edinburgh ? +How many drinking water locations are there in Edinburgh ? +Where can I find drinking water in Edinburgh ? +Are there more than 2 spots with drinking water in Edinburgh ? +Is there a golf course in Edinburgh ? +What are the names of kindergartens in Edinburgh ? +How many kindergartens are in Edinburgh ? +Where are kindergartens in the north of Edinburgh ? +Is there a kindergarten in Edinburgh ? +How many car sharing facilities are there in Edinburgh ? +Which companies are the operators of car sharing places in Edinburgh ? +Give me the websites of car sharing places in Edinburgh . +How many living streets are there in Edinburgh ? +How many swimming pools are there in Edinburgh ? +Where can I go swimming in Edinburgh ? +How many town halls are there in Edinburgh ? +Where in Edinburgh are town halls ? +Which types of amenities are there in Edinburgh ? +What types of activities are there in Edinburgh for tourists ? +Which types of historic sites are there in Edinburgh ? +What types of land uses are recorded in Edinburgh ? +Which types of leisure activities are there in Edinburgh ? +Which types of crafts are there in Edinburgh ? +How many cemeteries are there in Edinburgh ? +Where are cemeteries in Edinburgh ? +How many quarries are there in Edinburgh ? +Where are quarries in Edinburgh ? +What archaeological sites exist in the north of Edinburgh ? +Where can I find archaeological sites in Edinburgh and what are they called ? +If there are any archaeological sites in Edinburgh , how many are there ? +Where is the closest bus stop from Waterstones in Edinburgh ? +What is the closest bank with ATM's from the Palace of Holyroodhouse in Edinburgh ? +Where is the closest bank with ATM's from the Palace of Holyroodhouse in Edinburgh and who operates it ? +Where is the closest bike parking area from Princes Street in Edinburgh ? +Where is the closest bike parking area that is covered from Castlehill in Edinburgh ? +How many fish and chips places are in the north of Edinburgh ? +Can you give me the names and opening times of fish and chips places in Edinburgh ? +Where is the closest drinking water location from the Edinburgh Waverley ? +Where in the north of Edinburgh are drinking water locations ? +Where is the closest kindergarten from the Princes Street in Edinburgh and what is it called ? +Where is the closest town hall from Restalrig , Edinburgh ? +Is there a town hall within walking distance from the Castlehill in Edinburgh ? +What is the closest historic site from the Waverley in Edinburgh ? +What kind of historic site is the closest one from the Waverley in Edinburgh ? +Are there any historic sites within walking distance from the Waverley in Edinburgh ? +How many cemeteries are there in the north of Edinburgh ? +Where are cemeteries in the north of Edinburgh ? +How many quarries are there in the north of Edinburgh ? +Are there any quarries in the north of Edinburgh ? +Where can I get petrol in Edinburgh and which brands are there ? +How far away is the nearest petrol station from Cambridge Gardens in Edinburgh ? +Where is the closest Jet petrol station from Lothian Road in Edinburgh ? +Are there any petrol stations that are open 24/7 in Edinburgh ? +Where are petrol stations in the north of Edinburgh ? +Please list all location of petrol stations in Edinburgh that sell Diesel . +Are there any memorials that are springs in Edinburgh ? +What is the closest memorial from the Calton Hill in Edinburgh and where is it ? +List all memorials that can be accessed with a wheelchair and are no further than 7km away from the Palace of Holyroodhouse in Edinburgh . +How many memorials are there in the north of Edinburgh ? +Is there a planetarium in Edinburgh ? +Where is the closest church from the Palace of Holyroodhouse in Edinburgh ? +Where are churches close to Palace of Holyroodhouse in Edinburgh ? +What is the closest church from Mary King's Close in Edinburgh and where is it ? +What is the closest church from Castlehill in Edinburgh and where is it ? +Where is the closest catholic church from the Edinburgh Waverley ? +Where are mosques in the vicinity of Edinburgh ? +How many churches are there in the north of Edinburgh ? +Are there any mosques in the north of Edinburgh ? +Are there any mosques north of Edinburgh ? +How far are Pilrig St Paul's and True Jesus Church in Edinburgh apart ? +Can I walk to the closest church from Newhaven Road in Edinburgh ? +Are there any places of worship for Buddhists in Edinburgh ? +Are there any communication towers in Edinburgh ? +How many communication towers are there in Edinburgh ? +Does O2 have a communication tower in Edinburgh ? +Where are the communication towers from O2 Edinburgh ? +How many mobile phone communication towers are there in Edinburgh ? +How many communication towers does O2 have in Edinburgh ? +Are there any water wells in Edinburgh ? +How many water wells are there in Edinburgh ? +Are there 5 or more water wells in Edinburgh ? +Is there a water well within 2km of the Palace of Holyroodhouse in Edinburgh ? +Is there a water well within walking distance of the Palace of Holyroodhouse in Edinburgh ? +Give me the name and location of all tourist related activities that can be accessed with a wheelchair in Edinburgh ! +Please give me all locations of public bathrooms in Edinburgh . +Please tell me where the closest bathroom is from High Street in Edinburgh . +Please tell me where bathrooms are north of High Street in Edinburgh . +How many second hand only stores are there in Edinburgh ? +How many second hand only stores are there in the north of Edinburgh ? +Where in Edinburgh are second hand only stores and what are their opening times ? +Are there any organic supermarkets in Edinburgh ? +Where in Edinburgh are organic supermarkets ? +Are there any organic supermarkets in the north of Edinburgh ? +Where is the closest organic supermarket from Lothian Road in Edinburgh ? +How many organic supermarkets are closer than 5km from Lothian Road in Edinburgh ? +Are there any organic supermarkets within walking distance from Lothian Road in Edinburgh ? +Should I take car to reach the next organic supermarket from High Street in Edinburgh ? +What are the organic supermarkets of Edinburgh called ? +Where in Edinburgh can I recycle glass ? +Where in Edinburgh can I recycle clothes ? +Where is the closest glass recycling facility from Newhaven Road in Edinburgh ? +Where is the closest clothes recycling facility from Mary King's Close in Edinburgh ? +Where are piers in Edinburgh ? +How many piers are in Edinburgh ? +Where is the closest hotel from the Hawes Pier in Edinburgh ? +Where is the closest restaurant or bar from the Hawes Pier in Edinburgh ? +How many advertising columns are there in Edinburgh ? +Where are advertising columns in the north of Edinburgh ? +What is the closest advertising column from Vue in Edinburgh ? +Are there any helipads in Edinburgh ? +Are there any helipads in the north of Edinburgh ? +Where is the closest helipad from Mary King's Close in Edinburgh ? +How many helipads are there in Edinburgh ? +Are there any charging stations for electrical cars in Edinburgh and if so how many ? +Where are charging stations in Edinburgh ? +Who are the operators for charging stations in Edinburgh ? +Where is the closest charging station from Lothian Road in Edinburgh ? +Is there a animal shelter in Edinburgh ? +Are there several animal shelters in Edinburgh ? +What are the animal shelters of Edinburgh called ? +Are there any arts centres in Edinburgh and if so how many and where are they ? +Please give me the name and websites of all arts centres in Edinburgh ! +Is there an arts centre within walking distance from the Edinburgh Waverley ? +Can I walk to the closest arts centre from the Edinburgh Waverley ? +How many arts centres are around the Edinburgh Waverley ? +Where in Edinburgh can I barbecue in public ? +Where are fountains in Edinburgh and how many are there ? +Can I walk to the closest fountain from the Palace of Holyroodhouse in Edinburgh ? +How far apart are the Palace of Holyroodhouse and the Calton Hill in Edinburgh ? +How far apart are the Palace of Holyroodhouse and Camera Obscura in Edinburgh ? +Where is the closest fountain from Vue in Edinburgh ? +Where in the north of Edinburgh can I exchange money ? +What is the closest money exchange from the Edinburgh Castle ? +What is the closest money exchange from Edinburgh Waverley ? +At how many places in the north of Edinburgh can I exchange money ? +Are there any cathedrals in Edinburgh and if so what are they called ? +What are the denominations of the cathedrals in Edinburgh ? +Where are cathedrals in Edinburgh and what are they called ? +Are there 5 or more cathedrals in Edinburgh ? +Is St Mary's Episcopal Cathedral a cathedral in Edinburgh ? +Is Cramond Kirk classed as a cathedral in Edinburgh ? +How many cathedrals are there in the north of Edinburgh ? +Are there any tombs in Edinburgh ? +Are there 13 or more tombs in Edinburgh ? +Where are tombs in Edinburgh ? +What are the tombs in Edinburgh called and what are their Wikipedia pages ? +How many tombs are in the north of Edinburgh ? +How many embassies are there in Edinburgh ? +Which countries have an embassy in Edinburgh ? +Please list the names of the embassies in Edinburgh . +How many prisons does Edinburgh count ? +What are the names of the Prisons in Edinburgh ? +Where are the prisons of Edinburgh located ? +Are any of the prisons of Edinburgh attractions for tourists ? +Are there any viaducts in Edinburgh and if so how many ? +Where in Edinburgh are viaducts ? +Who operates the bridges of Edinburgh ? +How many bridges are there in Edinburgh and what are they called ? +How many bridges can be found in the north of Edinburgh and where are they ? +Is there a harbour in Edinburgh ? +How many harbours are in Edinburgh ? +Where can harbours be found in Edinburgh ? +Are there any megalith in Edinburgh and if so , where ? +How far away is the closest megalith from the Edinburgh airport ? +How far away is the Cat Stane megalith from the Edinburgh airport ? +How far away is Calton Hill from the Edinburgh airport ? +How far away is Calton Hill from the Palace of Holyroodhouse in Edinburgh ? +Where is the closest KFC from Edinburgh castle ? +How many KFC are there in the north of Edinburgh ? +Please give me the location the of Edinburgh Castle . +What is the closest hotel from the Edinburgh castle and where is it ? +How many schools are in the east of Heidelberg ? +How many train stations can be found in the east of Heidelberg ? +Which towns are east of Heidelberg ? +How many caravan sites are in the east of Heidelberg ? +How many restaurants are in the east of Heidelberg ? +How many fast food restaurants sites are in the east of Heidelberg ? +Where are restaurants in the east of Heidelberg ? +How many locations are in the east of Heidelberg where you can play miniature golf ? +Is there a swimming pool in the east of Heidelberg ? +How many swimming pools are in the east of Heidelberg ? +Are there any vineyards in the east of Heidelberg ? +How many 3 star hotels are in the east of Heidelberg ? +Where are 4 star hotels in the east of Heidelberg ? +Where are springs in the east of Heidelberg ? +Where are banks in the east of Heidelberg ? +What archaeological sites exist in the east of Heidelberg ? +How many bike rental places are in the east of Heidelberg ? +Where in the east of Heidelberg are drinking water locations ? +How many cemeteries are there in the east of Heidelberg ? +Where are cemeteries in the east of Heidelberg ? +How many quarries are there in the east of Heidelberg ? +Are there any quarries in the east of Heidelberg ? +Where are petrol stations in the east of Heidelberg ? +How many memorials are there in the east of Heidelberg ? +How many Stolpersteine can be found in the east of Heidelberg ? +How many Stolpersteine can be found east of Heidelberg ? +Where are Stolpersteine in the east of Heidelberg ? +Please list the locations of all Stolpersteine that can be accessed with a wheelchair in the east of Heidelberg ! +How many churches are there in the east of Heidelberg ? +Are there any mosques in the east of Heidelberg ? +Are there any mosques east of Heidelberg ? +Where are post boxes in the east of Schriesheim ? +Where are post boxes east of Schriesheim ? +Where are bus stops in the east of San Francisco ? +Please tell me where bathrooms are east of the Bismarckplatz in Heidelberg . +How many second hand only stores are there in the east of Heidelberg ? +Are there any organic supermarkets in the east of Heidelberg ? +Where are advertising columns in the east of Heidelberg ? +Are there any helipads in the east of Heidelberg ? +Can you give me the names and telephone numbers of driving schools in the east of Heidelberg ? +How many places to play tennis are there in the east of Montpellier ? +How many restaurants are there in the east of Berlin ? +Where are schools in the east of Bielefeld ? +Where in the east Lyon are murals and what are they called ? +How many bridges are in the east of Eure-et-Loir ? +Where are greenhouses in the east of Dresden ? +How many historic sites are in the east of Nantes ? +Where are roundabouts in the east of Dresden ? +Where and how many playgrounds are there in the east of York ? +Where are memorials in the east of Bavaria ? +Please list the location of all monuments in the east of Pays de la Loire ! +How many springs are in the east of Nîmes ? +How many peaks are there in the east of Languedoc-Roussillon ? +What are the peaks in the east of Languedoc-Roussillon called and how high are they ? +If any of the peaks in the east of Languedoc-Roussillon have a Wikipedia pages , please list it . +How many schools are in the east of Paris ? +How many train stations can be found in the east of Paris ? +Which towns are east of Paris ? +How many caravan sites are in the east of Paris ? +How many restaurants are in the east of Paris ? +How many fast food restaurants sites are in the east of Paris ? +Where are restaurants in the east of Paris ? +How many locations are in the east of Paris where you can play miniature golf ? +Is there a swimming pool in the east of Paris ? +How many swimming pools are in the east of Paris ? +Are there any vineyards in the east of Paris ? +How many 3 star hotels are in the east of Paris ? +Where are 4 star hotels in the east of Paris ? +Are there any springs in the east of Paris ? +Where are banks in the east of Paris ? +What archaeological sites exist in the east of Paris ? +How many bike rental places are in the east of Paris ? +Where in the east of Paris are drinking water locations ? +How many cemeteries are there in the east of Paris ? +Where are cemeteries in the east of Paris ? +Where are petrol stations in the east of Paris ? +How many memorials are there in the east of Paris ? +How many churches are there in the east of Paris ? +Are there any mosques in the east of Paris ? +Are there any mosques east of Paris ? +Please tell me where bathrooms are east of the Place de la République in Paris . +How many second hand only stores are there in the east of Paris ? +Are there any organic supermarkets in the east of Paris ? +Where are advertising columns in the east of Paris ? +Are there any helipads in the east of Paris ? +Can you give me the names and telephone numbers of driving schools in the east of Paris ? +How many arts centres are in the east of Paris ? +Where are museums in the east of Paris ? +Where in the east of Paris can I exchange money ? +At how many places in the east of Paris can I exchange money ? +How many cathedrals are there in the east of Paris ? +How many tombs are in the east of Paris ? +How many schools are in the east of Edinburgh ? +How many train stations can be found in the east of Edinburgh ? +Which towns are east of Edinburgh ? +How many caravan sites are in the east of Edinburgh ? +How many restaurants are in the east of Edinburgh ? +How many fast food restaurants sites are in the east of Edinburgh ? +Where are restaurants in the east of Edinburgh ? +How many locations are in the east of Edinburgh where you can play miniature golf ? +Is there a swimming pool in the east of Edinburgh ? +How many swimming pools are in the east of Edinburgh ? +Are there any vineyards in the east of Edinburgh ? +How many 3 star hotels are in the east of Edinburgh ? +Where are 4 star hotels in the east of Edinburgh ? +Where are springs in the east of Edinburgh ? +Where are banks in the east of Edinburgh ? +Where are kindergartens in the east of Edinburgh ? +What archaeological sites exist in the east of Edinburgh ? +How many fish and chips places are in the east of Edinburgh ? +Where in the east of Edinburgh are drinking water locations ? +How many cemeteries are there in the east of Edinburgh ? +Where are cemeteries in the east of Edinburgh ? +How many quarries are there in the east of Edinburgh ? +Are there any quarries in the east of Edinburgh ? +Where are petrol stations in the east of Edinburgh ? +How many memorials are there in the east of Edinburgh ? +How many churches are there in the east of Edinburgh ? +Are there any mosques in the east of Edinburgh ? +Are there any mosques east of Edinburgh ? +Please tell me where bathrooms are east of High Street in Edinburgh . +How many second hand only stores are there in the east of Edinburgh ? +Are there any organic supermarkets in the east of Edinburgh ? +Where are advertising columns in the east of Edinburgh ? +Are there any helipads in the east of Edinburgh ? +Where in the east of Edinburgh can I exchange money ? +At how many places in the east of Edinburgh can I exchange money ? +How many cathedrals are there in the east of Edinburgh ? +How many tombs are in the east of Edinburgh ? +How many bridges can be found in the east of Edinburgh and where are they ? +How many KFC are there in the east of Edinburgh ? +How many schools are in the west of Heidelberg ? +How many train stations can be found in the west of Heidelberg ? +Which towns are west of Heidelberg ? +How many caravan sites are in the west of Heidelberg ? +How many restaurants are in the west of Heidelberg ? +How many fast food restaurants sites are in the west of Heidelberg ? +Where are restaurants in the west of Heidelberg ? +How many locations are in the west of Heidelberg where you can play miniature golf ? +Is there a swimming pool in the west of Heidelberg ? +How many swimming pools are in the west of Heidelberg ? +Are there any vineyards in the west of Heidelberg ? +How many 3 star hotels are in the west of Heidelberg ? +Where are 4 star hotels in the west of Heidelberg ? +Where are banks in the west of Heidelberg ? +What archaeological sites exist in the west of Heidelberg ? +How many bike rental places are in the west of Heidelberg ? +How many cemeteries are there in the west of Heidelberg ? +Where are cemeteries in the west of Heidelberg ? +How many quarries are there in the west of Heidelberg ? +Are there any quarries in the west of Heidelberg ? +Where are petrol stations in the west of Heidelberg ? +How many memorials are there in the west of Heidelberg ? +How many Stolpersteine can be found in the west of Heidelberg ? +How many Stolpersteine can be found west of Heidelberg ? +Where are Stolpersteine in the west of Heidelberg ? +Please list the locations of all Stolpersteine that can be accessed with a wheelchair in the west of Heidelberg ! +How many churches are there in the west of Heidelberg ? +Are there any mosques in the west of Heidelberg ? +Are there any mosques west of Heidelberg ? +Where are subway stations in the west of Île-de-France ? +Where are post boxes in the west of Schriesheim ? +Where are post boxes west of Schriesheim ? +Where are bus stops in the west of San Francisco ? +Where are Stolpersteine in the west of Delmenhorst ? +Please tell me where bathrooms are west of the Bismarckplatz in Heidelberg . +How many second hand only stores are there in the west of Heidelberg ? +Are there any organic supermarkets in the west of Heidelberg ? +Where are advertising columns in the west of Heidelberg ? +Are there any helipads in the west of Heidelberg ? +Can you give me the names and telephone numbers of driving schools in the west of Heidelberg ? +How many places to play tennis are there in the west of Montpellier ? +How many restaurants are there in the west of Berlin ? +Where are schools in the west of Bielefeld ? +Where in the west Lyon are murals and what are they called ? +How many bridges are in the west of Eure-et-Loir ? +How many historic sites are in the west of Nantes ? +Where and how many playgrounds are there in the west of York ? +Where are memorials in the west of Bavaria ? +Please list the location of all monuments in the west of Pays de la Loire ! +How many springs are in the west of Nîmes ? +How many peaks are there in the west of Languedoc-Roussillon ? +What are the peaks in the west of Languedoc-Roussillon called and how high are they ? +If any of the peaks in the west of Languedoc-Roussillon have a Wikipedia pages , please list it . +How many schools are in the west of Paris ? +How many train stations can be found in the west of Paris ? +Which towns are west of Paris ? +How many caravan sites are in the west of Paris ? +How many restaurants are in the west of Paris ? +How many fast food restaurants sites are in the west of Paris ? +Where are restaurants in the west of Paris ? +How many locations are in the west of Paris where you can play miniature golf ? +Is there a swimming pool in the west of Paris ? +How many swimming pools are in the west of Paris ? +Are there any vineyards in the west of Paris ? +How many 3 star hotels are in the west of Paris ? +Where are 4 star hotels in the west of Paris ? +Are there any springs in the west of Paris ? +Where are banks in the west of Paris ? +What archaeological sites exist in the west of Paris ? +How many bike rental places are in the west of Paris ? +Where in the west of Paris are drinking water locations ? +How many cemeteries are there in the west of Paris ? +Where are cemeteries in the west of Paris ? +Where are petrol stations in the west of Paris ? +How many memorials are there in the west of Paris ? +How many churches are there in the west of Paris ? +Are there any mosques in the west of Paris ? +Are there any mosques west of Paris ? +Please tell me where bathrooms are west of the Place de la République in Paris . +How many second hand only stores are there in the west of Paris ? +Are there any organic supermarkets in the west of Paris ? +Where are advertising columns in the west of Paris ? +Are there any helipads in the west of Paris ? +Can you give me the names and telephone numbers of driving schools in the west of Paris ? +How many arts centres are in the west of Paris ? +Where are museums in the west of Paris ? +Where in the west of Paris can I exchange money ? +At how many places in the west of Paris can I exchange money ? +How many cathedrals are there in the west of Paris ? +How many tombs are in the west of Paris ? +How many schools are in the west of Edinburgh ? +How many train stations can be found in the west of Edinburgh ? +Which towns are west of Edinburgh ? +How many caravan sites are in the west of Edinburgh ? +How many restaurants are in the west of Edinburgh ? +How many fast food restaurants sites are in the west of Edinburgh ? +Where are restaurants in the west of Edinburgh ? +How many locations are in the west of Edinburgh where you can play miniature golf ? +Is there a swimming pool in the west of Edinburgh ? +How many swimming pools are in the west of Edinburgh ? +Are there any vineyards in the west of Edinburgh ? +How many 3 star hotels are in the west of Edinburgh ? +Where are 4 star hotels in the west of Edinburgh ? +Where are banks in the west of Edinburgh ? +Where are kindergartens in the west of Edinburgh ? +What archaeological sites exist in the west of Edinburgh ? +How many fish and chips places are in the west of Edinburgh ? +How many cemeteries are there in the west of Edinburgh ? +Where are cemeteries in the west of Edinburgh ? +How many quarries are there in the west of Edinburgh ? +Are there any quarries in the west of Edinburgh ? +Where are petrol stations in the west of Edinburgh ? +How many memorials are there in the west of Edinburgh ? +How many churches are there in the west of Edinburgh ? +Are there any mosques in the west of Edinburgh ? +Are there any mosques west of Edinburgh ? +Please tell me where bathrooms are west of High Street in Edinburgh . +How many second hand only stores are there in the west of Edinburgh ? +Are there any organic supermarkets in the west of Edinburgh ? +Are there any helipads in the west of Edinburgh ? +At how many places in the west of Edinburgh can I exchange money ? +How many cathedrals are there in the west of Edinburgh ? +How many tombs are in the west of Edinburgh ? +How many bridges can be found in the west of Edinburgh and where are they ? +How many KFC are there in the west of Edinburgh ? +How many schools are in the south of Heidelberg ? +How many train stations can be found in the south of Heidelberg ? +Which towns are south of Heidelberg ? +How many caravan sites are in the south of Heidelberg ? +How many restaurants are in the south of Heidelberg ? +How many fast food restaurants sites are in the south of Heidelberg ? +Where are restaurants in the south of Heidelberg ? +How many locations are in the south of Heidelberg where you can play miniature golf ? +Is there a swimming pool in the south of Heidelberg ? +How many swimming pools are in the south of Heidelberg ? +Are there any vineyards in the south of Heidelberg ? +How many 3 star hotels are in the south of Heidelberg ? +Where are springs in the south of Heidelberg ? +Where are banks in the south of Heidelberg ? +What archaeological sites exist in the south of Heidelberg ? +How many bike rental places are in the south of Heidelberg ? +Where in the south of Heidelberg are drinking water locations ? +How many cemeteries are there in the south of Heidelberg ? +Where are cemeteries in the south of Heidelberg ? +How many quarries are there in the south of Heidelberg ? +Are there any quarries in the south of Heidelberg ? +Where are petrol stations in the south of Heidelberg ? +How many memorials are there in the south of Heidelberg ? +How many Stolpersteine can be found in the south of Heidelberg ? +How many Stolpersteine can be found south of Heidelberg ? +Where are Stolpersteine in the south of Heidelberg ? +Please list the locations of all Stolpersteine that can be accessed with a wheelchair in the south of Heidelberg ! +How many churches are there in the south of Heidelberg ? +Are there any mosques in the south of Heidelberg ? +Are there any mosques south of Heidelberg ? +Where are post boxes in the south of Schriesheim ? +Where are post boxes south of Schriesheim ? +Where are bus stops in the south of San Francisco ? +Where are Stolpersteine in the south of Delmenhorst ? +Please tell me where bathrooms are south of the Bismarckplatz in Heidelberg . +How many second hand only stores are there in the south of Heidelberg ? +Are there any organic supermarkets in the south of Heidelberg ? +Where are advertising columns in the south of Heidelberg ? +Are there any helipads in the south of Heidelberg ? +Can you give me the names and telephone numbers of driving schools in the south of Heidelberg ? +How many places to play tennis are there in the south of Montpellier ? +How many restaurants are there in the south of Berlin ? +Where are schools in the south of Bielefeld ? +Where in the south Lyon are murals and what are they called ? +How many bridges are in the south of Eure-et-Loir ? +How many historic sites are in the south of Nantes ? +Where and how many playgrounds are there in the south of York ? +Where are memorials in the south of Bavaria ? +Please list the location of all monuments in the south of Pays de la Loire ! +How many springs are in the south of Nîmes ? +How many peaks are there in the south of Languedoc-Roussillon ? +What are the peaks in the south of Languedoc-Roussillon called and how high are they ? +If any of the peaks in the south of Languedoc-Roussillon have a Wikipedia pages , please list it . +How many schools are in the south of Paris ? +How many train stations can be found in the south of Paris ? +Which towns are south of Paris ? +How many caravan sites are in the south of Paris ? +How many restaurants are in the south of Paris ? +How many fast food restaurants sites are in the south of Paris ? +Where are restaurants in the south of Paris ? +How many locations are in the south of Paris where you can play miniature golf ? +Is there a swimming pool in the south of Paris ? +How many swimming pools are in the south of Paris ? +Are there any vineyards in the south of Paris ? +How many 3 star hotels are in the south of Paris ? +Where are 4 star hotels in the south of Paris ? +Are there any springs in the south of Paris ? +Where are banks in the south of Paris ? +What archaeological sites exist in the south of Paris ? +How many bike rental places are in the south of Paris ? +Where in the south of Paris are drinking water locations ? +How many cemeteries are there in the south of Paris ? +Where are cemeteries in the south of Paris ? +Where are petrol stations in the south of Paris ? +How many memorials are there in the south of Paris ? +How many churches are there in the south of Paris ? +Are there any mosques in the south of Paris ? +Are there any mosques south of Paris ? +Please tell me where bathrooms are south of the Place de la République in Paris . +How many second hand only stores are there in the south of Paris ? +Are there any organic supermarkets in the south of Paris ? +Where are advertising columns in the south of Paris ? +Are there any helipads in the south of Paris ? +Can you give me the names and telephone numbers of driving schools in the south of Paris ? +How many arts centres are in the south of Paris ? +Where are museums in the south of Paris ? +Where in the south of Paris can I exchange money ? +At how many places in the south of Paris can I exchange money ? +How many cathedrals are there in the south of Paris ? +How many tombs are in the south of Paris ? +How many schools are in the south of Edinburgh ? +How many train stations can be found in the south of Edinburgh ? +Which towns are south of Edinburgh ? +How many caravan sites are in the south of Edinburgh ? +How many restaurants are in the south of Edinburgh ? +How many fast food restaurants sites are in the south of Edinburgh ? +Where are restaurants in the south of Edinburgh ? +How many locations are in the south of Edinburgh where you can play miniature golf ? +Is there a swimming pool in the south of Edinburgh ? +How many swimming pools are in the south of Edinburgh ? +Are there any vineyards in the south of Edinburgh ? +How many 3 star hotels are in the south of Edinburgh ? +Where are banks in the south of Edinburgh ? +Where are kindergartens in the south of Edinburgh ? +What archaeological sites exist in the south of Edinburgh ? +How many fish and chips places are in the south of Edinburgh ? +How many cemeteries are there in the south of Edinburgh ? +Where are cemeteries in the south of Edinburgh ? +How many quarries are there in the south of Edinburgh ? +Are there any quarries in the south of Edinburgh ? +Where are petrol stations in the south of Edinburgh ? +How many memorials are there in the south of Edinburgh ? +How many churches are there in the south of Edinburgh ? +Are there any mosques in the south of Edinburgh ? +Are there any mosques south of Edinburgh ? +Please tell me where bathrooms are south of High Street in Edinburgh . +How many second hand only stores are there in the south of Edinburgh ? +Are there any organic supermarkets in the south of Edinburgh ? +Are there any helipads in the south of Edinburgh ? +At how many places in the south of Edinburgh can I exchange money ? +How many cathedrals are there in the south of Edinburgh ? +How many tombs are in the south of Edinburgh ? +How many bridges can be found in the south of Edinburgh and where are they ? +How many KFC are there in the south of Edinburgh ? diff --git a/smtsemparsecpp/data/nlmaps.id b/smtsemparsecpp/data/nlmaps.id new file mode 100644 index 000000000..f47aa76fc --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.id @@ -0,0 +1,2380 @@ +n1 +n2 +n3 +n4 +n5 +n6 +n7 +n8 +n9 +n10 +n11 +n12 +n13 +n14 +n15 +n16 +n17 +n18 +n19 +n20 +n21 +n22 +n23 +n24 +n25 +n26 +n27 +n28 +n29 +n30 +n31 +n32 +n33 +n34 +n35 +n36 +n37 +n38 +n39 +n40 +n41 +n42 +n43 +n44 +n45 +n46 +n47 +n48 +n49 +n50 +n51 +n52 +n53 +n54 +n55 +n56 +n57 +n58 +n59 +n60 +n61 +n62 +n63 +n64 +n65 +n66 +n67 +n68 +n69 +n70 +n71 +n72 +n73 +n74 +n75 +n76 +n77 +n78 +n79 +n80 +n81 +n82 +n83 +n84 +n85 +n86 +n87 +n88 +n89 +n90 +n91 +n92 +n93 +n94 +n95 +n96 +n97 +n98 +n99 +n100 +n101 +n102 +n103 +n104 +n105 +n106 +n107 +n108 +n109 +n110 +n111 +n112 +n113 +n114 +n115 +n116 +n117 +n118 +n119 +n120 +n121 +n122 +n123 +n124 +n125 +n126 +n127 +n128 +n129 +n130 +n131 +n132 +n133 +n134 +n135 +n136 +n137 +n138 +n139 +n140 +n141 +n142 +n143 +n144 +n145 +n146 +n147 +n148 +n149 +n150 +n151 +n152 +n153 +n154 +n155 +n156 +n157 +n158 +n159 +n160 +n161 +n162 +n163 +n164 +n165 +n166 +n167 +n168 +n169 +n170 +n171 +n172 +n173 +n174 +n175 +n176 +n177 +n178 +n179 +n180 +n181 +n182 +n183 +n184 +n185 +n186 +n187 +n188 +n189 +n190 +n191 +n192 +n193 +n194 +n195 +n196 +n197 +n198 +n199 +n200 +n201 +n202 +n203 +n204 +n205 +n206 +n207 +n208 +n209 +n210 +n211 +n212 +n213 +n214 +n215 +n216 +n217 +n218 +n219 +n220 +n221 +n222 +n223 +n224 +n225 +n226 +n227 +n228 +n229 +n230 +n231 +n232 +n233 +n234 +n235 +n236 +n237 +n238 +n239 +n240 +n241 +n242 +n243 +n244 +n245 +n246 +n247 +n248 +n249 +n250 +n251 +n252 +n253 +n254 +n255 +n256 +n257 +n258 +n259 +n260 +n261 +n262 +n263 +n264 +n265 +n266 +n267 +n268 +n269 +n270 +n271 +n272 +n273 +n274 +n275 +n276 +n277 +n278 +n279 +n280 +n281 +n282 +n283 +n284 +n285 +n286 +n287 +n288 +n289 +n290 +n291 +n292 +n293 +n294 +n295 +n296 +n297 +n298 +n299 +n300 +n301 +n302 +n303 +n304 +n305 +n306 +n307 +n308 +n309 +n310 +n311 +n312 +n313 +n314 +n315 +n316 +n317 +n318 +n319 +n320 +n321 +n322 +n323 +n324 +n325 +n326 +n327 +n328 +n329 +n330 +n331 +n332 +n333 +n334 +n335 +n336 +n337 +n338 +n339 +n340 +n341 +n342 +n343 +n344 +n345 +n346 +n347 +n348 +n349 +n350 +n351 +n352 +n353 +n354 +n355 +n356 +n357 +n358 +n359 +n360 +n361 +n362 +n363 +n364 +n365 +n366 +n367 +n368 +n369 +n370 +n371 +n372 +n373 +n374 +n375 +n376 +n377 +n378 +n379 +n380 +n381 +n382 +n383 +n384 +n385 +n386 +n387 +n388 +n389 +n390 +n391 +n392 +n393 +n394 +n395 +n396 +n397 +n398 +n399 +n400 +n401 +n402 +n403 +n404 +n405 +n406 +n407 +n408 +n409 +n410 +n411 +n412 +n413 +n414 +n415 +n416 +n417 +n418 +n419 +n420 +n421 +n422 +n423 +n424 +n425 +n426 +n427 +n428 +n429 +n430 +n431 +n432 +n433 +n434 +n435 +n436 +n437 +n438 +n439 +n440 +n441 +n442 +n443 +n444 +n445 +n446 +n447 +n448 +n449 +n450 +n451 +n452 +n453 +n454 +n455 +n456 +n457 +n458 +n459 +n460 +n461 +n462 +n463 +n464 +n465 +n466 +n467 +n468 +n469 +n470 +n471 +n472 +n473 +n474 +n475 +n476 +n477 +n478 +n479 +n480 +n481 +n482 +n483 +n484 +n485 +n486 +n487 +n488 +n489 +n490 +n491 +n492 +n493 +n494 +n495 +n496 +n497 +n498 +n499 +n500 +n501 +n502 +n503 +n504 +n505 +n506 +n507 +n508 +n509 +n510 +n511 +n512 +n513 +n514 +n515 +n516 +n517 +n518 +n519 +n520 +n521 +n522 +n523 +n524 +n525 +n526 +n527 +n528 +n529 +n530 +n531 +n532 +n533 +n534 +n535 +n536 +n537 +n538 +n539 +n540 +n541 +n542 +n543 +n544 +n545 +n546 +n547 +n548 +n549 +n550 +n551 +n552 +n553 +n554 +n555 +n556 +n557 +n558 +n559 +n560 +n561 +n562 +n563 +n564 +n565 +n566 +n567 +n568 +n569 +n570 +n571 +n572 +n573 +n574 +n575 +n576 +n577 +n578 +n579 +n580 +n581 +n582 +n583 +n584 +n585 +n586 +n587 +n588 +n589 +n590 +n591 +n592 +n593 +n594 +n595 +n596 +n597 +n598 +n599 +n600 +n601 +n602 +n603 +n604 +n605 +n606 +n607 +n608 +n609 +n610 +n611 +n612 +n613 +n614 +n615 +n616 +n617 +n618 +n619 +n620 +n621 +n622 +n623 +n624 +n625 +n626 +n627 +n628 +n629 +n630 +n631 +n632 +n633 +n634 +n635 +n636 +n637 +n638 +n639 +n640 +n641 +n642 +n643 +n644 +n645 +n646 +n647 +n648 +n649 +n650 +n651 +n652 +n653 +n654 +n655 +n656 +n657 +n658 +n659 +n660 +n661 +n662 +n663 +n664 +n665 +n666 +n667 +n668 +n669 +n670 +n671 +n672 +n673 +n674 +n675 +n676 +n677 +n678 +n679 +n680 +n681 +n682 +n683 +n684 +n685 +n686 +n687 +n688 +n689 +n690 +n691 +n692 +n693 +n694 +n695 +n696 +n697 +n698 +n699 +n700 +n701 +n702 +n703 +n704 +n705 +n706 +n707 +n708 +n709 +n710 +n711 +n712 +n713 +n714 +n715 +n716 +n717 +n718 +n719 +n720 +n721 +n722 +n723 +n724 +n725 +n726 +n727 +n728 +n729 +n730 +n731 +n732 +n733 +n734 +n735 +n736 +n737 +n738 +n739 +n740 +n741 +n742 +n743 +n744 +n745 +n746 +n747 +n748 +n749 +n750 +n751 +n752 +n753 +n754 +n755 +n756 +n757 +n758 +n759 +n760 +n761 +n762 +n763 +n764 +n765 +n766 +n767 +n768 +n769 +n770 +n771 +n772 +n773 +n774 +n775 +n776 +n777 +n778 +n779 +n780 +n781 +n782 +n783 +n784 +n785 +n786 +n787 +n788 +n789 +n790 +n791 +n792 +n793 +n794 +n795 +n796 +n797 +n798 +n799 +n800 +n801 +n802 +n803 +n804 +n805 +n806 +n807 +n808 +n809 +n810 +n811 +n812 +n813 +n814 +n815 +n816 +n817 +n818 +n819 +n820 +n821 +n822 +n823 +n824 +n825 +n826 +n827 +n828 +n829 +n830 +n831 +n832 +n833 +n834 +n835 +n836 +n837 +n838 +n839 +n840 +n841 +n842 +n843 +n844 +n845 +n846 +n847 +n848 +n849 +n850 +n851 +n852 +n853 +n854 +n855 +n856 +n857 +n858 +n859 +n860 +n861 +n862 +n863 +n864 +n865 +n866 +n867 +n868 +n869 +n870 +n871 +n872 +n873 +n874 +n875 +n876 +n877 +n878 +n879 +n880 +n881 +n882 +n883 +n884 +n885 +n886 +n887 +n888 +n889 +n890 +n891 +n892 +n893 +n894 +n895 +n896 +n897 +n898 +n899 +n900 +h1 +h2 +h3 +h4 +h5 +h6 +h7 +h8 +h9 +h10 +h11 +h12 +h13 +h14 +h15 +h16 +h17 +h18 +h19 +h20 +h21 +h22 +h23 +h24 +h25 +h26 +h27 +h28 +h29 +h30 +h31 +h32 +h33 +h34 +h35 +h36 +h37 +h38 +h39 +h40 +h41 +h42 +h43 +h44 +h45 +h46 +h47 +h48 +h49 +h50 +h51 +h52 +h53 +h54 +h55 +h56 +h57 +h58 +h59 +h60 +h61 +h62 +h63 +h64 +h65 +h66 +h67 +h68 +h69 +h70 +h71 +h72 +h73 +h74 +h75 +h76 +h77 +h78 +h79 +h80 +h81 +h82 +h83 +h84 +h85 +h86 +h87 +h88 +h89 +h90 +h91 +h92 +h93 +h94 +h95 +h96 +h97 +h98 +h99 +h100 +h101 +h102 +h103 +h104 +h105 +h106 +h107 +h108 +h109 +h110 +h111 +h112 +h113 +h114 +h115 +h116 +h117 +h118 +h119 +h120 +h121 +h122 +h123 +h124 +h125 +h126 +h127 +h128 +h129 +h130 +h131 +h132 +h133 +h134 +h135 +h136 +h137 +h138 +h139 +h140 +h141 +h142 +h143 +h144 +h145 +h146 +h147 +h148 +h149 +h150 +h151 +h152 +h153 +h154 +h155 +h156 +h157 +h158 +h159 +h160 +h161 +h162 +h163 +h164 +h165 +h166 +h167 +h168 +h169 +h170 +h171 +h172 +h173 +h174 +h175 +h176 +h177 +h178 +h179 +h180 +h181 +h182 +h183 +h184 +h185 +h186 +h187 +h188 +h189 +h190 +h191 +h192 +h193 +h194 +h195 +h196 +h197 +h198 +h199 +h200 +h201 +h202 +h203 +h204 +h205 +h206 +h207 +h208 +h209 +h210 +h211 +h212 +h213 +h214 +h215 +h216 +h217 +h218 +h219 +h220 +h221 +h222 +h223 +h224 +h225 +h226 +h227 +h228 +h229 +h230 +h231 +h232 +h233 +h234 +h235 +h236 +h237 +h238 +h239 +h240 +h241 +h242 +h243 +h244 +h245 +h246 +h247 +h248 +h249 +h250 +h251 +h252 +h253 +h254 +h255 +h256 +h257 +h258 +h259 +h260 +h261 +h262 +h263 +h264 +h265 +h266 +h267 +h268 +h269 +h270 +h271 +h272 +h273 +h274 +h275 +h276 +h277 +h278 +h279 +h280 +h281 +h282 +h283 +h284 +h285 +h286 +h287 +h288 +h289 +h290 +h291 +h292 +h293 +h294 +h295 +h296 +h297 +h298 +h299 +h300 +w1 +w2 +w3 +w4 +w5 +w6 +w7 +w8 +w9 +w10 +w11 +w12 +w13 +w14 +w15 +w16 +w17 +w18 +w19 +w20 +w21 +w22 +w23 +w24 +w25 +w26 +w27 +w28 +w29 +w30 +w31 +w32 +w33 +w34 +w35 +w36 +w37 +w38 +w39 +w40 +w41 +w42 +w43 +w44 +w45 +w46 +w47 +w48 +w49 +w50 +w51 +w52 +w53 +w54 +w55 +w56 +w57 +w58 +w59 +w60 +w61 +w62 +w63 +w64 +w65 +w66 +w67 +w68 +w69 +w70 +w71 +w72 +w73 +w74 +w75 +w76 +w77 +w78 +w79 +w80 +w81 +w82 +w83 +w84 +w85 +w86 +w87 +w88 +w89 +w90 +w91 +w92 +w93 +w94 +w95 +w96 +w97 +w98 +w99 +w100 +w101 +w102 +w103 +w104 +w105 +w106 +w107 +w108 +w109 +w110 +w111 +w112 +w113 +w114 +w115 +w116 +w117 +w118 +w119 +w120 +w121 +w122 +w123 +w124 +w125 +w126 +w127 +w128 +w129 +w130 +w131 +w132 +w133 +w134 +w135 +w136 +w137 +w138 +w139 +w140 +w141 +w142 +w143 +w144 +w145 +w146 +w147 +w148 +w149 +w150 +w151 +w152 +w153 +w154 +w155 +w156 +w157 +w158 +w159 +w160 +w161 +w162 +w163 +w164 +w165 +w166 +w167 +w168 +w169 +w170 +w171 +w172 +w173 +w174 +w175 +w176 +w177 +w178 +w179 +w180 +w181 +w182 +w183 +w184 +w185 +w186 +w187 +w188 +w189 +w190 +w191 +w192 +w193 +w194 +w195 +w196 +w197 +w198 +w199 +w200 +p1 +p2 +p3 +p4 +p5 +p6 +p7 +p8 +p9 +p10 +p11 +p12 +p13 +p14 +p15 +p16 +p17 +p18 +p19 +p20 +p21 +p22 +p23 +p24 +p25 +p26 +p27 +p28 +p29 +p30 +p31 +p32 +p33 +p34 +p35 +p36 +p37 +p38 +p39 +p40 +p41 +p42 +p43 +p44 +p45 +p46 +p47 +p48 +p49 +p50 +p51 +p52 +p53 +p54 +p55 +p56 +p57 +p58 +p59 +p60 +p61 +p62 +p63 +p64 +p65 +p66 +p67 +p68 +p69 +p70 +p71 +p72 +p73 +p74 +p75 +p76 +p77 +p78 +p79 +p80 +p81 +p82 +p83 +p84 +p85 +p86 +p87 +p88 +p89 +p90 +p91 +p92 +p93 +p94 +p95 +p96 +p97 +p98 +p99 +p100 +p101 +p102 +p103 +p104 +p105 +p106 +p107 +p108 +p109 +p110 +p111 +p112 +p113 +p114 +p115 +p116 +p117 +p118 +p119 +p120 +p121 +p122 +p123 +p124 +p125 +p126 +p127 +p128 +p129 +p130 +p131 +p132 +p133 +p134 +p135 +p136 +p137 +p138 +p139 +p140 +p141 +p142 +p143 +p144 +p145 +p146 +p147 +p148 +p149 +p150 +p151 +p152 +p153 +p154 +p155 +p156 +p157 +p158 +p159 +p160 +p161 +p162 +p163 +p164 +p165 +p166 +p167 +p168 +p169 +p170 +p171 +p172 +p173 +p174 +p175 +p176 +p177 +p178 +p179 +p180 +p181 +p182 +p183 +p184 +p185 +p186 +p187 +p188 +p189 +p190 +p191 +p192 +p193 +p194 +p195 +p196 +p197 +p198 +p199 +p200 +p201 +p202 +p203 +p204 +p205 +p206 +p207 +p208 +p209 +p210 +p211 +p212 +p213 +p214 +p215 +p216 +p217 +p218 +p219 +p220 +p221 +p222 +p223 +p224 +p225 +p226 +p227 +p228 +p229 +p230 +p231 +p232 +p233 +p234 +p235 +p236 +p237 +p238 +p239 +p240 +p241 +p242 +p243 +p244 +p245 +p246 +p247 +p248 +p249 +p250 +p251 +p252 +p253 +p254 +p255 +p256 +p257 +p258 +p259 +p260 +p261 +p262 +p263 +p264 +p265 +p266 +p267 +p268 +p269 +p270 +p271 +p272 +p273 +p274 +p275 +p276 +p277 +p278 +p279 +p280 +p281 +p282 +p283 +p284 +p285 +p286 +p287 +p288 +p289 +p290 +p291 +p292 +p293 +p294 +p295 +p296 +p297 +p298 +p299 +p300 +e1 +e2 +e3 +e4 +e5 +e6 +e7 +e8 +e9 +e10 +e11 +e12 +e13 +e14 +e15 +e16 +e17 +e18 +e19 +e20 +e21 +e22 +e23 +e24 +e25 +e26 +e27 +e28 +e29 +e30 +e31 +e32 +e33 +e34 +e35 +e36 +e37 +e38 +e39 +e40 +e41 +e42 +e43 +e44 +e45 +e46 +e47 +e48 +e49 +e50 +e51 +e52 +e53 +e54 +e55 +e56 +e57 +e58 +e59 +e60 +e61 +e62 +e63 +e64 +e65 +e66 +e67 +e68 +e69 +e70 +e71 +e72 +e73 +e74 +e75 +e76 +e77 +e78 +e79 +e80 +e81 +e82 +e83 +e84 +e85 +e86 +e87 +e88 +e89 +e90 +e91 +e92 +e93 +e94 +e95 +e96 +e97 +e98 +e99 +e100 +e101 +e102 +e103 +e104 +e105 +e106 +e107 +e108 +e109 +e110 +e111 +e112 +e113 +e114 +e115 +e116 +e117 +e118 +e119 +e120 +e121 +e122 +e123 +e124 +e125 +e126 +e127 +e128 +e129 +e130 +e131 +e132 +e133 +e134 +e135 +e136 +e137 +e138 +e139 +e140 +e141 +e142 +e143 +e144 +e145 +e146 +e147 +e148 +e149 +e150 +e151 +e152 +e153 +e154 +e155 +e156 +e157 +e158 +e159 +e160 +e161 +e162 +e163 +e164 +e165 +e166 +e167 +e168 +e169 +e170 +e171 +e172 +e173 +e174 +e175 +e176 +e177 +e178 +e179 +e180 +e181 +e182 +e183 +e184 +e185 +e186 +e187 +e188 +e189 +e190 +e191 +e192 +e193 +e194 +e195 +e196 +e197 +e198 +e199 +e200 +e201 +e202 +e203 +e204 +e205 +e206 +e207 +e208 +e209 +e210 +e211 +e212 +e213 +e214 +e215 +e216 +e217 +e218 +e219 +e220 +e221 +e222 +e223 +e224 +e225 +e226 +e227 +e228 +e229 +e230 +e231 +e232 +e233 +e234 +e235 +e236 +e237 +e238 +e239 +e240 +e241 +e242 +e243 +e244 +e245 +e246 +e247 +e248 +e249 +e250 +e251 +e252 +e253 +e254 +e255 +e256 +e257 +e258 +e259 +e260 +e261 +e262 +e263 +e264 +e265 +e266 +e267 +e268 +e269 +e270 +e271 +e272 +e273 +e274 +e275 +e276 +e277 +e278 +e279 +e280 +e281 +e282 +e283 +e284 +e285 +e286 +e287 +e288 +e289 +e290 +e291 +e292 +e293 +e294 +e295 +e296 +e297 +e298 +e299 +e300 +h9-east +h10-east +h30-east +h48-east +h49-east +h50-east +h54-east +h57-east +h58-east +h59-east +h62-east +h64-east +h65-east +h67-east +h114-east +h171-east +h180-east +h183-east +h190-east +h191-east +h192-east +h193-east +h198-east +h204-east +h209-east +h211-east +h212-east +h214-east +h224-east +h225-east +h226-east +w73-east +w74-east +w75-east +h251-east +h253-east +h257-east +h272-east +h275-east +h292-east +w111-east +w123-east +w130-east +w135-east +w144-east +w148-east +w169-east +w173-east +w180-east +w186-east +w190-east +w194-east +w198-east +w199-east +w200-east +p9-east +p10-east +p30-east +p43-east +p44-east +p45-east +p49-east +p50-east +p51-east +p52-east +p54-east +p56-east +p57-east +p59-east +p97-east +p149-east +p158-east +p161-east +p168-east +p169-east +p174-east +p178-east +p186-east +p187-east +p188-east +p198-east +p200-east +p204-east +p217-east +p220-east +p234-east +p261-east +p264-east +p274-east +p277-east +p290-east +p300-east +e9-east +e10-east +e29-east +e47-east +e48-east +e49-east +e53-east +e56-east +e57-east +e58-east +e61-east +e63-east +e64-east +e66-east +e113-east +e137-east +e157-east +e165-east +e168-east +e175-east +e176-east +e177-east +e178-east +e183-east +e188-east +e196-east +e197-east +e198-east +e216-east +e218-east +e222-east +e237-east +e240-east +e261-east +e264-east +e271-east +e276-east +e288-east +e298-east +h9-west +h10-west +h30-west +h48-west +h49-west +h50-west +h54-west +h57-west +h58-west +h59-west +h62-west +h64-west +h65-west +h67-west +h114-west +h171-west +h180-west +h183-west +h190-west +h191-west +h192-west +h193-west +h198-west +h204-west +h209-west +h211-west +h212-west +h214-west +h224-west +h225-west +h226-west +w73-west +w74-west +w75-west +h251-west +h253-west +h257-west +h272-west +h275-west +h292-west +w111-west +w123-west +w130-west +w135-west +w144-west +w169-west +w180-west +w186-west +w190-west +w194-west +w198-west +w199-west +w200-west +p9-west +p10-west +p30-west +p43-west +p44-west +p45-west +p49-west +p50-west +p51-west +p52-west +p54-west +p56-west +p57-west +p59-west +p97-west +p149-west +p158-west +p161-west +p168-west +p169-west +p174-west +p178-west +p186-west +p187-west +p188-west +p198-west +p200-west +p204-west +p217-west +p220-west +p234-west +p261-west +p264-west +p274-west +p277-west +p290-west +p300-west +e9-west +e10-west +e29-west +e47-west +e48-west +e49-west +e53-west +e56-west +e57-west +e58-west +e61-west +e63-west +e64-west +e113-west +e137-west +e157-west +e165-west +e175-west +e176-west +e177-west +e178-west +e183-west +e188-west +e196-west +e197-west +e198-west +e216-west +e218-west +e222-west +e240-west +e264-west +e271-west +e276-west +e288-west +e298-west +h9-south +h10-south +h30-south +h48-south +h49-south +h50-south +h54-south +h57-south +h58-south +h59-south +h62-south +h64-south +h65-south +h67-south +h114-south +h171-south +h180-south +h183-south +h190-south +h191-south +h192-south +h193-south +h198-south +h204-south +h209-south +h211-south +h212-south +h214-south +h224-south +h225-south +h226-south +w73-south +w74-south +w75-south +h251-south +h253-south +h257-south +h272-south +h275-south +h292-south +w111-south +w123-south +w130-south +w135-south +w144-south +w169-south +w180-south +w186-south +w190-south +w194-south +w198-south +w199-south +w200-south +p9-south +p10-south +p30-south +p43-south +p44-south +p45-south +p49-south +p50-south +p51-south +p52-south +p54-south +p56-south +p57-south +p59-south +p97-south +p149-south +p158-south +p161-south +p168-south +p169-south +p174-south +p178-south +p186-south +p187-south +p188-south +p198-south +p200-south +p204-south +p217-south +p220-south +p234-south +p261-south +p264-south +p274-south +p277-south +p290-south +p300-south +e9-south +e10-south +e29-south +e47-south +e48-south +e49-south +e53-south +e56-south +e57-south +e58-south +e61-south +e63-south +e113-south +e137-south +e157-south +e165-south +e175-south +e176-south +e177-south +e178-south +e183-south +e188-south +e196-south +e197-south +e198-south +e216-south +e218-south +e222-south +e240-south +e264-south +e271-south +e276-south +e288-south +e298-south diff --git a/smtsemparsecpp/data/nlmaps.mrl b/smtsemparsecpp/data/nlmaps.mrl new file mode 100644 index 000000000..39bf29476 --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.mrl @@ -0,0 +1,2380 @@ +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Starbucks')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','McDonald's')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Burger King')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('railway','station')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','italian')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','indian')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','greek')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','burger')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','burger')),qtype(nodup(findkey('name')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','vegetarian')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bar')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('smoking','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','ice_cream')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','ice_cream')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bar'),keyval('smoking','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera')),qtype(findkey('website'))) +query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(findkey('population'))) +query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(findkey('population'))) +query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(findkey('population'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','hospital')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(findkey('ele'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(findkey('ele'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak'),keyval('name','Königstuhl')),qtype(findkey('ele'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','catholic')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','catholic')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','protestant')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','protestant')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','museum')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera')),qtype(findkey('website'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop'),keyval('name','Blumenstraße')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bar')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop'),keyval('name','Erich-Hübner-Platz')),qtype(findkey('note'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop'),keyval('name','Peterskirche')),qtype(findkey('note'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','castle')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','castle')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','university')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','university')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','university')),qtype(least(topx(2)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('information','map'),keyval('hiking','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('information','map'),keyval('hiking','yes')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','books')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','books')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Edeka')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Edeka')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','REWE City')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','REWE City')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fire_station')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fire_station')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','police')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','police')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','library')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','library')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','parking')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','parking')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','parking'),keyval('parking','underground')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','parking'),keyval('parking','underground')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','dentist')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','dentist')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','hospital')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','hospital')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','hospital')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','hospital'),keyval('name','Kurpfalzkrankenhaus')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema'),keyval('wheelchair','yes')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema')),qtype(count)) +query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(findkey('name:ja'))) +query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(findkey('name:fr'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bar')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Königstuhl')),qtype(findkey('wikipedia'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','townhall')),qtype(findkey('wikipedia'))) +query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(findkey('wikipedia'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','museum')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','museum')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','spring')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fire_station')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','police')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','police')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','books')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','library')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','library')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','university')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','McDonald's')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('cuisine','asian')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('cuisine','greek')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','pharmacy')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','castle')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','taxi')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','artwork')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','artwork')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','pharmacy')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','pharmacy')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','books')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','library')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','police')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fire_station')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','castle')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(findkey('email'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(findkey('website'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(findkey('website'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','4')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('wheelchair','yes')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('internet_access','wlan')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('internet_access','wlan')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('internet_access','wlan')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','3')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','3')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('parking','yes')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('parking','yes')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(least(topx(5)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(least(topx(10)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site')),qtype(least(topx(5)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site'),keyval('fireplace','yes')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site'),keyval('fireplace','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site'),keyval('fireplace','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint')),qtype(least(topx(3)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint'),keyval('wheelchair','yes')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','tennis')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','tennis')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','tennis')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','tennis')),qtype(least(topx(2)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','climbing')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','climbing')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','climbing')),qtype(least(topx(2)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','rowing')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','rowing')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','skateboard')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','skateboard')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','skateboard')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','soccer')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','soccer')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','soccer')),qtype(least(topx(2)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','swimming')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','swimming')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','swimming')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','swimming')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','skateboard')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','soccer')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','rowing')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','climbing')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','tennis')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','table_tennis')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','table_tennis')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','table_tennis')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','table_tennis')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','table_tennis')),qtype(least(topx(2)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','spring')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','spring')),qtype(least(topx(2)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(findkey('wikipedia'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','theatre'),keyval('wheelchair','yes')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','theatre'),keyval('wheelchair','yes')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','tower')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','tower')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','tower')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','monument')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','monument')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','monument')),qtype(latlong)) +query(area(keyval('name','Neuenheim')),nwr(keyval('name','Werrgasse')),qtype(least(topx(1)))) +query(area(keyval('name','Neuenheim')),nwr(keyval('name','Marktstraße')),qtype(least(topx(1)))) +query(area(keyval('name','Handschuhsheim')),nwr(keyval('name','Amselgasse')),qtype(least(topx(1)))) +query(area(keyval('name','Wieblingen')),nwr(keyval('name','Maaßstraße')),qtype(least(topx(1)))) +query(area(keyval('name','Neuenheim')),nwr(keyval('name','Plöck')),qtype(least(topx(1)))) +query(area(keyval('name','Altstadt')),nwr(keyval('name','Plöck')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Plöck')),qtype(findkey('maxspeed'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Plöck')),qtype(findkey('lanes'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Plöck')),qtype(findkey('surface'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Maaßstraße')),qtype(findkey('maxspeed'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Maaßstraße')),qtype(findkey('lanes'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Maaßstraße')),qtype(findkey('surface'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','speed_camera')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','speed_camera')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','speed_camera')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','traffic_signals')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','traffic_signals')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','construction')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','construction')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','motorway'),keyval('ref','A 5')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','motorway'),keyval('ref','A 5')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','motorway')),qtype(nodup(findkey('ref')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','motorway')),qtype(nodup(findkey('int_ref')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','defibrillator')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','defibrillator')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','defibrillator')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','phone')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','phone')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','phone')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','ambulance_station')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','ambulance_station')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','ambulance_station')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','fire_hydrant')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','fire_hydrant')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','italian'),keyval('name','Roseto')),qtype(findkey('addr:street'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Zum Seppl')),qtype(findkey('website'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Cesarino')),qtype(findkey('phone'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Cesarino')),qtype(findkey('wheelchair'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Da Mario')),qtype(findkey('cuisine'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Schwarzer Adler')),qtype(findkey('phone'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('name','Taj Mahal')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('name','Taj Mahal')),qtype(findkey('smoking'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('name','Taj Mahal')),qtype(findkey('phone'))) +query(area(keyval('name','Eppelheim')),nwr(keyval('name','Subway')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Subway')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','italian')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','greek')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','asian')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','japanese')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','african')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','african')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','sandwich')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','german')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','japanese')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Marriott Hotel')),qtype(findkey('restaurant'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Marriott Hotel')),qtype(findkey('leisure'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Marriott Hotel')),qtype(findkey('rooms'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Hotel Schönberger Hof')),qtype(findkey('addr:street'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Hotel Schönberger Hof')),qtype(findkey('rooms'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Hotel Schönberger Hof')),qtype(findkey('wheelchair'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(findkey('phone',topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','butcher')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','butcher'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','butcher')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','butcher')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','seafood')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','seafood')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','stationery')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','stationery')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','stationery')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','post_office')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','post_office')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','post_office')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','post_office'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('building','apartments')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('building','apartments')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','theatre')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','theatre')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','theatre')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Starbucks')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','McDonald's')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Burger King')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('railway','station')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','italian')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','indian')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','greek')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','burger')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','burger')),qtype(nodup(findkey('name')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','vegetarian')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bar')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('smoking','no')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','ice_cream')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','ice_cream')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bar'),keyval('wifi','free')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue')),qtype(findkey('website'))) +query(nwr(keyval('name','Edinburgh'),keyval('place','city')),qtype(findkey('population'))) +query(nwr(keyval('name','Edinburgh'),keyval('place','city')),qtype(findkey('population'))) +query(nwr(keyval('name','Edinburgh'),keyval('place','city')),qtype(findkey('population'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(findkey('ele'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(findkey('ele'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak'),keyval('name','Arthur's Seat')),qtype(findkey('ele'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','catholic')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','catholic')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','church_of_scotland')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','church_of_scotland')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','museum')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue')),qtype(findkey('website'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop'),keyval('name','Lothian Road')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bar')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop'),keyval('name','South Gyle Park')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop'),keyval('name','The Square')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','castle')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','castle')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','university')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','university')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','university')),qtype(least(topx(2)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('information','map'),keyval('hiking','yes')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('information','map'),keyval('hiking','yes')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','books')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','books')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Tesco')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Tesco')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Sainsbury's')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Sainsbury's')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fire_station')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fire_station')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','police')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','police')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','library')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','library')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','parking')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','parking')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','parking'),keyval('parking','underground')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','parking'),keyval('parking','underground')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','dentist')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','dentist')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten'),keyval('name','The Edinburgh Nursery')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema'),keyval('wheelchair','yes')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema')),qtype(count)) +query(nwr(keyval('name','Edinburgh'),keyval('place','city')),qtype(findkey('name:ja'))) +query(nwr(keyval('name','Edinburgh'),keyval('place','city')),qtype(findkey('name:fr'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bar')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','William Chambers Statue')),qtype(findkey('wikipedia'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Talbot Rice Gallery')),qtype(findkey('wikipedia'))) +query(nwr(keyval('name','Edinburgh'),keyval('place','city')),qtype(findkey('wikipedia'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','museum')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','museum')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','spring')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fire_station')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','police')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','police')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','books')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','library')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','library')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','university')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','McDonald's')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('cuisine','asian')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('cuisine','greek')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','pharmacy')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','castle')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','taxi')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','artwork')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','artwork')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','pharmacy')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','pharmacy')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','books')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','library')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','police')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fire_station')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','castle')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(findkey('website'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(findkey('website'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','4')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('wheelchair','yes')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('operator','Apex Hotels')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('operator','Apex Hotels')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('operator','Apex Hotels')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','3')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','3')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('smoking','no')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('smoking','no')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(least(topx(5)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(least(topx(10)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','picnic_site')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','picnic_site')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','picnic_site')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','picnic_site')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','picnic_site')),qtype(least(topx(5)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','attraction')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','attraction')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','attraction')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint')),qtype(least(topx(3)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint'),keyval('wheelchair','yes')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','rugby')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','rugby')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','rugby')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','rugby')),qtype(least(topx(2)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','climbing')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','climbing')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','climbing')),qtype(least(topx(2)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','cricket')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','cricket')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','bmx')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','bmx')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','bmx')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','soccer')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','soccer')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','soccer')),qtype(least(topx(2)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','swimming')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','rugby')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','swimming')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','swimming')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','bmx')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','soccer')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','cricket')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','climbing')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','rugby')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','picnic_site')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','basketball')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','basketball')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','basketball')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','basketball')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','basketball')),qtype(least(topx(2)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','spring')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','spring')),qtype(least(topx(2)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(findkey('website'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','theatre')),qtype(findkey('website'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','theatre')),qtype(findkey('addr:street'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','monument')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','monument')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','monument')),qtype(latlong)) +query(area(keyval('name','Leith')),nwr(keyval('name','Henderson Street')),qtype(least(topx(1)))) +query(area(keyval('name','Leith')),nwr(keyval('name','Abbey Avenue')),qtype(least(topx(1)))) +query(area(keyval('name','Stockbridge')),nwr(keyval('name','St Vincent Street')),qtype(least(topx(1)))) +query(area(keyval('name','Morningside')),nwr(keyval('name','Whitehouse Loan')),qtype(least(topx(1)))) +query(area(keyval('name','Leith')),nwr(keyval('name','Summerhall Place')),qtype(least(topx(1)))) +query(area(keyval('name','Newington')),nwr(keyval('name','Summerhall Place')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Summerhall Place')),qtype(findkey('maxspeed'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Summerhall Place')),qtype(findkey('lanes'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Summerhall Place')),qtype(findkey('surface'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Whitehouse Loan')),qtype(findkey('maxspeed'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Whitehouse Loan')),qtype(findkey('lanes'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Whitehouse Loan')),qtype(findkey('surface'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','speed_camera')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','speed_camera')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','speed_camera')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','traffic_signals')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','traffic_signals')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','construction')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','construction')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','motorway'),keyval('ref','M8')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','motorway'),keyval('ref','M8')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','motorway')),qtype(nodup(findkey('ref')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','motorway'),keyval('ref','M90')),qtype(findkey('maxspeed'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','key_cutter')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','key_cutter')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','key_cutter')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','shoemaker')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','shoemaker')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','shoemaker')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','electrician')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','electrician')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','electrician')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','tailor')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','tailor')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','italian'),keyval('name','Giuliano's')),qtype(findkey('addr:street'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','pizza'),keyval('name','The Crafters Barn')),qtype(findkey('website'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Guru Balti')),qtype(findkey('phone'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Zizzi')),qtype(findkey('wheelchair'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Piatto Verde')),qtype(findkey('cuisine'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Piatto Verde')),qtype(findkey('phone'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('name','La Garrigue')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('name','Buffalo Grill')),qtype(findkey('website'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('name','La Garrigue')),qtype(findkey('phone'))) +query(area(keyval('name','Newington')),nwr(keyval('name','Subway')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Subway')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','italian')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','greek')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','asian')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','japanese')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','african')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','african')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','sandwich')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','british')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','japanese')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Holiday Inn Express')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','The Salisbury')),qtype(findkey('stars'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','The Salisbury')),qtype(findkey('phone'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Holiday Inn Express')),qtype(findkey('addr:street'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Jurys Inn')),qtype(findkey('addr:street'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Malmaison')),qtype(findkey('wheelchair'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(findkey('addr:street',topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','butcher')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','butcher'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','butcher')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(findkey('addr:street',topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','seafood')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','seafood')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','stationery')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','stationery')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','stationery')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','post_office')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','post_office')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','post_office')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','post_office'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','brewery')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','brewery')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','theatre')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','theatre')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','theatre')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Starbucks')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','McDonald's')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Burger King')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','italian')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','indian')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','greek')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','burger')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','burger')),qtype(nodup(findkey('name')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','vegetarian')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bar')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('smoking','yes')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','ice_cream')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','ice_cream')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bar'),keyval('cuisine','french')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Cinéma Chaplin')),qtype(findkey('website'))) +query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(findkey('population'))) +query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(findkey('population'))) +query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(findkey('population'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','hospital')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(findkey('name:ja'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(findkey('architect'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(findkey('architect'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(findkey('height'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','catholic')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','catholic')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','protestant')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','protestant')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','museum')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Cinéma Chaplin')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop'),keyval('name','Hôpital des Enfants Malades')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bar')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop'),keyval('name','Pasteur - Lycée Buffon')),qtype(findkey('operator'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop'),keyval('name','Mairie du XV')),qtype(findkey('operator'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','castle')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','castle')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','university')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','university')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','university')),qtype(least(topx(2)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('information','map')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('information','map'),keyval('hiking','yes')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','books')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','books')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Franprix')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Franprix')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Monoprix')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Monoprix')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fire_station')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fire_station')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','police')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','police')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','library')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','library')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','car_sharing')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','car_sharing')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','car_sharing')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','parking')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','parking')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','parking'),keyval('parking','underground')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','parking'),keyval('parking','underground')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','dentist')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','dentist')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','hospital')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','hospital')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','hospital')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','hospital'),keyval('name','Hôpital Marmottan')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema'),keyval('wheelchair','yes')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema')),qtype(count)) +query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(findkey('name:ja'))) +query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(findkey('name:es'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station'),keyval('name','Pont Cardinet')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station'),keyval('name','Argentine')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bar')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(findkey('wikipedia'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','1er Arrondissement')),qtype(findkey('wikipedia'))) +query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(findkey('wikipedia'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','museum')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','museum')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','peak')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','memorial')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','memorial')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','spring')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fire_station')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','police')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','police')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','books')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','library')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','library')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','university')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','McDonald's')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('cuisine','asian')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('cuisine','greek')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','pharmacy')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','castle')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','car_sharing')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','taxi')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','artwork')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','artwork')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','pharmacy')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','pharmacy')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','books')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','library')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','police')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fire_station')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','castle')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(findkey('email'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','4')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('wheelchair','yes')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('operator','Accor')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('operator','Accor')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('operator','Accor')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','3')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','3')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('wheelchair','yes')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(least(topx(5)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(least(topx(10)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','picnic_site')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','picnic_site')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','picnic_site')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','picnic_site')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','picnic_site')),qtype(least(topx(5)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','attraction')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','attraction')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','attraction')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','viewpoint')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','viewpoint')),qtype(least(topx(3)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','viewpoint')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','viewpoint')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','attraction'),keyval('wheelchair','yes')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','attraction'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','tennis')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','tennis')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','tennis')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','tennis')),qtype(least(topx(2)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','martial_arts')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','martial_arts')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','martial_arts')),qtype(least(topx(2)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','rowing')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','rowing')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','skateboard')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','skateboard')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','skateboard')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','soccer')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','soccer')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','soccer')),qtype(least(topx(2)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','swimming')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','swimming')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','swimming')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','swimming')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','skateboard')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','soccer')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','rowing')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','climbing')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','tennis')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','viewpoint')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','picnic_site')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','table_tennis')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','table_tennis')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','table_tennis')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','table_tennis')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','table_tennis')),qtype(least(topx(2)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','cave_entrance')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','cave_entrance')),qtype(least(topx(2)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(findkey('wikipedia'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','theatre'),keyval('wheelchair','yes')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','theatre'),keyval('wheelchair','yes')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','tomb')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','tomb')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','tomb')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','monument')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','monument')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','monument')),qtype(latlong)) +query(area(keyval('name','5e Arrondissement')),nwr(keyval('name','Rue Poliveau')),qtype(least(topx(1)))) +query(area(keyval('name','5e Arrondissement')),nwr(keyval('name','Rue d'Amboise')),qtype(least(topx(1)))) +query(area(keyval('name','2e Arrondissement')),nwr(keyval('name','Boulevard de Sébastopol')),qtype(least(topx(1)))) +query(area(keyval('name','10e Arrondissement')),nwr(keyval('name','Place de la République')),qtype(least(topx(1)))) +query(area(keyval('name','5e Arrondissement')),nwr(keyval('name','Avenue du Général Lemonnier')),qtype(least(topx(1)))) +query(area(keyval('name','1er Arrondissement')),nwr(keyval('name','Avenue du Général Lemonnier')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue du Général Lemonnier')),qtype(findkey('bicycle'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue du Général Lemonnier')),qtype(findkey('oneway'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue du Général Lemonnier')),qtype(findkey('highway'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République')),qtype(findkey('maxspeed'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République')),qtype(findkey('lanes'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République')),qtype(findkey('highway'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','speed_camera')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','speed_camera')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','speed_camera')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','traffic_signals')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','traffic_signals')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','construction')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','construction')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','motorway'),keyval('ref','A 4')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','motorway'),keyval('ref','A 4')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','motorway')),qtype(nodup(findkey('ref')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','motorway')),qtype(nodup(findkey('int_ref')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','defibrillator')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','defibrillator')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','defibrillator')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','phone')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','phone')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','phone')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','ambulance_station')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','ambulance_station')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','ambulance_station')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','fire_hydrant')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','fire_hydrant')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','italian'),keyval('name','Maria Luisa')),qtype(findkey('addr:street'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','pizza'),keyval('name','Pizzeria Venezia')),qtype(findkey('internet_access'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','L'Encrier')),qtype(findkey('phone'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','L'Encrier')),qtype(findkey('wheelchair'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Chez Jenny')),qtype(findkey('cuisine'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Chez Jenny')),qtype(findkey('phone'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('name','Ristorante Pellicano')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('name','Ristorante Pellicano')),qtype(findkey('smoking'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('name','Ristorante Pellicano')),qtype(findkey('phone'))) +query(area(keyval('name','8e Arrondissement')),nwr(keyval('name','Subway')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Subway')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','italian')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','greek')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','asian')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','japanese')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','african')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','african')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','sandwich')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','french')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','japanese')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Hôtel Victoria Châtelet')),qtype(findkey('phone'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Hôtel Victoria Châtelet')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Hôtel Victoria Châtelet')),qtype(findkey('addr:street'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Robinet d'Or')),qtype(findkey('addr:street'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Robinet d'Or')),qtype(findkey('star'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Robinet d'Or')),qtype(findkey('smoking'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(findkey('phone',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','butcher')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','butcher'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','butcher')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','butcher'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','butcher')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','seafood')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','seafood')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','stationery')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','stationery')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','stationery')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','post_office')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','post_office')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','post_office')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','post_office'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('building','apartments')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('building','apartments')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','theatre')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','theatre')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','theatre')),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('shop','supermarket'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station'))),search(nwr(keyval('tourism','museum'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('aeroway','aerodrome'),keyval('aerodrome','international'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('aeroway','aerodrome'),keyval('aerodrome','international'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Thalia'))),search(nwr(keyval('amenity','parking'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Thalia'))),search(nwr(keyval('amenity','parking'),keyval('parking','underground'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school'))),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('railway','station'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','cinema'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Hard Rock Cafe'))),search(nwr(keyval('shop','*'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('name','Galeria Kaufhof'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('opening_hours'))) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Czernyring'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1))))) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Angelweg'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1))))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Neuenheim'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN)),qtype(count)) +query(area(keyval('name','Neuenheim')),nwr(keyval('amenity','school')),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera'))),search(nwr(keyval('amenity','pharmacy'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','An der Neckarspitze'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Yorckstraße'))),search(nwr(keyval('shop','bakery'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1)))),for('car')) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Wieblinger Weg'))),search(nwr(keyval('amenity','gym'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))),for('walk')) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('amenity','school'))),maxdist(200)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('amenity','school'))),maxdist(200)),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg-Altstadt'),keyval('railway','station'))),search(nwr(keyval('amenity','*'))),maxdist(DIST_INTOWN)),qtype(nodup(findkey('amenity')))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg-Altstadt'),keyval('railway','station'))),search(nwr(keyval('amenity','*'))),maxdist(DIST_INTOWN)),qtype(latlong)) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Altstadt'))),search(nwr(keyval('shop','*'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +query(north(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +dist(query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(latlong)),query(nwr(keyval('name','Mannheim'),keyval('place','city')),qtype(latlong)),unit(km)) +dist(query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(latlong)),query(nwr(keyval('name','Mannheim'),keyval('place','city')),qtype(latlong)),unit(mi)) +dist(query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(latlong)),query(nwr(keyval('name','Stuttgart'),keyval('place','city')),qtype(latlong)),unit(km)) +dist(query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(latlong)),query(nwr(keyval('name','Frankfurt am Main'),keyval('place','city')),qtype(latlong)),unit(mi)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('shop','car'),keyval('operator','Mercedes'))),maxdist(DIST_OUTTOWN)),qtype(latlong(topx(1)))) +dist(query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(latlong(topx(1))))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(findkey('addr:city'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Wieblingen'))),search(nwr(keyval('shop','car'))),maxdist(DIST_INTOWN)),qtype(findkey('addr:street'))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('historic','manor'))),maxdist(DIST_DAYTRIP)),qtype(count)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('historic','manor'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('historic','manor'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Mannheimer Straße'))),search(nwr(keyval('shop','mobile_phone'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(latlong))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('sport','cliff_diving'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(DIST_DAYTRIP)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('tourism','zoo'))),maxdist(DIST_DAYTRIP)),qtype(latlong)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('tourism','theme_park'))),maxdist(DIST_DAYTRIP)),qtype(findkey('name'))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','parking'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','cafe'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','pharmacy'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('name','McDonald's'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('opening_hours'))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(50000)),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('leisure','swimming_pool'))),maxdist(30000)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('sport','golf'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('tourism','hotel'))),maxdist(WALKDING_DIST)),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('tourism','hotel'),keyval('stars','4'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','spring'))),qtype(latlong)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('natural','spring'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('natural','spring'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak'))),search(nwr(keyval('amenity','parking'))),maxdist(WALKDING_DIST)),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak'))),search(nwr(keyval('information','map'),keyval('hiking','yes'))),maxdist(WALKDING_DIST)),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak'))),search(nwr(keyval('information','map'),keyval('hiking','yes'))),maxdist(WALKDING_DIST)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('information','map'),keyval('hiking','yes'))),search(nwr(keyval('natural','peak'))),maxdist(WALKDING_DIST)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(latlong,findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','4')),qtype(count,latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','restaurant'))),maxdist(WALKDING_DIST)),qtype(findkey('name',topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','bar'))),maxdist(500)),qtype(findkey('name',topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bar'),keyval('smoking','yes'))),search(nwr(keyval('highway','bus_stop'))),maxdist(WALKDING_DIST)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bar'),keyval('smoking','yes'))),search(nwr(keyval('highway','bus_stop'))),maxdist(400)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','park')),qtype(least(topx(1)),latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','miniature_golf')),qtype(least(topx(1)),latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','copyshop')),qtype(findkey('name'),latlong)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('sport','american_football'))),maxdist(DIST_DAYTRIP)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('cuisine','greek')),qtype(count,latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('cuisine',or('greek','italian'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(and(keyval('shop','bakery'),keyval('shop','butcher'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(and(keyval('shop','bakery'),keyval('shop','butcher'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(or(keyval('sport','tennis'),keyval('sport','badminton'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('sport','scuba_diving'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('shop','scuba_diving'))),maxdist(DIST_OUTTOWN)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera'))),search(nwr(keyval('amenity','restaurant'),or(keyval('cuisine','indian'),keyval('cuisine','asian')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station'))),search(nwr(keyval('amenity','fast_food'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station'))),search(nwr(keyval('amenity','restaurant'),or(keyval('cuisine','italian'),keyval('cuisine','indian')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','restaurant'),keyval('cuisine','african'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Yorckstraße'))),search(nwr(and(keyval('amenity','bank'),keyval('amenity','pharmacy')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Mannheimer Straße'))),search(nwr(and(keyval('shop','butcher'),keyval('shop','bakery')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station')),qtype(latlong))) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg-Altstadt'),keyval('railway','station')),qtype(latlong))) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf')),qtype(least(topx(1)))),for('walk')) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg-Altstadt'),keyval('railway','station')),qtype(least(topx(1)))),for('walk')) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(findkey('site_type'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop')),qtype(least(topx(20)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank')),qtype(findkey('operator'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank')),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(area(keyval('name','Wieblingen')),nwr(keyval('amenity','bank')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank'),keyval('atm','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank')),qtype(findkey(and('addr:street','addr:housenumber')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking'),keyval('bicycle_parking','lockers')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes'),keyval('bicycle_parking','lockers')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking')),qtype(findkey('capacity'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey('website'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey('phone'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','camp_site')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','camp_site')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','camp_site')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','camp_site')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water')),qtype(findkey('ele'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg')),nwr(keyval('leisure','golf_course')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','kindergarten')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','kindergarten')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','kindergarten')),qtype(latlong)) +query(area(keyval('name','Neuenheim')),nwr(keyval('amenity','kindergarten')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','kindergarten'),keyval('denomination','protestant')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(nodup(findkey('operator')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(findkey('website'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing'),keyval('opening_hours','24/7')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','living_street')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','living_street'),keyval('oneway','yes')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','townhall')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','townhall')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','townhall'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','*')),qtype(nodup(findkey('amenity')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','*')),qtype(nodup(findkey('tourism')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','*')),qtype(nodup(findkey('historic')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','*')),qtype(nodup(findkey('landuse')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','*')),qtype(nodup(findkey('leisure')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('craft','*')),qtype(nodup(findkey('craft')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry')),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)),count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(latlong,findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Thalia'))),search(nwr(keyval('highway','bus_stop'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'),keyval('wheelchair','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong,findkey('operator'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Brunnengasse'))),search(nwr(keyval('amenity','bicycle_parking'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Fischergasse'))),search(nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey(and('website','phone')))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('amenity','drinking_water'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Brunnengasse'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Neuenheim'))),search(nwr(keyval('amenity','townhall'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Fischergasse'))),search(nwr(keyval('amenity','townhall'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('historic','*'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('historic','*'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('historic'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('historic','*'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel')),qtype(latlong,nodup(findkey('brand')))) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Plöck')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel')),qtype(latlong))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('amenity','fuel'),keyval('brand','Jet'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'),keyval('opening_hours','24/7')),qtype(least(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'),keyval('fuel:diesel','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'),keyval('fuel:diesel','yes'),keyval('addr:street','Bergheimer Straße')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial'),keyval('natural','spring')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Königstuhl'))),search(nwr(keyval('historic','memorial'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('historic','memorial'),keyval('wheelchair','yes'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein')),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(DIST_INTOWN)),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(WALKDING_DIST)),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(north(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(DIST_OUTTOWN))),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'),keyval('name','Simon Hochherrr')),qtype(findkey('person:date_of_birth'))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'),keyval('wheelchair','yes'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein')),qtype(findkey('person:date_of_birth'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein')),qtype(findkey('start_date'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','planetarium')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Yorckstraße'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Fischergasse'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'),keyval('denomination','protestant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'),keyval('denomination','catholic'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),maxdist(DIST_OUTTOWN)),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(north(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','St. Laurentius')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Kirche Jesu Christi')),qtype(latlong))) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Mannheimer Straße'))),search(nwr(keyval('name','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','buddhist')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tower:type','communication')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tower:type','communication')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tower:type','communication'),keyval('operator','Südwestrundfunk (SWR)')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tower:type','communication'),keyval('name','Fernsehturm Heidelberg')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tower:type','communication'),keyval('communication:mobile_phone','yes')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tower:type','communication'),keyval('name','Fernsehturm Heidelberg')),qtype(findkey('operator'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','water_well')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','water_well')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','water_well')),qtype(least(topx(5)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('man_made','water_well'))),maxdist(2000)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('man_made','water_well'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','*'),keyval('wheelchair','yes')),qtype(latlong,findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('ruins','yes')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('ruins','yes')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('ruins','yes')),qtype(least(topx(20)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('ruins','yes')),qtype(findkey(and('name','wikipedia')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('ruins','yes'),keyval('site_type','temple')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('ruins','yes')),qtype(latlong,findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station'))),search(nwr(keyval('ruins','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','toilets')),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST),topx(1)),qtype(latlong)) +query(north(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('second_hand','only')),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('second_hand','only'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('second_hand','only')),qtype(latlong,findkey('opening_hours'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(5000)),qtype(count)) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(WALKDING_DIST)),qtype(latlong)),for('car')) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('recycling:glass','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('recycling:clothes','yes')),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Mannheimer Straße'))),search(nwr(keyval('recycling:glass','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Yorckstraße'))),search(nwr(keyval('recycling:clothes','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','pier')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','pier')),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','pier'),keyval('name','Neckarsonne Ausflugsschiff'))),search(nwr(keyval('tourism','hotel'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','pier'),keyval('name','Neckarsonne Ausflugsschiff'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('advertising','column')),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera'))),search(nwr(keyval('advertising','column'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('aeroway','helipad')),qtype(least(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Yorckstraße'))),search(nwr(keyval('aeroway','helipad'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','charging_station')),qtype(least(topx(1)),count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','charging_station')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','charging_station')),qtype(findkey('operator'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','animal_shelter')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','animal_shelter')),qtype(least(topx(2)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','animal_shelter')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','arts_centre')),qtype(least(topx(1)),count,latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','arts_centre')),qtype(findkey(and('name','website')))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bbq')),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('amenity','bbq'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','driving_school')),qtype(latlong,findkey('name'))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Mannheimer Straße'))),search(nwr(keyval('amenity','driving_school'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fountain')),qtype(latlong,count)) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','fountain'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)),for('walk')) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Sume-Brunnen')),qtype(latlong))) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Don Robert')),qtype(latlong))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera'))),search(nwr(keyval('amenity','fountain'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','shelter')),qtype(nodup(findkey('shelter_type')))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Königstuhl'))),search(nwr(keyval('shelter_type','weather_shelter'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','Île-de-France')),nwr(keyval('station','subway')),qtype(latlong)) +query(area(keyval('name','Île-de-France')),nwr(keyval('station','subway')),qtype(count)) +query(area(keyval('name','Île-de-France')),nwr(keyval('station','subway')),qtype(findkey('wikipedia'))) +query(area(keyval('name','Île-de-France')),nwr(keyval('station','subway'),keyval('wheelchair','yes')),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Alaise'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Alaise'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_INTOWN)),qtype(count)) +query(around(center(nwr(keyval('name','Alaise'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_INTOWN)),qtype(findkey('operator'))) +query(around(center(nwr(keyval('name','Alaise'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_INTOWN)),qtype(findkey('collection_times'))) +query(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop')),qtype(nodup(findkey('network')))) +query(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop')),qtype(count)) +query(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop')),qtype(latlong)) +query(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop')),qtype(least(topx(30)))) +query(nwr(keyval('abandoned:tourism','theme_park')),qtype(least(topx(1)))) +query(nwr(keyval('abandoned:tourism','theme_park')),qtype(count)) +query(nwr(keyval('abandoned:tourism','theme_park')),qtype(latlong)) +query(nwr(keyval('abandoned:tourism','theme_park')),qtype(findkey('name'))) +query(nwr(keyval('abandoned:tourism','theme_park')),qtype(findkey('end_date'))) +query(nwr(keyval('abandoned:tourism','theme_park')),qtype(findkey('start_date'))) +query(nwr(keyval('addr:city','Neuler')),qtype(nodup(findkey('addr:street')))) +query(nwr(keyval('aerialway','zip_line')),qtype(count)) +query(nwr(keyval('aerialway','zip_line')),qtype(latlong)) +query(nwr(keyval('amenity','conference_centre')),qtype(count)) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','conference_centre')),qtype(count)) +query(nwr(keyval('amenity','conference_centre')),qtype(findkey('name'))) +query(nwr(keyval('amenity','conference_centre')),qtype(latlong)) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','conference_centre')),qtype(least(topx(1)))) +query(nwr(keyval('amenity','conference_centre')),qtype(findkey('addr:city'))) +query(nwr(keyval('artwork:group','berlin_bears')),qtype(latlong)) +query(nwr(keyval('artwork:group','berlin_bears')),qtype(count)) +query(nwr(keyval('artwork:group','berlin_bears')),qtype(least(topx(2)))) +query(nwr(keyval('artwork:group','berlin_bears')),qtype(findkey('name'))) +query(nwr(keyval('artwork:group','berlin_bears')),qtype(nodup(findkey('artwork_type')))) +query(nwr(keyval('building','planned')),qtype(count)) +query(nwr(keyval('building','planned')),qtype(latlong)) +query(nwr(keyval('building','planned')),qtype(least(topx(1)))) +query(nwr(keyval('building','planned')),qtype(nodup(findkey('addr:city')))) +query(nwr(keyval('craft','distillery')),qtype(count)) +query(nwr(keyval('craft','distillery')),qtype(latlong)) +query(nwr(keyval('craft','distillery')),qtype(findkey('addr:city'))) +query(nwr(keyval('craft','distillery')),qtype(findkey('name'))) +query(nwr(keyval('craft','distillery')),qtype(findkey('phone'))) +query(nwr(keyval('craft','distillery')),qtype(findkey('website'))) +query(nwr(keyval('craft','distillery'),keyval('product','whisky')),qtype(latlong)) +query(nwr(keyval('hazard','minefield')),qtype(count)) +query(nwr(keyval('hazard','minefield')),qtype(latlong)) +query(area(keyval('name','Hamburg')),nwr(keyval('amenity','kindergarten')),qtype(count)) +query(area(keyval('name','Hamburg')),nwr(keyval('amenity','kindergarten'),keyval('addr:street','Wördenmoorweg')),qtype(least(topx(1)))) +query(area(keyval('name','Hamburg')),nwr(keyval('amenity','kindergarten')),qtype(latlong)) +query(area(keyval('name','Hamburg')),nwr(keyval('amenity','kindergarten')),qtype(findkey('website'))) +query(nwr(keyval('Schalansky_ref','*')),qtype(latlong)) +query(nwr(keyval('Schalansky_ref','*')),qtype(count)) +query(nwr(keyval('Schalansky_ref','*')),qtype(findkey('wikipedia'))) +query(nwr(keyval('Schalansky_ref','*')),qtype(findkey('name:de'))) +query(nwr(keyval('Schalansky_ref','*')),qtype(findkey('name'))) +query(nwr(keyval('Schalansky_ref','*')),qtype(findkey('name:en'))) +query(nwr(keyval('amenity','exhibition_center')),qtype(count)) +query(nwr(keyval('amenity','exhibition_center')),qtype(latlong)) +query(nwr(keyval('amenity','exhibition_center')),qtype(findkey('name'))) +query(nwr(keyval('amenity','kneipp_water_cure')),qtype(latlong)) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','kneipp_water_cure')),qtype(least(topx(1)))) +query(nwr(keyval('amenity','kneipp_water_cure')),qtype(count)) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','kneipp_water_cure')),qtype(count)) +query(nwr(keyval('amenity','public_bookcase')),qtype(count)) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','public_bookcase')),qtype(least(topx(1)))) +query(nwr(keyval('amenity','public_bookcase')),qtype(latlong)) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','public_bookcase')),qtype(latlong)) +query(area(keyval('name','Deutschland')),nwr(keyval('artwork_type','mural')),qtype(least(topx(1)))) +query(area(keyval('name','Deutschland')),nwr(keyval('artwork_type','mural')),qtype(least(topx(1)))) +query(nwr(keyval('artwork_type','mural')),qtype(latlong)) +query(area(keyval('name','Deutschland')),nwr(keyval('artwork_type','mural')),qtype(latlong)) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','exhibition_center')),qtype(least(topx(1)))) +query(north(area(keyval('name','Île-de-France')),nwr(keyval('station','subway'))),qtype(latlong)) +query(north(area(keyval('name','Schriesheim')),nwr(keyval('amenity','post_box'))),qtype(latlong)) +query(north(around(center(nwr(keyval('name','Schriesheim'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_OUTTOWN))),qtype(latlong)) +query(north(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop'))),qtype(latlong)) +query(around(center(area(keyval('name','Hamburg')),nwr(keyval('name','Wördenmoorweg'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','Ludwigshafen am Rhein')),nwr(keyval('memorial:type','stolperstein')),qtype(least(topx(1)))) +query(area(keyval('name',and('Magdeburg','Netphen'))),nwr(keyval('memorial:type','stolperstein')),qtype(count)) +query(area(keyval('name','Osnabrück')),nwr(keyval('memorial:type','stolperstein')),qtype(findkey('name'))) +query(area(keyval('name','Pinneberg')),nwr(keyval('memorial:type','stolperstein')),qtype(latlong)) +query(north(area(keyval('name','Delmenhorst')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(area(keyval('name','Ludwigshafen am Rhein')),nwr(keyval('memorial:type','stolperstein')),qtype(least(topx(1)))) +query(area(keyval('name','Bielefeld')),nwr(keyval('memorial:type','stolperstein')),qtype(findkey('name'))) +query(nwr(keyval('monitoring:bicycle','yes')),qtype(latlong)) +query(nwr(keyval('monitoring:bicycle','yes')),qtype(findkey('website'))) +query(nwr(keyval('monitoring:bicycle','yes')),qtype(count)) +query(nwr(keyval('name','Cash Converters'),keyval('shop','*')),qtype(latlong)) +query(nwr(keyval('name','Cash Converters'),keyval('shop','*')),qtype(count)) +query(nwr(keyval('name','Cash Converters'),keyval('shop','*')),qtype(nodup(findkey('shop')))) +query(nwr(keyval('name','Driving Test Centre')),qtype(count,latlong)) +query(nwr(keyval('name','Kelso ROC Post')),qtype(latlong,findkey('historic'))) +query(nwr(keyval('name','Kelso ROC Post'),keyval('landuse','military')),qtype(least(topx(1)))) +query(nwr(keyval('name','Manure Pit')),qtype(latlong)) +query(nwr(keyval('name','Marks & Spencer Food')),qtype(count)) +query(area(keyval('name','United Kingdom')),nwr(keyval('name','Marks & Spencer Food')),qtype(count)) +query(nwr(keyval('name','Pet Cemetery')),qtype(latlong)) +query(area(keyval('name','Deutschland')),nwr(keyval('name','Pet Cemetery')),qtype(count)) +query(area(keyval('name','Deutschland')),nwr(keyval('name','Volkshochschule'),keyval('amenity','school')),qtype(count)) +query(area(keyval('name','Witten')),nwr(keyval('social_facility:for','migrant')),qtype(count)) +query(area(keyval('name','Witten')),nwr(keyval('social_facility:for','migrant')),qtype(latlong)) +query(around(center(area(keyval('name','Witten')),nwr(keyval('name','Witten Hbf'))),search(nwr(keyval('social_facility:for','migrant'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Stuttgart')),nwr(keyval('leisure','playground')),qtype(latlong)) +query(area(keyval('name','Stuttgart')),nwr(keyval('amenity','toilets')),qtype(latlong)) +query(area(keyval('name','Stuttgart')),nwr(or(keyval('amenity','toilets'),keyval('amenity','playground'))),qtype(latlong)) +query(area(keyval('name','Stuttgart')),nwr(keyval('leisure','playground'),keyval('wheelchair','yes')),qtype(latlong)) +query(around(center(area(keyval('name','Stuttgart')),nwr(keyval('name','Rührbrunnen'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST),topx(1)),qtype(latlong)) +dist(query(around(center(area(keyval('name','Stuttgart')),nwr(keyval('name','Rührbrunnen'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST),topx(1)),qtype(latlong))) +dist(query(around(center(area(keyval('name','Stuttgart')),nwr(keyval('name','Rührbrunnen'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST),topx(1)),qtype(latlong)),for('walk')) +query(area(keyval('name','Montpellier')),nwr(keyval('sport','tennis')),qtype(latlong)) +query(area(keyval('name','Montpellier')),nwr(keyval('sport','tennis')),qtype(count)) +query(north(area(keyval('name','Montpellier')),nwr(keyval('sport','tennis'))),qtype(count)) +query(around(center(area(keyval('name','Montpellier')),nwr(keyval('name','Tennis Club du Parc'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Montpellier')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('sports','tennis'))),maxdist(2000)),qtype(least(topx(1)))) +query(area(keyval('name','Bonn')),nwr(keyval('addr:street','Sternstraße')),qtype(least(topx(1)))) +query(area(keyval('name','Bonn')),nwr(keyval('addr:street','Sternstraße')),qtype(findkey('shop'))) +query(area(keyval('name','Bonn')),nwr(keyval('addr:street','Sternstraße'),keyval('shop','*')),qtype(findkey('name'))) +query(area(keyval('name','München')),nwr(keyval('amenity','charging_station')),qtype(count,latlong)) +query(area(keyval('name','München')),nwr(keyval('amenity','charging_station')),qtype(findkey('operator'))) +query(around(center(area(keyval('name','München')),nwr(keyval('name','Frauenkirche'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Toulouse')),nwr(keyval('amenity','post_office')),qtype(latlong)) +query(around(center(area(keyval('name','Toulouse')),nwr(keyval('name','Polyclinique du Parc'))),search(nwr(keyval('amenity','post_office'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Berlin')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(north(area(keyval('name','Berlin')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(area(keyval('name','Berlin')),nwr(keyval('amenity','restaurant'),keyval('cuisine','italian')),qtype(latlong)) +query(around(center(area(keyval('name','Berlin')),nwr(keyval('name','Deutscher Bundestag'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Berlin')),nwr(keyval('name','Brandenburger Tor'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','Berlin')),nwr(keyval('name','Berlin Hauptbahnhof'),keyval('building','train_station'))),search(nwr(keyval('amenity','restaurant'),keyval('cuisine','greek'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong))) +query(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school')),qtype(count)) +query(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school')),qtype(latlong)) +query(north(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school'))),qtype(latlong)) +query(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school')),qtype(findkey(and('name','website')))) +query(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school'),keyval('school:de','Grundschule')),qtype(findkey('name'))) +query(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural')),qtype(latlong,findkey('name'))) +query(north(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural'))),qtype(latlong,findkey('name'))) +query(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural')),qtype(findkey(and('name','website')))) +query(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural')),qtype(findkey('artist_name'))) +query(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural')),qtype(least(topx(1)),count)) +query(area(keyval('name','Bretagne')),nwr(keyval('craft','brewery')),qtype(latlong)) +query(area(keyval('name','Bretagne')),nwr(keyval('craft','brewery')),qtype(count,latlong)) +query(area(keyval('name','Bretagne')),nwr(keyval('craft','brewery')),qtype(findkey(and('name','opening_hours')))) +query(area(keyval('name','Bretagne')),nwr(keyval('craft','brewery')),qtype(count,findkey('name'))) +query(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes')),qtype(latlong)) +query(north(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes'))),qtype(count)) +query(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes')),qtype(count,latlong)) +query(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes'),keyval('oneway','yes')),qtype(count)) +query(area(keyval('name','Dresden')),nwr(keyval('building','greenhouse')),qtype(least(topx(1)),count,latlong)) +query(north(area(keyval('name','Dresden')),nwr(keyval('building','greenhouse'))),qtype(latlong)) +query(area(keyval('name','Adendorf')),nwr(keyval('emergency','fire_hydrant')),qtype(count,latlong)) +query(area(keyval('name','Adendorf')),nwr(keyval('emergency','fire_hydrant'),keyval('fire_hydrant:type','underground')),qtype(count,latlong)) +query(area(keyval('name','Brietlingen')),nwr(keyval('emergency','fire_hydrant')),qtype(least(topx(1)))) +query(area(keyval('name','Brietlingen')),nwr(keyval('emergency','fire_hydrant')),qtype(latlong)) +query(area(keyval('name','Lüneburg')),nwr(keyval('emergency','fire_hydrant'),keyval('fire_hydrant:type','underground')),qtype(count,latlong)) +query(area(keyval('name','Lüneburg')),nwr(keyval('emergency','fire_hydrant')),qtype(least(topx(1)))) +query(area(keyval('name','Baden-Württemberg')),nwr(keyval('emergency','phone')),qtype(latlong)) +query(area(keyval('name','Baden-Württemberg')),nwr(keyval('emergency','phone')),qtype(count,latlong)) +query(area(keyval('name','Baden-Württemberg')),nwr(keyval('emergency','phone')),qtype(nodup(findkey('operator')))) +query(area(keyval('name','Baden-Baden')),nwr(keyval('emergency','phone')),qtype(latlong)) +query(area(keyval('name','Witten')),nwr(keyval('emergency','phone')),qtype(count)) +query(area(keyval('name','Sachsen')),nwr(keyval('generator:source','wind')),qtype(count)) +query(area(keyval('name','Sachsen')),nwr(keyval('generator:source','wind')),qtype(nodup(findkey('manufacturer')))) +query(area(keyval('name','Lampertheim')),nwr(keyval('name','Starenweg'),keyval('highway','*')),qtype(least(topx(1)))) +query(area(keyval('name','Lampertheim')),nwr(keyval('name','Blumenstraße'),keyval('highway','*')),qtype(least(topx(1)))) +query(area(keyval('name','Nantes')),nwr(keyval('historic','*')),qtype(findkey('historic'))) +query(area(keyval('name','Nantes')),nwr(keyval('historic','memorial')),qtype(least(topx(1)))) +query(area(keyval('name','Nantes')),nwr(keyval('historic','boundary_stone')),qtype(least(topx(1)))) +query(area(keyval('name','Nantes')),nwr(or(keyval('historic','memorial'),keyval('historic','wayside_cross'))),qtype(count)) +query(area(keyval('name','Nantes')),nwr(keyval('historic','*')),qtype(count)) +query(north(area(keyval('name','Nantes')),nwr(keyval('historic','*'))),qtype(count)) +query(area(keyval('name','Nantes')),nwr(keyval('historic','*'),keyval('inscription','*')),qtype(findkey(and('name','inscription')))) +query(area(keyval('name','Hummelsbüttel')),nwr(keyval('historic','boundary_stone')),qtype(latlong,count)) +query(area(keyval('name','Dresden')),nwr(keyval('junction','roundabout')),qtype(count,findkey('name'))) +query(north(area(keyval('name','Dresden')),nwr(keyval('junction','roundabout'))),qtype(latlong)) +query(area(keyval('name','Dresden')),nwr(keyval('junction','roundabout')),qtype(least(topx(1)))) +query(area(keyval('name','Hohenlohekreis')),nwr(keyval('leisure','nature_reserve')),qtype(least(topx(1)))) +query(area(keyval('name','Hohenlohekreis')),nwr(keyval('leisure','nature_reserve')),qtype(count)) +query(area(keyval('name','Hohenlohekreis')),nwr(keyval('leisure','nature_reserve')),qtype(findkey('name'),latlong)) +query(area(keyval('name','York')),nwr(keyval('leisure','playground')),qtype(count)) +query(area(keyval('name','York')),nwr(keyval('leisure','playground')),qtype(latlong)) +query(north(area(keyval('name','York')),nwr(keyval('leisure','playground'))),qtype(latlong,count)) +query(around(center(area(keyval('name','York')),nwr(keyval('name','Ainsty Grove'))),search(nwr(keyval('leisure','playground'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Vendée')),nwr(keyval('man_made','water_tower')),qtype(count)) +query(area(keyval('name','Vendée')),nwr(keyval('man_made','water_tower')),qtype(latlong)) +query(area(keyval('name','Bayern')),nwr(keyval('historic','*')),qtype(findkey('historic'))) +query(area(keyval('name','Bayern')),nwr(keyval('historic','memorial')),qtype(count)) +query(north(area(keyval('name','Bayern')),nwr(keyval('historic','memorial'))),qtype(latlong)) +query(area(keyval('name','Marseille')),nwr(keyval('historic','*')),qtype(findkey('historic'))) +query(area(keyval('name','Marseille')),nwr(keyval('historic','monument')),qtype(least(topx(1)),count)) +query(area(keyval('name','Marseille')),nwr(keyval('historic','monument')),qtype(findkey('name'))) +query(north(area(keyval('name','Pays de la Loire')),nwr(keyval('historic','monument'))),qtype(latlong)) +query(area(keyval('name','Pays de la Loire')),nwr(keyval('historic','monument')),qtype(count)) +query(area(keyval('name','Osterode')),nwr(keyval('natural','cave_entrance')),qtype(least(topx(1)),count)) +query(area(keyval('name','Osterode')),nwr(keyval('natural','cave_entrance')),qtype(findkey('name'),latlong)) +query(north(area(keyval('name','Osterode')),nwr(keyval('natural','spring'))),qtype(count)) +query(area(keyval('name','Osterode')),nwr(keyval('natural','spring')),qtype(latlong)) +query(area(keyval('name','Osterode')),nwr(and(keyval('natural','spring'),keyval('natural','peak'))),qtype(count)) +query(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak')),qtype(count)) +query(north(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(count)) +query(north(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey(and('name','ele')))) +query(north(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey('wikipedia'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('shop','supermarket'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'),keyval('railway','station'))),search(nwr(keyval('tourism','museum'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('aeroway','aerodrome'),keyval('aerodrome','international'))),maxdist(DIST_OUTTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('aeroway','aerodrome'),keyval('aerodrome','international'))),maxdist(DIST_OUTTOWN)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Librairie Galignani'))),search(nwr(keyval('amenity','parking'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Librairie Galignani'))),search(nwr(keyval('amenity','parking'),keyval('parking','underground'))),maxdist(DIST_INTOWN),topx(1)),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school'))),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station'))),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','cinema'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Hard Rock Café'))),search(nwr(keyval('shop','*'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('name','La Flûte de Pan'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('opening_hours'))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Bernard Dimey'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1))))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue des Cloys'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1))))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','14e Arrondissement'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN)),qtype(count)) +query(area(keyval('name','14e Arrondissement')),nwr(keyval('amenity','school')),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Cinaxe'))),search(nwr(keyval('amenity','pharmacy'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue de Cicé'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Lauriston'))),search(nwr(keyval('shop','bakery'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1)))),for('car')) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Meslay'))),search(nwr(keyval('amenity','gym'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))),for('walk')) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('amenity','school'))),maxdist(200)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('amenity','school'))),maxdist(200)),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Bastille'),keyval('railway','station'))),search(nwr(keyval('amenity','*'))),maxdist(DIST_INTOWN)),qtype(nodup(findkey('amenity')))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Bastille'),keyval('railway','station'))),search(nwr(keyval('amenity','*'))),maxdist(DIST_INTOWN)),qtype(latlong)) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('name','Gare du Nord'),keyval('railway','station'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','5e Arrondissement'))),search(nwr(keyval('shop','*'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +query(north(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +dist(query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(latlong)),query(nwr(keyval('name','Rennes'),keyval('place','city')),qtype(latlong)),unit(km)) +dist(query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(latlong)),query(nwr(keyval('name','Rennes'),keyval('place','city')),qtype(latlong)),unit(mi)) +dist(query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(latlong)),query(nwr(keyval('name','Lyon'),keyval('place','city')),qtype(latlong)),unit(km)) +dist(query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(latlong)),query(nwr(keyval('name','Marseille'),keyval('place','city')),qtype(latlong)),unit(mi)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('shop','car'),keyval('operator','Renault'))),maxdist(DIST_OUTTOWN)),qtype(latlong(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','7e Arrondissement'))),search(nwr(keyval('shop','car'))),maxdist(DIST_INTOWN)),qtype(findkey('addr:street'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Quai de Béthune'))),search(nwr(keyval('shop','mobile_phone'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'),keyval('railway','station'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(latlong))) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('sport','cliff_diving'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('tourism','zoo'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('tourism','theme_park'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','parking'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','cafe'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','pharmacy'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('leisure','swimming_pool'))),maxdist(30000)),qtype(findkey('name'))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('tourism','hotel'))),maxdist(WALKDING_DIST)),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('tourism','hotel'),keyval('stars','4'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','spring'))),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('natural','spring'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('natural','spring'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(latlong,findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','4')),qtype(count,latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','restaurant'))),maxdist(WALKDING_DIST)),qtype(findkey('name',topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','bar'))),maxdist(500)),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','park')),qtype(least(topx(1)),latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','miniature_golf')),qtype(least(topx(1)),latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','copyshop')),qtype(findkey('name'),latlong)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('sport','american_football'))),maxdist(DIST_OUTTOWN)),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('cuisine','greek')),qtype(count,latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('cuisine',or('greek','italian'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(and(keyval('shop','bakery'),keyval('shop','butcher'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(and(keyval('shop','bakery'),keyval('shop','butcher'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(or(keyval('sport','tennis'),keyval('sport','badminton'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Cinaxe'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Cinaxe'))),search(nwr(keyval('amenity','restaurant'),or(keyval('cuisine','indian'),keyval('cuisine','asian')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'),keyval('railway','station'))),search(nwr(keyval('amenity','fast_food'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'),keyval('railway','station'))),search(nwr(keyval('amenity','restaurant'),or(keyval('cuisine','italian'),keyval('cuisine','indian')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','restaurant'),keyval('cuisine','african'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Lauriston'))),search(nwr(and(keyval('amenity','bank'),keyval('amenity','pharmacy')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Quai de Béthune'))),search(nwr(and(keyval('shop','butcher'),keyval('shop','bakery')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'),keyval('railway','station')),qtype(latlong))) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Bastille'),keyval('railway','station')),qtype(latlong))) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord')),qtype(least(topx(1)))),for('walk')) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Bastille'),keyval('railway','station')),qtype(least(topx(1)))),for('walk')) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop')),qtype(least(topx(20)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank')),qtype(findkey('operator'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank')),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(area(keyval('name','7e Arrondissement')),nwr(keyval('amenity','bank')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank'),keyval('atm','yes')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank')),qtype(findkey(and('addr:street','addr:housenumber')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking')),qtype(findkey('capacity'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey('phone'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','camp_site')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','camp_site')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','camp_site')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','camp_site')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','Paris')),nwr(keyval('leisure','golf_course')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','kindergarten')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','kindergarten')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','kindergarten')),qtype(latlong)) +query(area(keyval('name','14e Arrondissement')),nwr(keyval('amenity','kindergarten')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','kindergarten')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','car_sharing')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','car_sharing')),qtype(nodup(findkey('operator')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','living_street')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','living_street'),keyval('oneway','yes')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','townhall')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','townhall')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','townhall'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','*')),qtype(nodup(findkey('amenity')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','*')),qtype(nodup(findkey('tourism')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','*')),qtype(nodup(findkey('historic')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','*')),qtype(nodup(findkey('landuse')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','*')),qtype(nodup(findkey('leisure')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('craft','*')),qtype(nodup(findkey('craft')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','quarry')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','quarry')),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)),count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(latlong,findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Librairie Galignani'))),search(nwr(keyval('highway','bus_stop'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'),keyval('wheelchair','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong,findkey('operator'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue René Coty'))),search(nwr(keyval('amenity','bicycle_parking'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Vercingétorix'))),search(nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey(and('website','phone')))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('amenity','drinking_water'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue René Coty'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','14e Arrondissement'))),search(nwr(keyval('amenity','townhall'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Vercingétorix'))),search(nwr(keyval('amenity','townhall'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('historic','*'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('historic','*'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('historic'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('historic','*'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel')),qtype(latlong,nodup(findkey('brand')))) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue de Ségur')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel')),qtype(latlong))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('amenity','fuel'),keyval('brand','Esso'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel'),keyval('opening_hours','24/7')),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel'),keyval('fuel:diesel','yes')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Fragonard'))),search(nwr(keyval('historic','memorial'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('historic','memorial'),keyval('wheelchair','yes'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','memorial'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','planetarium')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Lauriston'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Vercingétorix'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'),keyval('denomination','protestant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'),keyval('denomination','catholic'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),maxdist(DIST_OUTTOWN)),qtype(latlong)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(north(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Chapelle Saint-Bernard')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Chapelle Sainte-Marie')),qtype(latlong))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Quai de Béthune'))),search(nwr(keyval('name','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','buddhist')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','fountain'))),maxdist(2000)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','fountain'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','*'),keyval('wheelchair','yes')),qtype(latlong,findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'),keyval('railway','station'))),search(nwr(keyval('amenity','toilets'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','toilets')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST),topx(1)),qtype(latlong)) +query(north(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('second_hand','only')),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('second_hand','only'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('second_hand','only')),qtype(latlong,findkey('opening_hours'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(latlong)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(5000)),qtype(count)) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(WALKDING_DIST)),qtype(latlong)),for('car')) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('recycling:glass','yes')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('recycling:clothes','yes')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Quai de Béthune'))),search(nwr(keyval('recycling:glass','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Lauriston'))),search(nwr(keyval('recycling:clothes','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('man_made','pier')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('man_made','pier')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('advertising','column')),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Cinaxe'))),search(nwr(keyval('advertising','column'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('aeroway','helipad')),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Lauriston'))),search(nwr(keyval('aeroway','helipad'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','charging_station')),qtype(least(topx(1)),count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','charging_station')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','charging_station')),qtype(findkey('operator'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','arts_centre')),qtype(least(topx(1)),count,latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','arts_centre')),qtype(findkey(and('name','website')))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bbq')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','driving_school')),qtype(latlong,findkey('name'))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Quai de Béthune'))),search(nwr(keyval('amenity','driving_school'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fountain')),qtype(latlong,count)) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','fountain'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)),for('walk')) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Léon de Bruxelles')),qtype(latlong))) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(latlong))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Cinaxe'))),search(nwr(keyval('amenity','fountain'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','shelter')),qtype(nodup(findkey('shelter_type')))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Fragonard'))),search(nwr(keyval('shelter_type','weather_shelter'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(findkey('name'))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(latlong)) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(least(topx(20)))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(findkey('website'))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(findkey('phone'))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(findkey('wikipedia'))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(findkey(and('addr:street','addr:housenumber')))) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum')),qtype(latlong)) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum')),qtype(findkey('website'))) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum')),qtype(findkey('phone'))) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum')),qtype(findkey('wikipedia'))) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum'),keyval('internet_access','wlan')),qtype(findkey('name'))) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum'),keyval('internet_access:fee','no')),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Cathédrale Notre-Dame de Paris'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Musée du Louvre'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(north(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre'))),qtype(count)) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Musée du Louvre'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong,findkey('name'))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(north(area(keyval('name','Paris')),nwr(keyval('tourism','museum'))),qtype(latlong)) +dist(query(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel')),qtype(latlong)),query(area(keyval('name','Paris')),nwr(keyval('name','Cathédrale Notre-Dame de Paris')),qtype(latlong))) +dist(query(area(keyval('name','Paris')),nwr(keyval('name','Musée du Louvre')),qtype(latlong)),query(area(keyval('name','Paris')),nwr(keyval('name','Arc de Triomphe')),qtype(latlong))) +dist(query(area(keyval('name','Paris')),nwr(keyval('name','Musée du Louvre')),qtype(latlong)),query(area(keyval('name','Paris')),nwr(keyval('name','Arc de Triomphe')),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(or(keyval('amenity','arts_centre'),keyval('tourism','museum')))),maxdist(DIST_INTOWN)),qtype(findkey(and('name','website')))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(or(keyval('amenity','arts_centre'),keyval('tourism','museum')))),maxdist(DIST_INTOWN)),qtype(findkey('website'))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(or(keyval('amenity','arts_centre'),keyval('tourism','museum')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Cathédrale Notre-Dame de Paris'))),search(nwr(or(keyval('amenity','arts_centre'),keyval('tourism','museum')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(keyval('tourism','museum'))),maxdist(5000)),qtype(findkey(and('name','phone')))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Cathédrale Notre-Dame de Paris'))),search(nwr(keyval('tourism','museum'))),maxdist(10000)),qtype(findkey(and('name','phone')))) +query(north(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(latlong)) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(keyval('amenity','bureau_de_change'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('amenity','bureau_de_change'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('amenity','embassy')),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('amenity','embassy')),qtype(findkey('country'))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','embassy')),qtype(findkey('name'))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','prison')),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('amenity','prison')),qtype(findkey(and('name','wikipedia')))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','prison')),qtype(count,latlong)) +query(area(keyval('name','Paris')),nwr(keyval('building','cathedral')),qtype(least(topx(1)))) +query(area(keyval('name','Paris')),nwr(keyval('building','cathedral')),qtype(findkey('denomination'))) +query(area(keyval('name','Paris')),nwr(keyval('building','cathedral')),qtype(latlong,findkey('name'))) +query(area(keyval('name','Paris')),nwr(keyval('building','cathedral')),qtype(least(topx(5)))) +query(area(keyval('name','Paris')),nwr(keyval('building','cathedral'),keyval('name','Cathédrale Notre-Dame de Paris')),qtype(least(topx(1)))) +query(area(keyval('name','Paris')),nwr(keyval('building','cathedral'),keyval('name','Basilique du Sacré-Cœur')),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris')),nwr(keyval('building','cathedral'))),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('name','Basilique du Sacré-Cœur')),qtype(findkey('roof:colour'))) +query(area(keyval('name','Paris')),nwr(keyval('name','Basilique du Sacré-Cœur')),qtype(findkey('wheelchair'))) +query(area(keyval('name','Paris')),nwr(keyval('name','Basilique du Sacré-Cœur')),qtype(latlong)) +dist(query(area(keyval('name','Paris')),nwr(keyval('name','Gare du Nord')),qtype(latlong)),query(area(keyval('name','Paris')),nwr(keyval('name','Basilique du Sacré-Cœur')),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Basilique du Sacré-Cœur'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','Paris')),nwr(keyval('historic','tomb')),qtype(least(topx(1)))) +query(area(keyval('name','Paris')),nwr(keyval('historic','tomb')),qtype(least(topx(13)))) +query(area(keyval('name','Paris')),nwr(keyval('historic','tomb')),qtype(latlong)) +query(area(keyval('name','Paris')),nwr(keyval('historic','tomb')),qtype(findkey(and('name','wikipedia')))) +query(north(area(keyval('name','Paris')),nwr(keyval('historic','tomb'))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('shop','supermarket'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Camera Obscura'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'),keyval('railway','station'))),search(nwr(keyval('tourism','museum'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Waterstones'))),search(nwr(keyval('amenity','parking'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Waterstones'))),search(nwr(keyval('amenity','parking'),keyval('parking','underground'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school'))),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('railway','station'))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','cinema'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Hard Rock Cafe'))),search(nwr(keyval('shop','*'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Carpet Lane'))),search(nwr(keyval('name','Sainsbury's Local'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('opening_hours'))) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Ulster Drive'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1))))) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Restalrig Avenue'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1))))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Restalrig'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN)),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue'))),search(nwr(keyval('amenity','pharmacy'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','King Street'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Mary King's Close'))),search(nwr(keyval('shop','bakery'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1)))),for('car')) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Viewforth'))),search(nwr(keyval('amenity','gym'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))),for('walk')) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('amenity','school'))),maxdist(200)),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('amenity','school'))),maxdist(200)),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Haymarket'),keyval('railway','station'))),search(nwr(keyval('amenity','*'))),maxdist(DIST_INTOWN)),qtype(nodup(findkey('amenity')))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Haymarket'),keyval('railway','station'))),search(nwr(keyval('amenity','*'))),maxdist(DIST_INTOWN)),qtype(latlong)) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('name','Edinburgh Waverley'),keyval('railway','station'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Alnwickhill'))),search(nwr(keyval('shop','*'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +query(north(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +dist(query(nwr(keyval('name','City of Edinburgh')),qtype(latlong)),query(nwr(keyval('name','Leeds'),keyval('place','city')),qtype(latlong)),unit(km)) +dist(query(nwr(keyval('name','City of Edinburgh')),qtype(latlong)),query(nwr(keyval('name','Leeds'),keyval('place','city')),qtype(latlong)),unit(mi)) +dist(query(nwr(keyval('name','City of Edinburgh')),qtype(latlong)),query(nwr(keyval('name','Glasgow'),keyval('place','city')),qtype(latlong)),unit(km)) +dist(query(nwr(keyval('name','City of Edinburgh')),qtype(latlong)),query(nwr(keyval('name','Aberdeen'),keyval('place','city')),qtype(latlong)),unit(mi)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('shop','car'),keyval('brand','Vauxhall'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Carrick Knowe'))),search(nwr(keyval('shop','car'))),maxdist(DIST_INTOWN)),qtype(findkey('addr:street'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('historic','manor'))),maxdist(DIST_DAYTRIP)),qtype(count)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('historic','manor'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('historic','manor'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Newhaven Road'))),search(nwr(keyval('shop','mobile_phone'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'),keyval('railway','station'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(latlong))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('sport','cliff_diving'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(DIST_DAYTRIP)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('tourism','zoo'))),maxdist(DIST_DAYTRIP)),qtype(latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('tourism','theme_park'))),maxdist(DIST_DAYTRIP)),qtype(findkey('name'))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','parking'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','cafe'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('amenity','pharmacy'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('name','Sainsbury's Local'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('opening_hours'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(50000)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('leisure','swimming_pool'))),maxdist(30000)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('sport','golf'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('tourism','hotel'))),maxdist(WALKDING_DIST)),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('tourism','hotel'),keyval('stars','4'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','spring'))),qtype(latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('natural','spring'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('natural','spring'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak'))),search(nwr(keyval('amenity','parking'))),maxdist(WALKDING_DIST)),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak'))),search(nwr(keyval('information','map'),keyval('hiking','yes'))),maxdist(WALKDING_DIST)),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak'))),search(nwr(keyval('information','map'),keyval('hiking','yes'))),maxdist(WALKDING_DIST)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('information','map'),keyval('hiking','yes'))),search(nwr(keyval('natural','peak'))),maxdist(WALKDING_DIST)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(latlong,findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','4')),qtype(count,latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','restaurant'))),maxdist(WALKDING_DIST)),qtype(findkey('name',topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','bar'))),maxdist(500)),qtype(findkey('name',topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bar'))),search(nwr(keyval('highway','bus_stop'))),maxdist(WALKDING_DIST)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bar'))),search(nwr(keyval('highway','bus_stop'))),maxdist(400)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','park')),qtype(least(topx(1)),latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','miniature_golf')),qtype(least(topx(1)),latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','copyshop')),qtype(findkey('name'),latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('sport','american_football'))),maxdist(DIST_DAYTRIP)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('cuisine','greek')),qtype(count,latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('cuisine',or('greek','italian'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(and(keyval('shop','bakery'),keyval('shop','butcher'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(and(keyval('shop','bakery'),keyval('shop','butcher'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(or(keyval('sport','tennis'),keyval('sport','badminton'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Longstone Park'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('sport','scuba_diving'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('shop','scuba_diving'))),maxdist(DIST_OUTTOWN)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue'))),search(nwr(keyval('amenity','restaurant'),or(keyval('cuisine','indian'),keyval('cuisine','asian')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'),keyval('railway','station'))),search(nwr(keyval('amenity','fast_food'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'),keyval('railway','station'))),search(nwr(keyval('amenity','restaurant'),or(keyval('cuisine','italian'),keyval('cuisine','indian')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','restaurant'),keyval('cuisine','african'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Mary King's Close'))),search(nwr(and(keyval('amenity','bank'),keyval('amenity','pharmacy')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Newhaven Road'))),search(nwr(and(keyval('shop','butcher'),keyval('shop','bakery')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'),keyval('railway','station')),qtype(latlong))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Haymarket'),keyval('railway','station')),qtype(latlong))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley')),qtype(least(topx(1)))),for('walk')) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Haymarket'),keyval('railway','station')),qtype(least(topx(1)))),for('walk')) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(findkey('site_type'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop')),qtype(least(topx(20)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank')),qtype(findkey('operator'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank')),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(area(keyval('name','Fountainbridge')),nwr(keyval('amenity','bank')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank'),keyval('atm','yes')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank')),qtype(findkey(and('addr:street','addr:housenumber')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking'),keyval('bicycle_parking','lockers')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes'),keyval('bicycle_parking','lockers')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking')),qtype(findkey('capacity'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','camp_site')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','camp_site')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','camp_site')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','camp_site')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','drinking_water')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','drinking_water')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','drinking_water')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','golf_course')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(nodup(findkey('operator')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(findkey('website'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','living_street')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','townhall')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','townhall')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','*')),qtype(nodup(findkey('amenity')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','*')),qtype(nodup(findkey('tourism')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','*')),qtype(nodup(findkey('historic')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','*')),qtype(nodup(findkey('landuse')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','*')),qtype(nodup(findkey('leisure')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','*')),qtype(nodup(findkey('craft')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry')),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)),count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(latlong,findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Waterstones'))),search(nwr(keyval('highway','bus_stop'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong,findkey('operator'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Princes Street'))),search(nwr(keyval('amenity','bicycle_parking'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Castlehill'))),search(nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','fish_and_chips'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','fish_and_chips')),qtype(findkey(and('name','opening_hours')))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('amenity','drinking_water'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Princes Street'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Restalrig'))),search(nwr(keyval('amenity','townhall'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Castlehill'))),search(nwr(keyval('amenity','townhall'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('historic','*'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('historic','*'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('historic'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('historic','*'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel')),qtype(latlong,nodup(findkey('brand')))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Cambridge Gardens')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel')),qtype(latlong))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('amenity','fuel'),keyval('brand','Jet'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel'),keyval('opening_hours','24/7')),qtype(least(topx(1)))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel'),keyval('fuel:diesel','yes')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial'),keyval('natural','spring')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Calton Hill'))),search(nwr(keyval('historic','memorial'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('historic','memorial'),keyval('wheelchair','yes'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','planetarium')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Mary King's Close'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Castlehill'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'),keyval('denomination','catholic'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),maxdist(DIST_OUTTOWN)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(north(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Pilrig St Paul's')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','True Jesus Church')),qtype(latlong))) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Newhaven Road'))),search(nwr(keyval('name','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','buddhist')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tower:type','communication')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tower:type','communication')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tower:type','communication'),keyval('operator','O2')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tower:type','communication'),keyval('operator','O2')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tower:type','communication'),keyval('communication:mobile_phone','yes')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tower:type','communication'),keyval('operator','O2')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','water_well')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','water_well')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','water_well')),qtype(least(topx(5)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('man_made','water_well'))),maxdist(2000)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('man_made','water_well'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','*'),keyval('wheelchair','yes')),qtype(latlong,findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','toilets')),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST),topx(1)),qtype(latlong)) +query(north(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('second_hand','only')),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('second_hand','only'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('second_hand','only')),qtype(latlong,findkey('opening_hours'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(5000)),qtype(count)) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(WALKDING_DIST)),qtype(latlong)),for('car')) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('recycling:glass','yes')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('recycling:clothes','yes')),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Newhaven Road'))),search(nwr(keyval('recycling:glass','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Mary King's Close'))),search(nwr(keyval('recycling:clothes','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','pier')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','pier')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','pier'),keyval('name','Hawes Pier'))),search(nwr(keyval('tourism','hotel'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','pier'),keyval('name','Hawes Pier'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('advertising','column')),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue'))),search(nwr(keyval('advertising','column'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('aeroway','helipad')),qtype(least(topx(1)))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('aeroway','helipad')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Mary King's Close'))),search(nwr(keyval('aeroway','helipad'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','charging_station')),qtype(least(topx(1)),count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','charging_station')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','charging_station')),qtype(findkey('operator'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','animal_shelter')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','animal_shelter')),qtype(least(topx(2)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','animal_shelter')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','arts_centre')),qtype(least(topx(1)),count,latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','arts_centre')),qtype(findkey(and('name','website')))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bbq')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fountain')),qtype(latlong,count)) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('amenity','fountain'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)),for('walk')) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Calton Hill')),qtype(latlong))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Camera Obscura')),qtype(latlong))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue'))),search(nwr(keyval('amenity','fountain'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bureau_de_change'))),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Castle'))),search(nwr(keyval('amenity','bureau_de_change'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('amenity','bureau_de_change'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral')),qtype(findkey('denomination'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral')),qtype(latlong,findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral')),qtype(least(topx(5)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral'),keyval('name','St Mary's Episcopal Cathedral')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral'),keyval('name','Cramond Kirk')),qtype(least(topx(1)))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb')),qtype(least(topx(13)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb')),qtype(findkey(and('name','wikipedia')))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','embassy')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','embassy')),qtype(findkey('country'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','embassy')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','prison')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','prison')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','prison')),qtype(count,latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','prison'),keyval('tourism','attraction')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','viaduct')),qtype(least(topx(1)),count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','viaduct')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','*')),qtype(findkey('operator'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','*')),qtype(count,findkey('name'))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','*'))),qtype(count,latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','harbour')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','harbour')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','harbour')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('site_type','megalith')),qtype(least(topx(1)),latlong)) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Airport'))),search(nwr(keyval('site_type','megalith'))),maxdist(DIST_INTOWN)),qtype(latlong))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Airport')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Cat Stane')),qtype(latlong))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Airport')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Calton Hill')),qtype(latlong))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Calton Hill')),qtype(latlong))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Castle'))),search(nwr(keyval('name','KFC'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('name','KFC'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Castle')),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Castle'))),search(nwr(keyval('tourism','hotel'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('railway','station'))),qtype(count)) +query(east(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','spring'))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(count)) +query(east(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(DIST_OUTTOWN))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'),keyval('wheelchair','yes'))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(east(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(east(area(keyval('name','Schriesheim')),nwr(keyval('amenity','post_box'))),qtype(latlong)) +query(east(around(center(nwr(keyval('name','Schriesheim'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_OUTTOWN))),qtype(latlong)) +query(east(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop'))),qtype(latlong)) +query(east(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('second_hand','only'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +query(east(area(keyval('name','Montpellier')),nwr(keyval('sport','tennis'))),qtype(count)) +query(east(area(keyval('name','Berlin')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(east(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school'))),qtype(latlong)) +query(east(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural'))),qtype(latlong,findkey('name'))) +query(east(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes'))),qtype(count)) +query(east(area(keyval('name','Dresden')),nwr(keyval('building','greenhouse'))),qtype(latlong)) +query(east(area(keyval('name','Nantes')),nwr(keyval('historic','*'))),qtype(count)) +query(east(area(keyval('name','Dresden')),nwr(keyval('junction','roundabout'))),qtype(latlong)) +query(east(area(keyval('name','York')),nwr(keyval('leisure','playground'))),qtype(latlong,count)) +query(east(area(keyval('name','Bayern')),nwr(keyval('historic','memorial'))),qtype(latlong)) +query(east(area(keyval('name','Pays de la Loire')),nwr(keyval('historic','monument'))),qtype(latlong)) +query(east(area(keyval('name','Osterode')),nwr(keyval('natural','spring'))),qtype(count)) +query(east(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(count)) +query(east(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey(and('name','ele')))) +query(east(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey('wikipedia'))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station'))),qtype(count)) +query(east(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','spring'))),qtype(least(topx(1)))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','memorial'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(east(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(east(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('second_hand','only'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +query(east(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre'))),qtype(count)) +query(east(area(keyval('name','Paris')),nwr(keyval('tourism','museum'))),qtype(latlong)) +query(east(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(latlong)) +query(east(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(east(area(keyval('name','Paris')),nwr(keyval('building','cathedral'))),qtype(count)) +query(east(area(keyval('name','Paris')),nwr(keyval('historic','tomb'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('railway','station'))),qtype(count)) +query(east(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','spring'))),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten'))),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','fish_and_chips'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(east(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(east(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('second_hand','only'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bureau_de_change'))),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','*'))),qtype(count,latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('name','KFC'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('railway','station'))),qtype(count)) +query(west(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(count)) +query(west(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(DIST_OUTTOWN))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'),keyval('wheelchair','yes'))),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(west(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(west(area(keyval('name','Île-de-France')),nwr(keyval('station','subway'))),qtype(latlong)) +query(west(area(keyval('name','Schriesheim')),nwr(keyval('amenity','post_box'))),qtype(latlong)) +query(west(around(center(nwr(keyval('name','Schriesheim'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_OUTTOWN))),qtype(latlong)) +query(west(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop'))),qtype(latlong)) +query(west(area(keyval('name','Delmenhorst')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(west(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('second_hand','only'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +query(west(area(keyval('name','Montpellier')),nwr(keyval('sport','tennis'))),qtype(count)) +query(west(area(keyval('name','Berlin')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(west(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school'))),qtype(latlong)) +query(west(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural'))),qtype(latlong,findkey('name'))) +query(west(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes'))),qtype(count)) +query(west(area(keyval('name','Nantes')),nwr(keyval('historic','*'))),qtype(count)) +query(west(area(keyval('name','York')),nwr(keyval('leisure','playground'))),qtype(latlong,count)) +query(west(area(keyval('name','Bayern')),nwr(keyval('historic','memorial'))),qtype(latlong)) +query(west(area(keyval('name','Pays de la Loire')),nwr(keyval('historic','monument'))),qtype(latlong)) +query(west(area(keyval('name','Osterode')),nwr(keyval('natural','spring'))),qtype(count)) +query(west(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(count)) +query(west(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey(and('name','ele')))) +query(west(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey('wikipedia'))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station'))),qtype(count)) +query(west(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','spring'))),qtype(least(topx(1)))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','memorial'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(west(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(west(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('second_hand','only'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +query(west(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre'))),qtype(count)) +query(west(area(keyval('name','Paris')),nwr(keyval('tourism','museum'))),qtype(latlong)) +query(west(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(latlong)) +query(west(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(west(area(keyval('name','Paris')),nwr(keyval('building','cathedral'))),qtype(count)) +query(west(area(keyval('name','Paris')),nwr(keyval('historic','tomb'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('railway','station'))),qtype(count)) +query(west(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten'))),qtype(latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','fish_and_chips'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(west(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(west(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('second_hand','only'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','*'))),qtype(count,latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('name','KFC'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('railway','station'))),qtype(count)) +query(south(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','spring'))),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(count)) +query(south(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(DIST_OUTTOWN))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'),keyval('wheelchair','yes'))),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(south(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(south(area(keyval('name','Schriesheim')),nwr(keyval('amenity','post_box'))),qtype(latlong)) +query(south(around(center(nwr(keyval('name','Schriesheim'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_OUTTOWN))),qtype(latlong)) +query(south(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop'))),qtype(latlong)) +query(south(area(keyval('name','Delmenhorst')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(south(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('second_hand','only'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +query(south(area(keyval('name','Montpellier')),nwr(keyval('sport','tennis'))),qtype(count)) +query(south(area(keyval('name','Berlin')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(south(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school'))),qtype(latlong)) +query(south(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural'))),qtype(latlong,findkey('name'))) +query(south(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes'))),qtype(count)) +query(south(area(keyval('name','Nantes')),nwr(keyval('historic','*'))),qtype(count)) +query(south(area(keyval('name','York')),nwr(keyval('leisure','playground'))),qtype(latlong,count)) +query(south(area(keyval('name','Bayern')),nwr(keyval('historic','memorial'))),qtype(latlong)) +query(south(area(keyval('name','Pays de la Loire')),nwr(keyval('historic','monument'))),qtype(latlong)) +query(south(area(keyval('name','Osterode')),nwr(keyval('natural','spring'))),qtype(count)) +query(south(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(count)) +query(south(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey(and('name','ele')))) +query(south(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey('wikipedia'))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school'))),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station'))),qtype(count)) +query(south(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','spring'))),qtype(least(topx(1)))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','memorial'))),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(south(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(south(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('second_hand','only'))),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +query(south(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre'))),qtype(count)) +query(south(area(keyval('name','Paris')),nwr(keyval('tourism','museum'))),qtype(latlong)) +query(south(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(latlong)) +query(south(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(south(area(keyval('name','Paris')),nwr(keyval('building','cathedral'))),qtype(count)) +query(south(area(keyval('name','Paris')),nwr(keyval('historic','tomb'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('railway','station'))),qtype(count)) +query(south(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten'))),qtype(latlong)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','fish_and_chips'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(south(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(south(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('second_hand','only'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','*'))),qtype(count,latlong)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('name','KFC'))),qtype(count)) diff --git a/smtsemparsecpp/data/nlmaps.test.counter b/smtsemparsecpp/data/nlmaps.test.counter new file mode 100644 index 000000000..4ffbff0ad --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.test.counter @@ -0,0 +1,880 @@ +1331 +1137 +1790 +2373 +367 +1736 +879 +1205 +2080 +284 +313 +648 +1025 +1580 +1816 +1726 +989 +1075 +39 +653 +1283 +676 +266 +113 +2248 +503 +269 +2371 +1844 +202 +48 +2088 +2240 +409 +1090 +631 +2267 +5 +1992 +433 +1476 +1745 +1215 +615 +736 +938 +1140 +2247 +1024 +1740 +1767 +2154 +1707 +952 +2239 +491 +1544 +801 +882 +2308 +314 +905 +182 +1830 +741 +1517 +1494 +268 +1835 +2123 +1907 +2379 +1870 +1439 +104 +1969 +1859 +835 +213 +832 +538 +559 +408 +1396 +343 +1444 +482 +1209 +1222 +2365 +1182 +309 +214 +1443 +1858 +1419 +1066 +2352 +1905 +810 +2 +958 +895 +469 +1537 +1311 +1828 +699 +697 +2230 +1948 +749 +763 +1456 +2222 +2290 +1450 +842 +1260 +1387 +1364 +2204 +521 +2262 +1834 +1840 +546 +949 +1170 +1391 +2266 +1252 +2090 +215 +1333 +38 +1733 +1796 +684 +1390 +855 +1774 +570 +820 +1088 +888 +1308 +2309 +401 +319 +2317 +1632 +2007 +1559 +1601 +2172 +1785 +529 +242 +677 +1110 +64 +1668 +1064 +1350 +2013 +1286 +1703 +2191 +377 +1582 +1367 +145 +780 +1730 +1860 +1806 +881 +265 +1519 +2030 +1810 +520 +762 +1901 +216 +661 +175 +517 +2340 +2106 +2029 +57 +483 +1273 +516 +827 +514 +1473 +1929 +98 +1812 +359 +116 +709 +1522 +512 +447 +789 +2307 +476 +381 +964 +1208 +73 +1160 +1778 +1864 +2036 +1317 +1232 +291 +1271 +2026 +1409 +2363 +2257 +2149 +1480 +1253 +1645 +1983 +548 +1192 +2075 +2078 +317 +769 +1428 +1448 +581 +2077 +2012 +2002 +913 +825 +1883 +974 +775 +2304 +1900 +1606 +134 +2283 +1159 +2367 +1427 +211 +1486 +481 +1510 +745 +153 +914 +1577 +2114 +1997 +1214 +1297 +531 +1746 +906 +992 +787 +191 +1716 +1845 +616 +82 +1383 +637 +972 +1177 +1128 +2205 +1491 +589 +1672 +1808 +2252 +1307 +1747 +1153 +2135 +1543 +734 +1111 +324 +819 +312 +1644 +2107 +507 +1272 +1498 +1152 +607 +305 +1813 +587 +70 +1021 +442 +1759 +590 +552 +1693 +1670 +371 +1760 +1418 +690 +2074 +282 +281 +1017 +272 +188 +1633 +1001 +1475 +1649 +1829 +1019 +290 +1181 +1891 +727 +1839 +1928 +2145 +1662 +1913 +1895 +574 +1179 +296 +1135 +523 +143 +1511 +14 +1763 +2196 +2044 +1493 +668 +1478 +1710 +977 +78 +1963 +1103 +499 +1161 +865 +1865 +1263 +222 +505 +1312 +765 +2368 +2272 +612 +543 +1995 +873 +2121 +279 +112 +2039 +2162 +1867 +1249 +1184 +1596 +802 +1115 +1994 +1330 +232 +2023 +1490 +1458 +140 +349 +813 +1318 +1174 +1926 +1044 +25 +1553 +1062 +1122 +1338 +821 +726 +1942 +1412 +859 +2234 +1464 +1962 +1065 +355 +1199 +876 +1353 +1814 +1011 +280 +800 +1637 +231 +655 +2167 +1714 +703 +2069 +1299 +174 +585 +1502 +1041 +1054 +781 +1635 +2364 +128 +289 +1653 +458 +1838 +1847 +1509 +1132 +1319 +1938 +1242 +148 +2236 +1978 +1373 +1148 +1178 +698 +875 +1467 +1787 +1811 +550 +956 +1395 +1936 +926 +135 +1084 +1856 +1294 +321 +2193 +995 +2108 +1455 +863 +2046 +837 +1595 +2246 +2208 +318 +2064 +205 +594 +2115 +435 +1442 +1770 +1708 +1504 +489 +1013 +530 +1990 +1643 +980 +2288 +907 +885 +44 +229 +849 +1086 +959 +2035 +1750 +99 +1711 +2152 +437 +1125 +1487 +35 +162 +1048 +975 +1934 +1259 +930 +1071 +1782 +1857 +1363 +168 +2003 +554 +440 +492 +2358 +601 +488 +2095 +1706 +673 +845 +1038 +711 +2209 +277 +2004 +621 +2271 +2129 +1129 +1201 +1678 +2055 +1800 +1236 +460 +811 +391 +2299 +1846 +1083 +506 +504 +2103 +467 +121 +642 +2156 +2102 +1194 +839 +1032 +1651 +465 +797 +2165 +2073 +1886 +1426 +2346 +259 +1971 +4 +2133 +234 +1323 +446 +13 +713 +241 +1627 +1795 +480 +2139 +1087 +419 +846 +1552 +1431 +1766 +56 +1648 +1556 +1775 +536 +836 +1165 +915 +1639 +2057 +327 +1292 +667 +2110 +2323 +2161 +1237 +2153 +861 +249 +2297 +694 +307 +2377 +92 +857 +1056 +1006 +1149 +255 +0 +738 +659 +2119 +1073 +1823 +577 +2093 +1719 +854 +2094 +74 +1836 +430 +2263 +718 +1656 +1102 +2159 +2083 +203 +1320 +1576 +1014 +2049 +1863 +212 +1949 +1786 +190 +660 +969 +545 +1262 +1607 +1802 +1506 +161 +1881 +1807 +101 +1329 +2181 +2185 +1872 +571 +292 +206 +1952 +365 +1697 +2034 +418 +1583 +1931 +2344 +2019 +892 +522 +1573 +1727 +1342 +1388 +118 +2216 +1624 +58 +1197 +473 +2251 +1982 +872 +240 +1257 +1093 +1097 +1416 +1620 +605 +36 +1966 +19 +133 +981 +1040 +1029 +416 +2332 +2150 +415 +1301 +163 +2085 +1413 +1996 +1722 +1092 +149 +508 +2313 +1783 +1452 +2329 +1119 +16 +423 +848 +804 +1091 +15 +1729 +1186 +1695 +2270 +210 +338 +919 +1281 +1407 +2231 +2022 +2000 +903 +402 +41 +1462 +518 +1820 +1977 +50 +1584 +1659 +325 +1059 +657 +438 +1423 +159 +345 +1529 +173 +1568 +69 +1107 +495 +1347 +1005 +1136 +583 +414 +2277 +374 +1600 +1238 +1451 +288 +786 +2350 +912 +1117 +1756 +2249 +456 +674 +2195 +1172 +2079 +1920 +2031 +1335 +120 +244 +761 +1348 +2315 +1764 +2101 +2011 +794 +2076 +1026 +2280 +1638 +790 +1630 +850 +2226 +72 +2027 +107 +2118 +724 +2342 +2120 +170 +1923 +748 +223 +965 +1507 +160 +1355 +1616 +1004 +1894 +1943 +2043 +2087 +395 +2148 +656 +1274 +1099 +1809 +524 +479 +652 +1077 +2284 +1291 +1611 +1641 +2336 +79 +1461 +1516 +692 +2361 +1654 +2146 +1937 +513 +1700 +672 +63 +1279 +1324 +353 +34 +2221 +2347 +889 +344 +1190 +858 +2351 +193 +773 +27 +171 +457 +1345 +2223 +2169 diff --git a/smtsemparsecpp/data/nlmaps.test.de b/smtsemparsecpp/data/nlmaps.test.de new file mode 100644 index 000000000..d585a84ef --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.test.de @@ -0,0 +1,880 @@ +Wie heißen die Grundschulen in Bielefeld ? +Gibt es 5 oder mehr Wasserbrunnen in Heidelberg ? +Kann man im Umkreis von Edinburgh irgendwo Tauchausrüstung kaufen ? +Gibt es Bio Supermärkte im Süden von Edinburgh ? +Gibt es Polizeiwachen in Edinburgh ? +In welcher Straße ist der nächste Autohändler von Carrick Knowe in Edinburgh ? +Was sind die Standorte aller Bäckereien in Paris ? +Wie viele Briefkästen gibt es im Umkreis von Alaise ? +Bitte sag mir , wo es östlich vom Place de la République in Paris öffentliche Toiletten gibt . +Kannst du mir den Standort in Heidelberg einer Bäckerei , die man mit einem Rollstuhl befahren kann , geben ? +Wo in Edinburgh gibt es Restaurants in denen das Rauchen nicht erlaubt ist ? +Wie viele Universitäten hat Paris ? +Kannst du alle Orte aufzählen , an denen es überdachte Fahrradparkplätze mit Schließfächern in Heidelberg gibt ? +Wo sind Kirchen , die Nahe am Palais de l’Élysée in Paris sind ? +Kannst du mir die Adressen von Banken in Edinburgh geben ? +Welche Geschäfte gibt es in der Nähe der Alnwickhill von Edinburgh ? +Kannst du mir den Namen des nächsten Restaurants oder der nächsten Bar von dem Kino Die Kamera in Heidelberg nennen ? +Wo ist die nächste Bank mit Geldautomaten , die man mit dem Rollstuhl befahren kann , vom Heidelberger Schloss aus ? +Gibt es eine Bushaltestelle in der Blumenstraße , Heidelberg ? +Gibt es Informationskarten in Paris ? +Wo auf der Welt gibt es Kontrollstationen für Fahrräder ? +Wo in Paris kann ich mein Auto parken ? +Kann ich irgendwo in Heidelberg afrikanisch essen ? +Wie viele Bibliotheken liegen in der Stadt Heidelberg ? +Wie viele Second Hand Läden gibt es im Westen von Edinburgh ? +Wie viele archäologische Stätten gibt es in Edinburgh ? +Gibt es japanische Restaurants in Heidelberg ? +Bitte sag mir , wo es südlich von der High Street in Edinburgh öffentliche Toiletten gibt . +Wie viele Rathäuser gibt es in Edinburgh ? +Gibt es archäologisch Stätten in Heidelberg ? +Wie viele Universitäten hat Heidelberg ? +Wo im Osten von Paris kann ich Geld wechseln ? +Wie viele Bergwerke gibt es im Westen von Edinburgh ? +Kannst du mir die Zahl der Polizeiwachen in Edinburgh nennen ? +Wo sind die Friedhöfe im Norden von Heidelberg ? +Wie viele Moscheen gibt es in Paris ? +Wie viele 3 Sterne Hotels gibt es im Süden von Heidelberg ? +Wo gibt es indische Restaurants in Heidelberg ? +Wie weit ist der nächste Megalith von Edinburgh Flughafen entfernt ? +Gibt es mehr als einen Buchladen in Edinburgh ? +Wo ist das nächste indische oder asiatische Restaurant vom Kino Le Cinaxe in Paris ? +Wie heißt der nächste Freizeitpark von Edinburgh aus ? +Wie heißen die verlassenen Freizeitparks ? +Wo in Paris kann ich Eiscreme bekommen ? +Gibt es mehr als eine Feuerwehr in Paris ? +Wie viele historische Herrschaftshäuser kann man als Tagesausflug von Heidelberg aus besuchen ? +Gib mir Name und Ort aller Touristenaktivitäten in Heidelberg , die man mit dem Rollstuhl besuchen kann . +Bitte sag mir , wo es westlich von der High Street in Edinburgh öffentliche Toiletten gibt . +Kannst du alle Orte aufzählen , an denen es Fahrradparkplätze mit Schließfächern in Heidelberg gibt ? +Wie heißt das nächste Geschäft von der Newhaven Road in Edinburgh bei dem man ein Handy kaufen kann ? +Wie heißen die Quellen im Umkreis von Edinburgh ? +Wie viele Stolpersteine findet man westlich von Heidelberg ? +Wo ist der nächste unterirdische Parkplatz von Waterstones in Edinburgh ? +Welches ist die nächste Apotheke vom Heidelberger Schloss aus ? +Wo sind die Friedhöfe im Westen von Edinburgh ? +An wie vielen Orten kann ich in Edinburgh klettern gehen ? +Wie viele Friedhöfe gibt es in Paris ? +Gibt es mehrere Höhleneingänge in Paris ? +Wie viele Metzgereien in Paris kann man mit einem Rollstuhl befahren ? +Falls es Wikipedia Seiten der Bergspitzen im Süden von Languedoc-Roussillon , nenne sie mir bitte . +Wo in Edinburgh kann ich Eis kaufen ? +Gibt es in der Nähe von Heidelberg einen internationalen Flughafen ? +Wo in Heidelberg kann ich Fußball spielen ? +Wie viele Trinkwasserstellen gibt es in Edinburgh ? +Kannst du mir bitte die Websites aller Hotels in Paris nennen ? +Gibt es Campingplätze in Paris ? +Von wem werden die Banken Paris betrieben ? +Wenn ich in Heidelberg wäre , aus wie vielen Restaurants , die deutsches Essen servieren , könnte ich auswählen ? +Wie viele Kindergärten gibt es in Edinburgh ? +Wo im Osten von Edinburgh gibt es Werbesäulen ? +Gibt es Wasserbrunnen in Edinburgh ? +Wie viele KFC gibt es im Süden von Edinburgh ? +Gibt es ein Rathaus in der Näher der Castlehill in Edinburgh zu dem man hinlaufen kann ? +Welche Flughäfen gibt es in Paris ? +Wie viele Berge gibt es in Heidelberg ? +Ist Cramond Kirk eine Kathedrale in Edinburgh ? +Wo ist die nächste Bushaltestelle von der Waterstones in Edinburgh ? +Führt die A4 nach Paris ? +Gibt es irgendwelche Denkmäler in Heidelberg ? +Würdest du mir bitte die Anzahl an Verkehrsampeln in Paris geben ? +Was ist die maximal erlaubte Geschwindigkeit auf der Autobahn M90 in Edinburgh ? +Gibt es einen subway in Newington ? +Wie viele Feuerwehren befinden sich in Edinburgh ? +Wie viele Bergspitzen gibt es in Languedoc-Roussillon +Welche Küchen werden in Edinburgh angeboten ? +Wie viele Fast Food Restaurants gibt es im Norden von Paris ? +Wo in Edinburgh kann ich Fußball spielen ? +Wie viele Bushaltestellen gibt es in San Francisco ? +Wie viele Konferenzzentren sind in Deutschland verzeichnet ? +Gibt es Bergwerke im Süden von Edinburgh ? +Wie heißen die Tierheime Heidelbergs ? +Welches Restaurant in Edinburgh biete Burgers an ? +Wo in Heidelberg kann ich Monumente finden ? +Wie viele Restaurants gibt es im Norden von Paris ? +Falls es archäologische Stätten in Edinburgh gibt , wie viele sind es ? +Sollte ich das Auto nehmen , um zur nächsten Bäckerei von der Rue Lauriston in Paris zu kommen ? +Wie viele Friedhöfe gibt es in Heidelberg ? +Wo gibt es Restaurants im Süden von Edinburgh ? +Wie viele Mobilfunkmasten gibt es in Edinburgh ? +Gibt es Grabmäler in Paris ? +Hat Heidelberg Burger Kings ? +Wie viele Schwimmbäder gibt es im Norden von Heidelberg ? +Wo in Paris kann ich Apartments finden ? +Kann ich irgendwo in Edinburgh Rugby spielen ? +Wie viele der Rathäuser Paris kann man mit einem Rollstuhl befahren ? +Wo ist das nächste Restaurant oder die nächste Bar vom Tennis Club du Parc in Montpellier ? +Wo gibt es Campingplätze in Edinburgh ? +Wie lautet die Wikipedia Seite der Stadt Paris ? +Wie lautet die Wikipedia Seite des Eiffelturms in Paris ? +Wie viele Schwimmbäder gibt es im Westen von Edinburgh ? +Wie heißen die Tierheime Edinburghs ? +Wie viele Hotels in Paris haben 3 Sterne ? +Gibt es irgendwelche schönen Aussichtspunkte in Paris ? +Wo gibt es 4 Sterne Hotels im Norden von Paris ? +Wie viele Bahnhöfe kann man im Westen von Edinburgh finden ? +Bitte sag mir , wo es südlich vom Bismarckplatz in Heidelberg öffentliche Toiletten gibt . +Gibt es ein Schwimmbad im Norden von Paris ? +Würdest du mir bitte den Standpunkt eines Notfalltelefons in Paris geben ? +Wie viele Orte zum Wassertreten gibt es ? +Gibt es Monumente in Marseille und falls ja , wie viele ? +Gibt es Denkmäler in Nantes ? +Wo im Westen von Paris gibt es Tankstellen ? +Ist die Summerhall Place in Newington ? +Wo gibt es Restaurants im Süden von Heidelberg ? +Wie heißen die Kindergärten Edinburghs ? +Gibt mir die Webseite von Mitfahrzentralen in Edinburgh . +Wo kann man in Edinburgh Elektriker finden ? +Wie viele Fast Food Restaurants gibt es im Norden von Heidelberg ? +Wie viele Werbesäulen gibt es in Heidelberg ? +Gibt es Höhlen in Osterode und wenn ja , wie viele ? +Gibt es Weinreben im Süden von Heidelberg ? +Gib mir die deutschen Namen von abgelegenen Inseln . +Wie viele Kathedralen gibt es im Osten von Paris ? +Würdest du mir die Orte von Denkmälern in Heidelberg sagen ? +Wo in Lyon gibt es Wandgemälde und wie heißen diese ? +Wie heißt die Internetseite des Kinos Die Kamera in Heidelberg ? +Wo ist der nächste Vauxhall Händler von Edinburgh aus ? +Wo sind der nächste Metzger und der nächste Bäcker von der Newhaven Road in Edinburgh ? +Wie viele Krankenhäuser gibt es in Paris ? +Wie viele Monumente gibt es in Pays de la Loire ? +Was ist die Telefonnummer der Chez Jenny in Paris ? +Kannst du mir ein Kino in Edinburgh nennen , welches ein Restaurant in der Nähe hat , das man zu Fuß erreichen kann ? +Gibt es ein Holiday Inn Express in Edinburgh ? +Ist die Avenue du Général Lemonnier im 5 . Arrondissement ? +Gibt es historische Stätten in der Nähe des Heidelberger Hauptbahnhofs zu denen man laufen kann ? +Wo in Paris kann ich Schreibwaren kaufen ? +Wo in Montpellier kann ich Tennis spielen ? +Wie viele Schulen gibt es im Süden von Paris ? +Kannst du mir die Anzahl der Schule in Edinburgh nennen ? +Was ist die Einwohnerzahl von Edinburgh ? +Gibt es ein Schwimmbad im Süden von Paris ? +Wo in Paris gibt es Fahrschulen und wie heißen diese ? +Wie viele Orte für Minigolf gibt es im Osten von Heidelberg ? +Vom Pariser Hauptbahnhof aus , wo ist die nächste Trinkwasserstelle ? +Gibt es Bio Supermärkte in Paris ? +Wie viele Restaurants gibt es im Westen von Berlin ? +Wie viele Metzger und Bäcker gibt es in Edinburgh ? +Wie viele Blitzer gibt es in Edinburgh ? +Würdest du mir bitte den Standpunkt eines Notfalltelefons in Heidelberg geben ? +Wo in Paris kann ich unterirdisch mein Auto parken ? +Wie viele Stolpersteine findet man nördlich von Heidelberg ? +Wo gibt es Feuerwehren in Heidelberg ? +Wie lauten die Webseiten der Museen oder Kulturzentren , die man zu Fuß vom Eiffelturm in Paris erreichen kann ? +Welche Art von Freizeitaktivitäten gibt es in Heidelberg ? +Gibt es Hydranten in Brietlingen ? +Gibt es eine Quelle im Osten von Heidelberg ? +Wo auf der Welt gibt es Geschäfte namens Cash Converters ? +Welches ist das nächste Museum vom Edinburgh Waverley ? +Wie viele Orte für Minigolf gibt es im Westen von Paris ? +Wo in Edinburgh kann ich unterirdisch mein Auto parken ? +Wie heißt die nächste protestantische Kirche von der Rue Vercingétorix in Paris aus und wo ist sie ? +Wie viele historische Stätten gibt es in Nantes ? +Würdest du mir bitte den Namen eines Hotels , welches mit einem Rollstuhl befahren werden kann , in Heidelberg sagen ? +Kannst du mir alle Orte in Paris nennen an denen man Skateboard fahren kann ? +Wie viele Meilen sind Edinburgh und Leeds von einander entfernt ? +Von Palace of Holyroodhouse in Edinburgh aus , wo ist die nächste Bank mit Geldautomat ? +Wie viele Bushaltestellen in Edinburgh können mit einem Rollstuhl benutzt werden ? +Wie viele Metzgereien gibt es in Paris ? +Gibt es afrikanische Restaurants in Heidelberg ? +Wie viele Trinkwasserstellen gibt es in Paris ? +Gibt es Moscheen östlich von Heidelberg ? +Von wem werden die Banken Edinburghs betrieben ? +Ist die Summerhall Place in Leith ? +Kannst du mir bitte alle Namen von Attraktionen in Paris nennen ? +Gibt es Fernmeldetürme in Edinburgh ? +Gibt es eine Straße namens Werrgasse in Neuenheim ? +Wie viele Franprix Märkte gibt es in Paris ? +Gibt es 2 oder mehr Auswahlmöglichkeiten zum Klettern in Heidelberg ? +Gibt es eine Straße namens Abbey Avenue in Leith ? +Wie viele Kulturzentren gibt es im Süden von Paris ? +Wo gibt es Banken im Osten von Edinburgh ? +Gibt es Moscheen im Osten von Heidelberg ? +Welche Bäckereien hat Heidelberg ? +Gibt es mehrere Orten zum Fußballspielen in Edinburgh ? +Wo gibt es Briefkästen nördlich von Schriesheim ? +Gibt es eine Straße namens Henderson Street in Leith ? +Welche Art von Straße ist die Place de la République in Paris ? +Wo in Edinburgh kann ich Monumente finden ? +Kann man Badminton oder Tennis in Paris spielen ? +Wo ist die nächste Glas Recycling Stelle von der Newhaven Road in Edinburgh ? +Wie lautet die Wikipedia Seite des Rathauses in Heidelberg ? +Wo gibt es Banken im Norden von Edinburgh ? +Kannst du mir die Orte von Bücherläden in Edinburgh sagen ? +Wie viele Restaurants existieren in Heidelberg , die asiatisches Essen servieren ? +Kannst du mir die Zahl der Polizeiwachen in Paris nennen ? +Wie viele Trinkwasserstellen in Paris kann man mit dem Rollstuhl erreichen ? +Wie viele Denkmäler lassen sich in Edinburgh finden ? +Wo sind die Hotels Edinburghs , die von Apex Hotels geführt werden ? +An wie vielen Stellen in Paris kann ich Fußball spielen ? +Wie werden die Bergspitzen im Süden von Languedoc-Roussillon genannt und wie hoch sind sie ? +Gibt es einen Ort in Edinburgh wo man Cricket spielen kann ? +Wo finde ich ein wartendes Taxi in Edinburgh ? +Wo gibt es 4 Sterne Hotels im Norden von Heidelberg ? +Welche Verbände betreiben die Bushaltestellen in San Francisco ? +Wo kann ich eine Tankstelle in Heidelberg finden ? +Sollte ich vom Bismarckplatz in Heidelberg das Auto nehmen , um zum nächsten Bio Supermarkt zu kommen ? +Gibt es irgendwelche Parks in Edinburgh und wenn ja , wo sind diese ? +Wie viele Fish and Chips Läden gibt es im Norden von Edinburgh ? +Gibt es Bio Supermärkte im Osten von Heidelberg ? +Wer betreibt die Aufladestationen in München ? +Wie viele geplante Gebäude kannst du finden ? +Wie viele Postämter gibt es in Heidelberg ? +Wo gibt es U-Bahn Stationen im Norden von Île-de-France ? +Wo gibt es Stolpersteine im Osten von Heidelberg ? +Wie viele Bahnhöfe kann man im Norden von Paris finden ? +Wo sind die Friedhöfe im Süden von Edinburgh ? +Wie viele Bahnhöfe kann man im Süden von Heidelberg finden ? +Wie viele Bergwerke gibt es im Westen von Heidelberg ? +Wo sind die nächste Bank und die nächste Apotheke von der Rue Lauriston in Paris ? +Wie heißen die abgelegenen Inseln ? +Gibt es mehr als 5 Kulturzentren in Paris ? +Gibt es Viadukte in Edinburgh und falls ja , wie viele ? +Gibt es Schneider in Edinburgh ? +Welche Fahrschule ist der Mannheimer Straße in Heidelberg am nächsten und wo ist sie ? +Wo im Osten von Paris gibt es Tankstellen ? +Gibt es Moscheen im Osten von Paris ? +Wie lautet die Website des Kinos Vue in Edinburgh ? +Kann ich irgendwo in Paris Tennis spielen ? +Welche Städte befinden sich im Umkreis von Paris ? +Wo gibt es Restaurants im Norden von Paris ? +Wie viele Metzgereien gibt es in Edinburgh ? +Wie viele Kirchen gibt es im Osten von Paris ? +Wo gibt es 4 Sterne Hotels im Osten von Heidelberg ? +Welche Städte befinden sich im Osten von Heidelberg ? +Wie nah ist der nächste Kindergarten vom Czernyring in Heidelberg ? +Was sind die maximalen Geschwindigkeiten , die für die Place de la République in Paris aufgeführt sind ? +Bitte sag mir wo es Tankstellen in Edinburgh gibt , die Diesel verkaufen ? +Wie viele 4 Sterne Hotels gibt es in Heidelberg und wo sind diese ? +Gibt es 2 oder mehr Auswahlmöglichkeiten zum Üben des Kampfsports in Paris ? +Bitte gib mir alle Orte an denen es Monumente gibt im Süden von Pays de la Loire ! +Gibt es einen Andachtsort für Buddhisten in Edinburgh ? +Gibt es einen Bio Supermarkt , den man von der Avenue des Ternes in Paris zu Fuß erreichen kann ? +Gibt es mehr als 1 Bücherei in Heidelberg ? +Wie viele Kirchen gibt es im Süden von Heidelberg ? +Gibt es einen Bio Supermarkt , den man vom Campus INF 325 in Heidelberg zu Fuß erreichen kann ? +Wie viele Denkmäler gibt es im Süden von Edinburgh ? +Welche Geschäfte gibt es in der Nähe des 5 . Arrondissements von Paris ? +Wo in Heidelberg würde ich einen historischen Turm finden ? +Welche archäologischen Stätten kann ich in Paris finden ? +Kann man irgendwo in Edinburgh Fußball spielen ? +Wo gibt es Fahrradverleihe in Paris ? +Würdest du mir bitte den Namen eines Hotels , welches mit einem Rollstuhl befahren werden kann , in Paris sagen ? +Gibt es 5 oder mehr Hotels in Heidelberg ? +Wie weit weg ist die nächste Schule vom Angelweg in Heidelberg ? +Wie viele Denkmäler gibt es im Norden von Paris ? +Gibt es Bergwerke im Osten von Edinburgh ? +Wie viele KFC gibt es im Norden von Edinburgh ? +Wo gibt es verlassene Freizeitparks ? +Wie viele Volkshochschulen gibt es in Deutschland ? +Wie viele Ampeln hat Edinburgh ? +Wie viele Campingplätze gibt es im Norden von Edinburgh ? +Welches ist der nächste Parkplatz von Thalia in Heidelberg ? +Wo ist das nächste indische oder asiatische Restaurant vom Kino Die Kamera in Heidelberg ? +An wie viel verschiedenen Orten kann man in Paris schwimmen gehen ? +An wie vielen Orten kann ich in Heidelberg klettern gehen ? +Kann man eine Apotheke von dem Kino Vue in Edinburgh aus zu Fuß erreichen ? +Wo in Edinburgh gibt es Rathäuser ? +Kannst du mir Bars in Paris nennen in denen man französisch essen kann ? +Wo kann ich einen Zahnarzt in Heidelberg finden ? +Welche Art historischer Stätten kann man in Bayern finden ? +Welche Museen gibt es in Paris ? +Wo sind die Bergspitzen in Heidelberg , die eine Wanderkarte in der Nähe haben , die man zu Fuß erreichen kann ? +Wo gibt es Aufladestationen in Heidelberg ? +Gibt es einen Andachtsort für Buddhisten in Heidelberg ? +Wie viele Denkmäler gibt es im Westen von Paris ? +Wie viele Bushaltestellen kann man in Paris finden ? +Würdest du bitte alle Orte in Edinburgh auflisten , an denen man Schreibwaren kaufen kann ? +Wie lauten die Telefonnummern und Namen von Museen die höchstens 10km von Notre Dame in Paris entfernt sind ? +Wo gibt es Bushaltestellen in Edinburgh ? +Wie viele Kathedralen gibt es im Westen von Edinburgh ? +Kann ich zur nächsten öffentlichen Toilette vom Rührbrunnen in Stuttgart aus laufen ? +Wie viele Restaurants gibt es im Norden von Edinburgh ? +Wo in Heidelberg gibt es Läden , die ausschließlich Second Hand Ware haben , und wie lauten die Öffnungszeiten ? +Wie viele Restaurants gibt es im Westen von Heidelberg ? +Welche Art von Handwerk gibt es in Paris ? +Gibt es mehr als 1 Bücherei in Paris ? +Wo gibt es Stolpersteine im Norden von Heidelberg ? +Welche Gipfel gibt es in Edinburgh ? +Existiert ein Platz , der Place de la République heißt in 10 . Arrondissement ? +Kannst du mir den Ort eines Restaurants in Edinburgh nennen , das man mit einem Rollstuhl befahren kann ? +Wo in Paris gibt es Kulturzentren ? +Wo gibt es Kindergärten in Osten von Edinburgh ? +Kannst du mir die verfügbaren Internetseiten von archäologischen Stätten von Edinburgh sagen ? +Wo gibt es Briefkästen im Norden von Schriesheim ? +Wo gibt es Banken mit Geldautomaten in Paris ? +Wie viele Second Hand Läden gibt es im Norden von Heidelberg ? +Welche Küchen gibt es in Paris ? +Wo gibt es indische Restaurants in Edinburgh ? +Gibt es eine Bank in Fountainbridge , Edinburgh ? +Kann ich irgendwo in Edinburgh Meeresfrüchte essen ? +Falls es in Heidelberg Mitfahrzentralen gibt , kannst du mir sagen wo ? +Wo sind Rad Parkplätze in Heidelberg ? +Wo kann ich in Edinburgh ein Hotel finden ? +Gibt es Golfplätze im Umkreis von Edinburgh ? +In wie vielen Geschäften in Edinburgh kann ich Schreibwaren kaufen ? +Würdest du mir die Telefonnummer von Guru Balti in Edinburgh nennen ? +Kann ich vom Gare du Nord in Paris zum Sacre Coeur laufen ? +Wie lautet der Name des nächsten Museum oder Kulturzentrum von Notre Dame in Paris ? +Gibt es Mitfahrzentralen in Edinburgh ? +Gibt es Weinreben im Norden von Edinburgh ? +Wie heißt das nächste Restaurant von der Rue de Cicé in Paris ? +Wie viele Kinos gibt es in Paris ? +Wo sind die Friedhöfe im Osten von Paris ? +Wie viele Metzgereien in Heidelberg kann man mit einem Rollstuhl befahren ? +Wie viele Metzgereien gibt es in Heidelberg ? +Kannst du mir die Adressen von Banken in Heidelberg geben ? +Wie viele Zimmer hat das Heidelberg Marriott Hotel ? +Wie viele Ort in Heidelberg sind zum Skateboard fahren da ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Norden von Paris nennen ? +Ist es möglich vom Heidelberger Schloss zum Bahnhof Heidelberg-Altstadt zu laufen ? +Kannst du mir den Namen des nächsten Restaurants oder der nächsten Bar von dem Kino Le Cinaxe in Paris nennen ? +Kannst du mir die Adressen von Kulturzentren in Paris geben ? +Gibt es Campingplätze in Edinburgh ? +Wie viele Rad Parkplätze gibt es in Heidelberg ? +In wie vielen Geschäften in Heidelberg kann ich Schreibwaren kaufen ? +Gibt es mehrere Tierheime in Heidelberg ? +Wie heißt die nächste Kirche von Mary King's Close in Edinburgh aus und wo ist sie ? +Wie viele Hotels befinden sich in Paris ? +Wer betreibt die Mitfahrzentralen in Edinburgh ? +Wo in Edinburgh gibt es Recycling Stellen für Kleidung ? +Welche archäologischen Stätten existieren im Westen von Heidelberg ? +Welches Kulturzentrum ist dem Eiffelturm in Paris am nächsten ? +Bitte nenne mir alle Orte öffentlicher Toiletten in Edinburgh . +Wie viele Kirchen gibt es im Norden von Edinburgh ? +In welcher Straße ist das Hotel Jurys Inn in Edinburgh ? +Wo ist die nächste Aufladestation vom Campus INF 325 in Heidelberg ? +Aus wie vielen Apartments kann ich in Heidelberg auswählen ? +Gibt es Wasserbrunnen in Heidelberg ? +Wie viele Spuren hat die Summerhall Place in Edinburgh ? +Würdest du mir bitte den Namen eines Hotels in Heidelberg sagen ? +Gibt es Fahrradverleihe in Paris ? +Wo in Heidelberg kann ich Eis kaufen ? +Wo gibt es 4 Sterne Hotels im Norden von Edinburgh ? +Wo gibt es 4 Sterne Hotels im Westen von Paris ? +Wie viele Brücken gibt es im Osten von Eure-et-Loir ? +Gibt es mehr als 20 Bushaltestellen in Paris ? +Kannst du mich über die Standpunkte von Büchereien in Paris informieren ? +Welches ist das nächste italienische oder indische Restaurant vom Gare du Nord in Paris aus ? +Wie heißen Kinos , die man von der High Street in Edinburgh zu Fuß erreichen kann ? +Wo gibt es Bars in Heidelberg , in denen das Rauchen erlaubt ist und die eine Bushaltestelle in der Nähe haben ? +An welchen Orten in Heidelberg kann man Autos unterirdisch parken ? +Wie viele Orte zum Geldwechseln gibt es im Norden von Edinburgh ? +Wie viele Denkmäler gibt es im Norden von Heidelberg ? +Gibt es mehrere Orte zum Basketballspielen in Edinburgh ? +Wie heißen die Bio Supermärkte Heidelbergs ? +Gibt es afrikanische Restaurants in Paris ? +Kannst du mir die Namen und Öffnungszeiten von Fish and Chips Läden in Edinburgh nennen ? +Gibt es öffentliche Bücheregale in Deutschland ? +Was sind die maximalen Geschwindigkeiten , die für die Plöck in Heidelberg aufgeführt sind ? +Kannst du mir die Orte von allen archäologischen Stätten in Edinburgh geben ? +Gibt es in Montpellier einen Tennisverein mit einer Bushalltestelle nicht weiter als 2km entfernt ? +Würdest du mir den Ort eines schönen Aussichtspunktes in Paris sagen ? +Wie viele Kirchen gibt es im Süden von Edinburgh ? +Wo im Süden von Heidelberg gibt es Trinkwasser ? +Kannst du mir den Ort eines Restaurants in Paris nennen , das man mit einem Rollstuhl befahren kann ? +Wie viele Schuhmacher gibt es in Edinburgh ? +Wie weit liegen Calton Hill und dem Palace of Holyroodhouse in Edinburgh auseinander ? +In welcher Straße in Paris liegt das Le Robinet d'Or Hof ? +Wie viele Second Hand Läden gibt es im Osten von Edinburgh ? +Was sind die Standorte aller Bäckereien in Heidelberg ? +Wenn ich in Heidelberg wäre , wie viele Bibliotheken könnte ich besuchen ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Osten von Heidelberg nennen ? +Wo gibt es Briefkästen westlich von Schriesheim ? +Wo im Norden von Edinburgh gibt es Trinkwasser ? +Wo gibt es abgelegene Inseln ? +Bitt gib mir die Namen und Webseiten von allen Kulturzentren in Heidelberg ! +Bitte sag mir , wo vom Place de la République in Paris aus die nächste öffentliche Toilette ist . +Gibt es archäologisch Stätten in Paris ? +Wann wurden die verschiedenen Stolpersteine in Heidelberg gelegt ? +Wie weit liegen Calton Hill und der Edinburgh Flughafen auseinander ? +Wie heißen die Schule in Bielefeld und wie lauten ihre Webseiten ? +Würdest du mir bitte die Anzahl an Verkehrsampeln in Heidelberg geben ? +Wie viele Denkmäler gibt es im Osten von Heidelberg ? +Wie viele Bushaltestellen in Paris können mit einem Rollstuhl benutzt werden ? +Gibt es eine Quelle im Norden von Paris ? +Kannst du mir bitte die Internetseite der Hotels in Heidelberg nennen ? +Gibt es irgendwelche Universitäten in Edinburgh ? +Gibt es irgendwelche Denkmäler in Paris ? +Wo ist die nächste Aufladestationen von der Frauenkirche in München ? +Gibt es Helikopterlandeplätze im Norden von Heidelberg ? +Wie heißen die Bio Supermärkte Edinburghs ? +Wie heißen die Kindergärten Heidelbergs ? +Wie hoch sind die Berge in Heidelberg ? +Wo ist die nächste Bank mit Geldautomaten , die man mit dem Rollstuhl befahren kann , vom Palais de l’Élysée in Paris aus ? +Welche Art von historischen Stätten gibt es in Heidelberg ? +Wo gibt es Moscheen im Umkreis von Heidelberg ? +Wo in der Bretagne gibt es Brauereien ? +Ist die Avenue du Général Lemonnier in dem 1 . Arrondissement ? +Wie viele Hotels liegen in dem Bezirk der Stadt Paris ? +Gibt es Aufladestationen für elektrische Autos in Edinburgh und falls ja , wie viele ? +Wie lauten die Öffnungszeiten der La Flûte de Pan , die am nächsten am Place de la République in Paris ist ? +Gibt es einen subway im 8 . Arrondissement ? +Wo gibt es Banken im Westen von Edinburgh ? +Kannst du mir ein Kino in Paris nennen von dem aus es eine Bar gibt , die nicht weiter als 500 Meter entfernt ist ? +Vom Edinburgh Waverley aus , wo ist die nächste Gelegenheit Geld zu wechseln ? +Welche Art von Handwerk gibt es in Heidelberg ? +Welche Supermärkte gibt es in Edinburgh ? +Wie heißt der Wetterunterstand der dem Königstuhl in Heidelberg am nächsten ist und wo ist dieser ? +Wie viele Bäckereien gibt es in Paris ? +Gibt es Hydranten in Lüneburg ? +Wo gibt es Banken mit Geldautomaten in Edinburgh ? +Von wem werden die Banken Heidelbergs betrieben ? +Kannst du mir die Telefonnummer einer Bäckerei in Heidelberg geben ? +Wo in Paris befinden sich Höhleneingänge ? +Wie weit sind der Palais de l’Élysée in Paris und Léon de Bruxelles voneinander entfernt ? +Wie viele Ampeln hat Heidelberg ? +Welche Supermärkte gibt es in Paris ? +Gibt es Bio Supermärkte im Westen von Heidelberg ? +Wie weit weg ist die nächste Schule vom Restalrig Avenue in Edinburgh ? +Wenn ich in Paris wäre , wie viele Museen könnte ich mir anschauen ? +Wo gibt es Banken im Osten von Paris ? +Wo in Witten gibt es Migratenunterkünfte ? +Wo in Heidelberg kann ich mein Klettern üben ? +Wie heißen die Metzgereien Edinburghs ? +Wie viele Rad Parkplätze gibt es in Paris ? +Wie hoch liegen die Trinkwasserstellen in Heidelberg ? +Wie viele Spielstraßen in Heidelberg sind zudem Einbahnstraßen ? +Kann man irgendwo in Paris Fußball spielen ? +Wo in Paris gibt es Springbrunnen und wie viele gibt es ? +Wie viele Bergwerke gibt es im Süden von Edinburgh ? +Wenn ich in Heidelberg wäre , wie viele Hotel Optionen hätte ich ? +Würdest du bitte alle Orte in Heidelberg auflisten , an denen man Schreibwaren kaufen kann ? +Sag mir die Telefonnummern von Museen in Paris . +Gibt es irgendwelche Rastplätze in Edinburgh ? +Wie viele Mitfahrzentralen gibt es in Edinburgh ? +Welche Aktivitäten gibt es für Touristen in Edinburgh ? +An wie vielen Orten in Paris kann ich mir ein Fahrrad leihen ? +Wo in Heidelberg ist der Fernsehturm ? +Wo gibt es Postfilialen in Toulouse ? +Gibt es Helikopterlandeplätze in Edinburgh ? +Wo gibt es Brennereien , die Whisky herstellen ? +Bei wie vielen Hotels in Heidelberg kann man WLAN nutzen ? +Welche archäologischen Stätten existieren im Westen von Edinburgh ? +Bitte gib mir die Namen der Botschaften in Edinburgh . +Gibt es in Dresden 5 oder mehr Kreisel ? +Bitte nenne mir alle Orte öffentlicher Toiletten in Heidelberg . +Wer betreibt die Aufladestationen in Heidelberg ? +Wie lautet die Wikipedia Seite des ersten Arrondissements in Paris ? +Kann man im Le Robinet d'Or in Paris rauchen ? +Wie heißen die Kopiergeschäfte in Paris und wo kann ich sie finden ? +Kannst du mir den Namen des nächsten Restaurants oder der nächsten Bar von Longstone Park in Edinburgh aus nennen ? +Wie viele Banken befinden sich in Edinburgh ? +In welcher Straße in Edinburgh ist der Italiener Giuliano's ? +Wie viele Orte für Minigolf gibt es im Norden von Heidelberg ? +Wie viele Quellen und wie viele Bergspitzen gibt es in Nîmes ? +Wo im Norden von Edinburgh gibt es Werbesäulen ? +Kann man den Heidelberg Hauptbahnhof vom Heidelberger Schloss aus zu Fuß erreichen ? +Gibt es mehrere Polizeiwachen in der Stadt Heidelberg ? +Wo ist das nächste Rathaus von Neuenheim , Heidelberg ? +Welche archäologischen Stätten existieren im Norden von Edinburgh ? +Wie viele Marks & Spencer Food gibt es in Großbritannien ? +Welche Schule gibt es in Edinburgh ? +Wie viele Schwimmbäder gibt es im Westen von Paris ? +Gibt es ein afrikanisches Restaurant in der Nähe des Bismarckplatz in Heidelberg , das man zu Fuß erreichen kann ? +Welche archäologischen Stätten existieren im Osten von Edinburgh ? +Wie viele 3 Sterne Hotels gibt es im Norden von Paris ? +Wie lauten die Namen aller asiatischen Restaurants in Paris ? +Wie viele historische Stätten gibt es im Osten von Nantes ? +Bitte gib mir die Namen der Autobahnen in Paris ? +Bitte nenne mir alle Orte öffentlicher Toiletten in Paris . +Gibt es Moscheen westlich von Edinburgh ? +Gibt es Moscheen westlich von Paris ? +Wie viele Menschen leben in Edinburgh ? +Wie viele Schwimmbäder gibt es im Osten von Paris ? +Kannst du mir die Orte von allen archäologischen Stätten in Heidelberg geben ? +Würdest du mir bitte den Ort eines Postamtes in Edinburgh nennen , das man mit einem Rollstuhl erreichen kann ? +Wo im Osten von Edinburgh gibt es Tankstellen ? +Gibt es mehrere Polizeiwachen in der Stadt Edinburgh ? +Wie viele Campingplätze gibt es im Norden von Paris ? +Wo gibt es Wanderkarten in Edinburgh die in der Nähe eines Parkplatz sind ? +Wie viele Schulen gibt es im Norden von Edinburgh ? +Wo sind Rad Parkplätze in Paris ? +An wie vielen Stellen in Edinburgh kann ich Fußball spielen ? +Wo gibt es Banken im Norden von Heidelberg ? +Würdest du mir sagen wo in Edinburgh sich Blitzer befinden ? +Wo in Edinburgh gibt es Häfen ? +Wie viele Kulturzentren gibt es in Paris ? +Kann man irgendwo in Heidelberg Minigolf spielen und wenn ja , wo ? +Wo gibt es Bushaltestellen im Süden von San Francisco ? +Welches ist der nächste unterirdische Parkplatz von Thalia in Heidelberg ? +Wie heißen die Metzgereien Paris' ? +Welche Busse halten am Erich-Hübner-Platz in Heidelberg ? +Wie viele Blitzer gibt es in Heidelberg ? +Wo sind überall Feuerhydranten in Paris ? +Welche historische Stätte ist dem Heidelberg Hauptbahnhof am nächsten ? +Wie heißen alle Schwimmbäder , die maximal 30km von Heidelberg entfernt sind ? +Wie viele Second Hand Läden gibt es im Osten von Heidelberg ? +Bitte gib mir Cafés in Edinburgh , die einen Parkplatz in der Nähe haben . +Wie lautet die Wikipedia Seite der Stadt Heidelberg ? +Welche Geschäfte gibt es um das Hard Rock Cafe in Edinburgh ? +Wie viele Denkmäler gibt es im Westen von Heidelberg ? +Gibt es mehr als eine Burg in Edinburgh ? +Gibt es Moscheen nördlich von Heidelberg ? +Wie viele archäologische Stätten kann ich in Paris finden ? +Welche protestantischen Kirchen gibt es in Heidelberg ? +Wo in Heidelberg kann ich einen Rastplatz finden an dem man grillen kann ? +Gibt es einen protestantischen Kindergarten in Heidelberg ? +Kannst du mir ein Kino in Heidelberg nennen , welches ein Restaurant in der Nähe hat , das man zu Fuß erreichen kann ? +Wo ist das nächste Restaurant vom Hawes Pier in Edinburgh ? +Kann man Wasser in Deutschland treten ? +Wie viele Kilometer sind Heidelberg und Mannheim von einander entfernt ? +Wo kann ich archäologische Stätten in Heidelberg finden und wie heißen diese ? +Wie viele griechische Restaurants gibt es in Edinburgh und wo sind diese ? +Wo kann ich archäologische Stätten in Edinburgh finden und wie heißen diese ? +Welche Art historischer Stätten gibt es in Nantes ? +Würdest du mir bitte den Ort eines Aussichtspunktes in Heidelberg nennen , den man mit dem Rollstuhl besichtigen kann ? +Wie viele Campingplätze gibt es im Osten von Heidelberg ? +Welche Küche gibt es in der Piatto Verde in Edinburgh ? +Kannst du mir bitte die Internetseite der Hotels in Edinburgh nennen ? +Wie viele Rugbyplätze hat Edinburgh ? +Wo gibt es Banken im Süden von Edinburgh ? +Wie viele McDonalds gibt es in Paris ? +Wie viele Ort in Edinburgh sind zum BMX fahren da ? +Wie viele Campingplätze gibt es im Osten von Edinburgh ? +Wo ist der nächste Parkplatz von Waterstones in Edinburgh ? +Wo kann ich eine Tankstelle in Paris finden ? +Wie heißen die Unfallstationen Paris ? +Wie viele Trinkwasserstellen gibt es in Heidelberg ? +Wie viele Bücherläden gibt es in Paris ? +Bitte sag mir , wo es westlich vom Place de la République in Paris öffentliche Toiletten gibt . +Kannst du mir sagen wo ich in Heidelberg eine Bäckerei finde ? +Wie viele Restaurants gibt es im Osten von Heidelberg ? +Welche Schule gibt es in Paris ? +Wie viele Fahrradverleihe gibt es im Süden von Heidelberg ? +Wie viele Brücken gibt es im Osten von Edinburgh und wo sind diese ? +Gibt es Fernmeldetürme in Heidelberg ? +Wie viele U-Bahn Stationen gibt es in Île-de-France ? +Welche Länder haben Botschaften in Paris ? +Wie viele Schulen gibt es im Osten von Paris ? +Ist es möglich von der Camera Obscura zum Bahnhof Haymarket in Edinburgh zu laufen ? +Wie viele Brennereien zählst du ? +Gibt es Attraktionen in Edinburgh ? +Wo in Paris würde ich ein Grabmal finden ? +Wie heißt Edinburgh auf Japanisch ? +Wo im Süden von Lyon gibt es Wandgemälde und wie heißen diese ? +Welche Art von Attraktivitäten gibt es in Edinburgh ? +Wo ist der nächste Kindergarten von der Brunnengasse in Heidelberg und wie heißt er ? +Kannst du mir die Namen von archäologischen Stätten in Edinburgh ? +Würdest du mir bitte alle archäologisch Stätten in Edinburgh auflisten ? +Wie viele 3 Sterne Hotels gibt es im Osten von Edinburgh ? +Gibt es irgendwelche Aussichtspunkte in Edinburgh , die mit dem Rollstuhl zugänglich sind ? +Wenn ich in Heidelberg wäre , in wie vielen Läden könnte ich einkaufen ? +Aus welchen Küchen kann ich in Paris wählen ? +Bitte zähle alle Orte von Stolpersteinen im Westen von Heidelberg auf , die man mit einem Rollstuhl besuchen kann ! +Gibt es Weinreben im Osten von Edinburgh ? +Kann ich vom Heidelberger Schloss zum nächsten Springbrunnen laufen ? +Gibt es in Paris öffentlich zugängliche Defibrillatoren ? +Kannst du mir die Telefonnummern von Fahrradverleihen in Heidelberg nennen ? +Wo in Paris gibt es Museen , die man mit dem Rollstuhl besuchen kann ? +Würdest du mir den Ort eines schönen Aussichtspunktes in Edinburgh sagen ? +Würdest du mir einen Ort in Paris geben an dem ich Tischtennis spielen kann ? +Bitte sag mir , wo es westlich vom Bismarckplatz in Heidelberg öffentliche Toiletten gibt . +Wie viele Friedhöfe befinden sich im Osten von Paris ? +Zähle alle Denkmäler auf , die man mit dem Rollstuhl besuchen kann und die nicht weiter als 7km vom Palace of Holyroodhouse in Edinburgh entfernt sind . +Kann man den Gare du Nord in Paris vom Palais de l’Élysée in Paris aus zu Fuß erreichen ? +Wie viele Schulen gibt es im Süden von Edinburgh ? +Gibt es einen subway in Eppelheim ? +Gibt es Grabmale in Edinburgh ? +Wo gibt es italienische Restaurants in Heidelberg ? +Welche Städte befinden sich im Westen von Heidelberg ? +Wie viele Baustellen gibt es im Moment in Heidelberg ? +Wo gibt es italienische Restaurants in Berlin ? +Würdest du mir bitte den Namen eines Hotels in Edinburgh geben , das von Apex Hotels geführt wird ? +Wo in Heidelberg gibt es Restaurants in denen das Rauchen erlaubt ist ? +Wie viele Bibliotheken liegen in der Stadt Paris ? +Kannst du mir die Standpunkte aller Defibrillatoren in Heidelberg auflisten ? +Gibt es ein Kulturzentrum , das man vom Gare du Nord in Paris zu Fuß erreichen kann ? +Wo sind die nächste Bank und die nächste Apotheke von Mary King's Close in Edinburgh ? +Kannst du mir alle Orte in Edinburgh nennen an denen man BMX fahren kann ? +Gibt es ein Schwimmbad im Westen von Heidelberg ? +Welche Art historische Stätte ist dem Heidelberger Hauptbahnhof am nächsten ? +Kannst du mir sagen wie viele Supermärkte Edinburgh hat ? +Wo kann man in Paris Unfallstationen finden ? +Vom Palais de l’Élysée in Paris aus , wo ist die nächste Bank mit Geldautomat ? +Wie viele Meilen sind Paris und Rennes von einander entfernt ? +Wie viele Quellen gibt es im Umkreis von Edinburgh ? +Wo in Heidelberg befinden sich Bäckereien ? +Kannst du mir die Wikipedia Seiten von Kulturzentren in Paris geben ? +Wo ist der nächste überdachte Fahrradparkplatz von der Rue Vercingétorix in Paris ? +Kannst du mir ein Kino in Edinburgh nennen von dem aus es eine Bar gibt , die nicht weiter als 500 Meter entfernt ist ? +Gibt es eine Autobahn M8 , die nach Edinburgh führt ? +Gibt es eine Autobahn A4 , die nach Paris führt ? +Wo ist die nächste Recycling Stelle für Kleider von der Yorckstraße in Heidelberg ? +Wie viele Schulen gibt es in der Nähe von Neuenheim ? +Wo ist der nächste Springbrunnen vom Kino Le Cinaxe in Paris ? +Welche Städte befinden sich im Osten von Paris ? +Wie hoch ist der Arthur's Seat in Edinburgh ? +Wo befindet sich Manure Pit ? +Gibt es Polizeiwachen in Paris ? +Wo im Osten von Edinburgh gibt es Trinkwasser ? +Wo gibt es Banken im Süden von Paris ? +Wo gibt es Briefkästen im Westen von Schriesheim ? +Wo kann man Brennereien finden ? +Wie viele Stolpersteine lassen sich im Westen von Heidelberg finden ? +Würdest du mir die Namen aller italienischen Restaurants in Paris geben ? +Wo sind überall Feuerhydranten in Heidelberg ? +Wie viele Restaurants gibt es im Süden von Berlin ? +Gibt es eine Haltestelle namens Argentine in Paris ? +Welche Küchen gibt es in Edinburgh ? +Wie viele Grabmale gibt es im Süden von Edinburgh ? +Wie heißt Heidelberg auf Französisch ? +Darf man im Ristorante Pellicano in Paris rauchen ? +Wo in Heidelberg kann ich schwimmen gehen ? +Welche Art von archäologischen Stätten kann ich in Heidelberg finden ? +Bitte sag mir , wo vom Bismarckplatz in Heidelberg die nächste öffentliche Toilette ist . +Was ist die Telefonnummer von Schwarzer Adler in Heidelberg ? +Wo gibt es Starbucks in Heidelberg ? +Kannst du mir bitte den Standort eines Hotels in Paris nennen ? +Kannst du mir die Orte von Bücherläden in Paris sagen ? +Gibt es Moscheen östlich von Edinburgh ? +Wo ist die nächste Bushaltestelle von der Thalia in Heidelberg ? +Kannst du alle Orte aufzählen , an denen es Fahrradparkplätze mit Schließfächern in Edinburgh gibt ? +Kannst du mir sagen wo ich in Edinburgh eine Bäckerei finde ? +Wie viele Bahnhöfe kann man im Osten von Edinburgh finden ? +Ist es möglich zum nächsten Fitnessstudio zu laufen von Viewforth in Edinburgh ? +Welche Küche gibt es in der Chez Jenny in Paris ? +Welche Städte befinden sich im Osten von Edinburgh ? +Kannst du mir die Standorte von Tankstellen in Heidelberg sagen ? +Wo gibt es Kindergärten in Norden von Edinburgh ? +Kannst du mir sagen wo ich ein Kunstwerk in Edinburgh finden kann ? +Wie viele Orte für Minigolf gibt es im Süden von Heidelberg ? +Was ist die Zahl der Supermärkte in Paris ? +Welche Museen von Paris haben kostenloses WLAN ? +Zähle alle Denkmäler auf , die man mit dem Rollstuhl besuchen kann und die nicht weiter als 7km vom Heidelberger Schloss entfernt sind . +Gibt es Moscheen westlich von Heidelberg ? +Wo im Osten von Paris gibt es Werbesäulen ? +Wie viele archäologische Stätten gibt es in Heidelberg ? +Wo ist die nächste Post von der Polyclinique du Parc in Toulouse ? +Zähle alle Denkmäler auf , die man mit dem Rollstuhl besuchen kann und die nicht weiter als 7km vom Palais de l’Élysée in Paris entfernt sind . +Gibt es eine Bank in Wieblingen , Heidelberg ? +Wo gibt es Denkmäler im Osten von Bayern ? +Wo ist der nächste überdachte Fahrradparkplatz von der Castlehill in Edinburgh ? +Wie viele historische Türme lassen sich in Heidelberg finden ? +Gibt es Kulturzentren in Edinburgh und wenn ja , wie viele ? +Kann man Badminton oder Tennis in Edinburgh spielen ? +Wie viele Möglichkeiten zum Rudern gibt es in Heidelberg ? +Gibt es irgendwo in Paris Franprix ? +Wie viele Bergspitzen in Heidelberg haben einen Parkplatz in der Nähe ? +Wie heißen die Elektriker in Edinburgh ? +Wie viele öffentliche Bücheregale sind verzeichnet ? +Sollte ich vom Place de la République in Paris aus das Auto nehmen , um zum nächsten Bio Supermarkt zu kommen ? +Wie viele archäologische Stätten kann ich in Edinburgh finden ? +Kannst du alle Orte aufzählen , an denen es überdachte Fahrradparkplätze mit Schließfächern in Paris gibt ? +Wo in Heidelberg finde ich einen Rastplatz mit Feuerstelle ? +Gibt es Tankstellen in Edinburgh , die immer offen sind ? +Wie viele Bushaltestellen kann man in Edinburgh finden ? +Kannst du mir die Anzahl der Schule in Heidelberg nennen ? +Wo gibt es Schulen im Norden von Bielefeld ? +Wie viele Bergspitzen gibt es im Westen von Languedoc-Roussillon ? +Wie viele Bahnhöfe kann man im Westen von Paris finden ? +Welche Art historische Stätte ist dem Edinburgh Waverley am nächsten ? +Wie viele Sterne hat das The Salisbury Hotel in Edinburgh ? +Wo in Heidelberg gibt es Postämter ? +Kannst du mir die Namen von archäologischen Stätten in Heidelberg ? +Kann ich vom Edinburgh Waverley aus zum nächsten Kulturzentrum laufen ? +Gibt es Feuerwehren in Edinburgh ? +Wo in Paris gibt es Grabmale ? +Bitte sag mir , wo es östlich vom Bismarckplatz in Heidelberg öffentliche Toiletten gibt . +Was ist die Zahl der Supermärkte in Edinburgh ? +Wo ist die nächste katholische Kirche vom Gare du Nord in Paris ? +Wo gibt es Piere in Edinburgh ? +Wie viele Kathedralen gibt es im Süden von Paris ? +Wo sind die Friedhöfe im Osten von Heidelberg ? +Wo in Paris gibt es Postämter ? +Was sind die maximalen Geschwindigkeiten , die für die Summerhall Place in Edinburgh aufgeführt sind ? +Wo im Norden von Paris gibt es Tankstellen ? +Welche Städte befinden sich im Umkreis von Edinburgh ? +Wo in Eure-et-Loir gibt es Brücken ? +Kannst du mir die Namen von Monumenten in Marseille nennen ? +Was ist die Zahl der Supermärkte in Heidelberg ? +Wo gibt es im Westen von Paris Museen ? +Wo ist die nächste Aufladestation von der Avenue des Ternes in Paris ? +Kannst du mir die Bücherläden von Heidelberg nennen ? +Wo ist der nächste Springbrunnen vom Kino Die Kamera in Heidelberg ? +Kann ich in Edinburgh klettern gehen ? +Wie viele Orte zum Geldwechseln gibt es im Westen von Edinburgh ? +Ist eines der Gefängnisse von Edinburgh für Touristen betretbar ? +In welcher Straße in Paris liegt das Hôtel Victoria Châtelet ? +Wie viele Defibrillatoren hat Heidelberg ? +Wie heißen die Messegelände ? +Wo in gibt es Heidelberg Benzin und wer betreibt die Tankstelle ? +Wo im Norden von Heidelberg gibt es Tankstellen ? +Wie viele Grundschulen gibt es im 14 . Arrondissement ? +Wo ist der nächste Helikopterlandeplatz von der Rue Lauriston in Paris ? +Wo gibt es indische Restaurants in Paris ? +Wie viele protestantische Kirchen gibt es in Heidelberg ? +Wo in Edinburgh gibt es Kathedralen und wie heißen diese ? +Was ist die Einwohnerzahl von Heidelberg ? +Gibt es mehr als einen Buchladen in Heidelberg ? +Wie heißen die Kopiergeschäfte in Heidelberg und wo kann ich sie finden ? +Gibt es mehr als 2 Orte mit Trinkwasser in Heidelberg ? +Wo gibt es Fahrradverleihe in Heidelberg ? +Wie viele Restaurants existieren in Edinburgh , die asiatisches Essen servieren ? +Gibt es Moscheen im Süden von Paris ? +Gibt es Bergwerke im Westen von Heidelberg ? +Wenn ich die McDonald's Restaurants Edinburghs zählen würde , welche Zahl würde ich bekommen ? +Bitte führe alle Orte in Stuttgart auf an denen es Spielplätze gibt . +Gibt es irgendwelche schönen Aussichtspunkte in Heidelberg ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Osten von Paris nennen ? +Wie nah ist der nächste Kindergarten von der Rue Bernard Dimey in Paris ? +Wo ist der nächste KFC vom Edinburgh Schloss ? +Wie viele Schulen in Edinburgh haben eine Bushaltestelle weniger als 200 Meter entfernt ? +Wo sind die Bergwerke im Norden von Heidelberg ? +Wie viele Hotels in Heidelberg haben 3 Sterne ? +Bitte , kannst du mir die Internetseiten von Theatern in Edinburgh nennen ? +Wie viele Restaurants gibt es im Süden von Paris ? +Wie viele griechische und italienische Restaurants gibt es in Edinburgh ? +Wie heißen alle Schwimmbäder , die maximal 30km von Paris entfernt sind ? +Wo im Süden von Paris gibt es Tankstellen ? +Wie heißt die nächste Kirche von der Yorckstraße in Heidelberg aus und wo ist sie ? +Kannst du mir Bars in Heidelberg nennen in denen man rauchen darf ? +Wie viele Burgen hat Edinburgh ? +Gibt es Feuerhydranten in Paris ? +Würdest du mir bitte alle archäologisch Stätten in Paris auflisten ? +Wie viele Bergwerke gibt es im Norden von Heidelberg ? +Wo in Heidelberg kann ich Eiscreme bekommen ? +Wie viele Kilometer sind Edinburgh und Leeds von einander entfernt ? +Kann ich vom Heidelberger Hauptbahnhof aus zum nächsten Kulturzentrum laufen ? +Gibt es Grabmale in Paris ? +Welche archäologischen Stätten existieren im Süden von Heidelberg ? +Gibt es historische Türme in Heidelberg ? +Wie heißt die Internetseite des Kinos Vue in Edinburgh ? +Sollte ich das Auto nehmen , um zur nächsten Bäckerei von der Yorckstraße in Heidelberg zu kommen ? +Wen ehren die Stolpersteine in Kreuztal ? +Welches ist der nächste unterirdische Parkplatz von Librairie Galignani in Paris ? +Gibt es Weinreben im Westen von Edinburgh ? +Wo im Osten von Heidelberg gibt es Tankstellen ? +Wie viele Schulen gibt es im Osten von Heidelberg ? +Welches ist das nächste Museum vom Heidelberg Hauptbahnhof ? +Wie viele Museen befinden sich in Edinburgh ? +Wenn ich in Heidelberg wäre , aus wie vielen Bars könnte ich wählen ? +Wie viele 4 Sterne Hotels gibt es in Paris und wo sind diese ? +Gibt es eine Straße namens St Vincent Street in Stockbridge ? +Wo sind Rad Parkplätze in Edinburgh ? +Welche Länder haben Botschaften in Edinburgh ? +Gibt es mehr als eine Universität in Heidelberg ? +Wo gibt es Moscheen im Umkreis von Paris ? +Kann ich vom Musee du Louvre zum nächsten Kulturzentrum in Paris laufen ? +Wie hoch sind die Berge in Edinburgh ? +Wie viele der Rathäuser Heidelbergs kann man mit einem Rollstuhl befahren ? +Welche Bäckereien hat Paris ? +Kannst du mir bitte den Standort eines Hotels in Edinburgh nennen ? +Wie viele Schulen in Paris haben eine Bushaltestelle weniger als 200 Meter entfernt ? +Gibt es 5 oder mehr Rastplätze in Heidelberg ? +Halten Busse an The Square in Edinburgh an ? +Wie viele Mitfahrzentralen gibt es in Paris ? +Kann ich in Heidelberg klettern gehen ? +Wo sind die Friedhöfe im Norden von Paris ? +Gibt es Büchereien in Heidelberg ? +Wie viele Stolpersteine kann man vom Heidelberger Schloss aus zu Fuß erreichen ? +Wo in Edinburgh kann ich Basketball spielen ? +Wo gibt es Gewächshäuser im Norden von Dresden ? +Gibt es archäologischen Stätten in Heidelberg ? +Wie viele Wasserbrunnen gibt es in Heidelberg ? +Kannst du mir den Standort einer Metzgerei in Edinburgh geben ? +Wenn ich die Universitäten Edinburghs zählen würde , welche Zahl würde ich bekommen ? +Wo im Süden von Heidelberg gibt es Tankstellen ? +Kannst du mir die Standorte von Tankstellen in Edinburgh sagen ? +Wo in Paris gibt es Läden , die ausschließlich Second Hand Ware haben , und wie lauten die Öffnungszeiten ? +In welchen Städten gibt es Brennereien ? +Wie viele Schwimmbäder gibt es im Norden von Paris ? +Wo in Heidelberg kann ich Schreibwaren kaufen ? +Kann man in Paris schwimmen gehen ? +Wie viele Restaurants gibt es im Süden von Edinburgh ? +Wie lauten die Öffnungszeiten der Galeria Kaufhof , die am nächsten am Bismarckplatz in Heidelberg ist ? +Wo ist die nächste Kirche vom Heidelberger Schloss aus ? +Gibt es ein Schwimmbad im Norden von Edinburgh ? +Gibt es Bio Supermärkte im Westen von Edinburgh ? +Wo gibt es einen Rastplatz in Edinburgh ? +Kannst du mir die Standorte von Tankstellen in Paris sagen ? +Wie viele 3 Sterne Hotels gibt es im Westen von Paris ? +Wo ist die nächste Werbesäule vom Kino Die Kamera in Heidelberg ? +Gibt es Moscheen östlich von Paris ? +Wo in Edinburgh gibt es Bio Supermärkte ? +Wo gibt es Briefkästen im Osten von Schriesheim ? +Wie lauten die Namen und Webseiten von Wandgemälden in Lyon ? +In wie vielen Geschäften in Heidelberg könnte ich einkaufen gehen ? +Gibt es Notfalltelefone in Heidelberg ? +Wo in Paris finde ich Attraktionen ? +Wie viele Hydranten gibt es in Adendorf und wo sind diese ? +Wo gibt es Restaurants im Süden von Paris ? +Wo gibt es 4 Sterne Hotels im Umkreis von Edinburgh ? +Wie viele Schwimmbäder gibt es im Osten von Edinburgh ? +Wie viele 3 Sterne Hotels gibt es im Osten von Heidelberg ? +Könntest du mir sagen aus wie vielen Rastplätzen man in Paris auswählen kann ? +Wie viele Denkmäler gibt es im Osten von Paris ? +Wie hoch sind die Kapazitäten der verschiedenen Fahrradparkplätze in Heidelberg ? +Wie viele Stolpersteine findet man südlich von Heidelberg ? +Wie weit sind der Palais de l’Élysée in Paris und der Eiffelturm voneinander entfernt ? +Wie viele Möglichkeiten zum Rudern gibt es in Paris ? +Wo in Paris gibt es Plätze zum Grillen ? +In welcher Straße in Paris ist der Italiener Maria Luisa ? +Wie viele Fast Food Restaurants gibt es im Westen von Edinburgh ? +Kann man Mitfahrzentrale in Heidelberg finden ? +Bitte zähle alle Orte von Stolpersteinen im Osten von Heidelberg auf , die man mit einem Rollstuhl besuchen kann ! +Wie viele Quellen gibt es in Heidelberg ? +Gibt es Moscheen im Osten von Edinburgh ? +Wie viele Mitfahrzentralen gibt es in Paris ? +Wo im Süden von Paris kann ich Geld wechseln ? +Bitte sag mir , wo es östlich von der High Street in Edinburgh öffentliche Toiletten gibt . +Gibt es irgendwelche Orte in Heidelberg an denen man Tennis spielen kann ? +Wie viele Bio Supermärkte sind nicht weiter als 5km von der Lothian Road in Edinburgh entfernt ? +Wie viele Hotels in Paris werden von Accor geleitet ? +Wie viele Spuren hat die Plöck in Heidelberg ? +Wo gibt es 4 Sterne Hotels im Umkreis von Heidelberg ? +Wie hoch sind die Kapazitäten der verschiedenen Fahrradparkplätze in Paris ? +Gibt es irgendwelche Rastplätze mit einer Feuerstelle in Heidelberg ? +Wie viele und wo in Baden-Württemberg gibt es Notfalltelefone ? +Wo im Norden von Paris gibt es Werbesäulen ? +Wo kann ich archäologischen Stätten in Heidelberg finden ? +Wo gibt es Moscheen im Umkreis von Edinburgh ? +Wo gibt es Aufladestationen in Edinburgh ? +Wo im Osten von Lyon gibt es Wandgemälde und wie heißen diese ? +Wo gibt es im Osten von Paris Museen ? +Wie viele Restaurants gibt es in Edinburgh ? +Wo sind die Friedhöfe im Westen von Heidelberg ? +Wo in Paris befinden sich Bäckereien ? +Wo gibt es Bushaltestellen im Norden von San Francisco ? +Verkauft die Tankstelle in der Bergheimer Straße in Heidelberg Diesel ? +Gibt es mehr als 20 Bushaltestellen in Edinburgh ? +Aus welchem Material ist die Straße der Summerhall Place in Edinburgh ? +Wo in Edinburgh ist es möglich BMX zu fahren ? +Wo in Paris findet man Informationskarten ? +Wo ist der nächste Fahrradparkplatz von der Brunnengasse in Heidelberg ? +Gibt es Moscheen im Süden von Heidelberg ? +Wurde der Kelso ROC Post militärisch genutzt ? +Wo ist die nächste Glas Recycling Stelle von Quai de Béthune in Paris ? +Wie heißt der Wetterunterstand der der Rue Fragonard in Paris am nächsten ist und wo ist dieser ? +Gibt es Bio Supermärkte im Süden von Paris ? +Wo sind Stellen in Heidelberg an denen Taxis warten ? +Wo gibt es Hotels in Paris und wie heißen diese ? +Wo gibt es Campingplätze in Paris ? +Wie heißt Paris auf Spanisch ? +Wie viele Fish and Chips Läden gibt es im Süden von Edinburgh ? +Wie lauten die Wikipedia Seiten von Museen in Paris ? +Wie viele Fahrradverleihe gibt es im Westen von Heidelberg ? +Wo ist die nächste Werbesäule vom Kino Vue in Edinburgh ? +Gibt es irgendwelche Monumente in Edinburgh ? +Gibt es ein Restaurant in der Nähe der Lothian Road in Edinburgh ? +Kann man Mitfahrzentrale in Paris finden ? +Kannst du mir den Standpunkt eines REWE in Heidelberg mitteilen ? +Wo gibt es Stolpersteine in Pinneberg ? +Was ist das nächste Restaurant vom Deutschen Bundestag aus in Berlin ? +Gibt es Wanderkarten in Edinburgh ? +Wie viele katholische Kirchen gibt es in Heidelberg ? +Wie viele Schulen gibt es im Westen von Edinburgh ? +Wie viele Bahnhöfe kann man im Süden von Edinburgh finden ? +Würdest du bitte alle Orte in Paris auflisten , an denen man Schreibwaren kaufen kann ? +Halten Busse am South Gyle Park in Edinburgh an ? +Wo in Heidelberg gibt es Fahrschulen und wie heißen diese ? +Wie lautet die Telefonnummer des Ristorante Pellicano in Paris ? +Wie viele Fast Food Restaurants gibt es im Süden von Edinburgh ? +Wie viele Aussichtspunkte hat Heidelberg ? +Kann ich in Paris Kampfsport ausüben ? +Wie hoch ist der Königstuhl in Heidelberg ? +Würdest du mir den Ort eines Tennisplatzes in Heidelberg nennen ? +Kannst du mir alle Rastplätze in Edinburgh nennen ? +Wie viele der Brücken in Eure-et-Loir sind Einbahnstraßen ? +Welche Städte befinden sich im Westen von Edinburgh ? +Gibt es Helikopterlandeplätze im Westen von Heidelberg ? diff --git a/smtsemparsecpp/data/nlmaps.test.en b/smtsemparsecpp/data/nlmaps.test.en new file mode 100644 index 000000000..b81a9f469 --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.test.en @@ -0,0 +1,880 @@ +What are the primary schools of Bielefeld called ? +Are there 5 or more water wells in Heidelberg ? +Can I buy scuba diving equipment anywhere in the vicinity of Edinburgh ? +Are there any organic supermarkets in the south of Edinburgh ? +There are police stations in Edinburgh ? +In which street is the closest car dealer from Carrick Knowe in Edinburgh ? +What are the locations of all bakeries of Paris ? +How many post boxes are around Alaise ? +Please tell me where bathrooms are east of the Place de la République in Paris . +Can you give me the location of a bakery in Heidelberg that can be accessed with a wheelchair ? +Where in Edinburgh are restaurants in which smoking is not allowed ? +How many universities are there in Paris ? +Can you list the location of all bike parking areas that are covered and have lockers in Heidelberg ? +Where are churches close to Palais de l’Élysée in Paris ? +Can you give me the addresses of banks in Edinburgh ? +Which shops are within the vicinity of Alnwickhill in Edinburgh ? +Can you tell me the name of the closest bar or restaurant from the cinema Die Kamera in Heidelberg ? +Where is the closest bank with ATM's that can be accessed with a wheelchair from the Heidelberg castle ? +Is there a bus stop in Blumenstraße , Heidelberg ? +Are there any information maps in Paris ? +Where in the world are monitoring stations for bicycles ? +Where in Paris can I park my car ? +Can I eat African somewhere in Heidelberg ? +How many libraries lie in the city Heidelberg ? +How many second hand only stores are there in the west of Edinburgh ? +How many archaeological sites exist in Edinburgh ? +Are there any Japanese restaurants in Heidelberg ? +Please tell me where bathrooms are south of High Street in Edinburgh . +How many town halls are there in Edinburgh ? +Are there any archaeological sites in Heidelberg ? +How many universities are there in Heidelberg ? +Where in the east of Paris can I exchange money ? +How many quarries are there in the west of Edinburgh ? +Can you tell me the amount of police stations Edinburgh has ? +Where are cemeteries in the north of Heidelberg ? +How many mosques are there in Paris ? +How many 3 star hotels are in the south of Heidelberg ? +Where are Indian restaurants in Heidelberg ? +How far away is the closest megalith from the Edinburgh airport ? +Can I find more than I book store in Edinburgh ? +Where is the closest Indian or Asian restaurant from the cinema Le Cinaxe in Paris ? +What is the name of the closest theme park from Edinburgh ? +What are the abandoned theme parks called ? +Where in Paris can I get ice cream ? +Is there more than 1 fire brigade in Paris ? +How many historic manors are in day trip distance of Heidelberg ? +Give me the name and location of all tourist related activities that can be accessed with a wheelchair in Heidelberg ! +Please tell me where bathrooms are west of High Street in Edinburgh . +Can you list the location of all bicycle parking areas that have lockers in Heidelberg ? +What is the closest shop to buy a mobile phone from Newhaven Road in Edinburgh ? +What are the names of springs in the vicinity of Edinburgh ? +How many Stolpersteine can be found west of Heidelberg ? +Where is the closest underground parking area for cars from Waterstones in Edinburgh ? +What is the closest pharmacy from the Heidelberg castle ? +Where are cemeteries in the west of Edinburgh ? +In how many spots can I go climbing in Edinburgh ? +How many cemeteries are there in Paris ? +Are there several cave entrances in Paris ? +How many butchers in Paris can be accessed with a wheelchair ? +If any of the peaks in the south of Languedoc-Roussillon have a Wikipedia pages , please list it . +Where in Edinburgh can I buy ice cream ? +Are there any international airports around Heidelberg ? +Where in Heidelberg can I practice football ? +How many drinking water locations are there in Edinburgh ? +Can you please tell me the websites of all hotels in Paris ? +Is there any camp site in Paris ? +Which bank operators do we have in Paris ? +If I was in Heidelberg from how many restaurants that serve German food could I choose from ? +How many kindergartens are in Edinburgh ? +Where are advertising columns in the east of Edinburgh ? +Are there any water wells in Edinburgh ? +How many KFC are there in the south of Edinburgh ? +Is there a town hall within walking distance from the Castlehill in Edinburgh ? +Which airports are in Paris ? +How many mountains are there in Heidelberg ? +Is Cramond Kirk classed as a cathedral in Edinburgh ? +Where is the closest bus stop from Waterstones in Edinburgh ? +Does the A4 lead to Paris ? +Are there any monuments in Heidelberg ? +Please , would you give me the number of traffic signals in Paris ? +What is the maximum speed of the M90 in Edinburgh ? +Is there a subway in Newington ? +How many fire brigades can be found in Edinburgh ? +How many peaks are there in Languedoc-Roussillon ? +What cuisines are available in Edinburgh ? +How many fast food restaurants sites are in the north of Paris ? +Where in Edinburgh can I practice football ? +How many bus stops can be found in San Francisco ? +How many conference centres are in Germany ? +Are there any quarries in the south of Edinburgh ? +What are the animal shelters of Heidelberg called ? +Which restaurants in Edinburgh serve burgers ? +Where in Heidelberg can I find a monument ? +How many restaurants are in the north of Paris ? +If there are any archaeological sites in Edinburgh , how many are there ? +Should I take car to the closest bakery from Rue Lauriston in Paris ? +How many cemeteries are there in Heidelberg ? +Where are restaurants in the south of Edinburgh ? +How many mobile phone communication towers are there in Edinburgh ? +Do tombs exist in Paris ? +Does Heidelberg have any Burger Kings ? +How many swimming pools are in the north of Heidelberg ? +Where in Paris may I find apartments ? +Can I play rugby anywhere in Edinburgh ? +How many of the town halls in Paris can be accessed with a wheelchair ? +Where is the closest restaurant or bar from the Tennis Club du Parc in Montpellier ? +Where are camp sites in Edinburgh ? +What is the Wikipedia page of the city Paris ? +What is the Wikipedia page of the Eiffel Tower in Paris ? +How many swimming pools are in the west of Edinburgh ? +What are the animal shelters of Edinburgh called ? +How many hotels in Paris have 3 stars ? +Are there any nice viewpoints in Paris ? +Where are 4 star hotels in the north of Paris ? +How many train stations can be found in the west of Edinburgh ? +Please tell me where bathrooms are south of the Bismarckplatz in Heidelberg . +Is there a swimming pool in the north of Paris ? +Please , would you give me the location of an emergency phone in Paris ? +How many places to tread water are there ? +Are there any monuments in Marseille and if so how many ? +Are there any memorials in Nantes ? +Where are petrol stations in the west of Paris ? +Is the Summerhall Place in Newington ? +Where are restaurants in the south of Heidelberg ? +What are the names of kindergartens in Edinburgh ? +Give me the websites of car sharing places in Edinburgh . +Where can electricians be found in Edinburgh ? +How many fast food restaurants sites are in the north of Heidelberg ? +How many advertising columns are there in Heidelberg ? +Are there any caves in Osterode and if so how many ? +Are there any vineyards in the south of Heidelberg ? +Give me the German names of the remote islands . +How many cathedrals are there in the east of Paris ? +Please , can you tell me the locations of monuments in Heidelberg ? +Where in Lyon are murals and what are they called ? +What is the homepage of the cinema Die Kamera in Heidelberg ? +Where is the closest Vauxhall dealer ship from Edinburgh ? +Where is the closest butcher and bakery from the Newhaven Road in Edinburgh ? +How many hospitals are there in Paris ? +How many monuments are there in Pays de la Loire ? +What is the telephone number of the Chez Jenny in Paris ? +Can you tell me a cinema that has a restaurant in walking distance in Edinburgh ? +Is there a Holiday Inn Express in Edinburgh ? +Is the Avenue du Général Lemonnier in the 5th Arrondissement ? +Are there any historic sites within walking distance from the Hauptbahnhof in Heidelberg ? +Where in Paris can I buy stationary ? +Where in Montpellier can I play tennis ? +How many schools are in the south of Paris ? +Can you give me the number of schools in Edinburgh ? +What is the number of citizens Edinburgh has ? +Is there a swimming pool in the south of Paris ? +Where in Paris are driving schools and what are they called ? +How many locations are in the east of Heidelberg where you can play miniature golf ? +Where is the closest drinking water location from Gare du Nord in Paris ? +Are there any organic supermarkets in Paris ? +How many restaurants are there in the west of Berlin ? +How many butchers and bakeries are in Edinburgh ? +How many speed cameras exist in Edinburgh ? +Please , would you give me the location of an emergency phone in Heidelberg ? +Where in Paris can I park my car underground ? +How many Stolpersteine can be found north of Heidelberg ? +Where are fire brigades in Heidelberg ? +What are the websites of the museums or art centres in walking distance of the Eiffel Tower in Paris ? +Which types of leisure activities are there in Heidelberg ? +Are there any fire hydrants in Brietlingen ? +Where are springs in the east of Heidelberg ? +Where in the world are shops called Cash Converters ? +Which museum is closest to Edinburgh Waverley ? +How many locations are in the west of Paris where you can play miniature golf ? +Where in Edinburgh can I park my car underground ? +What is the closest protestant church from Rue Vercingétorix in Paris and where is it ? +How many historic sites are in Nantes ? +Would you please tell me a name of a hotel in Heidelberg that I can access with a wheelchair ? +Could you give me all locations for skateboarding in Paris ? +How many miles are Edinburgh and Leeds apart ? +What is the closest bank with ATM's from the Palace of Holyroodhouse in Edinburgh ? +How many bus stops in Edinburgh can be accessed with a wheelchair ? +How many butchers exist in Paris ? +Are there any African restaurants in Heidelberg ? +How many drinking water locations are there in Paris ? +Are there any mosques east of Heidelberg ? +Which bank operators do we have in Edinburgh ? +Is the Summerhall Place in Leith ? +Please , can you tell me the names of all attractions in Paris ? +Are there any communication towers in Edinburgh ? +Is there a street called Werrgasse in Neuenheim ? +How many Franprix are there in Paris ? +Are there 2 or more options to go climbing in Heidelberg ? +Is there a street called Abbey Avenue in Leith ? +How many arts centres are in the south of Paris ? +Where are banks in the east of Edinburgh ? +Are there any mosques in the east of Heidelberg ? +Which bakeries are in Heidelberg ? +Are there several locations in Edinburgh where one can play football ? +Where are post boxes north of Schriesheim ? +Is there a street called Henderson Street in Leith ? +What kind of highway is the Place de la République in Paris ? +Where in Edinburgh can I find a monument ? +Can you play badminton or tennis in Paris ? +Where is the closest glass recycling facility from Newhaven Road in Edinburgh ? +What is the Wikipedia page of the town hall in Heidelberg ? +Where are banks in the north of Edinburgh ? +Can you give me the location of book stores in Edinburgh ? +How many restaurants exist in Heidelberg that serve Asian food ? +Can you tell me the amount of police stations Paris has ? +How many drinking water spots can be reached with a wheelchair in Paris ? +How many memorials can one find in Edinburgh ? +Where are the hotels in Edinburgh operated by Apex Hotels ? +At how many different places can I play football in Paris ? +What are the peaks in the south of Languedoc-Roussillon called and how high are they ? +Is there a place for playing cricket in Edinburgh ? +Where can I find a waiting taxi in Edinburgh ? +Where are 4 star hotels in the north of Heidelberg ? +Which networks operate bus stops in San Francisco ? +Where can I find petrol stations in Heidelberg ? +Should I take car to reach the next organic supermarket from Bismarckplatz in Heidelberg ? +Are there any parks in Edinburgh and if so where are they ? +How many fish and chips places are in the north of Edinburgh ? +Are there any organic supermarkets in the east of Heidelberg ? +Who operates the charging stations in Munich ? +How many planned buildings can you find ? +How many post offices can be found in Heidelberg ? +Where are subway stations in the north of Île-de-France ? +Where are Stolpersteine in the east of Heidelberg ? +How many train stations can be found in the north of Paris ? +Where are cemeteries in the south of Edinburgh ? +How many train stations can be found in the south of Heidelberg ? +How many quarries are there in the west of Heidelberg ? +Where are the closest bank and the closest pharmacy from the Rue Lauriston in Paris ? +What are the names of the remote islands ? +Are there more than 5 arts centres in Paris ? +Are there any viaducts in Edinburgh and if so how many ? +Are there any tailors in Edinburgh ? +Which driving school is closest to Mannheimer Straße in Heidelberg and where is it ? +Where are petrol stations in the east of Paris ? +Are there any mosques in the east of Paris ? +What is the website of the cinema Vue in Edinburgh ? +Can I play tennis anywhere in Paris ? +Which towns are around Paris ? +Where are restaurants in the north of Paris ? +How many butchers exist in Edinburgh ? +How many churches are there in the east of Paris ? +Where are 4 star hotels in the east of Heidelberg ? +Which towns are east of Heidelberg ? +How close is the closest kindergarten from Czernyring in Heidelberg ? +What are the maximum speeds listed for the Place de la République in Paris ? +Please list all location of petrol stations in Edinburgh that sell Diesel . +How many 4 star hotels are in Heidelberg and where are they ? +Are there 2 or more options to practice martial arts in Paris ? +Please list the location of all monuments in the south of Pays de la Loire ! +Are there any places of worship for Buddhists in Edinburgh ? +Are there any organic supermarkets within walking distance from the Avenue des Ternes in Paris ? +Is there more than 1 library in Heidelberg ? +How many churches are there in the south of Heidelberg ? +Are there any organic supermarkets within walking distance from the campus INF 325 in Heidelberg ? +How many memorials are there in the south of Edinburgh ? +Which shops are within the vicinity of the 5th Arrondissement in Paris ? +Where would I find a historic tower in the city Heidelberg ? +Which archaeological sites can I find in Paris ? +Is it possible to play football somewhere in Edinburgh ? +Where are bike rentals in Paris ? +Would you please tell me a name of a hotel in Paris that I can access with a wheelchair ? +Are there 5 or more hotels in Heidelberg ? +How far away is the next school from Angelweg in Heidelberg ? +How many memorials are there in the north of Paris ? +Are there any quarries in the east of Edinburgh ? +How many KFC are there in the north of Edinburgh ? +Where are abandoned theme parks ? +How many Volkshochschule are there in Germany ? +How many traffic signals does Edinburgh have ? +How many caravan sites are in the north of Edinburgh ? +What is the closest parking area for cars from Thalia in Heidelberg ? +Where is the closest Indian or Asian restaurant from the cinema Die Kamera in Heidelberg ? +In how many different locations can I go swimming in Paris ? +In how many spots can I go climbing in Heidelberg ? +Is there a pharmacy in walking distance from Vue in Edinburgh ? +Where in Edinburgh are town halls ? +Can you give me bars in Paris in which French food is served ? +Where can I find a dentist in Heidelberg ? +What kind of historic sites can be found in Bavaria ? +Which museums are in Paris ? +Where are the peaks in Heidelberg that have hiking maps in walking distance ? +Where are charging stations in Heidelberg ? +Are there any places of worship for Buddhists in Heidelberg ? +How many memorials are there in the west of Paris ? +How many bus stops can be found in Paris ? +Please , can you list all locations in which I can buy stationary in Edinburgh ? +What are the phone numbers and names of the museums at most 10km away from Notre Dame in Paris ? +Where are bus stops in Edinburgh ? +How many cathedrals are there in the west of Edinburgh ? +Can I walk to the closest public bathroom from the Rührbrunnen in Stuttgart ? +How many restaurants are in the north of Edinburgh ? +Where in Heidelberg are second hand only stores and what are their opening times ? +How many restaurants are in the west of Heidelberg ? +Which types of crafts are there in Paris ? +Is there more than 1 library in Paris ? +Where are Stolpersteine in the north of Heidelberg ? +What peaks are in Edinburgh ? +Does a square called Place de la République exist in the 10th Arrondissement ? +Can you give me the location of a restaurant in Edinburgh that can be accessed with a wheelchair ? +Where are arts centres in Paris ? +Where are kindergartens in the east of Edinburgh ? +Can you give me the available websites of archaeological sites in Edinburgh ? +Where are post boxes in the north of Schriesheim ? +Where are banks with ATM's in Paris ? +How many second hand only stores are there in the north of Heidelberg ? +Which cuisines are in Paris ? +Where are Indian restaurants in Edinburgh ? +Is there a bank in Fountainbridge , Edinburgh ? +Is there anywhere in Edinburgh where I can eat seafood ? +If there are any car sharing places in Heidelberg , can you tell me where ? +Where are bicycle parking areas are there in Heidelberg ? +Where can I find a hotel in Edinburgh ? +Are there any golf courses in the vicinity of Edinburgh ? +At how many places can I buy stationary in Edinburgh ? +Would you tell me the phone number of Guru Balti in Edinburgh ? +Can I walk from Gare du Nord to the Sacre Coeur in Paris ? +What is the name of the closest museum or art centre from Notre Dame in Paris ? +Do car sharing places exist in Edinburgh ? +Are there any vineyards in the north of Edinburgh ? +What is the closest restaurant from Rue de Cicé in Paris ? +How many cinemas are there in Paris ? +Where are cemeteries in the east of Paris ? +How many butchers in Heidelberg can be accessed with a wheelchair ? +How many butchers exist in Heidelberg ? +Can you give me the addresses of banks in Heidelberg ? +What is the number of rooms at the Heidelberg Marriott Hotel ? +How many places are reserved for skateboarding in Heidelberg ? +Can you give me the names and telephone numbers of driving schools in the north of Paris ? +Is it possible to walk from Heidelberg castle to the train station Heidelberg-Altstadt ? +Can you tell me the name of the closest bar or restaurant from the cinema Le Cinaxe in Paris ? +Can you give me the addresses of arts centres in Paris ? +Is there any camp site in Edinburgh ? +How many bicycle parking areas are there in Heidelberg ? +At how many places can I buy stationary in Heidelberg ? +Are there several animal shelters in Heidelberg ? +What is the closest church from Mary King's Close in Edinburgh and where is it ? +How many hotels are there in Paris ? +Which companies are the operators of car sharing places in Edinburgh ? +Where in Edinburgh can I recycle clothes ? +What archaeological sites exist in the west of Heidelberg ? +Which is the closest arts centre from the Eiffel Tower in Paris ? +Please give me all locations of public bathrooms in Edinburgh . +How many churches are there in the north of Edinburgh ? +In which street is the hotel Jurys Inn in Edinburgh ? +Where is the closest charging station from the campus INF 325 in Heidelberg ? +How many apartments can I choose from in Heidelberg ? +Are there any water wells in Heidelberg ? +How many lanes does the Summerhall Place in Edinburgh have ? +Would you please tell me a name of a hotel in Heidelberg ? +Is there any bike rental in Paris ? +Where in Heidelberg can I buy ice cream ? +Where are 4 star hotels in the north of Edinburgh ? +Where are 4 star hotels in the west of Paris ? +How many bridges are in the east of Eure-et-Loir ? +Are there more than 20 bus stops in Paris ? +Can you give me the location of libraries in Paris ? +What is the closest Italian or Indian restaurant from Gare du Nord in Paris ? +What are the names of cinemas that are within walking distance from High Street in Edinburgh ? +Where are bars were smoking is allowed and have a bus stop close by in Heidelberg ? +In what location in Heidelberg can a car be parked underground ? +At how many places in the north of Edinburgh can I exchange money ? +How many memorials are there in the north of Heidelberg ? +Are there several spots in Edinburgh in which basketball can be played ? +What are the organic supermarkets of Heidelberg called ? +Are there any African restaurants in Paris ? +Can you give me the names and opening times of fish and chips places in Edinburgh ? +Are there any public bookcases in Germany ? +What are the maximum speeds listed for the Plöck in Heidelberg ? +Can you give me the location of all archaeological sites in Edinburgh ? +Is there a tennis club in Montpellier with a bus stop no further than 2km away ? +Would you give me the location of a nice viewpoint in Paris ? +How many churches are there in the south of Edinburgh ? +Where in the south of Heidelberg are drinking water locations ? +Can you give me the location of a restaurant in Paris that can be accessed with a wheelchair ? +How many shoemakers are there in Edinburgh ? +How far away is Calton Hill from the Palace of Holyroodhouse in Edinburgh ? +In which street is the Le Robinet d'Or in Paris ? +How many second hand only stores are there in the east of Edinburgh ? +What are the locations of all bakeries of Heidelberg ? +If I was in Heidelberg , how many libraries could I visit ? +Can you give me the names and telephone numbers of driving schools in the east of Heidelberg ? +Where are post boxes west of Schriesheim ? +Where in the north of Edinburgh are drinking water locations ? +Where in the world are remote islands ? +Please give me the name and websites of all arts centres in Heidelberg ! +Please tell me where the closest bathroom is from the Place de la République in Paris . +Are there any archaeological sites in Paris ? +When where the various Stolpersteine in Heidelberg first laid ? +How far away is Calton Hill from the Edinburgh airport ? +What are the schools of Bielefeld called and what are their websites ? +Please , would you give me the number of traffic signals in Heidelberg ? +How many memorials are there in the east of Heidelberg ? +How many bus stops in Paris can be accessed with a wheelchair ? +Are there any springs in the north of Paris ? +Can you please tell me the homepage of hotels in Heidelberg ? +Are there any universities in Edinburgh ? +Are there any monuments in Paris ? +Where is the closest charging station from the Frauenkirche in Munich ? +Are there any helipads in the north of Heidelberg ? +What are the organic supermarkets of Edinburgh called ? +What are the names of kindergartens in Heidelberg ? +How high are the mountains in Heidelberg ? +Where is the closest bank with ATM's that can be accessed with a wheelchair from the Palais de l’Élysée in Paris ? +Which types of historic sites are there in Heidelberg ? +Where are mosques in the vicinity of Heidelberg ? +Where in Bretagne are breweries ? +Is the Avenue du Général Lemonnier in the 1st Arrondissement ? +How many hotels lie in the city district of Paris ? +Are there any charging stations for electrical cars in Edinburgh and if so how many ? +What are the opening times of La Flûte de Pan that is closest to the Place de la République in Paris ? +Is there a subway in the 8th Arrondissement ? +Where are banks in the west of Edinburgh ? +Can you tell me a cinema that has a bar no further than 500m away in Paris ? +What is the closest money exchange from Edinburgh Waverley ? +Which types of crafts are there in Heidelberg ? +Which supermarkets are in Edinburgh ? +What is the name of the weather shelter closest to the Königstuhl in Heidelberg and where is it ? +How many bakeries are there in Paris ? +Are there any fire hydrants in Lüneburg ? +Where are banks with ATM's in Edinburgh ? +Which bank operators do we have in Heidelberg ? +Can you give me the phone number of a bakery in Heidelberg ? +Where in Paris are cave entrances ? +How far apart are the Palais de l’Élysée and the Léon de Bruxelles in Paris ? +How many traffic signals does Heidelberg have ? +Which supermarkets are in Paris ? +Are there any organic supermarkets in the west of Heidelberg ? +How far away is the next school from Restalrig Avenue in Edinburgh ? +If I was in Paris , how many museums could I visit ? +Where are banks in the east of Paris ? +Where in Witten are facilities for migrants ? +Where in Heidelberg can I practice my climbing ? +What are the names of butchers in Edinburgh ? +How many bicycle parking areas are there in Paris ? +At which elevations can the drinking water spots be found in Heidelberg ? +How many of the living streets in Heidelberg are one way streets ? +Is it possible to play football somewhere in Paris ? +Where are fountains in Paris and how many are there ? +How many quarries are there in the south of Edinburgh ? +If I was in Heidelberg how from how many hotels could I choose to stay in ? +Please , can you list all locations in which I can buy stationary in Heidelberg ? +Tell me the phone numbers of museums in Paris . +Are there any picnic sites in the city of Edinburgh ? +How many car sharing facilities are there in Edinburgh ? +What types of activities are there in Edinburgh for tourists ? +At how many places can I rent a bike in Paris ? +Where is the Fernsehturm Heidelberg ? +Where are post offices in Toulouse ? +Are there any helipads in Edinburgh ? +Where are distilleries that produce whisky ? +At how many hotels of Heidelberg is wlan available ? +What archaeological sites exist in the west of Edinburgh ? +Please list the names of the embassies in Edinburgh . +Does Dresden have 5 or more roundabouts ? +Please give me all locations of public bathrooms in Heidelberg . +Who are the operators for charging stations in Heidelberg ? +What is the Wikipedia page of the first Arrondissement in Paris ? +Am I allowed to smoke at the Le Robinet d'Or in Paris ? +What are the names of copy shops in Paris and where can I find them ? +Can you tell me the name of the closest bar or restaurant from Longstone Park in Edinburgh ? +How many banks can be found in Edinburgh ? +In which street in Edinburgh is the Italian restaurant Giuliano's ? +How many locations are in the north of Heidelberg where you can play miniature golf ? +How many springs are there in Nîmes and how many peaks ? +Where are advertising columns in the north of Edinburgh ? +Are the Heidelberg castle and the Heidelberg Hauptbahnhof within walking distance of each other ? +Are there several police stations in the city of Heidelberg ? +Where is the closest town hall from Neuenheim , Heidelberg ? +What archaeological sites exist in the north of Edinburgh ? +How many Marks & Spencer Food are there in the UK ? +Which schools exist in Edinburgh ? +How many swimming pools are in the west of Paris ? +Is an African restaurant in the walking distance from the Bismarckplatz in Heidelberg ? +What archaeological sites exist in the east of Edinburgh ? +How many 3 star hotels are in the north of Paris ? +What are the names of all Asian restaurants in Paris ? +How many historic sites are in the east of Nantes ? +Please give me the names of the motorways in Paris ? +Please give me all locations of public bathrooms in Paris . +Are there any mosques west of Edinburgh ? +Are there any mosques west of Paris ? +How many people live in Edinburgh ? +How many swimming pools are in the east of Paris ? +Can you give me the location of all archaeological sites in Heidelberg ? +Please , would you give me the location of a post office in Edinburgh that can be accessed with a wheelchair ? +Where are petrol stations in the east of Edinburgh ? +Are there several police stations in the city of Edinburgh ? +How many caravan sites are in the north of Paris ? +Where are hiking maps close to a car park in Edinburgh ? +How many schools are in the north of Edinburgh ? +Where are bicycle parking areas are there in Paris ? +At how many different places can I play football in Edinburgh ? +Where are banks in the north of Heidelberg ? +Would you tell me the location of all speed cameras in Edinburgh ? +Where can harbours be found in Edinburgh ? +How many arts centres are there in Paris ? +Is there any miniature golf in Heidelberg and if so where ? +Where are bus stops in the south of San Francisco ? +What is the closest underground parking area for cars from Thalia in Heidelberg ? +What are the names of butchers in Paris ? +Which buses stop at Erich-Hübner-Platz in Heidelberg ? +How many speed cameras exist in Heidelberg ? +What are all the locations of fire hydrants in Paris ? +What is the closest historic site from the Hauptbahnhof in Heidelberg ? +Can you tell me the names of swimming pools that are at most 30km away from Heidelberg ? +How many second hand only stores are there in the east of Heidelberg ? +Give me cafes in Edinburgh that have a car park close by . +What is the Wikipedia page of the city Heidelberg ? +Which shops are around the Hard Rock Cafe in Edinburgh ? +How many memorials are there in the west of Heidelberg ? +Does Edinburgh have more than one castle ? +Are there any mosques north of Heidelberg ? +How many archaeological sites can I find in Paris ? +Which protestant churches are there in Heidelberg ? +Where can I find a picnic site at which I can barbecue in Heidelberg ? +Is there a protestant kindergarten in Heidelberg ? +Can you tell me a cinema that has a restaurant in walking distance in Heidelberg ? +Where is the closest restaurant or bar from the Hawes Pier in Edinburgh ? +Can you tread water in the Germany ? +How many kilometres are Heidelberg and Mannheim apart ? +Where can I find archaeological sites in Heidelberg and what are they called ? +How many Greek restaurants are there in Edinburgh and where ? +Where can I find archaeological sites in Edinburgh and what are they called ? +What kind of historic sites can be found in Nantes ? +Would you please tell me where the location of a viewpoint in Heidelberg is that can be accessed with a wheelchair ? +How many caravan sites are in the east of Heidelberg ? +What kind of cuisine is served at the Piatto Verde in Edinburgh ? +Can you please tell me the homepage of hotels in Edinburgh ? +How many rugby pitches are there in Edinburgh ? +Where are banks in the south of Edinburgh ? +How many McDonalds are there in Paris ? +How many places are reserved for BMX racing in Edinburgh ? +How many caravan sites are in the east of Edinburgh ? +Where is the closest parking area for cars from Waterstones in Edinburgh ? +Where can I find petrol stations in Paris ? +What are the ambulance stations of Paris called ? +How many drinking water locations are there in Heidelberg ? +How many book stores does Paris have ? +Please tell me where bathrooms are west of the Place de la République in Paris . +Can you tell me where a bakery is in Heidelberg ? +How many restaurants are in the east of Heidelberg ? +Which schools exist in Paris ? +How many bike rental places are in the south of Heidelberg ? +How many bridges can be found in the east of Edinburgh and where are they ? +Are there any communication towers in Heidelberg ? +How many subway stations are there in Île-de-France ? +Which countries have an embassy in Paris ? +How many schools are in the east of Paris ? +Is it possible to walk from Palace of Holyroodhouse to the train station Haymarket in Edinburgh ? +How many distilleries do you count ? +Are there any tourist attractions in Edinburgh ? +Where would I find a tomb in the city Paris ? +What is Edinburgh called in Japanese ? +Where in the south Lyon are murals and what are they called ? +Which types of amenities are there in Edinburgh ? +Where is the closest kindergarten from the Brunnengasse in Heidelberg and what is it called ? +Can you give me the names of all archaeological sites in Edinburgh ? +Would you please list all archaeological sites in Edinburgh ? +How many 3 star hotels are in the east of Edinburgh ? +Are there any viewpoints in Edinburgh that can be accessed with a wheelchair ? +If I was in Heidelberg how many shops could I go shopping in ? +Which cuisines can I choose from in Paris ? +Please list the locations of all Stolpersteine that can be accessed with a wheelchair in the west of Heidelberg ! +Are there any vineyards in the east of Edinburgh ? +Can I walk to the closest fountain from the Heidelberg castle ? +Does Paris have any publicly available defibrillators ? +Can you give me the phone numbers of bike rentals in Heidelberg ? +Where are museums that I can visit with a wheelchair in Paris ? +Would you give me the location of a nice viewpoint in Edinburgh ? +Would you give me a location in Paris where I can play table tennis ? +Please tell me where bathrooms are west of the Bismarckplatz in Heidelberg . +How many cemeteries are there in the east of Paris ? +List all memorials that can be accessed with a wheelchair and are no further than 7km away from the Palace of Holyroodhouse in Edinburgh . +Are the Palais de l’Élysée and Gare du Nord in Paris within walking distance of each other ? +How many schools are in the south of Edinburgh ? +Is there a subway in Eppelheim ? +Are there any tombs in Edinburgh ? +Where are Italian restaurants in Heidelberg ? +Which towns are west of Heidelberg ? +How many road constructions are ongoing in Heidelberg at the moment ? +Where are Italian restaurants in Berlin ? +Would you please tell me a name of a hotel in Edinburgh that is operated by Apex Hotels ? +Where in Heidelberg are restaurants in which smoking is allowed ? +How many libraries lie in the city Paris ? +Can you give me all locations of defibrillators in Heidelberg ? +Is there an arts centre within walking distance from Gare du Nord in Paris ? +Where is the closest bank and the closest pharmacy from the Mary King's Close in Edinburgh ? +Could you give me all locations for BMX racing in Edinburgh ? +Is there a swimming pool in the west of Heidelberg ? +What kind of historic site is the closest one from the Hauptbahnhof in Heidelberg ? +Can you tell me what number of supermarkets Edinburgh has ? +Where can the ambulance stations of Paris be found ? +What is the closest bank with ATM's from the Palais de l’Élysée in Paris ? +How many miles are Paris and Rennes apart ? +How many springs are in the vicinity of Edinburgh ? +Where are bakeries in Heidelberg ? +Can you give me the Wikipedia pages of arts centres in Paris ? +Where is the closest bike parking area that is covered from Rue Vercingétorix in Paris ? +Can you tell me a cinema that has a bar no further than 500m away in Edinburgh ? +Is there a motorway called M8 that leads to Edinburgh ? +Is there a motorway called A4 that leads to Paris ? +Where is the closest clothes recycling facility from Yorckstraße in Heidelberg ? +How many schools are close to Neuenheim ? +Where is the closest fountain from Le Cinaxe in Paris ? +Which towns are east of Paris ? +How high is the mountain Arthur's Seat in Edinburgh ? +Where is the Manure Pit ? +There are police stations in Paris ? +Where in the east of Edinburgh are drinking water locations ? +Where are banks in the south of Paris ? +Where are post boxes in the west of Schriesheim ? +Where can distilleries be found ? +How many Stolpersteine can be found in the west of Heidelberg ? +Would you give me the names of all Italian restaurants in Paris ? +What are all the locations of fire hydrants in Heidelberg ? +How many restaurants are there in the south of Berlin ? +Is there a railway station called Argentine in Paris ? +Which cuisines are in Edinburgh ? +How many tombs are in the south of Edinburgh ? +What is the name for Heidelberg in French ? +Is smoking allowed inside the Ristorante Pellicano in Paris ? +Where can I go swimming in Heidelberg ? +What kind of archaeological sites exist in Heidelberg ? +Please tell me where the closest bathroom is from the Bismarckplatz in Heidelberg . +What is the telephone number of Schwarzer Adler in Heidelberg ? +Where are Starbucks in Heidelberg ? +Can you please tell me the location of a hotel in Paris ? +Can you give me the location of book stores in Paris ? +Are there any mosques east of Edinburgh ? +Where is the closest bus stop from Thalia in Heidelberg ? +Can you list the location of all bicycle parking areas that have lockers in Edinburgh ? +Can you tell me where a bakery is in Edinburgh ? +How many train stations can be found in the east of Edinburgh ? +Is it possible to walk to the closest gym from Viewforth in Edinburgh ? +What kind of cuisine is served at the Chez Jenny in Paris ? +Which towns are east of Edinburgh ? +Can you tell me the locations of petrol stations in Heidelberg ? +Where are kindergartens in the north of Edinburgh ? +Can you tell me the location of a work of art in Edinburgh ? +How many locations are in the south of Heidelberg where you can play miniature golf ? +What is the number of supermarkets in Paris ? +Which museums in Paris have free wlan ? +List all memorials that can be accessed with a wheelchair and are no further than 7km away from the Heidelberg castle . +Are there any mosques west of Heidelberg ? +Where are advertising columns in the east of Paris ? +How many archaeological sites exist in Heidelberg ? +Where is the closest post office from the Polyclinique du Parc in Toulouse ? +List all memorials that can be accessed with a wheelchair and are no further than 7km away from the Palais de l’Élysée in Paris . +Is there a bank in Wieblingen , Heidelberg ? +Where are memorials in the east of Bavaria ? +Where is the closest bike parking area that is covered from Castlehill in Edinburgh ? +How many historic towers can be found in Heidelberg ? +Are there any arts centres in Edinburgh and if so how many and where are they ? +Can you play badminton or tennis in Edinburgh ? +How many spots exist for rowing in Heidelberg ? +Are there any Franprix in Paris ? +How many peaks in Heidelberg have car parks close by ? +What are the electricians of Edinburgh called ? +How many public bookcases are noted ? +Should I take car to reach the next organic supermarket from Place de la République in Paris ? +How many archaeological sites can I find in Edinburgh ? +Can you list the location of all bike parking areas that are covered and have lockers in Paris ? +Where in Heidelberg can I find a picnic site with a fireplace ? +Are there any petrol stations that are open 24/7 in Edinburgh ? +How many bus stops can be found in Edinburgh ? +Can you give me the number of schools in Heidelberg ? +Where are schools in the north of Bielefeld ? +How many peaks are there in the west of Languedoc-Roussillon ? +How many train stations can be found in the west of Paris ? +What kind of historic site is the closest one from the Waverley in Edinburgh ? +How many stars does The Salisbury hotel in Edinburgh have ? +Where are post offices in Heidelberg ? +Can you give me the names of all archaeological sites in Heidelberg ? +Can I walk to the closest arts centre from the Edinburgh Waverley ? +Are there fire brigades in Edinburgh ? +Where are tombs in Paris ? +Please tell me where bathrooms are east of the Bismarckplatz in Heidelberg . +What is the number of supermarkets in Edinburgh ? +Where is the closest catholic church from Gare du Nord in Paris ? +Where are piers in Edinburgh ? +How many cathedrals are there in the south of Paris ? +Where are cemeteries in the east of Heidelberg ? +Where are post offices in Paris ? +What are the maximum speeds listed for the Summerhall Place in Edinburgh ? +Where are petrol stations in the north of Paris ? +Which towns are around Edinburgh ? +Where are bridges in the area of Eure-et-Loir ? +Can you tell me the names of monuments in Marseille ? +What is the number of supermarkets in Heidelberg ? +Where are museums in the west of Paris ? +Where is the closest charging station from the Avenue des Ternes in Paris ? +Can you give me the book stores in Heidelberg ? +Where is the closest fountain from Die Kamera in Heidelberg ? +Can I go climbing in Edinburgh ? +At how many places in the west of Edinburgh can I exchange money ? +Are any of the prisons of Edinburgh attractions for tourists ? +In which street is the Hôtel Victoria Châtelet in Paris ? +How many defibrillators does Heidelberg have ? +What are the exhibition centres called ? +Where can I get petrol in Heidelberg and which brands are there ? +Where are petrol stations in the north of Heidelberg ? +How many schools are in the 14th Arrondissement ? +Where is the closest helipad from Rue Lauriston in Paris ? +Where are Indian restaurants in Paris ? +How many protestant churches are there in Heidelberg ? +Where are cathedrals in Edinburgh and what are they called ? +What is the number of citizens Heidelberg has ? +Can I find more than I book store in Heidelberg ? +What are the names of copy shops in Heidelberg and where can I find them ? +Are there more than 2 spots with drinking water in Heidelberg ? +Where are bike rentals in Heidelberg ? +How many restaurants exist in Edinburgh that serve Asian food ? +Are there any mosques in the south of Paris ? +Are there any quarries in the west of Heidelberg ? +If I counted Edinburgh's McDonald's , what number would I get ? +Please list the location of all playgrounds in Stuttgart . +Are there any nice viewpoints in Heidelberg ? +Can you give me the names and telephone numbers of driving schools in the east of Paris ? +How close is the closest kindergarten from Rue Bernard Dimey in Paris ? +Where is the closest KFC from Edinburgh castle ? +How many schools in Edinburgh have a bus stop less than 200 meters away ? +Are there any quarries in the north of Heidelberg ? +How many hotels in Heidelberg have 3 stars ? +Please tell me the websites of theatres in Edinburgh ? +How many restaurants are in the south of Paris ? +How many Greek or Italian restaurants are there in Edinburgh ? +Can you tell me the names of swimming pools that are at most 30km away from Paris ? +Where are petrol stations in the south of Paris ? +What is the closest church from Yorckstraße in Heidelberg and where is it ? +Can you give me bars in Heidelberg in which smoking is allowed ? +How many castles does Edinburgh have ? +Are there any fire hydrants in Paris ? +Would you please list all archaeological sites in Paris ? +How many quarries are there in the north of Heidelberg ? +Where in Heidelberg can I get ice cream ? +How many kilometres are Edinburgh and Leeds apart ? +Can I walk to the closest arts centre from the Heidelberg Hauptbahnhof ? +Are there any tombs in Paris ? +What archaeological sites exist in the south of Heidelberg ? +Do historic towers exist in Heidelberg ? +What is the homepage of the cinema Vue in Edinburgh ? +Should I take car to the closest bakery from Yorckstraße in Heidelberg ? +Who do the Stolpersteine in Kreuztal honour ? +Is there a close by underground parking area for cars from Librairie Galignani in Paris ? +Are there any vineyards in the west of Edinburgh ? +Where are petrol stations in the east of Heidelberg ? +How many schools are in the east of Heidelberg ? +Which museum is closest to the Hauptbahnhof in Heidelberg ? +What is the number of museums in Edinburgh ? +If I was in Heidelberg , from how many bars could I choose ? +How many 4 star hotels are in Paris and where are they ? +Is there a street called St Vincent Street in Stockbridge ? +Where are bicycle parking areas are there in Edinburgh ? +Which countries have an embassy in Edinburgh ? +Is there more than one university in Heidelberg ? +Where are mosques in the vicinity of Paris ? +Can I walk to the closest arts centre from the Musee du Louvre in Paris ? +How high are the mountains in Edinburgh ? +How many of the town halls in Heidelberg can be accessed with a wheelchair ? +Which bakeries are in Paris ? +Can you please tell me the location of a hotel in Edinburgh ? +How many schools in Paris have a bus stop less than 200 meters away ? +Are there 5 or more picnic locations in Heidelberg ? +Do buses stop at The Square in Edinburgh ? +How many car sharing facilities are there in Paris ? +Can I go climbing in Heidelberg ? +Where are cemeteries in the north of Paris ? +There are libraries in Heidelberg ? +How many Stolpersteine are within walking distance from the Heidelberg castle ? +Where in Edinburgh can I play basketball ? +Where are greenhouses in the north of Dresden ? +Do any archaeological sites exist in Heidelberg ? +How many water wells are there in Heidelberg ? +Can you give me the location of a butcher in Edinburgh ? +If I counted Edinburgh's universities , what number would I get ? +Where are petrol stations in the south of Heidelberg ? +Can you tell me the locations of petrol stations in Edinburgh ? +Where in Paris are second hand only stores and what are their opening times ? +In which cities are distilleries ? +How many swimming pools are in the north of Paris ? +Where in Heidelberg can I buy stationary ? +Is it possible to go swimming in Paris ? +How many restaurants are in the south of Edinburgh ? +What are the opening times of the Galeria Kaufhof that is closest to the Bismarckplatz in Heidelberg ? +Where is the closest church from the Heidelberg castle ? +Is there a swimming pool in the north of Edinburgh ? +Are there any organic supermarkets in the west of Edinburgh ? +Where is a picnic site in Edinburgh ? +Can you tell me the locations of petrol stations in Paris ? +How many 3 star hotels are in the west of Paris ? +What is the closest advertising column from Die Kamera in Heidelberg ? +Are there any mosques east of Paris ? +Where in Edinburgh are organic supermarkets ? +Where are post boxes in the east of Schriesheim ? +What are the names and websites of murals in Lyon ? +In how many places could I go shopping in Heidelberg ? +Do emergency phones exist in Heidelberg ? +Where in Paris can I find attractions ? +How many fire hydrants are there in Adendorf and where are they ? +Where are restaurants in the south of Paris ? +Where are 4 star hotels in the vicinity of Edinburgh ? +How many swimming pools are in the east of Edinburgh ? +How many 3 star hotels are in the east of Heidelberg ? +Would you tell me the number of picnic sites I can choose from in Paris ? +How many memorials are there in the east of Paris ? +What are the capacities of the different bicycle parking areas in Heidelberg ? +How many Stolpersteine can be found south of Heidelberg ? +How far apart are the Palais de l’Élysée and Eiffel Tower in Paris ? +How many spots exist for rowing in Paris ? +Where in Paris can I barbecue in public ? +In which street in Paris is the Italian restaurant Maria Luisa ? +How many fast food restaurants sites are in the west of Edinburgh ? +Can I find car sharing places in Heidelberg ? +Please list the locations of all Stolpersteine that can be accessed with a wheelchair in the east of Heidelberg ! +How many springs exist in Heidelberg ? +Are there any mosques in the east of Edinburgh ? +How many car sharing points are there in Paris ? +Where in the south of Paris can I exchange money ? +Please tell me where bathrooms are east of High Street in Edinburgh . +Are there any locations in which tennis can be played in Heidelberg ? +How many organic supermarkets are closer than 5km from Lothian Road in Edinburgh ? +How many hotels of Paris are operated by Accor ? +How many lanes does the Plöck in Heidelberg have ? +Where are 4 star hotels in the vicinity of Heidelberg ? +What are the capacities of the different bicycle parking areas in Paris ? +Are there any picnic sites with a fireplace in Heidelberg ? +How many and where in Baden-Württemberg are emergency phones ? +Where are advertising columns in the north of Paris ? +Where can I find archaeological sites in Heidelberg ? +Where are mosques in the vicinity of Edinburgh ? +Where are charging stations in Edinburgh ? +Where in the east Lyon are murals and what are they called ? +Where are museums in the east of Paris ? +How many restaurants are there in Edinburgh ? +Where are cemeteries in the west of Heidelberg ? +Where are bakeries in Paris ? +Where are bus stops in the north of San Francisco ? +Does the petrol station in Bergheimer Straße of Heidelberg sell Diesel ? +Are there more than 20 bus stops in Edinburgh ? +What is the surface of the road Summerhall Place in Edinburgh ? +Where is it possible to BMX race in Edinburgh ? +Where are information maps in Paris ? +Where is the closest bike parking area from Brunnengasse in Heidelberg ? +Are there any mosques in the south of Heidelberg ? +Was Kelso ROC Post used by the military ? +Where is the closest glass recycling facility from Quai de Béthune in Paris ? +What is the name of the weather shelter closest to the Rue Fragonard in Paris and where is it ? +Are there any organic supermarkets in the south of Paris ? +Where are places in which taxis wait in Heidelberg ? +Where are hotels in Paris and what are their names ? +Where are camp sites in Paris ? +What is the name for Paris in Spanish ? +How many fish and chips places are in the south of Edinburgh ? +What are the Wikipedia pages of museums in Paris ? +How many bike rental places are in the west of Heidelberg ? +What is the closest advertising column from Vue in Edinburgh ? +Are there any monuments in Edinburgh ? +Is there a restaurant close to Lothian Road in Edinburgh ? +Can I find car sharing places in Paris ? +Can you tell me the location of a REWE in Heidelberg ? +Where are the Stolpersteine in Pinneberg ? +What's the closest restaurant from the Deutscher Bundestag in Berlin ? +Are there any hiking maps in Edinburgh ? +How many catholic churches are there in Heidelberg ? +How many schools are in the west of Edinburgh ? +How many train stations can be found in the south of Edinburgh ? +Please , can you list all locations in which I can buy stationary in Paris ? +Do buses stop at South Gyle Park in Edinburgh ? +Where in Heidelberg are driving schools and what are they called ? +What's the phone number of the Ristorante Pellicano in Paris ? +How many fast food restaurants sites are in the south of Edinburgh ? +How many viewpoints does Heidelberg have ? +Can I practice martial arts in Paris ? +How high is the mountain Königstuhl in Heidelberg ? +Would you give me the location of a tennis court in Heidelberg please ? +Can you give me the locations of all picnic sites in Edinburgh ? +How many of the bridges in Eure-et-Loir are one way only ? +Which towns are west of Edinburgh ? +Are there any helipads in the west of Heidelberg ? diff --git a/smtsemparsecpp/data/nlmaps.test.gold b/smtsemparsecpp/data/nlmaps.test.gold new file mode 100644 index 000000000..a999de60b --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.test.gold @@ -0,0 +1,880 @@ +Städt. Gem. Grundschule - Dornberg, Städt. Gem. Grundschule - Südschule, Städt. Gem. Grundschule - Diesterwegschule, Städt. Gem. Grundschule Hillegossen, Städt. Gem. Grundschule - Brüder-Grimm-Schule, Städt. Gem. Grundschule - Am Waldschlößchen, Städt. Gem. Grundschule - Stiftsschule, Städt. Gem. Grundschule - Ummeln, Städt. Gem. Grundschule - Plaß-Schule, Städt. Gem. Grundschule Ubbedissen, Städt. Gem. Grundschule - Am Homersen, Städt. Gem. Grundschule - Wellbachschule, Städt. Gem. Grundschule - Heeperholz, Städt. Gem. Grundschule Milse, Städt. Gem. Grundschule - Hans-Christian-Andersen-Schule, Städt. Gem. Grundschule - Josefschule, Städt. Gem. Grundschule Altenhagen, Städt. Gem. Grundschule - Stieghorstschule, Städt. Gem. Grundschule Brake, Städt. Gem. Grundschule - Oldentrup, Städt. Gem. Grundschule - Schröttinghausen-Deppendorf, Städt. Gem. Grundschule - Hellingskampschule, Städt. Gem. Grundschule - Volkeningschule, Städt. Gem. Grundschule - Astrid-Lindgren-Schule, Städt. Gem. Grundschule - Eichendorffschule, Städt. Gem. Grundschule - Sudbrackschule, Städt. Gem. Grundschule - Fröbelschule, Städt. Gem. Grundschule - Brocker Schule, Städt. Gem. Grundschule - Frölenbergschule, Städt. Gem. Grundschule - Bückardtschule, Städt. Gem. Grundschule Theesen, Städt. Gem. Grundschule Vilsendorf, Städt. Gem. Grundschule - Martinschule, Städt. Gem. Grundschule - Windflöte, Städt. Gem. Grundschule - Osningschule, Städt. Gem. Grundschule - Quelle, Städt. Kath. Grundschule - Klosterschule +no +no +no +yes +Lower Granton Road +48.8337601 2.2980718, 48.8309772 2.2928903, 48.8339410 2.2950323, 48.8349198 2.2959694, 48.8385615 2.2891992, 48.8381491 2.2812684, 48.8811210 2.3732246, 48.8779567 2.3742972, 48.8781153 2.3727187, 48.8307104 2.3120538, 48.8367030 2.2977655, 48.8405834 2.2993396, 48.8463258 2.3017109, 48.8893373 2.3260663, 48.8822209 2.3332567, 48.8300409 2.3310810, 48.8332151 2.3611684, 48.8322056 2.3591376, 48.8712479 2.3628847, 48.8457070 2.3709161, 48.8778514 2.3653978, 48.8630548 2.3794488, 48.8563588 2.4021369, 48.8705460 2.3596280, 48.8297820 2.3231434, 48.8563936 2.4058269, 48.8560853 2.4051449, 48.8637600 2.3817121, 48.8316269 2.3219796, 48.8635138 2.4091631, 48.8518271 2.4017627, 48.8615895 2.3741154, 48.8602485 2.3756498, 48.8505112 2.3734697, 48.8460708 2.3737179, 48.8496820 2.3740608, 48.8490800 2.3750094, 48.8490486 2.3705522, 48.8551656 2.3600991, 48.8459906 2.3763165, 48.8474237 2.3715091, 48.8468588 2.3691970, 48.8934713 2.3255439, 48.8909446 2.3815154, 48.8472820 2.3181790, 48.8362003 2.3593757, 48.8863875 2.3186958, 48.8493049 2.3780822, 48.8493772 2.3775082, 48.8520216 2.4013947, 48.8521964 2.4026633, 48.8466612 2.3868559, 48.8475216 2.3868219, 48.8524263 2.3831212, 48.8538371 2.3820195, 48.8503861 2.3796236, 48.8495310 2.3784411, 48.8455986 2.3806304, 48.8507593 2.3788216, 48.8481410 2.3804390, 48.8824887 2.3152528, 48.8941438 2.3276936, 48.8332886 2.3557244, 48.8373701 2.2969471, 48.8662590 2.4060030, 48.8646392 2.4080329, 48.8651930 2.4052170, 48.8829824 2.3824508, 48.8541148 2.4028833, 48.8279466 2.3304154, 48.8619444 2.3516288, 48.8611025 2.3441314, 48.8500286 2.2891336, 48.8765487 2.3769364, 48.8752389 2.3825154, 48.8701184 2.3349370, 48.8773883 2.3713487, 48.8522577 2.3568176, 48.8443535 2.3549714, 48.8465773 2.3541793, 48.8618685 2.3509784, 48.8576627 2.3525871, 48.8587248 2.3501786, 48.8462572 2.3519644, 48.8637215 2.3528934, 48.8568317 2.3570851, 48.8572474 2.3590633, 48.8267666 2.3510620, 48.8257746 2.3474534, 48.8526580 2.3643423, 48.8658845 2.3575167, 48.8641612 2.3652384, 48.8885363 2.3534749, 48.8616550 2.3823490, 48.8405164 2.3219841, 48.8804129 2.3352691, 48.8794749 2.3336267, 48.8810172 2.3647737, 48.8814252 2.3658018, 48.8764651 2.3681086, 48.8383449 2.3457194, 48.8344303 2.3140331, 48.8620790 2.4013394, 48.8946928 2.3825532, 48.8943501 2.3144067, 48.8469243 2.3314911, 48.8721203 2.3123396, 48.8726364 2.3241496, 48.8804896 2.3190711, 48.8517936 2.3135511, 48.8466215 2.4086336, 48.8377558 2.3541054, 48.8387036 2.3509191, 48.8827594 2.3615206, 48.8830373 2.3593122, 48.8699837 2.3960859, 48.8790942 2.3629732, 48.8782374 2.3646053, 48.8825669 2.3666870, 48.8197848 2.3652117, 48.8448730 2.4055932, 48.8784075 2.3544102, 48.8410084 2.3943815, 48.8805633 2.3647086, 48.8796707 2.3636682, 48.8763896 2.3610152, 48.8803326 2.3639778, 48.8832959 2.3681138, 48.8859862 2.3714699, 48.8650067 2.2919269, 48.8374206 2.2895464, 48.8252367 2.3572513, 48.8671109 2.2875572, 48.8362585 2.3098681, 48.8503715 2.3790699, 48.8681484 2.2814134, 48.8662633 2.2740207, 48.8412244 2.3146196, 48.8416926 2.3144950, 48.8739761 2.3446348, 48.8525869 2.3545810, 48.8869795 2.3395686, 48.8556968 2.2748636, 48.8374709 2.3730609, 48.8314755 2.3541835, 48.8241809 2.3260188, 48.8232738 2.3262563, 48.8258667 2.3126560, 48.8468751 2.2700239, 48.8277034 2.3290464, 48.8714383 2.3749525, 48.8714917 2.3756604, 48.8425873 2.2683262, 48.8861537 2.3665372, 48.8291397 2.3173468, 48.8862628 2.3608446, 48.8899894 2.3635134, 48.8403968 2.2858802, 48.8451852 2.3793358, 48.8546996 2.3622532, 48.8873315 2.3475211, 48.8757382 2.2870119, 48.8427628 2.3131898, 48.8846035 2.3801294, 48.8287227 2.2733061, 48.8966748 2.3303545, 48.8957156 2.3308196, 48.8416043 2.3385745, 48.8282746 2.3160906, 48.8276845 2.3152274, 48.8471880 2.2956420, 48.8505880 2.3767286, 48.8573622 2.3923455, 48.8528949 2.2984341, 48.8451099 2.2604585, 48.8234260 2.3622734, 48.8237538 2.3645279, 48.8795652 2.3399721, 48.8782649 2.3446579, 48.8416777 2.3865802, 48.8356662 2.4056140, 48.8384665 2.3992857, 48.8390505 2.3976576, 48.8367225 2.4026707, 48.8420538 2.3352669, 48.8479330 2.3109984, 48.8400158 2.3885455, 48.8380676 2.3904670, 48.8372920 2.3914250, 48.8515655 2.3106825, 48.8573206 2.3799070, 48.8568774 2.3778976, 48.8791708 2.3545583, 48.8433099 2.2998521, 48.8422686 2.3028212, 48.8428121 2.3029849, 48.8766295 2.3386068, 48.8232376 2.3241574, 48.8623905 2.3858127, 48.8252485 2.3653047, 48.8235509 2.3617468, 48.8604567 2.3787781, 48.8941854 2.3817753, 48.8567231 2.3036505, 48.8316207 2.3444925, 48.8309991 2.3450497, 48.8448253 2.2941187, 48.8219529 2.3664594, 48.8241488 2.3575845, 48.8231660 2.3578863, 48.8264536 2.3293804, 48.8455609 2.2880163, 48.8703798 2.3425078, 48.8815370 2.2890680, 48.8814465 2.2860544, 48.8840798 2.2887768, 48.8642750 2.3750973, 48.8844394 2.3668122, 48.8279579 2.3273293, 48.8906856 2.3765193, 48.8328648 2.3160056, 48.8209152 2.3429194, 48.8217284 2.3424285, 48.8358292 2.2784139, 48.8465347 2.4059784, 48.8771396 2.3394367, 48.8777030 2.3395918, 48.8627753 2.2762117, 48.8627898 2.2765008, 48.8314375 2.3197845, 48.8378234 2.3078140, 48.8661247 2.3355594, 48.8767239 2.3326961, 48.8767816 2.3351954, 48.8747442 2.3555041, 48.8835914 2.3739721, 48.8649656 2.3746029, 48.8515852 2.2976307, 48.8695595 2.3743475, 48.8540049 2.4108468, 48.8580698 2.3901570, 48.8383400 2.3560643, 48.8466480 2.3513950, 48.8491900 2.3494261, 48.8286796 2.3431375, 48.8727378 2.3797947, 48.8942732 2.3207603, 48.8945377 2.3200415, 48.8934867 2.3227129, 48.8243403 2.3236549, 48.8273521 2.3254454, 48.8236051 2.3228034, 48.8314118 2.3268159, 48.8317243 2.3255633, 48.8730929 2.3615921, 48.8902931 2.3539796, 48.8912086 2.3476028, 48.8286520 2.3729316, 48.8443510 2.3492066, 48.8448929 2.3490511, 48.8947631 2.3433837, 48.8944528 2.3445585, 48.8931760 2.3432750, 48.8936140 2.3424950, 48.8699780 2.3603140, 48.8692770 2.3632250, 48.8689460 2.3599740, 48.8711600 2.3611170, 48.8718330 2.3625680, 48.8726030 2.3634490, 48.8551457 2.3064362, 48.8682200 2.3862795, 48.8569251 2.3724871, 48.8927820 2.3439810, 48.8652385 2.3467947, 48.8923110 2.3520290, 48.8442018 2.3394106, 48.8289915 2.3222506, 48.8593204 2.3472769, 48.8262063 2.3413104, 48.8856760 2.3378250, 48.8847970 2.3378803, 48.8528514 2.4064283, 48.8481389 2.4033143, 48.8285586 2.3331113, 48.8276535 2.3328559, 48.8513926 2.4064136, 48.8547850 2.2692675, 48.8651423 2.2891208, 48.8591269 2.4019235, 48.8600304 2.4040296, 48.8511503 2.3968083, 48.8863055 2.3474829, 48.8955331 2.3629901, 48.8523880 2.3766318, 48.8510502 2.3768840, 48.8507078 2.3790297, 48.8361116 2.3874192, 48.8235068 2.3533933, 48.8403649 2.3951878, 48.8907372 2.3457644, 48.8873229 2.3511583, 48.8376955 2.3463172, 48.8846893 2.3539417, 48.8416560 2.3224928, 48.8238291 2.3416075, 48.8577497 2.2739837, 48.8645340 2.4052672, 48.8780261 2.3268365, 48.8398765 2.2998351, 48.8816987 2.3281627, 48.8808802 2.3287802, 48.8360217 2.3527252, 48.8354391 2.3483666, 48.8498251 2.2722599, 48.8504305 2.2704038, 48.8528838 2.2756127, 48.8452361 2.4025749, 48.8805451 2.2927512, 48.8810529 2.2917751, 48.8872955 2.3492014, 48.8870640 2.3535779, 48.8825453 2.3671700, 48.8245686 2.3765029, 48.8813195 2.2953819, 48.8898589 2.3421554, 48.8906741 2.3434068, 48.8298993 2.3526634, 48.8281786 2.3525387, 48.8883534 2.3187513, 48.8890835 2.3224688, 48.8882779 2.2997302, 48.8939893 2.3329500, 48.8935546 2.3361391, 48.8947140 2.3351360, 48.8972639 2.3451996, 48.8979057 2.3340738, 48.8958814 2.3435581, 48.8912647 2.3345914, 48.8932962 2.3379872, 48.8493216 2.4063155, 48.8980433 2.3287001, 48.8979798 2.3377499, 48.8934867 2.3300359, 48.8928448 2.3280564, 48.8939770 2.3281101, 48.8942097 2.3280510, 48.8966030 2.3288474, 48.8932032 2.3271200, 48.8352792 2.2890637, 48.8220563 2.3588648, 48.8911913 2.3392274, 48.8499872 2.3478618, 48.8463001 2.3432338, 48.8498177 2.3482783, 48.8446190 2.3895985, 48.8497058 2.2914067, 48.8488722 2.2909525, 48.8516467 2.2919993, 48.8502983 2.2919285, 48.8430441 2.2833680, 48.8427407 2.2800381, 48.8569612 2.3997902, 48.8580950 2.4069089, 48.8574194 2.4075785, 48.8794256 2.3893510, 48.8824759 2.3233165, 48.8441370 2.3723808, 48.8533370 2.3079466, 48.8365811 2.3930159, 48.8457446 2.3932577, 48.8462449 2.3946154, 48.8682520 2.3960084, 48.8608742 2.3547652, 48.8644732 2.3715756, 48.8354190 2.3928675, 48.8389285 2.3961514, 48.8220200 2.3551611, 48.8713113 2.3039889, 48.8525737 2.3850093, 48.8777366 2.2878742, 48.8782149 2.3984639, 48.8761595 2.4036138, 48.8770014 2.4071325, 48.8814737 2.3729748, 48.8807820 2.3745741, 48.8843130 2.3091760, 48.8277275 2.3062018, 48.8287563 2.3015875, 48.8930590 2.3424350, 48.8750926 2.2837673, 48.8419136 2.3247626, 48.8385785 2.3227706, 48.8431110 2.2650609, 48.8594724 2.3491134, 48.8732334 2.3431543, 48.8774393 2.3494265, 48.8774984 2.3489986, 48.8849881 2.3071728, 48.8392226 2.3945147, 48.8446508 2.3731492, 48.8358462 2.2901616, 48.8852419 2.3788486, 48.8302344 2.3704299, 48.8814548 2.3450080, 48.8706548 2.3429479, 48.8657789 2.3469220, 48.8205834 2.3501740, 48.8234560 2.3498227, 48.8533833 2.3705439, 48.8239258 2.3642439, 48.8225364 2.3462505, 48.8227836 2.3470686, 48.8257161 2.3507275, 48.8257020 2.3460018, 48.8771653 2.3515517, 48.8763392 2.3556446, 48.8682998 2.4016012, 48.8697801 2.4028967, 48.8710424 2.4039943, 48.8720618 2.4046821, 48.8727710 2.3991263, 48.8650559 2.3971773, 48.8655264 2.3981686, 48.8344269 2.3672465, 48.8284908 2.3703198, 48.8258079 2.3604332, 48.8594207 2.3678969, 48.8248710 2.3196867, 48.8247915 2.3176000, 48.8301707 2.3337415, 48.8327495 2.3363992, 48.8333703 2.3323929, 48.8351459 2.3005345, 48.8353374 2.3022404, 48.8359317 2.3005525, 48.8440288 2.4105786, 48.8908851 2.3611676, 48.8263543 2.3123490, 48.8263472 2.3104526, 48.8274473 2.3073922, 48.8273336 2.3052629, 48.8372837 2.2784287, 48.8421188 2.2774869, 48.8260357 2.3595197, 48.8267984 2.3745150, 48.8276944 2.3706840, 48.8352679 2.2821201, 48.8558849 2.3751381, 48.8545384 2.3713228, 48.8287227 2.2995517, 48.8317316 2.3684804, 48.8395554 2.2619755, 48.8900586 2.3606383, 48.8715652 2.3861467, 48.8243982 2.3283690, 48.8437094 2.2827794, 48.8424843 2.2821195, 48.8418506 2.2815590, 48.8941162 2.3618889, 48.8933356 2.3615276, 48.8901273 2.3615642, 48.8397383 2.2615466, 48.8388211 2.2609376, 48.8900701 2.3596849, 48.8908274 2.3601975, 48.8903737 2.3602877, 48.8762839 2.3874942, 48.8258804 2.3538466, 48.8910933 2.3308427, 48.8840472 2.3777246, 48.8532483 2.3881569, 48.8310847 2.3808041, 48.8325943 2.3626569, 48.8276596 2.3564922, 48.8501827 2.3300326, 48.8729108 2.3892528, 48.8926192 2.3787994, 48.8594463 2.3795210, 48.8917249 2.3596358, 48.8933896 2.3598075, 48.8353878 2.3976074, 48.8393328 2.3898245, 48.8653879 2.3568423, 48.8858319 2.3683200, 48.8866975 2.3690587, 48.8918801 2.3632407, 48.8682722 2.3654615, 48.8557307 2.3714370, 48.8559510 2.3687418, 48.8632613 2.3690657, 48.8610703 2.3668902, 48.8615047 2.3648719, 48.8625898 2.3635210, 48.8624376 2.3641865, 48.8798043 2.3995910, 48.8294190 2.3760526, 48.8893342 2.3187256, 48.8435392 2.3876321, 48.8664075 2.3511385, 48.8752547 2.3898031, 48.8739410 2.3881658, 48.8740999 2.3854670, 48.8729667 2.3708014, 48.8536536 2.3652281, 48.8839440 2.2924260, 48.8841607 2.2936643, 48.8698850 2.3947954, 48.8869564 2.3228854, 48.8320028 2.3143006, 48.8764887 2.3444554, 48.8668204 2.3972017, 48.8708653 2.3088351, 48.8703111 2.3109794, 48.8438225 2.3306529, 48.8270270 2.3545480, 48.8441654 2.3422903, 48.8525204 2.3447674, 48.8436299 2.3520995, 48.8683492 2.3653361, 48.8444368 2.3317238, 48.8878098 2.3799348, 48.8455417 2.2847565, 48.8471374 2.2853376, 48.8640679 2.3650860, 48.8556183 2.3576323, 48.8725081 2.3789468, 48.8297066 2.3719377, 48.8658987 2.3445250, 48.8518380 2.3369161, 48.8368347 2.3064637, 48.8864904 2.3929252, 48.8409479 2.3520733, 48.8548553 2.3856848, 48.8551588 2.3869294, 48.8902682 2.3369864, 48.8648476 2.3661885, 48.8954171 2.3603570, 48.8462303 2.3082719, 48.8881816 2.3761106, 48.8224627 2.3258585, 48.8531572 2.3447239, 48.8495298 2.3495342, 48.8678864 2.3249680, 48.8406223 2.3162685, 48.8415260 2.3177790, 48.8516476 2.3430530, 48.8522113 2.3433310, 48.8799994 2.2917628, 48.8760421 2.3247263, 48.8259140 2.3418063, 48.8475433 2.3020749, 48.8848153 2.3335836, 48.8768943 2.3487181, 48.8340803 2.3449578, 48.8294924 2.3480229, 48.8483268 2.3315361, 48.8384271 2.3603013, 48.8718826 2.3260739, 48.8306192 2.3113448, 48.8708189 2.3031863, 48.8224695 2.3280079, 48.8867785 2.2961065, 48.8380124 2.3925384, 48.8393761 2.3972146, 48.8729941 2.3452007, 48.8363310 2.3511207, 48.8308373 2.3481222, 48.8328106 2.3467883, 48.8189800 2.3619660, 48.8852910 2.2958210, 48.8653095 2.3468349, 48.8780467 2.2960586, 48.8785810 2.2953365, 48.8785586 2.2954162, 48.8860217 2.2909345, 48.8342538 2.4039026, 48.8328046 2.3998654, 48.8897434 2.3684941, 48.8565550 2.3066461, 48.8662189 2.3411008, 48.8338577 2.3542234, 48.8588484 2.3622538, 48.8557977 2.3334124, 48.8537947 2.3371165, 48.8401916 2.3498220, 48.8405286 2.3497872, 48.8385999 2.2890636, 48.8410381 2.3194768, 48.8665493 2.2967911, 48.8732070 2.3032419, 48.8880020 2.3070560, 48.8894260 2.3021180, 48.8501962 2.3822724, 48.8469077 2.3843835, 48.8972873 2.3596764, 48.8588932 2.3539048, 48.8755295 2.3273771, 48.8757429 2.3272510, 48.8487020 2.3404334, 48.8341468 2.3292697, 48.8334796 2.3314573, 48.8772230 2.2922270, 48.8645795 2.2824038, 48.8338948 2.3299593, 48.8810540 2.2852110, 48.8839130 2.2907430, 48.8278199 2.3453108, 48.8746985 2.3800023, 48.8294976 2.3479900, 48.8746524 2.3059699, 48.8743208 2.3074302, 48.8798388 2.3745491, 48.8345685 2.3277223, 48.8824071 2.3708251, 48.8587325 2.3232162, 48.8736497 2.3266758, 48.8265944 2.3272409, 48.8538362 2.3322137, 48.8333843 2.3867041, 48.8808106 2.3727327, 48.8406281 2.3046706, 48.8533190 2.3669820, 48.8849774 2.3801611, 48.8854894 2.3815292, 48.8856226 2.3818987, 48.8830874 2.3878108, 48.8438379 2.3524738, 48.8438379 2.3524738, 48.8222496 2.3507278, 48.8851070 2.3036780, 48.8500752 2.3009300, 48.8496090 2.3539260, 48.8827302 2.3707486, 48.8609924 2.2838960, 48.8588106 2.2845183, 48.8306465 2.3335032, 48.8725875 2.3782042, 48.8755301 2.3910815, 48.8656747 2.3928548, 48.8827937 2.3812803, 48.8829828 2.3811149, 48.8755713 2.3983661, 48.8755863 2.3989012, 48.8767180 2.4047230, 48.8771405 2.4060238, 48.8591517 2.3557695, 48.8607522 2.3545715, 48.8608207 2.3543547, 48.8609593 2.3539532, 48.8610034 2.3538240, 48.8473351 2.3951813, 48.8472416 2.3961945, 48.8475546 2.3930901, 48.8476864 2.3973242, 48.8518800 2.3897180, 48.8505687 2.3925919, 48.8500483 2.3946347, 48.8575099 2.3809573, 48.8394381 2.3922677, 48.8395862 2.3939515, 48.8513422 2.3477785, 48.8745781 2.3873676, 48.8746258 2.3882005, 48.8753047 2.3926062, 48.8352480 2.2852870, 48.8583161 2.3282685, 48.8489230 2.3496710, 48.8367930 2.2958108, 48.8560138 2.2801813, 48.8568409 2.2789161, 48.8440022 2.2934092, 48.8642512 2.3689433, 48.8515116 2.3988887, 48.8907874 2.3784109, 48.8853720 2.2926050, 48.8583103 2.3822134, 48.8661157 2.3977226, 48.8671967 2.4092129, 48.8684503 2.4092879, 48.8621715 2.3774882, 48.8746232 2.3266224, 48.8467059 2.3087748, 48.8363398 2.2999746, 48.8653853 2.3686990, 48.8653218 2.3678518, 48.8413271 2.3076655, 48.8353741 2.3033228, 48.8477911 2.3189782, 48.8469433 2.3172689, 48.8685232 2.3413917, 48.8661744 2.3390884, 48.8833230 2.2987210, 48.8825490 2.2939790, 48.8615259 2.3704088, 48.8429707 2.3067870, 48.8642079 2.3555687, 48.8840313 2.3391067, 48.8616536 2.3637831, 48.8329453 2.2890084, 48.8670104 2.3443314, 48.8545691 2.3624284, 48.8410290 2.3406982, 48.8605092 2.3788107, 48.8547397 2.3848709, 48.8643859 2.3991316, 48.8298427 2.3644959, 48.8759393 2.2895530, 48.8619514 2.3325055, 48.8364245 2.3944189, 48.8770775 2.3600536, 48.8773723 2.3588805 +3 +48.8761391 2.3683073, 48.8722806 2.3695753, 48.8633521 2.3710595, 48.8633741 2.3663922, 48.8615468 2.3727192, 48.8717450 2.3763419, 48.8680319 2.3652462, 48.8658631 2.3695102, 48.8610722 2.3670951, 48.8655959 2.3652444, 48.8648944 2.3762643, 48.8684955 2.3674002, 48.8700553 2.3666721, 48.8738041 2.3703747, 48.8735031 2.3753876, 48.8722991 2.3766565 +49.3999791 8.6903579 +55.9082967 -3.3202293, 55.9101031 -3.3218843, 55.9102819 -3.3218516 +86 +49.4047830 8.6748233, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349 +48.8898010 2.2631730, 48.8488472 2.3218448, 48.9042834 2.3245110, 48.8343080 2.3572209, 48.8409458 2.3211307, 48.8912148 2.3413495, 48.8587314 2.3571857, 48.8857312 2.3605852, 48.8468885 2.3042494, 48.8451205 2.3179540, 48.8781729 2.3383243, 48.8958412 2.3317602, 48.8848959 2.2547563, 48.8277230 2.3275992, 48.8947570 2.3212156, 48.8869659 2.2870351, 48.8955708 2.3634069, 48.8850482 2.2942727, 48.8457586 2.3270884, 48.8529574 2.3648321, 48.8826020 2.2808120, 48.8686052 2.3443989, 48.8903038 2.3068904, 48.8852280 2.2812310, 48.8515711 2.3623262, 48.8512010 2.2689466, 48.8811804 2.2887869, 48.8424086 2.3513701, 48.8486340 2.2710840, 48.8825180 2.2782270, 48.8506640 2.3288086, 48.8718009 2.3486390, 48.8458790 2.3508800, 48.8527313 2.3035652, 48.8840568 2.3401680, 48.8461550 2.3472670, 48.8868850 2.2774260, 48.8868870 2.2774290, 48.8396279 2.2982746, 48.8509240 2.2966111, 48.8509826 2.3348581, 48.8287686 2.3270872, 48.8520914 2.3457231, 48.8520498 2.3471195, 48.8867960 2.3430272, 48.8432427 2.2926242, 48.8867143 2.3420696, 48.8366699 2.3085489, 48.8505880 2.3262612, 48.8399309 2.3505124, 48.8764338 2.3389235, 48.8616725 2.3400056, 48.8931401 2.3450441, 48.8653656 2.3326546, 48.8491582 2.3503166, 48.8814741 2.2832174, 48.8965261 2.3424350, 48.8773026 2.3313881, 48.8733469 2.3471633, 48.8447303 2.3253916, 48.8442129 2.2981973, 48.8446667 2.2793091, 48.8634023 2.3451770, 48.8595023 2.3413445, 48.8628813 2.3500673, 48.8486032 2.2912517, 48.8674454 2.3255009, 48.8700303 2.3244833, 48.8667853 2.3409551, 48.8695324 2.3500407, 48.8512807 2.3575810, 48.8465485 2.3480584, 48.8483547 2.3477114, 48.8494880 2.3471975, 48.8555103 2.3547440, 48.8590777 2.3508458, 48.8580098 2.3551110, 48.8589606 2.3577912, 48.8546118 2.3614419, 48.8542205 2.3613106, 48.8533048 2.3662366, 48.8654907 2.3542912, 48.8660191 2.3548825, 48.8661006 2.3605374, 48.8428826 2.3467101, 48.8608482 2.3604976, 48.8599672 2.3652140, 48.8405270 2.3419263, 48.8410301 2.3394202, 48.8436908 2.3411284, 48.8944110 2.2900374, 48.8842517 2.2713707, 48.8539667 2.3343780, 48.8547259 2.3309615, 48.8789795 2.3519205, 48.8747740 2.3583086, 48.8740835 2.3661993, 48.8700417 2.3629456, 48.8813655 2.3677357, 48.8772979 2.3532928, 48.8840257 2.3785053, 48.8810534 2.3798892, 48.8794623 2.3748343, 48.8485200 2.3302805, 48.8564112 2.3276604, 48.8612993 2.3760466, 48.8698301 2.3789769, 48.8700142 2.3783921, 48.8557998 2.3744188, 48.8558974 2.3697016, 48.8474963 2.3314096, 48.8893083 2.3797923, 48.8869224 2.3699944, 48.8434562 2.3271121, 48.8943860 2.2783554, 48.8927928 2.2841487, 48.8982598 2.2938030, 48.8583168 2.3192030, 48.8555836 2.3125833, 48.8589684 2.3183256, 48.8700842 2.3190066, 48.8732220 2.3198534, 48.8564528 2.3218645, 48.8762173 2.3188580, 48.8736950 2.3227605, 48.8815247 2.3258345, 48.8733405 2.3105570, 48.8735777 2.3103416, 48.8506595 2.3134348, 48.8760259 2.3039392, 48.8621157 2.3068946, 48.8596683 2.3051766, 48.8745162 2.3280282, 48.8794555 2.3310828, 48.8668072 2.3074982, 48.8654950 2.3060890, 48.8657975 2.3070013, 48.8675010 2.3006380, 48.8574433 2.3080496, 48.8726445 2.3819387, 48.8741680 2.3019883, 48.8734257 2.2991491, 48.8776180 2.3019924, 48.8754756 2.2984999, 48.9107538 2.2934354, 48.9065394 2.2786301, 48.9057281 2.3433234, 48.9067213 2.3326840, 48.9011517 2.3139807, 48.8935749 2.3205585, 48.8829281 2.3226645, 48.8890756 2.3246346, 48.8867932 2.3178582, 48.8948503 2.3340177, 48.8445961 2.3062818, 48.8842431 2.3378793, 48.8860532 2.3549746, 48.8950630 2.3500907, 48.8937115 2.3499835, 48.8313842 2.3453082, 48.8363739 2.3491795, 48.8300981 2.3497071, 48.8281048 2.3420248, 48.8373800 2.3594717, 48.8374878 2.3592366, 48.8389393 2.3641414, 48.8665953 2.2984346, 48.8676964 2.2984870, 48.8705973 2.2961633, 48.8320894 2.3350179, 48.8359370 2.3170768, 48.8343750 2.3166882, 48.8292677 2.3078658, 48.8274592 2.3274621, 48.8297428 2.2943273, 48.8338197 2.3000761, 48.8435148 2.3087965, 48.8426176 2.3045363, 48.8412280 2.3124626, 48.8691233 2.2846795, 48.8913761 2.2690108, 48.8871270 2.2780605, 48.8847742 2.2624168, 48.8767826 2.2512964, 48.8851384 2.2746989, 48.9043119 2.2705984, 48.8619110 2.2804834, 48.8624138 2.2754020, 48.9050688 2.2762869, 48.8556150 2.2665151, 48.8564447 2.2802338, 48.8913410 2.3603495, 48.8530450 2.2737818, 48.8516666 2.2709872, 48.8844851 2.3048254, 48.8855199 2.3157231, 48.8768832 2.2870709, 48.8871425 2.2927875, 48.8827050 2.3127686, 48.8786276 2.2908454, 48.8857930 2.3103556, 48.8848939 2.3050098, 48.8471651 2.2695111, 48.8478819 2.2687811, 48.8455075 2.2600500, 48.8385454 2.3357931, 48.8487775 2.3737984, 48.8484110 2.3432090, 48.8439710 2.3453279, 48.8518519 2.3229864, 48.8563283 2.2806650, 48.8499446 2.3217861, 48.8361319 2.2839215, 48.8684100 2.2864027, 48.8262227 2.3303813, 48.8837717 2.3316956, 48.8915499 2.3605260, 48.8550018 2.3125388, 48.8620284 2.2797894, 48.8689638 2.3733836, 48.9038936 2.3036986, 48.8297549 2.3118834, 48.8875038 2.3421102, 48.8410409 2.2994617, 48.8807628 2.3031693, 48.8351793 2.3380648, 48.8396505 2.2961266, 48.8834296 2.3531464, 48.8490871 2.3236292, 48.8908265 2.3499846, 48.8646767 2.2807027, 48.8827134 2.3392700, 48.8389100 2.2986886, 48.9118195 2.2920331, 48.8529376 2.3498716, 48.8462836 2.3235558, 48.9039189 2.3033583, 48.8508082 2.3229326, 48.8867662 2.2664861, 48.8464730 2.3488067, 48.8937959 2.3754227, 48.8337081 2.3004333, 48.8553966 2.3450136 +13 and Deanhaugh Street, 91 and Holyrood Road, 50 and Saint John's Road, 72 and Saint John's Road, 71 and George Street, 206 and Bruntsfield Place, 300 and Lawnmarket, 28 and Roseburn Terrace, 46 and Hanover Street, 144 and Marchmont Road, 29-31 and North Bridge, Whitehouse Road, 6 and Picardy Place, 2 and Biggar Road, 70 and St John's Road , 118 and Princes Street, 142-143-144 and Princes Street, 2-4 and Shandwick Place, 136 and Princes Street, 8 and George Street, 6 and George Street, 25-26 and West Maitland Street, 174-176 and Gorgie Road, 12 and North West Circus Place, 75 and George Street, 109 and George Street, 31-33 and Hanover Street, 3 and South Charlotte Street, 9 and Castle Street, 19 and Castle Street, 13 and New Kirkgate, 2 and Stafford Street, 19 and Freserick Street, 55 and George Street, 28-30 and Nicolson Street, 24 and Hanover Street, 61 and Forrest Road, 131 and Princes Street, 76 and Hanover Street, 24 and Saint Andrew Square, 28 and Saint Andrew Square, 120 and George Street, 72-74 and George Street, 20 and Hanover Street, 18 and South St Andrew Street, Morningside Road, 8 and Morningside Road, 163 and St John's Road, 28-30 and Hanover Street +Edinburgh Bicycle Co-operative, Sainsbury's Local, Tesco, Sign Design, Food & News, The Bike Station, Sainsbury's Local, C&G Cycles, Scotmid Co-operative, Margiotta, McColl's, Scotmid, Sainsbury's, Tesco, Marchmont Food & Wine, Loanhead Mini-Market, Freewheelin', Tills Books, Bilston Post Office, Tesco Metro, Margiotta, Londis, Fountain News, Falko Konditormeister, Sainsbury's Local, Scotmid, Vogue Video, W Armstrong & Son, Great Grog, Underground Solu'shn, Cafe Luca, Gourmet Pasta, Oxfam Book Shop, Oxfam, St. Columba's Hospice Book Shop (secondhand), Bodrum Fine Foods, Traditional Fire Surrounds, Prestige, Johnstons Cashmere, Thistle Do Nicely, Tesco Express, Present, Royal Mile Sweets, Reinkarnation, Tollcross Newsagent, H&T Pawnbrokers, Leatherwork, Peter Trainer - Corporate Services Ltd, The 3 Stooges, Direct Dry Cleaning, Zone Eros, Smooch, Cabaret, West Port News, Lily West, Edinburgh Books, Herman Brown, Boardwise, McAlister Matheson Music Ltd, GT II Newsagent, Tesco Metro, Costcutter, Sainsbury's Local, Eddie's Seafood Market, Flight Centre, Greggs, Sta Travel, Malone's Bakeries, SimplyFixIt, Coda Music, I Love Scotland, Best in Scotland, Peter Green, Gregg's, Scotmid, Word Power, Maqbools, Jordan Valley, Keystore Express, Timber Center, Natisse, Wangping Travel, Scotmid, Broadway Convenience Store, Poundsavers, Newstime & Party Planet, Scayles Music, Tesco Express, Freewheelin, Tesco Express, Sainsbury's, KB Shop, Pedals, Unknown Pleasures, Central Superstore, M.S. Newsagent, I J Mellis, Welch, Laid Back Bikes, La Croissanterie, Revitalize, Mathieson, Rose MacDonald, Spirit, Salon Dorcas, Mathiesons Bakers, Sideburns Barber Shop, Colinton Mains Convenience Store, Soul Cycles, Ideal Computing, Scotbet, C'est Si Bon, CHI, Craig Davidson Hair, Greggs, M.W. Christie, News Plus, Oddbins, A la carte, Albany Lettings, Bruntsfield Hoover Service, Cheynes, Tippie, Coco, Costcutter, Fabulous Jewels, Honeysuckle, Myles McCormick, Belquin Hearing, Rosie Brown, White Blossom Paper Boutique, All About Eve, Art Clay Scotland Jewellery Studio, Beauty Boutique, Fitnessbox, Framers, Halibut and Herring, Hollipop, R. C. Cunning, Stitches, Swinton, The Bay Tree Company, White Blossom Paper Boutique, esq barbers, 106, Accommodate Edinburgh, Davison Kilt Hire & Sales, Hill's, The Salvation Army, The Dress Fabric Company, Harlequin Antiques, Drinkmonger, Footworks, Inspire, JFK, Kilmour Thomson, MIss Dixiebelle, Melek's, Riva, Nordic Outdoor, Thrift Shop, Young Antiques, Zen Lifestyle, Jason Hall Hairdressing, Just Giles Too, The Zone, Earthy, Munro Glazing, National Tyres & Autocare, City Vintage, Everyone's Designs, Acanthus, Maddie & Mark's Shoes, The Edinburgh Bookshop, Trinity Factors, Vivaldi, George Hughes, ACE Property Management, Fifi Wilson, Gulliver's Toys and Gifts, Mosko, MvDonald Green, Links Barbers, Andiamo, Anderson Bain, Bruntsfield News, Indigo Hairdressing, Dig-in, ooh! ruby shoes, Sirs, Evans Cycles, Tesco Express, Hutchison Newsagent, Sandy's Barber Shop, University Gift Shop, Potter Shop, Charity Shop, High Spirit Co, Farmfoods, Planet X, Gordon Wilson, Crew, Choices, Klondyke Garden Centre, Brakesafe, Vino Wines, Vino Wines, Morrison's Bakery, Appellation Wines, Gregg's Bakery, Margiotta, EH11, Ink Shop Printing, Wallaces, Salvation Army, Scotts, Sainsbury's Local, Blackwells, Costcutter, The Bicycle Works, International Newsagents, Argos, Patisserie Valerie, J & S Newsagents, Premier, Lifestyle Express, Hamilton & Young Jewellery Desigers, Historic Connections Jewellery Designers, Murray's Tool Store, Maplin, Keir Street News, Fudge House, The Carson Clark Gallery, Bentley, Ferrari, Lamborghini, Bank, Vodafone, Mountain Warehouse, Thomas Cook, Card Factory, Three, Claire's, Phones 4U, O2, New Look, WH Smith, Republic, Superdrug, Monsoon, H Samuel, Game, Accesorize, Lochrin Autos, Afterz, Provenance Wines, View Forth Grocers, View Forth Glazing, Black & Lizars, Sainsbury's Local, Tattoo Studio, James Morrow, Bike Trax, Run 4 It, Specsavers, Age Scotland, Barnardo's, British Heart Foundation, Cancer Research UK, Capability Scotland, Chest, Heart and Stroke Scotland, Green Tara Charity Shop, Marie Curie Cancer Care, PDSA, Salvation Army, Visualise, Cork & Cask, A Touch of Silk, Andrew May, Aroosa Boutique, Chameleon, Costcutter, Crystal, Dough Re Mi, Simply Laundry, Glamour, Hospice of Hope, Romania, Dough Re Mi, Khyber, Pins & Needles, Swanson Decorators, The Pine Tree Bakery, Thrift Shop 2, Wallace Artworks Photography, Video Mahal, myBearpaw, 2U Beauty, Kami, Polwarth Garage, Shrub: Swap&ReuseHub, Tesco Express, EUSA JMCC Shop, The Chocolate Moose, Hawick, reddog music, Dunedin, Babu, Optical Express, Sheila's, Newcastle Furniture Company, Ishi, Marchmont Hardware, Michael Field, Salut, Fruit Corner, Nina's Mini market, Lyndsay Brown, Macintosh, Duke's, D Fraser McLeod, Jones, March Hair, W Armstrong & Son, Bohemia, Scotmid, Hewats, Futon Company, Napiers, TOAM, The Edge, Poundstretcher, Russell Paints, Fruitalicious, Richer Sounds, Specsavers, Schuh, Premier, Glamour Pooch, Barnardo's, Eden Aquatics And Reptiles, Clan House, Siller & Donaldson, Benny's, Greggs, Lidl, Poundland, Mc Coll's, Cashino, Hot Head, Tribe Tattoo, Digger, Crown Couture, Duncan McLaren, Timpson, EE, Body Shop, Outfit, Bubbles, Studio One, soren, Morningside Travel, Thomas Cook, Bakery Andante, Scotcleen, Newslink, Time & Tide, Bathstore, Bruntsfield Sports, Sofa So Good, Good Food, Home Hardware, Toys Galore, Johnsons, Sony Centre, Feather & Black, Rifkind & Brophy, Ann Brownlie, Costcutter, Laundrette, Merchiston Dry Cleaners, Peckhams, Internaçionale, Game, Peacocks, O2, Dorothy Perkins, Poundworld, 3 Store, Hallmark, Shoe Zone, Holland & Barrett, Semi-chem, Specsavers, Claire's, Thomson, Optical Express, Boots, Thomson, Barrhead Travel, Thomas Cook, Carphone Warehouse, EE, Thorntons, The Gift Shop, H Samuel, Bodycare, BHS, New Look, Blue Inc, WH Smith, Clarks, Waterstone's, Card Factory, Boscolo, AP Savile Stores, Ottavio, Deli Italia, Sainsbury's Local, The Harvest Garden, Comiston Store, Henderson Wines, Addiction, Elan Hairdressing, Kirkbrae Upholstery, Cochrane's Motor Company, Day-Today, Kurlz, Lasswade Newsplus, Margiotta Food & Wine, Amir & Sons, Bookworm, Cyrus Barbers, Flamingo Bathrooms, Muir & Sons DIY Store, Salon Fairnington, Shanas, The Scruffy Dog Co., Vulcan Gas Services, William Hill, The Nomads Tent, Dingwall Fabrics, Cameratiks, Capricorn, Jaxx, The Avenue Store, Be Inspired Fibres, EZ Sports, Marchmont Gallery, Jan de Vries, Carpet Rite, Sainsbury's Local, SK Gallery, Afrin Barber, Armchair Books, Peter Bell Books, Owl & Lion, Scottish Pictures, Day Today, News Trader, Omni Furnishing, Saltire Antiques, Andrew Stout Kitchens, Scotbet, Tiki Monki Tattoo, Edinburgh Golf Centre, High Spirit Co, Mr Man, fone customize, Belle Cheveaux, The Paint Shed, Nikki's Cakes, Craiglea Clocks, Edinburgh News, Harmonious & Healthy Chinese Clinic, LA hair solutions, Wright of Comiston, 2's Company, The Cycle Service, Greggs, Aytouns, Salon Sixty Nine, Barber Inc, Smith Bakery & Deli, Denis Equi, Goodfellow & Steven, Gwenne, Liberton Flowers, Liberton Food, News & Wine, Paper Rack, Scotmid Co-operative Funeral Directors, Mr Man, Simoly Clintons, Blinds, Cancer Research UK, Capital Cartridge, Capital Newsagents, Choco-latte, Cleaning Centre, Drum Cental, Dry Cleaners, Edinburgh Bakehouse, Edinburgh Bargain Stores, Edinburgh Fabrics, Eva's, First Class, Food for Thought, Greggs, H&T Pawnbrokers, Hifi & Video Repair Services, KHD, Cascade Guggling, Love Hate Tattoo, Lu's Tailor, Newington Stationers, Old and Newington, Pace Print, Ruby Rouge, Sainsbury's Local, Sumal's Newsagent, Tanz, The Edinburgh Framing Company, The Finishing Touch, The Tan Stand, Twice as Nice, Walton's, William Hill, William Hill, Wood Winters wines and whiskies, Your Store, baberfella, brew store, AA Bargain Store, Backtracks, Real Foods, Marchmont Garage No 1, Edinburgh Clothing Company, Flight Centre, Global News, House of Cashmere, Ladbrokes, Ladbrokes, Mode, Netversal, Pound Stretcher, Ripping Records, Rymans, Shoe Zone, Tailor Stop, The Scotland Shop, Yekta, A&E Locksmiths, Apothecary, Bailey's Barber Shop, Barbers 3-2-1, Barnardo's, Best-one, Bona Deli, Bonningtons, Browns, Cobblers Key, Ladbrokes, Leslie Deans & Co, Letslet, Medusa, Metro Barbers, Mobile Phone & Computer Repair Centre, Natural Foods etc, Polo Deli, Record Shack, Stitch Master, The Wee Boulangerie, Trumps, User 2, Warners, William Hill, Cash Generator, Forbidden Planet, Jacob, Mace, Allan K Jackson Antiques, Bodkin & Farrish, Bygone, Day-to-Day Express, Lorraine Graham Flowers, Majestic Wine Warehouse, The Bethany Shop, Hair Joy, Pan Pan Bridal, Development Direct, A Cunningham, Afrin Barbers, Amir & Son, Green House, Greggs, Niddrie Bargain Store, Polish Delicatessan, Shhh Hair & Beauty, Switch On Repairs, William Hill, iSee, Barber, Dalry hair stylists, M&D Caledonian, Allan Smith, Gregg's, Joe's Convenience Store, One to One, PC Clinic, R Brown & Son, Scotbet, Scotmid Co-op, Traditional Turkish Barbers, Urban Beauty, Jack's Grooming, Liberton Convenience Store, John Montgomery, Lady Muck, Meadow Deli & Bakery, rose & ammi flowers, Red Hot and Blue Tattoo, Big Ideas, Drift, The Mutts Nuts, Bacchus Antiques, Black Box, Golden Hare Books, The Christmas Shop, The Isle of Skye Candle Company, Bill Baber Knitwear, Costume Ha Ha, Sublime Hair Design, Analogue books, Avizandum, Deadhead Comics, Macdonadl Framing, Still Life, Transreal, Venus Flytrap Tattoo, Patrick Buckley Antiques, Antiques & Stuff, McKensie Knight Hairdressing, Lifestyle Express, Elle Hair & Beaty, Gilmerton Grocers, S D Wright, William Hill, Mama Said, Miss Katie Cupcake, Old Town Cotext, Swishprint, Whisky World, Cavanagh Antiques, Enchantment, Forever Scotland, Hair By Alfie, The Frayed Hem, Whiplash Trash, Cutie House, Eden, Kookie, Route One, The Scotsman, The Woollen Mill, Victor Scott Kilt Maker, Crest of Edinburgh, Ness, Mrs Stewarts Gift Shop, Games Workshop, McPherson, Iconic, News Experss, Purple Glamour, G-TEC, Hawick, Mr Wood's Fossils, W. Armstrong & Son, Cutz Barbers, Mail Boxes Etc., Marie Curie Cancer Care, Sally, The Phone Box, Buckstone News, Headturners, Ruth Ross, Ballantrae Cashmere, Best Of Scottish, Edinburgh Cashmere Boutique, Fudge Kitchen, Heritage of Scotland, House of Cashmere, Johnstons of Elgin, Palenque, Real Scot Shop, Really Scottish, Royal Mile Jewellery, The Nutcracker Christmas Shop, Ali Willmore Hairdressing, Antiques, Carson Clark Gallery, Kilberry Bagpipes, Tete a Tete Foto, Cycle Scotland, Old Town Tattoo, Chic, Cyan, Harmony Complementary Therapies, Scottish Regimental Store, Studio XIII Gallery, Tangram, Barnets, Celtic Craft Centre, Cashmere And Kilt Centre, Geoffrey (Tailor) Kiltmaker, John Morrison Kiltmakers, Ladbrokes, The Bonnie Blue, The Tappit Hen, Wee Gift Shop, Whisky & Wine, Hector Russell, Whisky & Wine, New Image, Whiski Rooms, Corniche, Aquila, Lickety Splits, Saks, The Scottish Grocer, Cranachan & Crowdie, Eyden, Demijohn, Howies, I.J. Mellis Cheesemonger, Swish, The Whisky Shop, Clarksons, Museum CONTEXT, Walker Slater, Bobs, Games Hub, The Vapour Lounge, John Saunderson, Lupe Pinto, Mr Bun's Bakery, Pekoe Tea, Tollcross Superstore, Nicolson, Prestige Scotland, Celtic, Chinese Doctor, Ye Olde Christmas Shoppe, Hair of the Dog, Keystore, Laidlaw's, Red Ox, Scotmid, Sun Factor, X-box Heat, Day-Today, Glenvarloch Bakery, Wash Hoose, I love Edinburgh, Neanie Scot, The Royal Mile Factory Outlet, Bonnie Scotland, Edinburgh Copy Shop, Kleen Cleaners, Lo Demore, Pinnies and Poppy Seeds, Psychomoda, Ragamuffin, Rene Walrus, Slanj, Solo, Thomas Marin Funeral Director, Tidalfire, Head Candy Style Boutique, Simply Bridsmaid, Call Print, Edinburgh Arts and Picture Framers, A.Jack, Myra Crawford, RJ's, Russia Travel, The Real. A.B. Cave, VIP's Barber, Viva, Cross Fitness Training, iQ, We Fix, Tattoo Haven, Myriad, N&N Barbers, Scotbet, Sandher & Sons, Ben's Newsagant, Cash Converters, Green Print, Easy Let Property, USA Nailz, Welch Fishmonger, Guaranteed Watch & Clock Repairs, Focus, The Royal Mile Gallery, Treasurer 1874, Tribal Body Art, Macraes of Edinburgh, Best Fae Scotland, Cadenhead's Whisky Shop, Canongate Crafts, Celtic Design Jewellery, Holyrood Cashmere, Simply Scottish, The Wyrd Shop, Backbeats Records, Cables and chips, Chu's Salon, Euronics, Events Armoury Design and print, Hollan and Barret, Oxfam, Oxfam, Richmond Barbers, Shelter, Southside Glazing and Joinery, The Clothing Bank, Adult Conceptions, Varsity Music, Woods, Ballantrae Cashmere, Clans Of Scotland, Edinburgh Cashmere & Lambswool, Elgin Cashmere, House Of Cashmere, Kiltane, Ness, The Whisky Trail, Victoria Regalia, Camera Obscura, Cashmere and Scarf Company, Castle Gift Shop, Highland House, House Of Scotland, J & S - Newsagent, The Court Curio Shop, The Wee Scotland Shop, Bingo, Cashmere House, Harris Tweed Hebrides, Heritage Of Scotland, Heritage Of Scotland, James Court City Refund, Jamie Scott’s Millshop, Royal Mile Factory Outlet, The Woolen Factory Outlet, Cheynes, Southside Books, Applejack, Arika, Boosh Boosh Boosh, Cowgate Newsagant, Crescent print LTD, KSI, Spectrum Graffiri shop, Antique Jewellers, House of Edinburgh, James Pringle Weavers, Marchbrae, Royal Mile Whiskies, The Cigar Box, House of Edinburgh, The Whisky Trail, Bridge Express, Greyfriars, The Golden Scissors, Dolly & Mop, Chest Heart & Stroke Scotland, Cheryl Irvine, New Leaf Co-op, The Opticians At Marchmont, Mo's Moroccan, Paper Tiger, Arden, Braemore, Hunters, Kristofferson, SH Jewellery, Shelter Scotland, Technik, The Salvation Army, Co-operative Food, Malone's Bakery, Duke's, Scotmid, Edinburgh Harley-Davidson, Tesco Express, Morisons, Tesco Colinton, IKEA, Smyths, Co-op, Western VW, Marks and Spencer, Sainsbury's, Costco, Waitrose, Lidl, Matalan, Jewson Timber, Homebase, Dobbies Garden Centre, The Avenue Store, Niddrie Community Store, Jazz Licenced Grocers, Scotmid, Tesco Metro, Boots, Waterstone's, Mothercare, Porsche, British Heart Foundation, Dobbies Garden Centre, Kevock Garden Plants, Homebase, Scotmid, Lidl, Co-operative Food, M&S Simply Food, ACE Car Repair Ltd, Morrisons, Honda Cars, Mercedes, Beaverbrooks, USC, Vision Express, Clarks, The Perfume Shop, Hobbycraft, H&M, Carphone Warehouse, Next, Victor Paris, Design Shop, ASDA, Grahams and Ceramic Tiles, Earthy, Cotterell Light Centres, Farmfoods, Edinburgh Triumph, Two Wheels, Two Wheels Motorcycle Training, Co-op, David Phillips Autos, Pentland Plants, Kwik Fit, Sterling Furniture, Martin & Frost, Mamas & Papas, SportsDirect.com, Superdrug, Aitken & Niven, Braid Hills Golf Course Pro Shop, Wee Braids Golf Course Shop, Angle Park Auto Centre, Edinburgh Taxi Services, Kwik Fit, Harveys, Comet, Dunelm, Argos, Halfords, Laura Ashley, Straiton Beds, Brantano, ponden home, Sports Direct, Harry Corry Interiors, Pets At Home, Oak Furniture Land, Carpet Right, Dreams, Nike Factory Store, Carphone Warehouse, Home Bargains, TK Maxx, Discount UK, Bed Shed, Next, Farmer, Cook, Sainsbury's Local, Costcutter, Edinburgh Harley-Davidson, Poundstretcher, JD, River Island, Norman Stuart Auto Services, Criterium Cycles, White's Auto Services, BR Autos, GBL Motors, The Co-operative Food, Blackford Avenue Post Office, Hoffman Motors, Nairne Convenience Store, Marion's hairdressing, Londis, Scott of Dalry (MOT), VW Van Centre, Tartan Weaving Mill, Tesco Express, Gilmerton Store, ASDA Chesser, Forall's garage, Sofaworks, Majestic Wine Warehouse, Bolly Wood The Coffee Box, Nairne Convenience Store +Da Claudia +H+G Bank +no +no +-37.7800215 144.9779631, 45.4198724 -75.6960180, 45.5279091 -73.5887289, 45.4211130 -75.7128255, -37.7723825 144.9906162, 49.2726880 -123.1453296, 48.4326103 -123.3782642, 49.2734016 -123.1023382, 51.1051852 -115.3671737, 19.4292171 -99.1620068, -34.5831335 -58.3925568, 43.0679530 -89.4121987, 45.4202979 -75.7121860, 47.6481146 -122.3499046, 47.5713131 -122.3494375, 37.7769589 -122.4167994, 34.0686430 -118.4459659, 40.0173629 -105.2784426, 38.8991880 -77.0721356, 45.5140728 -122.6737551 +48.8758196 2.3557131, 48.8510838 2.3409320, 48.8730354 2.3533915, 48.8569549 2.3497208, 48.8562998 2.3535246, 48.8414636 2.2996634, 48.8514966 2.3009053, 48.8542089 2.3049026, 48.8539589 2.3040725, 48.8494772 2.3513322, 48.8521302 2.3358217, 48.8553332 2.3464366, 48.8528715 2.3435491, 48.8614418 2.2990188, 48.8513763 2.3250565, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8327885 2.2772902, 48.8375553 2.3201124, 48.8391922 2.3168608, 48.8453963 2.3255943, 48.8405754 2.3213430, 48.8445885 2.3722564, 48.8439502 2.3728916, 48.8310773 2.2770656, 48.8616525 2.3535093, 48.8541427 2.3314320, 48.8501755 2.3620809, 48.8566284 2.3271644, 48.8406788 2.3548958, 48.8661306 2.2897626, 48.8813252 2.3220105, 48.8610917 2.3414339, 48.8706262 2.3242484, 48.8722447 2.3050374, 48.8820013 2.3330275, 48.8450073 2.3757975, 48.8442783 2.3769332, 48.8466279 2.2560360, 48.8351429 2.3731146, 48.8413725 2.3310575, 48.8694555 2.3406786, 48.8388399 2.2765067, 48.8398137 2.3124499, 48.8176870 2.3444409, 48.8398451 2.2739161, 48.8539232 2.3938833, 48.8742514 2.3675121, 48.8470632 2.3766059, 48.8566083 2.3533348, 48.8895985 2.3191714, 48.8632334 2.3399229, 48.8493535 2.3714981, 48.8651992 2.3333992, 48.8565989 2.4064934, 48.8584702 2.3501538, 48.8585293 2.3496680, 48.8534880 2.3040058, 48.8411654 2.3324666, 48.8463168 2.3872077, 48.8594652 2.3441791, 48.8596955 2.3406333, 48.8620104 2.3390904, 48.8611512 2.3495492, 48.8661000 2.3337438, 48.8652752 2.3332993, 48.8677297 2.3303206, 48.8670418 2.3496240, 48.8613539 2.3526643, 48.8563329 2.3553132, 48.8657000 2.3535311, 48.8652453 2.3533870, 48.8443992 2.3820174, 48.8691076 2.3112127, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8729875 2.3210140, 48.8726568 2.3215983, 48.8776040 2.3524312, 48.8741556 2.3274201, 48.8758310 2.3206114, 48.8819076 2.3140835, 48.8751556 2.3094294, 48.8749212 2.3089779, 48.8720777 2.3056372, 48.8715518 2.3062553, 48.8688688 2.3012670, 48.8720769 2.2997667, 48.8721868 2.3033146, 48.8707626 2.3051595, 48.8701277 2.3044062, 48.8674712 2.3054788, 48.8667016 2.3011326, 48.8655118 2.3015698, 48.8713039 2.2970137, 48.8741074 2.2994150, 48.8744570 2.3007315, 48.8763620 2.3015161, 48.8767241 2.3018198, 48.8782249 2.2965872, 48.8888115 2.3939896, 48.8972935 2.3883460, 48.8971965 2.3887591, 48.8952805 2.3850234, 48.8599671 2.3250425, 48.8705380 2.3685763, 48.8293967 2.3790084, 48.8401996 2.3509062, 48.8403358 2.3506549, 48.8725027 2.2851552, 48.8736890 2.2914977, 48.8768968 2.2823678, 48.8722856 2.2840680, 48.8693205 2.2843750, 48.8677158 2.2805552, 48.8581528 2.2756131, 48.8537034 2.3664740, 48.8749075 2.3418631, 48.8770209 2.3458704, 48.8837184 2.2879868, 48.8394916 2.2533681, 48.8396031 2.2624046, 48.8471492 2.3421620, 48.8925549 2.3269370, 48.8507465 2.3484894, 48.8470699 2.3417135, 48.8613479 2.3294517, 48.8420353 2.3432522, 48.8170906 2.3594427, 48.8623669 2.3098112, 48.8593696 2.3144127, 48.8414784 2.2515179, 48.8734234 2.3305255, 48.8715078 2.3339896, 48.8459424 2.3060603, 48.8707314 2.3497989, 48.8800493 2.3536899, 48.8820806 2.3518696, 48.8644441 2.3741599, 48.8539335 2.3775047, 48.8507314 2.3754330, 48.8540777 2.3579438, 48.8466539 2.3999463, 48.8319830 2.3768014, 48.8720026 2.3359899, 48.8543455 2.3561847, 48.8472625 2.3418020, 48.8703752 2.3029557, 48.8738314 2.3297043, 48.8240781 2.3667729, 48.8790223 2.2930687, 48.8246116 2.3235303, 48.8207875 2.3249534, 48.8824856 2.3440987, 48.8558178 2.3536690, 48.8647821 2.3501454, 48.8815254 2.3543330, 48.8313000 2.3882082, 48.8424224 2.3451614, 48.8632587 2.2533252, 48.8660712 2.2550204, 48.8634010 2.3478656, 48.8580953 2.3988158, 48.8353252 2.3805436, 48.8823708 2.3546777, 48.8671989 2.3667020, 48.8410399 2.3210471, 48.8429112 2.3235502, 48.8423484 2.3212962, 48.8320324 2.3866588, 48.8336457 2.2895795, 48.8539543 2.3320945, 48.8764091 2.3236995, 48.8476756 2.3411763, 48.8305332 2.3138423, 48.8763053 2.2944546, 48.8763219 2.2947532, 48.8788573 2.2928071, 48.8761984 2.2930848, 48.8760963 2.2927992, 48.8532277 2.3589001, 48.8817162 2.3010162, 48.8336788 2.3331356, 48.8863474 2.2875098, 48.8740366 2.4050675, 48.8780164 2.4108510, 48.8260635 2.3616139, 48.8239032 2.3657211, 48.8937054 2.3492738, 48.8893918 2.3447704, 48.8706840 2.3716682, 48.8832655 2.3157338, 48.8295968 2.3493740, 48.8892294 2.3935497, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8962268 2.3624023, 48.8381765 2.3815493, 48.8537886 2.3474561, 48.8731938 2.3290960, 48.8212980 2.3643164, 48.8549966 2.4012505, 48.8550533 2.3731077, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8292317 2.3084985, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8840501 2.3678392, 48.8465587 2.2612329, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8868617 2.3693195, 48.8698031 2.3099017, 48.8804349 2.3673901, 48.8343023 2.3639410, 48.8457219 2.3091127, 48.8852759 2.3287719, 48.8853098 2.3300207, 48.8411155 2.2644568, 48.8399853 2.4354878, 48.8720076 2.3153410, 48.8970228 2.3778045, 48.8335588 2.3347973, 48.8743552 2.4101245, 48.8459148 2.3453004, 48.8467486 2.3457052, 48.8464858 2.3468868, 48.8373806 2.3847107, 48.8949298 2.3437869, 48.8529015 2.2772159, 48.8641419 2.3059394, 48.8171104 2.3592722, 48.8706191 2.3164188, 48.8702691 2.3171729, 48.8812617 2.3221621, 48.8784814 2.3330760, 48.8456516 2.3465029, 48.8997033 2.3290489, 48.8413908 2.3722764, 48.8256327 2.3320576, 48.8655047 2.2723194, 48.8708239 2.3060540, 48.8441230 2.3564135, 48.8558123 2.3528997, 48.8562804 2.3531597, 48.8362151 2.2568329, 48.8388419 2.4599061, 48.8695357 2.3416876, 48.8694697 2.3420289, 48.8696274 2.3412758, 48.8626465 2.3146531, 48.8465734 2.3127269, 48.8565840 2.2986464, 48.8460758 2.3058827, 48.8204134 2.4518397, 48.8477097 2.3117779, 48.8477196 2.3115767, 48.8784451 2.2852017, 48.8624814 2.3328854, 48.8543462 2.3467503, 48.8252592 2.4120396, 48.8614367 2.2958080, 48.8605025 2.2943088, 48.8351030 2.4463930, 48.8632541 2.2402764, 48.8618634 2.4100811, 48.8361491 2.2692910, 48.8358166 2.2686689, 48.8222263 2.4483812, 48.8227496 2.4495152, 48.8662682 2.3974540, 48.8381010 2.3148758, 48.8374220 2.3149466, 48.8366275 2.4409423, 48.8999909 2.3448173, 48.9000149 2.3394792, 48.8410576 2.3578991, 48.8379027 2.3622168, 48.8351429 2.4475725, 48.8220818 2.3406030, 48.8531376 2.3591975, 48.8534868 2.3580109, 48.8633082 2.2839525, 48.8171862 2.3326710, 48.8435052 2.3798226, 48.8364120 2.2686709, 48.8764119 2.3969357, 48.8298857 2.3251080, 48.8341531 2.3029351, 48.8341115 2.3027113, 48.8773569 2.4091134, 48.8625518 2.2289847, 48.8686047 2.3172472, 48.8400598 2.2883156, 48.8299997 2.3587358, 48.8299341 2.3586911, 48.8464288 2.2486197, 48.8480791 2.2445917, 48.8947243 2.3931498, 48.8291320 2.4574737, 48.8236788 2.4563722, 48.8705811 2.3031146, 48.8387116 2.3423289, 48.8293120 2.2902026, 48.8321851 2.2870636, 48.8285252 2.2905906, 48.8281768 2.2910589, 48.8301724 2.2903291, 48.8284840 2.2907616, 48.8285477 2.2904442, 48.8294272 2.2900019, 48.8284711 2.2909813, 48.8302673 2.2901359, 48.8322580 2.2868131, 48.8516565 2.2795993, 48.8762399 2.3589688, 48.8640413 2.2547307, 48.8688683 2.2484552, 48.8522560 2.2872933, 48.8505461 2.2881984, 48.8507146 2.2878412, 48.8592142 2.2272202, 48.8944990 2.3592670, 48.8964589 2.3589627, 48.8526051 2.2917373, 48.8527475 2.2917705, 48.8524256 2.2914147, 48.8520645 2.2878286, 48.8530231 2.2902364, 48.8521480 2.2910880, 48.8461602 2.2777848, 48.8315682 2.3419531, 48.8844978 2.3727600, 48.8214447 2.3591422, 48.8210623 2.3592593, 48.8296129 2.3926750, 48.8953032 2.3950120, 48.8385749 2.3187258, 48.8621437 2.4083353, 48.8625288 2.4074996, 48.8622745 2.4082713, 48.8467200 2.3470841, 48.8594021 2.3997394, 48.9014459 2.3845889 +yes +12 +0 +20 +yes +55.9498298 -3.1876708, 55.9483392 -3.1987455, 55.9458479 -3.1861307, 55.9450120 -3.1915042, 55.9471021 -3.1971869, 55.9486422 -3.1962925, 55.9487023 -3.1964050, 55.9501209 -3.2050581 +2 +yes +129 +48.8542243 2.3500208, 48.8697525 2.3517557, 48.8606768 2.3486445, 48.8240998 2.3638457, 48.8214836 2.3639524, 48.8557761 2.3581437, 48.8804310 2.3540947, 48.8801870 2.3552631, 48.8613752 2.3532868 +9 +13 +49.4333190 8.6867073, 49.4189644 8.6822373, 49.4199838 8.7597906, 49.4227392 8.5971994, 49.4313284 8.6416542, 49.4216061 8.6481916, 49.4437124 8.7590947, 49.4213729 8.7461819, 49.4143929 8.7631903, 49.4078072 8.7077293, 49.4127417 8.7657609 +14 +10 +49.4081527 8.6735594, 49.4136373 8.6927118, 49.4095406 8.7032850, 49.4114566 8.7107312, 49.3812968 8.6894052, 49.4028742 8.6919803, 49.4047754 8.6846789, 49.3654480 8.6869739 +0.75472968250310635 +yes +48.8907119 2.3781803 +M & D`s Theme Park, Active Kid Adventure Park, Loudon Castle +Park Aquatico, Frontier Town, Heritage USA, Great Island Science and Adventure Park, Six Flags New Orleans (Historical), Fun Town, Ruins of Mr Marvel's Fun Park, Wonderland, Holy Land USA +48.8517205 2.3567051, 48.8435991 2.3495369, 48.8443095 2.3492103, 48.8530106 2.3457721, 48.8532232 2.3449207, 48.8396212 2.3497285, 48.8543470 2.3717003, 48.8692308 2.2856346 +yes +3 +Kurpfälzisches Museum, Heidelberg Marriott Hotel, EMBL ISG Hotel, S-Printing Horse, IBIS, Stadtansicht von Matthäus Merian, Goldener Falke, Hotel zum Ritter St. Georg, Europäischer Hof, Catenan, Dem Lebendigen Geist, Reisebüro Bechtel, Qube Hotel, Bunsenstatue, Kasse, Scheffelterrasse, NH Heidelberg, Hotel Kulturbrauerei Heidelberg, Hotel Holländer Hof, Arthotel Heidelberg, Hotel Backmulde, Hip Hotel, Myxomatose-Hase, Der Zeitungsleser, Wäscherinnenbrunnen, Bergheim 41, Holiday Inn Express Heidelberg City Centre, Jugendherberge Heidelberg International, Karlstor, Carl Bosch Museum, Heidelberg Suites, Crowne Plaza Heidelberg, Leonardo Hotel Heidelberg, Waldpiraten Camp, Alte Brücke, Museum am Ginkgo, Neu Heidelberg, Heidelberger Schloss and 49.4114718 8.7028414, 49.4091649 8.6726851, 49.3703369 8.7056886, 49.4048641 8.6772256, 49.4151131 8.6716059, 49.4033496 8.6774778, 49.4152002 8.7091846, 49.4118757 8.7108162, 49.4117371 8.7091875, 49.4079388 8.6952668, 49.4171164 8.6729011, 49.4167279 8.6721344, 49.4277422 8.6844557, 49.4080500 8.6812645, 49.4107178 8.6980284, 49.4149294 8.6640840, 49.4124856 8.7129396, 49.4121179 8.7180590, 49.4073921 8.6825502, 49.4131432 8.7133745, 49.4131065 8.7092091, 49.4095865 8.7066610, 49.4121564 8.7037030, 49.4115410 8.7046342, 49.4179402 8.6696532, 49.4180276 8.6704533, 49.4166963 8.6728921, 49.4097773 8.6939787, 49.4157564 8.7618968, 49.4162174 8.7624204, 49.4187291 8.7567160, 49.4083367 8.6887571, 49.4127706 8.7178630, 49.4058252 8.6861495, 49.4162463 8.6598488, 49.4141369 8.7180619, 49.4154642 8.7301120, 49.4151692 8.7066598, 49.4066053 8.6919726, 49.3870250 8.6611599, 49.3864727 8.6987364, 49.4142413 8.7095334, 49.4154357 8.7295799, 49.4006254 8.6417864, 49.4105621 8.7153069 +55.9516586 -3.1968492, 55.9899700 -3.3959164, 55.9498298 -3.1876708, 55.9483392 -3.1987455, 55.9875100 -3.4039888, 55.9539273 -3.1922043, 55.9902127 -3.3859837, 55.9906294 -3.3854450, 55.9450120 -3.1915042, 55.9521101 -3.1881430, 55.9471021 -3.1971869, 55.9906129 -3.3848526, 55.9504193 -3.2001988, 55.9505097 -3.1997700, 55.9486422 -3.1962925, 55.9487023 -3.1964050, 55.9501209 -3.2050581 +49.4047830 8.6748233, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349 +EE, Carphone Warehouse, O2, Phones 4 U, O2, Phones 4u, EE, Vodafone, 3 Store, Carphone Warehouse, Three, O2, EE, Carphone Warehouse, EE, O2, Carphone Warehouse, Phones 4U, EE, O2, 3 Store, Carphone Warehouse, EE, fone customize, AA Bargain Store, Adeel, Repair Centre, The Phone Box, Fones 2 You, Mac's Audios +St Margaret's Well, St Anthony's Well, Well, Well, Well, Well, Carlops Drinking Fountain, Well +86 +55.9849796 -3.1929699 +Schwan Apotheke +55.9545272 -3.4038139, 55.9848485 -3.4000740, 55.9895563 -3.3951093, 55.9494846 -3.2921322, 55.9263848 -3.3788125, 55.9087627 -3.3266637, 55.9776182 -3.2998389, 55.9242973 -3.3802986 +4 +22 +yes +7 +fr:Pech de Bugarach, ca:Carlit, ca:Puigmal, ca:Pic d'Eina, ca:Pic de Noufonts, ca:Puigpedrós, ca:Tosseta de l'Esquella, ca:Pic de Finestrelles, ca:Puig Peric, ca:Puig de Tres Vents, ca:Pic de Bastiments, ca:Pic de la Dona, ca:Puig de Coma Ermada (Setcases), fr:Salasc, ca:Puig d'Ombriaga, ca:Pic de l'Infern, ca:Comanegra, ca:Puig de la Llibertat +55.9358156 -3.2103653 +yes +49.3641303 8.7007952, 49.4141949 8.6492596, 49.4249111 8.6599633, 49.4225922 8.6610898, 49.4219827 8.6614068, 49.4211061 8.6602870, 49.4214429 8.6617205, 49.4246509 8.6581222, 49.4262527 8.6639370, 49.4313712 8.7044406, 49.3766520 8.6808039, 49.3698079 8.7065866, 49.3914129 8.6717410, 49.4251190 8.7424393, 49.3964286 8.6885028, 49.4004885 8.6442468, 49.4242274 8.6810082, 49.4145161 8.6481333, 49.4145807 8.6502220, 49.4149318 8.6512324, 49.3966637 8.6732063, 49.3971476 8.6732324, 49.3916938 8.6839480, 49.3968837 8.6544104, 49.3739291 8.6752906, 49.3752173 8.6756735, 49.3735327 8.7051808, 49.4097428 8.7101158, 49.3756496 8.6793690, 49.3837424 8.6829733, 49.4066140 8.6679554, 49.3932939 8.6684461, 49.3896124 8.6636980, 49.3905297 8.6647270, 49.3896390 8.6650346, 49.3640640 8.7009270, 49.3698079 8.7065866, 49.3909393 8.6664585, 49.4095754 8.6826250, 49.3925312 8.6704324, 49.3962482 8.6870602, 49.3837961 8.6623413, 49.3839957 8.6617176, 49.3963303 8.6519757, 49.4176154 8.6501589, 49.3970830 8.6531353, 49.4102687 8.7705371, 49.3802540 8.6911629, 49.3739883 8.6762475, 49.3923829 8.6822201, 49.3881369 8.6632941, 49.3914253 8.6716414, 49.3913986 8.6718394, 49.3769314 8.6774682, 49.3765788 8.6774418, 49.4289729 8.7487865, 49.4452550 8.7637570, 49.4220208 8.6778853, 49.3729768 8.6873389, 49.4209557 8.6602654, 49.4262584 8.6638649, 49.3933288 8.6683994, 49.3970682 8.6531104, 49.4102981 8.7704726, 49.3752194 8.6756422, 49.3881395 8.6632403, 49.4148634 8.6509295 +2 +http://www.carondebeaumarchais.com/, http://www.paris-hotel-lion.com, http://edenhotel-montmartre.com, http://www.solmelia.com, http://www.accorhotels.com/fr/hotel-1400-ibis-paris-tour-eiffel-cambronne-15eme/index.shtml, http://www.citadines.com, http://www.hotelbelorangerparis.com/, http://www.hovicha.com, hallehotel.fr, http://www.bestwestern-folkestoneopera.com/, http://www.hotelsydneyopera.com/, http://lewaltparis.com/fr, http://www.pershinghall.com, http://hotelmonnalisa.com/fr, http://www.hotel-faubourg-216-214-paris.federal-hotel.com/, http://hotel-montana-lafayette.com, http://www.marcianohotel-garedunord.com, http://www.paris-hotel-americain.com/, http://www.hotelgeorgette.com, http://www.raphael-hotel.com/, http://www.colordesign-hotel-paris.com, http://www.foch-paris-hotel.com/, http://www.hotel-studio.com/, http://hotelderbyalma.com/fr, http://www.astotel.com/hotel-acadia-opera-paris.php, http://www.hotelroncerayopera.fr, http://www.hoteldamiens.com/, http://www.hotel-delos-vaugirard-paris.com/, avalonparis.com, www.paris-saint-honore.com, http://www.hipotel.info/fr/hipotel-paris-nation, hotel-11.html, www.parishotellittleregina.com/, http://www.plaza-opera-paris.com/, http://www.villaoperalamartineparis.com/, http://www.hotel-montmartre-duperre.com, http://www.hotel-splendid-paris.com, http://www.novotel.com/fr/hotel-1834-novotel-paris-porte-d-orleans, http://www.shangri-la.com/paris, http://www.alesia-paris-hotel.com, http://www.61-paris-nation-hotel.com, http://www.amhotelitalie.com, http://hotelarian.com, http://www.hotel-meridional-paris.com/, http://www.pvhotel.com, http://www.clarisse-paris-hotel.com, http://parisportedeversailles.medianhotels.com, http://www.villa-royale-montsouris-paris.com, http://www.hotelvirgina.com, http://www.parishotelmontsouris.com, http://www.cecil-hotel-montparnasse.com, http://www.parc-hotel-paris.com, http://www.hotelduparcstcharles.com, http://www.sourcehotel.fr, http://www.hotelbellevue75.com, http:/http://www.hotel-turenne.com, http://www.hotel-petit-belloy-saint-germain.com/, http://www.hotel-paris-belloy.com/, http://www.cordelia-paris-hotel.com/, http://www.astotel.com/hotel-bergere-opera-paris.php, http://www.jardindevilliers.com, http://www.pavillon-monceau-etoile.com, http://www.leshotelsdeparis.com/fr/nos-hotels/fiche/20/pavillon-villiers-etoile.html, www.beausejour-montmartre.com, http://lemarquisparis.com/fr, http://www.hotelroyalsaintmichel.com/, http://www.hotelchopin.fr/, www.hotelparispaix.com, http://www.perreyve-hotel-paris-luxembourg.com, http://www.hoteldelavenir.com/fr/, http://www.hotel-istria-paris.com/, http://www.paris-hotel-lavallee.com, http://hotellabourdonnais.fr/, http://www.villa-montparnasse.com/, http://www.accorhotels.com/de/hotel-8465-ibis-styles-paris-pigalle-montmartre/index.shtml, http://www.accorhotels.com/de/hotel-8465-ibis-styles-paris-pigalle-montmartre/index.shtml, www.hotelfertel.com, http://www.hotelnovanox.com/, http://www.radissonblu.com/dokhanhotel-paristrocadero, www.academiehotel.com, http://www.hoteldutriangledor.com/, http://www.hoteldesers-paris.com, http://www.hotelbelami-paris.com, http://www.hoteledouard7-paris.com, http://paris.peninsula.com, http://www.amadeus-hotel-paris.com/, http://www.amadeus-hotel-paris.com/, http://www.pinkhotel.fr/en, hotelajiel.com, http://lerobinetdor.com, http://www.hoteldevenise.fr/, http://www.splendid-hotel-paris.com/, novotelparis.com, http://www.timhotel.com/, http://www.hotel-diana-paris.com/, http://www.hotel-bastille-speria.com/, http://www.paris-hotel-senlis.com/, http://www.ibishotel.com/gb/hotel-1399-ibis-paris-bastille-opera-11eme/index.shtml, http://www.choicehotels.fr/fr/comfort-hotel-fr260, http://www.ibishotel.com/fr/hotel-1401-ibis-paris-la-villette-cite-des-sciences-19eme/location.shtml, http://www.hoteloperamarignyparis.com, http://www.hotelducollectionneur.com/, http://www.hotel-rotary.fr/, http://www.hotel-touring.fr/, www.hotel-monterosa-opera.com, http://www.hotelvernet.com/, http://www.lilas-gambetta.com/, http://www.mercure.com/fr/hotel-0934-mercure-paris-austerlitz-bibliotheque/index.shtml, hotelroyalfromentin.com, http://www.solarhotel.fr/, http://www.paris-orleans-hotel.com, http://www.acropole-paris-hotel.com/, http://www.accorhotels.com/fr/hotel-3546-novotel-paris-tour-eiffel/, http://www.accorhotels.com/fr/hotel-6790-adagio-paris-tour-eiffel/, http://www.hotel-lilas-blanc-paris.fr/, http://www.paris-hotel-tourville.com/fr +yes +Crédit Agricole, Société Générale, Société Générale, Société Générale, LCL, Société Générale, LCL, Crédit Agricole, Caisse d'Épargne, LCL, Société Générale, Caisses Régionales de Crédit Agricole, Société Générale, Société Générale, Société Générale, Crédit Agricole, BNP Paribas, Société Générale, BNP Paribas, BNP Paribas, Société Générale, BNP Paribas, BNP Paribas, Crédit Agricole, Caisse d'Épargne, Société Générale, Société Générale, LCL, Caisse d'Épargne, Caisse d'Épargne, CIC, BNP Paribas, BNP Paribas, BNP Paribas, LCL, Caisse d'Épargne, LCL, BNP Paribas, LCL, Bred, LCL, Société Générale, Société Générale, Crédit Agricole, Société Générale, BNP Paribas, HSBC, LCL, LCL, LCL, BNP Paribas, CIC, Société Générale, LCL, BNP Paribas, Caisse d'Épargne, BRED, LCL, Société Générale, BNP Paribas, HSBC, Crédit Agricole, Caisse d'Épargne, LCL, Bred Banque Populaire, Société Générale, BNP Paribas, Crédit Agricole, HSBC, BNP Paribas, Caisse d'Épargne, LCL, Crédit Agricole, LCL, BNP Paribas, Crédit Agricole, BNP Paribas, BNP Paribas, BNP Paribas, Crédit Agricole, Société Générale, BNP Paribas, LCL, BNP Paribas, BNP Paribas, BNP Paribas, LCL, Caisse d'Épargne, Crédit Mutuel, LCL, Crédit Mutuel, Société Générale, Société Générale, Crédit Mutuel, Caisse d'Épargne, LCL, Société Générale, BNP Paribas, Société Générale, LCL, Crédit Agricole, BNP Paribas, CIC, Banque Populaire, Crédit Mutuel, BPE, Crédit Agricole, CIC, Crédit Agricole, LCL, CIC, CIC, Société Générale, Caisse d'Épargne, Caisse d'Épargne, BNP Paribas, CIC, CIC, BNP Paribas, Société Générale, Société Générale, Caisse d'Épargne, LCL, BNP Paribas, Société Générale, BNP Paribas, Société Générale, Caisse d'Épargne, BNP Paribas, CIC, BRED, Société Générale, Crédit Agricole, BNP Paribas, BNP Paribas, CIC, BNP Paribas, CIC, CIC, Crédit Agricole, LCL, Caisse d'Épargne, Crédit Agricole, BNP Paribas, LCL, Société Générale, LCL, Société Générale, Caisse d'Épargne, CIC, Société Générale, BNP Paribas, CIC, BNP Paribas, CIC, BNP Paribas, LCL, Crédit Mutuel, Société Générale, LCL, Société Générale, BNP Paribas, CIC, BNP Paribas, Caisse d'Épargne, Crédit Mutuel, Crédit Agricole, CIC, BNP Paribas, LCL, LCL, CIC, Société Générale, BNP Paribas, BNP Paribas, Société Générale, BNP Paribas, CIC, LCL, BNP Paribas, CIC, BNP Paribas, BNP Paribas, Crédit Agricole, CIC, Crédit du Nord, Caisse d'Épargne, Société Générale, CIC, Caisse d'Épargne, Société Générale, Société Générale, BNP Paribas, BNP Paribas, Société Générale, CIC, Crédit Agricole, LCL, BNP Paribas, CIC, Caisse d'Épargne, BNP Paribas, BNP Paribas, BNP Paribas, LCL, Crédit Agricole, CIC, LCL, Société Générale, LCL, BNP Paribas, BNP Paribas, Société Générale, BNP Paribas, BNP Paribas, Banque Populaire, LCL, LCL, BNP Paribas, LCL, BNP Paribas, BNP Paribas, Crédit Mutuel, BNP Paribas, CIC, Société Générale, LCL, LCL, CIC, Société Générale, BNP Paribas, LCL, Caisse d'Épargne, Société Générale, BNP Paribas, LCL, LCL, BNP Paribas, BNP Paribas, BNP Paribas, LCL, Société Générale, LCL, Caisse d'Épargne, Crédit Agricole, BNP Paribas, BNP Paribas, Société Générale, CIC, Crédit Agricole, Crédit Agricole, Crédit Agricole, LCL, Société Générale, Société Générale, LCL, CIC, Crédit Agricole, LCL, CIC, BNPP, LCL, Société Générale, Société Générale, BNP Paribas, LCL, Société Générale, LCL, BNP Paribas, BPCE, HSBC, Crédit Mutuel, Société Générale, Crédit Agricole, HSBC, Société Générale, CIC, LCL, LCL, CIC, Caisse d'Épargne, BNP Paribas, BNP Paribas, Société Générale, BRED, CIC, CIC, Crédit du Nord, Crédit Mutuel, LCL, LCL, LCL, BNP Paribas, LCL, Banque Populaire, Crédit du Nord, Société Générale, LCL, CIC, Crédit du Nord, Société Générale, Caisse d'Épargne, Société Générale, BNP Paribas, Crédit du Nord, Caisse d'Épargne, Crédit inductriel et commercial, BPCE, Crédit agricole SA, Caisses Régionales de Crédit Agricole, Crédit Mutuel Centre Est Europe, Crédit mutuel Centre Est Europe, LCL, Banque populaire, HSBC, Crédit du Nord, HSBC, LCL, Banque Populaire, BNP Paribas, Crédit Mutuel, HSBC, LCL, CIC, BPE, Banque Palatine, CIC, BNP Paribas, Caisse d'épargne, Crédit Agricole, LCL, LCL, Crédit Agricole, HSBC, Banque Palatine, LCL, Banque Populaire, Crédit Mutuel, BNP Paribas, LCL, Caisse d'Épargne, BRED, Barclays +30 +44 +55.9533748 -3.1895989 +yes +0 +no +Zanzibar Farm Airport, Brennan Farm Airport, Paris Municipal Airport, Samuel L Clemens Memorial Airport, Brazeale Farm Airport, Lake Village Airport, Henry County Airport, Stewart Airport, Cox Field, Flying Tigers Airport, Burress Airport, Paris Municipal Airport, Bear Lake County Airport +13 +no +55.9507141 -3.2047476 +yes +yes +2044 +50 mph, 70 mph, 70 mph, 70mph, 70mph, 70mph, 70 mph, 70mph, 70 mph, 70 mph, 70 mph, 70 mph, 50 mph, 70mph, 70 mph, 50mph, 70 mph, 50mph, 70 mph, 70 mph +yes +10 +491 +steak house, italian, chinese, sudanese, curry, indian, thai, spanish, japanese, regional, cantonese, pie, american, seafood, pizza, lebanese, french, vegetarian, Cantonese, mexican, mediterranean, mongolian, chargrill, kurdish, Lebanese, middle eastern, noodle, asian, turkish, korean, Malaysian, greek, brazilian, fish, international, sushi, arab, vietnamese, burger, latin american, caribbean, chicken, tapas, malaysian, Scotish, Punjabi, spanish tapas, british, portuguese, african, soup, Mediterranean, phillipino, Middle Eastern, fish and chips, nepali, sandwich, kebab +387 +55.9271435 -3.2363728, 55.9267165 -3.2386629, 55.9317481 -3.1148993, 55.9617756 -3.1654684, 55.9092916 -3.2372720, 55.9086969 -3.3166139, 55.9358069 -3.1285761, 55.9285078 -3.1536537, 55.9280931 -3.1542480, 55.9289856 -3.1524120, 55.9296930 -3.1573543, 55.9308854 -3.1490330, 55.9313446 -3.1501810, 55.9305381 -3.1507475, 55.9301365 -3.1519234, 55.9296254 -3.1163699, 55.9300136 -3.1147841, 55.9295135 -3.1143678, 55.9290339 -3.1140352, 55.9291168 -3.1159858, 55.9286204 -3.1155931, 55.9281972 -3.1171037, 55.9381802 -3.1376916, 55.9374343 -3.1178323, 55.9381022 -3.1166032, 55.9377101 -3.1207816, 55.9395918 -3.1433642, 55.9399577 -3.1399180, 55.9238265 -3.1591952, 55.9285647 -3.1337554, 55.9290844 -3.1371814, 55.9297626 -3.1373543, 55.9285023 -3.1366649, 55.9350829 -3.2524329, 55.9347267 -3.2533165, 55.9338964 -3.2544788, 55.9690552 -3.1927289, 55.9225182 -3.3763378, 55.9078363 -3.3154730, 55.9082957 -3.3144976, 55.9237418 -3.2169588, 55.9628071 -3.2843326, 55.9567295 -3.1549851, 55.9389766 -3.2324281, 55.9617670 -3.1652776, 55.9705936 -3.1599562, 55.9696930 -3.1649144, 55.9716069 -3.1643645, 55.9380999 -3.2729865, 55.9391695 -3.2856891, 55.9383416 -3.2718088, 55.9382288 -3.2723445, 55.9596231 -3.1580900, 55.9653178 -3.1368407, 55.9660030 -3.1385663, 55.9656849 -3.1377647, 55.9666198 -3.1395795, 55.9446645 -3.1105686, 55.9444874 -3.1123104, 55.9707140 -3.1621777, 55.9050822 -3.1576990, 55.9355775 -3.2509489, 55.9362971 -3.2489990, 55.9349382 -3.2502977, 55.9340731 -3.2519958, 55.9359295 -3.2498294, 55.9036470 -3.1544912, 55.9038978 -3.1545429, 55.9040532 -3.1549998, 55.9036002 -3.1541604, 55.9038281 -3.1540607, 55.9040058 -3.1539823, 55.9040754 -3.1544647, 55.9339860 -3.2908522, 55.9335477 -3.2911304, 55.9338068 -3.2899009, 55.9333632 -3.2901748, 55.9323425 -3.2898388, 55.8956129 -3.3229484, 55.8958402 -3.3216003, 55.8878435 -3.3373675, 55.9388790 -3.2733983, 55.9635581 -3.2781359, 55.9108532 -3.1647740, 55.9575364 -3.4153195, 55.9588764 -3.4147772, 55.9584655 -3.4151246, 55.9585135 -3.4153794, 55.9076485 -3.1762454 +870 +31 +yes +Tierheim Heidelberg +McDonald's, Wannaburger, Bell's Diner, Burger Meats Bun, Rascals, Burger King, Burger. +49.4238771 8.7063851 +1715 +Standing Stone, Caiy Stane, Standing Stone, Balm Well, Cup and Ring Marked Rocks, Stone, Hanging Stanes, The Buckstane, Cat Stane, Bonnington Mill Waterwheel (remains), Physic Well, Fort, Bonnington Weir, Hatton House and 55.9387357 -3.3996538, 55.9380963 -3.4051984, 55.9385221 -3.4040472, 55.9386848 -3.4052874, 55.9333966 -3.3543268, 55.9024677 -3.2131994, 55.9579939 -3.3233291, 55.9028966 -3.1642422, 55.9122291 -3.3948137, 55.8798835 -3.3439577, 55.9226836 -3.2094162, 55.9101467 -3.2093552, 55.9546676 -3.3637002, 55.9222410 -3.1492085, 55.9710480 -3.1879850, 55.9387885 -3.2890803, 55.8869268 -3.2813599, 55.9691744 -3.1898383, 55.9045439 -3.3952157, 55.9729762 -3.1721306 +no +16 +55.9007148 -3.2329556, 55.9031798 -3.2852677, 55.9073767 -3.2581589, 55.9075931 -3.2558164, 55.9082967 -3.3202293, 55.9101031 -3.3218843, 55.9102819 -3.3218516, 55.8838914 -3.3385867, 55.8840866 -3.3391023, 55.9045849 -3.2066586 +5 +yes +yes +9 +48.8626579 2.4087217, 48.8259806 2.3462229, 48.8456165 2.2872280, 48.8458916 2.2869967, 48.8461688 2.2871428, 48.8461114 2.2873693, 48.8460334 2.2876230, 48.8458951 2.2877900, 48.8945404 2.3437266, 48.8945867 2.3435634, 48.8286973 2.2729208, 48.8938893 2.3474384, 48.8406328 2.2820860, 48.8402998 2.2843573, 48.8396360 2.2833280, 48.8381144 2.2816798, 48.8377527 2.2807442, 48.8368318 2.2804326, 48.8371087 2.2807889, 48.8560161 2.3425271, 48.8354274 2.2891935, 48.8356940 2.2884563, 48.8355748 2.2885189, 48.8339470 2.2892638, 48.8359679 2.2915532, 48.8342477 2.2892262, 48.8352347 2.2914795, 48.8347999 2.2888232, 48.8352121 2.2886958, 48.8341796 2.2893277, 48.8353624 2.2891574, 48.8358336 2.2884148, 48.8340784 2.2889956, 48.8348947 2.2914239, 48.8354999 2.2906955, 48.8343212 2.2884484, 48.8341989 2.2872303, 48.8340298 2.2895416, 48.8353407 2.2913582, 48.8340810 2.2872939, 48.8350083 2.2912932, 48.8350881 2.2911310, 48.8353351 2.2886642, 48.8354938 2.2892404, 48.8344281 2.2888052, 48.8342630 2.2885863, 48.8352570 2.2893491, 48.8344113 2.2889885, 48.8350553 2.2887220, 48.8341310 2.2870379, 48.8355683 2.2893317, 48.8339501 2.2896850, 48.8346012 2.2885721, 48.8343312 2.2891146, 48.8356876 2.2894299, 48.8351103 2.2888302, 48.8351091 2.2877154, 48.8343517 2.2881843, 48.8350188 2.2907651, 48.8339247 2.2868767, 48.8338089 2.2866979, 48.8351414 2.2892600, 48.8357676 2.2904412, 48.8337879 2.2895489, 48.8341575 2.2888443, 48.8349264 2.2889776, 48.8345246 2.2887347, 48.8357278 2.2899455, 48.8341315 2.2894008, 48.8342180 2.2887046, 48.8352637 2.2909341, 48.8346952 2.2887176, 48.8354556 2.2885926, 48.8337467 2.2865260, 48.8375350 2.2913350, 48.8336777 2.2872161, 48.8335705 2.2869127, 48.8337434 2.2875413, 48.8369196 2.2921182, 48.8368855 2.2923268, 48.8364889 2.2928332, 48.8363937 2.2929303, 48.8367817 2.2921378, 48.8355582 2.2922200, 48.8363125 2.2930626, 48.8366181 2.2926689, 48.8366064 2.2923064, 48.8357751 2.2925615, 48.8359648 2.2920460, 48.8365265 2.2927826, 48.8365419 2.2923862, 48.8369093 2.2927447, 48.8354946 2.2924894, 48.8370175 2.2919841, 48.8362209 2.2932762, 48.8364400 2.2928974, 48.8371063 2.2918600, 48.8366669 2.2926054, 48.8367129 2.2925315, 48.8355570 2.2924077, 48.8362692 2.2931276, 48.8357309 2.2919526, 48.8368092 2.2924115, 48.8358821 2.2922313, 48.8363528 2.2930114, 48.8356847 2.2927260, 48.8372278 2.2923370, 48.8364767 2.2925068, 48.8366966 2.2921926, 48.8356536 2.2920669, 48.8365779 2.2927197, 48.8373276 2.2915933, 48.8371816 2.2917254, 48.8703749 2.3542325, 48.8789628 2.3681993, 48.8791741 2.3663545, 48.8799803 2.3666934, 48.8798303 2.3667814, 48.8786278 2.3674630, 48.8794612 2.3667058, 48.8789495 2.3661867, 48.8796490 2.3667502, 48.8800488 2.3665663, 48.8572139 2.3832347, 48.8650822 2.3661184, 48.8574662 2.3837533, 48.8554810 2.3772626, 48.8864767 2.3827802, 48.8679595 2.3233258, 48.8536747 2.4053296, 48.8586453 2.4019021, 48.8518072 2.4124809, 48.8531145 2.4036646, 48.8578352 2.4000440, 48.8589497 2.4088774, 48.8538663 2.4047101, 48.8552754 2.4007123, 48.8588681 2.4012265, 48.8590547 2.4025125, 48.8541262 2.4051957, 48.8513132 2.4124333, 48.8582204 2.3997539, 48.8582589 2.4007504, 48.8583258 2.4009450, 48.8545852 2.4008607, 48.8526913 2.4118934, 48.8623272 2.4101654, 48.8534197 2.4046530, 48.8586663 2.4014427, 48.8587829 2.4029033, 48.8540415 2.4054174, 48.8554223 2.4085278, 48.8587366 2.4011485, 48.8591422 2.4024156, 48.8578048 2.3927276, 48.8575845 2.3995526, 48.8581638 2.4006121, 48.8581343 2.3995216, 48.8587445 2.4009099, 48.8534712 2.4037410, 48.8581692 2.3989546, 48.8585714 2.4008779, 48.8578971 2.4002009, 48.8577393 2.3999088, 48.8591035 2.4013432, 48.8584365 2.4010685, 48.8578427 2.3994065, 48.8591071 2.4018052, 48.8580252 2.4003632, 48.8532348 2.4055479, 48.8590228 2.4016040, 48.8542374 2.4042895, 48.8583058 2.4003619, 48.8582833 2.3988622, 48.8545006 2.4007407, 48.8589422 2.4026958, 48.8581984 2.4001526, 48.8545367 2.4052799, 48.8515056 2.4120751, 48.8576055 2.3931989, 48.8524695 2.4123633, 48.8590370 2.4012515, 48.8585512 2.4068790, 48.8539310 2.4051830, 48.8583902 2.4005133, 48.8580786 2.4076181, 48.8593004 2.4078997, 48.8531478 2.4049036, 48.8606568 2.4018470, 48.8533070 2.4118122, 48.8586158 2.4030631, 48.8538479 2.4049766, 48.8543924 2.4053763, 48.8508785 2.4116177, 48.8587420 2.4059272, 48.8541953 2.4045624, 48.8537836 2.4048138, 48.8576761 2.3997142, 48.8529772 2.4121920, 48.8583789 2.4013933, 48.8581764 2.4023519, 48.8587069 2.4016236, 48.8520901 2.4120013, 48.8587301 2.4020076, 48.8535306 2.4052930, 48.8868999 2.3556815, 48.8868397 2.3535733, 48.8799710 2.3668489, 48.8223527 2.3707128, 48.8224095 2.3695039, 48.8294477 2.3741903, 48.8228263 2.3716917, 48.8228048 2.3704376, 48.8228388 2.3695339, 48.8229668 2.3722639, 48.8227555 2.3709624, 48.8220709 2.3699905, 48.8230456 2.3726148, 48.8225893 2.3709731, 48.8246659 2.3675739, 48.8223500 2.3702531, 48.8375792 2.2918796, 48.8376900 2.2918232, 48.8317883 2.3378530, 48.8312318 2.3364978, 48.8340640 2.3002838, 48.8340622 2.3008982, 48.8544572 2.2738459, 48.8914264 2.3616730, 48.8357490 2.2834497, 48.8357960 2.2845975, 48.8366264 2.2833601, 48.8357600 2.2860925, 48.8360655 2.2842645, 48.8366815 2.2835085, 48.8360570 2.2821210, 48.8366302 2.2836000, 48.8353570 2.2851005, 48.8361685 2.2864205, 48.8362375 2.2840533, 48.8367854 2.2843155, 48.8365994 2.2819655, 48.8352490 2.2851878, 48.8356380 2.2847705, 48.8365555 2.2836885, 48.8354955 2.2853870, 48.8371584 2.2838238, 48.8354250 2.2850228, 48.8362735 2.2826255, 48.8531773 2.4036029, 48.8536512 2.4044843, 48.8339022 2.2898349, 48.8358103 2.2918382, 48.8358773 2.2917189, 48.8540729 2.2899442, 48.8344297 2.2883294, 48.8350305 2.2886052, 48.8345592 2.2878723, 48.8346773 2.2880592, 48.8349377 2.2884552, 48.8348147 2.2882685, 48.8370509 2.2926787, 48.8371203 2.2924543, 48.8887845 2.3776515, 48.8865795 2.2862560, 48.8284544 2.2711488, 48.8282234 2.2718096, 48.8292333 2.2741387, 48.8284082 2.2724102, 48.8289689 2.2735589, 48.8906840 2.3312886, 48.8907742 2.3312960, 48.8916345 2.3631212, 48.8896273 2.3608608, 48.8627424 2.4085662, 48.8366915 2.2819093, 48.8369456 2.2829976, 48.8375484 2.2818108, 48.8363688 2.2811655, 48.8373703 2.2816463, 48.8374672 2.2817343, 48.8395842 2.2834488, 48.8357296 2.2834432, 48.8356900 2.2834710, 48.8404152 2.2824602, 48.8356754 2.2834246, 48.8358290 2.2829385, 48.8361395 2.2841886, 48.8365515 2.2835310, 48.8464460 2.2876737, 48.8372185 2.2862390, 48.8369510 2.2827549, 48.8369488 2.2828608, 48.8354141 2.2855175, 48.8355595 2.2846958, 48.8353937 2.2848900, 48.8324339 2.3195261, 48.8374995 2.2812255, 48.8376276 2.2809929, 48.8375720 2.2805654, 48.8378285 2.2810366, 48.8576363 2.4087780, 48.8583976 2.4082177, 48.8587785 2.4077670, 48.8375763 2.2810628, 48.8377174 2.2808375, 48.8375417 2.2811490, 48.8376679 2.2809007, 48.8743061 2.4017313, 48.8838481 2.3762235, 48.8567680 2.4073825, 48.8869052 2.3558214, 48.8603321 2.4025489 +yes +4 +43.6348557 3.8709154 +55.8957183 -3.2610295, 55.9772106 -3.2650677, 55.9047174 -3.1794599, 55.9122928 -3.4340796 +fr:Paris, en:Paris, Arkansas, en:Paris, Texas, en:Paris, Idaho, en:Paris, Illinois, en:Paris, Kentucky, en:Paris, Missouri, en:Paris, Tennessee +fr:Tour Eiffel +1 +Lothian Animal Welfare Centre +109 +yes +48.8831159 2.3425480, 48.8868146 2.3594625, 48.8668168 2.3257587, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8717742 2.2984126, 48.8668308 2.3028826, 48.8715217 2.3076937, 48.8884053 2.3785210, 48.8664199 2.2892440, 48.8604399 2.3007825, 48.8864077 2.2949505, 48.8710343 2.3234791, 48.8730243 2.3445449, 48.8606580 2.3469337, 48.8868980 2.3004690, 48.8683305 2.3330172, 48.8920470 2.3024290, 48.8609042 2.3467975, 48.8662424 2.3373468, 48.8814057 2.3282568, 48.8752556 2.2866823, 48.8704922 2.2798118, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8848968 2.3034428, 48.8802164 2.2842407 +9 +49.4028079 8.6877203, 49.4101353 8.6927154, 49.4099021 8.7003337 +yes +48.8454641 2.4140105 +330 +yes and 12 +yes +48.8346251 2.2657680, 48.8315802 2.3158225, 48.8455659 2.3086884, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8593908 2.3144172, 48.8299268 2.3465439, 48.8609726 2.2828299, 48.8563247 2.3152562, 48.8611046 2.3413657, 48.8475898 2.3031985, 48.8463297 2.2794951, 48.8402491 2.3214518, 48.8804901 2.2865619, 48.8635857 2.2722338, 48.8408422 2.3172666, 48.8387798 2.2536841, 48.8281523 2.2728394, 48.8595020 2.3116861, 48.8364028 2.2775659, 48.8519985 2.2908966, 48.8656358 2.2892405, 48.8797035 2.3026873, 48.8936152 2.3152934, 48.8522407 2.2805336, 48.9001725 2.3444887, 48.8711680 2.3244832, 48.8436106 2.3422313, 48.8233460 2.3160166, 48.8338034 2.2847592, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8206480 2.3248645, 48.8936129 2.3029112 +yes +49.4045856 8.6498671, 49.4042890 8.6482626, 49.4005255 8.6416909, 49.4046222 8.6868381, 49.4032452 8.6845637, 49.3783665 8.6932651, 49.3778590 8.6930131, 49.3777697 8.6932265, 49.3876769 8.6645282, 49.3915440 8.6790012, 49.3793134 8.6732898, 49.4040525 8.6844956, 49.3995165 8.6879132, 49.4055996 8.6889278, 49.3812968 8.6894052, 49.3864285 8.6696286, 49.3773672 8.6667238, 49.3834643 8.6624283, 49.3974698 8.6477849, 49.4007776 8.6911061, 49.4035568 8.6922425, 49.4058460 8.6924951, 49.4055314 8.6924048, 49.4014846 8.6914932, 49.4000859 8.6904108, 49.3997565 8.6902626, 49.3791702 8.6320031, 49.3995142 8.6850002, 49.3742086 8.7031163, 49.4041847 8.6844762, 49.4038715 8.6762894, 49.4003850 8.6920257, 49.4054553 8.6752473, 49.3975120 8.6522670, 49.3738871 8.7039058, 49.3896229 8.6900545, 49.3790377 8.6919226, 49.3786163 8.6868257, 49.3810024 8.6888615, 49.3799295 8.6843446, 49.3727648 8.7034774, 49.3744103 8.7047986, 49.3699337 8.6542672, 49.3787743 8.6924168, 49.3931903 8.6817010, 49.3801022 8.6812091, 49.3759036 8.6766890, 49.4016680 8.6740567, 49.3632402 8.6222259, 49.3772275 8.6672364, 49.3654480 8.6869739, 49.3865134 8.7038130, 49.3799233 8.6752091, 49.3796123 8.6875344, 49.3930474 8.6832081, 49.3998558 8.6384200, 49.3887612 8.6898215, 49.3780880 8.6666402, 49.3791746 8.6705116 +Hope Cottage Nursery School, Little Monkeys Nursery, Colinton Private Nursery, Rainbow Kindergarten, Molly's Nursery, Heriot Hill Nursery, Strawberry Hill Nursery, Bruntsfield Nursery, Busy Bees Nursery, Childcair @ Quartermile, The Edinburgh Nursery, Annandale Nursery, The Edinburgh Nursery, St. Leonards Nursery School, High School Yards Nursery, Melville Street Nursery, Jigsaw Childcare, Pinocchio's, Cherrytrees Children's Nursrey, Busy Bees Day Nursery, Grange Loan Nursery, Mr. Squirrel's Nursery, Suffolk House Nursery, Stanwell Nursery, Bruntsfield House Nursery, Carrick Knowe Primary, Baby Rainbow, Childsplay, Playdays, Chapter One Childcare, Forbes Childrens Nursery, Greenhill Montessori Nursery, Grassmarket Nursery, Kidzcare, Cameron House Nursery School, Priestfield Road Nursery, Kirkliston Nursery, Mother Goose Nursery, Arcadia +http://www.citycarclub.co.uk/locations/138/Cables-Wynd/, http://www.citycarclub.co.uk/locations/edinburgh-car-hire/81-granton-road/, http://www.citycarclub.co.uk/locations/edinburgh-car-hire/146-marchmont-crescent/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/ +55.9627269 -3.1775121 +45 +5 +yes and 3 +yes +Iwojima, Kokosinseln, Weihnachtsinsel, Kokos-Insel, Einsamkeit, Insel der Dreifaltigkeit, Tromelin, Clipperton-Insel, Bouvetinsel, Amsterdam-Insel, Sankt-Paul-Insel, Sankt Helena, Himmelfahrtsinsel, Südliche Shetlandinseln, Weihnachtsinsel, Atlassow-Insel, Peter-I.-Insel, Rudolf-Insel, Howlandinsel, Osterinsel, Robinsón Crusoe +1 +49.4238771 8.7063851 +La bobine de fil, Fresque du Demi-Millénaire - Part 2, Le mur des Canuts, Le quartier des Eats-Unis (mur 18), Fresque Histoire des transports Lyonnais, Fresque "Lyon, la santé, la vie", Lyon et sa région, terre de l’humanisme, Lyon et sa région, terre de l’humanisme, Le mur du cinéma, Fresque de Gerland, La Fresque Lumineuse - La ville dans le futur, Fresque "Mur Démo", Espace Diego Rivera, Une cité industrielle (mur 4), Fresque de Shangaï, Le Théâtre des Charpennes, Abattoirs de la Mouche (mur 17), Annonce du Musée (mur 3), Années 1900 (mur 3), Cité idéale d'Egypte (mur 19), Cité idéale de Russie (mur 23), Cité idéale de l'Inde (mur 20), Cité idéale de la Côte d'Ivoire (mur 22), Cité idéale des USA (mur 24), Cité idéale du Mexique (mur 21), École (mur 10), École (mur 10), Etablissements sanitaires (mur 12), Habitations en communs, vue d'ensemble (mur 7), Habitations, vue rapprochée (mur 8), Hôpital de Grange-Blanche (mur 16), La gare, une perspective (mur 6), La tour d'horloges (mur 11), Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Le stade de Gerland (mur 15), Les hauts fourneaux (mur 14), Les services publics (mur 5), Tony Garnier Visionnaire (mur 2), Vue des usines (mur 13), Camionnette Disques Wem, Cité idéale de la Côte d'Ivoire (mur 22), Rue des grands chefs - Restaurant Paul Bocuse, Paul Bocuse - Restaurant Paul Bocuse, Mur de la Cour des Loges, Fresque "La renaissance", Fresque "Montluc - Jean Moulin", Fresque "Art et Industrie", Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, La Fresque du Demi-Millenaire - Part 1, La fresque des Lyonnais, La Bibliotheque de la Cité "des écrivains en Rhône-Alpes", Boulevard de la B.D., Boulevard de la B.D., Boulevard de la B.D., La Dombes, Fresque de Meyzieu, Fresque des Fourchettes, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Fresque idéale de Québec, Charlie Chaplin Bubbles, Mayoud Honda, Fresque "Oullins Centre-ville", Fresque "Du Pont d'Oullins", Mur peint : L’auberge savoyarde, La Fresque du Foyer, La Fresque Art Déco, Fresque RTE Lyon La Mouche, Mur peint, Fresque, Fresque, Fresque, Fresque "Chez Jeanne", Fresque "Allée Arborée", Fresque "La Forge", Fresque "Les Diligences", Fresque "Les Vieux Métiers 1", Fresque "Les Vieux Métiers 2", Fresque "La Route de la Soie", La Fresque du Centenaire 1912-2012, La Fresque du Centenaire 1912-2012, Fresque "Gerland Biotechnologies", La "Fresque Végétale Lumière", Fresque des Vourlois", Fresque du Gymnase, Poster en facade gratte ciel, Fresque des Roses - St Priest, Fresque des Roses - Lyon, Av Santy, Fresque Agir pour la biodiversité, Tag 16m2, Fresque aerosol, Fresque "Les basiliques de Saint-Just", Fresque Le marathon de l'impossible, Fresque "La cité KAPS" and 45.7615378 4.9252989, 45.7242776 4.8539418, 45.7858145 4.8075880, 45.7779285 4.8279690, 45.7316295 4.8668787, 45.7484993 4.8788479, 45.7498654 4.8759864, 45.7698700 4.7879340, 45.7698985 4.7880655, 45.7549115 4.8434004, 45.7245886 4.8263897, 45.7433556 4.8405258, 45.7196057 4.8008161, 45.7318565 4.8358705, 45.7326668 4.8630359, 45.7375747 4.8616255, 45.7725199 4.8663498, 45.7321697 4.8664580, 45.7336465 4.8632348, 45.7328203 4.8629032, 45.7320947 4.8674966, 45.7330177 4.8657973, 45.7324535 4.8672057, 45.7331360 4.8666865, 45.7335600 4.8653728, 45.7325955 4.8671070, 45.7319545 4.8635870, 45.7321249 4.8634546, 45.7316965 4.8647521, 45.7323801 4.8642213, 45.7322374 4.8643323, 45.7323075 4.8663529, 45.7329498 4.8637779, 45.7314132 4.8640073, 45.7385048 4.8613236, 45.7387649 4.8607244, 45.7389336 4.8609359, 45.7328475 4.8659300, 45.7310051 4.8652929, 45.7331061 4.8636557, 45.7333891 4.8624614, 45.7315452 4.8648710, 45.7756330 4.7951910, 45.7332067 4.8666311, 45.8155738 4.8472165, 45.8156435 4.8475277, 45.7649855 4.8287925, 45.7165371 4.8098566, 45.7493533 4.8609118, 45.6634167 4.8424264, 45.7209120 4.8541671, 45.7235048 4.8539594, 45.7222175 4.8540626, 45.7227953 4.8540163, 45.7249477 4.8538288, 45.7681064 4.8280574, 45.7659207 4.8312600, 45.7759090 4.8015510, 45.7760780 4.7952180, 45.7764025 4.7984375, 45.8202824 4.8705136, 45.7664155 5.0049470, 45.7704495 4.8643856, 45.7617643 4.8152072, 45.7621030 4.8160960, 45.7618195 4.8162683, 45.7342924 4.8626980, 45.7745993 4.8606941, 45.8437735 4.7340205, 45.7150814 4.8078204, 45.7175164 4.8098900, 45.7450213 4.8660796, 45.7502318 4.8416473, 45.7513725 4.8390037, 45.7205996 4.8439283, 45.7690470 4.7998735, 45.7697129 4.9524500, 45.7714030 5.0001735, 45.5828000 4.6317350, 45.7083270 4.8272787, 45.7318628 4.9995743, 45.7316843 5.0009960, 45.7317208 4.9997166, 45.7322290 4.9975134, 45.7340142 4.9964253, 45.7337846 4.9972670, 45.7723084 4.8215466, 45.7449245 4.8424444, 45.7452687 4.8413678, 45.7252956 4.8413865, 45.7696009 4.8272315, 45.6584498 4.7736478, 45.7081288 4.7481631, 45.7680770 4.8801051, 45.6946293 4.9406443, 45.7296178 4.8752517, 45.7463509 4.8459884, 45.7677299 4.8312641, 45.7297744 4.8742560, 45.7551709 4.8469660, 45.8764848 4.8346205, 45.8684698 4.8394062, 45.7434934 4.8478974, 45.7559238 4.8169452, 45.7447945 4.9069783, 45.7179757 4.8174971, 45.7180962 4.8187223 +http://gloria-kamera-kinos.de +1 +55.9700633 -3.1697434 and 55.9801960 -3.1982556 +91 +64 +01 44 54 39 00 +indaba +yes +no +yes +48.8475254 2.3740095, 48.8461336 2.3944472, 48.8470535 2.3936319, 48.8758689 2.3483462, 48.8828001 2.3714770, 48.8820834 2.3282055, 48.8762091 2.3397990, 48.8473760 2.3414870, 48.8279402 2.3288089, 48.8579444 2.3717706, 48.8470191 2.3535114, 48.8927622 2.3434358, 48.8541702 2.3858665, 48.8532844 2.3390695, 48.8598488 2.3084707, 48.8855486 2.2906636, 48.8838490 2.2883840, 48.8842390 2.2945020, 48.8360380 2.3520261, 48.8755166 2.3946714, 48.8477091 2.3186906, 48.8584888 2.3703620, 48.8736719 2.3586685, 48.8471373 2.3529239 +43.6196177 3.8651667, 43.4635300 3.6888900, 43.6304227 3.8875373, 43.6248205 3.8690435, 43.6188170 3.8854467, 43.6354093 3.8774770, 43.6595006 3.8914075, 43.6592117 3.8922409, 43.6589289 3.8923654, 43.7703775 4.0223446, 43.6370866 3.8147100, 43.5603989 3.9342558, 43.5595844 3.9351869, 43.6118723 3.9244185, 43.6116804 3.9251287, 43.6124857 3.9234893, 43.6124114 3.9246155, 43.6131709 3.9241006, 43.6134617 3.9236637, 43.6053399 3.9092808, 43.6121035 3.9101962, 43.6119897 4.0122314, 43.6120349 4.0125591, 43.6676906 4.0188286, 43.6680062 4.0195422, 43.6293766 3.9043547, 43.6298566 3.9048257, 43.5324155 3.9297334, 43.6403045 3.8460831, 43.6125180 3.8884380, 43.6748706 4.1230635, 43.6745966 4.1230879, 43.6743846 4.1233491, 43.6740383 4.1241561, 43.5600406 3.8796149, 43.6499929 4.0097323, 43.6456026 4.0095082, 43.6181856 3.8939608, 43.6990930 3.8995231, 43.6463973 3.8634916, 43.6063473 3.8883414, 43.5971203 3.8380027, 43.6209565 3.8143041, 43.8576951 3.9064011, 43.3950979 3.6709474, 43.3950057 3.6711243, 43.3925472 3.6769695, 43.3924662 3.6771425, 43.4013858 3.6905370, 43.4043876 3.6870145, 43.4111663 3.6832801, 43.4110256 3.6831538, 43.4114924 3.6835248, 43.4173887 3.6694803, 43.4149746 3.6721276, 43.4128627 3.6872955, 43.4130923 3.6875689, 43.4013134 3.6684044, 43.3988445 3.6717365, 43.3986512 3.6715885, 43.3986047 3.6713708, 43.3982223 3.6715411, 43.3983194 3.6720080, 43.3982674 3.6717502, 43.3988763 3.6713845, 43.6062050 3.7849035, 43.6068900 3.7847798, 43.6066603 3.7843870, 43.5792410 3.7608490, 43.4439794 3.6146023, 43.4440020 3.6148260, 43.4477997 3.6107272, 43.5541925 3.7755402, 43.6190258 3.8859952, 43.6187130 3.8858420, 43.6183438 3.8853528, 43.6188514 3.8854599, 43.6184075 3.8851477, 43.6183055 3.8856168, 43.6190914 3.8858028, 43.6060735 3.9060022, 43.6060542 3.9062078, 43.6062323 3.9054241, 43.6060349 3.9064195, 43.6950162 3.7986461, 43.6960303 3.7984714, 43.6954260 3.7983572, 43.6950087 3.7984189, 43.6954369 3.7985825, 43.6946418 3.7986694, 43.6063922 3.9050274, 43.6504122 3.7880930, 43.6501715 3.7884041, 43.6505437 3.7882909, 43.6503037 3.7885951, 43.6295197 3.9051868, 43.6294484 3.9045513, 43.6298983 3.9050431, 43.6411686 3.8995370, 43.6299781 3.8876007, 43.6308722 3.8877903, 43.6303299 3.8879352, 43.6299259 3.8877818, 43.6303757 3.8877502, 43.6282390 3.8632221, 43.6279253 3.8628588, 43.6281890 3.8626720, 43.6284773 3.8628714, 43.6283834 3.8624119, 43.6351314 3.8636790, 43.6357512 3.8637785, 43.6355570 3.8631881, 43.6357011 3.8630681, 43.6355878 3.8638678, 43.6359183 3.8637031, 43.6189485 3.8849220, 43.6288024 3.8403341, 43.6289029 3.8407602, 43.6284504 3.8405007, 43.6288530 3.8405514, 43.6076001 3.7315334, 43.4879073 3.7167091, 43.4683633 3.6931744, 43.6588634 3.9204358, 43.6581442 3.9206383, 43.3386652 3.5768270, 43.6236490 3.8315918, 43.6094471 3.8297475, 43.5844279 3.8017618, 43.5841828 3.8014655, 43.5843069 3.8016160, 43.6106770 3.7719656, 43.5785707 3.8199856, 43.5782830 3.8203519, 43.5784668 3.8195274, 43.5786200 3.8202001, 43.5779101 3.8202660, 43.5782304 3.8201176, 43.5785146 3.8197423, 43.5779591 3.8204826, 43.5781786 3.8198865, 43.4928581 3.7064885, 43.4930357 3.7066242, 43.4931850 3.7062247, 43.5600752 3.8794021, 43.5603593 3.8797128, 43.5597995 3.8794261, 43.5603939 3.8795000, 43.5504876 3.8944674, 43.5564311 3.9032723, 43.6751515 4.0900251, 43.6750817 4.0894764, 43.6668274 3.7199569, 43.6666278 3.7197356, 43.5799783 3.8727698, 43.6720712 4.0327426, 43.6721119 4.0322913, 43.6720916 4.0325169, 43.6720509 4.0329683, 43.6353791 3.8775846, 43.6357761 3.8775156, 43.6355727 3.8769834, 43.6353122 3.8774070, 43.6357096 3.8773415, 43.6352450 3.8772303, 43.6354487 3.8777708, 43.6356421 3.8771621, 43.6309218 3.8876037, 43.6882097 3.8488092, 43.6880132 3.8480228, 43.6738209 3.8568172, 43.6881795 3.8476400, 43.6781106 3.8322225, 43.6882511 3.8486040, 43.6880961 3.8478320, 43.6881650 3.8490306, 43.6741370 3.8571353, 43.6739417 3.8566669, 43.6741742 3.8566460, 43.6743821 3.8569949, 43.6742411 3.8573063, 43.6740311 3.8576433, 43.7064517 3.8325226, 43.7063777 3.8328509, 43.7070562 3.8328148, 43.7069830 3.8331370, 43.7070191 3.8329779, 43.7064136 3.8326915, 43.6217351 3.8618153, 43.6216226 3.8616570, 43.6217803 3.8621502, 43.6218955 3.8623103, 43.6220479 3.8625355, 43.6224426 3.8630973, 43.6221637 3.8626977, 43.6225690 3.8632733, 43.6409414 3.8556108, 43.6409594 3.8548162, 43.6422883 3.8551424, 43.6411543 3.8552102, 43.6419907 3.8552750, 43.6408680 3.8554119, 43.6412277 3.8554091, 43.5532616 3.9489233, 43.5532974 3.9491384, 43.6359677 3.8694266, 43.4894010 3.7913702, 43.7503421 3.8339782, 43.5794492 3.7612027, 43.5791413 3.7606797, 43.5890731 3.7711550, 43.5793441 3.7610240, 43.6290239 3.8919122, 43.7246941 4.0330700, 43.7245541 4.0335370, 43.7249258 4.0330614, 43.7952051 3.9151039, 43.5939438 3.8765475, 43.6075937 3.7317590, 43.7175398 4.1022024, 43.7197650 4.0981102, 43.7956867 4.0147178, 43.5003715 3.5957101, 43.5004674 3.5958936, 43.5006117 3.5956098, 43.6577901 4.1177023, 43.6266979 3.8500060, 43.4408553 3.6742844, 43.4825306 3.7963600, 43.4401836 3.6741654, 43.4401727 3.6743853, 43.4825849 3.7961615, 43.4814082 3.7992087, 43.4813241 3.7993784, 43.4405130 3.6744022, 43.4405238 3.6741823, 43.7370776 3.8491298, 43.7371064 3.8489010, 43.4433930 3.7627096, 43.6817649 3.9322289, 43.6821852 3.9320918, 43.6818709 3.9319810, 43.6816766 3.9325695, 43.6823958 3.9324529, 43.6820802 3.9323412, 43.6166474 3.8573751, 43.6167778 3.8572293, 43.6169069 3.8570850, 43.7716572 3.8722038, 43.7716761 3.8719703, 43.7724779 3.8720061, 43.7725346 3.8717966, 43.7722445 3.8715355, 43.5540665 3.7837156, 43.5541597 3.7828249, 43.5541647 3.7832681, 43.5543769 3.7837090, 43.5541622 3.7830416, 43.7682376 3.7872300, 43.6290100 3.9048519, 43.6290802 3.9050569, 43.6294071 3.9049095, 43.6183627 3.8847348, 43.6185035 3.8848193, 43.6283249 3.8628727, 43.6280499 3.8630256, 43.6130980 3.9238985, 43.6118006 3.9242177, 43.6126299 3.9238979, 43.6119738 3.9246815, 43.6120459 3.9248824, 43.6125571 3.9236917, 43.6116072 3.9249305, 43.6205171 3.8141108, 43.6205201 3.8138910, 43.6212321 3.8139109, 43.6213614 3.8145985, 43.6215582 3.8141418, 43.6208948 3.8144744, 43.6212301 3.8141362, 43.6215603 3.8139165, 43.6941003 4.0250540, 43.6939020 4.0254235, 43.6939633 4.0252162, 43.6591711 3.8920214, 43.6594367 3.8911990, 43.6592207 3.8916314, 43.6582198 3.9208321, 43.6585163 3.9206162, 43.6584414 3.9204205, 43.6502896 4.0020405, 43.6503821 4.0022410, 43.6976763 4.0298756, 43.6976520 4.0301065, 43.7694986 3.9601400, 43.7693289 3.9603186, 43.7260197 3.9250952, 43.7000992 3.8594266, 43.7003850 3.8597603, 43.7000587 3.8596552, 43.6997828 3.8593306, 43.6965048 3.8786983, 43.6294286 3.9046473, 43.6448152 3.8921332, 43.6343720 3.8632498, 43.6343556 3.8634788, 43.6463379 3.8480120, 43.6467585 3.8483247, 43.5597563 4.0995359, 43.5596119 4.0998101, 43.6604955 3.9747815, 43.6594627 3.9742013, 43.6594763 3.9737579, 43.6608145 3.9746570, 43.6594699 3.9739801, 43.6596202 3.9744323, 43.6746623 4.1232810, 43.5974312 3.8380987, 43.6740097 4.1243981, 43.6579117 4.1175456, 43.4168131 3.6694501, 43.4172565 3.6696232, 43.4164954 3.6692387, 43.4168583 3.6700443, 43.4169644 3.6690133, 43.4166912 3.6695817, 43.4171201 3.6697691, 43.4169346 3.6693176, 43.4169869 3.6699090, 43.4166172 3.6691078, 43.4167390 3.6689766, 43.6135328 3.9238701, 43.6502939 3.7884170, 43.6548582 3.8290418, 43.6544437 3.8295423, 43.6551308 3.8292559, 43.6543658 3.8293324, 43.6548350 3.8298195, 43.6550246 3.8290868, 43.6545522 3.8281160, 43.6547179 3.8296633, 43.6551134 3.8301784, 43.6544308 3.8279535, 43.6546682 3.8282731, 43.6585316 3.9205300, 43.6820105 3.9318961, 43.6065649 3.7848199, 43.6067483 3.7845747, 43.6060702 3.7850291, 43.6069780 3.7849695, 43.6366983 3.8144978, 43.6366426 3.8147147, 43.6369515 3.8148659, 43.6370071 3.8146491, 43.6375223 3.8149350, 43.6201327 3.8663456, 43.6202534 3.8662341, 43.5660709 3.9179278, 43.5653267 3.9177283, 43.5657089 3.9181635, 43.5660758 3.9181490, 43.5657038 3.9179432, 43.5653314 3.9179537, 43.5656987 3.9177206, 43.5653359 3.9181710, 43.5594394 3.9353604, 43.5593159 3.9355081, 43.6125490 3.8887910, 43.6125337 3.8886176, 43.6667200 3.7198656, 43.6717176 3.7734568, 43.6718233 3.7736332, 43.6163192 3.8109776, 43.6158471 3.8105923, 43.6162129 3.8106240, 43.6159302 3.8103997, 43.6160496 3.8110096, 43.6161310 3.8108193, 43.6987464 3.8995404, 43.7121686 3.9029334, 43.4589297 3.7543175, 43.4589180 3.7543228, 43.6529933 3.8373619, 43.6508843 3.8950530, 43.6507315 3.8949607, 43.6917648 3.7418407, 43.6916172 3.7414689, 43.5330244 3.9296765, 43.5325136 3.9298770, 43.5319172 3.9294506, 43.5327018 3.9295051, 43.5321554 3.9296680, 43.5317997 3.9299491, 43.5317809 3.9293286, 43.5331588 3.9297991, 43.5327959 3.9293240, 43.5324221 3.9300685, 43.6647713 4.1735240, 43.6644515 4.1740862, 43.6718014 3.7734595, 43.6678568 4.0194153, 43.6676896 4.0190494, 43.6680045 4.0199905, 43.6680054 4.0197640, 43.5706356 3.7717279, 43.5707013 3.7719698, 43.5706593 3.7717486, 43.5705880 3.7714909, 43.5601438 3.8799605, 43.5598776 3.8800888, 43.5602721 3.8801987, 43.6534796 4.0787354, 43.6534317 4.0791374, 43.6536756 4.0789644, 43.6533702 4.0789204, 43.6533058 4.0787087, 43.6117787 4.0135982, 43.6116863 4.0123985, 43.6121020 4.0127582, 43.6117384 4.0139610, 43.6118546 4.0144096, 43.6117353 4.0141854, 43.6116189 4.0137355, 43.6118512 4.0146316, 43.4863784 3.6633661, 43.4861532 3.6635014, 43.4865046 3.6633688, 43.4862666 3.6636656, 43.4863943 3.6632003, 43.5135970 3.7024561, 43.5137281 3.7024700, 43.5135969 3.7025896, 43.4111348 3.6832726, 43.4404802 3.6742619, 43.7041672 3.8778252, 43.7043817 3.8765733, 43.6989479 3.8996243, 43.7510089 3.9579067, 43.5564255 3.7255180, 43.5565316 3.7256822, 43.5561942 3.7255914, 43.5562476 3.7253865, 43.4499685 3.7554268, 43.4497053 3.7558145, 43.4498173 3.7559766, 43.4500955 3.7554737, 43.4503964 3.7552773, 43.4501893 3.7556489, 43.4503038 3.7551231, 43.4504932 3.7554528, 43.5783240 3.8199268, 43.5589490 4.0996964, 43.5614867 4.0995915, 43.5588310 4.0993635, 43.5596108 4.1002065, 43.5597695 4.0986958, 43.5597730 4.0984753, 43.5624254 4.1036310, 43.5620442 4.1003093, 43.5620269 4.1000831, 43.5602270 4.0988930, 43.5593704 4.0990005, 43.5605977 4.1003848, 43.5616143 4.0999743, 43.5620069 4.0998154, 43.5609309 4.0992624, 43.5624036 4.1032228, 43.5608617 4.0990610, 43.5588993 4.0989235, 43.5599738 4.1002174, 43.5599024 4.0992665, 43.5599671 4.1004379, 43.5605764 4.1001632, 43.5596042 4.1004270, 43.5614382 4.0993717, 43.5615297 4.1002809, 43.5621104 4.1024670, 43.5620271 4.1027993, 43.4247055 3.7309961, 43.4245646 3.7307196, 43.4247311 3.7312122, 43.4248063 3.7314121, 43.4246551 3.7310234, 43.5842544 3.8016492, 43.5856187 3.7997940, 43.4202704 3.6017871, 43.4202032 3.6019092, 43.4203031 3.6017291, 43.4203982 3.6015433, 43.4201108 3.6020917, 43.4893128 3.7915575, 43.7290629 4.0219910, 43.6880968 3.8480179, 43.6740794 3.8571485, 43.5503801 3.7080438, 43.5502980 3.7075846, 43.5515883 3.7111717, 43.4518665 3.6671118, 43.4519636 3.6666861, 43.4518669 3.6668843, 43.6074111 3.7317379, 43.6916862 3.7416501, 43.6953369 3.7984780, 43.7000865 3.8595497, 43.7266072 3.8137397, 43.7267602 3.8136946, 43.7264437 3.8138412, 43.7265187 3.8140551, 43.7369980 3.8489882, 43.7540555 4.0857547, 43.7537782 4.0857441, 43.7541045 4.0857538, 43.6578444 4.1176745, 43.5793560 3.7609405, 43.5456398 3.9801941, 43.5458161 3.9801484, 43.5456517 3.9807165, 43.5459442 3.9805395, 43.5458803 3.9803437, 43.5455247 3.9803186, 43.5455884 3.9805195, 43.5454319 3.9799658, 43.5599096 3.9347799, 43.5602684 3.9344068, 43.5599643 3.9347572, 43.5600943 3.9346043, 43.5600705 4.0993804, 43.5585077 4.1002962, 43.5611173 4.1003120, 43.5584472 4.1000942, 43.5624139 4.1034196, 43.5619971 4.1029447, 43.5610838 4.0998280, 43.5611005 4.1000704, 43.5620562 4.1026588, 43.6647299 4.1737164, 43.6648186 4.1737358, 43.6437886 3.9326955, 43.6438246 3.9325862, 43.6437605 3.9323772, 43.6436966 3.9321708, 43.6439294 3.9331897, 43.6420229 3.9652582, 43.6420525 3.9651019, 43.6423123 3.9648226, 43.6416609 3.9656105, 43.6326924 3.9203179, 43.6324614 3.9206625, 43.6325256 3.9202485, 43.6324927 3.9204607, 43.6325587 3.9200353, 43.6324312 3.9208576, 43.6325919 3.9198208, 43.5332304 3.8568364, 43.5331289 3.8569602, 43.5331879 3.8566513, 43.5330500 3.8571583, 43.5332676 3.8564538, 43.5333451 3.8562666, 43.5333622 3.8574047, 43.5334463 3.8572051, 43.5541752 3.7832580, 43.4169272 3.6695844, 43.4166904 3.6703722, 43.4166020 3.6702162, 43.4440702 3.6146922, 43.4929523 3.7062178, 43.4894008 3.7913551, 43.5066852 3.7949573, 43.5069129 3.7953969, 43.5068145 3.7952143, 43.5066745 3.7949634, 43.5065692 3.7946525, 43.5657141 3.9180220, 43.5004148 3.5958581, 43.7332502 3.9784726, 43.7333323 3.9784376, 43.7330291 3.9787029, 43.7334207 3.9786342, 43.6601367 3.9743142, 43.6934582 3.9942613, 43.6808329 3.9787335, 43.6936998 3.9940968, 43.6931284 3.9946566, 43.6932108 3.9941027, 43.6932085 3.9938757, 43.6931306 3.9948836, 43.6936308 3.9942973, 43.6808180 3.9785086, 43.6420334 4.0411045, 43.6419417 4.0413061, 43.6418471 4.0411296, 43.6720304 4.0329420, 43.6976765 4.0299962, 43.7165169 4.0057307, 43.7164697 4.0057088, 43.7164689 4.0059373, 43.7244638 4.0337393, 43.7253609 4.0825098, 43.7254229 4.0824351, 43.7295622 4.0782655, 43.7252981 4.0825861, 43.6749657 4.0897835, 43.6748368 4.0901688, 43.6748687 4.0896909, 43.6743777 4.1237602, 43.7694351 3.9602823, 43.7720773 3.8720978, 43.3985241 3.6717778, 43.4129657 3.6874107, 43.6052566 3.9098621, 43.6052841 3.9096716, 43.6053119 3.9094788, 43.6287984 3.8406235, 43.6400821 3.8366862, 43.6400282 3.8368928, 43.4799000 3.6236197, 43.5461014 3.7057959, 43.5463898 3.7060715, 43.5466769 3.7063529, 43.4755840 3.6699958, 43.5108626 3.6937431, 43.6508025 3.8950000, 43.6167099 3.8112201, 43.6167856 3.8110244, 43.4452547 3.7008790, 43.5438846 3.9752045, 43.5439446 3.9754071, 43.5042450 3.7163324, 43.6241536 3.7670944, 43.6241724 3.7668722, 43.4847620 3.7931640, 43.4847416 3.7929669, 43.7267439 4.0279504, 43.6098109 3.9151256 +440 +183 +487500 +yes +ab conduite, École de conduite Lamartine, Centre de conduite auto-moto, ECF, Auto-École, ECF Trinité, Cluny - Saint-Germain, C.E.R. Brancion, Permis Malin, Alkris, Auto école Place de Rungis, Auto Moto École Alésia, Caser formations, École de conduite Saint-Charles, Auto-École, Fati Auto école, Auto-école du chêne, ecf, La Réussite, École de conduite, C.E.R. Auto-École, Auto moto école, Auto-école Manin, Tour Eiffel Permis, Auto moto ecolde des Buttes Chaumont, C.E.R. Porte des Lilas, Permis Express, Auto école, ABIR C.F.R., Auto-école Cosmos and 48.8425822 2.3123874, 48.8214455 2.3651681, 48.8384650 2.3928000, 48.8788491 2.3549176, 48.8444172 2.3902043, 48.8766806 2.3400707, 48.8908100 2.3757534, 48.8939590 2.3470250, 48.8509898 2.2929663, 48.8750750 2.3586783, 48.8791144 2.3365425, 48.8505220 2.3461000, 48.8281412 2.3023917, 48.8284745 2.3030751, 48.8451775 2.3885757, 48.8237890 2.3481077, 48.8229290 2.3469037, 48.8277073 2.3307027, 48.8733527 2.3993062, 48.8250029 2.3166081, 48.8410757 2.2808723, 48.8324177 2.3616433, 48.8759983 2.3280939, 48.8787222 2.3744794, 48.8917005 2.3612335, 48.8397868 2.3974178, 48.8343346 2.4041298, 48.8306699 2.3543176, 48.8800260 2.2873860, 48.8888340 2.3055800, 48.8792550 2.3846850, 48.8800423 2.3744552, 48.8835398 2.3889119, 48.8832858 2.3874568, 48.8886151 2.3731039, 48.8490335 2.3011623, 48.8826632 2.3810175, 48.8771545 2.4074241, 48.8732079 2.3741442, 48.8731711 2.3799152, 48.8902508 2.3794782, 48.8623682 2.3671929 +1 +48.8785620 2.3603690 +yes +2508 +54 and 16 +11 +49.4534124 8.7619617 +48.8569549 2.3497208, 48.8562998 2.3535246, 48.8521302 2.3358217, 48.8553332 2.3464366, 48.8513763 2.3250565, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8453963 2.3255943, 48.8566284 2.3271644, 48.8661306 2.2897626, 48.8722447 2.3050374, 48.8450073 2.3757975, 48.8466279 2.2560360, 48.8694555 2.3406786, 48.8388399 2.2765067, 48.8176870 2.3444409, 48.8398451 2.2739161, 48.8566083 2.3533348, 48.8632334 2.3399229, 48.8620104 2.3390904, 48.8670418 2.3496240, 48.8657000 2.3535311, 48.8652453 2.3533870, 48.8443992 2.3820174, 48.8691076 2.3112127, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8729875 2.3210140, 48.8726568 2.3215983, 48.8776040 2.3524312, 48.8758310 2.3206114, 48.8720777 2.3056372, 48.8715518 2.3062553, 48.8688688 2.3012670, 48.8720769 2.2997667, 48.8721868 2.3033146, 48.8707626 2.3051595, 48.8701277 2.3044062, 48.8674712 2.3054788, 48.8667016 2.3011326, 48.8655118 2.3015698, 48.8713039 2.2970137, 48.8741074 2.2994150, 48.8744570 2.3007315, 48.8763620 2.3015161, 48.8767241 2.3018198, 48.8782249 2.2965872, 48.8972935 2.3883460, 48.8952805 2.3850234, 48.8599671 2.3250425, 48.8705380 2.3685763, 48.8293967 2.3790084, 48.8403358 2.3506549, 48.8725027 2.2851552, 48.8736890 2.2914977, 48.8768968 2.2823678, 48.8722856 2.2840680, 48.8693205 2.2843750, 48.8677158 2.2805552, 48.8396031 2.2624046, 48.8471492 2.3421620, 48.8470699 2.3417135, 48.8613479 2.3294517, 48.8623669 2.3098112, 48.8593696 2.3144127, 48.8734234 2.3305255, 48.8715078 2.3339896, 48.8459424 2.3060603, 48.8319830 2.3768014, 48.8720026 2.3359899, 48.8703752 2.3029557, 48.8738314 2.3297043, 48.8790223 2.2930687, 48.8647821 2.3501454, 48.8815254 2.3543330, 48.8634010 2.3478656, 48.8580953 2.3988158, 48.8671989 2.3667020, 48.8410399 2.3210471, 48.8429112 2.3235502, 48.8423484 2.3212962, 48.8320324 2.3866588, 48.8336457 2.2895795, 48.8764091 2.3236995, 48.8476756 2.3411763, 48.8305332 2.3138423, 48.8763053 2.2944546, 48.8763219 2.2947532, 48.8788573 2.2928071, 48.8761984 2.2930848, 48.8760963 2.2927992, 48.8532277 2.3589001, 48.8863474 2.2875098, 48.8740366 2.4050675, 48.8780164 2.4108510, 48.8260635 2.3616139, 48.8239032 2.3657211, 48.8892294 2.3935497, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8381765 2.3815493, 48.8731938 2.3290960, 48.8212980 2.3643164, 48.8549966 2.4012505, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8292317 2.3084985, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8465587 2.2612329, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8868617 2.3693195, 48.8698031 2.3099017, 48.8343023 2.3639410, 48.8720076 2.3153410, 48.8624814 2.3328854 +37 +49.4123589 8.7022987, 49.3998237 8.6458733, 49.4430123 8.7521139, 49.3925852 8.6533247, 49.4255141 8.6477603, 49.4239759 8.6793816, 49.3976334 8.6709378, 49.3829854 8.6804822, 49.3865139 8.6621286, 49.4332539 8.6406705 +http://www.musee-armee.fr/, www.aphp.fr/, http://www.lesartsdecoratifs.fr/francais/arts-decoratifs/, http://www.arts-et-metiers.net/, http://www.tourjeansanspeur.com/, www.musee-moreau.fr, http://www.paris.fr/loisirs/musees-expos/musee-des-egouts/visite-publique-des-egouts-de-paris/rub 9691 stand 5943 port 23931, http://www.pasteur.fr/ip/easysite/pasteur/fr/institut-pasteur/musees/musee-pasteur, www.daliparis.com/, http://www.musee-en-herbe.com/, http://www.mep-fr.org, www.annehoguet.fr/musee.htm, http://www.museedelapoupeeparis.com/, http://www.espace-icare.net/, catacombes.paris.fr/, http://equipement.paris.fr/conservatoire-municipal-claude-debussy-site-la-jonquiere-3976, www.musee-erotisme.com, http://www.paris.fr/politiques/conservation-restauration/atelier-de-restauration-et-de-conservation-des-photographies-de-la-ville-de-paris/p7672#, http://www.petitpalais.paris.fr/, http://www.musee-legiondhonneur.fr/, http://conciergerie.monuments-nationaux.fr/, www.museeduvinparis.com, http://www.ladressemuseedelaposte.com/, http://www.baccarat.fr/fr/univers-baccarat/musees/gallery-opening-hours.htm, http://forumdesimages.fr/, http://www.fgo-barbara.fr, www.museeduchocolat.fr, http://www.citechaillot.fr/fr/, www.musee-marine.fr, http://www.museefm.org/, www.fondationlecorbusier.asso.fr, http://musee-contrefacon.com/, www.dapper.com.fr, www.mairie6.paris.fr, www.le-maf.com/, www.bibliotheque-polonaise-paris-shlp.fr, www.icp.fr, http://www.christofle.com/, www.musee-clemenceau.fr/, www.compagnons.org/, www.upmc.fr/, www.avh.asso.fr/, www.musee-henner.fr/, www.bium.univ-paris5.fr/musee/, www.museemaillol.com/, http://www.museedeslettres.fr/, www.museedumontparnasse.net/, http://www.mines-paristech.fr/, www.paris.fr/, crypte.paris.fr/, www.bnf.fr/, prefecturedepolice.interieur.gouv.fr, http://www.paris.fr/loisirs/musees-expos/memorial-leclerc-et-de-la-liberation-de-paris-musee-jean-moulin/p6923, http://www.centrepompidou.fr/cpv/ressource.action?param.id=FR R-89fd49e847165bc78d564f6dbeb6777¶m.idSource=FR E-2ab598d3369ad7a58ead7e6be32ba7b, http://www.maxims-musee-artnouveau.com/, http://www.henricartierbresson.org, http://www.avocatparis.org/home/presentation-et-missions/histoire-du-barreau-de-paris/musee-virtuel.html, http://www.quaibranly.fr/, http://www.museum-mineral.fr/, www.imarabe.org/, equipement.paris.fr/JARDIN TINO ROSSI, www.hallesaintpierre.org, http://equipement.paris.fr/conservatoire-municipal-w-a-mozart-1595, www.jeudepaume.org, www.musee-orangerie.fr/, http://www.cwb.fr/, www.curie.fr/, www.grandpalais.fr/, http://www.pavillon-arsenal.com/, http://www.gaite-lyrique.net/, www.musee-moyenage.fr/, www.mahj.org, http://www.archivesnationales.culture.gouv.fr/, http://www.museepicassoparis.fr/, http://www.paris.fr/loisirs/musees-expos/musee-cognacq-jay/p6466, www.musee-delacroix.fr, http://www.musee-orsay.fr, www.institutneerlandais.com/, www.pinacotheque.com/, www.lesartsdecoratifs.fr/, http://cernuschi.paris.fr/, www.musee-rodin.fr/, http://www.musee-jacquemart-andre.com/, equipement.paris.fr/Conservatoire Municipal Nadia et Lili Boulanger, https://www.sites.google.com/site/histoiregrouperenault/expos/expo-musee, http://www.ville-clichy.fr/382-le-pavillon-vendome-centre-d-art-contemporain.htm, http://www.le-bal.fr/, http://www.boulognebillancourt.com/previous/museepaulbelmondo/index.html, http://equipement.paris.fr/centre-d-animation-les-abbesses-1154, http://www.fondation-pb-ysl.net, www.mam.paris.fr/, www.palaisdetokyo.com/, fondation.cartier.com/, www.guimet.fr/, paris.fr/loisirs/musees-expos/musee-bourdelle/p6408, http://www.guimet.fr/fr/musee-dennery/informations-pratiques, mjcneuilly92.com, www.marmottan.com, http://vie-romantique.paris.fr, http://balzac.paris.fr, http://eaudeparis.fr/lespace-culture/pavillon-de-leau/, http://www.memorialdelashoah.org/, http://www.mcjp.fr/, http://zadkine.paris.fr, www.museedemontmartre.fr/, www.chassenature.org, http://www.mobiliernational.culture.gouv.fr/, www.museeduluxembourg.fr/, http://www.palais-decouverte.fr/, www.si.se/Paris/, http://www.fondationlouisvuitton.fr/, http://www.monnaiedeparis.fr/, http://palaisgalliera.paris.fr/, http://carnavalet.paris.fr/, http://www.louvre.fr/, http://sainte-chapelle.monuments-nationaux.fr/ +playground, sports centre, swimming pool, water park, pitch, park, miniature golf, dance, marina, horse riding, picnic table, garden, stadium, nature reserve, common, track, youth club, recreation ground, piste, club, firepit, dog park +yes +49.3819891 8.7064791, 49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.3903727 8.7038688, 49.3716601 8.7156918, 49.4157261 8.7004521, 49.4532301 8.7620686, 49.4129054 8.7286879, 49.4209333 8.7223854, 49.4221949 8.7060036, 49.4291183 8.7154588, 49.4157681 8.7006398, 49.4088360 8.7691224, 49.3882437 8.7497467, 49.4390162 8.7105044, 49.4305905 8.7775493, 49.4272716 8.7035465, 49.4393938 8.7104846, 49.4497204 8.7157564, 49.4428768 8.7011414, 49.4395208 8.7105611, 49.4326079 8.7091648, 49.4328392 8.7092032, 49.4342309 8.7101843, 49.4342740 8.7112555, 49.4442518 8.7151750, 49.4447625 8.7168293, 49.4468314 8.7142297, 49.4308426 8.7277671, 49.3795036 8.7459449, 49.3921408 8.7451114, 49.3950715 8.7223322, 49.3736364 8.7471636, 49.4311330 8.7033214, 49.4278439 8.6859389, 49.4082372 8.7465476, 49.4136970 8.7613615, 49.4238953 8.7651482 +53.7974026 -1.5888196, 52.5193429 -1.9956767, 51.4440363 0.2189902, 51.5082357 -0.2702788, 51.5271002 -0.0593109, -27.5314713 153.0241461, -37.8707434 145.2431359, -27.4457530 152.9935294, 52.7727382 -1.2061350, 52.9182441 -1.4749515, -26.1397921 27.9209351, 43.2092448 2.3257355, 52.8030223 -1.6298536, 52.5407303 -1.8844135, -37.8034410 144.9837020, 54.5622982 -1.3123694, 51.5449043 -0.1416992, 50.9199375 -1.4306764, 43.4360264 -80.5132918, 51.5842350 -2.9935927, 53.7988906 -1.5379273, 49.0749717 2.0780349, 51.3726774 -0.1000722, -37.9978007 145.0847359, -38.0207138 145.3038105, 52.2470692 0.7113915, -31.7415218 115.7626690, 51.6128466 -0.0650466, 43.6027465 1.4421408, -37.7844296 175.2784647, 57.1501326 -2.1016665, 47.2864345 5.0097571, 51.3656399 -0.1942536, -33.9168798 18.3889836, -34.8450340 138.5054716, -32.5353554 115.7406294, 55.9412241 -3.1809783, 28.4701750 -16.2500236, 52.0579419 1.1564266, 53.8020197 -1.5261661, -37.8501489 145.0917119, -37.7385625 145.0038051, 43.6080787 -79.6174984, 48.6581548 7.7300689, 48.8903264 2.1958847, 47.6164998 6.8531227, 52.6367410 1.3263925, 52.6341261 -1.6934881, 52.6312941 1.2882855, 52.6308935 1.2888212, 44.1201424 4.8408198, 52.2007041 0.1351282, 51.4839808 -0.2016925, 51.5811304 -0.0335441, 42.7757912 -71.4436183, -34.8765880 138.5513999, 52.9270411 -1.2156547, 51.3785518 -0.1035202, 51.7303181 0.4727366, 54.2812862 -0.4062226, 51.5361040 0.0770952, 51.5400520 0.0818832, 37.1296433 -76.5348145 +Trinity Apse +1 +55.9849796 -3.1929699 +Paroisse de Plaisance and 48.8343750 2.3166882 +277 +Heidelberg Marriott Hotel +48.8186338 2.3589337, 48.8370737 2.3788669, 48.9000609 2.3653350, 48.8563367 2.3884320, 48.8230158 2.3140310, 48.8685531 2.3429838, 48.8649072 2.2687029, 48.8723005 2.4127029 +161.26302111969574 +Bank of Scotland +10 +204 +yes +605 +yes +Bank of Scotland Halifax, Santander, Clydesdale Bank, Lloyds Banking Group, TSB, Royal Bank of Scotland, Bank of Scotland, LBG, Abbey, Nationwide Building Society, Royal Bank of Scotland, Lloyds Banking Group, Clydesdale Bank, Royal Bank of Scotland, Royal Bank of Scotland, Lloyds Banking Group, Clydesdale Bank, Lloyds Banking Group, Bank of Scotland, Halifax Bank of Scotland, Lloydes Banking Group, Lloydes Banking Group, Royal Bank of Scotland, Lloyds Banking Group, Lloyds Banking Group, Co-operative Bank, Nationwide, RBS, Lloyds Banking Group, Barclays Bank PLC, Barclays Bank PLC, TSB, HBOS, Lloyds Banking Group, Royal Bank of Scotland, Lloyds Banking Group, Clydesdale Bank, Lloyds Banking Group +no +Parc des Expositions de Paris - Porte de Versailles, Point zéro des Routes de France, Musée Grévin, Promenade du Canal Saint-Martin, Vedettes de Paris, Palais de Musique, Promenade Canal St. Martin, Plus Vieil Arbre de Paris, Place du Carrousel, Fontaine Cuvier, Le Centaure - César, Brasserie Bofinger, Renard des Steppes, Autruche, Takin, Markhor, Cheval de Przewalski, Dromadaire, Bharal, Flamant rose, Lama, casoar, Emeu, Antilope, Gaur, Poudou, Pécari, Baudet du Poitou, Raton laveur, Wallaby, Bouquetin, Takin, Anoa, Cabiai, Daim, Yak, Ara, Trompe-oeil Bach, Himalaya, Nouvelle-Calédonie, Cévennes, Maroc, Corse, Forêts Tropicales Humides, Rapaces, Espagne, Balkans, Chien des buissons, Provence, Préalpes, USA, Zone Arides des Déserts, Alpes, Histoire des Plantes, Petite Ferme, Caucase, La Galerie des Enfants, Japon - Chine, Tourbière, Faisanderie, Galliformes, Rapaces nocturnes, Panda roux, Oiseaux tropicaux, Binturong, Le Manoir de Paris, Lido, Chais et entrepôts de Bercy, Cinéma - Spectacle Centre Wallonie-Bruxelles, Tour de l'Horloge, Ancienne Crèmerie, Carrières des Capucins, Le Petit Train, Batobus, Maison de Madame Violet Trefusis, Canauxrama, Daim, Babouin de Guinée, Capucin, Capybara, Chien des buissons, Girafe, Glouton, Grand Koudou, Guanaco, Jaguar, Lion d'Afrique, Loup ibérique, Lynx d'Europe, Mara, Marabout d'Afrique, Oryx algazelle, Propithèque couronné, Poudou, Singe laineux, Tapir terrestre, Vautour fauve, Zèbre de Grévy, Autruche, Addax, Grand Calao terrestre, Grue couronnée, Manchot de Humboldt, Nandou de Darwin, Otarie à crinière, Puma, Rhinocéros blanc, Aigrette garzette, Ara hyacinthe, Avocette élégante, Calao trompette, Chevalier gambette, Cigogne d'Abdim, Dendrocygne fauve, Echasse blanche, Flamant rose, Fossa, Grand Hapalémur, Héron garde-bœuf, Ibis chauve, Ibis falcinelle, Loutre d'Europe, Lémur catta, Lémur couronné, Lémur vari roux, Lémur à ventre roux, Milan royal, Ombrette, Pigeon de Guinée, Roussette paillée africaine, Sarcelle hottentote, Souchet d'Europe, Spatule d'Afrique, Tantale ibis, Tortue rayonnée, Touraco violet, Vanneau armé, Vautour moine, Vautour percnoptère, Vivarium européen, Grille du Coq, Proust (dernier lieu de vie et décès), Bureau de Gustave Eiffel, Auditorium, La Sorbonne, Tour Eiffel, Cimetière du Père-Lachaise, Tour Montparnasse, Panthéon, Tour Saint-Jacques, Château de Vincennes, Basilique du Sacré-Cœur, Collège des Bernardins, Reptiles, Hôtel Lebrun, Pont Neuf, Pont Neuf, Église Saint-Eustache, Église de la Madeleine, Opéra Garnier, Hôtel de Lauzun, Presbytère, Centre Pompidou, Centre Wallonie-Bruxelles, Maison de Nicolas Flamel, Argonaute, Rotonde de la Villette, Cathédrale Saint-Louis des Invalides, Elysées Céramic, Maison de Tristan Tzara (Adolf LOOS Architecte), Moulin de la Galette, Palais de Chaillot, Palais de Chaillot, L'Orangerie de Bagatelle, Grande Volière, Dodo Carousel, Laboratoire Aérodynamique EIFFEL, Les Grandes Serres du Jardin des Plantes, École Militaire, Église du dôme, Place d'Aligre, École Nationale Supérieure des Beaux-Arts, Carrousel de Montmartre, Cavea des Arènes de Lutèce, Assemblée nationale, Bateaux-Mouches, Cathédrale Notre-Dame de Paris, Place de la République, Arc de Triomphe, Plan du quartier Jeanne d'Arc, Arc de Triomphe du Carrousel, Colonne de Juillet, Carrousel de la Tour Eiffel, Salle du Livre d'Or, Moulin de la Galette, pavillon Eiffel, pavillon Ferrié, Hippodrome de Longchamp, Hôtel de Ville, Palais de Justice, Palais de l’Élysée, Hôtel des Invalides, Place des Vosges, Petit Palais, Rotonde, Hôtel de Soubise +yes +yes +189 +yes +no +21 +55.9286779 -3.2096502, 55.9475295 -3.2065018, 55.9709217 -3.2085540, 55.9710794 -3.2083765, 55.9713224 -3.2074276, 55.9584008 -3.2092092, 55.9601757 -3.2559248, 55.9312309 -3.2523089, 55.9511924 -3.1760524, 55.9073786 -3.2585910, 55.9531081 -3.2008271, 55.9450251 -3.2048945, 55.9616053 -3.1809060, 55.9122939 -3.1636240, 55.9053215 -3.1319819, 55.9359156 -3.2099930, 55.9391016 -3.2261638, 55.9426048 -3.1828681, 55.9284825 -3.2096589, 55.9457396 -3.1854060, 55.9492055 -3.1928272, 55.9457630 -3.2348824, 55.9531031 -3.1974183, 55.9442023 -3.2038200, 55.9350165 -3.1943787, 55.9503960 -3.1873714, 55.9086565 -3.2096817, 55.9809058 -3.1784709, 55.9569588 -3.1874026, 55.9013749 -3.2048039, 55.9541472 -3.1916750, 55.9498996 -3.2091714, 55.9511059 -3.2031477, 55.9504209 -3.2072119, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9537368 -3.1946870, 55.9537500 -3.1946096, 55.9468356 -3.2159630, 55.9379488 -3.2323230, 55.9573609 -3.2064305, 55.9530711 -3.2010501, 55.9526098 -3.2039830, 55.9430480 -3.2039420, 55.9576925 -3.1843665, 55.9527506 -3.1965698, 55.9507785 -3.2057118, 55.9514350 -3.2026235, 55.9517068 -3.2027827, 55.9516311 -3.1963503, 55.9717098 -3.1715371, 55.9491465 -3.2108241, 55.9522247 -3.1996285, 55.9420700 -3.2221190, 55.9533643 -3.1992326, 55.9695931 -3.1723910, 55.9552824 -3.1886051, 55.9275226 -3.2095127, 55.9462004 -3.1850058, 55.9700768 -3.1718970, 55.9526548 -3.1971889, 55.9267933 -3.2094073, 55.9245093 -3.2096867, 55.9562269 -3.1380823, 55.9275049 -3.1644260, 55.9274977 -3.1640447, 55.9683279 -3.1734427, 55.9375948 -3.1784176, 55.9461675 -3.2083866, 55.9325351 -3.1397933, 55.9453646 -3.1914973, 55.9453776 -3.1916473, 55.9507459 -3.2052838, 55.9538645 -3.1977873, 55.9549461 -3.1936274, 55.9550466 -3.1929475, 55.9519378 -3.2048677, 55.9527501 -3.2005561, 55.9525006 -3.1971100, 55.9535447 -3.1920694, 55.9528295 -3.1149002, 55.9533094 -3.1146987, 55.9524703 -3.1136856, 55.9587335 -3.2260450, 55.9575370 -3.1698723, 55.9252818 -3.2099781, 55.9342963 -3.2105127, 55.9756176 -3.1666794, 55.9748270 -3.2379923, 55.9544888 -3.1913969, 55.9756625 -3.1668579, 55.9528337 -3.1973510, 55.9544909 -3.1908045 +no +Riegler, Bäckerei Rühle, Cafe Frisch, Mahlzahn, Mantei, Riegler, Paris, Mantei, Kamps, Der Kleine Gundel, Bäckerei Rodemer, Bäcker Tschakert, Bäckerei Riegler, Stefansbäck, Bäckerei Grimm, Grimminger, Mantei, Seip, Cafè Frisch, Bäckerei Tschakert, Grimminger, Mahlzahn Vollkornbäckerei, mantei, Bridi, Conditorei Zimmermann, Mantei, Grimminger, Bäckerei Tschakert, Riegler, Görtz, Rühle, Kamps, Göbes Sophie, Schlierbacher Schiff, Mantei, Riegler, Mahlzahn Vollkornbäckerei, Rühle Bäckerei, Riegler, Wiener Feinbäckerei Heberer, LE CROBAG, Helin Backwaren, Grimminger, Mantei, Pfänder, mantei, Mantei, Stefansbäck, Riegler, Patisserie La Flamm, Grimminger, Backshop, Lecker Bäcker, Breitenstein Bäckerei, K&U, Backwaren, Bäckerei Mantei, Bäckerei Wacker, Bäckerei & Konditorei Stahl, Bäckerei Siegel, Café Frisch, Goldkorn, Görtz, Görtz, Laib & Leben, Riegler, Bäckerei Bernauer, Kohlmann +yes +49.5526338 8.6554413, 49.5513229 8.6687450, 49.5554496 8.6699318, 49.5596224 8.6688235, 49.5462868 8.6715791, 49.5492546 8.6740750, 49.6390443 8.7586809, 49.6491519 8.7786154, 49.5496361 8.6716921, 49.6146080 8.6736398, 49.6015351 8.5181143, 49.6047659 8.4764246, 49.6458511 8.5671019, 49.6467494 8.5615748, 49.6566529 8.5677748, 49.6445836 8.5677274, 49.6417095 8.5631262, 49.5971548 8.4682347, 49.6052567 8.4710750, 49.6036653 8.4650992, 49.5192833 8.5023439, 49.5017017 8.5044127, 49.5273884 8.7489962, 49.5625744 8.6656969, 49.6468579 8.6317019, 49.4764727 8.5581500, 49.5001511 8.4141813, 49.4858432 8.3892989, 49.5954551 8.4634480, 49.5940946 8.4598127, 49.5299064 8.7421002, 49.5270569 8.7608652, 49.5435708 8.5967846, 49.5979747 8.4757516, 49.5988026 8.4845303, 49.5885363 8.4859606, 49.5845876 8.4879738, 49.5026807 8.4702380, 49.6017750 8.5148540, 49.5953600 8.5833630, 49.5989820 8.5839630, 49.4766349 8.5210604, 49.4766109 8.5210589, 49.4760288 8.4678779, 49.5279213 8.3955159, 49.6041485 8.7393504, 49.5271969 8.6651823, 49.6229182 8.6958850, 49.5976216 8.7371486, 49.5990671 8.7380614, 49.6233348 8.7592105, 49.6239213 8.7540220, 49.5693320 8.7183717, 49.5799659 8.7150421, 49.5836852 8.7060844, 49.5668665 8.7346098, 49.5987193 8.7329887, 49.4784646 8.4963955, 49.4822964 8.4896176, 49.4776805 8.4832901, 49.5900011 8.7564846, 49.5824512 8.7701378, 49.6499908 8.6340695, 49.5505849 8.8129790, 49.5497942 8.8086360, 49.6147886 8.7162592, 49.4815121 8.4828496, 49.5819364 8.7454907, 49.6424512 8.6384492, 49.5973081 8.7352102, 49.5596089 8.7845832, 49.5282525 8.3853190, 49.4806473 8.5961070, 49.5291303 8.3918875, 49.4785782 8.6564609, 49.6043110 8.7457135, 49.6044250 8.7292229, 49.5421727 8.6636876, 49.4869999 8.7367276, 49.5660788 8.7990762, 49.5532677 8.6658488, 49.5697702 8.7099088, 49.5637955 8.7072905, 49.5610225 8.6903218, 49.4805167 8.6715673, 49.5523081 8.5951882, 49.6118535 8.7753135, 49.6050755 8.7600210, 49.6091623 8.6418976, 49.4943601 8.7246887, 49.5454675 8.6298570, 49.6149320 8.6503966, 49.5002983 8.5498171, 49.6105522 8.6532369, 49.6020099 8.7677160, 49.4989775 8.4996107, 49.6150231 8.9143821, 49.5455206 8.7291779, 49.5078054 8.3629459, 49.4760467 8.6993112, 49.5361742 8.5642657, 49.5213559 8.4025971, 49.6726030 8.7316620, 49.5411428 8.6400552, 49.5449883 8.6380933, 49.6759656 8.7650417, 49.6696052 8.7669330, 49.4886950 8.5438017, 49.4865780 8.5341631, 49.4871974 8.5284071, 49.4842068 8.5321272, 49.4844998 8.5396275, 49.4813475 8.5392948, 49.4906189 8.5252295, 49.4928093 8.5231160, 49.4950978 8.5284279, 49.4823499 8.4795195, 49.6677528 8.7451867, 49.5145230 8.6578124, 49.6562702 8.7547711, 49.6469373 8.7735990, 49.5366820 8.6659671, 49.5909727 8.7236941, 49.5888987 8.6549457, 49.5358085 8.4971147, 49.6209834 8.9451249, 49.4805822 8.5566713, 49.4928618 8.4046445, 49.4957477 8.4153853, 49.5508996 8.6679749, 49.4845835 8.4861412, 49.4915516 8.3784579, 49.5127526 8.5766366, 49.4825657 8.4492995, 49.4982324 8.7655052, 49.4924928 8.3764937, 49.4786030 8.4903082, 49.6445901 8.7362064, 49.5793143 8.7544635, 49.5480018 8.3774413, 49.5411759 8.6979134, 49.5150489 8.7482457, 49.5418725 8.3751679, 49.5493313 8.6856291, 49.6476051 8.7947973, 49.6429053 8.7968483, 49.6642107 8.7970938, 49.5208026 8.6986241, 49.5416163 8.6583108, 49.5401579 8.6578378, 49.4868908 8.4676669, 49.4928220 8.4705420, 49.5020864 8.4704715, 49.5261504 8.8636211, 49.5139200 8.8528708, 49.5464780 8.7680625, 49.6098312 8.8122662, 49.5862746 8.8146330, 49.6518562 8.7848309, 49.5517497 8.8515418, 49.5661178 8.7025227, 49.4911119 8.3742960, 49.5832325 8.7940521, 49.5638706 8.7714332, 49.4768792 8.7597110, 49.5578177 8.7067432, 49.5486105 8.7553751, 49.5852926 8.7016688, 49.5785870 8.7199786, 49.5559207 8.6889238, 49.5273739 8.5651748, 49.5266308 8.5656324, 49.4797746 8.4391042, 49.4989805 8.4843058, 49.4941948 8.4844155, 49.5425908 8.4678925, 49.5001116 8.4803170, 49.5444562 8.4781503, 49.5037603 8.4961936, 49.5110301 8.4710668, 49.5330260 8.5941277, 49.4873169 8.4784566, 49.6656426 8.6609367, 49.6521423 8.6500108, 49.5114636 8.5350050, 49.6669516 8.8112186, 49.5424915 8.4717533, 49.6589466 8.8013252, 49.5391501 8.4773405, 49.4959898 8.4310922, 49.5110988 8.7443994, 49.4946219 8.3724195, 49.5181730 8.4097783, 49.5150107 8.4033010, 49.6388516 8.7691296, 49.5903819 8.6385883, 49.6269184 8.7623574, 49.5311679 8.3834222, 49.5109697 8.5390654, 49.6592860 8.8414793, 49.6333827 8.6325752, 49.5118162 8.6060150, 49.5613325 9.0150075, 49.5995733 8.8345813, 49.5050598 8.4882934, 49.4920089 8.4654110, 49.4891200 8.4631089, 49.4855525 8.4714451, 49.6717144 8.6238800, 49.6732916 8.6243610, 49.6212544 8.7673967, 49.4777080 8.4194033, 49.4826588 8.4298418, 49.4783913 8.5133178, 49.4787334 8.4823454, 49.4818243 8.4728248, 49.6251009 8.7584019, 49.5075555 8.5062085, 49.5123400 8.4990766, 49.4890790 8.3723447, 49.5003383 8.4681392, 49.4886025 8.5229300, 49.5048012 8.6049417, 49.5058154 8.5991281, 49.5109111 8.5175535, 49.5134609 8.5109622, 49.5038199 8.5124492, 49.5294880 8.4924719, 49.4982055 8.4910773, 49.4976749 8.4778943, 49.5033335 8.4634707, 49.4847637 8.4636093, 49.6675554 8.6315104, 49.4795588 8.4696925, 49.4972386 8.4722901, 49.4988236 8.4674949, 49.4966530 8.4866256, 49.5047040 8.4880834, 49.5124002 8.6565502, 49.6528838 8.5673290, 49.4782712 8.5070996, 49.4786515 8.5098927, 49.6273416 8.7269432, 49.5023852 8.4465135, 49.4938995 8.4579290, 49.5323131 8.4701018, 49.4989234 8.4484845, 49.5059134 8.5174984, 49.5080014 8.4776263, 49.4989638 8.5029609, 49.4779866 8.4958199, 49.5903363 8.6525815, 49.5941595 8.6540387, 49.4847568 8.4740166, 49.5138316 8.5479243, 49.4992414 8.4165235, 49.5918833 8.6618825, 49.4843868 8.5321396, 49.4853591 8.7967688, 49.4768109 8.4038972, 49.5676732 8.9734875, 49.5863527 8.6469574, 49.5619418 8.4791997, 49.4878267 8.5258092, 49.4786924 8.5981080, 49.5152437 8.5181165, 49.4871957 8.4669323, 49.5299515 8.5718285, 49.5314204 8.5765244, 49.4794425 8.5535035, 49.4831596 8.5610945, 49.4769338 8.5657223, 49.4774095 8.5619997, 49.4848515 8.4814311, 49.5051898 8.4935473, 49.5207522 8.4034862, 49.5517543 8.3782358, 49.4982790 8.6570508, 49.4981719 8.6521516, 49.4853666 8.4627430, 49.4804899 8.4860880, 49.4848495 8.4761497, 49.4880198 8.4642243, 49.4897409 8.4377712, 49.5075268 8.5062729, 49.5942259 8.6445664, 49.4975985 8.4900640, 49.4868107 8.4688548, 49.4778624 8.4536125, 49.4982857 8.5565417, 49.6750068 8.6450981, 49.5030146 8.6016449, 49.4858508 8.4824634, 49.4883473 8.4056724, 49.4765745 8.4860680, 49.5390884 8.4502362, 49.5056775 8.4842932, 49.5457099 8.4464512, 49.5031646 8.3819405, 49.4798502 8.4487432, 49.6334910 8.6209501, 49.6368541 8.6191745, 49.6389246 8.6189867, 49.5219624 8.6659217, 49.5253338 8.6668826, 49.5302210 8.8617403, 49.4995180 8.4905691, 49.5268383 8.6549756, 49.5028783 8.6616836, 49.5079175 8.6287307, 49.5105009 8.6634850, 49.4960866 8.5527532, 49.6427828 8.6512072, 49.6439529 8.7235692, 49.6460906 8.6869091, 49.4821573 8.4496006, 49.5109298 8.7312150, 49.5049826 8.7665026, 49.4876255 8.4685410, 49.4805032 8.4790806, 49.4807315 8.4835521, 49.5223778 8.3942438, 49.4789422 8.4404426, 49.4919017 8.3762136, 49.4928241 8.3719058, 49.4945002 8.3722348, 49.4965126 8.5478242, 49.4933598 8.4183256, 49.5933244 8.9889913, 49.5265918 8.4789790, 49.5049367 8.5273225, 49.6085770 8.6485202, 49.6083653 8.6527742, 49.5235488 8.4856429, 49.5308660 8.6481632, 49.5330110 8.6443614, 49.4924070 8.4196660, 49.4920108 8.4203004, 49.6392769 8.6309404, 49.5162649 8.4005627, 49.5306577 8.4999107, 49.4969376 8.4207200, 49.5386334 8.5790385, 49.5400345 8.5792127, 49.5267542 8.5619915, 49.5191389 8.4062496, 49.5289761 8.6181849, 49.5412571 8.5655589, 49.5465615 8.5675124, 49.5479095 8.5979610, 49.5901501 8.8932495, 49.5473900 8.5917604, 49.5328738 8.5840945, 49.5405306 8.5884183, 49.5416058 8.5883322, 49.6035142 8.4793012, 49.5010293 8.4763173, 49.5183424 8.4631446, 49.5293353 8.4507912, 49.5243872 8.4958207 +yes +primary, residential, primary, primary, primary, primary, primary, pedestrian +55.9517532 -3.2076351 +yes +55.9814339 -3.1885738 +de:Rathaus (Heidelberg) +55.9286779 -3.2096502, 55.9475295 -3.2065018, 55.9709217 -3.2085540, 55.9710794 -3.2083765, 55.9713224 -3.2074276, 55.9584008 -3.2092092, 55.9601757 -3.2559248, 55.9312309 -3.2523089, 55.9511924 -3.1760524, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9531081 -3.2008271, 55.9450251 -3.2048945, 55.9616053 -3.1809060, 55.9122939 -3.1636240, 55.9383223 -3.4081252, 55.9359156 -3.2099930, 55.9391016 -3.2261638, 55.9426048 -3.1828681, 55.9284825 -3.2096589, 55.9457396 -3.1854060, 55.9492055 -3.1928272, 55.9457630 -3.2348824, 55.9531031 -3.1974183, 55.9442023 -3.2038200, 55.9350165 -3.1943787, 55.9503960 -3.1873714, 55.9612140 -3.3062746, 55.9809058 -3.1784709, 55.9569588 -3.1874026, 55.9328871 -3.3087416, 55.9541472 -3.1916750, 55.9428244 -3.2815918, 55.9498996 -3.2091714, 55.9511059 -3.2031477, 55.9504209 -3.2072119, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9537368 -3.1946870, 55.9537500 -3.1946096, 55.9468356 -3.2159630, 55.9379488 -3.2323230, 55.9573609 -3.2064305, 55.9530711 -3.2010501, 55.9526098 -3.2039830, 55.9430480 -3.2039420, 55.9576925 -3.1843665, 55.9527506 -3.1965698, 55.9507785 -3.2057118, 55.9514350 -3.2026235, 55.9517068 -3.2027827, 55.9516311 -3.1963503, 55.9717098 -3.1715371, 55.9491465 -3.2108241, 55.9522247 -3.1996285, 55.9420700 -3.2221190, 55.9533643 -3.1992326, 55.9695931 -3.1723910, 55.9552824 -3.1886051, 55.9275226 -3.2095127, 55.9462004 -3.1850058, 55.9700768 -3.1718970, 55.9655823 -3.2732115, 55.9526548 -3.1971889, 55.9267933 -3.2094073, 55.9245093 -3.2096867, 55.9562269 -3.1380823, 55.9275049 -3.1644260, 55.9274977 -3.1640447, 55.9683279 -3.1734427, 55.9375948 -3.1784176, 55.9461675 -3.2083866, 55.9325351 -3.1397933, 55.9453646 -3.1914973, 55.9453776 -3.1916473, 55.9507459 -3.2052838, 55.9538645 -3.1977873, 55.9549461 -3.1936274, 55.9550466 -3.1929475, 55.9519378 -3.2048677, 55.9527501 -3.2005561, 55.9525006 -3.1971100, 55.9535447 -3.1920694, 55.9528295 -3.1149002, 55.9533094 -3.1146987, 55.9524703 -3.1136856, 55.9587335 -3.2260450, 55.9575370 -3.1698723, 55.9252818 -3.2099781, 55.9342963 -3.2105127, 55.9756176 -3.1666794, 55.9429604 -3.2929801, 55.9426525 -3.2829003, 55.9430016 -3.2880429, 55.9656482 -3.2744012, 55.9748270 -3.2379923, 55.9233852 -3.2910431, 55.9234641 -3.2913646, 55.9544888 -3.1913969, 55.9383988 -3.3146583, 55.9756625 -3.1668579, 55.9528337 -3.1973510, 55.9544909 -3.1908045 +55.9412176 -3.1828378, 55.9283544 -3.2096488, 55.9277999 -3.2091571, 55.9508266 -3.2048045, 55.9460465 -3.2016265, 55.9446069 -3.1855056, 55.9588659 -3.2111897, 55.9815168 -3.1763960, 55.9103355 -3.3217849, 55.9524411 -3.1952812, 55.9702278 -3.2078937, 55.9346065 -3.2098926, 55.9710931 -3.2094157, 55.9710703 -3.2098491, 55.9478310 -3.1861334, 55.9529704 -3.2016563, 55.9543069 -3.1885259, 55.9273534 -3.1644654, 55.9331077 -3.1661015, 55.9462803 -3.2000712, 55.9463119 -3.1999342, 55.9630490 -3.2006080, 55.9637163 -3.2016172, 55.9481674 -3.1942981, 55.9476177 -3.1925449, 55.9472836 -3.1920023, 55.9472570 -3.1916452, 55.9471176 -3.1917878, 55.9593444 -3.1839099, 55.9488012 -3.1931423, 55.9642562 -3.1769749, 55.9443038 -3.1834963, 55.9476854 -3.1860695, 55.9341951 -3.1068165, 55.9519038 -3.1896191, 55.9392059 -3.3146403 +2 +69 +48.8316089 2.3555656, 48.8699280 2.3499165, 48.8321351 2.3486444, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8293608 2.3803043, 48.8339810 2.3847461, 48.8562087 2.3767474, 48.8210197 2.3568688, 48.8789680 2.3090890, 48.8353270 2.3472350, 48.8450099 2.3109341, 48.8608218 2.3464552, 48.8296315 2.3814341, 48.8361094 2.3872805 +68 +55.9470365 -3.1966624, 55.9473807 -3.1953726, 55.9539470 -3.1868320 +101 +1231 and Pech de Bugarach, 2921 and Pic Carlit, 1211 and Pic de Nore, 2909.94 and Puigmal d'Err, 1663.38 and Montfalgars, 2784.66 and Pic du Canigou, 2572 and Puig Farinós, 2414.8 and Roca de Colom, 2692.4 and Puig Pedró de la Tossa, 1091 and Le Caroux, 2412 and Pic du Bernard Sauvage, 2292 and Puig d'Escoutou, 2362 and Pic Joffre, 1778 and Puig de l'Estelle, 1581.3, Mourral Blanc, 685 and Roc de l'Aigle, Mont Cayroux, 925 and Mont Sarrat, Roc du Couillou, 773 and Pic de la Matalena, 646 and Moun Camp, 682 and Moun Simel, 585 and Roc d'Agnel, Mont Péril, Pic de San Marti, Pic de Rey, Roc du Tonnerre, Mont Redon, 978 and Serre d'Alaric, 2786 and Pic d’Eyne, 2861 and Pic de les Nou Fonts, 2651 and Pic des Sept Hommes, 2714 and Puig del Roc Negre, 2266 and Pic de Cincreus, 175 and Mont Saint-Clair, 2507 and Roca Colom, 2690 and Petit Péric, 2818 and Pic d'Engorgs, 2915 and Puigpedrós, 2504.1 and Puig de la Llosa, 1640.9 and Puig de l'Artiga del Rei, 1640.7 and Puig Pedrissa, 1654.4 and Puig de la Clapa, 2863 and Tosseta de l'Esquella, Roc Sant Julia, 2039 and Roc des Trépassats, 2880.4, 1126 and Pic de la Falguerosa, 1062 and Pic de la Pena, Puig d'En Carol, 2827 and Pic de Finestrelles, 1009 and Pic de l'Alzina, Roc Rouge, 2469.4 and Pic de Madrès, 1430.4 and Roc du Casteldos, 1843.5 and Pic Dourmidou, 1555.93 and Serre de Caillong, 2027.4 and Picaucel, 707.28 and Montolier de Perellos, 433.46 and Caja, 685.83 and Roc de Nabant, 298.55 and Plan du Pal, 589.96 and Serre de Quintillan, 1220.7 and Le Karimal, 1595.4 and Montagne de Crabixa, 843.03 and Roque de Méric, 1494.8 and Pic d'Estable, 1143.2 and Tuc de Gaubeille, 1342 and Pech dels Escarabatets, 57, 878.85 and Montagne de Tauch, 916.52 and Pech de Fraysse, 104 and Puech de Grange, 55.4 and L'Esquino de Camel, 764.94, 623.2, 788.03, 764.06, 564 and Pic de Brau, 1014.63 and Pic Saint-Christophe, 1234.63 and Roc Saint-Sauveur, 2810.2 and Pic Péric, 2325.5 and Roc d'Aude, 2376 and Mont Llaret, 2804.3 and Pic Oriental de Coll Roig, 2671 and Puig de la Grava, 583.95 and Serre de Vergès, 532.8 and Roc Rodon, 982.5 and Pic de Sailfort, 1279.72 and Pilon de Belmatx, 1706.4 and Serrat dels Cabanats, 1995.2 and Serra de Clavera, 714.6 and Puig de la Calma, 322.5 and Martal, 130.52 and Puig de les Redoleres, 395.93 and Pic Haut, 377.37 and Pic Estelle, 695.46 and Puig de Boc, 774.67 and Mont Héléna, 345.98 and Serrat d'En Bougader, 265.98 and Serrat de la Devesa, 1024.72 and Pic de Bau, 1626.7 and Serrat del Cortal, 633.41 and Le Néret, 323.46 and Peyro d'Arquo, 540.52 and Pic Aubeill, 2112.6 and Pic de Dona Pa, 718.25 and Roc de l'Hirondelle, 903.7 and Tuc d'En Guinxe, 674.54 and Pic de la Garsa, 1333.31 and Pic de les Salines, 1092.64 and Pic de Fontfrède, 725.17 and Pic Mirailles, 247.11 and Puig Oriol, 291.56 and Montou, 794.1 and Serrat d'En Parrot, 930.08 and Puig de Sant Miquel, 2288.31 and Pic de Mollet, 339.45 and Pedra Blanca, 2581.1 and El Punxo, 1773.28 and Pic de Bena, 2349.83 and La Tossa d’Err, 2098.8 and Tres Esteles, 100.86 and Serrat de la Devesa, 1211.2 and Puig des Moros, 1159.9 and L'Estanyol, 2831 and La Tour d’Eyne, 2711.45 and Cambre d’Aze, 573.8 and Pic Lazerou, 1105.4 and Roc d'En Peillofo, 2726.79 and Pic Moneliet, 2624.11 and Pic du Gallinas, 2412.4 and Serra de Mauri, 2470.12 and Puig del Pam, 2061.72 and Roc de les Perxes Blanques, 814.04 and Puig Forcat, 925.85 and Puig de les Feixes, 2172.2 and Mont Coronat, 500.57 and Roch de Lansac, 424.5 and Sarrat del Coude, 2662.83 and Pic de la Serre Gallinière, 2456.61 and Cime de Pomarole, 2042.3 and El Dormidor, 2093.31 and Pic Bastard, 507.17 and Força Réal, 437.55 and Puig Pedrous, 448.31 and Roc del Mut, 1632.3 and Pic del Torn, 1723.8 and Serra d'Escales, 1376.8 and Serrat de Mirailles, 1313.9 and Pic du Roussillon, 200.16 and Roc Calbeil, 2345.4 and Pic de la Rouquette, 1797.8 and Pic de Portepas, 1451.2 and Pic de la Moscatosa, 2204.1 and Roc de la Calma, 424.41 and Mont Plat, 2051.9 and La Llabanère, 1655.9 and Lloumet, 673.5 and Pic de la Pouge, 2309.47 and Serrat de l'Escaldat, 2736.56 and Pic de Font Freda, 2876.87 and Pics de Font Negra, 1687 and Cim de Portavella, 1766.02 and Puig Caga Llops, 2403.29 and Puig de la Collada Verde, 1642.09 and Puig Sec, 1830.31 and Puig dels Sarraïs, 1313.85 and Puig Ferreol, 1147.06 and Puig Fabre, 770.6 and Roc del Nissol, 899.57 and Roc Paradet, 2134.8 and Serrat de la Mente, 1356.4 and Roc des Quarante Croix, 2006.46 and Puig d'Esquena d'Ase, 1450.26 and Roc de Frausa ou Roc de France (1409m), 1030.09 and Peyre Basse, 687.73 and Puig del Coll del Teixo, 530.25 and La Cougoulère, 823.33 and La Redoute, 1211.88 and Serre de la Garsa, 1194.41 and Mont Capell, 2059.74 and Pic d'Estaques, 597.5 and Le Devès, 566.43 and Serre de l'Artigue del Baurien, 2369.7 and Pic de la Pelade, 2034.18 and Pic de la Tossa, 1790.2 and La Tartera, 1425.26 and Mont Nègre (1425m), 871.97 and Serra del Bouchet, 1256.31 and Pic Néoulous, 794 and Garrabet, 2137.69 and Pic dels Moros, 2044.2 and La Soucarrade, 225.08 and Montrodon, 2731 and Puig dels Tres Vents, 1383.1, 800.63 and Sarrat d'Espinets, 1730.9 and Puig dels Bessis, 2461.4 and Pic Gallinasse, 2060.5 and Roc des Bassouses, 194.37 and Puig Janer, 454.95 and Mont d'Espira, 1309.9 and Sarrat Naout, 2108, Pic de Tantajo, 1901 and Roc Mosquit, 2006 and Pic de la Socarrada, Coll de la Fareille, 670 and Madeloc, 2881.3 and Puig de Bastiments, Roc de Journac, 2683 and Pic de la Mina, Roc de Jocavell, 2702 and Pic de la Dona, Roc de Salimanes, Roc Punchut, 2547 and Pic Mercader, Roc du Maure, 185 and Mont Saint-Bauzille, 2495.7 and Puig de Coma Ermada, Puig dels Pruners, Roc de la Campana, Roc de la Sentinella, Puig del Torn, 2532 and Puig de Terrers, 2597.1 and Pic de la Portella, 2333 and Roc de Nou Fonts, Roc Mary, Roc Campagna, 2673 and Tossal Colomer, 2450 and Roc Negre, Salt del Burro, Pic de la Fajolle, 60 and Mour, Roc de l'Aigle, El Roc Gros, 481 and Pic de Vissou, 1073 and Roc du Nouret, 1060 and Roquo d'Astié, 535 and Mont Liausson, 502 and Mont Mars, 2691 and Pic de Bacivers, 2638 and Puig d'Ombriaga, 2869.5 and Pic de l'Infern, 207 and Le Pech, 180 and La Roche Trouée, 125 and Pech Tenarel, 250 and Mont Grand, 155 and Pech Aigu, 225 and Saint-Jacques, Pech de l'Auzine, Pech des Combarelles, 65 and Pech Na Redorte, 200 and Plo de Maurou, Pech Tignoux, La Buissonière, 500 and Le Castelas, 430 and Roque Fumade, La Pique, Pech d'Aragnou, Pech Sarda, Pech de Brens, 1098.01 and Plo des Brus, 2013, Redoun, 500 and Roc de l'Aigle, 1918 and Pic de l'Orry, 1936 and Pic des Agrellons, Le Roc Troué, Sarrat de Labade, 2206 and Pic de la Calma, La Capsole, Coste Rouge, Plateau de Lacamp, 396 and Roc de la Vella (de l'abeille), pech de laure, 300, 1034 and Roc du Caroux, Roc de l'Escriban, Pech Counille, Pech Ginestié, Roc Rouge, La Cioutat, Milobre de Massac, Roc de Matefagine, Rocher de Béraud, La Clape, L'Aïrole, Pech Berles, Pech Lagardie, Pech de Bourrel, La Pique, Pech de Gouache, 793 and Massane, 2826 and Pic Inferior de la Vaca, Pech Cardou, 1081 and La Pique Grosse, Roc d'En Benoit, Roc Serret, 576 and La Serre, 356, 520, Pic du Porteil du Bech d'Ourteil, Roc de la Couillade del Peyroulet, Roc du Taillat del Bossut, Serrat du Roc Mary, Pic du Pla de Bernard, Pic de la Rouquette, Courtalets, Pic Barbet, Pic Bas del Canigo, Collet des Bessis, Roc Roig, Roc de Cardenius, Mont Courounat, Pic de la Créou, Roc Rodon, Roc Cante Lloups, Roc del Barry d'en Naudy, Roc del Soula de Mollere, Roc del Soula del Mix, Roc dit la Soucaillousse, Roc du Coll Diagre, Roc du Mont Courounat, Puig de Passadong, Roc dals Clots del Gourg, Couillade de la Rabadane, Roc des Cimbeils, Pic del Signor, Roc de la Roquette, Roc del Cim des Cums, Roc dels Lladres, 2040 and Pic de l'Orry, Crête des Sept Hommes, 2637 and Pic de Bassibès, Pic de Soule de Ramounet, Pic de la Solane de l'Ours, Pic des Gourgs, Pic du Bois de la Ville, Pic du Quazemi, Puig Sec, Roc de Mariailles, Roc de Terrellou, Roc de l'Aigle, 2724 and Pic Rougeat, Pic de Coumeille, Pic de Gallinasse, Pic de Serre Bernet, Puig Coulomb, Puig de las Coubynes, Roc Pointu de Coll Roig, Roc de la Cabane en Ribe, Pic Pastous, Roque Coucoulière, Pic de Pel de Ca, Pilon du Pla de la Pilote, Puig d'el Boulet, Roc Redou, Sarrat de Font Frede, Puig del Traucadou, Roc de la Roquette, Roc de Calamiche, Rocher du Palet de Rouland, Pech en Barthe, Montpeyrous, Au Mont Cal, Au Mont Long, 1557.7 and Coma Negra, 1289.4 and Puig de la Llibertat, Pech de la Vigne, Pech de l'Homme, Pech del Bousquet, Pech du Seigneur, Pech de Mont-Carretou, Roque Vacquière, Pech de Rie, 147, 187, 690 and Pic de la Coquillade, 2801 and Puigmal de Llo, 2663, 520 and Roc Traucat, 1629 and Castell Vidre, 2596 and Les Abelletes, 2714 and Pic dels Pedrons, 1015, 1182 and Pic des Sarrasis, 1179 and Pic du Midi, 1453, 670, 283, 112 and Mont Saint-Loup, 590 and Signal d'Alaric, 504, 455, 280, quiersboutou +yes +55.9575618 -3.1847902, 55.9491314 -3.1876537, 55.9757878 -3.2301721, 55.9621811 -3.2003284, 55.9526181 -3.1750774, 55.9471770 -3.1904575, 55.9254145 -3.2090883, 55.9764403 -3.1701500, 55.9504129 -3.2949801, 55.9601603 -3.2006854, 55.9299490 -3.2096090, 55.9592433 -3.2230171, 55.9481079 -3.1917724, 55.9034567 -3.1574061, 55.9808227 -3.2245927, 55.9479318 -3.1942157, 55.9166326 -3.2276420, 55.9467615 -3.2168254, 55.9524553 -3.1968363, 55.9501797 -3.1870275, 55.9428645 -3.2037697, 55.9484729 -3.1956543, 55.9478512 -3.2019348, 55.9452311 -3.1921670, 55.9449743 -3.1941250, 55.9701331 -3.1723584, 55.9411858 -3.2034013, 55.9558388 -3.1571446, 55.9250843 -3.2616025, 55.9473220 -3.2061120, 55.9382464 -3.1945920, 55.9356972 -3.2104575, 55.9457633 -3.2087758, 55.9458777 -3.2095906, 55.9466672 -3.2371272, 55.9308474 -3.2091419, 55.9461542 -3.1854391, 55.9057145 -3.2240658, 55.9618487 -3.1523081, 55.9499509 -3.2074622, 55.9379652 -3.1900697, 55.9487732 -3.1929905, 55.9164262 -3.2851068, 55.9724535 -3.2516505, 55.9626190 -3.2334642, 55.9477849 -3.3610098, 55.9486801 -3.3621149, 55.9459285 -3.2185692, 55.9523009 -3.1919415, 55.9491345 -3.1940862, 55.9512470 -3.1890625, 55.9527128 -3.2015822, 55.9282591 -3.2096099, 55.9518891 -3.1996221, 55.9520193 -3.2031623, 55.9509410 -3.2098198 +49.4091649 8.6726851, 49.4079210 8.6866720, 49.4117371 8.7091875, 49.4073921 8.6825502, 49.4095865 8.7066610, 49.4115410 8.7046342, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4066053 8.6919726 +Muni, 1AX, 18, 1, Megabus +49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.3988716 8.6899921, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.4240406 8.6385449, 49.3851489 8.6733031, 49.3848920 8.6803000, 49.3673694 8.6862886, 49.4061345 8.6593850, 49.3956207 8.6692054, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.3704305 8.7013213, 49.4296958 8.6455225, 49.3810973 8.6895578, 49.4172010 8.6768150, 49.3593333 8.6876382, 49.3810576 8.6896077 +no +yes and 55.9574046 -3.3230477, 55.9563697 -3.2376633, 55.9354331 -3.2242769, 55.9392424 -3.2010466, 55.9630348 -3.1740635, 55.9636752 -3.2167624, 55.9155151 -3.2156990, 55.9237589 -3.2171331, 55.9631503 -3.2832688, 55.9707352 -3.1568526, 55.9711168 -3.1640718, 55.9711895 -3.1683355, 55.9145033 -3.1296918, 55.9791781 -3.2011172, 55.9338646 -3.2264850, 55.9152441 -3.2516004, 55.9825353 -3.2514844, 55.9323450 -3.1584833, 55.9514018 -3.1936345, 55.9045650 -3.2720601, 55.9521243 -3.1789512, 55.9381330 -3.1218602, 55.9302907 -3.1173483, 55.9321591 -3.1257994, 55.9454147 -3.2890984, 55.9065021 -3.2613856, 55.9553731 -3.1825389, 55.9568292 -3.1779262, 55.9601227 -3.1513553, 55.9621472 -3.1499805, 55.9680426 -3.1805444, 55.9587614 -3.1443997, 55.9556803 -3.1479525, 55.9557299 -3.1456799, 55.9401990 -3.2267942, 55.9552162 -3.2365445, 55.9547756 -3.2373840, 55.9095872 -3.2393324, 55.9108572 -3.2270661, 55.9216235 -3.2249213, 55.9159985 -3.1400663, 55.9393204 -3.2846024, 55.9042417 -3.1960580, 55.9398320 -3.2898011, 55.9217421 -3.2554291, 55.9068162 -3.1630589, 55.9464304 -3.1464068, 55.9250180 -3.1583419, 55.9260352 -3.1459743, 55.9572078 -3.2873375, 55.9492991 -3.2859470, 55.9492670 -3.2867008, 55.9547419 -3.1749189, 55.9337511 -3.2052182, 55.9498517 -3.2814881, 55.9537350 -3.2785842, 55.9497199 -3.2870771, 55.9561182 -3.2944056, 55.9542000 -3.2958911, 55.9547440 -3.2934772, 55.9552269 -3.2911211, 55.9547217 -3.2988876, 55.9539944 -3.2980005, 55.9456834 -3.1821854, 55.9419515 -3.0776622, 55.9348121 -3.0907246, 55.9171604 -3.1354115, 55.9176342 -3.1349480, 55.9134042 -3.1432354, 55.9606809 -3.1599303, 55.9188473 -3.2404491, 55.9519339 -3.1197553, 55.9171100 -3.1237879, 55.9025400 -3.1724775, 55.9029149 -3.1462329, 55.9000899 -3.2205482, 55.9465352 -3.1840511, 55.9092765 -3.3232261, 55.9330079 -3.1427147, 55.9310330 -3.1255391, 55.9354998 -3.1220327, 55.9362482 -3.1261770, 55.9308759 -3.1319934, 55.9359705 -3.1279223, 55.9337571 -3.1254037, 55.9336105 -3.1252363, 55.9298596 -3.1760674, 55.9490596 -3.1276714, 55.9511916 -3.1060290, 55.9044556 -3.1570879, 55.9076488 -3.1760073, 55.9341278 -3.1169338, 55.9065155 -3.1451234, 55.9292281 -3.2209452, 55.9341796 -3.2490939, 55.9544529 -3.4121242, 55.9519963 -3.1039423, 55.9100473 -3.3260875, 55.9343630 -3.2060244, 55.9317398 -3.3087896, 55.9605626 -3.1972928, 55.9678833 -3.1879812, 55.9510616 -3.2914538, 55.9459761 -3.1856715, 55.9558587 -3.3031410, 55.9568286 -3.3072594, 55.9511189 -3.1747609, 55.9510749 -3.1753467, 55.9508298 -3.1753029, 55.9509457 -3.1749408, 55.9467014 -3.1636628, 55.9729020 -3.1735210, 55.9765107 -3.1721913, 55.9593059 -3.1742314, 55.9442578 -3.2403600, 55.9863800 -3.4014440, 55.9367665 -3.2420598, 55.9459205 -3.2905781, 55.9562802 -3.2807580, 55.9402317 -3.2875667, 55.9402275 -3.2879315, 55.9409941 -3.2876039, 55.9406671 -3.2872934, 55.9376102 -3.2318045, 55.9789111 -3.2482505, 55.9787761 -3.1967750, 55.9640660 -3.1728458, 55.9066017 -3.2144569, 55.9605387 -3.2087492, 55.9542012 -3.1931436, 55.9602994 -3.1953857, 55.9544319 -3.1917436, 55.9560954 -3.2106920, 55.9723070 -3.1912838, 55.9595234 -3.1758364, 55.9534180 -3.1785080, 55.9562867 -3.1872194, 55.9743198 -3.1704310, 55.9744808 -3.1743158, 55.9759885 -3.1715338, 55.9532846 -3.2921393, 55.9574984 -3.2083571, 55.9367964 -3.2406611, 55.9854599 -3.3436174, 55.9641493 -3.1938949, 55.9260372 -3.2090505, 55.9359966 -3.1572401, 55.9513474 -3.1158807, 55.9661759 -3.2702350, 55.9741295 -3.1797027, 55.9600724 -3.1741101, 55.9409110 -3.2215160, 55.9556979 -3.2548082, 55.9660701 -3.2463715, 55.9649029 -3.2457519, 55.9298237 -3.3877108, 55.9690676 -3.1888807, 55.9912413 -3.4109019, 55.9710046 -3.2619213, 55.9588466 -3.2249675, 55.9013500 -3.3024723, 55.9539142 -3.1403269, 55.9334908 -3.1705314, 55.9632425 -3.1766530, 55.9793809 -3.2828111, 55.9795804 -3.2784993, 55.9816315 -3.1875747, 55.9797956 -3.2652214, 55.9808614 -3.2575795, 55.9814929 -3.2544070, 55.9822488 -3.1871833, 55.9316920 -3.1706557, 55.9453307 -3.1872851, 55.9225757 -3.1742046, 55.9177995 -3.2258715, 55.9756731 -3.1795281, 55.9227390 -3.3878621, 55.9219586 -3.3846448, 55.9220190 -3.3812464, 55.9223012 -3.3874671, 55.9216403 -3.3816171, 55.9224466 -3.3896092, 55.9219085 -3.3878670, 55.9217658 -3.3815092, 55.9221310 -3.3812652, 55.9215846 -3.3896076, 55.9614838 -3.1460045, 55.9205305 -3.3862442, 55.9209136 -3.3848589, 55.9204525 -3.3866404, 55.9207333 -3.3855343, 55.9211430 -3.3830700, 55.9101232 -3.2870070, 55.9533991 -3.1420299, 55.9393913 -3.2534215, 55.9417229 -3.2570288, 55.9410585 -3.2869761, 55.9414229 -3.2802235, 55.9403326 -3.2912941, 55.9392116 -3.2900212, 55.9388929 -3.2894937, 55.9394656 -3.2916887, 55.9003682 -3.2260323, 55.9078725 -3.2025308, 55.9413880 -3.2720449, 55.9479806 -3.2795990, 55.9409754 -3.2880597, 55.9398516 -3.2924307, 55.9380193 -3.2920921, 55.9387183 -3.2926555, 55.9387868 -3.2929480, 55.9366056 -3.2907127, 55.9377042 -3.2917990, 55.9375382 -3.2918934, 55.9393838 -3.2932527, 55.9347378 -3.2880372, 55.8767909 -3.3429604, 55.8790540 -3.3446396, 55.9415087 -3.2766618, 55.9411196 -3.2733621, 55.9408019 -3.2733746, 55.9408596 -3.2729200, 55.9408838 -3.2732713, 55.9407669 -3.2756902, 55.9408599 -3.2749720, 55.9414728 -3.2789476, 55.9415149 -3.2790978, 55.9557755 -3.2303273, 55.9881664 -3.1866736, 55.9169928 -3.2576372, 55.9224796 -3.1752957, 55.9774772 -3.1705996, 55.9799920 -3.3737074, 55.9437668 -3.1487316, 55.9426095 -3.1482851, 55.9242307 -3.3725346, 55.9423402 -3.1917059, 55.9279755 -3.3560103, 55.8977026 -3.2948914, 55.9259968 -3.2680760, 55.9801710 -3.2538339, 55.9153515 -3.1580933, 55.9088820 -3.2029285, 55.9086694 -3.2053302, 55.9273464 -3.2730805, 55.9471726 -3.1356110, 55.9008412 -3.1501893, 55.9540581 -3.1906570, 55.9285195 -3.2042449, 55.9106623 -3.1659657, 55.9716565 -3.1684610, 55.9713135 -3.1704851, 55.9713620 -3.1704984, 55.9601499 -3.1693310, 55.9496802 -3.2006546, 55.9749996 -3.1933890, 55.9766171 -3.2091124, 55.8860219 -3.2116389 +33 +yes +Sixt, Sixt, E.On, Stadtwerke München, SWM, Stadtwerke München, BMWi/ChargeNow, BMWi/ChargeNow, Stadtwerke München, SWM, Landratsamt München +46 +24 +48.8108150 2.3016518, 48.8153367 2.2970255, 48.8812535 2.2714648, 48.8756694 2.2890915, 48.8719944 2.3006392, 48.8689763 2.3101131, 48.8664075 2.3221380, 48.8643585 2.3298436, 48.8623829 2.3361468, 48.8607697 2.3409358, 48.8587782 2.3474106, 48.8575436 2.3515947, 48.8552140 2.3606657, 48.8520122 2.3686542, 48.8457111 2.3727163, 48.8472696 2.3866995, 48.8475165 2.4063260, 48.8339081 2.2438908, 48.8487832 2.2988351, 48.8475338 2.3029524, 48.8504212 2.2936685, 48.7296445 2.3600059, 48.8242325 2.2730847, 48.8270162 2.2794048, 48.8326135 2.2884024, 48.8373212 2.2966299, 48.8919677 2.2377691, 48.8228800 2.3256282, 48.8280605 2.3269249, 48.8313954 2.3301258, 48.8340204 2.3325902, 48.8389018 2.3308032, 48.8330168 2.3366295, 48.8311288 2.3434842, 48.8297785 2.3504704, 48.8314217 2.3555589, 48.8331986 2.3628553, 48.8349549 2.3680817, 48.8370762 2.3729066, 48.8842870 2.3659442, 48.8480576 2.3960523, 48.8444696 2.4398829, 48.8454354 2.4293269, 48.8782117 2.3816608, 48.8808997 2.3738860, 48.8518166 2.4013757, 48.8463309 2.4190317, 48.8514736 2.3982446, 48.8664900 2.3833323, 48.8629761 2.3873271, 48.8582563 2.3901666, 48.8562640 2.3945621, 48.8720463 2.3769849, 48.8690586 2.3804560, 48.8774398 2.3708174, 48.8829026 2.3443344, 48.8823612 2.3373703, 48.8836162 2.3330841, 48.8835165 2.3274515, 48.8824462 2.3221220, 48.8812626 2.3155318, 48.8805420 2.3094230, 48.8737784 2.2950482, 48.8698038 2.2854485, 48.8714638 2.2768954, 48.8652545 2.4166605, 48.8645515 2.4088118, 48.8649326 2.3984802, 48.8643020 2.3794597, 48.8652193 2.3747542, 48.8666345 2.3614233, 48.8654878 2.3563464, 48.8663020 2.3524557, 48.8676419 2.3463248, 48.8686692 2.3412605, 48.8695654 2.3367072, 48.8707693 2.3322643, 48.8736019 2.3276269, 48.8754212 2.3255796, 48.8825292 2.3110507, 48.8839908 2.3042907, 48.8847948 2.2982623, 48.8856871 2.2926417, 48.8395785 2.3012923, 48.8415118 2.3080120, 48.8443954 2.3175634, 48.8468543 2.3166512, 48.8514000 2.3143901, 48.8568058 2.3151577, 48.8413343 2.4008998, 48.8905035 2.3598783, 48.9162246 2.2948689, 48.8707855 2.3611531, 48.8921077 2.2852229, 48.8579460 2.4357587, 48.8625988 2.4415690, 48.8971408 2.2803973, 48.8887892 2.2878755, 48.8526992 2.4061094, 48.8534759 2.4105242, 48.8558145 2.4237108, 48.8525808 2.3887914, 48.8547441 2.3853565, 48.8581580 2.3798044, 48.8610516 2.3747956, 48.8641314 2.3695694, 48.8694199 2.3544678, 48.8706004 2.3487793, 48.8715206 2.3432861, 48.8720176 2.3395091, 48.8730612 2.3333207, 48.8747030 2.3197963, 48.8464740 2.3659107, 48.8422880 2.3653598, 48.8460116 2.3549579, 48.8465082 2.3517283, 48.8499051 2.3487460, 48.8508926 2.3454617, 48.8521785 2.3394266, 48.8529427 2.3357457, 48.8363894 2.2784000, 48.8387450 2.2821427, 48.8410837 2.2879218, 48.8426906 2.2917758, 48.8389924 2.3896778, 48.8395253 2.3958919, 48.8401067 2.3799581, 48.8410654 2.3249923, 48.8429457 2.3126019, 48.8716770 2.2935098, 48.8669099 2.2902715, 48.8630266 2.2870524, 48.8573825 2.2859234, 48.8646725 2.2937783, 48.8640063 2.2780859, 48.8580816 2.2741958, 48.8555764 2.2702166, 48.8525598 2.2681802, 48.8480038 2.2641872, 48.8452505 2.2618802, 48.8430044 2.2600472, 48.8377707 2.2565741, 48.8649686 2.3006256, 48.8723362 2.3100827, 48.8736768 2.3145456, 48.8514587 2.3267159, 48.9038952 2.3053664, 48.8939640 2.3144204, 48.8905170 2.3201235, 48.8874127 2.3256961, 48.8470802 2.3076354, 48.8470463 2.2953101, 48.8606970 2.3210551, 48.8586775 2.3231168, 48.8481026 2.3277965, 48.8452766 2.3286613, 48.8656361 2.3227452, 48.8700644 2.3251637, 48.8446967 2.2937668, 48.8546428 2.3061015, 48.8575837 2.3102891, 48.8611770 2.3148333, 48.8633194 2.3666124, 48.8610965 2.3672267, 48.8575371 2.3679970, 48.8531361 2.3686313, 48.8511945 2.3759944, 48.8500259 2.3842705, 48.8444003 2.3899525, 48.8371074 2.4024837, 48.8266498 2.4057278, 48.8354584 2.4063451, 48.8450642 2.4010776, 48.8333461 2.3863163, 48.8269184 2.3662163, 48.8322556 2.3989811, 48.8656737 2.3344599, 48.8763705 2.3326310, 48.8760654 2.3385532, 48.8557241 2.3256659, 48.8784508 2.3374732, 48.8844760 2.3384377, 48.8898183 2.3386296, 48.8925606 2.3447103, 48.8977084 2.3592969, 48.8937935 2.3477372, 48.8873214 2.3497042, 48.8795577 2.3571375, 48.8762027 2.3579127, 48.8638408 2.3487041, 48.8723097 2.3558518, 48.8627762 2.3461709, 48.8551566 2.3471977, 48.8535657 2.3443622, 48.8536264 2.3333280, 48.8470711 2.3270822, 48.8421852 2.3289966, 48.8466102 2.2859257, 48.8461920 2.2786319, 48.8473202 2.2686743, 48.8477655 2.2583922, 48.8452670 2.2672606, 48.8470891 2.2728475, 48.8420002 2.2387333, 48.8406690 2.2287175, 48.8700162 2.3710617, 48.8612740 2.3535761, 48.8771276 2.4066804, 48.8754657 2.3990396, 48.8738469 2.3852526, 48.8750969 2.3893345, 48.8385876 2.3222085, 48.8317799 2.3140252, 48.8339551 2.3180764, 48.8225032 2.2984833, 48.8566177 2.3705298, 48.8602039 2.3721323, 48.8850187 2.3795672, 48.8869632 2.3867135, 48.8885434 2.3927045, 48.8911980 2.4025577, 48.8814188 2.3654808, 48.8772835 2.3492720, 48.8885069 2.3740693, 48.8908770 2.3772148, 48.8947998 2.3823744, 48.8974296 2.3854377, 48.8749537 2.3402103, 48.8759682 2.3441565, 48.8585901 2.3424101, 48.8512630 2.3622044, 48.8535245 2.3570872, 48.8429311 2.3521239, 48.8406731 2.3517801, 48.8356703 2.3525980, 48.8799166 2.3990372, 48.8819551 2.3933641, 48.8798096 2.4170873, 48.8715218 2.4043104, 48.8680997 2.4013152, 48.8382823 2.3608293, 48.8356584 2.3588519, 48.8927063 2.3274728, 48.8973715 2.3289008, 48.9061915 2.3320476, 48.8261434 2.3573719, 48.8225268 2.3585049, 48.8191302 2.3595477, 48.9231172 2.2862019, 48.9305465 2.2836436, 48.9142830 2.4036539, 48.9036536 2.3920966, 48.9207844 2.4106144, 48.8677590 2.3139517, 48.7963514 2.4492350, 48.7899066 2.4504803, 48.7797556 2.4594504, 48.8024711 2.4466949, 48.8090371 2.4347211, 48.8150770 2.4217740, 48.8214689 2.4136458, 48.9118944 2.3339725, 48.9196049 2.3429933, 48.8051317 2.3637903, 48.7869402 2.3673857, 48.7960877 2.3683672, 48.8103280 2.3622359, 48.8514725 2.3311829, 48.8439710 2.3243262, 48.8789208 2.3623079, 48.8844216 2.3602786, 48.8932382 2.4133209, 48.8795976 2.3270787, 48.9301278 2.3563841, 48.9368260 2.3590959, 48.9459311 2.3641518, 48.8538982 2.2893959, 48.8319438 2.2381100, 48.8296613 2.2308732, 48.8201086 2.3647992, 48.8216697 2.3693224, 48.8159011 2.3773455, 48.8109896 2.3839963, 48.8491398 2.3218984, 48.8756733 2.3273522, 48.8755336 2.3242020, 48.8780508 2.2982339, 48.7687211 2.4643844, 48.8837592 2.3495338, 48.8915769 2.3496679, 48.8663302 2.3215942, 48.8603937 2.3146892, 48.8537409 2.3693210, 48.8433310 2.3737787, 48.8456163 2.3095848, 48.9064052 2.4491919, 48.8975167 2.3446663, 48.8419339 2.3211592, 48.7290137 2.3699140, 48.8787548 2.3223081, 48.8767276 2.4064297, 48.8795817 2.3886032, 48.8825949 2.3703263, 48.8295791 2.3768615, 48.8767737 2.3935636, 48.8792625 2.3035538, 48.9068701 2.3657737, 48.8183938 2.3193550, 48.8956037 2.4251032, 48.8779888 2.2817745, 48.8582563 2.3901666, 48.8882249 2.2495172, 48.8849431 2.2599157, 48.8571078 2.3473222, 48.8596411 2.3468404, 48.8576652 2.3478702, 48.8589166 2.3467871, 48.8673076 2.3641562 +49.4005745 8.6876324, 49.4013101 8.6912413, 49.4018281 8.6889374, 49.4018800 8.6877769, 49.4133177 8.6889779, 49.4135514 8.6842391, 49.4146501 8.6879184, 49.4168731 8.6919549, 49.4171484 8.6930088, 49.4208847 8.6912002, 49.4093080 8.6997914, 49.4115405 8.7048863, 49.4123719 8.7105227, 49.4126424 8.7078375, 49.4121119 8.7079345, 49.4111163 8.6933102, 49.4133176 8.6889779, 49.4133176 8.6889788, 49.4133176 8.6889785, 49.4135508 8.6842393, 49.4133177 8.6889782, 49.4133176 8.6889782, 49.4133174 8.6889784, 49.4133177 8.6889788, 49.4208843 8.6912004, 49.4208840 8.6912006, 49.4168738 8.6919549, 49.4168732 8.6919560, 49.4208839 8.6912002, 49.4171481 8.6930091, 49.4168744 8.6919560, 49.4168739 8.6919560, 49.4208843 8.6911999, 49.4208846 8.6911997, 49.4168740 8.6919569, 49.4018302 8.6889341, 49.4013102 8.6912409, 49.4013098 8.6912411, 49.4005742 8.6876324, 49.4005743 8.6876329, 49.4013099 8.6912408, 49.4018301 8.6889373, 49.4005745 8.6876329, 49.4018280 8.6889343, 49.4123720 8.7105234, 49.4093080 8.6997912, 49.4115404 8.7048862, 49.4093082 8.6997910, 49.4115404 8.7048863, 49.4093082 8.6997914, 49.4146502 8.6879184, 49.4115403 8.7048862, 49.4034414 8.6858831, 49.4033425 8.6920344, 49.4034077 8.6864942, 49.4059416 8.6926646, 49.4053236 8.6938605, 49.4059413 8.6926655, 49.4059418 8.6926647, 49.4033423 8.6920342, 49.4034078 8.6864940, 49.4034077 8.6864940, 49.4059416 8.6926652, 49.4034078 8.6864942, 49.4059414 8.6926650, 49.4033423 8.6920344, 49.4196480 8.6881884, 49.4158083 8.7151936, 49.4087123 8.7054683, 49.4076130 8.7082748, 49.3832632 8.6902896, 49.4076136 8.7082749, 49.4087126 8.7054655, 49.4076135 8.7082758, 49.3832635 8.6902896, 49.4076129 8.7082756 +150 +55.9021949 -3.1741206, 55.9087627 -3.3266637, 55.9093414 -3.2564463, 55.9087839 -3.2561638, 55.9085715 -3.2558102 +2 +1 +48.8684366 2.2915095 and 48.8683863 2.2914212 +硫黄島 (Iwo Jima), Annobón, Tauu Island, Pagan Island, Taongi Island, Cocos (Keeling) Islands, Christmas Island, Pukapuka, Banaba, Brava, Tristan da Cunha, Norfolk Island, Saint George Island, Rapa Iti, Tikopia, Pingelap, Isla del Coco, Thule Island, Pitcairn, остров Уединения, Ilha da Trindade, Île Tromelin, Île de Clipperton, Bouvetøya, Antipodes Island, Île Amsterdam, Île Saint-Paul, Saint Helena, Ascension, South Shetland Islands, Semisopochnoi Island, Napuka, Fangataufa, Christmas Island, остров Атласова, Norfolk Island, Raoul Island, Campbell Island, Isla Floreana, Diego Garcia, Laurie Island, Peter I Island, Macquarie Island, Franklin Island, Possession Island, остров Рудольфа, Howland Island, Isla de Pascua (Rapa Nui), Isla Robinsón Crusoe, Socorro Island +yes +yes and 2 +yes +Fahrschule Formel 1 and 49.4285627 8.6458063 +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8169651 2.3597405, 48.9012005 2.3862959, 48.8801709 2.3706981, 48.8501676 2.3621707, 48.9003252 2.3734463, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8323948 2.3645635, 48.8645440 2.4097670, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.9007525 2.3748724, 48.8536267 2.3664311, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8168431 2.3604808, 48.8407841 2.3912112, 48.8607706 2.3747898, 48.8787212 2.3698437, 48.8586303 2.3897622, 48.8579937 2.3897210, 48.8558395 2.3835889, 48.8786755 2.3549221, 48.8478375 2.3535433, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8962481 2.3594957, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.8464060 2.3874300, 48.9007173 2.3745755 +yes +http://www.myvue.com/ +yes +Boulogne-Billancourt, Gonesse, Arcueil, Montmagny, Villepinte, Le Chesnay, Chatou, Gentilly, Palaiseau, Antony, Neuilly-Plaisance, Neuilly-sur-Marne, Viroflay, Aubervilliers, Athis-Mons, Franconville, Garches, Stains, Noisiel, Clichy, Le Blanc-Mesnil, Chelles, Verrières-le-Buisson, Le Plessis-Robinson, Vélizy-Villacoublay, Saint-Leu-la-Forêt, Savigny-sur-Orge, Le Vésinet, Maisons-Alfort, Bry-sur-Marne, Enghien-les-Bains, Aulnay-sous-Bois, Nanterre, Épinay-sur-Seine, Villiers-le-Bel, Chevilly-Larue, Les Lilas, Morangis, Deuil-la-Barre, Limeil-Brévannes, Villemomble, Montesson, Les Pavillons-sous-Bois, Villeneuve-le-Roi, Bois-Colombes, La Garenne-Colombes, Montmorency, Rosny-sous-Bois, Châtillon, Sannois, Saint-Brice-sous-Forêt, Vitry-sur-Seine, Neuilly-sur-Seine, Meudon, Joinville-le-Pont, Noisy-le-Grand, Bourg-la-Reine, La Celle-Saint-Cloud, Malakoff, Saint-Mandé, Le Bourget, Massy, Houilles, Le Plessis-Trévise, Courbevoie, Livry-Gargan, Gennevilliers, Sceaux, La Courneuve, Le Pré-Saint-Gervais, Suresnes, Villiers-sur-Marne, Montigny-lès-Cormeilles, L'Haÿ-les-Roses, Chaville, Saint-Gratien, Montfermeil, Saint-Maurice, Alfortville, Argenteuil, Sartrouville, Cormeilles-en-Parisis, Nogent-sur-Marne, Thiais, Fontenay-sous-Bois, Champigny-sur-Marne, Issy-les-Moulineaux, Créteil, Boissy-Saint-Léger, Longjumeau, Charenton-le-Pont, Rueil-Malmaison, Fresnes, Saint-Cloud, Noisy-le-Sec, Châtenay-Malabry, Bobigny, Domont, Soisy-sous-Montmorency, Marly-le-Roi, Sevran, Garges-lès-Gonesse, Vigneux-sur-Seine, Ermont, Cachan, Sucy-en-Brie, Bagnolet, Bezons, Carrières-sur-Seine, Le Raincy, Montreuil, Le Perreux-sur-Marne, Montgeron, Le Kremlin-Bicêtre, Arnouville, Champs-sur-Marne, Fontenay-aux-Roses, Yerres, Pierrefitte-sur-Seine, Villetaneuse, Bonneuil-sur-Marne, Sarcelles, Romainville, Saint-Denis, Gagny, Choisy-le-Roi, Vanves, Villejuif, Valenton, Versailles, Villeneuve-Saint-Georges, Maisons-Laffitte, Chennevières-sur-Marne, Ville-d'Avray, Ormesson-sur-Marne, Bagneux, Levallois-Perret, Chilly-Mazarin, Eaubonne, Montrouge, Colombes, Drancy, Sèvres, Villeneuve-la-Garenne, Bondy, La Queue-en-Brie, Villebon-sur-Yvette, Paris, Paris, Paris, Paris, Paris, Cynthiana, Saint-Germain-en-Laye, Saint-Maur-des-Fossés, Orly, Juvisy-sur-Orge, Le Pecq, Asnières-sur-Seine, Puteaux, Ivry-sur-Seine, Vincennes, Pantin, Saint-Ouen, Clichy-sous-Bois, Clamart, Denning, Subiaco, Morrison Bluff, Caulksville, Blue Mountain, Detroit, Universal, Goss, Henry, Cottage Grove, Big Sandy +48.8672925 2.3255509, 48.8659000 2.3372420, 48.8615254 2.3440287, 48.8674660 2.3326727, 48.8663903 2.3380844, 48.8660027 2.3646613, 48.8648091 2.3411291, 48.8687993 2.3373273, 48.8648222 2.3475072, 48.8689038 2.3422059, 48.8609918 2.3544137, 48.8710439 2.3094204, 48.8695157 2.3030346, 48.8714582 2.3357136, 48.8719507 2.3429771, 48.8718710 2.3418144, 48.8705409 2.3532213, 48.8711564 2.3649322, 48.8755778 2.3590863, 48.8759060 2.3588881, 48.8727960 2.3635124, 48.8635832 2.3671683, 48.8660128 2.3794462, 48.8638332 2.3670685, 48.8679153 2.3737355, 48.8656744 2.3707975, 48.8683924 2.3793396, 48.8645151 2.3730525, 48.8679409 2.3754781, 48.8667776 2.3826288, 48.8646895 2.2880988, 48.8869322 2.3399586, 48.8847049 2.3404648, 48.8654581 2.3446776, 48.8596461 2.3534386, 48.8755021 2.3103942, 48.8606089 2.3006648, 48.8604171 2.3059560, 48.8795968 2.3519355, 48.8673444 2.3739608, 48.8631427 2.3877152, 48.8694500 2.3047988, 48.8647212 2.3469127, 48.8693629 2.3549762, 48.8692952 2.3553367, 48.8658103 2.3452891, 48.8588835 2.3307705, 48.8697776 2.3105917, 48.8722601 2.3035046, 48.8686679 2.3066263, 48.8672098 2.3654644, 48.8667808 2.3656961, 48.8684771 2.3626799, 48.8666678 2.3662969, 48.8658039 2.3707172, 48.8657085 2.3712657, 48.8655987 2.3744866, 48.8630511 2.3852954, 48.8780431 2.3720976, 48.8721672 2.3266440, 48.8718873 2.3570864, 48.8845714 2.3233053, 48.8844355 2.3243334, 48.8867718 2.3236539, 48.8884368 2.3207195, 48.8886141 2.3198123, 48.8891033 2.3164088, 48.8879876 2.3341073, 48.8940712 2.3342515, 48.8886186 2.3167009, 48.8835953 2.3233585, 48.8858410 2.3405929, 48.8891314 2.3403708, 48.8776115 2.2679599, 48.8828817 2.3596543, 48.8641353 2.3676323, 48.8743115 2.3756487, 48.8882137 2.3785003, 48.8723344 2.3492288, 48.8630061 2.3625592, 48.8628927 2.3617428, 48.8672258 2.3079158, 48.8838862 2.3277689, 48.8861318 2.3340926, 48.8880361 2.3910565, 48.8621883 2.3485126, 48.8696045 2.3711651, 48.8718241 2.3676242, 48.8719097 2.3674864, 48.8664224 2.3652804, 48.8663460 2.3644859, 48.8674473 2.3626414, 48.8675118 2.3625438, 48.8652993 2.3734818, 48.8639802 2.3867074, 48.8642946 2.3862990, 48.8662357 2.3840946, 48.8667100 2.3812708, 48.8661982 2.3800386, 48.8650645 2.3775756, 48.8657840 2.3770479, 48.8661962 2.3766789, 48.8669356 2.3763865, 48.8680369 2.3754008, 48.8676267 2.3787920, 48.8598744 2.3476273, 48.8622962 2.3522413, 48.8739244 2.3454201, 48.8645230 2.3550690, 48.8627431 2.3531218, 48.8628573 2.3522080, 48.8613333 2.3538187, 48.8681798 2.3714175, 48.8748569 2.3825637, 48.8701181 2.2849979, 48.8860554 2.3188123, 48.8742269 2.3755468, 48.8664641 2.3722308, 48.8644029 2.4080476, 48.8650517 2.3018704, 48.8840850 2.3374869, 48.8663999 2.3328148, 48.8678174 2.3028593, 48.8693591 2.3567215, 48.8687850 2.3594780, 48.8865096 2.3452428, 48.8755523 2.3252222, 48.8905909 2.3820031, 48.8920861 2.3792943, 48.8922518 2.3794780, 48.8847020 2.3249240, 48.8759394 2.3585316, 48.8836330 2.3284520, 48.8803159 2.2995227, 48.8633934 2.3347841, 48.8707741 2.3411912, 48.8705661 2.3420906, 48.8709334 2.3427566, 48.8723362 2.3823271, 48.8661377 2.3353287, 48.8871654 2.3269257, 48.8861847 2.3270688, 48.8974129 2.3292183, 48.8830692 2.3825494, 48.8839003 2.3840684, 48.8605714 2.3454975, 48.8590672 2.3498178, 48.8768016 2.3394255, 48.8671282 2.3756094, 48.8720047 2.3455258, 48.8652131 2.3628703, 48.8649450 2.3550985, 48.8646517 2.3565127, 48.8646274 2.3569545, 48.8650523 2.3569392, 48.8730352 2.3796739, 48.8958230 2.3395842, 48.8794405 2.3338166, 48.8878588 2.3596648, 48.8600943 2.3451124, 48.8604674 2.3454225, 48.8599442 2.3474167, 48.8601724 2.3488956, 48.8603586 2.3484772, 48.8609295 2.3450073, 48.8612791 2.3423684, 48.8613359 2.3426577, 48.8612560 2.3431916, 48.8613382 2.3448649, 48.8617216 2.3432877, 48.8602965 2.3418540, 48.8588694 2.3415282, 48.8622902 2.3393649, 48.8620988 2.3398606, 48.8622685 2.3398888, 48.8626905 2.3414763, 48.8619643 2.3491461, 48.8625821 2.3483927, 48.8635373 2.3490562, 48.8631582 2.3498973, 48.8629810 2.3484703, 48.8644969 2.3453886, 48.8633332 2.3460793, 48.8633690 2.3462612, 48.8634242 2.3462790, 48.8641678 2.3467038, 48.8636473 2.3431563, 48.8640954 2.3438023, 48.8625475 2.3407883, 48.8647612 2.3406523, 48.8659486 2.3400023, 48.8644890 2.3404697, 48.8655554 2.3403846, 48.8660668 2.3390095, 48.8661019 2.3389239, 48.8650200 2.3366293, 48.8656093 2.3369261, 48.8663099 2.3374684, 48.8660066 2.3354463, 48.8660278 2.3340077, 48.8663930 2.3354840, 48.8663406 2.3354494, 48.8666001 2.3357750, 48.8646841 2.3338346, 48.8660273 2.3312781, 48.8658325 2.3324895, 48.8658744 2.3325173, 48.8659399 2.3325614, 48.8663779 2.3317318, 48.8669595 2.3323778, 48.8670401 2.3324272, 48.8676684 2.3316870, 48.8671882 2.3325179, 48.8675087 2.3324647, 48.8676565 2.3320208, 48.8675328 2.3323476, 48.8674795 2.3326070, 48.8678727 2.3316533, 48.8680817 2.3307073, 48.8744252 2.3738880, 48.8687898 2.3338477, 48.8677062 2.3374280, 48.8690695 2.3343056, 48.8706891 2.3340754, 48.8714078 2.3378085, 48.8690729 2.3399905, 48.8691872 2.3393294, 48.8691071 2.3397858, 48.8692514 2.3401242, 48.8716597 2.3407937, 48.8716249 2.3410422, 48.8688297 2.3421626, 48.8675928 2.3409167, 48.8664997 2.3400225, 48.8704135 2.3318678, 48.8691969 2.3433101, 48.8671729 2.3441962, 48.8705191 2.3428655, 48.8709276 2.3429934, 48.8647371 2.3502921, 48.8696741 2.3519506, 48.8703899 2.3484689, 48.8834373 2.3324889, 48.8590577 2.3501929, 48.8593929 2.3493115, 48.8595480 2.3490548, 48.8616594 2.3501884, 48.8794020 2.3884400, 48.8646409 2.3536613, 48.8635758 2.3531607, 48.8636089 2.3534360, 48.8640159 2.3502075, 48.8599753 2.3568642, 48.8633842 2.3464893, 48.8626959 2.3521061, 48.8619134 2.3509953, 48.8671336 2.3577810, 48.8645093 2.3542545, 48.8644805 2.3545447, 48.8646620 2.3539239, 48.8644591 2.3546214, 48.8682730 2.3614921, 48.8674734 2.3577982, 48.8661285 2.3594408, 48.8655917 2.3595983, 48.8651109 2.3571532, 48.8649701 2.3570435, 48.8751228 2.3939970, 48.8724707 2.3776998, 48.8717657 2.3765997, 48.8714128 2.3768852, 48.8613715 2.3542463, 48.8614471 2.3583969, 48.8628432 2.3600037, 48.8637749 2.3607964, 48.8638993 2.3606178, 48.8635375 2.3610562, 48.8649528 2.3628140, 48.8648961 2.3629259, 48.8652889 2.3632073, 48.8651842 2.3631892, 48.8647607 2.3633251, 48.8660249 2.3647181, 48.8663091 2.3639231, 48.8636551 2.3631224, 48.8636998 2.3626132, 48.8630524 2.3640855, 48.8621981 2.3629228, 48.8617499 2.3623904, 48.8622881 2.3631634, 48.8620347 2.3635571, 48.8639888 2.3639782, 48.8615020 2.3620520, 48.8594649 2.3600214, 48.8602716 2.3621222, 48.8590981 2.3594568, 48.8615090 2.3660863, 48.8617960 2.3778943, 48.8624536 2.3800165, 48.8881390 2.3534840, 48.8636510 2.3505320, 48.8643222 2.3548396, 48.8644140 2.3547850, 48.8687006 2.3354843, 48.8651140 2.3778720, 48.8821123 2.3666359, 48.8790715 2.3649117, 48.8792180 2.3665493, 48.8820420 2.3678327, 48.8820491 2.3660464, 48.8818956 2.3658787, 48.8782055 2.3656749, 48.8788300 2.3662059, 48.8815137 2.3659229, 48.8777011 2.3652544, 48.8803699 2.3667330, 48.8808723 2.3646162, 48.8760311 2.3700774, 48.8610786 2.3535904, 48.8671314 2.3577761, 48.8668458 2.3586800, 48.8668914 2.3584627, 48.8670160 2.3581568, 48.8670538 2.3582562, 48.8668315 2.3590233, 48.8668006 2.3582106, 48.8647030 2.3567983, 48.8647921 2.3568339, 48.8643639 2.3541873, 48.8668939 2.3583012, 48.8668657 2.3585775, 48.8801119 2.3535250, 48.8685624 2.3685743, 48.8690249 2.3683671, 48.8632239 2.3566007, 48.8685290 2.3895370, 48.8673734 2.3222301, 48.8693756 2.3206236, 48.8705692 2.3211241, 48.8727654 2.3210286, 48.8703638 2.3102774, 48.8723529 2.3102456, 48.8738587 2.3163169, 48.8737509 2.3196440, 48.8744903 2.3184375, 48.8736367 2.3223675, 48.8713058 2.3233311, 48.8724761 2.3240966, 48.8721839 2.3251685, 48.8751646 2.3250295, 48.8753241 2.3259291, 48.8752570 2.3254427, 48.8741599 2.3254911, 48.8761914 2.3213046, 48.8760259 2.3235129, 48.8801220 2.3241052, 48.8831176 2.3264261, 48.8820671 2.3242802, 48.8832767 2.3277563, 48.8834770 2.3281748, 48.8837504 2.3286298, 48.8829218 2.3256282, 48.8831342 2.3236837, 48.8801277 2.3203119, 48.8799079 2.3202876, 48.8805205 2.3183206, 48.8733445 2.3091989, 48.8745431 2.3093666, 48.8794607 2.3036933, 48.8724450 2.3072214, 48.8707572 2.3085752, 48.8696331 2.3067786, 48.8715784 2.3063992, 48.8713131 2.3073190, 48.8713952 2.3012394, 48.8697736 2.3021852, 48.8669256 2.3076130, 48.8668818 2.3076173, 48.8672769 2.3062806, 48.8670111 2.3076126, 48.8671369 2.3028950, 48.8681586 2.3027800, 48.8660598 2.3017043, 48.8651464 2.3005883, 48.8724390 2.3021296, 48.8706337 2.3954670, 48.8710202 2.3789233, 48.8788328 2.3896914, 48.8600728 2.4041262, 48.8597085 2.4049673, 48.8790339 2.2985581, 48.8787934 2.2983905, 48.8775425 2.2981350, 48.8783508 2.3004239, 48.8778323 2.2987883, 48.8690865 2.3022434, 48.8694700 2.3034453, 48.8699522 2.3058242, 48.8799166 2.3359231, 48.8614760 2.3530830, 48.8885830 2.3930712, 48.8831626 2.3618001, 48.8829824 2.3614134, 48.8827589 2.3595149, 48.8835628 2.3609310, 48.8733935 2.3902484, 48.8739298 2.3893471, 48.8821165 2.3636110, 48.8787523 2.3641791, 48.8775739 2.3642408, 48.8800819 2.3647141, 48.8801565 2.3594651, 48.8827513 2.3591491, 48.8797114 2.3574553, 48.8804717 2.3578445, 48.8784279 2.3643183, 48.8826930 2.3668426, 48.8753587 2.3261663, 48.8796547 2.3374136, 48.8753796 2.2958946, 48.8702381 2.3689388, 48.8827554 2.3649189, 48.8679999 2.3369853, 48.8802074 2.3638169, 48.8828408 2.3670033, 48.8831548 2.3679716, 48.8799198 2.3624384, 48.8801632 2.3624358, 48.8658930 2.2979628, 48.8721649 2.2948681, 48.8678330 2.2903912, 48.8670044 2.2897764, 48.8637238 2.2872368, 48.8740698 2.3727422, 48.8691923 2.2884450, 48.8730386 2.2928973, 48.8692540 2.2857812, 48.8664391 2.2859464, 48.8666202 2.2859162, 48.8741506 2.2926613, 48.8744699 2.2916401, 48.8748891 2.2837909, 48.8665016 2.2891682, 48.8766202 2.2833645, 48.8734052 2.2811173, 48.8702950 2.2830521, 48.8654332 2.2855483, 48.8652388 2.2832232, 48.8671985 2.2798899, 48.8700560 2.3301669, 48.8637574 2.2772598, 48.8707204 2.3239555, 48.8705451 2.3238330, 48.8706016 2.3238683, 48.8629342 2.2763103, 48.8632435 2.2744521, 48.8595315 2.2787013, 48.8741142 2.3446221, 48.8762130 2.3456817, 48.8776819 2.2846763, 48.8951764 2.3824259, 48.8801236 2.3667122, 48.8799930 2.3669160, 48.8815607 2.3646012, 48.8604747 2.3677991, 48.8655911 2.3030514, 48.8626372 2.2404388, 48.8707796 2.3732614, 48.8709201 2.3740599, 48.8710092 2.3742679, 48.8592147 2.3578986, 48.8672772 2.3368959, 48.8866286 2.3612403, 48.8795990 2.2908850, 48.8764826 2.2833917, 48.8618932 2.3433243, 48.8642832 2.3420572, 48.8773156 2.2850715, 48.8773806 2.2848829, 48.8774160 2.2847302, 48.8656690 2.3706000, 48.8773360 2.3157316, 48.8663775 2.3472549, 48.8696608 2.3393758, 48.8608198 2.3503260, 48.8603491 2.3508475, 48.8841171 2.3650610, 48.8602874 2.3097025, 48.8602217 2.3097138, 48.8859856 2.3190545, 48.8710024 2.3294337, 48.8717034 2.3766791, 48.8657517 2.3712388, 48.8655880 2.3691209, 48.8944130 2.3404956, 48.8752166 2.3329602, 48.8759120 2.3269790, 48.8830873 2.3292402, 48.8785075 2.2845239, 48.8786662 2.2845930, 48.8809300 2.3404709, 48.8818258 2.3395224, 48.8765185 2.3448908, 48.8718967 2.3415625, 48.8853691 2.3353615, 48.8857113 2.3355174, 48.8855561 2.3353079, 48.8855279 2.3354474, 48.8828690 2.3183304, 48.8823081 2.3158735, 48.8825903 2.3165065, 48.8829889 2.3183223, 48.8829466 2.3176571, 48.8714920 2.3541352, 48.8774236 2.4101645, 48.8775262 2.2949459, 48.8791462 2.3541109, 48.8796589 2.3543864, 48.8754540 2.2867414, 48.8756436 2.2866256, 48.8734790 2.3750462, 48.8732283 2.3745203, 48.8605552 2.3544304, 48.8726908 2.3752657, 48.8674203 2.3758861, 48.8682312 2.3751770, 48.8655345 2.3775152, 48.8890725 2.3179865, 48.8693522 2.3713516, 48.8692142 2.3714534, 48.8694819 2.3712557, 48.8673820 2.3728092, 48.8673041 2.3731992, 48.8678500 2.3687750, 48.8649857 2.3752785, 48.8660987 2.3722759, 48.8609387 2.3678708, 48.8633327 2.3688747, 48.8633817 2.3689965, 48.8663125 2.3723460, 48.8649676 2.3711282, 48.8661552 2.3797640, 48.8656909 2.3777859, 48.8639261 2.3703310, 48.8670939 2.3749249, 48.8639860 2.3704728, 48.8646935 2.3723809, 48.8644002 2.3730285, 48.8677794 2.3780026, 48.8646865 2.3738115, 48.8765188 2.3353132, 48.8767451 2.3353322, 48.8764727 2.3353018, 48.8764220 2.3352962, 48.8760923 2.3383718, 48.8745269 2.3383294, 48.8751689 2.3383360, 48.8646004 2.3751995, 48.8674715 2.3750082, 48.8632185 2.3775523, 48.8637330 2.3792298, 48.8766449 2.2886055, 48.8782254 2.2853949, 48.8777760 2.2847660, 48.8826774 2.3602875, 48.8958659 2.3827194, 48.8594440 2.3503990, 48.8594790 2.3504550, 48.8833475 2.2875083, 48.8744843 2.3304643, 48.8850543 2.3872280, 48.8820903 2.2863199, 48.8720949 2.3323339, 48.8705731 2.3103284, 48.8847919 2.3672165, 48.8713001 2.3766068, 48.8704762 2.3775322, 48.8704356 2.3764056, 48.8712066 2.3768241, 48.8776662 2.3398701, 48.8601399 2.2750024, 48.8764828 2.3370142, 48.8766560 2.3371844, 48.8703131 2.3487884, 48.8662293 2.3379767, 48.8675784 2.2807278, 48.8667500 2.2803710, 48.8687850 2.3380000, 48.8703423 2.3428105, 48.8731247 2.3808610, 48.8662137 2.3353607, 48.8660390 2.3352910, 48.8657884 2.3351488, 48.8649854 2.3569095, 48.8645459 2.3566348, 48.8635544 2.3694256, 48.8634434 2.3691079, 48.8719692 2.3361261, 48.8715773 2.3365388, 48.8714095 2.3355863, 48.8752025 2.3376055, 48.8751468 2.3355442, 48.8750364 2.3392304, 48.8766742 2.3373282, 48.8766460 2.3368602, 48.8769295 2.3383704, 48.8769349 2.3331592, 48.8767858 2.3369975, 48.8768072 2.3364970, 48.8758550 2.3388379, 48.8767868 2.3367967, 48.8767450 2.3377873, 48.8710277 2.3356624, 48.8708929 2.3349679, 48.8710045 2.3355038, 48.8716416 2.3409433, 48.8734969 2.3525798, 48.8706911 2.3467398, 48.8721862 2.3501755, 48.8708723 2.3480533, 48.8704690 2.3480544, 48.8716176 2.3411379, 48.8707327 2.3464923, 48.8714861 2.3419548, 48.8716074 2.3412011, 48.8751154 2.3557100, 48.8749802 2.3559340, 48.8744702 2.3552896, 48.8773577 2.3564531, 48.8785393 2.3568626, 48.8767619 2.3563475, 48.8786854 2.3569358, 48.8779934 2.3562593, 48.8782144 2.3566970, 48.8799927 2.3591789, 48.8812174 2.3638517, 48.8750088 2.3393609, 48.8796296 2.3553194, 48.8800642 2.3523843, 48.8809546 2.3510669, 48.8689508 2.3362959, 48.8667422 2.3365735, 48.8682398 2.3365168, 48.8696120 2.3356753, 48.8676561 2.3370904, 48.8675328 2.3370273, 48.8698393 2.3358297, 48.8708380 2.3349612, 48.8688219 2.3359090, 48.8688160 2.3362566, 48.8688035 2.3365534, 48.8666564 2.3369830, 48.8669153 2.3365074, 48.8702490 2.3349166, 48.8688150 2.3361103, 48.8676983 2.3366997, 48.8681903 2.3364995, 48.8678747 2.3364447, 48.8751334 2.3514260, 48.8658609 2.3370619, 48.8641660 2.3361960, 48.8656996 2.3366338, 48.8651667 2.3364852, 48.8652254 2.3367395, 48.8703362 2.3315753, 48.8597079 2.3182507, 48.8666350 2.3099131, 48.8703978 2.3225405, 48.8702620 2.3312290, 48.8702706 2.3312786, 48.8706031 2.3221827, 48.8707016 2.3218346, 48.8658900 2.3506042, 48.8658986 2.3742587, 48.8663671 2.3715603, 48.8648305 2.3731176, 48.8972266 2.3855240, 48.8796615 2.3550800, 48.8798780 2.3540920, 48.8613780 2.3495790, 48.8805044 2.3746913, 48.8697793 2.3750857, 48.8616152 2.3446790, 48.8616509 2.3443800, 48.8598716 2.3677862, 48.8640655 2.3345802, 48.8936313 2.3222087, 48.8943755 2.3204813, 48.8752927 2.3875604, 48.8732552 2.3604924, 48.8731705 2.3596985, 48.8720524 2.3605992, 48.8830455 2.3398008, 48.8910970 2.3741558, 48.8911479 2.3740014, 48.8907671 2.3759930, 48.8735546 2.3841519, 48.8908275 2.3460063, 48.8905461 2.3453913, 48.8911373 2.3471492, 48.8907355 2.3482159, 48.8851558 2.3360026, 48.8945691 2.3441669, 48.8944316 2.3452559, 48.8645796 2.3718543, 48.8936330 2.3428880, 48.8940560 2.3431940, 48.8941520 2.3429690, 48.8943730 2.3432450, 48.8951370 2.3433760, 48.8943990 2.3447720, 48.8942700 2.3458810, 48.8941300 2.3458060, 48.8928950 2.3433840, 48.8948510 2.3409210, 48.8691880 2.3617720, 48.8694980 2.3633100, 48.8693370 2.3635590, 48.8691390 2.3634440, 48.8691820 2.3631770, 48.8697450 2.3637220, 48.8686940 2.3597770, 48.8686410 2.3599800, 48.8689770 2.3602190, 48.8690369 2.3600697, 48.8701370 2.3610220, 48.8718820 2.3623620, 48.8721550 2.3626770, 48.8724460 2.3632870, 48.8726535 2.3631861, 48.8732160 2.3629280, 48.8931040 2.3440780, 48.8926550 2.3442290, 48.8937130 2.3451630, 48.8937300 2.3449020, 48.8731527 2.3385700, 48.8664049 2.3413812, 48.8687508 2.3345042, 48.8692412 2.3299818, 48.8707775 2.3387098, 48.8689281 2.3302927, 48.8695802 2.3230555, 48.8664844 2.3389311, 48.8700770 2.3223918, 48.8675314 2.3020548, 48.8696595 2.3052249, 48.8662502 2.3285392, 48.8739879 2.3430920, 48.8634808 2.3437738, 48.8718416 2.3144851, 48.8696738 2.3309961, 48.8724435 2.3281256, 48.8947860 2.3445300, 48.8724800 2.3404835, 48.8724927 2.3528401, 48.8714038 2.3104401, 48.8715946 2.3262057, 48.8669510 2.3270370, 48.8706950 2.3313289, 48.8673862 2.2911822, 48.8679841 2.3255481, 48.8706291 2.3297804, 48.8680526 2.3287936, 48.8684086 2.3268250, 48.8662803 2.3394262, 48.8710959 2.3416366, 48.8699813 2.3246311, 48.8597088 2.3086607, 48.8687853 2.3250184, 48.8688647 2.2646951, 48.8635574 2.2602856, 48.8660415 2.3361004, 48.8939174 2.3431529, 48.8911748 2.3607925, 48.8683505 2.3748549, 48.8873793 2.3371742, 48.8799295 2.3575665, 48.8864168 2.3442029, 48.8866377 2.3443434, 48.8899236 2.3398500, 48.8865304 2.3443480, 48.8615684 2.3783425, 48.8857166 2.3381509, 48.8743786 2.3636125, 48.8702183 2.2459747, 48.8690004 2.3384279, 48.8739830 2.3725892, 48.8742654 2.3727129, 48.8736424 2.3076398, 48.8984060 2.3445732, 48.8828717 2.3288427, 48.8827606 2.3283572, 48.8935993 2.3230562, 48.8668318 2.2544028, 48.8934373 2.3232735, 48.8795704 2.3522406, 48.8793693 2.3525786, 48.8865873 2.3128095, 48.8661411 2.3671105, 48.8714714 2.3280397, 48.8914883 2.3506742, 48.8867280 2.3409619, 48.8736230 2.3526886, 48.8789434 2.3780844, 48.8717406 2.3715881, 48.8733313 2.3530301, 48.8727613 2.3519183, 48.8727251 2.3521315, 48.8817044 2.3525759, 48.8928740 2.3287813, 48.8752613 2.3705179, 48.8801808 2.3373122, 48.8777152 2.3320765, 48.8777130 2.3318740, 48.8720797 2.3405228, 48.8717651 2.3403142, 48.8708172 2.3482539, 48.8710210 2.3469210, 48.8710522 2.3467304, 48.8829700 2.3205585, 48.8820557 2.3285353, 48.8801158 2.3291143, 48.8815002 2.3282628, 48.8742801 2.3357676, 48.8742391 2.3333145, 48.8742326 2.3334984, 48.8741848 2.3351560, 48.8743601 2.3329097, 48.8742439 2.3332327, 48.8742300 2.3335755, 48.8742269 2.3336382, 48.8728885 2.3451791, 48.8765391 2.3394762, 48.8762070 2.3400723, 48.8765114 2.3406889, 48.8766574 2.3401427, 48.8764750 2.3395753, 48.8766574 2.3405656, 48.8680574 2.3417881, 48.8698783 2.3425685, 48.8691169 2.3422291, 48.8702023 2.3421494, 48.8641319 2.3484339, 48.8872935 2.3361945, 48.8853856 2.3359893, 48.8873015 2.3360309, 48.8858892 2.3361945, 48.8883991 2.3510703, 48.8869141 2.3514696, 48.8635328 2.3632361, 48.8825806 2.3672397, 48.8857859 2.3452590, 48.8812525 2.3584914, 48.8830046 2.3650381, 48.8830637 2.3612591, 48.8728704 2.3813019, 48.8688487 2.2348654, 48.8834736 2.3604504, 48.8896591 2.3426912, 48.8857760 2.3287243, 48.8849775 2.3295394, 48.8902288 2.3476015, 48.8880810 2.2979280, 48.8974737 2.3312683, 48.8959871 2.3304855, 48.8872260 2.3324699, 48.8904006 2.3349160, 48.8905328 2.3349026, 48.8884483 2.3329205, 48.8875488 2.3327381, 48.8915645 2.3352835, 48.8953965 2.3375071, 48.8879853 2.3396455, 48.8947585 2.3282626, 48.8959929 2.3286918, 48.8961868 2.3389271, 48.8685514 2.3683075, 48.8825100 2.3378415, 48.8846868 2.3416679, 48.8843749 2.3411643, 48.8846003 2.3411844, 48.8753270 2.3689900, 48.8720517 2.3351032, 48.8662620 2.3356061, 48.8670216 2.3359869, 48.8781869 2.2884063, 48.8625297 2.3799298, 48.8590223 2.4024858, 48.8590692 2.4058632, 48.8793921 2.3895039, 48.8656739 2.3463704, 48.8973173 2.3848230, 48.8972521 2.3847586, 48.8970881 2.3845721, 48.8648559 2.3969632, 48.8731487 2.3445761, 48.8713070 2.3479965, 48.8724637 2.2980607, 48.8707216 2.3006611, 48.8682088 2.3014586, 48.8743665 2.3618973, 48.8742228 2.3624553, 48.8727849 2.3634181, 48.8729195 2.2988493, 48.8730465 2.2984497, 48.8617849 2.3518205, 48.8616656 2.3513122, 48.8619390 2.3509944, 48.8656555 2.2894172, 48.8652925 2.2891532, 48.8654719 2.2892837, 48.8595904 2.4050515, 48.8594938 2.4051634, 48.8708913 2.3580857, 48.8688368 2.3624724, 48.8691941 2.3573560, 48.8692734 2.3564413, 48.8699288 2.3950557, 48.8751640 2.3321790, 48.8598245 2.3479142, 48.8592985 2.3479258, 48.8601373 2.3481716, 48.8625488 2.3540088, 48.8600406 2.3484986, 48.8600556 2.3483497, 48.8601051 2.3500266, 48.8591455 2.3478511, 48.8602833 2.3482093, 48.8611395 2.3539719, 48.8592067 2.3534078, 48.8620249 2.3537411, 48.8621035 2.3535221, 48.8634711 2.3500128, 48.8601905 2.3476020, 48.8601948 2.3475156, 48.8596378 2.3474576, 48.8629250 2.3487647, 48.8636829 2.3493064, 48.8637682 2.3499143, 48.8634421 2.3485303, 48.8633388 2.3485138, 48.8848688 2.3069070, 48.8654002 2.3689374, 48.8614835 2.3771934, 48.8778735 2.2875843, 48.8705072 2.3019336, 48.8708689 2.3020289, 48.8697768 2.3036006, 48.8681112 2.3014721, 48.8704351 2.3043615, 48.8693740 2.3077196, 48.8777760 2.2877961, 48.8643014 2.4002976, 48.8720371 2.3481740, 48.8732358 2.3613894, 48.8732268 2.3624203, 48.8944510 2.3440420, 48.8754701 2.2836788, 48.8753925 2.2852613, 48.8750872 2.2865005, 48.8756941 2.2862216, 48.8727890 2.3429679, 48.8727157 2.3429899, 48.8851757 2.3075791, 48.8820348 2.3139529, 48.8719957 2.3430238, 48.8729655 2.3432485, 48.8718024 2.3432812, 48.8767250 2.3307380, 48.8610880 2.3512876, 48.8614615 2.3514586, 48.8841484 2.3227392, 48.8840708 2.3230235, 48.8861392 2.3337047, 48.8720846 2.3660947, 48.8716623 2.3681061, 48.8603639 2.3478222, 48.8603388 2.3480663, 48.8598889 2.3522642, 48.8848153 2.3229754, 48.8733188 2.3446580, 48.8752221 2.3038262, 48.8878312 2.3787631, 48.8701201 2.3491659, 48.8609895 2.3473093, 48.8730540 2.3435221, 48.8655913 2.3471265, 48.8852970 2.3163291, 48.8676507 2.3427272, 48.8771870 2.3513170, 48.8764165 2.3555503, 48.8764781 2.3553328, 48.8771434 2.3517304, 48.8764892 2.3552357, 48.8673359 2.3991033, 48.8665408 2.3996952, 48.8675264 2.4005840, 48.8729522 2.4050353, 48.8722236 2.4047280, 48.8772063 2.4094486, 48.8769898 2.4054164, 48.8711865 2.4001138, 48.8768593 2.4057793, 48.8762568 2.4026044, 48.8692292 2.3966523, 48.8690126 2.3971718, 48.8726193 2.3990837, 48.8723933 2.3993546, 48.8758552 2.4019932, 48.8645296 2.3999995, 48.8643290 2.3977966, 48.8641688 2.3976584, 48.8642835 2.3981370, 48.8650741 2.3972853, 48.8821571 2.3281764, 48.8661899 2.3718762, 48.8591372 2.3430272, 48.8622322 2.3573881, 48.8890315 2.3624318, 48.8909716 2.3611648, 48.8913537 2.3623037, 48.8912306 2.3619236, 48.8913500 2.3613552, 48.8684859 2.3702604, 48.8904554 2.3613786, 48.8911316 2.3641074, 48.8911480 2.3638611, 48.8710452 2.3583430, 48.8816643 2.3664685, 48.8901098 2.3596369, 48.8909114 2.3604949, 48.8909059 2.3606042, 48.8709254 2.3085765, 48.8662240 2.3388110, 48.8900400 2.3632191, 48.8682148 2.3979085, 48.8773588 2.2989656, 48.8774315 2.2986835, 48.8751593 2.3701002, 48.8741225 2.3893282, 48.8748365 2.3888937, 48.8909898 2.3608038, 48.8922565 2.3879668, 48.8896721 2.3596605, 48.8890437 2.3606481, 48.8890487 2.3604033, 48.8897921 2.3604602, 48.8910188 2.3609138, 48.8897517 2.3604732, 48.8931060 2.3282113, 48.8608042 2.3799887, 48.8605689 2.3786648, 48.8762181 2.3718774, 48.8854958 2.3656011, 48.8735521 2.3649705, 48.8861995 2.3567861, 48.8610209 2.3105163, 48.8610190 2.3113026, 48.8901495 2.3592264, 48.8745880 2.3309443, 48.8746973 2.3308647, 48.8745893 2.3308470, 48.8798304 2.3575115, 48.8789100 2.2874734, 48.8891501 2.3600864, 48.8623031 2.3667215, 48.8867265 2.3692541, 48.8749302 2.3555936, 48.8936132 2.3841788, 48.8659386 2.3788507, 48.8849455 2.3527050, 48.8850090 2.3595929, 48.8918519 2.3634768, 48.8916614 2.3634553, 48.8920015 2.3179046, 48.8690083 2.3564593, 48.8615300 2.3686675, 48.8760446 2.3484651, 48.8850314 2.3781308, 48.8946856 2.3193650, 48.8678207 2.3478985, 48.8667602 2.3505401, 48.8644860 2.3502765, 48.8736385 2.3889782, 48.8739867 2.3864968, 48.8718150 2.3717657, 48.8727815 2.3712192, 48.8729660 2.3702046, 48.8617341 2.3650289, 48.8642536 2.2721272, 48.8616662 2.3146849, 48.8849737 2.3369336, 48.8740700 2.3880327, 48.8599854 2.3672407, 48.8889949 2.3583055, 48.8860248 2.3369308, 48.8902739 2.3358959, 48.8874196 2.3791285, 48.8917305 2.3461501, 48.8906054 2.3436342, 48.8911601 2.3472858, 48.8905525 2.3481725, 48.8654434 2.3665508, 48.8614471 2.3729562, 48.8666976 2.3655874, 48.8661825 2.3452310, 48.8641592 2.3663881, 48.8624682 2.3635794, 48.8591882 2.3451519, 48.8588750 2.3449998, 48.8929579 2.3376602, 48.8788116 2.3448907, 48.8648741 2.3568648, 48.8647110 2.3556670, 48.8647065 2.3557113, 48.8688148 2.3556948, 48.8744006 2.3588789, 48.8598506 2.3506084, 48.8899908 2.3632081, 48.8611479 2.3689726, 48.8638679 2.3648260, 48.8710277 2.3356624, 48.8890796 2.3723602, 48.8756169 2.3280376, 48.8731075 2.3603509, 48.8748935 2.3811373, 48.8781923 2.3452434, 48.8767035 2.3442886, 48.8761220 2.3317510, 48.8798222 2.3536407, 48.8644516 2.3451744, 48.8665424 2.3444859, 48.8653520 2.3447568, 48.8689100 2.3859683, 48.8818977 2.3455167, 48.8809875 2.3406458, 48.8809240 2.3404741, 48.8762503 2.3384716, 48.8728060 2.3646742, 48.8722199 2.3662906, 48.8922563 2.3451633, 48.8818730 2.3810389, 48.8758373 2.3459265, 48.8795087 2.3434753, 48.8924455 2.3635357, 48.8750371 2.3453587, 48.8763927 2.3443424, 48.8841247 2.3209960, 48.8832982 2.3234280, 48.8860152 2.3193197, 48.8926082 2.3632978, 48.8647682 2.3664782, 48.8615352 2.3424505, 48.8606042 2.3677659, 48.8607123 2.3679772, 48.8845024 2.3699867, 48.8817691 2.3705494, 48.8676694 2.3433379, 48.8957541 2.3476530, 48.8957586 2.3475660, 48.8917666 2.3218705, 48.8654497 2.3690938, 48.8709594 2.3479984, 48.8829241 2.3432202, 48.8731139 2.3807450, 48.8690065 2.3742189, 48.8721796 2.3274785, 48.8715853 2.3272917, 48.8804973 2.2853562, 48.8827366 2.2912231, 48.8646577 2.3697145, 48.8961469 2.3382720, 48.8759290 2.3241447, 48.8764290 2.3259972, 48.8761420 2.3253990, 48.8667163 2.3367639, 48.8910518 2.3314128, 48.8754876 2.3480736, 48.8776068 2.3489868, 48.8813835 2.3281151, 48.8878510 2.3535887, 48.8826169 2.3296364, 48.8598677 2.3086797, 48.8678023 2.3499020, 48.8606025 2.3457538, 48.8601414 2.3453350, 48.8903544 2.3289917, 48.8853124 2.3253739, 48.8803653 2.2993106, 48.8855401 2.2976447, 48.8702188 2.3108394, 48.8715298 2.3681493, 48.8837483 2.3717520, 48.8846076 2.3697324, 48.8846076 2.3697324, 48.8674112 2.3229787, 48.8704742 2.3237783, 48.8697219 2.3226142, 48.8741108 2.3436798, 48.8805026 2.3961626, 48.8709398 2.3029345, 48.8593876 2.3489534, 48.8593594 2.3494831, 48.8592324 2.3496685, 48.8591582 2.3498992, 48.8589383 2.3514814, 48.8594394 2.3491586, 48.8815660 2.3478333, 48.8725291 2.3001145, 48.8724675 2.3003188, 48.8762025 2.3710966, 48.8666808 2.3456284, 48.8665292 2.3464186, 48.8665024 2.3465774, 48.8667552 2.3451020, 48.8667159 2.3453933, 48.8726851 2.3024789, 48.8737471 2.3451402, 48.8731623 2.3449978, 48.8719437 2.3446492, 48.8735309 2.3450913, 48.8705878 2.3425842, 48.8605209 2.3023944, 48.8902734 2.3546516, 48.8914921 2.3613348, 48.8680096 2.3435345, 48.8676664 2.3437165, 48.8679005 2.3435952, 48.8877980 2.2997590, 48.8811990 2.2897480, 48.8816790 2.2888680, 48.8817488 2.2888029, 48.8819610 2.2885470, 48.8814404 2.2894685, 48.8851028 2.2981721, 48.8848466 2.2963979, 48.8853809 2.2966584, 48.8845518 2.2979815, 48.8852175 2.2964748, 48.8834502 2.2938754, 48.8832548 2.2934886, 48.8822916 2.2913772, 48.8802886 2.2879403, 48.8733986 2.3215098, 48.8845738 2.2910473, 48.8847627 2.2913861, 48.8813094 2.2861348, 48.8815854 2.2860365, 48.8822997 2.2865952, 48.8843811 2.2910193, 48.8837693 2.2907507, 48.8849514 2.2959483, 48.8850091 2.2954626, 48.8849348 2.2961330, 48.8845891 2.2945570, 48.8843134 2.2943799, 48.8848608 2.2951371, 48.8850188 2.2939952, 48.8852107 2.2935244, 48.8788664 2.2847106, 48.8740226 2.3337460, 48.8786554 2.2999384, 48.8762947 2.2890603, 48.8802997 2.3577529, 48.8775890 2.2881553, 48.8619404 2.3145726, 48.8798757 2.2951878, 48.8796416 2.2949514, 48.8797688 2.2942800, 48.8799467 2.2942003, 48.8801083 2.2943052, 48.8805532 2.2934972, 48.8800771 2.2940804, 48.8815910 2.2925353, 48.8816270 2.2921775, 48.8841060 2.2909950, 48.8845760 2.2895318, 48.8826125 2.3011279, 48.8776740 2.2991918, 48.8776990 2.2990901, 48.8780258 2.2850956, 48.8846317 2.2893952, 48.8778621 2.2848987, 48.8802502 2.2957038, 48.8675021 2.3098437, 48.8885609 2.3172274, 48.8881694 2.3166376, 48.8883589 2.3169789, 48.8968374 2.3787112, 48.8971449 2.3819951, 48.8875090 2.2976290, 48.8871630 2.2970010, 48.8706152 2.3532598, 48.8876760 2.2983980, 48.8863430 2.2961140, 48.8859640 2.2915440, 48.8871530 2.2947410, 48.8853110 2.2955510, 48.8853440 2.2952310, 48.8850320 2.2952390, 48.8850780 2.2950060, 48.8840610 2.2937810, 48.8851190 2.2924220, 48.8852040 2.2920140, 48.8678227 2.3369768, 48.8809990 2.2857060, 48.8701642 2.3537129, 48.8590400 2.3622970, 48.8907611 2.3619378, 48.8814470 2.2951720, 48.8856370 2.2977760, 48.8849010 2.2988890, 48.8845430 2.2986640, 48.8846290 2.2984300, 48.8842560 2.2973050, 48.8842580 2.2968350, 48.8850869 2.3651538, 48.8749003 2.3428357, 48.8771460 2.2924640, 48.8769040 2.2919650, 48.8771270 2.2920750, 48.8772510 2.2920010, 48.8774500 2.2920680, 48.8774750 2.2918560, 48.8776900 2.2917270, 48.8777680 2.2918880, 48.8779330 2.2915640, 48.8786180 2.2913310, 48.8798280 2.2917160, 48.8813710 2.2894860, 48.8604075 2.3556155, 48.8601740 2.3563013, 48.8747214 2.3415841, 48.8705943 2.3429365, 48.8746840 2.3416410, 48.8699102 2.3115070, 48.8683555 2.3254379, 48.8684709 2.3254367, 48.8690272 2.3251599, 48.8700437 2.3257977, 48.8702250 2.3258823, 48.8840040 2.2933540, 48.8796560 2.2864960, 48.8804350 2.2856120, 48.8804320 2.2856580, 48.8804050 2.2857730, 48.8806940 2.2861620, 48.8805790 2.2866490, 48.8799990 2.2875200, 48.8797930 2.2884240, 48.8797640 2.2885180, 48.8769049 2.3270113, 48.8768180 2.3270140, 48.8770340 2.3271360, 48.8767510 2.3273100, 48.8766230 2.3273770, 48.8726661 2.3021404, 48.8727090 2.3021938, 48.8724271 2.3017769, 48.8695340 2.3049808, 48.8687825 2.3043355, 48.8723494 2.3607849, 48.8879180 2.3067900, 48.8880960 2.3065700, 48.8882020 2.3064360, 48.8882250 2.3064120, 48.8887260 2.3057200, 48.8883220 2.3062270, 48.8889330 2.3054700, 48.8889870 2.3053980, 48.8884000 2.2999400, 48.8799736 2.2892538, 48.8751250 2.2934560, 48.8752420 2.2940700, 48.8753410 2.2939710, 48.8770440 2.2917940, 48.8769630 2.2916430, 48.8767720 2.2915790, 48.8777980 2.2906200, 48.8792110 2.2907480, 48.8886086 2.3780545, 48.8618088 2.2825036, 48.8613662 2.2830289, 48.8613148 2.2830943, 48.8652864 2.2854968, 48.8653444 2.2836290, 48.8862020 2.3612523, 48.8758620 2.2937570, 48.8765293 2.3766762, 48.8765381 2.3785538, 48.8831467 2.3852056, 48.8793441 2.3856452, 48.8912644 2.3784340, 48.8645257 2.2825794, 48.8659302 2.2858805, 48.8657556 2.2858886, 48.8813580 2.2854140, 48.8603776 2.3434701, 48.8753759 2.3739351, 48.8751695 2.3739029, 48.8746244 2.3809330, 48.8765910 2.3232000, 48.8747470 2.3159270, 48.8810780 2.3126420, 48.8781141 2.3843466, 48.8779190 2.3852619, 48.8778925 2.3854242, 48.8782848 2.3854140, 48.8789083 2.3856186, 48.8789361 2.3851519, 48.8806716 2.3738195, 48.8820002 2.3711763, 48.8775700 2.2877800, 48.8899434 2.3710251, 48.8803750 2.3978486, 48.8811706 2.3719906, 48.8641699 2.4083715, 48.8757475 2.3857007, 48.8753418 2.3815392, 48.8747347 2.3813029, 48.8752868 2.3817360, 48.8755279 2.3821599, 48.8590719 2.3810909, 48.8740264 2.3839194, 48.8746078 2.3810324, 48.8739520 2.3822179, 48.8735701 2.3830856, 48.8736839 2.3828415, 48.8777223 2.3322319, 48.8787477 2.3711783, 48.8819062 2.3741667, 48.8841883 2.3779754, 48.8845623 2.3786634, 48.8851670 2.3806432, 48.8852067 2.3807525, 48.8589178 2.3234187, 48.8589724 2.3234632, 48.8855935 2.3818316, 48.8805386 2.3751052, 48.8806753 2.3748196, 48.8807035 2.3747471, 48.8808173 2.3744896, 48.8808967 2.3743140, 48.8830777 2.3876231, 48.8723326 2.3483178, 48.8864670 2.3115680, 48.8799610 2.3291770, 48.8868177 2.3744113, 48.8849000 2.3707095, 48.8883341 2.3761366, 48.8848937 2.3405138, 48.8842803 2.3395848, 48.8846433 2.3402443, 48.8675053 2.3352170, 48.8859211 2.3934465, 48.8847791 2.3925318, 48.8848752 2.3926673, 48.8862192 2.3936382, 48.8754744 2.3873297, 48.8754373 2.3874893, 48.8842800 2.3047290, 48.8834170 2.3045710, 48.8820840 2.3044120, 48.8651610 2.3726873, 48.8643341 2.3728778, 48.8826325 2.3446975, 48.8630357 2.3730890, 48.8756732 2.3873298, 48.8712417 2.3797804, 48.8708280 2.3787238, 48.8671652 2.3360497, 48.8672298 2.3360756, 48.8791599 2.3910656, 48.8804060 2.3026459, 48.8803576 2.3030073, 48.8808754 2.3021137, 48.8808069 2.3021832, 48.8827997 2.3733397, 48.8830186 2.3740035, 48.8826853 2.3804864, 48.8592799 2.2849225, 48.8623163 2.3093585, 48.8734806 2.3430215, 48.8729547 2.3799476, 48.8755208 2.3906946, 48.8619535 2.4014538, 48.8708629 2.3427230, 48.8707564 2.3426660, 48.8836015 2.3202065, 48.8795130 2.3360991, 48.8828915 2.3811913, 48.8830697 2.3810418, 48.8840675 2.3805918, 48.8758598 2.4006983, 48.8606889 2.3547690, 48.8607780 2.3544920, 48.8612688 2.3578488, 48.8659762 2.3835715, 48.8754888 2.3889719, 48.8716073 2.3573055, 48.8589855 2.3540028, 48.8752800 2.3929026, 48.8752271 2.3936912, 48.8751574 2.3942236, 48.8826800 2.2865110, 48.8864590 2.3404788, 48.8846800 2.3291860, 48.8819840 2.3187180, 48.8819360 2.3185630, 48.8816120 2.3160090, 48.8636468 2.3671522, 48.8822902 2.3395019, 48.8744920 2.3729505, 48.8741051 2.3720932, 48.8739847 2.3718055, 48.8738359 2.3717117, 48.8735359 2.3710279, 48.8741858 2.3715930, 48.8745316 2.3721362, 48.8716669 2.3719109, 48.8711993 2.3697018, 48.8736209 2.3748630, 48.8878559 2.3534540, 48.8628419 2.3413590, 48.8627761 2.3414067, 48.8753498 2.3460798, 48.8752300 2.3455656, 48.8643515 2.3547358, 48.8588998 2.2853182, 48.8659100 2.3367259, 48.8612115 2.3668968, 48.8596062 2.3680483, 48.8595048 2.3686879, 48.8591538 2.3688576, 48.8624329 2.3726841, 48.8618736 2.3728696, 48.8620891 2.3780066, 48.8940948 2.3515003, 48.8684376 2.3706209, 48.8643358 2.3688108, 48.8612224 2.3648477, 48.8734440 2.3641694, 48.8731953 2.3643525, 48.8714362 2.3657352, 48.8768960 2.3534930, 48.8920550 2.3461008, 48.8665545 2.3603936, 48.8926611 2.3805354, 48.8707266 2.3515964, 48.8904606 2.3790788, 48.8910196 2.3779829, 48.8907119 2.3781803, 48.8906831 2.3786293, 48.8786060 2.2895840, 48.8785190 2.2893290, 48.8709792 2.3597736, 48.8711489 2.3601690, 48.8649741 2.3359158, 48.8752070 2.3041468, 48.8592341 2.3681415, 48.8593853 2.3683292, 48.8603524 2.3676426, 48.8597890 2.4027381, 48.8599301 2.4026085, 48.8593962 2.4050659, 48.8780937 2.3647247, 48.8681030 2.4033390, 48.8609818 2.3809160, 48.8609042 2.3814382, 48.8615076 2.3805893, 48.8592360 2.3828098, 48.8666042 2.3853196, 48.8614564 2.3780635, 48.8614752 2.3781069, 48.8610647 2.3776241, 48.8615428 2.3776813, 48.8610882 2.3812893, 48.8608398 2.3800020, 48.8611517 2.3814385, 48.8616071 2.3823364, 48.8945524 2.3527710, 48.8623796 2.3727706, 48.8621341 2.3774006, 48.8626909 2.3786304, 48.8622688 2.3799159, 48.8623261 2.3800798, 48.8633812 2.3618041, 48.8768192 2.2635389, 48.8728789 2.3289009, 48.8594276 2.3683212, 48.8721402 2.3254288, 48.8721670 2.3253311, 48.8721199 2.3255281, 48.8995733 2.3524962, 48.8744634 2.3207611, 48.8758392 2.3442908, 48.8642540 2.3684778, 48.8646300 2.3665505, 48.8661085 2.3669813, 48.8722000 2.3397200, 48.8599164 2.3463862, 48.8689558 2.3348921, 48.8759088 2.3029263, 48.8615808 2.3421921, 48.8609420 2.3686815, 48.8741075 2.3445446, 48.8831840 2.2988520, 48.8822700 2.2945370, 48.8822490 2.2942850, 48.8821450 2.2944460, 48.8590641 2.3684194, 48.8620899 2.3661777, 48.8617952 2.3647367, 48.8633340 2.3613891, 48.8623729 2.3651197, 48.8627347 2.3662302, 48.8614130 2.3705083, 48.8615747 2.3706299, 48.8647430 2.3818722, 48.8620626 2.3672580, 48.8628461 2.3362666, 48.8644915 2.3656032, 48.8690385 2.3639054, 48.8679245 2.3658481, 48.8650522 2.3663679, 48.8619694 2.3673462, 48.8656106 2.3572726, 48.8626759 2.3636324, 48.8627659 2.3625185, 48.8780160 2.2938546, 48.8615576 2.3705429, 48.8633878 2.3694245, 48.8611497 2.3674810, 48.8626333 2.3674542, 48.8809048 2.3467209, 48.8642921 2.3657377, 48.8618200 2.3730192, 48.8617681 2.3611646, 48.8630387 2.3518815, 48.8632610 2.3511168, 48.8635550 2.3471565, 48.8659600 2.3653216, 48.8665862 2.3667443, 48.8661620 2.3675630, 48.8666335 2.3665296, 48.8663602 2.3680223, 48.8643746 2.3685025, 48.8641963 2.3679144, 48.8646177 2.3690280, 48.8628347 2.3675662, 48.8623144 2.3663745, 48.8708703 2.3415985, 48.8705728 2.3415832, 48.8711859 2.3417171, 48.8709869 2.3416777, 48.8620724 2.3658250, 48.8637272 2.3671164, 48.8614253 2.3643489, 48.8593585 2.3673596, 48.8599776 2.3643195, 48.8654352 2.3322141, 48.8731027 2.3586476, 48.8640444 2.3658805, 48.8641120 2.3658485, 48.8611118 2.3693564, 48.8814750 2.3580850, 48.8819434 2.2862186, 48.8654853 2.3686016, 48.8621731 2.3396914, 48.8675585 2.3352443, 48.8679678 2.3355626, 48.8678404 2.3435108, 48.8666855 2.3458176, 48.8667840 2.3448980, 48.8659951 2.3472997, 48.8596787 2.3549361, 48.8739698 2.3502828, 48.8807650 2.3809540, 48.8772540 2.3793034, 48.8768300 2.4049587, 48.8681170 2.3702881, 48.8692220 2.3131336, 48.8679417 2.3153003, 48.8718575 2.3096862, 48.8745552 2.3434968, 48.8775832 2.3381108, 48.8791560 2.3349351, 48.8786912 2.3329642, 48.8768273 2.4061935, 48.8916829 2.3361699, 48.8916676 2.3364729, 48.8750787 2.2865522, 48.8761844 2.2731721, 48.8769614 2.2666348, 48.8787683 2.2627725, 48.8639756 2.2506990, 48.8775380 2.2845027, 48.8783349 2.2845148, 48.8660959 2.3165080, 48.8853349 2.3222678, 48.8632940 2.3461861, 48.8787317 2.3451434, 48.8648781 2.3453619, 48.8680174 2.3629641, 48.8623556 2.3500864, 48.8772523 2.3138827, 48.8832336 2.3770248, 48.8645929 2.3574911, 48.8813196 2.2935688, 48.8778259 2.3969489, 48.8769600 2.3706426, 48.8782894 2.3331903, 48.8873550 2.3868767, 48.8660080 2.3494045, 48.8664194 2.3321315 +16 +109 +49.4079210 8.6866720, 49.4117371 8.7091875, 49.4095865 8.7066610, 49.4115410 8.7046342, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4066053 8.6919726 +Wiesloch, Sinsheim, Hirschhorn (Neckar), Eberbach, Östringen, Neckargemünd, Waibstadt +0.38074867737861279 +50, 50, 50, 50, 50 +55.9561550 -3.2435210, 55.9002100 -3.2321660, 55.9678281 -3.2362601 +10 and 49.4091649 8.6726851, 49.4079210 8.6866720, 49.4117371 8.7091875, 49.4073921 8.6825502, 49.4095865 8.7066610, 49.4115410 8.7046342, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4066053 8.6919726 +yes +46.3554455 -0.6680522, 46.3458003 -0.6849917, 46.6167350 -1.8692222, 47.2661765 -0.5769410, 47.0326315 -0.6067364, 47.4157721 -1.8539595, 46.9193815 -0.8487945, 47.2053637 -2.0487648, 46.6646452 -1.7570749, 46.6625119 -1.7637588, 46.4072147 -1.4060013, 47.2001295 -0.0915538, 47.1117065 -2.1078804, 47.0386966 -1.6404113, 47.1027718 -1.1206474, 47.1002886 -1.1228630, 47.2606386 -1.5123732, 47.1129029 -0.6325854, 47.2757188 -2.4265544, 46.7916310 -2.0633590, 46.5333900 -1.7720741, 47.3427522 -2.4270051, 46.5890791 -1.1245053, 46.5894219 -1.1237864, 47.0319246 -1.0921844, 46.8367326 -0.8835602, 46.3702547 -0.7025105, 46.5229325 -0.7565522, 46.4677815 -0.7739333, 46.4906189 -1.7944913, 46.7700629 -1.5054141, 47.1854515 -1.9446521, 46.5712586 -1.8264870, 47.2661676 -0.5769699, 47.3873095 0.0786502, 47.3639737 -1.0215598, 47.1335252 -2.2132604, 47.2451626 -0.7699908, 47.2194968 -1.5498408 +no +no +yes +21 +no +2 +W.H. Smith, Colette, Librairie Galignani, La Fontaine aux Vins, Gepetto & Vélos, L'Épée de Bois, Shakespeare and Company, Artazart, Distribution, New PC Charenton, Académie du bal costumé, Tang Frères, Galerie Vivienne, passages des Princes, Brentano's, Monoprix, Monoprix Lecourbe, Bio c' Bon, Franprix, G20, Casino Lecourbe, Marché U, Marché U, Jerome de Noirmont, Brentano's, G20, Carrefour City, Le Fournil de Lourmel, G20, Monoprix, Franprix, Au Réparateur de Bicyclettes, Vélo Electro, Intermarché, Franprix, Franprix, Lidl, Auchan, Franprix, Franprix, Franprix, Gil'Pressing, Moderne-Lavage, Beautés du Monde, En tete a tete, Martel bricolage, Clo Tournesol, La Boul'Ange, Jaguar - Range Rover - Land Rover, La Boulenge d'Antan, Fleurs de France, Franprix, Monoprix, Franprix, Ouistitipop, Carrefour City, Le Diplomate, Boulangerie - Pâtisserie Méri, Monoprix Convention, Dia, cora, DIA, Monoprix, Les Sourires de Dante, Springfield, Aapoum Bapoum, Franprix, Dia, Clean Pressing, Du Pain et des Idées, Monoprix, Mr Bricolage, Lidl, Monop', Gibert Joseph, Gibert Joseph, Franprix, Franprix, Boucherie Louis Blanc, Leroy Merlin, Franprix, Dia, Simply Market, Simply Market, Franprix, Go Sport, Dia, Simply Market, Franprix, Monoprix, Neovelo, Carrefour City, Castorama, Castorama, La Gerbe d'Or, Esprit Démarque, Picard, Les Petits Vélos de Maurice, Cycles Pliants Expansion, Velectris, Cycles Delcayre, Rando Cycles, BMG Baillou, Cycles Laurent, Paris à Vélo, c’est Sympa, Bicloune, Preya cycle, Au Point Vélo Hollandais, Vélo & Oxygen, Bike in Paris, Les Vélos Parisiens, Cycle Centre, Esprit Vélo, Cyclo Sport 34, Mountain Biker, Sri Kanaga Ambika Velo, AICV, Valmy Cycle, Le Petit Boyauteur, Cycles Saint-Honoré, ADV Atelier des Vélos, Lardais Patrick, Bouticycle du Château, Les Nouveaux Robinsons, Un vélo dans la ville, Ok Ça Roule, URBAN CYCLES 15, R B Cyclos, Thibault van der Straete, Spree, Franprix, Franprix, Franprix, Simply Market, Dia, marché Franprix, Franprix, G20, Franprix, Monoprix, Dia, A2pas Auchan, Chez Jean, Petit Casino, Boulangerie Hélène et Bernard Dorange, Carrefour Market, Europasie, Exquise, Franprix, La Terrasse de Gutenberg, Page 189, El Ksour, Franprix, L'Artisterie, Le Passage Clouté, Naturalia, Monoprix, DIA, Carrefour Market, Leader Price, 8 a huit, Shopi, Respiro, Naturalia, Librairie Compagnie, Dia, Renault, Optic 2000, La belle fleur, U Express, Simply Market, Bio C' Bon, Whim, Tabac de l'Europe, Casino, Optica, Tchip Coiffure, Monoprix, Mazhar Fleurs, La Clef des Voyages, Bricolex, Monoprix, Aux délices de l'étoile, Franprix, Franprix, Carrefour Express Paris Batignolles, Monoprix, Franprix, Franprix, La Victoire, Franprix, Simply Market, Monoprix, Carrefour Market, Franprix, Franprix, Franprix, Daily Monop', Picard, Franprix, Franprix, Monoprix, Gibert Jeune - Sciences Humaines, Gibert Jeune, Gibert Jeune, Franprix, Proxi super, Simply Market, Monoprix, DIA, Equipages, L'Étoile de Djurjura, Franprix, SimplyMarket, Naturalia, Naturalia Crussol, Lecaille, Les compagnons de Voltaire, Guesdon, Franprix, Monoprix, Monoprix, Franprix, Dia, Tati, Franprix, Franprix, Casino, Franprix, Biocoop, Bio Génération, Franprix, L'Atelier, L’atelier d’en face, DIA, G20, Le petit leader, Dhouailly et Cie, Lyon Pressing, Pharmacie du Train Bleu, Marché Daumesnil, Monop', Aux délices de Saint-Antoine, DIA, Jacques Bazin, Aux Délices de Manon, Dia, Marché Franprix, Chez Miha, Frank Provost, Paris Store, Youfeng (友风书店), Fnac, La maison du cerf volant, Le Vert Jade, Bureau +, Marché Franprix, Gastronome, Sergio Bossi, Presse Parrot, Aux Couleurs, Cinébank, Gourmand Gourmet, Paris Lyon, Petit Marché, Céline et Étienne, Monoprix, Franprix, Franprix, Librairie La Brèche, Françoise Leclant Fleurs, Le Bosquet, R Color, Pierre Michel, Papéterie-librairie de l'École militaire, Camille Albane, Carrefour City, Proxi, Au Nom de la Rose, Dia, Vitry d'Aubigny, produits exotiques, Boulangerie Thierry Renard, Carrefour Market, G20, Super U, Fnac, sephora, Moisan, Le Grenier à Pain, Cave Michel Renaud, Nature de pain, Carrefour Market, Leader Price, Boucherie de Saint-Ouen, Boucherie chevaline, CocciMarket, Boulangerie, Mag's Delices (ex Truillot Point Chaud), Les Moulins d'Ivry, Harley Davidson, Dia, Petit Casino, Simply Market, Naturalia, Franprix, Atol, Ambiance Florale, HyperCasino, Le chant du pain, Bricorama, Aït Baha, Picard, La Halle aux Blés, Au Coeur Des Pains, Picard, passage des Panoramas, Intermarché, Franprix, Le Canon de la Presse, Carrefour Market, Franprix, Picard, Canal Bio, Happy, SNCF La Boutique, SFR, A. et H. Jourdan, MJJ, Гастрономъ, Gastronomie Russe, Gastronomie Russe, Гастрономъ, Гастрономъ, Prestige, Гастрономъ, Carrefour City, Décathlon, Boucherie Raux, Casino, Vélo 18 Vintage, Franprix, Picard, Nicolas, Kiloutou, Linel, Linel, BHV Vélo, Intermarché, Carrefour Market, Bio C' Bon, Franprix, Renault Garage Saint-Georges Agent, Hervé Thoraval, Corentin Fleurs, Idlys, La fournée des isséens, mod's hair, Issy Pressing, Adom, Librairie Nation, Goumanyat et son Royaume, Supermarché Volta, Marks & Spencer Food, Le Pain d'Auguste, Boulangerie Topaze, Wing Seng, Lezarts, Carrefour Market, Paris Store, Les Nouvelles Halles - 新今日超市, Supermarché Bonjour - 新温州超市, Issy Clés, Didier, Super Miranda, Primeurs des Moulineaux, Vic' Optic, Nicolas Convention, Orse, Jacadi Convention, Etam Lingerie Convention, Marlina, Petit Bateau Convention, Descamps Convention, Monoprix, Graineterie, Fiat, Franprix, Via Scarpa, Laverie libre service SBD, Rando Boutique, Buzibi, BiCyCle Store, Roulez Champions, Franscoop, Eram, Bières Cultes, Boulanger Pâtissier Julien, Les Verges Primeurs, Franprix, A la Tête du Client, Naf naf, Compagnie du Forum, HEMA, Déco Relief, Franprix, Mondial City, Dubail, Franprix, LDLC, Boulangerie L'écureuil, Chez Paco, La baguette des Pyrenees, Les halles Bolivar, Franprix, Aux Délices de Sèvres, Boulangerie Patisserie, Picard, Boulangerie Pâtisserie des Deux ponts, Michelle coiffure, Coiffure Auffray Jérôme, Dia, Sajou, Mona Lisait, Pharmacie de l'Ile Saint-Louis, Epicerie de la rue Saint-Louis en l'Ile, Librairie Epona, Gwen Choc, Terre de Chine, Eden Rouge, Franprix, Der Tante Emma-Laden, Boulangerie Julien, Un jour Ailleurs, Calzedonia, Heyraud, Epicarie La Reynie, Fleux', BHV Homme, Fleux', Boulangerie Pâtisserie Gaumer, Boulangerie Malineau, Boulangerie Kahn, Alimentation Générale, Adidas Originals, Franprix, Boulangerie Blin, Galeria Basia Embiricos, Carrément Fleurs, Boulangerie Patrick et Christine, Le Moulin à Miel, Sandro Hommes, Maison du vélo, Atelier vélorutionnaire, Carrefour City, Rougier & Plé, Patrick Roger, Boggi Milano, Hello Kathy, Editions Guy Trédaniel, Aqua Rêves, The Broken Arm, Boulanger patissier, Franprix, Boucherie du marais, Simply Market, AU PARADIS CANIN, Le monde en tique, Altermundi, The Australia NZ Shop, Fleurs du Temps, Harmony Pressing, Garage Roubine, Biocoop Le retour à la Terre - Rive Gauche, Kitclope, Jean-Louis David, Franprix, Franprix, Potemkine, Les nouveaux Robinson, Lidl, L'Arc en Ciel, Scooter Center, Galeries Lafayette, FNAC Montparnasse, Zara, Presses de Sciences Po, Sonia Rykiel, Boulanger Patissier, h@ir & wave, DIA, Franprix, Nicolas, DIA, Franprix, Franprix, Le Moulin de la Vierge, Franprix, L'épi d'or, Basic Beauty, Nuance Coiffure, Franprix, Franprix, Naturalia, Franprix, Monop', Franprix, Franprix, Aqua Spa Sun, Lavomatique, Aux saveurs d'Arcueil, Modern'Boucherie, La tonelle, Servotel Voyages, Maison de la Presse, Art'cueille, Le Cintre Chic, S.T. & Co. Arcueil, Arcueil Télé Ménager, Dany vêtements, Éram, Au bon tabac, Optique Services, Renault, Maison de la literie, Dekra, Paul, Partir pas cher, Mondial City, Marché Franprix, SNCF la boutique, Traiteur asiatique, Franprix, Proxi, DIA, Franprix, Carrefour Express, Gilles Vérot, Bread & Roses, Swildens, Les Nouveaux Robinson, JL Coquet, Cartier, La Kremlinoise, Au Saint-Honoré, Hayari Couture, Monoprix, Boulangerie "Les Caprices de Charlotte", Le Marché d'à côté, Monceau Fleurs, Supermarché G20, Le Prestige, Boucherie Frank Lecoeur, Lidl, Le Boulanger des Invalides, Monoprix, Adidas, La Maison du Caviar, Picard Surgelés, Montceau Fleurs, Holland Bikes, L'Ère du Vélo, Holland Bikes, J.M. Weston, À Livr'Ouvert, Galerie de la Voûte, Darty, Lepape, Cartier (fermé), Quicksilver, Grand Optical, Mercedes, Bulgari, A.Testoni, Saint-Louis, Lalique, Bernardaud, glashutte et heurgon, Cristofle, Crockett & Jones, H & M, Promod, Citroën, L'Atelier Renault, Gap, Disney Store, Häagen-Dazs, PSG, Zara, L'Atelier SFR, NAF NAF, Jacadi, Avant Premiere, Carrefour Market, Boulangerie de l'Entr'acte, Picard, Optic 2000, Le Boulanger de Monge, Jean-Louis David, André, Okaidi, Monoprix, Monoprix, Franprix, Monop', Le Marché de Rungis, Casino, Naturalia, Librairie des jardins, franprix, Maison Bichon, La Rame, G20, Franprix, Cycles Jean, Yamaha, Aux Gamins de Ménilmontant, Litote en Tête, Le Géant Des Beaux-Arts, Carrefour City, L'Epi d'Or, Ly Kuang, Giant, Centre Commercial, Asie Fabuleuse Voyages, Carrefour Express, Boulangerie Yan Chantelle, Bazar Éthic, Naturalia, Monceau Fleurs, Ideal Optic, Darty, Camaïeu, La grande épicerie de Paris, ETS Maleville, Les Petites Emplettes, Tati, Boucherie Saint-Martin, Peugeot, Bragard, Le Pélican, Franprix, Monceau Fleurs, Valée de Vinales, L'Invit' à-lire, Meubles Pascal, G20, Tabac, Boucherie de Chaillot, Hermes Fleurs, Monceau Fleurs, Supermarché Franprix, Boulangerie Bonon, Bio c'Bon, Maison Dault, La Grignotière, Issy Pas Cher, Naturalia, Librairie Papeterie Gutenberg, Librairie Caractères, L'Échoppée Locale, Optic 2000, Le Marché Bonnetier, Laverie, Nicolas, Carrefour City, SPA Évasion Beauté, Salsa Studio, Le Badine de Martine, Bricolage de A à Z, Sabah Épicerie, Éditions Franciscaines, Bechu, Teenflo, Aquarelle, Renoma, Pimlico, Maison de la Truffe, Baccarat, Hédiard, Caviar House & Prunier, Kaspia, Comptoirs de Paris, Fleurs de Passy, Franprix, Les coiffeurs de la rue, Des Gâteaux et du Pain, Franck Provost, Jossé, Optic 2000, Boulangerie Saint-Louis, Le Fournil Du Village, Proxy, Aux Sucreries de ma Mie, La Délicieuse, Librairie Fontaine Passy, Le Quai du Pain, Motori Italiani, Huré Boulanger Patissier, Marché Franprix, Franprix, Librairie des Orphelins Apprentis d'Auteuil, Cycles GUILLOCHON Gérard, Cycles Rebierre, DIA, Kelly Angel, Copy Express, Immobilière G.T.I., Calymotos Pasteur, Exavue, Franprix, Boulangerie Thevenin, Longtemps..., Franprix, Boulangerie Pascal & Sylvie Robin, Laverie, Aux délices du palais, Simply Market Paris Brune, Franprix, Go Sport Vélo, Boulangerie Gontier, Le 5e As, Les Guetteurs De Vent, Drouot Montaigne, Boulangerie Laurent Roperh, Boutique SNCF, La Friche, Dia, Naturalia, Préférence, Arc en Ciel, La Boite à Much', Atome micro, The Phone House, Les Fantaisies, Star, Soleil Sucré, Magnifique Mode, Romi, JNT Chaussures, Denisor, Loona, Miss Lola, Délices de Belleville, Fifi, Meli Shop, Froc, Le Temple d'Or, Shinel, Vic Fel, Princesse, Sarah Bijoux, Patiserie des Sultans, Carrefour Market, Bricolex, Franprix, Autour du Fournil, La Tlemcenienne, Le Grenier de Félix, Nicolas, Paul, Naturalia, Vélo services, Coiffure, Librairie Dalloz, Biocoop Catalogne, Biocoop Paris XVII, Biocoop Grenelle, Dia, Laverie Camagne Première, Chocolatier Pierre Marcolini, Chez Sam, charcuterie, Au 7 Armand Carrel, Boulangerie Patisserie, Librairie Beaujean, Album, Little Tokyo, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Coifhom, CocciMarket, Erol Pressing, Casa-Immo, Interflora, Laforêt Immobilier, Franck Provost, La Grande Récré, Fnac, Franprix, Carrefour Express, Le boulanger du parc, Franprix, Dia, Sammels B., Boutique, Alimentation générale, Les Délices Vauvenargues, Boulangerie, Le Jardin de l'Etoile, Franprix, Boucherie Duret, Boulangerie du Val de Grâce, L'Arbre à Lettres - Mouffetard, Pharmacie Monge, Pharmacie Ducellier, Les Alizés, Aux délices de Christine, Mondial Or, DPAM, Monoprix, Gerard Darel, Générale D'optique, Moisan, Nicolas, LOFT design by ..., Ted Baker, Double Pensée, Franprix, Paul Beuscher, La Vie Claire, Monop', Blé sucré, Point Soleil, Naturalia, G20, Mr Bricolage, Les gourmandises de Catherine, Optic 2000, Exo Store, Dong Nam A, Big Store, L'épicerie Exotique, Leader Price, Franprix, Diagonal, La Jardinerie, Paris Pêche, Darty, Tati, Nouvelles Frontières, The Phone House, Epicerie Turbigo, Tabac du Temple, Patisserie de Choisy, Patisserie Saison, Diagonal, Carrefour Market, Arnaud DELMONTEL, La Maubeugeoise, Monoprix, Franprix, JouéClub, Carrefour Express, Team Outdoor, Intermarché Super, Alain Afflelou, La Fleurothèque, Franprix, Square Pressing, Skoda Paris Est, Au Bec Sucré, Midas, Speedy, Franprix, Happy, Picard, Electricité - Plomberie - Vitrerie, Boulangerie Eric Kayser, À la Bonne Viande, Au Jardin de Bellart, Page 18, Editions Eyrolles, Michel Deschamps, Le Home de Saxe, Alimentation Générale, New Beauty, Namaskaar, Rose & Théo, Mr et Mme Duciel, Carrefour, Jérome Lamaze, Mega Sun, Banco Cash, Roc-Eclerc, La Fromagerie de Paris, TTA Paris Est, Stincel, Sport Discount, Nicolas, Leduc, Épicerie, Le Monde des cartes, Pains et Gourmandises, Paris Optique, Les Saveurs de Charenton, Studio James, Lutèce, Ligne & Beauté, Body, Le Beau Verger, Amazon, L'Alinéa, Chaussure Néo, Sand & Jo, J. Maillet, Yves Benoît, Marché U, Trois Jeunes Tambours, LR Coiffure, Institut de Ségur, Presse et Vidéo, Apartment Living, Ségur Immobilier, Salle de Vente Caplot, Les Vergers Duquesne, Au Pain d'Autrefois, Proxi, Les Vins du Terroir, Paris Duquesne, Fève, Breteuil Immobilier, A. Laurans, Maison de la Cave, Rêves Institut, Monceau Fleurs, Franprix, Optic Maubert, Landemaine, Sitis Market, Boulangerie Maison Ellini, Mercedes-Benz Como, Relay, Bébé Cash, Natalys, Papeterie Perjac, Librairie Forhom, Cristal Zen It, Institut Marie Estrella, Votre marché, Le Village, Magma, Como, La Grande Récré, Bhai Bhai Sweets, Leader price, Marionnaud, monop, Note-X, au naturel, Leonidas, 2M Lingerie-PàP, Institut A. Trianon, Antiquités, Dia, Zerzour, Pichard, Dossemont, La Petite Chocolatière, CopyHouse, Librairie de Sèvres, G20, La Cave du Daron, Moto Pasteur, Franprix, Moisan, Reprographie Numérique, Librairie Ancienne du Montparnasse, Daily Monop', Motor village, La Truffe Noire, Picard, Le Marché Franprix, Carré Noir pour Hommes, Ecolopressing, Mateïs, Apple premium reseller, Le Marché Franprix, ECM Car Premium, Librairie Boutique, Store plaisance, GREEN line, Thierry, DIA, La Cave, à la Bastille, Dagobert, Versade Fleurs, Bonheur de Mode, Alimentation Générale, Mori Yoshida, Da Stuzzi, Alimentation de Breteuil, Roland Gosselin et Associés, France Conseil, Consultants Immobilier, Fair-Play Breteuil, Rouxel Joailliers, Mes Chaussettes Rouges, Monoprix, Franprix, Patate Records, Bio-C-Bon, Le Saint-Georges, Carrefour Market Paris Monge, Saint Algue, Murit, Roger Petit, Malthiery Fleurs, Week, Le bar floral, Atout fleurs, L'Herbe Rouge, A l'heure mauve, Pharmacie centrale du XIeme, Papeterie librairie, Librairie journaux, Franprix, Picard, Franprix, Artiyz, Cyclades Électronique, Detrad, Monoprix, Del Duca, Institut Karité, Roméo et Juliette, Les Gourmandises D'Eiffel, FNAC, Franprix, Franprix, Bastille moquette, Armorino, Dia, Eric Kayser, Krys, La Tranche Dorée, Maison Gosselin, Nicolas, La mutuelle du Mans Assurances, Sephora, La Fromagerie, Monoprix, Paul Soulabaille, Maxi Viande, Ford, Peugeot, Peugeot, TCHIP Coiffure, L'Intendant du Roy, Cordonnerie du Plateau, Carrefour Market, Cyclo Paris 15, H&M, Ecox, Franprix, HEMA, Franprix, Monop', De Carvalho, Dynamic Sports, Jean Louis David, Le Prestige, Franprix, Ecgig & Zen, Velovia, DIA, Carrefour City Market, Franprix, Boulangerie Abdel Jalil, Boulangerie Idhsaine, Boulangerie Leroy, La Flûte des pains, La Fournée vanvéenne, Le Moulin des lavandières, Boulangerie de la Gare, Boulangerie Patisserie de la Villette, Michon Robinetterie, Alimentation générale, Boucherie Aamar Hadad, La Craquante, Elecson, FLM, Laverie, Nicolas, Profil +, Réparation, Splendid Coiffure, Teinturerie Pressing Marly, Dominique Saibron, Truffaut, Truffaut, Talents - Gallerie d'art, La fournée d'Augustine, Le Pain de Jacques, Hennou's, Inforama, La Compagnie du Lit, Leader Price, Relay, Tchip, Via, JouéClub Pintel, Au Plaisir du Pain, Kmart, Optic 2000, Toys Garage, L'Arbre à Lettres - Bastille, Fontaine Kléber, Itinéraires, Fontaine Haussmann, Dédale, Imagigraphe, L'Arbre à Lettres - Denfert, Comme un Roman, Fontaine Villiers, BD Net, Autant en Emporte le Vent, Librairie Droit Economie Lettres, Atout Livre, L'Arbre à Lettres - République, L'Ecume des Pages, L'Arbre du Voyageur, L'Oeil Ecoute, La Plume Vagabonde, La Boucherie, La 25e Heure, L'Attrape-Coeurs, L'Œil au Vert, La Manoeuvre, Le Chat Pitre, Lamartine, Le Livre Ecarlate, Le Genre Urbain, Libralire, Librairie des Abbesses, Violette and Co, Village Voice, Voyelle, Le Phénix, Librairie Portugaise Michel Chandeigne, Librairie Gourmande, Librairie Nation, Librairie du Temple, Librairie Vigot Maloine, Les Mots à la Bouche, Librairie Nordest, Le Rideau Rouge, Palimpseste, Les Buveurs d'Encre, Librairie Maritime et Outremer, Les Cahiers de Colette, Librairie Tropiques, Librairie des Orgues, Librairie des Arts et Métiers, Lipsy, Librairie du Globe, Librairie de l'Escalier, L'Arbre à Fruit, Fromagerie du Rendez-Vous, Picard, Boucherie de l'Avenir, Poissonnerie Abyss, Franprix, Boucherie du Rendez-vous, Pressing, Doudou et Loulou, Laverie, Boulangerie Feu de Bois, Franprix, Simply Market, Darty, Du Pareil Au Même, Liner Coiffure, Maralex, Mon Cadeau Préféré, Muette Intérieurs, Picard, À La Plage, French and the City, Troc de la Muette, Têtes à Croquer, Dia, Futur Carrefour, Marks and Spencer, Au Levain des Martyrs, Droguerie des Martyrs, Frank Provost, Picard, Sergent Major, Le Pied de biche, Qee, Bio Génération, teeshirtplace.com, Axe Services, San Francisco Book Company, Dédicace 89, PFG, Roblot, Réciproque, Réciproque, Savini, Wan, Eric Stipa, Au duc de Valmy, Simply Market, Namobio, Graine d'Amour, Le Chenil de Paris, Réciproque, Réciproque, USA Concept Sport, IKKS Junior, Institut Sarah, Lucie Saint-Clair, Sandro, American Retro, John Demersay, Les Petites..., Nina, Paraboot, Philippe Ferrandis, Prestige, Scarlet Ross, Victoria, Votre Nom, Monoprix, Freemoos, Biocoop, Ecox, En Selle Marcel, freemos, Comptoirs Richard, Harrison, Heyraud, It-Shoes, La Maison du Chocolat, Oliver Grant, Opticien Francis Lelouch, Salaün Holidays, André, Anti-Crise, Bel Air, Picard, Promod, Atelier de Courcelles, Au Nom de la Rose, Bang & Olufsen, Caroll, Club Med, Espace SFR, L'Affaire des Doubles Rideaux, Marco Serussi, Shoemark, Stepha, The Phone House, Tout Compte Fait, Benjamin Opticien, Club Bouygues Telecom, Destray, Doré Doré, Etam, Jonak, Kickers, Marionnaud, Sergent Major, Un Jour Ailleurs, optigal, Du Pareil Au Même, J.M. Weston, Jeff de Bruges, Lehembre, Les Envahisseurs, Petit Page Junior, Till, Yves Rocher, Intermarché Express, American Apparel, Clayeux, Daniel Féau, Librairie Fontaine, Nicolas, SIA, Brico Vaugirard, Carrefour Market, Garage Meyer, La Ruche Gourmande, Aki boulanger, K-mart, Digixo, Millèsime, Centre Faguet Optique, Liz & lorens, Charly Coup'Hair, Divini Kreol, Jean-Claude Biguine, Les Opticiens Mutualistes, Meubles & Atmosphère, PA Design, Pharmacie Sebag-Meimoun, Retoucherie, Optique Job, Antony, Crystal Optical, Dharma Sangh, Jean Louis David, L'Ouvre-Boîte, Levi's Store, Marché Franprix, Motus, Optical'in, designOptic, espace SFR, Boulangerie du Fauborg, Dia, Alexia Lingerie, Asia Pacific Trade, Caves Bardou, Coiffure Meliani, John Paul, Sitis, Boulanger Patissier, Franprix, Franprix, Office Depot, Generale d'optique, Bocoray, Cordonnier, Naturalia, Institut Li Ping, Marionnaud, Bio c'Bon, DIA, Mr. Bricolage, Ace Mart, Copy-Top, Nicolas, Opera Market, Shop, Picard, Basler, Franprix, Franprix, Monoprix, Association Microlithe, Monoprix Gourmet Lafayette, La Maison du Vitrail, Tardif, Jiajia tofu - 家家食品豆腐店, Franprix, Franprix, Renault, Foot locker, Du pareil au meme, corner shop, arredamento, La boutique, Locomotiv Gaeland, Librairie Henri IV, Island Tours, Jean-Louis David, Pharmacie Henrie IV, Bexley, Jean-Claude Biguine, Daisy Simon, Ford, Poissonerie Secrétan, Daily Monop, H&M, Mango, Minelli, Boulangerie Patisserie du théatre, Deli'Kasher, La Vie Claire, Al Madina, Altavic-Bio, DB Alimentation, Espérance, GO2 Santé, JLK, Ramesh, Serrurerie Générale, A l'herbe folle, Boulangerie Patisserie S. P. Flandrin, Arnaud Camu, Les nouveaux Robinsons, L'Air des Champs, Boulangerie Magnelli, Franprix, Bazar Zedi, La Parisienne, Maison Kayser, Laverie libre-service, Juji Ya, Kioko, Monoprix, Picard, Boulangerie des Epinettes, Aux Epis d'Or, Franprix, DIA, Franprix, Boulangerie F. Comyn, Proxi, Boucherie des 3 Portes, Arcane Livres, Franck Provost, Picard Alésia, Nicolas, Sapori d'Italia, Le Bouquet d'Orléans, Coiffure Sylvie, Nicolas, Palais d'Orléans, Au Jardin de Murcie, Prox Nour, Boulangerie Pâtisserie L'Escale, Boucherie de la Porte d'Orléans, Primo Fruits, Marché Franprix, Ici-même, Monoprix, Feuille d'Automne, Garage de l’île Saint-Louis, Conforama, Armoire lit diffusion, Fora voyages, Naturalia, Franprix, atelier floral, Les Caves d'argent, Boulanger Ounissi, Conforama - dépot Nation, Darty, U Express, Alimentation Générale, LST, Laverie Libre Service, Marionnaud, Myriam Coiffure, Music Guest, Hamm, La Pelle à Bois, Électronique Diffusion, Franprix, Arcade Fleurie, Au plaisir du pain, Bijouterie Benjamin, Clean Pressing, Harmonie Décor, Havas Voyages, Ling's Mode, Lissac, Ryval Chausseur, Scoop, La lettre et la plume, Franprix, Castorama, Boulangerie des Arcades, Estheti-chien, Primeurs 2000, Saint-Algue, Supérette Tilila, Librairie Chroniques, Optique Desmoulins, Video Futur, Tatanka, Au jardin de Bolivar, Home Hair, oeufs et lait Duprès, Arc-en-ciel, Ermenegildo Zegna, Fauchon, AppleStore, Naruralia, Saint-Maclou, Puma Store, Alimentana Liviu (Roumaine), Tchip, Coiffure, Christophe & Muriel, coiffure, épicerie de quartier, Librairie-presse, Carrefour Market, Laverie, Petit Casino, Atelier Gustave, La Tonnelle, G20, Monoprix, Les Halles de Montmartre, Fromagerie Duhesme, Boucheries Bernard, Hårig, Tabac Le Reinitas, Dionis, Paris Coiffeur, Vinum Picatum, Versigny Immobilier, La fée qui cloche, La prospérité, Radio Lyrel, JB Afro coiffure, Le flash, Intermarché, Boucherie Pinon, Charcuterie de Montmartre, Megaflore, Quatrehomme, Saint's, Monceau fleurs, Royer Montmartre, Boucherie moderne, Mac-Caroni, Le petit creux, Traiteur grec, Nicolas, boucherie Toualbi, Franprix, Cousin, Mister Minit, Le roi du saucisson, Carrefour Express, Saga des marques, Chaussures Roger, Optique du centre, Du pareil au même, Isabelle, L'humeur vagabonde, Gigastore, Naturalia, Chauss'Biz, occasion, Agence étoile, American Apparel, Boxingshop, Marché Franprix, HSV Sécurité, Yi Fan Shun, Street video, Proxi, Les halles de Lancry, Les Vergers de Lancry, La cave de Noé, Les îles grecques, Martel immobilier, Noix de coco, body minute, Rouge kaki, Mutant, Le verre volé, Burma, Lancel, Le Notre, Mango, Marionnaud, Mini Market, Naturalia, Orange, Promod, Zara, Le Souk Botanique, Super U, Laverie, Marché Franprix, Carrefour City, Generali, C.S Assurances, Video Futur, Picard, Biguine, Pompes Funèbres Roblot, Dixhuitieme Avenue, Top Design, Body minute, Bulles en tête !, Nalola..., Le 5e Disque, Espace SFR, Maison Cosnier, Newspaper kiosk, Boulangerie Alia, BP, Boucherie Normande, Stohrer, Franprix, Le fournil d'Andrézieux, Picard, Pompes funèbres musulmanes, Cabinet Martignac, Étude Gestel, Boulangerie de la Gare, V.O. Boutik, Diwali, Vidéosphère (La Vidéothèque du Cinéma), Friends, Abimedia, Led-on, Lagoa Pressing, Jouets Bass, Audition Santé, Leonidas, Retoucherie, Galerie Anatome, Au point du jour, A chacun son style, Pressing Luiza, Legrand Filles et Fils, Kiosque à journaux, Village JouéClub, Librairie/Papeterie/tabac, Le Monte en l’Air, Libre Service, Boucherie du marché, Le Décanteur, La Goélette, Par'ici, CKAB -- hackable:Devices, Intermarché, De Fursac, A la Mère de Famille, A la mère de Famille, Franck Provost, Espace Ménager, Franprix, Dia, Accessorie's, L'atelier, Leonidas, Alimentation, Boucherie Taine, Patisserie Honoré, Boulangerie Jean-Olivier Rondot, Aux Tenailles d'Or, Devialet, La Grande Récré, Obj'ai trouvé, Lidl, Monop', Monop', Boucherie Kacher, Coté Jardin, Boucherie Atlas, Claude Piat, Clean Discount, Frynet, Gérard Mulot, Point Presse, L'impérial, Librairie des Editeurs associés, Royal Primeur, Tang Frères, Peugeot Avenue, Mondial moquette, Rive gauche motos, Sabre, Boulangerie Ravignan, Coquelicot, Beauty Monop', Hall' shop, Le 41, Monop, Boucherie du Square - Le Bourdais, M'Effleure la muse, Crazy Rock Circus, Boulangerie Fantasiiia, Floo, boucherie hallal, Mutuelle du Mans Assurance (MMA), Au Levain de Pyrénées, Belleville Lowrider, Fat Tire Bike Tours, Françoise Le Net, Free Scoot, Boucherie Ducoeur, Proxi, 8 à 8, Retour à la Terre, Demeter, Illel, Carrosserie Mazet AD, Castellane, Coiffure Théatre, Coiffure, Estetika, Leader Price, O mille et une fèves, Le Merle Moqueur, Monop', Alimentation Générale, Salon de coiffure, Wash'n dry, La carte des Vins, CashExpress, Martine Fleuriste, L'Usage du Monde, Boulinier Jourdan, Option Scooter, Pressing, Chevrolet, Bruno Romain, Laverie Libre Service, La Cave au Bon Plaisir, Le Verger des Maraîchers, Leader Price, Boulangerie, Art Tabac, Le Lotus, Au Duc de la Chapelle, Poissonnerie de la Porte Dorée, Naturalia, La mandragore, L'ami du pain, Boucherie de la place, Votre marché, Alimentation Gle des Peupliers, Pressing des Peupliers, Garage Renault, La Boulange du 12e, Carrefour Market, Darty, Bio c' Bon, Carrefour City, Monop', Franprix, Le Petit Bleu, Le pain d'antan, Boulangerie, Cordonnier, Sadaharu Aoki, Épicerie anglaise, La Do Ré, Cuisines Schmidt, Festival des Pains, Frederic Moreno, Maison Champin, La Gourmandise, Cocci Market, Monceau Fleurs, Guy Rouez, 8 à Huit, La Cure Gourmande, La Flûte Enchantée, N.Y.P. Supermarche, DIA, Graphi Dessin, Beauty Zen, Visite de la Tour Montparnasse, Celio, Tabac de la Tour, La bagagerie, Promod, Orange, NAFNAF, SFR, Carrefour City, Midoré, J.C.K. Beauty, Yilpa Telecom, Ting Supermarché Chinois, Franprix, Nicolas, C&A, Boulangerie Pão Quente, Moustaches, La Tranche Dorée, Librairie La Martinière Le Seuil, Nicolas Antoine Artisan Fleuriste, Aquarium Tropical, Carrefour Market, Franprix, Démocratie, La Vie Claire, Institut de Bruxelles Relaxation, Saud Sai Spa, Appear Coiffure, Du Vin et des Bulles, Garden Optique, Institut Trinité, Jardin de Trinité, La Bonbonnière, Pronuptia, Royal Coiffure, Smart Store, Tapis d'Orient, cylia l., Atmosp'Hair, Châteaudun Reprographie, Agences Vaneau, Planitour, i ♥ optic, Le Nouveau Calumet, Boutique SNCF, La Grande Récré, Orange, Le Boulevard du Scooter, Royal Viande, Alimentation Générale, Amplifon, Artisan Boulanger, Cadran Bleu, Café Coton, Climats, Frank Provost, G. D'Audrey Antiquités, ID Prestige, Interburo, Le Mobilier d'Art, Le Repaire de Bacchus, Maison Lendemaine, Natalys, Open Shop, Optical Corner, Planète Rasoir, Pressing 3000, Primeurs Clichy, Rêves de Femme, Sansha, Sellerie Vintimille, Serrurerie, Sister, Un Temps Pour Tout, L'Atelier R.G., À l'Opéra, AJC, André, Arnaud Dalens, Aux Merveilles de Paris, Boutique SNCF, Carré Soleil, Citadium, Citron Vert, Degrif des Stocks, Délices de Fleurs, Image de France, Itinéraires Lointains, L'Atelier du Sourcil, Mika & Elle, La Gobelinoise, Boulangerie Akiko et Philippe Bruere, Cadoceur, Cours des Halles, Laverie Éclat, Laverie, Mademoiselle Bio, Majuscule, Monceau Fleurs, Na Na, Nana, New Star, Optical Service, Pampilles, Paris-France Immobilier, Slim Price, À Fleurs et à Mesure, 5 à Sec, Picard, Les Cyclistes Branchés, Franprix, Uniqlo, Âme et esprit du vin, COS, Franck Besson, La Charmille, DLM Paris, E. Dehillerin, Jardin du Louvre, Au Cœur Immaculé de Marie, Franprix, Franprix, Monop', Monoprix, Leader Express, Monop' Austerlitz, Picard, Franprix, Paul, Lebon, Woodbrass, Franprix, Le Fournil de Paris, Auchan, Nicolas, Bricorama, KIA, Hyundai, Phillipe Motos RN7, GAM, Franprix, Hair Jungle, Tembely, Picard, Retromotion, Le Fournil de Julien, Franprix, Carrefour Market, Louis Vuitton, Peinture en gros, Coiffure Stalingrad, The Chennai Silks, Minivague, Chennai, Kobal cash and carry, Le marché exotique, STR Alimentation Générale, Makkal Kadai, Vijay, Copie Press, SCS Informatique, Laverie - Repasser - Retouche, Aux armes de Niel, Errances, Le Grenier à Pains, Monoprix, Boucherie Bourdin, Au pain complet de Paris, Librairie de Paris, Monoprix, Franprix, Simply Market, Boulangerie Pavard, Halle 4000, JPCycles, La Moulinoise, Maison Legendre, Brewberry, Franprix, La nef des fous, Lidl, Monoprix, Franprix, Monceaux fleurs, Carrefour Express, Jardin papillon, Picard Surgelés, Utrillo, Paris Vert, DIA, Leader price, Del Pressing - Blanchisserie, Franprix, Bricorama, Franprix, A la pointe, Moto Champion, Dam Dim Dom, Balile, Cocci Market, Delmontel, Arnaud Larher, Franprix, Dia, Franprix, Franprix, Laverie, Épicerie Cadix, Allianz Services, Techniques Études Plomberie Couverture Chauffage, Laurence Coiffure, Lavo-Cadix, Culture et bibliothèques pour tous, Déco Cadix, Techniques Études Plomberie Couverture Chauffage, Martine, Lavo-Cadix, La Ruche d'Alésia, Bio c'bon, Librairie Saint-Paul, Maya-Frih, Cyber Gun, Festival des pains, Suzuki, Forum du bâtiment, Volkswagen, Picard, Honda Bike, La folie des fleurs, Pepone poissonerie, La femme de Pepone, Boucherie de l'Europe, Jeff de Bruges, St-Ouen primeurs, Picard Surgelé, Mega fleur, Naturalia, Boucherie S. Lefeuvre, V.I.P. Street, Vaudron, LEAUTEY Traiteur, L'annexe, Les Vins Guy Jeunemaitre, Pressing, Intermarché, Leader Price, Franprix, Gino Gina, Pascal Gaudain, Maman bébé, Basoge, Picard, Aux normes, Maison du Bijou français, Maria Galland, Chez Max Fils, Ets. Desnouettes, Le Panier du Hameau, unknown, Location Taxi Relais, Exelmans, SCA Piernet, Concorde Gestion, Les Sept Épis, Élysée Avenue, Choki Choki, Légis France, Les Sept Épis, Le Comptoir de Chalosse, Poissonnerie du Hameau, Voyages culturels Clio, Bières Cultes, Pains et Passion, A.D.L. 154, Picard, Carrefour Express, Les Vins d'Alexandre, Franprix, Franprix, Garage Dekra, Miss Papillon, A. Pedone Éditeur, Jacques Gabay, Album, Caves du Panthéon, Celio, Coutard, Jennyfer, Nike Running, Derby, Dylanium Le Cuir., EDSON, Espace Micro, GAP, GINKGO, JP, Jules, Latin Optique, Le Temps Retrouvé, Les Délices du Fournil, Librairie EYROLLES, Maryline, Marks & Spencer Food, NAFNAF, Nepalaya, New Shop, Nicolas, RG512, Salamander, Sinéquanone, Six, Souvenirs de Paris, Stock André, Sud et Express, Troifoirien, Trop Bien !, United Colors of Benetton, francesca, Papeterie Latine, Librairie philosophique J. Vrin, pimkie, Leroy Merlin, BMW, DIP, Carrefour City, Home Studio, Star's Music, Star's Music, Star's Music, Le Passage Clouté, Monop, Boulangerie Alsacienne Benoît Maeder, Vent d'Ouest, Bernard Delattre, Poilane, Rouiller, Chez Pépette, Au cochon rose, Franprix, Lidl, Page à page, Chocolat thé, Feuille à feuille, Le Cellier Saint-Charles, Studio 148, Carl Marletti, Mavrommatis, Supermarché Diagonal, La Tradition, Oum Coiffure, Sitis Market, Le Bel Épi, Franprix, Kelly's Fleurs, La Gerbe de Blé, Leader Price, Decathlon, Franprix, La boulangerie des buttes Chaumont, Franprix, Franprix, Naturalia, Les Nouveaux Robinsons - Ecoproduits, Atelier des Pains, Kiloutou, Monceau Fleurs, Paul, Polymex International, Monoprix, Be Disc, Harmony Pressing, Cyrillus, Elan, Kenzo, Lancel, Nespresso, Bang & Olufsen, Celio, I love Paris, Mont-Blanc, Swarovski, Fournil de Wattignies, Mobalpa, Halles Optique, Franprix, Havas Voyages, Optic 2000, SOS Master, Copy-Top, Copy-Top, Espace Trocadéro, Franprix, Gap, Nicolas, Lexus / Smart, Tesla, Gloria Coiffure, Intermarché Express, La Cyclofficine de Paris, Le Comptoir des Mots, Maison Guérard, Essalam, Passage du Havre, Franprix, Pressing Menilmontant, La Petite Rose, Aux sept merveilles, Valentino, Harry Winston, Chanel, Printemps homme, Wash'n dry, Mega Affaires, Éco-lampes, Mair mesures, L'endroit, Monop, PASS Technologie - Conseil informatique, Boutique Auto Moto, Copystar, G20, Halles 3000, Marché Franprix, Marché Franprix, Marissal Bücher, Nicolas, La Bonne Pomme, Bio C'Bon, Huré, Beaubourg Optic, Design Librairie, Le Marché des Halles, Monop', Passage du Désir, Coiffure mixte, The Phone House, Corep Jussieu, La Grande Récré, Franck provost, Maison de la litterie, Marché Franprix, Casino Supermarché, G20, Jardin Daumesnil, La Chocolatine, Micro Relais, OSX Informatik, TDI, Ultimate, WL, aac, Direct Optic, Franprix, Moulin de Provence, Garage AD, Cachecache, Bonobo, Monceau Fleurs, Chantal et Hugo Roggio, Stop au 22, L'Art du Pain, Miss Coiffure, Conforama, Scooter Avenue, À l'ourson, Lidl, M. coiffure, Le goût des saisons, Le Vent des pages, La Fleur, Le Marché Franprix, Givenchy, Hermès, Toyota, Cartier, Louis Vuitton, Gianfranco Ferre, Bruce Field Femme, Bruce Field Homme, La Maison du Chocolat, Sony Style George V, Tara Jarmon, Tommy Hilfiger, Nike, Paul, Le comptoir du motard, Au Club Market, Avenue Aristide Briand, DIA, Le jardin d'Éden, Love♥n Flower, La Marchande de chaussures, Yakimono, La Do Ré, Okaïb, Miss coquines, Lidl, Boulangerie-Patisserie, Super U, Franprix, Picard, By Cyril Lignac, Pharmacie Paul Bert, Laverie Paul Bert, Nicolas, Smile, Fromage, rouge, L'art du verger, Orange, La vie moins chère, Valérie Tomas, Laurence Coiffure, Monoprix, Lady die, Aux delices des Lilas, Superette Montrouge, Boucherie Lesage, BD et compagnie, La Roseraie de la Mairie, Étoile d'or, D'Hair, Couronnes Fleur, Numéricable VHD, Fabio Salsa, Montrouge Musique, The phone house, Défini'tif, Carrefour City, Carli Paris, Monop', Naturalia, Boulangerie Benoist, Secrétan Ménager, Optic 2000, Euroline Mode, 8 à huit, Boulangerie Patisserie, Halles Secrétan, O'net Pressing, Fromagerie Secrétan, SNCF la boutique, Etoile Pressing, Ear-Well Lab, Monorom, G20, Just Clean Pressing, Actuel Pressing, Franprix, Le Fournil de Paris, Quai d'Art, Le pétrin alsacien, Carrefour Market, L'humeur vagabonde (jeunesse), La fournée Duhesme, Franprix, Boucherie Menguellet, Boucherie Villette Sud, Coccinnelle, Coiffure, Comptoir d'Italie, Dray Plus - Pulsat, Euro Bazar, KB 35, Surplus américain Nr 94, Nicolas, Cave 18, Picard Surgeles, Dia, Monoprix, ESPERANTO - langue internationale, Magasin/Kebab, 83, Gibert Joseph, Monceau Fleurs, MG Coiffure, Les Gourmandises du marché, Peugeot motocycles, DIA, Franprix, Robin, Au Fournil Gaité, M. & N. Petitot, Quadro, Boulangerie des Lombards, DIA, Zazou, L’Ourson en bois, Le Fournil de Paris, Boucherie Chayma, Du Pareil au Même, Le Triomphe, Picard, Bosch Service, Alimentation Générale, Laverie libre service, Primeur Thong, Boucherie Laurent Dumont, Franprix, Casitalia, Picard, Printemps Nation, Boucherie Thiebot, Hapsatousy, Institut Lys Blanc, Les Opticiens Mutualistes, Hair Styliste, Carrefour City, Minelli, Dia, Boule De Neige, Carrefour City, Copilote, L'Orée de Montmartre, Peugeot Motocycles, R'Mode, Salon de Massage, Bricolex, La Cocotte, Tage coiffure, Librairie Jonas, Monoprix, Junkudo, librairie japonaise, Centre Wallonie-Bruxelles, DOD – Dish of the day, Le XXe Siècle & ses Sources, Campers, Citadium, Factory, Monop', Nike, Nicolas, Naturalia, Vidéo Futur, Naturalia, LD informatique, Mobalpa, Hi!Tech, Yottacom, Millies Cookies, 3F computer, Billy The Kid, Ines d'Alexis, 2a Voyages, Biguine, Silver Creek, Missliu8, FranckOptique, happy, Produits exotiques, Beauté d'ange, Franck Provost, Picard, L'Océane, Kookaï, Redskins, Schott, 44th Square, Au Pain Gourmand, Leader Team, 4 Murs, Franprix, Isabelle Turgis, Le Triomphe, Optic 2000, Primeurs Saint-Mandé, La Saint-Mandéenne, La Boul'Ange, unknown, Sauvel Natal, Huguet primeur, La ferme de Chloé, Boucherie maison Desfresnes, Huguet primeur, Le péché des gourmets, Franprix, Naturalia, Foot Locker, Claude Maxime, Paul, Votre Marché, Daily Monop', Paul, Best Mountain, Kusmi Tea, Marks & Spencer Food, Monop', Le Barbier des Faubourgs, Galerie Thuillier, EPI Service, Boite à surprises, Monoprix, Atome Micro, Boulangeir Pâtisserie Kellerman, Laverie libre service, Ti Beauté, Lanzt motorisation, Proxi, Tonyshop, Les Salons MG, Alimentation Générale Tamazini Frères, Laverie 2001, Nicole, Audionova, Amorino, Eliecotto, Optique Voltaire, Contact audition, Audika, Le saloon coiffure, Or´ Optik, Orchidée, Kim Thanh, Pakkai, Yv Nghy, Saing Heng, Anny, Mo Ny, Hoa Ly, Asia Cadeaux, Erawan, Goyona, Asia Tresor, Diététique et Forme, A la calebasse verte, Au Vieux Campeur, Gepetto & Vélos, Cash Express, Nutritiel, Patrice Renouard Coiffure, Boucherie Tadfousse, Krys, Top Coiffure, Boulangerie Patisserie SAS Penain, Yuying Beauté, La Petite Fruitière, Le Potager de Montsouris, Banana Republic, Sidi Brahim Alimentation, Proxi, Garage des Peupliers, Beauté Zen, Aux Matelas Choisis, VitaMin&Co, Ronde de nuit, 1001 piles, Axone automobiles, PGM Italie, La Tonnelle, Boucherie Anezi, Stop Phone, Coiffure K.Y., Tati, Platinium, Patricia B., Optical discount, Albert, Usina literie, Les trésors Sucrés, Krys, Centre commercial Grand Sud, La station des affaires, Paradis D' griff, Thomas Cook voyages, Lacama, JN Coiffure esthétique, JN Espace mariage, Anas voyages, Kremlin Bagages, Kremlin Phone, Pêle Mêle, MAAF assurances, A la Renommée, Jean's Maverick, Cab Nation Paris 13, Bricorama, Super Cacher Koskas, Boucherie Koskas, A-Z Pc, China Moutai, Chinaco Travel, Franprix, Coiffure Roulot Michel, L'Artisan du Pain, Boucherie de la Passerelle, Coiffure Pretty Hair, Librairie Emmanuel Lhermitte, Halte épicerie, Chin Chin Salon, Lav' club, Orpi Montsouris PL, Pressing Arc en ciel, Espace canin, Alimentation Générale Daighami, BMW Motorrad Bobillot, Bazar Bobillot, Maison Cipolli, Bijouterie Bobillot, Boulangerie Patisserie Sainte-Anne, Salon de Beauté Lisa, Nicolas Tolbiac, MZR Chic, Connexion Tolbiac, Art et Végétal, Body Minute, Picard Sainte-Anne, Opium, Alixe Fougères, Lavomatique, Tangka voyages, Camille Albane, Première Optique, Paris Affaires, Fanny et Joseph, Charcuterie Pellé, Franck Provost, Pressing de l'Espérance, Quatrehomme, L'Éloge du Vin, Verger de Tolbiac, Saint Algue, Artisan Boucher Claude Doguet, Tchip, La Crac'ante, Le Phare du Ponant, Peigne Fin, Allo Phone, Jean-Claude Biguine, sarl ACDO, Librairie - Papeterie, EurObsèques, Maison Simoneau, Hollywood nails, DN moto scoot, Mya Isai, Nicolas, Bio Génération, Chabrol Pressing, G20, Paris Mixte, Tchip, La boutique du déménagement, GMSA Alésia Multi Service, Allianz, L'Agence du Chalet Keops, GMSA Alésia Multi Services, Perles sur ongle, Mediabank, Droguerie, L'hair dans le vert, Lilas, Century 21 Alésia, Ping Ping Beauté, Martine, Nadia Lenne, Luc Gaspard, Xin Xin Alésia, Affinité Beauté, Paris Télé Secours, Mutuelle Générale de Paris Alésia, Scoti Immobilier, Abidis, Castim Immobilier, Jourdan Coiffure, Alésia Fleurs, Laforêt, Office Depot, Nicolas, Matmut, Librairie Ithaque, Garance Immobilier, La beauté des ongles, Optique Jorion, Etude A.M.I, Lilina, Promod, Phone House, Smart stock, Celio, Emmaüs, L'ortie blanche, Librairie Nicole Maruani, Wash Service, Franprix, Marché Franprix, Bruno Melgani, Optique 2000, Franprix, Monoprix, Jacadi, Boulangerie Belazi, Autos Gambetta, Carrefour Express, La Gambette à Pain, Rapid' Market, A2pas, Maison Hébert, Optical Center, Biérocratie, Cleoni institut de beauté, Charcuterie traiteur et cuisine asiatique, Lucia Coiffure, Salon Orchidée Sun, Retouches, Rose d'Or, Droguerie Quincaillerie Bricolage, Attica - La librairie des langues, Nathalie N, Kiddyland, Des mains et des pieds, Agence Montsouris, Laverie Libre Service, Petit Casino, SBI - Gefimo, L'Amiral Primeur, Retouche Gazel, La Boutique Gourmande, Maison Kevest, Rebillon, Famille Les Opticiens mutualistes, Century 21 Lutèce Immobilier, Libre service du Parc, Presse Universitaire de France, La maison des marquises, Chez Sophie, Maison de l'Astronomie, Orange, San Than Thai Massage, Boucherie Économique, Franck Provost, Nicolas, Primeurs Jeanne D'Arc, Biocoiff, Franprix, Lena Beauty, IBF minéraux, JC 2000, Miss & Men Coiffure, Agnès K., Meubles You, Le Paradis des Ongles, Cung Dinh, Tahiti immobilier, Amasia, Europasie, Kampoul Pich, Weng Se, Tran Nhan Ky, Tif' Folie, Choisy immobilier, Sun Salon Coiffure, Poly China, Wa Quan bazar, Allianz, China Europe, La petite merveille, Stasia, Thai DVD, Asia Immo Conseil, Embest Chaussures, My My Onglerie, Aviva Paris Olympiades, Delphine Beauté, Hoa Ly, Petit Para, Kim Hair Line, Kawa, Alpha immobilier, Coiffure en vogue, Western Union, Optic Tolbiac, Lava'tronic, Discount Beauté, Picard Tolbiac, Ivry Coiffure, Leader Immobilier, Vivre Mobile, Au Petit Saigon Nhơ, Aux Merveilles d'Asie, L'empire des thés, Mydo Mod's, Kim Fashion, Khai Tri, Boulangerie Patisserie Sandwicherie, Kiloutou, Elysse coiffure, Boucherie Jourdan, Bazar de la Porte d'Orléans, Le Verger d'Orléans, Fabio Salsa, Century 21 Alésia Montsouris, Dany Boutique, Matériel de coiffure professionnel n°128, Assu 2000, Coiffure, Galerie du luminaire, Diagonal, Agence Alin - Porte de Châtillon, Oneclop, Le fournil du moulin, FPA Paris Brune, Pic Cuisines, Schmidt Paris 14, Alesia Moto, Arilux, La vicomte, Sublimatorium Florian Leclerc, Les amis de l'automobile, Franprix, Alimentation générale, Le Marché d'à côté, Boulangerie de la cité, Franprix, Bonjour Backery, Paul, Selectronic Paris, Super nettoyage à sec, Joalric, Halles Convention, Antonelle, La fromagerie, Point Presse, Albax, Pressing, Picard, Pressing, Fifty Fifty, Biguine, Les éleveurs gastronomes, Bijou, Boucherie Donné, Fleurs d'Auteuil, franck Provost, Proxi, Laurent Duchêne, La Bretagne, Le repaire de Bacchus, DIA, Jeu d'encre, Bébé Brune, Lady's colours, Le lavoir du 14e, Coiffure Messieurs, Boulangerie Brune 77, Pressing 75, Bethania hair coiffure, GDV informatique, Midas Paris 14 - Brune, Agence Axa - James Luzon, Salon Christine, Atelier Garnero, Le relais du fruit, Sonogar, Boulangerie L. Paulin, Argana, Culture indoor, Little zoo, Beauty spot, Maria, Coiffeur homme, Carrefour City, Le fournil de Vanves, Franprix, Monoprix, Halles Balard, Maison Lefaure, Maison de la Détection, KYF Cigarette électronique, SYSTA Informatique, Au Sport, Bio c' Bon, Key Largo, Allo Bureautique, Rapid Market, La Cabane, Le Jardin des Pains, Salon américain, Patrick Guedj, Premibel, Boulangerie Pâtisserie Yelles, Franprix, Tolbiac Pressing, Oriento Market, Concorde Love store, Laverie libre service, Fashion coiffure, Latino market, Anita Coiffure, Beauty bar, Private SPA, Thyda Apsara, 8 à Huit, Mi Prix, MNAM Harmonie Mutuelles, Des griffes boulevard, Annie & Gilles Boulangerie, Bunny ongles, Libramoto, Des griffes boulevard, AGPM, La France Mutualiste, Century 21 Quai ouest, Aux délices de la roquette, La tradition du pain, Carrefour City, Office Depot, Casino, Be 9, Hamza, Boucherie Atlas, Tchip coiffure, Ober, Proxinour, Pressing Fer d'or, Citroën Paris Rive Gauche, Coiffe' Mod, Au chat botté, M scoot, Gayomart, L'âme soeur, Paris scoot service, Lefebvre essence, Institut Minceur & Point Sourire, Les déménageurs bretons, Déménagements, La saveur du pain, Relais de Stalingrad, Gosselin, Marguerite, Fromages Laurent Dubois, Nicolas, Biocoop, Sacrés Vins Dieux, Boucherie Ibrahim, En vrac, La Huche Normande, Nicolas, La Balustrade, Thaï Sympathie Krisana, La boutique SNCF, Adecco, Pascal Atwe, Carrefour City, K Optik Balard, Déva institut de beauté, La Bicyclette, Les Affranchiz, Square de Belleville, Clean City, Naely, L'Atelier 67, Radiocomsat, Monop', Sofiane Coiffure, Arthurimmo, Clair obsèques, Au Bois d'Orléans, Nexity, Coiff 21, Massage Thai, Les jardins de Paul'ha, Leila Coiffure, Laverie libre service, Boucherie du Père Corentin, Bel' Dam, Mutuelle Bleue, Marionnaud, Anaïs de Paris, Caprices..., Leonidas, Loisir & Culture, Salon de coiffure, Worktopfactory, Alimentation générale, Les sirènes d'Asie, Cordonnerie - Clés, Laverie éclat, Nicolas, Jean Louis David, Le bonhomme de bois, Le grenier à pain, Weinberg, Kenzie, CPH Immobilier, Millenium boutique, Gautier, Sélection primeurs, Vision du 15e, Alice Son's, Bedros, Boucherie du rond point, Eric Stipa, Boulangerie Saint-Charles, Picard, Franck Provost, Gold company, Elegantissimo, Photo Saint-Charles, Boulangerie Flandrin, Boucherie Saint-Charles, La boutonnerie, L'Angelus, S.B.S, Sap men's Diffusion, Bazar Riquet, Boucherie Riquet, Paris Meubles, Khagi Supermarché, La Corbeille Royale, Photo Olive, Pressing Riquet, Riquet Fashion, Garage Pajol, Bazar L'Olive, Miss Moni, Amiral Store, Boulangerie de Mogador, Camaïeu, Coiffure Céline, Le Palais des Affaires, MZEL, 38 gourmet, Mo.Mo Prix, Boulangerie Patisserie, Lavatronic, Motos 13, Amazing Beauty, Ilakiya, MiMi Market, Riquet Alimentation, Riquet Phone, Clopinette, Franprix, Christian Echardour, Stephane Pressing, Chez Laurent, Ingencia, Marché Franprix, Pressing Paris, Jean Louis David, Jean-Claude Biguine, Au Nom de la Rose, M.G. Espace Lourmel, L'Attrape-Coeurs, Gihon, La Cave De Lourmel, Serrurerie Dépannage, Garrice Stock, Agence Dupleix, Mille et Une Déco, Supérette De Lourmel, Laverie Libre Service, Le Prince, La Volga, Vins & Délices, Franprix, Album, Patisserie Poncet, Franprix, Marché Franprix, La Dînade, Tienda Esquipulas, Dia, Atol, DIA, Franprix, Optic 2000, Les Drogueries d'Aujourd'hui, Eric Kayser, Tout Noté, Mona Lisait, Yankee, Carrefour bio, Naturalia, Aux Saveurs Naturelles, Chocolat de Paris, 203, Boulangerie Pascal Chevret, Coté Photographie, Couture, Genty Gastronomie, Institut Camélia Coiffure, Nissan Bayard Nationale, Pressing Anna, Rambert Optique, Salon Marhaba, Accoustic Center, Club Med, Home & Bath, Maisons du Monde, Menting, Numéricable, Optical Service, Salimar de Grandes Marques, Tabac club, Zedi, China Art, Chinaco, Copies Services Hexamedia, Copies Services Hexamedia, Jeanny.M, Shanghai, Sigue, Allo La Place, Azote Voyages, Cadeaux Montres Maroquinerie, Chantours, Coiffure, Delta Electronic, Jean Louis David, Lav'Italie 64, Le Grenier à Pain, Lingerie Lisa, Léna, Maroquinerie Chagal, Mobeco, Naturalia, Nouvelles Frontières, Phone House, Place des Marques, Satland, Selectour, Terres Nouvelles, Viva'Son, Wanli, Boulangerie, L'Atelier d'à côté, Marc Page Fleurs, Franprix, Monoprix, Au cœur du Marché, Cycles Minutes, Rapid Vélos, Comtel, Lan Coiffure, Optique Torcy, Prarani Coiffure, Riquet Phone, Swanny Coiffure, Torcy House, Vert d'O, Euroconcert, Printemps (2014), Espace Bazar, Paris Store, C&A, A.N.T Laverie, Au Bon Coin, Au Régulateur, Bruno Optique, Chausse Confort, Hair Marine, Horloger, Istanbul Oriental, La Chapelle Bazar, M.S. Fleuriste, For N'FrianD's, Jérôme B., Le Fournil Parmentier, Fournil de Pierre, Fournier Fleurs, Chop'in, De Thé en Thé, Boucherie Haissoun, Bio c bon, Van Cleef & Arpels, Boucherie Salam, papeterie presse, La baguettine d'or, Simply Market, Superette Nova, Mon dé rouge, SBS, Didier Poussin, Jean-Philippe Audebert, L'institut, La Cabane à Presse, Chris, Cyclope, Christelle M, Facile & Accessible, Georgia P Retouches, Picard, Un Look pour Tous, Gislaine Coiffure, Julian, Natsumi et Jérôme, Les délices de la Chapelle, Le Celtic, Publico, Bien-être, Folicils, New Look, Soit dit en passant..., Dormoy Pressing, Le Blanco, Opticly, Smarty Travel, Cante, Au Caprice du Chien, Charcuterie, Mur & Sol, Medya, Voyages Montparnasse, Hédiard, Librairie du Centre, carrefour express, Les Pénélopes, Saco Coiffure, Décathlon, G20, Boulangerie Marceaux, Gant store, Krys, Boucherie Manu, Franprix, Boucherie Marx Dormoy, Éric Gara, Carrefour City, Du Pareil au Même, Maison d'Ennour, Nicolas, Curling, Le Nemrod, Expe, Vépi, Bata, Célio, Etam Lingerie, Marionnaud, Orange, SFR, Yves Rocher, Aux Péchés Normands, SNCF La Boutique, Saint Algue, Boulangerie, Cline'Net, Aubergine & Go, Renault, agence Gesmier, La ronde des pains, Franprix, Caves Fillot, Guy's Barber, blonde de pain, Mr Bricolage, Gizelle Elegance, Merci, Augys Copy Service, Carrefour Express, Laverie G. Eastman, La Baguette Sedaine, Monop', Boulangerie, Le pain d'autrefois, Rudy Père Et Fils, Boulangerie Onfroy, Boulangerie Poilâne, Picard, G20, Franck Provost, Immanence, Orchestra, Aubert, Boucherie des Fins Gourmets, Charcuterie du Panthéon, Au marché d'Abidjan et de Bamako, Boesner, Boucherie Pilote, La Boulangerie, La Tonnelle, Françoise Coiffure, Office Depot, Alimentation Générale, Honda, Kremlin, La Halle aux Chaussures, Chotty, La Forêt, Chaussures Noubar, L'épicerie du 104, Boulangerie Patisserie, LOPHYL FLEURS, Lynda Coifure, Melocotone, Péchés Mignons, Le Garde Robe, Midoré, Franprix, Vivaldi, Aquafleur, Boulangerie Patisserie au 140, La Cartouche, Nouvelle ère, Pâtisserie de l'Église, Paul Beuscher, Stock griffes, Garage Thierry Fromentin, Princillya, Eden coiffure, Saint-Maur coiffure, Au bel arôme, Coiffure, Coiffeur élégance, Globus star, Darty, Habitat, Deby Debo, Alessandro, Zadig&Voltaire, The kooples, Chris Matthioux, Birague Cleaning, Ubu galery, Valeria Fara, Modella, Tera bora, Jeff de Bruges, Photo center, Boulangerie Saint-Antoine, Du pareil au même, Jonak, Les Petites parisiennes, My e-case, Halles Saint-Antoine, Lenôtre Paris, Rynshu, Dammann frères, Galerie Michel Estades, Galerie du Marais, Modus, Art symbol gallery, Galerie Mickael Marciano, Galerie d'Art Colette Clavreul, Mark Hachem, Galerie Lisette Alibert, Sibman gallery, Galerie 26, L'archange, Galerie Mickael Marciano, Galerie Ariel Sibony, Art symbol gallery, Galerie Artima, Deborah Chock, Parfums et senteurs du pays basque, Galerie de Medicis, Galerie Bluman, Galerie Mouvances, Galerie Neel, Pourchet, Galerie Ph Magmoire, Cécile & Jeanne, Le marché de Turenne, Souvenirs du Marais, Bobbi brown, Karen Millen, Aqua di parma, Upside, Les ateliers de la Maille, Yellow corner, Hier pour demain, Aridza Bross, L'objet, Camper, Monic, Majestic filatures, Home, Guerlain, American vintage, Swatch, L'occitane en Provence, Metal pointus, Cécile & Jeanne, Solaris, Jo Malone London, Autour du monde, BGN, Eva Tralala, Ekyog, Satellite, Aventure, Spontini, Princesse tam-tam, La chaise longue, Pandora, ba&sh, maje, Aubade, Comptoir des cotonniers, Gérard Darel, Les Petites..., Nicolas, Claudie Pierlot, mellow yellow, Biscotte, Chattawak, Esteban, Muji, Sandro, Zadig&Voltaire, Marionnaud, Fragonard, April may, Les Bourgeoises, Antoine&Lili, Waldone, Destock, Amorino, Grolle, SFR, Proxy market, Supermarché Bonjour - 新温州超市, G20, G20, New Star Coiffure, ACZ, Air France, Gold Foot, Oprah Paris, Vintage Story 66, Cabinet J. Raimon, épicerie ledru, ASVS Alarme Auto-surveillance, Cordonnerie, Futur Transactions, Féerie du bain, Vins et Saveurs, Roche bobois, Immobilière des arcades, Royal tabac, Sie Matic, Ceprima, Fred coiffure, L'empereur chemisier, Jp Champroux, Roche bobois, Roche bobois, Ma Cave, Monoprix, Picard, avas-voyage.com, Carrefour Express, Coiffure Bel Hair, GlobaeroShop, Mephisto, Tabac Saint-Mandé Presse, Boutique SNCF des Olympiades, Dunes Traiteur, France Archerie, Franprix, ImmoSoult, ZM Coiffure, La flûte Gana, Colisée Gourmet, La fabrique de lunettes, Picard, Maraîcher, Plaisir d'équiThé, A première vue, Salle de bain et design, Garage Gazi, La souris verte, Kiabi, Moulin Rory, Nicolas, Le Repaire de Bacchus, Franprix, Etoile nails, Claudie Fleurs, L'univer Informatique, La Bichonnerie, Rio Brazil, NSS Auto, 1001 piles, Franprix, Jallerat Ivry, Mini Market, Saint-Honoré, MSL, Toto-Exo, Boulangerie Patisserie de la Poste, Boucherie Samiry, Coiffeur Parisien, Alimentation Générale, L'olifant, Franprix, Librairie Papeterie Presse, Franprix, Net Pressing, Coiffure Karim, Boucherie Inara, MotoscootKB, Hédonie, Eurotribal, La Bicyclette Électrique, La Boulange Ve, Maryline, Sud Tunisien, Celio*, Artisan Boulanger, Au Papyrus, Aux Péchés Normands BIO, La Fournée d'Augustine, Amorin0, Dog's Discount, Media, Wella, Le Village Gourmand, Liberty Travel, Le bon Panneton, Eram, Lynn Adler, ID elle, Marionnaud, Cousin, JD, Jean Fernand, Maison de la Presse, Zola Color, Picard, Imprimerie Beaugrenelle, Body Minute, Georges, La Charmerie, Michele Greco, LDLC, Franprix, Macway, Chine store - 新今日超市, La Civette Dorée, Leader Price Express, La Treille D'Or, Retoucherie Etoile Saint-Jacques, Sélection de la Mode, Tendance, Giovanni, Boulangerie, Passage Bleu, Passage Bleu, Micromania, Générale d'Optique, Boutique Orange, Pressing, Carrefour City, Terroir d'Auvergne, Linge de maison, Jean-Claude Biguine, Le Coin des Marques, Gill's, JMS Optique, Bergamote et Chocolats, Le Coin des Marques - Hommes, Nota Bene, Atmosphère, Dister, New Marx Store Marché Exotique, Pascale coiff', SARL Sri Exotique, CRC Cycles, Librairie Gallimard, betino's record shop, Benny, La République pâtissière, Au petit Versailles du Marais, G20, Bricorama Chatillon, Patisserie Bonjour - 你好, G20, Ryad, POINT.P, vacant, Nature et Découvertes, Promod, Casino, Bata, Camaïeu, Casa, Celio, Delaveine, Eden, France Loisir, Joffo, Marceline, Marionnaud, Nation Literie, Tati Or, Tati, Go Sport, Maine Fleurs, 5 à Sec, ChocoLatitudes, Fanfan, Rolland, La Rotonde Hébertine, Peintures de Paris, S. Gardenat, Safameca, Picard, Afflelou, Brulerie des Gobelins, Games in Blue, Peugeot, Aux Quatre Saisons, Carrefour express, Au Blé d'or, Le Chant du Pain, Antoine & Lili, Bel Air, Berenice, COS, Carréblanc, Coccinelle, Cocoon, Colin Régis, Cotélac, Dans le noir, Free Lance, Fleurs de Rhum, Foie Gras Luxe, HO+X, Istella forest, JONAK, Laforêt, Lola Keim, MAX & Co., Marithé François GIRBAUD, Optic 2000, REDSKINS, REPLAY, Richard Gampel, Un amour de Lingerie, Wine Sitting, Yaya-Store, Zadig & Voltaire, a. simon, a. simon, minelli, 50m., La maison du bouton, Franprix, Franprix, Franprix, Franprix, Leader Price, La Folie du Pain, TATI, Picard, Devos, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Fleurs en couleur, De Lucia, châteaux, AlterSmoke, AlterSmoke, AlterSmoke, Ecig & Zen, Chocolat De Neuville, Cigartex, Clop' Stop, Coin des Affaires, Mobalpa, clean, Toys "R" Us, Sephora, Jean Louis David, Monceau Fleurs, Savane, Monop', Copilote, Le plaisir de la marche, Tabac de l'Est, Lily Valley, Hamm, Brulerie Maubert, Librairie Notre-Dame de France, La Boutique SNCF, Lidl, Au Chai du Chat, Pressing, Acuitis, Gérard Mulot, Optique de Seine, Vercourt, Georges Larnicol, Ocean Nails, 13 Affaires, Mefisto, L'Echoppe, Acuitis, Eram, Foncia, Gabor, Gentleman Gallery, Gigi, Générale d'Optique, Hong Lien, Isambert, Jacqueline Riu, Jean-Marc Philippe, La Vaissellerie, Micromania, Princesse Tam-Tam, Rayon d'Or, Stock Linge, Un Jour Ailleurs, Valege, Yves Dorsey, europtical, marché franprix, méo, Coton Doux, 1001 Piles, Pharmacie Coty-Issoire, Droguerie de la Tour, Zara Home, Salon Steve, Action Bike, Boucherie Lulu, Céline Coiffure, L'Atelier Jessica, Pompes Funèbres Générales, Pressing Blanqui Service, Supérette Avenue Laumière, marché Franprix, La maison fleurie, Optique Laumiere, Espace Zen et Beauté, Le Repaire de Bacchus, Au Petit Fromager, Aux Vergers de Brancion, Boucherie Brancion, Au Palais des Roses, Brico Fassy, Clean Shop, Dia, Ding-Fring, Franck Provost, Jean-Louis David, Jeff de Bruges, Krys, Maison Guénard, Paris Bonzaï, Pressing des deux Cœurs, Prim' Alleray, Tang Frères, François Priet fromager, Josy Coiffure, Aliantis Lecourbe, Proxi, marché Franprix, Électricité A. Poelger, Boulangerie Metayer, Bill Bazar, Charles Traiteur, Bazar Brancion, Marionnaud, Attirance, Amazing Beauty, Bijouterie Horlogerie, Papeterie Mercerie Journaux, Élodie, Exo Market, Kangfu massage, Laverie M G, Paris Travel, Muriel Labro, Le Tabarium, Laverie Trevisse, motrio, Éric Nivot, Marché Franprix, Book-Off, Pages après pages, DIA, Artisan boulanger pâtissier, Banette, Krys, Nicolas, Boucherie de Charonne, Au jardin des délices, M. Bazar, Bianco Constantina, Optic 2000, Optical €r€t, Office dépôt, Naturalia, Bricolex, Décorasol, Mariciel, Le Panier Gourmet - Franprix, Popmarket, Homies, Pressing, Milo, Le blé royal, BH Optic, Les Jumeaux, Cam'Arine, Ronde des Pains, Marché des Saveurs, Maison de la Presse, Kim, Délice Pain, Supermarché Asie - Exo, Carrefour City Lecourbe, Eyes, Boucherie Jacky Lesourd, Le Moulin De la vierge, Franprix, Galerie Magda Danysz, Darty, Nicolas, Diagonal, Ulysse Discount, Souvenirs de Paris, Anoki, Symphonie florale, Gift Shop, Le Marché Franprix, Mas, L'autre Démarche, expert, Amarante, dan exotic, Fedra Coiffure, Le Fournil, Le Duc, Les Fleurs de Bicêtre, Casino, EG Alimentation Générale, Franprix, Golden Bread, EVA, Jolie, Lissac, Optic Charron, Beretta, Diwalis, Gallerie de la Huchette, La Boulangerie de Papa, La Mémoire de Paris, Souvenir Paris Night, Starplayer, Grim'art, Daniel Montesantos, Jadis et Gourmande, Les Opticiens du Marais, Georges Larnicol, Grohe, Podologue Pedicure, La Halle, epi d or, Ciel, Optic2000, Fonciere Italie, MF 2000, Midas, Lidl Olympiades, Aux Délices de Manon, La Maison du Whisky, Aliantis Porte d'Orléans, O'Clean, Bella Nails, Franprix, Foulon, Androuet Fromager, Dia, Pressing, Mac Rayan, Axel, Mobalpa, Iveco, Ceramic Design, Honda, La Retoucherie, Mouss'Coif, Piaggio, Speedy, jo Matellj, André, Boulinier, Librairie des Loisirs, Bouygues, Brioche Dorée, Claire's, Côte à côte, Eram, Etam, Général d'Optique, Lewis, Minelli, Orange, Paul, Produits Basques, Promod, San Marina, Tabac de la Fontaine, Texto, The Body Shop, Valege, Le Puits Fleuri, Librairie Blanqui, Ets Dupleix Confiserie en gros, JMB Optique, La Plateforme du Batiment, Picard, Stock'shop, Dèmonia, Modern Pressing, Casa, Fleurs d'Auteuil, Espace Topper, Affaires Plus, Stock, Alixe Fougères, C & M, BMW Paris, Retouche Orchidée, BD et Compagnie, Salon de Relaxation Chen Zen, Élixir, Ongles de Star, Inside Multimedia, Retouche tout vêtement, Leclerc, Coiffeur Homme, Laverie L'Eclat, Dog Shop, Desgranges, Naf Naf, B&B - Bio indépendant, Abbey bookshop, Côte à côte, Nicolas, Un Monde Vegan, Dia, Garage Péripherie, Quicksilver, Champion, Nicolas, Confo Déco, Fréquence Beauté Coiffure, Unic Optic, DynaMicro, EasyConfig, MicroShop, Montgastar, Net-Ultra, Royal Micro, SCI, Xtra PC, 3DMultimedia, L'Établisienne, Superette 21, Muji, Muji, Aigle, Celio, Cordonnerie Noé, Du Bruit dans la Cuisine, Felice Plus, Grand Optical, Guess, Izac, Kiko, Kusmi Tea, L'Occitane, La Chaise Longue, La Mode est à Vous, Lacoste, Muji, Muji, Pandora, Petit Bateau, Promod, Puro Gusto, Relay, Relay, Relay, Relay, Salsa, Segafredo Zanetti, Sephora, Six, Solaris, Swarovski, Swatch, Venizi, Yellow Korner, Esprit, Heller, Hema, Jeff de Bruges, Laboratoire d’Analyses Médicales, Lush, Mephisto, Muji, Parfois, Passionata, Paul, Pylones, Relay, Relay, Starbucks Coffee, Starbucks Coffee, Sud Express, Yves Rocher, Camaieu, Devred, Dim, Du Pareil au Même, Foot Locker, Histoire d’Or, Jack & Jones, Jean-Claude Aubry Basic, Jean-Claude Aubry shopping, Kickers, Mary Paz, Micromania, The Cotton Gallery, Undiz, Bullez Zen, Angela C., First Clean, Optical, Marks and Spencer, Domone Coiffure, Tryba, Hackspark, Aux Caves de l'Amiral Mouchez, Charcuterie du Parc Montsouris, Boucherie Buffalo, SITIS, Isabelle et Christophe, Optical Center, Carglass, Speedy, Emeraude, JFC Duffort, Au Levain, Colin Montrouge SAS, Picard, Volkswagen Paris Est, Carrefour Market, Les Nouveaux Robinsons, Doc'Biker, mistigriff, Le Boudoir de Joséphine, Librairie J.N. Santon, M&G Segas, L'amoncel, L'éclair de génie, Les délices de l'Atlantique, La Dînade, Paul, Picard, Hair Tendance, PSS, Nicolas, Le Grenier à Pain, Dia, Tang Freres, FM Hair, Celio, Boulangerie Patisserie, Boutique Zen, Miss Coquines, Ba&sh, Blanc des Vosges, Eden, Le Coin des Marques, Le Moulin de la Vierge, Papeterie Plume, SFR, Tome 7, DIA, Eurolav, Cyril Franck, Miroir, Retoucherie, Traiteur Italien, Carrefour Express, Boulangerie Patisserie, G20, Au Bonbon Royal, Bricolex, Frank L., G20, Optic 2000, Kiloutou, Cogeferm, CTA Perception, Pharmacycle, Prêt à partir, PRIVILEGES VOYAGES, Boucherie du Marché, Aux Pures Gourmandises, Cyprès des Fleurs, Le Grand Buffet, Votre Marché, Movie Store, GrosBill, copie service, Prometour, Au Plaisir du Pain, Fleurs, Monoprix, Orientation Carrière, L'atelier du sourcil, Caviste, Carel, Centrale d'optique, L'Oréal, Petit bateau, Catimi, Dieleth, Arthur, Olivier Grant, Etam lingerie, Aubade, Princesse Tam-Tam, Rodier, Charles Cotonay, Sophie-flore, Nespresso, Comptoir des cotonniers, Marionnaud, Devernois, Djula, Pierre Cuvex, Madura, Fairmount, Christine Laure, Salamander, La bagagerie, Yves Thuriès Chocolat, The Kooples, La Vie claire, Firmabo, Caroll, Gants Helion, Chassagnard, Ema Piazi, Wimona, Nicolas, Gigi Chaussures, Ekyog, Concurrence Samsung, Mariage frère, Lucas Carton, Louis Pion, Odiot, Toto, Patrick Roger, Cerruti 1881, Ralph Lauren, Massimo Dutti, Maille, Tru Trussardi, Marthan Lorand, Maison de Famille, Kenzo, Orange, Marella, Alain figaret, Sephora, Fauchon, Swarovcki, Yves Delore Punis, Traiteur chez Catherine, Giambattista Valli, Minelli, Promovacances, Heurgon, Petit bateau, Démocratie Prêt-à-porter, Optical Discount, Midas, Picard, Magma, Clarks, Maronnaud, Musika, Viviane, Choc Fleurs, Guerrisol, Promotion 7, Norbert Bottier, veo shop, copy-top, Au Paradis du Gourmand, Le Marché d'à Côté, G20, Groupauto Mesnil, Ladurée, Hugo Boss, Franprix, LOXAM CITY NATION, Ecox, Prim'Market, Carrefour City, Librairie Mona Lisait, Monop', Monop', Franprix, Mondial Pare-Brise, Superette Bisson, Nicolas, Les délices de taine, Milady, Midas, Léopold Coiffure, thai center, Van Hoods & Sons, Aux Gourmandises d'Arago, Roblot, Services Funéraires de la Ville de Paris, Mephisto, Carrefour Market, Harry Cover, Liolà, Picard Surgelés, Docteur iPhone, Cuirs et Fourrures du Front de Seine, Boulangerie Evrard, Mon Oeil, Sandra, Charcutier - Traiteur, Vendeur d'épices, Charcutier - Traiteur, Europ Video & Photo Studio, Pantheone, Horloger - Bijoutier, Garage Porsche, deNeuville, Coiffure Montesantos, A. Becquerel, Boucherie des gourmets, Bilatéral, I Love Optic, Verger Saint- Paul, Mariaunnaud, Caves Saint-Antoine, 5 à sec, Au nom de la rose, Koutchi (bijoux et objets artisanaux d'Asie centrale et d'Inde), Mali, Galerie Pamyr (Asie), Galerie binôme, Artistes coiffeurs, coloristes, Elodie Cohen, Aux Comptoires du Chineur, Le cygne rose, Bien-être Saint-Paul (diététique), As'art, Inspirations, Les Neiges d'Antan, Lyczak, Frank Provost, Casino, Le Boulanger de Monge, Tabac Presse, Les Provinces, Les jardin d'ilham, Ditac, Chez Aude, National Exotique, Victoria, Vision Plus, Globus Star, Leader Price, Thomas Cook Voyages, Franprix, Fromager Bruno Deslandes, Bel Hair, Hadi Coiffure, La Caverne Fromagère, Napoli Fleurs, Relay, Croisière, Asia market, Dia, SNCF Boutique, Burburry, Daniel Crémieux, Loiseau Aycardi, Ralph Lauren, Tag Heuer, Mercerie Au mètre à ruban, Mise en Demeure, Fleurs Delangle, Grand Optical, Manfield, Eram, Acuitis, Etam, Eric Kayser, Gap, Celio, Oliver Grant, Monoprix, Kookaï, Paul, Pou, Exclusif, Minelli, Bianca, J. Martin, C. G. de Mauriac, Lacoste, Sandro, Opsine, Darty, Nicolas, Sara Lina, La baguette, France 4G Télécom, Au Nom de la Rose, Chez Affaires, Cler Fleur, Kerrymara, Leader Price, Leonidas, Les Floralies, Les Halles Bosquet, Les Quatre Saisons, Mademoiselle Bio, Roger Biliebault, Valises Delsey, Anne Sémonin, Cyrillus, Le Moulin de la Vierge, Maison Bleue, Orchi Déiste, Atol, Cave des Gobelins, Lunda, Asselin, Catex, Photo-Ciné, Baechler, Beauty Stores, Bio C'Bon, In Verde, KC, Les Faits Main d'Autrefois, Optical City, Point Smoke, Vince Or, Prince Coiffure, Dia, Dia, Marché Franprix, Choisy Flor, MD Mode, Saigon Nailux, Berlutti, Bob Design, Brykalski, Ego Paris, La Boutique des Inventions, Le Chef d'Œuvre Inconnu, NATACHA PAN, Venus sur Cour, Atmosphères et Curiosités, La Petite Caverne, Sopaz, FZ Coiffure, 5 à Sec, Géant Casino, Le petit marché de Riquet, Guy Degrenne, Antiquités, Derya, Animal's, Pressing Sarrette, Yada & AJ, Pressing, Polo, La Maison du Convertible, Mondial griff.com, Nicolas, Opticien des Gobelins, Redken, Rochebobois, Scott & Fox, Stock André, Yuka, L'Étoile des Gobelins, Papeterie des Gobelins, Chic Life, Micromania, G20, Mert Pâtisserie, Picard, Les Chics de Claire, Tiffany & Co, Optical plus, Vins Guy Jeunemaître, Boutique SNCF, Little Shop, Christine Boulben, Picard, Cartier, Pereire Fleurs, Internity, Beauty White, Joséphine Bakery, Paul, Petit Marché, Autovision, Modern Coiffure, Citroën Félix Faure, Pomi, Boucherie Laurent Vincent, Fromagerie Androuet, Karl Marc John, Culture of Color Nail Bar, L'Occitane en Provence, Boucherie J. Bellenfant, Oliviers & Co, Le 137, Poissonnerie Saint-Médard, Marchand de couleurs, La Fromagerie, Le Marché Franprix, Maison Morange, Picard, Fromagerie Beilleverre, Pomi Halles Mouffetard, Boucherie Saint-Médard, Les Chants de Blé, Jeff de Bruges, Nicolas, Pacific Prêt-à-porter féminin, Poissonnerie Quoniam, Brûlerie des Ternes, Marionnaud, Pierre Champion, Nicolsen Chocolatier, Le Repaire de Bacchus, de Neuville Chocolatier, Fée des Lilas, Moeti, Anoki, Patrick Véron - Fromager indépendant, Les Petites Parisiennes, Zinc de Fleurs, Rose & Charles, 5 à Sec, Dammann Frères, Tavernier, Or'in, Sherpa, Kin, Naturalia, Mococha Chocolatier, Rapid Clés, Chromatic, Nina Kendosa, Optique Lentilles de Contact, Les Précieuses de M., Modyline, Accessorie's, Vade Retro, Chromatic, Phil Defer, Ultra Orange, Hanuman, L'Autre Thé, Joker, Boutique des Cahiers, Loding, Rose & Rouge, L'Écluse, Zen Élisée, Salon B&P, Art Religieux, Alpaga, Votre Salon, Delitaly, Eglatine, La Maison de Ville, Les Fromages de Raphaële, OK Tours, Daly Coiffure, Amaryllis, B. Leduc, Biguine, Carline, Carnaval des Affaires, Cartridge World, Celianthe Medus, Clean Express, Conversons, Diane Selliers Éditeur, Eric C., La Panetière, LiliPuce, Nicolas, Pressing, Retoucheur Qualifié, Telecom, Timbres Monnaies, La Réserve des Arts, Father & Sons, Paul QUAI, Bcbgmaxazria, C&A, Lucie Saint-Clair, Marionnaud, MinaPoe, Optique de la Madeleine, Point Vision Plus, Zwilling JA Henckels, Anna Marchetti, Camille Albane, Cyclable 12e, Alain Choukroun - Haute-Fidélité, Franprix, Optic2000, La Tradition, Boucherie Brancion, Vans, Selectprimeur, La Cave d'Ivry, Pompes Funèbres Générales, Le Bercy, Flash Mode, Art Fleurs et Nature, France Liquide, Funny'Hair, Pooupies Valley, Midas, Rinachento, Androuet, Galerie Endora, Un deux trois, Edelweiss, Etam, Parashop, Madlyne, Tab, Orchestra, Sergent Major, eclop, René Coudari, Bréal, Caprices d'Antin, Stradivarius, Gigi, Catherine Gérard, Optic 2000, Morgan, Eurodif, Calzedonia, La Chausseria, Yves Rocher, Empire du Mariage, Sinéquanone, Carys, Shirley, Lola Jones, Maracamicie, Copy Self, Valege, Antonelle, Narda, Me, Optic d'Antin, Du pareil au même, Sephora, C ma vision, Nicolas, Miss Bolsos, Tradition des Vosges, Jeff de Bruges, Shangaï, Reality Pear, Vedam, Franprix, Première Pression Provence, Games, Orange, Santiago, La Vie du Rail, Tivoli, Le Petit Marché, L'appartement Emmaüs, Le Marigny, Le Merle Moqueur, Valege, Les Jardins de Provence, Nicolas, Cycles Sport Urbain, Bioline, Camille Albane, Mottier, Opticien d'exeption, Proxi, Amine Coiffure, Eurodiscount, Ho's kfe, Hair Fashion Style, Mercato, La bande des cinés, Carrefour, Darty, Garage Raspail, Le quartier du pain, Jacky, Pressing du 17e, La Belle Vie, Turpin, Delcros, Lisa, BMW Motorrad, Loxamcity, Esthetic Center, La Compagnie de l'Optique, La Halle, Monbilier Center, Passion Scooter, Teissa Cuisines, Urgence Mac, Bulthaup, Franprix, Aime Ces Cuisines, L'Artisan de la Vue, L'Atelier du Bonzaï, Rêves et Calins, Au royaume du pain, Boucherie Malitourne, Boulangerie, Caviste, Délices Viandes, Huit à 8, Bio c Bon, Alternative Bike, Boutique, Caisse, La Trésorerie, Boucherie musulmane, Mini-Market, Mayette Magie Moderne, Pierre Brunet, Archives Mini-Market, agora, Le Gay Choc, Proxi, Money II, Torréfaction Guiraud, Sans Commentaire...Ou Avec, Trader, Sat.Elite Games (Playstation), Maxxi Games, Square Games, Stock Games, Play, Fun, Games, Jacques Dessange, Le Dilettante, Boucherie Chevy, Boucherie Brossard, Cave Peret, Fromagerie Vacroux & Fils, Planet Fruits, La Maison du Bain, En privé, Boucherie de l'Etoile, Carnot Micro-Informatique, Marlène Ferreire, Panier Sympa, François B., Nad, Fraza, Les Sources de l'Orient, Good Deal, TBS, Lidl, Jaqk, Boutique ephemere, Geox, Levi's, Mason Pradier, Pains & Friandises, Bouygues Telecom, Tie Rack, Sephora, La Bonne Managere, Brossard, Daguerre Marée, Nicolas, La Pyramide du prince, Coiffure, Armonia C, 8 à Huit, Service Audi Occasion Plus, Tabac Le Drugstore, Audi Aliantis Trocadero Service Après-Vente, Beryte, épicerie orientale, Mercedes Benz, Six pieds trois pouces, Gossip City, Swish, New Season, SNCF, Famille Mary, ChicOptic, Leonidas, Paradis des Fruits, Le Pain Au Naturel, Superette, Maison Hardel, Franprix, Le Repaire De Bacchus, Point Fleurs, Paris Store, Carrosserie du centre, I Love My Blender, Ines et Waho, Ripaille, Clin d'oeil, Point Fort Fichet, Point Laverie, La coifiere, Retoucherie et repassage, tangOpium, Aba Serrurerie, 8 a Huit, Epicerie de l'Orient, First Optique, Mozaik Coiffure, Tchip, Kayen, Mélodies Graphiques, La civette du parc, Institut du parc, Pressing du parc, Laverie du parc, ADR Assistance, Assive, Jc Keller, Picard Surgeles, Naouri Market, Castorama Crimée, Boulangerie Ricquer, Nouez-moi - Linge de maison, Naturalia, Maison de The Theodor, Coiffure Martine, Institut 26, Au jardin des Sablons, Boucherie Picard, Jean Claude Biguine, Thevenin, G20, La Tour Câline, Espace Zen, Franprix, Carrefour Market, Patisserie, Bières Cultes, Laurent Duchêne, Image Photo Express, La caverne aux pains, Le Petit Fumeur, Paris Affaires, Nicolaï, Au Nom de la Rose, L'essentiel, Le pain du faubourg, Boulangerie Estaëlle, Epicerie du plateau, Opti'miste, Contini, Artibat, New Lifting, Coiffure ADS, Passion chocolat, Ecologie 2000, Lara Coiffure, Opticien Ness, Tabac, Achat or et diamants, Tendance secret, Cactus & Maison-Cado, Alexis, Bel Air, Jeff de Bruges, Cariel, Sultana, La malleterie, Bijouterie Noah, SFR, Bouygues Telecom, Le coin des marques, Yan & Van Hairdressing, Du Pareil au meme, Marionnaud, Ludo Primeurs, MC Boutique, Orange, Optical Service O+, Karl Marc John, Monoprix, Sarko Chaussures, Ethan'Or, Tabac, Optique Secretan, Generation Z Enfant, Franprix, Supermarché G20, Gosselin, Librairie Julliard, Tartine et Chocolat, Knoll International France, Havas Voyages, Christine Laure, Devernois, Espace Alesia, Valege, matinbleus, 123, L'autre vue, Le Nôtre, Picard, elan nature, Café Coton, La Carpe, La Maroquinerie Parisienne, Madura, Paul, Saint-James Madeleine, André, Obrey, L'Atelier 14, La Corbeille Daudet, Pabois, Café Pouchkine, FNAC Gare Montparnasse, franprix, L'Atelier, Elegance Coiffure, Golden Delices, G&M Chaussures, Ets Andre pere & fils, Boutique Chez Papa, L'Argilerie, Labo Photo Numérique, Orange, Miamophile, Les gueules de Lou, SARL Fangyuan, Galerie du Roi, Carole Beaute, Clop' Story, Amplifon - Solutions auditives, Vins & huiles d'olive de France, Les intondables, L'optique du parc, Bricorama, Axel Fleurs, Elisa boutique, Librairie Polonaise, Pharmacie St. Maur - Desmoulins, Animalis, Bercy Village, Boardriders, Club Med' - Voyage, Dammann' Frère, Eric Kayser, Fnac, Fragonnard, Loisirs et Création, Monop Store, Nature et Découvertes, Nicolas, Partie de Campagne, Sephora, Cash Express, L'optique du parc, RS Location, Picard Surgeles, Benichon, Bella Minceur, Pressing Pyrenees, Copy Bolivar, La cour des miracles, Eurostore, Sarah bijoux, Cosm' up, A nous les marques, Abz optique, Place des marques, Botzaris Gourmet, Baradji Tresse, HB Coiffure, France Comores Voyages, Atelier Ness, Les alizes opticiens, Cosmetique afro et mediterraneen, Ma relookeuse, Royal Price, Adöm, Adöm, Garage Rebeval, Chapeau Melon, Dekra Controle technique automobile, Europaorp, mini clean, Francine Maraut, L'Échoppe Marine, Nicolas, Saisons, Jardin aux 4 saisons, Dany Cash, Martel Bricolage, Prestige Coiffure, L'eden des bebes, Body' Minute, Raja Bazar, La coiffure au naturel, No smoking, Marchandes de couleurs, Degrif des stocks, Boulangerie Patistory, Degrif des stocks, Opti' Claire, Pressing, Jialy's, Christian Brice coiffure, Saveurs d'Italie, Boucherie Leclerc Carboell, Boucherie Cambronne, L'Angle, Naturalia, Dia, Picard, Volkswagen, Toyota, La Truffe Noire, Loterie - Cafe les favorites, Marché Franprix, Nicolas, Monop', La petitte Rockette, La caverne du bricolo.com, Au dela du PC, Optic' all Avenue, Salon de massage thailandais Jia Jia, Coiff 19, Satelex Services, Saniz, Saniz, Leader Price, Autovision, La rose des vents, Pressing Uni-Press, Delphine Store, Les gentlemen du demenagement, Miss Divina, Point Fort Fichet, Maison Hilaire, The Kooples, Comme ça, Nicolas, Marie-Hélène Coiffure, Esthetic Beaute, L'auto jaune, Globe-Depann, Jean-Claude Biguine, Aux delices d'Oceane, Krishna, Vent et maree, Coupe coiffe, Nicolas, Picard Surgeles, Smakq, Le pavillon aux fleurs, Chocalats belges, Rotisserie, Boucherie Durand, Annick Goutal, Carrefour Express, L'Appartement, 5 à Sec, New Baby, Star orientale, La flute de Meaux, Biba Coiffure, Cavavin, RG pret a porter, Jad voyages, Pompes funebres de la communaute juive, Epicerie Sarah, Naouri city, Frankodech, Renault, Yarden, Andre Krief, Agence de voyages Hanna Tours, M&L, Seat, Beaute sculpturale, Pompes funebres Bertrand SA, Gossip Salon, Palais des fleurs, coccimarket, Cours des halles, Tony Karcenty, L'artisan boulanger Maison Maaned, Optic Chaumont, Serrurerie Manin, Institut Manin, Beaute express, Au Jardin de Lutece, Boucherie de la Place Monge, Pascal Pinaud, Poissonnerie Monge, Sapori d'Italia, Vin et Whisky, Au Jardin de Lutece, Boucherie de la Place Monge, Pascal Pinaud, Poissonnerie Monge, Sapori d'Italia, Vin et Whisky, Leban Jacques, Les Halles de Cambronne, Poissonnerie Etelloise, Primeur fruits, Laverie Libre, Boucherie Pinel, Couleurs de Tollens, Dia, Elite Coiffure, Toutconfort, Librairie de l'Orient, Bedi Thomas, Picard, Le Fournil de Kuss, Naturalia, Mini-Market, Le Passé Composé, Aux Viandes, Yalouna Boutique, La Boulangerie, Mademoiselle Bambû, Mademoiselle Montmartre, Miss Cupcake, See Non Optic, Concorde, Franprix, L'Occitane, Le Marché d'à côté, Leather & Rubber, Paris Touch, Petit Pont Souvenirs, Ryhana Souvenirs, Dia, Franprix, King Meubles, monPetitZoreol.fr, Woodbrass, Naouri Market, Hypercacher, Kosher Discount, Centre optique Manin, Chocolats Damyel, Opti'zien, Ardelys, Tendance, Beaute & Liss, Des etendues, Pollen, Minowa Concept, Pataluna, L'atelier de la Vilette, Why not, L'epicerie du 4, L'embellie Design, Serrurerie des Buttes Chaumont, Emporio Armani, Primfleur, M. de G., Jacques Franck, Librairie Relais La Procure, Lamot, Nicolas, L. Langlais, Ludmila Création, Ludik Bazar, L'Orientale, La Croquandise, Padd, Waseng, Victory Lane, Pianos International, Alimentation, Clos de Lias, Fillles de saison, Krisco, Velos et bicyclettes, Antica Box, Mon epicerie, La petite maison dans la villette, Le dragon savant, Le comptoir, Yves Mugnier, Luce coiffure, La boutique du caban, Yarden Gel, Optic 2000, Cyber Espace, Hair & Nails, Heracles, La Générale D'Optique, Renaissance, Pomme d'amour, Pompes funebres musulmanes, LN & Cie, SAV, Carrosserie de l'Adour, L'atelier Toucha services, Les mains savantes, Espace France Asie - Salon de Massage Thaï, Boutique Marathon, Kam's Coiffure, Beauty Ambassade, Est'air Voyages, Le boudoir du regard, In Bar, Pompes funebres nouvelles, A.G.E., Assitance Bati Services, Nina Meubles & Deco, La grange aux pains, Tele-Pop-Musik, L'avenue des bebes, Le XXV, natalmarket.com, The Phone House, Franprix, Chez Max, Blanchisserie blanc bleu, KA International, LBSA Laboratoire, Fleurs, fruits, feuillages, Boulangerie Malineau, Perene, Abat-jour, Lovely Spa, Bulthaup, Laboratoire auditif Anthony Athuil, Franklin optique, Le soleil de Franklin, Fit & Slim, Antiquites, Bioline, Livres anciens, Lagonda, Laurence Tavernier, Photocopie, Jean-Louis David, Di-Castri, G20, La Cinquième Saison, Laverie Eclat, Le Monde, Cyber Kaliam bazar, Saint-Maclou, www.novaliterie.fr, Elegance Coiffure, Le bon coin, Tabi-Dov' Imprim, Kiloutou, Marie France Pret a porter, Lav & Go, Bangla Trade International, Ades motos, Villette coiffure, Boucherie Sodivillette, Cathay Voyages, Bio Belle-Ville, Coiffure Alice, Compagnie franco-asiatique de voyages, Serrurerie depannages, La plateforme du batiment compact, Anexo, Supermarche de Stalingrad, Etoile d'Afrique Voyages, Jack Boutique, A&M Distribution, Gouraya Music, COFI La Commerciale, Thai DVD, Chine-Asie Diffusion, DMB, Univ-Fresh, Bubble Tea, Boulangerie Patisserie, Achat or, Atol, Montgolfiere bijoux, Karpieres, Sandrell, Atout coeur, Boucherie Mezouari, Carol' voyages, Idecostore, Mes dessus dessous, Eliote 105, Boucherie La Celloise, Beauty Queen, Aux ecailles d'argent, J & 3N, Coiffure by Christian Lacout, Institut de beaute by Christian Lacout, Bouygues Telecom, Belleville primeurs, Sergent Major, Orange, Jeff de Bruges, Belleville primeurs, Invito, Yves Rocher, Boucherie bellevilloise, L'opticien du village, Minceur esthetique, Jean-Claude Biguine, Tout le monde en parle..., J Well, La delicieuse, Aux deux mille pates, Bijouterie calin'or, Love, Expert, La Halle, Boulangerie Patisserie, Le Grand Litier, Boutique Debauve et Gallais, Fuxia, Causses, Heat, Relooking, Boulangerie Patisserie, Gila presse, Vieille France, Institut de beaute Laumiere, Parfumerie Laumiere, Laumiere voyages, Les createurs opticiens, Dia, Franck Provost, Florentin, La Halle aux Chaussures, Ness Beauty, Madison, La boite a lunettes, Jacques Dumont, Masha boutique, Coupe coiffe, Au marche du Jourdain, Yarden, Mille et un objets, Office Depot, Chiteau, Mobeco, Mobeco literie, Laverie Telegraphe, Boulangerie Patisserie, Le fournil de Paris, Tabac - Carterie, Sun' Set, Roc-Eclerc, Syl' Crea' Tif, Tele Gregoire Reparation, Produits exotiques, The a la menthe, 3P Computer, Art du rideau, Optique Bellevue, Boulangerie Patisserie, Glamour, Le paradis du pain, La Chaise Longue, Archivio, Nicolas, Orange, Roganel, La Cabane du Pêcheur, Les Fées Pâtissières, Stanz, Halles du Marais, Munoz, Proxy, Dimitris, Provins, Pralus, Terroir d'Auvergne, Vision KA, Inde Authentique, espace SFR, jucadi, linvosges, KN'L, La Poupée Merveilleuse, brunomelgani, texaffaires, Free'P'Star, La Verrerie, Spontini, Boucherie du Garnd Maghreb, Garage M.C.A., Le dépot de pain de l'autre Boulange, P. Garnier, R. Fougault, Aristo, Auto Primo, Carol, Au Vieux Campeur, Au Vieux Campeur, Rimat, Carrefour Market, Shanny coiffure, Boutique Meynadier Street, Acces Services, Power Cash, Manga Story, Tronix, Sat.Elite Games (Nintendo), Sat.Elite Games (Xbox), Hobby One, Level up, Recycle Store, Game Heaven, Bexley, La délicieuse, Le puits d'amour, Nicolle, Shanthi Cash & Carry, J & C, Agir informatique, Peintres sans frontieres, Epicerie traiteur, Chrono Bat Services, S.P.S., Institut Hit Beaute, A2pas, motrio, Alimentation Générale, BonPlan, France Photo, terre sauvage, C.T.R., La Flûte de Pan, La Flûte de Pan, La Flûte de Pan, Les lunettes de Belleville, Institut Guinot, Serrurerie bellevilloise, Body Minute, Gerard Cosme l'artisan chocolatier, SNCF La boutique, Boulangerie Patisserie Gregory Desfoux, I ♥ smoke, Votre shopping 112, Du pareil... au meme, GS Optic, Panic, Fromagerie Beaufils, Boucherie des Buttes, Boulangerie Patisserie, Caty, Mobil S, Couleur cerise, Anne Ar Breiz, deNeuville, O divin l'epicerie, Jean-Louis David, Brulerie du Jourdain, Beillevaire, Paris Saint-Bière, Serrurerie, Optic'al, Le coin des marques, Boucherie Caidi, Pressing, Franprix, C. Louise, Coriel bis..., Images & Music, Le reve de bebe, Coriel..., Lise France, Coupe coiffe, Boulangerie Patisserie, Soleil Exo, AJM, La source, Optical Shop, Electromenager hifi tv meubles, Clean pressing, Lézard Créatif, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Optical Center, Sport Jeunes, Boulangerie, Eric Kayser, Bricomonge, Éric Kayser, L'Harmattan, L'Île aux Fleurs, Sizard, Boulangerie Patisserie Chocolaterie, Les dessous d'Apollon, Les dessous d'Apollon, Monoprix, Le Globe d'Or, Cours des Halles, Picard, De Vinis Illustribus, Bazar Oriental Samiry, Terra Corsa, Cavavin Malakoff, Selena Caftan, Diarra Exotic, Allo Fenêtres, maintennance et dépannage informatique, svm, Le 31, Angelo Aversa Gravures sur bois, Ground Zero, Ciclop Belleville, Le conservatoire, Sadio Bee, Atelier Rebecca Guibert, Lula Lifestyleshop, La tete dans les olives, Music Please, Chez Robert M. Smith, Delicatessen, Atelier Nathalie Lemaitre, Bazar de la Villette, Hair Beauty, Salon de thé bubble, San yi, Extra Loco, Gul, Confort Meubles, Lisse Fleur, Fuu, Institut Santé Nature et Sens, Petite Pologne, Peyrole Philippe, Ege tours, Boucherie Hour Heng, Agence Franchine, L'atelier des 3 coups, Coiffure et Nature, G20, Kids Fashion, Flash Coiffure, Les Quatre saisons - 新中华商场, Sazanka, Boulangerie Patisserie, Zapa, The Body Shop, Mellow Yellow, Orange, Z Génération, 1 2 3, Franprix, Abacard, Kenka, Carrefour Express, Dewerpe-Sonique, Dr. Pierre Ricaud, Le monde de Bébé, Princesse tam.tam, Mensch, Exclusif..., Rudolph, Oliviers & Co, Dim, Etam, Bagadie, Patrick Juignet, Scissors, L'arbre à Sev, Bouygues Telecom, Sud express, Liu, Richard Nabet, Takara, Thierry 21, Kiehl's, Numericable, Somewhere, Le paradis des gourmands, Carline's, Jeff de Bruges, Côte anglaise, Ocho, Harding, Idécostore, Cigusto, MGC, Dam Dom, L'Entrepôt, Souvenirs de Paris, Galerie Maillet, Les Métamorphoses, Tertio, Passage du Désir, Carrefour, Fragola, Shana, Descamps, Sylvie & Olivier Donné, First Optic, La Jeanerie, Le Briard, Le Repaire de Bacchus, Nicolas, Gaia, Nicolas, Sun & Beauty, Jean Louis David, La Farandole des Pains, Léonidas, Jean Louis David, L'îlot Pages, La Farandole des Pains, Léonidas, Optic 2000, Point P, Astie co, Okros Tunde, AC matière, Transflux, Maison aux Artistes - Galerie du Génie, Tanneur & cie, Hai Kai, Loulou les ames arts, Tangara le club, Ets Schweitzer, C.O.P. Centre des objets perdus, Jerem, Optique mutualiste centre, Rock Hair, Bob et ses amis, U Express, La vache dans les vignes, Graphic Design, Squatter shop, Nicolas, Jean Louis David, Kasap, Flowered by, Free Center, Au Vieux Campeur, Caraibean, Nes Coiffure, Croustil Pain, Hugo Optique, La Ferme d'Avron, Hannael, Fleurs d'Eden, Cuirs et fourrures du front de Seine, Johnny, Carrefour City, GADS-EXO, La laverie, La boucherie, Espace Tabac, Info Max, Media Compustar, Easy Multimedia, Estheti chien, Laverie Pressing, Mongallet 21, PL Config, Bonjour, Micro Media City, À nous les marques, Eden, Crimée, Xin Shi, Patricia, Seng Ky 19, Carole, Le salon de marriage, vintage, Eye's heaven, Laverie du marché, .Y.D., Long Chang, Le cadre noir, SH, Elegance, Tropicosmetique, Coiffure Style, L'or Dely, La coeur des pains, AMJ Batiment, Carrefour Express, Carrefour Express, Carrefour City, Carrefour City, Dia, Office Dépôt, Boucherie Gouraya, Gaignard Millon, Bio C' Bon, Primeur Saint-Jacques, Milord Men, Gommes, Happy birthday for kids, Emma Green, Occhio, Orange, Le Verger de Saint-Ferdinand, La Vigne au Verre, Baum, Marco Serussi, Astéri, Richmond, Marché Franprix, Bio c' Bon, Anthony Garçon, Mon petit poulet, Coiffure Masculine, Jacadi, La Passion du Jouet, Pétard, Pressing, Étoile des Mers, SBS, Lenôtre, Yousr, AZ, Coiffeur Perfect, newvision, Symphonie Florale, Les Tignasses, Nicolas, Dia, Picard, Nicolas, Le petit poucet, Boucherie des écoles, Interflora, GA, François Priet, Bouquet des vins, Bertothi, Portobello, Boucherie nouvelle des Pyrénées, Gastronomie du Périgord, Halles Gatines, Le Repaire de Bacchus, Miel et Nature, Paul, Trapani, Bio c'Bon, Jacques Dumont, Buffets, Buffets, Buffets, Franck Provost, Hyper Cacher, La Boucherie Gourmet, Pressing, Retouches Idylle, Speedy, Nicolas, Lucil Coiff, Pressing, Ma campagne à Paris, Laverie libre service, Rubinya, Au Nom de la Rose, Blanc des Champs, Boucherie Normande, C'est Tout Naturel, Crinoline, Jeff de Bruge, L'Atelier du Sourcil, La Florangerie, Les Heures..., Métamorphose Feeling, Nathalie Tuil, Nicolas, Office Depot, Paris Discount, Point Soleil, Reine, Rose de Noël, Saint-Mandé Services, Tabac de Luxe, Yann' Optic, Atoucar, Au Palais de la Femme, B Happy, BM, Bossetti, Clean Planet, Dia, Europtical, Fairplay Voyages, Le Bar à Vernis, Le Monde, Tang Huy, Écoute et Vous, Casque House, Variations végétales, Le Vin de bohême, Bureau Vallée, Franprix, Fleuriste, La Lorraine, Fish Karaib, Proxi, Produits de la ferme, Merlan&Co, Bazar 14, Bio c' bon, Chanel, Didier Collado, Julémie, Les Modeuses, Mobalpa, Mondial City, Pressing de la Tourelle, Serrurerie SMT, Tchip, Body Minute, Chocolats etc..., AGIR Communication, Atelier Citroën, Citroën Select, Citroën, Thé-Troc, Paul, M coiff, Pressing Baccara, Picard Surgelés, Paris Prestige Cars, Nicolas, Les gourmandises de Nathalie, Librairie Fontaine, Optic Duroc, Les Chants de Blé, Proxy, Nicolas, Pop Culture, Aga, Le Pélican, Nicolas, Folie Méricourt, Boulangerie Patisserie Chocolatier, Doursoux, Lindt, Claudie Pierlot, À l'Hair libre, Julie Coiffure, 7 avril, Tribal act, Optic 2000, Bricorama, Darty, Fnac, Librairie - Caisses, Lidl, Parapharmacie, Dr Pierre Ricaud, Antoine Artisan Boulanger Pâtissier, Lidl, Le gâteau battu, Librairie 52, Garage de la Villa, Dessange Paris, Galerie Pégah, mitabaya, Camaïeu, Picard, Opoptic, Sèvres Pressing, A Fleur de Pot, Aux Délices de Sèvres, La Maison du Fromage, Au nom de la Rose, Boucherie Limousine, Bours'Or, Chocolat de Neuville, Coco Star, Comptoir de la Vaisselle, Eric Kayser, Gerlane, L'orangerie du Vieux Sèvres, La Maison de l'Optique, Laura Sokol, Marionnaud, Mr & Mme Fontaine, My Shop, Patrick Coiffure, Place des Marques, Saveur de Sèvres, Sev Voyages, Racine Carée, Mak Optique, 5 à Sec, Picard, Optic 2000, Puyricard, Librairie du Compagnonage, Kimonoya, Librairie Michèle Ignazi, Christophe Bruno, Chupi Boots, Quatre fois cinq, 11eme art, First Optic, Picard, Maxi primer, Comptoir du désert, Épicerie fine, Uptown, Eric Kayser, Le Mille Pâtes, Le Pain Quotidien, Le verger du marais, Kitchen bazaar, Mood, Les succulents cactus, Act'tif, Prodromus, Ary's, Lohezic, Ch. Pozzi, Jean Durst, Archiduchesse, Deli Drop, Bleu de France, Krys, Alimentation générale, Monop', Sœur, Melindagloss, Ongles dynamiques, Houppette et compagnie, A La Civette, Delamain, L'habibliothèque, Fleurs, Maison Kitsuné, Pressing du Carreau du Temple, La Halle aux Chaussures, Boutique solidaire, Ponsard, Boreau, Eden Flor, Jet Set Coiffure, Optic 2000, Qualite Pressing, Voyages l'Escale, Naturalia, Pharmacycle, Monop', APC, bibi, Nyza, Aussialso, Swildens, Onze, Au forum du bâtiment, Salon de manucure, City-troc, Bien., Comptoir des cotonniers, Palmaccio, Soria, Les invasions éphémères, Shine, Helmut Lang, Swildens, Ne Sweet, Le comptoir du terroir, XO, Agnès B, Marie sixtine, Jones + Jones, Antoine et Lili, Sail bags, Anne Élisabeth, Princesse tam-tam, Manoush, Les petites, Le coq sportif, coeur de rose, Monop, La fée maraboutée, Franprix, Monop' daily, Piaggio, Swatch, Volvo, Body minute, Zazen, Edwin, Quincaillerie d'Alembert, Aliments express, Tchi, Appel, Système-bike, Hair et eau, Thaï, Habitat, Rocker, Les vignoles, l'atelier, Mini Mialy, Harmony, Sam Daniel, Proxy, Vesna, Johann, Man of art, Jack Gomme, Franprix, La boutique, à demain, Zoé Lee, La maison du Hui Na, Bien, Renault, Paul&Jo, G20, Picard, Coiffeur Gregor, Au levain d'antan, Sandro, León&Harper, Le monde sauvage, La cave, Atelier Carlier, Mike Paul, Rougier et Plé, Honda, Office Depot, Go Sport, El Mïlda, Bedo, Édouard de Seine, RoyalCheese, Le slip français, ie, La panoplie, Weber, Mireille, Outre mer, The north face, L'air du bain, Holy Planet, Kate Mack, Epicerie, Chez Dentelles, Bazar d'Électricité, Legallais, L'enfant lyre, Scandilodge, OCD, Le Chocolate, Bicycland, Chocolatier Confiseur A. Trianon, Jean Maisonneuve, Oli & Joy, Papyros, Princesse Tamtam, Sorbonne Cuir, Aux Stocks Permanents, Le Mayol, Nicolas, Nissan Exotique Marché, Franck provoqt, Camille albane, Picard, Bazar de l'Hôtel de Ville, Monoprix, Monoprix, Speedy, Bières Cultes, Daisy, Galerie Nikki Diana Marquard, Le Bon Marché, Beaugrenelle - Magnetic, Beaugrenelle - Panoramic, Le Damier Gourmand, La Capsule, Radical, Touba Vision, Le Panier Gourmet - Franprix, Marché Saint-Honoré, R Canelle, Jeux Descartes, Tabac la Corona, Au Vieux Campeur, Bü, Miss Manon, L'ivre d'Antan, Beaubien, Agence de l'Hôtel de ville, Toyota, Universal Moto, Centre commercial Forum 20, Lapeyre, Centre commercial de la Vache Noire, Saint-Quentin Radio, Motor Village, Monoprix, Franprix, La Procure, Galerie J. Kugel, Picard, Franprix, U Express, Selectronic, Monoprix, Franprix, Picard, Simply Market, Garage Paris Villette, casino, Monoprix, Lancôme, Cartier, Chanel, René Caovilla, Valentino & Roger Vivier, Berluti, Moncler, Façonnable, office panerai, Dolce & Gabbana, Paul Smith, Startore, Lanvin, Massimmo Duti, Vertu, The Kooples - Ralph Lauren, Marina Rinaldi, Ladurée, Leonard, Coiff1rst, blumarine, blugirl, bally, Comme des Garçons, Moschino, Salvador Feragamo, Hermes, Aramis, Yves Saint-Laurent, Givenchy, Boucheron, Jun Ashida, Cerruti, Saint-Honore Market, Pinko, Prada, Bottega Veneta, Gucci, Saint-Honore Market, Gucci, Lanvin, La perla, Centre Commercial E. Leclerc, Le Bon Marché, Monoprix Alimentation, Monop, La Halle, Galeries Lafayette, Printemps, Printemps, Printemps, L'Oeuf Chaussures, L'Oeuf, Pattes Blanches, Atelier Pivoine, Librairie Cler, La Cyclofficine de Paris, La Girafe et la Lune, La Truite Enchantée, Decathlon, StanScoot, Marché des Batignolles, Dia, Franprix, Tati, Tati, Mr Bricolage, Picard, Carrefour Market, JVF, Centre commercial Italie 2, Centre commercial Italie 2, Carrefour City, Marché Franprix, L'Épi de Blé, Naturalia, Centre Commercial Quais d'Ivry, Franprix, Monoprix, Monoprix, Marché du Livre ancien et d'occasion de Paris, Franprix, Intermarché, Renault, Speedy, Garage SN Marceau, Kiosque, Kiosque, Kiosque, 8 à Huit, Darl'Mat Malakoff, Vaysse Pneus, Dia, Passy Plaza, Kiosque à journaux, FNAC, Monoprix, Legendre Moto Concept, Or'Tour, Boulangerie Patisserie, Contrôle Technique Automobile, Dia (Ed), Darty, Total, Paul, Garage Gervais, Kiosque, Kiosque, Kiosque, FLY, Conforama, Metro, Orange, Forum les Halles, AMG +, Monoprix, Darl'Mat, Casino, Centre Commercial Bercy 2, Centre commercial OKABÉ, Saint-Lazare Paris, Station Service E. Leclerc, Abeille Repro, Atelier Pan Helio, La Maison du Toutou, La Reserve, Le Terroir Max, Lola Jones, Poissonnerie Blomet, S. Gloire, Séphora, pulp's, Cash Express, Leroy Merlin, Tang Frères Vitry, L'Univers de Leo, Naturalia, Galerie Lafayette Voyages, Link, Librairie Flammarion Centre, Crèmerie Rochechouart, L'Atelier du Bricolage, Fromagerie de Saint-Mandé, Or Achat Vente, Kenzo, Beaubourg Souvenirs, PMU, Comptoir des Abbayes, Optic 2000, Nicolas, La Banque de l'Image, Parkway, Saint Maclou, Size?, Avant Garde, Forever In, Sephora, Pearl, Décathlon, Bio C Bon, Abercrombie & Fitch, Sephora, Eva Koshka, Fruits Legumes Fleurs, Joker, La carte Chance, Rôtisserie Dufrenoy, Self Bazar, Clif, JT 26, Marco Serussi, OopsHome, Orange, Tabatière Odéon, Loxam City, Bazar, Souvenirs de Paris, Empire Sono, Nouvelle Mode, RUSH, San Marina, Show sur Stock, 49 Street, Bazar, Boulanger Patissier, Franprix, Le Verger de Wattignies, Leonidas, Lyllou, Mercerie Gérard, Miss Tu, One Coiffure, Priscy's, So Fashion, Sylhet.com, TRD, Épicerie automatique, Marks & Spencer Food, Micromania, Retouche Shop, Laverie, Matériel Médical, Photocopie, Roc Eclerc, 1Primeur, Optical, GrosBill, Harmony Pressing, Percing Stalingrad, Harmony Pressing, Percing Stalingrad, Yves Salomon, Zadig & Voltaire, Barbara Bui, Richmond, Blugirl, Atelier Mire, Galerie Hayasaki, Les Sismo, Metropolis, Von d'Art, La Virtuose de la Réclame, L'Astrée d'Or, Fuchsia Dentelles, Francine dentelles, Patch'World, Art Formel, Au Passe-Partout, Niou, Au Petit Bonheur la Chance, Mayerling, Limaselect, Galerie des Syrtes de Florence, Côté Cailloux, Courant Verre, H. Dalloz-Bourguignon, Galerie Bureau d'Art, Véronique André, EW, Monde Secret, Aux Trois Singes, Au Passe Partout, Au Bon Usage, L de O & Co, Au Débotté, Imag'In Air, Décor et Style, Il Giardino Segreto, Stua, Folle du Logis, Objets Trouvés, Olivia Clétienne, La Souris Verte, Des Photographies, Le Flat, Centre commercial Masséna 13, Kiosque, Carrousel du Louvre, Brioche Dorée, Co & Bag, Découvrir Paris, Flo Prestige, Guichet Grandes Lignes, Guichet Île de France, Guichet Île de France, Happy, Jeff de Bruges, Pain à la Ligne, Relay, San Marina, The Body Shop, VitaminWater Station, Kiosque, La Maison des Pieds, Relay, Safran, Conforama, Printemps +49.4099305 8.7067124 +Regard de la Roquette, Thermes de Cluny, L'enceinte de Philippe Auguste, Cavea des Arènes de Lutèce +yes +48.8652569 2.3516674, 48.8300663 2.3232285, 48.8595728 2.3896050, 48.8525398 2.3683116, 48.8513093 2.3691996, 48.8555874 2.3684232, 48.8674536 2.3536254, 48.8476495 2.3658974, 48.8459217 2.3669243, 48.8461560 2.3704219, 48.8770907 2.3512337, 48.8607606 2.3756443, 48.8649605 2.3450799, 48.8670451 2.3482613, 48.8562234 2.2750311, 48.8583046 2.2742742, 48.8594216 2.2764553, 48.8616790 2.2753896, 48.8640840 2.2768625, 48.8276899 2.3209286, 48.8629889 2.2687254, 48.8686944 2.3502259, 48.8751549 2.3379848, 48.8733432 2.3379745, 48.8661215 2.3507823, 48.8739628 2.3483713, 48.8717201 2.3371530, 48.8699489 2.3360007, 48.8728819 2.3542143, 48.8745507 2.3567836, 48.8763320 2.3353305, 48.8840331 2.3599166, 48.8634544 2.3348757, 48.8707881 2.3459106, 48.8713990 2.3457625, 48.8701667 2.3511661, 48.8626616 2.3670401, 48.8581081 2.3677623, 48.8687918 2.3397996, 48.8520874 2.3738549, 48.8404349 2.2955433, 48.8481380 2.2899628, 48.8479201 2.2842966, 48.8527419 2.2755239, 48.8573503 2.2644192, 48.8637136 2.2674578, 48.8782159 2.2992711, 48.8816564 2.3009719, 48.8733559 2.2975655, 48.8729359 2.3000303, 48.8297704 2.2755357, 48.8761730 2.2880129, 48.8746595 2.3016427, 48.8820575 2.3366575, 48.8827175 2.3362016, 48.8793895 2.3033872, 48.8811478 2.3095138, 48.8835708 2.3131759, 48.8510188 2.2724703, 48.8317250 2.3147515, 48.8396010 2.3006606, 48.8376563 2.2955961, 48.8836348 2.2952377, 48.8855813 2.2907242, 48.8859370 2.2933295, 48.8878412 2.3000818, 48.8375791 2.2579573, 48.8903781 2.3036102, 48.8870991 2.3042454, 48.8852028 2.2982227, 48.8825614 2.3090776, 48.8528489 2.2684422, 48.8498671 2.2682466, 48.8822341 2.3195753, 48.8871464 2.3144863, 48.8881291 2.3107924, 48.8881700 2.3101267, 48.8877377 2.3203217, 48.8554752 2.2703856, 48.8609664 2.2731965, 48.8513369 2.2919266, 48.8499385 2.2945842, 48.8451891 2.2620196, 48.8452685 2.2571105, 48.8386832 2.2525085, 48.8405981 2.2584000, 48.8474983 2.2684825, 48.8674490 2.2908704, 48.8569125 2.2822403, 48.8522469 2.3266487, 48.8531701 2.3263925, 48.8762160 2.3198347, 48.8759240 2.3229225, 48.8754510 2.3155141, 48.8766073 2.3132319, 48.8796223 2.3145554, 48.8809530 2.3244796, 48.8524074 2.3414445, 48.8511757 2.2845792, 48.8506511 2.2872112, 48.8448185 2.2905662, 48.8424585 2.2921723, 48.8444549 2.2939163, 48.8468420 2.2956823, 48.8416839 2.2986279, 48.8637261 2.3340606, 48.8727422 2.3099714, 48.8716299 2.3140084, 48.8732165 2.3236650, 48.8735130 2.3204415, 48.8782458 2.3053392, 48.8748180 2.3083063, 48.8715224 2.3074911, 48.8704701 2.3076472, 48.8463015 2.2804650, 48.8461828 2.2784995, 48.8777420 2.2844157, 48.8802481 2.2854595, 48.8817043 2.2836999, 48.8193344 2.3436498, 48.8697269 2.3107378, 48.8836443 2.2821627, 48.8364602 2.3723041, 48.8326142 2.3712146, 48.8294557 2.3759783, 48.8917578 2.3000357, 48.8966717 2.3106040, 48.9017698 2.3727634, 48.8904568 2.3984851, 48.8858277 2.3979326, 48.8892044 2.3949432, 48.8341153 2.3087657, 48.8300931 2.2958772, 48.8702788 2.3842745, 48.8782964 2.4109300, 48.8680300 2.3851169, 48.8700483 2.3490020, 48.8638253 2.3808706, 48.8611898 2.3813091, 48.8749656 2.3048145, 48.8703043 2.3008415, 48.8704362 2.3010631, 48.8523266 2.4155894, 48.8470542 2.4160413, 48.8464606 2.4154979, 48.8439439 2.4149475, 48.8467984 2.3769382, 48.8456871 2.3741212, 48.8482055 2.3763201, 48.8462392 2.3793434, 48.8442424 2.3717797, 48.8211748 2.3337795, 48.8509876 2.3461191, 48.8443452 2.4393747, 48.8513322 2.3097491, 48.8405382 2.3537295, 48.8411143 2.3555601, 48.8492146 2.3916803, 48.8521875 2.3889688, 48.8389853 2.4375942, 48.8371010 2.4404301, 48.8354329 2.4314376, 48.8250001 2.3885505, 48.8211687 2.3786713, 48.8202354 2.3234198, 48.8280671 2.2924227, 48.8314413 2.3409219, 48.8332267 2.3368964, 48.8331702 2.3326392, 48.8182194 2.3532369, 48.8162232 2.3442349, 48.8525749 2.3316556, 48.8516359 2.3307926, 48.8533286 2.3346314, 48.8212529 2.3213669, 48.8236089 2.3080736, 48.8779202 2.2791408, 48.8787672 2.2706318, 48.8801135 2.2586312, 48.8841355 2.3287497, 48.8889153 2.3930360, 48.8882804 2.3908204, 48.8412499 2.2887600, 48.8442635 2.2774236, 48.8433931 2.2751214, 48.8406480 2.2780472, 48.8377045 2.2753703, 48.8360266 2.2812068, 48.8367146 2.2836745, 48.8347180 2.2841645, 48.8359069 2.2934202, 48.8380535 2.2878802, 48.8389960 2.2914567, 48.8385251 2.2782878, 48.8383082 2.2701372, 48.8549220 2.3872314, 48.8543661 2.3848507, 48.8503080 2.3839716, 48.8492760 2.3949290, 48.8564633 2.3790389, 48.8525384 2.3807630, 48.8941847 2.3125567, 48.8988455 2.3220238, 48.8995170 2.3201098, 48.8947998 2.3186936, 48.8928002 2.3270094, 48.8796218 2.3265596, 48.8779635 2.3272883, 48.8767294 2.3305305, 48.8768744 2.3327773, 48.8777601 2.3273644, 48.8747962 2.3265054, 48.8742093 2.3255963, 48.8751600 2.3319950, 48.8693736 2.3204383, 48.8691755 2.3245526, 48.8668994 2.3066488, 48.8649899 2.3027111, 48.8693643 2.3026790, 48.8707450 2.3032755, 48.8652497 2.3101782, 48.8668521 2.3157882, 48.8715167 2.3000286, 48.8713248 2.3002088, 48.8720928 2.3297590, 48.8728662 2.3283943, 48.8729832 2.3294159, 48.8514094 2.2965704, 48.8564180 2.2929958, 48.8535709 2.4057993, 48.8532189 2.4059066, 48.8570643 2.4044749, 48.8525358 2.4040103, 48.8516489 2.3984431, 48.8542199 2.3960813, 48.8375393 2.3360135, 48.8402279 2.3373018, 48.8427433 2.3125629, 48.8405803 2.3153009, 48.8653041 2.3760609, 48.8679081 2.3779048, 48.8642583 2.3781838, 48.8717635 2.3722590, 48.8743760 2.3738893, 48.8775727 2.3697840, 48.8793418 2.3684468, 48.8774951 2.3660254, 48.8761335 2.3680786, 48.8746849 2.3665197, 48.8734003 2.3641075, 48.8710868 2.3661930, 48.8713012 2.3699655, 48.8433627 2.3377702, 48.8343356 2.3292251, 48.8447927 2.2975997, 48.8325468 2.3622967, 48.8315083 2.3567419, 48.8319231 2.3546881, 48.8299156 2.3543416, 48.8284954 2.3531059, 48.8830400 2.3466469, 48.8826393 2.3448094, 48.8821036 2.3462700, 48.8806743 2.3516188, 48.8803621 2.3527476, 48.8808367 2.3523965, 48.8767124 2.4051857, 48.8754784 2.4059676, 48.8756268 2.3994827, 48.8805125 2.3980130, 48.8818468 2.4029049, 48.8778919 2.3959017, 48.8731764 2.4132389, 48.8733436 2.4105571, 48.8277658 2.4184354, 48.8328402 2.4028704, 48.8294130 2.4015885, 48.8312754 2.3988833, 48.8254543 2.4099127, 48.8833656 2.3710732, 48.8837907 2.3764722, 48.8372429 2.3177892, 48.8613834 2.3525372, 48.8635331 2.3476629, 48.8640524 2.3476114, 48.8392766 2.3208448, 48.8617066 2.3445035, 48.8612681 2.3493661, 48.8624112 2.3480599, 48.8599405 2.3466434, 48.8589421 2.3475982, 48.8588348 2.3518897, 48.8572632 2.3514945, 48.8561847 2.3532145, 48.8655904 2.3564268, 48.8661173 2.3596343, 48.8683793 2.3679055, 48.8664719 2.3693573, 48.8658257 2.3693390, 48.8634351 2.3712286, 48.8616617 2.3727419, 48.8600810 2.3710999, 48.8569493 2.3706558, 48.8538990 2.3697241, 48.8663247 2.3710849, 48.8644965 2.3730964, 48.8632938 2.3872069, 48.8664996 2.3830714, 48.8686598 2.3815066, 48.8711417 2.3782119, 48.8727055 2.3764695, 48.8719039 2.3850869, 48.8701140 2.3966278, 48.8706874 2.3989838, 48.8678503 2.4009656, 48.8653208 2.3990687, 48.8643044 2.3982089, 48.8653996 2.3977973, 48.8651813 2.3944221, 48.8662129 2.3890609, 48.8656935 2.3876189, 48.8694311 2.3950347, 48.8673873 2.3963565, 48.8712622 2.4039026, 48.8737273 2.3960303, 48.8754660 2.3929490, 48.8754434 2.3890467, 48.8739926 2.3894557, 48.8764991 2.3923568, 48.8743201 2.3860568, 48.8750539 2.3826407, 48.8764595 2.3793277, 48.8778573 2.3813972, 48.8796002 2.3888045, 48.8774643 2.3860740, 48.8819518 2.3925799, 48.8791126 2.3785037, 48.8797928 2.3748927, 48.8814004 2.3733460, 48.8827127 2.3746701, 48.8847298 2.3801436, 48.8862604 2.3774382, 48.8862942 2.3825537, 48.8891556 2.3835322, 48.8771673 2.3743225, 48.8731252 2.3798302, 48.8645976 2.3751492, 48.8621139 2.3771509, 48.8588447 2.3789316, 48.8579887 2.3818494, 48.8586573 2.3836132, 48.8570456 2.3728609, 48.8479765 2.2966394, 48.8645209 2.3464137, 48.8637982 2.3425857, 48.8585540 2.3586704, 48.8645325 2.3616659, 48.8625383 2.3596046, 48.8616570 2.3566882, 48.8621158 2.3649459, 48.8580787 2.3502718, 48.8594346 2.3558245, 48.8691099 2.3622572, 48.8685184 2.3599117, 48.8707796 2.3431008, 48.8758064 2.3472929, 48.8661857 2.3449657, 48.8724202 2.3554241, 48.8613324 2.3672902, 48.8644708 2.3660442, 48.8657197 2.3652646, 48.8645282 2.3695189, 48.8678878 2.3727490, 48.8691580 2.3718028, 48.8727830 2.3700050, 48.8740363 2.3624556, 48.8709568 2.3611877, 48.8750670 2.3596454, 48.8756963 2.3594622, 48.8761479 2.3608784, 48.8767569 2.3560938, 48.8755329 2.3562073, 48.8720809 2.3576446, 48.8686256 2.3557047, 48.8696775 2.3543727, 48.8610006 2.3534840, 48.8631013 2.3527609, 48.8571905 2.3539864, 48.8599108 2.3609341, 48.8581811 2.3646296, 48.8557177 2.3579066, 48.8427458 2.3524509, 48.8793536 2.3584016, 48.8795963 2.3570245, 48.8497477 2.3435781, 48.8502811 2.3449753, 48.8489015 2.3412990, 48.8736110 2.3032060, 48.8239534 2.3165091, 48.8245932 2.3184383, 48.8243515 2.3193929, 48.8335546 2.2856665, 48.8227462 2.3249989, 48.8427362 2.3297851, 48.8425183 2.3350723, 48.8440936 2.3330640, 48.8601207 2.2808695, 48.8374501 2.3974695, 48.8351057 2.3855326, 48.8332585 2.3858128, 48.8323315 2.3862257, 48.8347892 2.4008341, 48.8366987 2.3918047, 48.8403103 2.3946599, 48.8375405 2.4016838, 48.8647135 2.4083257, 48.8645193 2.4105979, 48.8879678 2.3259712, 48.8623679 2.4111234, 48.8615965 2.4057488, 48.8626997 2.4034148, 48.8393156 2.3801287, 48.8337437 2.3886482, 48.8375435 2.3824463, 48.8420158 2.3412105, 48.8465305 2.3431266, 48.8384599 2.3406020, 48.8395192 2.3610330, 48.8355111 2.3025520, 48.8358706 2.3021959, 48.8427677 2.3244722, 48.8411388 2.3244182, 48.8368320 2.3312845, 48.8350879 2.3415777, 48.8402870 2.3794757, 48.8350103 2.3759945, 48.8376967 2.3825388, 48.8337873 2.3947302, 48.8323342 2.4046376, 48.8570745 2.3418077, 48.8402654 2.2950283, 48.8309193 2.3795654, 48.8269199 2.3653028, 48.8528829 2.3425509, 48.8531182 2.3429777, 48.8638814 2.2818570, 48.8657937 2.2830850, 48.8711878 2.2937312, 48.8426501 2.3861170, 48.8513720 2.2778196, 48.8575556 2.2800238, 48.8512318 2.4017230, 48.8578656 2.2774577, 48.8476397 2.2735592, 48.8491930 2.3705959, 48.8507729 2.3759001, 48.8658946 2.2758019, 48.8680759 2.2814412, 48.8727724 2.2915517, 48.8703465 2.2850813, 48.8331772 2.2703285, 48.8832613 2.3264678, 48.8592458 2.3868272, 48.8583848 2.3904386, 48.8346976 2.3971134, 48.8388270 2.3896712, 48.8327416 2.3788209, 48.8835907 2.3332827, 48.8748125 2.3251922, 48.8673311 2.3076664, 48.8620791 2.2617340, 48.8346333 2.2957466, 48.8331253 2.2993734, 48.8322106 2.3023731, 48.8353914 2.4079102, 48.8199090 2.3593459, 48.8309699 2.3641295, 48.8285441 2.3803051, 48.8284008 2.3842784, 48.8791806 2.3542322, 48.8796019 2.3544582, 48.8844476 2.3388182, 48.8872379 2.3326374, 48.8875505 2.3343018, 48.8643854 2.2724591, 48.8681505 2.3013315, 48.8740799 2.2997640, 48.8472783 2.3856965, 48.8516369 2.3837296, 48.8504806 2.3788351, 48.8516180 2.4015641, 48.8539136 2.4024675, 48.8539293 2.4000508, 48.8304077 2.3343316, 48.8511987 2.3837123, 48.8274915 2.3316869, 48.8199327 2.3650855, 48.8456771 2.3745689, 48.8499590 2.3632112, 48.8513238 2.3624304, 48.8526693 2.3608308, 48.8836715 2.3491968, 48.8852026 2.3499755, 48.8852293 2.3471969, 48.8516794 2.3474841, 48.8771445 2.3224363, 48.8376830 2.3448082, 48.8823429 2.3140860, 48.8455904 2.3558120, 48.8381135 2.3571067, 48.8570345 2.3629840, 48.8549662 2.3612793, 48.8354147 2.3582479, 48.8475869 2.3900296, 48.8472771 2.3956036, 48.8488604 2.3968465, 48.8483749 2.3994783, 48.8443280 2.3896931, 48.8390850 2.3568747, 48.8312654 2.3772757, 48.8243928 2.3770244, 48.8257118 2.3749729, 48.8329907 2.2869621, 48.8580090 2.3004777, 48.8278209 2.3706492, 48.8438654 2.3518035, 48.8980360 2.3337142, 48.8958294 2.3281637, 48.8978467 2.3285070, 48.8988412 2.3296764, 48.8801859 2.3312932, 48.8542757 2.3194575, 48.8570901 2.3152530, 48.8515609 2.3146168, 48.8450873 2.4015561, 48.8455770 2.3958841, 48.8468380 2.4001158, 48.8478151 2.3161845, 48.8470337 2.3212693, 48.8754466 2.2938148, 48.8806125 2.3769485, 48.8583969 2.2841520, 48.8825820 2.3812532, 48.8695049 2.3065969, 48.8485805 2.2655695, 48.8450781 2.2661861, 48.8365140 2.2786782, 48.8259800 2.3574792, 48.8259306 2.3602462, 48.8233030 2.3659003, 48.8246654 2.3631367, 48.8279577 2.3586262, 48.8419264 2.3635292, 48.8236413 2.3615505, 48.8219370 2.3633250, 48.8437079 2.3657319, 48.8560717 2.3021776, 48.8550972 2.3053909, 48.8586100 2.3037057, 48.8615949 2.3022747, 48.8306926 2.3359923, 48.8248112 2.3677360, 48.8625821 2.3543114, 48.8609931 2.4003293, 48.8448840 2.3824674, 48.8309475 2.2852917, 48.8431538 2.3637431, 48.8737596 2.3158539, 48.8211710 2.3587038, 48.8505179 2.3931013, 48.8841654 2.3220842, 48.8794250 2.3337401, 48.8821959 2.3406004, 48.8812335 2.3681216, 48.8204792 2.3667808, 48.8202218 2.3721389, 48.8217969 2.3688453, 48.8291806 2.3561302, 48.8430624 2.2598915, 48.8838324 2.2984885, 48.8799051 2.2881111, 48.8818604 2.2920888, 48.8388149 2.2819094, 48.8629792 2.3415194, 48.8634426 2.3400377, 48.8669921 2.3366321, 48.8708415 2.3535560, 48.8447284 2.3419203, 48.8425031 2.3446224, 48.8560385 2.4049110, 48.8605425 2.4091699, 48.8516010 2.3437321, 48.8508150 2.3422269, 48.8516511 2.3354386, 48.8517582 2.3381629, 48.8704217 2.3232384, 48.8419172 2.3589420, 48.8494338 2.3377819, 48.8576071 2.3358845, 48.8455626 2.3726390, 48.8502811 2.3276257, 48.8466468 2.3323592, 48.8416922 2.3314753, 48.8486047 2.2993357, 48.8991726 2.3710434, 48.8413457 2.3655792, 48.8461325 2.3412680, 48.8674254 2.3444285, 48.8604478 2.3444956, 48.8799360 2.3212877, 48.8779762 2.3183300, 48.8223980 2.3278952, 48.8749238 2.3194549, 48.8737572 2.3063309, 48.8229279 2.3305939, 48.8602188 2.3423098, 48.8613591 2.3400077, 48.8448202 2.3293072, 48.8433715 2.3266113, 48.8760794 2.3011982, 48.8893758 2.3334530, 48.8397720 2.3826569, 48.8820288 2.3635484, 48.8838331 2.3670954, 48.8682247 2.3381270, 48.8471866 2.3534537, 48.8491388 2.3559696, 48.8390129 2.3499462, 48.8635083 2.2864664, 48.8766836 2.2834669, 48.8707206 2.2811510, 48.8433254 2.3023574, 48.8435384 2.3065535, 48.8366110 2.3126681, 48.8404224 2.3130691, 48.8388336 2.3158922, 48.8325290 2.3252190, 48.8276699 2.3261967, 48.8736518 2.2816369, 48.8987007 2.3645291, 48.8989558 2.3743498, 48.8985341 2.3861761, 48.9012620 2.3875624, 48.8526057 2.2629154, 48.8842153 2.3560766, 48.8845445 2.3602834, 48.8664544 2.3344768, 48.8667755 2.3343748, 48.8676389 2.3332399, 48.8691704 2.3325104, 48.8928637 2.3634518, 48.8962560 2.3589998, 48.8907716 2.3308685, 48.8914267 2.3486643, 48.8950968 2.3687029, 48.8912142 2.3513181, 48.8992745 2.3429645, 48.8937350 2.3474870, 48.8994097 2.3458849, 48.8841667 2.3418884, 48.8894575 2.3334080, 48.8888295 2.3559941, 48.8928646 2.3401075, 48.8966990 2.3380370, 48.8866760 2.3532946, 48.8951369 2.3599640, 48.8866165 2.3262539, 48.8883502 2.3535905, 48.8910569 2.3398224, 48.8990308 2.3365543, 48.8864478 2.3329208, 48.8901247 2.3605177, 48.8954760 2.3497870, 48.8896461 2.3382212, 48.8911223 2.3267442, 48.8846860 2.3536867, 48.8904472 2.3492576, 48.8852757 2.3345602, 48.8944930 2.3415130, 48.8867353 2.3613685, 48.8918507 2.3354184, 48.8928650 2.3444840, 48.8895980 2.3628765, 48.8975116 2.3442590, 48.8957920 2.3455810, 48.8944869 2.3522760, 48.8846342 2.3441510, 48.8877079 2.3504076, 48.8935221 2.3365539, 48.8962291 2.3333688, 48.8861209 2.3568514, 48.8870108 2.3668702, 48.8899467 2.3427294, 48.8974237 2.3526006, 48.8885796 2.3472110, 48.8908959 2.3450395, 48.8940382 2.3322317, 48.8437364 2.3392987, 48.8408726 2.3875568, 48.8555569 2.4090964, 48.8535427 2.4096248, 48.8661570 2.3251630, 48.8648196 2.3294492, 48.8539346 2.3493079, 48.8529322 2.3520857, 48.8482231 2.3417751, 48.8296114 2.3182270, 48.8497262 2.3529879, 48.8466399 2.3489993, 48.8415362 2.3502718, 48.8563141 2.3830600, 48.8597545 2.4033363, 48.8563540 2.3948325, 48.8418032 2.3767741, 48.8795478 2.3371494, 48.8766106 2.3457504, 48.8472092 2.3070017, 48.8218802 2.3268475, 48.8250195 2.3264168, 48.8819418 2.3521616, 48.8368662 2.3071536, 48.8383079 2.3085101, 48.8615137 2.3197027, 48.8578293 2.3192199, 48.8474837 2.3126225, 48.8512536 2.3251315, 48.8556397 2.3256421, 48.8590997 2.3185547, 48.8486555 2.3203894, 48.8608678 2.2956977, 48.8520795 2.3018025, 48.8569538 2.3096130, 48.8614149 2.3094414, 48.8606986 2.3148434, 48.8583091 2.3237904, 48.8566893 2.3067753, 48.8588632 2.3319175, 48.8597138 2.3258235, 48.8752771 2.2494139, 48.8446117 2.3178842, 48.8766241 2.3397060, 48.8528721 2.3890596, 48.8555740 2.3904061, 48.8639822 2.3355945, 48.8963398 2.3844708, 48.8828620 2.2876210, 48.8794462 2.2915207, 48.8781329 2.2884576, 48.8537524 2.3572131, 48.8416546 2.3484221, 48.8580159 2.3469052, 48.8201860 2.3400152, 48.8248017 2.3362648, 48.8685182 2.3898030, 48.8426319 2.3973692, 48.8814802 2.2949812, 48.8539886 2.4120537, 48.8777824 2.3398244, 48.8791352 2.3437478, 48.8257108 2.3218692, 48.8508939 2.3012223, 48.8305349 2.3455551, 48.8258967 2.3573107, 48.8288239 2.3418815, 48.8740909 2.3274858, 48.8261137 2.3420629, 48.8264627 2.3442784, 48.8358630 2.3380882, 48.8172529 2.3602221, 48.8224891 2.3474392, 48.8222126 2.3504401, 48.8256278 2.3503006, 48.8275490 2.3490346, 48.8233280 2.3543382, 48.8299328 2.3501105, 48.8311758 2.3480989, 48.8371959 2.3514837, 48.8527113 2.3442100, 48.8552739 2.3473751, 48.8624252 2.3386199, 48.8639956 2.3355407, 48.8674261 2.3406263, 48.8659581 2.3419245, 48.8212269 2.3421677, 48.8266942 2.3386593, 48.8493100 2.3284272, 48.8205245 2.3513062, 48.8733496 2.3352682, 48.8742744 2.3329601, 48.8705692 2.3341202, 48.8482512 2.3292214, 48.8420697 2.2859200, 48.8432520 2.2833768, 48.8476438 2.3027692, 48.8361875 2.3193936, 48.8315372 2.3291516, 48.8354101 2.3485767, 48.8351279 2.3535099, 48.8348276 2.3668095, 48.8290119 2.3742988, 48.8476750 2.3269685, 48.8527675 2.2978750, 48.8419411 2.3897697, 48.8792482 2.3624736, 48.8732753 2.3592374, 48.8462637 2.3522618, 48.8234660 2.3229699, 48.8378904 2.3224575, 48.8907110 2.3761517, 48.8763666 2.3587710, 48.8532340 2.3831638, 48.8692762 2.2899202, 48.8436817 2.3546669, 48.8441122 2.3786311, 48.8726701 2.4079021, 48.8559235 2.3925572, 48.8707816 2.3496418, 48.8290907 2.3609632, 48.8849106 2.3109771, 48.8227101 2.3777404, 48.8253199 2.3107012, 48.8779977 2.3266274, 48.8920979 2.3233014, 48.8712019 2.3413851, 48.8812596 2.3282561, 48.8843107 2.3903306, 48.8863919 2.3865004, 48.8702948 2.3422163, 48.8878425 2.3243054, 48.8322708 2.3674245, 48.8934099 2.3363041, 48.8432413 2.3224129, 48.8438502 2.3225577, 48.8795791 2.4011974, 48.8720302 2.3920402, 48.8570206 2.4087900, 48.8333122 2.2766050, 48.8753952 2.3433018, 48.8502723 2.4063088, 48.8493210 2.4123278, 48.8855144 2.3166106, 48.8363345 2.3104066, 48.8933121 2.3848968, 48.8946426 2.3818500, 48.8926684 2.3791196, 48.8932861 2.3844526, 48.8626544 2.3497602, 48.8450449 2.3494549, 48.8378158 2.3970726, 48.8814585 2.3701955, 48.8888444 2.3785107, 48.8648903 2.2927818, 48.8652776 2.3001217, 48.8756781 2.3992089, 48.8446470 2.4049516, 48.8295616 2.3691128, 48.8293003 2.3686112, 48.8798447 2.3453589, 48.8846966 2.3919640, 48.8780658 2.4109854, 48.8649879 2.3978217, 48.8342051 2.3135017, 48.8469391 2.4103030, 48.8552405 2.3375518, 48.8552856 2.3399457, 48.8555538 2.3334871, 48.8542055 2.3303219, 48.8959172 2.3812055, 48.8987981 2.3790742, 48.8689060 2.3919843, 48.8540164 2.2895145, 48.8451325 2.3454414, 48.8843507 2.3642047, 48.8882204 2.3169268, 48.8903863 2.3198232, 48.8959081 2.3226654, 48.8973994 2.3959893, 48.8473899 2.4102789, 48.8862633 2.3689061, 48.8380011 2.3605213, 48.8678874 2.3648918, 48.8667598 2.3654966, 48.8671087 2.3634985, 48.8901111 2.3173828, 48.8961823 2.3180562, 48.8941973 2.3125096, 48.8941445 2.3146952, 48.8926085 2.3173077, 48.8400857 2.2716780, 48.8635520 2.3425906, 48.8766714 2.3443634, 48.8389598 2.3704270, 48.8623327 2.3527653, 48.8812197 2.3164987, 48.8328697 2.3068297, 48.8430898 2.2953215, 48.8939441 2.3979076, 48.8423612 2.2812102, 48.8708161 2.2749183, 48.8845071 2.3703915, 48.8867667 2.3745936, 48.8985255 2.3605044, 48.8984477 2.3690228, 48.8746584 2.3661215, 48.8843525 2.2882367, 48.8926487 2.3594311, 48.8443704 2.4109328, 48.8493274 2.2819715, 48.8348733 2.3446364, 48.8372276 2.3646862, 48.8714017 2.3382665, 48.8732628 2.3407395, 48.8305280 2.2920390, 48.8394868 2.3971498, 48.8564317 2.3347979, 48.8911611 2.3865761, 48.8757336 2.3266104, 48.8357249 2.3282524, 48.8341118 2.4546530, 48.8774420 2.3096108, 48.8752933 2.3228773, 48.8571019 2.3984066, 48.8550829 2.3733686, 48.8401634 2.3044521, 48.8412701 2.3081103, 48.8678836 2.3493991, 48.8470236 2.3465004, 48.8707294 2.3587247, 48.8400642 2.4091298, 48.8410816 2.4113084, 48.8811450 2.3367110, 48.8458439 2.3017831, 48.8694428 2.4054011, 48.8691390 2.4092451, 48.8680339 2.4109234, 48.8478853 2.4061185, 48.8518476 2.3933111, 48.8831240 2.3238175, 48.8600843 2.3501442, 48.8400060 2.4004934, 48.8408728 2.4043717, 48.8431180 2.3203628, 48.8290070 2.3014163, 48.8266009 2.3093286, 48.8548318 2.2950502, 48.8819276 2.3203338, 48.8528083 2.2930618, 48.8865799 2.2886246, 48.8386975 2.3110254, 48.8425337 2.3640099, 48.8418066 2.3195355, 48.8774678 2.2945061, 48.8763624 2.2642685, 48.8559651 2.3563778, 48.8537639 2.3391067, 48.8484157 2.3501294, 48.8503045 2.3303232, 48.8850584 2.3071779, 48.8414902 2.3233159, 48.8553652 2.3997587, 48.8371072 2.3743837, 48.8392820 2.3298973, 48.8491858 2.3251494, 48.8832127 2.3308278, 48.8810507 2.3407852, 48.8170107 2.3324779, 48.8461470 2.3242143, 48.8413329 2.3183133, 48.8842391 2.3054323, 48.8489310 2.3471707, 48.8449041 2.3110205, 48.8309355 2.3188357, 48.8169801 2.3326668, 48.8279124 2.3056890, 48.8280162 2.3056133, 48.8601711 2.3501538, 48.8529233 2.2804514, 48.8618144 2.3501671 +Hôtel Montpensier +yes +0.38294676811798339 +45 +yes +6 +-22.9361218 -42.9102436, 43.9506744 -73.7328113, 35.0600842 -80.9103370, 46.4695153 -63.4456615, 30.0527050 -89.9343829, 29.4025791 -98.5563219, 54.2943996 -0.4104927, 40.2339282 116.1635814, 41.5467427 -73.0297334 +89 +406 +0 +P8 Kongresshaus +49.4136373 8.6927118 +42 +8 +yes +55.9529398 -3.1154068, 55.9501836 -3.1903813 +48.8656637 2.3778893 +49.4083031 8.6962179 +city gate, wayside shrine, wayside shrine, wayside cross, ruins, monument, castle, wayside shrine, wayside cross, technical monument, technical monument, ruins, castle, castle, castle, castle, city gate, castle, castle, wayside shrine, ruins, ruins, castle, tower, ruins, memorial, castle, towngate, castle, monument, castle, castle, memorial, house, building, castle, monument, monument, boundary stone, castle, castle, monument, monument, castle, castle, memorial, ruins, city gate, archaeological site, castle, castle, monument, monument, memorial, monument, memorial, monastery, ruins, memorial, ruins, castle, monument, memorial, memorial, castle, ruins, ruins, wayside cross, wayside shrine, yes, monument, ruins, castle, castle, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, memorial, memorial, memorial, castle, memorial, memorial, monument, wayside cross, archaeological site, ruins, yes, monument, castle, castle, memorial, castle, memorial, wayside shrine, archaeological site, memorial, building, castle, memorial, castle, memorial, memorial, wayside shrine, monument, memorial, wayside cross, memorial, ruins, castle, memorial, memorial, ruins, memorial, city gate, castle, wayside cross, monument, monument, yes, monastery, university, wayside cross, wayside cross, wayside cross, memorial, monastery, castle, wayside cross, wayside cross, wayside cross, memorial, castle, tomb, wayside cross, wayside cross, memorial, wayside cross, castle, castle, wayside cross, castle, memorial, castle, boundary stone, boundary stone, ruins, ruins, castle, memorial, castle, memorial, city gate, memorial, memorial, memorial, memorial, memorial, wayside cross, monument, castle, memorial, castle, archaeological site, memorial, memorial, memorial, wayside cross, heritage, memorial, wayside cross, memorial, memorial, archaeological site, archaeological site, memorial, memorial, memorial, memorial, church, stone, ruins, memorial, castle, memorial, castle, memorial, castle, castle, wayside cross, memorial, memorial, castle, monument, memorial, castle, ruins, memorial, castle, castle, memorial, memorial, memorial, memorial, wayside cross, castle, castle, castle, yes, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, castle, ruins, memorial, wayside shrine, wayside cross, memorial, memorial, ruins, wayside cross, wayside cross, castle, memorial, boundary stone, monument, monument, memorial, memorial, wayside cross, memorial, castle, wayside cross, memorial, wayside shrine, memorial, memorial, memorial, ruins, yes, castle, boundary stone, memorial, castle, memorial, heritage, memorial, castle, castle, castle, city gate, memorial, memorial, memorial, heritage, memorial, wayside cross, memorial, memorial, monument, castle, city gate, memorial, Brennereigenossenschaft Gronsdorf eG, wayside cross, castle, monument, memorial, memorial, wayside cross, wayside cross, castle, wayside shrine, memorial, memorial, memorial, memorial, church, castle, memorial, memorial, castle, castle, ruins, ruins, memorial, ruins, wayside cross, memorial, ruins, boundary stone, ruins, wayside shrine, church, memorial, wayside cross, wayside cross, memorial, memorial, memorial, castle, ruins, archaeological site, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, archaeological site, memorial, castle, castle, wayside shrine, memorial, memorial, wayside cross, city gate, attraction, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, memorial, monument, memorial, memorial, wayside shrine, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside chapel, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, wayside shrine, memorial, memorial, yes, wayside cross, wayside cross, memorial, wayside chapel, wayside cross, monument, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, castle, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, milestone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, castle, memorial, castle, monument, castle, monument, memorial, wayside shrine, memorial, castle, memorial, memorial, memorial, memorial, memorial, archaeological site, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, castle, castle, castle, castle, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, archaeological site, archaeological site, wayside cross, wayside cross, castle, wayside cross, wayside shrine, castle, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, castle, castle, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, yes, wayside cross, wayside cross, memorial, memorial, archaeological site, ruins, memorial, memorial, wayside cross, monument, monument, castle, monument, memorial, memorial, memorial, castle, memorial, wayside cross, castle, wayside shrine, memorial, wayside cross, wayside shrine, castle, memorial, wayside cross, memorial, castle, wayside cross, wayside cross, memorial, memorial, memorial, memorial, archaeological site, ruins, archaeological site, wayside cross, wayside shrine, memorial, city gate, wayside cross, boundary stone, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, castle, memorial, monument, memorial, wayside cross, memorial, castle, castle, castle, memorial, castle, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, place, monument, wayside shrine, memorial, wayside cross, memorial, castle, castle, wayside cross, memorial, memorial, wayside shrine, wayside cross, castle, wayside cross, wayside shrine, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, memorial, castle, milestone, archaeological site, memorial, memorial, ruins, quarry, wayside cross, ruins, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, castle, castle, wayside cross, wayside cross, monument, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, monument, ruins, wayside shrine, wayside cross, castle, castle, castle, wayside cross, stone, wayside cross, wayside shrine, castle, wayside cross, archaeological site, memorial, monument, castle, castle, wayside cross, memorial, castle, monument, ruins, memorial, wayside cross, castle, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, ruins, wayside cross, memorial, wayside shrine, monument, city gate, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, archaeological site, wayside cross, ruins, memorial, yes, wayside cross, memorial, memorial, castle, castle, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, memorial, wayside shrine, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, ruins, memorial, memorial, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, swimming, wayside cross, memorial, monument, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, memorial, memorial, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, castle, castle, memorial, wayside shrine, castle, monument, ruins, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, castle, memorial, wayside cross, wayside cross, castle, city gate, archaeological site, memorial, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, castle, yes, memorial, wayside cross, ruins, memorial, wayside cross, wayside cross, city gate, memorial, wayside cross, wayside cross, castle, memorial, wayside cross, wayside shrine, wayside cross, memorial, stone, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, monument, wayside cross, castle, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, memorial, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, monument, wayside cross, wayside cross, wayside cross, technical monument, technical monument, technical monument, technical monument, technical monument, memorial, wayside cross, memorial, wayside cross, yes, memorial, wayside cross, wayside cross, ruins, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, castle, monument, ruins, wayside shrine, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside shrine, monument, memorial, wayside cross, wayside cross, memorial, wayside cross, monument, monastery, monument, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, castle, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, memorial, wayside cross, castle, wayside shrine, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside shrine, memorial, wayside cross, ruins, technical monument, memorial, castle, castle, ruins, ruins, wayside shrine, wayside cross, ruins, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, monument, monument, monument, wayside cross, monument, monument, monument, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, ruins, monument, ruins, yes, yes, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, memorial, wayside cross, memorial, castle, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, monument, wayside cross, wayside shrine, stone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, castle, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside cross, memorial, archaeological site, memorial, wayside cross, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, monument, wayside cross, wayside cross, archaeological site, memorial, wayside shrine, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, battlefield, battlefield, wayside cross, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, monument, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, ruins, memorial, ruins, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, wayside shrine, wayside cross, wayside cross, castle, ruins, memorial, wayside shrine, wayside cross, memorial, wayside cross, archaeological site, archaeological site, castle, heritage, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, castle, memorial, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, archaeological site, razed:watermill, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, castle, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, archaeological site, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, archaeological site, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, wayside cross, wayside cross, stone, wayside shrine, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, archaeological site, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside cross, wayside cross, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, ruins, wayside cross, wayside cross, memorial, memorial, castle, wayside cross, wayside cross, wayside cross, tower, tower, memorial, memorial, wayside cross, wayside shrine, wayside shrine, stone, wayside shrine, castle, monument, wayside cross, church, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, monument, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, monument, memorial, tower, archaeological site, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, monument, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, yes, wayside cross, monument, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, ruins, memorial, monument, wayside cross, monument, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, tower, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, monument, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, archaeological site, wayside cross, wayside shrine, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, wayside cross, castle, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, monument, wayside cross, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, milestone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, memorial, monument, wayside cross, wayside cross, castle, monument, wayside cross, castle, memorial, wayside cross, memorial, wayside shrine, wayside cross, boundary stone, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, castle, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, archaeological site, archaeological site, wayside cross, memorial, wayside cross, wayside cross, memorial, boundary stone, wayside shrine, wayside cross, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, wayside shrine, wayside shrine, yes, yes, yes, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, ruins, memorial, memorial, memorial, wayside cross, memorial, wayside cross, memorial, farm, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, memorial, archaeological site, wayside shrine, battlefield, wayside cross, memorial, wayside cross, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside shrine, wayside cross, wayside cross, ruins, memorial, battlefield, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, ruins, castle, wayside shrine, wayside shrine, wayside shrine, archaeological site, memorial, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, ruins, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, monument, wayside cross, wayside cross, wayside cross, memorial, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, archaeological site, wayside cross, memorial, memorial, stone, wayside shrine, memorial, heritage, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, memorial, memorial, archaeological site, wayside cross, memorial, memorial, wayside shrine, memorial, memorial, memorial, monument, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, castle, wayside cross, wayside cross, memorial, archaeological site, archaeological site, memorial, wayside shrine, wayside cross, castle, ruins, memorial, wayside cross, wayside shrine, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, Alter Getreidekasten, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, monument, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside shrine, wayside cross, wayside cross, archaeological site, memorial, wayside cross, archaeological site, archaeological site, wayside shrine, ruins, yes, yes, wayside cross, wayside shrine, wayside shrine, milestone, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, memorial, wayside cross, ruins, monument, memorial, memorial, wayside cross, castle, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside chapel, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, archaeological site, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside shrine, wayside shrine, memorial, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, castle, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, castle, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, archaeological site, memorial, wayside shrine, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, castle, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, monument, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, battlefield, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, archaeological site, archaeological site, archaeological site, stone, archaeological site, memorial, wayside cross, wayside cross, monument, monument, wayside cross, wayside shrine, wayside cross, castle, stone, wayside cross, archaeological site, wayside cross, memorial, wayside cross, memorial, memorial, milestone, stone, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, memorial, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, monument, monument, monument, castle, memorial, monument, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, stone, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside chapel, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, boundary stone, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, castle, archaeological site, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, boundary stone, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, yes, monument, monument, wayside cross, archaeological site, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, industrial, wayside shrine, castle, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, castle, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, ruins, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, memorial, memorial, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, archaeological site, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, heritage, city gate, castle, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, city gate, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, monument, castle, yes, yes, boundary stone, wayside shrine, wayside shrine, archaeological site, wayside shrine, wayside shrine, wayside shrine, archaeological site, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, archaeological site, wayside shrine, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside shrine, monument, memorial, wayside cross, wayside cross, boundary stone, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, archaeological site, wayside shrine, memorial, memorial, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, gallows, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, monument, wayside cross, wayside cross, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside shrine, monument, wayside cross, ruins, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, yes, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, wayside shrine, Altstraße, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, ruins, wayside cross, monument, wayside shrine, wayside shrine, wayside cross, memorial, memorial, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, quarry, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, archaeological site, archaeological site, wayside shrine, ruins, castle, monument, ruins, memorial, archaeological site, stone, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, ruins, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, archaeological site, archaeological site, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, memorial, archaeological site, castle, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside chapel, memorial, memorial, memorial, ruins, wayside cross, castle, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, archaeological site, archaeological site, castle, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, castle, wayside cross, city gate, city gate, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, castle, boundary stone, wayside cross, wayside cross, ruins, wayside cross, memorial, wayside cross, wayside cross, ruins, wayside cross, memorial, memorial, wayside shrine, memorial, yes, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, castle, wayside cross, wayside shrine, archaeological site, milestone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, monument, castle, wayside cross, monument, archaeological site, wayside cross, stone, ruins, monument, monument, monument, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, monument, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, memorial, wayside cross, memorial, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, ruins, wayside cross, boundary stone, archaeological site, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, memorial, ruins, archaeological site, memorial, wayside cross, wayside cross, memorial, wayside cross, monument, memorial, memorial, monument, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, monument, memorial, memorial, memorial, wayside cross, wayside shrine, ruins, memorial, memorial, memorial, memorial, ruins, memorial, wayside shrine, memorial, castle, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, yes, yes, yes, yes, yes, yes, yes, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, archaeological site, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, monument, wayside cross, wayside cross, wayside shrine, memorial, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, yes, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, memorial, castle, wayside cross, wayside shrine, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, memorial, wayside cross, wayside chapel, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, milestone, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, monument, yes, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, heritage, wayside cross, ruins, castle, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, castle, wayside cross, wayside shrine, ruins, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, boundary stone, wayside cross, memorial, wayside shrine, monument, memorial, memorial, wayside cross, wayside cross, wayside shrine, castle, stone, stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, memorial, wayside cross, memorial, wayside shrine, castle, memorial, memorial, ruins, memorial, wayside cross, monument, wayside cross, memorial, wayside cross, monument, memorial, wayside shrine, monument, wayside shrine, wayside cross, wayside cross, monument, memorial, wayside cross, wayside cross, ruins, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, brewery, wayside cross, wayside cross, castle, memorial, wayside cross, memorial, wayside cross, farm, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, castle, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, castle, memorial, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, tower, memorial, building, wayside cross, marker, marker, marker, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, ruins, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, memorial, wayside shrine, wayside shrine, wayside cross, monument, memorial, wayside cross, castle, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wreck, wayside shrine, wayside cross, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside shrine, stone, wayside cross, wayside shrine, boundary stone, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside shrine, wayside cross, castle, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, memorial, memorial, archaeological site, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, memorial, monument, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, ruins, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, monument, monument, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, wayside shrine, wayside shrine, memorial, archaeological site, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, stone, stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, undefined, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, stone, wayside cross, stone, ruins, wayside cross, wayside cross, wayside shrine, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, monument, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, memorial, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, yes, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, yes, wayside cross, wayside shrine, memorial, wayside cross, monument, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, ruins, wayside cross, stone, wayside shrine, industrial, archaeological site, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, stone, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, memorial, memorial, memorial, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, memorial, wayside cross, boundary stone, wayside cross, memorial, wayside cross, ruins, memorial, ruins, wayside cross, wayside cross, archaeological site, wayside shrine, monument, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside shrine, wayside cross, wayside cross, wayside shrine, stone, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, castle, yes, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, stone, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, ruins, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, city gate, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, wayside shrine, memorial, castle, memorial, monument, wayside cross, wayside shrine, wayside cross, wayside cross, city gate, memorial, memorial, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, boundary stone, boundary stone, church, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, memorial, wayside shrine, wayside cross, memorial, wayside cross, boundary stone, memorial, wayside cross, wayside cross, memorial, wayside cross, monument, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, castle, castle, wayside shrine, memorial, wayside chapel, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, monument, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside chapel, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, ruins, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, memorial, building, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, battlefield, wayside chapel, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, monument, monument, monument, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, ruins, monument, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, bunker, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, castle, boundary stone, castle, memorial, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, water well, castle, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, church, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, monument, wayside cross, monument, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, undefined, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, boundary stone, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, laundry fountain, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, ruins, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, boundary stone, memorial, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, monument, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, memorial, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, yes, wayside cross, wayside cross, memorial, memorial, memorial, mine, mine, mine, mine, mine, mine, mine, archaeological site, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, castle, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, monument, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, ruins, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, monument, ruins, boundary stone, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, memorial, monument, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, archaeological site, archaeological site, stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, ruins, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, ruins, yes, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, archaeological site, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside shrine, memorial, yes, wayside cross, memorial, archaeological site, ruins, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, archaeological site, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, memorial, Alter Ringlockschuppen, wayside cross, wayside cross, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, ruins, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, ruins, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, archaeological site, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, ruins, ruins, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, monument, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, monument, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, castle, wayside chapel, wayside cross, archaeological site, archaeological site, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, wayside chapel, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, stone, wayside cross, stone, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, Stausee Büchlberg, wayside cross, memorial, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, archaeological site, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, memorial, archaeological site, wayside shrine, monument, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, stone, wayside cross, stone, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, watermill, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, yes, memorial, memorial, wayside shrine, memorial, wayside cross, memorial, memorial, ruins, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, monument, memorial, castle, wayside cross, memorial, wayside shrine, castle, memorial, wayside cross, castle, monument, castle, wayside cross, wayside shrine, castle, castle, memorial, wayside cross, ruins, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside cross, memorial, archaeological site, tower, tower, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, boundary stone, wayside shrine, castle, castle, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, archaeological site, archaeological site, archaeological site, wayside cross, wayside cross, wayside shrine, memorial, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, heritage, memorial, wayside cross, castle, castle, wayside chapel, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, memorial, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, church, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, Dossenberger-Pfarrhof (Pfarrhof von Billenhausen (erbaut von Joseph Dossenberger), Landauer-Haus (Haus eines jüdischen Pferdehändlers), wayside cross, wayside cross, archaeological site, castle, wayside cross, wayside cross, ruins, wayside shrine, ruins, archaeological site, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, memorial, memorial, memorial, archaeological site, archaeological site, wayside cross, ruins, wayside cross, ruins, ruins, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, archaeological site, wayside cross, yes, yes, wayside cross, castle, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside cross, memorial, monument, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, monument, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, heritage, wayside shrine, tower, ruins, ruins, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside cross, wayside shrine, castle, castle, ruins, archaeological site, wayside shrine, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, memorial, yes, ruins, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, ruins, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, stone, stone, wayside shrine, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, wayside cross, wayside cross, building, memorial, wayside cross, ruins, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, church, city gate, memorial, wayside cross, wayside cross, wayside cross, ruins, ruins, archaeological site, ruins, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, ruins, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, ruins, ruins, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, memorial, wayside cross, memorial, boundary stone, monument, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, archaeological site, yes, wayside cross, battlefield, wayside cross, wayside cross, wayside cross, wayside cross, yes, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, memorial, wayside shrine, stone, stone, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside shrine, wayside shrine, stone, stone, memorial, memorial, memorial, wayside cross, wayside chapel, wayside shrine, memorial, memorial, stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside shrine, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, archaeological site, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, castle, stone, memorial, memorial, memorial, wayside cross, memorial, wayside cross, ruins, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, wayside shrine, monument, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, ruins, archaeological site, archaeological site, wayside cross, wayside cross, memorial, building, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, stone, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, archaeological site, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside chapel, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, memorial, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, memorial, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, archaeological site, ruins, memorial, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, monument, memorial, wayside cross, wayside shrine, ruins, wayside shrine, memorial, memorial, archaeological site, archaeological site, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, archaeological site, wayside shrine, monument, wayside cross, wayside cross, wayside cross, Rote Marter, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, yes, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, yes, ruins, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, stone, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, archaeological site, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, memorial, memorial, memorial, wayside cross, wayside cross, monument, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, wayside cross, boundary stone, boundary stone, memorial, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, monument, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside cross, memorial, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, ruins, wayside cross, wayside shrine, memorial, wayside cross, city gate, city gate, memorial, wayside cross, ruins, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, chapel, wayside cross, wayside cross, city gate, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, yes, memorial, wayside cross, monument, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, memorial, memorial, archaeological site, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, church, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside chapel, archaeological site, archaeological site, archaeological site, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, ruins, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, ruins, memorial, memorial, church, wayside cross, memorial, wayside cross, ruins, castle, wayside cross, castle, wayside cross, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, archaeological site, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, ruins, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, monument, memorial, wayside cross, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, memorial, ruins, ruins, wayside cross, wayside shrine, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, ruins, monument, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, memorial, boundary stone, monument, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, memorial, wayside shrine, memorial, archaeological site, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, boundary stone, wayside cross, castle, wayside cross, monument, boundary stone, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, boundary stone, wayside cross, wayside shrine, memorial, memorial, archaeological site, archaeological site, wayside shrine, wayside shrine, memorial, castle, wayside cross, wayside shrine, wayside shrine, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, pillory, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, archaeological site, monument, wayside cross, memorial, building, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, boundary stone, boundary stone, memorial, boundary stone, monument, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, monument, wayside cross, wayside cross, memorial, monument, archaeological site, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, memorial, boundary stone, wayside cross, archaeological site, ruins, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, monument, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, archaeological site, ruins, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, boundary stone, boundary stone, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, milestone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, ruins, wayside shrine, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside chapel, wayside cross, wayside chapel, wayside chapel, yes, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, boundary stone, wayside shrine, monument, archaeological site, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, memorial, archaeological site, archaeological site, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, yes, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside shrine, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, wayside cross, memorial, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, monument, memorial, wayside shrine, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, boundary stone, boundary stone, city gate, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, statue, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, memorial, archaeological site, wayside cross, wayside cross, wayside chapel, ruins, memorial, wayside cross, memorial, wayside chapel, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, boundary stone, boundary stone, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, heritage, city gate, city gate, city gate, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, ruins, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, castle, memorial, memorial, memorial, ruins, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, archaeological site, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, castle, memorial, stone, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, monument, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, castle, wayside cross, archaeological site, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside chapel, wayside chapel, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, archaeological site, wayside cross, wayside shrine, ruins, wayside cross, memorial, wayside chapel, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside cross, memorial, wayside cross, wayside cross, wayside cross, archaeological site, wayside shrine, monument, wayside cross, memorial, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, castle, boundary stone, archaeological site, wayside cross, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside shrine, boundary stone, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, yes, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, ruins, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, monument, archaeological site, wayside cross, ruins, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, memorial, boundary stone, wayside cross, memorial, memorial, wayside shrine, archaeological site, archaeological site, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, memorial, castle, wayside cross, memorial, wayside shrine, wayside cross, boundary stone, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, archaeological site, memorial, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, memorial, stone, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, wayside chapel, yes, wayside chapel, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, archaeological site, memorial, memorial, wayside shrine, wayside shrine, boundary stone, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, monument, castle, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, boundary stone, ruins, archaeological site, battlefield, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, memorial, church, memorial, boundary stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside chapel, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, wayside cross, stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, castle, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, castle, castle, wayside cross, archaeological site, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, memorial, memorial, archaeological site, wayside cross, memorial, monument, wayside cross, ruins, wayside chapel, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, archaeological site, wayside cross, memorial, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, industrial, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, archaeological site, archaeological site, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside shrine, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, church, monument, memorial, wayside shrine, wayside shrine, ruins, wayside cross, wayside shrine, memorial, castle, wayside shrine, memorial, yes, memorial, castle, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, memorial, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, tower, ruins, castle, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, castle, memorial, memorial, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, castle, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, monument, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, tower, memorial, wayside shrine, wayside shrine, wayside shrine, memorial, building, wayside cross, yes, yes, stone, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, monument, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside chapel, ruins, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, archaeological site, archaeological site, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, monument, wayside shrine, boundary stone, ruins, wayside shrine, boundary stone, wayside cross, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside shrine, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, monument, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, monastery, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, city gate, wayside chapel, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, milestone, ruins, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, yes, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside chapel, wayside chapel, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, ruins, memorial, memorial, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, archaeological site, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, monument, archaeological site, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, ruins, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, archaeological site, wayside cross, wayside cross, archaeological site, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside chapel, tower, memorial, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, boundary stone, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, memorial, memorial, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, fountain, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, fountain, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside chapel, wayside cross, wayside chapel, wayside chapel, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, yes, wayside cross, milestone, wayside cross, wayside shrine, milestone, wayside cross, wayside cross, boundary stone, wayside cross, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, boundary stone, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside cross, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, memorial, memorial, ruins, wayside cross, archaeological site, wayside cross, memorial, wayside cross, wayside cross, gallows, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, stone, memorial, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, tomb, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, memorial, memorial, memorial, wayside cross, monument, castle, wayside cross, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, ruins, wayside cross, wayside cross, memorial, archaeological site, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, boundary stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, archaeological site, memorial, memorial, ruins, ruins, wayside cross, memorial, wayside cross, memorial, monument, wayside cross, wayside cross, wayside cross, wayside cross, ruins, castle, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside cross, memorial, archaeological site, memorial, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, monument, wayside shrine, wayside cross, memorial, monument, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, ruins, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, ruins, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside chapel, wayside chapel, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, castle, castle, castle, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, castle, castle, castle, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, church, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside shrine, memorial, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside shrine, tunnel, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, castle, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, castle, wayside cross, ruins, wayside cross, ruins, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, wayside cross, stone, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, stone, stone, wayside cross, wayside cross, stone, wayside shrine, wayside shrine, wayside cross, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, monument, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, yes, yes, yes, yes, yes, yes, yes, memorial, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, memorial, stone, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, stone, archaeological site, archaeological site, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, archaeological site, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, boundary stone, wayside cross, wayside cross, castle, wayside cross, wayside shrine, boundary stone, wayside cross, wayside cross, boundary stone, wayside cross, memorial, memorial, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, battlefield, archaeological site, city gate, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside shrine, memorial, memorial, memorial, wayside cross, ruins, ruins, monument, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, archaeological site, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, boundary stone, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, milestone, boundary stone, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, boundary stone, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, castle, stone, stone, stone, stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, ruins, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, 2 Kreuze, wayside cross, wayside shrine, memorial, memorial, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside cross, boundary stone, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, ruins, wayside cross, wayside chapel, wayside chapel, stone, stone, stone, wayside cross, stone, stone, stone, stone, stone, stone, wayside shrine, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, castle, memorial, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, memorial, wayside shrine, castle, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, wayside shrine, memorial, wayside cross, wayside cross, boundary stone, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, battlefield, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, boundary stone, memorial, memorial, wayside cross, memorial, castle, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, city gate, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, monument, wayside cross, wayside shrine, archaeological site, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, memorial, ruins, castle, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, stone, stone, stone, wayside shrine, stone, stone, stone, stone, monument, monument, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, monument, wayside cross, archaeological site, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, yes, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, castle, wayside cross, wayside cross, archaeological site, wayside shrine, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, memorial, ruins, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, archaeological site, wayside shrine, castle, archaeological site, memorial, memorial, wayside cross, memorial, wayside chapel, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, stone, stone, wayside cross, memorial, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, ruins, ruins, ruins, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, monument, monument, monument, monument, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, memorial, memorial, ruins, wayside cross, memorial, wayside cross, wayside cross, ruins, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, milestone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, church, memorial, memorial, memorial, ruins, ruins, ruins, wayside cross, wayside cross, memorial, wayside cross, archaeological site, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, monument, wayside cross, castle, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, castle, memorial, boundary stone, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, stone, stone, memorial, stone, wayside cross, wayside cross, archaeological site, archaeological site, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, tomb, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, archaeological site, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, heritage, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, monument, memorial, wayside cross, wayside shrine, monument, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, archaeological site, archaeological site, wayside cross, wayside cross, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside chapel, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, ruins, wayside cross, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, church, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside shrine, wayside cross, wayside chapel, wayside cross, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, monument, boundary stone, stone, stone, stone, boundary stone, yes, wayside cross, stone, wayside cross, wayside cross, stone, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, yes, monument, memorial, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, stone, stone, stone, stone, wayside cross, stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, city gate, city gate, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, memorial, stone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, stone, memorial, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, archaeological site, archaeological site, stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, castle, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, boundary stone, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, wayside cross, archaeological site, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside cross, memorial, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, castle, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, tree, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, ruins, ruins, wayside cross, archaeological site, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, ruins, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, castle, archaeological site, wayside cross, ruins, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, technical monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, ruins, castle, ruins, memorial, memorial, memorial, wayside cross, boundary stone, memorial, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, castle, milestone, wayside cross, memorial, memorial, memorial, boundary stone, boundary stone, monument, wayside shrine, archaeological site, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, memorial, memorial, memorial, memorial, memorial, yes, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, milestone, milestone, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, archaeological site, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, ruins, monument, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, prayer site, memorial, stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, archaeological site, ruins, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, way-side cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside shrine, wayside cross, ruins, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, castle, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, yes, memorial, yes, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, monument, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, castle, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, archaeological site, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, memorial, memorial, wayside cross, memorial, memorial, memorial, technical monument, memorial, wayside cross, memorial, memorial, wayside cross, ruins, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, boundary stone, monument, wayside shrine, yes, wayside shrine, wayside cross, yes, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, church, church, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, boundary stone, wayside cross, wayside cross, castle, wayside cross, wayside chapel, wayside cross, monument, boundary stone, memorial, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside shrine, wayside shrine, wayside cross, wayside cross, monument, memorial, wayside cross, wayside cross, memorial, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, archaeological site, wayside cross, wayside cross, tomb, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, castle, archaeological site, archaeological site, archaeological site, archaeological site, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, archaeological site, wayside shrine, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, castle, wayside cross, memorial, wayside cross, wayside cross, wayside cross, ruins, wayside cross, ruins, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, attraction, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, pillory, pillory, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, monument, monument, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, ruins, castle, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside chapel, memorial, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, ruins, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, Maderla, Maderla, Maderla, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, battlefield, wayside cross, wayside cross, boundary stone, memorial, wayside shrine, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, ruins, ruins, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, obelisk, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, yes, memorial, wayside cross, wayside cross, wayside shrine, wayside chapel, wayside chapel, wayside chapel, wayside chapel, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, monument, archaeological site, archaeological site, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, yes, memorial, memorial, yes, memorial, memorial, memorial, heritage, wayside shrine, tomb, tomb, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, yes, yes, yes, yes, yes, yes, yes, yes, yes, castle, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, monument, monument, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, boundary stone, aircraft, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, castle, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, archaeological site, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, boundary stone, boundary stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, monument, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, yes, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, wayside shrine, wayside chapel, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, monument, wayside shrine, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, church, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, battlefield, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, milestone, building, door, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, stone, wayside shrine, wayside shrine, stone, stone, stone, stone, stone, stone, memorial, wayside cross, wayside chapel, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, ruins, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, city gate, church, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, door, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, stone, stone, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside shrine, archaeological site, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, industrial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, yes, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, way-side cross, wayside cross, memorial, memorial, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, monument, wayside shrine, wayside cross, ruins, palace, wayside cross, boundary stone, wayside cross, archaeological site, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, boundary stone, wayside cross, church, wayside cross, castle, wayside cross, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, memorial, memorial, archaeological site, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, yes, memorial, archaeological site, wayside cross, archaeological site, wayside cross, stone, stone, stone, stone, stone, stone, stone, battlefield, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, milestone, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, memorial, wayside chapel, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, memorial, boundary stone, memorial, memorial, wayside cross, ruins, ruins, ruins, boundary stone, boundary stone, ruins, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, boundary stone, wayside chapel, wayside chapel, wayside cross, wayside cross, memorial, milestone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, archaeological site, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, memorial, memorial, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, memorial, stone, stone, monument, stone, mine adit, stone, stone, wayside cross, wayside shrine, memorial, boundary stone, memorial, memorial, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, memorial, stone, wayside cross, stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, stone, stone, wayside shrine, stone, stone, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, ruins, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, ruins, wayside cross, monument, wayside cross, wayside shrine, monument, wayside shrine, archaeological site, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, stone, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, tomb, tower, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, way side cross, wayside cross, wayside shrine, wayside cross, castle, wayside chapel, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, city gate, city gate, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, mining waggons, industrial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, archaeological site, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, monument, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside cross, tree shrine, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, memorial, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, archaeological site, wayside cross, wayside cross, boundary stone, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, city wall, building, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, monument, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, castle, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, heritage, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, memorial, boundary stone, wayside cross, wayside cross, wayside shrine, wayside shrine, archaeological site, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, memorial, wayside shrine, memorial, memorial, memorial, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, castle, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, milestone, wayside cross, wayside cross, memorial, ruins, milestone, stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, archaeological site, yes, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, boundary stone, memorial, memorial, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, yes, yes, ruins, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, archaeological site, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, boundary stone, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, memorial, aircraft, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, milestone, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, ruins, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, tomb, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, yes, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, memorial, wayside cross, memorial, memorial, wayside shrine, wayside shrine, technical monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, monument, monument, wayside cross, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, boundary stone, wayside cross, wayside shrine, wayside shrine, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, milestone, memorial, memorial, wayside cross, farm, memorial, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, manor, wayside cross, memorial, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, heritage, memorial, memorial, memorial, memorial, wayside cross, stone, wayside shrine, monument, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside shrine, wayside cross, wayside shrine, ruins, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, monument, yes, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, ruins, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, battlefield, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside shrine, castle, wayside cross, milestone, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, memorial, heritage, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, boundary stone, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside chapel, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, yes, wayside chapel, monument, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, monument, boundary stone, milestone, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside shrine, Water pump, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, wayside shrine, memorial, wayside shrine, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, stone, wayside shrine, wayside cross, waside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside chapel, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, boundary stone, memorial, memorial, boundary stone, wayside cross, memorial, heritage, memorial, wayside cross, memorial, milestone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, ruins, ruins, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside chapel, wayside cross, wayside cross, memorial, memorial, archaeological site, ruins, wayside cross, ruins, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside chapel, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, tumulus, boundary stone, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, building, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside chapel, wayside shrine, wayside shrine, stone, wayside cross, wayside cross, stone, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, milestone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, archaeological site, archaeological site, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, monument, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, boundary stone, memorial, memorial, wayside cross, wayside cross, archaeological site, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, archaeological site, boundary stone, memorial, wayside cross, wayside cross, wayside cross, memorial, heritage, city gate, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, way side cross, memorial, stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, castle, tomb, tomb, tomb, memorial, tomb, memorial, tomb, memorial, memorial, memorial, memorial, memorial, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, archaeological site, milestone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, milestone, tomb, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, stone, memorial, memorial, memorial, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, boundary stone, wayside cross, wayside cross, memorial, wayside cross, stone, stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, yes, wayside cross, stone, stone, stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, stone, stone, stone, ruins, wayside shrine, stone, memorial, memorial, ruins, wayside cross, memorial, archaeological site, stone, stone, stone, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, stone, stone, wayside shrine, stone, stone, memorial, castle, castle, wayside shrine, stone, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, stone, stone, stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, stone, stone, memorial, memorial, castle, wayside cross, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, archaeological site, memorial, memorial, wayside shrine, wayside cross, wayside cross, stone, stone, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, yes, stone, stone, stone, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, stone, stone, archaeological site, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, cemetery, city gate, memorial, yes, castle, castle, castle, castle, yes, castle, castle, yes, building, church, church, yes, yes, archaeological site, castle, yes, archaeological site, archaeological site, yes, castle, archaeological site, building, yes, building, building, archaeological site, church, castle, castle, heritage, citywalls, citywalls, citywalls, citywalls, yes, heritage, military, yes, highway, yes, tomb, memorial, heritage, heritage, castle, archaeological site, castle, ruins, monument, castle, monument, ruins, yes, heritage, castle, yes, archaeological site, castle, castle, castle, citywalls, castle, yes, yes, castle, citywalls, castle, citywalls, memorial, building, building, yes, building, yes, yes, castle, castle, castle, archaeological site, ruins, citywalls, citywalls, archaeological site, battlefield, castle, castle, castle, castle, castle, heritage, heritage, memorial, castle, ruins, ruins, church, building, building, building, technical monument, Competition site of the Olympic Games 1972, castle, yes, industrial, castle, ruins, castle, castle, building, castle, heritage, city gate, city gate, yes, yes, yes, citywalls, yes, citywalls, castle, yes, castle, heritage, castle, castle, building, building, monastery, castle, city gate, citywalls, citywalls, citywalls, castle, yes, castle, castle, monument, castle, ruins, ruins, track, building, castle, castle, castle, castle, castle, ruins, castle, castle, building, castle, monument, track, yes, castle, castle, Altstraße, Altstraße, castle, castle, monument, yes, church, powerline, castle, castle, castle, castle, castle, castle, Altstraße, monument, wayside cross, castle, track, ruins, yes, yes, steps, ruins, ruins, church, castle, ruins, monument, castle, castle, castle, building, castle, yes, building, building, building, building, building, building, city gate, castle, yes, yes, guesthouse, yes, building, building, building, building, building, yes, building, monument, castle, archaeological site, archaeological site, city wall, castle, castle, castle, yes, monument, yes, castle, yes, yes, yes, yes, yes, yes, yes, yes, castle, yes, citywalls, church, yes, building, yes, citywalls, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, house, church, citywalls, citywalls, citywalls, building, building, building, building, building, building, building, building, building, building, building, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, building, citywalls, house, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, yes, castle, ruins, yes, castle, watermill, castle, building, building, castle, castle, building, wayside shrine, castle, yes, building, castle, memorial, archaeological site, wayside shrine, castle, monument, castle, building, building, castle, building, yes, castle, ruins, yes, hollow lane, wayside shrine, ruins, city gate, castle, castle, castle, castle, building, castle, yes, city gate, city gate, castle, archaeological site, ruins, ruins, ruins, Driftlehrpfad, castle, heritage, castle, castle, castle, castle, castle, yes, yes, yes, ruins, yes, yes, building, yes, yes, archaeological site, building, building, building, building, building, building, building, building, monument, memorial, castle, ruins, railway station, archaeological site, archaeological site, citywalls, heritage, castle, ruins, yes, monument, yes, city gate, building, building, memorial, yes, monument, citywalls, ruins, ruins, castle, monument, tomb, castle, archaeological site, monastery, archaeological site, building, building, building, building, citywalls, building, 1935-1945:Reichszeugmeisterei, citywalls, yes, yes, memorial, castle, heritage, railway station, ruins, heritage, footway, memorial, cityhall, castle, castle, castle, castle, castle, castle, castle, castle, yes, castle, ruins, hollow lane, Autobahnruine Strecke 46, yes, citywalls, castle, wayside cross, yes, yes, yes, monument, castle, castle, monument, castle, castle, castle, building, monument, yes, yes, archaeological site, archaeological site, archaeological site, archaeological site, monument, castle, building, building, castle, yes, building, building, building, monument, memorial, track, track, church, yes, castle, castle, castle, Altstraße, yes, ruins, castle, Altstrasse, Altstrasse, Altstraße, hollow way, hollow way, Altstraße, Altstraße, Altstraße, Altstraße, Altstraße, Highway, Altstraße, yes, archaeological site, archaeological site, monument, railway station, heritage, heritage, street, Altstraße, castle, yes, building, building, monument, building, building, building, building, building, building, building, building, building, Altstraße, ruins, ruins, building, building, building, building, castle, Altstraße, Altstraße, Altstraße, Altstraße, building, building, heritage, heritage, building, building, building, building, building, building, heritage, monument, Altstraße, Altstraße, Altstraße, Altstraße, Altstraße, castle, building, building, building, building, building, building, hollow way, Altstraße, citywalls, ruins, building, city gate, yes, city gate, city gate, church, Altstrasse, Altstraße, Altstraße, wayside shrine, building, building, building, building, building, building, castle, Altstraße, castle, castle, castle, citywalls, building, building, castle, ruins, castle, archaeological site, castle, castle, yes, tollhouse, hollow lane, ruins, castle, monument, castle, Altstraße, building, building, city gate, building, memorial, ruins, building, building, building, building, building, building, building, building, memorial, yes, city gate, ruins, archaeological site, castle, castle, building, building, building, building, building, building, building, building, building, castle, yes, tower, yes, ruins, memorial, archaeological site, castle, monument, castle, yes, yes, yes, yes, yes, castle, building, Altstraße, wayside shrine, monument, castle, building, tower, Altstrasse, Altstrasse, Altstrasse, Altstrasse, Altstrasse, heritage, archaeological site, ruins, ruins, ruins, ruins, building, memorial, ship, castle, monument, Altstrasse, Altstraße, Altstraße, Altstraße, castle, Altstrasse, Altstraße, Altstraße, Altstraße, castle, archaeological site, building, yes, castle, yes, Altstraße, Altstraße, Altstraße, Altstraße, castle, castle, Altstraße, building, memorial, ruins, archaeological site, castle, castle, building, castle, building, archaeological site, memorial, ship, archaeological site, memorial, yes, building, memorial, building, building, building, archaeological site, archaeological site, archaeological site, archaeological site, building, building, building, building, building, building, building, building, building, building, building, castle, yes, archaeological site, castle, castle, castle, castle, yes, yes, Altstraße, castle, ruins, memorial, tower, archaeological site, castle, Altstraße, Altstraße, Altstraße, Altstraße, hollow way, hollow way, Altstraße, Altstraße, hollow way, hollow way, hollow way, hollow way, hollow way, hollow way, Altstraße, hollow way, castle, yes, yes, yes, yes, yes, yes, Autobahnruine Strecke 46, memorial, archaeological site, archaeological site, ruins, castle, yes, yes, yes, yes, archaeological site, citywalls, church, hollow way, Altstraße, Altstraße, hollow way, hollow way, Altstraße, Altstraße, Altstraße, Altstraße, hollow way, hollow way, Altstraße, hollow way, Altstraße, Altstraße, castle, Altstraße, hollow way, hollow way, Altstraße, Altstraße, ruins, ruins, yes, memorial, castle, castle, castle, ruins, city gate, Altstraße, Altstraße, Altstraße, wayside shrine, castle, archaeological site, archaeological site, hollow lane, house, memorial, castle, yes, yes, yes, castle, monument, castle, castle, yes, castle, archaeological site, castle, castle, heritage, ruins, yes, castle, heritage, monastery, church, heritage, monastery, heritage, castle, railway station, monastery, building, castle, boundary stone, bridge, archaeological site, building, monastery, blacksmith, ruins, yes, monument, monument, building, quarry, heritage, castle, monastery, monastery, monastery, monastery, monastery, monastery, castle, castle, castle, castle, ruins, castle, heritage, archaeological site, castle, monument, ruins, yes, monument, castle, monument, hollow way, hollow way, hollow way, monument, hollow lane, ruins, wayside cross, ruins, ruins, castle, building, castle, city gate, heritage, yes, yes, yes, castle, building, yes, castle, archaeological site, bridge, bridge, castle, heritage, archaeological site, archaeological site, archaeological site, building, castle, archaeological site, monument, castle, yes, yes, church, archaeological site, castle, archaeological site, archaeological site, building, building, monument, castle, ruins, castle, castle, monastery, wayside cross, archaeological site, building, heritage, castle, heritage, monument, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, church, castle, castle, castle, castle, castle, castle, castle, monument, castle, monument, yes, castle, heritage, castle, castle, yes, building, building, castle, monument, yes, castle, track, heritage, archaeological site, archaeological site, archaeological site, archaeological site, heritage, heritage, heritage, heritage, heritage, monument, heritage, memorial, castle, heritage, city gate, heritage, city gate, yes, castle, building, heritage, heritage, heritage, city gate, city gate, heritage, castle, yes, citywalls, yes, citywalls, castle, archaeological site, yes, yes, yes, heritage, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, manor, heritage, castle, archaeological site, castle, castle, castle, monument, castle, yes, castle, monument, archaeological site, castle, castle, Altstraße, heritage, heritage, wayside shrine, city gate, monument, heritage, heritage, memorial, castle, heritage, monument, heritage, monument, heritage, building, building, castle, yes, yes, building, yes, castle, heritage, monument, ruins, ruins, Altstraße, Altstraße, ruins, monument, yes, building, castle, castle, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, building, heritage, yes, yes, yes, heritage, yes, building, building, building, yes, building, building, building, building, building, building, building, building, building, building, archaeological site, yes, archaeological site, building, monument, heritage, monument, castle, heritage, ruins, castle, monument, heritage, yes, yes, yes, heritage, heritage, castle, memorial, building, ruins, heritage, church, heritage, heritage, heritage, heritage, building, archaeological site, heritage, heritage, heritage, heritage, manor, ruins, monument, heritage, yes, yes, ruins, city gate, castle, castle, ruins, city gate, yes, castle, yes, yes, monument, castle, hollow lane, monastery, ruins, citywalls, monument, monument, monument, citywalls, castle, yes, yes, yes, yes, yes, ruins, memorial, memorial, memorial, memorial, castle, ruins, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, ruins, archaeological site, archaeological site, ruins, ruins, ruins, archaeological site, archaeological site, ruins, ruins, archaeological site, ruins, archaeological site, building, heritage, castle, heritage, church, castle, building, building, city gate, ruins, castle, memorial, Altstrasse, Altstraße, castle, castle, castle, castle, castle, castle, citywalls, yes, castle, Altstraße, Altstraße, altstraße, heritage, city gate, castle, memorial, citywalls, monument, monument, monument, castle, castle, castle, yes, Altstraße, archaeological site, castle, ruins, ruins, ruins, castle, castle, castle, tower, building, castle, castle, monument, city gate, castle, ruins, castle, memorial, archaeological site, castle, castle, railway station, heritage, castle, ruins, ruins, ruins, industrial, monument, heritage, heritage, heritage, heritage, memorial, heritage, castle, castle, city wall, city wall, city wall, city wall, city wall, city wall, city gate, city gate, castle, ruins, ruins, ruins, ruins, ruins, ruins, yes, yes, yes, yes, archaeological site, yes, monastery, citywalls, heritage, industrial, heritage, building, yes, city gate, building, building, city gate, city gate, citywalls, citywalls, building, building, building, wayside cross, tower, memorial, heritage, heritage, church, Volksschule Passau-Auerbach, castle, monastery, monastery, monastery, castle, castle, castle, Glashütte, castle, heritage, heritage, ruins, church, castle, yes, yes, yes, yes, yes, yes, castle, yes, monument, heritage, monument, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, castle, yes, yes, yes, yes, castle, castle, heritage, castle, building, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, heritage, memorial, building, building, synagoge, castle, heritage, heritage, yes, heritage, yes, city gate, monument, city gate, building, building, building, castle, lake, castle, ruins, building, yes, ruins, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, building, heritage, heritage, heritage, heritage, heritage, monument, heritage, building, building, heritage, heritage, building, archaeological site, castle, monument, building, heritage, citywalls, heritage, city gate, castle, heritage, heritage, building, building, building, heritage, castle, castle, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, castle, monument, church, building, building, building, building, building, building, building, building, monument, city gate, building, heritage, heritage, ruins, memorial, wayside shrine, heritage, heritage, monument, yes, building, wayside shrine, archaeological site, heritage, heritage, heritage, heritage, building, building, archaeological site, archaeological site, building, building, archaeological site, ruins, citywalls, citywalls, city gate, archaeological site, wayside shrine, yes, hollow way, archaeological site, castle, ruins, ruins, archaeological site, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, wayside shrine, yes, monument, castle, castle, castle, castle, archaeological site, heritage, monument, yes, yes, yes, yes, building, castle, monument, church, castle, archaeological site, citywalls, citywalls, Volksschule Passau-Auerbach, heritage, archaeological site, archaeological site, heritage, heritage, building, building, building, building, building, building, building, castle, wayside shrine, manor, monument, citywalls, citywalls, building, cutting way, wayside shrine, wayside shrine, wayside shrine, heritage, heritage, yes, heritage, yes, monument, castle, heritage, monument, monument, citywalls, citywalls, ruins, city gate, archaeological site, castle, citywalls, heritage, heritage, castle, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, citywalls, citywalls, citywalls, memorial, citywalls, chapel, citywalls, citywalls, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, castle, citywalls, citywalls, citywalls, church, citywalls, citywalls, ruins, ruins, ruins, Highway (Autobahn), castle, castle, heritage, building, church, citywalls, castle, building, castle, memorial, castle, memorial, yes, yes, city gate, yes, yes, citywalls, archaeological site, cityhall, citywalls, citywalls, citywalls, heritage, yes, citywalls, castle, castle, castle, castle, city gate, citywalls, castle, castle, castle, castle, tower, citywalls, yes, heritage, ship, heritage, heritage, heritage, church, archaeological site, archaeological site, archaeological site, memorial, castle, castle, yes, heritage, archaeological site, tower, archaeological site, church, castle, heritage, building, yes, heritage, ruins, castle, castle, castle, castle, building, heritage, monument, castle, citywalls, building, heritage, memorial, castle, building, building, building, building, building, building, building, battlefield, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, ruins, memorial, castle, castle, heritage, castle, archaeological site, building, park, castle, castle, yes, building, heritage, heritage, heritage, castle, wayside shrine, building, heritage, heritage, castle, building, monument, heritage, heritage, yes, heritage, ruins, archaeological site, archaeological site, archaeological site, ruins, archaeological site, castle, castle, building, building, city gate, ruins, yes, castle, archaeological site, archaeological site, memorial, castle, archaeological site, ruins, wayside shrine, ruins, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, tower, memorial, archaeological site, ruins, memorial, yes, wayside shrine, castle, castle, castle, yes, wayside shrine, hollow way, city wall, city wall, citywalls, citywalls, citywalls, heritage, castle, archaeological site, ruins, ruins, castle, heritage, ruins, ruins, castle, castle, castle, castle, castle, city gate, archaeological site, castle, castle, memorial, castle, monument, castle, castle, castle, track, castle, hollow way, memorial, heritage, castle, castle, castle, yes, memorial, wayside shrine, monument, heritage, church, ruins, ruins, building, building, monument, ruins, ruins, yes, yes, castle, castle, church, yes, yes, yes, yes, building, castle, monument, heritage, castle, wayside shrine, church, ship, church, castle, castle, castle, yes, building, memorial, castle, railway station, heritage, citywalls, citywalls, citywalls, citywalls, Altstraße, Altstraße, building, yes, castle, building, yes, castle, castle, archaeological site, farmhouse, yes, yes, wayside shrine, wayside shrine, wayside shrine, castle, archaeological site, wayside shrine, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, castle, city gate, boundary stone, building, tower, railway station, memorial, archaeological site, city gate, heritage, city gate, city gate, heritage, citywalls, citywalls, citywalls, heritage, city gate, castle, heritage, yes, ruins, heritage, castle, heritage, monument, yes, yes, ruins, ruins, castle, ruins, yes, city gate, city gate, yes, castle, yes, ruins, citywalls, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, castle, ruins, yes, yes, city gate, heritage, monument, memorial, archaeological site, heritage, castle, yes, city gate, yes, building, building, building, building, building, building, building, archaeological site, yes, church, church, castle, wayside chapel, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, ruins, memorial, ruins, castle, castle, castle, building, citywalls, building, building, building, citywalls, building, building, building, building, building, building, building, building, building, building, building, building, castle, city gate, castle, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, city gate, city gate, city gate, city gate, yes, city gate, city gate, yes, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, city gate, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, building, building, building, building, building, building, building, building, building, ruins, heritage, heritage, heritage, archaeological site, battlefield, castle, ruins, castle, hollow way, castle, ruins, ruins, castle, heritage, castle, heritage, yes, castle, citywalls, citywalls, citywalls, memorial, ruins, heritage, yes, yes, yes, yes, city gate, yes, city gate, yes, yes, yes, yes, yes, citywalls, citywalls, citywalls, memorial, city gate, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, memorial, tomb, monument, castle, ruins, yes, heritage, heritage, citywalls, citywalls, citywalls, castle, castle, castle, castle, castle, castle, heritage, heritage, building, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, castle, heritage, heritage, monastery, heritage, heritage, monument, heritage, monument, memorial, heritage, heritage, monument, monument, monument, castle, monument, castle, building, city gate, heritage, city gate, city gate, citywalls, citywalls, citywalls, castle, heritage, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, monument, monument, monument, castle, building, castle, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, yes, building, yes, city gate, building, heritage, heritage, heritage, archaeological site, building, building, building, building, building, building, building, building, building, yes, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, citywalls, memorial, city gate, heritage, heritage, building, building, ruins, heritage, heritage, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, ruins, heritage, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, city wall, ruins, citywalls, citywalls, citywalls, citywalls, castle, castle, memorial, ruins, castle, ruins, castle, yes, yes, yes, yes, city gate, yes, yes, yes, monument, yes, city gate, city gate, yes, yes, city gate, heritage, yes, ruins, heritage, city gate, heritage, city gate, yes, building, building, building, building, yes, yes, yes, archaeological site, archaeological site, yes, towngate, ruins, archaeological site, castle, citywalls, yes, heritage, yes, citywalls, citywalls, citywalls, citywalls, citywalls, castle, yes, building, building, building, building, building, building, building, building, heritage, wayside shrine, castle, castle, castle, ruins, heritage, ruins, ruins, railway station, city gate, city gate, castle, yes, yes, building, tower, yes, yes, yes, yes, yes, archaeological site, no, citywalls, citywalls, citywalls, citywalls, building, yes, castle, building, building, heritage, citywalls, citywalls, heritage, citywalls, citywalls, spital, memorial, castle, archaeological site, citywalls, archaeological site, ruins, city gate, city gate, city gate, yes, city gate, castle, building, yes, quarry, yes, yes, yes, yes, yes, monument, memorial, wayside chapel, building, building, church, building, heritage, city gate, castle, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, castle, building, wayside chapel, archaeological site, citywalls, heritage, archaeological site, archaeological site, building, building, building, building, building, monument, castle, castle, castle, building, building, building, building, building, building, building, building, building, heritage, ruins, heritage, heritage, city gate, building, building, building, building, building, castle, heritage, church, yes, yes, watermill, castle, castle, heritage, building, heritage, castle, building, building, castle, building, castle, citywalls, building, city gate, castle, church, church, ruins, yes, yes, building, building, yes, yes, castle, yes, yes, yes, wayside chapel, chapel, heritage, castle, castle, heritage, heritage, yes, building, building, building, heritage, yes, city gate, city gate, building, building, building, building, building, building, building, city wall, yes, yes, yes, building, building, building, building, building, yes, memorial, building, building, building, building, building, castle, monument, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, citywalls, heritage, castle, city gate, castle, building, monument, castle, heritage, memorial, building, heritage, city wall, city wall, citywalls, heritage, city gate, citywalls, citywalls, memorial, ruins, ruins, wayside shrine, heritage, church, wayside shrine, ship, heritage, heritage, heritage, yes, castle, ruins, aircraft, aircraft, aircraft, monastery, wayside chapel, heritage, heritage, castle, heritage, heritage, heritage, heritage, heritage, heritage, heritage, castle, monument, yes, castle, yes, wayside shrine, heritage, archaeological site, archaeological site, archaeological site, heritage, archaeological site, memorial, building, castle, heritage, heritage, heritage, castle, memorial, heritage, heritage, yes, heritage, heritage, heritage, castle, railway station, building, building, building, building, building, building, tower, yes, heritage, archaeological site, wayside chapel, citywalls, citywalls, citywalls, heritage, yes, yes, yes, heritage, yes, castle, yes, city wall, city wall, archaeological site, heritage, citywalls, heritage, heritage, castle, castle, citywalls, citywalls, citywalls, yes, heritage, yes, city gate, yes, yes, yes, yes, yes, heritage, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, yes, yes, city gate, city gate, city gate, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, yes, yes, yes, yes, yes, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, monastery, yes, yes, citywalls, memorial, heritage, heritage, memorial, yes, heritage, memorial, memorial, ruins, castle, castle, castle, castle, castle, yes, wayside shrine, castle, citywalls, memorial, wayside shrine, memorial, castle, monument, yes, yes, yes, yes, building, castle, archaeological site, ruins, yes, Highway (Autobahn), Highway (Autobahn), castle, yes, railway station, monastery, castle, wayside chapel, archaeological site, castle, castle, citywalls, building, heritage, building, castle, castle, wayside chapel, heritage, archaeological site, heritage, castle, castle, ruins, heritage, wayside cross, wayside shrine, wayside shrine, castle, wayside shrine, yes, ruins, yes, yes, yes, yes, yes, building, heritage, castle, archaeological site, castle, city gate, city gate, city gate, yes, yes, yes, yes, archaeological site, yes, heritage, heritage, heritage, building, roman road, ruins, memorial, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, chapel, memorial, memorial, citywalls, citywalls, archaeological site, heritage, heritage, yes, monastery, yes, building, ship, ruins, monument, heritage, yes, heritage, memorial, ruins, railway station, heritage, monastery, castle, Altstraße, Altstraße, citywalls, heritage, citywalls, yes, citywalls, castle, castle, citywalls, citywalls, archaeological site, ruins, ruins, memorial, monastery, railway station, yes, building, building, heritage, heritage, heritage, heritage, heritage, city wall, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, castle, building, citywalls, citywalls, manor, heritage, city gate, railway station, wayside shrine, heritage, citywalls, building, building, building, building, tower, heritage, archaeological site, castle, castle, building, castle, castle, building, castle, castle, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, memorial, heritage, yes, building, building, castle, citywalls, citywalls, archaeological site, heritage, city gate, citywalls, city gate, memorial, yes, yes, yes, ruins, heritage, heritage, heritage, heritage, yes, heritage, building, archaeological site, archaeological site, archaeological site, archaeological site, chapel, chapel, castle, heritage, heritage, heritage, ruins, castle, castle, ruins, ruins, castle, archaeological site, citywalls, ruins, city gate, ruins, citywalls, archaeological site, castle, wayside shrine, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, building, citywalls, heritage, yes, yes, yes, yes, yes, ruins, yes, heritage, ruins, yes, wayside shrine, memorial, heritage, wayside shrine, memorial, underground fortifications, yes, yes, yes, castle, yes, industrial, yes, yes, yes, archaeological site, castle, ship, monument, monument, memorial, memorial, ruins, archaeological site, heritage, yes, ruins, wall, track, wall, path, archaeological site, archaeological site, tomb, archaeological site, memorial, citywalls, citywalls, citywalls, citywalls, citywalls, heritage, heritage, heritage, archaeological site, monument, building, building, castle, heritage, castle, castle, heritage, castle, castle, castle, heritage, building, castle, castle, castle, castle, castle, castle, quarry, castle, military, ruins, castle, castle, castle, castle, castle, castle, castle, castle, castle, yes, castle, castle, castle, castle, building, city gate, castle, monastery, castle, monastery, yes, building, building, castle, castle, building, yes, building, castle, castle, road, railway, railway, railway, building, building, building, castle, heritage, building, archaeological site, castle, heritage, castle, castle, yes, castle, heritage, castle, castle, castle, heritage, castle +Musée de l'Armée, Musée de l'Assistance Publique Hôpitaux de Paris, Musée des Arts Décoratifs - Musée de la Publicité, Musée national des Arts et Métiers, Tour de Jean-sans-Peur, Musée Gustave Moreau, Les Égouts de Paris, Musée Edith Piaf, Musée Pasteur, Espace Dali, Cité des Sciences et de l'Industrie, Maison de Victor Hugo, Musée en Herbe, Maison Européenne de la Photographie, Musée de l'Eventail, Cité des Enfants, Musée de la Poupée, Catacombes de Paris, Musée de l'Erotisme, Musée du Petit Palais, Musée de la Légion d'Honneur et des Ordres de Chevalerie, Conciergerie, Musée du Vin, Musée de la Poste, galerie-musée Baccarat, Salle des collections, Musée du Service de Santé des Armées, Choco-Story - Le musée gourmand du chocolat, Cité de l'architecture et du patrimoine, Musée de la Marine, Musée de la franc-maçonnerie, Espace des Sciences Pierre-Gilles de Gennes, Deyrolle, Fondation Le Corbusier, Musée de la Contrefaçon, Musée Dapper, Musée des Arts Forains, Musée Adzak - Espace d'Art International, Musée d'Anatomie Delmas-Orfila-Rouvière, Musée Arménien de France, Musée Boleslas Biegas - Musée Adam Mickiewicz, Musée Bible et Terre Sainte, Musée Bouilhet-Christofle - Musée d'Orfèvrerie, Musée Clemenceau, Musée-Librairie du Compagnonnage, Musée d'Anatomie Pathologique Dupuytren, Musée Valentin Haüy, Musée Henner, Musée d'histoire de la Médecine, Musée Maillol, Musée des Lettres et Manuscrits, Musée du Montparnasse, Musée de Minéralogie, Musée Moissan, Crypte Archéologique du Parvis Notre-Dame, Bibliothèque-Musée de l'Opéra, Musée Pierre Marly - Lunettes et Lorgnettes, Musée de la Préfecture de Police, Centre Culturel Suisse, Tour de la Cathédrale, Le trésor de Notre-Dame de Paris, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin, Musée national d'art moderne, Maxim's Art Nouveau "Collection 1900", Carrefour Numérique, Art Ludique - Le Musée, Collection des minéraux - Jussieu, Fondation Henri Cartier-Bresson, Galerie Royale, Académie de la Magie, Espace Reine de Saba, Musée du Barreau, Maison de la RATP, Katakomben von Paris, Institut des Lettres et Manuscrits, Musée du quai Branly, Galerie de Minéralogie et de Géologie, Galeries de Paléontologie et d'Anatomie comparée, Institut du Monde Arabe, Jardin Tino Rossi - Musée de la Sculpture en Plein Air, Halle Saint-Pierre, Hôtel de Sully, Jeu de Paume, Musée de l'Orangerie, Atelier Brancusi, Futur Fondation Galeries Lafayette, Musée Curie, Grand Palais, Pavillon de l'Arsenal, Musée National du Moyen Âge, Musée d'Art et d'Histoire du Judaïsme, Archives Nationales, Musée de la Serrure, Musée Picasso, Musée Cognacq-Jay, Musée national Eugène Delacroix, Cité Nationale de l'Histoire de l'Immigration, Orangerie du Sénat, Musée d'Orsay, Le Musée du Fumeur, Musée national Ernest-Hébert, Institut Néerlandais, Immeuble Molitor, Pinacothèque de Paris, Musée Nissim de Camondo, Musée Cernuschi, Musée Rodin, Musée Jacquemart-André, Cinémathèque Française, Fondation Pierre Bergé Yves Saint-Laurent, Musée d'Art Moderne de la Ville de Paris, Palais de Tokyo, Fondation Cartier, Musée Guimet, Maison Chana Orloff, Musée Bourdelle, Musée d'Ennery, Musée Marmottan, Grande Galerie de l'Évolution, Musée de la Vie Romantique, Maison de Balzac, Pavillon de l'eau, Mémorial de la Shoah, Maison de la Culture du Japon, Musée Zadkine, Musée de Montmartre, Musée de la chasse et de la nature, Manufacture des Gobelins, Musée du Luxembourg, Palais de la Découverte, Centre Culturel Suédois, Musée de la magie, Fondation Louis Vuitton, Hôtel des Monnaies, Musée Galliera, Musée Carnavalet, Le Louvre, Sainte-Chapelle +49.4026602 8.7297882, 49.4658809 8.7540689, 49.4269174 8.7219719, 49.4035191 8.7047078, 49.4261495 8.7062630, 49.4580313 8.7464236, 49.3828404 8.6974716 +49.3868564 8.6629939, 49.4122382 8.7129316 +yes +42 +1966 +55.9813666 -3.1776197, 55.9372632 -3.2070698, 55.9555027 -3.1887801, 55.9589676 -3.2124402, 55.9589390 -3.2120876, 55.9410478 -3.1808355, 55.9469052 -3.1861162, 55.9261476 -3.3062378 +Musée de l'Armée, Musée de l'Assistance Publique Hôpitaux de Paris and 01.40.27.50.05, Musée des Arts Décoratifs - Musée de la Publicité and 01.44.55.57.50, Musée national des Arts et Métiers and +33 (0)1 53 01 82 00, Tour de Jean-sans-Peur, Musée Gustave Moreau and 01.48.74.38.50, Les Égouts de Paris and 01.53.68.27.81, Musée Edith Piaf and 01.43.55.52.72, Musée Pasteur and 01.45.68.82.83, Espace Dali and 01.42.64.40.10, Cité des Sciences et de l'Industrie and +33 1 40 05 70 00, Maison de Victor Hugo and 01.42.72.10.16, Musée de la carte à Jouer, Musée en Herbe and 01.40.67.97.66, Maison Européenne de la Photographie and +33 1 44 78 75 00, Musée de l'Eventail and 01.42.08.90.20, Cité des Enfants, Musée de la Poupée and 01.44.54.04.48, Catacombes de Paris and +33 1 43224763, Musée de l'Erotisme and 01.42.58.28.73, Musée des années 30, Musée du Petit Palais and 01.53.43.40.00, Musée de la Légion d'Honneur et des Ordres de Chevalerie and 01.40.62.84.25, Conciergerie, Musée du Vin and 01.45.25.63.26, Musée de la Poste and +33 1 42 79 24 24, galerie-musée Baccarat and +33 1 40 22 11 00, Salle des collections, Musée du Service de Santé des Armées, Musée de la Défense, Choco-Story - Le musée gourmand du chocolat and 00.33.(0)1.42.29.68.60, Musée-Jardin Paul Landowski, Cité de l'architecture et du patrimoine and 01.58.51.52.00, Musée de la Marine and +33 (0)1 53 65 69 69, +33 (0)1 53 65 69 53, Musée de la franc-maçonnerie and 01.45.23.74.09, Espace des Sciences Pierre-Gilles de Gennes, Deyrolle, Fondation Le Corbusier and 01.42.88.41.53, Musée de la Contrefaçon and +33 1 56 26 14 03, Musée Dapper and 01.45.00.91.75, Musée des Arts Forains and 01.43.40.16.22, Musée Adzak - Espace d'Art International and 01.45.43.06.98, Musée d'Anatomie Delmas-Orfila-Rouvière and 01.42.86.20.47, Musée Arménien de France, Musée Boleslas Biegas - Musée Adam Mickiewicz and 01.43.54.35.61, Musée Bible et Terre Sainte and 01.45.44.09.55, Musée Bouilhet-Christofle - Musée d'Orfèvrerie and 01.49.22.41.15, Musée Clemenceau and 01.45.20.53.41, Musée-Librairie du Compagnonnage and 01.43.26.25.03, Musée d'Anatomie Pathologique Dupuytren and 01.42.34.68.60, Musée Valentin Haüy, Musée Henner and 01.47.63.42.73, Musée d'histoire de la Médecine, Musée Maillol and 01.42.22.59.58, Musée des Lettres et Manuscrits and +33 1 42 22 48 48, Musée du Montparnasse and +33 1 42229196, Musée de Minéralogie and 01.40.51.92.90, Musée Moissan, Crypte Archéologique du Parvis Notre-Dame and 01.55.42.50.10, Bibliothèque-Musée de l'Opéra and 01.53.79.37.47, Musée Pierre Marly - Lunettes et Lorgnettes, Musée de la Préfecture de Police and 01.44.41.52.50, Centre Culturel Suisse, Musée de l'Ile-de-France and 01.41.87.29.50, Tour de la Cathédrale and 01.53.10.07.00, Musée d'art et d'histoire de Saint-Denis, Musée de Nogent-sur-Marne, Maison de la Pêche et de la Nature, Le trésor de Notre-Dame de Paris, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin and 01.40.64.39.44, Galerie municipale Julio Gonzalez, Musée national d'art moderne, Maxim's Art Nouveau "Collection 1900" and 01.42.65.30.47, Carrefour Numérique, Art Ludique - Le Musée, Collection des minéraux - Jussieu, Fondation Henri Cartier-Bresson and +33156802700, Galerie Royale, Musée Albert Kahn and 01.55.19.28.00, Académie de la Magie, Musée Fragonard, Espace Reine de Saba, Musée du Barreau and +33 1 44 32 47 48, Maison de la RATP, Katakomben von Paris, Institut des Lettres et Manuscrits, Musée du quai Branly and 01.56.61.70.00, Galerie de Minéralogie et de Géologie and 01.40.79.54.79, Galeries de Paléontologie et d'Anatomie comparée and +331 40 79 54 79, +331 40 79 56 01, Institut du Monde Arabe and 01.40.51.38.38, Jardin Tino Rossi - Musée de la Sculpture en Plein Air, Musée national de céramique and +33 1 46292200, Halle Saint-Pierre and 01.42.58.72.89, Hôtel de Sully, Jeu de Paume and +33 1 47031250, Musée de l'Orangerie and 01.44.50.43.00, Atelier Brancusi, Futur Fondation Galeries Lafayette, Musée Curie and 01.56.24.55.33, Grand Palais, Pavillon de l'Arsenal and 01.42.76.33.97, 01.42.76.26.32, Musée National du Moyen Âge and 01.53.73.78.13, Musée d'Art et d'Histoire du Judaïsme and 01.53.01.86.53, Archives Nationales and 01.40.27.60.96, Musée de la Serrure, Musée Picasso and 01.85.56.00.36, Musée Cognacq-Jay and 01.40.27.07.21, Musée national Eugène Delacroix and 01.44.41.86.50, Cité Nationale de l'Histoire de l'Immigration and 01 53 59 58 60, Orangerie du Sénat, Musée d'Orsay, Le Musée du Fumeur and 01.46.59.05.51, Musée national Ernest-Hébert, Mastaba 1, Institut Néerlandais and 01.53.59.12.40, Immeuble Molitor, Pinacothèque de Paris and 01.42.68.02.01, Musée Nissim de Camondo and 01.44.55.57.50, Musée Cernuschi and 01.53.96.21.50, Musée Rodin and 01.44.18.61.10, Musée Jacquemart-André and 01.45.42.11.59, Musée De Dion-Bouton, Château d'Asnières and 01.71.07.82.25, Musée d'Histoire Urbaine et Sociale and 01.41.18.37.37, Musée Renault and 01.46.05.21.58, Pavillon de Vendôme and 01 .47 .15 .31 .05, Musée Paul-Belmondo, Cinémathèque Française and 01.71.19.33.33, Fondation Pierre Bergé Yves Saint-Laurent, Musée d'Art Moderne de la Ville de Paris and 01.53.67.40.00, Palais de Tokyo and 01.47.23.54.01, Fondation Cartier and 01.42.18.56.50, Musée Guimet and 01.58.52.53.00, Maison Chana Orloff, Musée Bourdelle and 01.49.54.73.73, Musée d'Ennery and +33 1 45535796, Maison de la Photographie - Robert Doisneau, Le 116, Musée Roybet Fould, Musée Marmottan and 01.44.96.50.33, Grande Galerie de l'Évolution and 01.40.79.54.79, 01.40.79.56.01, Musée de la Vie Romantique and 01.55.31.95.67, Maison de Balzac and +33 1 55744180, Pavillon de l'eau and 01.42.24.54.02, Mémorial de la Shoah and +33 1 42 77 44 72, Musée Rodin - Villa des Brillants and 01 41 14 35 00, Musée d'Art et d'Histoire and +33 1 46238713, MACval, Explor@dome, Maison de la Culture du Japon and 01.44.37.95 .01, Musée Zadkine and 01.55.42.77.20, Musée de Montmartre and 01.49.25.89.39, Musée de la chasse et de la nature and 01.53.01.92.40, Manufacture des Gobelins, Musée du Luxembourg and 01.40.13.62.00, Palais de la Découverte, Centre Culturel Suédois and 01.44.78.80.20, Musée de la magie, Fondation Louis Vuitton and 01.40.69.96.00, Hôtel des Monnaies, Musée Galliera and 01.56.52.86.00, Musée Carnavalet and 01.44.59.58.58, Le Louvre, Sainte-Chapelle and 01.53.40.60.80 +55.9310291 -3.2926211, 55.9795875 -3.3736290, 55.9795051 -3.3731411, 55.9180092 -3.2165117, 55.9177141 -3.2165232, 55.9197720 -3.2124574, 55.9207338 -3.2118519, 55.9211412 -3.2116770, 55.9232188 -3.2713110, 55.9193964 -3.2652222, 55.9298845 -3.2574967, 55.9292814 -3.2489744, 55.9273778 -3.2470826, 55.9325370 -3.2367186, 55.9398773 -3.2212237, 55.9282956 -3.2653245, 55.9429729 -3.3606339, 55.9392334 -3.3585545, 55.9387072 -3.3255217, 55.9359494 -3.3132810, 55.9342846 -3.3041605, 55.9335044 -3.3000747, 55.9330499 -3.2976344, 55.9298627 -3.2917640, 55.9261970 -3.2931549, 55.9343011 -3.3157894, 55.9540684 -3.4023688, 55.9191802 -3.2890802, 55.9090891 -3.2730290, 55.8926301 -3.3208572, 55.8916068 -3.3241899, 55.8882461 -3.3383885, 55.8856304 -3.3394973, 55.8788746 -3.3382465, 55.8765909 -3.3374744, 55.8753688 -3.3413701, 55.8746010 -3.3433669, 55.8754442 -3.3466839, 55.8814805 -3.3478538, 55.8838740 -3.3428988, 55.8859699 -3.3400941, 55.8901905 -3.3297626, 55.8920125 -3.3230644, 55.8931149 -3.3199173, 55.8941254 -3.3159226, 55.8954119 -3.3123968, 55.9498881 -3.2791635, 55.9406557 -3.1162756, 55.9385166 -3.1253393, 55.9361033 -3.1147220, 55.9336898 -3.1102159, 55.9334013 -3.1069114, 55.9334013 -3.1065252, 55.9441838 -3.1105250, 55.9440924 -3.1125421, 55.9439146 -3.1129970, 55.9388607 -3.4078678, 55.9377182 -3.4079403, 55.9563398 -3.1384528, 55.9583672 -3.1380034, 55.9586133 -3.1379125, 55.9365290 -3.3384035, 55.9333191 -3.2042555, 55.9256371 -3.2116654, 55.9249494 -3.2166522, 55.9253583 -3.2137897, 55.9683134 -3.2696868, 55.9372490 -3.2352906, 55.9401171 -3.2189968, 55.9346530 -3.2340923, 55.9360087 -3.2361093, 55.9309707 -3.1902664, 55.9470233 -3.2136778, 55.8765022 -3.3371475, 55.8765000 -3.3373552, 55.8798477 -3.3390718, 55.8820038 -3.3394309, 55.8840269 -3.3376620, 55.8741154 -3.3459044, 55.8787487 -3.3494977, 55.8833876 -3.3443867, 55.8818437 -3.3475147, 55.8845740 -3.3414649, 55.8856523 -3.3402440, 55.8883945 -3.3384518, 55.8902435 -3.3295290, 55.8919937 -3.3230485, 55.8931715 -3.3196345, 55.8944882 -3.3148529, 55.8964300 -3.3090140, 55.8964580 -3.3261033, 55.8977443 -3.3138562, 55.8986910 -3.3135523, 55.9011623 -3.3101650, 55.9101614 -3.3175337, 55.9090028 -3.3198201, 55.9112244 -3.3154319, 55.9122074 -3.3244850, 55.9147717 -3.3243147, 55.9172476 -3.3141716, 55.9082667 -3.3683320, 55.9119985 -3.3559041, 55.9175244 -3.3201689, 55.9179307 -3.3146584, 55.9214822 -3.2963197, 55.9232591 -3.3033567, 55.9231926 -3.2917517, 55.9249172 -3.2926733, 55.9259239 -3.3020377, 55.9264071 -3.2988209, 55.9270654 -3.2943294, 55.9280466 -3.2924574, 55.9278292 -3.3011572, 55.9295108 -3.2867840, 55.9329365 -3.3067870, 55.9312693 -3.3055464, 55.9298014 -3.3024558, 55.9316935 -3.3112913, 55.9277828 -3.3072378, 55.9277718 -3.3082778, 55.9301102 -3.2995850, 55.9307299 -3.2962123, 55.9382064 -3.3148414, 55.9382451 -3.3146688, 55.9380732 -3.3142761, 55.9379534 -3.3143254, 55.9377484 -3.3146111, 55.9360561 -3.3134078, 55.9342693 -3.3039664, 55.9349237 -3.3159468, 55.9331713 -3.3134382, 55.9331991 -3.3091330, 55.9335973 -3.3003901, 55.9330872 -3.2976357, 55.9315908 -3.2929596, 55.9186868 -3.2886896, 55.9178902 -3.2909673, 55.9188275 -3.2898464, 55.9176148 -3.2949425, 55.9181261 -3.2984479, 55.9175513 -3.2864277, 55.9197426 -3.2908369, 55.9198437 -3.2966171, 55.9208961 -3.2948119, 55.9194596 -3.2989566, 55.9144242 -3.2907241, 55.9084080 -3.2842852, 55.9320455 -3.3119915, 55.9092294 -3.2890958, 55.9108851 -3.2914545, 55.9144770 -3.2865339, 55.9113035 -3.2806372, 55.9176018 -3.2815810, 55.9147125 -3.2811816, 55.9168398 -3.2788196, 55.9142131 -3.2764932, 55.9132762 -3.2715025, 55.9102188 -3.2717224, 55.9103270 -3.2777573, 55.9119824 -3.2772230, 55.9099554 -3.2745935, 55.9100741 -3.2726776, 55.9131048 -3.2706969, 55.9142655 -3.2766389, 55.9109880 -3.2798749, 55.9117706 -3.2823805, 55.9128869 -3.2847693, 55.9173957 -3.2772058, 55.9183229 -3.2735719, 55.9200063 -3.2724109, 55.9215230 -3.2717245, 55.9200023 -3.2762674, 55.9199340 -3.2819773, 55.9215018 -3.2763807, 55.9232615 -3.2713173, 55.9246922 -3.2676352, 55.8967812 -3.3064030, 55.8977378 -3.3026287, 55.9144150 -3.2864518, 55.8992750 -3.2982293, 55.9003271 -3.2948303, 55.9019412 -3.2891579, 55.9019029 -3.2893806, 55.9025521 -3.2874507, 55.9033558 -3.2853499, 55.9049846 -3.2814342, 55.9062367 -3.2779268, 55.9071600 -3.2755416, 55.9087373 -3.2724738, 55.9083182 -3.2712923, 55.9099442 -3.2687218, 55.9124955 -3.2644213, 55.9136201 -3.2625380, 55.9174527 -3.2647107, 55.9144997 -3.2626305, 55.9193076 -3.2652191, 55.9216247 -3.2635823, 55.9230814 -3.2617413, 55.9248078 -3.2598769, 55.9153154 -3.2610730, 55.9171788 -3.2598694, 55.9187731 -3.2586250, 55.9210676 -3.2544637, 55.9226847 -3.2900244, 55.9233399 -3.2854032, 55.9419880 -3.2928830, 55.9408815 -3.2923753, 55.9376001 -3.2917115, 55.9356141 -3.2897478, 55.9325054 -3.2871313, 55.9284150 -3.2844156, 55.9249025 -3.2820460, 55.9401249 -3.2906181, 55.9400465 -3.2883675, 55.9402382 -3.2817236, 55.9378727 -3.2799768, 55.9351374 -3.2777255, 55.9301790 -3.2844611, 55.9311452 -3.2805554, 55.9313553 -3.2763774, 55.9307812 -3.2731963, 55.9273000 -3.2709374, 55.9243364 -3.2794506, 55.9251074 -3.2761631, 55.9257039 -3.2688686, 55.9251946 -3.2633464, 55.9254459 -3.2589853, 55.9239420 -3.2522469, 55.9322101 -3.2731791, 55.9329010 -3.2706725, 55.9336393 -3.2661665, 55.9335638 -3.2630104, 55.9268539 -3.2688901, 55.9284959 -3.2656306, 55.9329631 -3.2593732, 55.9346628 -3.2557144, 55.9359082 -3.2525369, 55.9296933 -3.2610278, 55.9298555 -3.2574636, 55.9318854 -3.2504862, 55.9328062 -3.2474104, 55.9368775 -3.2482297, 55.9343430 -3.2459680, 55.9358793 -3.2456362, 55.9373768 -3.2432828, 55.9405632 -3.2391741, 55.9391600 -3.2410985, 55.9371045 -3.2399842, 55.9342017 -3.2445104, 55.9364631 -3.2403239, 55.9383204 -3.2307453, 55.9388822 -3.2284737, 55.9360470 -3.2361323, 55.9345851 -3.2340527, 55.9075589 -3.2708515, 55.9071600 -3.2668392, 55.9073712 -3.2576318, 55.9011959 -3.2683402, 55.9031765 -3.2679730, 55.9035475 -3.2651059, 55.9042009 -3.2627278, 55.9046664 -3.2611433, 55.9041265 -3.2612218, 55.9068600 -3.2575352, 55.9082530 -3.2531010, 55.9094816 -3.2506930, 55.9118271 -3.2471367, 55.9138617 -3.2432021, 55.9149167 -3.2410599, 55.9065703 -3.2462482, 55.9055392 -3.2415762, 55.9047280 -3.2373593, 55.9040043 -3.2313244, 55.9040174 -3.2248441, 55.9044388 -3.2231298, 55.9055392 -3.2245241, 55.9070009 -3.2266338, 55.9085623 -3.2295466, 55.9095589 -3.2332257, 55.9102457 -3.2355353, 55.9118191 -3.2381291, 55.9134355 -3.2391246, 55.9158634 -3.2407381, 55.9172358 -3.2418700, 55.9053964 -3.2512493, 55.9189038 -3.2413153, 55.9207759 -3.2419032, 55.9220612 -3.2436566, 55.9231454 -3.2483964, 55.9246759 -3.2461586, 55.9271942 -3.2433326, 55.9283635 -3.2415537, 55.9299545 -3.2397158, 55.9324105 -3.2367528, 55.9210460 -3.2391754, 55.9239408 -3.2363550, 55.9255077 -3.2342283, 55.9277091 -3.2306058, 55.9294767 -3.2273118, 55.9327262 -3.2285510, 55.9305694 -3.2249613, 55.9292058 -3.2265349, 55.9300937 -3.2230896, 55.9310002 -3.2195807, 55.9314292 -3.2179935, 55.9337225 -3.2114222, 55.9279217 -3.2237414, 55.9226556 -3.2237835, 55.9226931 -3.2257646, 55.9256341 -3.2242615, 55.9246017 -3.2223565, 55.9247037 -3.2193189, 55.9247925 -3.2176092, 55.9249824 -3.2160535, 55.9254761 -3.2111649, 55.9353980 -3.2309408, 55.9366122 -3.2281297, 55.9380129 -3.2265545, 55.9378441 -3.2253350, 55.9391409 -3.2250558, 55.9397575 -3.2256219, 55.9414410 -3.2232711, 55.9435081 -3.2199229, 55.9454900 -3.2173512, 55.9577324 -3.4028820, 55.9565716 -3.4124666, 55.9565443 -3.4054179, 55.9562304 -3.4030038, 55.9578366 -3.4032061, 55.9550446 -3.4011165, 55.9537434 -3.4028178, 55.9529605 -3.4044776, 55.9462687 -3.4123717, 55.9399631 -3.4079627, 55.9387883 -3.4077527, 55.9377144 -3.4044543, 55.9391423 -3.3995092, 55.9376264 -3.3913805, 55.9389283 -3.3906747, 55.9383711 -3.3742204, 55.9378177 -3.3662518, 55.9371957 -3.3599381, 55.9429929 -3.3606376, 55.9368804 -3.3506686, 55.9369634 -3.3359957, 55.9390922 -3.3260946, 55.9229613 -3.3781642, 55.9089054 -3.4073417, 55.9206810 -3.3895891, 55.9207749 -3.3849287, 55.9214328 -3.3815675, 55.9209944 -3.3792944, 55.9156365 -3.3746719, 55.9213537 -3.3394115, 55.9216109 -3.3364117, 55.9214877 -3.3394801, 55.9218609 -3.3357322, 55.9190122 -3.3141327, 55.9524334 -3.3528166, 55.9518454 -3.3474309, 55.9512679 -3.3402359, 55.9497345 -3.3341454, 55.9466451 -3.3273295, 55.9453465 -3.3244188, 55.9418947 -3.3169838, 55.9520847 -3.3035079, 55.9518762 -3.3070246, 55.9503885 -3.3080662, 55.9493412 -3.3121920, 55.9469832 -3.3142260, 55.9418512 -3.3126432, 55.9408369 -3.3116963, 55.9412025 -3.3060407, 55.9416783 -3.3009811, 55.9423026 -3.2963106, 55.9587957 -3.3001937, 55.9572858 -3.2993742, 55.9499052 -3.2790606, 55.9536582 -3.2784957, 55.9370630 -3.3919366, 55.9561814 -3.2814307, 55.9558569 -3.2848148, 55.9555580 -3.2872051, 55.9553282 -3.2889777, 55.9544876 -3.2937387, 55.9537810 -3.2968384, 55.9525607 -3.2968986, 55.9496808 -3.2953881, 55.9486982 -3.2948268, 55.9452390 -3.2939428, 55.9429096 -3.2918926, 55.9431922 -3.2870802, 55.9429288 -3.2837142, 55.9425070 -3.2793090, 55.9418960 -3.2734651, 55.9422550 -3.2680807, 55.9425265 -3.2652716, 55.9439641 -3.2573764, 55.9444582 -3.2547504, 55.9376372 -3.2495189, 55.9393336 -3.2514787, 55.9418735 -3.2517848, 55.9432225 -3.2516682, 55.9450042 -3.2500326, 55.9453832 -3.2441638, 55.9457364 -3.2403321, 55.9457885 -3.2351456, 55.9457795 -3.2288522, 55.9460094 -3.2229027, 55.9459397 -3.2196471, 55.9467297 -3.2160853, 55.9468911 -3.2157329, 55.9495730 -3.2096804, 55.9498456 -3.2090591, 55.9470251 -3.2128783, 55.9466831 -3.2111062, 55.9457511 -3.2083497, 55.9407674 -3.2171557, 55.9414929 -3.2189566, 55.9420067 -3.2142265, 55.9429862 -3.2105745, 55.9435721 -3.2079032, 55.9452599 -3.2068906, 55.9458494 -3.2043614, 55.9463849 -3.2002560, 55.9473655 -3.1962398, 55.9476701 -3.1928242, 55.9476671 -3.2034432, 55.9476364 -3.2015298, 55.9486521 -3.1951042, 55.9486914 -3.1982744, 55.9493803 -3.1935304, 55.9826102 -3.3849972, 55.9819929 -3.3895432, 55.9819242 -3.3908551, 55.9825780 -3.3942285, 55.9839641 -3.4097289, 55.9845935 -3.4129431, 55.9866836 -3.4194026, 55.9873161 -3.4160882, 55.9886532 -3.4138927, 55.9895768 -3.4098735, 55.9899607 -3.4056361, 55.9846372 -3.3964826, 55.9867620 -3.3969118, 55.9890911 -3.3975569, 55.9909234 -3.3992102, 55.9871450 -3.3956272, 55.9875380 -3.3902711, 55.9873152 -3.3869128, 55.9868637 -3.3823120, 55.9044487 -3.1454869, 55.9903465 -3.3854493, 55.9905394 -3.3854731, 55.9865016 -3.3761275, 55.9824804 -3.3733079, 55.9842326 -3.3635923, 55.9842318 -3.3579661, 55.9802903 -3.3478429, 55.9876179 -3.4043614, 55.9796190 -3.3736553, 55.9717085 -3.3279954, 55.9679830 -3.3226445, 55.9654902 -3.3179614, 55.9619999 -3.3132611, 55.9609748 -3.3074114, 55.9583863 -3.3074683, 55.9607983 -3.3054190, 55.9603677 -3.2993974, 55.9606855 -3.2948105, 55.9612294 -3.2900709, 55.9619792 -3.2836720, 55.9588557 -3.2798684, 55.9615690 -3.2825324, 55.9627081 -3.2757823, 55.9624444 -3.2699904, 55.9621094 -3.2667435, 55.9639498 -3.2738847, 55.9616143 -3.3064237, 55.9632763 -3.3073127, 55.9667125 -3.3078131, 55.9713376 -3.3004221, 55.9698871 -3.3075677, 55.9718166 -3.3061105, 55.9733660 -3.3040475, 55.9752612 -3.2990153, 55.9744680 -3.2975465, 55.9733639 -3.2957308, 55.9736867 -3.2897965, 55.9728924 -3.2866934, 55.9703170 -3.2811761, 55.9683876 -3.2783405, 55.9663230 -3.2755327, 55.9657954 -3.2744099, 55.9655002 -3.2725418, 55.9656142 -3.2695552, 55.9713952 -3.2719557, 55.9691832 -3.2700510, 55.9665452 -3.2666823, 55.9661404 -3.2644720, 55.9659675 -3.2603008, 55.9663975 -3.2551399, 55.9669130 -3.2516956, 55.9735812 -3.2757555, 55.9730117 -3.2734774, 55.9722077 -3.2714362, 55.9729455 -3.2668252, 55.9735675 -3.2631278, 55.9742485 -3.2589195, 55.9748610 -3.2552537, 55.9743594 -3.2533305, 55.9740185 -3.2532714, 55.9723304 -3.2610845, 55.9725024 -3.2535321, 55.9721395 -3.2524896, 55.9701437 -3.2508068, 55.9675855 -3.2487696, 55.9648925 -3.2493877, 55.9623997 -3.2479778, 55.9644818 -3.2676060, 55.9630502 -3.2643872, 55.9551721 -3.2579960, 55.9613037 -3.2716832, 55.9580495 -3.2683248, 55.9599376 -3.2664803, 55.9600324 -3.2616137, 55.9604236 -3.2585027, 55.9616357 -3.2629955, 55.9601785 -3.2561080, 55.9591002 -3.2534620, 55.9580627 -3.2508709, 55.9570634 -3.2482852, 55.9462547 -3.2503888, 55.9467499 -3.2476345, 55.9482887 -3.2483085, 55.9548507 -3.2577933, 55.9504434 -3.2502676, 55.9506589 -3.2467353, 55.9510521 -3.2416071, 55.9515904 -3.2479183, 55.9515662 -3.2440899, 55.9560438 -3.2447140, 55.9578918 -3.2417264, 55.9515515 -3.2375231, 55.9520270 -3.2340149, 55.9525865 -3.2301729, 55.9525057 -3.2266066, 55.9522993 -3.2247346, 55.9517980 -3.2257601, 55.9509222 -3.2222408, 55.9500692 -3.2194594, 55.9500952 -3.2159210, 55.9514349 -3.2130963, 55.9564424 -3.2435095, 55.9556979 -3.2404269, 55.9546994 -3.2327545, 55.9547623 -3.2291528, 55.9549100 -3.2260503, 55.9565634 -3.2380647, 55.9571584 -3.2342742, 55.9581693 -3.2284212, 55.9607560 -3.2558704, 55.9607241 -3.2492855, 55.9612008 -3.2447994, 55.9622742 -3.2408290, 55.9639764 -3.2386566, 55.9668601 -3.2378355, 55.9674008 -3.2472135, 55.9678600 -3.2429464, 55.9684348 -3.2376134, 55.9809011 -3.2361106, 55.9819186 -3.2299179, 55.9835884 -3.2255631, 55.9820443 -3.2236070, 55.9755146 -3.2528390, 55.9763614 -3.2499658, 55.9765987 -3.2451657, 55.9766945 -3.2433686, 55.9787460 -3.2416288, 55.9766506 -3.2391257, 55.9746085 -3.2384675, 55.9728249 -3.2380100, 55.9698270 -3.2367766, 55.9676125 -3.2353921, 55.9654876 -3.2338032, 55.9639658 -3.2328402, 55.9630665 -3.2338676, 55.9614915 -3.2301671, 55.9601435 -3.2283783, 55.9580206 -3.2254421, 55.9563691 -3.2233567, 55.9552380 -3.2192535, 55.9577146 -3.2175590, 55.9544860 -3.2153379, 55.9558088 -3.2163084, 55.9574409 -3.2136525, 55.9577176 -3.2110983, 55.9587670 -3.2249388, 55.9592419 -3.2214458, 55.9594385 -3.2162145, 55.9591627 -3.2129430, 55.9587082 -3.2097806, 55.9582498 -3.2083579, 55.9601149 -3.2048779, 55.9605028 -3.2019585, 55.9776003 -3.2376176, 55.9780587 -3.2358053, 55.9785473 -3.2327758, 55.9798702 -3.2307825, 55.9807570 -3.2248233, 55.9807136 -3.2239533, 55.9791444 -3.2133545, 55.9750509 -3.2382573, 55.9753610 -3.2351103, 55.9770716 -3.2212544, 55.9756199 -3.2316891, 55.9766181 -3.2307113, 55.9786796 -3.2294305, 55.9790730 -3.2251158, 55.9783022 -3.2231042, 55.9758021 -3.2269354, 55.9760093 -3.2241696, 55.9777793 -3.2187446, 55.9768282 -3.2158782, 55.9746908 -3.2152599, 55.9720616 -3.2144788, 55.9686890 -3.2346734, 55.9691570 -3.2301059, 55.9698341 -3.2234619, 55.9702408 -3.2195972, 55.9709671 -3.2128859, 55.9700933 -3.2078462, 55.9689465 -3.2067624, 55.9677907 -3.2055970, 55.9661868 -3.2040897, 55.9648275 -3.2026212, 55.9625463 -3.1985152, 55.9623519 -3.1999659, 55.9612708 -3.1979256, 55.9590746 -3.2001052, 55.9574525 -3.1992269, 55.9576308 -3.2078827, 55.9571589 -3.2057631, 55.9570635 -3.2040021, 55.9579700 -3.1990768, 55.9589149 -3.1952296, 55.9516292 -3.2116129, 55.9505151 -3.2088197, 55.9516840 -3.2088535, 55.9565296 -3.2022609, 55.9551067 -3.2015189, 55.9026109 -3.2208010, 55.9022133 -3.2164859, 55.9021871 -3.2127583, 55.9021851 -3.2083916, 55.9018727 -3.2063506, 55.8969766 -3.2036602, 55.8992966 -3.2042234, 55.9020303 -3.2049319, 55.9042298 -3.2071980, 55.9067134 -3.2084524, 55.9090267 -3.2098842, 55.9104665 -3.2114969, 55.9128718 -3.2136198, 55.9152539 -3.2135342, 55.9171693 -3.2133860, 55.9001253 -3.2003306, 55.8991537 -3.1958384, 55.8989540 -3.1941849, 55.8992204 -3.1898748, 55.8997708 -3.1756092, 55.8997328 -3.1720575, 55.8996750 -3.1705683, 55.8999131 -3.1644178, 55.9079326 -3.2251115, 55.9091271 -3.2224615, 55.9102950 -3.2206745, 55.9115037 -3.2193046, 55.9208769 -3.2949233, 55.9137133 -3.2175820, 55.9157854 -3.2170389, 55.9180646 -3.2164542, 55.9198187 -3.2126207, 55.9212009 -3.2118637, 55.9234619 -3.2106294, 55.9167866 -3.2304883, 55.9167305 -3.2277411, 55.9167656 -3.2233099, 55.9189490 -3.2224186, 55.9210591 -3.2216689, 55.9214794 -3.2218741, 55.9223199 -3.2213885, 55.9226498 -3.2171100, 55.9231082 -3.2143717, 55.9244036 -3.2105713, 55.9247198 -3.2085646, 55.9248235 -3.2034785, 55.9332773 -3.1804495, 55.9256145 -3.1997740, 55.9261116 -3.1939316, 55.9262593 -3.1898070, 55.9263697 -3.1876817, 55.9274933 -3.1875312, 55.9290961 -3.1887496, 55.9314124 -3.1865714, 55.9315635 -3.1867361, 55.9327292 -3.1841946, 55.9335945 -3.1857897, 55.9298810 -3.1906863, 55.9322050 -3.1928865, 55.9304941 -3.1923377, 55.9259667 -3.2093706, 55.9281335 -3.2095336, 55.9303294 -3.2098783, 55.9325309 -3.2101524, 55.9312888 -3.1882004, 55.9321908 -3.2093061, 55.9333100 -3.2046099, 55.9337875 -3.2001867, 55.9342178 -3.1974967, 55.9309516 -3.2025800, 55.9352614 -3.1942899, 55.9360447 -3.1944235, 55.9385819 -3.1950517, 55.9398783 -3.1952903, 55.9366483 -3.1940225, 55.9381677 -3.1922430, 55.9397207 -3.1863782, 55.9396831 -3.1901910, 55.9415623 -3.2000095, 55.9432237 -3.2023940, 55.9346560 -3.2102493, 55.9360542 -3.2094587, 55.9371071 -3.2072084, 55.9398797 -3.2045183, 55.9413443 -3.2035998, 55.9428297 -3.2037418, 55.9312988 -3.2257047, 55.9340812 -3.2232566, 55.9363884 -3.2200155, 55.9372212 -3.2174708, 55.9385605 -3.2146951, 55.9399009 -3.2118071, 55.9409026 -3.2095928, 55.9418569 -3.2046167, 55.9451034 -3.2054205, 55.9464821 -3.2059437, 55.9479806 -3.2093194, 55.9480111 -3.2070831, 55.9492390 -3.2069040, 55.9415413 -3.1997466, 55.9397680 -3.1895210, 55.9398950 -3.1857881, 55.9443353 -3.2022970, 55.9449518 -3.1965229, 55.9507141 -3.2047476, 55.9508345 -3.2040132, 55.9509544 -3.2033403, 55.9512832 -3.2014235, 55.9513658 -3.2009238, 55.9534513 -3.1984184, 55.9545267 -3.1976404, 55.9530617 -3.1968880, 55.9525579 -3.1966188, 55.9514556 -3.1965060, 55.9502363 -3.1950715, 55.9515098 -3.1917476, 55.9518015 -3.1918652, 55.9523041 -3.1921025, 55.9487161 -3.1921254, 55.9473980 -3.1913002, 55.9475336 -3.1896852, 55.9461587 -3.1899395, 55.9461484 -3.1857678, 55.9446725 -3.1868648, 55.9426946 -3.1843831, 55.9415201 -3.1833659, 55.9523582 -3.1952481, 55.9524140 -3.1949299, 55.9530238 -3.1937098, 55.9548982 -3.1930798, 55.9531749 -3.1905850, 55.9561036 -3.1918150, 55.9566140 -3.1887839, 55.9713422 -3.2069188, 55.9776927 -3.2092865, 55.9762411 -3.2097861, 55.9749320 -3.2095049, 55.9745820 -3.2067057, 55.9732970 -3.2057714, 55.9719948 -3.2047984, 55.9718053 -3.2036348, 55.9725638 -3.1985396, 55.9733278 -3.1933986, 55.9807961 -3.2226219, 55.9803223 -3.2203380, 55.9802704 -3.2158099, 55.9804176 -3.2108942, 55.9800908 -3.2075664, 55.9799677 -3.2036199, 55.9795467 -3.1979494, 55.9778986 -3.1964721, 55.9776734 -3.1928273, 55.9756180 -3.1908614, 55.9619191 -3.1954207, 55.9597614 -3.1911416, 55.9587469 -3.1900917, 55.9574145 -3.1883681, 55.9540301 -3.1883045, 55.9542782 -3.1877994, 55.9553364 -3.1870704, 55.9555140 -3.1882376, 55.9607383 -3.1852653, 55.9588728 -3.1841437, 55.9619623 -3.1801852, 55.9633092 -3.1784891, 55.9631120 -3.1956917, 55.9641164 -3.1934996, 55.9659262 -3.1894058, 55.9647774 -3.1864708, 55.9623731 -3.1823283, 55.9676984 -3.1873293, 55.9736920 -3.1887826, 55.9727435 -3.1878363, 55.9700983 -3.1863293, 55.9686812 -3.1841284, 55.9672532 -3.1822368, 55.9655560 -3.1802465, 55.9806970 -3.1970073, 55.9808524 -3.1939509, 55.9803117 -3.1904556, 55.9799157 -3.1886011, 55.9791442 -3.1838015, 55.9773724 -3.1798230, 55.9740475 -3.1882178, 55.9745333 -3.1848625, 55.9749728 -3.1821357, 55.9692348 -3.1839771, 55.9706590 -3.1803378, 55.9722461 -3.1760338, 55.9719668 -3.1730260, 55.9760045 -3.1700682, 55.9801664 -3.1773603, 55.9800397 -3.1776022, 55.9799062 -3.1778409, 55.9788191 -3.1802177, 55.9780301 -3.1791039, 55.9771964 -3.1743509, 55.9771466 -3.1737565, 55.9765391 -3.1705490, 55.9759268 -3.1678383, 55.9755202 -3.1648177, 55.9721151 -3.1537189, 55.9641711 -3.1775450, 55.9664640 -3.1754998, 55.9681128 -3.1740918, 55.9696714 -3.1727130, 55.9711134 -3.1726962, 55.9713906 -3.1702867, 55.9729980 -3.1685221, 55.9504910 -3.1854886, 55.9510338 -3.1816628, 55.9515984 -3.1790606, 55.9524685 -3.1756629, 55.9501355 -3.1837930, 55.9500542 -3.1787108, 55.9507088 -3.1770555, 55.9507849 -3.1747798, 55.9539076 -3.1739661, 55.9537308 -3.1871585, 55.9538854 -3.1830563, 55.9534691 -3.1798335, 55.9559116 -3.1730017, 55.9561660 -3.1727051, 55.9568104 -3.1728667, 55.9579461 -3.1831271, 55.9579339 -3.1826673, 55.9578767 -3.1789396, 55.9578185 -3.1765672, 55.9577142 -3.1730479, 55.9581423 -3.1720186, 55.9605915 -3.1714539, 55.9629055 -3.1709645, 55.9641540 -3.1706475, 55.9660986 -3.1701035, 55.9680651 -3.1686162, 55.9696734 -3.1682011, 55.9733850 -3.1663395, 55.9719455 -3.1622063, 55.9649390 -3.1745777, 55.9645748 -3.1721004, 55.9644946 -3.1699298, 55.9630926 -3.1658419, 55.9633070 -3.1615949, 55.9682171 -3.1659398, 55.9660539 -3.1637920, 55.9646916 -3.1624694, 55.9628215 -3.1597221, 55.9617629 -3.1585851, 55.9597776 -3.1556585, 55.9613297 -3.1539907, 55.9691573 -3.1661209, 55.9694518 -3.1635218, 55.9630141 -3.1573889, 55.9695434 -3.1596508, 55.9674340 -3.1575049, 55.9651571 -3.1550017, 55.9656331 -3.1511869, 55.9656313 -3.1484954, 55.9634291 -3.1466359, 55.9635847 -3.1540418, 55.9622804 -3.1561015, 55.9574085 -3.1686582, 55.9573428 -3.1680155, 55.9570980 -3.1653973, 55.9573086 -3.1630811, 55.9587596 -3.1568936, 55.9592305 -3.1555460, 55.9594930 -3.1515012, 55.9699420 -3.1593102, 55.9700232 -3.1573578, 55.9617219 -3.1524164, 55.9606175 -3.1513584, 55.9573263 -3.1468079, 55.9571410 -3.1435348, 55.9566243 -3.1391790, 55.9702604 -3.1531509, 55.9737969 -3.1583519, 55.9710112 -3.1497283, 55.9692879 -3.1437169, 55.9622638 -3.1521121, 55.9624755 -3.1486902, 55.9626125 -3.1455545, 55.9612620 -3.1429355, 55.9600832 -3.1420268, 55.9588210 -3.1435684, 55.9573206 -3.1406410, 55.9591989 -3.1435154, 55.9601857 -3.1399160, 55.9602178 -3.1373142, 55.9655172 -3.1346180, 55.9625515 -3.1356365, 55.9605891 -3.1360276, 55.9582972 -3.1380268, 55.9568904 -3.1638169, 55.9561712 -3.1598115, 55.9557947 -3.1568532, 55.9551375 -3.1512278, 55.9551965 -3.1477860, 55.9552066 -3.1457361, 55.9554578 -3.1419156, 55.9558481 -3.1395406, 55.9604618 -3.1352069, 55.9609238 -3.1308953, 55.9603584 -3.1278833, 55.9576672 -3.1248964, 55.9561914 -3.1374044, 55.9564983 -3.1333450, 55.9568488 -3.1304081, 55.9573861 -3.1256986, 55.9575075 -3.1242125, 55.9530939 -3.1224190, 55.9566670 -3.1207925, 55.9566223 -3.1207752, 55.9550055 -3.1177334, 55.9534948 -3.1152918, 55.9531548 -3.1147172, 55.9522016 -3.1118231, 55.9545671 -3.1400955, 55.9529070 -3.1379006, 55.9504050 -3.1363860, 55.9478951 -3.1366968, 55.9521591 -3.1344970, 55.9514733 -3.1306358, 55.9500064 -3.1279347, 55.9482035 -3.1266012, 55.9541352 -3.1478987, 55.9518317 -3.1434104, 55.9501708 -3.1403347, 55.9492291 -3.1391700, 55.9474440 -3.1371825, 55.9462397 -3.1359437, 55.9524812 -3.1884943, 55.9517665 -3.1881346, 55.9512784 -3.1879129, 55.9489276 -3.1868532, 55.9484886 -3.1866438, 55.9457222 -3.1847309, 55.9454420 -3.1844541, 55.9459249 -3.1824225, 55.9431937 -3.1796005, 55.9415447 -3.1780319, 55.9406915 -3.1765923, 55.9430769 -3.1830456, 55.9428271 -3.1828112, 55.9413427 -3.1812830, 55.9399611 -3.1824940, 55.9375604 -3.1807719, 55.9405823 -3.1806167, 55.9393125 -3.1783897, 55.9349560 -3.1933400, 55.9364318 -3.1841475, 55.9355213 -3.1900428, 55.9359617 -3.1872388, 55.9362963 -3.1842234, 55.9369103 -3.1811043, 55.9369174 -3.1773439, 55.9348651 -3.1752487, 55.9326016 -3.1729391, 55.9307156 -3.1710012, 55.9290917 -3.1693572, 55.9269439 -3.1671709, 55.9346850 -3.1788915, 55.9328299 -3.1774425, 55.9293197 -3.1752233, 55.9275577 -3.1825611, 55.9284165 -3.1799312, 55.9291620 -3.1776194, 55.9273709 -3.1741560, 55.9249059 -3.1725771, 55.9262514 -3.1842179, 55.9246734 -3.1790517, 55.9244575 -3.1734277, 55.9261166 -3.1671560, 55.9231702 -3.1708443, 55.9403137 -3.1729254, 55.9383803 -3.1730161, 55.9368395 -3.1706322, 55.9341108 -3.1674764, 55.9325696 -3.1651250, 55.9296541 -3.1617563, 55.9271971 -3.1659721, 55.9283742 -3.1636257, 55.9302384 -3.1588606, 55.9315113 -3.1563215, 55.9335259 -3.1647215, 55.9336500 -3.1610915, 55.9329893 -3.1577742, 55.9322356 -3.1548702, 55.9323715 -3.1508247, 55.9320585 -3.1448768, 55.9324564 -3.1423049, 55.9334715 -3.1417330, 55.9371605 -3.1441148, 55.9421915 -3.1450760, 55.9435893 -3.1417424, 55.9447367 -3.1371807, 55.9258061 -3.1666267, 55.9238546 -3.1668960, 55.9213084 -3.1672356, 55.9185947 -3.1672340, 55.9157790 -3.1666214, 55.9142340 -3.1646711, 55.9130586 -3.1635319, 55.9116965 -3.1631391, 55.9174991 -3.1643209, 55.9149970 -3.1618939, 55.9136550 -3.1603178, 55.9128738 -3.1621664, 55.9090851 -3.1632404, 55.9070880 -3.1639610, 55.9042217 -3.1658426, 55.9010257 -3.1637208, 55.8996725 -3.1622995, 55.8981742 -3.1611032, 55.8961816 -3.1611818, 55.8938088 -3.1614281, 55.9011723 -3.1595293, 55.9020957 -3.1556311, 55.9029463 -3.1524165, 55.9035170 -3.1500021, 55.9118084 -3.1584580, 55.9101066 -3.1569506, 55.9084138 -3.1552983, 55.9063969 -3.1524068, 55.9054049 -3.1508738, 55.9042647 -3.1488406, 55.9003169 -3.1443415, 55.8982632 -3.1419781, 55.8958406 -3.1386765, 55.9240396 -3.1660970, 55.9233103 -3.1645912, 55.9210613 -3.1606007, 55.9188740 -3.1556833, 55.9176859 -3.1532867, 55.9149695 -3.1492635, 55.9136116 -3.1457571, 55.9148831 -3.1449609, 55.9163996 -3.1435672, 55.9188633 -3.1390654, 55.9133388 -3.1465021, 55.9134458 -3.1394164, 55.9150827 -3.1378569, 55.9165472 -3.1373313, 55.9183824 -3.1388347, 55.9116524 -3.1422642, 55.9102585 -3.1400862, 55.9087401 -3.1368944, 55.9063511 -3.1337589, 55.9038561 -3.1415666, 55.9037285 -3.1398193, 55.9046264 -3.1360067, 55.9050285 -3.1313637, 55.9041843 -3.1274042, 55.9029199 -3.1235102, 55.9000125 -3.1132722, 55.9066649 -3.1322431, 55.9081087 -3.1296137, 55.9124487 -3.1266841, 55.9285045 -3.1597852, 55.9275461 -3.1565876, 55.9232264 -3.1496095, 55.9215912 -3.1466966, 55.9211218 -3.1440263, 55.9183485 -3.1349359, 55.9150244 -3.1447410, 55.9135589 -3.1456275, 55.9151883 -3.1287635, 55.9137742 -3.1261785, 55.9327215 -3.1402382, 55.9329222 -3.1379711, 55.9327641 -3.1346917, 55.9324727 -3.1331238, 55.9319582 -3.1294592, 55.9305181 -3.1267762, 55.9293936 -3.1231475, 55.9328743 -3.1275489, 55.9337366 -3.1236521, 55.9342426 -3.1203851, 55.9340574 -3.1179891, 55.9339027 -3.1152528, 55.9458672 -3.1344436, 55.9470928 -3.1301399, 55.9478743 -3.1252625, 55.9483048 -3.1223925, 55.9434695 -3.1313473, 55.9413212 -3.1275061, 55.9388161 -3.1253361, 55.9426890 -3.1272897, 55.9429617 -3.1230065, 55.9472040 -3.1258516, 55.9452097 -3.1238242, 55.9435147 -3.1224781, 55.9408637 -3.1194718, 55.9407244 -3.1160733, 55.9433746 -3.1193395, 55.9344133 -3.1144351, 55.9357843 -3.1148587, 55.9380236 -3.1152253, 55.9392495 -3.1151223, 55.9411150 -3.1156042, 55.9426971 -3.1165303, 55.9389787 -3.1123728, 55.9395400 -3.1082678, 55.9397389 -3.1057825, 55.9468361 -3.1188912, 55.9498521 -3.1192344, 55.9513654 -3.1168438, 55.9525057 -3.1149548, 55.9517068 -3.1098871, 55.9507964 -3.1062097, 55.9500163 -3.1030166, 55.9493234 -3.1001144, 55.9488748 -3.0949933, 55.9487100 -3.0912894, 55.9184116 -3.2249619, 55.9485886 -3.0867221, 55.9487029 -3.0870136, 55.9477970 -3.0827446, 55.9440627 -3.1122184, 55.9443608 -3.1094208, 55.9442841 -3.1059600, 55.9444109 -3.1008238, 55.9448284 -3.0964920, 55.9452578 -3.0934432, 55.9457972 -3.0904389, 55.9463270 -3.0874274, 55.9467525 -3.0840125, 55.9466644 -3.0817683, 55.9327730 -3.1139878, 55.9337031 -3.1104929, 55.9336271 -3.1089539, 55.9348872 -3.1022740, 55.9333574 -3.1019670, 55.9338002 -3.0996745, 55.9345981 -3.0938221, 55.9351027 -3.0906187, 55.9358019 -3.0877568, 55.9369793 -3.0856927, 55.9182126 -3.2268918, 55.9195407 -3.2387433, 55.9191616 -3.2381110, 55.9851761 -3.1897689, 55.9828922 -3.1939496, 55.9814659 -3.1909085, 55.9365429 -3.0862728, 55.9358310 -3.0875175, 55.9348857 -3.0916731, 55.9345115 -3.0934515, 55.9337249 -3.0919727, 55.9335685 -3.0996143, 55.9332608 -3.1017081, 55.9347718 -3.1031813, 55.9334621 -3.1083249, 55.9335903 -3.1110499, 55.9327294 -3.1138425, 55.9465275 -3.0820046, 55.9465931 -3.0847607, 55.9460980 -3.0879174, 55.9454827 -3.0914549, 55.9448685 -3.0948482, 55.9443970 -3.0990533, 55.9441321 -3.1058756, 55.9441375 -3.1102630, 55.9438700 -3.1130254, 55.9436640 -3.1149409, 55.9469740 -3.0812965, 55.9480459 -3.0840647, 55.9484863 -3.0881285, 55.9485396 -3.0912526, 55.9487362 -3.0944129, 55.9492575 -3.1004488, 55.9322565 -3.1611619, 55.9322142 -3.1627933, 55.9333600 -3.1647608, 55.9500203 -3.1035773, 55.9508004 -3.1067703, 55.9515630 -3.1098990, 55.9521088 -3.1121407, 55.9516506 -3.1161153, 55.9486979 -3.1196816, 55.9464983 -3.1184812, 55.9442902 -3.1172326, 55.9405943 -3.1155572, 55.9411746 -3.1209215, 55.9449944 -3.1237859, 55.9387816 -3.1046926, 55.9386947 -3.1052026, 55.9395300 -3.1060327, 55.9394153 -3.1085088, 55.9387324 -3.1127820, 55.9417785 -3.1157674, 55.9407328 -3.1151449, 55.9390990 -3.1149699, 55.9351824 -3.1147189, 55.9343168 -3.1141762, 55.9430442 -3.1208634, 55.9454379 -3.1244233, 55.9426315 -3.1257189, 55.9375420 -3.1241465, 55.9385017 -3.1253270, 55.9410608 -3.1274826, 55.9426698 -3.1303633, 55.9437932 -3.1325388, 55.9489148 -3.1205366, 55.9474434 -3.1271876, 55.9465923 -3.1318067, 55.9338651 -3.1168303, 55.9340391 -3.1200271, 55.9336765 -3.1233462, 55.9326166 -3.1282137, 55.9302325 -3.1265598, 55.9321246 -3.1306062, 55.9324674 -3.1336999, 55.9326522 -3.1394240, 55.9139400 -3.1267273, 55.9185387 -3.1356912, 55.9155121 -3.1296735, 55.9215921 -3.1375193, 55.9187972 -3.1389581, 55.9208845 -3.1434592, 55.9217098 -3.1474682, 55.9238711 -3.1508128, 55.9272641 -3.1560030, 55.9283368 -3.1617553, 55.9124056 -3.1264908, 55.9081402 -3.1291187, 55.9069794 -3.1312605, 55.9001501 -3.1143357, 55.9028163 -3.1241578, 55.9042957 -3.1285179, 55.9052763 -3.1323346, 55.9053399 -3.1346359, 55.9036494 -3.1376896, 55.9036449 -3.1401208, 55.9040533 -3.1435558, 55.9041279 -3.1471250, 55.9085559 -3.1368622, 55.9163352 -3.1434213, 55.9098097 -3.1396048, 55.9173894 -3.1366200, 55.9163322 -3.1372610, 55.9143183 -3.1373781, 55.9137779 -3.1345943, 55.9132135 -3.1402416, 55.9122286 -3.1444287, 55.9135327 -3.1472625, 55.9150704 -3.1497274, 55.9174499 -3.1530936, 55.9186680 -3.1556511, 55.9195122 -3.1576477, 55.9211555 -3.1609401, 55.9230253 -3.1643266, 55.9239711 -3.1662740, 55.8958061 -3.1375560, 55.8981045 -3.1419933, 55.9001346 -3.1443537, 55.9045252 -3.1498080, 55.9057028 -3.1516824, 55.9070754 -3.1538016, 55.9089055 -3.1560807, 55.9102064 -3.1572552, 55.9121326 -3.1588165, 55.9031764 -3.1508718, 55.9022551 -3.1544616, 55.9012747 -3.1581888, 55.8938714 -3.1619022, 55.8995925 -3.1622011, 55.8998476 -3.1627845, 55.9010755 -3.1640688, 55.9035000 -3.1661408, 55.9058085 -3.1652823, 55.9073292 -3.1641122, 55.9091429 -3.1634886, 55.9115595 -3.1633750, 55.9145960 -3.1615459, 55.9178537 -3.1648276, 55.9135281 -3.1642499, 55.9153239 -3.1662878, 55.9181514 -3.1675567, 55.9209916 -3.1674821, 55.9238706 -3.1671045, 55.9259533 -3.1668815, 55.9451610 -3.1359397, 55.9436407 -3.1410394, 55.9429081 -3.1432174, 55.9371271 -3.1438416, 55.9336787 -3.1416750, 55.9323444 -3.1421480, 55.9318072 -3.1458138, 55.9320983 -3.1502563, 55.9327321 -3.1574144, 55.9334320 -3.1603807, 55.9335825 -3.1625302, 55.9310551 -3.1569770, 55.9299760 -3.1590609, 55.9276757 -3.1645867, 55.9301942 -3.1626048, 55.9335171 -3.1665942, 55.9352278 -3.1690789, 55.9362943 -3.1703276, 55.9380056 -3.1727326, 55.9234523 -3.1714129, 55.9257061 -3.1677999, 55.9243710 -3.1740173, 55.9222245 -3.1769786, 55.9245930 -3.1795592, 55.9250644 -3.1729179, 55.9281383 -3.1747234, 55.9294062 -3.1765064, 55.9284436 -3.1795355, 55.9274586 -3.1825436, 55.9304679 -3.1763625, 55.9324076 -3.1774297, 55.9349862 -3.1793489, 55.9365575 -3.1804052, 55.9273238 -3.1678350, 55.9287603 -3.1693022, 55.9308016 -3.1713795, 55.9333761 -3.1740032, 55.9345443 -3.1751968, 55.9359412 -3.1766219, 55.9378596 -3.1785699, 55.9371680 -3.1785827, 55.9364376 -3.1835393, 55.9361605 -3.1852598, 55.9350575 -3.1868910, 55.9334041 -3.1850316, 55.9327512 -3.1837791, 55.9316014 -3.1856008, 55.9357290 -3.1880801, 55.9352794 -3.1908999, 55.9347514 -3.1934610, 55.9392124 -3.1781004, 55.9403904 -3.1806688, 55.9380758 -3.1813799, 55.9406842 -3.1776524, 55.9417310 -3.1818531, 55.9432691 -3.1832993, 55.9401121 -3.1759873, 55.9416881 -3.1786246, 55.9430330 -3.1796430, 55.9442893 -3.1810875, 55.9456619 -3.1831172, 55.9457698 -3.1849764, 55.9488929 -3.1870504, 55.9492763 -3.1872419, 55.9513723 -3.1882358, 55.9521151 -3.1886009, 55.9460412 -3.1360340, 55.9477331 -3.1377009, 55.9495818 -3.1399010, 55.9506764 -3.1410542, 55.9529056 -3.1458123, 55.9536640 -3.1473562, 55.9479602 -3.1266742, 55.9498886 -3.1280595, 55.9515212 -3.1312938, 55.9520218 -3.1344697, 55.9483951 -3.1370477, 55.9507527 -3.1366844, 55.9527612 -3.1381206, 55.9550194 -3.1407335, 55.9535321 -3.1157210, 55.9534084 -3.1154933, 55.9549542 -3.1180265, 55.9567874 -3.1213887, 55.9572446 -3.1258367, 55.9570083 -3.1277058, 55.9565426 -3.1314563, 55.9562689 -3.1348439, 55.9576607 -3.1251460, 55.9601254 -3.1278125, 55.9606760 -3.1314648, 55.9603409 -3.1346748, 55.9537924 -3.1226794, 55.9566744 -3.1386198, 55.9585592 -3.1378743, 55.9609292 -3.1361657, 55.9631511 -3.1359104, 55.9653780 -3.1350945, 55.9601011 -3.1372948, 55.9600487 -3.1400484, 55.9564001 -3.1391243, 55.9573867 -3.1412676, 55.9587207 -3.1437256, 55.9586697 -3.1434197, 55.9592475 -3.1440935, 55.9606921 -3.1423741, 55.9622214 -3.1450944, 55.9623357 -3.1492308, 55.9611520 -3.1537771, 55.9617355 -3.1586323, 55.9598518 -3.1573266, 55.9616167 -3.1588370, 55.9668014 -3.1337263, 55.9690756 -3.1433581, 55.9704333 -3.1519544, 55.9700124 -3.1556431, 55.9558380 -3.1386914, 55.9550460 -3.1447760, 55.9550213 -3.1476460, 55.9550728 -3.1523790, 55.9548118 -3.1629421, 55.9555903 -3.1566068, 55.9563198 -3.1613807, 55.9566895 -3.1639274, 55.9611674 -3.1521276, 55.9593457 -3.1509202, 55.9591348 -3.1552068, 55.9579853 -3.1583596, 55.9574531 -3.1601382, 55.9572537 -3.1679186, 55.9620617 -3.1535479, 55.9621329 -3.1564976, 55.9625914 -3.1535957, 55.9643118 -3.1546889, 55.9658854 -3.1559206, 55.9678849 -3.1582874, 55.9636025 -3.1550195, 55.9627401 -3.1578613, 55.9697011 -3.1609259, 55.9692382 -3.1643280, 55.9634122 -3.1609252, 55.9648755 -3.1629309, 55.9664000 -3.1642510, 55.9684815 -3.1664925, 55.9631222 -3.1611889, 55.9632266 -3.1663024, 55.9643722 -3.1699129, 55.9644808 -3.1717362, 55.9649261 -3.1753058, 55.9702256 -3.1606806, 55.9721901 -3.1629507, 55.9734772 -3.1676223, 55.9730686 -3.1650762, 55.9694878 -3.1680589, 55.9692232 -3.1683674, 55.9700545 -3.1702250, 55.9680366 -3.1683145, 55.9662435 -3.1698675, 55.9641358 -3.1704804, 55.9611738 -3.1711284, 55.9586476 -3.1715948, 55.9575346 -3.1733551, 55.9576423 -3.1767165, 55.9577127 -3.1801199, 55.9577689 -3.1829548, 55.9564976 -3.1718502, 55.9560238 -3.1725406, 55.9598986 -3.1836144, 55.9533445 -3.1792984, 55.9538702 -3.1838294, 55.9538082 -3.1860623, 55.9537460 -3.1864288, 55.9536090 -3.1872578, 55.9570795 -3.1725344, 55.9560575 -3.1718369, 55.9542177 -3.1734790, 55.9505239 -3.1770528, 55.9471148 -3.1782693, 55.9486335 -3.1780633, 55.9498991 -3.1788399, 55.9488002 -3.1790809, 55.9492792 -3.1822951, 55.9501804 -3.1839664, 55.9512348 -3.1865851, 55.9510428 -3.1899310, 55.9517661 -3.1736932, 55.9521941 -3.1764060, 55.9513995 -3.1796348, 55.9508278 -3.1825636, 55.9503437 -3.1858623, 55.9739384 -3.1675454, 55.9716823 -3.1695986, 55.9710945 -3.1729414, 55.9696926 -3.1723772, 55.9675371 -3.1742485, 55.9652851 -3.1761642, 55.9753350 -3.1670805, 55.9767364 -3.1725205, 55.9772973 -3.1758604, 55.9779032 -3.1792122, 55.9750843 -3.1712339, 55.9738978 -3.1727490, 55.9719290 -3.1728798, 55.9722046 -3.1746804, 55.9721384 -3.1759763, 55.9697936 -3.1815612, 55.9747119 -3.1831053, 55.9743289 -3.1855614, 55.9787681 -3.1799116, 55.9803325 -3.1776103, 55.9802536 -3.1818535, 55.9807529 -3.1767871, 55.9784516 -3.1820015, 55.9794446 -3.1861987, 55.9799416 -3.1897567, 55.9807036 -3.1944752, 55.9805155 -3.1971940, 55.9657942 -3.1807024, 55.9675800 -3.1828235, 55.9684568 -3.1840135, 55.9716943 -3.1876119, 55.9725807 -3.1879435, 55.9687365 -3.1849738, 55.9675923 -3.1871498, 55.9659016 -3.1891647, 55.9642904 -3.1922393, 55.9635860 -3.1943270, 55.9622037 -3.1793755, 55.9627392 -3.1787031, 55.9618397 -3.1798451, 55.9622890 -3.1826621, 55.9645359 -3.1863513, 55.9587684 -3.1837830, 55.9585718 -3.1839897, 55.9556859 -3.1866515, 55.9540735 -3.1877177, 55.9572218 -3.1884308, 55.9597602 -3.1915275, 55.9606648 -3.1931837, 55.9618206 -3.1955056, 55.9620775 -3.1961605, 55.9744173 -3.1897628, 55.9757115 -3.1912766, 55.9778758 -3.1932662, 55.9778282 -3.1960220, 55.9796119 -3.1977110, 55.9798541 -3.2042094, 55.9801147 -3.2088012, 55.9803840 -3.2115662, 55.9801054 -3.2161413, 55.9802572 -3.2206212, 55.9808168 -3.2232477, 55.9737117 -3.1899332, 55.9731967 -3.1935301, 55.9724352 -3.1987820, 55.9716446 -3.2041100, 55.9719126 -3.2049401, 55.9731446 -3.2058360, 55.9748834 -3.2071317, 55.9763183 -3.2083302, 55.9712913 -3.2063993, 55.9564422 -3.1886008, 55.9516360 -3.1915621, 55.9511728 -3.1894775, 55.9513768 -3.1853034, 55.9530038 -3.1904535, 55.9529734 -3.1906361, 55.9550011 -3.1944896, 55.9523721 -3.1941529, 55.9522306 -3.1949546, 55.9521243 -3.1955713, 55.9413619 -3.1834545, 55.9439756 -3.1855145, 55.9457447 -3.1858708, 55.9459185 -3.1889928, 55.9462149 -3.1911216, 55.9474608 -3.1915894, 55.9483990 -3.1921221, 55.9491051 -3.1925562, 55.9499555 -3.1941302, 55.9513921 -3.1967362, 55.9563095 -3.1988813, 55.9543603 -3.1978922, 55.9530372 -3.1971862, 55.9518480 -3.1998550, 55.9512810 -3.2003210, 55.9511317 -3.2011985, 55.9510603 -3.2016272, 55.9507178 -3.2036019, 55.9505841 -3.2043884, 55.9451215 -3.1923158, 55.9448465 -3.1948923, 55.9448398 -3.1982337, 55.9495373 -3.2067189, 55.9492326 -3.2066015, 55.9483042 -3.2035260, 55.9477777 -3.2074310, 55.9470945 -3.2058026, 55.9462523 -3.2055522, 55.9451884 -3.2051208, 55.9428068 -3.2035039, 55.9425641 -3.2034299, 55.9417455 -3.2046015, 55.9407315 -3.2096840, 55.9393435 -3.2127503, 55.9381500 -3.2153226, 55.9368830 -3.2180525, 55.9360677 -3.2206086, 55.9338713 -3.2232572, 55.9413134 -3.2033814, 55.9391987 -3.2046868, 55.9364506 -3.2080648, 55.9348230 -3.2100408, 55.9431515 -3.2018817, 55.9380639 -3.1919459, 55.9368177 -3.1935085, 55.9393298 -3.1949761, 55.9378804 -3.1946691, 55.9368007 -3.1944119, 55.9352311 -3.1940360, 55.9308908 -3.2069640, 55.9343964 -3.1957873, 55.9338607 -3.1991324, 55.9332178 -3.2042350, 55.9316658 -3.2098633, 55.9255180 -3.2092824, 55.9343401 -3.1937110, 55.9324314 -3.1928183, 55.9307981 -3.1906344, 55.9288165 -3.1883328, 55.9268551 -3.1866336, 55.9262609 -3.1868462, 55.9260332 -3.1918166, 55.9260226 -3.1956894, 55.9252810 -3.2008040, 55.9245993 -3.2043518, 55.9245810 -3.2080642, 55.9241842 -3.2109485, 55.9228987 -3.2146532, 55.9225156 -3.2170578, 55.9221869 -3.2212083, 55.9206392 -3.2214316, 55.9191376 -3.2215284, 55.9166716 -3.2237230, 55.9166491 -3.2286985, 55.9224516 -3.2109624, 55.9207784 -3.2118825, 55.9192136 -3.2133503, 55.9176425 -3.2164250, 55.9150152 -3.2167748, 55.9131617 -3.2179327, 55.9117618 -3.2186153, 55.9105601 -3.2202188, 55.9089266 -3.2227432, 55.9076164 -3.2261893, 55.8999546 -3.1638273, 55.8995340 -3.1702762, 55.8996425 -3.1730463, 55.8989771 -3.1908750, 55.8989296 -3.1948559, 55.8992800 -3.1976335, 55.9004541 -3.2016363, 55.9185850 -3.2128862, 55.9174509 -3.2130748, 55.9153185 -3.2133602, 55.9128108 -3.2134259, 55.9111623 -3.2120145, 55.9091712 -3.2098087, 55.9068224 -3.2083279, 55.9036702 -3.2062550, 55.9022918 -3.2048441, 55.8993754 -3.2039298, 55.8975587 -3.2035692, 55.9017236 -3.2059781, 55.9020682 -3.2084040, 55.9020822 -3.2133788, 55.9020983 -3.2181138, 55.9024927 -3.2209412, 55.9538170 -3.2010786, 55.9557714 -3.2021464, 55.9519898 -3.2056255, 55.9506446 -3.2093738, 55.9504970 -3.2090293, 55.9515635 -3.2119466, 55.9590112 -3.1954889, 55.9578837 -3.1987058, 55.9569531 -3.2042594, 55.9573600 -3.2073453, 55.9581370 -3.1998753, 55.9595344 -3.2006164, 55.9611948 -3.1982635, 55.9612444 -3.2015410, 55.9622843 -3.2005526, 55.9634933 -3.2012181, 55.9646539 -3.2129972, 55.9654477 -3.2035216, 55.9669436 -3.2050472, 55.9683045 -3.2063198, 55.9696149 -3.2076181, 55.9706091 -3.2085738, 55.9709352 -3.2119099, 55.9704174 -3.2167020, 55.9701671 -3.2188738, 55.9696091 -3.2244001, 55.9693067 -3.2276608, 55.9689314 -3.2315056, 55.9685250 -3.2348925, 55.9712946 -3.2144423, 55.9732621 -3.2150362, 55.9756585 -3.2157626, 55.9775440 -3.2163025, 55.9765164 -3.2203214, 55.9757819 -3.2253483, 55.9756463 -3.2272350, 55.9771543 -3.2210647, 55.9785634 -3.2239458, 55.9787849 -3.2278793, 55.9785446 -3.2303558, 55.9754414 -3.2324687, 55.9752064 -3.2352977, 55.9792990 -3.2131670, 55.9800457 -3.2230791, 55.9804847 -3.2259297, 55.9806269 -3.2293776, 55.9765935 -3.2304701, 55.9784683 -3.2325970, 55.9778127 -3.2361500, 55.9772858 -3.2385050, 55.9602477 -3.2031604, 55.9599422 -3.2050807, 55.9584545 -3.2079471, 55.9589660 -3.2114386, 55.9592891 -3.2157462, 55.9577015 -3.2172967, 55.9592592 -3.2207431, 55.9587913 -3.2241128, 55.9573790 -3.2117285, 55.9566490 -3.2146849, 55.9557623 -3.2162108, 55.9543230 -3.2154609, 55.9551079 -3.2193216, 55.9577741 -3.2253880, 55.9599993 -3.2284217, 55.9618699 -3.2309640, 55.9632492 -3.2339433, 55.9633694 -3.2324315, 55.9664241 -3.2347134, 55.9694408 -3.2367643, 55.9731091 -3.2383395, 55.9751261 -3.2388206, 55.9767114 -3.2393360, 55.9788284 -3.2423686, 55.9765998 -3.2429397, 55.9764404 -3.2466030, 55.9753612 -3.2528982, 55.9778044 -3.2565189, 55.9775609 -3.2662709, 55.9779349 -3.2692159, 55.9682289 -3.2375427, 55.9678257 -3.2418878, 55.9673384 -3.2465506, 55.9672975 -3.2372246, 55.9661966 -3.2376861, 55.9633638 -3.2388133, 55.9618160 -3.2413074, 55.9608667 -3.2458460, 55.9605217 -3.2524027, 55.9606097 -3.2561219, 55.9578389 -3.2295517, 55.9572859 -3.2327712, 55.9565236 -3.2376280, 55.9548640 -3.2243511, 55.9546493 -3.2287648, 55.9546692 -3.2357647, 55.9552559 -3.2390179, 55.9562727 -3.2434691, 55.9509150 -3.2138808, 55.9498016 -3.2162253, 55.9493877 -3.2175003, 55.9495686 -3.2189589, 55.9505731 -3.2230145, 55.9514713 -3.2255762, 55.9527412 -3.2281759, 55.9524215 -3.2305040, 55.9518539 -3.2342496, 55.9515204 -3.2370417, 55.9556231 -3.2445563, 55.9534575 -3.2436700, 55.9507021 -3.2442383, 55.9504559 -3.2472572, 55.9503401 -3.2498159, 55.9481068 -3.2476301, 55.9460978 -3.2508001, 55.9571515 -3.2489141, 55.9583681 -3.2521089, 55.9593674 -3.2545759, 55.9601292 -3.2565389, 55.9602989 -3.2584026, 55.9613231 -3.2619280, 55.9597973 -3.2591231, 55.9598916 -3.2622018, 55.9597990 -3.2668442, 55.9579196 -3.2678560, 55.9625566 -3.2713077, 55.9620642 -3.2641468, 55.9631875 -3.2650165, 55.9645665 -3.2681054, 55.9612273 -3.2475075, 55.9627641 -3.2483740, 55.9655873 -3.2499869, 55.9677421 -3.2492713, 55.9694716 -3.2506410, 55.9715923 -3.2523918, 55.9723523 -3.2534784, 55.9719651 -3.2590216, 55.9721512 -3.2610306, 55.9736573 -3.2534520, 55.9738185 -3.2535053, 55.9746114 -3.2552767, 55.9739088 -3.2596296, 55.9732957 -3.2633433, 55.9726441 -3.2672961, 55.9719985 -3.2715213, 55.9666249 -3.2528329, 55.9661313 -3.2556920, 55.9657429 -3.2611747, 55.9661436 -3.2650328, 55.9669045 -3.2679416, 55.9682263 -3.2696030, 55.9694054 -3.2705672, 55.9655849 -3.2678183, 55.9654369 -3.2708414, 55.9653772 -3.2731465, 55.9667898 -3.2764453, 55.9657775 -3.2744093, 55.9684197 -3.2787100, 55.9702703 -3.2813508, 55.9731093 -3.2874377, 55.9729198 -3.2952352, 55.9745355 -3.2979654, 55.9753143 -3.2999465, 55.9731404 -3.3041361, 55.9715725 -3.3062465, 55.9687840 -3.3073703, 55.9698187 -3.3067247, 55.9715389 -3.2992270, 55.9665978 -3.3076170, 55.9630646 -3.3069371, 55.9614840 -3.3060028, 55.9636839 -3.2735235, 55.9617919 -3.2652914, 55.9620711 -3.2678476, 55.9622731 -3.2700489, 55.9625577 -3.2755530, 55.9613943 -3.2821462, 55.9585894 -3.2795552, 55.9617795 -3.2842000, 55.9610464 -3.2903852, 55.9605635 -3.2944540, 55.9602624 -3.3000026, 55.9604971 -3.3033104, 55.9576021 -3.3076981, 55.9609343 -3.3086915, 55.9625535 -3.3144333, 55.9650880 -3.3178766, 55.9679579 -3.3215985, 55.9717087 -3.3296458, 55.9793970 -3.3726056, 55.9876225 -3.4053402, 55.9796650 -3.3475006, 55.9841890 -3.3585897, 55.9841576 -3.3630607, 55.9822616 -3.3735887, 55.9865963 -3.3764995, 55.9867144 -3.3820021, 55.9871401 -3.3873073, 55.9874589 -3.3909095, 55.9870411 -3.3960723, 55.9907091 -3.3983046, 55.9901075 -3.4037978, 55.9900975 -3.3975611, 55.9863873 -3.3966739, 55.9843886 -3.3962171, 55.9891253 -3.4109545, 55.9882163 -3.4151592, 55.9866294 -3.4191943, 55.9847835 -3.4128218, 55.9842063 -3.4098674, 55.9827390 -3.3942984, 55.9821321 -3.3899489, 55.9822851 -3.3883355, 55.9828080 -3.3849883, 55.9492297 -3.1934848, 55.9485101 -3.1950625, 55.9466052 -3.2025367, 55.9483763 -3.1903144, 55.9458867 -3.2015396, 55.9450777 -3.2041637, 55.9434137 -3.2080661, 55.9424851 -3.2120231, 55.9411818 -3.2158659, 55.9413277 -3.2188601, 55.9456681 -3.2081800, 55.9460697 -3.2125273, 55.9496579 -3.2091165, 55.9491712 -3.2102205, 55.9478015 -3.2132758, 55.9458699 -3.2215692, 55.9458558 -3.2248034, 55.9457052 -3.2281933, 55.9455773 -3.2302069, 55.9458663 -3.2359237, 55.9455816 -3.2405353, 55.9455000 -3.2414934, 55.9451612 -3.2452583, 55.9445781 -3.2509113, 55.9415174 -3.2514531, 55.9397225 -3.2512351, 55.9445971 -3.2523768, 55.9432896 -3.2591959, 55.9423640 -3.2644657, 55.9420784 -3.2677707, 55.9416489 -3.2710870, 55.9418636 -3.2748424, 55.9422212 -3.2779592, 55.9426632 -3.2817824, 55.9430420 -3.2868775, 55.9428655 -3.2912301, 55.9449232 -3.2940603, 55.9472006 -3.2945366, 55.9486955 -3.2950830, 55.9512965 -3.2964030, 55.9531823 -3.2973789, 55.9539468 -3.2964595, 55.9547471 -3.2929786, 55.9555149 -3.2883112, 55.9557800 -3.2861577, 55.9562439 -3.2830337, 55.9566686 -3.2802126, 55.9545585 -3.2783331, 55.9513042 -3.2784661, 55.9485655 -3.2791445, 55.9575519 -3.2997035, 55.9422013 -3.2956988, 55.9417161 -3.2991090, 55.9413296 -3.3025225, 55.9409367 -3.3073767, 55.9406682 -3.3114984, 55.9417940 -3.3129455, 55.9478442 -3.3143833, 55.9494570 -3.3122920, 55.9498066 -3.3088206, 55.9517191 -3.3074357, 55.9542153 -3.3070451, 55.9412755 -3.3160661, 55.9425036 -3.3188618, 55.9451319 -3.3243154, 55.9468180 -3.3279600, 55.9497433 -3.3349945, 55.9512870 -3.3409573, 55.9515812 -3.3469413, 55.9188475 -3.3142913, 55.9230531 -3.3784073, 55.9214617 -3.3800951, 55.9215057 -3.3809769, 55.9206547 -3.3847393, 55.9205292 -3.3887035, 55.9087321 -3.4067755, 55.9219922 -3.3892326, 55.9211811 -3.3906632, 55.9387400 -3.3254261, 55.9365641 -3.3371827, 55.9353684 -3.3322588, 55.9366259 -3.3521055, 55.9385758 -3.3586963, 55.9434911 -3.3610874, 55.9410783 -3.3688003, 55.9389078 -3.3558459, 55.9483246 -3.3636111, 55.9483490 -3.3626191, 55.9483659 -3.3626754, 55.9483241 -3.3625360, 55.9483051 -3.3624727, 55.9367999 -3.3577973, 55.9482658 -3.3623417, 55.9482321 -3.3622291, 55.9481974 -3.3621136, 55.9481583 -3.3619833, 55.9376105 -3.3671090, 55.9481182 -3.3618496, 55.9480884 -3.3617501, 55.9480530 -3.3616322, 55.9480146 -3.3615042, 55.9479823 -3.3613965, 55.9380851 -3.3737218, 55.9386598 -3.3897845, 55.9377706 -3.3913376, 55.9369683 -3.3915650, 55.9388978 -3.3997195, 55.9378057 -3.4080213, 55.9397489 -3.4080649, 55.9479626 -3.3613307, 55.9479431 -3.3612657, 55.9479282 -3.3612161, 55.9479066 -3.3611442, 55.9407080 -3.4096156, 55.9460331 -3.4132676, 55.9528355 -3.4046126, 55.9538869 -3.4028390, 55.9553388 -3.4014279, 55.9560834 -3.4032868, 55.9564934 -3.4059446, 55.9565314 -3.4128336, 55.9456796 -3.2170439, 55.9455214 -3.2171400, 55.9425730 -3.2214556, 55.9413678 -3.2230988, 55.9395990 -3.2256413, 55.9390979 -3.2257588, 55.9386491 -3.2239035, 55.9387242 -3.2262914, 55.9367349 -3.2275413, 55.9351448 -3.2311496, 55.9252015 -3.2107562, 55.9253987 -3.2135471, 55.9249840 -3.2155027, 55.9244926 -3.2215848, 55.9258313 -3.2243157, 55.9285042 -3.2239038, 55.9334398 -3.2118455, 55.9314723 -3.2172745, 55.9308274 -3.2197833, 55.9296136 -3.2243870, 55.9304433 -3.2249894, 55.9325555 -3.2285456, 55.9307023 -3.2260540, 55.9286787 -3.2280388, 55.9279324 -3.2298879, 55.9257645 -3.2337083, 55.9229368 -3.2370112, 55.9213123 -3.2386078, 55.9336198 -3.2343954, 55.9336115 -3.2344115, 55.9306860 -3.2384586, 55.9294123 -3.2400186, 55.9280488 -3.2415756, 55.9271722 -3.2429560, 55.9250339 -3.2455923, 55.9232151 -3.2477265, 55.9218937 -3.2433312, 55.9191327 -3.2408905, 55.9174821 -3.2416601, 55.9155442 -3.2403119, 55.9122777 -3.2380957, 55.9122601 -3.2380632, 55.9100844 -3.2345862, 55.9085928 -3.2291957, 55.9064805 -3.2256576, 55.9059136 -3.2239281, 55.9055130 -3.2235475, 55.9051874 -3.2237612, 55.9042466 -3.2225799, 55.9012188 -3.2216370, 55.9009964 -3.2259325, 55.9011654 -3.2224830, 55.9038972 -3.2233847, 55.9038681 -3.2263110, 55.9038755 -3.2309659, 55.9044653 -3.2366791, 55.9057286 -3.2432938, 55.9341148 -3.0936004, 55.9132235 -3.2441097, 55.9112979 -3.2479197, 55.9088099 -3.2513593, 55.9079240 -3.2536503, 55.9075266 -3.2503101, 55.9064316 -3.2475235, 55.9052864 -3.2496942, 55.9064491 -3.2528829, 55.9075503 -3.2541662, 55.9065856 -3.2580063, 55.9013113 -3.2588432, 55.9041193 -3.2619254, 55.9033613 -3.2657397, 55.9029773 -3.2681264, 55.9011080 -3.2681454, 55.8997717 -3.2704607, 55.9071539 -3.2586645, 55.9071090 -3.2674294, 55.9345120 -3.2341784, 55.9362852 -3.2365721, 55.9387653 -3.2284860, 55.9378215 -3.2321064, 55.9372383 -3.2347134, 55.9363561 -3.2402404, 55.9340199 -3.2444985, 55.9369187 -3.2398280, 55.9390173 -3.2409979, 55.9404615 -3.2385624, 55.9374075 -3.2429156, 55.9358564 -3.2453451, 55.9347466 -3.2465763, 55.9329425 -3.2463743, 55.9322531 -3.2487853, 55.9318154 -3.2503079, 55.9306922 -3.2538412, 55.9297023 -3.2575067, 55.9295709 -3.2606877, 55.9368265 -3.2497169, 55.9354514 -3.2532746, 55.9338935 -3.2571302, 55.9329021 -3.2591791, 55.9282277 -3.2654938, 55.9332232 -3.2620549, 55.9335359 -3.2657309, 55.9324873 -3.2715714, 55.9235566 -3.2517874, 55.9252370 -3.2583224, 55.9250412 -3.2634054, 55.9253327 -3.2670045, 55.9256990 -3.2693485, 55.9259551 -3.2716316, 55.9273067 -3.2711617, 55.9310201 -3.2735562, 55.9312253 -3.2770271, 55.9309727 -3.2807258, 55.9305956 -3.2824260, 55.9341348 -3.2764919, 55.9359415 -3.2790327, 55.9384695 -3.2804768, 55.9404129 -3.2844133, 55.9399151 -3.2882897, 55.9400197 -3.2915504, 55.9262292 -3.2831711, 55.9285408 -3.2847270, 55.9332649 -3.2879535, 55.9363412 -3.2906844, 55.9383402 -3.2926493, 55.9419631 -3.2931250, 55.9235128 -3.2826349, 55.9228999 -3.2862368, 55.9222758 -3.2502543, 55.9208367 -3.2545312, 55.9187043 -3.2583187, 55.9163065 -3.2599371, 55.9149834 -3.2610302, 55.9248456 -3.2596861, 55.9229556 -3.2617372, 55.9216262 -3.2634383, 55.9192373 -3.2650568, 55.9168804 -3.2644360, 55.9145188 -3.2625192, 55.9130499 -3.2629354, 55.9118773 -3.2651211, 55.9098652 -3.2685432, 55.9083877 -3.2706547, 55.9075292 -3.2737300, 55.9059536 -3.2783654, 55.9047878 -3.2815902, 55.9039296 -3.2837533, 55.9045093 -3.2858999, 55.9023366 -3.2891550, 55.9033691 -3.2849345, 55.9017224 -3.2894546, 55.9003774 -3.2943202, 55.8990734 -3.2986221, 55.8974456 -3.3030667, 55.8967760 -3.3060509, 55.9089844 -3.2729139, 55.9243397 -3.2678317, 55.9222409 -3.2735564, 55.9194599 -3.2731131, 55.9222182 -3.2722754, 55.9203149 -3.2712369, 55.9180945 -3.2739325, 55.9200764 -3.2810447, 55.9193096 -3.2754765, 55.9173795 -3.2761652, 55.9124636 -3.2770917, 55.9111903 -3.2811615, 55.9140301 -3.2768072, 55.9169695 -3.2793039, 55.9182065 -3.2899377, 55.9174875 -3.2823698, 55.9180111 -3.2982681, 55.9177938 -3.2950125, 55.9186001 -3.2901108, 55.9199001 -3.2912422, 55.9207503 -3.2949991, 55.9201416 -3.2964830, 55.9192788 -3.2990625, 55.9164383 -3.2854468, 55.9163450 -3.2857797, 55.9138800 -3.2912021, 55.9109496 -3.2912967, 55.9114544 -3.2877137, 55.9095492 -3.2825632, 55.9164543 -3.2856393, 55.9164165 -3.2858141, 55.9145344 -3.2869570, 55.9199398 -3.2900273, 55.9318454 -3.2935283, 55.9327811 -3.2976895, 55.9334086 -3.3003838, 55.9340968 -3.3041367, 55.9330951 -3.3087774, 55.9332338 -3.3143208, 55.9345802 -3.3161433, 55.9313620 -3.2950649, 55.9299963 -3.2993091, 55.9195397 -3.2981751, 55.9297250 -3.3020246, 55.9276961 -3.3082193, 55.9311156 -3.3056373, 55.9322299 -3.3064751, 55.9340229 -3.3077201, 55.9355926 -3.3122074, 55.9361695 -3.2993236, 55.9292786 -3.2872164, 55.9289897 -3.2899278, 55.9277979 -3.2921770, 55.9269314 -3.2942609, 55.9264818 -3.2977030, 55.9257125 -3.3024787, 55.9246333 -3.2923278, 55.9261437 -3.2931143, 55.9231767 -3.2915592, 55.9221988 -3.3025049, 55.9281300 -3.2973419, 55.9218602 -3.2928436, 55.9208065 -3.2982015, 55.9207966 -3.2982812, 55.9207760 -3.2985365, 55.9171544 -3.3140322, 55.9171492 -3.3213619, 55.9120572 -3.3546582, 55.9221643 -3.2722736, 55.9181038 -3.2739008, 55.9079617 -3.3690892, 55.9144831 -3.3248672, 55.9125487 -3.3239700, 55.9007886 -3.3098165, 55.8987034 -3.3132329, 55.8967963 -3.3125927, 55.8957425 -3.3139442, 55.8949242 -3.3162397, 55.8938281 -3.3178977, 55.8960867 -3.3100259, 55.8950017 -3.3131878, 55.8933968 -3.3178990, 55.8916415 -3.3240439, 55.8901158 -3.3297005, 55.8882427 -3.3383666, 55.8865763 -3.3395564, 55.8839809 -3.3427125, 55.8803230 -3.3452399, 55.8786965 -3.3492422, 55.8754988 -3.3467674, 55.8749254 -3.3424958, 55.8760688 -3.3398180, 55.8856460 -3.3391726, 55.8841917 -3.3373799, 55.8822863 -3.3390729, 55.8788332 -3.3383954, 55.8671502 -3.3344450, 55.9195504 -3.2377835, 55.9183386 -3.2271225, 55.9188051 -3.2242383, 55.9814895 -3.1912619, 55.9817769 -3.2297051, 55.9808740 -3.2353244, 55.9790705 -3.2414093, 55.9830254 -3.1941140, 55.9781461 -3.1735303, 55.8997405 -3.1444845, 55.9481124 -3.3641161, 55.9850192 -3.4297896, 55.9293780 -3.2496372, 55.9303174 -3.2518123, 55.9303651 -3.2515417, 55.9290038 -3.2484407, 55.9508673 -3.1752354, 55.9553235 -3.1920547, 55.9553332 -3.1919926, 55.9553429 -3.1919304, 55.9553525 -3.1918683, 55.9553622 -3.1918061, 55.9553719 -3.1917440, 55.9553816 -3.1916819, 55.9553913 -3.1916197, 55.9554010 -3.1915576, 55.9554107 -3.1914955, 55.9554204 -3.1914333, 55.9554301 -3.1913712, 55.9554398 -3.1913091, 55.9554495 -3.1912469, 55.9554592 -3.1911848, 55.9554688 -3.1911227, 55.9554785 -3.1910605, 55.9554882 -3.1909984, 55.9837906 -3.4014050, 55.9838562 -3.4011669, 55.9472325 -3.1901311, 55.9440850 -3.1328436, 55.9700089 -3.2511164, 55.9423696 -3.2696941, 55.9479136 -3.2671815, 55.9323871 -3.2055924, 55.9856357 -3.4235129, 55.9558460 -3.2630716, 55.9557687 -3.2636778, 55.9228559 -3.3994491, 55.9066525 -3.1343463, 55.9766740 -3.1797325, 55.9270622 -3.2468023, 55.9438324 -3.2142584, 55.9434037 -3.2147753, 55.9466143 -3.2479373, 55.9602002 -3.2007101, 55.9562981 -3.1986248, 55.9131604 -3.2751589, 55.9103046 -3.3174695, 55.9475607 -3.1861653, 55.9400038 -3.4063741, 55.9403783 -3.4069026, 55.9536715 -3.1868832, 55.9525909 -3.2000321, 55.9476032 -3.2085057, 55.9464631 -3.1990798, 55.9699159 -3.1695202, 55.9514733 -3.2002938, 55.9525341 -3.1942530, 55.9539398 -3.1954762, 55.9458721 -3.1870265, 55.9452545 -3.1868374, 55.9439698 -3.1852609, 55.9288032 -3.2094222, 55.9247503 -3.2765469, 55.9700600 -3.1864505, 55.9493416 -3.2102159, 55.9651187 -3.2337410, 55.9458574 -3.2195136, 55.9458637 -3.2199619, 55.9493651 -3.2098050, 55.9522213 -3.1920622, 55.9595000 -3.4128903, 55.9596259 -3.4129832, 55.9598444 -3.4081902, 55.9165190 -3.2788074, 55.9272107 -3.3071587, 55.9345077 -3.1677307, 55.9256755 -3.1530955, 55.9259223 -3.1537352, 55.9221296 -3.1327542, 55.9221359 -3.1326473, 55.9223250 -3.1327710, 55.9223281 -3.1326530, 55.9225187 -3.1327823, 55.9225203 -3.1326754, 55.9704312 -3.3338225, 55.9037305 -3.1382383, 55.9287865 -3.3858749, 55.9288710 -3.3856678, 55.9338658 -3.3904702, 55.9199735 -3.1388470, 55.9525355 -3.2025587, 55.9612165 -3.4036848, 55.9897500 -3.4060327, 55.9507195 -3.1921655, 55.9532131 -3.1997985, 55.9541367 -3.1918691, 55.9547528 -3.1939230, 55.9387978 -3.1791123, 55.9632674 -3.1638738, 55.9606525 -3.2004675, 55.9708849 -3.1791326, 55.9074215 -3.1540164 +0 +yes +504 +Mo-Sa 09:30-12:30, Tu, Th, Fr 15:00-18:00 and 49.3791000 8.6912322 +61 +shoemaker, printery, electrician, plumber, locksmith, tailor, key cutter, dressmaker, traitor, painter, painting restoration, heating engineer, beekeeper, hvac, watchmaker, upholsterer, framer, photographer, jeweller, heating, photographic laboratory, caterer, brewery, clockmaker, builder, handicraft, glaziery, confectionery, bookbinder, optician, tiler, roofer, carpenter, window construction, gardener, carpet layer +yes +49.4133177 8.6889779, 49.4135514 8.6842391, 49.4146501 8.6879184, 49.4168731 8.6919549, 49.4171484 8.6930088, 49.4208847 8.6912002, 49.4093080 8.6997914, 49.4115405 8.7048863, 49.4123719 8.7105227, 49.4126424 8.7078375, 49.4121119 8.7079345, 49.4111163 8.6933102, 49.4133176 8.6889779, 49.4133176 8.6889788, 49.4133176 8.6889785, 49.4135508 8.6842393, 49.4133177 8.6889782, 49.4133176 8.6889782, 49.4133174 8.6889784, 49.4133177 8.6889788, 49.4208843 8.6912004, 49.4208840 8.6912006, 49.4168738 8.6919549, 49.4168732 8.6919560, 49.4208839 8.6912002, 49.4171481 8.6930091, 49.4168744 8.6919560, 49.4168739 8.6919560, 49.4208843 8.6911999, 49.4208846 8.6911997, 49.4168740 8.6919569, 49.4123720 8.7105234, 49.4093080 8.6997912, 49.4115404 8.7048862, 49.4093082 8.6997910, 49.4115404 8.7048863, 49.4093082 8.6997914, 49.4146502 8.6879184, 49.4115403 8.7048862, 49.4059416 8.6926646, 49.4059413 8.6926655, 49.4059418 8.6926647, 49.4059416 8.6926652, 49.4059414 8.6926650, 49.4196480 8.6881884, 49.4158083 8.7151936, 49.4087123 8.7054683, 49.4076130 8.7082748, 49.4076136 8.7082749, 49.4087126 8.7054655, 49.4076135 8.7082758, 49.4076129 8.7082756 +Corstorphine Hill, Arthur's Seat, Blackford Hill, Allermuir Hill, Haggis Knowe, Crow Hill, Dunsapie Crag, Easter Craiglockhart Hill, Capelaw Hill, White Hill, Torduff Hill, Wester Craiglockhart, Buckstone Snab, The Braids, East Cairn Hill, Caerketton Hill, Whinny Hill, Mons Hill, Warklaw Hill, Calton Hill, Salisbury Crags, The Nether Hill, Dalmahoy Hill, Mansion Hill, New England +yes +55.9426063 -3.2085087 +48.8651191 2.3417893, 48.8776904 2.2687637, 48.8889479 2.3316294, 48.8678821 2.3921769, 48.8844316 2.3506830, 48.8551205 2.3589562, 48.8424054 2.3895404, 48.8947814 2.3190669, 48.8549238 2.3592860, 48.8698923 2.3755947, 48.8832324 2.3637211, 48.8842940 2.3538553, 48.8245519 2.3668617, 48.8442654 2.3304438, 48.8595500 2.3794207, 48.8476483 2.3769905, 48.8425237 2.3899126, 48.8776787 2.3858246, 48.8770064 2.3684202, 48.8683317 2.3921668, 48.8522237 2.3452202, 48.8947391 2.3190753, 48.8903302 2.3647026, 48.8951201 2.3923772, 48.8676645 2.3368980, 48.8541107 2.3568241, 48.8892150 2.3050790, 48.8519784 2.3354942, 48.8784073 2.3854415, 48.8782913 2.3861269, 48.8838102 2.3718772, 48.8875552 2.3794980, 48.8480906 2.3770269, 48.8698453 2.3669656, 48.8766670 2.2637973, 48.8488289 2.3520343, 48.8640121 2.3431386, 48.8605119 2.3524278, 48.8609964 2.3511217, 48.8581282 2.3585957, 48.8665653 2.3534157, 48.8748621 2.3640685, 48.8714289 2.3586492, 48.8491305 2.3324247, 48.8616442 2.3214269, 48.8942221 2.3932346, 48.8909125 2.3908221, 48.8914135 2.3730389, 48.8523494 2.3282306, 48.8775032 2.3443702, 48.8660241 2.3891973, 48.8700810 2.3939859, 48.8852691 2.3273520, 48.8852591 2.3385563, 48.8480847 2.3771241, 48.8312041 2.3702611, 48.8520334 2.2747877, 48.8497046 2.3472459, 48.8582260 2.3619639, 48.8310687 2.3580834, 48.8902445 2.3700712, 48.8673569 2.3780427 +55.9432488 -3.1817167, 55.9280547 -3.2292838, 55.9058039 -3.2543852, 55.9409114 -3.2097700, 55.9703622 -3.1822317, 55.9629073 -3.1944999, 55.9358754 -3.1760269, 55.9344353 -3.2125210, 55.9416804 -3.2026036, 55.9438526 -3.1964947, 55.9592778 -3.1901889, 55.9613996 -3.1820673, 55.9580853 -3.1891489, 55.9468876 -3.1828168, 55.9488813 -3.1834652, 55.9492101 -3.2153200, 55.9544768 -3.1997466, 55.9489685 -3.1194874, 55.9309502 -3.1942179, 55.9741682 -3.2117651, 55.9296473 -3.1707716, 55.9718479 -3.1748613, 55.9390126 -3.2052535, 55.9410176 -3.2095848, 55.9292876 -3.2059198, 55.9598760 -3.2111177, 55.9296228 -3.1686332, 55.9167292 -3.1640730, 55.9351051 -3.2071646, 55.9335197 -3.2097268, 55.9462699 -3.1973167, 55.9324830 -3.1925693, 55.9310878 -3.1608248, 55.9344607 -3.1586816, 55.9350533 -3.2069968, 55.9350865 -3.2070121, 55.9335280 -3.2095487, 55.9408795 -3.2097114, 55.9016895 -3.1650816, 55.9242811 -3.1768126 +http://canmore.rcahms.gov.uk/en/site/50719/details/the+cat+stane/ +49.4785782 8.6564609, 49.4869999 8.7367276, 49.4805167 8.6715673, 49.4943601 8.7246887 +48.8410120 2.3066005, 48.8570028 2.3007925, 48.8579137 2.3005660, 48.8782645 2.3740462, 48.8318670 2.3144693, 48.8276825 2.3271004, 48.8501002 2.3428094, 48.8327092 2.3625620, 48.8304784 2.3562767, 48.8326050 2.3544168, 48.8554073 2.3268543, 48.8697474 2.3709540, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8703950 2.3709651, 48.8778843 2.3510144, 48.8529470 2.3434116, 48.8488712 2.2873446, 48.8189960 2.3382666, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8521024 2.4034631, 48.8651078 2.3744344, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8653000 2.3752307, 48.8651925 2.3758399, 48.8629074 2.3860380, 48.8668485 2.3837377, 48.8318807 2.3568124, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8507286 2.3779068, 48.8330519 2.3316747, 48.8732053 2.3585526, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8367776 2.2983375, 48.8357338 2.3020633, 48.8605667 2.3751425, 48.8644747 2.2879509, 48.8645963 2.2880351, 48.8649321 2.2883111, 48.8654525 2.2886812, 48.8667948 2.2896169, 48.8677281 2.2909720, 48.8369085 2.4021711, 48.8396803 2.3945209, 48.8393074 2.3970077, 48.8743920 2.3574266, 48.8482696 2.3715140, 48.8470790 2.3740473, 48.8469009 2.3721664, 48.8479197 2.3716692, 48.8461048 2.3740873, 48.8477030 2.3740290, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8457782 2.3745532, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8344235 2.3052236, 48.8563547 2.3050003, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8546797 2.3051724, 48.8839932 2.3218563, 48.8830031 2.2877361, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8402359 2.3617231, 48.8648840 2.4053930, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8806821 2.3741833, 48.8855270 2.2969790, 48.8846750 2.2981530, 48.8773919 2.3395256, 48.8737979 2.3160522, 48.8388963 2.2993041, 48.8807958 2.3003045, 48.8423511 2.2814155, 48.8529207 2.3436323, 48.8386703 2.2822723, 48.8648693 2.3427189, 48.8742798 2.3760564, 48.8686652 2.3421761, 48.8578234 2.2746494, 48.8660916 2.3526753, 48.8612900 2.3499825, 48.8612937 2.3537009, 48.8669898 2.3620443, 48.8667188 2.3611850, 48.8518893 2.3417124, 48.8652895 2.3605043, 48.8621296 2.3644112, 48.8614452 2.3647591, 48.8630803 2.3510377, 48.8421221 2.3217245, 48.8592743 2.3796462, 48.8521680 2.3314230, 48.8447287 2.3244719, 48.8428059 2.3239714, 48.8883530 2.3917794, 48.8904247 2.3760144, 48.8296558 2.3789838, 48.8687291 2.3014159, 48.8698436 2.3061758, 48.8284669 2.3791072, 48.8287974 2.3821578, 48.8293821 2.3782449, 48.8444634 2.4058653, 48.8749903 2.2860127, 48.8759692 2.2834989, 48.8459991 2.3734585, 48.8593999 2.2774250, 48.8411414 2.3136506, 48.8760516 2.3450644, 48.8417733 2.3185097, 48.8394820 2.3097854, 48.8781855 2.2878593, 48.8362844 2.3061932, 48.8233119 2.3260789, 48.8475928 2.2669653, 48.8454405 2.2582420, 48.8606979 2.3554288, 48.8605259 2.3552067, 48.8717642 2.3765169, 48.8399984 2.2627388, 48.8307191 2.3193023, 48.8304006 2.3192272, 48.8824125 2.3814642, 48.8758150 2.2867065, 48.8504365 2.3250405, 48.8480122 2.2605847, 48.8555518 2.3602965, 48.8585424 2.3554995, 48.8661318 2.3536080, 48.8417910 2.3293787, 48.8685310 2.3627215, 48.8645339 2.3458426, 48.8671863 2.3624934, 48.8471366 2.3867728, 48.8382469 2.3985623, 48.8356227 2.4057366, 48.8417549 2.3864187, 48.8455537 2.3108109, 48.8450445 2.3104567, 48.8394375 2.2918836, 48.8794747 2.3547243, 48.8431097 2.3128917, 48.8673662 2.3064825, 48.8256887 2.3653770, 48.8695383 2.3950747, 48.8263809 2.3414522, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8278525 2.3262538, 48.8953387 2.3825799, 48.8388287 2.2816271, 48.8367957 2.3917944, 48.8234162 2.3578095, 48.8223317 2.3587958, 48.8283319 2.3249564, 48.8500696 2.2886536, 48.8560015 2.3425743, 48.8544203 2.3257043, 48.8488537 2.3789042, 48.8459220 2.4058540, 48.8585344 2.2751198, 48.8768988 2.3387135, 48.8620598 2.2758197, 48.8768502 2.3324723, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8751634 2.3407635, 48.8468273 2.3109956, 48.8727906 2.3327950, 48.8540420 2.4102463, 48.8465399 2.3518782, 48.8256754 2.3500062, 48.8260463 2.3458083, 48.8275711 2.3258960, 48.8274068 2.3262715, 48.8369096 2.3712028, 48.8312779 2.3775666, 48.8549374 2.3061290, 48.8433669 2.3494429, 48.8570621 2.3817062, 48.8790699 2.3540350, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8481085 2.4036760, 48.8509779 2.2927923, 48.8550471 2.2699500, 48.8442816 2.3244689, 48.8358185 2.3869346, 48.8430494 2.2949889, 48.8416006 2.3224232, 48.8430431 2.3223965, 48.8850396 2.3205857, 48.8860872 2.3177587, 48.8468610 2.3536998, 48.8201698 2.3641255, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8804253 2.3287401, 48.8743336 2.3345374, 48.8301847 2.3456951, 48.8340558 2.2901416, 48.8330244 2.2891177, 48.8334343 2.2890580, 48.8642191 2.3423423, 48.8815429 2.2914706, 48.8838668 2.3274744, 48.8889565 2.3226941, 48.8937935 2.3362303, 48.8975742 2.3374320, 48.8959308 2.3457254, 48.8906192 2.3344868, 48.8929700 2.3402831, 48.8931959 2.3273644, 48.8938006 2.3360065, 48.8928237 2.3276058, 48.8927037 2.3270855, 48.8950865 2.3279515, 48.8927798 2.3416901, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8507185 2.3452276, 48.8506024 2.2921760, 48.8434041 2.2832488, 48.8441583 2.2814225, 48.8601040 2.2800860, 48.8358361 2.3959436, 48.8620103 2.3504016, 48.8555902 2.2705124, 48.8607663 2.2829855, 48.8742509 2.3267610, 48.8760737 2.3314470, 48.8607520 2.3551307, 48.8599332 2.3492544, 48.8314530 2.3131078, 48.8366420 2.3235880, 48.8798460 2.2882480, 48.8706907 2.3018397, 48.8711468 2.3021857, 48.8750168 2.2842019, 48.8271902 2.3689921, 48.8274443 2.3054531, 48.8259715 2.3507845, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8260781 2.3450782, 48.8690375 2.4018799, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8709768 2.4035156, 48.8711831 2.4041560, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8650286 2.3978764, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8661206 2.3993734, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8646156 2.3980291, 48.8575448 2.3507955, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8265662 2.3114209, 48.8266741 2.3089333, 48.8348018 2.2835149, 48.8898740 2.3601766, 48.8289555 2.3008177, 48.8309472 2.3666202, 48.8900866 2.3603615, 48.8425217 2.2605998, 48.8399979 2.2631418, 48.8393773 2.2626930, 48.8445716 2.2773781, 48.8457722 2.3952172, 48.8423827 2.2779816, 48.8393433 2.2612518, 48.8382522 2.2590990, 48.8911754 2.3596165, 48.8912089 2.3601196, 48.8556190 2.3071441, 48.8267862 2.3639559, 48.8275456 2.3565272, 48.8292086 2.3568667, 48.8895540 2.3596572, 48.8601780 2.3784708, 48.8918470 2.3497087, 48.8394408 2.3901626, 48.8634536 2.3668626, 48.8621628 2.3647719, 48.8643458 2.3599234, 48.8304530 2.3781049, 48.8358783 2.3528351, 48.8448082 2.4018695, 48.8577037 2.3677906, 48.8547650 2.3703199, 48.8419262 2.3651705, 48.8370898 2.3512464, 48.8439360 2.3521362, 48.8466920 2.2861937, 48.8464464 2.2864898, 48.8471256 2.2857626, 48.8467862 2.2850085, 48.8687439 2.3725567, 48.8757911 2.3276502, 48.8666300 2.3441053, 48.8751073 2.3063372, 48.8473180 2.3512660, 48.8761128 2.3302242, 48.8760136 2.3310108, 48.8628914 2.2767409, 48.8836091 2.3810186, 48.8326928 2.3011680, 48.8367477 2.3065081, 48.8396815 2.2927792, 48.8364615 2.3516931, 48.8759800 2.3435799, 48.8602282 2.3444320, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8442882 2.3080071, 48.8528372 2.2900682, 48.8524061 2.2912571, 48.8529003 2.2907372, 48.8504014 2.2929658, 48.8781331 2.2973879, 48.8466594 2.4106749, 48.8474387 2.3948976, 48.8558171 2.3591925, 48.8843398 2.3684081, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8605440 2.3490975, 48.8235069 2.3253377, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8314166 2.3251141, 48.8747610 2.3399353, 48.8610529 2.3020976, 48.8742737 2.3172451, 48.8335336 2.4018517, 48.8329666 2.3548590, 48.8860790 2.2927720, 48.8862920 2.2922300, 48.8860610 2.2916910, 48.8815650 2.2950420, 48.8816640 2.2951850, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8767675 2.3414635, 48.8801010 2.2887410, 48.8518237 2.3263371, 48.8520482 2.3269387, 48.8896590 2.3042630, 48.8459597 2.3544163, 48.8523174 2.3400938, 48.8480411 2.3409988, 48.8487519 2.3414295, 48.8763180 2.3309180, 48.8570274 2.3983184, 48.8694492 2.3546663, 48.8841050 2.3049810, 48.8840570 2.3045230, 48.8835710 2.3045840, 48.8837420 2.3043460, 48.8493470 2.3529650, 48.8818980 2.3374100, 48.8485190 2.3493440, 48.8401997 2.3954293, 48.8448871 2.2941778, 48.8452118 2.2941040, 48.8454696 2.2946866, 48.8651944 2.3554408, 48.8650138 2.3556963, 48.8895142 2.3498344, 48.8349994 2.3046409, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8619859 2.3647571, 48.8625029 2.3716831, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8455488 2.4110597, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8778905 2.3549883, 48.8488552 2.3942325, 48.8489972 2.3942887, 48.8505758 2.3948498, 48.8494165 2.3948501, 48.8643045 2.3993897, 48.8347313 2.3458453, 48.8388397 2.3227192, 48.8791073 2.2907296, 48.8766198 2.2875734, 48.8359858 2.3961013 +0 +french, indian, vegetarian, mexican, pasta, chinese, thai, regional, vietnamese, japanese, couscous, grill, belgian, italian, arab, international, Vietnamese, pizza, New-french, libre, Corse, american, sichuan, Lanzhou, lebanese, peruvian, sushi-yakitori, turkish, crepe, Lebanon, sushi, asian, kebab, Sushi-yakitori, shandong, traditional, Sardaigne, steak house, Persan (Iranien), Vietnamien, mediteranean, japonais, seafood, korean, latin american, Lao, spanish, burger, corsican, moroccan, algerian, Bistrot gastronome, sandwich, gastronomic, jewish, corean, bagel, polish, argentinian, belgium, tibetan, marocan, vietnamien-cambodgien, tapas, see food, vietnam, Lebanese, brunch, senegalese, kosher, Hangzhou, smart traditional, fish, marocain, brasilian, berber, greek, ivoirian, libanese, polonese, african, chineses (Teochew) - 中国潮州, Océan indien, latino, fondue, Cambodgien, basque, crêpe, local, maltese, chinese - Fondue pékinoise, ethiopian, Sud-Ouest France, creole, mediterranean, brasserie, crepes, coffee shop, coréen, breton, magreb, malaysian, indonesian, thai fruit juces, bistro, brazilian, cocktails, crèpes, morrocan, Indian, iranian, traiteur japonais, Coréen, Grec, ramen, brazil, American, Lyonnaise, Amérique du Sud - Argentine, Japanese, pâtisserie sans gluten, mongol, Cap Vert, portuguese, ukrainian, meat, française, pizza bio, lao, cambodgian, mauritian, Kebab, salad, caribbean, Oriental Couscous, oriental, Jiangxi, international (Francaise, sud americaine), berbere, oriental couscous, colombian, marocaine, classique, paella, Française, african caribbean, new york pizza, north african, indian pakistanese, Chinese, Sichuan, Burger, Armenian, ouïghour, irak, cuisine nissarde, salade, bio, cake, gluten free, Thai, seasonal, Kazakh, Russe, Italiano, huoguo, bento, maroc, crèpe, mediterean, mediterrneen, russian, Sandwich, organic, régional, vegan, salon de thé, restaurant +55.9395567 -3.2208158, 55.9318108 -3.2374274, 55.9480977 -3.1860003, 55.9471995 -3.1855061, 55.9434664 -3.1831055, 55.9434196 -3.1842460, 55.9434281 -3.1802599, 55.9385215 -3.1946814, 55.9748068 -3.1719428, 55.9764963 -3.1714060, 55.9584860 -3.2082072, 55.9771770 -3.1718400, 55.9624799 -3.1788559, 55.9356483 -3.2096691, 55.9450873 -3.2046445, 55.9461895 -3.1912537, 55.9454993 -3.2344943, 55.9445731 -3.1850966, 55.9707533 -3.2083928, 55.9465573 -3.2166040, 55.9594927 -3.1561524, 55.9506835 -3.1901263, 55.9425676 -3.2218450, 55.9376421 -3.2063586, 55.9364334 -3.2079099, 55.9454688 -3.1847519, 55.9453153 -3.1845999, 55.9750744 -3.1805743, 55.9462869 -3.2159227, 55.9495552 -3.2091699, 55.9582298 -3.2268150, 55.9462622 -3.2145897, 55.9462614 -3.2149075, 55.9589630 -3.2123829, 55.9589427 -3.2121340, 55.9425916 -3.2009298, 55.9420344 -3.2038063, 55.9418227 -3.2036511, 55.9447213 -3.2505249, 55.9460417 -3.2226604, 55.9479040 -3.2136850, 55.9462100 -3.2053390, 55.9499013 -3.1834760, 55.9573001 -3.2497968, 55.9435020 -3.2024352, 55.9518969 -3.2025598, 55.9556173 -3.1925320, 55.9423736 -3.2037017, 55.9426584 -3.2803285, 55.9429213 -3.2881096, 55.9544769 -3.1974573, 55.9604422 -3.2566980, 55.9534512 -3.2963903, 55.9656127 -3.2709323, 55.9573525 -3.1857881, 55.9581118 -3.1850848, 55.9574938 -3.1856190, 55.9290803 -3.2097412, 55.9246481 -3.2100800, 55.9375777 -3.1779460, 55.9354709 -3.1798259, 55.9323952 -3.2102340, 55.9321089 -3.2101997, 55.9309744 -3.2100917, 55.9308794 -3.2100746, 55.9710599 -3.2100066, 55.9629763 -3.2004815, 55.9596608 -3.1714218, 55.9469467 -3.1868746, 55.9453485 -3.2171316, 55.9224536 -3.2108475, 55.9906648 -3.3973688, 55.9302432 -3.1758973, 55.9429144 -3.1826352, 55.9416801 -3.1819013, 55.9418646 -3.1820790, 55.9497766 -3.1880920, 55.9348643 -3.1686663, 55.9254914 -3.2593484, 55.9562823 -3.1983948, 55.9595195 -3.1827244, 55.9580202 -3.1851749, 55.9383738 -3.2308953, 55.9368627 -3.2362988, 55.8838914 -3.3385867, 55.9695051 -3.1724684, 55.9221123 -3.1536690, 55.9420479 -3.1791611, 55.9443287 -3.1812574, 55.9468472 -3.1856084, 55.9895667 -3.3989278, 55.9624134 -3.1789821, 55.9783017 -3.1800235, 55.9205723 -3.1672281, 55.9475057 -3.2948807 +no +yes +49.4220712 8.6747880, 49.4338914 8.6803397, 49.4248554 8.6842438, 49.4134671 8.6923500, 49.3811106 8.6779339, 49.4116285 8.6967738, 49.4112877 8.7120306, 49.4124821 8.7116749, 49.4105746 8.7045338, 49.4088982 8.6985594, 49.4181588 8.6814978, 49.4183470 8.6872741, 49.4197789 8.6871221, 49.4207750 8.6845900, 49.4220217 8.6830623, 49.4248833 8.6877871, 49.4283894 8.6851615, 49.4312787 8.6910498, 49.4329833 8.6806293, 49.4036198 8.6878647, 49.4143251 8.7187531, 49.3777874 8.6694462, 49.3739035 8.6831040, 49.3769857 8.6847203, 49.3763424 8.6904918, 49.3806318 8.6903397, 49.3845467 8.6890952, 49.3867100 8.6889664, 49.3940819 8.6861279, 49.3995012 8.6869038, 49.4024228 8.6765906, 49.4056017 8.6751788, 49.4277498 8.6794326, 49.4376060 8.6778079, 49.4064554 8.6918633, 49.4075653 8.6902108, 49.4151221 8.7620371, 49.4087408 8.6948581, 49.4057652 8.6829089, 49.4145642 8.6791001, 49.4135694 8.6925166, 49.4159532 8.6836921, 49.4156740 8.6813317, 49.3862379 8.6927467, 49.4093291 8.6596550, 49.4010895 8.6737918, 49.4171231 8.7603742, 49.4017075 8.6672838, 49.4083514 8.6761325, 49.4036104 8.6814823, 49.4175762 8.7619090 +49.4171401 8.7614553, 49.4094471 8.6926160, 49.4124142 8.7039688, 49.3850068 8.7105357, 49.4189919 8.6724909, 49.4163242 8.6709589, 49.4184386 8.6731024, 49.4168333 8.6710769, 49.4176281 8.6686596, 49.4160594 8.6702239, 49.4179870 8.6685214, 49.4190025 8.6711938, 49.4190342 8.6719873, 49.4095987 8.7061446, 49.3982405 8.6891686, 49.4154939 8.6674299, 49.4182906 8.7276732, 49.3984918 8.6889404, 49.4226030 8.6895511, 49.4244226 8.6879745, 49.4185216 8.6704497, 49.4197235 8.6766060, 49.4181936 8.6739962, 49.4224691 8.6894885, 49.4347006 8.6819337, 49.4225331 8.6895176, 49.4223934 8.6894683, 49.4275117 8.6831905, 49.4196417 8.6694271, 49.4189698 8.6760286, 49.4222653 8.6894258, 49.4249703 8.6863835, 49.4219203 8.6893430, 49.4221212 8.6893922, 49.4177747 8.6690561, 49.4163577 8.6686492, 49.4174980 8.6687653, 49.4179060 8.6686309, 49.4180660 8.6682820, 49.4157661 8.6686751, 49.4174626 8.6687152, 49.4150725 8.6664167, 49.4139804 8.6668520, 49.4136878 8.6671227, 49.4155211 8.6676755, 49.4136571 8.6671084, 49.4155891 8.6676755, 49.4146634 8.6664310, 49.4140866 8.6673605, 49.4128509 8.6667672, 49.4130842 8.6668825, 49.4128068 8.6670431, 49.4157404 8.6712736, 49.4131056 8.6680418, 49.4126825 8.6678074, 49.4173371 8.6738318, 49.4170607 8.6768911, 49.4126952 8.6699440, 49.4134424 8.6679610, 49.4165443 8.6709680, 49.4134657 8.6678164, 49.4169024 8.6778674, 49.4171297 8.6738951, 49.4145377 8.6712997, 49.4142973 8.6712224, 49.4162063 8.6713780, 49.4171308 8.6741457, 49.4126713 8.6675754, 49.4146104 8.6715231, 49.4129993 8.6676842, 49.4125591 8.6685224, 49.4038678 8.6826012, 49.4080959 8.6940082, 49.4132083 8.7150483, 49.4098495 8.7063675, 49.4092833 8.6937547, 49.4136521 8.7166234, 49.4086730 8.6937919, 49.4147825 8.7194810, 49.4146757 8.7188519, 49.4099904 8.6934756, 49.4137247 8.7168421, 49.4114575 8.7112332, 49.4117561 8.7110802, 49.4130935 8.7055063, 49.4085662 8.6938769, 49.4082925 8.6939399, 49.4049071 8.6846843, 49.4050950 8.6832018, 49.4046753 8.6751003, 49.4049813 8.6825344, 49.4047830 8.6748233, 49.4079701 8.6806978, 49.4081724 8.6765377, 49.3800680 8.6869647, 49.3803092 8.6877522, 49.3800398 8.6875371, 49.4133013 8.6913417, 49.3991167 8.6880237, 49.4003093 8.6865238, 49.3994136 8.6901411, 49.4125736 8.6667755, 49.4156475 8.7425316, 49.3942172 8.6898680, 49.4001704 8.6873707, 49.4008461 8.6862974, 49.4015034 8.6855723, 49.4018481 8.6853596, 49.4140326 8.6921865, 49.4147881 8.6920796, 49.4161519 8.6920141, 49.4164194 8.6920050, 49.3736369 8.6882014, 49.3771070 8.6871386, 49.3805777 8.6884357, 49.3956314 8.6891619, 49.4064459 8.6893600, 49.4076652 8.6925139, 49.4146958 8.6922296, 49.4126385 8.6691299, 49.4175773 8.6740734, 49.4106683 8.6974887, 49.4111306 8.6979715, 49.4127554 8.6742068, 49.4187340 8.6766656, 49.4113889 8.7076937, 49.4105563 8.7059593, 49.4101441 8.7052242, 49.4112034 8.7047612, 49.4089283 8.6982133, 49.4089648 8.6986876, 49.4093783 8.7008163, 49.4094359 8.7023071, 49.4089641 8.6955780, 49.4093310 8.6934805, 49.4096811 8.6934485, 49.4107724 8.7039613, 49.4097754 8.7076634, 49.4100334 8.7081249, 49.4094319 8.6910307, 49.4095376 8.6908723, 49.4096347 8.6903912, 49.4098329 8.6894963, 49.4098809 8.6909403, 49.4099807 8.6890051, 49.4101452 8.6899150, 49.4102122 8.6904965, 49.4103847 8.6887271, 49.4105137 8.6896038, 49.4105215 8.6905059, 49.4106282 8.6901065, 49.4126702 8.6805338, 49.4159805 8.6920165, 49.4164705 8.6920883, 49.4172314 8.6911451, 49.4173345 8.6841594, 49.4090210 8.6862339, 49.4091822 8.6858735, 49.4095605 8.6872645, 49.4088652 8.6800974, 49.4098279 8.6817194, 49.4083809 8.6789361, 49.4056745 8.6881477, 49.4061925 8.6915180, 49.4063357 8.6898884, 49.4072240 8.6872972, 49.4075178 8.6824857, 49.4075631 8.6890160, 49.4079188 8.6902159, 49.4088250 8.6844653, 49.4092552 8.6744026, 49.4111078 8.7122962, 49.4039935 8.7273740, 49.3976409 8.6521041, 49.4229888 8.6430964, 49.4187340 8.6766656, 49.4032317 8.6471408, 49.4027493 8.6441103, 49.4121441 8.6411840, 49.4121197 8.6413318, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349, 49.4151012 8.6731211, 49.4158568 8.6728207, 49.4035624 8.6765204, 49.4279707 8.6838908, 49.4111900 8.7704641, 49.4101378 8.7039303, 49.4161640 8.6686617, 49.4138118 8.6719647, 49.4108048 8.6946155, 49.4157085 8.7420436, 49.4161193 8.6695151, 49.4059837 8.6870296, 49.4014465 8.6714876, 49.4016021 8.6707184, 49.4017318 8.6700873, 49.4019718 8.6690844, 49.4201274 8.6592504, 49.4194061 8.6615040, 49.4175471 8.6615820, 49.4133488 8.6736185, 49.4149163 8.6654747, 49.3787958 8.6752564, 49.3787513 8.6752582, 49.4168939 8.6715527, 49.4182453 8.6691484, 49.4083411 8.6839428, 49.4045486 8.6762865, 49.4176645 8.6590769, 49.4150320 8.7620828, 49.3892845 8.6883551, 49.4176061 8.6615500, 49.4159754 8.6729830, 49.4158552 8.6727509, 49.4032152 8.6746268, 49.4071473 8.6720042, 49.3999783 8.6914430, 49.3659380 8.6888680, 49.4019576 8.6811178, 49.4019323 8.6807736, 49.4019771 8.6810189, 49.4019064 8.6809317, 49.4045857 8.6750253, 49.3870086 8.6664502, 49.4209713 8.6746499, 49.4061766 8.6754688, 49.4103125 8.7748332, 49.4235022 8.6459331, 49.4048709 8.6753023 +55.9381717 -3.2059291 +yes +8 ++44 131 221 9779 +no +Le trésor de Notre-Dame de Paris +yes +no +Léon de Bruxelles +90 +48.8184662 2.3501586, 48.8611385 2.3941583, 48.8370749 2.4110506, 48.8749189 2.4002158, 48.8327412 2.3975487, 48.8256492 2.4145211, 48.8607252 2.4037124, 48.8866268 2.3732545, 48.8439975 2.4003952, 48.8301712 2.3992796, 48.8192381 2.4359906, 48.8848404 2.3887566 +0 +13 +Dossenheimer Landstraße, 5 and Willy-Brandt-Platz, 1 and Adenauerplatz, 30 and Brückenstraße, 8 and Rohrbacher Straße, Karlsruher Straße, 40 and Brückenstraße, 37 and Mönchhofstraße, Breslauer Straße, 32 and Brückenstraße, 18-20 and Poststraße, 59 and Mönchhofstraße, 4 and Schwetzinger Terrasse, Karlsruher Straße, 6-8 and Poststraße, 37 and Dossenheimer Landstraße +248 +6 +École de conduite Lamartine, Centre de conduite auto-moto, Auto-École, ECF Trinité, Auto-École, Fati Auto école, Auto-école du chêne, ecf, La Réussite, École de conduite, C.E.R. Auto-École, Auto moto école, Auto-école Manin, Auto moto ecolde des Buttes Chaumont, C.E.R. Porte des Lilas, Permis Express, Auto école, ABIR C.F.R., Auto-école Cosmos and +331 48 78 09 98 +yes +Grill Afro Akwaba +21 and Rue Hérold, 2 and Rue de la Barrière Blanche, 5-7 and Rue de Fourcy, 19 and Rue Antoine-Julien Hénard, 10 and Rue de Fourcy, 18 and Rue de l'Orillon, 14 and Avenue Parmentier, 88 and Rue de la Jonquière, 123 and Rue de Tocqueville, 127/129 and Rue Saint-Martin, 6 and Rue Récamier, 22 and Rue Pierre Gourdault, 11 and Rue Jean de La Fontaine +yes +231 +4 +no +St. Giles' Cathedral and 55.9494705 -3.1908525 +793 +City Car Club +55.9455830 -3.1876260, 55.9666311 -3.1963169, 55.9164420 -3.3136067, 55.9690950 -3.1689790, 55.9752483 -3.2153052, 55.9008723 -3.3189823, 55.9710850 -3.2302781, 55.9278249 -3.1233349, 55.9018528 -3.2249445, 55.9194696 -3.2656157, 55.9200972 -3.2944514, 55.9183885 -3.2959833 +Lochheim +Conservatoire Francis Poulenc +55.8958820 -3.3106749, 55.9583533 -3.2082826, 55.9794554 -3.2794113, 55.9516586 -3.1968492, 55.9899700 -3.3959164, 55.9530290 -3.1141130, 55.9498298 -3.1876708, 55.9483392 -3.1987455, 55.9033628 -3.2848004, 55.9574011 -3.1728671, 55.9361328 -3.1040998, 55.9195933 -3.2025852, 55.9710589 -3.2774742, 55.9544151 -3.1094907, 55.9490376 -3.0947794, 55.9562075 -3.1143007, 55.9434584 -3.2046928, 55.9458479 -3.1861307, 55.9744303 -3.1776966, 55.9699428 -3.1720727, 55.9875100 -3.4039888, 55.9450054 -3.2718056, 55.9260049 -3.1416514, 55.9425700 -3.2686698, 55.9435751 -3.2689147, 55.9434933 -3.2688802, 55.9451248 -3.2679627, 55.9472851 -3.2706337, 55.9443505 -3.2706792, 55.9079031 -3.2547777, 55.9774386 -3.2624501, 55.9772339 -3.2660670, 55.9018609 -3.1707018, 55.9018157 -3.1717612, 55.9539273 -3.1922043, 55.9647720 -3.2042289, 55.9646282 -3.2123860, 55.9807522 -3.1787546, 55.9804391 -3.1785758, 55.9902127 -3.3859837, 55.9906294 -3.3854450, 55.9014970 -3.2224341, 55.9411936 -3.1485976, 55.9250810 -3.3061410, 55.9450120 -3.1915042, 55.9526370 -3.1734364, 55.9596395 -3.3190414, 55.9402730 -3.1715946, 55.9521101 -3.1881430, 55.9382378 -3.3140197, 55.9393607 -3.3159294, 55.9264292 -3.1646478, 55.9471021 -3.1971869, 55.9906129 -3.3848526, 55.9504193 -3.2001988, 55.9505097 -3.1997700, 55.9526834 -3.1734548, 55.9486422 -3.1962925, 55.9487023 -3.1964050, 55.9807254 -3.2242925, 55.9663393 -3.2086646, 55.9450592 -3.2712300, 55.9626676 -3.2000599, 55.9371467 -3.2065090, 55.9800422 -3.2999163, 55.9410173 -3.1832050, 55.9389958 -3.2265743, 55.9278315 -3.2088719, 55.9428951 -3.2860475, 55.9315854 -3.2267880, 55.9501209 -3.2050581 +165 +Jeffrey Street +49.4122382 8.7129316 +92 +yes +3 +Hotel Etab +yes +49.3788109 8.6919767, 49.4052150 8.6872450, 49.4118434 8.7084139, 49.4117760 8.7068775, 49.4117663 8.7064409 +55.9378000 -3.1771354, 55.9539470 -3.1868320, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9543521 -3.1879033, 55.9285894 -3.1685115, 55.9821414 -3.4001668 +48.8376960 2.3062844, 48.8831159 2.3425480, 48.8481953 2.3419715, 48.8668168 2.3257587, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8717742 2.2984126, 48.8668308 2.3028826, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8715217 2.3076937, 48.8664199 2.2892440, 48.8604399 2.3007825, 48.8864077 2.2949505, 48.8710343 2.3234791, 48.8730243 2.3445449, 48.8606580 2.3469337, 48.8330539 2.2881095, 48.8234693 2.3306543, 48.8516696 2.2978180, 48.8528343 2.3441184, 48.8504483 2.2926945, 48.8518053 2.3448347, 48.8549752 2.3046163, 48.8868980 2.3004690, 48.8487972 2.3410105, 48.8683305 2.3330172, 48.8920470 2.3024290, 48.8609042 2.3467975, 48.8662424 2.3373468, 48.8814057 2.3282568, 48.8238179 2.3241127, 48.8752556 2.2866823, 48.8704922 2.2798118, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8848968 2.3034428, 48.8542680 2.3078406, 48.8802164 2.2842407 +401 +yes +48.8883391 2.3034488, 48.8417871 2.2993261, 48.8608910 2.3527350, 48.8267459 2.3664051, 48.8425359 2.3619057, 48.8311601 2.3117228, 48.8308701 2.3570791, 48.8390699 2.3214477, 48.8454696 2.3871278, 48.8459092 2.3777264, 48.8515628 2.3840327, 48.8601187 2.3790729, 48.8533975 2.3591296, 48.8515139 2.3573256, 48.8465258 2.3513354, 48.8848656 2.3830530, 48.8513211 2.3556751, 48.8479918 2.3275469, 48.8572964 2.3373427, 48.8580602 2.3089956, 48.8905420 2.3939914, 48.8624940 2.3445634, 48.8949558 2.3870960, 48.8850074 2.3674278, 48.8843615 2.3542291, 48.8780917 2.3027106, 48.8619020 2.2845127, 48.8460501 2.3109746, 48.8695100 2.3602240, 48.8533051 2.4010825, 48.8866611 2.3713511, 48.8401777 2.2788755, 48.8779906 2.3450959, 48.8301597 2.3816491, 48.8232707 2.3553092, 48.8600805 2.3520305, 48.8247112 2.3199067, 48.8421613 2.2631956, 48.8585418 2.3648460, 48.8267977 2.3663149, 48.8349953 2.3170932, 48.8636991 2.3600389, 48.8273570 2.3419023, 48.8772018 2.3707749, 48.8949090 2.3637139, 48.8500551 2.2863669, 48.8794010 2.3973642, 48.8520545 2.3450880, 48.8659387 2.3929440, 48.8463242 2.2672050, 48.8714000 2.4083505, 48.8701190 2.3851060, 48.8471209 2.3451247, 48.8425009 2.3496614, 48.8207702 2.3440653, 48.8270960 2.3756517, 48.8720638 2.3998952, 48.8761197 2.3896217, 48.8844548 2.3219231, 48.8665219 2.3404139, 48.8927627 2.3791089, 48.8896131 2.3199428, 48.8717681 2.3573818, 48.8567195 2.3532017, 48.9004776 2.3361193, 48.8328125 2.3452788, 48.8524437 2.3031358, 48.8473520 2.3544890, 48.8622102 2.3775622, 48.8338228 2.3257312, 48.8426154 2.3558949, 48.8915823 2.3442872, 48.8672834 2.3384559, 48.8477242 2.3463368, 48.8471642 2.3459531, 48.8473765 2.3454667, 48.8568692 2.3618963, 48.8568692 2.3619825, 48.8336577 2.3758171, 48.8502323 2.3636287, 48.8394063 2.3388487, 48.8341301 2.3741390, 48.8347819 2.3752986, 48.8324684 2.3762548, 48.8331207 2.3774143, 48.8762900 2.3881904, 48.8542728 2.3281460, 48.8424786 2.3972916, 48.8370023 2.3036518, 48.8533080 2.4010815, 48.8815116 2.3323814, 48.8558814 2.3436259, 48.8889374 2.3632101, 48.8416997 2.3451499, 48.8418628 2.3455995, 48.8416292 2.3454839, 48.8601141 2.4028795, 48.8398451 2.3417030 +Saravanaa Bhavan +Odeon, Filmhouse, Vue Cinema +49.4077140 8.6927035, 49.4068403 8.6904933, 49.4127267 8.6759075, 49.4129744 8.6753927, 49.4159882 8.7159505, 49.4152724 8.7089320, 49.4152263 8.7091544, 49.4161997 8.7168545, 49.4136480 8.7107879, 49.4137160 8.7131886, 49.3999244 8.6912464, 49.4002825 8.6911005, 49.4061329 8.6714869, 49.4043662 8.6769558, 49.4042794 8.6767159, 49.4043928 8.6767032, 49.4040938 8.6777606, 49.4041378 8.6780055, 49.4041963 8.6783706, 49.4075933 8.6747057, 49.4075056 8.6748798, 49.4078534 8.6762963, 49.4079283 8.6756934, 49.4078625 8.6803507, 49.4079068 8.6803518, 49.4079150 8.6852124, 49.4079624 8.6851808, 49.4084050 8.6884254, 49.4084670 8.6883986, 49.4101809 8.6928995, 49.4099846 8.6928532, 49.4095745 8.6932967, 49.4093811 8.6931694, 49.4092112 8.6929959, 49.4090525 8.6927592, 49.4111209 8.7057655, 49.4129809 8.7053485, 49.4132415 8.7055842, 49.4133149 8.7054986, 49.4119771 8.6972359, 49.4120763 8.6972060, 49.4055633 8.6828676, 49.4049949 8.6822918, 49.4129282 8.7027762, 49.4126418 8.7016223, 49.4090720 8.7054522, 49.4083347 8.6981500, 49.4138680 8.6938162, 49.4069337 8.6900774, 49.4068742 8.6934775, 49.4088905 8.7053904, 49.4092125 8.7080457, 49.4095401 8.7091480, 49.4133887 8.7086161, 49.4151598 8.7205422, 49.4136898 8.7167012, 49.4124611 8.7128500, 49.4114089 8.7119309, 49.4112562 8.7115057, 49.4080587 8.6999304, 49.4066901 8.6710527, 49.4051217 8.6683796, 49.4005092 8.6783953, 49.4016334 8.6747771, 49.4014940 8.6745939, 49.3971927 8.6809442, 49.3961103 8.6778109, 49.3961779 8.6783236, 49.4054462 8.6926553, 49.4055795 8.6925319, 49.4020433 8.6916031, 49.4025059 8.6915946, 49.4137204 8.6940432, 49.4129531 8.6764014, 49.4128723 8.6767666, 49.3984594 8.6893414, 49.4068321 8.7149530, 49.4070152 8.7149103, 49.4062811 8.7145104, 49.3998313 8.6768307, 49.4150504 8.7200383, 49.4064011 8.6905312, 49.4064324 8.6907065, 49.4064641 8.6908840, 49.4064968 8.6910579, 49.4088954 8.7128442, 49.4098287 8.6928288, 49.4131082 8.7212285, 49.4049329 8.6756419, 49.4012204 8.6724017, 49.3962812 8.6769601, 49.3993531 8.6716017, 49.3994314 8.6716997, 49.4042522 8.6786859, 49.4038577 8.6765425, 49.4047148 8.6787123, 49.4048572 8.6761515, 49.4049714 8.6760919, 49.4050841 8.6755115, 49.4016551 8.6733745, 49.4063962 8.6915499, 49.4050422 8.6812130 +49.4064728 8.6918564, 49.4089660 8.6724358, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4037954 8.6793653, 49.4214832 8.6754845, 49.4140422 8.6704577, 49.4228639 8.6764796, 49.4080031 8.6948451, 49.4187759 8.6518124, 49.4064148 8.6829502, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.4124163 8.7017576, 49.4186616 8.6453088, 49.4191927 8.6451544, 49.4186552 8.6479768, 49.4108612 8.6928690, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4101694 8.6916552, 49.4119501 8.7000203, 49.4096598 8.6875604, 49.4056131 8.6868331, 49.4108200 8.6949938, 49.3962000 8.7085445, 49.4174427 8.7569407, 49.4088000 8.6984868, 49.4154951 8.7332007, 49.3748097 8.6779817, 49.4056935 8.6753617, 49.4073436 8.6889011 +5 +83 +yes +denn's Biomarkt, Fair & Quer, Mahlzahn Vollkornbäckerei, Masala, Apfel und Korn, Heil's Feinschmeckerladen, Alnatura, Reformhaus Escher (Vita Nova), Lebe Gesund, Alnatura, denn's Biomarkt +yes +Salvatore's, The Gorgie Fish Bar, The Fountain, Jacob's chippy, pizza + kebabs, Globetrotter, Pierinos, Javits and Mo-Th 12:00-00:00, Fr 12:00-01:00, Sa 16:00-01:00, Su 16:00-00:00, Jubilee Supper Room and Mo-Th 11:30-00:00, Fr 11:30-01:00, Sa 16:00-01:00, Su 16:00-00:00, Comiston Fry, L'Alba D'Oro, Franco's and Mo-Th 11:30-13:30, Fr 11:30-24:00, Sa 00:00-01:00, 11:30-24:00, Su 00:00-01:00, 11:30-13:30, Gino's Fish Bridge Bar, Corbie, Angelo's, Concord Fish Bar, Chip Inn, The Chip King and Mo-Su 16:30-23:00, The Gold Sea, Valletta Fish Bar, Monte Bianco, Rambo's, Deep Sea, Stefanos, The Codfather, Tony's, Gino's, Clameshell, Castle Rock Take Away, The Friery, Bene's Fish & Chips, Taste of Scotland, The Town House, Giovanni's +yes +20, 15, 15, 20, 15, 15, 15, 15, 15, 15, 15, 15, 15 +55.9387357 -3.3996538, 55.9380963 -3.4051984, 55.9385221 -3.4040472, 55.9386848 -3.4052874, 55.9333966 -3.3543268, 55.9024677 -3.2131994, 55.9579939 -3.3233291, 55.9028966 -3.1642422, 55.9122291 -3.3948137, 55.8798835 -3.3439577, 55.9226836 -3.2094162, 55.9101467 -3.2093552, 55.9546676 -3.3637002, 55.9222410 -3.1492085, 55.9710480 -3.1879850, 55.9387885 -3.2890803, 55.8869268 -3.2813599, 55.9691744 -3.1898383, 55.9045439 -3.3952157, 55.9729762 -3.1721306 +no +48.8715303 2.3852468 +15 +49.3819891 8.7064791, 49.3696607 8.7091979, 49.3877298 8.7446960, 49.3946455 8.7166681, 49.4052183 8.7807063, 49.4040784 8.7535968, 49.4040547 8.7550178, 49.3925114 8.7464235, 49.3936499 8.7467333, 49.4005231 8.7520710 +48.8577996 2.3607146 +2 +0.72396396008536001 +Rue Robert Blache +2 +49.3999791 8.6903579, 49.4183136 8.7570658, 49.4128139 8.6783720, 49.4145117 8.6907695, 49.4077612 8.6774779, 49.4072855 8.6846071, 49.4071494 8.6862981, 49.4085419 8.6884195, 49.4114880 8.7036708, 49.4112467 8.7056121, 49.3803180 8.6917254, 49.3789548 8.6920168, 49.3789551 8.6697358, 49.4118400 8.7103033, 49.4101180 8.6997470, 49.3932913 8.6898491, 49.3999572 8.6849703, 49.4055340 8.6909414, 49.4284757 8.6833956, 49.4298020 8.6813390, 49.3813862 8.6715525, 49.3801053 8.6879890, 49.4055840 8.6658584, 49.3805484 8.6587871, 49.4019559 8.6916056, 49.4035568 8.6918554, 49.4089227 8.6927850, 49.3788705 8.6685559, 49.3821598 8.6632293, 49.4076785 8.6917122, 49.4211891 8.6800261, 49.3746688 8.7035666, 49.4103729 8.6964923, 49.3744114 8.6827527, 49.3734828 8.6803866, 49.4089710 8.6939315, 49.4152187 8.7476376, 49.4122637 8.7077964, 49.4034041 8.6828344, 49.4283328 8.6876890, 49.4297175 8.6854401, 49.4294006 8.6822101, 49.4045550 8.6757234, 49.4042051 8.6757454, 49.4055602 8.6759168, 49.3773301 8.6643950, 49.4247182 8.6873975, 49.4254190 8.6871690, 49.4211737 8.7557530, 49.4152481 8.6922641, 49.3804318 8.6878275, 49.3803620 8.6881463, 49.4145068 8.6907391, 49.4148749 8.6923202, 49.4090710 8.6596269, 49.3797613 8.6848437, 49.4230594 8.6488328, 49.4059598 8.6868733, 49.3772126 8.6700382, 49.3782446 8.6730115, 49.4270878 8.6470653, 49.4278529 8.6465726, 49.4188086 8.6517772, 49.3974830 8.6464426, 49.3976777 8.6479965, 49.4073819 8.6570319, 49.4014703 8.6683127, 49.4023052 8.6665425, 49.4081778 8.6881317, 49.4179480 8.7596452, 49.4146130 8.6710105 +12 +Fahrschule Jung +49.5526338 8.6554413, 49.5513229 8.6687450, 49.5554496 8.6699318, 49.5596224 8.6688235, 49.5462868 8.6715791, 49.5492546 8.6740750, 49.5496361 8.6716921, 49.6146080 8.6736398, 49.6015351 8.5181143, 49.6047659 8.4764246, 49.6458511 8.5671019, 49.6467494 8.5615748, 49.6566529 8.5677748, 49.6445836 8.5677274, 49.6417095 8.5631262, 49.5971548 8.4682347, 49.6052567 8.4710750, 49.6036653 8.4650992, 49.5192833 8.5023439, 49.5017017 8.5044127, 49.5625744 8.6656969, 49.6468579 8.6317019, 49.3779472 8.6930196, 49.3791086 8.6917106, 49.3738873 8.6885987, 49.4764727 8.5581500, 49.5001511 8.4141813, 49.4858432 8.3892989, 49.3761590 8.5674826, 49.3191887 8.5595067, 49.3726645 8.5718770, 49.3785813 8.5766583, 49.3417457 8.6549932, 49.3378610 8.6613039, 49.3481526 8.6539714, 49.3445704 8.6640475, 49.3839393 8.5721238, 49.3265417 8.5563625, 49.3191315 8.5470156, 49.3147158 8.5519038, 49.5954551 8.4634480, 49.4295856 8.6906085, 49.4242374 8.6490409, 49.5940946 8.4598127, 49.4347876 8.6782371, 49.4426103 8.6658751, 49.3138326 8.5606145, 49.5435708 8.5967846, 49.5979747 8.4757516, 49.3927830 8.5980107, 49.3923799 8.5946401, 49.5988026 8.4845303, 49.5885363 8.4859606, 49.5845876 8.4879738, 49.5026807 8.4702380, 49.6017750 8.5148540, 49.5953600 8.5833630, 49.5989820 8.5839630, 49.4046422 8.6758721, 49.4188030 8.6627721, 49.4215394 8.6751324, 49.4230903 8.6848004, 49.4423017 8.5790531, 49.4300762 8.6800795, 49.4766349 8.5210604, 49.4766109 8.5210589, 49.4760288 8.4678779, 49.4722315 8.4693491, 49.3945090 8.6898249, 49.5279213 8.3955159, 49.4036423 8.6351457, 49.4303419 8.6447639, 49.4199824 8.6516327, 49.5271969 8.6651823, 49.4641062 8.6650466, 49.4471459 8.6743543, 49.4428444 8.6214405, 49.4784646 8.4963955, 49.4707059 8.6520153, 49.4822964 8.4896176, 49.4776805 8.4832901, 49.4039244 8.6201112, 49.3976600 8.6462271, 49.3835628 8.6905633, 49.4016060 8.6295678, 49.3993345 8.6272386, 49.6499908 8.6340695, 49.3931195 8.6279937, 49.4751871 8.6837099, 49.4102743 8.6522076, 49.3186598 8.5512647, 49.4536423 8.6751502, 49.4519728 8.6778784, 49.4065263 8.6402454, 49.4077957 8.6403731, 49.4815121 8.4828496, 49.3950783 8.6433081, 49.4536254 8.3815384, 49.6424512 8.6384492, 49.4056159 8.6307388, 49.3973715 8.6486924, 49.4024942 8.6473792, 49.4229184 8.6449762, 49.4085533 8.6680811, 49.4077532 8.6729299, 49.4083422 8.6884456, 49.4096328 8.6933428, 49.4001133 8.6852761, 49.4444884 8.6271478, 49.3785544 8.6593079, 49.2999064 8.5654315, 49.5282525 8.3853190, 49.4806473 8.5961070, 49.2905479 8.5632348, 49.5291303 8.3918875, 49.3263000 8.5468316, 49.3166684 8.5493592, 49.3182722 8.5439702, 49.4714810 8.6083963, 49.4785782 8.6564609, 49.3084609 8.6351584, 49.2950357 8.5641504, 49.3225437 8.5335892, 49.3736487 8.5775117, 49.3896002 8.5660555, 49.2961664 8.5700349, 49.5421727 8.6636876, 49.3045372 8.6466441, 49.3687498 8.5800586, 49.3726561 8.5798363, 49.4002513 8.6905301, 49.3575085 8.6891721, 49.4079380 8.6845118, 49.4079623 8.6804555, 49.5532677 8.6658488, 49.5610225 8.6903218, 49.4805167 8.6715673, 49.4016967 8.6842645, 49.4152930 8.6919888, 49.5523081 8.5951882, 49.3753209 8.5842061, 49.6091623 8.6418976, 49.5454675 8.6298570, 49.6149320 8.6503966, 49.5002983 8.5498171, 49.6105522 8.6532369, 49.2956896 8.5694190, 49.4435052 8.6332139, 49.4989775 8.4996107, 49.4175155 8.6749548, 49.4280288 8.6874096, 49.4226519 8.6906789, 49.4237741 8.3796665, 49.4243637 8.3901006, 49.4198160 8.3955221, 49.3291477 8.5397666, 49.3413286 8.6690896, 49.4654862 8.5630507, 49.4503171 8.5233143, 49.4309897 8.4978410, 49.4282986 8.4891901, 49.4313129 8.4959077, 49.5078054 8.3629459, 49.3504070 8.6321551, 49.4541025 8.5375578, 49.3978519 8.5349890, 49.4036804 8.5358143, 49.4706173 8.4699685, 49.3960032 8.5914393, 49.4210265 8.4208975, 49.4213716 8.4206943, 49.5361742 8.5642657, 49.5213559 8.4025971, 49.3796214 8.6698422, 49.5411428 8.6400552, 49.5449883 8.6380933, 49.3021886 8.6429316, 49.4642584 8.4844414, 49.4631679 8.4950194, 49.4622735 8.4845749, 49.3750123 8.4535196, 49.4708285 8.6603546, 49.4886950 8.5438017, 49.4865780 8.5341631, 49.4871974 8.5284071, 49.4842068 8.5321272, 49.4844998 8.5396275, 49.4813475 8.5392948, 49.4906189 8.5252295, 49.4928093 8.5231160, 49.4950978 8.5284279, 49.3904944 8.6883092, 49.3915993 8.6903930, 49.4823499 8.4795195, 49.4680044 8.4830290, 49.5145230 8.6578124, 49.4542685 8.4945230, 49.2944361 8.6843096, 49.4636413 8.4884577, 49.4743659 8.4653835, 49.5366820 8.6659671, 49.4471734 8.5061272, 49.3937049 8.5661427, 49.3099035 8.5447741, 49.5888987 8.6549457, 49.4213023 8.6891575, 49.5358085 8.4971147, 49.4621470 8.4065063, 49.4309258 8.4206618, 49.4409798 8.4175989, 49.4437479 8.4140917, 49.4805822 8.5566713, 49.4928618 8.4046445, 49.4957477 8.4153853, 49.4205029 8.6846704, 49.4174372 8.6854637, 49.4399326 8.4449762, 49.5508996 8.6679749, 49.4845835 8.4861412, 49.4425602 8.4277767, 49.4915516 8.3784579, 49.4693839 8.4558664, 49.4268458 8.4233321, 49.4454678 8.4182004, 49.4717141 8.6047118, 49.4131348 8.5458560, 49.5127526 8.5766366, 49.4245561 8.6872574, 49.4186207 8.6905302, 49.4129911 8.6528439, 49.4554171 8.3842872, 49.4723798 8.4402139, 49.4825657 8.4492995, 49.4924928 8.3764937, 49.4786030 8.4903082, 49.4331943 8.5277059, 49.4308480 8.5291667, 49.3386748 8.5339113, 49.4038073 8.6922073, 49.5480018 8.3774413, 49.4205644 8.3883875, 49.3414114 8.6467625, 49.5418725 8.3751679, 49.5493313 8.6856291, 49.3993575 8.5843395, 49.4546515 8.4766580, 49.4066139 8.5537714, 49.3128737 8.5545772, 49.5416163 8.6583108, 49.5401579 8.6578378, 49.4868908 8.4676669, 49.4928220 8.4705420, 49.5020864 8.4704715, 49.4052607 8.6659933, 49.4055766 8.6654953, 49.3204781 8.5682552, 49.3714420 8.5346515, 49.3784076 8.5391735, 49.4560487 8.3748093, 49.3173043 8.5376593, 49.3116456 8.5379711, 49.2921862 8.6910743, 49.4911119 8.3742960, 49.3712535 8.5910730, 49.4416867 8.6147618, 49.4404471 8.5201007, 49.4376888 8.5274582, 49.4252292 8.4170772, 49.3482256 8.5307489, 49.4070710 8.4073373, 49.4541296 8.4822180, 49.4307088 8.6826152, 49.5559207 8.6889238, 49.3260347 8.6879653, 49.3234377 8.6867731, 49.5273739 8.5651748, 49.5266308 8.5656324, 49.4797746 8.4391042, 49.4989805 8.4843058, 49.4941948 8.4844155, 49.5425908 8.4678925, 49.5001116 8.4803170, 49.5444562 8.4781503, 49.5037603 8.4961936, 49.3982142 8.4388742, 49.5110301 8.4710668, 49.5330260 8.5941277, 49.4873169 8.4784566, 49.4487633 8.6041107, 49.6656426 8.6609367, 49.6521423 8.6500108, 49.3787048 8.6764500, 49.5114636 8.5350050, 49.4543736 8.6291869, 49.5424915 8.4717533, 49.4475131 8.4261958, 49.4481810 8.4188422, 49.5391501 8.4773405, 49.4959898 8.4310922, 49.3970452 8.6830144, 49.4946219 8.3724195, 49.4671705 8.5629531, 49.5181730 8.4097783, 49.5150107 8.4033010, 49.5903819 8.6385883, 49.3507170 8.6892282, 49.5311679 8.3834222, 49.5109697 8.5390654, 49.6333827 8.6325752, 49.4226763 8.4281591, 49.5118162 8.6060150, 49.3452242 8.6743498, 49.5050598 8.4882934, 49.4445636 8.5816251, 49.4459377 8.5730972, 49.4639703 8.5662392, 49.4920089 8.4654110, 49.4891200 8.4631089, 49.4855525 8.4714451, 49.6717144 8.6238800, 49.6732916 8.6243610, 49.4755522 8.5060354, 49.4777080 8.4194033, 49.4826588 8.4298418, 49.4783913 8.5133178, 49.4787334 8.4823454, 49.4818243 8.4728248, 49.5075555 8.5062085, 49.5123400 8.4990766, 49.4890790 8.3723447, 49.5003383 8.4681392, 49.4886025 8.5229300, 49.4509911 8.6718847, 49.4687302 8.5596994, 49.4668508 8.5541279, 49.5048012 8.6049417, 49.5058154 8.5991281, 49.4720637 8.5678457, 49.3935169 8.4374510, 49.5109111 8.5175535, 49.5134609 8.5109622, 49.5038199 8.5124492, 49.5294880 8.4924719, 49.4535628 8.4905741, 49.4564320 8.4890877, 49.4543568 8.4824181, 49.4982055 8.4910773, 49.4976749 8.4778943, 49.5033335 8.4634707, 49.4741811 8.4824969, 49.4847637 8.4636093, 49.6675554 8.6315104, 49.4648656 8.5102909, 49.4795588 8.4696925, 49.4972386 8.4722901, 49.4988236 8.4674949, 49.4966530 8.4866256, 49.4620122 8.4741993, 49.4574234 8.4851237, 49.4593083 8.4706277, 49.5047040 8.4880834, 49.5124002 8.6565502, 49.6528838 8.5673290, 49.4782712 8.5070996, 49.4786515 8.5098927, 49.4460279 8.5227546, 49.4428953 8.5184434, 49.4554270 8.5697767, 49.4603642 8.5698463, 49.5023852 8.4465135, 49.4938995 8.4579290, 49.5323131 8.4701018, 49.4989234 8.4484845, 49.4650782 8.4660830, 49.3804529 8.6874252, 49.5059134 8.5174984, 49.5080014 8.4776263, 49.4054299 8.6767260, 49.4054501 8.6767490, 49.4423442 8.5141178, 49.4989638 8.5029609, 49.3390847 8.6564963, 49.4779866 8.4958199, 49.5903363 8.6525815, 49.5941595 8.6540387, 49.4847568 8.4740166, 49.5138316 8.5479243, 49.4992414 8.4165235, 49.5918833 8.6618825, 49.4843868 8.5321396, 49.3610799 8.5359529, 49.4740411 8.6173826, 49.4279082 8.6839585, 49.3929187 8.5615782, 49.4127839 8.6732119, 49.4182810 8.6660747, 49.4167698 8.6778109, 49.2913518 8.6644581, 49.4140135 8.6829496, 49.3734559 8.6824541, 49.3734280 8.6804585, 49.3745737 8.6766391, 49.3795300 8.6822909, 49.3843561 8.6673425, 49.4156948 8.6877018, 49.4186333 8.6903397, 49.3816846 8.6868958, 49.3778358 8.6889772, 49.4096346 8.6933512, 49.4026410 8.6888163, 49.4047864 8.6845518, 49.4044472 8.6883811, 49.4062695 8.6913666, 49.4062653 8.6913679, 49.4085166 8.6926281, 49.4015292 8.6757972, 49.4751215 8.4447538, 49.4753090 8.4439781, 49.4723115 8.4446306, 49.4316305 8.5715242, 49.4722987 8.4498631, 49.4694596 8.4459163, 49.4684341 8.4346313, 49.4655353 8.4193218, 49.4768109 8.4038972, 49.4717681 8.4043309, 49.3994162 8.6880161, 49.3827614 8.6820305, 49.3687133 8.5309255, 49.5863527 8.6469574, 49.4512831 8.5851445, 49.4415950 8.5774993, 49.5619418 8.4791997, 49.4179179 8.5341440, 49.4191927 8.5147809, 49.4273374 8.5318674, 49.4878267 8.5258092, 49.4186575 8.5259343, 49.4120750 8.5220648, 49.4088197 8.5218682, 49.4062567 8.5209778, 49.4786924 8.5981080, 49.5152437 8.5181165, 49.3855700 8.5712429, 49.3305410 8.6722973, 49.3845397 8.5737947, 49.3841541 8.5774672, 49.4871957 8.4669323, 49.5299515 8.5718285, 49.5314204 8.5765244, 49.4675791 8.6133121, 49.4794425 8.5535035, 49.4831596 8.5610945, 49.4769338 8.5657223, 49.4774095 8.5619997, 49.4848515 8.4814311, 49.5051898 8.4935473, 49.5207522 8.4034862, 49.5517543 8.3782358, 49.4982790 8.6570508, 49.4981719 8.6521516, 49.4853666 8.4627430, 49.4804899 8.4860880, 49.4848495 8.4761497, 49.4721189 8.5496779, 49.4880198 8.4642243, 49.4642559 8.5572445, 49.4897409 8.4377712, 49.5075268 8.5062729, 49.5942259 8.6445664, 49.4975985 8.4900640, 49.4868107 8.4688548, 49.4778624 8.4536125, 49.4982857 8.5565417, 49.6750068 8.6450981, 49.4693227 8.4691927, 49.5030146 8.6016449, 49.4858508 8.4824634, 49.4744092 8.4860415, 49.4883473 8.4056724, 49.4548446 8.4036445, 49.4765745 8.4860680, 49.5390884 8.4502362, 49.5056775 8.4842932, 49.5457099 8.4464512, 49.3967764 8.5349193, 49.3947340 8.5341881, 49.4441798 8.5316600, 49.4498003 8.4787972, 49.4316207 8.5715985, 49.4015439 8.5564859, 49.4641295 8.6024278, 49.5031646 8.3819405, 49.4798502 8.4487432, 49.6334910 8.6209501, 49.6368541 8.6191745, 49.6389246 8.6189867, 49.3568753 8.4479584, 49.5219624 8.6659217, 49.4180049 8.4304703, 49.5253338 8.6668826, 49.4995180 8.4905691, 49.5268383 8.6549756, 49.3923418 8.5869300, 49.3897621 8.5866301, 49.3900106 8.5951082, 49.4703095 8.6676207, 49.3454195 8.6833029, 49.2805051 8.6730134, 49.4417734 8.4209918, 49.5028783 8.6616836, 49.5079175 8.6287307, 49.4438650 8.6097575, 49.5105009 8.6634850, 49.4960866 8.5527532, 49.6427828 8.6512072, 49.6460906 8.6869091, 49.4821573 8.4496006, 49.3840294 8.5818336, 49.3869098 8.5828680, 49.4006673 8.6308209, 49.4876255 8.4685410, 49.4805032 8.4790806, 49.4807315 8.4835521, 49.5223778 8.3942438, 49.4789422 8.4404426, 49.4919017 8.3762136, 49.4928241 8.3719058, 49.4945002 8.3722348, 49.4965126 8.5478242, 49.4933598 8.4183256, 49.3651468 8.6848614, 49.3748990 8.6769370, 49.5265918 8.4789790, 49.4533307 8.3761199, 49.5049367 8.5273225, 49.6085770 8.6485202, 49.6083653 8.6527742, 49.4616961 8.4823765, 49.4542475 8.4825095, 49.4609738 8.5695179, 49.5235488 8.4856429, 49.3794228 8.6676503, 49.4646409 8.4719323, 49.4464192 8.6113850, 49.4453340 8.5709402, 49.3751050 8.5886594, 49.4459998 8.6035076, 49.5308660 8.6481632, 49.5330110 8.6443614, 49.4924070 8.4196660, 49.4920108 8.4203004, 49.6392769 8.6309404, 49.5162649 8.4005627, 49.5306577 8.4999107, 49.4969376 8.4207200, 49.5386334 8.5790385, 49.5400345 8.5792127, 49.3442868 8.6897159, 49.3470840 8.6884135, 49.5267542 8.5619915, 49.3425441 8.6599382, 49.5191389 8.4062496, 49.4750609 8.6692928, 49.5289761 8.6181849, 49.5412571 8.5655589, 49.5465615 8.5675124, 49.5479095 8.5979610, 49.5473900 8.5917604, 49.5328738 8.5840945, 49.3111150 8.6481530, 49.5405306 8.5884183, 49.5416058 8.5883322, 49.6035142 8.4793012, 49.5010293 8.4763173, 49.5183424 8.4631446, 49.5293353 8.4507912, 49.5243872 8.4958207, 49.4491677 8.4946723 +55.9524898 -3.1736491, 55.9525959 -3.1925077 +24.7891123 141.3146697, -1.4309167 5.6350749, -4.7738085 157.0316686, 18.1108333 145.7722222, 14.5661111 168.9566667, -12.1691894 96.8301442, -10.4878279 105.6329821, -10.8565567 -165.8461748, -0.8564844 169.5355321, 14.8522683 -24.7075971, -37.1156907 -12.2828246, -29.0260120 167.9556525, 56.5736061 -169.6263149, -27.6083244 -144.3429876, -12.2952834 168.8295414, 6.2091635 160.7089153, 5.5280950 -87.0612001, -59.4370027 -27.3584626, -25.0696325 -130.1053040, 77.4956092 82.4334344, -20.5044623 -29.3209289, -15.8917495 54.5231076, 10.3033619 -109.2171990, -54.4189432 3.3604943, -49.6814062 178.7699280, -37.8365206 77.5549248, -38.7206736 77.5263243, -15.9672556 -5.7107062, -7.9410339 -14.3578255, -62.1687476 -58.3613060, 51.9494289 179.6228852, -14.1721262 -141.2252651, -22.2385304 -138.7472529, -10.4888425 105.6262024, 50.8628415 155.5676832, -29.0289934 167.9556525, -29.2693250 -177.9335285, -52.5374577 169.1416709, -1.2902111 -90.4317786, -7.3385866 72.4242323, -60.7213362 -44.6289196, -68.8422683 -90.5797344, -54.6318119 158.8625822, -76.0771107 168.3006656, -71.8869791 171.1877520, 81.7741030 58.6051449, 0.8075422 -176.6180734, -27.1259837 -109.3386817, -33.6444743 -78.8591275, 18.7927589 -110.9813295 +Kulturzentrum Karlstorbahnhof, Deutsch-Amerikanisches Institut and http://www.dai-heidelberg.de, Dezernat 16 and http://www.dezernat16.de +48.8655959 2.3652444 +yes +2012-11-15, 2012-11-15, 2013-03-17, 2012-11-15, 2012-11-15, 2010-10-12, 2010-10-12, 2010-10-12, 2012-11-15, 2012-11-15, 2012-11-15, 2013-03-17, 2012-11-15, 2012-11-15, 2012-11-15, 2012-11-15, 2010-10-12, 2010-10-12, 2012-11-15, 2012-11-15, 2010-10-12, 2010-10-12, 2012-11-15, 2012-11-15, 2010-10-12, 2010-10-12, 2012-11-15, 2012-11-15, 2011-11-29, 2013-03-17, 2012-11-15, 2011-11-28, 2010-10-12, 2011-11-28, 2011-11-28, 2013-03-17, 2012-11-15, 2012-11-15, 2011-11-28, 2012-11-15, 2011-11-28, 2013-03-17, 2013-03-17, 2012-11-15, 2013-03-17, 2013-03-17, 2013-03-15, 2012-11-15, 2011-11-29, 2013-03-15, 2013-03-15, 2013-03-17, 2013-03-17, 2013-03-17, 2011-11-29, 2013-03-17, 2013-03-15, 2013-03-15 +11.854201048423009 +Städt. Gem. Grundschule - Dornberg, Priv. Rudolf-Steiner-Schule and http://www.waldorfschule-bielefeld.de/, Kinderverkehrsschule, Leineweberschule, Städt. Gem. Grundschule - Südschule, Städt. Gem. Hauptschule - Marktschule, Städt. Gem. Grundschule - Diesterwegschule, Städt. Gem. Grundschule Hillegossen, Städt. Gem. Grundschule - Brüder-Grimm-Schule, Städt. Gem. Grundschule - Am Waldschlößchen and http://www.gs-waldschloesschen.de/, Bildungszentrum Franziskus Hospital, Städt. Gem. Grundschule - Stiftsschule and http://www.stiftsschule-bielefeld.de/, Mamre-Patmos-Schule and http://www.mps-bethel.de/, Städt. Gem. Grundschule - Ummeln, Städt. Gem. Grundschule - Plaß-Schule, Städt. Gem. Grundschule Ubbedissen, Gymnasium Heepen and http://www.gymnasiumheepen.de/, Realschule Heepen and http://www.realschuleheepen.de/, Städt. Gem. Hauptschule - Heepen and http://www.hauptschule-heepen.de/, Städt. Gem. Grundschule - Am Homersen, Tieplatzschule, Städt. Gem. Hauptschule - Baumheideschule, Städt. Gem. Grundschule - Wellbachschule, Brackweder Gymnasium, Städt. Gem. Grundschule - Heeperholz, Städt. Gem. Grundschule Milse, Städt. Gem. Grundschule - Hans-Christian-Andersen-Schule, Friedrich Wilhelm Murnau-Gesamtschule - Städt. Schule Bielefeld-Stieghorst, Carl-Severing-Berufskolleg für Wirtschaft und Verwaltung, Außenstelle, Städt. Gem. Grundschule Babenhausen, Städt. Gem. Grundschule - Josefschule, Städt. Gem. Hauptschule - Lutherschule, Bonifatiusschule, Städt. Gem. Grundschule Altenhagen, Westfalen-Kolleg Bielefeld, Städt. Gem. Grundschule - Russheideschule, Städt. Gem. Grundschule - Stieghorstschule, Städt. Gem. Grundschule Brake, Städt. Gem. Grundschule - Oldentrup, Städt. Gem. Grundschule - Schröttinghausen-Deppendorf, Städt. Gem. Hauptschule - Oldentrup and http://www.hauptschule-oldentrup.de/, Städt. Gem. Grundschule - Hellingskampschule, Städt. Gem. Grundschule - Volkeningschule, Städt. Gem. Grundschule - Astrid-Lindgren-Schule, Städt. Gesamtschule Brackwede, Hans-Ehrenberg-Schule, Luisenschule, Realschule Brackwede, Städt. Martin-Niemöller-Gesamtschule, Helmholtz-Gymnasium and http://www.helmholtz-bi.de/, Realschule Jöllenbeck, Städt. Gem. Hauptschule Jöllenbeck, Verein Sonnenhellweg-Schule e.V., Städt. Gem. Grundschule - Eichendorffschule, Brodhagenschule and http://www.brodhagenschule.de/, Bosseschule, Städt. Gem. Grundschule - Sudbrackschule, Abendgymnasium - Gutenbergschule and http://www.abendgymnasium-bielefeld.de/, Gertrud-Bäumer-Schule, Max-Planck-Gymnasium and http://www.mpg-bielefeld.de, Städt. Cecilien-Gymnasium and http://www.ceciliengymnasium.de/, Städt. Gem. Grundschule - Fröbelschule, Schule am Kupferhammer, Städt. Gem. Grundschule - Brocker Schule, Städt. Gem. Grundschule - Bültmannshofschule, Ganztagsschule am Lönkert, Städt. Gem. Grundschule - Frölenbergschule, Carl-Severing-Berufskolleg für Handwerk und Technik and http://www.carl-severing-berufskolleg.de/csb-ht/, Carl-Severing-Berufskolleg für Metall- und Elektrotechnik and http://www.csbme.de/, Carl-Severing-Berufskolleg für Wirtschaft und Verwaltung and http://www.carl-severing-berufskolleg.de/csb-ht/, Maria-Stemme-Berufskolleg, Städt. Realschule - Kuhloschule, Falkschule, Ratsgymnasium zu Bielefeld, Gymnasium am Waldhof, Comeniusschule, Schule am Schlepperweg, Städt. Gem. Grundschule - Bückardtschule, Abendgymnasium jetzt Gutenbergstr. 19, Evangelische Bekenntnisgrundschule Hoberge-Uerentrup der Stadt Bielefeld, Hamfeldschule, Städt. Gem. Grundschule Theesen, Städt. Gem. Grundschule Vilsendorf, Fachseminar für Altenpflege, Friedrich-von-Bodelschwingh Schulen Bethel - Berufskolleg and http://www.berufskolleg-bethel.de/, Städt. Gem. Grundschule - Martinschule, Hedwig Dornbusch Schule, Berufskolleg, Kerschensteiner Berufskolleg and http://www.gymnasium-bethel.de/, Bibelschule Mennoniten-Gemeinde Bielefeld e.V., Schule am Möllerstift, Berufskolleg Senne, Gesamtschule Rosenhöhe, Rudolf-Rempel-Berufskolleg, Johannes-Rau-Schule, Theodor-Heuss-Schule, Realschule Senne, Sekundarschule Bethel Sekundarstufe I and http://www.fvbschulen.de/, Städt. Gem. Hauptschule Bielefeld - Hauptschule Senne, Öffentlich-Stiftisches Gymnasium der v. Bodelschwinghschen Stiftungen, Musik- und Kunstschule and http://www.muku-bielefeld.de/, Städt. Gem. Grundschule - Windflöte, Albatros-Schule, Berufskolleg der AWO Fachschule für Sozialpädagogik, Georg-Müller-Schule Senne, Georg-Müller-Schule and http://www.gms-net.de/, Georg-Müller-Schule and http://www.gms-net.de/, Georg-Müller-Schule and http://www.gms-net.de/, Griechische Ergänzungsschule (Lyzeum), Städt. Gem. Grundschule - Bahnhofschule, Städt. Gem. Grundschule - Buschkampschule, Städt. Gem. Grundschule - Osningschule, Städt. Gem. Grundschule - Quelle, Städt. Gem. Grundschule - Vogelruthschule, Städt. Kath. Grundschule - Klosterschule, Westkampschule, Schule für Ergotherapie Eckardtsheim and http://www.evkb.de/ergotherapieschule/, Ev. Krankenhaus Bielefeld (EvKB) - Haus Burgblick and http://www.evkb.de, Laborschule Haus 1, Hauptschule Nebengebäude, Turnhalle, Wellensiekschule (Grundschule Wellensiek) and http://www.wellensiekschule.de/, Klosterschule, Marienschule Bielefeld, Hundeschule Tuxhorn and http://www.bielefelder-hundeschule-tuxhorn.de/, Stapenhorstschule +365 +121 +436 +no +http://www.hotel-etab.de, http://www.marriott.de, http://www.auerstein.de/, http://www.hotels-in-heidelberg.de, http://www.gaestehaus-endrich.de, http://www.parkhotelatlantic.de, www.leonardo-hotels.com, www.bayrischer-hof-heidelberg.com, www.hackteufel.de, http://www.hotels-in-heidelberg.de, www.dublinerheidelberg.com, www.ibis-hotel.de, http://hotelneckartal.de, www.goldener-falke-heidelberg.de, www.ritter-heidelberg.de, www.europaeischerhof.com, http://www.hotel-elite-heidelberg.de, http://qube-hotel-heidelberg.de/, www.hotel-central-heidelberg.de, http://www.denner-hotel.de, www.hotel-acor.de, www.hotel-monpti.de, http://www.hotelamkornmarkt.de, http://www.nh-hotels.de/nh/de/hotels/deutschland/heidelberg.html, www.hotel-goldene-rose.de, www.hotel-nassauer-hof.de, http://www.hotels-in-heidelberg.de, http://www.hotels-in-heidelberg.de, http://www.heidelberger-kulturbrauerei.de/, www.villamarstall.de, www.hotel-goldener-hecht.de, www.hollaender-hof.de, http://www.schnookeloch.de, www.arthotel.de, www.weisserbock.de, http://www.gasthaus-backmulde-hotel.de, www.hip-hotel.de, www.hd-altstadt-hotel.de, www.krokodil-heidelberg.de, www.blume-hotel.de, www.hotel-classic-inn.de, www.garnihoteldiana.de, http://www.bergheim41.de, http://www.hotel-kranich-heidelberg.de, http://www.ihg.com/holidayinnexpress/hotels/de/de/heidelberg/hdbex/hoteldetail, http://www.molkenkur.de, www.gaestehaus.srh.de/, www.heidelbergsuites.com, www.lamm-heidelberg.de, http://www.heidelberg-astoria.de/, www.hirschgasse.de, http://www.crowneplaza-heidelberg.de/, http://www.exzellenzhotel.de, www.boardinghouse-hd.de, http://www.hotel-anlage.de, www.panorama-heidelberg.de, http://www.leonardo-hotels.de/deutschland-hotels/hotel-heidelberg/leonardo-heidelberg-hotel, www.hotel-schmitt-heidelberg.de, http://www.goldenerose-hd.de, http://www.hotelheidelberg.com, www.hotel-rose-heidelberg.com, http://www.hotel-neu-heidelberg.de, https://hotelo-heidelberg.de, http://www.hotel-ambiente-heidelberg.de, http://www.cafe-frisch.de, http://www.hoteldenriko-hd.de/, http://www.adler-heidelberg.de, http://www.zum-waldhorn.de, http://www.hotelbb.de/de/heidelberg +yes +yes +48.1326162 11.5725116 +yes + +Kita Philipp-Reis-Straße, Katholischer Kindergarten St. Joseph, Waldkindergarten, Privater Kindergarten Neuenheim, Kindertageseinrichtung des Studentenwerkes, Krabbelstube des Studentenwerkes, Katholischer Kindergarten St. Raphael, Evangelischer Kindergarten der Johannesgemeinde, Städtische Kindertagesstätte Lutherstraße, Katholischer Kindergarten St. Christophorus, Evangelischer Kindergarten, Sonderschulkindergarten für gehörlose und gehörgeschädigte Kinder, Kinderkrippe Studentenwerk, Waldorfkindergarten Heidelberg, Evangelischer Kindergarten, Glückskinder Betreuungsservices GmbH, Kindernest, AWO - Kindertagesstätte Bergheim, Evangelische Tageseinrichtung für Kinder, Kinderkrippe Bullerbü, Kindergarten St. Albert, Tagesstätte für Kinder, Tagesstätte für Kinder, Arche, Kindertagesstätte Fliegenpilz, Kindertagesstätte, Kindertagesstätte Blumenstraße, EVA.KITA, Sankt Elisabeth, Kinderladen Heuhüpfer e.V., Haus für Kinder, Kindergruppe Plöck, Städtische Kindertagesstätte Karolinger Weg, INF 685, Kindergarten, Diakonisches Werk, Krippenhaus, Evangelische Kindertagesstätte Handschuhsheim-West, Kleine Pusteblume KiGa, Katholischer Kindergarten St. Vitus, Kindertagesstätte Handschuhsheimer Landstraße, Evangelischer Jakobuskindergarten, Evangelischer Kindergarten Lindenweg, Städtische Kindertagesstätte Vangerowstraße, Kath. Kindergarten St. Bartholomäus, Evangelischer Kindergarten Panamahaus, Musikkindergarten Sankt Paul, Städtische Kita Adolf-Engelhardt-Straße, Städtische Kindertagesstätte Klingenteichstraße, Kindertagesstätte Kanzleigasse, Waldkindergarten Heidelberg, Waldkindergarten Riesenstein, Waldkindergarten Heidelberg, Waldkindergarten Heidelberg, Kinderkrippe Kinderkiste, Waldkindergarten Heidelberg, Kindertagesstätte Jägerpfad, Evangelischer Kindergarten "Paula Heck", Kindertagesstätte Schwetzinger Terrasse, Kinderladen Heuhüpfer, Kiku Kinderland, Champini Sport- & Bewegungskita Heidelberg Schlierbach, Kinderhaus, Kids' Club, Im Spitzgewann +567.8, 446, 481, 480, 376, 375.5, 439.9, 486.9, 449, 539, 296, 258 +BNP Paribas +wayside shrine, memorial, archaeological site, castle, wayside cross, stone, yes, boundary stone, ruins, monument, city gate, tower, tracks +49.5625091 8.6652144, 49.3632716 8.6822796, 49.2904856 8.6711957, 49.2293107 8.5154631, 49.4886708 8.4342383, 49.3874604 8.3743606, 49.4981414 8.4878822, 49.4348566 8.5221896, 49.4914529 8.4686192, 49.4429579 8.3536220, 49.4952463 8.3716996, 49.4740787 8.3281191, 49.4872738 8.4399863, 49.4833258 8.4437414, 49.5024486 8.4718364, 49.4431050 8.3538899, 49.4938895 8.4613373, 49.4548799 8.5945594, 49.4941761 8.4587661, 49.4611243 8.4946413, 49.3388954 8.4209382, 49.5501019 8.4725871, 49.4440236 8.8973087, 49.3322201 8.5330358, 49.3820239 8.3934831, 49.4764694 8.4207773 +48.3908215 -4.4845938, 48.6510102 -2.0245876, 48.6084394 -4.3313468 +yes +793 +yes and 3 +Mo-Sa 10:00-18:30, We 14:30-18:30 +yes +55.8969575 -3.3064520, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9383223 -3.4081252, 55.9612140 -3.3062746, 55.9103533 -3.3220087, 55.9328871 -3.3087416, 55.9428244 -3.2815918, 55.9035407 -3.2854196, 55.9655823 -3.2732115, 55.9429604 -3.2929801, 55.9426525 -3.2829003, 55.9430016 -3.2880429, 55.9656482 -3.2744012, 55.9233852 -3.2910431, 55.9234641 -3.2913646, 55.9383988 -3.3146583 +Le Boyard +55.9501318 -3.1886125 +gardener, electrician, carpenter, paver, plumber, brewery, stonemason, hvac, photographer, roofer, saddler, caterer +Sainsbury's Local, Tesco, Scotmid, Scotmid Co-operative, Co-Op, Scotmid Co-operative, Scotmid, Tesco, Tesco Metro, Bodrum Fine Foods, Tesco Express, Tesco Metro, Sainsbury's Local, Sainsbury's, Maqbools, Scotmid, Scotmid, Scotmid Co-operative, Scotmid, Scotmid, Tesco Express, Sainsbury's, Tesco Express, Tesco Express, Co-operative, Farmfoods, Sainsburys Local, Morrisons Local, Sainsbury's Local, Tesco Express, Co-operative Food, Sainsbury's Local, Iceland, LIDL, Sainsbury's Local, Lidl, Matthew's Foods, Sainsbury's, Iceland, Scotmid, Sainsbury's Local, Liberton Food, News & Wine, Sainsbury's Local, Rajah's Supermarket, Farmfoods, Co-operative Food, Morisons, Tesco Colinton, Tesco Corstorphine Extra 24hr, Morrisons Ferry Road, Tesco Home Plus, Waitrose, Co-op, Tesco, Waitrose, Lidl, Tesco, Aldi, The Jewel, Asda Leith Superstore, Tesco, Scotmid, Lidl, Sainsbury's Longstone, Sainsbury's, Co-operative Food, M&S Simply Food, Morrisons Supermarket, Sainsbury's Murrayfield, Morrisons, Morrisons, Iceland, Tesco Metro, Scotmid, Scotmid, Farmfoods, Scotmid Co-operative, Cook, Sainsbury's Local, Scotmid, Scotmid, Tesco Express, Tesco Express, Sainsbury's Local, Scotmid Co-op, ASDA Chesser, Scotmid, Tesco Hermiston Gait, Morrisons, Iceland, Lidl +Vulpius-Hütte and 49.4007958 8.7275016 +712 +yes +55.8969575 -3.3064520, 55.9286779 -3.2096502, 55.9709217 -3.2085540, 55.9710794 -3.2083765, 55.9713224 -3.2074276, 55.9584008 -3.2092092, 55.9601757 -3.2559248, 55.9312309 -3.2523089, 55.9511924 -3.1760524, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9073786 -3.2585910, 55.9531081 -3.2008271, 55.9450251 -3.2048945, 55.9616053 -3.1809060, 55.9122939 -3.1636240, 55.9391016 -3.2261638, 55.9426048 -3.1828681, 55.9284825 -3.2096589, 55.9492055 -3.1928272, 55.9457630 -3.2348824, 55.9531031 -3.1974183, 55.9442023 -3.2038200, 55.9503960 -3.1873714, 55.9086565 -3.2096817, 55.9612140 -3.3062746, 55.9809058 -3.1784709, 55.9541472 -3.1916750, 55.9428244 -3.2815918, 55.9498996 -3.2091714, 55.9511059 -3.2031477, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9537368 -3.1946870, 55.9468356 -3.2159630, 55.9379488 -3.2323230, 55.9573609 -3.2064305, 55.9530711 -3.2010501, 55.9526098 -3.2039830, 55.9430480 -3.2039420, 55.9576925 -3.1843665, 55.9527506 -3.1965698, 55.9507785 -3.2057118, 55.9717098 -3.1715371, 55.9695931 -3.1723910, 55.9552824 -3.1886051, 55.9275226 -3.2095127, 55.9462004 -3.1850058, 55.9700768 -3.1718970, 55.9267933 -3.2094073, 55.9245093 -3.2096867, 55.9562269 -3.1380823, 55.9683279 -3.1734427, 55.9325351 -3.1397933, 55.9453646 -3.1914973, 55.9453776 -3.1916473, 55.9507459 -3.2052838, 55.9527501 -3.2005561, 55.9528295 -3.1149002, 55.9533094 -3.1146987, 55.9524703 -3.1136856, 55.9587335 -3.2260450, 55.9252818 -3.2099781, 55.9429604 -3.2929801, 55.9656482 -3.2744012, 55.9233852 -3.2910431, 55.9234641 -3.2913646, 55.9383988 -3.3146583, 55.9528337 -3.1973510 +Sparkasse Heidelberg, H + G Bank, Sparkasse Heidelberg, H+G Bank, H+G Bank, Sparda-Bank Baden-Württemberg eG, Targobank, H+G Bank, Commerzbank, SEB, Deutsche Bank, Postbank, Heidelberger Volksbank, Heidelberger Volksbank, Heidelberger Volksbank, Commerzbank, BW Bank, GE Money Bank, Postbank, Volksbank Heidelberg, Sparkasse Heidelberg, H+G Bank, Sparkasse, Commerzbank, H+G Bank, H+G Bank, Sparkasse Heidelberg, Deutsche Bank, Badische Beamten Bank, Volksbank Kurpfalz H + G BANK eG, Commerzbank, Badische-Beamten-Bank, Sparkasse Heidelberg, PSD Bank Karlsruhe-Neustadt eG, Postbank ++49 6221 29406 +48.8798114 2.3837139, 48.8798183 2.3835960 +3.6128066103214249 +365 +Tang Frères, Monoprix Lecourbe, Franprix, G20, Casino Lecourbe, Marché U, Marché U, Dia, G20, Carrefour City, G20, Monoprix, Franprix, Intermarché, Franprix, Franprix, Lidl, Franprix, Franprix, Franprix, Franprix, Franprix, Carrefour City, Monoprix Convention, Dia, DIA, Monoprix, Monoprix, Lidl, Monop', Franprix, Dia, Simply Market, Simply Market, Franprix, Dia, Simply Market, Franprix, Monoprix, Carrefour City, Franprix, Simply Market, Dia, marché Franprix, Franprix, G20, Franprix, Monoprix, Dia, A2pas Auchan, Petit Casino, Carrefour Market, Europasie, Franprix, Franprix, Monoprix, DIA, 8 a huit, Naturalia, Casino, Franprix, Franprix, Monoprix, Franprix, Franprix, Simply Market, Monoprix, Carrefour Market, Franprix, Franprix, Franprix, Franprix, Franprix, Monoprix, Franprix, Proxi super, Monoprix, DIA, Franprix, SimplyMarket, Naturalia, Naturalia Crussol, Franprix, Monoprix, Monoprix, Franprix, Dia, Tati, Franprix, Franprix, Casino, Franprix, Biocoop, Franprix, G20, Monop', DIA, Dia, Marché Franprix, Paris Store, Marché Franprix, Monoprix, Franprix, Franprix, Carrefour City, Proxi, Dia, Carrefour Market, G20, Super U, Carrefour Market, Leader Price, Franprix, Carrefour City, Dia, Petit Casino, Naturalia, Franprix, HyperCasino, Franprix, Carrefour Market, Canal Bio, Carrefour City, Franprix, Intermarché, Carrefour Market, Bio C' Bon, Franprix, Wing Seng, Carrefour Market, Paris Store, Les Nouvelles Halles - 新今日超市, Supermarché Bonjour - 新温州超市, Franprix, Franprix, Franprix, Franprix, Picard, Dia, Terre de Chine, Franprix, Carrefour City, Franprix, Simply Market, Biocoop Le retour à la Terre - Rive Gauche, Franprix, Franprix, Lidl, DIA, Franprix, DIA, Franprix, Franprix, Franprix, Franprix, Franprix, Naturalia, Franprix, Monop', Franprix, Franprix, Marché Franprix, DIA, Carrefour Express, Les Nouveaux Robinson, Monoprix, Le Marché d'à côté, Supermarché G20, Lidl, Monoprix, Carrefour Market, Franprix, Monop', Le Marché de Rungis, Casino, franprix, Carrefour City, Naturalia, La grande épicerie de Paris, G20, Supermarché Franprix, Bio c'Bon, Pimlico, Franprix, Marché Franprix, DIA, Franprix, Supermarché G20, Franprix, Simply Market Paris Brune, Carrefour, Franprix, Monoprix, Franprix, Dia, Carrefour Market, Franprix, Biocoop Grenelle, Dia, Franprix, Carrefour Express, Franprix, Dia, Franprix, CarrefourCity, Monoprix, Franprix, Monop', G20, Leader Price, Franprix, Diagonal, Carrefour Market, Monoprix, Franprix, Intermarché Super, Franprix, Franprix, Picard, Carrefour, Marché U, Leader price, Dia, G20, Franprix, Le Marché Franprix, Le Marché Franprix, DIA, Monoprix, Franprix, Carrefour Market Paris Monge, Franprix, Franprix, Franprix, Franprix, Monoprix, Dia, Simply Market, Monoprix, Franprix, Franprix, Franprix, DIA, Carrefour City Market, Franprix, Leader Price, Franprix, Franprix, Simply Market, Dia, Futur Carrefour, Casino, Monoprix, Intermarché Express, Carrefour Market, K-mart, Marché Franprix, Dia, Sitis, Franprix, Franprix, Bio c'Bon, Franprix, Monoprix, Franprix, Franprix, Monoprix, Franprix, Marché Franprix, Monoprix, U Express, Franprix, Carrefour City, Franprix, Carrefour Market, G20, Monoprix, Intermarché, Franprix, Carrefour Express, Marché Franprix, Super U, Marché Franprix, Carrefour City, Franprix, Franprix, Lidl, Monop', Tang Frères, Hall' shop, 8 à 8, Retour à la Terre, Leader Price, Monop', Leader Price, Naturalia, Franprix, Bio c' Bon, Carrefour City, Franprix, Épicerie anglaise, N.Y.P. Supermarche, DIA, Carrefour City, Ting Supermarché Chinois, Franprix, Franprix, Monoprix, Monop' Austerlitz, Franprix, Franprix, Carrefour Market, Monoprix, Monoprix, Franprix, Simply Market, Franprix, Lidl, Monoprix, Franprix, DIA, Leader price, Franprix, Franprix, Franprix, Bio c'bon, Franprix, Carrefour City, Monop, Franprix, Lidl, Franprix, Leader Price, Franprix, Monoprix, Franprix, Franprix, Intermarché Express, Franprix, G20, Marché Franprix, Marché Franprix, Monop', Marché Franprix, Casino Supermarché, G20, Franprix, Lidl, DIA, Super U, Franprix, Carrefour City, Monop', Naturalia, 8 à huit, G20, Franprix, Carrefour Market, Franprix, Picard Surgeles, Dia, Monoprix, DIA, Franprix, Franprix, DIA, Franprix, Casitalia, Carrefour City, Carrefour City, Monop', Franprix, Votre Marché, Daily Monop', Monop', Monoprix, Bio Génération, G20, Franprix, Monoprix, Carrefour Express, A2pas, Franprix, DIA, Carrefour City, Franprix, Monoprix, Bio c' Bon, Franprix, Carrefour City, Casino, Biocoop, Carrefour City, Franprix, Franprix, Franprix, Marché Franprix, Franprix, Franprix, Marché Franprix, Dia, Carrefour bio, Naturalia, Naturalia, Franprix, Monoprix, Printemps (2014), Paris Store, Bio c bon, G20, Franprix, Carrefour City, Carrefour Express, Monop', Franprix, Proxy market, G20, G20, Monoprix, Carrefour City, Franprix, Franprix, Franprix, Zola Color, Chine store - 新今日超市, Carrefour City, G20, Casino, Picard, Carrefour express, Coccinelle, Franprix, Picard, Monop', marché franprix, marché Franprix, Dia, Tang Frères, marché Franprix, Marché Franprix, DIA, Naturalia, Le Panier Gourmet - Franprix, Carrefour City Lecourbe, Franprix, Diagonal, Le Marché Franprix, Franprix, Lidl Olympiades, Franprix, Dia, Picard, Dia, Marks and Spencer, Dia, Tang Freres, DIA, Carrefour Express, G20, G20, Monoprix, La Vie claire, Picard, G20, Franprix, Carrefour City, Monop', Monop', Franprix, Carrefour Market, Picard Surgelés, Casino, Leader Price, Franprix, Dia, Leader Price, Dia, Dia, Marché Franprix, Géant Casino, Carrefour Express, Hyper Cacher, Le Marché Franprix, Picard, Naturalia, Neuilly Cacher, Franprix, Galeries Gourmandes, Bienvenue Superette Champerret, Cocci Market, Huit à 8, Bio c Bon, Lidl, Franprix, Paris Store, Picard Surgeles, Naouri Market, Naturalia, Franprix, Monoprix, elan nature, franprix, Monop Store, Picard Surgeles, Dia, Marché Franprix, Monop', Leader Price, Picard Surgeles, Carrefour Express, Yarden, coccimarket, Picard, Franprix, Le Marché d'à côté, Dia, Franprix, Naouri Market, Hypercacher, Yarden Gel, G20, Supermarche de Stalingrad, Univ-Fresh, Causses, Dia, Yarden, Carrefour Market, A2pas, Franprix, Monoprix, Picard, G20, Les Quatre saisons - 新中华商场, Franprix, Carrefour Express, Carrefour, U Express, Carrefour City, Eden, Carrefour City, Carrefour City, Dia, Marché Franprix, Dia, Picard, Hyper Cacher, Franprix, Bio c' bon, Lidl, Lidl, Picard, Picard, Monop', Naturalia, Monop', Monop, Franprix, Franprix, Bien, G20, Holy Planet, Nissan Exotique Marché, Picard, Monoprix, Monoprix, Le Panier Gourmet - Franprix, Monoprix, Franprix, Franprix, U Express, Monoprix, Franprix, Monoprix Alimentation, Monop, Dia, Franprix, Carrefour Market, Carrefour City, Marché Franprix, Naturalia, Monoprix, Monoprix, Franprix, Monoprix, Centre Commercial E. Leclerc, Franprix +yes +0.31693520791766788 +138 +48.8671035 2.3471909, 48.8782645 2.3740462, 48.8774801 2.3700505, 48.8327092 2.3625620, 48.8304784 2.3562767, 48.8334332 2.3545467, 48.8326050 2.3544168, 48.8530182 2.4058632, 48.8697474 2.3709540, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8703950 2.3709651, 48.8778843 2.3510144, 48.8535279 2.3681762, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8521024 2.4034631, 48.8651078 2.3744344, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8695951 2.3715600, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8653000 2.3752307, 48.8673441 2.3627982, 48.8651925 2.3758399, 48.8629074 2.3860380, 48.8668485 2.3837377, 48.8672012 2.3825153, 48.8645121 2.3683814, 48.8318807 2.3568124, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8501765 2.3792170, 48.8507286 2.3779068, 48.8509545 2.3780414, 48.8502726 2.3811628, 48.8732053 2.3585526, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8605667 2.3751425, 48.8637354 2.3705262, 48.8369085 2.4021711, 48.8370521 2.4018326, 48.8396803 2.3945209, 48.8400366 2.3946968, 48.8397862 2.3968956, 48.8368227 2.4037506, 48.8368603 2.3917906, 48.8393074 2.3970077, 48.8743920 2.3574266, 48.8482696 2.3715140, 48.8470790 2.3740473, 48.8469009 2.3721664, 48.8479197 2.3716692, 48.8461048 2.3740873, 48.8477030 2.3740290, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8457782 2.3745532, 48.8574421 2.3793069, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8402359 2.3617231, 48.8648840 2.4053930, 48.8806821 2.3741833, 48.8591202 2.3475207, 48.8742798 2.3760564, 48.8660916 2.3526753, 48.8645295 2.3512403, 48.8685043 2.3498910, 48.8641253 2.3698504, 48.8518531 2.3567202, 48.8612900 2.3499825, 48.8612937 2.3537009, 48.8560141 2.3571788, 48.8595500 2.3565735, 48.8549508 2.3624309, 48.8552557 2.3616146, 48.8538346 2.3644665, 48.8543409 2.3691660, 48.8650455 2.3535907, 48.8669898 2.3620443, 48.8667188 2.3611850, 48.8662353 2.3610229, 48.8652895 2.3605043, 48.8633001 2.3620149, 48.8632099 2.3622012, 48.8626516 2.3633443, 48.8621296 2.3644112, 48.8614452 2.3647591, 48.8630803 2.3510377, 48.8592743 2.3796462, 48.8809308 2.3651881, 48.8812888 2.3651008, 48.8808303 2.3650793, 48.8883530 2.3917794, 48.8568213 2.3685042, 48.8904247 2.3760144, 48.8296558 2.3789838, 48.8382008 2.3505003, 48.8378958 2.3507127, 48.8377870 2.3508117, 48.8378570 2.3515198, 48.8376483 2.3516414, 48.8727273 2.3786615, 48.8284669 2.3791072, 48.8287974 2.3821578, 48.8293821 2.3782449, 48.8444634 2.4058653, 48.8806637 2.3648615, 48.8822323 2.3662711, 48.8459991 2.3734585, 48.8533487 2.3667989, 48.8949842 2.3821818, 48.8846806 2.3623964, 48.8797648 2.3567638, 48.8810016 2.3640265, 48.8606979 2.3554288, 48.8605259 2.3552067, 48.8765046 2.3790929, 48.8717642 2.3765169, 48.8824125 2.3814642, 48.8505969 2.3487384, 48.8388735 2.3499896, 48.8430873 2.3523909, 48.8433167 2.3520295, 48.8446194 2.3521389, 48.8387237 2.3571215, 48.8555518 2.3602965, 48.8585424 2.3554995, 48.8661318 2.3536080, 48.8685310 2.3627215, 48.8664790 2.3612544, 48.8671863 2.3624934, 48.8471366 2.3867728, 48.8382469 2.3985623, 48.8356227 2.4057366, 48.8417549 2.3864187, 48.8794747 2.3547243, 48.8592377 2.3714158, 48.8256887 2.3653770, 48.8695383 2.3950747, 48.8953387 2.3825799, 48.8367957 2.3917944, 48.8234162 2.3578095, 48.8223317 2.3587958, 48.8230555 2.3585643, 48.8454338 2.3886185, 48.8503640 2.3847349, 48.8446673 2.3830913, 48.8488537 2.3789042, 48.8459220 2.4058540, 48.8383753 2.3982048, 48.8636110 2.3699568, 48.8707193 2.3495070, 48.8761304 2.3564812, 48.8754523 2.3562375, 48.8834234 2.3734013, 48.8570504 2.3810504, 48.8540420 2.4102463, 48.8631926 2.3875837, 48.8465399 2.3518782, 48.8256754 2.3500062, 48.8369096 2.3712028, 48.8312779 2.3775666, 48.8731847 2.3591245, 48.8902005 2.3757322, 48.8706510 2.3613960, 48.8433669 2.3494429, 48.8570621 2.3817062, 48.8372502 2.3914765, 48.8790699 2.3540350, 48.8481085 2.4036760, 48.8482530 2.4016764, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8337153 2.3863338, 48.8468610 2.3536998, 48.8201698 2.3641255, 48.8525391 2.4047416, 48.8525041 2.4054710, 48.8358361 2.3959436, 48.8620103 2.3504016, 48.8776629 2.3503063, 48.8607520 2.3551307, 48.8599332 2.3492544, 48.8616973 2.3497749, 48.8808570 2.3744052, 48.8816465 2.3719957, 48.8810026 2.3740798, 48.8809708 2.3734937, 48.8808782 2.3736050, 48.8271902 2.3689921, 48.8456435 2.3883893, 48.8467978 2.3874491, 48.8463910 2.3878730, 48.8240842 2.3636888, 48.8226659 2.3580445, 48.8259715 2.3507845, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8690375 2.4018799, 48.8681245 2.4017154, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8709768 2.4035156, 48.8718932 2.4046138, 48.8711831 2.4041560, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8650286 2.3978764, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8661206 2.3993734, 48.8647416 2.4000331, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8646156 2.3980291, 48.8385802 2.3568194, 48.8575448 2.3507955, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8260853 2.3604941, 48.8276987 2.3717961, 48.8898740 2.3601766, 48.8309472 2.3666202, 48.8900866 2.3603615, 48.8457722 2.3952172, 48.8315085 2.3570011, 48.8294497 2.3691497, 48.8911754 2.3596165, 48.8912089 2.3601196, 48.8267862 2.3639559, 48.8275456 2.3565272, 48.8292086 2.3568667, 48.8895540 2.3596572, 48.8601780 2.3784708, 48.8918470 2.3497087, 48.8394408 2.3901626, 48.8634536 2.3668626, 48.8621628 2.3647719, 48.8643458 2.3599234, 48.8304530 2.3781049, 48.8561136 2.3566520, 48.8740405 2.3857795, 48.8749608 2.3892009, 48.8739345 2.3878755, 48.8794344 2.3881410, 48.8536688 2.3651544, 48.8801930 2.3906171, 48.8750094 2.3896199, 48.8755856 2.3816591, 48.8358783 2.3528351, 48.8737724 2.3861774, 48.8469948 2.3720795, 48.8741080 2.3859246, 48.8448082 2.4018695, 48.8776217 2.3939651, 48.8776968 2.3952330, 48.8775224 2.3930979, 48.8577037 2.3677906, 48.8547650 2.3703199, 48.8419262 2.3651705, 48.8370898 2.3512464, 48.8439360 2.3521362, 48.8687439 2.3725567, 48.8473180 2.3512660, 48.8836091 2.3810186, 48.8364615 2.3516931, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8331060 2.3547764, 48.8275383 2.3571726, 48.8466594 2.4106749, 48.8474387 2.3948976, 48.8475088 2.4104704, 48.8293214 2.3692986, 48.8558171 2.3591925, 48.8843398 2.3684081, 48.8295478 2.3565241, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8605440 2.3490975, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8551235 2.3603692, 48.8335336 2.4018517, 48.8344090 2.3538607, 48.8329666 2.3548590, 48.8524475 2.3894597, 48.8426473 2.3496219, 48.8459597 2.3544163, 48.8370786 2.3520317, 48.8570274 2.3983184, 48.8851905 2.3788177, 48.8694492 2.3546663, 48.8803860 2.3748678, 48.8493470 2.3529650, 48.8747781 2.3879795, 48.8755246 2.3943562, 48.8828185 2.3827206, 48.8753559 2.3919799, 48.8752306 2.3934592, 48.8491590 2.3498700, 48.8485190 2.3493440, 48.8401997 2.3954293, 48.8651944 2.3554408, 48.8650138 2.3556963, 48.8895142 2.3498344, 48.8578346 2.3793123, 48.8619859 2.3647571, 48.8664714 2.3673929, 48.8625029 2.3716831, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8455488 2.4110597, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8778905 2.3549883, 48.8488552 2.3942325, 48.8489972 2.3942887, 48.8505758 2.3948498, 48.8494165 2.3948501, 48.8643045 2.3993897, 48.8449899 2.4047731, 48.8351835 2.3533874, 48.8406761 2.3933858, 48.8359858 2.3961013 +51.4399233 7.3193298, 51.4400849 7.3193098, 51.4428113 7.3879060, 51.4390018 7.3650791 +49.4073928 8.7041148, 49.4068507 8.7042612, 49.4161569 8.7709138, 49.4052714 8.7185373, 49.3862413 8.6792308, 49.3894429 8.6658909, 49.4085991 8.7816352, 49.4116596 8.7793796 +Greggs, Malone's Bakeries, Gregg's, Douglas's Bakery, Masons Bakery, Roll Up, Gregg's, Barnton Fine Foods, La Croissanterie, Mathiesons Bakers, Greggs, Storries Home Bakery, Morrison's Bakery, Greggs, Gregg's Bakery, Greggs, Greggs, Patissier Maxine, Patisserie Valerie, Bibi's Cake Boutique, Greggs, Dough Re Mi, Dough Re Mi, The Pine Tree Bakery, Donachie Bakers, Bayne's, Goodfellow & Steven, Greggs, Bakery Andante, Greggs, Greggs, Bayne's, Artisan Bakehouse, Nikki's Cakes, Goodfellow & Steven, Edinburgh Bakehouse, Greggs, Greggs, Bonningtons, The Wee Boulangerie, Jacob, Licks Cake Design, Greggs, Greggs, Mr Bun's Bakery, Glenvarloch Bakery, Archipelago Bakery, Sicilian Pastry Shop, Melinda's Cake Boutique, Malone's Bakery, Greggs, 1, Greggs +1663 +1910 +69 +yes +207 and 48.8534705 2.3029031, 48.8528568 2.3020177, 48.8393301 2.3500747, 48.8420566 2.2965838, 48.8578708 2.3103454, 48.8495920 2.3118988, 48.8649951 2.3377982, 48.8387859 2.3504803, 48.8463542 2.3546880, 48.8391823 2.3706120, 48.8350620 2.4078967, 48.8506752 2.3329343, 48.8451544 2.3536617, 48.8803039 2.3798878, 48.8636678 2.3350046, 48.8637726 2.3355646, 48.8670925 2.3387264, 48.8540659 2.3616249, 48.8540729 2.3612004, 48.8645550 2.3645938, 48.8480587 2.3392944, 48.8806819 2.3876000, 48.8583933 2.3023795, 48.8669641 2.3142243, 48.8651920 2.3140147, 48.8670174 2.3136289, 48.8651787 2.3134167, 48.8316177 2.3780517, 48.8436874 2.3302939, 48.8483332 2.2576994, 48.8452340 2.3448440, 48.8429501 2.3517845, 48.8589666 2.4059365, 48.8616904 2.3160412, 48.8658377 2.3554835, 48.8612301 2.2900306, 48.8784002 2.3375553, 48.8772426 2.3277376, 48.8812329 2.3301337, 48.8410891 2.3368145, 48.8314280 2.3555815, 48.8396015 2.3958093, 48.8449573 2.4022523, 48.8828326 2.3719171, 48.8838484 2.3703052, 48.8546899 2.3251122, 48.8751011 2.3616070, 48.8681435 2.2454284, 48.8649019 2.3984981, 48.8557457 2.4009907, 48.8620414 2.3297804, 48.8628867 2.3292924, 48.8631141 2.3305616, 48.8645244 2.3241300, 48.8522608 2.4040943, 48.8923038 2.3388466, 48.8383839 2.2786491, 48.8673541 2.3180025, 48.8689632 2.3129455, 48.8683826 2.3147872, 48.8687522 2.3154832, 48.8649600 2.3207507, 48.8659920 2.3215075, 48.8668835 2.3116323, 48.8686692 2.3103634, 48.8686841 2.3099161, 48.8689059 2.3096161, 48.8690546 2.3106303, 48.8692789 2.3103348, 48.8692931 2.3098862, 48.8508700 2.3332751, 48.8559534 2.2977197, 48.8562003 2.2980848, 48.8679715 2.3375806, 48.8696713 2.2853395, 48.8448267 2.3832538, 48.8612184 2.3359626, 48.8607940 2.3357198, 48.8611505 2.3363233, 48.8609255 2.3361637, 48.8613287 2.3357359, 48.8606908 2.3360605, 48.8608125 2.3354395, 48.8185747 2.3602641, 48.8633424 2.3714600, 48.8670465 2.3537266, 48.8672803 2.3538862, 48.8854126 2.3770897, 48.8469168 2.3372024, 48.8544579 2.3112189, 48.8525635 2.3513635, 48.8727300 2.4014992, 48.8956082 2.3863617, 48.8963229 2.3877822, 48.8966783 2.3884868, 48.8468849 2.3100155, 48.8543573 2.3136915, 48.8572041 2.3519819, 48.8572192 2.3519137, 48.8572350 2.3518428, 48.8572508 2.3517719, 48.8572661 2.3517033, 48.8560656 2.3513775, 48.8560820 2.3513063, 48.8560988 2.3512327, 48.8561157 2.3511592, 48.8561320 2.3510885, 48.8608242 2.2903788, 48.8608319 2.2903145, 48.8608723 2.2903038, 48.8609002 2.2904933, 48.8609205 2.2902287, 48.8609280 2.2901652, 48.8609419 2.2904783, 48.8609483 2.2904183, 48.8609686 2.2901537, 48.8609965 2.2903433, 48.8610167 2.2900786, 48.8610241 2.2900160, 48.8610380 2.2903290, 48.8610446 2.2902682, 48.8610648 2.2900036, 48.8610927 2.2901932, 48.8611130 2.2899286, 48.8611201 2.2898668, 48.8611341 2.2901798, 48.8611409 2.2901181, 48.8611611 2.2898535, 48.8611890 2.2900431, 48.8612092 2.2897785, 48.8612162 2.2897176, 48.8612371 2.2899680, 48.8612497 2.2892815, 48.8612573 2.2897034, 48.8612824 2.2892324, 48.8612852 2.2898930, 48.8613055 2.2896284, 48.8613058 2.2892652, 48.8613122 2.2895684, 48.8613262 2.2898814, 48.8613291 2.2892979, 48.8613334 2.2898179, 48.8613524 2.2893307, 48.8613536 2.2895533, 48.8613757 2.2893634, 48.8613815 2.2897429, 48.8614008 2.2893441, 48.8614222 2.2897322, 48.8614289 2.2893337, 48.8614296 2.2896679, 48.8614303 2.2894240, 48.8614569 2.2893330, 48.8614859 2.2893444, 48.8615086 2.2895426, 48.8615509 2.2896317, 48.8615627 2.2895858, 48.8615655 2.2894571, 48.8615688 2.2894995, 48.8615690 2.2895426, 48.8615734 2.2896657, 48.8615959 2.2896998, 48.8616108 2.2898138, 48.8616184 2.2897338, 48.8616409 2.2897679, 48.8821377 2.3372542, 48.8536817 2.3714996, 48.8696605 2.2853294, 48.8696606 2.2853482, 48.8594868 2.4062620, 48.8532110 2.3437278, 48.8669190 2.3151373, 48.8676892 2.3127232, 48.8444725 2.3494231, 48.8554490 2.3650796, 48.8553288 2.3657869, 48.8559134 2.3652568, 48.8557971 2.3659661, 48.8606366 2.3480234, 48.8603630 2.3385405, 48.8482401 2.3355377, 48.8474005 2.3405897, 48.8484960 2.3353412, 48.8556092 2.3748547, 48.8661998 2.3078190, 48.8433657 2.3114422, 48.8895890 2.3922761, 48.8378349 2.2570480, 48.8380419 2.2569108, 48.8407370 2.3407878, 48.8410188 2.3409683, 48.8624628 2.3173680, 48.8428842 2.2923159, 48.8473182 2.3484905, 48.8465020 2.2521838, 48.8614879 2.3185384, 48.8767410 2.3938898, 48.8968701 2.3795734, 48.8402590 2.2767481, 48.8362746 2.3799012, 48.8914572 2.3139757, 48.8522672 2.3477182, 48.8823814 2.3993385, 48.8575005 2.3472864, 48.8371783 2.3183145, 48.8652746 2.2967165, 48.8653830 2.3165628, 48.8708153 2.3962847 +4 +79 +49.4181786 8.7569634, 49.4145277 8.6909495, 49.4111212 8.7021704, 49.4210980 8.7559586 +01.40.27.50.05, 01.44.55.57.50, +33 (0)1 53 01 82 00, 01.48.74.38.50, 01.53.68.27.81, 01.43.55.52.72, 01.45.68.82.83, 01.42.64.40.10, +33 1 40 05 70 00, 01.42.72.10.16, 01.40.67.97.66, +33 1 44 78 75 00, 01.42.08.90.20, 01.44.54.04.48, +33 1 43224763, 01.42.58.28.73, 01.53.43.40.00, 01.40.62.84.25, 01.45.25.63.26, +33 1 42 79 24 24, +33 1 40 22 11 00, 00.33.(0)1.42.29.68.60, 01.58.51.52.00, +33 (0)1 53 65 69 69, +33 (0)1 53 65 69 53, 01.45.23.74.09, 01.42.88.41.53, +33 1 56 26 14 03, 01.45.00.91.75, 01.43.40.16.22, 01.45.43.06.98, 01.42.86.20.47, 01.43.54.35.61, 01.45.44.09.55, 01.49.22.41.15, 01.45.20.53.41, 01.43.26.25.03, 01.42.34.68.60, 01.47.63.42.73, 01.42.22.59.58, +33 1 42 22 48 48, +33 1 42229196, 01.40.51.92.90, 01.55.42.50.10, 01.53.79.37.47, 01.44.41.52.50, 01.53.10.07.00, 01.40.64.39.44, 01.42.65.30.47, +33156802700, +33 1 44 32 47 48, 01.56.61.70.00, 01.40.79.54.79, +331 40 79 54 79, +331 40 79 56 01, 01.40.51.38.38, 01.42.58.72.89, +33 1 47031250, 01.44.50.43.00, 01.56.24.55.33, 01.42.76.33.97, 01.42.76.26.32, 01.53.73.78.13, 01.53.01.86.53, 01.40.27.60.96, 01.85.56.00.36, 01.40.27.07.21, 01.44.41.86.50, 01 53 59 58 60, 01.46.59.05.51, 01.53.59.12.40, 01.42.68.02.01, 01.44.55.57.50, 01.53.96.21.50, 01.44.18.61.10, 01.45.42.11.59, 01.71.19.33.33, 01.53.67.40.00, 01.47.23.54.01, 01.42.18.56.50, 01.58.52.53.00, 01.49.54.73.73, +33 1 45535796, 01.44.96.50.33, 01.40.79.54.79, 01.40.79.56.01, 01.55.31.95.67, +33 1 55744180, 01.42.24.54.02, +33 1 42 77 44 72, 01.44.37.95 .01, 01.55.42.77.20, 01.49.25.89.39, 01.53.01.92.40, 01.40.13.62.00, 01.44.78.80.20, 01.40.69.96.00, 01.56.52.86.00, 01.44.59.58.58, 01.53.40.60.80 +yes +96 +attraction, information, museum, hostel, hotel, viewpoint, camp site, picnic site, artwork, guest house, apartments, gallery, tourism-attraction, apartment, zoo +978 +49.4037439 8.7284305 +43.6260277 1.4337743, 43.5871216 1.4469197, 43.6004488 1.4466659, 43.6114742 1.4144774, 43.6647905 1.5056744, 43.5967890 1.4457753, 43.5999376 1.4422424, 43.6201770 1.4574680, 43.6122292 1.4482664, 43.6193979 1.4690227, 43.5864701 1.4831213, 43.6105977 1.4363721, 43.6049920 1.4447714, 43.6064342 1.4445347, 43.5574068 1.3810477, 43.5974538 1.4205152, 43.5809519 1.4133291, 43.5793278 1.4840653, 43.4550373 1.6140315, 43.6028177 1.4544543, 43.6101165 1.3299920, 43.5893965 1.3783877, 43.5546511 1.5324505, 43.7053345 1.4665124, 43.7173181 1.4809987, 43.5710456 1.5186221, 43.5820633 1.3880789, 43.6360716 1.4636776, 43.4487189 1.8882110, 43.5664794 1.2964127, 43.5989789 1.2322484, 43.8117875 1.5436643, 43.6346708 1.3948893, 43.5462877 1.4538291, 43.3903464 1.6838497, 43.6818127 1.3179512, 43.4581595 2.0019087, 43.3667678 1.7843111, 43.5849055 1.5280232, 43.6914739 1.2305422, 43.7786407 1.4800521, 43.4575062 1.5737466, 43.4360729 1.6606592, 43.6670205 1.4292515, 43.6741677 1.4556899, 43.6087629 1.4938148, 43.5303105 1.5349250, 43.5517425 1.5059205, 43.6002570 1.7130996, 43.6822986 1.5835960, 43.4592110 1.9807588, 43.6580006 1.6628788, 43.7195481 1.5891637, 43.7218275 1.5866159, 43.6783699 1.5313559, 43.7222363 1.4316614, 43.7204174 1.2983690, 43.6459833 1.3699157, 43.5763208 1.2745944, 43.6090446 1.3391380, 43.5752874 1.4017612, 43.6452108 1.5279713, 43.6478942 1.4328650, 43.6090253 1.3808650, 43.5969070 1.6015882, 43.4164919 1.6289473, 43.5867726 1.4626783, 43.6380313 1.4439756, 43.5777154 1.4397126, 43.5655754 1.3998805, 43.5646197 1.4104300, 43.5593873 1.6541737, 43.5859541 1.4277228, 43.6858360 1.4477308, 43.6679680 1.3788912, 43.7275892 1.0481378, 43.8629244 1.5063181, 43.7426228 1.1837502, 43.6645799 1.1942727, 43.7804119 1.3603119, 43.6702842 1.2889952, 43.6930091 1.4135998, 43.7114127 1.3925324, 43.7427777 1.3702527, 43.7675496 1.5302985, 43.5046309 1.4113176, 43.5254276 1.8271350, 43.5177621 1.5609976, 43.5296702 1.4837001, 43.6040278 1.4544668, 43.5972281 1.4309605, 43.6558407 1.3708003, 43.3569222 1.6235878, 43.5737470 1.4624103, 43.7795463 1.4048893, 43.5150853 1.4955195, 43.7981453 1.6065723, 43.6803668 1.3919733, 43.7269867 1.4122198, 43.7793622 1.6321404, 43.5509646 1.5131319, 43.4822135 1.6647297, 43.5371019 1.3463012, 43.6955968 1.4302320, 43.6510153 1.3262337, 43.7598279 1.0439680, 43.5479174 1.4719372, 43.8389189 1.3926761, 43.5685393 1.4972514, 43.7722482 1.2941146, 43.5826647 1.3459461, 43.3568545 1.6236983, 43.6010734 1.4764907, 43.6176235 1.2836665, 43.4007911 1.7150650, 43.6193800 1.3971976, 43.8298665 1.4312785, 43.6573515 1.4830800, 43.2864605 1.6332455, 43.5288720 1.7616672 +yes +57.5223776 -4.4756277 +53 +Standing Stone, Standing Stone, Cup and Ring Marked Rocks, Stone, Cat Stane, Physic Well, Fort, Hatton House +Consulate General of the United States, Consulate General of India, Consulate General of the Federal Republic of Germany, Consulate General of France, Consulate General of Ireland, Consulate General of Italy, Consulate General of Japan, Consulate General of Spain, Consulate General of Switzerland, Consulate General of the Russian Federation, Consulate of the Kingdom of the Netherlands, Honorary Consulate of the Republic of Latvia, Royal Norwegian Consulate General, Taipei Representative Office +yes +49.4125622 8.6856608, 49.4032579 8.6471303, 49.4028079 8.6877203, 49.4132392 8.6920033, 49.4101353 8.6927154, 49.4044206 8.6749529, 49.4148114 8.7196509, 49.4102178 8.7150766, 49.4148865 8.6633752, 49.4144262 8.6605991, 49.4157782 8.6615636, 49.3985275 8.6890932, 49.4135237 8.7132879, 49.3670614 8.6852351, 49.4015634 8.6546617, 49.4080292 8.6761951, 49.4072190 8.7145767, 49.4175156 8.7606234, 49.4149077 8.6641649, 49.4180002 8.7565605, 49.4122451 8.7658820, 49.4094639 8.7149578, 49.4102265 8.6939011, 49.4157103 8.6706413, 49.4099021 8.7003337, 49.4171332 8.6926969, 49.4131244 8.6897970, 49.4122418 8.6816335 +ADAC +fr:1er arrondissement de Paris, fr:1er arrondissement de Paris +outside +Copy Express, CopyHouse, Reprographie Numérique, Copy-Top, Châteaudun Reprographie, Copie Press, Copy-Top, Copy-Top, Copystar, Corep Jussieu, Copies Services Hexamedia, Copies Services Hexamedia, Augys Copy Service, Imprimerie Beaugrenelle, copie service, copy-top, Copy Self, Galerie du Roi, Copy Bolivar, Cyber Espace, l'atelier, Papyros, Abeille Repro, Atelier Pan Helio, Photocopie, 1Primeur and 48.8408505 2.3133434, 48.8404547 2.3878653, 48.8457749 2.3129290, 48.8452297 2.3188481, 48.8774276 2.3561126, 48.8821459 2.3673459, 48.8695360 2.3360734, 48.8457067 2.3803643, 48.8616301 2.3525055, 48.8618476 2.3525472, 48.8761027 2.3348516, 48.8675534 2.3414224, 48.8833415 2.3607843, 48.8650685 2.2882779, 48.8695647 2.2917098, 48.8611375 2.3498977, 48.8620177 2.3530439, 48.8631069 2.3516394, 48.8467332 2.3539043, 48.8268815 2.3637663, 48.8274182 2.3663727, 48.8299013 2.3593931, 48.8462783 2.2861424, 48.8325636 2.3355609, 48.8851530 2.3747032, 48.8661621 2.3657400, 48.8758780 2.3318830, 48.8748194 2.3813364, 48.8740625 2.3838135, 48.8326766 2.3313459, 48.8456610 2.3548687, 48.8457841 2.3550712, 48.8618518 2.3653403, 48.8487264 2.3427817, 48.8454855 2.2973275, 48.8454352 2.2974755, 48.8376923 2.3597409, 48.8375496 2.3596345 +Imperial Palace +110 +Union Place +0 +1 and 6 +55.9533748 -3.1895989 +no +yes +49.4274974 8.6861291 +Standing Stone, Standing Stone, Cup and Ring Marked Rocks, Hanging Stanes, Cat Stane, Bonnington Mill Waterwheel (remains), Physic Well, Bonnington Weir +0 +Towerbank Primary School, Dalmeny Primary School, Rudolf Steiner School, Little City Nursery, City Nursery, Pirniehall Primary School, Fettes College Preparatory School, Saint Mark's School, Pilrig Park School, Haywired, Bun-sgoil Taobh na Pairce, St. George's, St. George's, Blackhall Primary School, St David's RC Primary School, Kirkliston Nursery School, Mannafields Christian School, Dalmeny Nursery School, Currie Community High School, Queensferry High School, EDETA Training Services, Craigour Park Primary School, Liberton Primary School, St Thomas of Aquins, James Gillespie's High School, George Watson's College, South Morningside Primary School, Granton Primary School, Fettes College, Murrayburn Primary School, Westburn Primary School (Closed July 2009), Flora Stevenson's Primary School, Firrhill High School, Craigroyston Community High School, George Heriot's School, Niddrie Mill Primary School (Closed), Hermitage Park Primary School, Leith Academy, Lorne Primary School, Drummond Community High School, Stewart's Melville College, Craigentinny Primary School, St Ninians RC Primary School, Bruntsfield Primary School, George Watson's College Primary, Currie Primary School, Tynecastle High School, James Gillespie Primary School, St Peter's Primary School, Castlebrae High School, Gracemount High School, Buckstone Primary School, Liberton High School, Lismore Primary School‎ (Closed July 2009), Fox Covert Primary School and RC Primary School, Greengables Nursery, Leith Primary School, Craigmillar Childrens Centre, Prestonfield Primary School, St Francis and Niddrie Mills Primary schools Campus, Holy Rood High School, Brunstane Primary School, Royal High Primary School, Newcraighall Primary School, Tiler Training School, Merchiston Castle School, The Mary Erskine School, Ratho Primary School, Craigmount High School, Colinton Primary, Hillwood Primary School, The Yard, Nether Currie Primary School, Sighthill Primary School, Royal Blind School, Royal Blind School, Duddingston Primary School, East Craigs Primary, Royal Mile Primary School, Edinburgh School of English, Panmure St Anne's, Trinity Academy, Gorgie Mills School, Craiglockhart Primary, Sciennes Primary School, Education Centre, Victoria Primary School, Broughton High School, Trinity Academy, The Royal High School, Clermiston Primary School, Westerlea School, Fort Primary School (Closed July 2010), Longston Primary School, Pentland Primary, Edinburgh Academy, Stockbridge Primary School, Broughton Primary School, Rowanfield School, Tollcross Primary School, Prospect Bank School, St Mary's RC Primary School, Leith Walk Primary School, St Johns RC Primary School, Portobello High School, Balgreen Primary School, Harmeny School, Preston Street Primary School, Davidson's Mains Primary School, Dalry Primary School, Roseburn Primary, Ferryhill Primary School, Wardie Primary School, School, Abbeyhill Primary School, Oaklands School, Craigroyston Primary School, Carrick Knowe Primary, Arbor Green Nursery, Moffat Early Years Campus, Carrick Knowe Primary, St Augustines High School, Forrester High School, Broomhouse Primary School, Edinburgh Academy Junior School, Corstorphine Primary, St. John Vianney Roman Catholic Primary, Darroch Annex, Cargilfield School, Juniper Green Primary, Kaimes School, Stenhouse Primary, Balerno High School, Bonaly Primary School, Dean Park Primary School Annexe, Clifton Hall School, Gylemuir Primary School, Boroughmuir High School, Trinity Primary school, Fort Primary, Cramond Primary School, Holy Cross Primary School, Wardie Primary School +14 +no +Caiy Stane, Balm Well, Hanging Stanes, The Buckstane, Bonnington Mill Waterwheel (remains), Bonnington Weir +62 +Le Cambodge, Royal Montgallet - 新富园, Au couvert d'asie, Le Bristrot ZEN, Palace Châtelet, Tong Fan, Come and Wok, Tian He, Suave, La Cascade, Au Vietnam, Melinda, Da Lat, Traiteur Asiatique, Côté Asie, Hello Sushi, Jix Xin Lou, Deliceo, Mian Fan, Délice Impérial, Couronne d'argent, Express Bonne Nouvelle, Enquan, Qi Hong, Jin Long, Little Hanoi, Auberge du Bonheur, Chamroeun Crimée, Le Palais du Bonheur, Exo Exquis, Jardin de Montsouris, Fan Sin, Sourire d'Asie, Aloes Traiteur, Le Françis, Le Printemps de Jade, Traiteur Chez Victor, Traiteur Paris Gourmand, Kung Fu, Traiteur Nihao, Shun Fa, Long Hoa, Hang Meas, Palace Thaï, Asian, New Shangaï, Ting Ting, Fukuoka, WoknNoodles, Le Bonheur, Muki Sushi, Chen Regal, Délice Zheng, Chez Jin, Heng Long, Feng Sheng, Asian Grill, Le Lotus, Au Village de Choisy, Trésor d'Asie, Gourmet d'Asie, Hanouman, New Locomotive, New Thai San, Thaï Papaya, Ba Miền, Zhen Fa, Hauky, Délice 18, Restaurant mandarin du marché, Mustang, La Maison de Thé de Mademoiselle Li, Les Délices du Bonheur, Douraku, Délices Asiatiques, Bangkok Express, Traiteur Délice Cadet, Gourmet d'asie, Inagiku, Pho Bida Viet Nam, Traiteur Ji Li, Restaurant Raviolis – Guo Xin, Angkor.Monorom, Aux Délices d'Asie, restaurant traiteur, Asie Prestige, Royal Mouffetard, Délices d'Asie, Chez Zhao, Les Pâtes Vivantes, C'trobon, La Fontaine céleste, Le Jardin, Dat Viet, Paris, Tricotin 2, Ju You, Traiteur Jin Xin Lou, Au chalet du bonheur, Cathay House, L'origami, Delices de la mer, Delicieux Monge, Delicieux Monge, Délices d'Or, Shinzzo, Guo Min, Jing hua cheng, Traiteur Asiatique, Le dragon d'or, Xia's Fast Food, Rong Fa Sushi, Maison des saveurs, Traiteur Asiatique, Bang Loan, Chez Chung, Kyotori, Petit Hong Kong +144 +A 4, A 86, A 13 +48.8417539 2.3228265, 48.8417906 2.3194104, 48.8455266 2.3019080, 48.8465149 2.3169266, 48.8496947 2.3229620, 48.8529756 2.3361563, 48.8513775 2.3427806, 48.8477633 2.3023462, 48.8371669 2.2968355, 48.8359376 2.2934703, 48.8391271 2.2825599, 48.8446716 2.3110739, 48.8452432 2.3693333, 48.8428726 2.2978113, 48.8472412 2.3109555, 48.8516223 2.3251656, 48.8426689 2.3210349, 48.8454014 2.2921884, 48.8553049 2.4152098, 48.8582001 2.3497997, 48.8784404 2.3739693, 48.8396457 2.3020004, 48.8465313 2.2847495, 48.8491445 2.3035292, 48.8543529 2.3051441, 48.8461467 2.3400524, 48.8570374 2.4045098, 48.8860526 2.3426933, 48.8826497 2.3364419, 48.8672307 2.3169458, 48.8316492 2.2999377, 48.8583893 2.4147064, 48.8547572 2.3940413, 48.8761391 2.3683073, 48.8722806 2.3695753, 48.8681927 2.3630580, 48.8650417 2.3850337, 48.8468335 2.3820503, 48.8748801 2.3637951, 48.8633521 2.3710595, 48.8761999 2.3804521, 48.8777890 2.3812354, 48.8826601 2.3752883, 48.8586939 2.3840128, 48.8633741 2.3663922, 48.8710381 2.3610667, 48.8426016 2.2921367, 48.8356606 2.3026082, 48.8425344 2.2977018, 48.8268013 2.3644366, 48.8267042 2.3418398, 48.8313314 2.3159690, 48.8325651 2.3114089, 48.8326373 2.3560872, 48.8397551 2.3618303, 48.8430740 2.3643198, 48.8833178 2.3262875, 48.8615468 2.3727192, 48.8331323 2.2995011, 48.8490609 2.2878691, 48.8844475 2.3427325, 48.8833472 2.3495749, 48.8822817 2.3504868, 48.8827033 2.3434430, 48.8822885 2.3414974, 48.8820176 2.3394460, 48.8817974 2.3532647, 48.8771098 2.3551079, 48.8477369 2.3279061, 48.8883776 2.3495011, 48.8866559 2.3493852, 48.8538990 2.3696060, 48.8757902 2.3561915, 48.8791100 2.3541841, 48.8866553 2.3168809, 48.8884411 2.3158504, 48.8492375 2.3711135, 48.8568075 2.3541182, 48.8602512 2.3502694, 48.8546459 2.3450877, 48.8462262 2.3548763, 48.8843315 2.3304472, 48.8460104 2.3669740, 48.8840058 2.3529245, 48.8374833 2.3535202, 48.8379005 2.3555967, 48.8392465 2.3387222, 48.8382197 2.3418042, 48.8502113 2.3668644, 48.8453387 2.3377568, 48.8474704 2.3718474, 48.8881036 2.3258701, 48.8862612 2.3438540, 48.8444030 2.3753907, 48.8412568 2.3561020, 48.8802722 2.3675063, 48.8743118 2.3204772, 48.8844890 2.3447472, 48.8841058 2.3521880, 48.8858346 2.3758518, 48.8588810 2.3417760, 48.8694746 2.3247589, 48.8722562 2.3773810, 48.8700309 2.3292678, 48.8702717 2.3306225, 48.8687745 2.3432434, 48.8667885 2.3495539, 48.8648587 2.3516262, 48.8683427 2.3501494, 48.8681440 2.3484373, 48.8914586 2.3497646, 48.8268925 2.3513505, 48.8659826 2.3540443, 48.8792700 2.3844462, 48.8840145 2.3317743, 48.8542244 2.3561302, 48.8443855 2.3606510, 48.8612709 2.3498777, 48.8552582 2.3605246, 48.8455093 2.3329557, 48.8475334 2.3382332, 48.8238740 2.3180838, 48.8510705 2.2951132, 48.8780661 2.3700636, 48.8313804 2.3480743, 48.8296767 2.3796195, 48.8279138 2.3225247, 48.8759721 2.3267452, 48.8754098 2.3151509, 48.8313695 2.3205695, 48.8684390 2.2990680, 48.8716186 2.4041500, 48.8746281 2.3022896, 48.8780563 2.2975311, 48.8379492 2.3512092, 48.8199140 2.3618618, 48.8242035 2.3397900, 48.8244362 2.3385188, 48.8770173 2.3640220, 48.8605186 2.3511396, 48.8607908 2.3512861, 48.8409048 2.3002716, 48.8781096 2.3616482, 48.8682772 2.2938009, 48.8621497 2.2864059, 48.8483838 2.2603636, 48.8878856 2.3659310, 48.8774224 2.2614000, 48.8280956 2.3585627, 48.8293080 2.3652192, 48.8717450 2.3763419, 48.8423236 2.2561943, 48.8846348 2.3590969, 48.8920738 2.3615515, 48.8857831 2.3704180, 48.8882670 2.3737456, 48.8842463 2.3674355, 48.8886939 2.3740545, 48.8835852 2.3687084, 48.8323241 2.3308583, 48.8478006 2.3440011, 48.8757565 2.3604345, 48.8659123 2.3250771, 48.8495867 2.3963351, 48.8694855 2.3127606, 48.8648568 2.3224814, 48.8316539 2.3201884, 48.8584294 2.2957348, 48.8474359 2.3956182, 48.8441490 2.4410460, 48.8594767 2.3890495, 48.8571807 2.2995618, 48.8680319 2.3652462, 48.8658957 2.3524620, 48.8470892 2.3842101, 48.8449275 2.3804850, 48.8389160 2.3896782, 48.8570795 2.3793482, 48.8527591 2.3685273, 48.8630663 2.3527335, 48.8601693 2.3891491, 48.8599140 2.3909353, 48.8509100 2.3440225, 48.8651560 2.3002462, 48.8801931 2.3090971, 48.8668874 2.3528247, 48.8769493 2.2859070, 48.8412710 2.2855359, 48.8528709 2.3486106, 48.8306412 2.2918306, 48.8413192 2.2547825, 48.8384448 2.2588960, 48.8432911 2.2695096, 48.8363724 2.2819007, 48.8442938 2.2814436, 48.8485380 2.2573725, 48.8458645 2.2564076, 48.8572259 2.2668689, 48.8544526 2.2693573, 48.8459313 2.2692557, 48.8512448 2.2756544, 48.8509007 2.2779357, 48.8477025 2.2738262, 48.8200408 2.3479644, 48.8212446 2.3690189, 48.8226584 2.3668672, 48.8190929 2.3443682, 48.8195872 2.3642183, 48.8407510 2.3161284, 48.8408847 2.3255233, 48.8357296 2.3158704, 48.8323111 2.3252588, 48.8289690 2.3280388, 48.8296366 2.3263748, 48.8240050 2.3260887, 48.8257339 2.3264008, 48.8447616 2.2905846, 48.8256825 2.3151865, 48.8250160 2.3112381, 48.8279762 2.3057040, 48.8282568 2.3034035, 48.8590513 2.2891298, 48.8574201 2.3243023, 48.8459313 2.3090188, 48.8496408 2.2962215, 48.8523475 2.2907877, 48.8528387 2.2979972, 48.8550663 2.2959776, 48.8457977 2.3185660, 48.8469673 2.2921080, 48.8505096 2.3274022, 48.8311741 2.3447143, 48.8330426 2.3312889, 48.8330416 2.3357290, 48.8305266 2.3291048, 48.8347199 2.3367751, 48.8348054 2.3320949, 48.8346868 2.3410351, 48.8376293 2.3387512, 48.8369790 2.3350851, 48.8349524 2.3463908, 48.8394809 2.3371526, 48.8417537 2.3377112, 48.8416255 2.3485536, 48.8281988 2.3566483, 48.8239378 2.3581173, 48.8340823 2.3537029, 48.8240665 2.3530961, 48.8297239 2.3690723, 48.8404168 2.3535555, 48.8520468 2.3397933, 48.8558630 2.3465049, 48.8528153 2.3347150, 48.8544526 2.3311094, 48.8580548 2.3474799, 48.8598724 2.3490644, 48.8623038 2.3502010, 48.8625013 2.3507772, 48.8636772 2.3510372, 48.8580013 2.3464643, 48.8623046 2.3423204, 48.8603000 2.3464643, 48.8636409 2.3426454, 48.8631527 2.3417623, 48.8650306 2.3407360, 48.8549469 2.3729734, 48.8477025 2.3536570, 48.8658631 2.3695102, 48.8610722 2.3670951, 48.8655959 2.3652444, 48.8655288 2.3523437, 48.8669313 2.3543718, 48.8613680 2.3530523, 48.8626723 2.3594550, 48.8600851 2.3608850, 48.8650242 2.3602350, 48.8437230 2.4019904, 48.8445383 2.3775163, 48.8405196 2.4047985, 48.8395307 2.3783327, 48.8406003 2.3922472, 48.8387954 2.3810242, 48.8537699 2.3826458, 48.8556078 2.3835929, 48.8541941 2.3777992, 48.8495092 2.3936775, 48.8521926 2.3936896, 48.8532589 2.3878909, 48.8504312 2.3841184, 48.8460954 2.3766582, 48.8455898 2.3850416, 48.8649600 2.3947898, 48.8648944 2.3762643, 48.8657274 2.3810297, 48.8575027 2.3926652, 48.8608171 2.3885376, 48.8571820 2.3811598, 48.8582893 2.3802180, 48.8622924 2.3792422, 48.8642156 2.3796666, 48.8634043 2.3873675, 48.8635967 2.3838899, 48.8662870 2.3897869, 48.8490543 2.4025492, 48.8548100 2.3960622, 48.8556270 2.4100482, 48.8544980 2.4122851, 48.8600077 2.4010312, 48.8641235 2.4090336, 48.8649012 2.4008295, 48.8649070 2.3998063, 48.8769312 2.2849408, 48.8754537 2.2797323, 48.8753771 2.2991851, 48.8750050 2.2958071, 48.8746876 2.3040608, 48.8747971 2.3033120, 48.8750816 2.3064737, 48.8779490 2.3049095, 48.8688553 2.3011783, 48.8678567 2.3013134, 48.8815385 2.2956906, 48.8789650 2.2944900, 48.8840444 2.3042439, 48.8839678 2.3023801, 48.8875816 2.2944455, 48.8818996 2.2861056, 48.8860578 2.3041773, 48.8699848 2.3287478, 48.8750248 2.3145888, 48.8851026 2.3266307, 48.8853192 2.3267751, 48.8833981 2.3265291, 48.8815640 2.3207727, 48.8814950 2.3154241, 48.8958618 2.3281541, 48.8908274 2.3196997, 48.8919542 2.3272320, 48.8894716 2.3189974, 48.8905833 2.3035017, 48.8948720 2.3143780, 48.8727102 2.3345720, 48.8707655 2.3471293, 48.8689559 2.3407457, 48.8712959 2.3437499, 48.8844160 2.3292308, 48.8835474 2.3336949, 48.8816820 2.3456299, 48.8832578 2.3459960, 48.8834110 2.3475269, 48.8837284 2.3488082, 48.8763445 2.3614950, 48.8684955 2.3674002, 48.8700553 2.3666721, 48.8762256 2.3723091, 48.8725652 2.3640736, 48.8738041 2.3703747, 48.8774841 2.3709987, 48.8705409 2.3514636, 48.8707624 2.3546578, 48.8690350 2.3562439, 48.8794220 2.3546823, 48.8850648 2.3549532, 48.8818932 2.3663627, 48.8934493 2.3369256, 48.8917911 2.3353655, 48.8990071 2.3376842, 48.8994040 2.3445085, 48.8992399 2.3440425, 48.8965488 2.3383847, 48.8957759 2.3460150, 48.8979185 2.3294720, 48.8964168 2.3349069, 48.8891775 2.3451972, 48.9005952 2.3351144, 48.9011543 2.3445750, 48.9008261 2.3438595, 48.8904593 2.3545937, 48.8950801 2.3589964, 48.8751448 2.3735780, 48.8683632 2.3815998, 48.8685956 2.3900339, 48.8735031 2.3753876, 48.8722991 2.3766565, 48.8703700 2.3791942, 48.8770727 2.3925548, 48.8736648 2.3896765, 48.8719517 2.3920209, 48.8891494 2.3933914, 48.8822173 2.3934544, 48.8872647 2.3758855, 48.8888297 2.3790479, 48.8829941 2.3814519, 48.8786649 2.3784063, 48.8855727 2.3811520, 48.8834799 2.3835649, 48.8863045 2.3939114, 48.8709467 2.4091775, 48.8755868 2.3978758, 48.8706206 2.3982918, 48.8759333 2.4069996, 48.8839109 2.3979467, 48.8989432 2.3869214, 48.8538420 2.3492906, 48.8337840 2.3198864, 48.8363741 2.3098652, 48.8823434 2.3703224, 48.8533006 2.4091489, 48.8537801 2.4114641, 48.8674613 2.3438214, 48.8499500 2.3769797, 48.8470284 2.4077647, 48.8655973 2.2521957, 48.8683976 2.2458347, 48.8704442 2.2461780, 48.8688316 2.2477983, 48.8520184 2.4094142, 48.8623378 2.2682175, 48.8496205 2.4036764, 48.8558805 2.4016616, 48.8898813 2.3155227, 48.8445744 2.3876337, 48.8917397 2.3142884, 48.8864203 2.3325703, 48.8854403 2.3309916, 48.8888432 2.2975858, 48.8189926 2.3575382, 48.8721179 2.3385859, 48.8539073 2.4012043, 48.8339369 2.3145520, 48.8776027 2.3270929, 48.8347274 2.3935263, 48.8641893 2.3299462, 48.8262224 2.3748278, 48.8222866 2.3235525, 48.8422384 2.3371968, 48.8245328 2.3394230, 48.8564210 2.3497120, 48.8303448 2.3338271, 48.8371726 2.2967406, 48.8252648 2.3158680, 48.8346411 2.2842123, 48.8380766 2.2780055, 48.8377037 2.2774821, 48.8636364 2.3968839, 48.8303577 2.3751842, 48.8624480 2.2893920, 48.8324846 2.3616424, 48.8976429 2.3589492, 48.8859544 2.3562670, 48.8210556 2.3567317, 48.8683870 2.3633979, 48.8806519 2.4004273, 48.8283295 2.3766600, 48.8393953 2.2709608, 48.8572681 2.2911573, 48.8625031 2.3009633, 48.8883177 2.3371911, 48.8445790 2.3614939, 48.8725060 2.3265052, 48.8856373 2.3263659, 48.8783887 2.2690382, 48.8771192 2.2618218, 48.8319874 2.3777146, 48.8262191 2.3053681, 48.8865752 2.3770595, 48.8411112 2.3657854, 48.8294677 2.3494266, 48.8320219 2.3028314, 48.8309632 2.2918204, 48.8545746 2.3446665, 48.8550316 2.3449206, 48.8550827 2.3439980, 48.8528590 2.3510623, 48.8792041 2.3039281, 48.8342486 2.3425441, 48.8255813 2.3041840, 48.8483378 2.3594757, 48.8745891 2.3627432, 48.8754929 2.3615609, 48.8890079 2.3632043, 48.8364059 2.4010293, 48.8947397 2.3820270, 48.8950270 2.3539258, 48.8323359 2.4200595, 48.8322107 2.4176394, 48.8330064 2.4147766, 48.8337431 2.4190611, 48.8625107 2.3109476, 48.8894902 2.3806301, 48.8347529 2.3577560, 48.8488854 2.3676323, 48.8254239 2.3694610, 48.8275704 2.3672600, 48.8336951 2.3651195, 48.8338003 2.3625255, 48.8582183 2.3633569, 48.8395113 2.4061466, 48.8409893 2.4021854, 48.8419636 2.4099074, 48.8428499 2.3882529, 48.8443380 2.3820200, 48.8465345 2.4039066, 48.8519692 2.3809344, 48.8521453 2.3853886, 48.8363138 2.3737506, 48.8767105 2.3931022, 48.8708961 2.3969286, 48.8440626 2.4113218, 48.8622381 2.3454960, 48.8454362 2.3531891, 48.8389126 2.3825734, 48.8378588 2.4114608, 48.8327062 2.3968887, 48.8623435 2.4069746, 48.8403137 2.3203018, 48.8407586 2.3208814, 48.8769804 2.3588987, 48.8450228 2.3738335, 48.8237712 2.3188140, 48.8187381 2.3603132, 48.8382416 2.4446399, 48.8399257 2.4407658, 48.8480293 2.3335576, 48.8464818 2.3340282, 48.8823771 2.3827729, 48.8549799 2.3152238, 48.8705165 2.3847431, 48.8230296 2.3485201, 48.8278250 2.3617461, 48.8222813 2.3365890, 48.8392359 2.3063319, 48.8791228 2.2634314, 48.8786255 2.2671376, 48.8769408 2.2659712, 48.8821613 2.2906191, 48.8582512 2.2683212, 48.8279457 2.3056505, 48.8668278 2.3572924, 48.8516542 2.2871063, 48.8516808 2.2870709, 48.8517036 2.2871224, 48.8516646 2.2871187, 48.8516831 2.2871003, 48.8516707 2.2870906, 48.8518764 2.2866092, 48.8519081 2.2866142, 48.8518764 2.2866092, 48.8519081 2.2866142, 48.8518731 2.2866452, 48.8519155 2.2865522, 48.8519155 2.2865527, 48.8517799 2.2871988, 48.8530404 2.3610674, 48.8917906 2.3880857, 48.8430807 2.3520816, 48.8423553 2.3450638, 48.8420396 2.3453568, 48.8424163 2.3444687, 48.8414902 2.3449983 +yes +yes +487500 +13 +49.4194835 8.7033812, 49.4258222 8.7062319, 49.3551484 8.6336513, 49.4270542 8.7105990, 49.4184666 8.7052069, 49.4245168 8.7056416, 49.4235710 8.7025718, 49.4242799 8.7072520, 49.4224817 8.7024542, 49.4229479 8.7068545, 49.4193290 8.7035781, 49.4221380 8.7051571, 49.4263381 8.7055314, 49.4188706 8.7007961, 49.4276600 8.7101416, 49.4243184 8.7025688, 49.4189138 8.7068425, 49.4254814 8.7024102, 49.4213140 8.7019771, 49.4268509 8.7026924, 49.4254256 8.7051858, 49.4195009 8.7025277, 49.4201952 8.7010712, 49.4208217 8.7059731, 49.4233178 8.7053934, 49.4276906 8.7058352, 49.4238991 8.7095045, 49.4206459 8.7039110, 49.4265814 8.7086544, 49.4256259 8.7093622, 49.4257275 8.7070484, 49.4179403 8.7025717, 49.4207145 8.7089359, 49.4222472 8.7095805, 49.4248984 8.7025175 +55.9268506 -3.2089249 +55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9002100 -3.2321660, 55.9579565 -3.2439627, 55.9297115 -3.2566004, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9344345 -3.1791228, 55.9100535 -3.1423251, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9826346 -3.1875882, 55.9248058 -3.2496194, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9051775 -3.1653894, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9695021 -3.2293678, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9102318 -3.2377415, 55.9781314 -3.1744029, 55.9242943 -3.2525824, 55.9398424 -3.2041012 +yes +0 +55.9566271 -3.2720552, 55.9418294 -3.1502506, 55.9201209 -3.2500686, 55.9232770 -3.2473521, 55.9256887 -3.2299616, 55.9216082 -3.1959071, 55.9190764 -3.1843258 +166 +48.8678615 2.3515176, 48.8681982 2.3520494, 48.8742181 2.3379134, 48.8797487 2.3564752, 48.8827832 2.3594133, 48.8327554 2.3711889, 48.8294304 2.3758918, 48.8322707 2.3582796, 48.8704428 2.3883722, 48.8703637 2.3893764, 48.8695013 2.3822447, 48.8701522 2.3848448, 48.8705756 2.3882952, 48.8726648 2.3889559, 48.8692544 2.3857069, 48.8732512 2.3826034, 48.8719640 2.3809798, 48.8715124 2.3812630, 48.8707876 2.3814258, 48.8701383 2.3797607, 48.8703047 2.3816624, 48.8689756 2.3829202, 48.8674174 2.3831948, 48.8681056 2.3856641, 48.8692096 2.3486800, 48.8675048 2.3473847, 48.8674736 2.3471342, 48.8702235 2.3490322, 48.8818782 2.3342987, 48.8404563 2.3540242, 48.8457501 2.3710340, 48.8507318 2.3902220, 48.8273026 2.3137753, 48.8321419 2.3413424, 48.8330200 2.3329456, 48.8529986 2.3973185, 48.8537772 2.3960030, 48.8411229 2.3744020, 48.8713839 2.3723624, 48.8720555 2.3717928, 48.8725878 2.3713798, 48.8734747 2.3704890, 48.8741515 2.3743018, 48.8747572 2.3721336, 48.8756416 2.3688091, 48.8761685 2.3706316, 48.8767824 2.3701809, 48.8766895 2.3672800, 48.8750608 2.3672145, 48.8735860 2.3650243, 48.8718184 2.3654608, 48.8717399 2.3675792, 48.8714321 2.3669323, 48.8715550 2.3681089, 48.8696638 2.3693259, 48.8715040 2.3760459, 48.8700440 2.3716713, 48.8687232 2.3723495, 48.8683112 2.3698916, 48.8680322 2.3727849, 48.8631317 2.3869263, 48.8640310 2.3863813, 48.8665041 2.3812744, 48.8656858 2.3776485, 48.8674450 2.3750281, 48.8686005 2.3800123, 48.8681319 2.3792398, 48.8543046 2.3285742, 48.8520050 2.3739783, 48.8456295 2.4033753, 48.8663147 2.3719752, 48.8769811 2.4048559, 48.8749761 2.4031141, 48.8777348 2.3959932, 48.8758342 2.4011315, 48.8703695 2.3665503, 48.8748068 2.3638809, 48.8753882 2.3643616, 48.8831646 2.3720227, 48.8833551 2.3721300, 48.8836055 2.3731171, 48.8836902 2.3740022, 48.8840147 2.3752146, 48.8844169 2.3762767, 48.8849729 2.3784198, 48.8850377 2.3791735, 48.8851153 2.3790072, 48.8855033 2.3809706, 48.8856762 2.3815928, 48.8865051 2.3847954, 48.8873411 2.3873650, 48.8876230 2.3883824, 48.8878308 2.3891184, 48.8889239 2.3944490, 48.8827251 2.3816969, 48.8725474 2.3766326, 48.8739080 2.3960132, 48.8775377 2.3857736, 48.8831878 2.3714050, 48.8640393 2.3755646, 48.8706620 2.3611950, 48.8734580 2.3584123, 48.8732312 2.3586224, 48.8755934 2.3832701, 48.8756530 2.3832155, 48.8482774 2.3428253, 48.8784345 2.3578878, 48.8783277 2.3564922, 48.8703209 2.2825197, 48.8268477 2.3647861, 48.8541564 2.4000911, 48.8465229 2.3686904, 48.8463083 2.3680521, 48.8469932 2.3727161, 48.8467819 2.3725108, 48.8459580 2.3724556, 48.8455779 2.3697051, 48.8663510 2.3672959, 48.8658303 2.3698488, 48.8657851 2.3771616, 48.8665079 2.3800178, 48.8653617 2.3809810, 48.8760867 2.3599561, 48.8829095 2.3591741, 48.8834606 2.3606563, 48.8826329 2.3615224, 48.8854259 2.3538571, 48.8884161 2.3532369, 48.8841015 2.3597869, 48.8874152 2.3671866, 48.8853281 2.3720155, 48.8905441 2.3545731, 48.8902032 2.3626104, 48.8896626 2.3678766, 48.8830418 2.3799420, 48.8839897 2.3776750, 48.8839192 2.3777877, 48.8793674 2.3913866, 48.8642121 2.3813367, 48.8549764 2.3705401, 48.8491281 2.3756993, 48.8907340 2.3442268, 48.8482547 2.3739915, 48.8476489 2.3756562, 48.8505462 2.3785256, 48.8495764 2.3778022, 48.8488506 2.3771667, 48.8490151 2.3766595, 48.8493081 2.3747820, 48.8485986 2.3761016, 48.8466357 2.3723850, 48.8376761 2.3448921, 48.8355075 2.3583356, 48.8464369 2.3792454, 48.8584489 2.3792058, 48.8945048 2.3474462, 48.8929338 2.3489373, 48.8919373 2.3499061, 48.8943845 2.3506181, 48.8938805 2.3498536, 48.8953235 2.3467399, 48.8953754 2.3495531, 48.8995258 2.3457476, 48.8909128 2.3454738, 48.8916063 2.3445324, 48.8921962 2.3448571, 48.8923204 2.3442537, 48.8902437 2.3476818, 48.8906398 2.3495092, 48.8907675 2.3495020, 48.8923427 2.3461089, 48.8949846 2.3408277, 48.8842461 2.3613088, 48.8840672 2.3616073, 48.8841745 2.3614072, 48.8882926 2.3599384, 48.8845099 2.3646309, 48.8856332 2.3659515, 48.8920952 2.3613649, 48.8883041 2.3506540, 48.8883196 2.3501401, 48.8883144 2.3520272, 48.8883763 2.3527059, 48.8886896 2.3559132, 48.8886090 2.3548159, 48.8889395 2.3584021, 48.8890178 2.3582290, 48.8890523 2.3595116, 48.8866144 2.3504214, 48.8858198 2.3551215, 48.8863622 2.3561844, 48.8878527 2.3515748, 48.8872861 2.3561221, 48.8839769 2.3509507, 48.8850544 2.3495979, 48.8857811 2.3496248, 48.8861021 2.3496301, 48.8863490 2.3496462, 48.8876294 2.3496373, 48.8885253 2.3496748, 48.8890580 2.3496748, 48.8887476 2.3496695, 48.8889098 2.3496802, 48.8841020 2.3522661, 48.8840538 2.3519670, 48.8840388 2.3514774, 48.8892343 2.3496802, 48.8896364 2.3496856, 48.8847017 2.3493780, 48.8847898 2.3493834, 48.8848569 2.3493834, 48.8852449 2.3493834, 48.8851108 2.3493834, 48.8863243 2.3494209, 48.8860562 2.3494048, 48.8857987 2.3494048, 48.8866171 2.3494388, 48.8873464 2.3494796, 48.8876365 2.3494656, 48.8887125 2.3494781, 48.8889239 2.3494603, 48.8891003 2.3494710, 48.8884971 2.3494495, 48.8880001 2.3494761, 48.8904052 2.3495068, 48.8897932 2.3494533, 48.8892625 2.3494710, 48.8830632 2.3383743, 48.8857316 2.3349375, 48.8857096 2.3352645, 48.8854435 2.3359469, 48.8859008 2.3346803, 48.8853035 2.3363355, 48.8851642 2.3366575, 48.8843335 2.3382618, 48.8886961 2.3390540, 48.8851431 2.3383441, 48.8865032 2.3356719, 48.8885778 2.3354686, 48.8888861 2.3383196, 48.8842610 2.3413414, 48.8845571 2.3411073, 48.8847258 2.3403346, 48.8849081 2.3418344, 48.8895658 2.3377576, 48.8850086 2.3604185, 48.8907312 2.3639595, 48.8961106 2.3318024, 48.8991268 2.3345829, 48.8952517 2.3371563, 48.8962344 2.3344485, 48.8965875 2.3360980, 48.8956272 2.3391536, 48.8966215 2.3385776, 48.8983862 2.3383214, 48.8944354 2.3403228, 48.8944213 2.3442287, 48.9000243 2.3455555, 48.8996339 2.3501097, 48.8837052 2.3395939, 48.8832400 2.3421635, 48.8834792 2.3421669, 48.8839647 2.3413568, 48.8865870 2.3452064, 48.8832262 2.3499505, 48.8846010 2.3470099, 48.8881281 2.3463794, 48.8883520 2.3487355, 48.8869557 2.3324658, 48.8869663 2.3326053, 48.8890733 2.3333345, 48.8903665 2.3341127, 48.8903277 2.3330237, 48.8903732 2.3369030, 48.8916342 2.3355210, 48.8908322 2.3375902, 48.8908023 2.3394033, 48.8910048 2.3400771, 48.8912851 2.3396007, 48.8926693 2.3356185, 48.8934479 2.3366141, 48.8928829 2.3373736, 48.8929557 2.3385657, 48.8923455 2.3400044, 48.8904263 2.3404251, 48.8913682 2.3472930, 48.8603661 2.3754100, 48.8900474 2.3613408, 48.8314088 2.3488132, 48.8487505 2.3777984, 48.8503027 2.3774477, 48.8626941 2.3877054, 48.8785891 2.3856103, 48.8810145 2.3891669, 48.8321125 2.3499256, 48.8774636 2.3705618, 48.8682585 2.2932381, 48.8782580 2.3987300, 48.8832583 2.3346263, 48.8832465 2.3341658, 48.8831954 2.3348376, 48.8842151 2.3311538, 48.8830070 2.3349691, 48.8833032 2.3455032, 48.8841705 2.3313488, 48.8826156 2.3432538, 48.8834306 2.3335452, 48.8841164 2.3315750, 48.8824079 2.3419280, 48.8834666 2.3339320, 48.8831738 2.3344061, 48.8821954 2.3389929, 48.8836632 2.3332864, 48.8831695 2.3452574, 48.8824739 2.3367661, 48.8829388 2.3356827, 48.8831317 2.3458945, 48.8843696 2.3305004, 48.8842302 2.3305121, 48.8826517 2.3426287, 48.8827762 2.3362216, 48.8839947 2.3320999, 48.8842717 2.3309204, 48.8824891 2.3425994, 48.8830995 2.3449030, 48.8829578 2.3351297, 48.8832939 2.3340079, 48.8830087 2.3354500, 48.8840806 2.3311362, 48.8827159 2.3359415, 48.8828527 2.3354881, 48.8840902 2.3316931, 48.8911573 2.3437849, 48.8841548 2.3308314, 48.8839884 2.3315392, 48.8827419 2.3443694, 48.8824955 2.3419279, 48.8842291 2.3288540, 48.8840681 2.3286855, 48.8841801 2.3289398, 48.8859483 2.3285578, 48.8851713 2.3293553, 48.8576992 2.2797776, 48.8298513 2.2961748, 48.8373832 2.3826403, 48.8799725 2.3588623, 48.8800272 2.3588101, 48.8829349 2.3636381, 48.8829772 2.3594750, 48.8826392 2.3667648, 48.8770806 2.3638519, 48.8809351 2.3625812, 48.8809545 2.3624632, 48.8831311 2.3654083, 48.8830941 2.3655236, 48.8839358 2.3671407, 48.8289786 2.3807812, 48.8280552 2.3808361, 48.8292843 2.3823232, 48.8294517 2.3827405, 48.8291010 2.3833382, 48.8297120 2.3791681, 48.8809954 2.3651002, 48.8812463 2.3652224, 48.8827050 2.3670033, 48.8465800 2.3730993, 48.8839900 2.3286046, 48.8839605 2.3284938, 48.8763431 2.4041075, 48.8880685 2.3769540, 48.8888236 2.3460678, 48.8955600 2.3458430, 48.8909736 2.3451546, 48.8857875 2.3376754, 48.8856834 2.3380986, 48.8908443 2.3617886, 48.8850609 2.3402076, 48.8569556 2.3980459, 48.8564650 2.4027024, 48.8892956 2.3534520, 48.8883918 2.3276047, 48.8433038 2.3543255, 48.8418031 2.3029041, 48.8414214 2.2514890, 48.8665787 2.3687395, 48.8677539 2.3647162, 48.8672442 2.3624249, 48.8919172 2.3436860, 48.8917691 2.3440528, 48.8423698 2.3854379, 48.8469303 2.3075499, 48.8475588 2.3088840, 48.8486504 2.3085581, 48.8448872 2.3142661, 48.8446342 2.3148283, 48.8488629 2.3113707, 48.8543766 2.3286669, 48.8752295 2.2843527, 48.8531440 2.3776869, 48.8595596 2.2753644, 48.8595734 2.2750496, 48.8616150 2.2754832, 48.8659680 2.2795955, 48.8672885 2.2809372, 48.8680280 2.2809252, 48.8683971 2.2825564, 48.8473600 2.3864659, 48.8698073 2.3749191, 48.8698594 2.3755160, 48.8624876 2.3424711, 48.8650939 2.3440997, 48.8652964 2.3432812, 48.8659653 2.3433342, 48.8683868 2.3418763, 48.8671550 2.3566053, 48.8751636 2.4061686, 48.8904492 2.3770876, 48.8384989 2.2572066, 48.8396082 2.2579126, 48.8398593 2.2580096, 48.8651576 2.3510916, 48.8751432 2.3825052, 48.8750868 2.3823845, 48.8425813 2.3448154, 48.8940561 2.3541965, 48.8917696 2.3461211, 48.8918716 2.3465917, 48.8751867 2.4062512, 48.8968424 2.3818049, 48.8499326 2.3631550, 48.8688265 2.2482135, 48.8462126 2.4118560, 48.8437424 2.2986106, 48.8455688 2.3253845, 48.8459243 2.3259674, 48.8460036 2.3258028, 48.8464844 2.3265135, 48.8917516 2.3438452, 48.8911967 2.3437988, 48.8933614 2.3614463, 48.8861681 2.3474404, 48.8462352 2.3927786, 48.8935766 2.3294235, 48.8878878 2.3544913, 48.8880271 2.3560550, 48.8812030 2.3284499, 48.8742437 2.3321727, 48.8942439 2.3352879, 48.8988973 2.3399388, 48.8997428 2.3522502, 48.8921164 2.3345008, 48.8911613 2.3319378, 48.8921939 2.3316488, 48.8856755 2.3448166, 48.8930350 2.3633966, 48.8900140 2.3602197, 48.8762979 2.3397799, 48.8766916 2.3405068, 48.8933200 2.3491176, 48.8246903 2.3553751, 48.8377773 2.3494970, 48.8895988 2.3163725, 48.8825981 2.3645629, 48.8928809 2.3504734, 48.8920706 2.3346881, 48.8933750 2.3385392, 48.8413779 2.3118977, 48.8433854 2.3736074, 48.8510517 2.3092163, 48.8518484 2.3096816, 48.8369959 2.3933620, 48.8545431 2.2743043, 48.8589523 2.2771588, 48.8599813 2.3497684, 48.8968971 2.3856504, 48.8278579 2.3057957, 48.8302062 2.3335779, 48.8254086 2.3802466, 48.8984327 2.3695091, 48.8394454 2.3963015, 48.8605989 2.3512022, 48.8983279 2.3618983, 48.8983261 2.3617173, 48.8983518 2.3649038, 48.8982617 2.3563907, 48.8750935 2.3351732, 48.8436342 2.3043290, 48.8431682 2.3046133, 48.8918524 2.3632899, 48.8919900 2.3631317, 48.8756176 2.3432285, 48.8760560 2.3438036, 48.8762724 2.3440214, 48.8429539 2.4085434, 48.8443890 2.4068429, 48.8418110 2.4082929, 48.8257982 2.3468029, 48.8266018 2.3354681, 48.8272551 2.3352458, 48.8330622 2.3958487, 48.8336114 2.3861569, 48.8337322 2.3983467, 48.8337623 2.3951877, 48.8342999 2.3975412, 48.8343797 2.3963938, 48.8345191 2.3966361, 48.8348254 2.3934365, 48.8348947 2.3972942, 48.8349022 2.3933477, 48.8349654 2.3960429, 48.8358704 2.3961786, 48.8359891 2.3974455, 48.8360813 2.3872238, 48.8361353 2.3948924, 48.8361988 2.3988969, 48.8364221 2.3949270, 48.8364309 2.3988951, 48.8365523 2.3982569, 48.8366252 2.3929585, 48.8366508 2.3952223, 48.8366989 2.3943677, 48.8369456 2.4019945, 48.8370471 2.3917506, 48.8375850 2.3971765, 48.8376090 2.3907850, 48.8380876 2.3941069, 48.8382060 2.3900510, 48.8382377 2.3966077, 48.8384334 2.3930799, 48.8392532 2.4005400, 48.8393971 2.4089227, 48.8394590 2.3963160, 48.8398776 2.4385198, 48.8401062 2.4087456, 48.8403121 2.4025153, 48.8403240 2.3922740, 48.8404000 2.3925410, 48.8405290 2.3878980, 48.8406298 2.4087338, 48.8408716 2.4093998, 48.8408973 2.4043894, 48.8411011 2.3894090, 48.8411636 2.4011997, 48.8412990 2.3878120, 48.8414464 2.4049212, 48.8415076 2.4114849, 48.8415328 2.3867030, 48.8416660 2.4012796, 48.8419094 2.4012356, 48.8421054 2.4051399, 48.8422686 2.4130852, 48.8427012 2.4099683, 48.8430070 2.4049900, 48.8432746 2.4053848, 48.8435321 2.4018263, 48.8435985 2.3849459, 48.8438772 2.4055537, 48.8438822 2.4018602, 48.8441184 2.4107116, 48.8445290 2.4022130, 48.8445690 2.3838350, 48.8447684 2.4039094, 48.8450108 2.3819449, 48.8450601 2.4059175, 48.8451489 2.3992116, 48.8456490 2.4058577, 48.8458140 2.3781933, 48.8460195 2.4011318, 48.8464795 2.3973596, 48.8468250 2.3761200, 48.8469175 2.3998635, 48.8470370 2.3752130, 48.8473365 2.3968804, 48.8475637 2.3772093, 48.8476803 2.3969131, 48.8478107 2.3769587, 48.8486250 2.3761890, 48.8486464 2.3760764, 48.8486500 2.3759526, 48.8486995 2.3922091, 48.8488565 2.3718825, 48.8491107 2.3914645, 48.8491891 2.3706453, 48.8492039 2.3749537, 48.8493182 2.3945344, 48.8494100 2.3666950, 48.8495420 2.3885630, 48.8496199 2.3992270, 48.8496430 2.3879630, 48.8497090 2.3874500, 48.8499140 2.3738580, 48.8500548 2.3704157, 48.8501440 2.3736032, 48.8501956 2.3990356, 48.8507639 2.3673484, 48.8517110 2.3618880, 48.8517771 2.3894115, 48.8518450 2.3616490, 48.8521525 2.3608127, 48.8522346 2.3609020, 48.8526930 2.3593190, 48.8527195 2.3598976, 48.8527480 2.3589640, 48.8531388 2.3585705, 48.8532690 2.3582420, 48.8535826 2.3671894, 48.8536386 2.3574595, 48.8536840 2.3653980, 48.8540083 2.3867106, 48.8542800 2.3558000, 48.8543900 2.3585670, 48.8546430 2.3624970, 48.8551500 2.3611171, 48.8551661 2.3610199, 48.8553710 2.3839922, 48.8554533 2.3526702, 48.8555080 2.3530370, 48.8557740 2.3511230, 48.8557940 2.3561690, 48.8559788 2.3536549, 48.8576042 2.3453235, 48.8576673 2.3795437, 48.8578611 2.3794239, 48.8580233 2.3793056, 48.8588686 2.3399492, 48.8593222 2.3528610, 48.8597358 2.3468419, 48.8618647 2.3406148, 48.8659038 2.3352738, 48.8664823 2.3650887, 48.8680548 2.3339763, 48.8682365 2.3599800, 48.8683243 2.3611065, 48.8693195 2.3570045, 48.8692824 2.3567025, 48.8701819 2.3507724, 48.8703411 2.3499916, 48.8703632 2.3498715, 48.8704864 2.3493477, 48.8705032 2.3492529, 48.8716194 2.3500035, 48.8721225 2.3499157, 48.8721226 2.3502025, 48.8722370 2.3500383, 48.8737185 2.3504412, 48.8741816 2.3506318, 48.8747445 2.3507850, 48.8752900 2.3395820, 48.8758873 2.3483293, 48.8760619 2.3511508, 48.8762909 2.3511140, 48.8779921 2.3512114, 48.8784568 2.3428425, 48.8787058 2.3506082, 48.8792051 2.3494881, 48.8792478 2.3478686, 48.8794000 2.3508120, 48.8795410 2.3488399, 48.8798786 2.3436312, 48.8799663 2.3473845, 48.8339632 2.2872487, 48.8359881 2.2902310, 48.8372786 2.2895116, 48.8449733 2.3955604, 48.8452920 2.3209130, 48.8452821 2.3979496, 48.8463896 2.3943133, 48.8471562 2.3938782, 48.8489640 2.3916850, 48.8493880 2.3888810, 48.8496070 2.3873440, 48.8502461 2.3827334, 48.8504940 2.3815430, 48.8505009 2.3846476, 48.8513150 2.3816100, 48.8518018 2.3280805, 48.8525120 2.3807800, 48.8533500 2.3805110, 48.8537880 2.3957560, 48.8541520 2.3797770, 48.8561260 2.3783390, 48.8576484 2.3771545, 48.8584759 2.3764078, 48.8603270 2.3754070, 48.8618492 2.3647130, 48.8621758 2.3636326, 48.8622764 2.3665452, 48.8633235 2.3689417, 48.8645520 2.3597753, 48.8671223 2.3513757, 48.8700760 2.3506120, 48.8736310 2.3479604, 48.8755325 2.3482416, 48.8758100 2.3397850, 48.8760265 2.3400514, 48.8760800 2.3403660, 48.8768678 2.3487512, 48.8389060 2.3767670, 48.8390010 2.3874480, 48.8396552 2.3779295, 48.8543680 2.3547701, 48.8239017 2.3229235, 48.8242472 2.3213940, 48.8245758 2.3199505, 48.8255285 2.3158189, 48.8256468 2.3482018, 48.8258238 2.3144135, 48.8260929 2.3588377, 48.8261054 2.3131480, 48.8275286 2.3318231, 48.8290970 2.2993460, 48.8296899 2.2967192, 48.8300150 2.2961350, 48.8325027 2.2889045, 48.8366313 2.2763322, 48.8431275 2.2603574, 48.8451702 2.3983100, 48.8475546 2.3889290, 48.8478588 2.3908091, 48.8482240 2.3808030, 48.8482720 2.3787290, 48.8490260 2.3810470, 48.8492020 2.3781220, 48.8498208 2.3768806, 48.8499970 2.3791060, 48.8520364 2.3739698, 48.8540329 2.3736919, 48.8545885 2.3714719, 48.8546118 2.3729736, 48.8546280 2.3710930, 48.8550337 2.3704743, 48.8574091 2.3612872, 48.8577110 2.3608910, 48.8618100 2.3539090, 48.8627772 2.3535227, 48.8646021 2.3531390, 48.8700440 2.3507020, 48.8726232 2.2763923, 48.8737450 2.3479740, 48.8738400 2.3446450, 48.8761660 2.3441530, 48.8791390 2.3535520, 48.8798180 2.3528100, 48.8820870 2.3509300, 48.8861322 2.3494762, 48.8866800 2.3495020, 48.8876420 2.3494764, 48.8878870 2.3494964, 48.8906598 2.3495186, 48.8909454 2.3495172, 48.8989647 2.3237481, 48.8715019 2.4045081, 48.8762240 2.4062991, 48.8763811 2.4061703, 48.8769447 2.4050363, 48.8776734 2.4065084, 48.8779210 2.4059297, 48.8781032 2.4108393, 48.8782650 2.4058287, 48.8657823 2.3994721, 48.8572967 2.3515291, 48.8522308 2.3678097, 48.8242892 2.3764902, 48.8243395 2.3766423, 48.8259590 2.3538780, 48.8333535 2.3991671, 48.8378748 2.3573539, 48.8367172 2.3580385, 48.8370906 2.3578084, 48.8469222 2.3993098, 48.8490463 2.3989425, 48.8563665 2.3939744, 48.8572552 2.3854799, 48.8572776 2.3855905, 48.8576754 2.3919847, 48.8594350 2.3870127, 48.8722210 2.3643307, 48.8261039 2.3582769, 48.8468249 2.4104107, 48.8468448 2.4101919, 48.8468528 2.4101033, 48.8471654 2.4071583, 48.8472069 2.4066764, 48.8513516 2.4062448, 48.8517143 2.4071448, 48.8664981 2.3243419, 48.8941417 2.3326946, 48.8715688 2.4022351, 48.8949489 2.3601209, 48.8911550 2.3633069, 48.8394801 2.3713759, 48.8391251 2.3715959, 48.8378949 2.3555704, 48.8240305 2.3234209, 48.8275253 2.3261423, 48.8295090 2.3482501, 48.8296744 2.3329116, 48.8296889 2.3480032, 48.8300287 2.3471023, 48.8306286 2.3439710, 48.8307741 2.3363033, 48.8309276 2.3553044, 48.8309560 2.3563203, 48.8313659 2.3419868, 48.8314521 2.3413377, 48.8337067 2.3652426, 48.8343505 2.3671081, 48.8349875 2.3690185, 48.8369558 2.3731388, 48.8372547 2.3741922, 48.8389808 2.3876834, 48.8400503 2.3966865, 48.8405435 2.3976638, 48.8419125 2.3931180, 48.8425378 2.3971712, 48.8431508 2.3868501, 48.8438225 2.3907961, 48.8438547 2.3884184, 48.8441353 2.3903995, 48.8448504 2.3956453, 48.8449655 2.3825373, 48.8450610 2.3817030, 48.8455335 2.4059659, 48.8457371 2.3744755, 48.8458882 2.3745674, 48.8460421 2.3746885, 48.8461407 2.3758102, 48.8461570 2.3756299, 48.8462020 2.3762720, 48.8463517 2.4060121, 48.8463588 2.3819651, 48.8469945 2.3695400, 48.8469983 2.3840650, 48.8470022 2.3692654, 48.8485165 2.3710817, 48.8493154 2.3681094, 48.8494375 2.3698324, 48.8497678 2.3690872, 48.8499439 2.3739778, 48.8502341 2.3736347, 48.8502976 2.3687576, 48.8538513 2.4054931, 48.8636158 2.3993948, 48.8639863 2.3992574, 48.8652421 2.3951007, 48.8655085 2.3946733, 48.8677329 2.3907031, 48.8684805 2.3898741, 48.8688786 2.3895491, 48.8702670 2.3890490, 48.8704853 2.3883060, 48.8714250 2.3861474, 48.8717558 2.3890342, 48.8994665 2.3362669, 48.9005443 2.3357066, 48.8320164 2.4039323, 48.8320207 2.4038132, 48.8341445 2.4013757, 48.8351942 2.4016328, 48.8372220 2.4037368, 48.8314328 2.3873778, 48.8317821 2.3857254, 48.8320640 2.3883288, 48.8350055 2.3874833, 48.8358666 2.3847168, 48.8373190 2.3826641, 48.8374528 2.3917533, 48.8380369 2.3818677, 48.8387612 2.3810831, 48.8388667 2.3937811, 48.8389421 2.3806421, 48.8394110 2.3802556, 48.8573040 2.3514977, 48.8614181 2.3533893, 48.8616790 2.3513642, 48.8617384 2.3511100, 48.8617679 2.3509583, 48.8619491 2.3505495, 48.8620204 2.3499051, 48.8620520 2.3497369, 48.8638474 2.3430292, 48.8643157 2.3474095, 48.8648065 2.3458024, 48.8810201 2.3499806, 48.8472316 2.4033307, 48.8474060 2.3985801, 48.8475134 2.3982539, 48.8476893 2.3944332, 48.8480152 2.3982806, 48.8523912 2.3718273, 48.8678628 2.3622500, 48.8682145 2.3624441, 48.8753496 2.3569996, 48.8757151 2.3564916, 48.8759340 2.3562965, 48.8763508 2.3558909, 48.8769505 2.3553665, 48.8776793 2.3547127, 48.8779306 2.3546949, 48.8779709 2.3544608, 48.8789523 2.3541157, 48.8798131 2.3564484, 48.8287082 2.3506786, 48.8297015 2.3756891, 48.8297318 2.3756639, 48.8302556 2.3763483, 48.8302884 2.3764082, 48.8303257 2.3764732, 48.8554738 2.3844934, 48.8558003 2.3750398, 48.8563070 2.3766560, 48.8563443 2.3735148, 48.8563892 2.3736140, 48.8573040 2.3791655, 48.8575988 2.3723727, 48.8580871 2.3720646, 48.8599833 2.3751511, 48.8606643 2.3672378, 48.8612261 2.3646636, 48.8612423 2.3694822, 48.8615175 2.3633665, 48.8620657 2.3606971, 48.8625682 2.3596478, 48.8658847 2.3446913, 48.8659713 2.3446586, 48.8669646 2.3445039, 48.8486198 2.2907379, 48.8241171 2.3356096, 48.8251709 2.3747800, 48.8262226 2.3733016, 48.8265738 2.3354498, 48.8270035 2.3668285, 48.8275458 2.3738970, 48.8276171 2.3715500, 48.8279688 2.3733478, 48.8280437 2.3734448, 48.8303701 2.3343029, 48.8324259 2.3797103, 48.8328426 2.3359068, 48.8348268 2.3999659, 48.8363410 2.4027533, 48.8363547 2.4029753, 48.8367250 2.4043293, 48.8367567 2.3928042, 48.8375039 2.3386695, 48.8380611 2.4053828, 48.8381721 2.4055291, 48.8420689 2.3415277, 48.8298782 2.3572786, 48.8517163 2.4061866, 48.8523080 2.4042254, 48.8534161 2.4030439, 48.8310093 2.3571815, 48.8268348 2.3665087, 48.8272788 2.3567770, 48.8278792 2.3659999, 48.8282237 2.3563309, 48.8285149 2.3563221, 48.8291592 2.3654668, 48.8296502 2.3647788, 48.8268291 2.3641616, 48.8522322 2.3898977, 48.8524976 2.3895606, 48.8539546 2.3825521, 48.8544392 2.3816128, 48.8569327 2.3799755, 48.8585657 2.3781777, 48.8633818 2.3710966, 48.8671029 2.3655043, 48.8683370 2.3634922, 48.8699682 2.3607540, 48.8706171 2.3596295, 48.8708012 2.3598095, 48.8712575 2.3602178, 48.8713074 2.3601361, 48.8718731 2.3599327, 48.8724770 2.3594063, 48.8730997 2.3588306, 48.8734420 2.3585204, 48.8742775 2.3577777, 48.8785606 2.3557407, 48.8481543 2.3934076, 48.8542868 2.3877696, 48.8569986 2.3852716, 48.8575346 2.3847601, 48.8580303 2.3809765, 48.8581695 2.3807581, 48.8583918 2.3804386, 48.8608624 2.3805635, 48.8611746 2.3809999, 48.8452169 2.4120881, 48.8461924 2.4121067, 48.8466376 2.4114577, 48.8473580 2.4106924, 48.8473835 2.4103563, 48.8524722 2.4106454, 48.8526979 2.4111873, 48.8557704 2.4107086, 48.8574629 2.4101809, 48.8581256 2.4099841, 48.8587706 2.4100076, 48.8592004 2.4098008, 48.8608587 2.4094863, 48.8649243 2.4085167, 48.8651848 2.4086243, 48.8669825 2.4087455, 48.8681301 2.4072046, 48.8708037 2.4048775, 48.8748416 2.4030830, 48.8800875 2.3982376, 48.8801636 2.3979290, 48.8822748 2.3961932, 48.8897519 2.3898235, 48.8897859 2.3901176, 48.8900562 2.3906182, 48.8908981 2.3898028, 48.8924246 2.3879304, 48.8928662 2.3878039, 48.8931913 2.3928220, 48.8332843 2.3172595, 48.8257570 2.3480755, 48.8257663 2.3482098, 48.8276817 2.3715635, 48.8277542 2.3314326, 48.8277569 2.3294975, 48.8325094 2.3123346, 48.8338839 2.3082929, 48.8340082 2.3078231, 48.8347282 2.3054035, 48.8361022 2.3004952, 48.8362679 2.2934700, 48.8376932 2.4037117, 48.8397308 2.3978085, 48.8420906 2.3894385, 48.8425267 2.3896625, 48.8445646 2.3180923, 48.8470920 2.3268174, 48.8521103 2.3659956, 48.8555817 2.3636375, 48.8592929 2.3562507, 48.8596838 2.3565776, 48.8618200 2.3569043, 48.8746673 2.3308647, 48.8735099 2.3310689, 48.8323649 2.4042508, 48.8319766 2.3145168, 48.8325060 2.3158066, 48.8334834 2.3173462, 48.8338586 2.3183718, 48.8340668 2.3182365, 48.8341266 2.3177915, 48.8347650 2.3425150, 48.8349068 2.3452703, 48.8350373 2.3453379, 48.8350577 2.3457523, 48.8350801 2.3462140, 48.8361574 2.3222159, 48.8383431 2.2893686, 48.8389031 2.3587665, 48.8392803 2.3599626, 48.8394354 2.3604664, 48.8442862 2.2943443, 48.8444182 2.2937030, 48.8469994 2.2956834, 48.8472148 2.3034083, 48.8527070 2.3336447, 48.8228812 2.3586455, 48.8250947 2.3203976, 48.8266929 2.3240664, 48.8276403 2.3263672, 48.8366568 2.3904615, 48.8377732 2.2978996, 48.8390555 2.3541961, 48.8391729 2.3879459, 48.8393615 2.3547196, 48.8394955 2.3009500, 48.8395273 2.3563297, 48.8403152 2.3627036, 48.8403371 2.3598998, 48.8403767 2.3612985, 48.8421501 2.3099414, 48.8431512 2.3481982, 48.8442099 2.3456920, 48.8451757 2.3455730, 48.8457102 2.3460054, 48.8488355 2.3252187, 48.8506988 2.3354533, 48.8254520 2.3540117, 48.8320288 2.2933775, 48.8330901 2.2875209, 48.8338287 2.2951996, 48.8352845 2.3006101, 48.8353138 2.3004808, 48.8355333 2.3008990, 48.8375206 2.3108341, 48.8377213 2.3092594, 48.8380900 2.3040826, 48.8383431 2.3045795, 48.8384042 2.3046605, 48.8386443 2.3051222, 48.8396738 2.3028038, 48.8403607 2.4028757, 48.8406684 2.3153202, 48.8409914 2.3133930, 48.8414293 2.3136925, 48.8419801 2.3147584, 48.8471459 2.3017502, 48.8529188 2.3087416, 48.8560088 2.3152292, 48.8584188 2.3146004, 48.8664898 2.3645091, 48.8669961 2.3635905, 48.8670152 2.3630804, 48.8670361 2.3631640, 48.8674351 2.3629732, 48.8679849 2.3651178, 48.8686416 2.3633147, 48.8686663 2.3632144, 48.8488706 2.4054308, 48.8489816 2.4056570, 48.8494687 2.4051936, 48.8600707 2.3247081, 48.8297590 2.3779170, 48.8250371 2.3884441, 48.8275044 2.3763133, 48.8295479 2.3793241, 48.8312982 2.3805156, 48.8535184 2.3767685, 48.8567309 2.3731009, 48.8567919 2.3727131, 48.8596630 2.4036667, 48.8597113 2.4032404, 48.8672556 2.3729520, 48.8678310 2.3962785, 48.8712975 2.3932942, 48.8736717 2.3893707, 48.8752326 2.3699504, 48.8785201 2.3757987, 48.8785987 2.3756111, 48.8839930 2.3680663, 48.8841702 2.3653361, 48.8809813 2.3738144, 48.8813033 2.3729918, 48.8330219 2.3641260, 48.8337653 2.3094048, 48.8342723 2.3283804, 48.8354533 2.3258265, 48.8357486 2.3110952, 48.8366678 2.3127785, 48.8368862 2.3126418, 48.8408789 2.3214931, 48.8475924 2.3949477, 48.8480651 2.3944560, 48.8484606 2.3943801, 48.8489226 2.3946004, 48.8530598 2.3535567, 48.8552774 2.3345202, 48.8555651 2.3608523, 48.8570886 2.3297266, 48.8585185 2.3298224, 48.8586963 2.3287531, 48.8761034 2.3355444, 48.8762920 2.3325923, 48.8217293 2.3329753, 48.8342289 2.3218797, 48.8343205 2.2844154, 48.8348748 2.2829273, 48.8355558 2.2807022, 48.8360155 2.2791843, 48.8366129 2.3508583, 48.8372702 2.3535459, 48.8379882 2.3433930, 48.8382061 2.3565243, 48.8385318 2.3366177, 48.8396083 2.3376405, 48.8411746 2.3066119, 48.8412714 2.3397958, 48.8414201 2.3390745, 48.8452811 2.3694044, 48.8246139 2.3297884, 48.8248448 2.3309724, 48.8248677 2.3167742, 48.8249619 2.3287697, 48.8249980 2.3313844, 48.8257400 2.3120275, 48.8259545 2.3126700, 48.8260495 2.3309436, 48.8285948 2.3330627, 48.8290174 2.3328655, 48.8326036 2.3623992, 48.8334174 2.3642162, 48.8359245 2.3856627, 48.8401447 2.3704675, 48.8403742 2.3701490, 48.8409627 2.3362290, 48.8415305 2.3538584, 48.8419422 2.3357262, 48.8430208 2.3525662, 48.8432035 2.3315463, 48.8441253 2.3305131, 48.8452074 2.3522138, 48.8467725 2.3266058, 48.8484788 2.3326047, 48.8493788 2.3389951, 48.8500333 2.3399942, 48.8445302 2.3291617, 48.8496464 2.3378520, 48.8462036 2.2991334, 48.8466880 2.3668924, 48.8504922 2.3892597, 48.8506002 2.3865799, 48.8508572 2.3411144, 48.8515666 2.3400541, 48.8517508 2.3398717, 48.8521001 2.3863956, 48.8528464 2.3842636, 48.8529129 2.3851769, 48.8532221 2.3833883, 48.8545205 2.3824395, 48.8560866 2.3825736, 48.8610854 2.3101169, 48.8742389 2.3553630, 48.8744853 2.3555219, 48.8767135 2.3539984, 48.8767602 2.3536655, 48.8773020 2.3497131, 48.8780538 2.3450154, 48.8222079 2.3512623, 48.8221465 2.3506206, 48.8403122 2.2839206, 48.8421802 2.2856456, 48.8446133 2.2871390, 48.8459908 2.2882261, 48.8465650 2.3875568, 48.8481839 2.2902622, 48.8868930 2.3555588, 48.8332913 2.3012392, 48.8319028 2.3045724, 48.8763704 2.3313223, 48.8813097 2.3805063, 48.8407025 2.2998297, 48.8408105 2.3005583, 48.8428691 2.2953585, 48.8691839 2.3358994, 48.8419850 2.2935384, 48.8420971 2.3007593, 48.8432807 2.3001298, 48.8435688 2.2937775, 48.8452755 2.2974744, 48.8469016 2.2922005, 48.8469813 2.2932207, 48.8470332 2.2925959, 48.8471729 2.2924922, 48.8481405 2.2934613, 48.8488766 2.3550116, 48.8489122 2.3193174, 48.8489272 2.3523931, 48.8491216 2.3136783, 48.8491775 2.3141515, 48.8492908 2.3146445, 48.8493554 2.3527922, 48.8499990 2.3166689, 48.8508919 2.2958074, 48.8511850 2.2966292, 48.8454208 2.2917026, 48.8473674 2.2962615, 48.8475073 2.2831429, 48.8477824 2.2824011, 48.8682969 2.3657074, 48.8685578 2.3665766, 48.8351811 2.4063529, 48.8389376 2.2789040, 48.8416959 2.2795090, 48.8450469 2.2801242, 48.8454304 2.2845227, 48.8459998 2.2813073, 48.8462807 2.2851535, 48.8894150 2.3628554, 48.8850120 2.3563702, 48.8762217 2.3586964, 48.8433449 2.3251164, 48.8550540 2.3941000, 48.8560955 2.3926896, 48.8578050 2.3996283, 48.8582358 2.3823367, 48.8586186 2.3835107, 48.8592411 2.3830225, 48.8601008 2.3822123, 48.8626812 2.3797075, 48.8630453 2.3672473, 48.8633485 2.3671490, 48.8634092 2.3790356, 48.8644595 2.3839203, 48.8648530 2.3666639, 48.8657480 2.3705095, 48.8680948 2.3655417, 48.8682070 2.3654610, 48.8687325 2.3631261, 48.8740998 2.3453668, 48.8903381 2.3486643, 48.8905361 2.3482493, 48.8481499 2.3941327, 48.8277079 2.3495286, 48.8314922 2.3442625, 48.8320979 2.3443846, 48.8367757 2.3452596, 48.8548426 2.3031870, 48.8548827 2.3032421, 48.8567726 2.3001849, 48.8568344 2.3001716, 48.8569127 2.2999765, 48.8577877 2.3006194, 48.8596013 2.3072329, 48.8600760 2.3280535, 48.8612403 2.3243984, 48.8615577 2.3576761, 48.8617439 2.2982592, 48.8626940 2.3099487, 48.8627569 2.3393126, 48.8629258 2.3030795, 48.8629949 2.3080187, 48.8630650 2.3165032, 48.8635613 2.3394544, 48.8265121 2.3465625, 48.8321818 2.3392750, 48.8508705 2.3623119, 48.8512015 2.3822530, 48.8514794 2.3101353, 48.8540997 2.3239460, 48.8541902 2.3194979, 48.8550561 2.3402771, 48.8600928 2.3731117, 48.8535790 2.3638481, 48.8571030 2.3539440, 48.8571580 2.2667766, 48.8573414 2.3540716, 48.8574462 2.3575428, 48.8584854 2.2792832, 48.8597267 2.2821320, 48.8630086 2.3362399, 48.8631579 2.3415886, 48.8632373 2.3412593, 48.8653506 2.3423662, 48.8670831 2.3356438, 48.8682396 2.2933172, 48.8697732 2.2938530, 48.8744871 2.3117910, 48.8747123 2.3133715, 48.8747243 2.3027090, 48.8759626 2.2965087, 48.8308265 2.3530126, 48.8359247 2.2814968, 48.8381961 2.2812162, 48.8466206 2.4134552, 48.8530692 2.4125589, 48.8569190 2.4110486, 48.8647596 2.4089845, 48.8671280 2.4091658, 48.8673068 2.4087318, 48.8678522 2.4092408, 48.8718692 2.4084946, 48.8729156 2.4089018, 48.8730227 2.4088436, 48.8774817 2.4062578, 48.8799062 2.4010873, 48.8808314 2.4005187, 48.8827476 2.3997867, 48.8837604 2.3973570, 48.8853759 2.3967693, 48.8891501 2.3919739, 48.8921011 2.3883839, 48.8939074 2.3869648, 48.8950741 2.3853043, 48.8965893 2.3846935, 48.8974790 2.3852300, 48.8355408 2.3093378, 48.8413240 2.2886217, 48.8592270 2.3236594, 48.8624657 2.3115669, 48.8779515 2.3440896, 48.8380661 2.2876899, 48.8454913 2.3116790, 48.8455110 2.3111536, 48.8669202 2.3834926, 48.8689269 2.3715327, 48.8759321 2.3727655, 48.8984073 2.3709403, 48.8526033 2.3136415, 48.8357816 2.3023056, 48.8363872 2.3030756, 48.8365194 2.3011778, 48.8368720 2.3025022, 48.8369553 2.3024373, 48.8370310 2.3025696, 48.8388883 2.3004061, 48.8489669 2.2876751, 48.8689288 2.3715403, 48.8402950 2.3002166, 48.8404916 2.2780605, 48.8424961 2.3064436, 48.8433477 2.2798969, 48.8440160 2.3238242, 48.8471428 2.2860305, 48.8474003 2.2951465, 48.8480350 2.2869182, 48.8490968 2.2877519, 48.8249781 2.3039567, 48.8257243 2.3052770, 48.8265928 2.3048244, 48.8213106 2.3411460, 48.8239590 2.3308277, 48.8239711 2.3514442, 48.8239998 2.3510117, 48.8241733 2.3533935, 48.8244865 2.3278048, 48.8245804 2.3396886, 48.8246044 2.3382584, 48.8248799 2.3536513, 48.8256032 2.3217938, 48.8260622 2.3105582, 48.8266135 2.3534752, 48.8269262 2.3513163, 48.8281250 2.3216386, 48.8281819 2.3155262, 48.8289185 2.3222763, 48.8296026 2.3178273, 48.8322116 2.2883420, 48.8324706 2.3133021, 48.8329583 2.2774040, 48.8330016 2.2770756, 48.8330898 2.2768283, 48.8331174 2.2765291, 48.8333400 2.3145004, 48.8337099 2.3148700, 48.8337885 2.3608913, 48.8356331 2.4060202, 48.8360628 2.4058718, 48.8367584 2.3566102, 48.8368296 2.3568351, 48.8459364 2.3679712, 48.8488033 2.3687487, 48.8384611 2.3605477, 48.8671353 2.3480000, 48.8938413 2.3472931, 48.8942404 2.3460471, 48.8942255 2.3458385, 48.8466055 2.3466048, 48.8934234 2.3381216, 48.8929811 2.3381482, 48.8839216 2.3271785, 48.8839775 2.3271608, 48.8839670 2.3273081, 48.8841275 2.3270884, 48.8845343 2.3268965, 48.8846683 2.3268418, 48.8855156 2.3264429, 48.8862771 2.3262148, 48.8861526 2.3261584, 48.8865223 2.3259623, 48.8869014 2.3259253, 48.8871792 2.3257982, 48.8875030 2.3256728, 48.8874194 2.3255802, 48.8189427 2.3623110, 48.8193375 2.3442401, 48.8193930 2.3452226, 48.8200280 2.3394747, 48.8202391 2.3395613, 48.8205079 2.3556087, 48.8205508 2.3372668, 48.8205989 2.3495983, 48.8211121 2.3347051, 48.8215967 2.3323735, 48.8292229 2.3255814, 48.8292882 2.2971394, 48.8313803 2.3349575, 48.8316633 2.3221401, 48.8325886 2.3203616, 48.8357379 2.3250590, 48.8369802 2.2739149, 48.8386159 2.3222156, 48.8344865 2.4691570, 48.8357568 2.3008708, 48.8360131 2.3100586, 48.8369650 2.3090961, 48.8375624 2.3080571, 48.8385808 2.3067130, 48.8395895 2.3092578, 48.8714897 2.3427273, 48.8205058 2.3593321, 48.8505602 2.3001391, 48.8427552 2.2924068, 48.8434280 2.2929776, 48.8518541 2.2999378, 48.8526008 2.2998174, 48.8526618 2.2999032, 48.8560465 2.2944608, 48.8561074 2.2945466, 48.8566822 2.2923833, 48.8568355 2.2938443, 48.8582848 2.3558481, 48.8595125 2.3524319, 48.8608732 2.2962429, 48.8610323 2.2965408, 48.8613476 2.2971959, 48.8630993 2.3180109, 48.8348722 2.4086899, 48.8358883 2.4089442, 48.8360619 2.4087881, 48.8425612 2.3139626, 48.8475557 2.4085227, 48.8415102 2.4131166, 48.8416826 2.4130896, 48.8319771 2.3979134, 48.8323454 2.3551969, 48.8974525 2.3959552, 48.8678050 2.3496900, 48.8681841 2.3484645, 48.8682787 2.3487909, 48.8685115 2.3495915, 48.8690548 2.3514051, 48.8293654 2.3598900, 48.8312517 2.3580440, 48.8225167 2.3571540, 48.8897765 2.3719886, 48.8437894 2.2772811, 48.8441585 2.2771994, 48.8485264 2.2810711, 48.8487304 2.2813632, 48.8489564 2.2816880, 48.8512111 2.3987159, 48.8512690 2.4044346, 48.8514506 2.4058799, 48.8514709 2.3995095, 48.8515803 2.4001141, 48.8543196 2.3962849, 48.8568402 2.4046511, 48.8580682 2.3877975, 48.8600706 2.3886064, 48.8604792 2.4008059, 48.8611195 2.3880530, 48.8631905 2.3883955, 48.8650677 2.3956244, 48.8651291 2.3943708, 48.8654133 2.3895489, 48.8660045 2.3873365, 48.8662887 2.3905433, 48.8682334 2.3864308, 48.8686568 2.3866090, 48.8690384 2.3861855, 48.8704416 2.3841005, 48.8704583 2.3841770, 48.8726164 2.3842276, 48.8734281 2.3825503, 48.8735409 2.3833038, 48.8274961 2.3770388, 48.8883372 2.3743635, 48.8966561 2.3798725, 48.8301525 2.3594415, 48.8465069 2.4099879, 48.8757435 2.3262717, 48.8836814 2.3499178, 48.8201088 2.3481923, 48.8201319 2.3478823, 48.8202012 2.3481361, 48.8205445 2.3494030, 48.8233285 2.3741842, 48.8217463 2.3258742, 48.8219887 2.3306289, 48.8349501 2.4072247, 48.8351659 2.4069054, 48.8708394 2.3465254, 48.8736212 2.2769315, 48.8816472 2.3154087, 48.8824542 2.2862966, 48.8837737 2.2909262, 48.8843309 2.2884576, 48.8853037 2.2956381, 48.8892808 2.2928055, 48.8346342 2.3606245, 48.8550678 2.3246859, 48.8843190 2.3697260, 48.8849215 2.3709154, 48.8871420 2.3755550, 48.8488878 2.4063145, 48.8826421 2.3444926, 48.8618141 2.3222918, 48.8649047 2.3105605, 48.8649598 2.3105563, 48.8707207 2.3458677, 48.8710108 2.3455226, 48.8748858 2.3191940, 48.8814710 2.3009002, 48.8836868 2.2986830, 48.8845223 2.3081683, 48.8848975 2.3067652, 48.8871423 2.3009349, 48.8873797 2.3010160, 48.8688331 2.3251265, 48.8871184 2.2983257, 48.8887957 2.2976069, 48.8833935 2.3195861, 48.8845689 2.3194756, 48.8847283 2.3200247, 48.8848321 2.3192257, 48.8854073 2.2987197, 48.8862629 2.3178705, 48.8862908 2.3178312, 48.8874366 2.3136254, 48.8418848 2.2853423, 48.8507831 2.3944957, 48.8518835 2.3934531, 48.8520017 2.3935558, 48.8523499 2.3931181, 48.8617792 2.3745107, 48.8622369 2.3739210, 48.8623819 2.3639950, 48.8740920 2.3388296, 48.8754273 2.3247309, 48.8394875 2.2840062, 48.8397475 2.2846463, 48.8427503 2.2863046, 48.8468131 2.2904315, 48.8500437 2.3954755, 48.8391079 2.3390778, 48.8422773 2.3762540, 48.8391187 2.4008037, 48.8397181 2.4041355, 48.8423773 2.3977129, 48.8432024 2.3913685, 48.8449650 2.3837024, 48.8526582 2.2904698, 48.8577122 2.2791705, 48.8581675 2.2754001, 48.8516727 2.3995074, 48.8317848 2.3580564, 48.8331084 2.3230703, 48.8629913 2.4001471, 48.8332462 2.4027150, 48.8422716 2.3666416, 48.8425115 2.3664241, 48.8425602 2.3663854, 48.8432847 2.3745921, 48.8611021 2.3537247, 48.8459524 2.3314941, 48.8467856 2.2815796, 48.8473038 2.3299657, 48.8822077 2.3636469, 48.8822937 2.3628730, 48.8826834 2.3615248, 48.8842662 2.3384857, 48.8843570 2.3383511, 48.8843580 2.3554674, 48.8855628 2.3868905, 48.8973410 2.3866230, 48.8480167 2.2901082, 48.8654197 2.3615883, 48.8659969 2.3276111, 48.8453920 2.3132117, 48.8602828 2.3469501, 48.8771319 2.3510066, 48.8431362 2.3363642, 48.8778732 2.3448763 +89 +49.4296874 8.6826637, 49.4279757 8.6835849, 49.4147764 8.6710359, 49.4278053 8.7495282, 49.4178891 8.7605933, 49.4075919 8.6845735, 49.4092177 8.6922359, 49.4084542 8.6927289, 49.4078943 8.6929172, 49.4083041 8.6927592, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4158218 8.6922416, 49.4072954 8.6910173, 49.4082595 8.6914326, 49.4082829 8.6916558, 49.4076226 8.6923209, 49.4103158 8.6974936, 49.4165191 8.6921856, 49.4120923 8.7117858, 49.4151725 8.6902594, 49.4071068 8.6898761, 49.4172306 8.6824331, 49.4108200 8.6918918, 49.4227158 8.6483350, 49.4160126 8.6922256, 49.4278746 8.6871277, 49.4277708 8.6843289, 49.4077632 8.6922107, 49.4101101 8.6935285, 49.4080641 8.6904292, 49.4168755 8.6790034, 49.4283321 8.6836841, 49.4228152 8.6504004, 49.4082494 8.6913249, 49.4278253 8.6839436, 49.4278064 8.7495089 +55.9606990 -3.2496993, 55.9400545 -3.1930414, 55.9494596 -3.1096499, 55.9138280 -3.1645331, 55.9376548 -3.1781132, 55.9403771 -3.4162904, 55.9195401 -3.1576764, 55.9259844 -3.2829976, 55.9351037 -3.2894757, 55.9502710 -3.2958592, 55.9732511 -3.1566940 +55.9840691 -3.2228676 +62 +yes and 49.3716107 8.7013677 +37.7500651 -122.4340964, 37.7494950 -122.4338475, 37.7481784 -122.4318047, 37.7482870 -122.4317704, 37.7879001 -122.4032530, 37.7879882 -122.4037767, 37.7876404 -122.4065068, 37.7873775 -122.4085239, 37.7869825 -122.4117339, 37.7868400 -122.4132360, 37.7867454 -122.4133988, 37.7865280 -122.4151500, 37.7863839 -122.4147044, 37.8074857 -122.4122331, 37.8065738 -122.4141681, 37.7858381 -122.4208295, 37.7860823 -122.4213101, 37.7858443 -122.4215600, 37.8058156 -122.4201928, 37.8061825 -122.4173877, 37.8050741 -122.4248113, 37.8049424 -122.4251017, 37.8047238 -122.4253684, 37.8049272 -122.4254027, 37.8053138 -122.4240294, 37.8024234 -122.4249055, 37.8002533 -122.4244764, 37.7986934 -122.4241845, 37.7964948 -122.4237345, 37.7949360 -122.4234292, 37.7914294 -122.4227083, 37.7873203 -122.4218983, 37.7872205 -122.4163915, 37.7873494 -122.4149152, 37.7874377 -122.4147865, 37.7878071 -122.4133072, 37.7876377 -122.4131357, 37.7878614 -122.4114361, 37.7883158 -122.4080030, 37.7885668 -122.4059259, 37.7894553 -122.4072305, 37.7892383 -122.4089471, 37.7890348 -122.4105779, 37.7888245 -122.4122344, 37.7887296 -122.4136334, 37.7886349 -122.4137618, 37.7882480 -122.4150753, 37.7884387 -122.4153902, 37.7882006 -122.4170495, 37.7936864 -122.4231765, 37.7895224 -122.4223268, 37.8077705 -122.4105938, 37.7858278 -122.4058393, 37.7866147 -122.4049381, 37.7864654 -122.4047321, 37.7874083 -122.4036077, 37.7879204 -122.4029268, 37.7885919 -122.4024548, 37.7884698 -122.4023003, 37.7894632 -122.4012427, 37.7904738 -122.3996977, 37.7909147 -122.3992085, 37.7912199 -122.3990282, 37.7915447 -122.3981096, 37.7919524 -122.3981442, 37.7926895 -122.3975313, 37.7925538 -122.3970849, 37.7942766 -122.3948018, 37.7920324 -122.3977043, 37.7944131 -122.3950607, 37.8075184 -122.4123666, 37.8065215 -122.4134910, 37.8059994 -122.4172590, 37.8056529 -122.4205190, 37.8054155 -122.4221927, 37.8052527 -122.4234200, 37.8051442 -122.4236947, 37.8044396 -122.4250053, 37.8025001 -122.4246362, 37.8006419 -122.4242586, 37.7984038 -122.4237608, 37.7960775 -122.4233316, 37.7940496 -122.4227651, 37.7942082 -122.4229370, 37.7923946 -122.4225591, 37.7913958 -122.4222349, 37.8056122 -122.4218837, 37.7992825 -122.4189061, 37.7991130 -122.4192065, 37.7955320 -122.4181508, 37.7945850 -122.4183350, 37.7946664 -122.4163695, 37.7938050 -122.4096919, 37.7930318 -122.4092112, 37.7853492 -122.4055185, 37.7843469 -122.4045150, 37.7846454 -122.4039142, 37.7847539 -122.4037597, 37.7842316 -122.4041030, 37.7835261 -122.4025151, 37.7829902 -122.4025495, 37.7821627 -122.4008414, 37.7818193 -122.4010039, 37.7806363 -122.3999660, 37.7784384 -122.3966529, 37.7781331 -122.3964297, 37.7771698 -122.3952195, 37.7769255 -122.3950736, 37.7772943 -122.3949229, 37.7772672 -122.3946225, 37.7777963 -122.3939702, 37.7768533 -122.3945023, 37.7755323 -122.3971419, 37.7764838 -122.3985209, 37.7761242 -122.4022631, 37.7779104 -122.4000014, 37.7793078 -122.4020012, 37.7789483 -122.4020957, 37.7771439 -122.4044132, 37.7757191 -122.4064044, 37.7754274 -122.4065417, 37.7739280 -122.4084815, 37.7724490 -122.4103612, 37.7708168 -122.4125663, 37.7703632 -122.4123180, 37.7716591 -122.4138973, 37.7719508 -122.4138029, 37.7721001 -122.4141720, 37.7729006 -122.4154423, 37.7733145 -122.4156912, 37.7741303 -122.4169989, 37.7741981 -122.4173765, 37.7752700 -122.4184494, 37.7754464 -122.4183893, 37.7757381 -122.4191960, 37.7754939 -122.4189385, 37.7736011 -122.4186209, 37.7782225 -122.4194551, 37.7786688 -122.4197882, 37.7798628 -122.4200286, 37.7799849 -122.4198998, 37.7821995 -122.4204866, 37.7828778 -122.4204179, 37.7830062 -122.4205011, 37.7830848 -122.4206947, 37.7849708 -122.4210499, 37.7889845 -122.4026340, 37.7901947 -122.4014023, 37.7896588 -122.4037282, 37.7897402 -122.4049985, 37.7863305 -122.4167890, 37.7861298 -122.4184176, 37.7855735 -122.4228551, 37.7854718 -122.4252669, 37.7851733 -122.4278504, 37.7847663 -122.4281594, 37.7843186 -122.4315412, 37.7848206 -122.4309318, 37.7844196 -122.4328463, 37.7843178 -122.4330266, 37.7845281 -122.4332841, 37.7840872 -122.4333871, 37.7835504 -122.4375282, 37.7839167 -122.4376655, 37.7834826 -122.4392963, 37.7836386 -122.4394164, 37.7831231 -122.4396482, 37.7829535 -122.4395280, 37.7828042 -122.4423433, 37.7829874 -122.4431329, 37.7827913 -122.4458030, 37.7827599 -122.4459811, 37.7823299 -122.4459653, 37.7825329 -122.4467635, 37.7820784 -122.4472957, 37.7820558 -122.4476543, 37.7821802 -122.4476390, 37.7820053 -122.4498532, 37.7822868 -122.4499499, 37.7818988 -122.4530106, 37.7815563 -122.4534053, 37.7798354 -122.4931351, 37.7799168 -122.4934183, 37.7794962 -122.4932037, 37.7794826 -122.4933926, 37.7798191 -122.4936557, 37.7795573 -122.4935814, 37.7799507 -122.4932381, 37.7796794 -122.4963537, 37.7794148 -122.4967056, 37.7792724 -122.4998814, 37.7796794 -122.5028254, 37.7791570 -122.5025164, 37.7798610 -122.5049869, 37.7797389 -122.5052873, 37.7800577 -122.5076563, 37.7798949 -122.5074503, 37.7799221 -122.5099050, 37.7797796 -122.5096304, 37.7791216 -122.5094930, 37.7756617 -122.5003177, 37.7754785 -122.5007383, 37.7754989 -122.5035793, 37.7753293 -122.5039398, 37.7751597 -122.5057852, 37.7750986 -122.5059311, 37.7891981 -122.4152653, 37.7893134 -122.4150078, 37.7910097 -122.4156423, 37.7922029 -122.4157974, 37.7924132 -122.4141495, 37.7927048 -122.4118492, 37.7934544 -122.4078526, 37.7932474 -122.4075663, 37.7934120 -122.4063181, 37.7936086 -122.4047989, 37.7938053 -122.4031510, 37.8070654 -122.4103449, 37.8068551 -122.4106453, 37.8066448 -122.4120271, 37.8065364 -122.4122160, 37.8050377 -122.4118813, 37.8047668 -122.4116465, 37.8027867 -122.4114233, 37.8006774 -122.4105478, 37.8004101 -122.4099889, 37.8002162 -122.4105649, 37.8004332 -122.4105306, 37.7991379 -122.4088569, 37.7992532 -122.4090286, 37.7991922 -122.4087624, 37.7993480 -122.4086509, 37.7971439 -122.4085909, 37.7967709 -122.4082646, 37.7962894 -122.4082732, 37.7953670 -122.4082476, 37.7937799 -122.4077582, 37.8063855 -122.4232325, 37.8036726 -122.4232484, 37.8035574 -122.4233771, 37.8016788 -122.4230252, 37.8014415 -122.4228020, 37.7989229 -122.4224728, 37.7987940 -122.4226445, 37.7986719 -122.4225157, 37.7990178 -122.4223012, 37.7977224 -122.4220351, 37.7970239 -122.4220608, 37.7962210 -122.4217512, 37.7957734 -122.4218285, 37.7952240 -122.4215366, 37.7951087 -122.4214336, 37.7949934 -122.4212963, 37.7942338 -122.4212620, 37.7934741 -122.4211933, 37.7931961 -122.4213478, 37.7923618 -122.4206697, 37.7919217 -122.4210500, 37.7915343 -122.4211418, 37.7908357 -122.4206440, 37.7907543 -122.4207813, 37.7894452 -122.4205410, 37.7895062 -122.4203951, 37.7877969 -122.4203780, 37.7878987 -122.4202148, 37.7879258 -122.4200518, 37.7865827 -122.4199745, 37.7867116 -122.4198114, 37.7868068 -122.4194985, 37.7850972 -122.4196741, 37.8073496 -122.4079591, 37.8072682 -122.4075728, 37.8022905 -122.4029208, 37.8014157 -122.4027320, 37.7996185 -122.4023972, 37.7977263 -122.4020024, 37.7947114 -122.4015355, 37.7951558 -122.4014788, 37.7946810 -122.4013501, 37.7926335 -122.3958328, 37.7943350 -122.3945488, 37.7932952 -122.3934198, 37.7924067 -122.3943554, 37.7919997 -122.3948618, 37.7910162 -122.3961063, 37.7901209 -122.3969646, 37.7899445 -122.3975054, 37.7878245 -122.4001786, 37.7878381 -122.3998524, 37.7864031 -122.4017275, 37.7861318 -122.4023197, 37.7829558 -122.4066225, 37.7827998 -122.4067084, 37.7825217 -122.4068886, 37.7825488 -122.4065625, 37.7823996 -122.4070345, 37.7811378 -122.4083649, 37.7808122 -122.4090258, 37.7793876 -122.4105793, 37.7790281 -122.4113003, 37.7775322 -122.4128952, 37.7771862 -122.4129896, 37.7773219 -122.4134703, 37.7764060 -122.4143114, 37.7761075 -122.4150066, 37.7727900 -122.4191952, 37.7731428 -122.4182596, 37.7703747 -122.4197788, 37.7707614 -122.4203453, 37.7680204 -122.4200621, 37.7670705 -122.4197531, 37.7663920 -122.4198732, 37.7653010 -122.4195354, 37.7651503 -122.4193840, 37.7649400 -122.4199505, 37.7648246 -122.4197531, 37.7618662 -122.4197445, 37.7620562 -122.4192896, 37.7616287 -122.4194612, 37.7605363 -122.4191351, 37.7600545 -122.4193153, 37.7584056 -122.4191522, 37.7589009 -122.4189892, 37.7573130 -122.4188433, 37.7568991 -122.4189892, 37.7557658 -122.4186802, 37.7551890 -122.4188518, 37.7541440 -122.4185343, 37.7535875 -122.4186630, 37.7524610 -122.4183540, 37.7523117 -122.4181566, 37.7521692 -122.4186716, 37.7520334 -122.4185343, 37.7494003 -122.4180794, 37.7490202 -122.4178648, 37.7488845 -122.4182253, 37.7482533 -122.4186802, 37.7468756 -122.4191608, 37.7469774 -122.4188862, 37.7452468 -122.4202165, 37.7702405 -122.4456788, 37.7815477 -122.4557681, 37.7812324 -122.4564824, 37.7814265 -122.4586356, 37.7811374 -122.4585605, 37.7810466 -122.4587536, 37.7815096 -122.4590144, 37.7813234 -122.4609038, 37.7810177 -122.4612687, 37.7811823 -122.4641071, 37.7807956 -122.4641973, 37.7807845 -122.4643617, 37.7808764 -122.4644255, 37.7807541 -122.4671566, 37.7809983 -122.4678003, 37.7808931 -122.4704703, 37.7805778 -122.4708931, 37.7810594 -122.4721634, 37.7803132 -122.4724209, 37.7804958 -122.4725340, 37.7807715 -122.4726936, 37.7806388 -122.4759657, 37.7803132 -122.4764378, 37.7804922 -122.4791912, 37.7801791 -122.4795855, 37.7800298 -122.4827784, 37.7798738 -122.4845980, 37.7803080 -122.4848555, 37.7802469 -122.4845465, 37.7799349 -122.4849328, 37.7801045 -122.4877394, 37.7797924 -122.4881085, 37.7800027 -122.4899024, 37.7796974 -122.4902800, 37.7795957 -122.4919966, 37.7799552 -122.4923228, 37.7850328 -122.4240337, 37.7846530 -122.4214931, 37.7845512 -122.4213300, 37.7850919 -122.4181325, 37.7850396 -122.4177938, 37.7853788 -122.4158712, 37.7854466 -122.4144979, 37.7855823 -122.4142146, 37.7858650 -122.4121391, 37.7860368 -122.4097600, 37.7863556 -122.4081893, 37.7866812 -122.4056144, 37.7870169 -122.4179793, 37.7866235 -122.4210522, 37.7861695 -122.4245155, 37.7859114 -122.4264595, 37.7857487 -122.4278070, 37.7867524 -122.4285794, 37.7866167 -122.4285538, 37.7864675 -122.4297640, 37.7865965 -122.4297039, 37.7861826 -122.4330771, 37.7860469 -122.4330340, 37.7859385 -122.4331370, 37.7858910 -122.4333344, 37.7859723 -122.4346907, 37.7857893 -122.4350941, 37.7855452 -122.4380551, 37.7853687 -122.4384070, 37.7852332 -122.4395228, 37.7852534 -122.4393683, 37.7853485 -122.4396517, 37.7854773 -122.4398147, 37.7850228 -122.4399262, 37.7849142 -122.4430247, 37.7847380 -122.4433766, 37.7844192 -122.4458487, 37.7841884 -122.4463035, 37.7846498 -122.4461747, 37.7864066 -122.4400121, 37.7826267 -122.4209352, 37.7821927 -122.4192077, 37.7831831 -122.4189845, 37.7830542 -122.4189502, 37.7833323 -122.4177486, 37.7831356 -122.4174224, 37.7832848 -122.4172336, 37.7834951 -122.4156457, 37.7837190 -122.4139463, 37.7839225 -122.4123155, 37.7333439 -122.4341146, 37.7336018 -122.4339773, 37.7333778 -122.4337627, 37.7306904 -122.4313129, 37.7285513 -122.4313423, 37.7286056 -122.4315569, 37.7287414 -122.4310075, 37.7285928 -122.4310211, 37.7164063 -122.4407726, 37.7162841 -122.4412790, 37.7147304 -122.4426465, 37.7296110 -122.4331926, 37.7261179 -122.4335362, 37.7725629 -122.4271208, 37.7724886 -122.4271971, 37.7727613 -122.4255587, 37.7728240 -122.4254941, 37.7750096 -122.4193518, 37.7752830 -122.4191695, 37.7237397 -122.4527763, 37.8026615 -122.4058342, 37.7602500 -122.4381220, 37.8000731 -122.4427175, 37.8000773 -122.4429777, 37.8002766 -122.4410592, 37.8001123 -122.4413201, 37.7998569 -122.4443992, 37.7991938 -122.4517479, 37.7982490 -122.4474040, 37.7938960 -122.3962630, 37.7350442 -122.4750296, 37.7348192 -122.4745190, 37.7348959 -122.4718603, 37.7826712 -122.4715165, 37.7900779 -122.3973324, 37.8063946 -122.4755980, 37.8066743 -122.4754598, 37.8073122 -122.4750992, 37.8077451 -122.4747013, 37.7985742 -122.4470382, 37.8003316 -122.4468364, 37.8015284 -122.4299080, 37.7698835 -122.4483879, 37.7696842 -122.4487848, 37.7734369 -122.4495198, 37.7736095 -122.4491588, 37.7759209 -122.4462621, 37.7754086 -122.4499596, 37.7753704 -122.4494447, 37.7750352 -122.4531023, 37.7749600 -122.4525772, 37.7744927 -122.4582852, 37.7742595 -122.4580599, 37.7743273 -122.4587090, 37.7752263 -122.4651517, 37.7770368 -122.4639232, 37.8051033 -122.4322388, 37.8070241 -122.4071695, 37.7268052 -122.4756978, 37.7270758 -122.4757595, 37.7273213 -122.4751556, 37.7767196 -122.4262286, 37.7877082 -122.4066920, 37.7877749 -122.4435048, 37.7875969 -122.4435646, 37.7853936 -122.4093312, 37.7621911 -122.4352428, 37.7623119 -122.4350524, 37.7624107 -122.4359472, 37.7623663 -122.4355805, 37.7624148 -122.4374826, 37.7628952 -122.4350231, 37.7638864 -122.4332716, 37.7639457 -122.4336524, 37.7677871 -122.4291506, 37.7676579 -122.4291238, 37.7672427 -122.4291913, 37.7678942 -122.4291010, 37.7672911 -122.4288313, 37.7678572 -122.4287240, 37.7882810 -122.4034650, 37.7920316 -122.4158514, 37.7890998 -122.4166329, 37.7929197 -122.4160112, 37.7956283 -122.4167948, 37.7623781 -122.3973643, 37.7659491 -122.4499203, 37.7777491 -122.4166993, 37.7784932 -122.4145772, 37.7996086 -122.4360904, 37.7997022 -122.4362285, 37.7995695 -122.4391803, 37.8004874 -122.4475303, 37.7990605 -122.4430620, 37.7999719 -122.4359078, 37.7988819 -122.4428431, 37.8006033 -122.4309704, 37.7993017 -122.4395074, 37.7920664 -122.4230774, 37.7939521 -122.4233809, 37.7984888 -122.4242871, 37.7228751 -122.4492993, 37.7843417 -122.4083799, 37.7732193 -122.5094719, 37.7730526 -122.5100823, 37.7713376 -122.5094780, 37.7730623 -122.5099524, 37.7736359 -122.5098469, 37.7510820 -122.4365124, 37.7902660 -122.4225849, 37.7809200 -122.4207186, 37.7734715 -122.4716467, 37.7732222 -122.4720004, 37.7767410 -122.4722999, 37.7845288 -122.4729578, 37.7730544 -122.4719870, 37.7769513 -122.4723886, 37.7765902 -122.4721548, 37.7843461 -122.4727748, 37.7733124 -122.4719545, 37.7824738 -122.4731577, 37.7772126 -122.4718860, 37.7846952 -122.4724611, 37.7842309 -122.4726881, 37.7653711 -122.4768439, 37.7637253 -122.4773406, 37.7651265 -122.4774410, 37.7651763 -122.4771473, 37.7655195 -122.4775619, 37.7981369 -122.4040437, 37.7984038 -122.4019150, 37.7864698 -122.3980058, 37.7898678 -122.4007776, 37.7846489 -122.4070405, 37.7841266 -122.4084047, 37.7559775 -122.4764013, 37.7601283 -122.4767065, 37.7483732 -122.4761739, 37.7599874 -122.4769846, 37.7526487 -122.4761825, 37.7487336 -122.4758329, 37.7562359 -122.4767119, 37.7503718 -122.4760331, 37.7451990 -122.4756672, 37.7464646 -122.4760287, 37.7540793 -122.4765228, 37.7502718 -122.4762798, 37.7485093 -122.4758701, 37.7485547 -122.4762718, 37.7521106 -122.4764229, 37.7577989 -122.4768064, 37.7450879 -122.4759346, 37.7466328 -122.4757654, 37.7578031 -122.4765444, 37.7540943 -122.4762690, 37.7373068 -122.4751533, 37.7271849 -122.4746491, 37.7413368 -122.4756969, 37.7414759 -122.4754270, 37.7391897 -122.4752419, 37.7309279 -122.4747158, 37.7433289 -122.4758221, 37.7263033 -122.4752117, 37.7433139 -122.4754986, 37.7391607 -122.4755616, 37.7376007 -122.4754212, 37.7311504 -122.4746276, 37.7310304 -122.4745228, 37.7312595 -122.4750192, 37.7216548 -122.4754813, 37.7173134 -122.4730047, 37.7645489 -122.4431699, 37.7774736 -122.4588050, 37.7769033 -122.4586521, 37.7771471 -122.4583141, 37.7693989 -122.4293944, 37.7934341 -122.3952982, 37.7860637 -122.4568864, 37.7875574 -122.4467799, 37.7875773 -122.4469696, 37.7865288 -122.4532785, 37.7879454 -122.4407257, 37.7862633 -122.4553541, 37.7863128 -122.4536142, 37.7846320 -122.4644747, 37.7869618 -122.4499244, 37.7871212 -122.4472522, 37.7856633 -122.4588196, 37.7881142 -122.4408796, 37.7508325 -122.4439701, 37.7511656 -122.4385830, 37.7471736 -122.4441832, 37.7704174 -122.4452853, 37.7741217 -122.4463069, 37.7757135 -122.4466914, 37.7669041 -122.4479460, 37.7700367 -122.4454051, 37.7673187 -122.4464799, 37.7739565 -122.4465032, 37.7702021 -122.4449433, 37.7788494 -122.4469825, 37.7672489 -122.4466451, 37.7718076 -122.4457938, 37.7719176 -122.4456066, 37.7756581 -122.4463390, 37.7785087 -122.4472714, 37.7671329 -122.4465199, 37.7786914 -122.4474453, 37.7774219 -122.4469247, 37.7670424 -122.4462687, 37.7670868 -122.4479048, 37.7739120 -122.4458712, 37.7675684 -122.4448406, 37.7787954 -122.4472048, 37.7673422 -122.4448799, 37.7146481 -122.4719381, 37.7244830 -122.4024083, 37.7169648 -122.3891600, 37.8014600 -122.4315507, 37.8015624 -122.4313898, 37.7352745 -122.5045674, 37.7351796 -122.5004996, 37.7352755 -122.5026037, 37.7098977 -122.3930198, 37.7167597 -122.4413933, 37.7165622 -122.4408255, 37.7324082 -122.4059021, 37.7293737 -122.4150047, 37.7692570 -122.4291174, 37.7291475 -122.4193716, 37.7339634 -122.3907499, 37.7343056 -122.3907340, 37.7900667 -122.3942010, 37.7904673 -122.3932275, 37.7885774 -122.3909566, 37.7899382 -122.3923940, 37.7892706 -122.3935798, 37.7485022 -122.4589160, 37.7467379 -122.4583284, 37.7689281 -122.4356947, 37.7721358 -122.4307953, 37.7720055 -122.4303556, 37.7722134 -122.4305711, 37.7720894 -122.4301052, 37.7920140 -122.4815698, 37.7378001 -122.4514647, 37.7377651 -122.4517551, 37.7716459 -122.5036197, 37.7535905 -122.4954095, 37.7532925 -122.4955658, 37.7607702 -122.4960244, 37.7844955 -122.3952726, 37.7628573 -122.3908626, 37.7877434 -122.4216333, 37.7587055 -122.4631292, 37.7585995 -122.4640519, 37.7584595 -122.4639124, 37.7582899 -122.4638427, 37.7605076 -122.4406247, 8.5077722 125.9789017, 37.7240697 -122.4522341, 37.7259918 -122.4522582, 37.7240485 -122.4524859, 37.7254488 -122.4525023, 37.7208496 -122.4474323, 37.7211045 -122.4473020, 37.7345842 -122.4719275, 37.7675843 -122.4355739, 37.7730240 -122.4528432, 37.7732066 -122.4524004, 37.8056765 -122.4371753, 37.7791532 -122.5129411, 37.7653828 -122.4156514, 37.7655458 -122.4128777, 37.7758058 -122.4971516, 37.7770300 -122.4640939, 37.7771635 -122.4636541, 37.7773038 -122.4642640, 37.7811799 -122.4122670, 37.7901405 -122.3932844, 37.7897441 -122.3935526, 37.7900769 -122.3938342, 37.7900303 -122.3929249, 37.7898479 -122.3929436, 37.7900153 -122.3936678, 37.7902698 -122.3932093, 37.7897844 -122.3938369, 37.7896339 -122.3928472, 37.7895788 -122.3933326, 37.7902549 -122.3935874, 37.7896742 -122.3936921, 37.7899687 -122.3930777, 37.7898459 -122.3936974, 37.7901977 -122.3934346, 37.7895215 -122.3929732, 37.7645161 -122.4327886, 37.7774211 -122.4160269, 37.7646988 -122.4244233, 37.7517598 -122.4254173, 37.7518770 -122.4255434, 37.7518932 -122.4231645, 37.7520190 -122.4226923, 37.7520780 -122.4202115, 37.7521821 -122.4204097, 37.7846325 -122.4668493, 37.7848927 -122.4647404, 37.7847936 -122.4669432, 37.7848461 -122.4651260, 37.7850597 -122.4648309, 37.7687493 -122.4030378, 37.7661987 -122.4028340, 37.7698985 -122.4034375, 37.7664574 -122.4026543, 37.7674763 -122.4028943, 37.7685627 -122.4028608, 37.7672368 -122.4026933, 37.7697585 -122.4032336, 37.7933155 -122.4011185, 37.7940361 -122.4014297, 37.7948174 -122.4012457, 37.7937309 -122.4011453, 37.7941718 -122.4012902, 37.7953841 -122.3969718, 37.7945999 -122.4030014, 37.7951679 -122.3989406, 37.7946423 -122.4047127, 37.7943922 -122.4045947, 37.7945109 -122.3977014, 37.7957783 -122.4035808, 37.7932052 -122.4012151, 37.7941845 -122.4002602, 37.7409957 -122.4661951, 37.7412300 -122.4662434, 37.7420207 -122.4942784, 37.7423984 -122.4946065, 37.7481450 -122.4139340, 37.7485740 -122.4136090, 37.7483690 -122.4140740, 37.7470478 -122.4135113, 37.8015930 -122.4295070, 37.7693241 -122.4529187, 37.7691502 -122.4531333, 37.7779590 -122.4382840, 37.7486563 -122.4707231, 37.7779013 -122.4381208, 37.7488826 -122.4686623, 37.7490207 -122.4684000, 37.7764755 -122.4261860, 37.7624054 -122.4149348, 37.7985693 -122.4243300, 37.7452070 -122.4133817, 37.7988554 -122.4523659, 8.5070910 125.9786762, 37.7229652 -122.4525001, 37.7237354 -122.4562527, 37.7479625 -122.4589779, 37.7316164 -122.4533024, 37.7236887 -122.4560891, 37.7585862 -122.4660394, 37.7583654 -122.4701243, 37.7340666 -122.4990233, 37.7339718 -122.4968714, 37.7368504 -122.4537673, 37.7729932 -122.4769430, 37.7728380 -122.4764588, 37.7748147 -122.4548948, 37.7767640 -122.4757735, 37.7766315 -122.4760914, 37.7655815 -122.4152362, 37.7650043 -122.4193576, 37.7652037 -122.4161172, 37.7618958 -122.4151034, 37.7650786 -122.4153876, 37.7337604 -122.4934171, 37.7339214 -122.4896757, 37.7338345 -122.4917168, 37.7869084 -122.4565151, 37.7529699 -122.4341555, 37.7316291 -122.4513250, 37.7299803 -122.4512285, 37.7314275 -122.4532403, 37.8082789 -122.4141009, 37.7693980 -122.4521124, 37.7734254 -122.4663049, 37.8005296 -122.4475648, 37.7997086 -122.4362667, 37.8008427 -122.4276089, 37.7881551 -122.4090877, 37.7904499 -122.4055375, 37.7927644 -122.3927085, 37.8084123 -122.4100480, 37.8071167 -122.4156479, 37.8004525 -122.4105821, 37.7950657 -122.3999088, 37.7874729 -122.4078678, 37.7857365 -122.4096385, 37.7800009 -122.4167733, 37.7761697 -122.4215410, 37.7745791 -122.4341180, 37.7936998 -122.4213961, 37.7707344 -122.4660864, 37.8020728 -122.4125753, 37.7902111 -122.4076489, 37.7899758 -122.4071611, 21.4076261 -77.8795289, 37.7763563 -122.3958020, 37.7844521 -122.4711623, 37.7846142 -122.4708404, 37.7818385 -122.4923290, 37.7834186 -122.4924440, 37.7836006 -122.4901440, 37.7836650 -122.4884266, 37.7839554 -122.4820021, 37.7837954 -122.4853763, 37.7840959 -122.4787941, 37.7929233 -122.4178901, 37.7814696 -122.4933616, 37.7834210 -122.4925857, 37.7837098 -122.4905627, 37.7838163 -122.4880702, 37.7839687 -122.4848702, 37.7841139 -122.4816301, 37.7818213 -122.4924756, 37.7815116 -122.4935222, 37.7716631 -122.4016977, 37.7980264 -122.4502029 +P8 Kongresshaus +Boucherie Louis Blanc, El Ksour, L'Étoile de Djurjura, Lecaille, Boucherie de Saint-Ouen, Boucherie chevaline, Boucherie du marais, Gilles Vérot, Boucherie Frank Lecoeur, Boucherie Saint-Martin, Boucherie de Chaillot, Boucherie de l'Église, charcuterie, Boucherie Duret, À la Bonne Viande, Mr et Mme Duciel, J. Maillet, Maxi Viande, Boucherie Aamar Hadad, Boucherie de l'Avenir, Boucherie du Rendez-vous, Boucherie de la Tour, P. Dupont, Boucherie des 3 Portes, Boucherie de la Porte d'Orléans, Boucheries Bernard, Boucherie Pinon, Charcuterie de Montmartre, Boucherie moderne, boucherie Toualbi, Le roi du saucisson, Boucherie Taine, Boucherie Kacher, Boucherie Atlas, Boucherie du Square - Le Bourdais, boucherie hallal, Boucherie Ducoeur, Boucherie de la place, Boucherie Bourdin, Boucherie de l'Europe, Boucherie S. Lefeuvre, LEAUTEY Traiteur, Le Comptoir de Chalosse, Boucherie Menguellet, M. & N. Petitot, Boucherie Chayma, Boucherie Laurent Dumont, Boucherie Thiebot, unknown, Boucherie maison Desfresnes, Saing Heng, Boucherie Tadfousse, Boucherie Anezi, Boucherie Koskas, Boucherie de la Passerelle, Charcuterie Pellé, Artisan Boucher Claude Doguet, Charcuterie traiteur et cuisine asiatique, Boucherie Économique, Boucherie Jourdan, Boucherie Donné, Boucherie Atlas, Marguerite, Boucherie Ibrahim, Boucherie du Père Corentin, Boucherie du rond point, Boucherie Saint-Charles, Boucherie Riquet, Boucherie Petard, Chez Laurent, Charcuterie, Charcuterie Champerret 03, Boucherie Manu, Boucherie Marx Dormoy, Boucherie des Fins Gourmets, Charcuterie du Panthéon, Boucherie Pilote, Terroir d'Auvergne, Foie Gras Luxe, Boucherie Lulu, Boucherie Brancion, Éric Nivot, Boucherie de Charonne, Milo, Boucherie Jacky Lesourd, Mas, Produits Basques, Charcuterie du Parc Montsouris, Boucherie du Marché, Traiteur chez Catherine, Charcutier - Traiteur, Charcutier - Traiteur, A. Becquerel, Boucherie des gourmets, Boucherie du Limousin, Les Provinces, Roger Biliebault, Au Bouvier Normand, Christophe M, Boucherie Laurent Vincent, Boucherie J. Bellenfant, Boucherie Saint-Médard, B. Leduc, Boucherie Brancion, Boucherie Malitourne, Délices Viandes, Boucherie musulmane, Boucherie Chevy, Boucherie Brossard, Boucherie de l'Etoile, Boucherie Picard, Boucherie Leclerc Carboell, Boucherie Cambronne, Boucherie Durand, Andre Krief, Boucherie de la Place Monge, Boucherie de la Place Monge, Leban Jacques, Boucherie Pinel, Aux Viandes, Kosher Discount, L. Langlais, Boucherie Sodivillette, Boucherie Mezouari, Boucherie La Celloise, Boucherie bellevilloise, Provins, Boucherie des Buttes, Boucherie Caidi, Boucherie Hour Heng, Patrick Juignet, Sylvie & Olivier Donné, Kasap, La boucherie, SH, Boucherie Gouraya, Mon petit poulet, Pétard, Boucherie des écoles, Boucherie nouvelle des Pyrénées, Boucherie Limousine, Mr & Mme Fontaine, Rôtisserie Dufrenoy +38, 1008, 38, 1008 +7 +48.8327214 2.2760964, 48.8603916 2.3509546, 48.8968959 2.3816601, 48.8971573 2.3816889, 48.8944359 2.3921105, 48.8963293 2.3809167, 48.8964706 2.3824606, 48.8803216 2.3555510, 48.8804209 2.3551550, 48.8420645 2.3669152, 48.8700092 2.3544453, 48.8704779 2.3594577, 48.8708352 2.3536253, 48.8710508 2.3532908, 48.8711319 2.3608919, 48.8712985 2.3603301, 48.8719672 2.3578958, 48.8732120 2.3604731, 48.8771513 2.3577741, 48.8796187 2.3586844, 48.8796271 2.3569957, 48.8796716 2.3557085, 48.8796874 2.3567074, 48.8827872 2.3593240, 48.8840883 2.3598171 +Hermann Böning +Heidelberg Marriott Hotel, Schwimmverein Mannheim e.V., Nichtschwimmerbecken, Babybecken, Schwimmerbecken, Babybecken, Schwimmbad Siegfriedbrunnen, Hallenbad, Pension Berger, Heidelberg Suites, Hotel Die Hirschgasse Heidelberg, Crowne Plaza Heidelberg, Wellenbad, Außenbecken, Kinderschwimmbecken, Duttweiler Freibad, Hallen-Freibad, Grosses Schwimmerbecken (50m Bahnen) + Sprungbecken (1er, 3er), Nichtschwimmerbecken mit Edelstahl Wasserrutsche, AQWA Freibad, Nichtschwimmerbecken, Mümlingtal Bad Hetzbach, Hallenbad Kirchardt, Warmstrudelbecken, Hallenbad Badespaß St. Leon-Rot, Hallenbad Einhausen +1 +Pavilion Coffee House, Cafe Arista, Peter's Yard, Olly Bongo's, Caffe Nero, Cafe Marmalade, Starbucks, Snax Corner, WRVS, Aroma Coffee Bar, Starbucks, The Treehouse Cafe, Cafe Grande, Starbucks Coffee, Zulu Lounge, Starbucks, Rocket, Pavilion Cafe, Cafe Luca, No. 39 Coffee House, Traverse Theatre Bar/cafe, Cafe Domenico's, Relish, Rocksalt Café Deli, Cafe Truva, The Roamin' Nose, Shore Deli Co, Clock Cafe, Renroc, Mitchaell's Cafe, Caffè Nero, Coffee Mavi, Scoff, Alexander's, Lovecrumbs, Preacher's Patisserie, Starbucks, Toast, Baguette Express, Frisky, St. Giles' Cathedral Café, Patisserie Valerie, Caffe Espress, Starbucks Coffee, Glass & Thompson, Costa Coffee, Costa, Bluebird, Cafe Camino, Tiki Cafe, O'Briens, Starbucks, Costa Coffee, Dovecot Cafe, Firth of Froth, Redcoat cafe, City Cafe, Loudon's Cafe & Bakery, Black Medicine, Artisan Roast, Nardini, La Barantine, Project Coffee, Costa, Foodies, The Pastures, The Haven, The Gardener's Cottage, Caffe e Cucina, Milk Cafe, Pickle & Custard, Taste of Italy, Pep & Fodder, Baguette Express, Caffe Nero, Starbucks Coffee, Caffe Centro, Eteaket Tea Boutique, Piece Box, Two Thin Laddies, Clock Cafe & Grill, Le Petit Repas, Jacob, Starbucks, Caffe Nero, Fit Food Bistro, Bakehouse, Artisan Roast, Caffe Nero, Starbucks, Cafe Braw, Caffe Nero, Saint Giles Cafe, Wellington Coffee, Wee Coffee Bar, mint cafe, Caffe Nero, Costa, Castello Coffee Co, VinCaffe, Costa, Coffee House, Southern Cross Cafe, Royal Cafe, Circus Cafe, Cafe Jacques, Starbucks, Mimi's Bakehouse, Cafe Truva, Brass & Copper, Patisserie Valerie, Cafe Vivo, Clarinda's Tearoom, Looking Glass Books, Cafe on the Corner, The Forest, Asti, Nom De Plume, Costa, Cafe Class, The Purple Pig Cafe, Made In France, Embo, I love Cafe, Costa, Blackwoods, La Cerise, Let Me Eat, Serenity Cafe, Library Cafe, Crumbs Cafe, Casa Angelina, Street Bar, Happiee Daze, Peter's Yard, Empire Cafe, Cafe Florentine, Fountain Cafe, Affogato, Leaf & Bean, The Open Door, Clock Cafe, Cafe Blush, Cafe Brunchies, Henri's, Broughton Delicatessan, French Press, Printworks Coffee Company, Locanda, Deacon's House Cafe, Starbucks, Costa, Marie Delices, The Manna House, Snax Cafe, curious tea room, Machina Espresso, Costa, Le Cafe Bleu, The Chocolate Tree, Undercroft, Starbucks, Fair Trade Coffee Shop, Georgian Tearoom, The Square, Mimi's Bakehouse, Gran Caffe, The Hideout, Hula Juice Bar and Gallery, The Corner Coffee Bar, The Elephant House, Salt Cafe, Fortitude Coffee Merchants, FYUL, Cafe Cockburn, Toddle-In, Arts Cafe, Caffe Piccolo, Castlerock View Cafe, Cafe Keno, Just the Ticket, Forsyth's Tea Room, Globe Cafe, Zebra Coffee Co., Has Beans, Cuttea Sark, Caffeine Drip, Cafe Truva, The Genuine Article, Cafe Tartine, Cairngorm, Favorit, Cortado, The Little Inn, Castle Cafe, Glenha's Deli and Café, Parliament Cafe, Waka, Colletti & Co, Copper Bird, Bramble, Cafe Casablanca, GAIA Italian Delicatessen, Yellow Bench, Sandwich Express, Word of Mouth Bistro Cafe, Pera, Starbucks Coffee, Fazeli's Deli, Frederick Coffee House, Latitude Coffee, Valvona and Crolla, Fruitmarket Gallery, Scottish Storytelling Centre, Starbucks, Gorgie Farm Cafe +de:Heidelberg, de:Heidelberg +Sainsbury's Local, Holder Planning, Underground Solu'shn, Waterstones, Johnstons Cashmere, Thistle Do Nicely, News Corner, D.J. Alexander, Present, Royal Mile Sweets, Tollcross Newsagent, Leatherwork, Peter Trainer - Corporate Services Ltd, The 3 Stooges, Direct Dry Cleaning, Zone Eros, Smooch, Cabaret, West Port News, Lily West, Edinburgh Books, Herman Brown, Boardwise, McAlister Matheson Music Ltd, GT II Newsagent, Tesco Metro, Sainsbury's Local, Thomas Cook, The Scotsman, Flight Centre, Greggs, Sta Travel, SimplyFixIt, Coda Music, I Love Scotland, Best in Scotland, Bonkers, Ernest Jones, Twenty Twenty, Jordan Valley, Scotmid, Alpine Bikes, I.J. Mellis, Margiotta, Edinburgh Bicycle Co-operative, John Hall, Phase, Christopher Ness Jewellery, Sandy Jones, Tesco Express, Harvey Nichols, Louis Vuitton, Central Superstore, Egg, Real Foods, Something Fishy, lifestyle express, M&S Simply Food, Accessorize, BHS, Great Scot, Holland & Barrett, Fraser Hart, H&M, Kanoo Travel, M&S, Monsoon, O2, Phones 4u, Romanes & Paterson, Swatch, EE, The Works, Topshop / Topman, Vodafone, Dr. Martens, Whittard, 3 Store, Cotswold, Tiso, Next, Potter Shop, John Lewis, Sainsbury's Local, Margiotta, Edina Lock & Key Co. Ltd., Build-a-bear Workshop, Carphone Warehouse, Coral, Currys PCWorld, Flight Centre, Three, HMV, Holland & Barrett, Rae Macintosh, Morrisons Local, McGraths, Mountain Warehouse, New Look, O2, Oddbins, Optical Express, EE, Patissier Maxine, Sainsbury's Local, Scotbet, Specsavers Opticians, Thomson, Urban Outfitters, WHSmith, Edinburgh Woollen Mill, Allsaints, Ann Summers, Clarks, Carphone Warehouse, Footlocker, Gap, H&M, Hotter, Levis, Office, Russell Bromley, Size?, Superdrug, The Body Shop, The Perfume Shop, Lush Spa, Thomas Sabo, Ben's Cookies, USC, Zara, fat face, Cath Kidston, Charles Tyrwhitt, Jones, Kiehl's, Lakeland, TM Lewin, Trotters opticians, Co-operative Food, Westend Store, Crombie's of Edinburgh, Blackwells, Waterstone's, High & Mighty, Trailfinders, Day-Today, Paperchase, Links, Anne Fontaine, Burberry, Mulberry, G-Star, Nespresso, Reiss, JoJo Maman Bebe, Tommy Hilfiger, North America Travel Service, Kurt Geiger, Boss, Swarovski, Pandora, Pepperberry, Sole, Miss Selfridge, Virgin Media, JD, Crabtree & Evelyn, River Island, Swarovski, EE, International Newsagents, Argos, Patisserie Valerie, J & S Newsagents, Premier, Lifestyle Express, Historic Connections Jewellery Designers, Castle Fine Art, Pen Shop, Whistles, Jo Malone, White Stuff, Hamilton & Inches, Cambridge Satchel Company, Jack Wills, Sweaty Betty, Co-operative Food, Space.NK, Anta, schuh, The North Face, McColl's, Spirited Wines, Barbour, Radley, Alistir Wood Tait, Robert Anthony, Black & Lizars, Goodwins, Rogerson Footwear, ecco, Watch, John Whyte, Trespass, Laings, Jigsaw, Moss, Hobbs, LK Bennett, Anthropologie, Ede & Ravenscroft, Brora, Sassoon, Keir Street News, Fudge House, Laura Ashley, Left Luggage, Coast, Mint Velvet, Phase Eight, East, Brooks Brothers, McColl's, Church's, Bibi's Cake Boutique, Karen Millen, Molton Brown, The Kooples, Goodwins, Duncanson & Edwards, Ottimo Lighting, Harvey Jones, Fired Earth, Greggs, Nevisport, Farrow & Ball, Craighead & Woolf, Belle-Eve, Run And Become, City Barbers, James Ness, James Alexander, Ruffians, Shuropidy, Ian Smith Design, Vincent Bell, Jeffreys Interiors, Duo, Cheynes, Villeneuve Wines, Natural Selection Food, Life Story, Alex Hair Studio, Stringers, Vino, Broughton News, Narcissus, Coco Chocolate, Allan Hair, Curiouser, O2, Thorntons, AMERIkandy, Ice Store, H Samuel, Burton, Warren James, Bank, Next, Accessorize, Mountain Warehouse, JD, Perfume Shop, McColl's, Carphone Warehouse, Razor Sharp, Clintons, Garage, Claire's, Millie's Cookies, Card Factory, Tiger, Sports Direct, Game, Phones 4U, River Island, Books4Less, Superdrug, Ryman, Michael Kors, Barrhead Travel, EE, Wallis, Poundland, Dorothy Perkins, ManKind, Officers Club, Hawkin's Bazaar, Quiz, Vision Express, Ernest Jones, Shrub: Swap&ReuseHub, Sculleries, Gordon Fraser, Barnardo's, Sharon Robertson Hair, Green Grocer, Chic & Unique, Boombarbers, Stockbridge Store, debra, Just Dogs, Eden, Dick's, Sheila Fleet, Catalog Ltd, Gorgeous, Spanish Fine Foods, relove, Frank Lindsay, Vagabond, Reiss, Alpha Art, Vino, Paul James, New Town Desigh, Bethany, The Floatarium, Rose Street Barbers, The Players Lounge, Joules, Daniel Henderson, Hawick, Hawes & Curtis, reddog music, Oliver Bonas, Dunedin, Diva, Rox, Kitchens International, Elements, Treehouse, Salut, W Armstrong & Son, Hewats, Napiers, Richer Sounds, Specsavers, Schuh, Premier, bath store, La Novia, James Scott, Ian Dickson Travel, Vans, Beerhive, Penhaligon's, Duncan McLaren, Dickson Reid, Pride, Joseph Bonnar, Floritalia, Xile, Argento, Dune, Ottavio, Orvis, Scribbler, FOPP, STA Travel, amplifon, Johnsons, Poundstretcher, Moleta Munro, Tesco Express, Game, Stewart Travel, L'Occitaine, Serve, shakeaway, Artisan Bakehouse, The Brotique, Sainsbury's Local, Afrin Barber, Armchair Books, Peter Bell Books, Owl & Lion, Scottish Pictures, savers, Edinburgh Clothing Company, Flight Centre, Global News, House of Cashmere, Ladbrokes, Netversal, Pound Stretcher, Ripping Records, Rymans, Shoe Zone, The Scotland Shop, Yekta, Cash Generator, Forbidden Planet, Jacob, Mace, Bamboo Boutique, Knights Barber, Licks Cake Design, Ling Ling Massage, The Colour Room, Bacco Wine, Blue, Trigg, Zen Kichen, Edina Paint Co, Futur Property Auctions, Gamefish, Handbag Heaven, Sally, George Pirie Antiques, Urban, Lonsdale & Dutch, McAree Brother, McLean Forth Properties, Newtown Interiors, Prontaprint, The Wind Section, designer-lights.com, Arden Propert Management, Rachel Scott Bridal Couture, Ritz, Sturrock, Armstrong &Thomson, Antiques, Mr Purves, The Remedy Rooms, Ampersand, Linzi Crawford, Aitken Nairn, Dunpark, Carolyn Baxtre Dress and Hair Boutique, Coline Blaikie and Co, London Street Grocery, Absolute Nail and Beauty, And So To Bed, Dj Alexanders, Marwick Solicitor and Estates, The Ringmaker, Arthaus, Broughton Place Hair and Beauty, Dragonfly, Lamesley Briddal, Big Ideas, Drift, The Mutts Nuts, Bacchus Antiques, Black Box, Golden Hare Books, The Christmas Shop, The Isle of Skye Candle Company, Bill Baber Knitwear, Costume Ha Ha, Sublime Hair Design, Concrete wardrobe, JoeD Edi, Shamoon's, boombarbers, Analogue books, Avizandum, Deadhead Comics, Macdonadl Framing, Still Life, Transreal, Venus Flytrap Tattoo, Mama Said, Miss Katie Cupcake, Old Town Cotext, Swishprint, Whisky World, Broughton Property Management, Den of Iniquity, Cavanagh Antiques, Enchantment, Forever Scotland, Hair By Alfie, The Frayed Hem, Whiplash Trash, Cutie House, Eden, Kookie, Route One, The Scotsman, The Woollen Mill, Victor Scott Kilt Maker, Crest of Edinburgh, Ness, Mrs Stewarts Gift Shop, Games Workshop, Hi-Fi Corner, Picture Framer, Powerhouse Fitness, Ladbrokes, mC'm, Iconic, News Experss, Purple Glamour, G-TEC, Hawick, Mr Wood's Fossils, W. Armstrong & Son, Cutz Barbers, Mail Boxes Etc., Marie Curie Cancer Care, Sally, The Phone Box, Ballantrae Cashmere, Best Of Scottish, Edinburgh Cashmere Boutique, Fudge Kitchen, Heritage of Scotland, House of Cashmere, Johnstons of Elgin, Palenque, Real Scot Shop, Really Scottish, Royal Mile Jewellery, The Nutcracker Christmas Shop, Ali Willmore Hairdressing, Antiques, Carson Clark Gallery, Kilberry Bagpipes, Tete a Tete Foto, Cycle Scotland, Old Town Tattoo, Chic, Cyan, Harmony Complementary Therapies, Scottish Regimental Store, Studio XIII Gallery, Tangram, Barnets, Celtic Craft Centre, Cashmere And Kilt Centre, Geoffrey (Tailor) Kiltmaker, John Morrison Kiltmakers, Ladbrokes, The Bonnie Blue, The Tappit Hen, Wee Gift Shop, Whisky & Wine, Hector Russell, Whisky & Wine, Whiski Rooms, Corniche, Aquila, Lickety Splits, Saks, The Scottish Grocer, Cranachan & Crowdie, Eyden, Demijohn, Howies, I.J. Mellis Cheesemonger, Swish, The Whisky Shop, Clarksons, Museum CONTEXT, Walker Slater, Boyd Property, British Heart Foundation, Cheynes, Direct Lettings, Exclusive Barbers, Extravaganza, Fast Frame, Mr James, Save The Children, St Columba's Hospice, boombarbers, Nicolson, Prestige Scotland, Bonnie Scotland, Edinburgh Copy Shop, Kleen Cleaners, Lo Demore, Pinnies and Poppy Seeds, Psychomoda, Ragamuffin, Rene Walrus, Slanj, Solo, Thomas Marin Funeral Director, Tidalfire, Call Print, Edinburgh Arts and Picture Framers, Guaranteed Watch & Clock Repairs, Focus, The Royal Mile Gallery, Treasurer 1874, Tribal Body Art, Macraes of Edinburgh, Adult Conceptions, Varsity Music, Woods, Ballantrae Cashmere, Clans Of Scotland, Edinburgh Cashmere & Lambswool, Elgin Cashmere, House Of Cashmere, Kiltane, Ness, The Whisky Trail, Victoria Regalia, Camera Obscura, Cashmere and Scarf Company, Castle Gift Shop, Highland House, House Of Scotland, J & S - Newsagent, The Court Curio Shop, The Wee Scotland Shop, Cashmere House, Harris Tweed Hebrides, Heritage Of Scotland, Heritage Of Scotland, James Court City Refund, Jamie Scott’s Millshop, Royal Mile Factory Outlet, The Woolen Factory Outlet, Cheynes, Southside Books, Applejack, Arika, Boosh Boosh Boosh, Cowgate Newsagant, Crescent print LTD, KSI, Spectrum Graffiri shop, Antique Jewellers, House of Edinburgh, James Pringle Weavers, Marchbrae, Royal Mile Whiskies, The Cigar Box, House of Edinburgh, The Whisky Trail, Bridge Express, Greyfriars, The Golden Scissors, Archipelago Bakery, Berketex Bride, HIM, Stock Xchange, Crystal Eyecare, London1 Barber, Marshmallow Lady, Paper Tiger, Brian Drumm, AGA, Charlie Miller, Zen Beauty, Neal's Yard, Ryden Lettings, ALC, Alchemia Studio, City alteration, Howie R Nicholsby 21st Century Kilt, Jane Davidson, Kakao by K, Murray & Currie, Pam Jenkins, Samsung support centre, eye, ishi, The Salvation Army, Pink, CeX, Dance Wear, Robert Graham, The Wax Bar, Thou shalt Covet, Toni and Guy, Austin Reed, Black & Lizars, Cruise, Gant, Hackett, Hollister, Jaeger, Rohan, Slaters, The White Company, Viyella, French Connection, Creative cookware, Cute-icle nail spa, Forever Flawless, Ladbrokes, Planque, Pride of Scotland, Rockcandy Gallery, Tartan Gift and Souvenirs, Ticket Scotland, Viking Optical Centre, madefromscotland, Accesoriz, Maurdo Mcleans, Prid of Scotland, CC, Hector Russel Kiltmakers, Arran Aromatics, Cheynes, Hanover Health Foods, Temple, Holland & Barrett, William Hill, Camper, Prettygreen, Jenners, Bulthaup, Coulters, Hadden Rankin, Merchant Lettings, Simpson & Marwick, connoly, Kleen Care, Selenita, Sweet Service, WHSmith, Lothian Buses, Primark, Sainsbury's Local, Scott's In The Park, House of Fraser, Jenners, Tartan Weaving Mill, Debenhams, Frisky +9 +yes +yes +5 +Evangelische Friedenskirche, Peterskirche, Heiliggeistkirche, Jakobuskirche, Johanneskirche, Markushaus, Evangelisches Gemeindezentrum, Providenzkirche, Lutherkirche, Kreuzkirche, Christuskirche, Bergkirche, Emmaus-Gemeinde, Evangelische Studierendengemeinde (Karl-Jaspers-Haus), Die ARCHE - Evangelische Wichern-Gemeinde, Melanchthonkirche, Peterskirche +49.4126021 8.6894511 +no +Ristorante / Enoteca Akademie +55.9899019 -3.3868462 +yes +18.714666719476902 +yes and 35 +1 and 55.9436353 -3.2027965 +yes and 20 +tower, memorial, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, castle, ruins, ruins, wayside cross, wayside cross, wayside cross, ruins, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, castle, castle, wayside cross, castle, wayside cross, castle, castle, castle, castle, castle, lavoir, wayside cross, archaeological site, castle, castle, castle, castle, castle, castle, castle, yes, wayside cross, memorial, memorial, monument, memorial, monument, memorial, memorial, castle, wayside cross, yes, abbey, archaeological site, archaeological site, archaeological site, ruins, memorial, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, castle, castle, castle, wayside cross, castle, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, track, ruins, wayside cross, wayside cross, wayside cross, building, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, memorial, wayside shrine, wayside cross, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, memorial, stone, tomb, tomb, tomb, tomb, tomb, tomb, memorial, wayside shrine, wayside shrine, wayside shrine, castle, ruins, wayside shrine, memorial, archaeological site, manor, ruins, castle, yes, castle, wayside shrine, castle, castle, castle, castle, castle, castle, castle, castle, church, castle, wayside shrine, ruins, castle, ruins, castle, ruins, yes, manor, yes, manor, wayside shrine, ship, ruins, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, yes, castle, castle, monument, city gate, castle, castle, castle, yes, yes, memorial, memorial, memorial, memorial, building, wayside shrine, ruins, ruins, ruins, ruins, citywalls, archaeological site, tomb, tomb, tomb, tomb, tomb, citywalls, citywalls, memorial, tomb, memorial +49.4127706 8.7178630 +0 +italian +http://lemondehotel.co.uk/, http://www.placeshilton.com/edinburgh-city-centre, http://www.hot-el-apartments.com/edinburgh-waterfront-apartments/, http://www.jurysinns.com/hotels/edinburgh, http://www.apexhotels.co.uk/hotels/edinburgh-waterloo-place/?source=adwords mis1&gclid=CPyo uiJiqQCFVf-2AodJ02fJQ, http://www.travelodge.co.uk/search and book/hotel overview.php?hotel id=428, http://www.radissonblu.co.uk/hotel-edinburgh?facilitator=BIGMOUTHMEDIAREZIDOR&csref=g en sk brand 3 ediza, http://www.macdonaldhotels.co.uk/holyrood/, http://www.thistle.com/en/hotels/united kingdom/edinburgh/the king james/index.html, http://www.oceanservicedapts.com/index.php?gclid=COTK4ISGzKUCFYIe4QodBwiXjg, http://www.sandaigguesthouse.co.uk/, http://www.theglasshousehotel.co.uk/, http://www.oldwaverley.co.uk/, http://www.royalbritishhotel.com/, http://edinburgh.frasershospitality.com, http://niracaledonia.com/en/, http://www.hotelceilidh-donia.co.uk/, http://www.edinburghthistlehotel.com/, http://www.chester-residence.com/, http://www.thegrassmarkethotel.co.uk/, http://www.ibis.com/gb/hotel-2039-ibis-edinburgh-centre-royal-mile/index.shtml, http://www.thescotsmanhotel.co.uk/, http://www.thenorthumberlandhotel.co.uk, http://www.edinburghmintohotel.co.uk, http://www.kildonanlodgehotel.co.uk, http://www.cairnedinburgh.com/, http://www.rosehallhotel.co.uk, www.motel-one.com/en/hotels/edinburgh/edinburgh-princes, www.parliamenthouse-hotel.co.uk, www.royalmilemansions.com/, http://www.royalscotsclub.com/, http://www.travelodge.co.uk/hotels/353/Edinburgh-Haymarket-hotel, http://www.fountaincourtapartments.com/eq2.html, http://www.edinburghcityhotel.com/, http://www.townhousecompany.com/theedinburghresidence/, www.tunehotels.com/our-hotels/haymarket-edinburgh, http://www.rockvillehotel.co.uk, http://www.channings.co.uk, http://www.robertburnshotel.com, http://www.ibis.com, http://www.thegeorgehoteledinburgh.co.uk/ +8 +55.8969575 -3.3064520, 55.9073786 -3.2585910, 55.9053215 -3.1319819, 55.9086565 -3.2096817, 55.9103533 -3.3220087, 55.9013749 -3.2048039, 55.9035407 -3.2854196 +55 +1 +0 +55.9509478 -3.2066848 +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8169651 2.3597405, 48.8346251 2.2657680, 48.9012005 2.3862959, 48.8801709 2.3706981, 48.8315802 2.3158225, 48.8455659 2.3086884, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8501676 2.3621707, 48.8593908 2.3144172, 48.8299268 2.3465439, 48.8609726 2.2828299, 48.8563247 2.3152562, 48.8611046 2.3413657, 48.8475898 2.3031985, 48.8463297 2.2794951, 48.9003252 2.3734463, 48.8402491 2.3214518, 48.8804901 2.2865619, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8323948 2.3645635, 48.8645440 2.4097670, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.9007525 2.3748724, 48.8635857 2.2722338, 48.8536267 2.3664311, 48.8408422 2.3172666, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8387798 2.2536841, 48.8281523 2.2728394, 48.8168431 2.3604808, 48.8595020 2.3116861, 48.8407841 2.3912112, 48.8607706 2.3747898, 48.8787212 2.3698437, 48.8586303 2.3897622, 48.8579937 2.3897210, 48.8364028 2.2775659, 48.8558395 2.3835889, 48.8519985 2.2908966, 48.8656358 2.2892405, 48.8786755 2.3549221, 48.8797035 2.3026873, 48.8478375 2.3535433, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8936152 2.3152934, 48.8522407 2.2805336, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8711680 2.3244832, 48.8436106 2.3422313, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.8233460 2.3160166, 48.8338034 2.2847592, 48.8464060 2.3874300, 48.9007173 2.3745755, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8206480 2.3248645, 48.8936129 2.3029112 +Ambulances, Ambulances Regence, Cavendish Ambulances, Ambulances Lilas Valerie J.M.S., Malone ambulances, Ambulances Sainte Marthe, Dahlia ambulances +28 +245 +48.8316492 2.2999377, 48.8681927 2.3630580, 48.8748801 2.3637951, 48.8710381 2.3610667, 48.8757902 2.3561915, 48.8667885 2.3495539, 48.8648587 2.3516262, 48.8683427 2.3501494, 48.8659826 2.3540443, 48.8770173 2.3640220, 48.8757565 2.3604345, 48.8658957 2.3524620, 48.8630663 2.3527335, 48.8668874 2.3528247, 48.8256825 2.3151865, 48.8250160 2.3112381, 48.8279762 2.3057040, 48.8282568 2.3034035, 48.8636772 2.3510372, 48.8655288 2.3523437, 48.8669313 2.3543718, 48.8613680 2.3530523, 48.8626723 2.3594550, 48.8600851 2.3608850, 48.8650242 2.3602350, 48.8763445 2.3614950, 48.8725652 2.3640736, 48.8705409 2.3514636, 48.8707624 2.3546578, 48.8690350 2.3562439, 48.8252648 2.3158680, 48.8683870 2.3633979, 48.8262191 2.3053681, 48.8320219 2.3028314, 48.8255813 2.3041840, 48.8745891 2.3627432, 48.8754929 2.3615609, 48.8582183 2.3633569, 48.8227669 2.3087009, 48.8215858 2.3017380, 48.8769804 2.3588987, 48.8279457 2.3056505, 48.8668278 2.3572924 +49.3999791 8.6903579 +142 +Collège Privé Saint-Louis, École maternelle publique Souzy, École primaire, École maternelle Charles Baudelaire, École primaire, École maternelle & primaire, École maternelle Le Vau, École élémentaire B, École élémentaire A, Collège Pierre Mendès France, École maternelle Olivier de Serre, École primaire, École maternelle des Grands Champs, Collège Léon Gambetta, Collège Wolfgang Amadeus Mozart, Lycée Dorian, Collège Georges Courteline, École primaire Chaptal, École maternelle, École élémentaire, École Primaire, Collège César Franck, Centre Inter Entreprise de Formation en Alternance, École élémentaire Compans, École élémentaire Brunet, École maternelle Brunet, Lycée général et technologique Henri Bergson, École maternelle, BTS Henri Bergson, LPMA, École privée Saint-Laurent, Conservatoire de musique du 14e Arrondissement, École maternelle, École élémentaire Chernoviz, École élémentaire de Belleville, École maternelle, École Polyvalente Pajol, École 56 Avenue Félix Faure, École primaire, Lycée technique Louis Armand, École Nornal Catholique Blomet, Cours Diderot, Lisaa, EIPDCE, École élémentaire Charles Baudelaire, Lycée des métiers d'art, d'architecture intérieur et du design BOULLE, École maternelle Élisa Lemonnier, École primaire, École élémentaire privée L'Immaculée-Conception, Colegio Español Frederico Garcia Lorca, École Élémentaire Hyppolite Maindron, École maternelle Maurice Ripoche, École élémentaire Beaudricourt, College Lycée Stanislas, Actif Tutor, École élémentaire de l'Évangile, École maternelle Tchaïkovski, École élémentaire Maurice Genevoix, École élémentaire de Torcy, École maternelle de Torcy, École élémentaire Doudeauville, École maternelle Marx Dormoy, École polyvalente de la Goutte d'Or, École maternelle Goutte d'Or, École maternelle des Amiraux, École polyvalente des Poissonniers, Collège Chaptal, Collège Jules Ferry, Collège privé Saint-Michel de Picpus, Lycée général privé Saint-Michel de Picpus, Section d'enseignement général et professionnel adapté du Collège Vincent d'Indy, École maternelle Picpus, École primaire A, École primaire B, École primaire, École élémentaire de la Plaine, École primaire Publique Laugier, Wall Street Institute, Collège Henri Bergson, Collège Louise Michel, Collège privé Lucien de Hirsch, Section d'enseignement général et professionnel adapté du Collège Edouard Pailleron, École maternelle, École primaire, École primaire, École élémentaire privée Lucien de Hirsch, Cours Clapeyron, École maternelle Carrel, Lycée professionnel Armand Carrel, École élémentaire Armand Carrel, IPAG Paris, École maternelle et école élémentaire, Insititut d'Osthéopathie Dauphine, Collège Sonia Delaunay, École primaire Mathis, École primaire Tandou, Sciences Po, École maternelle Belliard, École élémentaire Belliard, Collège Hector Berlioz, École maternelle Paul Abadie, Polynotes, l'école de musiques, École primaire, École maternelle, École supérieure d'études cinématographiques, École maternelle Bruxelles, École Elémentaire Bruxelles, EFAP Paris, École primaire, École maternelle Colonel Moll, Lycée professionnel Suzanne Valadon, Lycée Camille Jenatzy, Cours Nation Bauchat (École secondaire privée), École maternelle, École maternelle, École maternelle, École élémentaire Picpus, École primaire, École primaire, École élémentaire privée Eugène Napoléon, École primaire Jean Jaurès, Lycée général et technologique privé Les Petits Champs, École élémentaire privée Montessori Kids, École primaire Privé École du Cerene, Collège privé Soeur Rosalie, Lycée général privé Louise de Marillac, École élémentaire privée Soeur Rosalie, Collège Victor Hugo, École primaire B, École Louise De Bettignie (Sainte-Ursule), École maternelle, École maternelle, Collège Georges Duhamel, École maternelle Antoine Chantin, École maternelle Volontaires, École maternelle, École élémentaire Télégraphe, École maternelle Auguste Perret, École élémentaire Auguste Perret, Section d'enseignement professionnel du Lycée polyvalent Elisa Lemonnier, École privée française d'Enseigement technique, Collège Lucie Faure, École maternelle publique Maraîchers, École primaire publique Pyrénées T, Collège privé Saint-Louis de Gonzague, École maternelle, Collège Paul Valéry, Lycée général Paul Valéry, Collège Buffon, Collège privé Saint-Jean de Passy, Lycée des métiers de l'optique FRESNEL, Lycée privé Saint-Jean de Passy, École élémentaire privée La Bruyère-Sainte-Isabelle, École élémentaire privée Saint-Jean de Passy, Living School, Section d'enseignement professionnel du Lycée polyvalent Louis Armand, École Active bilingue Jeannine Manuel (École élémentaire privée), Collège de Staël, Lycée général Buffon, École primaire, École maternelle Gutenberg, École maternelle Simone Weil, École maternelle Brochant, Inlingua, École Gaston Tenoudji, École élémentaire Lemercier, École élémentaire, École maternelle, École Privée Charles Peguy, École maternelle Simon Bolivar, École maternelle et primaire Henri Schili, Paris II - Panthéon Assas - Centre Vaugirard, École maternelle Eugénie Cotton, Écoles élémentaires Eugénie Cotton, École élémentaire, École maternelle Merlin, École Supérieure de Gestion, Collège Camille Sée, Lycée général Camille Sée, École maternelle, École primaire, Lycée professionnel privé Marcel Lamy, Sup de pub, Sup career, Campus langues, École Ganénou, Collège Honoré de Balzac, Lycée général et technologique Honoré de Balzac, Collège Maurice Ravel, Lycée général et technologique Maurice Ravel, Cours Tocqueville, École Marseille, Lycée Municipal d'Adultes Philippe Leclerc de Hauteclocque, École privée Bossuet, Collège Jacques Prévert, École maternelle, École primaire, Collège privé Notre-Dame de France, Cours privé Alfred de Musset, Lycée général privé Notre-Dame de France, École maternelle, École maternelle, École primaire, École élémentaire privée Notre-Dame de France, École maternelle Pierre Foncin, École maternelle Surmelin, École primaire Bretonneau, École polyvalente, École élémentaire Manin, Collège Victor Duruy, Collège d'Hulst (École secondaire privée ), Collège privé d'Hulst, Cours Montaigne (École secondaire privée), Cours Thérèse Chappuis (École secondaire privée), Lycée polyvalent Maximilien Vox-Art-Dessin, Lycée polyvalent privé Albert de Mun, Section d'enseignement professionnel du Lycée polyvalent Maximilien Vox, Section d'enseignement professionnel du Lycée polyvalent privé Saint-Nicolas, École maternelle, École maternelle, École maternelle, École primaire privée Saint-Jean Bosco, École primaire, Collège Guillaume Apollinaire, Collège Privé L'Alma, Collège privé La Rochefoucauld, Collège privé Sainte-Elisabeth, Cours Fidès (École secondaire privée), Institut Privé de l'Alma (École Secondaire Privée ), L'École (École secondaire privée), Lycée général et technologique Roger Verlomme, Lycée général privé La Rochefoucauld, Lycée général privé Sainte-Elisabeth, Section d'enseignement général et professionnel adapté du Collège Guillaume Apollinaire, Section d'enseignement professionnel du Lycée polyvalent privé Albert de Mun, École élementaire privée the lennen bilingual school, École Active Bilingue Jeannine Manuel (Collège privé), École Active Bilingue Jeannine Manuel (Lycée général privé), École du Champ de Mars (École secondaire privée), École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École primaire, École primaire, École primaire, École primaire, École primaire, École primaire, École Élémentaire Privée L'Alma, École élémentaire privée La Rochefoucauld, Lycée professionnel, École maternelle, École élémentaire, École polyvalente Bernard Buffet, École maternelle Planchat K, École élémentaire Planchat, École maternelle, École Maternelle Sarrette, École privée Saint-Jean-Baptiste de Belleville - Maternelle et Primaires, École maternelle, École Multimedia, École élementaire, École et Collège Saint-Georges (privé), École maternelle et primaire Saint-Georges (privé), Inalco, École Dentaire Française, École maternelle Prévoyance, École de Boulangerie et de Pâtisserie, École maternelle Delambre, École élémentaire Delambre, École privée catholique Sainte Marguerite, Collége privé Notre-Dame de Lourdes, École primaire privée Notre-Dame de Lourdes, École privée Sainte-Marthe, Living school, Lycee Beth Haya Mouchka, Conservatoire Municipal Paul Dukas, Cours Florent, École élémentaire du Clos, École élémentaire 14 Riblette, École élémentaire 16 Riblette, École primaire privée Montessori, Lycée technologique École Nationale Supérieure des Arts Appliqués, Crèche Crimée, Cours Spinoza, Collège privé La Bruyère-Sainte-Isabelle, École Élémentaire, Lycée polyvalent privé Catherine Labouré, École et Collège Modigliani, École maternelle, École Lacordaire, École primaire, Lycée général et technologique Chaptal, Collège Edouard Pailleron, Lycée général Paul Bert, École Maternelle Alain Fournier, Lycée François Villon, Collège et Lycée Stanislas, Lycée général et technologique Emile Dubois, École Wurtz, École Élémentaire, École, Collège Georges Braque, École Glacière, Lycée Lazare Ponticelli, École Primaire, École primaire publique Kuss, Lycée Professionnel Tolbiac, Collège Gabriel Fauré, École primaire, École primaire, École primaire, École maternelle, Lycée Autogéré de Paris, École primaire Saint-Jean, École maternelle, Collège Saint-Exupéry, Collège George Sand, Collège Marie Curie, Collège Parmentier, Lycée Lavoisier, École élémentaire de la Victoire, École Élémentaire, Lycée professionnel Pierre Lescot, École maternelle Eupatoria, Collège Henri Matisse, Collège La Grange aux Belles, École primaire d'application, École maternelle Domrémy, École Saint-Jacques, École maternelle privée Diwan, Collège Georges Rouault, École élémentaire Cheminets, Lycée technique Diderot, Lycée polyvalent Martin Nadaud, École maternelle Fagon, Collège Edmond Michelet, Lycée professionnel Hector Guimard, Ancien lycée Jean Quarré, Collège Guillaume Budé, École maternelle, Collège Flora Tristan, Lycée Professionnel Maria Deraismes, École élémentaire Curial, École élémentaire Ourq, Section d'enseignement professionnel du Lycée polyvalent D'Alembert, Collège Maurice Utrillo, Lycée Rabelais, Lycée professionnel agricole du Breuil-École privée d'Horticulture et Arboriculture, École primaire d'application, Lycée Jean de La Fontaine, École maternelle, Lycée général et technologique Arago, Lycée général Fénelon, École Primaire Convention, École Jongkind, École Élémentaire d'Argenteuil, École primaire, École maternelle, École Maternelle et Élémentaire Beauregard, École Maternelle et Primaire, École primaire Saint-Louis-en-l'Île, Lycée général et technologique Sophie Germain, École élémentaire Saint-Merri, École Primaire Moussy, Groupe Scolaire Archives, École Élémentaire Hospitalière Saint-Gervais, École élémentaire, Lycée général Louis Le Grand, Collège Charlemagne, École primaire Charlemagne, École Massillon, École élémentaire privée Massillon, École primaire, École des Francs-Bourgeois, École primaire, École Élémentaire et Collège Montgolfier, École Élémentaire, École maternelle Chapon, Annexe Lycée Professionnel Nicolas Flamel, École maternelle Paul Dubois, École Élémentaire, Lycée et Collège Henri IV, Lycée général Saint-Louis, Lycée polyvalent François Truffaut, École Primaire des Quatre Fils, École Maternelle Perle, Collège Victor Hugo - Annexe, Lycée général Victor Hugo, École primaire Turenne, École Maternelle et Élémentaire, École primaire, Collège Louise Michel, Lycée professionnel Marie Laurencin, École maternelle Legouvé, Collège Charles Péguy, Lycée Georges Brassens, Conservatoire municipal du XIXe Jacques Ibert, École Maternelle et Primaire Madame, École élémentaire Froment, Collège et Lycée Montaigne, École Alsacienne, École maternelle Tandou, Collège Georges Méliès, École Élémentaire, École Primaire Surène, Lycée général et technologique Racine, École Élémentaire, Collège Octave Gréard, Lycée Polyvalent Racine (Annexe), École maternelle, La Rochefoucauld, Lycée étranger privé Léonard de Vinci, Lycée Jules Ferry, École Élementaire Privée The Lennen Bilingual School, École maternelle Bretonneau, École primaire Pelleport, Collège Colette Besson, Collège Jean-Baptiste Clément, Centre des Formations Industrielles, École élémentaire Alquier-Debrousse, Lycée professionnel Charles de Gaulle, École primaire Pierre Girard, École maternelle Dautancourt, École élémentaire Truffaut, École polonaise, Lycée Auguste Renoir, École maternelle Léon Schwartzenberg, Lycée Technologique Bachelard, École des Récollets, Lycée technologique Jules Siegfried, École élémentaire, Écoles maternelle et élémentaire Miollis, Lycée des métiers de l'hôtellerie Belliard, Institut National des Jeunes Aveugles, Lycée professionnel Gustave Ferrié, École primaire Paul Bert, École élémentaire Richomme, École de Sage-Femme de Saint-Antoine, Cité scolaire Rodin, Lycée Jean Lurçat, École maternelle Martel, École Élémentaire Faubourg-Saint-Denis, École Sainte-Anne Sainte-Marie, École maternelle Château des Rentiers, École élémentaire avenue d'Ivry (école B), École maternelle de la Pointe d'Ivry, École Château des Rentiers, École Primaire, Lycée Professionnel Galilée, Collège Gustave Flaubert, École Blanche Jeanne d'Arc, Atelier beaux-arts Montparnasse, Saint-Lambert - Théodore deck, Lycée technique du Bâtiment, École primaire Prisse d'Avennes, École, École Élémentaire Porte Brancion, École Maternelle Porte Brancion, École Maternelle et Élémentaire, École Saint-Honoré d'Eylau, École Polyvalente, École Maternelle et Élémentaire, Institution Notre-Dame de Sainte-Croix, Lycée général Janson de Sailly, Collège Eugène Delacroix, Lycée et Collège Gerson, Lycée privé Saint-Louis de Gonzague, Lycée Professionnel Octave Feuillet, École Élémentaire, École Maternelle et Élémentaire, Collège et Lycée Molière, École maternelle Gros, École Élémentaire, Centre Interprofessionnel de Formation des Commerces de l'Alimentation, Lycée général et technologique privé Charles de Foucauld, École suédoise de Paris, Collège André Malraux, École maternelle et élémentaire, Cours Sainte-Ursule, École de Paris des Métiers de la Table, École maternelle publique Bayen, École élémentaire publique Berthier, École élémentaire Vigée-Lebrun, École Léman-Belleville, École publique élémentaire, Lycée Jean-Baptiste Say, École Elementaire Simon Bolivar, École Maternelle et Élémentaire du Parc des Princes, École Lamazou, École Universelle, Lycée professionnel René Cassin, École Maternelle et Élémentaire, Institut National des Jeunes Sourds, École primaire publique Frères Voisin, École Maternelle Privée Montessori Rive Gauche, Lycée général Victor Duruy, École primaire, Lycée professionnel Gustave Eiffel, Collège Paul Gauguin, Lycée Edgar Quinet, École maternelle Cour des Noues, Section d'enseignement professionnel du Lycée polyvalent Fresnel, École Maternelle et Élémentaire Aqueduc, École Élémentaire Eugène Varlin, École Maternelle et Élémentaire Louis Blanc, Collège Georges Brassens, École Élémentaire et Maternelle des Trois Bornes, École Maternale et Élémentaire Parmentier, École élémentaire République, École Sainte-Elisabeth, Cours Hattemer (École secondaire privée), École Robert Estienne, École Saint-Pierre de Chaillot, Collège Aimé Césaire, Collège Jean Moulin, École Élémentaire Severo, Lycée professionnel Erik Satie, Collège Alphonse Daudet, Collège François Couperin, Lycée général Charlemagne, Collège Pierre Alviset, École Élémentaire Gerty-Archimède, Collège Jean François Oeben, École élémentaire privée Saint-Michel de Picpus, Groupe Scolaire Fénelon Sainte-Marie, Lycée Condorcet, Collège Vincent d'Indy, Collège des Écossais, Lycée polyvalent Elisa Lemonnier, École Primaire La Providence - Collège et Lycée La Tour, École primaire, Lycée général et technologique Passy-Saint-Honoré, Collège privé Rocroy Saint-Vincent-de-Paul, École primaire privée Saint-Vincent-de-Paul, Collège-Lycée Lamartine, École élémentaire Dussoubs, Collège Thomas Mann, École Élémentaire Belzunce, École élémentaire, Section d'enseignement professionnel du Lycée polyvalent Lucas de Nehou, École du Mont Cenis, École publique Sainte-Isaure, Collège et Lycée Jacques Decour, Collège Bossuet - Notre-Dame, École élémentaire privée Bossuet-Notre-Dame, Lycée Bossuet - Notre-Dame, École primaire, École des Enfants du spectacle, École maternelle, École élémentaire, École primaire, École maternelle, Lycée polyvalent Jacques Monod, École maternelle, École maternelle, Groupe scolaire, École primaire, École primaire, Collège Raymond-Queneau, Annexe du collège Pierre-Alviset, École primaire, École maternelle, École élémentaire Ramponeau, École maternelle, École élémentaire Levert, Écoles maternelle et élémentaire, Lycée Théophile Gautier, École Notre-Dame-de-Sion, École Sainte-Marie, Annexe du lycée Maximilien-Vox, Lycée Carcado-Saisseval, Collège et Lycée Saint-Sulpice, Institut Sainte-Geneviève, École élémentaire, École maternelle, Lycée professionnel Corvisart-Arts Graphiques et des Arts du Livre, École élémentaire, École Maternelle et Élementaire Publique Vandrezanne, Groupe Scolaire Privé Saint-Vincent-de-Paul, École Élémentaire Ricaut, École Maternelle Ricaut, École nationale de chimie physique et biologie de Paris, Groupe scolaire Saint-Jean de Montmartre, École élémentaire Belleville, Collège Françoise Dolto, École maternelle, Collège Claude Chappe, École élémentaire, Lycée polyvalent privé Jules Richard Microtechniques, Collège Lycée Stéphane Mallarmé, École Primaire Pouchet, École polyvalente, Collège Boris Vian, École élémentaire Ferdinand Flocon, École élémentaire Hermel, Lycée Colbert, École élémentaire Gerbert, École primaire Primo Levi, École élémentaire Buffault, École polyvalente Simplon, Collège Jules Verne, École Élémentaire, École élémentaire, École maternelle Roquette, École maternelle Popincourt, Lycée professionnel Marcel Deprez, École élémentaire Étienne Dolet, École maternelle, Lycée Carnot, Lycée général et technologique Voltaire, École maternelle Amiraux, École maternelle et élémentaire Louis-Blanc, Lycée général Claude Monet, École élémentaire Cavé, École maternelle Saint-Luc, École René Binet, École et Collège Privés Saint-Germain de Charonne, École élémentaire des Pyrénées, École privée de la Providence, École polyvalente Champagne, École Vitruve, École élémentaire privée Fénelon-Sainte-Marie, École maternelle Richomme, Collège Georges Clemenceau, École primaire, Groupe scolaire Jeanne d'Arc, École Saint-Éloi, Collège privé Sainte-Clotilde, École Saint-Éloi, École primaire Blanche, École élémentaire, Collège Lycée Saint-Louis, Groupe scolaire Milton, École Notre-Dame de Lorette, École primaire Pommard, École élémentaire, École élémentaire, École élémentaire, Annexe du Lycée Fénelon, École maternelle Saint-André des Arts, Lycée polyvalent Lucas de Nehou, Lycée technologique privé La Plaine Monceau, École élémentaire privée Fénelon-Sainte-Marie, École élémentaire privée Sainte-Clotilde, Lycée privé catholique Fénelon-Sainte-Marie, Institut de Physique du Globe de Paris, École Suzanne Valadon, École primaire d'application Houdon, École Élémentaire Asseline, École Maternelle Relais Saussure, École élémentaire Jean-François Lépine, École maternelle Charlemagne, École élémentaire d'Oran, École élémentaire Pierre Budin, École Élémentaire Mairie de Paris, École Varet, Collège Jules Romains, École Maternelle Saint-Dominique, École maternelle Roquepine, École Monceau, ENSCI - Les Ateliers, École primaire Tournelles, École primaire, Collège Roland Dorgelès, École Élémentaire Bienfaisance, Institut de l'Assomption (École secondaire privée, École Primaire, École Primaire, École Active bilingue Lamartine, École Primaire, École primaire, École primaire d'application, École Pereire, École primaire, École élémentaire privée du Saint-Esprit, École primaire, Collège Guy Flavien, École maternelle, Cité Scolaire Henri Bergson, Lycée général et technologique jacquard, Lycée polyvalent l'Initiative, École élémentaire privée Saint-Marcel, Collège André Citroën, École maternelle Ballard, École primaire Balard, École primaire Gourdault, École Sainte-Jeanne d'Arc, École élémentaire de la Guadeloupe, École maternelle Paradis, Lycée polyvalent privé Saint-Nicolas, Conservatoire municipal du 13ème Maurice Ravel, École, École élémentaire Championnet, Collège Condorcet, Collège Bernard Palissy, École maternelle, Écoles Grégoire-Ferrandi CCIP (École secondaire professionnelle privée), École Joseph de Maistre, Collège Antoine Coysevox, Lycée Professionnel Étienne Dolet, Lycée Turgot, École élémentaire Philippe de Girard, École Polyvalente du Moulin de la Pointe, École primaire, École maternelle Alphonse Baudin, Collège Paul Verlaine, Ateliers des beaux-arts de la ville de Paris - Centre Sévigné, École Primaire Fagon, École maternelle Vincent Auriol, École primaire, École maternelle Sarrette A, École primaire privée Saint-Joseph, Groupe scolaire Saint-Jean-Gabriel, Collège privé Thérèse Chappuis, Lycée général privé Saint-Thomas d'Aquin, Lycée professionnel Beaugrenelle, École primaire, École élémentaire privée Fidès, École Maternelle des Longues Raies, École élémentaire Belleville H, Collège Moulin des Prés, École maternelle Bobillot, Collège et Lycée Hélène Boucher, École élémentaire publique Claude Bernard, École du Soleil, École privée catholique de la Trinité, École polyvalente Olivier Métra, École élémentaire Olivier Métra, École maternelle Général Lasalle, École élementaire Goubet, EREA Édith Piaf, École maternelle Retrait, École élémentaire Pyrénées Eb, École élémentaire Pyrénées, Collège et lycée privés Sainte-Louise, École primaire privée Sainte-Louise, École maternelle Darius Milhaud, École maternelle Manin, École élémentaire Manin Eb, École maternelle Pali-Kao, École élémentaire Tourtille, École maternelle Tourtille, École polyvalente Émile Duployé, École Saint-Paul, École maternelle 7e Art, École élémentaire Tourelles, École maternelle Championnet D, École élémentaire Championnet, École élémentaire Claude Vellefaux, École maternelle Gambetta, Lycée professionnel Théophile Gautier, École élémentaire Charenton, École élémentaire 11 Lesseps, École élémentaire 9 Lesseps, Collège Robert Doisneau, École maternelle Amandiers, École élémentaire Amandiers, Collège Alain Fournier, École maternelle Reuilly X, École élémentaire Reuilly A, École élémentaire Reuilly B, Rocroy Saint-Vincent-de-Paul, École primaire Cugnot, Collège Daniel Mayer, École Massillon, Lycée Bonaparte +2 +457 and 55.9340759 -3.0969078, 55.9520383 -3.1884477, 55.9479503 -3.1917952, 55.9530458 -3.2143273, 55.9478203 -3.2081650, 55.9387180 -3.2183133, 55.9400382 -3.2218792, 55.9448047 -3.2121910, 55.9455627 -3.2319955, 55.9536641 -3.2412247, 55.9393979 -3.2226079, 55.9339735 -3.2242241, 55.9485590 -3.1984660, 55.9233928 -3.2495641, 55.9075397 -3.2601949, 55.9201830 -3.2569089, 55.9235850 -3.2498898, 55.9234055 -3.2496291, 55.9290815 -3.1622154, 55.9287446 -3.1606910, 55.9258250 -3.2453116, 55.9195055 -3.2619115, 55.9282449 -3.2552516, 55.9383057 -3.2503683, 55.9415244 -3.1005066, 55.9487280 -3.1868685, 55.9681946 -3.2394189, 55.9750105 -3.1786523, 55.9727141 -3.1970524, 55.9603081 -3.2107045, 55.9625415 -3.2038104, 55.9623749 -3.2065598, 55.9736475 -3.1827669, 55.8985834 -3.2593352, 55.9675354 -3.1918069, 55.9688791 -3.1950694, 55.9725812 -3.1878462, 55.9764203 -3.1968704, 55.9757382 -3.1965357, 55.9709295 -3.2290845, 55.9606932 -3.2487359, 55.9536682 -3.1872515, 55.9565250 -3.2442832, 55.9559532 -3.2438904, 55.9689404 -3.1949893, 55.9628484 -3.2000133, 55.9696691 -3.2005994, 55.9679404 -3.1368303, 55.9245026 -3.2462826, 55.9245495 -3.2462640, 55.9232137 -3.2481025, 55.9192286 -3.1386957, 55.9197007 -3.1380226, 55.9137536 -3.1474495, 55.8994919 -3.2311487, 55.9272696 -3.2320395, 55.9515857 -3.2367549, 55.9430287 -3.2292834, 55.9149327 -3.2153760, 55.9126347 -3.2166853, 55.9715640 -3.2396371, 55.9253227 -3.2038994, 55.9409626 -3.2385035, 55.9409129 -3.2364482, 55.9614256 -3.2177089, 55.9563828 -3.1500518, 55.9567793 -3.1501599, 55.9640660 -3.1617691, 55.9711047 -3.1519140, 55.9700990 -3.1476178, 55.9699440 -3.1474063, 55.9794652 -3.1720778, 55.9791423 -3.1705469, 55.9776508 -3.1930509, 55.9271391 -3.1870984, 55.9312243 -3.1716568, 55.9217665 -3.1317079, 55.9196528 -3.1357238, 55.9452392 -3.0932492, 55.9763746 -3.1700963, 55.9727144 -3.2084850, 55.9731806 -3.2057712, 55.9458977 -3.2359608, 55.9476217 -3.2333004, 55.9421078 -3.2471068, 55.9787645 -3.1700105, 55.9447609 -3.2434052, 55.9498104 -3.2219947, 55.9579656 -3.2087925, 55.9368513 -3.2372248, 55.9659135 -3.1340343, 55.9672533 -3.1958655, 55.9519232 -3.2180493, 55.8897636 -3.1620915, 55.8898633 -3.1619972, 55.8928258 -3.1331472, 55.8929168 -3.1332421, 55.9148733 -3.2566448, 55.8984427 -3.2164902, 55.9357768 -3.2273343, 55.9346242 -3.2323823, 55.9412319 -3.2280853, 55.9501324 -3.2294339, 55.9494024 -3.2030628, 55.9592735 -3.2449240, 55.9637680 -3.2418855, 55.9520377 -3.1910636, 55.9614168 -3.1711787, 55.9367364 -3.1436706, 55.9352124 -3.1425254, 55.9253309 -3.2094851, 55.9509409 -3.2218060, 55.9516114 -3.2220274, 55.9443411 -3.1018614, 55.9475141 -3.2014767, 55.9523425 -3.2166808, 55.9329088 -3.2359326, 55.9316744 -3.2342577, 55.9314312 -3.2338362, 55.9197142 -3.2569063, 55.9119663 -3.2594709, 55.9073595 -3.2601185, 55.9305915 -3.2544337, 55.9501605 -3.1999414, 55.9607015 -3.1685085, 55.9662929 -3.1561624, 55.9547517 -3.1871067, 55.9580989 -3.1581939, 55.9663264 -3.1333091, 55.9409672 -3.2238982, 55.9274924 -3.2238424, 55.9355624 -3.2470808, 55.9719076 -3.2186281, 55.9336243 -3.2302100, 55.9388897 -3.2376855, 55.9389643 -3.2370370, 55.8957908 -3.2027523, 55.9340400 -3.0971256, 55.9027043 -3.2317298, 55.9048951 -3.2401465, 55.8983131 -3.2529409, 55.8982152 -3.2529759, 55.8967785 -3.2616868, 55.9505782 -3.1643798, 55.9364742 -3.1442593, 55.9364251 -3.1442736, 55.9516309 -3.1916638, 55.9182088 -3.2391527, 55.9460274 -3.2355654, 55.9415224 -3.1008781, 55.9414721 -3.1006880, 55.9485231 -3.1092860, 55.9185755 -3.2543017, 55.9381683 -3.1188638, 55.9245837 -3.2400577, 55.9529526 -3.1871425, 55.9256057 -3.2110033, 55.8988106 -3.1122530, 55.9676469 -3.1938769, 55.9383632 -3.2504469, 55.9722254 -3.2146091, 55.9724552 -3.2119012, 55.9612213 -3.2440717, 55.9308244 -3.1518837, 55.9297330 -3.1533386, 55.9316562 -3.1507078, 55.9318814 -3.1463309, 55.9277241 -3.1234427, 55.9720619 -3.2015799, 55.9466747 -3.0987444, 55.9575057 -3.1234489, 55.9197247 -3.1913944, 55.8957287 -3.2025538, 55.9258669 -3.2241737, 55.9413787 -3.0870066, 55.9449791 -3.0819470, 55.9455686 -3.0809735, 55.9638514 -3.1833342, 55.9377687 -3.0829248, 55.9563240 -3.1167910, 55.9553208 -3.1347976, 55.9523666 -3.1216397, 55.9121634 -3.2269803, 55.9386700 -3.2294127, 55.9408297 -3.2281101, 55.9314045 -3.2266827, 55.9082024 -3.1450986, 55.9719867 -3.1819929, 55.9729155 -3.1797103, 55.9781114 -3.2484720, 55.9776632 -3.1715933, 55.9129316 -3.2587696, 55.9481947 -3.1326994, 55.9496979 -3.1282542, 55.9505798 -3.1256483, 55.9315629 -3.0896016, 55.9316842 -3.0896474, 55.9524166 -3.1898362, 55.9356573 -3.0894033, 55.9357351 -3.0893738, 55.9357644 -3.0895096, 55.9517230 -3.1626551, 55.9195263 -3.1315612, 55.9204725 -3.1296564, 55.9271898 -3.2322404, 55.9752701 -3.1721362, 55.9369948 -3.1150582, 55.9498020 -3.1279042, 55.9335311 -3.2460168, 55.9655017 -3.1987663, 55.9414288 -3.2607445, 55.9492160 -3.2339763, 55.9492137 -3.2340282, 55.9401509 -3.1051771, 55.9185615 -3.2564239, 55.9182467 -3.2558059, 55.9255939 -3.2592967, 55.9621338 -3.2357562, 55.9550072 -3.1721666, 55.9554953 -3.1694437, 55.9557105 -3.1678403, 55.9198790 -3.2500668, 55.9491095 -3.1886633, 55.9483181 -3.1921400, 55.8985472 -3.2526169, 55.9347539 -3.0927986, 55.9264412 -3.2440999, 55.9545824 -3.1236067, 55.9502050 -3.1185776, 55.9503672 -3.1183641, 55.9502919 -3.1184525, 55.9514019 -3.1213054, 55.9515864 -3.1214448, 55.9384573 -3.2506124, 55.9781360 -3.2042135, 55.9384983 -3.1011659, 55.9383994 -3.1013350, 55.9360595 -3.0997430, 55.9360181 -3.0994647, 55.9352687 -3.0936685, 55.9604056 -3.1691746, 55.9385531 -3.2456125, 55.9203567 -3.2494068, 55.8936687 -3.1341152, 55.9523112 -3.2197346, 55.9062132 -3.1443033, 55.9410985 -3.2191428, 55.9800561 -3.1685204, 55.9186191 -3.2133230, 55.9197518 -3.1694474, 55.9195114 -3.1713437, 55.9189800 -3.1809284, 55.9200112 -3.1691248, 55.9201390 -3.1981185, 55.9191575 -3.2099986, 55.9203639 -3.1969606, 55.9265630 -3.1932263, 55.9188974 -3.1826016, 55.9189592 -3.1842633, 55.9202821 -3.1940116, 55.9398079 -3.2219646, 55.9784752 -3.2465952, 55.9789044 -3.2447848, 55.9679775 -3.1369332, 55.9717821 -3.1844100, 55.9717093 -3.1860244, 55.9717076 -3.1875125, 55.9681145 -3.1895803, 55.9442882 -3.1018500, 55.9399673 -3.2399943, 55.9394933 -3.2453748, 55.9559483 -3.1383567, 55.9572590 -3.1673552, 55.9516244 -3.1908922, 55.9514059 -3.1888093, 55.9670658 -3.1880808, 55.9081994 -3.2566236, 55.9151194 -3.2550825, 55.9122549 -3.2233845, 55.9364645 -3.0866076, 55.9622791 -3.2012126, 55.9421801 -3.2471095, 55.9354120 -3.1193612, 55.9393811 -3.2455628, 55.9383946 -3.2504900, 55.9382808 -3.2503344, 55.9407555 -3.1334453, 55.9536468 -3.1183721, 55.9521945 -3.1196977, 55.9523374 -3.1199969, 55.9389764 -3.2564267, 55.9028769 -3.1704602, 55.9403251 -3.1711216, 55.9559244 -3.1689031, 55.8943845 -3.1612267, 55.9457633 -3.1036022, 55.9471038 -3.1039051, 55.9501220 -3.1187317, 55.9512778 -3.1212874, 55.9506598 -3.1233359, 55.9372017 -3.1058578, 55.9553192 -3.1595172, 55.9650413 -3.2056001, 55.9639941 -3.2050491, 55.9640506 -3.2037879, 55.9644677 -3.2053237, 55.9768122 -3.1695301, 55.9460367 -3.0786225, 55.9641866 -3.2051688, 55.9698896 -3.2368187, 55.9414313 -3.0989766, 55.9784045 -3.1624012, 55.9436659 -3.0898885, 55.9714931 -3.1855918, 55.9644884 -3.2607345, 55.9528270 -3.1190826, 55.9496106 -3.2250631, 55.9360819 -3.0998763, 55.9116079 -3.2325243, 55.9093972 -3.2356124, 55.9024688 -3.2478207, 55.9793014 -3.1868073, 55.9301289 -3.1759929, 55.9523329 -3.1219744, 55.9523473 -3.1218286, 55.9237523 -3.2486106, 55.9667609 -3.1986965, 55.9612817 -3.2180808, 55.9394512 -3.2452451, 55.9431085 -3.2293645, 55.9430025 -3.2292568, 55.9409323 -3.2384857, 55.9430616 -3.2293168, 55.9395239 -3.2453984, 55.9393795 -3.2453481, 55.9394029 -3.2453236, 55.9819463 -3.1774723, 55.9172828 -3.2148269, 55.9733364 -3.1998767, 55.9082028 -3.1062073, 55.9064191 -3.2363051, 55.9089283 -3.2357059, 55.9026053 -3.2453772, 55.9226886 -3.1659385, 55.9289089 -3.2483770, 55.9596457 -3.1649121, 55.9518333 -3.2180730, 55.9404913 -3.2132648, 55.9412112 -3.2385524, 55.9395609 -3.2454472, 55.9433784 -3.2295944, 55.9203199 -3.1339112, 55.9434087 -3.2296013, 55.9384884 -3.2506410, 55.9410200 -3.2385372, 55.9395943 -3.2454714, 55.9412402 -3.2385785, 55.9399507 -3.2400017, 55.9409900 -3.2385210, 55.9410979 -3.2385587, 55.9330752 -3.2518749, 55.9044032 -3.1455205, 55.9195813 -3.1706208, 55.9352633 -3.0935375, 55.9347372 -3.0928218, 55.8956840 -3.2110087, 55.8948418 -3.2158308, 55.8946710 -3.2156575, 55.8949531 -3.2113167, 55.8939386 -3.2155602, 55.8951467 -3.2161873, 55.8948458 -3.2116936, 55.8951646 -3.2111469, 55.8906180 -3.2303624, 55.8924010 -3.2267274, 55.8934535 -3.2249209, 55.8904695 -3.2299954, 55.9171429 -3.1435645, 55.9174253 -3.1426070, 55.9501752 -3.1186403, 55.9502514 -3.1185072, 55.9025541 -3.1224669, 55.9734337 -3.1921970, 55.9481275 -3.2086529, 55.9486679 -3.2080093, 55.9413168 -3.2110594, 55.9562630 -3.2104579, 55.9514557 -3.1889452, 55.9527669 -3.1872478, 55.9639844 -3.2293081, 55.9431363 -3.2293927, 55.9431629 -3.2294198, 55.9432761 -3.2295356, 55.9432343 -3.2294925, 55.9431947 -3.2294521, 55.9563108 -3.2104273, 55.9198136 -3.1910370, 55.9198330 -3.1912323, 55.9519638 -3.1893881, 55.9513717 -3.1889027, 55.9444560 -3.2438143, 55.9276018 -3.1242863, 55.9401029 -3.2459404, 55.9400509 -3.2458788, 55.9556775 -3.1678207, 55.9549782 -3.1721413, 55.9554652 -3.1694213, 55.9550351 -3.1719805, 55.9563502 -3.1500510, 55.9552887 -3.1595205, 55.9550418 -3.1721874, 55.9231423 -3.1317251, 55.9263765 -3.1245977, 55.9320392 -3.1186143, 55.9230920 -3.1288480, 55.9264003 -3.1245253, 55.9238791 -3.1301288, 55.9249092 -3.1317835, 55.9574633 -3.1234478, 55.9450755 -3.0796893, 55.9442484 -3.1018255, 55.9699278 -3.1455846, 55.9013948 -3.1244584, 55.8988473 -3.1283552, 55.9231539 -3.2480582, 55.9164084 -3.1849654, 55.9177937 -3.1846644, 55.9240254 -3.2490676, 55.9370530 -3.1415506, 55.9517467 -3.2180959, 55.9446512 -3.0880046, 55.9021342 -3.2501766, 55.8943042 -3.1626305, 55.9038648 -3.1462199, 55.9121932 -3.1484610, 55.9074964 -3.1559715, 55.9071592 -3.1590133, 55.8988194 -3.1121826, 55.9025795 -3.1224539, 55.9469959 -3.1020369, 55.9408433 -3.2281719, 55.9195311 -3.2619429, 55.9258506 -3.2453444, 55.9386774 -3.2294745, 55.9316864 -3.2343155, 55.9236107 -3.2499213, 55.9513043 -3.1888663, 55.9506990 -3.1783969, 55.9513642 -3.1213511, 55.9436387 -3.0899418, 55.9776667 -3.1692630, 55.9773820 -3.1693259, 55.9772501 -3.1693673, 55.9766189 -3.1695907, 55.9777727 -3.1692450, 55.9774930 -3.1693036, 55.9256594 -3.2520596 +yes +318 +MM, TZ, CN, CO, UZ, QA, SE, ML, RS, CN, SN, SR, GE, PY, AU, BI, CH, PL, IL, CO, US, BE, LK, EC, KR, SY, IT, DZ, SG, BF, UA, ET, FI, ZA, AT, LU, BG, CA, DE, BR, CN, ES, RO, PK, VA, IR, EG, YE, OM, DK, SO, CY, GR, UY, BH, KW, AR, VE, MX, KE, BJ, LB, PE, LA, BJ, CI, AO, IE, CD, KM, DE, LV, CA, GH, HU, TD, LT, DJ, AL, PT, PK, MA, MY, NE, GN, MR, NG, UG, ID, KH, RU, IN, MG, AF, MC, SK, PH, SC, MA, TR, BE, AM, LR, PT, CM, DZ, VN, CL, ZA, SN, TN, NL, NO, GB, ML +451 +no +102 +yes +48.8600225 2.3936303 +エディンバラ +Fresque du Demi-Millénaire - Part 2, Le quartier des Eats-Unis (mur 18), Fresque Histoire des transports Lyonnais, Fresque "Lyon, la santé, la vie", Le mur du cinéma, Fresque de Gerland, La Fresque Lumineuse - La ville dans le futur, Fresque "Mur Démo", Espace Diego Rivera, Une cité industrielle (mur 4), Fresque de Shangaï, Abattoirs de la Mouche (mur 17), Annonce du Musée (mur 3), Années 1900 (mur 3), Cité idéale d'Egypte (mur 19), Cité idéale de Russie (mur 23), Cité idéale de l'Inde (mur 20), Cité idéale de la Côte d'Ivoire (mur 22), Cité idéale des USA (mur 24), Cité idéale du Mexique (mur 21), École (mur 10), École (mur 10), Etablissements sanitaires (mur 12), Habitations en communs, vue d'ensemble (mur 7), Habitations, vue rapprochée (mur 8), Hôpital de Grange-Blanche (mur 16), La gare, une perspective (mur 6), La tour d'horloges (mur 11), Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Le stade de Gerland (mur 15), Les hauts fourneaux (mur 14), Les services publics (mur 5), Tony Garnier Visionnaire (mur 2), Vue des usines (mur 13), Cité idéale de la Côte d'Ivoire (mur 22), Fresque "La renaissance", Fresque "Montluc - Jean Moulin", Fresque "Art et Industrie", Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, La Fresque du Demi-Millenaire - Part 1, Fresque idéale de Québec, Fresque "Oullins Centre-ville", Fresque "Du Pont d'Oullins", Mur peint : L’auberge savoyarde, La Fresque du Foyer, La Fresque Art Déco, Fresque RTE Lyon La Mouche, Fresque, Fresque "Chez Jeanne", Fresque "Allée Arborée", Fresque "La Forge", Fresque "Les Diligences", Fresque "Les Vieux Métiers 1", Fresque "Les Vieux Métiers 2", La Fresque du Centenaire 1912-2012, La Fresque du Centenaire 1912-2012, Fresque "Gerland Biotechnologies", Fresque des Vourlois", Fresque du Gymnase, Fresque des Roses - St Priest, Fresque des Roses - Lyon, Av Santy, Fresque Agir pour la biodiversité, Fresque aerosol, Fresque "Les basiliques de Saint-Just", Fresque Le marathon de l'impossible, Fresque "La cité KAPS" and 45.7242776 4.8539418, 45.7316295 4.8668787, 45.7484993 4.8788479, 45.7498654 4.8759864, 45.7549115 4.8434004, 45.7245886 4.8263897, 45.7433556 4.8405258, 45.7196057 4.8008161, 45.7318565 4.8358705, 45.7326668 4.8630359, 45.7375747 4.8616255, 45.7321697 4.8664580, 45.7336465 4.8632348, 45.7328203 4.8629032, 45.7320947 4.8674966, 45.7330177 4.8657973, 45.7324535 4.8672057, 45.7331360 4.8666865, 45.7335600 4.8653728, 45.7325955 4.8671070, 45.7319545 4.8635870, 45.7321249 4.8634546, 45.7316965 4.8647521, 45.7323801 4.8642213, 45.7322374 4.8643323, 45.7323075 4.8663529, 45.7329498 4.8637779, 45.7314132 4.8640073, 45.7385048 4.8613236, 45.7387649 4.8607244, 45.7389336 4.8609359, 45.7328475 4.8659300, 45.7310051 4.8652929, 45.7331061 4.8636557, 45.7333891 4.8624614, 45.7315452 4.8648710, 45.7332067 4.8666311, 45.7165371 4.8098566, 45.7493533 4.8609118, 45.6634167 4.8424264, 45.7209120 4.8541671, 45.7235048 4.8539594, 45.7222175 4.8540626, 45.7227953 4.8540163, 45.7249477 4.8538288, 45.7342924 4.8626980, 45.7150814 4.8078204, 45.7175164 4.8098900, 45.7450213 4.8660796, 45.7502318 4.8416473, 45.7513725 4.8390037, 45.7205996 4.8439283, 45.5828000 4.6317350, 45.7083270 4.8272787, 45.7318628 4.9995743, 45.7316843 5.0009960, 45.7317208 4.9997166, 45.7322290 4.9975134, 45.7340142 4.9964253, 45.7337846 4.9972670, 45.7449245 4.8424444, 45.7452687 4.8413678, 45.7252956 4.8413865, 45.6584498 4.7736478, 45.7081288 4.7481631, 45.6946293 4.9406443, 45.7296178 4.8752517, 45.7463509 4.8459884, 45.7297744 4.8742560, 45.7551709 4.8469660, 45.7434934 4.8478974, 45.7559238 4.8169452, 45.7447945 4.9069783, 45.7179757 4.8174971, 45.7180962 4.8187223 +post office, post box, kindergarten, park, parking, school, telephone, pub, place of worship, bus station, recycling, library, bank, fuel, restaurant, bicycle parking, toilets, atm, cinema, doctors, pharmacy, cafe, police, fast food, bar, nightclub, car rental, Forestry Commission staff bicycle shed, leisure, community hall, college, medical centre, dentist, third sector offices, community project, public building, arts centre, car sharing, bureau de change, theatre, biergarten, fire station, masonic lodge, bench, bbq, parking entrance, university, taxi, marketplace, grit bin, stripclub, social facility, conference centre, dressmaker, gambling, consulate, brothel, veterinary, clock, waste basket, fountain, shop, vending machine, shelter, posts, dance hall, picnic bench, car wash, Austrian cosulate, swimming pool, Botanic House Hotel, grave yard, motorcycle parking, chiropodist, juice bar, waste transfer station, chiropractor, bookmakers, waste disposal, fitness center, drinking water, photo booth, clinic, vacuum, jet wash, Rhythms of Resistance practice, casino, ice cream, tourism, embassy, charging station, courthouse, community centre, register office, bingo, hairdressing, Renaissance Restoration, patisserie, printer, Haircutting, finanacial advisor, Hairdressing, Nailcare, physiotherapy, Sauna, studio, yes, spa, Yoga, food court, Cabaret, funeral, academi, hotel, financial advice, internet cafe, sauna, language centre, prison, disused, hospital, bandstand, health centre, nursing home, ammusements, townhall, amusements, crematorium, mortuary, pontoon, parking lane, RBGE Lecture theater, post depot, harbour master, kiosk, Music Shop, social centre, reception area, scout hall, childcare, animal shelter, animal boarding, common, nursery, care home +49.4118566 8.7016009 +Standing Stone, Caiy Stane, Standing Stone, Balm Well, Cup and Ring Marked Rocks, Stone, Hanging Stanes, The Buckstane, Cat Stane, Bonnington Mill Waterwheel (remains), Physic Well, Fort, Bonnington Weir, Hatton House +55.9387357 -3.3996538, 55.9380963 -3.4051984, 55.9385221 -3.4040472, 55.9386848 -3.4052874, 55.9333966 -3.3543268, 55.9024677 -3.2131994, 55.9579939 -3.3233291, 55.9028966 -3.1642422, 55.9122291 -3.3948137, 55.8798835 -3.3439577, 55.9226836 -3.2094162, 55.9101467 -3.2093552, 55.9546676 -3.3637002, 55.9222410 -3.1492085, 55.9710480 -3.1879850, 55.9387885 -3.2890803, 55.8869268 -3.2813599, 55.9691744 -3.1898383, 55.9045439 -3.3952157, 55.9729762 -3.1721306 +5 +yes +52 +french, indian, vegetarian, mexican, pasta, chinese, thai, regional, vietnamese, japanese, couscous, grill, belgian, italian, arab, international, Vietnamese, pizza, New-french, libre, Corse, american, sichuan, Lanzhou, lebanese, peruvian, sushi-yakitori, turkish, crepe, Lebanon, sushi, asian, kebab, Sushi-yakitori, shandong, traditional, Sardaigne, steak house, Persan (Iranien), Vietnamien, mediteranean, japonais, seafood, korean, latin american, Lao, spanish, burger, corsican, moroccan, algerian, Bistrot gastronome, sandwich, gastronomic, jewish, corean, bagel, polish, argentinian, belgium, tibetan, marocan, vietnamien-cambodgien, tapas, see food, vietnam, Lebanese, brunch, senegalese, kosher, Hangzhou, smart traditional, fish, marocain, brasilian, berber, greek, ivoirian, libanese, polonese, african, chineses (Teochew) - 中国潮州, Océan indien, latino, fondue, Cambodgien, basque, crêpe, local, maltese, chinese - Fondue pékinoise, ethiopian, Sud-Ouest France, creole, mediterranean, brasserie, crepes, coffee shop, coréen, breton, magreb, malaysian, indonesian, thai fruit juces, bistro, brazilian, cocktails, crèpes, morrocan, Indian, iranian, traiteur japonais, Coréen, Grec, ramen, brazil, American, Lyonnaise, Amérique du Sud - Argentine, Japanese, pâtisserie sans gluten, mongol, Cap Vert, portuguese, ukrainian, meat, française, pizza bio, lao, cambodgian, mauritian, Kebab, salad, caribbean, Oriental Couscous, oriental, Jiangxi, international (Francaise, sud americaine), berbere, oriental couscous, colombian, marocaine, classique, paella, Française, african caribbean, new york pizza, north african, indian pakistanese, Chinese, Sichuan, Burger, Armenian, ouïghour, irak, cuisine nissarde, salade, bio, cake, gluten free, Thai, seasonal, Kazakh, Russe, Italiano, huoguo, bento, maroc, crèpe, mediterean, mediterrneen, russian, Sandwich, organic, régional, vegan, salon de thé, restaurant +49.3826654 8.6703241, 49.3795039 8.6788777, 49.3994731 8.6498961, 49.3795039 8.6788791, 49.3795039 8.6788799, 49.3795039 8.6788784, 49.3795039 8.6788807 +no +yes +yes ++496221166707 +48.8560795 2.3115715, 48.8660977 2.3554138, 48.8957518 2.3879761, 48.8957352 2.3886935, 48.8660456 2.3145051, 48.8414574 2.3172246, 48.8677629 2.2935696, 48.8625016 2.3453019, 48.8705899 2.3500828, 48.8618163 2.2873421, 48.8404563 2.3198526, 48.8607161 2.3525007, 48.8960350 2.3884154, 48.8609823 2.2977973, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8661515 2.3122667, 48.8505164 2.3621847, 48.8599188 2.3265259, 48.8794667 2.3125380, 48.8553042 2.3158566, 48.8755169 2.3105465, 48.8373190 2.3319319, 48.8432079 2.3186583, 48.8421181 2.3562419, 48.8344502 2.3520875, 48.8657061 2.2966614, 48.8576820 2.3627148, 48.8614768 2.3351679 +55.9440035 -3.1620073 +48.8547859 2.3941295 +49.4125622 8.6856608, 49.4028079 8.6877203, 49.4132392 8.6920033, 49.4101353 8.6927154, 49.4171332 8.6926969, 49.4131244 8.6897970, 49.4122418 8.6816335 +12 +Greyfriars Bobby Statue +no +17 +yes +yes +49.4176558 8.6587085, 49.4146001 8.7738410, 49.4162757 8.6922037, 49.4306151 8.6467040, 49.4055996 8.6889278, 49.3773672 8.6667238, 49.3834643 8.6624283, 49.3974698 8.6477849, 49.4121728 8.7080504, 49.4123763 8.7095125, 49.4089611 8.6957225, 49.4083867 8.6927384, 49.4115665 8.7029371, 49.4091521 8.6979357, 49.4178759 8.6766696, 49.3995142 8.6850002, 49.4070439 8.6949350, 49.3742086 8.7031163, 49.4061045 8.6919006, 49.4087049 8.7054045, 49.4136428 8.6936066, 49.4079188 8.6896894, 49.4071802 8.6893369, 49.4278664 8.6462916, 49.4269602 8.6468617, 49.3896229 8.6900545, 49.3790377 8.6919226, 49.3810024 8.6888615, 49.4118680 8.7106616, 49.4085554 8.6900358, 49.3772275 8.6672364, 49.3799233 8.6752091, 49.4254663 8.6892002, 49.4317284 8.6827286, 49.4235631 8.6886029, 49.3887612 8.6898215, 49.4143279 8.6877116 +Viernheim, Schifferstadt, Walldorf, Hemsbach, Speyer, Bad Schönborn, Philippsburg, Eppelheim, Leimen, Weinheim, Waghäusel, Sandhausen, Neuhofen, Edingen-Neckarhausen, Dossenheim, Hockenheim, Schriesheim, Schwetzingen, Ladenburg +15 +52.5069115 13.3228318, 52.5062394 13.3173230, 52.5087263 13.3203546, 52.5063184 13.2846256, 52.5701303 13.3098188, 52.5044686 13.3827465, 52.5152342 13.3889227, 52.5235613 13.4109816, 52.5827216 13.2901148, 52.5655612 13.3209279, 52.5308522 13.4125641, 52.5399180 13.4177150, 52.4900267 13.3607275, 52.4874148 13.3493595, 52.5028483 13.3315231, 52.4878837 13.2628406, 52.5082357 13.2578049, 52.4877481 13.3204876, 52.5193671 13.4276134, 52.5275249 13.3992376, 52.4969768 13.3128491, 52.5194671 13.3556992, 52.4304694 13.2304081, 52.4881781 13.3703210, 52.4911781 13.3684657, 52.4339812 13.3592913, 52.4751067 13.3234171, 52.5083325 13.4531621, 52.4900350 13.3827424, 52.4897481 13.3832833, 52.4747650 13.4469205, 52.6350882 13.4995196, 52.5095363 13.4580560, 52.5160850 13.4564770, 52.5179670 13.4676240, 52.5153376 13.4718582, 52.4982357 13.3189482, 52.4919428 13.4211845, 52.5073540 13.3204878, 52.5076500 13.3180837, 52.5552143 13.4388386, 52.5924426 13.3263936, 52.4948730 13.4155705, 52.5210713 13.3573605, 52.4814692 13.3483659, 52.6331209 13.2886358, 52.5881097 13.2855979, 52.5442796 13.2040241, 52.5213052 13.3852660, 52.5201055 13.4499899, 52.5147963 13.3811044, 52.5298163 13.4448184, 52.4133800 13.3624524, 52.5096866 13.1801984, 52.5335195 13.4036376, 52.4885454 13.4073498, 52.4821596 13.3825900, 52.5210049 13.3850412, 52.5101889 13.3763490, 52.5228146 13.3824135, 52.5250993 13.3871462, 52.4391233 13.3440738, 52.5052560 13.3197902, 52.4576996 13.2907097, 52.4726336 13.3216954, 52.4246828 13.3307770, 52.5192482 13.2984365, 52.5140665 13.2973768, 52.4999586 13.4755158, 52.4559667 13.5510826, 52.4270030 13.2180894, 52.5231246 13.3595877, 52.5113636 13.3078414, 52.5452910 13.4214510, 52.5320137 13.3964652, 52.5339232 13.4020087, 52.5018111 13.3556523, 52.5931545 13.3819714, 52.5000304 13.3041273, 52.4508283 13.1466473, 52.4363046 13.7171060, 52.5351839 13.2710239, 52.4597976 13.3220647, 52.4992112 13.3016415, 52.4585397 13.3166172, 52.4994281 13.4454712, 52.6202937 13.3137992, 52.5419282 13.4204549, 52.5439069 13.4176124, 52.4874902 13.3545389, 52.4873504 13.3541267, 52.4438246 13.2933907, 52.5263442 13.2977323, 52.5122149 13.4954972, 52.4467398 13.3150321, 52.5266828 13.3968336, 52.5236397 13.4027624, 52.4994296 13.3068697, 52.5190043 13.4092910, 52.5190513 13.4295589, 52.5018008 13.3008448, 52.5328024 13.4245980, 52.5365752 13.2046599, 52.4975767 13.2918904, 52.4988369 13.2994295, 52.4439488 13.4323140, 52.5217320 13.3250972, 52.5531442 13.4140118, 52.5529712 13.4139794, 52.5378953 13.2030051, 52.4531819 13.4522533, 52.4407417 13.4592066, 52.4238137 13.4854959, 52.5298871 13.4713873, 52.4405190 13.3878949, 52.4553115 13.3747762, 52.4210262 13.2976603, 52.5073215 13.3138562, 52.4863289 13.4651538, 52.4300110 13.2238749, 52.4556040 13.3173913, 52.4853846 13.3477060, 52.5152881 13.4683393, 52.4820229 13.3169195, 52.4864004 13.3189983, 52.4861530 13.3228290, 52.4860835 13.3290663, 52.5874017 13.2855961, 52.5063136 13.3769923, 52.4115692 13.3424025, 52.5034406 13.3062941, 52.5037231 13.3050833, 52.5467849 13.4178351, 52.4897934 13.3795333, 52.5436877 13.4166071, 52.4900743 13.4245113, 52.4837246 13.2667894, 52.5452558 13.4173243, 52.5458583 13.4178349, 52.5152520 13.4676370, 52.3868165 13.3950979, 52.5874767 13.2846426, 52.3920720 13.4020275, 52.5278460 13.4034219, 52.5016068 13.3253374, 52.5271255 13.3298305, 52.5297533 13.3284790, 52.5275792 13.3303878, 52.5520716 13.4081330, 52.5236838 13.3874161, 52.5087225 13.2681911, 52.4868832 13.2846499, 52.4757170 13.2907370, 52.5010184 13.4974647, 52.4899162 13.3117635, 52.4233415 13.4362432, 52.5248544 13.3381275, 52.5004111 13.4317600, 52.4837200 13.2829887, 52.5204821 13.3939696, 52.5123526 13.2678588, 52.5113071 13.3983307, 52.5113327 13.2695740, 52.5164118 13.2598493, 52.5385110 13.4162100, 52.5263187 13.3927162, 52.5226906 13.5567986, 52.5082551 13.2584459, 52.5473004 13.3893260, 52.5531314 13.1990761, 52.6212404 13.3136198, 52.6012705 13.2467275, 52.5178177 13.2932026, 52.4452085 13.2933119, 52.4467726 13.3062338, 52.4523308 13.3200626, 52.5026881 13.3091942, 52.5026355 13.3086870, 52.5044147 13.3153971, 52.5064745 13.3203237, 52.5299462 13.4042591, 52.4215057 13.4945968, 52.4196696 13.4934625, 52.4873581 13.3228612, 52.5032428 13.3155784, 52.5031733 13.3168532, 52.5097710 13.3041806, 52.5042380 13.2947598, 52.5072909 13.2267518, 52.5006731 13.2963304, 52.5166214 13.2957794, 52.5114074 13.3007945, 52.3759416 13.6488756, 52.4931077 13.3473957, 52.4896709 13.4339609, 52.5773500 13.3980944, 52.5874952 13.4020387, 52.4890372 13.1808833, 52.5140829 13.4686228, 52.5105480 13.4575340, 52.4979365 13.3377335, 52.4978697 13.3339609, 52.4258695 13.4781647, 52.4355861 13.5481059, 52.4346528 13.5433155, 52.4774025 13.2875429, 52.4947897 13.4144665, 52.4962071 13.3427033, 52.4994710 13.3423629, 52.4951994 13.3397676, 52.5036107 13.3428877, 52.5011283 13.3248922, 52.5020516 13.3274590, 52.5019174 13.3149696, 52.5037050 13.3137120, 52.5387878 13.4102285, 52.5404869 13.4115154, 52.5372942 13.4081004, 52.5372945 13.3965114, 52.5560901 13.5584639, 52.4896443 13.4073191, 52.5865820 13.4017960, 52.4193446 13.2652215, 52.5011858 13.4165717, 52.4928059 13.4162032, 52.4938330 13.4138351, 52.4959732 13.3388640, 52.4596179 13.3637266, 52.4137912 13.1440820, 52.5094177 13.3918636, 52.5137798 13.3867873, 52.5190936 13.2936265, 52.4823860 13.2889504, 52.5088670 13.3886297, 52.5116312 13.2935277, 52.5135524 13.3067557, 52.5091159 13.3231962, 52.5084112 13.3230343, 52.4782413 13.4480833, 52.4630360 13.3192411, 52.4947349 13.3354157, 52.5086626 13.3233372, 52.4896266 13.4087372, 52.5121323 13.3111276, 52.5009630 13.4308196, 52.4918249 13.4138554, 52.4909534 13.4133602, 52.5274294 13.3865661, 52.4916792 13.3908912, 52.4887560 13.3973908, 52.4878619 13.4192284, 52.5123284 13.4174384, 52.5226711 13.3999181, 52.4362446 13.2599715, 52.4377056 13.2572691, 52.5194461 13.1715958, 52.4402291 13.4163377, 52.4167016 13.3386462, 52.5200759 13.3912892, 52.4156660 13.3038181, 52.4654911 13.3838958, 52.4167232 13.3150006, 52.4601320 13.3250202, 52.4378895 13.2951160, 52.5109054 13.2925759, 52.5889692 13.2808143, 52.5142787 13.4934208, 52.5241670 13.3495977, 52.4380752 13.2619078, 52.5098693 13.4555970, 52.4289520 13.2594051, 52.4388951 13.2620348, 52.4146202 13.2667181, 52.4526569 13.3712229, 52.5052060 13.4671770, 52.5682194 13.4397025, 52.4476546 13.3889907, 52.5653066 13.4040842, 52.5264091 13.3878587, 52.5475111 13.3539858, 52.5196031 13.3006048, 52.5047787 13.3281340, 52.4611303 13.3208711, 52.4653532 13.3261806, 52.4050239 13.5732228, 52.5283027 13.4250842, 52.4695855 13.3436400, 52.4646458 13.3386915, 52.4510479 13.3410754, 52.4888808 13.4514304, 52.5713143 13.3772117, 52.5024545 13.3235066, 52.4658535 13.4325440, 52.5069310 13.3001008, 52.5522064 13.4194146, 52.5274628 13.4034075, 52.5490461 13.3539211, 52.5614452 13.2087194, 52.4376800 13.2334683, 52.5052427 13.3276748, 52.4705900 13.4683231, 52.4527994 13.2878293, 52.4781316 13.3130289, 52.5255247 13.3087669, 52.5555648 13.3418651, 52.4894064 13.3170840, 52.5893322 13.3346494, 52.4714028 13.3850943, 52.5420950 13.3978570, 52.5839059 13.3027831, 52.5077312 13.3108621, 52.4996151 13.4258374, 52.5360798 13.4179449, 52.4754702 13.3397296, 52.4662347 13.3839426, 52.5186770 13.3856040, 52.5188432 13.3855752, 52.5228090 13.4014188, 52.4542633 13.5174410, 52.4771684 13.2900752, 52.5345549 13.3538560, 52.5289034 13.3949740, 52.5282595 13.3935979, 52.4771310 13.4211842, 52.5111668 13.4565932, 52.4881604 13.3396191, 52.4787252 13.3449806, 52.5089982 13.2222587, 52.5103714 13.3785200, 52.4876209 13.3908878, 52.5369310 13.2667883, 52.5363712 13.2703134, 52.5368276 13.2710080, 52.4267629 13.3738584, 52.4815005 13.4264323, 52.5222512 13.3845929, 52.5073189 13.3258386, 52.3993983 13.4099124, 52.5026176 13.3851524, 52.4476904 13.5756307, 52.4932741 13.5064620, 52.5057403 13.3263663, 52.4922732 13.4255285, 52.4192490 13.3428855, 52.5361571 13.4180559, 52.5229923 13.4006601, 52.4294113 13.3225497, 52.4491222 13.3524470, 52.4496117 13.3486078, 52.4959130 13.4677778, 52.5390377 13.4213263, 52.5014913 13.4189492, 52.6097807 13.3295938, 52.5429358 13.5711923, 52.5280126 13.4100471, 52.4946934 13.3384248, 52.4864504 13.3514701, 52.4424028 13.2834388, 52.4816526 13.4310556, 52.4326111 13.3000801, 52.4699508 13.3253463, 52.5493102 13.3615754, 52.4546344 13.5765736, 52.4634443 13.3388174, 52.4201088 13.5004855, 52.5415299 13.3499703, 52.5222734 13.4498672, 52.4774287 13.3306646, 52.4900931 13.3837738, 52.4449480 13.3745728, 52.5374786 13.4176373, 52.4990616 13.3107853, 52.5036578 13.3467190, 52.5322498 13.3951179, 52.4936308 13.3229806, 52.4202395 13.4917437, 52.5258997 13.3904417, 52.5258840 13.3903475, 52.4970593 13.3558268, 52.5504924 13.4582409, 52.4417913 13.3540066, 52.5712732 13.4100235, 52.5641446 13.3921067, 52.4579728 13.3289151, 52.5001369 13.3499859, 52.4967905 13.3513753, 52.4853686 13.3623514, 52.4999022 13.3140264, 52.4998037 13.3193377, 52.5022762 13.3292750, 52.5036377 13.3346609, 52.5039022 13.3349181, 52.5089504 13.4597844, 52.5223761 13.3244308, 52.4976201 13.3245734, 52.4972963 13.3240386, 52.4986838 13.3244008, 52.4994685 13.3250047, 52.4935279 13.3217261, 52.4980199 13.3188341, 52.5028066 13.4546539, 52.4980348 13.3266685, 52.4998461 13.3272413, 52.4975750 13.3541708, 52.4986907 13.3134634, 52.4383812 13.5497315, 52.5050216 13.3213128, 52.5049376 13.3229348, 52.5031210 13.3222555, 52.5098870 13.3009280, 52.5259324 13.3121837, 52.4845244 13.4279564, 52.5030064 13.3163054, 52.4908268 13.3249581, 52.4839434 13.3615848, 52.5067881 13.3984014, 52.4986531 13.4316113, 52.5032919 13.3173579, 52.4947170 13.3046819, 52.4511407 13.3394316, 52.4467908 13.3430905, 52.5157794 13.3901013, 52.4737374 13.4236238, 52.5486148 13.4204475, 52.4860426 13.3942041, 52.5038063 13.3478626, 52.4993795 13.3124574, 52.5025765 13.3362913, 52.5026543 13.3369574, 52.5018623 13.3542508, 52.5192960 13.5555643, 52.5277674 13.4013573, 52.4901678 13.3859053, 52.4723227 13.4427795, 52.5093777 13.4122062, 52.6376588 13.4916475, 52.4819439 13.3209658, 52.4996078 13.3017208, 52.5610130 13.4108304, 52.5111411 13.4524069, 52.5264284 13.3495377, 52.5077054 13.3224097, 52.4533015 13.1446473, 52.5052029 13.3213508, 52.5053698 13.3213997, 52.5052522 13.3206141, 52.5026008 13.4541578, 52.5039396 13.4496705, 52.4742122 13.3225369, 52.4967594 13.2927776, 52.4964959 13.2925474, 52.4651273 13.3211790, 52.5044862 13.3572887, 52.5680460 13.3297663, 52.4516240 13.6245675, 52.5097763 13.2743919, 52.4802446 13.3474984, 52.5058808 13.2998222, 52.5052101 13.2994779, 52.5048823 13.2989499, 52.5051950 13.3010238, 52.5050908 13.2982867, 52.4783394 13.3302113, 52.4783316 13.3280731, 52.5016581 13.3215066, 52.4901661 13.3879453, 52.5232387 13.4083649, 52.5069262 13.3046572, 52.5069351 13.3041941, 52.5332160 13.4068670, 52.5344093 13.4862470, 52.4943580 13.4338436, 52.5033917 13.3194823, 52.5076652 13.3092003, 52.5914706 13.2987461, 52.5322456 13.4288704, 52.5196349 13.3922870, 52.4376187 13.2154785, 52.4427186 13.5064825, 52.4379660 13.5486403, 52.5023777 13.4306011, 52.5257634 13.3876676, 52.4661421 13.3066430, 52.4470205 13.4017563, 52.5262627 13.3937995, 52.5252240 13.3045958, 52.5150743 13.4542099, 52.5053500 13.3382000, 52.5324240 13.4097060, 52.5115672 13.2928275, 52.4933373 13.4346900, 52.5071988 13.4710171, 52.5191259 13.4373449, 52.5269167 13.4078023, 52.5282859 13.3305850, 52.5384039 13.4194694, 52.5398010 13.4069520, 52.4530487 13.5104700, 52.4894382 13.3967172, 52.5182854 13.3231069, 52.5020333 13.3292818, 52.5413988 13.4096054, 52.5008974 13.3076421, 52.5016957 13.3097274, 52.4981925 13.3003248, 52.5285182 13.3944661, 52.5038119 13.3298485, 52.5750390 13.5182607, 52.4984908 13.3577298, 52.5419431 13.3565439, 52.4186690 13.3991784, 52.4888557 13.3290126, 52.4878185 13.3313451, 52.4911897 13.3312448, 52.5358328 13.4226530, 52.4705605 13.3346022, 52.4688809 13.3333144, 52.5127542 13.4172149, 52.4968455 13.3848640, 52.4789536 13.3439700, 52.4792535 13.3445743, 52.4927046 13.3872113, 38.3255285 -75.2196085, 52.5044321 13.3375029, 52.4552268 13.4447934, 52.5223558 13.3842198, 52.5101364 13.2799067, 52.5258909 13.3942026, 52.5082660 13.3750140, 52.4259332 13.3927884, 52.5284097 13.3789426, 52.4888517 13.3290677, 52.5367899 13.5872268, 52.4467074 13.5619791, 52.5970445 13.2960778, 52.4821129 13.3578265, 52.5870901 13.2257923, 52.4828435 13.2666188, 52.4771940 13.2799944, 52.4442621 13.2908896, 52.5227419 13.3946251, 52.5443211 13.1691522, 52.4170312 13.3992234, 52.4315102 13.2309184, 52.4239574 13.3715960 +Apex Edinburgh International +49.4095367 8.7037082, 49.4132139 8.7078103 +98 +49.4071068 8.6898761, 49.4168755 8.6790034 +yes +55.9492055 -3.1928272 and 55.9505405 -3.1879922 +55.9048041 -3.1580079 +yes +memorial +95 +48.8379921 2.2782892, 48.8817403 2.3808725, 48.8820166 2.3809080, 48.8758342 2.4007667, 48.8841787 2.3817284, 48.8742878 2.3724982, 48.8707937 2.3688435 +BNP Paribas +191.68858023944512 +12 +49.3999791 8.6903579, 49.4183136 8.7570658, 49.4128139 8.6783720, 49.4145117 8.6907695, 49.4077612 8.6774779, 49.4072855 8.6846071, 49.4071494 8.6862981, 49.4085419 8.6884195, 49.4114880 8.7036708, 49.4112467 8.7056121, 49.3803180 8.6917254, 49.3789548 8.6920168, 49.3789551 8.6697358, 49.4118400 8.7103033, 49.4101180 8.6997470, 49.3932913 8.6898491, 49.3999572 8.6849703, 49.4055340 8.6909414, 49.4284757 8.6833956, 49.4298020 8.6813390, 49.3813862 8.6715525, 49.3801053 8.6879890, 49.4055840 8.6658584, 49.3805484 8.6587871, 49.4019559 8.6916056, 49.4035568 8.6918554, 49.4089227 8.6927850, 49.3788705 8.6685559, 49.3821598 8.6632293, 49.4076785 8.6917122, 49.4211891 8.6800261, 49.3746688 8.7035666, 49.4103729 8.6964923, 49.3744114 8.6827527, 49.3734828 8.6803866, 49.4089710 8.6939315, 49.4152187 8.7476376, 49.4122637 8.7077964, 49.4034041 8.6828344, 49.4283328 8.6876890, 49.4297175 8.6854401, 49.4294006 8.6822101, 49.4045550 8.6757234, 49.4042051 8.6757454, 49.4055602 8.6759168, 49.3773301 8.6643950, 49.4247182 8.6873975, 49.4254190 8.6871690, 49.4211737 8.7557530, 49.4152481 8.6922641, 49.3804318 8.6878275, 49.3803620 8.6881463, 49.4145068 8.6907391, 49.4148749 8.6923202, 49.4090710 8.6596269, 49.3797613 8.6848437, 49.4230594 8.6488328, 49.4059598 8.6868733, 49.3772126 8.6700382, 49.3782446 8.6730115, 49.4270878 8.6470653, 49.4278529 8.6465726, 49.4188086 8.6517772, 49.3974830 8.6464426, 49.3976777 8.6479965, 49.4073819 8.6570319, 49.4014703 8.6683127, 49.4023052 8.6665425, 49.4081778 8.6881317, 49.4179480 8.7596452, 49.4146130 8.6710105 +fr:Musée en Herbe, fr:La Bellevilloise, fr:Maison européenne de la photographie, fr:Centre musical Fleury Goutte d'Or-Barbara, fr:Le Plateau (centre d'art contemporain), fr:La Bellevilloise, fr:Centre national d'art et de culture Georges-Pompidou, fr:Théâtre de la Gaîté, fr:Hôtel Gouthière, fr:Le Zénith (Paris), fr:Grande halle de la Villette, fr:Pavillon Carré de Baudouin, fr:Centre culturel suédois, fr:Maison des Métallos +48.8224506 2.2983765 +Cameo Bar +yes +yes +49.4004143 8.6826744 +75 +48.8956082 2.3863617 +Gonesse, Villepinte, Neuilly-Plaisance, Neuilly-sur-Marne, Aubervilliers, Athis-Mons, Stains, Noisiel, Le Blanc-Mesnil, Chelles, Maisons-Alfort, Bry-sur-Marne, Aulnay-sous-Bois, Villiers-le-Bel, Chevilly-Larue, Les Lilas, Limeil-Brévannes, Villemomble, Les Pavillons-sous-Bois, Villeneuve-le-Roi, Rosny-sous-Bois, Saint-Brice-sous-Forêt, Vitry-sur-Seine, Joinville-le-Pont, Noisy-le-Grand, Saint-Mandé, Le Bourget, Le Plessis-Trévise, Livry-Gargan, La Courneuve, Le Pré-Saint-Gervais, Villiers-sur-Marne, Montfermeil, Saint-Maurice, Alfortville, Nogent-sur-Marne, Thiais, Fontenay-sous-Bois, Champigny-sur-Marne, Créteil, Boissy-Saint-Léger, Charenton-le-Pont, Noisy-le-Sec, Bobigny, Sevran, Garges-lès-Gonesse, Vigneux-sur-Seine, Sucy-en-Brie, Bagnolet, Le Raincy, Montreuil, Le Perreux-sur-Marne, Montgeron, Le Kremlin-Bicêtre, Arnouville, Champs-sur-Marne, Yerres, Pierrefitte-sur-Seine, Bonneuil-sur-Marne, Sarcelles, Romainville, Saint-Denis, Gagny, Choisy-le-Roi, Villejuif, Valenton, Villeneuve-Saint-Georges, Chennevières-sur-Marne, Ormesson-sur-Marne, Drancy, Bondy, La Queue-en-Brie, Saint-Maur-des-Fossés, Orly, Juvisy-sur-Orge, Ivry-sur-Seine, Vincennes, Pantin, Clichy-sous-Bois +250.5 +44.7695203 -72.0464788 +yes +55.9524898 -3.1736491, 55.9525959 -3.1925077 +48.8373758 2.3176784, 48.8379602 2.2583959, 48.8410120 2.3066005, 48.8570028 2.3007925, 48.8579137 2.3005660, 48.8318670 2.3144693, 48.8395609 2.3021892, 48.8375207 2.2967192, 48.8375266 2.2960585, 48.8276825 2.3271004, 48.8501002 2.3428094, 48.8327092 2.3625620, 48.8304784 2.3562767, 48.8334332 2.3545467, 48.8326050 2.3544168, 48.8530182 2.4058632, 48.8554073 2.3268543, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8529470 2.3434116, 48.8535279 2.3681762, 48.8488712 2.2873446, 48.8189960 2.3382666, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8521024 2.4034631, 48.8318807 2.3568124, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8501765 2.3792170, 48.8507286 2.3779068, 48.8509545 2.3780414, 48.8502726 2.3811628, 48.8330519 2.3316747, 48.8367776 2.2983375, 48.8357338 2.3020633, 48.8369085 2.4021711, 48.8370521 2.4018326, 48.8396803 2.3945209, 48.8400366 2.3946968, 48.8397862 2.3968956, 48.8368227 2.4037506, 48.8368603 2.3917906, 48.8393074 2.3970077, 48.8482696 2.3715140, 48.8470790 2.3740473, 48.8469009 2.3721664, 48.8479197 2.3716692, 48.8461048 2.3740873, 48.8477030 2.3740290, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8457782 2.3745532, 48.8574421 2.3793069, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8344235 2.3052236, 48.8563547 2.3050003, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8546797 2.3051724, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8374001 2.2957684, 48.8402359 2.3617231, 48.8384262 2.2988961, 48.8379252 2.2975063, 48.8384650 2.2984232, 48.8386614 2.2988499, 48.8388963 2.2993041, 48.8423511 2.2814155, 48.8529207 2.3436323, 48.8386703 2.2822723, 48.8578234 2.2746494, 48.8583112 2.2754219, 48.8518531 2.3567202, 48.8560141 2.3571788, 48.8549508 2.3624309, 48.8552557 2.3616146, 48.8538346 2.3644665, 48.8543409 2.3691660, 48.8518893 2.3417124, 48.8421221 2.3217245, 48.8521680 2.3314230, 48.8447287 2.3244719, 48.8428059 2.3239714, 48.8489183 2.3392705, 48.8506265 2.3304803, 48.8485082 2.3285161, 48.8508389 2.3266905, 48.8568213 2.3685042, 48.8427653 2.3300120, 48.8420145 2.3302544, 48.8440612 2.3225950, 48.8442156 2.3244262, 48.8473522 2.3183754, 48.8296558 2.3789838, 48.8382008 2.3505003, 48.8378958 2.3507127, 48.8377870 2.3508117, 48.8378570 2.3515198, 48.8376483 2.3516414, 48.8284669 2.3791072, 48.8287974 2.3821578, 48.8293821 2.3782449, 48.8444634 2.4058653, 48.8459991 2.3734585, 48.8583220 2.2745520, 48.8584493 2.2748476, 48.8580404 2.2776736, 48.8411414 2.3136506, 48.8533487 2.3667989, 48.8557164 2.2701238, 48.8417733 2.3185097, 48.8559683 2.2711042, 48.8369684 2.2533009, 48.8394820 2.3097854, 48.8502874 2.2762982, 48.8362844 2.3061932, 48.8535026 2.2653555, 48.8491712 2.2665706, 48.8233119 2.3260789, 48.8475928 2.2669653, 48.8484138 2.2647127, 48.8478601 2.2637874, 48.8485576 2.2650178, 48.8454405 2.2582420, 48.8485516 2.2751179, 48.8415500 2.2669376, 48.8399984 2.2627388, 48.8307191 2.3193023, 48.8304006 2.3192272, 48.8505969 2.3487384, 48.8465904 2.3434584, 48.8481836 2.3416278, 48.8504365 2.3250405, 48.8439434 2.3420437, 48.8461211 2.3404463, 48.8388735 2.3499896, 48.8430873 2.3523909, 48.8433167 2.3520295, 48.8446194 2.3521389, 48.8387237 2.3571215, 48.8480122 2.2605847, 48.8555518 2.3602965, 48.8585424 2.3554995, 48.8417910 2.3293787, 48.8474457 2.3180776, 48.8478498 2.3111276, 48.8452289 2.2582589, 48.8471366 2.3867728, 48.8382469 2.3985623, 48.8356227 2.4057366, 48.8417549 2.3864187, 48.8455537 2.3108109, 48.8450445 2.3104567, 48.8474933 2.3107909, 48.8394375 2.2918836, 48.8514163 2.3135568, 48.8426729 2.3023971, 48.8431492 2.3040014, 48.8431097 2.3128917, 48.8256887 2.3653770, 48.8263809 2.3414522, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8278525 2.3262538, 48.8388287 2.2816271, 48.8367957 2.3917944, 48.8397112 2.3025357, 48.8396385 2.3018330, 48.8234162 2.3578095, 48.8223317 2.3587958, 48.8230555 2.3585643, 48.8283319 2.3249564, 48.8500696 2.2886536, 48.8454338 2.3886185, 48.8560015 2.3425743, 48.8544203 2.3257043, 48.8503640 2.3847349, 48.8446673 2.3830913, 48.8488537 2.3789042, 48.8459220 2.4058540, 48.8585344 2.2751198, 48.8383753 2.3982048, 48.8580367 2.3228472, 48.8570504 2.3810504, 48.8468273 2.3109956, 48.8540420 2.4102463, 48.8465399 2.3518782, 48.8371620 2.2788430, 48.8256754 2.3500062, 48.8260463 2.3458083, 48.8275711 2.3258960, 48.8274068 2.3262715, 48.8369096 2.3712028, 48.8312779 2.3775666, 48.8390681 2.2569423, 48.8549374 2.3061290, 48.8433669 2.3494429, 48.8570621 2.3817062, 48.8372502 2.3914765, 48.8481085 2.4036760, 48.8509779 2.2927923, 48.8550471 2.2699500, 48.8418785 2.2997087, 48.8442816 2.3244689, 48.8482530 2.4016764, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8391384 2.2822010, 48.8276838 2.3319307, 48.8430494 2.2949889, 48.8416006 2.3224232, 48.8337153 2.3863338, 48.8430431 2.3223965, 48.8468610 2.3536998, 48.8201698 2.3641255, 48.8301847 2.3456951, 48.8425418 2.2920002, 48.8340558 2.2901416, 48.8330244 2.2891177, 48.8334343 2.2890580, 48.8357045 2.2898603, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8507185 2.3452276, 48.8506024 2.2921760, 48.8434041 2.2832488, 48.8441583 2.2814225, 48.8525391 2.4047416, 48.8525041 2.4054710, 48.8358361 2.3959436, 48.8555902 2.2705124, 48.8314530 2.3131078, 48.8366420 2.3235880, 48.8442760 2.3236880, 48.8443641 2.3231615, 48.8412683 2.3182655, 48.8271902 2.3689921, 48.8274443 2.3054531, 48.8456435 2.3883893, 48.8467978 2.3874491, 48.8463910 2.3878730, 48.8240842 2.3636888, 48.8226659 2.3580445, 48.8259715 2.3507845, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8260781 2.3450782, 48.8257972 2.3453018, 48.8385802 2.3568194, 48.8575448 2.3507955, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8260853 2.3604941, 48.8265662 2.3114209, 48.8266741 2.3089333, 48.8276987 2.3717961, 48.8348018 2.2835149, 48.8289555 2.3008177, 48.8309472 2.3666202, 48.8425217 2.2605998, 48.8399979 2.2631418, 48.8393773 2.2626930, 48.8445716 2.2773781, 48.8457722 2.3952172, 48.8423827 2.2779816, 48.8315085 2.3570011, 48.8393433 2.2612518, 48.8382522 2.2590990, 48.8294497 2.3691497, 48.8556190 2.3071441, 48.8267862 2.3639559, 48.8275456 2.3565272, 48.8292086 2.3568667, 48.8394408 2.3901626, 48.8304530 2.3781049, 48.8561136 2.3566520, 48.8536688 2.3651544, 48.8358783 2.3528351, 48.8469948 2.3720795, 48.8448082 2.4018695, 48.8577037 2.3677906, 48.8547650 2.3703199, 48.8522552 2.3385407, 48.8419262 2.3651705, 48.8370898 2.3512464, 48.8439360 2.3521362, 48.8466920 2.2861937, 48.8464464 2.2864898, 48.8462140 2.2863069, 48.8471256 2.2857626, 48.8467862 2.2850085, 48.8473180 2.3512660, 48.8326928 2.3011680, 48.8434103 2.2931530, 48.8367477 2.3065081, 48.8396815 2.2927792, 48.8364615 2.3516931, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8442882 2.3080071, 48.8528372 2.2900682, 48.8524061 2.2912571, 48.8529003 2.2907372, 48.8331060 2.3547764, 48.8275383 2.3571726, 48.8504014 2.2929658, 48.8466594 2.4106749, 48.8474387 2.3948976, 48.8475088 2.4104704, 48.8293214 2.3692986, 48.8558171 2.3591925, 48.8310392 2.3425080, 48.8295478 2.3565241, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8235069 2.3253377, 48.8314166 2.3251141, 48.8551235 2.3603692, 48.8335336 2.4018517, 48.8344090 2.3538607, 48.8329666 2.3548590, 48.8524475 2.3894597, 48.8426473 2.3496219, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8518237 2.3263371, 48.8518410 2.3270180, 48.8520482 2.3269387, 48.8459597 2.3544163, 48.8523174 2.3400938, 48.8370786 2.3520317, 48.8480411 2.3409988, 48.8487519 2.3414295, 48.8260443 2.3266660, 48.8255907 2.3265438, 48.8570274 2.3983184, 48.8493470 2.3529650, 48.8315966 2.3304662, 48.8497330 2.3457635, 48.8491590 2.3498700, 48.8485190 2.3493440, 48.8401997 2.3954293, 48.8448871 2.2941778, 48.8452118 2.2941040, 48.8454696 2.2946866, 48.8578346 2.3793123, 48.8403727 2.3337448, 48.8349994 2.3046409, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8313376 2.3296145, 48.8455488 2.4110597, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8512137 2.3425994, 48.8488552 2.3942325, 48.8489972 2.3942887, 48.8505758 2.3948498, 48.8494165 2.3948501, 48.8449899 2.4047731, 48.8347313 2.3458453, 48.8351835 2.3533874, 48.8388397 2.3227192, 48.8406761 2.3933858, 48.8359858 2.3961013 +49.4641062 8.6650466, 49.4707059 8.6520153, 49.4751871 8.6837099, 49.4785782 8.6564609, 49.4805167 8.6715673, 49.4760467 8.6993112, 49.4708285 8.6603546, 49.4703095 8.6676207, 49.4750609 8.6692928 +57.4542486 -3.1285642, 55.8834034 -6.1271617, 57.3024853 -6.3568033, 57.5223776 -4.4756277, 55.7569648 -6.2896939, 54.8587333 -4.4629463, 55.6978487 -5.2756058, 55.7661694 -6.3618742, 55.7870810 -6.4309463, 52.3472337 9.2793924, 54.2718195 10.5219966, 55.8538475 -6.1086342, 57.6883368 -4.2387842, 51.1127444 13.7669099, 50.9570510 14.0821619, 51.6056697 12.5660378, 47.7377817 11.8606277, 19.6779250 -72.0190560, 51.6491451 8.1322169, 39.2994322 -75.6084788, 47.8805389 7.7309643, 47.7382628 11.8561188, 57.5466316 -2.9539288, 43.9560756 0.3734684, 18.4229704 -64.6585212, 17.1508415 -25.0151935, 17.0165122 -96.5647291, 53.0858724 8.7794585, 47.7154486 7.5507400, 47.6573658 7.5616578, 48.1565486 12.8317267, 14.4377636 -60.8333445, 14.6018539 -60.9068867, 14.6901502 -61.0141987, 14.5891040 -60.8679840, 45.8447477 -122.8281437, 38.2575362 -85.7632828, 34.5472284 -112.4607113, 44.1602815 -121.3590756, 14.7836679 -60.9970984, 0.4592119 33.2016341, 38.0563465 -84.5191318, 48.5956956 8.8698258, 47.6567058 13.0407186, 53.5436085 9.6062248, 45.7326576 -0.3782353, 57.6353335 -3.2870129, 57.6450306 -3.3421110, 57.6101458 -3.2894032, 57.5992245 -3.2784059, 57.6009715 -3.3129796, 57.5993208 -3.3172323, 45.0361300 1.6054555, 56.8348734 -5.0738994, 57.5265535 -3.2167789, 57.5262020 -3.2099339, 57.5300526 -3.2110120, 57.5295183 -3.2067185, 57.5365006 -3.2152563, 57.4667732 -3.2280843, 57.6137233 -3.6206951, 57.8273602 -4.0782856, 51.7638075 -3.5209769, 57.4566016 -3.3429798, 57.4591122 -3.3533078, 57.4839604 -3.2091318, 57.4265098 -3.3144275, 57.3432180 -3.3390260, 56.6986205 -3.7208573, 52.4507978 0.9154400, 56.2574204 -3.7854861, 58.0248615 -3.8678057, 56.0141643 -4.3632000, 56.6206674 -6.0701909, 57.3390471 -4.0097785, 55.8328855 -5.9514638, 55.8913208 -2.8909475, 50.3675798 -4.1372484, 56.6244764 -3.8498805, 50.3679106 -4.1373766, 51.4537192 8.4186344, 56.9400822 -4.2393214, 57.3436880 -3.3377192, 51.3491807 7.4299280, 37.7876056 -122.3092605, 49.2301167 0.2149744, 49.2308275 0.2150060, 40.5899876 -105.0766115, 36.2050811 -89.1913579, 58.1708039 -7.0446706, 56.4149472 -5.4717893, 57.3975178 -3.4079486, 55.6406131 -6.1079234, 55.6354771 -6.1264917, 12.5777223 -87.0240762, 44.9450440 -93.2345327, 14.4796587 -60.9647768, 14.5069529 -60.9065836, 24.7142042 121.6901667, 43.8347339 -70.1268733, 50.3677538 -4.1366720, 52.1560692 7.3187114 +7 +Maria Luisa, Piccola Italia, Casa Naktel, I quattro mori, Chez Peppe, Ristorante Pellicano, Da Attilio, La Maffiosa, Tina, Caffé Vito, La Piazza Ristorante Pizza, Restorante Verdi, Ristorante Tavola Calda, Pastapapa, La Perla, Deliziefollie, Sens'o, Fuxia, La Comedia, L'Osteria, Le Caruso, Soprano, Auberge de Venise, La Massara, Ristorante Pizza Sarno, Mezzomezzo, Mmmozza, Les Vitelloni, La Dolce Vita, Ristorante Caffe Toscano, La Bocca Della Verita, Oenosteria, Pompei, Trevoli, Ziti, Ô Soleil de Naples, Mama Luna, Le Rialto, Iannello, Il Maestro, Quartier Latin, Le Mondelo, Swan & Vincent, Fontanarosa, La Fabbrica, Da Maurizio, Italian Style Café, Angelo & Jacqueline, La Gondola, Amores, Del'Arte, Il Gallo Nero, Pastapapà, VILLA DEL PADRE, Casanova, I Fratelli, Pulcinella, Pizza Caratello, La tour de Pise, Fuxia, Pizzeria Santa Lucia, Golosino, Mezzo di Pasta, Café Reale, Nouï, L'Assagio, Babalou, Acqualina in bocca, Les Patios, Portobello, Gioia Mia, Stan & Co, L'authentique Panini, La Prima, Divinamente Italiano, L'Arôme Antique, Pizzeria, Pucinella, Le Patio, Trattoria Victoria, Casa Nostra, Il Piccolo Rifugio, Pastapapa, L'Altra, Restaurant Marco Polo, Cinecitta, Sapori, Pizzeria Monte Bianco, Chez Thomas, Sole di Sardegna, Café Cotta, Da Fabio, Les associés, Maison Cipolli, San Giovanni, Momento, Il Pinocchio, Casa di Cervaro, Bistrot 32, L'auberge calabraise, Fiori, Trattoria Silviano, Al Gusto della Pasta, Il Farniente, Monteleone, Caffè Corto, Paris Milan, Da Pïppo, Pizzeria Straciatella, La divina, Pizza Pronto, Il Suppli, Il seguito, Origin, Naturellement, Il Gigolo, Pizza Rustica, Rim Café, La Dolce Vita, Pizza Loriana, Rossini, l'angolo 42, Traiteur Italien, Da Franco, La Rosa, Da Ugo, Ricci, Pescatore, La Strada, Fame da Lupo, Pizzeria Palermo, Delizius, Bistro Italien, Bistro I Ghiotti, Delitaly, La Famiglia, Trattoria di Bellagio, Gianni Bommarito, Ô Güsto, Pizza Flora, Coccodrillo, Caffe Caesar, Italian Trattoria, Molto Gusto, Andiamo Pizza, Villa Palatine, Di Vino, Autentico, Pink Flamingo, Il Bosco, La Gazetta, Sogoosto, La Toscane, Osteria Sicilia, Pizzeria Bella Italia, Restaurant de la Tour, l'autre Via Mela, Restaurant Marco-Roma, PastaPaPá, La Cucina, Spaccanapoli, Girasole, La suite, Buono sano bello, Emporio Armani Caffe, Le Colisée Wagram, Mie & You, Pizza Maria, L'écumoire, La Trottinette, Enoteca, L'Italy Cafė Ristorante Pizza Cafė, Casa Cristo, La Lucania, Bacino, Gustibus, Tappo, Caffè Stern, Le petit italien, Il Pacificio, Little Italy, Il Goto, Green Cafe +49.4171072 8.6773196, 49.4171621 8.6765719, 49.4177493 8.6779095, 49.4179042 8.6765456, 49.4183971 8.6765049, 49.4184718 8.6774518, 49.4190800 8.6770270, 49.4173101 8.6911592, 49.4173141 8.6856590, 49.4173841 8.6864299, 49.4173964 8.6887825, 49.4174192 8.6903041, 49.4168113 8.6765908, 49.4168113 8.6771056, 49.4169219 8.6787272, 49.4169748 8.6791607, 49.4170266 8.6795511, 49.4171525 8.6805099, 49.4172388 8.6826853, 49.4172827 8.6814338, 49.4173167 8.6834999, 49.4173345 8.6846458, 49.4179636 8.6792876, 49.4179993 8.6797629, 49.4181166 8.6806061, 49.4182615 8.6814568, 49.4184562 8.6827889, 49.4184996 8.6830345, 49.4187424 8.6793683, 49.4188816 8.6811640, 49.4189906 8.6808338, 49.4190085 8.6811738, 49.4193919 8.6778301, 49.4126783 8.6843825, 49.4126857 8.6858934, 49.4127125 8.6852240, 49.4128201 8.6864315, 49.4129308 8.6871682, 49.4132152 8.6882157, 49.4133058 8.6894895, 49.4133283 8.6902455, 49.4133726 8.6914495, 49.4117100 8.6785021, 49.4117171 8.6787048, 49.4119478 8.6798767, 49.4121911 8.6809383, 49.4123972 8.6818428, 49.4125796 8.6830848, 49.4130381 8.6829093, 49.4131441 8.6842989, 49.4117429 8.6768667, 49.4126418 8.6770005, 49.4126658 8.6805331, 49.4127054 8.6796956, 49.4127667 8.6781474, 49.4127764 8.6817686, 49.4133372 8.6813782, 49.4134270 8.6813115, 49.4129906 8.6768393, 49.4130462 8.6795215, 49.4132321 8.6806359, 49.4134560 8.6768246, 49.4140773 8.6767907, 49.4143370 8.6767573, 49.4149687 8.6767513, 49.4153969 8.6770975, 49.4154763 8.6767218, 49.4134732 8.6780167, 49.4143331 8.6784643, 49.4154251 8.6780426, 49.4160812 8.6765800, 49.4161384 8.6779769, 49.4166481 8.6779973, 49.4136631 8.6792108, 49.4139712 8.6812406, 49.4143640 8.6792347, 49.4145629 8.6804670, 49.4146015 8.6814504, 49.4154028 8.6787457, 49.4154304 8.6791703, 49.4157628 8.6803714, 49.4162426 8.6792175, 49.4164053 8.6803686, 49.4166151 8.6816138, 49.4148907 8.6823809, 49.4157135 8.6838270, 49.4157371 8.6825679, 49.4164509 8.6825931, 49.4164769 8.6820833, 49.4164883 8.6826074, 49.4165324 8.6837830, 49.4138171 8.6830288, 49.4138905 8.6841593, 49.4140673 8.6831303, 49.4143492 8.6848301, 49.4143982 8.6833887, 49.4148836 8.6836697, 49.4134000 8.6861630, 49.4138148 8.6881061, 49.4139567 8.6853638, 49.4139909 8.6860589, 49.4141876 8.6870872, 49.4142824 8.6879866, 49.4148833 8.6848069, 49.4149785 8.6858235, 49.4150166 8.6858318, 49.4137510 8.6912462, 49.4138984 8.6901677, 49.4140122 8.6915610, 49.4142111 8.6891822, 49.4143633 8.6890907, 49.4144550 8.6901875, 49.4145297 8.6910089, 49.4146438 8.6901960, 49.4149569 8.6908041, 49.4151322 8.6902740, 49.4153158 8.6909838, 49.4157243 8.6847764, 49.4157844 8.6855831, 49.4157934 8.6864461, 49.4158135 8.6903357, 49.4158328 8.6876589, 49.4158376 8.6902771, 49.4164423 8.6876319, 49.4164544 8.6865144, 49.4165771 8.6855422, 49.4166179 8.6903268, 49.4138995 8.6921339, 49.4146709 8.6921591, 49.4147814 8.6922098, 49.4151601 8.6921549, 49.4151722 8.6920865, 49.4158539 8.6910356, 49.4158861 8.6921393, 49.4159558 8.6921390, 49.4162860 8.6919730, 49.4165142 8.6921010, 49.4169007 8.6921351, 49.4170872 8.6918724, 49.4171258 8.6778744, 49.4173600 8.6919318, 49.4173614 8.6916050, 49.4177943 8.6783487, 49.4183327 8.6910378, 49.4184227 8.6909561, 49.4186264 8.6783589, 49.4190205 8.6906815, 49.4194515 8.6790135, 49.4195903 8.6904161, 49.4196892 8.6901030, 49.4202648 8.6899350, 49.4203690 8.6825543, 49.4203815 8.6828030, 49.4204759 8.6896128, 49.4209753 8.6825183, 49.4212350 8.6821598, 49.4212780 8.6891664, 49.4219154 8.6821734, 49.4220812 8.6837966, 49.4221339 8.6830765, 49.4222189 8.6844817, 49.4222397 8.6888096, 49.4223212 8.6853320, 49.4225675 8.6863407, 49.4226992 8.6818875, 49.4227731 8.6868755, 49.4227835 8.6875590, 49.4227907 8.6827089, 49.4229471 8.6883512, 49.4231098 8.6884074, 49.4244197 8.6874057, 49.4244545 8.6876235, 49.4250439 8.6862252, 49.4250896 8.6864045, 49.4254807 8.6850680, 49.4256032 8.6851066, 49.4258098 8.6843351, 49.4259545 8.6843125, 49.4261921 8.6834366, 49.4124675 8.6722192, 49.4129302 8.6721550, 49.4131552 8.6738690, 49.4136853 8.6735943, 49.4137196 8.6725106, 49.4137645 8.6746386, 49.4145431 8.6738210, 49.4149545 8.6714849, 49.4149778 8.6726757, 49.4150096 8.6750823, 49.4158607 8.6714529, 49.4126730 8.6690534, 49.4132936 8.6693274, 49.4132628 8.6670083, 49.4135612 8.6677150, 49.4135964 8.6715064, 49.4139734 8.6723081, 49.4142219 8.6712401, 49.4142964 8.6702560, 49.4143168 8.6702199, 49.4139596 8.6662087, 49.4142991 8.6674911, 49.4154226 8.6668475, 49.4154248 8.6675290, 49.4156968 8.6675995, 49.4162451 8.6675949, 49.4166577 8.6676273, 49.4169215 8.6672607, 49.4169911 8.6662984, 49.4139814 8.6645669, 49.4143214 8.6646612, 49.4147333 8.6648772, 49.4152605 8.6652064, 49.4154416 8.6660364, 49.4157157 8.6657664, 49.4159235 8.6654553, 49.4160820 8.6654569, 49.4169391 8.6654729, 49.4169806 8.6617282, 49.4170334 8.6658721, 49.4174280 8.6662762, 49.4175246 8.6618665, 49.4171948 8.6651903, 49.4173511 8.6636609, 49.4176121 8.6647998, 49.4178309 8.6632609, 49.4181704 8.6647260, 49.4184312 8.6674382, 49.4186818 8.6640511, 49.4187556 8.6655096, 49.4187648 8.6648676, 49.4188060 8.6672546, 49.4155953 8.6697454, 49.4159497 8.6698497, 49.4160843 8.6689231, 49.4165496 8.6696429, 49.4168408 8.6689980, 49.4170012 8.6677061, 49.4171707 8.6686342, 49.4172298 8.6676984, 49.4174128 8.6693715, 49.4178480 8.6676654, 49.4178524 8.6687706, 49.4171535 8.6709421, 49.4172348 8.6701536, 49.4172921 8.6695818, 49.4173364 8.6700629, 49.4190007 8.6705905, 49.4166659 8.6726028, 49.4166670 8.6735494, 49.4169240 8.6723938, 49.4171472 8.6737932, 49.4183404 8.6705952, 49.4185070 8.6724018, 49.4185338 8.6749625, 49.4192472 8.6749265, 49.4195758 8.6747658, 49.4133440 8.6764079, 49.4138880 8.6763877, 49.4163830 8.6760030, 49.4182300 8.6834061, 49.4182520 8.6851810, 49.4183900 8.6910820, 49.4184010 8.6886120, 49.4185321 8.6872289, 49.4185782 8.6871771, 49.4185920 8.6904127, 49.4186311 8.6885736, 49.4189790 8.6833159, 49.4190300 8.6884598, 49.4192380 8.6841289, 49.4192800 8.6849949, 49.4195050 8.6866570, 49.4195140 8.6870830, 49.4195370 8.6884649, 49.4196581 8.6826459, 49.4199600 8.6773080, 49.4199961 8.6783739, 49.4200970 8.6848350, 49.4201581 8.6863238, 49.4202170 8.6869468, 49.4202830 8.6764509, 49.4203471 8.6828670, 49.4204150 8.6809190, 49.4204550 8.6780810, 49.4205870 8.6772420, 49.4206200 8.6838998, 49.4207260 8.6847269, 49.4209180 8.6789200, 49.4209610 8.6813179, 49.4209711 8.6793159, 49.4209852 8.6862147, 49.4210510 8.6824740, 49.4210640 8.6789419, 49.4210830 8.6780970, 49.4210860 8.6807959, 49.4211021 8.6798378, 49.4211090 8.6871899, 49.4211559 8.6772780, 49.4212910 8.6820829, 49.4213399 8.6842469, 49.4214270 8.6893360, 49.4214319 8.6845956, 49.4215220 8.6822390, 49.4216181 8.6858356, 49.4216560 8.6805150, 49.4217220 8.6805970, 49.4217970 8.6865979, 49.4218148 8.6793050, 49.4218230 8.6776541, 49.4218351 8.6821330, 49.4218390 8.6782120, 49.4219112 8.6873225, 49.4219192 8.6771650, 49.4220090 8.6767740, 49.4220961 8.6836650, 49.4221081 8.6837649, 49.4221211 8.6831559, 49.4222170 8.6807629, 49.4223591 8.6853211, 49.4222961 8.6804661, 49.4226130 8.6847709, 49.4227970 8.6819088, 49.4229871 8.6805259, 49.4230670 8.6848431, 49.4232990 8.6894080, 49.4234651 8.6846938, 49.4234681 8.6865040, 49.4234910 8.6796409, 49.4236171 8.6827640, 49.4237360 8.6879330, 49.4237580 8.6812619, 49.4238011 8.6844951, 49.4239440 8.6892690, 49.4239580 8.6803100, 49.4240080 8.6893380, 49.4241530 8.6823040, 49.4241661 8.6860290, 49.4242310 8.6801610, 49.4244160 8.6839109, 49.4244380 8.6829640, 49.4245780 8.6882290, 49.4246100 8.6889189, 49.4246640 8.6818110, 49.4246781 8.6890690, 49.4248031 8.6797470, 49.4248249 8.6809710, 49.4248621 8.6816269, 49.4249760 8.6846130, 49.4250750 8.6832560, 49.4253311 8.6822080, 49.4254600 8.6792840, 49.4255210 8.6889629, 49.4256210 8.6819569, 49.4257190 8.6827099, 49.4257411 8.6841829, 49.4259246 8.6862592, 49.4259050 8.6854009, 49.4259540 8.6807890, 49.4260250 8.6825349, 49.4261240 8.6788169, 49.4262660 8.6793190, 49.4264071 8.6821287, 49.4265490 8.6847520, 49.4265521 8.6803830, 49.4266771 8.6784878, 49.4268582 8.6817330, 49.4269550 8.6819368, 49.4271950 8.6825720, 49.4273762 8.6784086, 49.4274400 8.6784900, 49.4280311 8.6783430, 49.4289440 8.6789069, 49.4296015 8.6786695, 49.4303140 8.6784310, 49.4193061 8.6662789, 49.4196582 8.6599549, 49.4201491 8.6671790, 49.4204980 8.6593060, 49.4218560 8.6590330, 49.4223230 8.6586590, 49.4227041 8.6599350, 49.4239290 8.6613409, 49.4239240 8.6891660, 49.4245260 8.6889749, 49.4247110 8.6903420, 49.4247340 8.6891350, 49.4252520 8.6874410, 49.4254530 8.6902880, 49.4258831 8.6854929, 49.4260181 8.6863257, 49.4260640 8.6901700, 49.4260850 8.6870670, 49.4262320 8.6878290, 49.4263340 8.6885170, 49.4263691 8.6917450, 49.4264151 8.6837788, 49.4264409 8.6888950, 49.4264640 8.6868940, 49.4265440 8.6909910, 49.4266889 8.6877150, 49.4268370 8.6877030, 49.4268390 8.6899869, 49.4269100 8.6870850, 49.4269660 8.6843329, 49.4271270 8.6887639, 49.4272970 8.6896680, 49.4274455 8.6878665, 49.4274440 8.6865619, 49.4276170 8.6855049, 49.4277320 8.6850120, 49.4277480 8.6858580, 49.4277490 8.6894119, 49.4277910 8.6883539, 49.4277979 8.6883870, 49.4278640 8.6904159, 49.4278730 8.6872199, 49.4279140 8.6867310, 49.4279880 8.6871899, 49.4282450 8.6892880, 49.4282630 8.6877620, 49.4287530 8.6894728, 49.4139021 8.6934089, 49.4151030 8.6933070, 49.4154360 8.6932489, 49.4159440 8.6931880, 49.4165520 8.6930700, 49.4172660 8.6928049, 49.4185620 8.6918969, 49.4186210 8.6921849, 49.4191279 8.6919820, 49.4198090 8.6916480, 49.4204880 8.6913349, 49.4213850 8.6932749, 49.4214290 8.6908230, 49.4225571 8.6906010, 49.4225910 8.6904319, 49.4239790 8.6903530, 49.4291700 8.6895049, 49.4173111 8.6930110, 49.4173880 8.6934880, 49.4179160 8.6925329, 49.4184710 8.6922600, 49.4186231 8.6929789, 49.4187120 8.6957600, 49.4192260 8.6919350, 49.4192870 8.6948570, 49.4197900 8.6916599, 49.4198320 8.6947620, 49.4198420 8.6932200, 49.4206940 8.6927889, 49.4208080 8.6949000, 49.4213620 8.6923480, 49.4214950 8.6908100, 49.4218850 8.6917680, 49.4219620 8.6949180, 49.4220110 8.6940240, 49.4220850 8.6929870, 49.4225010 8.6913139, 49.4225410 8.6920930, 49.4229250 8.6905690, 49.4232010 8.6906370, 49.4239177 8.6908126, 49.4247140 8.6911789, 49.4247610 8.6911489, 49.4248240 8.6926430, 49.4248711 8.6920369, 49.4261260 8.6912390, 49.4263200 8.6913639, 49.4272860 8.6912040, 49.4277800 8.6910779, 49.4281380 8.6910150, 49.4288690 8.6905680, 49.4295050 8.6905550, 49.3943040 8.6900800, 49.4108350 8.7039470, 49.3963305 8.7237131, 49.4157600 8.6814287, 49.4146025 8.6823832, 49.4101824 8.7154497, 49.4105755 8.7157261, 49.4077012 8.6585784, 49.4079501 8.6566361, 49.3651164 8.6827392, 49.3651733 8.6848917, 49.4110482 8.7185034, 49.4121488 8.7072459, 49.4125818 8.7119156, 49.4126987 8.7122689, 49.4102866 8.6968609, 49.4108310 8.6996879, 49.4112467 8.7022475, 49.4114477 8.7039217, 49.4116976 8.7061712, 49.4117235 8.7076903, 49.4117880 8.7080450, 49.4118104 8.7096705, 49.4118220 8.7086061, 49.4118622 8.7093208, 49.4119135 8.7104339, 49.4119976 8.7109244, 49.4120232 8.7106718, 49.4122631 8.7097191, 49.3992691 8.6805010, 49.3848121 8.6636880, 49.3832266 8.6637256, 49.3775602 8.6428499, 49.3777209 8.6401945, 49.3655232 8.6243373, 49.3764111 8.6167172, 49.3739958 8.6152527, 49.3764094 8.6167172, 49.3631440 8.6217088, 49.3655232 8.6243373, 49.3639825 8.6226422, 49.3647231 8.6234790, 49.3695056 8.6543941, 49.3690584 8.6536270, 49.3727297 8.6503655, 49.3684296 8.6524147, 49.3707421 8.6528707, 49.3716503 8.6517656, 49.3725620 8.6506015, 49.3735191 8.6494213 +1674 +yes +steak house, italian, chinese, sudanese, curry, indian, thai, spanish, japanese, regional, cantonese, pie, american, seafood, pizza, lebanese, french, vegetarian, Cantonese, mexican, mediterranean, mongolian, chargrill, kurdish, Lebanese, middle eastern, noodle, asian, turkish, korean, Malaysian, greek, brazilian, fish, international, sushi, arab, vietnamese, burger, latin american, caribbean, chicken, tapas, malaysian, Scotish, Punjabi, spanish tapas, british, portuguese, african, soup, Mediterranean, phillipino, Middle Eastern, fish and chips, nepali, sandwich, kebab +0 +Heidelberg +no +49.4091649 8.6726851, 49.4093716 8.6801667, 49.4092201 8.6801589, 49.4180684 8.6889644, 49.4151692 8.7066598, 49.4168638 8.7149130, 49.4066053 8.6919726, 49.4149496 8.7239163, 49.4205986 8.7368660, 49.3899847 8.6546401 +roman temple, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification +49.4101353 8.6927154 ++49 6221 89800 +49.4117816 8.7062296 +48.8403064 2.3155776 +48.8662200 2.3249104, 48.8650379 2.3286066, 48.8525775 2.3471111, 48.8700157 2.3323221, 48.8681204 2.3330906, 48.8511629 2.3461411, 48.8505858 2.3424689, 48.8501915 2.3422706, 48.8491091 2.3761310, 48.8504878 2.3820336, 48.8501724 2.3435882, 48.8533251 2.3447071, 48.8531776 2.3444036, 48.8535396 2.3433463, 48.8574614 2.3987906, 48.8742770 2.3896380, 48.8743044 2.3892719, 48.8491809 2.3755427, 48.8254296 2.3625833, 48.8514676 2.3419895, 48.8387188 2.3931980, 48.8545533 2.3063815, 48.8529173 2.3925273, 48.8507085 2.3989753, 48.8715019 2.3828091, 48.8723416 2.3801805, 48.8382546 2.2981240, 48.8698462 2.3511474, 48.8533293 2.3537801, 48.8525744 2.3443077, 48.8509038 2.3499006, 48.8541721 2.3282003, 48.8544576 2.3860329, 48.8652240 2.3226798, 48.8801560 2.3645743, 48.8803220 2.3624411, 48.8264498 2.3300888, 48.8569747 2.2789476, 48.8509994 2.2716479, 48.8367744 2.3106015, 48.8781326 2.3729131, 48.8670191 2.3734737, 48.8553246 2.3870617, 48.8472720 2.3419460, 48.8512259 2.3463004, 48.8513241 2.3465595, 48.8393482 2.3496204, 48.8447885 2.3495957, 48.8662422 2.3531014, 48.8451782 2.2607665, 48.8502962 2.3467993, 48.8581704 2.3526545, 48.8380223 2.3905149, 48.8830930 2.3182419, 48.8455527 2.3122101, 48.8458285 2.3180784, 48.8251412 2.3653488, 48.8264707 2.3409799, 48.8399670 2.3932678, 48.8362897 2.3941894, 48.8750645 2.3432258, 48.8714964 2.3360288, 48.8518501 2.3734396, 48.8657672 2.2895091, 48.8613020 2.3436850, 48.8754689 2.3160711, 48.8479470 2.3518746, 48.8653166 2.3764191, 48.8343427 2.3291566, 48.8629626 2.3620980, 48.8832937 2.3141714, 48.8531950 2.3754215, 48.8472217 2.3997508, 48.8352586 2.2921097, 48.8389972 2.3978830, 48.8656850 2.3648977, 48.8542021 2.3323694, 48.8432473 2.3496205, 48.8437015 2.3252275, 48.8685177 2.3700123, 48.8424552 2.3519375, 48.8417849 2.3027944, 48.8891440 2.3384231, 48.8220789 2.3422051, 48.8550650 2.3736566, 48.8314386 2.3693373, 48.8665900 2.2802703, 48.8297529 2.3232406, 48.8726981 2.3796622, 48.8670640 2.3762600, 48.8843529 2.3389708, 48.8543689 2.3844927, 48.8524626 2.3344163, 48.8437952 2.2924901, 48.8647194 2.3519904, 48.8438946 2.3480265, 48.8670326 2.3442625, 48.8505064 2.3990388, 48.8578215 2.3585267, 48.8514788 2.3399912, 48.8577488 2.3574229, 48.8809778 2.3506944, 48.8913689 2.3617657, 48.8401899 2.3544829, 48.8390221 2.2602403, 48.8817199 2.3736232, 48.8756587 2.2879128, 48.8607962 2.3544296, 48.8350134 2.3203089, 48.8895561 2.3758782, 48.8655527 2.3550525, 48.8484473 2.3486979, 48.8578192 2.3677027, 48.8506487 2.3394886, 48.8592808 2.2750466, 48.8536640 2.3812458, 48.8614660 2.2754877, 48.8621668 2.2760986, 48.8511985 2.3394291, 48.8691209 2.2843412, 48.8768373 2.3360674, 48.8736234 2.3521787, 48.8515260 2.3631350, 48.8238315 2.3237941, 48.8454093 2.3799968, 48.8455314 2.3807867, 48.8909365 2.3459092, 48.8946930 2.3411100, 48.8661636 2.4056122, 48.8506983 2.3768187, 48.8838523 2.3212469, 48.8423736 2.3428351, 48.8443967 2.3484123, 48.8685177 2.3885331, 48.8262892 2.3413948, 48.8440902 2.3479892, 48.8270505 2.3323348, 48.8406225 2.2998537, 48.8571270 2.3979136, 48.8935922 2.3238984, 48.8198098 2.3426440, 48.8410729 2.3068009, 48.8801130 2.3288983, 48.8803277 2.3288040, 48.8662042 2.3409974, 48.8843073 2.3722714, 48.8837994 2.3268783, 48.8511798 2.3383451, 48.8340824 2.2894102, 48.8761555 2.3374709, 48.8340089 2.3599820, 48.8390780 2.3825910, 48.8353393 2.2891615, 48.8468370 2.3423807, 48.8465142 2.3433389, 48.8505990 2.3456055, 48.8465728 2.3430664, 48.8504723 2.3461960, 48.8488167 2.3424782, 48.8500519 2.3478861, 48.8430083 2.2821288, 48.8643193 2.3987773, 48.8664792 2.3830247, 48.8614107 2.3530384, 48.8634341 2.3488612, 48.8944610 2.3410230, 48.8328942 2.3612036, 48.8287848 2.3797951, 48.8260378 2.3589252, 48.8655088 2.3336403, 48.8610286 2.3506049, 48.8603680 2.3507537, 48.8430117 2.3895138, 48.8238470 2.3485801, 48.8261136 2.3448083, 48.8277194 2.3285997, 48.8319785 2.3603654, 48.8233115 2.3452510, 48.8249394 2.3621629, 48.8354021 2.2817071, 48.8779928 2.3581823, 48.8241761 2.3255140, 48.8503487 2.2919735, 48.8510260 2.3454319, 48.8470854 2.3534067, 48.8302628 2.3570676, 48.8743514 2.3892317, 48.8286429 2.3818342, 48.8650907 2.3663328, 48.8356500 2.3982873, 48.8871092 2.3696248, 48.8746003 2.3892694, 48.8544041 2.3263101, 48.8763280 2.3281599, 48.8475171 2.3511154, 48.8688115 2.3351558, 48.8842818 2.3240276, 48.8517905 2.3431197, 48.8521627 2.3432953, 48.8458061 2.2882640, 48.8517963 2.3444980, 48.8734347 2.3423380, 48.8597263 2.3084052, 48.8588644 2.3499502, 48.8546846 2.3623086, 48.8495810 2.3432900, 48.8785100 2.2913980, 48.8708175 2.3215271, 48.8771010 2.3264720, 48.8901988 2.3711496, 48.8927180 2.3633290, 48.8486860 2.3472380, 48.8496985 2.3391523, 48.8495401 2.3379890, 48.8596285 2.3543087, 48.8586710 2.3226860, 48.8528086 2.3367891, 48.8336859 2.3868686, 48.8793718 2.3771217, 48.8485950 2.3547820, 48.8482600 2.3542670, 48.8809912 2.3271773, 48.8849202 2.3922140, 48.8843340 2.3042300, 48.8592269 2.2848863, 48.8727028 2.3774431, 48.8844882 2.3797443, 48.8483070 2.3491750, 48.8766668 2.2631854, 48.8471227 2.3170343, 48.8551206 2.3754858, 48.8755206 2.3107673, 48.8550364 2.3537242, 48.8552629 2.3577442, 48.8629068 2.3360400, 48.8650605 2.3675907, 48.8606690 2.3649892, 48.8611982 2.3691660, 48.8484698 2.3422948, 48.8457286 2.3439757, 48.8526768 2.3603455, 48.8501731 2.3321278, 48.8557624 2.3071037, 48.8311200 2.3020623, 48.8602537 2.3521242 +yes +49.4126418 8.7016223 +55.9338797 -3.0920141, 55.9274598 -3.3076072 +55.9456427 -3.1913637 +6 +no +french +Kirkcaldy, Polton, Bonnyrigg, Loanhead, Haddington, Penicuik, Musselburgh, Cockenzie and Port Seton, Gullane, Dalkeith, Prestonpans, Tranent, Gorebridge, Mayfield, Newtongrange, Eskbank, Lasswade +49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.3988716 8.6899921, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.4240406 8.6385449, 49.3851489 8.6733031, 49.3848920 8.6803000, 49.3673694 8.6862886, 49.4061345 8.6593850, 49.3956207 8.6692054, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.3704305 8.7013213, 49.4296958 8.6455225, 49.3810973 8.6895578, 49.4172010 8.6768150, 49.3593333 8.6876382, 49.3810576 8.6896077 +55.9432488 -3.1817167, 55.9280547 -3.2292838, 55.9409114 -3.2097700, 55.9703622 -3.1822317, 55.9629073 -3.1944999, 55.9358754 -3.1760269, 55.9344353 -3.2125210, 55.9416804 -3.2026036, 55.9438526 -3.1964947, 55.9592778 -3.1901889, 55.9613996 -3.1820673, 55.9580853 -3.1891489, 55.9468876 -3.1828168, 55.9488813 -3.1834652, 55.9492101 -3.2153200, 55.9544768 -3.1997466, 55.9126235 -3.3200599, 55.9489685 -3.1194874, 55.9328025 -3.3133858, 55.9309502 -3.1942179, 55.9741682 -3.2117651, 55.9296473 -3.1707716, 55.9718479 -3.1748613, 55.9390126 -3.2052535, 55.9379190 -3.2748726, 55.9410176 -3.2095848, 55.9292876 -3.2059198, 55.9598760 -3.2111177, 55.9296228 -3.1686332, 55.9167292 -3.1640730, 55.9351051 -3.2071646, 55.9335197 -3.2097268, 55.9462699 -3.1973167, 55.9324830 -3.1925693, 55.9310878 -3.1608248, 55.9344607 -3.1586816, 55.9350533 -3.2069968, 55.9350865 -3.2070121, 55.9492741 -3.4056494, 55.9335280 -3.2095487, 55.9408795 -3.2097114, 55.9242811 -3.1768126 +55.9340640 -3.1225496 +1 +609 +Maison de Victor Hugo, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin, Musée Cernuschi, Musée d'Art Moderne de la Ville de Paris, Musée Bourdelle, Maison de Balzac, Musée Carnavalet +Gedenkstein Synagoge, ehemalige Synagoge, Bunsenstatue, Johann Wolfgang Goethe, Joseph Victor von Scheffel, Alfred Hettner, Albert Fritz, Dr. Maximilian Neu, Gustav Bopp, Dr. Anna Hamburger, Salomon Deutsch, Simon Hochherrr, Betty Blum, Michael 'Michel' Liebhold, Leopold Oppenheimer, Ludwig Brummer, Alice Hochherr, Anneliese Weil, Arthur Weil, Frieda Hochherr, Ilse Weil, Ingeborg Weil, Julius Weil, Amalie 'Mally' Liebhold, Bertha 'Berthel' Marx, Ella Hochherr, Heinrich 'Heinz' Hochherr, Klaus Liebhold, Leni Blumenthal, Liselotte Hochherr, Margot Hochherr, Martin Liebhold, Ruth Liebhhold, Susanne Hochherr, Adele Bock, Clara Freund, Heinrich Freund, Jeanette Schneider, Louise Neu, Babette Oppenheimer, Hermann Durlacher, Paula Deutsch, Walter Durlacher, Hermann Böning, Ludwig Snopek, Ferdinand Hochherr, Karoline Kaufmann geb. Hess, Leontine Goldschmidt, Albert Kaufmann, Alfred Flor, Betty Snopek, Erika Hochherrr, Eva Hochherr geb. Mainzer, Gerda Kaufmann geb. Fleischhacker, Jella Hochherr, Ludwig Kaufmann, Sara Snopek geb. Isaak, Dr. Johanna Geissmar, Julius Rinklin, Alfred Mombert, Jakob Geissmar, Wasilij Skorkin, Maja Bitsch, Alfred Seitz, Aleksej Bjelow, Anatolij Bachatschow, Elisabeth Geissmar geb. Hirsch, Ella Gutman geb. Mombert, Else Geissmar, Käthe Seitz geb. Brunnemer, Martha Geissmar, Nikolaj Ewdokimow, Pawel Chrebor, Den Toten der Kriege 1914-1918 und 1939-1945, Dokumentations- und Kulturzentrum Deutscher Sinti und Roma +yes +48.8783323 2.3732739, 48.8882750 2.3740777, 48.8773675 2.4068219, 48.8649034 2.3999667, 48.8766834 2.4067529, 48.8358842 2.3867689, 48.8742769 2.3568951, 48.8757672 2.3581886, 48.8648183 2.3992191 +35 +43.5871216 1.4469197 +Tombe du Soldat inconnu +yes +48.1133979 11.5580798, 48.2167392 11.5288862, 49.9606475 11.6260343, 48.1672232 11.5486553, 49.2234454 12.6611867, 48.0529514 11.6690600, 48.0652614 11.6606034, 48.1502805 11.5678752, 49.4141881 12.4140633, 49.7934099 12.2899120, 50.0060004 11.4141590, 48.1724666 11.5709000, 50.3759930 11.7382095, 48.1395725 11.6047921, 48.0954169 11.5566816, 48.0913305 11.6784142, 47.8527854 12.3359177, 49.2915039 11.4151762, 49.2943053 11.4096947, 50.3177512 12.1012234, 50.3176182 12.1006372, 47.6768601 11.8377311, 49.7835917 12.3094464, 48.1106870 12.1546587, 48.1128273 12.1503231, 48.6589620 13.2511100, 48.5745332 13.4639931, 48.1452629 11.4616156, 48.1101440 11.5418164, 48.1188084 11.4450399, 48.1169283 11.4307756, 48.1121499 11.6495213, 49.8693054 11.8872381, 47.8376039 11.7570497, 48.0087205 11.7329256, 48.0216058 11.7817301, 48.4036435 11.9891592, 48.5330823 12.1608939, 47.9110333 11.6747920, 48.5335696 12.1598458, 47.8670880 12.7062222, 47.8282218 12.9077877, 48.0481813 11.7018372, 48.0771391 11.7151740, 48.0772066 11.7150615, 48.1436359 11.5777273, 48.1433386 11.5761135, 48.0955077 11.7278751, 48.7136659 13.2701615, 48.1144089 11.7961741, 48.0597408 11.6211259, 48.0672766 11.6621456, 48.3649975 11.4598175, 49.4491408 11.8705906, 47.9837849 11.7003225, 48.0199151 11.7286030, 49.6241375 12.2242896, 48.1439897 11.5890544, 48.1504174 11.5926415, 48.1425164 11.5819824, 48.1413020 11.5773712, 50.0606042 11.8190607, 48.7256870 13.6028288, 48.7279362 13.6020419, 48.7365394 13.5593114, 48.7345934 13.5963213, 48.7364847 13.5964511, 48.7382158 13.6078165, 49.4275675 11.9755052, 48.7302984 13.6011798, 48.1029807 11.8361371, 48.1350817 11.8749388, 49.3437809 12.3643806, 48.8323467 12.1397113, 48.9733293 12.8819444, 48.2061893 11.5287483, 48.7223938 13.6179050, 48.1011013 11.6307959, 48.2372271 11.5475541, 48.2509071 11.5479241, 49.3771405 12.7026831, 47.8632158 12.0083649, 50.0420746 11.6720609, 49.3618383 12.4477189, 48.0760825 11.5427810, 47.8977079 11.7820554, 50.1048363 11.8889127, 48.1358816 11.5497163, 48.1273073 11.5451210, 48.1365137 11.5736815, 48.9954252 12.0237005, 50.1096264 11.4141541, 48.3455521 12.1317089, 48.0002694 11.7956966, 48.5982247 13.5518268, 48.2568821 11.4533336, 50.3733173 11.5112514, 47.5806808 12.9900205, 48.1010084 11.5468015, 50.0428392 11.4838079, 48.1684687 11.5687037, 48.1711863 11.7155717, 48.6457043 13.5429788, 49.9284665 11.5112743, 48.7163700 13.6172725, 49.0075578 13.4083931, 49.4527997 11.4905453, 48.0766582 11.6626169, 48.6167866 11.9930003, 47.9125378 11.4195676, 49.7497963 11.5185637, 49.0106437 12.4811226, 48.1782705 11.6260539, 49.2660036 12.6113604, 49.5350217 11.8060476, 48.1418146 11.5678012, 48.1372350 11.5755354, 48.8581460 12.2279055, 48.4051825 11.9906620, 48.1350984 11.5760826, 47.7647020 12.3237407, 48.4676545 11.9380643, 48.4683631 11.9372170, 48.4675850 11.9354037, 48.1162625 11.5773134, 48.1155748 11.5803688, 48.2868645 11.4176679, 48.1489142 11.4594334, 48.0960216 11.4131009, 50.0062150 11.4624009, 50.0010014 11.4376082, 50.0346299 11.4677444, 48.2731929 11.4236388, 49.8882725 11.5570158, 48.1637344 11.4579506, 48.1476363 11.6010835, 48.2849053 11.4363469, 48.1799294 11.5750893, 47.8639011 12.6442624, 48.3046921 11.5429995, 48.1798173 11.5493366, 48.1767245 11.5477536, 47.8729654 12.1972526, 48.5308012 11.4964571, 49.7329267 12.0697249, 49.7310450 12.0683404, 48.1596505 11.9979333, 48.0774058 12.0911230, 48.1189200 11.4453575, 47.7684577 11.6491787, 48.7011673 12.0279415, 47.7602384 11.7365376, 47.9707197 11.7805174, 47.7501179 11.6777269, 48.1256571 11.6629814, 49.8294448 11.7475129, 47.7041339 12.0283575, 49.9328745 11.5121784, 47.6520979 11.4211323, 49.2788252 11.4634516, 50.2214645 11.9356910, 48.0742257 11.6533857, 48.0596775 11.6671957, 48.1287664 11.4349115, 47.6824907 11.5717732, 50.2855025 12.1008402, 48.3591440 12.6093476, 48.1403023 11.5739691, 48.2510565 11.5076920, 48.0480677 11.7024896, 49.9961847 11.4216082, 48.0313078 11.6009454, 47.8825405 12.3323531, 47.7086603 11.7559246, 48.1598332 11.5978295, 48.1609141 11.5986413, 50.1443874 11.9537653, 47.6172547 11.7431278, 49.0511001 11.7847275, 49.3243011 12.8922854, 49.3497904 12.8859420, 48.1540535 11.5364883, 48.1577100 11.5604800, 49.5191482 11.5071905, 48.3195203 11.6884744, 50.2548425 12.0280849, 49.9531135 11.4272279, 48.1431039 11.5739255, 47.7518380 11.5542307, 48.1094874 11.6715247, 49.9672770 11.7432501, 49.9909971 11.7468775, 49.9947925 11.7477127, 48.0436899 11.6184000, 50.3302575 12.0690000, 50.0170225 11.7056704, 48.1695372 11.5704440, 48.1951367 11.5726760, 49.9601080 11.8330026, 49.9826914 11.9467996, 48.6105657 13.6209883, 48.7976268 11.5458268, 48.5368053 11.4792245, 48.8988008 11.6460326, 48.8406685 11.8248245, 47.7196300 13.0070178, 47.5031642 13.0178510, 47.5763930 12.9428503, 47.5858088 12.9880887, 50.0418210 11.6710138, 49.0445983 11.4760465, 50.0467669 11.6732356, 47.7945484 11.8652626, 48.8228747 11.8710406, 49.3389467 12.8146818, 48.9651063 12.3820209, 49.6236211 11.4208589, 47.5336896 12.9724350, 47.5301100 12.9619598, 47.5031123 12.9328624, 48.5606131 13.2960716, 49.1260615 12.1333535, 49.1256211 12.1361069, 49.1255453 12.1369761, 49.1044233 11.8101537, 49.0308094 12.0929987, 49.3131522 12.2445134, 49.3422506 12.2848751, 48.8211211 11.5141945, 47.8516723 12.0615827, 47.8485888 12.0672963, 49.2233186 12.1547666, 49.2331221 11.9525808, 50.0948613 11.7333105, 48.1508584 11.6433653, 50.0502973 12.0609370, 48.0377230 11.4622667, 50.0254865 11.6880247, 49.9687258 11.5747570, 49.5032451 11.7435371, 50.0997781 11.6086337, 50.1054293 11.6083476, 49.0116277 13.2042654, 48.1469931 11.6257305, 48.0686738 11.6615712, 49.1844101 12.0257204, 48.6328788 13.1769786, 48.1635399 11.5422013, 48.4554508 13.2099038, 48.1201768 11.6588925, 49.1645854 11.9617084, 48.8284245 12.7200960, 48.8833939 11.7772066, 47.9828283 11.5203806, 48.3081584 12.3332939, 47.8125152 12.1214531, 47.8648888 12.7820620, 47.8519085 12.7832926, 48.3710829 13.2776572, 48.2201211 11.6774482, 48.2245882 11.6741143, 49.4297829 11.5457238, 48.2263875 11.6752754, 48.2137470 11.8802685, 48.1386282 11.5783400, 48.1258240 11.6768961, 49.5129971 11.4296031, 48.5730213 12.5785231, 49.4894386 11.4795879, 49.4894042 11.4795580, 48.9295466 13.5781872, 48.0876973 11.6096828, 48.0713652 11.6061007, 49.4904322 11.4787933, 47.7838440 12.2774723, 48.0645494 11.6250396, 48.1477907 11.6012806, 48.1411124 11.5911449, 48.1420419 11.5694098, 48.6018811 12.3128591, 48.0125422 11.5154911, 47.7705922 11.6748336, 48.5946076 12.4311920, 49.8616405 11.6570392, 49.5466339 11.9989292, 49.5475287 12.0005339, 48.1187522 11.6097745, 49.1624256 12.0837400, 49.1648372 12.0804576, 49.1650022 12.1008606, 49.1641694 12.0801967, 49.2050461 12.0387575, 49.5455014 12.0005665, 48.1012876 11.6309166, 48.1216394 11.5816197, 48.1400779 11.5683717, 47.6753407 11.4912807, 48.1338649 11.5674133, 48.1424482 11.5727949, 48.1225592 11.5679070, 48.0790364 11.7432694, 48.1114620 11.7728378, 48.0217457 11.8128583, 48.0045195 11.8446675, 48.9964840 12.1112392, 49.9123877 11.5130613, 48.1586030 11.5801588, 48.4990785 12.0623824, 48.9742962 13.1352720, 48.2385309 11.5735864, 49.8907112 11.5576850, 49.8988856 11.5412436, 49.5503094 12.0325901, 49.0409666 12.1261312, 48.1136230 11.4812146, 48.1308581 11.5826367, 48.1766390 11.7434041, 48.2167506 11.5288939, 48.2169135 11.5289632, 50.3300146 11.6693425, 48.1970602 11.8109996, 48.1936977 11.4594269, 49.8624559 12.0950023, 49.1593765 11.9394701, 48.1052088 11.4596178, 48.6612244 12.5310457, 50.2247998 12.1446066, 50.2699412 12.1148272, 48.1516220 11.5525356, 48.1619407 11.5761975, 48.1619237 11.5760965, 48.1619235 11.5760954, 48.1618271 11.5756350, 48.1619234 11.5760944, 48.1420322 11.5715095, 48.1425078 11.5724864, 48.1417931 11.5707416, 48.1431184 11.5721749, 48.1388639 11.5739365, 47.8045823 12.2214612, 47.7144504 12.1290737, 47.9098136 11.6754772, 48.1508795 11.5801207, 47.8733749 11.8703542, 49.0079067 12.1165366, 49.3710655 12.2559091, 50.1213622 11.9904154, 47.9029318 12.2354760, 50.3665316 11.9524574, 49.2309993 12.6565069, 49.2309058 12.6607232, 50.3628917 11.9370021, 49.0165046 12.0887646, 49.5129283 11.4823227, 49.4535459 12.1806422, 49.4535406 12.1806536, 49.4535421 12.1806457, 49.4535570 12.1806551, 49.4535474 12.1806465, 49.4535439 12.1806499, 49.6072418 11.6332576, 49.5713889 11.9282692, 48.2484642 11.6828738, 48.1581096 11.6156226, 48.3591631 12.5094907, 48.3586447 12.5343924, 47.7275214 12.1230949, 48.1166096 11.7662870, 50.3113074 11.9095828, 48.0631239 12.2330584, 48.1566658 11.6254379, 49.9523438 11.8670610, 48.2418607 12.4527747, 48.8389038 13.4055938, 48.0007322 12.4072228, 48.3327301 11.6172233, 48.5734486 13.4640106, 48.1598066 11.4148877, 48.1687944 11.4573356, 49.3518845 11.4485073, 50.1421473 11.9753124, 49.0806939 12.0824892, 48.1433520 11.5818825, 48.1440058 11.5811138, 48.1440394 11.5811862, 48.1441172 11.5805089, 48.1435307 11.5821849, 49.6848998 11.5026780, 49.3175931 12.8435562, 48.4010364 13.3712269, 48.0835944 11.8228819, 49.1669984 11.9955209, 49.2813735 12.0377887, 48.5377879 11.8593020, 49.9711209 11.7503505, 49.0070924 12.3792350, 49.9724725 11.7387437, 49.9567536 12.1214341, 48.4732128 13.2135492, 49.9392269 11.4453954, 47.8046498 12.3714877, 48.9002004 13.0360209, 48.3222795 11.8443135, 47.7027468 11.7615738, 48.1491588 11.4340765, 50.3275697 11.8592399, 48.1916228 11.8684710, 48.5435989 13.2387134, 49.1657640 12.0997544, 50.3802233 11.7655001, 47.9160513 11.5805505, 47.9005583 11.6080856, 47.8914385 11.5880742, 47.8662085 11.5423723, 50.3933146 11.6886249, 49.0490274 12.6476381, 47.9480348 11.5977988, 47.9538922 11.4985415, 47.9081813 11.5466083, 47.9375040 11.5280923, 47.9516801 11.4760690, 47.9463678 11.6443382, 50.0888918 11.7391512, 48.1416278 11.5902260, 47.4769809 12.9616386, 48.1617099 11.5810683, 48.0159193 11.8961216, 49.7569832 11.5351092, 47.6174194 11.7819493, 48.0182478 11.7123423, 48.7636807 11.7840985, 48.6352619 13.1810639, 48.6332943 13.1730816, 50.1067324 11.6086009, 48.5166731 12.1256140, 48.6989114 11.8723543, 48.5436782 12.1537502, 48.1266612 11.6705674, 47.8670370 12.0073600, 48.1641322 11.5315335, 49.8668080 11.4201143, 48.2344666 11.6737996, 47.9211183 11.4202190, 48.3057015 11.4866372, 48.1460001 11.5805266, 48.1768831 11.6030792, 49.5281851 11.4954622, 48.1966964 11.8107166, 48.6333358 12.4004686, 48.1200168 11.6770560, 48.1192391 11.6769136, 47.8477656 11.5822566, 48.1953186 11.5755861, 47.8627828 12.3682165, 48.9872511 13.1747092, 50.2303774 11.6747940, 48.6913587 12.2076836, 48.6904770 12.2075236, 49.3391485 12.1214552, 49.3252029 12.1130808, 49.6470044 12.0474891, 48.3041089 11.8588743, 48.5682510 12.3257440, 48.6183133 13.3896849, 47.9844666 11.7161086, 47.8664443 11.7837703, 50.2224054 12.0285376, 49.3115707 12.0782223, 47.9806706 11.5715732, 47.6407172 11.8119658, 50.1586517 12.0450508, 50.3959147 11.7517171, 50.0754361 11.6758203, 48.1811702 11.5169736, 48.1477773 11.7316890, 48.1478657 11.7322591, 49.5120207 11.4438338, 49.5030032 11.5429371, 48.8938835 13.0411789, 49.1640074 13.1074417, 48.7416090 11.4478339, 49.9233769 11.6005430, 48.5741240 12.5789391, 48.5553424 12.4154760, 48.7499032 12.3372814, 47.8177812 11.5831907, 50.2481179 12.0346542, 47.7181107 11.7940329, 50.0244804 12.3084366, 48.0605044 12.2198648, 50.1755442 11.7976128, 47.7560236 11.7451567, 47.7340849 11.7658323, 48.1307110 11.5923150, 47.8593309 12.1240177, 50.0379127 12.0038680, 49.9946339 11.7861359, 49.5583611 11.9772712, 50.1907032 11.6789749, 47.9313740 11.4208664, 49.3271140 12.1141460, 50.1082542 11.6047778, 49.0205921 12.0952396, 49.2250749 11.5402651, 49.3424310 12.5290121, 48.2069696 11.6425405, 48.0587790 11.7725479, 50.0131184 11.5462805, 47.6420716 12.1021865, 49.8671429 11.9362476, 50.2052252 12.1457506, 48.8633623 13.6780136, 48.0969582 11.5924226, 47.8252837 12.0966772, 47.8521215 12.0634403, 49.9086379 11.7596314, 49.3262209 12.9527050, 50.0328796 11.7627971, 49.9491040 11.9686054, 50.0150071 11.8553126, 50.0325244 11.7628357, 47.6434474 11.7466035, 49.6753801 11.4191505, 47.6450803 11.7423983, 47.8463854 12.2296970, 48.8136490 11.5110770, 48.4008166 11.7440251, 47.9339678 12.7348143, 47.9337012 12.7343361, 49.2434542 12.9349168, 49.0351785 11.5424379, 49.2241870 12.6609190, 48.1344222 11.5961059, 48.1509192 11.5766855, 47.7408140 12.7027315, 48.0901367 11.6484822, 49.7273904 11.4744562, 49.6686464 12.0996487, 47.6734563 11.5974212, 48.4987681 12.1754338, 48.9399526 13.6174750, 47.8307822 11.8016392, 48.8115053 12.2818893, 49.8984450 12.0457164, 48.9577183 12.8734443, 48.5821928 13.2391059, 48.5148832 11.5443784, 48.5114077 11.5445715, 49.0348960 12.6122460, 49.2132941 12.6724124, 49.2223433 12.6878565, 48.9670759 13.3186444, 48.9608782 13.3116962, 48.9602160 13.3124150, 48.9796758 13.3094109, 49.0242625 12.1398854, 49.0535718 12.6805814, 49.0535391 12.6763560, 48.9562504 13.4658944, 50.0226249 11.8149188, 49.0188390 12.0832940, 47.7528561 12.5191508, 50.0967401 11.5404060, 49.8170477 11.8481107, 49.8174632 11.8597217, 49.8262324 11.8368387, 48.3225772 11.6015380, 48.2303373 11.5684865, 48.5502505 11.9452100, 48.1479010 11.8192123, 48.1522516 11.8536961, 48.1579435 11.8151236, 48.1687671 11.9126528, 48.9652790 13.5883822, 48.8272520 12.3966062, 48.1739333 11.5481724, 49.5254924 11.9614494, 50.1223636 11.7840136, 50.0395891 11.9515272, 50.0480085 11.9954977, 47.6254457 12.5110784, 48.9426280 12.4692627, 48.5634852 11.9882072, 48.8265783 13.7752130, 48.9667118 12.8349224, 49.8210346 11.7431909, 47.8083086 12.5920009, 48.9701961 12.3265193, 48.7957646 12.6424422, 48.8838557 12.5678186, 50.0615527 11.8200016, 49.0246651 12.6579342, 48.1481073 11.7289669, 47.8993548 12.8624100, 47.8673146 12.1277265, 48.2766485 12.3846048, 49.9473973 11.6150938, 49.5225359 12.2661674, 49.8873532 11.4850110, 49.9627815 11.4660231, 48.1674911 11.5451430, 49.6514341 11.4676563, 49.6772117 12.1660213, 49.5444496 11.9443589, 49.5447464 11.9443084, 48.0937782 11.4886530, 49.6059368 11.5082344, 48.1408800 11.5640079, 48.9650564 13.5881898, 48.7565516 13.5148193, 49.5435705 11.9422976, 47.6210461 12.1777480, 49.4477239 11.6857625, 49.4460554 11.6835686, 49.8879820 12.4296686, 49.0139001 13.2324271, 47.9822735 11.4885352, 48.1094506 11.7266607, 50.3106075 11.9096814, 48.2477983 11.4401776, 48.2511189 11.4408524, 48.2511196 11.4408547, 48.2471125 11.4395942, 48.2471134 11.4395935, 48.2511207 11.4408524, 49.5019190 12.0527679, 49.7315595 12.3461012, 49.5100108 12.5477321, 48.2927027 11.4798357, 48.2352747 12.8234436, 49.6767965 12.1612248, 49.9090658 12.5278358, 49.6821913 12.1675909, 50.0497889 11.6009071, 47.8502657 12.9639733, 47.8941448 12.1380495, 48.7635782 11.4224738, 48.7633148 11.4204362, 48.7638216 11.4214954, 48.7646048 11.4293850, 48.7633155 11.4204348, 48.7659842 11.4300553, 48.7638215 11.4214919, 48.7638216 11.4214937, 48.7646069 11.4293837, 48.7646059 11.4293843, 48.7646054 11.4293827, 49.7772736 12.0910176, 48.0831501 11.5408608, 49.0152337 12.1047908, 49.8986046 11.8430735, 48.1200261 11.5495680, 48.1200218 11.5495670, 48.1200271 11.5495696, 48.1311897 11.5566510, 48.1200196 11.5495694, 48.1200271 11.5495680, 48.1200217 11.5495702, 48.1200228 11.5495654, 48.1200218 11.5495654, 48.1311905 11.5566500, 48.1200218 11.5495718, 48.1200260 11.5495696, 48.1200228 11.5495687, 48.1200228 11.5495718, 47.9829128 12.1298784, 49.0148423 12.0988033, 49.8970555 11.7010378, 48.3073913 11.9294207, 49.5220581 12.0202369, 49.0188010 12.0865158, 49.0196418 12.1076991, 49.0224799 12.0972137, 49.0086624 12.1140073, 49.0079845 12.0596346, 49.0063004 12.0842723, 48.0643201 11.4200679, 49.9852673 12.4733816, 49.5182739 12.0223498, 49.0161006 12.0649200, 48.1554042 11.5459282, 49.5036987 11.5105657, 49.5039492 11.5098909, 47.8169133 12.3425923, 49.0155580 12.1020225, 48.8160063 13.3690565, 48.2104282 11.6748380, 49.0186698 12.0861070, 49.0143791 12.0568333, 49.0128154 12.0501601, 47.7242216 12.8623232, 49.9480493 11.5152437, 47.7185209 12.1322924, 49.0135863 12.0980858, 49.0141433 12.0909775, 48.9616275 13.3707694, 50.0571318 12.1630188, 48.5352936 12.1538950, 49.0230406 12.0759531, 49.9695730 11.8248926, 47.8692224 12.6550306, 49.0139872 12.0993480, 50.0456727 12.1526067, 48.0827435 11.8239421, 48.7789409 13.4416277, 48.0701021 11.8683821, 49.2279800 12.3591491, 49.5978247 12.1277408, 49.9636948 11.4430543, 48.6567340 12.3030025, 48.0829495 11.8239749, 47.7892014 12.3063237, 48.9213941 13.3631052, 50.0468919 11.7900887, 48.1275732 11.7411203, 50.1018467 11.9289190, 47.9808205 11.5709699, 48.8722097 13.3716860, 48.0189284 11.5913994, 47.9712056 11.5651943, 50.0720623 11.7343687, 49.5057702 12.0479512, 49.0701610 12.3965810, 49.0088027 12.2709315, 48.1433019 11.6171321, 47.7394301 12.0912820, 48.2748956 11.4707489, 47.7658961 12.3264238, 48.0606524 11.8506605, 48.0225887 11.9300372, 50.0608396 12.1181770, 47.8852671 11.6003827, 47.8423723 11.5854156, 47.9290227 11.4768712, 48.8410570 11.5318713, 47.6534906 11.5020849, 50.0798842 12.1424534, 49.9405337 11.5815981, 48.1525638 11.7410681, 48.1253719 12.6753670, 49.2820607 11.4621282, 49.2767281 11.4605954, 49.2752957 11.4611307, 49.2737454 11.4693648, 49.2791542 11.4630600, 48.2355809 12.4317737, 48.2225206 12.4269633, 50.0096304 11.5342528, 50.0091730 11.5180114, 47.5883957 12.9893172, 47.8480477 11.4745505, 48.0620830 11.5214274, 49.1519360 12.1734992, 49.7531999 11.8335514, 48.0465646 11.5142681, 47.6410480 11.9992875, 48.0397728 11.5225044, 47.6257705 11.7093124, 49.8782430 12.3371545, 48.5308753 13.1752456, 48.6353244 13.4786526, 48.0827751 11.8241935, 49.2069877 12.0869222, 48.2681020 11.4687779, 49.0961493 12.0473105, 49.5687334 11.5124981, 47.6623215 11.4890566, 47.6615700 11.4886820, 47.6528220 11.4593720, 48.1678123 11.9108847, 48.4803108 11.9459449, 48.4801120 11.9405859, 47.7615614 12.1850432, 48.4001496 11.7431475, 48.4001523 11.7431449, 48.4001532 11.7431439, 48.4001514 11.7431458, 48.4001559 11.7431412, 48.4001541 11.7431430, 48.4007607 11.7445270, 48.3995132 11.7424412, 48.4001505 11.7431466, 48.4001550 11.7431421, 48.0302320 11.5198002, 50.1335623 11.6582094, 49.0900685 13.3194516, 48.1636994 11.4992629, 48.1638954 11.5006114, 49.8268841 12.4254832, 49.7736898 11.4977477, 47.7334230 12.8910243, 49.6730978 12.1569376, 49.4450506 11.8566044, 49.4450517 11.8566084, 50.0343837 12.0057082, 50.0389404 12.0059588, 50.0901476 11.9226350, 49.9046225 11.5856532, 49.0196241 12.0926982, 49.0196255 12.0926983, 49.0211080 12.0903255, 49.0312029 12.1063028, 49.0312049 12.1062961, 49.0312084 12.1063023, 49.0325759 12.1057144, 49.0185305 12.0953889, 49.0185345 12.0953894, 49.0190701 12.0946023, 49.0176917 12.0961121, 49.0185908 12.0921057, 49.0185915 12.0921105, 49.0185924 12.0921057, 49.0185926 12.0921125, 49.0185929 12.0921080, 49.0185929 12.0921105, 49.0185931 12.0921031, 49.0185934 12.0921144, 49.0185941 12.0921007, 49.0185951 12.0921031, 49.0185952 12.0921079, 49.0199275 12.0918002, 49.0199275 12.0918026, 49.0207086 12.0971412, 49.0178839 12.0974031, 49.0170893 12.1040414, 49.0197670 12.0892004, 49.0197695 12.0892010, 49.0197721 12.0892016, 49.0148994 12.0776648, 49.0149005 12.0776669, 49.0149008 12.0776631, 49.0149019 12.0776653, 49.0194381 12.0923903, 49.0197664 12.0922483, 49.0197664 12.0922513, 49.0197669 12.0922536, 49.0185726 12.0948193, 49.0185728 12.0948165, 49.0185744 12.0948225, 49.0185745 12.0948195, 49.0185746 12.0948167, 49.0183173 12.0948407, 49.0180503 12.0962374, 49.0180507 12.0962358, 49.0180522 12.0962387, 49.0180527 12.0962370, 49.0180531 12.0962355, 49.0168881 12.0944982, 49.0168905 12.0945030, 49.0168908 12.0944989, 49.0168935 12.0944996, 49.0169572 12.0964730, 49.0187855 12.0866987, 49.0187856 12.0866955, 49.0187871 12.0866972, 49.0196952 12.0908512, 49.0196955 12.0908472, 49.0196970 12.0908553, 49.0196980 12.0908517, 49.0196983 12.0908477, 47.6718840 11.6473889, 49.0244130 12.0975018, 48.0607948 11.6184129, 47.6484915 12.0931252, 48.6862566 11.6120963, 48.1513324 11.5941030, 47.6772885 12.4698671, 47.8572809 11.7969272, 50.0185900 11.5947993, 50.0415115 11.6710379, 50.0455047 11.6729648, 50.0572140 11.6809567, 47.6681210 11.7064390, 47.6677988 11.7053201, 47.6609640 11.7055680, 49.6728265 12.1490093, 48.9675009 12.3906760, 50.1159200 11.8631050, 47.6471760 11.9526540, 48.6122223 12.1926004, 50.0182437 11.8324940, 50.0190952 11.8331859, 49.9335870 11.7378440, 49.9329190 11.7325956, 50.0909091 12.0894665, 48.2808759 11.6737437, 49.5247695 11.9030735, 48.9718495 13.4328515, 50.1586640 11.5704392, 49.9850909 11.6517051, 50.0125545 11.6992003, 47.7269118 12.1058124, 49.4938239 12.1796909, 49.2736602 12.5400565, 48.4825420 11.6301966, 47.6831295 11.5763012, 48.3986459 11.7457661, 48.5949122 11.6561854, 47.8697313 12.6394417, 49.0180645 12.0899199, 48.5415771 12.1614274, 49.5063706 12.0586238, 48.0769911 11.5173999, 49.5392559 12.1610923, 48.0257085 11.5959285, 49.9347352 11.5927808, 50.1764459 11.7554872, 48.7262394 11.4138936, 49.5136483 11.9690411, 49.5108070 11.9702656, 48.2336061 12.7101152, 49.2954987 12.3550665, 48.1060045 11.4224434, 48.1164516 11.7457503, 47.7227471 12.8663906, 48.0816872 12.0609230, 50.2152548 12.0074059, 50.2320320 11.9824924, 48.3291750 11.9250679, 48.5052660 13.4522395, 48.2398892 12.6898530, 47.7347322 12.8876517, 47.6648917 11.8866486, 47.7224481 12.8774277, 50.1253347 11.5988929, 49.0373017 11.4713987, 48.4045914 11.9889563, 48.3659809 11.6092197, 49.9061473 11.7649973, 48.1125639 11.7873969, 48.8035706 11.4955081, 48.8017857 11.4931013, 49.7661741 11.9355854, 48.8378723 12.1833660, 49.8506179 11.5871782, 48.1263201 11.8782617, 48.0432704 11.5177994, 47.7260291 12.1109024, 48.0957791 11.7622930, 47.7351805 12.1103036, 47.7502995 12.0906760, 47.6631098 11.9347543, 49.3619592 12.3332809, 48.4552782 11.9126341, 48.1247230 11.9803220, 48.5728017 13.4633595, 48.1405104 11.5935655, 48.1220763 11.5438001, 48.1405112 11.5935605, 48.1405097 11.5935706, 48.1220770 11.5437989, 48.3070385 11.9079993, 49.8813986 12.3387714, 49.8843655 12.3365134, 47.6923168 12.2660427, 48.1580588 11.4442607, 49.8556988 12.2213404, 47.6931296 12.3891410, 47.6502013 11.9345166, 47.6501599 11.9345446, 47.6485872 11.9324325, 48.2985551 11.9050355, 48.9239093 13.4441838, 48.1647650 11.5899480, 48.1282133 11.5527531, 48.1255776 11.6306425, 50.0129397 12.0050924, 50.1047922 12.1674481, 47.8567739 11.6863454, 48.2490350 11.5586567, 49.0006194 12.3996130, 48.9993664 12.3982370, 48.0739860 11.5144815, 48.4306622 11.5979945, 48.8303475 12.9625458, 48.8303482 12.9625450, 48.8303492 12.9625441, 48.8342572 12.9618574, 48.8342580 12.9618573, 48.8342589 12.9618574, 48.9700616 13.5641641, 47.8454487 12.3706689, 47.9519330 12.2752926, 49.3528140 12.3797332, 49.3790168 12.3987072, 49.5561735 11.5420028, 48.3234735 11.5329278, 48.5324057 12.1498019, 48.1290254 11.6311058, 49.5458338 11.5409081, 49.5564497 11.5434917, 48.3251363 11.8655590, 47.7186656 12.8727953, 47.7283278 12.8874375, 48.2176073 11.6301119, 47.6097012 12.8662571, 50.1338452 11.4297540, 49.5048933 12.6154745, 49.9358251 11.5223760, 48.8453913 12.9581656, 48.1385566 11.5968928, 48.2936431 11.6542585, 49.0757627 11.9068162, 49.4786149 12.4996766, 48.1815609 11.5157431, 48.8482307 12.9391855, 48.1300418 11.6068213, 49.9689695 11.5310708, 48.8815221 12.5648911, 48.8818937 12.5646408, 49.3567688 12.4175171, 48.1965731 11.5757210, 49.1026763 13.1112906, 47.8040137 12.8559330, 49.4258166 12.6794486, 48.9941475 13.2205163, 47.5953829 11.7822341, 47.6044414 12.9864303, 47.7498419 12.8495333, 47.7545069 12.8488217, 47.7551318 12.8493986, 47.9900882 11.6446685, 48.0493957 11.4506929, 47.5823437 12.8658692, 47.5823262 12.8659575, 48.1615304 11.5918723, 47.5421323 12.9394960, 47.5444136 12.9527252, 49.7647053 11.7962899, 49.8618788 11.8979045, 50.1152569 12.1216525, 50.1046531 12.1021386, 50.1035974 12.1287697, 49.5111470 11.4098766, 47.8564924 12.4847039, 47.7053568 12.0322933, 47.7092784 12.0441586, 47.7039798 12.0231242, 48.2682507 11.4695839, 48.2721605 11.4646675, 48.2718239 11.4652688, 48.2716386 11.4650139, 48.2721166 11.4647511, 48.2724362 11.4649601, 47.7292845 12.4392342, 47.7634284 12.4516572, 49.9618409 11.6711507, 49.0108389 12.4811544, 47.7468620 12.2479646, 47.7400398 12.2332605, 49.6406789 12.4388138, 49.1798457 11.7586122, 49.8006520 12.3857626, 49.9514872 12.1060524, 48.0313595 11.5868381, 47.7267192 12.8687083, 47.6686694 11.6625171, 48.1342423 11.5700387, 49.7830222 11.4348553, 48.0260123 11.5251821, 47.6604914 11.5080991, 47.6614539 11.5187932, 47.6593777 11.5030454, 47.6498945 11.4676288, 47.6601322 11.5051051, 48.9513267 13.4829135, 48.8736549 12.0076293, 48.1349504 11.5943735, 48.0271457 12.5541518, 47.6433999 12.1751083, 47.6407574 12.1696156, 47.6411215 12.1703695, 47.6403878 12.1635277, 48.3996544 11.8520538, 49.9587512 11.5802173, 49.9447427 11.5773091, 49.9442251 11.5776919, 49.9443692 11.5763951, 49.9410438 11.5748716, 47.8659427 12.0111514, 48.4056651 11.9909489, 48.0784519 12.5696682, 47.9165852 12.0318879, 47.7232401 12.8761185, 47.6431611 11.9170922, 47.8662840 12.0159958, 47.6173936 11.7076257, 49.8788169 12.3370226, 47.6996482 12.2430712, 49.2150275 12.7622283, 49.7516975 11.7265102, 48.6835709 11.6132535, 48.6848902 11.6136339, 47.8393271 11.9691096, 47.7020991 12.0130841, 48.3479535 11.9235535, 47.7021170 12.0131818, 47.9718784 11.6528135, 47.7200677 12.8755116, 47.7581962 12.2737426, 47.6493815 11.9316988, 48.8049165 11.8889334, 48.0040033 11.5136520, 48.0397308 11.5226714, 47.9367272 12.9322049, 47.7108046 12.1251726, 47.6339493 13.0038067, 47.6442786 12.0466307, 49.2791168 11.4474779, 49.2765759 11.4603898, 47.8032737 11.5000786, 48.8311137 13.4591452, 49.2784356 11.4552455, 49.2800695 11.4584632, 48.3996250 11.7420086, 49.2804964 11.4619377, 49.4913726 11.7661043, 47.6472166 11.9289408, 49.0135720 12.1459346, 49.1071095 13.2047136, 48.1073936 11.4528835, 49.6592217 11.5167515, 49.9394884 11.5305029, 49.3329703 11.4406888, 49.0317793 12.0933680, 48.1521700 11.5278539, 48.1497300 11.5273092, 47.7197728 12.8759652, 48.7841110 13.5796127, 47.8826998 11.9182081, 48.3415480 11.9222212, 48.1627561 11.5861396, 49.8050396 11.5284272, 49.0512827 11.8145616, 48.7864857 13.3751383, 49.6899734 12.1492885, 48.9446626 13.6012764, 48.9402070 13.5950476, 48.0795080 11.5270511, 48.8156148 11.8875333, 49.6458378 12.2104212, 49.6369228 12.2020412, 47.7180909 11.6534598, 49.8234349 11.6667095, 49.1737777 12.8528844, 48.1970574 11.4581073, 49.6766225 12.1607203, 49.6769325 12.1608543, 49.6772034 12.1609933, 49.1778799 11.4136321, 49.6833617 12.1507245, 48.1717682 11.7160853, 49.1784941 11.6516372, 48.5259749 12.3142889, 49.3778005 12.7064711, 48.5330205 12.1628553, 48.5305960 12.1578907, 48.7356699 11.5492059, 47.8508053 12.7851381, 47.6764212 11.8710364, 48.1424597 11.5822622, 49.8247899 12.1940792, 48.1450137 11.5810073, 48.2393390 11.4385684, 48.2564046 11.4654355, 48.2596082 11.4451115, 48.2605838 11.4347639, 48.1678985 11.7149075, 47.7873372 11.8339232, 47.7200996 12.7699376, 47.6054977 12.9858304, 47.6241300 12.9745039, 47.7900190 12.0771110, 48.7548713 13.8178262, 47.7101114 12.1139656, 47.6945682 13.0460095, 49.8841615 11.9164322, 49.3432447 12.3640770, 49.3300666 12.4136162, 47.7641979 11.9958704, 50.3416351 11.7143397, 50.0666062 12.0711517, 49.9480885 11.8915341, 48.1366177 11.5770164, 48.6879045 12.2017217, 49.7220245 12.1913195, 49.7204497 12.1998025, 49.7154331 12.2107545, 49.5983479 12.2578390, 50.0777379 11.9240709, 47.9417533 12.9357259, 47.9422619 12.9367666, 47.9424226 12.9368673, 47.9386089 12.9354309, 48.7557813 12.5888625, 50.0964003 11.6507085, 49.0165313 12.0929675, 49.0142314 12.0978208, 49.0142509 12.0983715, 49.0145444 12.0943274, 49.0148619 12.0936434, 50.1071864 11.6113150, 48.1788331 11.4617680, 49.8308091 11.9002786, 49.8121183 11.6156822, 48.3049382 11.9087780, 48.6919369 11.7130487, 48.1636845 11.4571067, 48.9389978 13.5126937, 49.6626801 11.9936761, 48.9435067 12.0285624, 47.7561605 12.0417945, 49.8026070 12.1691206, 49.8075440 12.1639654, 49.8033895 12.1561119, 49.8018280 12.1559349, 47.7409841 12.0154738, 47.7481852 12.0511155, 47.7349927 12.0534271, 50.0966697 12.2230986, 50.0974045 12.2239071, 50.0965526 12.2228208, 48.3710824 13.2773536, 47.6056995 12.9094085, 47.6057338 12.9091081, 49.8555425 12.2214595, 47.7601898 12.4233394, 47.7608375 12.4316584, 47.8611631 12.1264453, 49.9758154 11.7336493, 47.6453043 12.0985512, 47.6452987 12.0985287, 47.6537812 12.0983658, 49.9590090 11.5788897, 49.9589325 11.5810671, 47.7224967 12.8480335, 49.7633614 11.4467299, 47.7063746 12.0346578, 47.6900275 12.7995463, 47.6900364 12.7994766, 47.6900311 12.7995088, 49.9462668 11.5753721, 48.2889659 11.4600298, 48.2866384 11.4602750, 48.2860387 11.4609057, 48.2863124 11.4604083, 48.8822337 12.5741336, 47.7670520 12.2581243, 47.7766786 12.2687321, 48.5106716 13.4421507, 47.9241734 12.0134157, 47.7210112 12.8922962, 47.7786600 11.7336551, 48.1019055 11.5954917, 48.2671203 11.4312604, 48.2720955 11.4679281, 49.7343649 12.3586803, 48.9678967 12.3917663, 48.0683448 11.6098579, 49.3663032 11.9178031, 48.7588183 13.0169252, 47.8544613 12.1599328, 47.7221913 12.1894134, 47.7246273 12.1709999, 47.5401994 11.5451552, 49.4706490 11.9408120, 47.6579035 11.9415792, 49.5018247 12.5383206, 48.1398408 11.5780689, 48.1671028 11.5483431, 48.2700458 11.4683333, 48.7845193 13.8019909, 49.0518566 11.7822209, 49.4932776 11.4751642, 48.1413436 11.5969927, 48.1428635 11.4125410, 48.1940954 11.4600752, 48.7656923 11.5351364, 48.4067613 11.7574390, 47.7259635 12.1148467, 50.3199340 11.9165126, 49.0413060 11.4708290, 48.1403638 11.5719644, 48.1400691 11.5731123, 48.1401611 11.5727358, 48.1402587 11.5723472, 47.7730997 11.5727335, 49.0190540 12.0985788, 48.0938038 11.4659904, 47.9414011 12.6023026, 49.7354916 12.3568963, 50.3121132 11.9174085, 49.0183174 12.0958518, 48.2350566 12.4315667, 48.1532035 12.8174680, 48.1570952 12.8253903, 50.1509972 12.0529393, 47.7777085 12.3663525, 47.9707607 11.7802007, 48.2934356 11.9067051, 47.6673450 11.7145331, 47.8657489 12.0113892, 49.1974796 12.7466092, 48.1375637 11.5880668, 49.4206070 11.8806656, 49.8621215 11.9530041, 48.0991170 11.4784139, 48.0978106 11.4892883, 49.2841959 11.4810539, 48.9057654 12.6920206, 48.1039524 11.5792060, 48.2874464 11.4608564, 47.7785483 11.7334497, 47.7788087 11.7333363, 49.0063017 12.0967461 +55.9502048 -3.1904658 +1 +yes and 8 and 55.9354769 -3.1317550, 55.9368505 -3.2110421, 55.9773363 -3.1760364, 55.9574672 -3.1996888, 55.9378769 -3.1933451, 55.9401022 -3.1817999, 55.9712125 -3.2539350, 55.9342476 -3.2456539 +yes +1 +yes +120 +John Redpath Electrical Contractor +190 +no +20 +48.8760867 2.3599561, 48.8968424 2.3818049, 48.8433854 2.3736074, 48.8242892 2.3764902, 48.8243395 2.3766423, 48.8798131 2.3564484, 48.8762217 2.3586964, 48.8966561 2.3798725 +49.4126021 8.6894511 +no +2410 +58 +52.0455273 8.4506902, 52.0583801 8.5520281, 52.0441674 8.5341281, 52.0579438 8.4922378, 52.0929733 8.5326795, 52.0238436 8.5234911, 52.0555549 8.5378820, 52.0498292 8.5592441, 52.0292398 8.6021218, 52.0292227 8.6009951, 52.0272514 8.5957092, 52.0306293 8.6106186, 52.0321219 8.6054609, 52.0473461 8.5908186, 52.0469513 8.5887087, 52.0231198 8.6053870, 52.0580464 8.6142089, 52.0205860 8.5678184, 52.0581150 8.4919573, 52.0312632 8.5407538, 52.0319234 8.5420151, 52.0462690 8.6409561, 52.0191448 8.5779535, 52.0184508 8.5657079, 52.0743431 8.6025251, 52.0754057 8.4694042, 52.0386901 8.5655696, 52.0318962 8.5656184, 52.0273349 8.5382436, 52.0542712 8.5439409, 52.0181631 8.5466796, 52.0980842 8.5181968, 52.0949444 8.5198350, 52.0522750 8.5245659, 52.0456077 8.5212121, 52.0419948 8.5160247, 52.0292851 8.5181917, 52.0418895 8.5307595, 52.0327138 8.5227649, 52.0314754 8.5141184, 52.0295337 8.5150115, 52.0157211 8.5484732, 52.0306430 8.5117068, 52.0226396 8.5511428, 52.0223364 8.5495579, 52.0233884 8.5519795, 52.0234840 8.5536985, 52.0265557 8.5458287, 52.0185875 8.5275250, 52.0186597 8.5289951, 52.0209783 8.5457695, 52.0294891 8.5129716, 52.0267434 8.4659864, 52.0459901 8.5425345, 52.0682897 8.5224152, 52.0719588 8.5498716, 52.0442328 8.5433584, 52.0563214 8.5500007, 52.0205357 8.5287442, 52.0926733 8.5329308, 52.0981428 8.5181712, 52.0359476 8.4981338, 52.0327367 8.5222372, 52.0719981 8.5498472, 52.0184308 8.5473987, 52.0208455 8.5454983, 52.0385624 8.4870408, 52.0946122 8.5195110, 52.0586804 8.5511665, 52.0230297 8.5524206, 52.0307135 8.5117101, 52.0267458 8.4660597, 52.0459428 8.5203701, 52.0207097 8.5292682, 52.0261594 8.5241168, 52.0312156 8.5405749, 52.0272333 8.5379784, 52.0315830 8.5423173, 52.0526516 8.5253445, 52.0468920 8.5467931, 52.0186691 8.5656539, 52.0472610 8.5893105, 52.0391035 8.5656780, 52.0315635 8.5657826, 52.0543651 8.5447212, 52.0462874 8.6407281, 52.0579586 8.6142140, 52.0742793 8.6022273, 52.0293357 8.5180617, 52.0206603 8.5676185, 52.0425290 8.5168560, 52.0270594 8.5966793, 52.0323486 8.6056893, 52.0307766 8.6106210, 52.0230896 8.6059771, 52.0500810 8.5586981, 52.0580908 8.4924175, 52.0455684 8.4510738, 52.0421599 8.5307527, 52.0294960 8.5152776, 52.0314045 8.5141317, 52.0586095 8.5515568, 52.0156406 8.5480803, 52.0556849 8.5374131, 52.0308117 8.5117948, 52.0262032 8.6392966, 52.0265579 8.5454510, 52.0150885 8.5416301, 52.0184126 8.5282924, 52.0459863 8.5425744, 52.0754750 8.4692456, 52.0679871 8.5225050, 52.0691401 8.4845397, 52.0191169 8.5773881, 52.0297068 8.6015894, 52.0261594 8.5241168, 52.0363421 8.4985163 +429 +166 +memorial +4 +49.4236325 8.6489134, 49.4054825 8.6765974, 49.4085411 8.6936835, 49.4178011 8.7610141, 49.3796459 8.6697617, 49.4278793 8.6839291, 49.4013876 8.6762755, 49.3743789 8.7031911, 49.3734822 8.6802951, 49.4367405 8.6791812, 49.4328280 8.6823664, 49.4276958 8.6865270, 49.4306638 8.6826578, 49.4094722 8.7027714, 49.3790081 8.6915773, 49.4044750 8.6884416, 49.4024782 8.6846927, 49.3989037 8.6901330, 49.3805544 8.6588755, 49.4060908 8.6592832, 49.3734275 8.6805145, 49.3758039 8.6636769, 49.4080460 8.6903558, 49.4088898 8.6922599 +Heidenloch, Römischer Tempel, Lochheim, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall +no +yes +48.8600225 2.3936303, 48.8631279 2.3912635, 48.8597319 2.3936651, 48.8598029 2.3985154, 48.8597855 2.3942322, 48.8591071 2.3914902, 48.8596833 2.3988939, 48.8627870 2.3936382, 48.8601213 2.3928080, 48.8588033 2.3945025, 48.8623244 2.3917870, 48.8599553 2.3920732, 48.8623521 2.3905310, 48.8611410 2.3949350, 48.8626557 2.3947199, 48.8627718 2.3931199, 48.8624253 2.3954178, 48.8600462 2.3938832, 48.8599858 2.3940879, 48.8592676 2.3937520, 48.8630712 2.3949750, 48.8622181 2.3963152, 48.8597856 2.3928042, 48.8618038 2.3979473, 48.8601567 2.3927356, 48.8745532 2.3997688, 48.8636700 2.3961570, 48.8631900 2.3959850, 48.8640090 2.3946760, 48.8631340 2.3951910, 48.8630490 2.3970150, 48.8629220 2.3974440, 48.8623290 2.3973160, 48.8620890 2.3973800, 48.8619200 2.3982600, 48.8608190 2.3965430, 48.8621460 2.3960710, 48.8627670 2.3962430, 48.8625690 2.3953630, 48.8625410 2.3953840, 48.8621740 2.3956630, 48.8612420 2.3984100, 48.8608330 2.3978950, 48.8606210 2.3980880, 48.8605360 2.3986240, 48.8607900 2.3993750, 48.8604800 2.3994180, 48.8610160 2.3990960, 48.8601410 2.3998690, 48.8599860 2.3999120, 48.8599430 2.3998900, 48.8599157 2.3998601, 48.8598870 2.3998260, 48.8597460 2.3996760, 48.8597030 2.3996110, 48.8595760 2.3988820, 48.8596330 2.3988390, 48.8593930 2.3981520, 48.8601690 2.3998480, 48.8380895 2.2848918, 48.8381983 2.2846836, 48.8392283 2.2918126, 48.8383179 2.2847059, 48.8603950 2.3968860, 48.8602820 2.3969940, 48.8602260 2.3982600, 48.8612140 2.3960710, 48.8613270 2.3953840, 48.8614820 2.3946980, 48.8616660 2.3945260, 48.8611655 2.3949235, 48.8612140 2.3948910, 48.8611860 2.3949120, 48.8618070 2.3951910, 48.8618920 2.3955350, 48.8611290 2.3953200, 48.8611570 2.3952770, 48.8610590 2.3953630, 48.8606490 2.3953200, 48.8605360 2.3954060, 48.8593650 2.3971870, 48.8589830 2.3970370, 48.8584032 2.3956762, 48.8628940 2.3934100, 48.8627390 2.3931740, 48.8623570 2.3934100, 48.8620890 2.3935600, 48.8625690 2.3930450, 48.8622870 2.3931960, 48.8615250 2.3925090, 48.8615530 2.3925730, 48.8624140 2.3921230, 48.8635010 2.3912640, 48.8633310 2.3906640, 48.8622020 2.3918220, 48.8613550 2.3923590, 48.8616940 2.3901270, 48.8622870 2.3903420, 48.8617790 2.3912860, 48.8607200 2.3892260, 48.8601130 2.3904280, 48.8605360 2.3911140, 48.8607060 2.3915650, 48.8607223 2.3916025, 48.8607340 2.3916510, 48.8608750 2.3921870, 48.8607480 2.3911790, 48.8607200 2.3911140, 48.8607060 2.3910500, 48.8606490 2.3908780, 48.8605790 2.3905780, 48.8608890 2.3922300, 48.8614120 2.3939470, 48.8609600 2.3928310, 48.8614120 2.3943330, 48.8613527 2.3946884, 48.8609030 2.3946120, 48.8608750 2.3946980, 48.8607900 2.3942040, 48.8611150 2.3943540, 48.8607200 2.3949340, 48.8605650 2.3950620, 48.8605360 2.3951050, 48.8601410 2.3954920, 48.8592520 2.3964570, 48.8590680 2.3966720, 48.8593510 2.3969290, 48.8596890 2.3960710, 48.8588000 2.3963500, 48.8587580 2.3962000, 48.8589830 2.3966720, 48.8588850 2.3968010, 48.8580380 2.3955560, 48.8587290 2.3935170, 48.8587580 2.3930880, 48.8591810 2.3935600, 48.8594350 2.3923590, 48.8593510 2.3912860, 48.8595620 2.3911140, 48.8590400 2.3917370, 48.8593220 2.3914790, 48.8593650 2.3914790, 48.8607620 2.3921660, 48.8605360 2.3924230, 48.8604520 2.3925520, 48.8600560 2.3928090, 48.8605080 2.3931310, 48.8604380 2.3930240, 48.8606350 2.3928090, 48.8604230 2.3929170, 48.8600560 2.3928740, 48.8601705 2.3927894, 48.8602540 2.3934100, 48.8606350 2.3935820, 48.8602120 2.3936030, 48.8601410 2.3939040, 48.8597740 2.3945690, 48.8585320 2.3955990, 48.8601980 2.3952770, 48.8606490 2.3946550, 48.8604800 2.3943760, 48.8598300 2.3954060, 48.8597030 2.3952980, 48.8605360 2.3942900, 48.8594630 2.3950620, 48.8594630 2.3949550, 48.8595200 2.3949980, 48.8597180 2.3947830, 48.8590680 2.3951480, 48.8590960 2.3954700, 48.8587720 2.3960710, 48.8590260 2.3954920, 48.8590960 2.3955770, 48.8597740 2.3955130, 48.8596890 2.3956420, 48.8590120 2.3965860, 48.8589314 2.3964384, 48.8590400 2.3965860, 48.8588420 2.3962640, 48.8590400 2.3957060, 48.8591390 2.3959850, 48.8590400 2.3960920, 48.8591670 2.3962000, 48.8588990 2.3963070, 48.8599400 2.3929300, 48.8611450 2.3938920, 48.8581960 2.3952270, 48.8605580 2.3925470, 48.8621020 2.3942670, 48.8596730 2.3927980, 48.8610650 2.3949100, 48.8601070 2.3930030, 48.8611720 2.3939770, 48.8614040 2.3952430, 48.8608790 2.3933140, 48.8636050 2.3964430, 48.8591120 2.3946450, 48.8597030 2.3956510, 48.8607600 2.3938000, 48.8593520 2.3939080, 48.8610650 2.3934180, 48.8585032 2.3954149, 48.8584651 2.3953018, 48.8583980 2.3953650, 48.8592830 2.3947420, 48.8593664 2.3947165, 48.8596270 2.3943920, 48.8597115 2.3945144, 48.8584840 2.3952396, 48.8585550 2.3961900, 48.8585740 2.3948400, 48.8587570 2.3965220, 48.8586237 2.3963910, 48.8587457 2.3966952, 48.8585780 2.3963770, 48.8590510 2.3971380, 48.8595280 2.3972980, 48.8592570 2.3974000, 48.8595920 2.3973830, 48.8594170 2.3990380, 48.8615073 2.3918887, 48.8611069 2.3916616, 48.8615364 2.3918726, 48.8609848 2.3913417, 48.8629618 2.3902204, 48.8616640 2.3912770, 48.8617058 2.3884516, 48.8596730 2.3944650, 48.8615530 2.3981050, 48.8597415 2.3943819, 48.8609620 2.3968630, 48.8611260 2.3963200, 48.8628596 2.3928690, 48.8613050 2.3968980, 48.8628120 2.3929370, 48.8614690 2.3970200, 48.8610990 2.3973950, 48.8628360 2.3931780, 48.8618534 2.3934719, 48.8603710 2.3963320, 48.8614688 2.3925529, 48.8589100 2.3968930, 48.8630280 2.3949170, 48.8586723 2.3951535, 48.8587444 2.3947978, 48.8585366 2.3952915, 48.8584981 2.3952292, 48.8584645 2.3952683, 48.8588825 2.3967505, 48.8611197 2.3929716, 48.8595742 2.3949400, 48.8623225 2.3943663, 48.8631335 2.3933669, 48.8583882 2.3956719, 48.8591916 2.3918972 +49.4102265 8.6939011, 49.4099021 8.7003337 +95 +48.8834296 2.3531464 +55.9918052 -3.3860654, 55.9951617 -3.3732725, 55.9950208 -3.4111205, 55.9938394 -3.4136276, 55.9833096 -3.1759451, 55.9405506 -3.2128984, 55.9408017 -3.2123133, 55.9408588 -3.2121518, 55.9406762 -3.2125446, 55.9409715 -3.2118284, 55.9409148 -3.2119933, 55.9406135 -3.2127202, 55.9834389 -3.1722248, 55.9901233 -3.1821068, 55.9742425 -3.1800365, 55.9776299 -3.1714526, 55.9942065 -3.4103941, 55.9426649 -3.2081341, 55.9425769 -3.2079585, 55.9235675 -3.2338755, 55.9244798 -3.2473711, 55.9232306 -3.3792832, 55.9414442 -3.2104954 +1 +49.4333190 8.6867073, 49.4199838 8.7597906, 49.3967496 8.6929283, 49.3758602 8.6941971, 49.4437124 8.7590947, 49.4213729 8.7461819, 49.3924724 8.6994716, 49.4143929 8.7631903, 49.4078072 8.7077293, 49.4127417 8.7657609 +48.8832844 2.3022074, 48.8556200 2.3068506, 48.8950280 2.3447570, 48.8456181 2.3051375, 48.8673061 2.3458878, 48.8702836 2.3508959, 48.8363545 2.3536716, 48.8522718 2.3406371, 48.8346500 2.3172863, 48.8319392 2.3309271, 48.8445352 2.3242726, 48.8414313 2.3069539, 48.8378972 2.3017072, 48.8355703 2.2859671, 48.8476672 2.3527426, 48.8460795 2.3742445, 48.8438213 2.3729021, 48.8526670 2.3323656, 48.8494031 2.3370695, 48.8249137 2.3571341, 48.8260261 2.3459422, 48.8501935 2.3250319, 48.8227135 2.3260702, 48.8189756 2.3612028, 48.8469142 2.3813987, 48.8842024 2.3388617, 48.8448696 2.2974529, 48.8568210 2.3523008, 48.8500524 2.3076923, 48.8586271 2.3007824, 48.8296368 2.2975779, 48.8697560 2.3414883, 48.8797179 2.3570269, 48.8413622 2.3437999, 48.8415875 2.3505588, 48.8686452 2.3957029, 48.8728505 2.3993800, 48.8352367 2.3263118, 48.8742224 2.3396921, 48.8337013 2.3466308, 48.8463962 2.3870738, 48.8632649 2.3858206, 48.8414439 2.2869114, 48.8767699 2.2867318, 48.8802563 2.2982452, 48.8294672 2.3084779, 48.8587218 2.4028880, 48.8521928 2.4013589, 48.8467299 2.2847703, 48.8481913 2.2901149, 48.8724892 2.3267639, 48.8835954 2.3291657, 48.8923205 2.3416630, 48.8770457 2.4050940, 48.8659081 2.3781743, 48.8593821 2.3790898, 48.8743224 2.3737632, 48.8305048 2.3677879, 48.8518448 2.3890950, 48.8198243 2.3386394, 48.8624613 2.3594619, 48.8529864 2.3827830, 48.8212165 2.3424964, 48.8747784 2.3848811, 48.8398751 2.3939229, 48.8394177 2.3984809, 48.8354853 2.3854944, 48.8646806 2.4060380, 48.8239587 2.3634647, 48.8910508 2.3191148, 48.8914069 2.3267388, 48.8833930 2.3812455, 48.8708265 2.3779442, 48.8557679 2.3464388, 48.8594808 2.3467106, 48.8625411 2.3496651, 48.8521023 2.3568721, 48.8577587 2.3558712, 48.8777176 2.3937456, 48.8656120 2.3608400, 48.8639803 2.3651991, 48.8476074 2.3428362, 48.8575593 2.3848465, 48.8418918 2.3218739, 48.8807422 2.3649558, 48.8694004 2.3648970, 48.8688629 2.3592316, 48.8590770 2.3279978, 48.8478715 2.3198313, 48.8299220 2.3787029, 48.8701399 2.3208052, 48.8791820 2.3141155, 48.8707001 2.3083322, 48.8738936 2.3008712, 48.8461742 2.4105318, 48.8765925 2.3611628, 48.8687959 2.2895729, 48.8681029 2.2819378, 48.8612043 2.2751645, 48.8759825 2.3462270, 48.8256117 2.3156483, 48.8846736 2.3626003, 48.8412041 2.3167359, 48.8838977 2.2893818, 48.8447043 2.2574488, 48.8388336 2.2570514, 48.8562928 2.4086751, 48.8613711 2.3348960, 48.8724460 2.3296815, 48.8770249 2.3413662, 48.8673989 2.3038079, 48.8768924 2.3218191, 48.8626137 2.3716303, 48.8577490 2.3740410, 48.8544587 2.3716617, 48.8434438 2.2775683, 48.8465081 2.4010506, 48.8383375 2.4059297, 48.8917628 2.3346006, 48.8982438 2.3586188, 48.8722045 2.3371834, 48.8677158 2.3837011, 48.8485984 2.2616822, 48.8581577 2.2877816, 48.8658810 2.2957521, 48.8524932 2.2753573, 48.8671349 2.2739152, 48.8565975 2.2717002, 48.8640768 2.2926880, 48.8649634 2.2873793, 48.8414706 2.2667764, 48.8369118 2.2971635, 48.8523889 2.2926023, 48.8348381 2.3051360, 48.8608328 2.3202142, 48.8609201 2.3180354, 48.8555779 2.3258692, 48.8570577 2.3190096, 48.8688688 2.3293533, 48.8617696 2.3477277, 48.8750802 2.3235709, 48.8561278 2.3314027, 48.8491689 2.3364515, 48.8842439 2.3208990, 48.8963707 2.3196241, 48.8891032 2.3083901, 48.8839542 2.3137640, 48.8799650 2.2946628, 48.8602476 2.3525764, 48.8648255 2.3978523, 48.8987342 2.3363211, 48.8933357 2.3510120, 48.8878706 2.3493757, 48.8847676 2.3506962, 48.8900150 2.3386297, 48.8975447 2.3343783, 48.8995298 2.3700602, 48.8722691 2.3468122, 48.8831291 2.3341159, 48.8810244 2.3451276, 48.8251672 2.3753747, 48.8410007 2.3779168, 48.8768622 2.3589369, 48.8758269 2.3554902, 48.8843019 2.3905346, 48.8927700 2.3745823, 48.8839103 2.3739430, 48.8886607 2.3737892, 48.8691728 2.4085455, 48.8361192 2.2976662, 48.8692088 2.4085611, 48.8886357 2.3901364, 48.8928033 2.3785257, 48.8725254 2.3564163, 48.8904169 2.3596324, 48.8420324 2.3637585, 48.8666934 2.3539857, 48.8572232 2.3616056, 48.8947703 2.3652163, 48.8478953 2.3316238, 48.8407489 2.3325635, 48.8297226 2.3219729, 48.8579662 2.2945015, 48.8647293 2.3437855, 48.8646150 2.3358501, 48.8531446 2.3665394, 48.8691228 2.3722077, 48.8731641 2.3135886, 48.8769406 2.3357171, 48.8499033 2.3749234, 48.8568674 2.2763388, 48.8286079 2.3568587, 48.8368162 2.3928761 +30 mph +48.9012005 2.3862959, 48.8801709 2.3706981, 48.8593908 2.3144172, 48.8609726 2.2828299, 48.8611046 2.3413657, 48.9003252 2.3734463, 48.8804901 2.2865619, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8645440 2.4097670, 48.9007525 2.3748724, 48.8635857 2.2722338, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8595020 2.3116861, 48.8607706 2.3747898, 48.8787212 2.3698437, 48.8656358 2.2892405, 48.8786755 2.3549221, 48.8797035 2.3026873, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8936152 2.3152934, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.8711680 2.3244832, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.9007173 2.3745755, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8936129 2.3029112 +Kirkcaldy, Cowdenbeath, Dunfermline, South Queensferry, Linlithgow, Kincardine, Broxburn, Bathgate, Polton, Grangemouth, Bo'ness, Inverkeithing, Dalgety Bay, Rosyth, Bonnyrigg, Loanhead, Haddington, Penicuik, Musselburgh, Cockenzie and Port Seton, Gullane, Dalkeith, Livingston, Prestonpans, Tranent, Armadale, Gorebridge, Mayfield, Newtongrange, Eskbank, Polmont, Lasswade +48.0843405 1.8516661, 48.0842975 1.8516532, 48.3634720 1.4444762, 48.3633107 1.4440969, 48.3090898 0.8101983, 48.4391987 1.4310492, 48.4438257 1.2435743, 48.4551854 1.5391428, 48.4550506 1.5390148, 48.2034817 1.3965458, 48.7450953 1.3465073, 48.7450288 1.3465364, 48.2041014 1.8493980, 48.2999243 1.2898661, 48.2856652 1.2503363, 48.2806148 1.2225198, 48.2800124 1.6183789, 48.0715557 1.3225880, 48.1293202 1.8532335, 48.2693592 1.1573085, 48.3892052 1.4934020, 48.3895541 1.4932054, 48.4271283 1.5158383, 48.4272198 1.5156725, 48.1637493 1.2648026, 48.3576867 1.4338803, 48.2544911 1.5705116, 48.0964603 1.8517115, 48.4156457 1.4892388, 48.4162429 1.5034164, 48.4143664 1.5057059, 48.1825735 1.3757520, 48.2632013 1.5930746, 48.3532908 1.4265631, 48.1806158 1.3747250, 48.0675193 1.2906117, 48.2069451 1.8485104, 48.4781262 1.4607501, 48.4535767 1.2953431, 48.7640966 1.3132549, 48.2832224 1.6280084, 48.4383314 1.5246435, 48.4468667 1.4788401, 48.3902446 1.7298333, 48.1105340 1.3319487, 48.4632188 1.4998341, 48.4659463 1.5066438, 48.3785954 1.4828822, 48.4161166 1.4771368, 48.0740104 1.3616631, 48.4568587 1.4826879, 48.2469000 1.5444200, 48.4513703 1.4448174, 48.2401186 1.5169750, 48.4492426 1.4904726, 48.2486754 1.1179446, 48.2331152 1.4901573, 48.3203704 0.8052871, 48.4458166 1.2350335, 48.4433598 1.2420607, 48.4391932 1.4309164, 48.4570303 1.4509779, 48.1904387 1.3353826, 48.3223013 1.8632060, 48.2543249 1.5705688, 48.2757180 1.6234395, 48.1775018 1.3793555, 48.2040697 1.8494049, 48.3348687 0.8176667, 48.1872713 1.3202539, 48.2168785 1.4325393, 48.1962959 1.0911905, 48.1794824 1.2987246, 48.2106265 1.1624752, 48.2084923 1.1591442, 48.3218713 1.6682497, 48.4731048 1.6040268, 48.4894113 1.5380927, 48.1963001 1.0981460, 48.1968889 1.0975920, 48.1947865 1.0689477, 48.1935748 1.0698455, 48.1871866 1.0458453, 48.1871223 1.0509226, 48.1900625 1.0581630, 48.2106023 1.1100587, 48.1995584 1.1160835, 48.2004834 1.1155760, 48.2010401 1.1152619, 48.2059666 1.1275207, 48.2078779 1.1355348, 48.2084109 1.1207323, 48.2103535 1.1013451, 48.2100796 1.1121090, 48.2096161 1.1402341, 48.2120405 1.1473697, 48.2121332 1.1532022, 48.2125462 1.1593680, 48.2098871 1.0867530, 48.2334847 1.0399341, 48.2333927 1.0401108, 48.2322909 1.0341270, 48.1862854 1.0086807, 48.1727366 0.9992126, 48.1724930 0.9979646, 48.1729260 1.0214302, 48.1842903 1.0479504, 48.1871074 1.0206582, 48.1868218 1.0387459, 48.2287753 1.4736893, 48.3294431 1.3825318, 48.5275940 1.0273486, 48.4645219 1.4828255, 48.4691914 1.5145482, 48.4615172 1.4943654, 48.4374840 1.4150964, 48.4520187 1.4458254, 48.4460522 1.4725078, 48.4465773 1.4671375, 48.4460603 1.4673988, 48.4439314 1.4657609, 48.4542788 1.4483370, 48.4614819 1.4553185, 48.4381387 1.4532784, 48.4424128 1.4516460, 48.2988415 1.8615469, 48.3288402 0.7988397, 48.3346487 0.8179752, 48.8598809 1.4038341, 48.4465792 1.5307528, 48.4521257 1.4838056, 48.4584810 1.4876866, 48.4330586 1.4924879, 48.1806344 1.3817390, 48.1833120 1.3838413, 48.4454252 1.4926736, 48.4469583 1.4918402, 48.4469302 1.4936845, 48.4469151 1.4933052, 48.4546304 1.4839991, 48.4624190 1.4819697, 48.4640214 1.4831040, 48.4631220 1.4841448, 48.4592278 1.4898047, 48.4588196 1.4907004, 48.4529511 1.4903462, 48.5498237 1.0300964, 48.1935903 1.3917793, 48.2257416 1.1758624, 48.1964900 1.3716225, 48.1931395 1.3528577, 48.1577871 1.2501317, 48.2082347 1.1898048, 48.2214721 1.4461878, 48.1943683 1.3608186, 48.2087707 1.1646492, 48.2731424 1.6079429, 48.4424555 1.4942771, 48.1720956 1.0168141, 48.1830829 0.9645850, 48.1859763 0.9810924, 48.1862491 0.9967439, 48.1823985 0.9559790, 48.1780392 1.8542274, 48.4393078 1.5002210, 48.4419654 1.4987456, 48.4436044 1.4961478, 48.3618146 1.1357971, 48.9173361 1.4926155, 48.7150723 1.3677673, 48.1903936 0.9341271, 48.1909690 0.9328489, 48.1718135 0.9804996, 48.1718313 0.9720534, 48.1722624 0.9651040, 48.1720555 0.9492426, 48.1735595 0.9562174, 48.2206300 0.9624339, 48.2093787 0.9308883, 48.1980415 1.8512274, 48.1895642 1.8532898, 48.1093173 1.3374097, 48.2318147 1.8488774, 48.7395328 1.3689272, 48.7418660 1.3757489, 48.8201457 1.3593555, 48.8612797 1.4229397, 48.4543906 1.4904051, 48.4537794 1.4911526, 48.4538725 1.4910121, 48.1807804 1.3891995, 48.1820987 1.3888362, 48.1798285 1.3871839, 48.1798161 1.3890830, 48.2136652 1.2309553, 48.2105588 1.2490264, 48.2153970 1.0554300, 48.2132553 1.0632878, 48.2176213 1.0391332, 48.2171034 1.0130321, 48.2308790 1.0204333, 48.2241358 0.9796079, 48.1961479 1.0898435, 48.2031035 0.8932700, 48.1672194 0.9358151, 48.3384590 1.8674987, 48.4281982 1.7642604, 48.4486735 1.7908682, 48.4508879 1.7860990, 48.2394174 1.0726545, 48.1851974 1.0426517, 48.7601426 1.5150503, 48.2095275 1.1638064, 48.2086614 1.1654995, 48.2087279 1.1647970, 48.4708045 1.4931683, 48.2057211 1.1797547, 48.2080503 1.1698283, 48.2086619 1.1660235, 48.4438562 1.4656888, 48.3983559 1.4872365, 48.4914849 1.5904823, 48.4934615 1.6778847, 48.5115889 1.7632885, 48.6004922 1.6755514, 48.4656778 1.5717267, 48.4866511 1.6594969, 48.7374396 1.4154121, 48.5682771 1.5933435, 48.7212106 1.4179156, 48.7019630 1.3445490, 48.7082444 1.4239005, 48.2802436 1.8585158, 48.2654306 1.8528604, 48.5620146 1.0299899, 48.1423995 1.9132167, 48.0792039 1.1332806, 48.0769466 1.1403842, 48.0760918 1.1413983, 48.0886169 1.1227140, 48.0887950 1.1232395, 48.0770609 1.1248878, 48.0690723 1.1303498, 48.0879298 1.1206693, 48.0878998 1.1207246, 48.0861427 1.1228627, 48.0861026 1.1228238, 48.0911631 1.1217791, 48.0969602 1.1259293, 48.0957659 1.1434943, 48.0810642 1.3318138, 48.0840192 1.3389711, 48.0359084 1.2736162, 48.0878308 1.3301961, 48.0739971 1.3213741, 48.0601380 1.3451955, 48.0865275 1.3528589, 48.0677895 1.2950501, 48.0954226 1.3365682, 48.4516192 1.4901383, 48.4499351 1.4902463, 48.4509817 1.4916513, 48.4482826 1.4911159, 48.4445900 1.4937793, 48.4438310 1.4959260, 48.4448610 1.4955440, 48.4500930 1.4913781, 48.4336756 1.4929244, 48.4585193 1.4909708, 48.4616415 1.4832882, 48.4607283 1.4839313, 48.4624299 1.4819197, 48.5071496 1.4635719, 48.4555452 1.7960234, 48.4539982 1.7981341, 48.4619596 1.8122235, 48.6307434 1.4126334, 48.2632102 1.7617362, 48.3573699 1.6104690, 48.2400520 1.0829658, 48.4290111 1.9028543, 48.1358374 0.9775138, 48.1363663 0.9815642, 48.7427023 1.5888652, 48.7727834 1.5546424, 48.7830689 1.5755487, 48.7829459 1.5755817, 48.1377511 0.9875665, 48.6744694 1.3835015, 48.7508848 1.4455038, 48.7507738 1.4455127, 48.7621381 1.4131696, 48.7540891 1.4568896, 48.4987577 1.6903064, 47.9906514 1.2545075, 47.9962698 1.2597897, 47.9861315 1.2470133, 48.2483407 1.8515642, 48.2485162 1.8513487, 48.2133566 1.8471773, 48.2400078 1.8507771, 48.8349270 1.3651623, 48.3617964 1.8792363, 48.4073062 1.8953031, 48.3532037 1.8740723, 48.4143368 1.8974174, 48.4451318 1.7437038, 48.3761868 1.7140004, 48.3288262 1.6733771, 48.3559260 1.6932028, 48.6433866 1.4033215, 48.7170492 1.3771616, 48.8436645 1.3810541, 48.7317495 1.3627510, 48.7347146 1.3628805, 48.4794759 1.4610359, 48.4795088 1.4608291, 47.9871247 1.2489563, 48.2006359 0.8817417, 48.3903413 1.7296169, 48.4383703 1.7739517, 48.4357387 1.7264684, 48.6044852 1.6764659, 48.6047343 1.6776367, 48.6056601 1.6786023, 48.6076342 1.6811250, 48.6094321 1.7073012, 48.7895005 1.5760710, 48.7368700 1.3836098, 48.8616552 1.4175168, 48.8658673 1.4291425, 48.8431789 1.3815951, 48.8627873 1.4400855, 48.7644535 1.3137446, 48.1436327 1.0479263, 48.1446398 1.0438524, 48.3784586 1.8879329, 48.5327602 1.4551824, 48.5964679 1.6344924, 48.2943438 1.2784344, 48.1238755 1.1830063, 48.1203418 1.1789078, 48.2646069 1.1464120, 48.4665860 0.9721291, 48.4680964 0.9833235, 48.4692749 0.9917513, 48.9178051 1.5163564, 48.7687669 1.4010983, 48.4432797 1.4586460, 48.4263803 1.4345241, 48.4263450 1.4343908, 48.2783751 1.2038212, 48.2785049 1.2038943, 48.2859335 1.2109996, 48.3028844 1.2394689, 48.3028596 1.2394869, 48.2330824 1.1841121, 48.3909110 1.2074193, 48.8165842 1.5626415, 48.8227708 1.5562821, 48.8230971 1.5568726, 48.5892604 1.5785545, 48.5860031 1.5774820, 48.1499364 1.3998178, 48.1511375 1.4008810, 48.1283145 1.1895873, 48.2687237 1.7554738, 48.2687963 1.7555788, 48.7607313 1.3283222, 48.1200348 1.5164207, 48.7571201 1.0593963, 48.7630168 1.2330016, 48.7619868 1.2307431, 48.7697041 1.1973535, 48.7594087 1.2197692, 48.7690072 1.1998653, 48.7633865 1.2243158, 48.7568745 1.4817572, 48.2758000 1.6233580, 48.2758830 1.6233161, 48.2757436 1.6234125, 48.2757673 1.6233850, 48.8413849 1.4922311, 48.7618946 1.1344644, 48.6035213 1.6962877, 48.6038889 1.6958545, 48.7492012 1.4084464, 48.7508203 1.4157200, 48.7492740 1.4083049, 48.7509154 1.4156900, 48.7459726 1.3960136, 48.7456448 1.3952102, 48.0758120 1.1250113, 48.0759294 1.1249783, 48.4420751 1.4989362, 48.4556997 1.4915385, 48.4706119 1.4894945, 48.5962086 1.6154260, 48.9189505 1.4642931, 48.5800278 1.5814336, 48.5883483 1.5791331, 48.5850681 1.5781057, 48.5817149 1.5806846, 48.5828744 1.5864487, 48.5846561 1.5791234, 48.5852779 1.5783029, 48.5857035 1.5781314, 48.5845146 1.5783536, 48.5785051 1.5814940, 48.5781910 1.5842706, 48.5855768 1.5840847, 48.5891156 1.5937111, 48.5796458 1.5936179, 48.5887061 1.5730446, 48.6303549 1.5123061, 48.4858586 1.5268474, 48.7387647 1.3344359, 48.5612943 1.5099262, 48.5562795 1.5088278, 48.5417197 1.4933979, 48.5629140 1.5082652, 48.5686432 1.5014794, 48.3402518 1.3474079, 48.3193902 1.3433670, 48.3144491 1.3216928, 48.3330130 1.3910728, 48.6458105 1.5425043, 48.6500512 1.5445534, 47.9960173 1.2330143, 48.0110352 1.2352850, 48.4783101 1.6303488, 48.4678695 1.5800519, 48.5098261 1.7453193, 48.3484299 1.6877878, 48.0663212 1.3379550, 48.0663284 1.3379163, 48.0866822 1.3250947, 48.1932315 0.8532599, 48.4860872 1.0589912, 48.4766655 1.1449504, 48.4516866 1.2313903, 48.4157788 1.4872052, 48.4156604 1.4871839, 48.4161089 1.4788356, 48.4159687 1.4788327, 48.4158166 1.4827704, 48.4159441 1.4828103, 48.4237280 1.4843067, 48.4350351 1.4850487, 48.3693543 1.2313848, 48.3777903 1.2321079, 48.4242698 1.2319935, 48.4264831 1.2401531, 48.4270678 1.2534320, 48.4292906 1.2736696, 48.4517014 1.4862557, 48.4495182 1.4936334, 48.4832358 1.0361872, 48.5042208 1.0253641, 48.4794856 1.0191569, 48.4791294 1.0197163, 48.4640670 1.1943546, 48.4654472 1.1961144, 48.4522688 1.4910912, 48.1385666 1.2067109, 48.2898283 1.2665462, 48.0755319 1.0697377, 48.4492264 1.2905124, 48.5081392 1.0206523, 48.4433783 1.2104106, 48.4798510 1.1597339, 48.4459606 1.2314837, 48.6762682 1.4636271, 48.6769680 1.4741718, 48.5153087 0.9895117, 48.4737212 1.1610821, 48.4918766 1.5327846, 48.6446760 0.9342008, 48.4478748 1.3303765, 48.6683749 1.4977366, 48.3115381 0.8206080, 48.3244094 0.8089485, 48.3168358 0.7971910, 48.3178707 0.7961281, 48.1027073 1.8514071, 48.7422926 1.3190808, 48.7422202 1.3192275, 48.1723267 1.2834454, 48.4436345 1.9087713, 48.3688085 1.4580360, 48.3734994 1.4701515, 48.4110738 1.7493703, 48.4458999 1.7865767, 48.5031177 1.6190068, 48.4997925 1.6114044, 48.5141816 1.6446348, 48.5962346 1.4239362, 48.1994847 1.3819149, 48.7512742 1.4156030, 48.7528348 1.4506420, 48.7467213 1.4173998, 48.7494643 1.4300620, 48.7517949 1.4184551, 48.7512294 1.4156355, 48.7517671 1.4184670, 48.7317079 1.4184431, 48.7335716 1.4179845, 48.7297375 1.3668655, 48.7297739 1.3668588, 48.7298138 1.3668454, 48.2692940 1.2680420, 48.2579330 1.2720985, 48.2687176 1.2673716, 48.2623531 1.2806883, 48.2789350 1.2539336, 48.2586986 1.2748530, 48.2743759 1.2567214, 48.2901657 1.3180781, 48.2761530 1.2744818, 48.7148629 1.4327769, 48.7279706 1.3889336, 48.7368287 1.3836394, 48.7367890 1.3836644, 48.7453826 1.3949182, 48.6353577 1.5607061, 48.7745640 1.3465635, 48.3148678 0.7992779, 48.5170758 0.9794413, 48.7676694 1.2452570, 48.7675029 1.2442214, 48.7666867 1.2454401, 48.7465105 1.3828935, 48.7465709 1.3830411, 48.7460069 1.3895928, 48.7156463 1.3528618, 48.7156000 1.3527496, 48.7426978 1.3459456, 48.7342605 1.3866265, 48.0942882 1.5129314, 48.1345344 0.9722245, 48.5922934 0.9086983, 48.3875106 1.1212244, 48.1923446 1.9394272, 48.1525637 1.5978859, 48.1208939 1.5450524, 48.1090935 1.4823789, 48.1099283 1.5068616, 48.1298953 1.5697194, 48.1156238 1.4399875, 48.1101000 1.4290050, 48.1497723 1.6558110, 48.1540567 1.6317286, 48.6547891 1.2565297, 48.6506087 1.2157617, 48.7029078 1.3434978, 48.6780679 1.3176014, 48.6347988 0.9888437, 48.6503313 1.0131508, 48.3470506 1.6269478, 48.4468210 1.4789483, 48.4661452 1.4851003, 48.4506123 1.4902125, 48.4438475 1.4944572, 48.4430415 1.4980146, 48.4437026 1.4969840, 48.4438425 1.4973813, 48.4431599 1.4974032, 48.4435666 1.4962377, 48.2846129 1.6271386, 48.2350735 1.4972417, 48.4301542 1.5048448, 48.4308430 1.5009460, 48.7378384 1.3688163, 48.7392265 1.3684309, 48.6078989 1.6842001, 48.6072486 1.6864655, 48.6079177 1.6841421, 48.6013821 1.7031632, 47.9830400 1.2822379, 47.9856150 1.3046469, 47.9778729 1.2582126, 47.9763162 1.3275978, 48.7605248 1.5700487, 48.7597408 1.5660632, 48.2078487 1.3291624, 48.1950572 1.3644793, 48.1920857 1.3709906, 48.2067039 1.2896780, 48.2069438 1.3077202, 48.2105979 1.2932806, 48.2071428 1.2858757, 48.2063321 1.2877849, 48.2835395 1.1526792, 48.4223116 1.2140030, 48.5056070 1.3493083, 48.4871113 1.0118267, 48.4939038 1.0189164, 48.4951571 1.0185534, 48.5259370 1.6932314, 48.5244027 1.6915195, 48.5241091 1.6857225, 48.5273462 1.6732396, 48.5240703 1.6856085, 48.4470362 1.4960230, 48.2835308 1.2394677, 48.6864403 1.0667075, 48.6951770 1.0795658, 48.7108230 1.0904478, 48.4364319 1.4796590, 48.4382006 1.4730734, 48.4356740 1.4825941, 48.4864109 1.7406431, 48.4899994 1.7323690, 48.4345946 1.4946684, 48.5211991 1.7449406, 48.5217091 1.7446465, 48.5218901 1.7482961, 48.5176104 1.7101297, 48.5179251 1.6992604, 48.4456719 1.4947115, 48.3288874 1.6516814, 48.4640366 1.4830712, 48.4519148 1.4837828, 48.4521306 1.4837572, 48.4521410 1.4836582, 48.5762793 1.5041534, 48.3855704 1.2336704, 48.3962604 1.2154725, 48.4975346 1.0581854, 48.6032959 1.6731815, 48.3861744 1.4775925, 48.7156819 0.8768385, 48.7744560 1.3466811, 48.7663261 1.1583551, 48.7613934 1.2297404, 48.4896866 1.5836171, 47.9764661 1.2539912, 47.9865523 1.2477317, 47.9967724 1.2406049, 48.4656554 0.9647699, 48.4644066 0.9558621, 48.4684584 0.9854847, 48.7628494 1.2379548, 48.3506384 0.8488761, 48.6705305 0.8481390, 48.6726304 0.8494744, 48.6826076 0.8796183, 48.6789010 0.8649456, 48.6816088 0.8754314, 48.5190320 1.6822693, 48.1973693 1.0909382, 48.6517761 1.5264590, 48.6486478 1.5432671, 48.6506818 1.5361150, 48.2845737 1.6271678, 48.2867483 1.6317388, 48.2867953 1.6317369, 48.4991412 1.0150051, 48.2844343 1.2444990, 48.2845456 1.2443652, 48.8482297 1.4642728, 48.1838759 1.9348874, 48.4335596 1.4928141, 48.5925868 1.5964286, 48.4681980 1.4830354, 48.4679911 1.4837896, 48.4452476 1.4839687, 48.4453889 1.4841059, 48.6065464 1.4208198, 48.4621636 1.4853747, 48.5023629 1.1954425, 48.4801501 1.1295117, 48.0273443 1.2560778, 48.4544846 1.2967169, 48.4569679 1.2921342, 48.6518352 1.2078313, 48.4791682 1.5045178, 48.4791482 1.5045576, 48.4165775 1.3554040, 48.1802252 1.3840426, 48.5202181 1.7651459, 48.2168699 1.3818879, 48.2923823 0.8237943, 48.5489066 1.4929922, 48.5452650 1.4735723, 48.5260206 1.4884351, 48.6979977 0.9481873, 48.2080683 1.4122761, 48.1435030 1.4020243, 48.1456024 1.2171474, 48.1073837 1.1664543, 48.1521740 1.2310816, 48.2057749 1.2041528, 48.3018738 1.0823795, 48.1302205 1.0827274, 48.7356230 1.3421397, 48.7344321 1.3446478, 48.7355864 1.3422558, 47.9923659 1.2324185, 48.1820644 1.3847079, 48.1827878 1.3874679, 48.1808744 1.3857293, 48.1831851 1.3862120, 48.1818889 1.3785094, 48.3918449 1.1738434, 48.3925420 1.1776216, 48.3922627 1.1758879, 48.3935885 1.1826232, 48.3033115 1.2413287, 48.3033413 1.2413118, 48.2996998 1.2392848, 48.2971299 1.2450944, 48.2969691 1.2433349, 48.2929930 1.2440721, 48.2508997 1.3145256, 48.2096402 1.3464606, 48.2089588 1.3462590, 48.3948106 1.2056395, 48.3228600 1.2242280, 48.3843620 1.2192812, 48.3967433 1.2191649, 48.3571979 1.2290984, 48.3459692 1.2343988, 48.3507879 1.2307415, 48.0581930 1.6146145, 48.3398197 1.1533005, 48.3426300 1.1767847, 48.3430034 1.1830786, 48.3162632 1.1975847, 48.3141275 1.2138854, 48.3111882 1.2177123, 48.3405978 1.1148765, 48.3190842 1.1455771, 48.3298151 1.1265662, 48.3159454 1.1490037, 48.3236823 1.1050243, 48.3234195 1.1077313, 48.3143590 1.1320817, 48.3077813 1.1464594, 48.2969161 1.0635728, 48.2949570 1.0980591, 48.2493747 1.3214720, 48.4453734 1.2417600, 48.4466196 1.2421721, 48.3274753 1.0502716, 48.3394223 1.0562486, 48.3260051 1.0650136, 48.3094305 1.0935407, 48.2975177 1.0961476, 48.2958931 1.0981971, 48.2852393 1.2102351, 48.2637294 1.0964816, 48.2629211 1.0989440, 48.2633169 1.1138636, 48.2531858 1.1912039, 48.2583755 1.2154481, 48.2283113 1.3639843, 48.2295675 1.3697276, 48.2316442 1.3657649, 48.2209826 1.3762353, 48.3323300 1.3288791, 48.4621308 1.1909610, 48.1963451 1.3821766, 48.7445525 1.0461831, 48.7317320 1.0190795, 48.7646261 1.1483258, 48.6481986 1.5304508, 48.6526936 1.5255837, 48.6538123 1.5210418, 48.6008347 1.6649601, 48.5995716 1.6763886, 48.6010618 1.6647018, 48.3271155 0.8171662, 48.0842385 1.3611118, 48.0943510 1.3474342, 48.0598249 1.3375592, 48.1103175 1.3384734, 48.1122911 1.3416004, 48.1071474 1.3360773, 48.1108405 1.3301120, 48.1785145 1.3862871, 48.5837204 1.4286469 +Monument aux héros et victimes de la mer, Château des Creissauds, Mémorial des Camps de la Mort, Obélisque, Statue Virgo Mirarabilis, Stèle du 24 Avril 1915, Stèle du 24 Avril 1915, Porte d'Aix, Palais Longchamp, Monument des Rapatriés +52 +48.8560795 2.3115715, 48.8631692 2.3329513, 48.8779237 2.3345515, 48.8626245 2.3025393, 48.8403827 2.3113658, 48.8864800 2.3399022, 48.8651191 2.3417893, 48.8339752 2.3324559, 48.8836865 2.3338083, 48.8660456 2.3145051, 48.8602845 2.3247488, 48.8559492 2.3460263, 48.8575222 2.2845690, 48.8414574 2.3172246, 48.8677629 2.2935696, 48.8625016 2.3453019, 48.8403652 2.3414281, 48.8629386 2.2890051, 48.8618163 2.2873421, 48.8749151 2.3431481, 48.8565109 2.3263842, 48.8519070 2.2652250, 48.8703234 2.2765175, 48.8716440 2.2881063, 48.8302877 2.3141843, 48.8557584 2.3320096, 48.8716204 2.2814131, 48.8483211 2.3294718, 48.8677268 2.3223990, 48.8591945 2.2851420, 48.8522269 2.3350050, 48.8506815 2.3410772, 48.8476741 2.3140391, 48.8830345 2.3077236, 48.8513629 2.3410046, 48.8547304 2.3248616, 48.8554427 2.3276941, 48.8434645 2.3207843, 48.8456499 2.3395974, 48.8434624 2.3362665, 48.8718820 2.3312120, 48.8656784 2.3307909, 48.8404563 2.3198526, 48.8672999 2.3221942, 48.8367685 2.3218491, 48.8678618 2.3225499, 48.8640279 2.3450171, 48.8340000 2.3323000, 48.8573239 2.3286291, 48.8609823 2.2977973, 48.8848436 2.3445206, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8442282 2.3447813, 48.8661515 2.3122667, 48.8506605 2.3437398, 48.8545855 2.3356172, 48.8483248 2.3344265, 48.8599188 2.3265259, 48.8473326 2.3227159, 48.8613305 2.3197359, 48.8433913 2.2512835, 48.8707890 2.3259075, 48.8791676 2.3124361, 48.8794667 2.3125380, 48.8553042 2.3158566, 48.8755169 2.3105465, 48.8655978 2.2993165, 48.8643054 2.2977930, 48.8641085 2.2964123, 48.8373190 2.3319319, 48.8653887 2.2935591, 48.8260871 2.3327019, 48.8432079 2.3186583, 48.8715060 2.2814214, 48.8594040 2.2672517, 48.8812030 2.3335190, 48.8551953 2.2808684, 48.8463579 2.2732198, 48.8547299 2.2897642, 48.8428133 2.3337722, 48.8880654 2.3406347, 48.8485953 2.3340184, 48.8662091 2.3108575, 48.8766546 2.2633259, 48.8563449 2.3387717, 48.8657061 2.2966614, 48.8614768 2.3351679, 48.8553966 2.3450136 +48.8830752 2.3125555 +Buchhandlung Schmitt & Hahn, Thalia, Jokers, Buchhandlung Schmitt, Eichendorff, Buchbinderei Dyroff, Buchhandlung Himmelheber, Reisebuchladen-Heidelberg.de, Buchladen - artes liberales, Bücherstube an der Tiefburg, Hassbeckers Galerie & Buchhandlung, Buch-Markt, Antiquariat Friedrich Welz, Schmitt & Hahn, Wieblinger Buchladen +49.4146460 8.6905719 +yes +0 +yes +Avenue Victoria +2 +Messe Berlin, Messe Dortmund, Messe Dresden, Parc des Expositions Paris Villepinte, Leipziger Messe, Neue Messe München, PALEXPO, Messe Karlsruhe, Pavillon 1, Messegelände Köln, Messegelände Saarbrücken, Messegelände Hannover, Pavillon 8, Pavillon 6, Messe Kassel, Pavillon 2, Messe Husum, Messe Augsburg, Messe Magdeburg, Olympia, Messe Hamburg, National Exhibition Centre, Messehalle, Messegelände Ulm, Messehalle, Messe Offenbach, Pavillon 5, Pavillon 4, Messe Stuttgart, Metropolishalle, Maimarkthalle, Damascus International Fairground, Messe Friedrichshafen, Messe Halle/Saale, Eurexpo, Rhein-Main-Hallen, Messezentrum Nürnberg, Messe Erfurt, Messe Düsseldorf, Messezentrum Bad Salzuflen, Messe Essen, Weser-Ems-Hallen, Paris Nord Villepinte, Messe Bremen, Messe Chemnitz, Recinto Ferial Macají, Hessischer Agrartag Neukirchen, Messe Frankfurt, agra-Messegelände (Leipzig), Halle Münsterland +Aral, Esso, Shell, Total, Independent, Agip, OMV, Avia and 49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.3988716 8.6899921, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.4240406 8.6385449, 49.3851489 8.6733031, 49.3848920 8.6803000, 49.3673694 8.6862886, 49.4061345 8.6593850, 49.3956207 8.6692054, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.3704305 8.7013213, 49.4296958 8.6455225, 49.3810973 8.6895578, 49.4172010 8.6768150, 49.3593333 8.6876382, 49.3810576 8.6896077 +49.4081091 8.6783361, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.4240406 8.6385449, 49.4061345 8.6593850, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.4296958 8.6455225, 49.4172010 8.6768150 +49 +48.8390959 2.2748832 +48.8687993 2.3373273, 48.8710439 2.3094204, 48.8274124 2.3148434, 48.8540343 2.4058858, 48.8703138 2.3531191, 48.8828817 2.3596543, 48.8669356 2.3763865, 48.8420168 2.3896839, 48.8324911 2.2973690, 48.8288878 2.3328361, 48.8600943 2.3451124, 48.8831342 2.3236837, 48.8671369 2.3028950, 48.8831626 2.3618001, 48.8829824 2.3614134, 48.8827589 2.3595149, 48.8835628 2.3609310, 48.8827513 2.3591491, 48.8397936 2.3818812, 48.8875165 2.3520499, 48.8342294 2.3264332, 48.8714920 2.3541352, 48.8438107 2.3152002, 48.8682312 2.3751770, 48.8826774 2.3602875, 48.8567777 2.3726141, 48.8545648 2.3719500, 48.8594440 2.3503990, 48.8341870 2.3157058, 48.8768072 2.3364970, 48.8361075 2.3240698, 48.8907355 2.3482159, 48.8449670 2.3488185, 48.8939174 2.3431529, 48.8799295 2.3575665, 48.8570416 2.3726643, 48.8509119 2.2937166, 48.8935993 2.3230562, 48.8240405 2.3250200, 48.8830637 2.3612591, 48.8344267 2.2884194, 48.8961868 2.3389271, 48.8355850 2.3240208, 48.8363755 2.3920736, 48.8435173 2.3219294, 48.8393146 2.3237992, 48.8466620 2.2831751, 48.8701201 2.3491659, 48.8852970 2.3163291, 48.8673359 2.3991033, 48.8237982 2.3450583, 48.8641688 2.3976584, 48.8240750 2.3283368, 48.8741225 2.3893282, 48.8890437 2.3606481, 48.8890487 2.3604033, 48.8296037 2.3747044, 48.8818730 2.3810389, 48.8459218 2.2883699, 48.8527658 2.3454086, 48.8849514 2.2959483, 48.8343901 2.3531943, 48.8786180 2.2913310, 48.8797930 2.2884240, 48.8777980 2.2906200, 48.8862020 2.3612523, 48.8845623 2.3786634, 48.8808754 2.3021137, 48.8541359 2.3719456, 48.8707266 2.3515964, 48.8629894 2.3679436, 48.8814750 2.3580850, 48.8464207 2.3056421, 48.8303084 2.3537927 +17 +St Mary's Episcopal Cathedral, St Mary's Metropolitan Cathedral (RC) and 55.9486145 -3.2162817, 55.9560907 -3.1878581 +142889 +yes +Kopierladen E. Müller, Textstudio Gross and 49.4127737 8.6762760, 49.4175276 8.7614856 +yes +49.3825748 8.6819524, 49.4044470 8.6760982 +2 +yes +yes +11 +48.8266377 9.1840977, 48.8274672 9.1858535, 48.7995897 9.1471380, 48.7210662 9.0907708, 48.8368900 9.1424577, 48.7365807 9.0884143, 48.8072609 9.1145761, 48.7746889 9.1591284, 48.7607867 9.1731311, 48.7632032 9.1104345, 48.7420005 9.1357855, 48.8288194 9.1584861, 48.7592714 9.1414993, 48.7628009 9.1770306, 48.7391872 9.1019369, 48.7356266 9.0884092, 48.8175257 9.2449749, 48.7640439 9.1597973, 48.7595438 9.1774796, 48.8002406 9.0895116, 48.7789395 9.1251513, 48.7687253 9.1526426, 48.7680451 9.1492725, 48.8018079 9.1772330, 48.7701846 9.1396353, 48.7894569 9.2569712, 48.7870973 9.2545468, 48.7907133 9.2573534, 48.7932684 9.2601204, 48.7891137 9.2624515, 48.7639249 9.1680146, 48.7084205 9.2117984, 48.7332638 9.1395737, 48.7329962 9.1387316, 48.7276835 9.1087426, 48.7859048 9.1981187, 48.7926570 9.2096756, 48.7294246 9.1656576, 48.7654891 9.1709268, 48.7655516 9.1706606, 48.7368577 9.2271867, 48.7401197 9.2308934, 48.7670335 9.1823919, 48.7800860 9.1633248, 48.8194598 9.2224883, 48.8108804 9.0954110, 48.7322352 9.1377111, 48.7822231 9.1366622, 48.8073484 9.1590099, 48.7729263 9.1422456, 48.7676498 9.1774891, 48.7560843 9.2453564, 48.7637979 9.2084589, 48.7949013 9.1912992, 48.7961031 9.1911908, 48.7242834 9.1022678, 48.7768952 9.1197768, 48.8083000 9.2194447, 48.7413789 9.1248427, 48.7745727 9.2415359, 48.7688755 9.2441238, 48.7666474 9.2415359, 48.7554850 9.1899509, 48.7165072 9.1971033, 48.7233809 9.1577786, 48.7160561 9.2011485, 48.7159995 9.1968655, 48.7170981 9.2013115, 48.7138515 9.1965289, 48.7666676 9.2460021, 48.7815012 9.2111514, 48.8180458 9.1878364, 48.7884986 9.1882810, 48.7563639 9.1450595, 48.7645870 9.1790033, 48.7802290 9.2205449, 48.7793145 9.2145778, 48.7177504 9.0903203, 48.7217493 9.0906470, 48.7746884 9.2185224, 48.8186514 9.1903173, 48.8176924 9.2126264, 48.8166158 9.2133627, 48.7410037 9.1880643, 48.7878337 9.1734858, 48.7667769 9.1777628, 48.8214409 9.1838807, 48.8209323 9.1861981, 48.8221080 9.1864585, 48.8197625 9.1883439, 48.8193500 9.1850308, 48.8252510 9.1910397, 48.8260647 9.1920028, 48.8199278 9.1906552, 48.8230059 9.1973316, 48.8233111 9.1968938, 48.8227177 9.1963188, 48.7826664 9.1339847, 48.7593799 9.1838496, 48.7508769 9.2198901, 48.7796113 9.1969177, 48.7452380 9.1696763, 48.7452810 9.1715740, 48.7406173 9.2178894, 48.7295759 9.1970490, 48.7369809 9.2191710, 48.7381733 9.2194275, 48.7622472 9.1308637, 48.7578261 9.2370157, 48.7367641 9.2205799, 48.7839150 9.1572630, 48.7757122 9.1641515, 48.7752849 9.1192939, 48.7715042 9.1853889, 48.7736445 9.1964059, 48.7575769 9.2388906, 48.7304258 9.1432916, 48.8089550 9.1820390, 48.7390675 9.1316012, 48.7439412 9.2071733, 48.7370951 9.2197467, 48.8265520 9.1607642, 48.7525561 9.1756229, 48.7404105 9.1054389, 48.7410545 9.1054709, 48.7481843 9.1483115, 48.8370298 9.1702902, 48.7993978 9.0860783, 48.8077296 9.1205803, 48.8076711 9.1225829, 48.8086376 9.1172926, 48.8182959 9.1903252, 48.7887924 9.2642856, 48.8122456 9.1179810, 48.8131232 9.1189432, 48.7487655 9.1069716, 48.7392521 9.1025062, 48.7394250 9.1030131, 48.7395350 9.1034031, 48.7396715 9.1038998, 48.7788072 9.2205227, 48.7839443 9.1601364, 48.7834631 9.1287185, 48.7843358 9.1238844, 48.7916399 9.1781621, 48.7149832 9.1540579, 48.8388199 9.1578288, 48.7774924 9.1692669, 48.7750793 9.1663017, 48.7751830 9.1661607, 48.7502500 9.1859833, 48.8262448 9.1757557, 48.7411561 9.1260443, 48.7555505 9.2220026, 48.8048381 9.2160853, 48.8054996 9.2020247, 48.8234829 9.1130457, 48.7752130 9.2832684, 48.7746120 9.2829572, 48.7743327 9.2794113, 48.8138974 9.1121863, 48.7530309 9.1014541, 48.7843224 9.2165759, 48.7831510 9.2172907, 48.7785138 9.2086178, 48.7839139 9.2106372, 48.7790514 9.2057946, 48.8060904 9.1133314, 48.8162900 9.0840537, 48.8165125 9.0834346, 48.8146796 9.0810644, 48.8152745 9.0835875, 48.8160842 9.0868605, 48.7786322 9.2456524, 48.7718238 9.2626929, 48.8146602 9.1096755, 48.7809227 9.1806028, 48.7060395 9.2185219, 48.7071249 9.2227690, 48.7044404 9.2136152, 48.6968403 9.2143132, 48.7182280 9.1545775, 48.7191411 9.1471746, 48.8046901 9.2349995, 48.8188647 9.2481858, 48.8206470 9.2456598, 48.8331868 9.2293397, 48.8347645 9.2331793, 48.8356983 9.2329175, 48.8309543 9.2250457, 48.8305769 9.2283573, 48.8307974 9.2299852, 48.8358608 9.2248547, 48.8170499 9.1992551, 48.8107298 9.2118431, 48.7343433 9.0879666, 48.7551923 9.2530678, 48.8061920 9.2517194, 48.8064869 9.2510487, 48.8137307 9.1253132, 48.8079341 9.1205874, 48.8120298 9.1246418, 48.8128560 9.1239832, 48.8413219 9.1544918, 48.7805244 9.1271053, 48.8435362 9.2223596, 48.8370737 9.1704442, 48.7822257 9.2544192, 48.8054532 9.2320141, 48.8056405 9.2327579, 48.8171001 9.1874488, 48.7768972 9.1189405, 48.7338058 9.0886242, 48.8332911 9.1684064, 48.8354403 9.2184495, 48.7057162 9.2176827, 48.8289383 9.1748132, 48.8268277 9.1747844, 48.8268769 9.1741223, 48.8300230 9.1687489, 48.8055366 9.2324050, 48.8500553 9.1488691, 48.7824450 9.1914402, 48.8052514 9.1587936, 48.7202910 9.1609103, 48.8142090 9.1481160, 48.8121989 9.1435521, 48.8079225 9.2357497, 48.7456862 9.2049071, 48.7198885 9.1496536, 48.7945720 9.2080750, 48.7950033 9.2072260, 48.7661961 9.0969154, 48.8028868 9.2343907, 48.8356794 9.2376729, 48.8313302 9.2366779, 48.7705330 9.1185784, 48.7887572 9.1837958, 48.8084196 9.1186212, 48.8236860 9.2103348, 48.8150484 9.2102456, 48.8374600 9.2044225, 48.8374634 9.2040761, 48.8409245 9.2153278, 48.8388606 9.2056806, 48.8396473 9.2048209, 48.8393347 9.2045834, 48.7980345 9.2121395, 48.7257465 9.1788694, 48.8081986 9.2366770, 48.7439226 9.1083014, 48.7478255 9.1270444, 48.8353670 9.2373126, 48.8356297 9.2340838, 48.8314969 9.2258363, 48.8318341 9.2264183, 48.8036870 9.2104630, 48.7790513 9.1185036, 48.8444373 9.2242491, 48.8445387 9.2244230, 48.7333414 9.1263614, 48.7283946 9.1387608, 48.8304955 9.2241243, 48.8352716 9.2418323, 48.7666439 9.1806411, 48.7773542 9.1168251, 48.8434080 9.1612555, 48.8410924 9.1477487, 48.8413121 9.1525671, 48.8471852 9.1700770, 48.7898540 9.2143644, 48.8086360 9.2376287, 48.7273902 9.1117501, 48.7645889 9.1733372, 48.8045633 9.2308930, 48.8037302 9.2277588, 48.8018342 9.2303856, 48.8072533 9.2270114, 48.8037215 9.2104640, 48.8074978 9.2191098, 48.8124576 9.2217400, 48.8125945 9.2217420, 48.7075520 9.2011028, 48.7148133 9.1194638, 48.7185828 9.1154232, 48.7172949 9.1054408, 48.7172567 9.1029189, 48.8158067 9.2443148, 48.8176857 9.2487742, 48.7712404 9.1547659, 48.8118293 9.2351643, 48.7905987 9.2605609, 48.8333184 9.1873643, 48.8341294 9.1905283, 48.8334775 9.1794198, 48.8447076 9.2077794, 48.7862159 9.1694763, 48.7839006 9.1573870, 48.7808338 9.1593382, 48.7521248 9.2419563, 48.7300954 9.1404549, 48.7284923 9.1444964, 48.8080764 9.0936132, 48.7324649 9.1772340, 48.7334669 9.1823238, 48.7288626 9.1681428, 48.7706954 9.1512908, 48.7347608 9.1838793, 48.7723082 9.0917874, 48.7763145 9.2491292, 48.7756492 9.1426027, 48.7767829 9.1545653, 48.7767803 9.1554165, 48.7739885 9.1583727, 48.7219175 9.1167139, 48.7704774 9.1240234, 48.8165376 9.1551303, 48.8117988 9.1625976, 48.7276867 9.1024524, 48.8321003 9.2322653, 48.8326631 9.2326698, 48.8332878 9.2313485, 48.7594363 9.1532356, 48.7935643 9.1608362, 48.7694406 9.1690311, 48.7696653 9.1683555, 48.8171509 9.0903048, 48.7815166 9.1518155, 48.7712936 9.2162328, 48.7607339 9.1537406, 48.7600113 9.1521808, 48.7595816 9.1556686, 48.8263731 9.2366065, 48.8294446 9.2391274, 48.7829242 9.2062334, 48.7623804 9.1772834, 48.7646171 9.1434123, 48.7633222 9.1697771, 48.7630903 9.1700913, 48.7204005 9.0968405, 48.7480084 9.1272809, 48.7312314 9.1274441, 48.7324783 9.1225136, 48.7448834 9.1198033, 48.7253897 9.1367571, 48.7273313 9.1579700, 48.7315670 9.1084216, 48.7506025 9.0861736, 48.7446333 9.0611926, 48.7786974 9.1393207, 48.8365280 9.2217044, 48.7813051 9.1689915, 48.7765392 9.1579724, 48.7744522 9.1458280, 48.7361292 9.2318532, 48.7776266 9.1480593, 48.7898372 9.2007663, 48.8123543 9.1589288, 48.7420560 9.2311052, 48.7446788 9.2331679, 48.7842006 9.2878565, 48.7673531 9.1999049, 48.7498990 9.2156633, 48.7383712 9.1228988, 48.7800747 9.1931414, 48.7920253 9.1954565, 48.7908121 9.1937594, 48.7838586 9.2741572, 48.7114554 9.1634521, 48.7881335 9.2663343, 48.7370982 9.1144251, 48.7363026 9.1093466, 48.7130076 9.1585263, 48.7150329 9.1539437, 48.7098982 9.1485498, 48.7451817 9.2038319, 48.7362682 9.2147899, 48.7439861 9.1648276, 48.7470010 9.1608184, 48.8392216 9.1664665, 48.8188392 9.2382554, 48.8049992 9.1866992, 48.8060945 9.0873080, 48.8028102 9.1066768, 48.8204892 9.1196116, 48.8011361 9.0939236, 48.7955992 9.1813365, 48.8000632 9.2268497, 48.7642724 9.0908693, 48.7728345 9.0914895, 48.8043980 9.1924354, 48.7821801 9.2518655, 48.7357866 9.0928556, 48.8168682 9.1152268, 48.8176972 9.1198242, 48.8154007 9.1200702, 48.8153503 9.1123796, 48.8168770 9.1123473, 48.8098351 9.1466309, 48.7199402 9.0976200, 48.8065816 9.1468318, 48.8045414 9.1778666, 48.8155354 9.1078630, 48.7739387 9.1823385, 48.8076483 9.1122119, 48.8169176 9.2077469, 48.8185846 9.2107450, 48.8155686 9.0848061, 48.8137525 9.0822193, 48.7690958 9.1644412, 48.7673641 9.1642521, 48.7633749 9.2692990, 48.7223376 9.1573845, 48.7274898 9.0988236, 48.8044435 9.1091905, 48.7326952 9.0995469, 48.8434809 9.2310416, 48.7638079 9.1718809, 48.7017227 9.2042496, 48.8230217 9.2187817, 48.7733470 9.1534804, 48.7719578 9.1539280, 48.8058990 9.0874108, 48.8180005 9.2335228, 48.8307733 9.2341712, 48.8331629 9.2380752, 48.7435824 9.1408036, 48.7705843 9.1606059, 48.8343450 9.2339347, 48.8308551 9.2260656, 48.7812806 9.1949048, 48.8103608 9.2121063, 48.8087963 9.2136793, 48.7240693 9.1930107, 48.7255371 9.1991398, 48.8076188 9.2102143, 48.8062301 9.2081052, 48.8105291 9.2148008, 48.7643208 9.1709397, 48.8136709 9.2278711, 48.8150081 9.2299158, 48.8125624 9.1694969, 48.7194776 9.2054499, 48.8521068 9.1588256, 48.8007260 9.2382458, 48.7644345 9.1715715, 48.7565516 9.1606251, 48.7590074 9.1626262, 48.7619942 9.1613615, 48.7629149 9.1624495, 48.8436496 9.1956404, 48.8340493 9.2051857, 48.8371998 9.2058005, 48.7193315 9.2107441, 48.8306017 9.2020589, 48.7005838 9.2090522, 48.7801931 9.1422537, 48.7771497 9.1468615, 48.7738640 9.1461596, 48.8331441 9.1989771, 48.7689675 9.1781807, 48.7274729 9.1457170, 48.7455359 9.1544761, 48.7802104 9.1933560, 48.8317406 9.2161584, 48.7911933 9.1977305, 48.7092210 9.1564480, 48.7252514 9.1396022, 48.7610661 9.1737504, 48.7591576 9.1730067, 48.8349567 9.1672216, 48.7216336 9.1576307, 48.7244705 9.1491328, 48.7803793 9.1882891, 48.8114655 9.1366803, 48.7877288 9.2486707, 48.7822603 9.1730816, 48.7772829 9.2329886, 48.7777141 9.2242777, 48.8268718 9.1785649, 48.7669215 9.2457439, 48.8258919 9.1763678, 48.8255869 9.1756592, 48.8339379 9.1948377, 48.8156196 9.2158408, 48.8346243 9.1950374, 48.8297902 9.1944334, 48.8119814 9.2376803, 48.8245747 9.2144553, 48.7825401 9.1635644, 48.7381037 9.1020154, 48.8336814 9.1948442, 48.7099569 9.1529370, 48.7407211 9.1763493, 48.7426073 9.1724399, 48.7089631 9.1507678, 48.7090052 9.1519172, 48.7089714 9.1514099, 48.7092569 9.1512621, 48.7237992 9.1587663, 48.8363137 9.2230187, 48.8395941 9.2135911, 48.7866941 9.2146286, 48.7823164 9.2519854, 48.7848897 9.2508569, 48.7777861 9.2548671, 48.8183226 9.2019666, 48.7826648 9.2517310, 48.7400670 9.1490404, 48.8166071 9.1883914, 48.7113978 9.1227160, 48.7571646 9.1597673, 48.8075661 9.1713501, 48.7484681 9.1718397, 48.7897170 9.2673255, 48.7690349 9.2648510, 48.7646059 9.1904563, 48.7783606 9.1223325, 48.7784968 9.1620721, 48.8055200 9.1524939, 48.8076644 9.2449565, 48.8122579 9.2334897, 48.7691810 9.1801868, 48.7558646 9.1694060, 48.7257282 9.1788525, 48.8076526 9.2056148, 48.8068482 9.2022284, 48.8425623 9.2088898, 48.8427337 9.2085867, 48.8426262 9.2106905, 48.7884315 9.1797690, 48.7625410 9.1582979, 48.7443115 9.1090715, 48.8367968 9.2332124, 48.7655226 9.1821093, 48.7361247 9.1822587, 48.8066682 9.1122013, 48.7984164 9.0956065, 48.7855092 9.2118888, 48.8492672 9.1400666, 48.7710845 9.1857416, 48.7808338 9.1593382 +yes +01.43.41.09.70, ab conduite, Centre de conduite auto-moto, Auto-École, Alkris, Fati Auto école, Auto-école du chêne, École de conduite, C.E.R. Auto-École, Auto moto école, Auto-école Manin, Auto moto ecolde des Buttes Chaumont, C.E.R. Porte des Lilas, Permis Express, Auto école, ABIR C.F.R., Auto-école Cosmos and +331 48 78 09 98 +0.030262550579005898 +55.9533414 -3.1913502 +157 +no +38 +http://www.ept.org.uk, www.leitheatre.com, www.lyceum.org.uk, http://www.leiththeatretrust.org +1683 +55 +Piscine Blomet, Espace nautique Auguste Delaune, Piscine Communale, Piscine Château Landon, Piscine Salvador Allende, Piscine Paul Valeyre, Piscine municipale Bernard Lafay, Aquapol, Aqua Sénart, Les nymphéas, Oberkampf, Centre sportif Saint-Germain, Piscine municipal de Guyancourt, Bassin-école Vitruve, Piscine intercommunale, Piscine de Brunoy, Piscine Alex Jany, Piscine Fernand-Blanluet, Piscine Georges Hermant, Piscine municipale, Piscine Jean Taris, Centre nautique, Piscine de Marville, Piscine Intercommunale du Kremlin-Bicêtre, Piscine Georges Vallerey, Piscine Athis Paray, Piscine des Ulis, Piscine Levrière, Piscine Château des Rentiers, Piscine Municipale d'Ivry sur Seine, Piscine Lionel-Terray, Piscine Édouard Herriot, Piscine Hébert, Piscine de Fresnes, Piscine Molitor, Piscine Marcel Dumesnil, Piscine Jean Guimier, Piscine municipale Franck Esposito, Piscine, Piscine municipale, Piscine Joséphine Baker, Centre Aquatique Arthur Hévette, Paris Swimming Pool, Centre Aquatique de Saint-Cyr, Piscine Roger Le Gall, Piscine Intercommunale de Fosses, Espace nautique du Val-d'Orge, Centre aquatique Dôme de Vincennes, Pateaugeoire, Piscine, Piscine de Morsang, Piscine Christine Caron, Piscine Intercommunale, Robert Belvaux, Piscine Bertrand Dauvin, La vague, Oakland Swimming Pool, Piscine Champerret, Piscine, Piscine de Villaine, Centre aquatique d’Alfortville, La vague, Piscine Municipale Catherine Plewinski, Piscine Maurice Thorez, Piscine de Marville, Le Nautil, Piscine Pierre Bonningue, Piscine Montbauron, Berry Hill Pool, Piscine Alex Jany, Bassin reservé aux habitants du domaine du golf, Piscine Roger Avenau, Piscine de La Celle-Saint-Cloud, Newtown Townhomes Public Pool, Pool +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8169651 2.3597405, 48.8346251 2.2657680, 48.8315802 2.3158225, 48.8455659 2.3086884, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8501676 2.3621707, 48.8299268 2.3465439, 48.8563247 2.3152562, 48.8475898 2.3031985, 48.8463297 2.2794951, 48.8402491 2.3214518, 48.8323948 2.3645635, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.8536267 2.3664311, 48.8408422 2.3172666, 48.8387798 2.2536841, 48.8281523 2.2728394, 48.8168431 2.3604808, 48.8407841 2.3912112, 48.8586303 2.3897622, 48.8579937 2.3897210, 48.8364028 2.2775659, 48.8558395 2.3835889, 48.8519985 2.2908966, 48.8478375 2.3535433, 48.8522407 2.2805336, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8436106 2.3422313, 48.8233460 2.3160166, 48.8338034 2.2847592, 48.8464060 2.3874300, 48.8206480 2.3248645 +St. Albert and 49.4085805 8.6761541 +49.4066800 8.6851295, 49.4123932 8.7103247, 49.4022609 8.6800427, 49.4131657 8.7074358, 49.4115371 8.7077542, 49.4123530 8.7087690 +7 +yes +48.8707489 2.3907280, 48.8506016 2.3432743, 48.8459665 2.3500377, 48.8535359 2.3481924, 48.8450745 2.3528309 +0 +49.3788109 8.6919767, 49.4052150 8.6872450, 49.4118434 8.7084139, 49.4117760 8.7068775, 49.4117663 8.7064409 +259.51167152149065 +no +yes +Lochheim +yes +http://www.myvue.com/ +no +yes +yes +no +49.3988716 8.6899921, 49.3673694 8.6862886, 49.3704305 8.7013213, 49.3810973 8.6895578, 49.3593333 8.6876382, 49.3810576 8.6896077 +29 +Zoologisches Museum +22 +23 +45 and 48.8376960 2.3062844, 48.8831159 2.3425480, 48.8868146 2.3594625, 48.8481953 2.3419715, 48.8467471 2.3717077, 48.8668168 2.3257587, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8717742 2.2984126, 48.8668308 2.3028826, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8715217 2.3076937, 48.8884053 2.3785210, 48.8278753 2.3796701, 48.8664199 2.2892440, 48.8604399 2.3007825, 48.8864077 2.2949505, 48.8710343 2.3234791, 48.8730243 2.3445449, 48.8606580 2.3469337, 48.8330539 2.2881095, 48.8234693 2.3306543, 48.8562375 2.3660049, 48.8516696 2.2978180, 48.8528343 2.3441184, 48.8504483 2.2926945, 48.8518053 2.3448347, 48.8549752 2.3046163, 48.8868980 2.3004690, 48.8487972 2.3410105, 48.8683305 2.3330172, 48.8920470 2.3024290, 48.8609042 2.3467975, 48.8662424 2.3373468, 48.8814057 2.3282568, 48.8495763 2.3798752, 48.8238179 2.3241127, 48.8752556 2.2866823, 48.8704922 2.2798118, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8848968 2.3034428, 48.8542680 2.3078406, 48.8802164 2.2842407 +yes +55.9406104 -3.2945168, 55.9579671 -3.2416031, 55.9099988 -3.3187446, 55.9335740 -3.2140903, 55.9452785 -3.1910772, 55.9432977 -3.1864231, 55.9274173 -3.3075858, 55.9455180 -3.2068971, 55.9558479 -3.1868996, 55.9385133 -3.1977770, 55.9364081 -3.4051737, 55.9387724 -3.3554816, 55.9411930 -3.2700299, 55.9326592 -3.3137139, 55.9581549 -3.4146320, 55.9259159 -3.2475077, 55.9340106 -3.3057008, 55.9532891 -3.1942347, 55.9528215 -3.1966476, 55.9577481 -3.1745891, 55.9523152 -3.1996825, 55.9512080 -3.2029850, 55.9505306 -3.2060289, 55.9360698 -3.1801396, 55.9431462 -3.2098500, 55.9424957 -3.2178326, 55.9430404 -3.2209823, 55.9431450 -3.1777930, 55.9473014 -3.2066559, 55.9382479 -3.2288358, 55.9493199 -3.2107221, 55.9371375 -3.2021480, 55.9416831 -3.1813332, 55.9399477 -3.1799875, 55.9400554 -3.1800410, 55.9383873 -3.1947438, 55.9381286 -3.1934756, 55.9532580 -3.2007176, 55.9574289 -3.1707713, 55.9498239 -3.1879473, 55.9457420 -3.2062080, 55.9361540 -3.2091272, 55.9367921 -3.2080082, 55.9519655 -3.2019557, 55.9456455 -3.2052495, 55.9420725 -3.2685561, 55.9526727 -3.1905474, 55.9499553 -3.1886925, 55.9483500 -3.1918487, 55.9534890 -3.1892336, 55.9564328 -3.1863322, 55.9462158 -3.1854968, 55.9448431 -3.2048049, 55.9426898 -3.2037234, 55.9472487 -3.1909778, 55.9475118 -3.1893161, 55.9479802 -3.1868691, 55.9462178 -3.1884860, 55.9445944 -3.1837358, 55.9447090 -3.1838238, 55.9390205 -3.1796146, 55.9391727 -3.1798248, 55.9901108 -3.3958456, 55.9382045 -3.1790187, 55.9393085 -3.1795319, 55.9299097 -3.2092576, 55.9362743 -3.1942603, 55.9364425 -3.1941118, 55.9364298 -3.1945475, 55.9381921 -3.1929355, 55.9380470 -3.1915010, 55.9447005 -3.1877270, 55.9428356 -3.1884222, 55.9454993 -3.1874399, 55.9780196 -3.1734148, 55.9341605 -3.2104863, 55.9454998 -3.1881337, 55.9450783 -3.1887212, 55.9480103 -3.1837600, 55.9486091 -3.1831054, 55.9381703 -3.1892079, 55.9382556 -3.1704864, 55.9404236 -3.1696109, 55.9517036 -3.1735044, 55.9444953 -3.1872925, 55.9457242 -3.1982021, 55.9357656 -3.2102949, 55.9634754 -3.1970678, 55.9608923 -3.1970860, 55.9571867 -3.1639997, 55.9594665 -3.1504625, 55.9754036 -3.1792572, 55.9780588 -3.1803331, 55.9781026 -3.1779536, 55.9779864 -3.1732444, 55.9779219 -3.1732147, 55.9779507 -3.1735468, 55.9780888 -3.1742385, 55.9781653 -3.1742810, 55.9781945 -3.1744492, 55.9781519 -3.1745615, 55.9657634 -3.1762911, 55.9648030 -3.1769642, 55.9618573 -3.1797874, 55.9614066 -3.1810341, 55.9282699 -3.1971794, 55.9300538 -3.2006041, 55.9291787 -3.1994540, 55.9288531 -3.2399727, 55.9444072 -3.1838777, 55.9432514 -3.2138686, 55.9434340 -3.2137230, 55.9382190 -3.1871150, 55.9453045 -3.2316341, 55.9163168 -3.3178016, 55.9342480 -3.2099670, 55.9250348 -3.2099016, 55.9556996 -3.1881309, 55.9288850 -3.2096120, 55.9268034 -3.2091405, 55.9599520 -3.1873930, 55.9511210 -3.2277490, 55.9369030 -3.3008559, 55.9760995 -3.1730677, 55.9690233 -3.1728199, 55.9473560 -3.1862560, 55.9472450 -3.1859400, 55.9471464 -3.1859252, 55.9532957 -3.1984157, 55.9727023 -3.1754426, 55.9447520 -3.1840600, 55.9645394 -3.2127643, 55.9360200 -3.2090070, 55.9425943 -3.2128320, 55.9429739 -3.2134360, 55.9425021 -3.1970043, 55.9173034 -3.2149399, 55.9371649 -3.2025037, 55.9363800 -3.1997880, 55.9368530 -3.2004540, 55.9191956 -3.2130499, 55.8967480 -3.3189972, 55.9459933 -3.2231784, 55.9366703 -3.2079324, 55.9536450 -3.1936151, 55.9471310 -3.1906350, 55.9433250 -3.2363632, 55.9436340 -3.1927890, 55.9131941 -3.3215704, 55.9267768 -3.2325501, 55.9265880 -3.2362930, 55.9479871 -3.1862306, 55.9478974 -3.1862047, 55.9670709 -3.1749630, 55.9455865 -3.2342233, 55.9455978 -3.2346741, 55.9372962 -3.2491878, 55.9372632 -3.2492416, 55.9399014 -3.1712062, 55.9275895 -3.1645483, 55.9241128 -3.1723545, 55.9321255 -3.1800006, 55.9334491 -3.1664892, 55.9819333 -3.3968976, 55.9824701 -3.3972270, 55.9517351 -3.1896593, 55.9526200 -3.1872149, 55.9514550 -3.1958932, 55.9113288 -3.3221174, 55.9379636 -3.2403672, 55.9371924 -3.2382206, 55.9772777 -3.2461729, 55.9005835 -3.3187680, 55.9504487 -3.1855770, 55.9481787 -3.1818614, 55.9469357 -3.2061870, 55.9468336 -3.2067128, 55.9510529 -3.1895716, 55.9474405 -3.2025897, 55.9469842 -3.2055924, 55.9484546 -3.2033792, 55.9477666 -3.2049354, 55.9519571 -3.1962325, 55.9475027 -3.1864955, 55.9450666 -3.1879264, 55.9173837 -3.3145666, 55.9650759 -3.2031617, 55.9807357 -3.1771531, 55.9801105 -3.1784204, 55.9803382 -3.1778904, 55.9509532 -3.1703030, 55.9449293 -3.1531235, 55.9426622 -3.1700360, 55.9536680 -3.1591788, 55.9510831 -3.1696039, 55.9471411 -3.1970342, 55.9472696 -3.1965989, 55.9476455 -3.1953503, 55.9470721 -3.1972816, 55.9444791 -3.1881383, 55.9441090 -3.1902632, 55.9441665 -3.1899295, 55.9431021 -3.1885851, 55.9442010 -3.1896725, 55.9442375 -3.1894117, 55.9434877 -3.1870683, 55.9411521 -3.2175600, 55.9416473 -3.2167635, 55.9417417 -3.2166027, 55.9412822 -3.2173787, 55.9414839 -3.2157963, 55.9533340 -3.1882867, 55.9535985 -3.1880495, 55.9540940 -3.1883181, 55.9647669 -3.1742071, 55.9550392 -3.1900725, 55.9551557 -3.1901442, 55.9626030 -3.2336790, 55.9718556 -3.1742189, 55.9598707 -3.1836010, 55.9596341 -3.1834611, 55.9632066 -3.1785776, 55.9606353 -3.1818678, 55.9571142 -3.1859300, 55.9583267 -3.1846366, 55.9591802 -3.1838027, 55.9615406 -3.1806868, 55.9702777 -3.1722352, 55.9714725 -3.1735772, 55.9649663 -3.1768207, 55.9645028 -3.1902250, 55.9585203 -3.1837638, 55.9589264 -3.1833589, 55.9658761 -3.1755965, 55.9758546 -3.1700490, 55.9698878 -3.1717364, 55.9698710 -3.1719035, 55.9673457 -3.1743716, 55.9608269 -3.1809491, 55.9626007 -3.1788719, 55.9456193 -3.2178696, 55.9666564 -3.2048348, 55.9896602 -3.3989461, 55.9897226 -3.3892617, 55.9904018 -3.3860921, 55.9316272 -3.2648845, 55.9459387 -3.2172281, 55.9261122 -3.1387785, 55.9535442 -3.2058828, 55.9468426 -3.2042839, 55.9122985 -3.3155498, 55.9418064 -3.1502056, 55.9366240 -3.1802622, 55.9259084 -3.1931834, 55.9234603 -3.2480989, 55.9111503 -3.3240497, 55.9386253 -3.2265154, 55.9311720 -3.2951988, 55.9014700 -3.2230460, 55.9635314 -3.2337201, 55.9623235 -3.2362031, 55.9400736 -3.1717606, 55.9808127 -3.2595224, 55.9514755 -3.1782823, 55.9511672 -3.1780596, 55.9509125 -3.1777434, 55.9486026 -3.1924520, 55.9426281 -3.2128809, 55.9430915 -3.2136268, 55.9480325 -3.1815054, 55.9480039 -3.1817137, 55.9089361 -3.3201414, 55.9094368 -3.3204754, 55.9092872 -3.3205265, 55.9085739 -3.3187295, 55.9117444 -3.3246249, 55.9114205 -3.3241848, 55.9691533 -3.2784692, 55.9163294 -3.3174640, 55.9437913 -3.2075720, 55.9438322 -3.2058300, 55.9439569 -3.2059882, 55.9141250 -3.3250705, 55.9140139 -3.3251617, 55.9414930 -3.1764095, 55.9501068 -3.1901274, 55.9502048 -3.1904658, 55.9502374 -3.1901476, 55.9777985 -3.2431662, 55.9341031 -3.3103280, 55.9338808 -3.3104461, 55.9505032 -3.1770192, 55.9644079 -3.2126470, 55.9509705 -3.1758549, 55.9353260 -3.1974910, 55.9359590 -3.1944058, 55.8843050 -3.3391037, 55.9439543 -3.2071456, 55.9319254 -3.2512353, 55.9173812 -3.3147110, 55.9482625 -3.1920719, 55.9122188 -3.3171913, 55.9228018 -3.1364902, 55.9552280 -3.1478679, 55.9549996 -3.1445229, 55.9355007 -3.1026548, 55.9135725 -3.3140139, 55.9167553 -3.3178746, 55.9218026 -3.1745330, 55.9220250 -3.1740037, 55.9222596 -3.1746208, 55.9451505 -3.1872267, 55.9426518 -3.1008380, 55.9338262 -3.0919845, 55.9338797 -3.0920141, 55.9189185 -3.2647989, 55.9214872 -3.3034840, 55.9344336 -3.1226594, 55.9503499 -3.1810630, 55.9516064 -3.1841709, 55.9237248 -3.2366306, 55.9833943 -3.2415959, 55.9347829 -3.1798219, 55.9122663 -3.3242829, 55.9154236 -3.3172381, 55.9676214 -3.1664619, 55.9247393 -3.2762275, 55.9834316 -3.2423890, 55.9836698 -3.2462331, 55.9836844 -3.2504406, 55.9837405 -3.2490698, 55.9265395 -3.2441561, 55.9358853 -3.2101222, 55.9495537 -3.1836402, 55.9229086 -3.3978162, 55.9095509 -3.2288170, 55.9086019 -3.2094913, 55.9503720 -3.1813833, 55.9504108 -3.1802868, 55.9507721 -3.1811578, 55.9658637 -3.1761995, 55.9527684 -3.2488426, 55.9812296 -3.1751262, 55.9812432 -3.1752913, 55.9614848 -3.1812115, 55.9503954 -3.3029550, 55.9395842 -3.2047515, 55.9395958 -3.2047474, 55.9376968 -3.2030817, 55.9089416 -3.3164123, 55.9308207 -3.2096951, 55.9743623 -3.1997016, 55.9330618 -3.1065999, 55.9335680 -3.1067948, 55.9375488 -3.3118506, 55.9728634 -3.3514884, 55.9429037 -3.2078542, 55.9475883 -3.3646294, 55.9459800 -3.2223160, 55.9593810 -3.2409668, 55.9561231 -3.1987844, 55.9463571 -3.2082808, 55.9231651 -3.2343395, 55.9561721 -3.1565201, 55.9378482 -3.3327076, 55.9445564 -3.2071394, 55.9524023 -3.1867211, 55.9525000 -3.1872298, 55.9423834 -3.1891736, 55.9396025 -3.1913584, 55.9383523 -3.2265410, 55.9350508 -3.1940011, 55.9585188 -3.1644249, 55.9517703 -3.2028837, 55.9395810 -3.1916680, 55.9457233 -3.1826212, 55.9625044 -3.2362710, 55.9627903 -3.2341275, 55.9414710 -3.2036216, 55.9295687 -3.1756519, 55.9242094 -3.1728587, 55.9239552 -3.1723571, 55.9240756 -3.1746808, 55.9241838 -3.1735301, 55.9230650 -3.1714407, 55.9232656 -3.1716767, 55.9519102 -3.2244910, 55.9386901 -3.3172128, 55.9387953 -3.3165959, 55.9268426 -3.1666054, 55.9413339 -3.2710077, 55.9413445 -3.2708146, 55.9443702 -3.1853406, 55.9409652 -3.1851060, 55.9411294 -3.1853959, 55.9548088 -3.1927863, 55.9273713 -3.1874512, 55.9441079 -3.1919941, 55.9265863 -3.2092898, 55.9509401 -3.1790287, 55.9632358 -3.1796142, 55.9274324 -3.1996630, 55.9303417 -3.2637536, 55.9303636 -3.2638502, 55.9305298 -3.2635743, 55.9308144 -3.2639192, 55.9583318 -3.1187044, 55.9140621 -3.2840381, 55.9532656 -3.1152143, 55.9533715 -3.1154926, 55.9536925 -3.1156095, 55.9523964 -3.1125548, 55.9531590 -3.1065611, 55.9569152 -3.1168216, 55.9545977 -3.1418305, 55.9374032 -3.1711512, 55.9392787 -3.1786578, 55.9392916 -3.1784800, 55.9410201 -3.1806656, 55.9409384 -3.1805218, 55.9435127 -3.1836307, 55.9446441 -3.1839145, 55.9353259 -3.1974274, 55.9356823 -3.2014008, 55.9372592 -3.2021206, 55.9429165 -3.1831794, 55.9121573 -3.3216925, 55.9312185 -3.1718146, 55.9274598 -3.3076072, 55.9276450 -3.3080783, 55.9276631 -3.3081360, 55.9239739 -3.2513488, 55.9340161 -3.1746636, 55.9258469 -3.1648168, 55.9539972 -3.1945597, 55.9230518 -3.1726728, 55.9233383 -3.1720153, 55.9624754 -3.2326403, 55.9551794 -3.4015311, 55.9383407 -3.3187573, 55.9310730 -3.3145350, 55.9311471 -3.3142171, 55.9157480 -3.2864086, 55.9159814 -3.2865221, 55.9484210 -3.1872643, 55.9503683 -3.2078227, 55.9305617 -3.1761991, 55.9192762 -3.1670567, 55.9448310 -3.1949994, 55.9446376 -3.1965778, 55.9445589 -3.1947495, 55.9444142 -3.1965059, 55.9258509 -3.1647719, 55.9447377 -3.1971839, 55.9442766 -3.1978649, 55.9324266 -3.1585275, 55.9417129 -3.1849464, 55.9417884 -3.1851916, 55.9418282 -3.1853346, 55.9418526 -3.1852528, 55.9418744 -3.1849589, 55.9418899 -3.1847817, 55.9418905 -3.1855192, 55.9419227 -3.1854387, 55.9420262 -3.1854659, 55.9421747 -3.1855648, 55.9412750 -3.1446800, 55.9330745 -3.2607364, 55.9207513 -3.1600951, 55.9520027 -3.2062005, 55.9523984 -3.2038646, 55.9530497 -3.2000438, 55.9534470 -3.1976948, 55.9535975 -3.1968237, 55.9331086 -3.1362248, 55.9328125 -3.1366963, 55.9221224 -3.1339138, 55.9223185 -3.1339297, 55.9225101 -3.1339536, 55.9230177 -3.3792156, 55.9447090 -3.1977550, 55.9354932 -3.2368783, 55.9811288 -3.1900190, 55.9687011 -3.1415142, 55.9611799 -3.1900622, 55.9443966 -3.1836641, 55.9389888 -3.1717191, 55.9390958 -3.1739542, 55.9396811 -3.1731682, 55.9400456 -3.1761228, 55.9408960 -3.1768412, 55.9044458 -3.1561935, 55.9369677 -3.2108383, 55.9219280 -3.1788973, 55.9551528 -3.1962671, 55.9332627 -3.2293915, 55.9217192 -3.1545460, 55.9220531 -3.1536922, 55.9538687 -3.1922380, 55.9773393 -3.1724494, 55.9789535 -3.2110248, 55.9449763 -3.1994667, 55.9440570 -3.0985717, 55.9308970 -3.2761417, 55.9308699 -3.2764985, 55.9449994 -3.1905191, 55.9450146 -3.1904231, 55.9450298 -3.1903272, 55.9450449 -3.1902313, 55.9451338 -3.1906532, 55.9471706 -3.1875904, 55.9472333 -3.1877797, 55.9473065 -3.1867806, 55.9474310 -3.1878868, 55.9475351 -3.1877754, 55.9476704 -3.1869573, 55.9466232 -3.1903104, 55.9227217 -3.1743920, 55.9228810 -3.1754273, 55.9231124 -3.1754193, 55.9229249 -3.1782458, 55.9499694 -3.1797507, 55.9499757 -3.1798160, 55.9500637 -3.1794660, 55.9500938 -3.1794485, 55.9229601 -3.1790391, 55.9234202 -3.1790544, 55.9496737 -3.1953225, 55.9496093 -3.1936827, 55.9324201 -3.2283154, 55.9332542 -3.2297846, 55.9540835 -3.1946291, 55.9538883 -3.1945191, 55.9332338 -3.3059686, 55.9461074 -3.1908473, 55.9219330 -3.1748598, 55.9218016 -3.1748987, 55.9219960 -3.1749734, 55.9744239 -3.1691820, 55.9728088 -3.1726327, 55.9357218 -3.3185706, 55.9415743 -3.1747965, 55.9415635 -3.1757823, 55.9116844 -3.3222899, 55.9119672 -3.3224414, 55.9239634 -3.1724671, 55.9220936 -3.1720186 +US, IN, DE +yes +48.8914267 2.4345090, 48.9303011 2.2689297, 48.6997370 2.3739749, 48.8735147 2.3546804, 48.8725743 2.3544129, 48.8454320 2.2826721, 48.8679601 2.3808000, 48.9339922 2.3313679, 48.9053922 2.3819002, 48.9094672 2.2166278, 48.9516594 2.5645141, 48.9294308 2.4038695, 48.9659991 2.3902127, 49.0017114 2.3713145, 48.8876260 2.3607080, 48.8874370 2.3698420, 48.7112625 2.2604075, 48.8198429 2.2571666, 48.7958766 2.3159566, 48.8076552 2.2964862, 48.8431118 2.5325015, 48.7723428 2.4068085, 48.8819623 2.4866656, 48.9020602 2.2405931, 48.8953252 2.2983414, 48.9499377 2.4966883, 48.8985762 2.2000173, 48.7813956 2.4460465, 48.8420784 2.3551117, 48.8707111 2.3526824, 48.8742511 2.3562294, 48.8679659 2.3772772, 48.8690173 2.3800602, 48.9196348 2.3033098, 48.8725697 2.3037667, 48.9521895 2.2347921, 48.9255385 2.2792899, 48.7856167 2.2510412, 48.8853542 2.4002846, 48.7959103 2.1395452, 48.9506037 2.3920534, 48.8873605 2.3541200, 48.8885339 2.3563367, 48.8172877 2.3936138, 48.9199822 2.4253046, 48.8986515 2.6018540, 48.7055664 2.4096044, 48.8816642 2.2404690, 48.7818134 2.3570405, 48.8896443 2.2189544, 48.7261722 2.2720548, 48.9458719 2.3715656, 48.9761310 2.3837075, 48.9717304 2.3907479, 48.9774026 2.4109439, 48.9724538 2.3933323, 48.9670268 2.3975092, 48.9792955 2.3972390, 48.9703955 2.3947230, 49.0085298 2.3947059, 48.9934635 2.2467040 +yes +250.5, 164, 493, 118, 103, 82 +1 +Le Fournil de Lourmel, La Boul'Ange, La Boulenge d'Antan, Boulangerie - Pâtisserie Méri, Les Sourires de Dante, Du Pain et des Idées, La Gerbe d'Or, Boulangerie Hélène et Bernard Dorange, Les compagnons de Voltaire, Guesdon, Aux délices de Saint-Antoine, Jacques Bazin, Aux Délices de Manon, Céline et Étienne, Vitry d'Aubigny, Boulangerie Thierry Renard, Moisan, Le Grenier à Pain, Nature de pain, Le chant du pain, A. et H. Jourdan, Le Pain d'Auguste, Boulangerie Topaze, Boulanger Pâtissier Julien, Chez Paco, La baguette des Pyrenees, Aux Délices de Sèvres, Boulangerie Patisserie, Boulangerie Pâtisserie des Deux ponts, Gwen Choc, Boulangerie Julien, Boulangerie Pâtisserie Gaumer, Boulangerie Malineau, Boulangerie Kahn, Boulangerie Blin, Boulangerie Patrick et Christine, Boulanger patissier, Boulanger Patissier, Le Moulin de la Vierge, L'Univers du Pain, Bread & Roses, Au Saint-Honoré, Boulangerie "Les Caprices de Charlotte", Le Boulanger des Invalides, Boulangerie de l'Entr'acte, Le Boulanger de Monge, Maison Bichon, Aux Gamins de Ménilmontant, L'Epi d'Or, Boulangerie Yan Chantelle, Boulangerie Bonon, Maison Dault, La Grignotière, Le Badine de Martine, Bechu, Boulangerie Schou, Des Gâteaux et du Pain, Jossé, Boulangerie Saint-Louis, Le Fournil Du Village, Aux Sucreries de ma Mie, Le Quai du Pain, Huré Boulanger Patissier, Boulangerie Thevenin, Boulangerie Pascal & Sylvie Robin, Aux délices du palais, Boulangerie Gontier, Boulangerie Laurent Roperh, Les petits mitrons, Patiserie des Sultans, Autour du Fournil, La Tlemcenienne, Le Grenier de Félix, Paul, Boulangerie Patisserie, Le boulanger du parc, Les Délices Vauvenargues, Boulangerie, Boulangerie du Val de Grâce, Aux délices de Christine, Moisan, Blé sucré, Christian et Myckie, Patisserie de Choisy, Patisserie Saison, Arnaud DELMONTEL, La Maubeugeoise, Au Bec Sucré, Boulangerie Eric Kayser, Michel Deschamps, Leduc, Pains et Gourmandises, Les Saveurs de Charenton, Au Pain d'Autrefois, Landemaine, Boulangerie Maison Ellini, au naturel, Zerzour, Pichard, Dossemont, Moisan, La Truffe Noire, Le Saint-Georges, Les Gourmandises D'Eiffel, Eric Kayser, Paul Soulabaille, De Carvalho, Le Prestige, Au Coin de la Rue, Hissine, Boulangerie Patisserie de la Villette, Dominique Saibron, La fournée d'Augustine, Le Pain de Jacques, Au Plaisir du Pain, Boulangerie Feu de Bois, Au Levain des Martyrs, Paul, La Pompadour, La Ruche Gourmande, Aki boulanger, Boulangerie du Fauborg, Boulanger Patissier, Boulangerie Magnelli, La Parisienne, Maison Kayser, Boulangerie des Epinettes, Aux Epis d'Or, Boulangerie F. Comyn, Boulangerie Pâtisserie L'Escale, Boulanger Ounissi, Christophe & Muriel, Le petit creux, Cousin, Le Notre, Stohrer, Le fournil d'Andrézieux, Friends, Boulangerie Jean-Olivier Rondot, L'impérial, Boulangerie Ravignan, Coquelicot, Le 41, Boulangerie Fantasiiia, Au Levain de Pyrénées, A la baguette de Mozart, Boulangerie, Au Duc de la Chapelle, L'ami du pain, La Boulange du 12e, Le pain d'antan, Boulangerie, Sadaharu Aoki, Maison Champin, La Gourmandise, La Flûte Enchantée, Midoré, La Tranche Dorée, Artisan Boulanger, Maison Lendemaine, La Gobelinoise, Boulangerie Akiko et Philippe Bruere, Paul, Lebon, Tembely, Le Fournil de Julien, Aux armes de Niel, Le Grenier à Pains, Au pain complet de Paris, La Moulinoise, Maison Legendre, Boulangerie, Delmontel, Festival des pains, Artisan boulanger, Vaudron, Les Sept Épis, Pains et Passion, Les Délices du Fournil, francesca, Boulangerie Alsacienne Benoît Maeder, Bernard Delattre, Poilane, Rouiller, La Tradition, Le Bel Épi, La Gerbe de Blé, La boulangerie des buttes Chaumont, Atelier des Pains, Paul, Fournil de Wattignies, Huré, La Chocolatine, L'Art du Pain, Paul, By Cyril Lignac, Aux delices des Lilas, Boulangerie Benoist, Boulangerie Patisserie, Le Fournil de Paris, Le pétrin alsacien, La fournée Duhesme, Robin, Au Fournil Gaité, Au Chardon d'Argent, Boulangerie des Lombards, Zazou, Le Fournil de Paris, Millies Cookies, La Boul'Ange, Le péché des gourmets, Paul, Paul, Boulangeir Pâtisserie Kellerman, Amorino, Yv Nghy, Boulangerie Patisserie SAS Penain, L'Artisan du Pain, Boulangerie Patisserie Sainte-Anne, La Crac'ante, La Gambette à Pain, Maison Hébert, Maison Kevest, Boulangerie Patisserie Sandwicherie, Le fournil du moulin, La vicomte, Bonjour Backery, Paul, Fifty Fifty, Laurent Duchêne, La Bretagne, Boulangerie Brune 77, Boulangerie L. Paulin, Le fournil de Vanves, Maison Lefaure, Le Jardin des Pains, Boulangerie Pâtisserie Yelles, Annie & Gilles Boulangerie, Aux délices de la roquette, La tradition du pain, La saveur du pain, La Huche Normande, Square de Belleville, Les jardins de Paul'ha, Le grenier à pain, Boulangerie Saint-Charles, Boulangerie Flandrin, L'Angelus, Guillaume Delcourt, Boulangerie de Mogador, Boulangerie Patisserie, Patisserie Poncet, Eric Kayser, Boulangerie Pascal Chevret, Le Grenier à Pain, Boulangerie, Le Fournil Parmentier, Les délices de la Chapelle, Boulangerie Marceaux, Aux Péchés Normands, La Baguette Sedaine, Boulangerie, Le pain d'autrefois, Rudy Père Et Fils, Boulangerie Onfroy, Boulangerie Poilâne, La Boulangerie, Boulangerie Patisserie, Midoré, Boulangerie Patisserie au 140, Au bel arôme, Boulangerie Saint-Antoine, Bernard Telhier, La flûte Gana, Colisée Gourmet, La Boulange Ve, Sud Tunisien, Artisan Boulanger, Aux Péchés Normands BIO, La Fournée d'Augustine, Le bon Panneton, Boulangerie, La République pâtissière, Au petit Versailles du Marais, Patisserie Bonjour - 你好, Au Blé d'or, Colin Régis, Gérard Mulot, Maison Guénard, Boulangerie Metayer, Artisan boulanger pâtissier, Banette, Le blé royal, Délice Pain, Le Moulin De la vierge, Golden Bread, EVA, La Boulangerie de Papa, Ciel, Aux Délices de Manon, Foulon, Brioche Dorée, Paul, Desgranges, Paul, Paul, Le Grenier à Pain, Boulangerie Patisserie, Boulangerie Patisserie, Au Plaisir du Pain, Yves Thuriès Chocolat, Au Paradis du Gourmand, Ladurée, Boulangerie Alsacienne, Les délices de taine, Aux Gourmandises d'Arago, Boulangerie Evrard, Le Boulanger de Monge, Eric Kayser, Paul, Pou, Sara Lina, La baguette, Le Moulin de la Vierge, Asselin, Mert Pâtisserie, Joséphine Bakery, Paul, Maison Morange, Les Chants de Blé, La Panetière, Paul QUAI, Mottier, Le quartier du pain, Morieux, Au royaume du pain, Boulangerie, Le Gay Choc, Mason Pradier, Pains & Friandises, La Pyramide du prince, Le Pain Au Naturel, Maison Hardel, Boulangerie Ricquer, Thevenin, Au Petit Duc, Aux Surprises, Laurent Duchêne, La caverne aux pains, L'essentiel, Le pain du faubourg, Boulangerie Estaëlle, Contini, Gosselin, Paul, Pabois, Café Pouchkine, Eric Kayser, Boulangerie Patistory, La Truffe Noire, Maison Hilaire, Aux delices d'Oceane, La flute de Meaux, L'artisan boulanger Maison Maaned, Le Fournil de Kuss, La Croquandise, La grange aux pains, Le XXV, Boulangerie Malineau, Boulangerie Patisserie, La delicieuse, Boulangerie Patisserie, Boulangerie Patisserie, Vieille France, Boulangerie Patisserie, Le fournil de Paris, Boulangerie Patisserie, Le paradis du pain, Les Fées Pâtissières, Stanz, Pralus, Le dépot de pain de l'autre Boulange, La délicieuse, Le puits d'amour, Nicolle, Boulangerie Patisserie Gregory Desfoux, Boulangerie Patisserie, Boulangerie Patisserie, Boulangerie, Eric Kayser, Éric Kayser, Boulangerie Patisserie Chocolaterie, Sazanka, Boulangerie Patisserie, Le paradis des gourmands, Gaia, La coeur des pains, Tout chaud, Le petit poucet, Paul, Paul, Les Chants de Blé, Boulangerie Patisserie Chocolatier, Antoine Artisan Boulanger Pâtissier, Le gâteau battu, Aux Délices de Sèvres, Eric Kayser, Eric Kayser, Le Pain Quotidien, Lohezic, Au levain d'antan, Mireille, Le Damier Gourmand, R Canelle, Miss Manon, L'Épi de Blé, Boulangerie Patisserie, Paul, Boulanger Patissier, Brioche Dorée, Pain à la Ligne +55.9381717 -3.2059291 +726 +yes +yes +19 +yes +48.8611385 2.3941583, 48.8875758 2.3303180, 48.8749189 2.4002158, 48.8979156 2.3166483, 48.8890374 2.3392764, 48.8607252 2.4037124, 48.8624937 2.2850289, 48.8866268 2.3732545, 48.8868716 2.3419216, 48.8848404 2.3887566 +yes +15 +55.9451817 -3.1797665, 55.9519194 -3.1206685, 55.9358911 -3.1317799, 55.9374522 -3.1226785, 55.9244123 -3.1588931, 55.9835999 -3.1958115, 55.9641435 -3.1730936, 55.9742767 -3.1702118, 55.9731159 -3.1739750, 55.9574184 -3.1562247, 55.9099801 -3.2277882, 55.9191282 -3.2765048, 55.9643785 -3.1730529 +51.0844645 13.6487103, 51.0273756 13.7474285, 51.0823918 13.7335753, 51.0824545 13.7336039, 51.0825170 13.7336323, 51.0829896 13.7332707, 51.0828616 13.7332262, 51.0827595 13.7331813, 51.0826580 13.7331399, 51.0825999 13.7331126, 51.0825362 13.7330866, 51.0827583 13.7327555, 51.0832603 13.7324804, 51.0831002 13.7336158, 51.0795251 13.6564388, 51.0803520 13.6560575, 51.0797631 13.6570269, 51.0805189 13.6559334, 51.0798370 13.6570887, 51.0801264 13.6570556, 51.0798991 13.6571398, 51.0798900 13.6567596, 51.0800585 13.6558509, 51.0795075 13.6568246, 51.0800106 13.6572306, 51.0802644 13.6565229, 51.0801590 13.6559327, 51.0796771 13.6569580, 51.0801474 13.6574467, 51.0795919 13.6568858, 51.0799591 13.6557717, 51.0806719 13.6547946, 51.0844031 13.6492495, 51.0844377 13.6491173, 51.0845865 13.6492686, 51.0848005 13.6481637, 51.0560319 13.6534353, 51.1129021 13.7134784, 51.0870850 13.7344070, 51.0879019 13.7346740, 51.0872746 13.7345070, 51.0400501 13.6372683, 51.0400368 13.6376398, 51.0397949 13.6376750, 51.0398668 13.6372683, 51.0396860 13.6366848, 51.0395593 13.6369259, 51.0392180 13.6369677, 51.0396431 13.6373610, 51.0396199 13.6371140, 51.0392895 13.6367341, 51.1523082 13.7957194, 51.1532344 13.7957454, 51.1521680 13.7957598, 51.1520584 13.7957188, 51.1536728 13.7955165, 51.1520531 13.7963601, 51.1522370 13.7957382, 51.0847930 13.6490593, 51.0849131 13.6491394, 51.0845156 13.6488769, 51.0847316 13.6490137, 51.0849792 13.6491835, 51.0844573 13.6488382, 51.0848531 13.6490969, 51.0685627 13.6241474, 51.0695246 13.6253081, 51.0699998 13.6237618, 51.0683859 13.6251032, 51.0701737 13.6247207, 51.0683173 13.6249097, 51.0694974 13.6255021, 51.0679836 13.6227283, 51.0698285 13.6245618, 51.0682702 13.6249019, 51.0700321 13.6235780, 51.0699302 13.6241295, 51.0706362 13.6240940, 51.0699677 13.6239464, 51.0699803 13.6233425, 51.0698958 13.6243490, 51.0683476 13.6228519, 51.0703047 13.6239192, 51.0681631 13.6226829, 51.0681586 13.6222257, 51.0705447 13.6245614, 51.0704860 13.6238946, 51.1190382 13.7795044, 51.0400538 13.6374139, 51.0422774 13.6356744, 51.0419915 13.6350658, 51.0422431 13.6350551, 51.0423833 13.6350452, 51.0422138 13.6356743, 51.0424026 13.6345030, 51.0424536 13.6356798, 51.0419222 13.6347316, 51.0425869 13.6359640, 51.0424255 13.6347004, 51.0423683 13.6356861, 51.0419113 13.6345174, 51.0423088 13.6353555, 51.0432389 13.7577645, 51.0436111 13.7590246, 51.1521334 13.7973645, 51.1521117 13.7971177, 51.1520977 13.7967766, 51.1526180 13.7960916, 51.1531397 13.7962202, 51.1521522 13.7975794, 51.0542981 13.6500944, 51.0444714 13.6375970, 51.0445916 13.6380352, 51.0452089 13.6382144, 51.0448329 13.6384755, 51.0420013 13.6356697, 51.0419801 13.6353571, 51.0449595 13.6381873, 51.0450957 13.6377784, 51.0451578 13.6382089, 51.0451645 13.6385095, 51.0445991 13.6376131, 51.0447789 13.6380437, 51.0449673 13.6384880, 51.0451001 13.6385027, 51.0450315 13.6384948, 51.0450594 13.6382009, 51.0416818 13.6350996, 51.0450879 13.6379787, 51.0454522 13.6334655, 51.0444342 13.6335000, 51.0444346 13.6335829, 51.0453155 13.6342072, 51.0453139 13.6338984, 51.0446628 13.6337701, 51.0446591 13.6334707, 51.0453174 13.6340041, 51.0453155 13.6341049, 51.0451033 13.6335278, 51.0444341 13.6336615, 51.0288807 13.7029059, 51.0288738 13.7030353, 51.0644000 13.6702199, 51.0645429 13.6701187, 51.0634300 13.6708257, 51.0629448 13.6704116, 51.0631020 13.6703333, 51.0643496 13.6698018, 51.0644680 13.6697240, 51.0644477 13.6701873, 51.0636715 13.6706991, 51.0634927 13.6708243, 51.0635567 13.6707778, 51.0643411 13.6702497, 51.0644908 13.6701611, 51.0644102 13.6697624, 51.0630231 13.6703734, 51.0641429 13.6701305, 51.0634263 13.6702687, 51.0639096 13.6702519, 51.0091874 13.7517437, 51.0791960 13.7360348, 51.0794212 13.7358213, 51.0870710 13.7344832, 51.0142964 13.7502569, 51.0640528 13.6635614, 51.0638879 13.6639550, 51.0641915 13.6639163, 51.0641879 13.6640152, 51.0638942 13.6637425, 51.0641939 13.6638145, 51.0639733 13.6633695, 51.0638080 13.6677778, 51.0632291 13.6683586, 51.0629009 13.6680561, 51.0636169 13.6676692, 51.0631196 13.6683612, 51.0628342 13.6680588, 51.0636968 13.6679241, 51.0545652 13.6571661, 51.0544809 13.6571568, 51.0545984 13.6575051, 51.0565349 13.6490424, 51.0580882 13.6488216, 51.0546570 13.6508731, 51.0571567 13.6545872, 51.0556063 13.6475528, 51.0569011 13.6540618, 51.0561655 13.6542541, 51.0546351 13.6507613, 51.0559429 13.6545543, 51.0571677 13.6557061, 51.0545624 13.6504539, 51.0568417 13.6544648, 51.0569245 13.6550228, 51.0568989 13.6556656, 51.0570603 13.6550313, 51.0567548 13.6539175, 51.0569839 13.6545736, 51.0570223 13.6555839, 51.0563415 13.6551338, 51.0557576 13.6480748, 51.0560964 13.6490288, 51.0556641 13.6496888, 51.0559435 13.6495665, 51.0561604 13.6490052, 51.0559214 13.6494670, 51.0561791 13.6494340, 51.0557350 13.6491827, 51.0562316 13.6494131, 51.0561324 13.6494525, 51.0562531 13.6489722, 51.0414360 13.6346991, 51.0537377 13.6809286, 51.0869121 13.6263809, 51.0864569 13.6264478, 51.0868109 13.6272543, 51.0865604 13.6261106, 51.0868648 13.6272874, 51.0863500 13.6267865, 51.0863754 13.6267068, 51.0864006 13.6266273, 51.0865935 13.6259527, 51.0865248 13.6262863, 51.0869641 13.6261298, 51.0869379 13.6262564, 51.0864323 13.6265290, 51.0687005 13.7630620, 51.0645983 13.6700479 +yes +3 +55.9424798 -3.2815897 +22 +49.3872050 8.6620109, 49.3988716 8.6899921, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.3851489 8.6733031, 49.3848920 8.6803000, 49.3673694 8.6862886, 49.3956207 8.6692054, 49.3704305 8.7013213, 49.3810973 8.6895578, 49.3593333 8.6876382, 49.3810576 8.6896077 +55.8994270 -3.2972350, 55.9232575 -3.2877434, 55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9002100 -3.2321660, 55.9579565 -3.2439627, 55.9297115 -3.2566004, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9372727 -3.3656602, 55.9344345 -3.1791228, 55.9100535 -3.1423251, 55.9377502 -3.4029754, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9365550 -3.3142140, 55.9836311 -3.3989193, 55.9826346 -3.1875882, 55.9248058 -3.2496194, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9051775 -3.1653894, 55.8839472 -3.3405441, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9695021 -3.2293678, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9102318 -3.2377415, 55.9781314 -3.1744029, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9242943 -3.2525824, 55.9398424 -3.2041012, 55.9397193 -3.2934475 +Mo-Sa 10:30-20:00, Su 14:00-20:00, Sa-Su 09:00-18:00 and 48.8198098 2.3426440, 48.8486860 2.3472380, 48.8809912 2.3271773, 48.8311200 2.3020623 +Dufftown, Gottesgabe, Dresden, Kurort Rathen, Smyrna, Condom, Bremen, Bad Bellingen, Efringen-Kirchen, St. Helens, Lexington, Herrenberg, Berchtesgaden, Guderhandsviertel, Dalwhinnie, Hagen, Fort Collins, Oban, Minneapolis, 員山鄉宜蘭縣, Freeport +16 +49.4181786 8.7569634, 49.4145277 8.6909495, 49.4111212 8.7021704, 49.4210980 8.7559586 +yes +10 +Mo-Sa 09:30-20:00 +49.4120976 8.7096738 +yes +no +55.9248874 -3.1446384 +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8169651 2.3597405, 48.8346251 2.2657680, 48.9012005 2.3862959, 48.8801709 2.3706981, 48.8315802 2.3158225, 48.8455659 2.3086884, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8501676 2.3621707, 48.8593908 2.3144172, 48.8299268 2.3465439, 48.8609726 2.2828299, 48.8563247 2.3152562, 48.8611046 2.3413657, 48.8475898 2.3031985, 48.8463297 2.2794951, 48.9003252 2.3734463, 48.8402491 2.3214518, 48.8804901 2.2865619, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8323948 2.3645635, 48.8645440 2.4097670, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.9007525 2.3748724, 48.8635857 2.2722338, 48.8536267 2.3664311, 48.8408422 2.3172666, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8387798 2.2536841, 48.8281523 2.2728394, 48.8168431 2.3604808, 48.8595020 2.3116861, 48.8407841 2.3912112, 48.8607706 2.3747898, 48.8787212 2.3698437, 48.8586303 2.3897622, 48.8579937 2.3897210, 48.8364028 2.2775659, 48.8558395 2.3835889, 48.8519985 2.2908966, 48.8656358 2.2892405, 48.8786755 2.3549221, 48.8797035 2.3026873, 48.8478375 2.3535433, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8936152 2.3152934, 48.8522407 2.2805336, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8711680 2.3244832, 48.8436106 2.3422313, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.8233460 2.3160166, 48.8338034 2.2847592, 48.8464060 2.3874300, 48.9007173 2.3745755, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8206480 2.3248645, 48.8936129 2.3029112 +78 +49.4073193 8.7078225 +yes + +49.4869999 8.7367276, 49.4943601 8.7246887 +La bobine de fil and www.cite-creation.com, Fresque du Demi-Millénaire - Part 2, Le mur des Canuts and http://cite-creation.com/, Le quartier des Eats-Unis (mur 18), Fresque Histoire des transports Lyonnais, Fresque "Lyon, la santé, la vie" and http://cite-creation.com/, Lyon et sa région, terre de l’humanisme and http://cite-creation.com/, Lyon et sa région, terre de l’humanisme and http://cite-creation.com/, Le mur du cinéma and http://cite-creation.com/, Fresque de Gerland and http://cite-creation.com/, La Fresque Lumineuse - La ville dans le futur and http://cite-creation.com/, Fresque "Mur Démo" and http://cite-creation.com/, Espace Diego Rivera, Une cité industrielle (mur 4), Fresque de Shangaï, Le Théâtre des Charpennes and http://cite-creation.com/, Abattoirs de la Mouche (mur 17), Annonce du Musée (mur 3), Années 1900 (mur 3), Cité idéale d'Egypte (mur 19), Cité idéale de Russie (mur 23), Cité idéale de l'Inde (mur 20), Cité idéale de la Côte d'Ivoire (mur 22), Cité idéale des USA (mur 24), Cité idéale du Mexique (mur 21), École (mur 10), École (mur 10), Etablissements sanitaires (mur 12), Habitations en communs, vue d'ensemble (mur 7), Habitations, vue rapprochée (mur 8), Hôpital de Grange-Blanche (mur 16), La gare, une perspective (mur 6), La tour d'horloges (mur 11), Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Le stade de Gerland (mur 15), Les hauts fourneaux (mur 14), Les services publics (mur 5), Tony Garnier Visionnaire (mur 2), Vue des usines (mur 13), Camionnette Disques Wem, Cité idéale de la Côte d'Ivoire (mur 22), Rue des grands chefs - Restaurant Paul Bocuse and http://cite-creation.com/, Paul Bocuse - Restaurant Paul Bocuse and http://cite-creation.com/, Mur de la Cour des Loges, Fresque "La renaissance" and http://cite-creation.com/, Fresque "Montluc - Jean Moulin" and http://cite-creation.com/, Fresque "Art et Industrie" and http://cite-creation.com/, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, La Fresque du Demi-Millenaire - Part 1, La fresque des Lyonnais and http://cite-creation.com/, La Bibliotheque de la Cité "des écrivains en Rhône-Alpes" and http://cite-creation.com/, Boulevard de la B.D., Boulevard de la B.D., Boulevard de la B.D., La Dombes, Fresque de Meyzieu and www.7e-sens.fr, Fresque des Fourchettes and http://www.gerard-gasquet.com/, Fresque La Résidence de la Sarra and http://cite-creation.com/, Fresque La Résidence de la Sarra and http://cite-creation.com/, Fresque La Résidence de la Sarra and http://cite-creation.com/, Fresque idéale de Québec and http://cite-creation.com/, Charlie Chaplin Bubbles and http://www.7e-sens.fr, Mayoud Honda, Fresque "Oullins Centre-ville" and http://cite-creation.com/, Fresque "Du Pont d'Oullins" and http://cite-creation.com/, Mur peint : L’auberge savoyarde and http://www.7e-sens.fr, La Fresque du Foyer and http://cite-creation.com/, La Fresque Art Déco and http://cite-creation.com/, Fresque RTE Lyon La Mouche and http://cite-creation.com/, Mur peint and http://cite-creation.com/, Fresque and http://cite-creation.com/, Fresque and http://cite-creation.com/, http://tomassi.chez-alice.fr/, Fresque and http://cite-creation.com/, Fresque "Chez Jeanne" and http://cite-creation.com/, Fresque "Allée Arborée" and http://cite-creation.com/, Fresque "La Forge" and http://cite-creation.com/, Fresque "Les Diligences" and http://cite-creation.com/, Fresque "Les Vieux Métiers 1" and http://cite-creation.com/, Fresque "Les Vieux Métiers 2" and http://cite-creation.com/, Fresque "La Route de la Soie" and http://cite-creation.com/, La Fresque du Centenaire 1912-2012, La Fresque du Centenaire 1912-2012, Fresque "Gerland Biotechnologies" and http://cite-creation.com/, La "Fresque Végétale Lumière" and http://cite-creation.com/, Fresque des Vourlois" and http://cite-creation.com/, Fresque du Gymnase and www.7e-sens.fr, Poster en facade gratte ciel and http://www.guillaume.bottazzi.org/fr/art-public/villeurbanne.html, Fresque des Roses - St Priest and http://cite-creation.com/, Fresque des Roses - Lyon, Av Santy and http://cite-creation.com/, Fresque Agir pour la biodiversité and http://cite-creation.com/, Tag 16m2 and http://artdekaley.blogspot.fr/p/street-art.html, Fresque aerosol and http://artdekaley.blogspot.fr/p/street-art.html, Fresque "Les basiliques de Saint-Just" and http://cite-creation.com/, Fresque Le marathon de l'impossible and www.7e-sens.fr, Fresque "La cité KAPS" and http://cite-creation.com/ +52 +yes +48.8318676 2.2884097 +362 and 53.2761342 10.4887315, 53.2785461 10.4325550, 53.2788878 10.4304511, 53.2789685 10.4288410, 53.2790665 10.4275363, 53.2793515 10.4296426, 53.2795102 10.4307986, 53.2799998 10.4311699, 53.2800388 10.4305360, 53.2802531 10.4298171, 53.2809568 10.4325528, 53.2811750 10.4273023, 53.2815625 10.4295745, 53.2819911 10.4325519, 53.2826269 10.4275353, 53.2826725 10.4291199, 53.2826929 10.4307084, 53.2830280 10.4271192, 53.2831022 10.4287052, 53.2831150 10.4325998, 53.2837288 10.4279036, 53.2838773 10.4307180, 53.2839650 10.4284990, 53.2841272 10.4300084, 53.2844130 10.4326432, 53.2845618 10.4317124, 53.2848592 10.4268501, 53.2849266 10.4286468, 53.2852440 10.4326785, 53.2853993 10.4312437, 53.2862019 10.4312152, 53.2862903 10.4296828, 53.2863750 10.4281667, 53.2755425 10.4331058, 53.2761180 10.4342194, 53.2777425 10.4325522, 53.2784206 10.4363617, 53.2787675 10.4341599, 53.2792207 10.4369299, 53.2797841 10.4352717, 53.2798691 10.4329383, 53.2802341 10.4377177, 53.2804318 10.4357138, 53.2804958 10.4341054, 53.2809025 10.4367483, 53.2810767 10.4351505, 53.2811385 10.4383054, 53.2815542 10.4387704, 53.2818275 10.4359059, 53.2818582 10.4345100, 53.2819239 10.4373488, 53.2823376 10.4392990, 53.2825169 10.4360569, 53.2830035 10.4345927, 53.2833004 10.4377685, 53.2833131 10.4391705, 53.2835717 10.4400953, 53.2836192 10.4362508, 53.2840499 10.4383614, 53.2841091 10.4371511, 53.2842429 10.4346390, 53.2852186 10.4350928, 53.2859174 10.4342212, 53.2861266 10.4418947, 53.2863287 10.4367179, 53.2864599 10.4407835, 53.2866391 10.4384732, 53.2867455 10.4400080, 53.2710726 10.4382947, 53.2712649 10.4401709, 53.2715637 10.4389128, 53.2715925 10.4369872, 53.2716948 10.4356207, 53.2718374 10.4407911, 53.2719692 10.4318737, 53.2722286 10.4381808, 53.2723073 10.4283180, 53.2723904 10.4339771, 53.2724363 10.4306150, 53.2726881 10.4386844, 53.2728290 10.4358632, 53.2729874 10.4377402, 53.2730720 10.4325897, 53.2732284 10.4344339, 53.2734787 10.4368595, 53.2735875 10.4305386, 53.2736198 10.4281482, 53.2737720 10.4388769, 53.2741165 10.4378899, 53.2742165 10.4350736, 53.2744418 10.4333647, 53.2744887 10.4302344, 53.2745759 10.4321830, 53.2747589 10.4355519, 53.2750037 10.4313911, 53.2750244 10.4339792, 53.2756698 10.4357777, 53.2762404 10.4301091, 53.2769792 10.4292635, 53.2770442 10.4300230, 53.2772394 10.4288761, 53.2777241 10.4276349, 53.2779813 10.4305866, 53.2726055 10.4416071, 53.2728502 10.4404349, 53.2734544 10.4426876, 53.2743250 10.4409690, 53.2744621 10.4388953, 53.2747879 10.4443669, 53.2750500 10.4378589, 53.2751288 10.4397836, 53.2751450 10.4422597, 53.2757981 10.4406575, 53.2760134 10.4424302, 53.2760164 10.4368845, 53.2761627 10.4389881, 53.2761796 10.4452081, 53.2763269 10.4435753, 53.2766362 10.4424130, 53.2766704 10.4390843, 53.2771652 10.4411989, 53.2772523 10.4373479, 53.2774570 10.4432890, 53.2774622 10.4454378, 53.2776832 10.4389597, 53.2780373 10.4403893, 53.2780504 10.4415209, 53.2781549 10.4473295, 53.2783446 10.4438912, 53.2784492 10.4458331, 53.2788437 10.4415770, 53.2789054 10.4449397, 53.2789458 10.4393966, 53.2794086 10.4432135, 53.2794484 10.4380709, 53.2795354 10.4453708, 53.2796264 10.4421588, 53.2800367 10.4398083, 53.2800561 10.4433928, 53.2801021 10.4465008, 53.2804990 10.4442490, 53.2805738 10.4408210, 53.2810142 10.4458552, 53.2815482 10.4424549, 53.2820320 10.4405398, 53.2797657 10.4502715, 53.2800199 10.4497269, 53.2801004 10.4492386, 53.2806957 10.4514076, 53.2809171 10.4481633, 53.2809629 10.4492709, 53.2813039 10.4508782, 53.2813871 10.4469217, 53.2814826 10.4528633, 53.2816343 10.4403479, 53.2817669 10.4438881, 53.2818878 10.4501453, 53.2819890 10.4484668, 53.2822309 10.4530921, 53.2823413 10.4472747, 53.2824481 10.4497679, 53.2825917 10.4423832, 53.2828899 10.4517158, 53.2830861 10.4532008, 53.2832324 10.4444640, 53.2832644 10.4490285, 53.2833666 10.4420578, 53.2837859 10.4440672, 53.2840219 10.4478656, 53.2840421 10.4427225, 53.2845804 10.4425334, 53.2848516 10.4434057, 53.2853521 10.4442130, 53.2858661 10.4462832, 53.2858796 10.4480533, 53.2859562 10.4447281, 53.2845328 10.4543058, 53.2846452 10.4532757, 53.2856692 10.4514935, 53.2859074 10.4541269, 53.2859706 10.4326894, 53.2860876 10.4504262, 53.2860891 10.4516431, 53.2862331 10.4551076, 53.2864368 10.4486951, 53.2865416 10.4522857, 53.2865468 10.4341588, 53.2867524 10.4442833, 53.2868220 10.4349471, 53.2868925 10.4499564, 53.2869911 10.4489239, 53.2871062 10.4438475, 53.2871192 10.4506975, 53.2871194 10.4520651, 53.2872992 10.4574875, 53.2873154 10.4546493, 53.2874758 10.4563049, 53.2875741 10.4457860, 53.2877174 10.4444075, 53.2878229 10.4555057, 53.2878324 10.4429645, 53.2880147 10.4430071, 53.2881349 10.4550950, 53.2884875 10.4437367, 53.2888166 10.4526623, 53.2889339 10.4538563, 53.2881558 10.4478585, 53.2882657 10.4469997, 53.2888313 10.4496181, 53.2890622 10.4467478, 53.2896048 10.4486217, 53.2897562 10.4474893, 53.2899887 10.4449804, 53.2906473 10.4474064, 53.2906569 10.4510389, 53.2907103 10.4449384, 53.2907284 10.4465969, 53.2907509 10.4479661, 53.2914642 10.4483187, 53.2914817 10.4489736, 53.2916190 10.4504909, 53.2921300 10.4494183, 53.2844239 10.4552791, 53.2856557 10.4564919, 53.2877152 10.4596216, 53.2883024 10.4565032, 53.2883276 10.4601175, 53.2886603 10.4570435, 53.2886754 10.4588919, 53.2891997 10.4551672, 53.2892513 10.4569805, 53.2895030 10.4592396, 53.2897695 10.4619477, 53.2909285 10.4582108, 53.2863131 10.4265248, 53.2872355 10.4327684, 53.2876366 10.4262801, 53.2877399 10.4345791, 53.2878013 10.4389019, 53.2878291 10.4355610, 53.2878367 10.4372062, 53.2880742 10.4416461, 53.2884106 10.4402480, 53.2884385 10.4351391, 53.2884497 10.4361964, 53.2887476 10.4287357, 53.2889652 10.4273053, 53.2892675 10.4423403, 53.2893199 10.4371074, 53.2893432 10.4387193, 53.2893811 10.4401862, 53.2894471 10.4338566, 53.2899882 10.4279237, 53.2900173 10.4351990, 53.2901080 10.4370574, 53.2902004 10.4393046, 53.2902606 10.4383364, 53.2902934 10.4335554, 53.2904159 10.4364033, 53.2905766 10.4328178, 53.2905819 10.4283490, 53.2906678 10.4351769, 53.2907212 10.4262747, 53.2908081 10.4379270, 53.2908976 10.4336480, 53.2909769 10.4366348, 53.2910409 10.4305047, 53.2913822 10.4286086, 53.2930728 10.4263859, 53.2932250 10.4288652, 53.2932524 10.4316868, 53.2936115 10.4273995, 53.2943354 10.4293190, 53.2945085 10.4266900, 53.2950907 10.4276795, 53.2772158 10.4658264, 53.2777014 10.4641203, 53.2780024 10.4621416, 53.2782612 10.4585624, 53.2782945 10.4498138, 53.2782958 10.4652568, 53.2784461 10.4657086, 53.2785414 10.4547227, 53.2786263 10.4641222, 53.2786328 10.4520188, 53.2787736 10.4557550, 53.2787924 10.4670508, 53.2790828 10.4662430, 53.2791022 10.4648568, 53.2791640 10.4630981, 53.2792677 10.4514601, 53.2793765 10.4674115, 53.2794189 10.4528188, 53.2794217 10.4637224, 53.2795526 10.4585785, 53.2796594 10.4660088, 53.2797526 10.4542423, 53.2798863 10.4626378, 53.2799338 10.4677675, 53.2800722 10.4608966, 53.2801571 10.4519139, 53.2803121 10.4666314, 53.2806292 10.4644867, 53.2806672 10.4593631, 53.2810451 10.4657299, 53.2811282 10.4604347, 53.2811311 10.4631622, 53.2815557 10.4641010, 53.2816662 10.4552491, 53.2818042 10.4539243, 53.2818947 10.4607963, 53.2821785 10.4631616, 53.2821829 10.4561119, 53.2824551 10.4585111, 53.2824798 10.4621966, 53.2827543 10.4647244, 53.2828941 10.4598433, 53.2832188 10.4557112, 53.2834286 10.4540762, 53.2834431 10.4682343, 53.2836004 10.4666031, 53.2836872 10.4638191, 53.2837723 10.4609960, 53.2843918 10.4648994, 53.2965086 10.4505225, 53.2970659 10.4507086, 53.2972331 10.4482649, 53.2972909 10.4465259, 53.2980193 10.4288210, 53.2722859 10.4750874, 53.2734158 10.4819874, 53.2735252 10.4819483, 53.2735569 10.4819370, 53.2736634 10.4801685, 53.2738513 10.4776452, 53.2739393 10.4759802, 53.2740538 10.4816901, 53.2740773 10.4816892, 53.2741338 10.4816490, 53.2742179 10.4516208, 53.2744281 10.4771164, 53.2745874 10.4742626, 53.2746080 10.4707787, 53.2746293 10.4736401, 53.2746485 10.4656168, 53.2755292 10.4821798, 53.2756433 10.4783543, 53.2756842 10.4805945, 53.2760968 10.4743407, 53.2761750 10.4827802, 53.2769644 10.4708135, 53.2769781 10.4833074, 53.2772690 10.4745942, 53.2682855 10.4693710, 53.2859902 10.4520524, 53.2851469 10.4511304, 53.2871487 10.4462649, 53.2882270 10.4453029, 53.2872393 10.4408913, 53.2912110 10.4482268, 53.2895850 10.4328281, 53.2834187 10.4575743 +48.8298344 2.3228877, 48.8319942 2.3245602, 48.8585872 2.3458523, 48.8573191 2.3660431, 48.8580708 2.3643313, 48.8577996 2.3607146, 48.8483622 2.3739893, 48.8557612 2.3561274, 48.8533876 2.3620076, 48.8575825 2.3562566, 48.8577181 2.3586116, 48.8555902 2.3628384, 48.8437435 2.3544856, 48.8498300 2.3549148, 48.8446680 2.3483159, 48.8405040 2.3347917, 48.8556694 2.3399888, 48.8555375 2.3409454, 48.8537528 2.3324105, 48.8533939 2.3394107, 48.8493501 2.3391528, 48.8546811 2.3332029, 48.8497831 2.3401650, 48.8441458 2.3298957, 48.8468341 2.3265156, 48.8550882 2.3414828, 48.8442966 2.3310034, 48.8554631 2.3741053, 48.8533962 2.3787654, 48.8554359 2.3744522, 48.8533316 2.3759759, 48.8561021 2.3751898, 48.8450730 2.3795209, 48.8263535 2.3601541, 48.8264524 2.3594353, 48.8346687 2.3775990, 48.8278970 2.3505521, 48.8349997 2.3270026, 48.8332286 2.3157120, 48.8234665 2.3685489, 48.8413291 2.2990993, 48.8408025 2.2883022, 48.8581641 2.2723388, 48.8523143 2.3350471, 48.8516415 2.3185465, 48.8482525 2.3194882, 48.8537038 2.3235630, 48.8449146 2.3734371, 48.8584187 2.2875657, 48.8523799 2.4036853, 48.8544589 2.4006544, 48.8475463 2.3713427, 48.8449916 2.3240393, 48.8395978 2.2669106, 48.8274124 2.3148434, 48.8570811 2.3559832, 48.8588049 2.3266129, 48.8334988 2.3198962, 48.8527753 2.4059315, 48.8551966 2.4016334, 48.8540343 2.4058858, 48.8373556 2.2574212, 48.8378434 2.2578634, 48.8381218 2.2586505, 48.8488333 2.3253506, 48.8461967 2.3783357, 48.8360044 2.3574926, 48.8237611 2.3626525, 48.8477733 2.3484340, 48.8415272 2.3511512, 48.8288139 2.3506397, 48.8492934 2.3349249, 48.8414290 2.2990451, 48.8517156 2.3336409, 48.8566933 2.4002542, 48.8455384 2.3288228, 48.8519626 2.3388319, 48.8300409 2.3310810, 48.8374507 2.3523064, 48.8334069 2.3555105, 48.8457083 2.3191961, 48.8523526 2.3444419, 48.8568120 2.3062305, 48.8537402 2.4056302, 48.8538057 2.4056125, 48.8484568 2.3995601, 48.8478160 2.3975417, 48.8540277 2.3358692, 48.8404976 2.3244044, 48.8491586 2.2872491, 48.8472243 2.3185062, 48.8514886 2.3986829, 48.8300837 2.3230365, 48.8528282 2.4062488, 48.8474511 2.3483430, 48.8518792 2.3487076, 48.8514969 2.3476094, 48.8518241 2.3377078, 48.8393461 2.2989248, 48.8378680 2.3520336, 48.8491407 2.3785568, 48.8467150 2.3839386, 48.8479594 2.3771753, 48.8468326 2.3790947, 48.8509991 2.3778569, 48.8484434 2.3726021, 48.8490503 2.3712312, 48.8477004 2.3736634, 48.8500663 2.3739032, 48.8447706 2.3779554, 48.8451286 2.3836536, 48.8541173 2.3674450, 48.8489304 2.3762840, 48.8462620 2.3786885, 48.8453283 2.3813011, 48.8446037 2.3833732, 48.8477398 2.3888781, 48.8476122 2.3930340, 48.8420168 2.3896839, 48.8367142 2.3522749, 48.8296427 2.3513003, 48.8275755 2.3532310, 48.8473878 2.3433434, 48.8361883 2.4001628, 48.8361733 2.3992550, 48.8355057 2.3978609, 48.8381280 2.3966112, 48.8385750 2.3962263, 48.8360911 2.4057236, 48.8400454 2.3808140, 48.8399906 2.3811474, 48.8347357 2.3876562, 48.8396394 2.3801031, 48.8394044 2.3805434, 48.8465303 2.3834704, 48.8463112 2.3834371, 48.8519093 2.3341886, 48.8396241 2.4024373, 48.8477533 2.3981316, 48.8485668 2.3983079, 48.8284622 2.3428564, 48.8319371 2.3141252, 48.8327575 2.3159370, 48.8318327 2.3145828, 48.8330455 2.3162946, 48.8332491 2.3170528, 48.8362254 2.3224012, 48.8364089 2.3224024, 48.8324709 2.3200140, 48.8324257 2.3207007, 48.8324031 2.3208037, 48.8323749 2.3209067, 48.8514297 2.3722999, 48.8544625 2.3823250, 48.8507756 2.3816053, 48.8464081 2.3717860, 48.8367172 2.3924117, 48.8366661 2.3926576, 48.8366787 2.3933514, 48.8440901 2.3896786, 48.8432477 2.3892875, 48.8450283 2.3826090, 48.8453967 2.3826032, 48.8470342 2.3868537, 48.8469567 2.3869061, 48.8466891 2.3824558, 48.8467101 2.3827554, 48.8508333 2.3797344, 48.8494049 2.3783024, 48.8481949 2.3766544, 48.8482849 2.3767134, 48.8498295 2.3739314, 48.8456109 2.3933509, 48.8410573 2.3873134, 48.8478582 2.3735429, 48.8483197 2.3742134, 48.8462275 2.3737111, 48.8458407 2.3720988, 48.8459184 2.3726478, 48.8484256 2.3742938, 48.8491474 2.3746104, 48.8471402 2.3725177, 48.8490161 2.3747617, 48.8470772 2.3727405, 48.8475609 2.3752480, 48.8459741 2.3725698, 48.8459507 2.3730386, 48.8458244 2.3719271, 48.8464620 2.3718673, 48.8501253 2.3762844, 48.8493623 2.3902888, 48.8497475 2.3788828, 48.8468146 2.3805349, 48.8442266 2.3492264, 48.8310200 2.3347804, 48.8252128 2.3624715, 48.8251313 2.3623868, 48.8248667 2.3622623, 48.8462167 2.3753959, 48.8460708 2.3770013, 48.8458252 2.3749543, 48.8469247 2.3730534, 48.8472565 2.3708817, 48.8471819 2.3707631, 48.8467280 2.3702882, 48.8465554 2.3692393, 48.8463534 2.3689294, 48.8456188 2.3700692, 48.8453198 2.3707747, 48.8457141 2.3704736, 48.8274542 2.3356985, 48.8324911 2.2973690, 48.8342552 2.3021401, 48.8331822 2.3057910, 48.8330642 2.3057247, 48.8370250 2.2962718, 48.8320429 2.3030516, 48.8567473 2.3041925, 48.8562200 2.3044115, 48.8560475 2.3045247, 48.8555290 2.3047711, 48.8555382 2.3054236, 48.8553164 2.3055412, 48.8549906 2.3050099, 48.8547805 2.3051304, 48.8487705 2.3484391, 48.8488367 2.3472494, 48.8454096 2.3428012, 48.8451686 2.3207087, 48.8522230 2.3849242, 48.8510651 2.3842956, 48.8525445 2.3847726, 48.8452457 2.3838856, 48.8239780 2.3622896, 48.8368051 2.3525786, 48.8524629 2.4041332, 48.8576438 2.3546760, 48.8577293 2.3547383, 48.8578549 2.3549208, 48.8343459 2.3060180, 48.8343850 2.3935686, 48.8331731 2.3864450, 48.8330278 2.3862477, 48.8330119 2.3635033, 48.8322800 2.3612312, 48.8331196 2.3540446, 48.8321701 2.3590298, 48.8319327 2.3582100, 48.8330825 2.3614982, 48.8332640 2.3561912, 48.8321364 2.3546768, 48.8505276 2.3447826, 48.8513045 2.3459712, 48.8355997 2.3589131, 48.8353091 2.3587223, 48.8534095 2.3799147, 48.8253500 2.3613456, 48.8392195 2.3712618, 48.8321878 2.3587424, 48.8375411 2.3916661, 48.8538840 2.3375740, 48.8459719 2.2775704, 48.8286167 2.3222750, 48.8291859 2.3226894, 48.8445390 2.3211809, 48.8305262 2.3381265, 48.8496002 2.3981379, 48.8528829 2.3864220, 48.8530453 2.3745559, 48.8479680 2.3710745, 48.8485260 2.3720544, 48.8504050 2.3701018, 48.8517234 2.3993213, 48.8289443 2.3298857, 48.8289302 2.3293063, 48.8288878 2.3328361, 48.8376310 2.2974210, 48.8461025 2.3834255, 48.8430137 2.3209354, 48.8386044 2.2987363, 48.8472505 2.3480517, 48.8565275 2.3420348, 48.8568716 2.3421327, 48.8563329 2.3422554, 48.8569183 2.3418674, 48.8333386 2.2983800, 48.8319312 2.3029513, 48.8577895 2.3468656, 48.8583659 2.3474922, 48.8542020 2.3503178, 48.8380436 2.2819311, 48.8447774 2.2964422, 48.8475784 2.2858410, 48.8499929 2.2889519, 48.8517565 2.2895333, 48.8527624 2.2872737, 48.8496754 2.3496176, 48.8518091 2.3568234, 48.8519507 2.3561108, 48.8527730 2.3537103, 48.8515128 2.3437930, 48.8555040 2.3574259, 48.8583173 2.3517204, 48.8274198 2.3518171, 48.8572208 2.3551092, 48.8571117 2.3550358, 48.8571384 2.3549764, 48.8572463 2.3550135, 48.8568296 2.3551652, 48.8569458 2.3554337, 48.8271315 2.3323734, 48.8581626 2.3561038, 48.8579512 2.3567221, 48.8564037 2.3572215, 48.8569706 2.3578174, 48.8570944 2.3576266, 48.8573873 2.3589592, 48.8575151 2.3587307, 48.8580313 2.3580479, 48.8574097 2.3590501, 48.8422251 2.3519017, 48.8259202 2.3471664, 48.8569391 2.3587226, 48.8562824 2.3592731, 48.8562386 2.3592343, 48.8558049 2.3600410, 48.8402209 2.3517797, 48.8555549 2.3612781, 48.8559169 2.3603985, 48.8556266 2.3621786, 48.8554988 2.3630222, 48.8550149 2.3631694, 48.8556083 2.3627374, 48.8552888 2.3629682, 48.8553171 2.3630156, 48.8552064 2.3625817, 48.8557023 2.3630589, 48.8555544 2.3581927, 48.8549470 2.3612543, 48.8557611 2.3570094, 48.8556412 2.3606593, 48.8260343 2.3476244, 48.8540797 2.3659063, 48.8562566 2.3646932, 48.8539723 2.3672909, 48.8549472 2.3633131, 48.8537619 2.3675235, 48.8549776 2.3673407, 48.8540510 2.3686163, 48.8538949 2.3685489, 48.8554539 2.3579276, 48.8548402 2.3583739, 48.8551687 2.3602451, 48.8543977 2.3599670, 48.8521583 2.3613070, 48.8525480 2.3641850, 48.8532015 2.3640647, 48.8544815 2.3628958, 48.8536886 2.3643812, 48.8545334 2.3627527, 48.8539861 2.3622411, 48.8519412 2.3645366, 48.8498781 2.3644772, 48.8477690 2.3654853, 48.8189632 2.3613966, 48.8208495 2.3637354, 48.8235845 2.3656863, 48.8262413 2.3615997, 48.8237603 2.3652263, 48.8521687 2.3444775, 48.8533184 2.3416729, 48.8449381 2.3496655, 48.8577749 2.3606479, 48.8516494 2.3469103, 48.8526479 2.3470482, 48.8560432 2.3669557, 48.8559327 2.3681748, 48.8544692 2.3379604, 48.8468855 2.3408953, 48.8459422 2.3434742, 48.8422162 2.3202513, 48.8438796 2.3245430, 48.8382008 2.3515664, 48.8417641 2.3556159, 48.8429787 2.3633417, 48.8359676 2.3585104, 48.8400778 2.3373997, 48.8413087 2.3389738, 48.8413263 2.3391080, 48.8382571 2.3458273, 48.8536730 2.3797768, 48.8543308 2.3402565, 48.8546432 2.3327719, 48.8533032 2.3340213, 48.8529586 2.3360296, 48.8516089 2.3354609, 48.8514421 2.3272954, 48.8551090 2.3306870, 48.8487629 2.3975462, 48.8416177 2.3314774, 48.8419379 2.3304718, 48.8422661 2.3280738, 48.8424306 2.3290349, 48.8471137 2.3267431, 48.8467204 2.3172126, 48.8530169 2.3313456, 48.8521220 2.3374608, 48.8396584 2.3567615, 48.8558538 2.3252896, 48.8411028 2.2875550, 48.8583918 2.4006119, 48.8390096 2.3532786, 48.8389664 2.3530576, 48.8384933 2.3512141, 48.8193723 2.3655267, 48.8296146 2.3822728, 48.8296210 2.3809399, 48.8282637 2.3802920, 48.8314453 2.3762846, 48.8511260 2.3460443, 48.8517830 2.3177917, 48.8425329 2.3202995, 48.8397936 2.3818812, 48.8387533 2.3310982, 48.8395777 2.3302123, 48.8490162 2.3701002, 48.8498772 2.3811118, 48.8495091 2.3797387, 48.8463681 2.3733407, 48.8542991 2.3674061, 48.8538841 2.3681040, 48.8396268 2.3145492, 48.8430176 2.3242123, 48.8410422 2.3148300, 48.8479223 2.3736079, 48.8516854 2.3468389, 48.8411418 2.3133493, 48.8575743 2.2745958, 48.8564304 2.2797283, 48.8546720 2.2831002, 48.8556834 2.2695115, 48.8445537 2.3572323, 48.8438344 2.3546970, 48.8406209 2.3131425, 48.8408995 2.3133856, 48.8377889 2.3112404, 48.8510948 2.2675935, 48.8485486 2.2609653, 48.8485892 2.2607508, 48.8495519 2.2685978, 48.8478164 2.2424927, 48.8483714 2.2664428, 48.8243361 2.3260774, 48.8235176 2.3258353, 48.8410150 2.3160260, 48.8482315 2.2642376, 48.8473334 2.2588597, 48.8286456 2.3651923, 48.8454540 2.2578610, 48.8505335 2.3887324, 48.8453467 2.3836640, 48.8369274 2.3592628, 48.8513298 2.3837511, 48.8449412 2.2575407, 48.8452233 2.2577704, 48.8394586 2.2616545, 48.8403523 2.2652749, 48.8402456 2.2655127, 48.8407348 2.2646847, 48.8475082 2.3756380, 48.8378544 2.2962158, 48.8296616 2.3177920, 48.8283684 2.3161973, 48.8397098 2.2848132, 48.8412353 2.2879283, 48.8347149 2.3277467, 48.8354063 2.3258802, 48.8358672 2.3242187, 48.8355698 2.3250292, 48.8348588 2.3273891, 48.8350846 2.3267608, 48.8341036 2.3294199, 48.8324180 2.3247172, 48.8342294 2.3264332, 48.8463464 2.3945644, 48.8368961 2.3177487, 48.8367758 2.3180171, 48.8396082 2.3324972, 48.8559760 2.3666852, 48.8499857 2.3459367, 48.8485371 2.3779078, 48.8511475 2.3804023, 48.8533661 2.3445967, 48.8527336 2.3464352, 48.8525998 2.3463499, 48.8510655 2.3458688, 48.8515005 2.3480197, 48.8505010 2.3475831, 48.8508738 2.3460187, 48.8414932 2.3132873, 48.8425813 2.3133329, 48.8425225 2.3124389, 48.8566502 2.3266740, 48.8485654 2.3482310, 48.8496798 2.3526713, 48.8515559 2.3496810, 48.8472106 2.3483382, 48.8471676 2.3484712, 48.8407751 2.3245796, 48.8431709 2.3416539, 48.8426788 2.3414503, 48.8575636 2.3501179, 48.8463554 2.3405710, 48.8430338 2.3494597, 48.8431709 2.3494420, 48.8428285 2.3484260, 48.8450551 2.3490236, 48.8455001 2.3492453, 48.8449589 2.3493182, 48.8452352 2.3492038, 48.8453933 2.3492411, 48.8452357 2.3490360, 48.8451938 2.3492149, 48.8449425 2.3498446, 48.8449041 2.3498515, 48.8384619 2.3563683, 48.8384169 2.3562199, 48.8387726 2.3573303, 48.8395766 2.3564711, 48.8558414 2.3601168, 48.8580164 2.3612756, 48.8584177 2.3025456, 48.8569221 2.3035938, 48.8464241 2.2954995, 48.8359122 2.3596749, 48.8530145 2.3117479, 48.8501505 2.3397562, 48.8507370 2.3741124, 48.8499922 2.3740320, 48.8516089 2.3778622, 48.8503505 2.3762126, 48.8465347 2.3810262, 48.8452145 2.3770818, 48.8353460 2.2854410, 48.8247155 2.3622282, 48.8245453 2.3629329, 48.8217881 2.3649842, 48.8462262 2.3142889, 48.8299382 2.3626544, 48.8567106 2.3947298, 48.8577097 2.3005438, 48.8515887 2.3004692, 48.8568923 2.2921973, 48.8516581 2.3996110, 48.8512398 2.3832978, 48.8502779 2.3906229, 48.8502002 2.3918245, 48.8507491 2.3956735, 48.8399742 2.3934259, 48.8366296 2.4029905, 48.8385089 2.3991495, 48.8426310 2.3854954, 48.8347163 2.4076218, 48.8479740 2.3007339, 48.8468451 2.3046139, 48.8475414 2.3012068, 48.8467540 2.3049111, 48.8390560 2.3924535, 48.8378894 2.3906889, 48.8397585 2.3884230, 48.8390438 2.3923714, 48.8482418 2.3105178, 48.8505805 2.3092017, 48.8517546 2.3104073, 48.8514424 2.3108980, 48.8517685 2.3133289, 48.8498367 2.3124580, 48.8517506 2.3131416, 48.8470660 2.3954688, 48.8446026 2.3117965, 48.8445056 2.3203943, 48.8446279 2.3203361, 48.8458069 2.3492233, 48.8503634 2.3868517, 48.8438107 2.3152002, 48.8437516 2.3150319, 48.8333957 2.3653856, 48.8449195 2.3183472, 48.8453227 2.3190283, 48.8546701 2.3693933, 48.8323092 2.3130666, 48.8254617 2.3652375, 48.8555583 2.3708327, 48.8569621 2.3721314, 48.8567777 2.3726141, 48.8558410 2.3721540, 48.8545648 2.3719500, 48.8536042 2.3707268, 48.8538783 2.3707951, 48.8546993 2.3708799, 48.8480733 2.3112387, 48.8345104 2.3934103, 48.8455102 2.3829497, 48.8553433 2.3747935, 48.8538434 2.3724806, 48.8418339 2.3497835, 48.8549268 2.3539661, 48.8264546 2.3410881, 48.8570588 2.3798634, 48.8524031 2.3825246, 48.8303551 2.3540212, 48.8546913 2.3857584, 48.8564566 2.3025481, 48.8314493 2.3411256, 48.8380307 2.2817398, 48.8503931 2.3688912, 48.8506208 2.3689945, 48.8453517 2.2976315, 48.8493300 2.3749472, 48.8341870 2.3157058, 48.8224620 2.3587564, 48.8452541 2.2717989, 48.8400603 2.2864594, 48.8437006 2.2963141, 48.8449901 2.2972313, 48.8502257 2.3782954, 48.8503235 2.3783645, 48.8495013 2.3784402, 48.8515963 2.3430149, 48.8492402 2.2880111, 48.8401706 2.3924398, 48.8290910 2.3744112, 48.8283297 2.3816403, 48.8351017 2.3201496, 48.8351935 2.3203079, 48.8218202 2.3423613, 48.8444522 2.3901640, 48.8443813 2.3902545, 48.8260323 2.3598011, 48.8226689 2.3629591, 48.8432368 2.3854870, 48.8370059 2.2837291, 48.8365516 2.2821427, 48.8356895 2.2807712, 48.8354976 2.2815391, 48.8370362 2.2836115, 48.8449997 2.4059414, 48.8470725 2.4064857, 48.8391796 2.3955829, 48.8387420 2.3963264, 48.8390768 2.3942535, 48.8370556 2.3918823, 48.8372166 2.3915674, 48.8387373 2.3961225, 48.8516698 2.3805401, 48.8385818 2.2889747, 48.8383246 2.2880446, 48.8381278 2.2872162, 48.8377112 2.2593212, 48.8566013 2.3030438, 48.8447537 2.3186687, 48.8277214 2.3493461, 48.8582656 2.3882446, 48.8543675 2.3835627, 48.8575110 2.3466500, 48.8549950 2.3458720, 48.8543860 2.3452440, 48.8538530 2.3437110, 48.8526640 2.3534610, 48.8530320 2.3533850, 48.8523740 2.3670920, 48.8361075 2.3240698, 48.8537952 2.4109052, 48.8498873 2.3503879, 48.8377658 2.3556217, 48.8373866 2.2787503, 48.8376849 2.2783476, 48.8370124 2.2782827, 48.8373420 2.2787571, 48.8584947 2.3265348, 48.8248377 2.3236483, 48.8238612 2.3234793, 48.8243856 2.3234123, 48.8242408 2.3233372, 48.8280919 2.3264056, 48.8290544 2.3276046, 48.8403734 2.3690860, 48.8388484 2.3702978, 48.8376057 2.3732965, 48.8365782 2.3714028, 48.8397347 2.3696009, 48.8359107 2.3720037, 48.8315850 2.3242790, 48.8521286 2.3374207, 48.8469541 2.4077243, 48.8485558 2.3279413, 48.8390548 2.2577341, 48.8388575 2.2576602, 48.8404902 2.2580804, 48.8476438 2.3479747, 48.8495928 2.3812853, 48.8295186 2.3712567, 48.8410271 2.2662469, 48.8420173 2.3480157, 48.8431426 2.3492259, 48.8428742 2.3485446, 48.8430296 2.3492151, 48.8430013 2.3491186, 48.8528026 2.3743383, 48.8300641 2.3145322, 48.8285724 2.3161086, 48.8508024 2.3768778, 48.8502524 2.3764928, 48.8417557 2.3487402, 48.8566955 2.3731518, 48.8570910 2.3727607, 48.8505156 2.3091488, 48.8410914 2.3489485, 48.8446176 2.3491298, 48.8442421 2.2944260, 48.8486566 2.2967202, 48.8419574 2.3290304, 48.8529638 2.3701915, 48.8521273 2.3846642, 48.8436740 2.3495038, 48.8451117 2.3493401, 48.8449670 2.3488185, 48.8448364 2.3492811, 48.8448928 2.3492758, 48.8445379 2.3489273, 48.8445159 2.3485397, 48.8529952 2.3376020, 48.8501520 2.3419436, 48.8434300 2.3494242, 48.8432628 2.3494718, 48.8447332 2.3491164, 48.8446591 2.3491299, 48.8437358 2.3472026, 48.8384430 2.3563154, 48.8349766 2.2830210, 48.8327742 2.2887456, 48.8447791 2.3492894, 48.8435770 2.3493886, 48.8377834 2.3909830, 48.8442707 2.3492157, 48.8401572 2.3240577, 48.8412056 2.3941921, 48.8418196 2.3905033, 48.8294590 2.3017660, 48.8441758 2.3479878, 48.8445200 2.3486356, 48.8445253 2.3488180, 48.8570416 2.3726643, 48.8475785 2.4004192, 48.8274320 2.3314214, 48.8510173 2.2932405, 48.8509119 2.2937166, 48.8508690 2.2932272, 48.8535259 2.4120078, 48.8439446 2.3493055, 48.8438873 2.3493114, 48.8485015 2.3421189, 48.8501669 2.3420537, 48.8455001 2.3427289, 48.8334129 2.3092754, 48.8434049 2.2987789, 48.8566315 2.4020574, 48.8433712 2.3246895, 48.8435643 2.3254572, 48.8476850 2.4080780, 48.8402155 2.3458349, 48.8508424 2.4062247, 48.8356633 2.3751497, 48.8489864 2.3403461, 48.8555899 2.3867736, 48.8560496 2.3884378, 48.8531504 2.3773721, 48.8513051 2.3765410, 48.8349006 2.3856248, 48.8427645 2.2780599, 48.8404972 2.3950481, 48.8286998 2.3507416, 48.8286000 2.3506267, 48.8427006 2.2950967, 48.8332740 2.3869138, 48.8412651 2.3237285, 48.8412198 2.3236119, 48.8276701 2.3500783, 48.8423579 2.3222342, 48.8426136 2.3217510, 48.8425995 2.3220085, 48.8426424 2.3222812, 48.8421833 2.3220777, 48.8526377 2.4062734, 48.8418212 2.3214760, 48.8211226 2.3412820, 48.8333002 2.3325229, 48.8488761 2.3682264, 48.8211831 2.3635911, 48.8509430 2.3489714, 48.8476389 2.3773813, 48.8380973 2.3926743, 48.8395564 2.3497363, 48.8500694 2.2761219, 48.8498994 2.2724503, 48.8514931 2.2777343, 48.8512248 2.2780374, 48.8506071 2.2713372, 48.8400881 2.3806431, 48.8240405 2.3250200, 48.8517277 2.3664938, 48.8359510 2.3274377, 48.8337887 2.2902462, 48.8339105 2.2899243, 48.8332825 2.2894710, 48.8331362 2.2888144, 48.8515069 2.4066855, 48.8351363 2.3445567, 48.8260954 2.3467344, 48.8304114 2.3551773, 48.8245551 2.3763634, 48.8248510 2.3607452, 48.8416788 2.3272221, 48.8556751 2.3337849, 48.8344267 2.2884194, 48.8338498 2.2894608, 48.8396619 2.3229538, 48.8518599 2.3446879, 48.8527027 2.3467086, 48.8514101 2.4052556, 48.8514486 2.4064449, 48.8491856 2.4063562, 48.8480831 2.4040261, 48.8222536 2.3618120, 48.8221935 2.3616081, 48.8221264 2.3613884, 48.8222287 2.3611417, 48.8221688 2.3609429, 48.8221335 2.3607766, 48.8347833 2.2887478, 48.8342967 2.2879777, 48.8341388 2.2878870, 48.8335658 2.2868046, 48.8221897 2.3589982, 48.8354116 2.2892340, 48.8337101 2.2863906, 48.8219714 2.3582637, 48.8220277 2.3582482, 48.8234610 2.3537855, 48.8298312 2.3567979, 48.8484873 2.3463043, 48.8500822 2.3477323, 48.8507620 2.3449853, 48.8463607 2.3432591, 48.8464051 2.3430548, 48.8308414 2.3123480, 48.8311654 2.3137963, 48.8471824 2.3866402, 48.8502006 2.2918459, 48.8501155 2.2920291, 48.8420674 2.3760001, 48.8496451 2.3534642, 48.8570961 2.3998935, 48.8571003 2.4079730, 48.8514439 2.3380763, 48.8371809 2.3497368, 48.8516647 2.3719912, 48.8530064 2.2754461, 48.8511636 2.2783753, 48.8526949 2.3089511, 48.8448163 2.3733745, 48.8522713 2.3728858, 48.8541526 2.2759522, 48.8283068 2.3264318, 48.8348517 2.2891489, 48.8349806 2.2890202, 48.8355850 2.3240208, 48.8364355 2.3230794, 48.8363755 2.3920736, 48.8363401 2.3920991, 48.8476343 2.3974001, 48.8452414 2.3792066, 48.8388762 2.3961905, 48.8440274 2.3842239, 48.8400356 2.3360672, 48.8395556 2.3365605, 48.8217455 2.3523997, 48.8221973 2.3554703, 48.8495790 2.3543056, 48.8310397 2.3791345, 48.8360032 2.2916086, 48.8354526 2.2925379, 48.8360026 2.2919856, 48.8444056 2.3230253, 48.8398470 2.3238410, 48.8519848 2.3846342, 48.8405177 2.3236190, 48.8294447 2.3791512, 48.8288966 2.3760626, 48.8486397 2.3653776, 48.8281574 2.3022904, 48.8417263 2.3245973, 48.8419109 2.3245351, 48.8435173 2.3219294, 48.8416495 2.3246134, 48.8417952 2.3245691, 48.8419805 2.3245034, 48.8404349 2.3156482, 48.8429231 2.3260926, 48.8405515 2.3159715, 48.8427732 2.3210206, 48.8405038 2.3158186, 48.8415277 2.3195025, 48.8404090 2.3155450, 48.8408520 2.3154700, 48.8416910 2.3246067, 48.8410405 2.3217676, 48.8371723 2.3209043, 48.8450620 2.2639791, 48.8404449 2.3243133, 48.8393146 2.3237992, 48.8466620 2.2831751, 48.8465418 2.2833721, 48.8420648 2.2629254, 48.8239202 2.3655030, 48.8231449 2.3164243, 48.8274421 2.3056058, 48.8272767 2.3063130, 48.8273081 2.3061699, 48.8579931 2.4032941, 48.8495349 2.2915103, 48.8494723 2.2914581, 48.8193061 2.3373740, 48.8396713 2.3471300, 48.8318467 2.3029070, 48.8515798 2.3992009, 48.8515911 2.3992945, 48.8448238 2.3691876, 48.8471374 2.3947373, 48.8416499 2.3895371, 48.8447328 2.3894590, 48.8462215 2.3870803, 48.8470847 2.3868148, 48.8275287 2.3149795, 48.8412254 2.3738186, 48.8405967 2.2643349, 48.8470601 2.2681655, 48.8467068 2.2996176, 48.8238476 2.3506828, 48.8402963 2.3339966, 48.8207235 2.3507707, 48.8341834 2.3261480, 48.8199467 2.3483675, 48.8233348 2.3532089, 48.8480339 2.3711696, 48.8515203 2.3696022, 48.8537094 2.3705397, 48.8537227 2.3702879, 48.8534314 2.3706101, 48.8502098 2.3923579, 48.8497025 2.3932209, 48.8494363 2.3945868, 48.8385781 2.3705346, 48.8392685 2.3708042, 48.8489499 2.3541277, 48.8221895 2.3632536, 48.8223064 2.3631664, 48.8222916 2.3627648, 48.8222392 2.3628073, 48.8223782 2.3631115, 48.8223716 2.3627130, 48.8230753 2.3626307, 48.8234533 2.3618634, 48.8229485 2.3577916, 48.8229254 2.3569509, 48.8211212 2.3425439, 48.8202708 2.3594105, 48.8202117 2.3594306, 48.8193606 2.3601238, 48.8506918 2.3841353, 48.8410733 2.2637691, 48.8409491 2.2637071, 48.8258771 2.3495257, 48.8258284 2.3486459, 48.8255453 2.3475405, 48.8264077 2.3428246, 48.8266961 2.3392484, 48.8268524 2.3383549, 48.8279313 2.3307106, 48.8277088 2.3287499, 48.8277300 2.3277843, 48.8463247 2.3542973, 48.8248691 2.3468871, 48.8250908 2.3464880, 48.8237982 2.3450583, 48.8230883 2.3447901, 48.8237048 2.3451996, 48.8219312 2.3422877, 48.8333333 2.3556520, 48.8226287 2.3606739, 48.8226746 2.3608366, 48.8226533 2.3607500, 48.8229131 2.3618148, 48.8231151 2.3621098, 48.8209801 2.3644246, 48.8243498 2.3621084, 48.8244278 2.3621405, 48.8244847 2.3621306, 48.8245544 2.3621635, 48.8239970 2.3618533, 48.8245778 2.3614015, 48.8250784 2.3610028, 48.8247279 2.3612848, 48.8249548 2.3611007, 48.8257664 2.3605166, 48.8257097 2.3600718, 48.8253582 2.3607812, 48.8254715 2.3606886, 48.8256982 2.3612634, 48.8255348 2.3609777, 48.8256127 2.3614328, 48.8254727 2.3611014, 48.8255281 2.3616006, 48.8254308 2.3611848, 48.8253116 2.3614221, 48.8249807 2.3620807, 48.8250256 2.3619913, 48.8213603 2.3347178, 48.8216005 2.3337522, 48.8233935 2.3258237, 48.8387916 2.3812873, 48.8328265 2.3361398, 48.8334329 2.3320275, 48.8367785 2.2975889, 48.8353295 2.3023316, 48.8355400 2.3018828, 48.8536438 2.3402017, 48.8526953 2.3470942, 48.8250589 2.3163847, 48.8256612 2.3136542, 48.8262642 2.3127271, 48.8263278 2.3124589, 48.8269282 2.3097177, 48.8533715 2.3422551, 48.8372157 2.2784595, 48.8373662 2.2784119, 48.8374744 2.2783898, 48.8377489 2.2783295, 48.8378835 2.2783147, 48.8409791 2.2776487, 48.8415966 2.2775907, 48.8417106 2.2775691, 48.8430969 2.2772758, 48.8264842 2.3599429, 48.8313589 2.2922508, 48.8312406 2.2923850, 48.8313819 2.2919236, 48.8318056 2.2909044, 48.8321693 2.2900809, 48.8333911 2.2872190, 48.8333311 2.2873692, 48.8334759 2.2870071, 48.8347594 2.2843303, 48.8344487 2.2844456, 48.8343110 2.2848131, 48.8350242 2.2828765, 48.8348954 2.2832036, 48.8309240 2.2930315, 48.8288796 2.2990421, 48.8435115 2.2940634, 48.8316365 2.2921115, 48.8337223 2.2896712, 48.8437437 2.2775524, 48.8426810 2.2779896, 48.8426051 2.2779253, 48.8418037 2.2778904, 48.8416325 2.2779601, 48.8521711 2.3714010, 48.8240750 2.3283368, 48.8235152 2.3304799, 48.8245642 2.3282644, 48.8250198 2.3200783, 48.8249015 2.3203760, 48.8372695 2.2771628, 48.8378574 2.2780721, 48.8377480 2.2779702, 48.8431163 2.2826694, 48.8423890 2.2820525, 48.8416776 2.2810225, 48.8490942 2.3396105, 48.8322843 2.3152081, 48.8563012 2.2797681, 48.8281212 2.3500641, 48.8278444 2.3497300, 48.8541163 2.3390471, 48.8426080 2.3301580, 48.8309399 2.3810186, 48.8339877 2.3859431, 48.8370765 2.3521704, 48.8515332 2.3460413, 48.8516027 2.3460829, 48.8280428 2.3570384, 48.8300151 2.3572624, 48.8300765 2.3566608, 48.8511846 2.3478208, 48.8329514 2.3692712, 48.8487835 2.2875266, 48.8402141 2.2853650, 48.8445983 2.3417212, 48.8354567 2.3766787, 48.8288129 2.3816584, 48.8306388 2.3813576, 48.8360293 2.3987610, 48.8352730 2.3987266, 48.8358656 2.3983311, 48.8329971 2.3865539, 48.8454138 2.3449157, 48.8419273 2.3255444, 48.8419458 2.3253394, 48.8420169 2.3254159, 48.8264604 2.3691548, 48.8327810 2.3359512, 48.8487274 2.3758510, 48.8292182 2.3745377, 48.8373155 2.3746781, 48.8563545 2.3025991, 48.8562747 2.3028390, 48.8557667 2.3453212, 48.8456597 2.3425776, 48.8465513 2.2796735, 48.8296037 2.3747044, 48.8286016 2.3219064, 48.8530641 2.3387326, 48.8554103 2.3643002, 48.8409358 2.3247136, 48.8542640 2.3651059, 48.8537965 2.3646707, 48.8563379 2.3653392, 48.8555655 2.3665858, 48.8549123 2.3654914, 48.8580971 2.3653667, 48.8470631 2.3700997, 48.8471459 2.3702456, 48.8474998 2.3708712, 48.8482512 2.3721967, 48.8471795 2.3719974, 48.8198771 2.3422222, 48.8469506 2.3967840, 48.8450981 2.4030570, 48.8445374 2.4047983, 48.8459401 2.3981714, 48.8469580 2.4075011, 48.8431170 2.4096136, 48.8181346 2.3609207, 48.8193633 2.3602971, 48.8193706 2.3607627, 48.8472632 2.3686633, 48.8539102 2.3699317, 48.8470293 2.3690164, 48.8462686 2.3631462, 48.8584285 2.3451526, 48.8466386 2.3740238, 48.8515572 2.3384274, 48.8516756 2.3382308, 48.8467985 2.3747872, 48.8438542 2.3424632, 48.8523071 2.3446538, 48.8523579 2.3447087, 48.8222822 2.3596195, 48.8510597 2.3686542, 48.8454616 2.2846288, 48.8464151 2.2854902, 48.8576256 2.3683245, 48.8573074 2.3684033, 48.8566728 2.3031742, 48.8327372 2.3358964, 48.8326973 2.3358705, 48.8471599 2.2855769, 48.8459727 2.2850778, 48.8425193 2.3260648, 48.8394722 2.3232687, 48.8395348 2.3235658, 48.8390409 2.3209288, 48.8389034 2.3510109, 48.8444716 2.3118167, 48.8493078 2.3774714, 48.8520540 2.3392420, 48.8509886 2.3003532, 48.8381318 2.3517955, 48.8387946 2.3486773, 48.8318806 2.3042643, 48.8329686 2.3010817, 48.8319851 2.3034469, 48.8436104 2.2938618, 48.8374438 2.3009990, 48.8428377 2.2917440, 48.8367552 2.2993610, 48.8368605 2.3030920, 48.8386895 2.3004673, 48.8392782 2.3008123, 48.8431037 2.2954369, 48.8436199 2.2939852, 48.8369700 2.2985824, 48.8317774 2.3387153, 48.8528114 2.3539541, 48.8437191 2.2967019, 48.8208030 2.3633818, 48.8274435 2.3705955, 48.8205400 2.3633918, 48.8205631 2.3634931, 48.8545629 2.3851571, 48.8498132 2.3518796, 48.8490910 2.2871941, 48.8515765 2.3436771, 48.8521735 2.3442731, 48.8520404 2.3443625, 48.8515776 2.3438599, 48.8520835 2.3444093, 48.8518887 2.3442140, 48.8524757 2.3445678, 48.8529435 2.3456985, 48.8528864 2.3462159, 48.8535544 2.2900587, 48.8533015 2.2903128, 48.8529010 2.3458674, 48.8530967 2.3453771, 48.8528548 2.3460331, 48.8530912 2.3454025, 48.8529158 2.3458178, 48.8528801 2.3459362, 48.8530593 2.3452208, 48.8531271 2.3452514, 48.8530349 2.3453279, 48.8528985 2.3461598, 48.8531949 2.3450333, 48.8531460 2.3451752, 48.8528383 2.3461107, 48.8529227 2.3457849, 48.8531071 2.3449244, 48.8530259 2.3454331, 48.8531325 2.3389945, 48.8528398 2.3392414, 48.8534928 2.3391049, 48.8497401 2.3508144, 48.8494708 2.3495778, 48.8533652 2.2880737, 48.8491265 2.3038627, 48.8506165 2.3004771, 48.8290807 2.3169825, 48.8519408 2.2889178, 48.8531583 2.2878252, 48.8527669 2.3446610, 48.8521288 2.3444359, 48.8528975 2.3446411, 48.8527110 2.3446730, 48.8528195 2.3446512, 48.8529973 2.3446935, 48.8526334 2.3445601, 48.8243545 2.3680684, 48.8501590 2.2937116, 48.8501219 2.2938863, 48.8540526 2.3381367, 48.8527451 2.2909129, 48.8482224 2.2951925, 48.8501040 2.2917529, 48.8478257 2.2897580, 48.8477463 2.2896869, 48.8459218 2.2883699, 48.8453388 2.2878488, 48.8350277 2.3205989, 48.8528174 2.3454656, 48.8524768 2.3451560, 48.8528047 2.3455506, 48.8524991 2.3448569, 48.8523811 2.3455175, 48.8523985 2.3454156, 48.8526936 2.3454400, 48.8518297 2.3444041, 48.8524942 2.3450079, 48.8525154 2.3452198, 48.8525300 2.3444340, 48.8524984 2.3449165, 48.8523948 2.3451403, 48.8526323 2.3452414, 48.8525589 2.3451535, 48.8523556 2.3455883, 48.8527431 2.3454930, 48.8525232 2.3451020, 48.8526255 2.3453560, 48.8524246 2.3449029, 48.8526532 2.3453925, 48.8527658 2.3454086, 48.8524155 2.3453426, 48.8527323 2.3453722, 48.8564012 2.2779632, 48.8330093 2.3868281, 48.8437820 2.3881621, 48.8485041 2.3805544, 48.8222398 2.3591920, 48.8444922 2.3906935, 48.8274032 2.3423677, 48.8254379 2.3417367, 48.8322518 2.3505076, 48.8274091 2.3702950, 48.8339084 2.3226213, 48.8394410 2.3322130, 48.8302211 2.3529383, 48.8490077 2.3495940, 48.8461806 2.3049798, 48.8454569 2.3021602, 48.8461901 2.3512999, 48.8479950 2.3233385, 48.8434408 2.2933619, 48.8534312 2.3389430, 48.8581170 2.3176186, 48.8316555 2.2928196, 48.8235887 2.3709824, 48.8366915 2.3872945, 48.8347265 2.3446963, 48.8378379 2.3473550, 48.8484552 2.3315803, 48.8502142 2.3307201, 48.8484725 2.2893525, 48.8455223 2.3425685, 48.8536307 2.3312600, 48.8471339 2.3781711, 48.8433447 2.3026630, 48.8309698 2.3120278, 48.8321210 2.3246559, 48.8337101 2.3186360, 48.8532271 2.3906633, 48.8319258 2.3247528, 48.8346470 2.3196240, 48.8532124 2.3749112, 48.8587506 2.3498885, 48.8585618 2.3501138, 48.8584400 2.3500508, 48.8582309 2.3499153, 48.8586577 2.3512239, 48.8585324 2.3516236, 48.8584636 2.3518059, 48.8295801 2.3570095, 48.8555154 2.3007432, 48.8310133 2.3479849, 48.8362085 2.3507215, 48.8457271 2.2773879, 48.8277176 2.3503583, 48.8303310 2.3543233, 48.8304313 2.3542566, 48.8301931 2.3538796, 48.8550776 2.3606106, 48.8538565 2.3611419, 48.8539037 2.3621825, 48.8493157 2.3784984, 48.8312746 2.3688607, 48.8295989 2.3477981, 48.8358990 2.3466845, 48.8546823 2.3502166, 48.8334394 2.3321755, 48.8484830 2.3465489, 48.8280833 2.3518785, 48.8345869 2.4046238, 48.8489944 2.3476761, 48.8558979 2.3067417, 48.8498557 2.3451858, 48.8339315 2.3535154, 48.8343358 2.3532328, 48.8334871 2.3538301, 48.8343901 2.3531943, 48.8538689 2.3274803, 48.8335872 2.2986473, 48.8281734 2.3581151, 48.8281213 2.3581379, 48.8282088 2.3580869, 48.8298944 2.3567517, 48.8279789 2.3582481, 48.8514668 2.3336573, 48.8306371 2.3542033, 48.8301553 2.3526298, 48.8304963 2.3537726, 48.8488823 2.3702261, 48.8468258 2.4090233, 48.8458824 2.3754339, 48.8538600 2.3320680, 48.8423637 2.3259492, 48.8396674 2.3497245, 48.8416725 2.3497548, 48.8417916 2.3497766, 48.8418859 2.3497875, 48.8419165 2.3497914, 48.8418378 2.3496214, 48.8420720 2.3498351, 48.8421234 2.3498351, 48.8424383 2.3496720, 48.8426011 2.3496377, 48.8427514 2.3496041, 48.8429466 2.3495606, 48.8440708 2.3494232, 48.8445679 2.3496772, 48.8445191 2.3496762, 48.8267542 2.3240551, 48.8383528 2.3897390, 48.8571765 2.3589357, 48.8347921 2.2897514, 48.8351951 2.2896751, 48.8517041 2.3505648, 48.8408366 2.3037928, 48.8323064 2.3247729, 48.8574751 2.3504537, 48.8265827 2.3745998, 48.8375062 2.4444441, 48.8454864 2.3196693, 48.8522732 2.3263458, 48.8520072 2.3255283, 48.8251232 2.3579151, 48.8473882 2.3059953, 48.8338061 2.3177640, 48.8412345 2.3039106, 48.8447679 2.3497792, 48.8550250 2.3290640, 48.8311018 2.3750269, 48.8303119 2.3757398, 48.8306923 2.3753998, 48.8310217 2.3759342, 48.8471340 2.3864431, 48.8467506 2.3832061, 48.8329435 2.4149758, 48.8323315 2.4178175, 48.8312932 2.3735896, 48.8311417 2.3739163, 48.8549171 2.3551866, 48.8383546 2.3930656, 48.8394477 2.3924756, 48.8394195 2.3921135, 48.8531969 2.3783676, 48.8501139 2.3385275, 48.8335611 2.3308711, 48.8478589 2.3407967, 48.8421984 2.3516249, 48.8336470 2.3315763, 48.8335273 2.3314999, 48.8362062 2.3237133, 48.8349296 2.3296602, 48.8484295 2.3424166, 48.8526874 2.3539909, 48.8446809 2.3466783, 48.8336698 2.3296041, 48.8337502 2.3300015, 48.8481127 2.3756890, 48.8492365 2.3739525, 48.8495930 2.3774565, 48.8495553 2.3786800, 48.8500160 2.3788251, 48.8496527 2.3779307, 48.8465400 2.3811858, 48.8503285 2.3781973, 48.8481611 2.3766463, 48.8460012 2.3764202, 48.8553144 2.3878881, 48.8434604 2.4022375, 48.8496167 2.3700570, 48.8481689 2.3925595, 48.8469569 2.3847760, 48.8464179 2.3800872, 48.8359839 2.2844143, 48.8300301 2.3296176, 48.8337668 2.3278330, 48.8354148 2.3235123, 48.8490915 2.3487987, 48.8529290 2.3314950, 48.8498887 2.3433647, 48.8519361 2.2987977, 48.8567608 2.3945887, 48.8372979 2.3511170, 48.8516564 2.3473784, 48.8335564 2.3869198, 48.8334907 2.3868335, 48.8337569 2.3871813, 48.8329726 2.3861326, 48.8338510 2.3872594, 48.8206809 2.3635646, 48.8207494 2.3637471, 48.8203146 2.3640270, 48.8552012 2.3739399, 48.8546611 2.3726793, 48.8407193 2.3049672, 48.8418070 2.3034131, 48.8546868 2.2950925, 48.8545526 2.2952974, 48.8409660 2.3058020, 48.8445280 2.3226454, 48.8445064 2.3227126, 48.8445876 2.3224605, 48.8443285 2.3232584, 48.8446976 2.3221192, 48.8446671 2.3222139, 48.8588292 2.3233490, 48.8431753 2.3523678, 48.8431753 2.3523678, 48.8466756 2.3050730, 48.8466342 2.3052128, 48.8337390 2.3618054, 48.8343386 2.3607778, 48.8481870 2.3541570, 48.8485630 2.3547360, 48.8486600 2.3548950, 48.8488030 2.3550960, 48.8585600 2.3535180, 48.8359828 2.3592084, 48.8582564 2.3530692, 48.8579136 2.3528123, 48.8506291 2.3395396, 48.8527723 2.3849647, 48.8528254 2.3852671, 48.8439032 2.3546898, 48.8537312 2.3325450, 48.8470633 2.3037370, 48.8450557 2.3057641, 48.8473348 2.3028088, 48.8495520 2.3551790, 48.8495960 2.3546780, 48.8493090 2.3539520, 48.8470580 2.3520490, 48.8468240 2.3516360, 48.8209363 2.3710302, 48.8400915 2.3026528, 48.8473631 2.2860341, 48.8583141 2.3549137, 48.8579708 2.3528081, 48.8353583 2.4058762, 48.8322089 2.3384309, 48.8409004 2.3218248, 48.8460163 2.3825296, 48.8300151 2.3572215, 48.8325523 2.3205074, 48.8327672 2.3201392, 48.8311012 2.3195882, 48.8545486 2.3843630, 48.8320470 2.3201850, 48.8361138 2.2912062, 48.8372803 2.2893133, 48.8502351 2.3456241, 48.8527246 2.3060632, 48.8426923 2.3634778, 48.8310513 2.3195553, 48.8325941 2.3183175, 48.8543921 2.3426853, 48.8541359 2.3719456, 48.8542108 2.3674171, 48.8544297 2.3673782, 48.8555777 2.3673888, 48.8558432 2.3674030, 48.8416174 2.3913852, 48.8582325 2.3718450, 48.8324657 2.3375075, 48.8439086 2.2933248, 48.8522615 2.3461534, 48.8522996 2.3459479, 48.8567447 2.3780076, 48.8569233 2.3783614, 48.8559378 2.3789593, 48.8572892 2.3686817, 48.8584433 2.3828023, 48.8580910 2.3814281, 48.8586116 2.3834178, 48.8541661 2.3685390, 48.8557389 2.3682126, 48.8565384 2.3685512, 48.8584554 2.3675609, 48.8389090 2.3816630, 48.8357533 2.3521704, 48.8328552 2.3251354, 48.8577162 2.3793963, 48.8413733 2.3746037, 48.8581328 2.2944968, 48.8556111 2.3402066, 48.8556266 2.3621786, 48.8556266 2.3621786, 48.8556266 2.3621786, 48.8477523 2.3131717, 48.8476019 2.3124307, 48.8442862 2.3237918, 48.8443083 2.3239728, 48.8488626 2.3712412, 48.8571998 2.3686785, 48.8467371 2.3102329, 48.8547937 2.3759343, 48.8537976 2.3699213, 48.8537389 2.3700602, 48.8471804 2.3954861, 48.8435005 2.2942188, 48.8436406 2.2945169, 48.8436647 2.2952514, 48.8436712 2.2953928, 48.8517000 2.3431200, 48.8425000 2.3216700, 48.8369503 2.2962225, 48.8414376 2.3081178, 48.8422788 2.3101359, 48.8425076 2.3118940, 48.8365104 2.3100891, 48.8341782 2.3066372, 48.8354947 2.3020460, 48.8490626 2.3191414, 48.8501266 2.3186024, 48.8501791 2.3187017, 48.8547424 2.3544531, 48.8549834 2.3538154, 48.8547359 2.3551293, 48.8570133 2.3782712, 48.8566264 2.3772226, 48.8563976 2.3765843, 48.8560776 2.3757039, 48.8558521 2.3750899, 48.8534957 2.3378664, 48.8465511 2.3138238, 48.8321324 2.3033719, 48.8378987 2.3453148, 48.8440980 2.3080783, 48.8587772 2.3712220, 48.8578407 2.3769477, 48.8580013 2.3652526, 48.8584347 2.3637448, 48.8586082 2.3675198, 48.8578247 2.3662529, 48.8578018 2.3672245, 48.8575285 2.3645936, 48.8567071 2.3672138, 48.8581319 2.3686779, 48.8580112 2.3685170, 48.8535896 2.3766260, 48.8548638 2.3756068, 48.8440870 2.4099235, 48.8279596 2.3690455, 48.8279577 2.3690363, 48.8468373 2.3601741, 48.8483086 2.2872193, 48.8487087 2.3407361, 48.8527859 2.3429879, 48.8462135 2.3676679, 48.8477461 2.3511419, 48.8527860 2.3433192, 48.8416188 2.2808890, 48.8529099 2.2868719, 48.8566620 2.3563500, 48.8554458 2.3617217, 48.8408224 2.3556248, 48.8388681 2.3562783, 48.8540956 2.3386733, 48.8384220 2.4593519, 48.8305866 2.4133509, 48.8201104 2.4442417, 48.8573667 2.3785302, 48.8532758 2.3834775, 48.8582151 2.3817585, 48.8464207 2.3056421, 48.8408375 2.3874300, 48.8330343 2.3541878, 48.8280243 2.3513291, 48.8303084 2.3537927, 48.8302539 2.3536052, 48.8255087 2.3537284, 48.8289425 2.3568654, 48.8294977 2.3226115, 48.8315293 2.3138951, 48.8222354 2.3405407, 48.8430967 2.3047973, 48.8417016 2.3220312, 48.8451240 2.3151945, 48.8422835 2.3705897, 48.8279032 2.3155377, 48.8527947 2.3434202, 48.8367701 2.3930789, 48.8311227 2.3287719, 48.8376458 2.3597357, 48.8377834 2.3597919, 48.8380568 2.3599624, 48.8527093 2.3602879, 48.8534305 2.3611806, 48.8419025 2.3689354, 48.8421950 2.3453702, 48.8584113 2.2942650, 48.8565883 2.3770985 +55.9378000 -3.1771354, 55.9539470 -3.1868320, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9543521 -3.1879033, 55.9285894 -3.1685115, 55.9821414 -3.4001668 +2 +32 +12 +33 +4, 10, 32, 88, 72, 96, 20, 16, 6, 70, 62, 48, 42, 24, 2, 8, 14, 44, 46, 2, 12, 2, 2, 38, 182, 22, 2, 14, 2, 2, 24, 54, 32, 42, 32, 64, 56, 40, 40, 8, 106, 30, 40, 48, 8, 84, 16, 56, 24, 50, 10, 32, 12, 16, 30, 64, 28, 10, 24, 26, 44, 100, 96, 10, 28, 10, 24, 7, 17, 6, 10, 104, 8, 20, 42, 30, 121, 12, 11, 23, 42, 7, 15, 10, 12, 92, 13, 43, 22, 24, 10, 8, 6, 15, 22, 14, 7, 30, 7, 10, 10, 6, 10, 18, 6, 6, 6, 6, 16, 30, 8, 60, 16, 60, 4, 44, 80, 16, 16, 14, 16, 23, 20, 20, 66, 47, 10, 9, 5, 21, 39, 64, 24, 16, 12, 24, 24, 10, 16, 16, 28, 15, 16, 10, 12, 6, 6, 5, 18, 13, 18, 18, 36, 32, 30, 24, 20, 42, 24, 16, 30, 10, 6, 40, 13, 16, 43, 20, 8, 6, 25, 96, 20, 30, 6, 14, 10, 10, 10, 150, 72, 120, 48, 60, 250, 30, 100, 24, 20, 22, 16, 520, 12, 20, 26 +49 +2.0652769148611698 +1 +48.8323660 2.2749612 +Rue Marie et Louise +32 +yes +49.4018281 8.6889374, 49.4018800 8.6877769, 49.4135514 8.6842391, 49.4146501 8.6879184, 49.4168731 8.6919549, 49.4171484 8.6930088, 49.4208847 8.6912002, 49.4123719 8.7105227, 49.4121119 8.7079345, 49.4133176 8.6889779, 49.4133176 8.6889788, 49.4133176 8.6889785, 49.4133177 8.6889782, 49.4133176 8.6889782, 49.4133174 8.6889784, 49.4133177 8.6889788, 49.4208843 8.6912004, 49.4208840 8.6912006, 49.4168738 8.6919549, 49.4168732 8.6919560, 49.4208839 8.6912002, 49.4171481 8.6930091, 49.4168744 8.6919560, 49.4168739 8.6919560, 49.4208843 8.6911999, 49.4208846 8.6911997, 49.4168740 8.6919569, 49.4018302 8.6889341, 49.4013098 8.6912411, 49.4013099 8.6912408, 49.4018301 8.6889373, 49.4018280 8.6889343, 49.4123720 8.7105234, 49.4115404 8.7048862, 49.4146502 8.6879184, 49.4115403 8.7048862, 49.4034414 8.6858831, 49.4033425 8.6920344, 49.4034077 8.6864942, 49.4059416 8.6926646, 49.4053236 8.6938605, 49.4059413 8.6926655, 49.4059418 8.6926647, 49.4033423 8.6920342, 49.4034078 8.6864940, 49.4034077 8.6864940, 49.4059416 8.6926652, 49.4034078 8.6864942, 49.4059414 8.6926650, 49.4033423 8.6920344, 49.4196480 8.6881884, 49.4158083 8.7151936, 49.4087123 8.7054683, 49.4076130 8.7082748, 49.3832632 8.6902896, 49.4076136 8.7082749, 49.4087126 8.7054655, 49.4076135 8.7082758, 49.3832635 8.6902896, 49.4076129 8.7082756 +39 +yes +19 +48.8503975 2.3429508, 48.8542243 2.3500208, 48.8240998 2.3638457, 48.8214836 2.3639524, 48.8516699 2.3435357, 48.8530171 2.3437086, 48.8557761 2.3581437 +55.9458479 -3.1861307, 55.9526370 -3.1734364, 55.9526834 -3.1734548 +yes +0 +Ibis +1, 1, 1, 1, 1, 1, 1, 1, 1, 1 +49.4091649 8.6726851, 49.4079210 8.6866720, 49.4117371 8.7091875, 49.4073921 8.6825502, 49.4095865 8.7066610, 49.4115410 8.7046342, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4066053 8.6919726 +16, 10, 8, 20, 20, 16, 22, 28, 10, 40, 16, 20, 42, 14, 8, 8, 20, 8, 8, 16, 16, 12, 12, 8, 10, 10, 20, 8, 10, 10, 10, 20, 20, 38, 28, 10, 18, 20, 20, 10, 24, 18, 8, 10, 6, 10, 34, 6, 8, 12, 12, 12, 20, 6, 10, 20, 12, 20, 24, 10, 8, 4, 12, 30, 12, 10, 16, 10, 8, 8, 18, 10, 10, 12, 16, 12, 10, 32, 26, 24, 16, 6, 26, 10, 22, 12, 36, 16, 28, 20, 16, 12, 28, 16, 18, 8, 8, 10, 26, 18, 24, 16, 4, 12, 12, 4, 2, 2, 8, 8, 8, 6, 20, 4, 16, 12, 8, 2, 28, 18, 20, 14, 26, 12, 4, 6, 6, 4, 4, 10, 12, 6, 14, 6, 20, 10, 12, 8, 14, 10, 12, 10, 8, 18, 26, 20, 12, 16, 14, 10, 8, 8, 12, 56, 10, 8, 28, 10, 8, 6, 8, 22, 14, 14, 10, 18, 10, 8, 16, 8, 10, 8, 14, 4, 8, 10, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 10, 10, 8, 10, 18, 8, 40, 30, 18, 20, 20, 20, 4, 4, 12, 4, 10, 6, 4, 4, 4, 2, 22, 4, 4, 6, 4, 10, 4, 4, 6, 16, 16, 6, 4, 4, 4, 6, 4, 4, 4, 4, 2, 4, 4, 4, 10, 4, 4, 10, 30, 10, 12, 10, 8, 8, 8, 9, 24, 26, 16, 16, 10, 10, 20, 16, 10, 10, 6, 8, 10, 8, 12, 20, 36, 8, 10, 26, 14, 12, 8, 8, 8, 10, 6, 20, 30, 16, 14, 10, 16, 14, 8, 6, 8, 6, 10, 10, 16, 10, 10, 10, 12, 14, 6, 8, 10, 34, 8, 8, 12, 10, 8, 10, 8, 10, 16, 18, 32, 30, 18, 20, 20, 54, 12, 10, 8, 8, 8, 26, 8, 10, 10, 10, 6, 14, 12, 6, 8, 12, 20, 10, 12, 10, 20, 8, 12, 8, 22, 10, 8, 4, 16, 8, 10, 6, 6, 12, 6, 6, 16, 24, 10, 8, 20, 20, 20, 12, 18, 10, 10, 8, 68, 18, 6, 6, 8, 8, 10, 34, 14, 10, 6, 10, 10, 20, 4, 8, 4, 8, 8, 12, 8, 6, 6, 6, 8, 12, 12, 6, 14, 8, 18, 10, 20, 14, 22, 22, 22, 16, 10, 20, 12, 12, 10, 18, 6, 14, 20, 8, 18, 10, 10, 12, 12, 20, 20, 4, 12, 20, 18, 16, 6, 20, 30, 12, 8, 12, 10, 10, 14, 4, 12, 16, 8, 10, 4, 2, 12, 22, 10, 12, 22, 8, 6, 8, 18, 26, 14, 16, 16, 12, 14, 20, 10, 20, 14, 20, 16, 32, 18, 26, 10, 8, 20, 18, 8, 18, 10, 6, 6, 6, 16, 12, 10, 14, 16, 16, 22, 16, 8, 18, 10, 4, 6, 12, 28, 20, 18, 22, 10, 8, 8, 10, 8, 12, 12, 16, 16, 22, 30, 12, 14, 12, 8, 8, 6, 20, 24, 10, 10, 10, 20, 12, 8, 8, 8, 8, 10, 6, 10, 10, 10, 10, 12, 10, 10, 20, 10, 12, 16, 14, 12, 24, 8, 8, 10, 12, 36, 6, 10, 20, 24, 12, 12, 30, 20, 10, 10, 4, 10, 6, 10, 20, 10, 4, 12, 10, 10, 28, 10, 28, 18, 6, 14, 8, 10, 16, 26, 10, 8, 8, 10, 6, 10, 10, 8, 10, 8, 6, 10, 10, 16, 10, 6, 18, 10, 18, 12, 12, 14, 12, 20, 8, 4, 6, 22, 4, 12, 8, 24, 12, 4, 20, 14, 20, 10, 40, 14, 4, 6, 6, 6, 4, 6, 10, 44, 12, 14, 24, 22, 8, 8, 12, 26, 26, 16, 6, 6, 10, 6, 10, 14, 16, 28, 32, 10, 14, 14, 14, 14, 22, 14, 10, 8, 16, 20, 12, 10, 36, 10, 12, 22, 6, 12, 12, 12, 22, 2, 8, 6, 12, 6, 26, 18, 10, 8, 8, 12, 30, 12, 6, 12, 10, 12, 6, 16, 6, 6, 14, 15, 4, 16, 8, 10, 12, 10, 10, 20, 8, 18, 16, 22, 10, 6, 6, 6, 6, 12, 10, 8, 14, 8, 8, 14, 12, 10, 12, 20, 20, 24, 8, 10, 12, 8, 30, 16, 8, 24, 20, 16, 8, 8, 8, 10, 14, 8, 18, 18, 6, 8, 24, 10, 8, 8, 20, 20, 36, 20, 8, 12, 10, 4, 14, 18, 10, 10, 8, 10, 12, 16, 12, 8, 8, 8, 12, 8, 8, 38, 12, 18, 12, 20, 12, 10, 10, 24, 10, 10, 10, 12, 8, 8, 6, 8, 6, 12, 8, 10, 24, 8, 8, 6, 14, 8, 12, 8, 8, 14, 12, 14, 4, 14, 20, 8, 36, 10, 10, 14, 12, 24, 10, 20, 18, 30, 8, 8, 14, 8, 8, 10, 20, 10, 30, 12, 10, 14, 14, 16, 12, 12, 10, 14, 22, 40, 32, 12, 16, 10, 8, 8, 14, 8, 28, 4, 6, 8, 12, 4, 22, 12, 4, 8, 8, 10, 20, 10, 40, 20, 12, 8, 30, 24, 8, 10, 10, 32, 16, 14, 10, 16, 18, 12, 12, 24, 16, 12, 12, 12, 22, 8, 12, 28, 4, 12, 22, 6, 10, 20, 24, 14, 10, 34, 12, 16, 10, 10, 10, 12, 14, 18, 14, 10, 24, 10, 24, 14, 8, 14, 6, 14, 14, 10, 12, 6, 14, 18, 24, 20, 12, 14, 10, 14, 28, 6, 8, 8, 14, 8, 12, 12, 12, 8, 6, 10, 6, 18, 30, 20, 10, 10, 8, 8, 24, 12, 10, 8, 10, 4, 6, 12, 6, 8, 8, 10, 24, 10, 6, 20, 8, 8, 10, 8, 12, 20, 8, 20, 12, 20, 14, 28, 8, 8, 16, 8, 24, 8, 18, 26, 14, 8, 10, 8, 8, 8, 6, 12, 6, 12, 16, 8, 26, 10, 10, 10, 12, 16, 10, 12, 14, 20, 14, 8, 8, 10, 10, 10, 10, 10, 22, 16, 10, 14, 16, 60, 14, 20, 20, 22, 30, 22, 4, 8, 6, 8, 24, 12, 6, 12, 6, 8, 46, 22, 4, 14, 8, 6, 10, 6, 16, 8, 14, 40, 8, 8, 20, 24, 12, 30, 14, 8, 10, 14, 8, 10, 20, 14, 14, 18, 12, 14, 16, 12, 12, 20, 16, 8, 14, 16, 10, 8, 10, 10, 16, 8, 8, 18, 18, 10, 26, 14, 12, 8, 18, 20, 8, 12, 10, 20, 18, 8, 14, 8, 8, 22, 16, 34, 6, 6, 72, 18, 4, 8, 6, 6, 6, 6, 12, 10, 12, 16, 8, 10, 18, 24, 8, 20, 14, 14, 64, 16, 8, 20, 12, 6, 14, 8, 6, 10, 8, 34, 48, 16, 14, 6, 12, 10, 10, 32, 14, 10, 12, 6, 8, 8, 8, 6, 8, 8, 8, 10, 8, 8, 6, 8, 24, 42, 20, 18, 16, 16, 22, 20, 18, 26, 14, 36, 14, 12, 10, 10, 12, 10, 10, 10, 6, 8, 4, 26, 8, 16, 20, 24, 10, 10, 10, 10, 18, 62, 8, 10, 16, 16, 16, 50, 22, 16, 10, 10, 10, 12, 8, 30, 10, 14, 12, 8, 10, 10, 15, 14, 10, 26, 20, 30, 22, 8, 10, 16, 16, 16, 14, 24, 8, 18, 20, 18, 10, 4, 12, 8, 12, 12, 14, 12, 32, 32, 8, 8, 6, 13, 10, 16, 30, 20, 12, 12, 8, 16, 30, 10, 16, 8, 12, 8, 10, 44, 8, 8, 24, 16, 18, 10, 10, 16, 8, 8, 10, 16, 16, 14, 26, 12, 10, 8, 14, 20, 8, 8, 10, 8, 10, 8, 10, 8, 16, 10, 14, 20, 14, 8, 8, 8, 12, 6, 8, 12, 14, 12, 14, 16, 14, 14, 20, 8, 20, 20, 18, 26, 10, 8, 8, 8, 16, 10, 14, 16, 4, 4, 18, 24, 10, 12, 24, 42, 10, 12, 24, 12, 10, 36, 8, 20, 14, 20, 54, 70 +yes +2175 and 47.8931595 7.9220044, 47.6706257 9.6099451, 48.8409034 9.1608485, 49.5114392 8.6601812, 48.6525503 9.3971910, 49.7635857 9.6215330, 49.7711879 9.5730596, 49.7592849 9.5493504, 48.8085947 9.1086907, 48.8084453 9.1083882, 48.7672340 9.1634636, 48.7646487 9.1455060, 48.8517845 9.1905506, 47.7572746 9.4550989, 48.8048250 9.1776074, 48.7975239 9.1823227, 48.7764455 9.2484665, 49.7438132 9.5591926, 48.5441691 10.0649595, 48.5481307 10.0299806, 48.0859164 8.6731360, 48.0941243 8.6558902, 48.1009818 8.7502162, 48.3855242 8.4343050, 48.4254364 8.9771979, 48.7896840 9.2403361, 48.7898028 9.2401816, 48.7987295 9.2671029, 48.7877576 9.2251651, 48.7720412 9.1018571, 48.7714189 9.1039857, 48.7548168 9.1609347, 48.7393742 9.1043352, 48.7331011 9.0916034, 48.7294036 9.0792362, 48.7127340 9.0963494, 48.7061888 9.1632435, 48.6921724 9.3046368, 48.6844604 9.3243976, 48.6197323 9.4551205, 48.4917874 9.4829183, 48.4313237 9.4652398, 48.4024099 9.4114303, 48.4766686 9.8814611, 48.2380029 8.1766286, 48.7850407 9.1860670, 48.8431211 9.6562274, 48.6307794 9.4154575, 48.0319228 8.4105207, 48.0468749 8.4196097, 47.8638812 9.1743006, 48.4226168 8.9110413, 48.7841199 9.0904498, 48.0698826 8.3504215, 48.8047324 9.1919671, 49.3929098 8.7766872, 48.7219890 9.0756901, 48.7093678 9.1402100, 48.7063494 9.1632880, 48.6935525 9.2233254, 48.6938888 9.2230679, 48.6956216 9.2628339, 48.6944266 9.2857314, 48.6948056 9.2857019, 48.6586541 9.3789196, 48.6529244 9.3974295, 48.6306373 9.4582064, 48.6310225 9.4580187, 48.6296852 9.4774326, 48.6300159 9.4774419, 48.6288271 9.4974811, 48.6286715 9.5206816, 48.6316019 9.5381045, 48.6319392 9.5378497, 48.6333417 9.5538473, 48.6185241 9.5910600, 48.5837682 9.6626361, 48.5774390 9.6630037, 48.5654624 9.6356449, 48.5467301 9.6424113, 48.5336488 9.6575403, 48.5324382 9.6697929, 48.5275597 9.7174851, 48.5185011 9.7592517, 48.5182325 9.7572384, 48.5181465 9.7821863, 48.5183786 9.7822118, 48.5174461 9.8169719, 48.5108829 9.8343256, 48.5110458 9.8346520, 48.4773580 9.8789721, 48.4719735 9.8971941, 48.6614547 8.9975223, 48.4654321 9.9177765, 48.4568656 9.9471097, 48.4566115 9.9731268, 48.4575723 9.9853023, 48.4575380 10.0128756, 48.4578922 10.0113024, 48.4566193 10.0241328, 48.1830256 9.7816113, 48.4569309 10.0238267, 48.4568614 9.9728885, 48.4571568 9.9473354, 48.4775320 9.8792836, 48.5176649 9.8171648, 48.5199916 9.8076880, 48.5228113 9.7372686, 48.5275062 9.7199164, 48.5311230 9.6960245, 48.5333133 9.6642932, 48.5466820 9.6483292, 48.5636428 9.6740108, 48.5770570 9.6749696, 48.5840802 9.6628951, 48.6143628 9.6120035, 48.6186112 9.5926055, 48.6336256 9.5515051, 48.6287221 9.5185340, 48.6291371 9.4980277, 48.6402661 9.4329496, 48.6532481 9.3976460, 48.6589208 9.3792326, 48.6665530 9.3662042, 48.6754390 9.3458767, 48.6846579 9.3248490, 48.6925264 9.3047185, 48.6957928 9.2643366, 48.7024660 9.1783020, 48.7068672 9.1631451, 48.7069591 9.1634389, 48.7099095 9.1403554, 48.8871970 9.0451463, 48.8776217 9.0839978, 48.1612777 9.7900051, 48.6283215 9.5740630, 48.9168298 8.9430269, 48.4120306 8.4067443, 48.7156317 8.2268140, 48.0783822 8.4461271, 48.9607189 9.2194538, 48.9606145 9.2187767, 49.1769947 9.9318229, 48.7783246 9.5110956, 48.4587660 9.9811761, 48.6623908 9.2255884, 48.6218504 9.2494700, 48.5949915 9.2530806, 48.8361387 8.5909962, 47.8659661 7.7484426, 48.6208580 9.4555416, 49.4738271 9.7966510, 48.8164045 8.5799195, 48.6355511 9.2927221, 48.9546798 9.2502443, 48.7913607 8.1911997, 48.7290336 8.1554927, 48.6648842 9.2107380, 48.5758515 9.2289882, 48.6997566 9.4094867, 48.6938675 9.1999755, 48.5478154 9.2643058, 48.5806508 9.1736055, 48.5586863 9.1737419, 48.5435954 9.1493859, 49.5618613 9.6229111, 49.5614784 9.6227222, 49.5585167 9.6153308, 49.5404830 9.5884578, 49.5323399 9.5784239, 49.5323111 9.5778313, 49.5372729 9.5834493, 49.4242922 9.4869280, 49.4246245 9.4865582, 48.9800359 9.2295550, 48.9690446 9.2262070, 48.5415003 8.8029163, 48.7522067 8.2485351, 48.7535173 8.2447141, 48.7677441 8.2305067, 48.5339160 9.2339354, 49.0641753 9.8706185, 48.6971369 9.2439721, 48.6975218 9.2437986, 48.6751085 9.3456470, 48.6934507 9.2025498, 48.6930968 9.2025100, 48.6765698 9.3688639, 48.6763806 9.3691866, 48.7024629 9.4396321, 48.7038033 9.4501905, 48.7071589 9.4739798, 48.7068984 9.4739726, 48.7160960 9.5495317, 48.7030443 9.6013973, 48.7114471 9.5003428, 48.4005596 9.3164813, 48.4013004 9.3400954, 48.8219767 8.8342570, 49.0835719 9.8669593, 48.6119127 8.8048547, 48.8379781 8.6962629, 48.8664890 8.6819781, 49.0280176 9.8739938, 48.6160097 9.2200212, 48.6157890 9.2201356, 48.5787567 9.1741510, 48.5587099 9.1732797, 48.5341206 9.1897357, 49.0518476 9.8853764, 49.4534124 8.7619617, 49.0104277 8.4145748, 49.0683492 9.8995733, 48.4284117 8.6254017, 48.3301529 8.3967477, 48.9446845 8.4982423, 48.9420376 8.5063840, 48.9416725 8.5063002, 48.9248065 8.5977004, 48.9127357 8.6194374, 48.9086000 8.6501571, 48.8953199 8.7844283, 48.8803882 8.7880004, 48.8650961 9.2405642, 48.7089158 9.1148538, 48.8282641 8.8712993, 48.7644963 9.0315801, 48.8459831 8.4682949, 49.0294081 9.8404404, 48.5135967 9.7471919, 48.8381885 8.7479090, 48.7472998 9.0342151, 48.7421470 9.0351020, 48.7334551 9.0451019, 48.7290626 9.0800494, 48.6983948 9.6468413, 48.6992687 9.6445523, 48.6507051 8.2149644, 48.9704136 9.8727094, 48.6482872 9.4175625, 48.6479386 9.4174626, 48.6401517 9.4323574, 48.6107285 9.5013356, 48.6755332 9.5140860, 48.8797804 8.7885918, 48.8285183 8.8716562, 48.8107839 8.9226049, 48.7284217 9.0564560, 49.4964212 9.8159753, 49.5643411 9.8957718, 48.7509336 9.7392346, 48.7654033 9.7760138, 48.7092477 9.1149016, 48.7127753 9.0976601, 48.7224250 9.0759774, 48.7288647 9.0561891, 48.7337038 9.0454766, 48.7423208 9.0355761, 48.7473445 9.0346415, 48.7645813 9.0322451, 48.7844212 9.0003039, 48.8106073 8.9221678, 48.8955466 8.7849848, 48.9090368 8.6494218, 48.9464307 8.4929472, 48.9251683 8.5976789, 48.9155805 8.6166065, 48.9126798 8.6288162, 48.8955930 8.6334932, 48.1738882 9.9243238, 48.7359768 9.9564593, 49.5271869 9.4744451, 48.6341570 10.0297153, 47.7067101 8.9539274, 48.7406791 9.0358330, 47.9861753 9.9541146, 48.7097609 9.1403874, 48.7204349 9.0570947, 48.7048575 9.0466886, 48.7026191 9.0310935, 48.6956734 9.0150770, 48.6954821 9.0154086, 49.0826807 9.9068846, 48.5820337 9.5361343, 48.5712605 9.5309834, 48.6286557 9.5742425, 48.6140017 9.6120933, 48.6022552 9.7936233, 48.7511871 8.0194252, 48.7114985 9.5118429, 48.7122053 9.5620039, 48.7030671 9.6118484, 48.6989434 9.6444299, 48.6993800 9.6425167, 48.5459412 9.6258707, 48.3089635 9.2492758, 48.5153202 9.0859236, 48.5170905 9.0891957, 48.8348623 8.1815513, 47.6235849 9.5546946, 48.8386810 9.9568035, 48.4287133 9.6526070, 48.5798562 9.4316519, 48.0406218 8.5867569, 49.2734493 8.6948297, 48.0472287 8.5367557, 48.0868626 8.5904310, 48.0964731 8.5900449, 48.0962888 8.5896869, 48.1271981 8.5738132, 48.1273707 8.5741961, 48.2063358 8.6250931, 48.2056876 8.6226666, 48.2166201 8.6418668, 48.2167189 8.6414624, 48.2289745 8.6503769, 48.2289399 8.6499782, 48.2430476 8.6475682, 48.2431946 8.6479274, 48.2530209 8.6435126, 48.2531765 8.6438750, 48.2644203 8.6389933, 48.2645575 8.6393495, 48.2813956 8.6412975, 48.2813341 8.6408543, 48.2977146 8.6351507, 48.2972932 8.6347804, 48.3242880 8.6472160, 48.3243877 8.6476748, 48.3373584 8.6487786, 48.3373826 8.6483555, 48.3442700 8.6558343, 48.3469514 8.6618212, 48.3520586 8.6725316, 48.3522059 8.6721901, 48.3618750 8.6853301, 48.3619453 8.6849173, 48.3713676 8.6946796, 48.3714747 8.6942675, 48.3771842 8.7089372, 48.3774259 8.7087457, 48.4015796 8.7280541, 48.4011997 8.7277379, 48.4099417 8.7261467, 48.4099143 8.7265573, 48.4189313 8.7323191, 48.4189389 8.7328924, 48.4322851 8.7485039, 48.4288649 8.7451607, 48.4438641 8.7598648, 48.4440497 8.7595431, 48.4559934 8.7754291, 48.4717159 8.7892318, 48.4718223 8.7889048, 48.4561276 8.7750251, 48.4826991 8.8074012, 48.4829142 8.8071597, 48.4900488 8.8276497, 48.4900638 8.8270884, 48.5042436 8.8447640, 48.5037320 8.8430924, 48.5144951 8.8663899, 48.5147165 8.8661081, 48.5246719 8.8856662, 48.5255121 8.8869187, 48.5793415 8.8991287, 48.5792420 8.8996092, 48.5897158 8.8973723, 48.5898831 8.8977661, 48.6007304 8.8955808, 48.6008778 8.8962924, 48.6077084 8.8980109, 48.6079663 8.8972585, 48.6154948 8.9060911, 48.6151912 8.9052045, 48.6258039 8.9133937, 48.6258196 8.9129671, 48.6416668 8.9325258, 48.6424929 8.9331792, 48.6463972 8.9402165, 48.6475180 8.9443391, 48.6544979 8.9553375, 48.6546364 8.9549938, 48.6660811 8.9634531, 48.6642502 8.9625290, 48.6859489 8.9803457, 48.6861202 8.9800142, 48.7052895 9.0487083, 48.9563601 8.4816797, 48.9628669 8.4705850, 48.9720450 8.4492261, 48.9800139 8.4373000, 48.9918759 8.4366585, 49.0226256 8.4738843, 49.0395003 8.4872545, 49.0579562 8.5001354, 49.0715988 8.5098925, 49.1278148 8.5510693, 49.1616098 8.5690687, 49.1619321 8.5685770, 49.1730981 8.5754146, 49.1863209 8.5834869, 49.1990464 8.5921852, 49.1981135 8.5909866, 49.2128827 8.6012971, 49.2246552 8.6038684, 49.2362134 8.6022889, 49.2481139 8.6006746, 49.2662926 8.6102057, 49.2712965 8.6143221, 48.9062510 9.1542529, 48.9060983 9.1547569, 48.8583446 9.1257738, 48.8584252 9.1252132, 48.8046855 9.0395252, 48.8044203 9.0399424, 48.9524256 9.2073550, 48.9522036 9.2076234, 49.2743678 8.7629605, 49.2717609 8.6653623, 49.2727646 8.6477288, 49.2895781 8.6241046, 48.6937396 8.9998316, 48.6934591 9.0005857, 49.3127537 8.6293798, 49.3227278 8.6300450, 49.3238313 8.6296606, 49.3493381 8.6314983, 49.3506615 8.6310836, 49.3624388 8.6321377, 49.3777679 8.6340671, 49.3996042 8.6379323, 49.3995595 8.6374762, 49.4242619 8.6344464, 49.4415225 8.6440635, 49.4478965 8.6458733, 49.4497988 8.6467003, 49.4629951 8.6455334, 49.4767567 8.6402530, 49.4791177 8.6400463, 49.4935411 8.6393382, 49.4935774 8.6389413, 49.5081718 8.6398428, 49.5097612 8.6392983, 49.5313281 8.6336119, 49.5312920 8.6331428, 49.5525637 8.6279741, 49.5628605 8.6308686, 49.5629636 8.6305028, 49.5736837 8.6351574, 49.5737159 8.6346703, 49.5849793 8.6344711, 49.5927035 8.6319637, 49.6087826 8.6293910, 49.3087695 8.5838082, 49.3089156 8.5844077, 49.3148038 8.5766768, 49.3148851 8.5773384, 49.3265942 8.5634383, 49.3401364 8.5565264, 49.3499012 8.5518260, 49.3500649 8.5521838, 49.3669972 8.5452572, 49.3671253 8.5456554, 49.4035912 8.5452834, 49.4340209 8.5404260, 49.4340541 8.5408405, 49.4447718 8.5409303, 49.4447281 8.5413334, 48.5221209 9.2518579, 48.7138577 8.0381166, 48.5074260 9.1044855, 48.4966756 9.1647104, 48.7065484 9.1643826, 48.6529830 10.0549964, 48.6617309 7.9371316, 48.4604679 10.1730350, 48.7707679 9.2502478, 49.4983798 8.7221746, 48.5770937 10.1564522, 49.1356288 10.1460742, 49.6508039 9.5817874, 48.9688930 10.0421164, 48.4176102 8.6975529, 48.4510454 8.7024623, 48.5000283 9.2685370, 48.7443551 8.0688245, 48.7293246 8.0869285, 48.6394888 8.0724431, 48.6565743 8.0901528, 48.1245036 9.9555176, 48.5961319 10.1848887, 48.6980717 9.2484000, 48.1584954 9.8273206, 49.3726175 8.6154781, 49.3728712 8.6138114, 48.0740864 9.9161494, 47.6370345 9.6797608, 48.9159563 8.3440876, 48.8526869 8.2665743, 48.8301365 8.2749044, 48.8539086 8.2653152, 49.5396049 9.8644960, 49.5218245 9.8353583, 48.6992588 7.9806463, 47.7914795 8.9797220, 47.7515920 9.0963188, 47.6884901 9.1207814, 47.8182309 9.0258793, 47.7715126 8.9829763, 48.3505082 9.4001775, 48.3121609 8.6420209, 48.3122837 8.6416456, 48.3863838 8.7265175, 48.3864661 8.7260545, 48.5603672 8.8930171, 48.5605008 8.8925417, 48.5431572 8.8902599, 48.5431163 8.8898269, 48.6759155 8.9637953, 48.7855955 9.0161288, 48.7860187 9.0156133, 49.2685960 8.7808264, 49.2752513 8.7415830, 49.2807376 8.7212441, 49.2805216 8.7210148, 49.2784436 8.7067962, 49.2782043 8.7070247, 49.2761940 8.6961312, 49.2753863 8.6915806, 49.2720878 8.6653395, 49.2735130 8.6454921, 49.2772630 8.6311618, 49.2770465 8.6306095, 49.2724834 8.6147195, 49.2851444 8.6114523, 49.2896916 8.6235466, 49.3027549 8.6271841, 49.3028738 8.6268039, 49.2925232 8.6002521, 49.2925827 8.6009328, 49.2988050 8.5936118, 49.2990364 8.5939962, 49.3365839 8.6307588, 49.3366657 8.6303464, 49.3897310 8.6391038, 49.3897229 8.6386760, 49.4090665 8.6360177, 49.4090472 8.6355624, 49.3786252 8.6340635, 49.4678475 8.6434689, 49.5201575 8.6377645, 49.5201414 8.6373810, 49.5848404 8.6341265, 49.6087473 8.6288107, 49.3319505 8.5414892, 49.3322094 8.5412671, 49.3308082 8.5193728, 49.3310823 8.5183610, 49.3310769 8.5049699, 49.3315658 8.5013626, 49.3339319 8.4868857, 49.3339040 8.4859031, 49.3391146 8.4759931, 49.3392965 8.4763715, 49.0083118 8.4586493, 49.0084147 8.4581585, 49.0479857 8.4924290, 49.0479541 8.4929699, 49.1031294 8.5411948, 49.1041106 8.5425407, 49.1383259 8.5543833, 49.1384063 8.5539051, 49.2290781 8.6026935, 48.0844287 8.5950728, 48.0842978 8.5946580, 48.0707959 8.6062199, 48.0729727 8.6031045, 48.0616780 8.6172924, 48.0614729 8.6169757, 48.0467958 8.6243721, 48.0467018 8.6239468, 48.0341264 8.6201920, 48.0308426 8.6174004, 48.1119121 8.5822120, 48.1117959 8.5818045, 48.7390909 9.1046003, 48.7399694 9.1089399, 48.4015433 9.0154681, 48.3690922 8.9823530, 48.6050833 9.7626886, 48.8298430 8.2749761, 48.8899782 8.1857857, 48.7640789 8.9877233, 47.8328952 8.7686961, 48.3570794 8.4941471, 48.7769422 8.2549352, 48.1391265 9.5711715, 48.5790648 9.6732660, 48.7612090 9.0913193, 47.8748989 8.3130633, 48.3236105 8.9161333, 48.3234236 8.9166417, 48.3354920 8.9500999, 48.7933136 8.3221746, 47.6551491 8.2488428, 47.6976799 9.6153172, 48.7866683 9.4272710, 47.6209896 8.2562141, 47.7163607 9.4892661, 47.8086752 9.3139623, 47.7784875 9.3563684, 47.7679769 9.0454226, 47.7090187 9.0968096, 47.7299238 9.0291139, 49.6866841 9.7590894, 48.8168471 9.3139413, 48.3610944 8.5627862, 48.3509823 8.8958946, 48.7814979 8.0742777, 49.5483312 8.6217587, 49.5480505 8.6219075, 49.5530900 8.6271975, 49.4551559 8.5414923, 49.4535171 8.5424121, 49.4544949 8.5572809, 49.4547252 8.5574877, 49.4576280 8.5488333, 49.4578834 8.5490444, 49.4502084 8.5687290, 49.4495578 8.5714117, 49.4960783 8.5568899, 49.4959437 8.5573374, 49.4351626 8.6037261, 49.4353535 8.6040008, 49.4400482 8.5951900, 49.4402646 8.5954224, 49.4233651 8.6243011, 49.4235630 8.6246347, 49.3715952 8.5445479, 49.3716150 8.5449583, 49.3797900 8.5437786, 49.3798146 8.5441885, 49.4147544 8.5477856, 49.4147652 8.5481923, 49.4234904 8.5447593, 49.4235969 8.5451401, 48.9378783 9.1912896, 48.9378316 9.1918418, 49.3216434 8.5680879, 48.4123305 8.6398138, 48.4354246 8.7298101, 48.6880144 9.1785474, 48.6858077 9.1789465, 48.0595559 9.8025082, 48.3514994 8.6437519, 48.8875682 9.4009667, 48.8876980 9.4006577, 47.6362371 8.3136248, 47.6779532 8.3787909, 47.6936388 8.3971377, 47.7387708 8.4432421, 48.8785766 8.2176171, 47.7197129 8.3478040, 47.7511295 8.3431455, 47.7672706 8.3721662, 47.8617756 8.4449749, 48.5969608 8.3495784, 48.7023715 9.0313312, 48.3062437 8.8763154, 48.3058874 8.8764285, 48.3357611 8.9499201, 47.8004338 9.1706255, 48.3681478 8.4801354, 48.0196978 9.4665935, 48.6857923 9.1793283, 48.6880227 9.1789153, 48.6069853 8.1926563, 48.8593992 9.3241072, 48.8715005 8.2321744, 48.3423742 8.4719118, 49.7679754 9.5956223, 49.7769359 9.5730416, 48.8786367 8.1735131, 48.0713702 9.0372714, 48.6848670 7.9775150, 49.3798953 8.7244355, 47.7798874 9.1801891, 47.7467856 9.2219730, 47.7024077 9.2711721, 49.7787336 9.5717771, 49.7663206 9.5991074, 49.7695219 9.5838183, 48.8166940 9.3150476, 48.8151457 9.4065628, 48.7916196 9.5897736, 47.8910671 9.9026842, 48.8655865 8.6613281, 47.7246597 9.0581343, 48.5364785 8.8432038, 47.8361535 9.8150148, 47.9351250 9.8898565, 48.7893036 9.5560934, 49.1923091 9.8718353, 47.7169755 9.5804184, 48.4227649 9.9594069, 48.7359443 9.1642299, 48.7640362 8.1301721, 48.6633238 8.8019223, 48.7393241 8.7097934, 48.7345657 8.7897901, 48.7441012 8.8062343, 48.7482361 8.8816313, 48.7581302 8.9422327, 48.7612316 8.8240758, 49.7716334 9.3622440, 49.7717798 9.4016861, 49.7804454 9.4381406, 48.6158224 9.5925440, 48.7139662 9.1632623, 48.7143277 9.1636349, 48.4872370 7.8598603, 48.8046022 9.2898469, 48.8138342 9.3497442, 48.8154088 9.4066499, 48.8102775 9.4322703, 48.8074826 9.4751998, 48.8069459 9.4770765, 48.8078174 9.5037961, 48.8080541 9.5036458, 48.8198273 9.5426560, 48.8200502 9.5428065, 48.8030326 9.2877111, 48.7798546 9.1993849, 48.8133527 8.3020104, 48.7560825 9.0917547, 48.8170882 9.0553505, 48.4071384 8.5365533, 48.8154144 9.5168585, 48.8188802 9.5202568, 48.7478672 9.6172670, 48.5344168 9.6558410, 48.5453878 9.6446335, 48.5531535 9.6323297, 48.5596589 9.6304432, 48.5716398 9.6511007, 48.5308763 9.6959963, 48.5224429 9.7375540, 48.4114429 9.9732844, 48.4958713 9.8455097, 48.4386013 9.9754436, 48.4386526 9.9758951, 48.3704027 8.5354285, 48.8178799 9.5186817, 48.3900820 8.4765948, 47.8296456 8.9962185, 47.8856489 9.1505352, 47.9060756 9.1734514, 49.7230466 9.6337778, 48.3185342 9.2959345, 48.5436491 9.1502839, 48.5360389 9.1360139, 49.6974530 9.6271813, 48.7665879 9.1834710, 48.3728210 8.9367987, 47.6825444 9.7853268, 47.6954449 9.7932976, 47.7061333 9.8028095, 47.7104232 9.8141411, 47.7171469 9.8406117, 47.7261390 9.8725292, 47.7424942 9.8953725, 47.7525942 9.9067703, 47.6210810 9.7381655, 47.6385438 9.7433628, 47.6475323 9.7532081, 47.6568329 9.7692078, 47.6674698 9.7801294, 47.7114584 9.8215361, 47.7197408 9.8576128, 47.7627504 9.9179727, 47.7729395 9.9331797, 47.7777565 9.9484506, 47.7899664 9.9658080, 47.7989986 9.9798027, 47.8161444 9.9911528, 47.8245186 9.9917204, 47.8336756 9.9914879, 47.8489069 9.9923148, 47.8610368 10.0079398, 47.8713224 10.0266884, 47.8850040 10.0408657, 47.8969530 10.0537807, 47.9094051 10.0669827, 47.9222606 10.0801768, 47.9332030 10.0958824, 49.4982324 8.7655658, 48.0320171 8.5433056, 48.6587332 10.2204576, 48.7344923 10.1593282, 48.6338300 9.9951868, 48.7117384 8.8171859, 48.8654161 8.5566606, 48.3724339 9.8123755, 48.7673126 8.1710003, 48.7033738 8.1232844, 48.4322357 9.1288781, 48.7937419 9.1615616, 49.2282577 9.1394988, 48.6797333 10.1041771, 49.0804342 8.5200945, 49.4349711 8.5675363, 47.9211739 8.6720702, 47.9243660 8.5951144, 47.9270881 8.5763973, 47.9206487 8.5048201, 47.9272378 8.5397640, 47.9119552 8.4726552, 47.9111741 8.4713726, 47.8954235 8.4400780, 47.8955227 8.4242315, 47.8895667 8.4055618, 47.8992706 8.3120095, 47.9029212 8.2574463, 47.9050432 8.2222440, 47.9062746 8.1362588, 47.9146743 8.0818462, 48.7355711 9.3524087, 48.7115328 10.0939877, 48.7240254 10.0934189, 48.6479161 9.9618928, 48.8195893 10.1185590, 48.7591062 10.1036537, 48.8029141 10.1254094, 48.6719594 8.9984651, 48.7749207 9.9383719, 48.7263455 10.0235930, 48.4135032 8.2449603, 47.9995301 9.9695933, 49.2854470 8.6116948, 49.3219743 8.5683836, 47.8096201 8.9909358, 49.7068665 9.7781075, 48.5513494 8.2504632, 47.8586463 9.3550964, 47.8762025 9.3450098, 48.8078487 10.2116028, 48.5917876 10.1317650, 48.5999880 10.0683864, 48.5347143 7.9226115, 48.5669403 7.8349143, 48.6581973 7.9520294, 48.3447143 9.1625738, 49.3269369 8.4562714, 48.4986374 9.8430141, 48.6414710 9.5955141, 48.7240485 8.3586705, 48.6565200 9.9340273, 48.7006808 9.9077288, 48.5056851 8.9313235, 49.4374384 8.6412289, 49.4582684 8.6461975, 49.4243132 8.6340120, 49.3624164 8.6317186, 49.3124170 8.6289601, 49.2130203 8.6008043, 49.2478377 8.6002076, 49.2565956 8.6018218, 49.2565096 8.6023342, 49.2360633 8.6017869, 49.1863754 8.5829504, 49.1729647 8.5747696, 48.7660277 9.1108881, 49.0773701 9.3926672, 48.4583916 8.3744317, 48.4623649 8.3486391, 49.4590109 8.5776135, 48.7980930 9.2139999, 48.7903192 9.2227408, 48.4496976 9.7983302, 48.5186599 10.1712401, 48.4762236 9.5948157, 49.2977817 9.4018022, 49.3589734 9.4688627, 49.3809781 9.4973151, 49.3335547 8.5103395, 48.7019319 8.9166915, 48.0281381 9.8411581, 48.6699273 8.7897063, 47.7074751 7.5255506, 47.6679584 9.3399687, 48.5064684 9.1076580, 49.4635962 9.7770129, 48.7722188 9.1412022, 48.7803603 9.1769220, 48.7769014 9.1818398, 48.8359049 9.2179531, 48.8375798 9.2206119, 48.8375330 9.2234945, 48.7721996 9.1414944, 49.0373756 8.3121690, 47.8666461 8.1705984, 48.6953283 10.1734823, 48.7986667 9.2046281, 49.3737643 9.8712252, 48.6929518 9.2193656, 48.6938357 9.2206004, 49.0120022 8.4077454, 49.0178024 8.4036805, 48.9510439 8.8779408, 48.5111315 8.5279242, 48.7807176 9.1831154, 49.2359955 9.2145358, 49.2511272 9.2157990, 48.8270615 9.2104735, 48.8063951 9.2133695, 48.8328169 9.2156668, 48.8270900 9.2162522, 48.7895293 9.1912731, 48.7926529 9.1960124, 48.8024262 9.2102505, 48.8096017 9.2181716, 48.6176296 10.1490073, 48.6783345 9.1273774, 49.4089845 9.4328833, 48.1098046 10.0812923, 49.6071719 9.8174005, 49.2683049 9.1484001, 49.0379898 8.9165667, 48.5406115 8.6982202, 49.0134413 8.4161836, 49.0151348 8.4164330, 48.6037512 8.7366987, 48.5692403 8.7178066, 48.5893646 8.7315048, 48.9629464 8.4696573, 49.3041861 8.5654006, 49.3084940 8.4882688, 49.3063579 8.5279449, 49.0335897 8.3768366, 49.2764479 9.2287816, 48.5083302 8.1360071, 48.5716165 10.1546193, 48.5234036 10.0829835, 48.5644946 10.1405713, 48.6006926 10.1930766, 48.4950310 10.0867089, 48.5585352 10.1276554, 48.4802340 10.1035539, 48.5499229 10.1089296, 48.5094281 10.0809424, 48.4913880 10.0897599, 48.5793227 10.1694371, 48.5370883 10.0921411, 48.6523282 10.2286344, 48.6777857 10.2184380, 48.6672503 10.2279878, 48.6370427 10.2166432, 48.6242549 10.2192783, 48.6120766 10.2056884, 48.6920895 10.2143262, 48.7030136 10.2146742, 48.8618705 10.1932426, 48.8332632 10.2076457, 48.8827238 10.1645929, 48.9421283 10.1919918, 49.0364808 10.1865475, 49.0173985 10.1969915, 48.7571167 10.2018021, 48.7402931 10.1962372, 48.8042748 10.2100402, 48.8476048 10.1970857, 48.8970654 10.1761638, 48.7897010 10.2109234, 48.8686720 10.1739204, 48.9261748 10.1945281, 48.9533976 10.1868556, 49.0011869 10.1934122, 49.0225740 10.1963081, 49.0924030 10.2095399, 49.0609686 10.1808684, 49.0760021 10.1991841, 49.0492076 10.1772995, 49.2125333 9.2753125, 49.2268390 8.9484307, 48.6013920 8.0919220, 48.5679097 8.1432529, 48.8001812 9.7973925, 49.2577216 8.5048208, 49.2294132 8.4964924, 49.2824056 8.5244084, 48.7464556 8.2066346, 49.4651669 8.5271434, 49.3780540 8.6486849, 49.4648287 8.5270186, 48.3098676 7.8350464, 47.9924895 8.6077700, 47.9923293 8.6073623, 48.7543049 9.1449896, 48.7765896 9.0222248, 47.7074526 9.8044526, 47.7110714 9.8186784, 47.7326922 9.8808486, 47.6811660 9.7846265, 47.6957684 9.7929756, 47.7112098 9.8198943, 47.7248431 9.8701879, 47.7109077 9.8173971, 47.7173970 9.8403679, 47.7426976 9.8951877, 47.7199073 9.8575529, 47.8245155 9.9914569, 47.7779873 9.9483692, 47.8149009 9.9906548, 47.7899731 9.9654247, 47.7731043 9.9330387, 47.8007641 9.9821144, 47.8346465 9.9910330, 47.7630499 9.9179319, 47.8489307 9.9919631, 47.9223871 10.0797186, 47.9095392 10.0665796, 47.8715057 10.0263294, 47.9324346 10.0945636, 47.8972148 10.0536202, 47.8611937 10.0076449, 47.6212371 9.7377938, 49.2427738 8.6584711, 49.2277019 8.6549049, 47.7251277 9.7136677, 48.2882830 10.0373949, 48.3678389 8.9810088, 47.6983756 9.6703430, 48.5345073 8.5657906, 47.8354774 9.1733536, 47.7196201 9.2434980, 48.4688382 8.5243138, 48.4462792 8.4404912, 48.4651360 8.3226158, 48.4798743 8.2756820, 48.5509660 8.2160283, 48.5282910 8.2156177, 47.8583352 8.0527659, 48.6233742 9.6474853, 47.8421728 9.2591347, 47.8963299 9.2766958, 49.0024709 8.4620661, 48.4617734 9.1534473, 48.7463828 9.1631837, 48.7464742 9.1635807, 48.4295834 9.1753342, 48.6560469 7.9614999, 48.6067013 7.9957688, 48.5935738 7.9814908, 48.5290189 7.9282942, 48.4305716 7.9656859, 48.4476505 7.9377941, 48.3742224 8.0253808, 48.2895888 8.0689839, 49.2283026 8.8731254, 48.0080734 8.9166012, 47.9412086 9.2958515, 47.8780689 8.7556860, 47.9683465 9.1545316, 48.0887124 8.9262412, 48.1419177 8.8203361, 48.9560784 8.4813376, 49.0906732 8.5312604, 49.3402268 8.5570096, 49.3267720 8.5639613, 47.8834738 8.7282837, 48.3602149 9.1986196, 48.6482603 7.9925410, 48.5905388 8.1221704, 48.5816658 8.2219592, 48.8149369 8.9153444, 48.8146940 8.9150211, 48.7110459 10.0443640, 48.2291935 9.0734132, 49.1810203 9.3405836, 49.6376906 9.7310949, 48.6725457 9.0031015, 47.9824197 10.0071204, 47.9633804 9.7640640, 47.9377464 9.7580317, 47.8005130 9.6082012, 47.7827675 9.5985322, 47.8642151 9.6775028, 47.9102931 9.7647206, 47.8468824 9.6380335, 47.8288333 9.6165700, 47.8644105 9.6772479, 47.7976959 9.6066726, 47.7798501 9.5963029, 47.8269115 9.6166384, 47.9110831 9.7457007, 48.0417478 9.7901424, 48.0076356 9.7742830, 49.0398224 9.7392156, 48.8145665 8.1477899, 48.8700451 8.2330963, 49.4401569 8.6267606, 49.4827502 8.9652469, 49.2261440 8.4015394, 49.2270042 8.3930670, 49.2146867 8.4245865, 48.7852067 9.6873710, 49.3110545 9.1469762, 49.3257362 9.1127483, 49.3338501 9.1019193, 49.3837384 9.0786578, 49.4005395 9.0671825, 49.4398923 8.9044925, 48.4629531 10.1380779, 48.8047207 9.1776674, 48.4439448 8.8366702, 48.8318003 9.2086867, 48.8342680 9.2098271, 48.8363275 9.2136031, 48.6069355 9.6317726, 48.8023955 9.2082550, 48.8123036 9.2196914, 48.8169866 9.2258518, 48.8242368 9.2224948, 48.8259297 9.2110930, 48.8343231 9.2081932, 49.0629251 9.1970198, 49.3918443 8.7985821, 49.3926349 8.8038177, 48.8128038 9.2216738, 48.5246441 9.3443560, 48.1387764 9.7690366, 48.5423680 9.4008658, 49.2809102 9.3551891, 49.2809335 9.3557682, 49.4141841 8.6552752, 49.2978779 9.3767644, 49.3795727 9.4593926, 49.3797955 9.4604041, 49.3927454 9.4696114, 49.4062626 9.4721040, 49.4101237 9.4741552, 48.8002789 9.0640069, 49.0011181 8.7173021, 49.0226343 8.7042723, 48.3425352 8.5795308, 48.8257307 9.3013261, 49.0006795 8.7705306, 48.7170600 8.5425541, 47.9418017 9.0439966, 48.0005307 9.1181165, 48.0452735 9.2370497, 48.6921929 9.6652387, 48.8150939 9.0241163, 48.7171935 10.2085770, 48.7281783 10.2004541, 48.7730993 10.2108669, 48.9290165 8.6489728, 48.9371276 8.7215122, 49.4940290 9.2614381, 48.9147442 8.7639662, 48.9149020 8.7645148, 48.9242325 8.7483836, 48.9189948 8.8492099, 47.7993589 9.7259098, 47.8117916 9.7614954, 48.7548994 9.1746002, 49.7078295 9.8039152, 49.6375662 9.7305937, 49.6611667 9.7566617, 49.6719607 9.7713529, 49.7006601 9.7954395, 49.6060244 9.6866807, 49.6510182 9.7397939, 49.6903001 9.7878873, 49.4769864 9.5641676, 49.5712029 9.6403884, 49.4710234 9.5601560, 49.5847956 9.6616762, 49.5158134 9.5684642, 49.5802327 9.6475074, 49.5027455 9.5624713, 49.3204388 9.4125836, 49.3135309 9.4057155, 49.2256498 9.3508030, 49.1781679 9.3380479, 49.2066141 9.3436718, 49.1616635 9.3004576, 49.1810215 9.3400832, 49.2163030 9.3470828, 49.2136669 9.5260814, 49.5927143 9.7364883, 49.5549584 8.5103589, 49.5504868 8.4235355, 49.5540665 8.4673540, 49.5546737 8.4894870, 49.5534822 8.4431096, 49.5552322 8.5100715, 49.5530546 8.4434530, 49.5507729 8.4234367, 49.5544057 8.4894966, 49.0563897 8.8749520, 49.1142373 8.5502969, 49.1143832 8.5498328, 49.0228039 8.4734539, 49.0388576 8.4862787, 48.2640265 9.4987664, 49.0135739 8.4202992, 48.9331986 8.8054530, 48.9174229 9.2198333, 48.5609982 8.4262796, 49.5721278 9.4133089, 49.0695697 8.5077440, 49.0905926 8.5317581, 48.7949712 9.2020362, 49.3058042 8.5323283, 49.1618568 9.2788309, 48.5579834 9.8178047, 48.1753593 8.6009101, 48.1432037 8.5710423, 48.1432443 8.5706427, 48.1598980 8.5730541, 48.1598046 8.5726511, 49.1721181 9.3296726, 49.1724302 9.3294218, 49.2162912 9.3475840, 48.9000520 9.0220794, 49.1847108 10.0900827, 49.1848252 10.0891598, 49.1896587 10.1082909, 49.1898348 10.1079377, 49.1986441 10.1270995, 49.1988046 10.1266370, 48.1912071 8.5866264, 48.1913427 8.5862720, 48.1999009 8.6040224, 48.1996877 8.6042934, 48.1761727 8.5742583, 48.1761942 8.5738077, 49.1832002 9.2198007, 49.1835335 9.2196862, 49.1887589 9.1831723, 49.1890446 9.1832209, 49.1696319 9.2528172, 48.8542751 8.8988339, 49.2504081 9.0980374, 47.9439493 7.7362338, 49.2428488 9.1540163, 49.5941383 8.6311749, 47.9391928 7.8716401, 49.1676442 9.2597076, 49.1206387 9.3002491, 49.1863674 9.1970883, 49.1867235 9.1971601, 49.3930439 8.5437518, 49.3930296 8.5441632, 48.0198623 8.0751576, 47.9907295 8.1179395, 47.9809321 8.1427470, 49.0240512 8.3759973, 49.1316010 9.3015276, 49.1353274 9.3040368, 49.1354048 9.3046888, 49.1509022 9.3021184, 49.0723846 9.2819012, 49.0771419 9.3096681, 49.0837516 9.2903086, 49.0837076 9.2896928, 49.0923412 9.2925464, 49.0923485 9.2920329, 49.1060069 9.3021985, 49.1062536 9.3017889, 49.1871870 9.1416283, 49.1875135 9.1416704, 48.9089526 8.6896657, 48.9093271 8.6896039, 48.9167507 8.7200161, 48.9169880 8.7193856, 49.1881041 9.1586514, 49.1885956 9.1193045, 49.1887531 9.1663317, 49.1889471 9.1654843, 49.1935880 9.1069908, 49.1941353 9.1064907, 49.1962800 9.0992722, 49.1965765 9.0994330, 49.2036084 9.0845099, 49.2036611 9.0837736, 49.2114728 9.0729929, 49.2118116 9.0713709, 49.2133993 9.0307116, 49.2142990 9.0467238, 49.2147927 9.0477382, 49.2155578 9.0111665, 49.2159065 9.0112163, 49.2185724 8.9937861, 49.2189155 8.9938342, 49.2218636 8.9761899, 49.2219514 8.9712138, 49.2248674 8.9472710, 49.2251454 8.9475697, 49.2266030 8.9376576, 49.2269236 8.9219300, 49.2273008 8.9222375, 49.2317164 8.9040974, 49.2317859 8.9044922, 49.2401385 8.8905193, 49.2429873 8.8802683, 49.2495696 8.8542327, 49.2497135 8.8548752, 49.2539483 8.8424593, 49.2541812 8.8428710, 49.2568309 8.8327005, 49.2583625 8.8204228, 49.2587335 8.8197907, 49.2611840 8.8071279, 49.2637538 8.8014070, 49.2659403 8.7934976, 49.2723335 8.7690189, 49.4170428 9.9859917, 49.3322519 9.4113637, 49.3323330 9.4117828, 47.8987210 8.2902797, 49.2067543 9.3440942, 49.2256829 9.3512941, 49.2346814 9.3494335, 49.2350284 9.3488643, 49.2607647 9.3531930, 49.2721106 9.3520496, 49.2721130 9.3515930, 49.2545234 9.3523889, 49.2547890 9.3530127, 47.9248891 7.7105768, 47.8995226 7.6787759, 47.8816479 7.7126377, 49.3051714 9.3924690, 49.3052611 9.3918019, 49.3132850 9.4061184, 49.3203389 9.4131413, 49.3255112 9.4136580, 49.3429653 9.4064294, 49.3435612 9.4069728, 49.1933219 9.3504312, 49.1950681 9.3511910, 49.1969154 9.3501739, 49.2428822 9.3487869, 49.2429988 9.3482992, 49.2885484 9.3674880, 49.2888492 9.3671594, 49.2958364 9.3767718, 49.2959616 9.3776113, 49.1780806 9.3385165, 49.1870030 9.3458296, 49.1876263 9.3456559, 49.4020579 9.9426631, 49.0045901 9.2376857, 49.0062638 9.2386840, 49.0142088 9.2460114, 49.0515765 9.1483214, 47.9039911 7.7383012, 49.1616461 9.3009935, 49.1694306 9.3107204, 49.1704268 9.3162466, 47.9727362 7.9445677, 47.9606923 7.9897254, 49.6055676 9.6868114, 49.3911061 10.1211012, 49.4380783 10.0161634, 48.9743928 8.7957421, 49.0561625 9.2688179, 49.0594630 9.2693759, 47.8617298 7.6974840, 49.2142768 9.0230381, 47.9824084 7.8543163, 47.9789931 7.9111705, 47.9795406 7.9099467, 48.1429371 8.6384638, 48.1320146 8.6355665, 48.1499024 8.6152193, 49.0304599 9.2531977, 49.5015800 10.0350131, 49.4759747 9.9397946, 49.4375193 9.9653786, 49.4656731 9.9274158, 49.4845684 9.8958289, 49.4532351 9.9581528, 49.3578060 9.4179989, 49.3580375 9.4176915, 49.3822707 9.9380177, 49.3640239 9.9013334, 49.4317944 9.5039781, 49.4317696 9.5032233, 49.4407047 9.5144379, 49.4409211 9.5138979, 49.4469098 9.5186981, 49.4471603 9.5184619, 48.8725770 8.6904871, 48.7752034 9.0254208, 48.7754392 9.0239267, 48.7761735 9.0236883, 48.7762929 9.0238041, 48.7763222 9.0224710, 48.9740454 9.2647035, 48.9900450 9.2318387, 48.9918045 9.2329174, 49.0141796 9.2465322, 49.0456156 9.2645516, 48.9219152 9.0236911, 48.9260777 9.0680844, 48.0441698 7.9757164, 48.0505716 8.0496292, 48.6003226 9.1902861, 48.6005238 9.1901062, 49.1563088 9.3072238, 49.1570966 9.3161343, 49.2701869 9.6254730, 49.3627346 9.4259543, 49.3628020 9.4269527, 49.3688240 9.4397699, 49.3690412 9.4393949, 49.3752319 9.4523197, 49.3753066 9.4533315, 48.9217824 8.9317455, 48.8343987 8.8560836, 48.8353603 8.8553140, 48.8521225 8.8002086, 48.8525235 8.8006640, 48.8672672 8.7912439, 48.8675228 8.7920279, 48.8755213 8.7939155, 47.9162923 8.0705453, 47.9169414 8.0695102, 47.9335625 8.0303327, 49.1985853 9.5675230, 49.2036230 9.4713725, 49.2038764 9.4709519, 49.2057822 9.4822418, 49.2066521 9.4849493, 49.3178826 9.6893395, 49.3413300 9.7360884, 49.2804805 9.7398425, 49.2152324 9.5901564, 49.2155556 9.5901928, 49.1826470 9.7457752, 49.1829911 9.7455545, 49.2014502 9.6852944, 49.2062055 9.6383435, 48.8556122 9.1240650, 48.8595120 9.1069904, 48.9239379 9.1534561, 48.9241264 9.1537921, 49.1743390 9.8670407, 49.2954225 9.7786234, 49.3266174 9.8116523, 49.3832252 9.8481597, 49.3925185 9.8606230, 49.4104072 9.8827154, 49.4173592 9.8680119, 49.4126354 9.8073800, 49.4217191 9.8163356, 48.8957794 9.1514907, 48.8958618 9.1510115, 48.8840902 9.1453702, 48.8839518 9.1447028, 48.8723227 9.1366426, 48.8723919 9.1361233, 48.8444490 9.1145130, 48.8379323 9.1003275, 48.8381889 9.0999711, 48.8311361 9.0867367, 48.8313792 9.0863760, 48.8219855 9.0834900, 48.8219651 9.0781112, 48.8213163 9.0768080, 48.8143349 9.0649853, 48.8147418 9.0645765, 48.8081518 9.0478713, 48.8084962 9.0476868, 48.7824919 9.0079472, 48.7828894 9.0081705, 49.3462673 9.7652536, 49.3322744 9.9286728, 49.1835852 10.0756758, 49.1833333 10.0696043, 49.4620731 9.8465217, 49.4311530 9.8374961, 49.4588393 9.8921111, 49.4733774 9.8731179, 49.4779904 9.8366968, 47.7860281 9.1194209, 48.8471779 8.9618798, 49.5398575 9.1061778, 49.5514779 9.1200926, 48.9213373 9.1585809, 48.9274840 9.1694800, 48.9277300 9.1691057, 49.1774172 9.9585539, 49.1777132 9.9580959, 49.1833611 10.0480406, 49.1836647 10.0482720, 49.3928222 9.4691860, 49.4174596 9.4780929, 49.4178835 9.4789911, 48.9895024 9.6120129, 48.8960794 9.1960948, 49.0333941 9.9294090, 49.4544367 9.5315328, 49.4560320 9.5330608, 49.4620658 9.5447052, 49.4621953 9.5441557, 49.4683691 9.5576946, 49.4696743 9.5539390, 49.4772960 9.5647733, 49.4889725 9.5650150, 49.4895315 9.5653540, 49.5027792 9.5628991, 49.1735411 9.9956779, 49.1738282 9.9957325, 49.1774935 10.0296026, 48.8462333 9.1297668, 48.8452915 9.1309330, 49.5403467 9.5889109, 49.5504165 9.6068297, 49.5505889 9.6064863, 49.5585365 9.6146243, 49.5712189 9.6408172, 49.5800040 9.6478395, 49.5846226 9.6621280, 49.5911156 9.6691373, 49.5927203 9.6700680, 49.5993920 9.6809044, 48.7406938 8.6474860, 49.5994571 9.6992900, 48.8267253 9.3001515, 49.6283044 9.7298560, 49.6126629 9.7161207, 49.6222826 9.7288373, 49.6609192 9.7570507, 49.6509129 9.7402683, 49.6720702 9.7719881, 49.6805457 9.7792678, 49.6902760 9.7883448, 49.6804068 9.7796570, 49.7005867 9.7958626, 49.4475495 8.9708096, 48.7613425 9.2144219, 49.0965990 9.4469764, 49.0927050 9.3961852, 49.0851274 9.2259822, 48.7546412 9.1453708, 47.7031193 9.9355243, 49.3688113 8.7873065, 48.0024684 9.3886804, 48.9139897 8.8754916, 48.7540293 9.1406651, 48.7542703 9.1411930, 48.7547015 9.1445888, 48.7581785 9.1286783, 48.7811028 9.1943466, 48.4595988 10.1711934, 48.4645404 10.1223774, 48.4802017 10.1041631, 48.4914513 10.0901495, 48.4951764 10.0871437, 48.5097340 10.0813635, 48.5366930 10.0923397, 48.5495692 10.1089249, 48.5640570 10.1405415, 48.6002192 10.1932351, 48.6143248 10.2091203, 48.6237947 10.2194702, 48.6370975 10.2170778, 48.6518587 10.2288665, 48.6672443 10.2286901, 48.6777252 10.2191011, 48.6918304 10.2147888, 48.7030388 10.2151575, 48.7411557 10.1966712, 48.7566988 10.2022541, 48.7725633 10.2111265, 48.7895482 10.2114348, 48.8216854 10.2168276, 48.8334224 10.2081744, 48.8474543 10.1975819, 48.8620769 10.1936834, 48.8691565 10.1741861, 48.8750477 10.1666259, 48.8751128 10.1673993, 48.8863019 10.1658808, 48.8966666 10.1763137, 48.9102131 10.1899836, 48.9104742 10.1896634, 48.9258950 10.1949601, 48.9420077 10.1925203, 48.9558196 10.1862163, 48.9689245 10.1865525, 48.9692640 10.1862417, 49.0009182 10.1938674, 49.0170502 10.1975981, 49.0224299 10.1969381, 49.0363577 10.1873324, 49.0493389 10.1776823, 49.0605574 10.1810565, 49.0758780 10.1995729, 49.0923405 10.2099712, 48.8218705 10.2163375, 48.5732709 10.1585590, 49.7621113 9.6294051, 49.3683330 9.9579141, 49.4195134 10.0535016, 49.2882383 9.9406478, 48.5580685 10.1277207, 48.5788457 10.1693436, 48.7170747 10.2080523, 48.7282666 10.2009034, 49.3350076 8.7983923, 49.3459639 8.7931740, 47.5611045 8.0321768, 49.0171260 9.1534397, 49.0958167 9.1828417, 49.1095965 9.1848677, 48.9183760 9.1563179, 48.9193212 9.1562973, 48.9447724 9.1977190, 48.9449139 9.1972527, 48.9689682 9.2267241, 48.9800924 9.2300574, 49.0304309 9.2538320, 49.1210630 9.3007708, 49.1566653 9.3071655, 49.1573678 9.3160744, 49.1601842 9.3549323, 49.1603741 9.3548775, 49.1616105 9.3397381, 49.1627015 9.3701449, 49.1629358 9.3698809, 49.1725530 9.3817719, 49.1727033 9.8237784, 49.1727925 10.0129405, 49.1729493 9.8236024, 49.1742106 9.8457741, 49.1744759 9.8456315, 49.1744599 9.8623803, 49.1755740 9.9774230, 49.1758547 9.9772793, 49.1759763 9.4001758, 49.1762700 9.8859732, 49.1765088 9.8857580, 49.1770020 9.9345641, 49.1772620 9.9342406, 49.1775887 9.9105015, 49.1777734 10.0294788, 49.1778655 9.9103748, 49.1793399 9.7775155, 49.1796070 9.7775911, 49.1807457 9.4136814, 49.1810781 9.7598064, 49.1813474 9.7612968, 49.1848157 9.7374138, 49.1863246 9.7340659, 49.1896744 9.4186012, 49.1915830 9.7190278, 49.1918286 9.7192538, 49.1949465 9.4295459, 49.1960968 9.7038567, 49.1963928 9.7037561, 49.1971836 9.4521348, 49.1974572 9.4517932, 49.2011210 9.6877344, 49.2043366 9.6644362, 49.2048790 9.6585922, 49.2107745 9.5010542, 49.2110505 9.5008148, 49.2114338 9.5359667, 49.2114729 9.5317012, 49.2118076 9.5173316, 49.2120967 9.5172403, 49.2124341 9.6151901, 49.2127552 9.6151143, 49.2170647 9.5622814, 49.2173850 9.5621363, 49.1245726 9.1305009, 47.6079887 9.5842570, 47.7033469 9.4328489, 49.2890193 8.6051647, 49.4686864 8.5404084, 49.4852171 8.5477194, 48.6966848 9.1426214, 48.7551328 9.1535306, 48.7566070 9.1640406, 48.7557780 9.1601913, 48.7547113 9.1489665, 48.7625416 9.1696775, 48.7558700 9.1592528, 48.7550764 9.1515350, 48.7554018 9.1551614, 48.7585917 9.1675048, 48.7554795 9.1597211, 48.7554336 9.1568834, 48.7612657 9.1695819, 48.7561338 9.1617274, 48.7573150 9.1654353, 48.7546558 9.1464774, 48.4514506 8.6433457, 48.4521970 8.6763233, 48.0200383 8.9369411, 49.5696414 9.3640897, 49.5231654 9.3393124, 49.4802730 9.3690583, 48.2306681 8.4106254, 49.4495458 9.4257146, 49.5010683 9.3497671, 48.9581869 8.4301067, 48.9588630 8.4053268, 49.5938778 9.4109944, 49.6063091 9.4370118, 49.6365504 9.4846227, 49.6602377 9.4805080, 49.1311984 9.6338251, 48.7608842 9.4910508, 49.0202769 8.4154626, 49.0937207 8.4121225, 49.3247506 8.5396272, 49.3449164 8.5491365, 49.3476699 8.5480496, 49.4952879 9.2130894, 49.5031612 9.2386569, 49.5219997 9.1700767, 48.4753733 8.4047423, 47.7684484 8.2821018, 48.3226704 9.6087540, 49.5377487 9.3431212, 48.7770772 9.2446719, 49.3255788 8.8127019, 49.7696553 9.5847553, 48.4906185 9.4512150, 49.3701568 9.1999841, 47.9013964 9.0132227, 47.9153307 9.0468785, 47.9169175 9.0522260, 47.9620341 9.0454807, 47.9754874 9.0793087, 47.9906752 9.0789811, 48.0136013 9.2302443, 48.0821258 9.4500636, 48.1845139 9.4862038, 47.7042046 8.3034213, 49.4012435 9.2089612, 49.4319311 9.2375567, 48.6662152 9.3659699, 48.7024144 9.1774889, 48.7875950 8.9827448, 48.7876052 8.9815757, 48.8007249 8.9412573, 48.8234792 8.8884679, 48.8398485 8.8382949, 48.8437503 8.8159339, 48.9716348 8.4471469, 48.9718087 8.4470090, 48.9800714 8.4366231, 48.9927379 8.4365284, 49.0067440 8.4559670, 48.5196274 9.8080095, 49.2271886 9.5357194, 49.2520286 9.5232629, 49.4119380 10.0303080, 47.8002754 8.1987104, 47.8190174 8.3196830, 49.5074139 9.3070533, 48.6021740 10.0615431, 49.3016282 9.2526462, 49.3705341 9.1559288, 47.7798199 8.3268191, 48.7264018 9.2107797, 48.7307799 9.1669412, 48.7433433 9.2683902, 48.9658830 8.8832406, 48.9738816 8.8559312, 48.7113232 9.1645404, 48.7184698 9.1629256, 48.5406158 10.2588419, 49.5254765 9.2865999, 48.5231648 10.0833983, 49.1749304 9.7974010, 49.2061965 9.6407316, 49.1898162 9.4180403, 48.7855603 9.1803280, 49.1808888 9.4132057, 49.1505384 9.3016113, 48.8446461 9.1140852, 47.8627536 8.7857416, 47.8630151 8.7860010, 47.8535430 8.8002637, 47.8552075 8.7980343, 47.7654182 8.8041796, 47.7657572 8.8037537, 47.7705586 8.8141093, 47.7706044 8.8134856, 47.7617045 8.7965771, 47.7628714 8.7979748, 47.7551290 8.7854432, 47.7553585 8.7852332, 47.7469775 8.7566261, 47.7473369 8.7564457, 47.7403603 8.7455512, 47.7404180 8.7453253, 48.8239442 8.8879073, 48.7799018 9.1991603, 48.5594412 9.6644104, 48.7313314 9.1307290, 48.3687987 8.1200636, 49.4132111 9.3294052, 49.4189386 9.2924573, 48.7996329 9.3537647, 48.4579439 9.9875507, 48.5509131 9.6345880, 48.5946710 9.6469612, 48.5992368 9.6429459, 48.7955218 8.9596138, 48.7956324 8.9603226, 48.8010415 8.9413894, 48.8400889 8.8396024, 48.8444913 8.8147692, 49.0063430 8.4560599, 49.0579894 8.4995784, 49.0805123 8.5195564, 49.1278057 8.5505712, 49.2664691 8.6097473, 49.4372590 8.6415845, 49.4421019 8.6438758, 49.4678506 8.6439180, 49.2190424 9.2112957, 49.5718373 8.6650002, 48.8093665 9.1834320, 48.8095623 9.1831335, 48.8095078 9.1830372, 48.8096179 9.1832193, 48.8283942 9.2316547, 48.8095137 9.1829682, 48.4316518 9.7505267, 49.1205878 10.1522484, 49.3220845 8.4655350, 48.8188915 9.2372072, 48.7994543 9.1709984, 48.0863844 7.6920940, 49.5923356 9.3604914, 49.4679710 9.1246953, 48.8303778 9.1746521, 49.4848966 8.5480070, 49.5081710 8.5609162, 49.4469737 9.2106562, 48.7743937 9.1727386, 48.7745047 9.1728634, 48.7754257 9.1720375, 48.8313151 9.2122250, 48.8350574 9.2149805, 48.8322297 9.1705414, 47.6269148 8.5717357, 48.9787489 9.3717375, 48.2185403 8.2568051, 47.8600876 8.1797615, 48.9013819 9.0541283, 48.9512077 9.4128480, 48.8834077 9.3881405, 48.8835815 9.3877978, 47.8227987 8.1685497, 48.4982390 8.8442656, 48.7025036 9.4527857, 47.7560737 8.1820547, 47.7707507 8.1831101, 47.7790395 8.1062076, 47.7866778 8.1801994, 47.7916734 8.0821287, 47.8504829 8.2620373, 48.7684830 9.3231418, 49.1891606 9.1171652, 49.2233552 8.9533636, 47.9911663 8.1651822, 48.9270875 9.6214201, 48.0170829 9.3136142, 47.8569573 8.1100911, 48.7122492 9.9138169, 49.1729576 9.7848150, 49.6197048 9.6044235, 48.9656310 9.5806902, 48.7678116 9.1836149, 48.9014012 8.3087881, 49.0962224 9.0919870, 49.7715202 9.4676383, 49.3158418 9.0749821, 48.1377280 9.5979167, 49.5340464 9.2539952, 49.1736873 10.0258466, 49.1967104 9.0903943, 49.3193613 9.1170267, 49.3291232 9.0554272, 47.9784290 8.9641589, 47.9839356 9.0405854, 47.9880187 8.9974481, 47.9918093 8.7739738, 47.9933461 8.7241803, 48.0204120 8.6493049, 49.1782893 9.3731611, 47.7349571 9.2397100, 47.7754898 9.1749163, 49.5431360 9.8876914, 47.6849697 8.0154772, 47.7621595 7.9758828, 47.8079054 7.9357172, 49.2749828 8.7411568, 48.9123330 8.3510166, 48.9123902 8.3504577, 48.9271462 8.3570549, 48.9559673 8.3820776, 48.9608511 8.4084866, 48.9612460 8.4083461, 48.9738379 8.4364444, 48.9757448 8.4369507, 48.8648202 8.2474782, 48.8790378 8.2632960, 48.8793274 8.2629787, 48.8885040 8.2890322, 48.8888477 8.2888475, 48.8942425 8.3105677, 48.8946078 8.3105747, 48.9003187 8.3333080, 48.9006232 8.3329890, 48.9687147 8.4298277, 49.1673363 9.2596599, 49.1822425 9.2236902, 49.1825846 9.2237977, 49.2685258 8.7797727, 49.2745175 8.6394890, 47.8957752 8.4241928, 48.6409446 8.9308115, 48.0228909 8.6121741, 48.0229438 8.6117576, 48.0055377 8.6048873, 48.0055973 8.6052895, 47.9752433 8.6184455, 47.9753906 8.6187932, 47.9849016 8.6118658, 47.9850938 8.6121629, 47.9552172 8.6194757, 47.9552291 8.6198897, 47.9646618 8.6210187, 47.9647513 8.6214154, 47.9116196 8.6845772, 47.9119042 8.6847225, 47.9259038 8.6546660, 47.9261670 8.6547362, 47.9455845 8.6191598, 47.9456945 8.6195331, 47.8917868 8.7230715, 47.8921007 8.7230347, 47.8714101 8.7775596, 47.8714406 8.7780359, 47.8805881 8.7757992, 47.8806648 8.7762586, 47.8875369 8.7383252, 47.8878393 8.7382397, 47.8901856 8.7700635, 47.8902294 8.7506918, 47.8903428 8.7689517, 47.8904407 8.7503382, 47.8166959 8.8469901, 47.8170162 8.8472903, 47.8245464 8.8337926, 47.8250767 8.8336072, 47.8448826 8.8115167, 47.8450907 8.8118378, 47.8068358 8.8542626, 47.8068588 8.8547291, 47.7867976 8.8232352, 47.7868863 8.8228929, 47.7967813 8.8360776, 47.7970006 8.8357483, 47.7495150 8.7631515, 47.7397150 8.7380011, 47.7397150 8.7380011, 48.0790498 9.6790386, 48.0970763 9.7026062, 47.7399867 8.7345273, 47.8004997 8.8485013, 47.8007334 8.8482334, 47.8008476 8.8480453, 47.8351310 8.8196960, 47.8353577 8.8200357, 47.8944095 8.7072382, 47.8958979 8.7055108, 47.9054261 8.6967782, 47.9056734 8.6970585, 47.9202794 8.6741869, 47.9205383 8.6743676, 47.9322153 8.6301805, 47.9323560 8.6305783, 48.0151141 8.6076181, 48.0151259 8.6071821, 48.6389999 8.9275089, 48.6723269 8.9637019, 48.7474451 9.0594116, 48.8207273 9.2270474, 49.3135359 8.6418842, 48.2094871 7.7785810, 49.1590946 9.2905858, 49.1786306 9.2350337, 49.0220898 8.6269575, 49.0222804 8.5892203, 49.0809449 8.7838851, 49.0954448 8.8068286, 49.1134678 8.8290440, 49.1227203 8.8550260, 49.1481199 8.9186301, 49.2129006 8.6719161, 47.7325414 9.8811144, 47.7557211 8.9496434, 47.7789662 9.1536377, 47.5711618 7.7613910, 48.8601439 9.3228828, 48.7981271 8.1679392, 48.4481460 7.9010627, 48.6273204 9.3396348, 47.7837255 8.9321885, 47.6884934 9.2990145, 48.4625038 10.1391752, 48.8146124 9.3537610, 48.8253583 9.2125643, 48.7795491 9.1745436, 48.7060514 9.1629651, 48.8698641 10.2833974, 49.0008013 8.3719610, 48.9295711 9.8767384, 48.9205756 8.2058607, 49.2944589 9.4709116, 48.9080374 9.3417376, 48.7121894 9.1604107, 48.7602096 9.1689168, 48.7804469 9.1766071, 48.8221293 9.2045896, 49.6084586 9.3445733, 48.1847953 7.7655600, 49.3783297 8.5626284, 48.9551893 9.2496743, 48.9563878 9.2482053, 48.9547502 9.2555397, 48.9559081 9.2587417, 48.0006677 8.4180724, 48.9899167 9.2772816, 48.9911975 9.2808639, 49.0039164 9.2719079, 48.7074798 8.3199480, 48.7386713 8.2896820, 48.7778355 8.1869501, 48.6456999 9.4144185, 48.8844951 8.2680861, 48.9590094 8.4066839, 49.1381543 9.6093247, 48.6491481 8.3326042, 48.6554113 8.2894004, 48.6879563 8.2301900, 48.7074212 8.2330668, 48.7132068 8.1470490, 48.7784092 8.1874412, 48.8734243 8.1508880, 47.7724018 8.0207021, 48.3743563 8.0257583, 48.5343596 7.9223391, 49.0370746 8.3124966, 48.7583042 9.1234566, 48.7468811 8.3019773, 49.0722747 9.2823707, 49.1585703 9.2916476, 47.6086108 9.5882404, 47.8505591 9.6398559, 49.2409505 8.8896780, 49.5458579 8.6284759, 48.4985741 9.1585090, 48.0811778 9.4497598, 48.2142025 9.0999390, 48.5469927 9.6418125, 48.4569517 7.9109849, 48.4999920 7.9558778, 48.5327154 7.9556963, 48.0592054 10.1387419, 48.0592098 10.1391537, 48.0702593 10.1387506, 48.0702882 10.1391449, 48.6148651 8.9415072, 48.0969837 10.1331788, 48.0970453 10.1335784, 48.1066856 10.1273087, 48.1084077 10.1248434, 48.6805662 8.7748231, 48.7984089 9.2595177, 47.7610670 8.8037000, 48.5016195 8.8470383, 48.5113291 10.0836131, 48.6613430 8.9970074, 48.6805662 8.7748231, 48.7984089 9.2595177, 48.8681111 9.1392799, 49.0585670 10.1757670, 49.2094830 9.6368000, 49.2147031 9.6143039, 49.2733589 8.6666298, 49.3763680 8.5460170, 49.3912580 9.4722350, 49.5086670 8.6555330, 49.5389680 9.5818630, 47.9940879 8.5899209, 47.9956209 8.5645447, 47.9959086 8.5645447, 47.9939755 8.5399688, 47.9587454 8.5182969, 47.9228405 8.5057249, 48.8005963 9.2049961, 47.9977403 8.5298491, 47.9937431 8.5402147, 47.9938303 8.5900723, 48.9818800 9.5718630, 48.5460870 7.8906230, 48.5478963 7.8841324, 48.5584850 7.8601509, 48.5617709 7.9504028, 48.5629237 7.8546515, 48.5722846 8.2255376, 48.5760022 7.8292923, 48.5927521 7.8515502, 48.6055000 8.0325500, 48.6548090 8.0662569, 48.6606900 8.3591362, 48.6858580 8.1097150, 48.6916995 8.3591663, 48.7078830 8.3305170, 48.7093170 8.3642330, 48.7340793 8.3748358, 48.7537300 7.9730480, 48.7670670 8.3636330, 48.8069304 8.5273814, 48.8249429 8.1271170, 48.8328153 8.3659850, 48.9489909 8.3702649, 48.9574500 8.2972500, 48.9589170 8.2985830, 48.9791637 8.3244037, 48.9832531 8.3288457, 49.0187170 8.3479000, 49.0191830 8.3479500, 48.6402538 8.9301926, 48.9374320 8.3952437, 48.7308046 9.0893561, 48.2398830 7.7793830, 48.2579830 7.7931000, 48.2705952 7.8125847, 48.3110330 7.7605830, 48.3346474 7.8428322, 48.3554371 7.8002445, 48.3574902 7.8512044, 48.3734330 7.7886830, 48.3947330 7.8102000, 48.4001330 7.8933830, 48.4114480 7.7933680, 48.4274830 7.9020330, 48.4379830 7.9272000, 48.4479820 7.8659680, 48.4517717 7.8168926, 48.4725400 7.9013520, 48.4765210 7.8142310, 48.4938289 7.8211029, 48.4999694 7.9558417, 48.5229170 8.0998830, 48.5310170 7.9861170, 48.5326830 7.9557170, 48.5409774 8.0240442, 48.5472980 8.0623920 +48.8783323 2.3732739, 48.8882750 2.3740777, 48.8773675 2.4068219, 48.8649034 2.3999667, 48.8766834 2.4067529, 48.8742769 2.3568951, 48.8757672 2.3581886, 48.8648183 2.3992191 +49.4194835 8.7033812, 49.4258222 8.7062319, 49.3551484 8.6336513, 49.4270542 8.7105990, 49.4184666 8.7052069, 49.4245168 8.7056416, 49.4235710 8.7025718, 49.4242799 8.7072520, 49.4224817 8.7024542, 49.4229479 8.7068545, 49.4193290 8.7035781, 49.4221380 8.7051571, 49.4263381 8.7055314, 49.4188706 8.7007961, 49.4276600 8.7101416, 49.4243184 8.7025688, 49.4189138 8.7068425, 49.4254814 8.7024102, 49.4213140 8.7019771, 49.4268509 8.7026924, 49.4254256 8.7051858, 49.4195009 8.7025277, 49.4201952 8.7010712, 49.4208217 8.7059731, 49.4233178 8.7053934, 49.4276906 8.7058352, 49.4238991 8.7095045, 49.4206459 8.7039110, 49.4265814 8.7086544, 49.4256259 8.7093622, 49.4257275 8.7070484, 49.4179403 8.7025717, 49.4207145 8.7089359, 49.4222472 8.7095805, 49.4248984 8.7025175 +55.9384134 -3.2182308, 55.9612219 -3.2575527, 55.9450101 -3.1858398, 55.9018738 -3.4984923, 55.9301341 -3.1678546, 55.9722472 -3.1751421, 55.9605648 -3.1852708 +55.9241951 -3.2516849, 55.9453312 -3.3667171, 55.9482698 -3.1839334 +La bobine de fil, Fresque du Demi-Millénaire - Part 2, Le quartier des Eats-Unis (mur 18), Fresque Histoire des transports Lyonnais, Fresque "Lyon, la santé, la vie", Le mur du cinéma, La Fresque Lumineuse - La ville dans le futur, Espace Diego Rivera, Une cité industrielle (mur 4), Fresque de Shangaï, Le Théâtre des Charpennes, Abattoirs de la Mouche (mur 17), Annonce du Musée (mur 3), Années 1900 (mur 3), Cité idéale d'Egypte (mur 19), Cité idéale de Russie (mur 23), Cité idéale de l'Inde (mur 20), Cité idéale de la Côte d'Ivoire (mur 22), Cité idéale des USA (mur 24), Cité idéale du Mexique (mur 21), École (mur 10), École (mur 10), Etablissements sanitaires (mur 12), Habitations en communs, vue d'ensemble (mur 7), Habitations, vue rapprochée (mur 8), Hôpital de Grange-Blanche (mur 16), La gare, une perspective (mur 6), La tour d'horloges (mur 11), Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Le stade de Gerland (mur 15), Les hauts fourneaux (mur 14), Les services publics (mur 5), Tony Garnier Visionnaire (mur 2), Vue des usines (mur 13), Cité idéale de la Côte d'Ivoire (mur 22), Rue des grands chefs - Restaurant Paul Bocuse, Paul Bocuse - Restaurant Paul Bocuse, Fresque "Montluc - Jean Moulin", Fresque "Art et Industrie", Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, La Fresque du Demi-Millenaire - Part 1, La Dombes, Fresque de Meyzieu, Fresque des Fourchettes, Fresque idéale de Québec, Charlie Chaplin Bubbles, Mur peint : L’auberge savoyarde, La Fresque du Foyer, La Fresque Art Déco, Fresque RTE Lyon La Mouche, Fresque, Fresque, Fresque "Chez Jeanne", Fresque "Allée Arborée", Fresque "La Forge", Fresque "Les Diligences", Fresque "Les Vieux Métiers 1", Fresque "Les Vieux Métiers 2", La Fresque du Centenaire 1912-2012, La Fresque du Centenaire 1912-2012, Fresque "Gerland Biotechnologies", Poster en facade gratte ciel, Fresque des Roses - St Priest, Fresque des Roses - Lyon, Av Santy, Fresque Agir pour la biodiversité, Fresque aerosol, Fresque Le marathon de l'impossible and 45.7615378 4.9252989, 45.7242776 4.8539418, 45.7316295 4.8668787, 45.7484993 4.8788479, 45.7498654 4.8759864, 45.7549115 4.8434004, 45.7433556 4.8405258, 45.7318565 4.8358705, 45.7326668 4.8630359, 45.7375747 4.8616255, 45.7725199 4.8663498, 45.7321697 4.8664580, 45.7336465 4.8632348, 45.7328203 4.8629032, 45.7320947 4.8674966, 45.7330177 4.8657973, 45.7324535 4.8672057, 45.7331360 4.8666865, 45.7335600 4.8653728, 45.7325955 4.8671070, 45.7319545 4.8635870, 45.7321249 4.8634546, 45.7316965 4.8647521, 45.7323801 4.8642213, 45.7322374 4.8643323, 45.7323075 4.8663529, 45.7329498 4.8637779, 45.7314132 4.8640073, 45.7385048 4.8613236, 45.7387649 4.8607244, 45.7389336 4.8609359, 45.7328475 4.8659300, 45.7310051 4.8652929, 45.7331061 4.8636557, 45.7333891 4.8624614, 45.7315452 4.8648710, 45.7332067 4.8666311, 45.8155738 4.8472165, 45.8156435 4.8475277, 45.7493533 4.8609118, 45.6634167 4.8424264, 45.7209120 4.8541671, 45.7235048 4.8539594, 45.7222175 4.8540626, 45.7227953 4.8540163, 45.7249477 4.8538288, 45.8202824 4.8705136, 45.7664155 5.0049470, 45.7704495 4.8643856, 45.7342924 4.8626980, 45.7745993 4.8606941, 45.7450213 4.8660796, 45.7502318 4.8416473, 45.7513725 4.8390037, 45.7205996 4.8439283, 45.7697129 4.9524500, 45.7714030 5.0001735, 45.7318628 4.9995743, 45.7316843 5.0009960, 45.7317208 4.9997166, 45.7322290 4.9975134, 45.7340142 4.9964253, 45.7337846 4.9972670, 45.7449245 4.8424444, 45.7452687 4.8413678, 45.7252956 4.8413865, 45.7680770 4.8801051, 45.6946293 4.9406443, 45.7296178 4.8752517, 45.7463509 4.8459884, 45.7297744 4.8742560, 45.7551709 4.8469660, 45.8684698 4.8394062, 45.7434934 4.8478974, 45.7447945 4.9069783 +48.8507240 2.3518758, 48.8660977 2.3554138, 48.8643016 2.3480523, 48.8662844 2.3817490, 48.8957518 2.3879761, 48.8547934 2.3662431, 48.8551205 2.3589562, 48.8695018 2.3546892, 48.8957352 2.3886935, 48.8616153 2.3542965, 48.8705899 2.3500828, 48.8411575 2.3473052, 48.8327663 2.3893382, 48.8513494 2.3555880, 48.8536113 2.3476422, 48.8495079 2.3483856, 48.8585526 2.3597161, 48.8533658 2.3493036, 48.8526313 2.3500601, 48.8607161 2.3525007, 48.8960350 2.3884154, 48.8405179 2.3703276, 48.8465117 2.3551571, 48.8530966 2.3611794, 48.8762675 2.3826909, 48.8435231 2.3731854, 48.8418109 2.3577568, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8474726 2.3606473, 48.8546351 2.3638127, 48.8614029 2.3519903, 48.8590015 2.3547571, 48.8505164 2.3621847, 48.8612342 2.3554751, 48.8602237 2.3588061, 48.8590543 2.3618044, 48.8598775 2.3620895, 48.8581216 2.3616628, 48.8352761 2.4093810, 48.8586563 2.3821295, 48.8370020 2.3826461, 48.8421181 2.3562419, 48.8548859 2.3560679, 48.8612559 2.3587824, 48.8344502 2.3520875, 48.8582260 2.3619639, 48.8530932 2.3611938, 48.8576820 2.3627148 +514 +49.4189644 8.6822373, 49.4227392 8.5971994, 49.4313284 8.6416542, 49.4216061 8.6481916, 49.4014041 8.6551906, 49.3743420 8.6581351 +48.8337601 2.2980718, 48.8309772 2.2928903, 48.8339410 2.2950323, 48.8349198 2.2959694, 48.8385615 2.2891992, 48.8381491 2.2812684, 48.8811210 2.3732246, 48.8779567 2.3742972, 48.8781153 2.3727187, 48.8307104 2.3120538, 48.8367030 2.2977655, 48.8405834 2.2993396, 48.8463258 2.3017109, 48.8893373 2.3260663, 48.8822209 2.3332567, 48.8300409 2.3310810, 48.8332151 2.3611684, 48.8322056 2.3591376, 48.8712479 2.3628847, 48.8457070 2.3709161, 48.8778514 2.3653978, 48.8630548 2.3794488, 48.8563588 2.4021369, 48.8705460 2.3596280, 48.8297820 2.3231434, 48.8563936 2.4058269, 48.8560853 2.4051449, 48.8637600 2.3817121, 48.8316269 2.3219796, 48.8635138 2.4091631, 48.8518271 2.4017627, 48.8615895 2.3741154, 48.8602485 2.3756498, 48.8505112 2.3734697, 48.8460708 2.3737179, 48.8496820 2.3740608, 48.8490800 2.3750094, 48.8490486 2.3705522, 48.8551656 2.3600991, 48.8459906 2.3763165, 48.8474237 2.3715091, 48.8468588 2.3691970, 48.8934713 2.3255439, 48.8909446 2.3815154, 48.8472820 2.3181790, 48.8362003 2.3593757, 48.8863875 2.3186958, 48.8493049 2.3780822, 48.8493772 2.3775082, 48.8520216 2.4013947, 48.8521964 2.4026633, 48.8466612 2.3868559, 48.8475216 2.3868219, 48.8524263 2.3831212, 48.8538371 2.3820195, 48.8503861 2.3796236, 48.8495310 2.3784411, 48.8455986 2.3806304, 48.8507593 2.3788216, 48.8481410 2.3804390, 48.8824887 2.3152528, 48.8941438 2.3276936, 48.8332886 2.3557244, 48.8373701 2.2969471, 48.8662590 2.4060030, 48.8646392 2.4080329, 48.8651930 2.4052170, 48.8829824 2.3824508, 48.8541148 2.4028833, 48.8279466 2.3304154, 48.8619444 2.3516288, 48.8611025 2.3441314, 48.8500286 2.2891336, 48.8765487 2.3769364, 48.8752389 2.3825154, 48.8701184 2.3349370, 48.8773883 2.3713487, 48.8522577 2.3568176, 48.8443535 2.3549714, 48.8465773 2.3541793, 48.8618685 2.3509784, 48.8576627 2.3525871, 48.8587248 2.3501786, 48.8462572 2.3519644, 48.8637215 2.3528934, 48.8568317 2.3570851, 48.8572474 2.3590633, 48.8267666 2.3510620, 48.8257746 2.3474534, 48.8526580 2.3643423, 48.8658845 2.3575167, 48.8641612 2.3652384, 48.8885363 2.3534749, 48.8616550 2.3823490, 48.8405164 2.3219841, 48.8804129 2.3352691, 48.8794749 2.3336267, 48.8810172 2.3647737, 48.8814252 2.3658018, 48.8764651 2.3681086, 48.8383449 2.3457194, 48.8344303 2.3140331, 48.8620790 2.4013394, 48.8946928 2.3825532, 48.8943501 2.3144067, 48.8469243 2.3314911, 48.8721203 2.3123396, 48.8726364 2.3241496, 48.8804896 2.3190711, 48.8517936 2.3135511, 48.8466215 2.4086336, 48.8377558 2.3541054, 48.8387036 2.3509191, 48.8827594 2.3615206, 48.8830373 2.3593122, 48.8699837 2.3960859, 48.8790942 2.3629732, 48.8782374 2.3646053, 48.8825669 2.3666870, 48.8197848 2.3652117, 48.8448730 2.4055932, 48.8784075 2.3544102, 48.8410084 2.3943815, 48.8805633 2.3647086, 48.8796707 2.3636682, 48.8763896 2.3610152, 48.8803326 2.3639778, 48.8832959 2.3681138, 48.8859862 2.3714699, 48.8650067 2.2919269, 48.8374206 2.2895464, 48.8252367 2.3572513, 48.8671109 2.2875572, 48.8362585 2.3098681, 48.8503715 2.3790699, 48.8681484 2.2814134, 48.8662633 2.2740207, 48.8412244 2.3146196, 48.8416926 2.3144950, 48.8739761 2.3446348, 48.8525869 2.3545810, 48.8869795 2.3395686, 48.8556968 2.2748636, 48.8374709 2.3730609, 48.8314755 2.3541835, 48.8241809 2.3260188, 48.8232738 2.3262563, 48.8258667 2.3126560, 48.8468751 2.2700239, 48.8277034 2.3290464, 48.8714383 2.3749525, 48.8714917 2.3756604, 48.8425873 2.2683262, 48.8861537 2.3665372, 48.8291397 2.3173468, 48.8862628 2.3608446, 48.8899894 2.3635134, 48.8403968 2.2858802, 48.8451852 2.3793358, 48.8546996 2.3622532, 48.8873315 2.3475211, 48.8757382 2.2870119, 48.8427628 2.3131898, 48.8846035 2.3801294, 48.8287227 2.2733061, 48.8966748 2.3303545, 48.8957156 2.3308196, 48.8416043 2.3385745, 48.8282746 2.3160906, 48.8276845 2.3152274, 48.8471880 2.2956420, 48.8505880 2.3767286, 48.8573622 2.3923455, 48.8528949 2.2984341, 48.8451099 2.2604585, 48.8234260 2.3622734, 48.8237538 2.3645279, 48.8795652 2.3399721, 48.8782649 2.3446579, 48.8416777 2.3865802, 48.8356662 2.4056140, 48.8384665 2.3992857, 48.8390505 2.3976576, 48.8367225 2.4026707, 48.8420538 2.3352669, 48.8479330 2.3109984, 48.8400158 2.3885455, 48.8380676 2.3904670, 48.8372920 2.3914250, 48.8515655 2.3106825, 48.8573206 2.3799070, 48.8568774 2.3778976, 48.8791708 2.3545583, 48.8433099 2.2998521, 48.8422686 2.3028212, 48.8428121 2.3029849, 48.8766295 2.3386068, 48.8232376 2.3241574, 48.8623905 2.3858127, 48.8252485 2.3653047, 48.8235509 2.3617468, 48.8604567 2.3787781, 48.8941854 2.3817753, 48.8567231 2.3036505, 48.8316207 2.3444925, 48.8309991 2.3450497, 48.8448253 2.2941187, 48.8219529 2.3664594, 48.8241488 2.3575845, 48.8231660 2.3578863, 48.8264536 2.3293804, 48.8455609 2.2880163, 48.8703798 2.3425078, 48.8815370 2.2890680, 48.8814465 2.2860544, 48.8840798 2.2887768, 48.8642750 2.3750973, 48.8844394 2.3668122, 48.8279579 2.3273293, 48.8906856 2.3765193, 48.8328648 2.3160056, 48.8209152 2.3429194, 48.8217284 2.3424285, 48.8358292 2.2784139, 48.8465347 2.4059784, 48.8771396 2.3394367, 48.8777030 2.3395918, 48.8627753 2.2762117, 48.8627898 2.2765008, 48.8314375 2.3197845, 48.8378234 2.3078140, 48.8661247 2.3355594, 48.8767239 2.3326961, 48.8767816 2.3351954, 48.8747442 2.3555041, 48.8835914 2.3739721, 48.8649656 2.3746029, 48.8515852 2.2976307, 48.8695595 2.3743475, 48.8540049 2.4108468, 48.8580698 2.3901570, 48.8383400 2.3560643, 48.8466480 2.3513950, 48.8491900 2.3494261, 48.8286796 2.3431375, 48.8727378 2.3797947, 48.8942732 2.3207603, 48.8945377 2.3200415, 48.8934867 2.3227129, 48.8243403 2.3236549, 48.8273521 2.3254454, 48.8236051 2.3228034, 48.8314118 2.3268159, 48.8317243 2.3255633, 48.8730929 2.3615921, 48.8902931 2.3539796, 48.8912086 2.3476028, 48.8286520 2.3729316, 48.8443510 2.3492066, 48.8448929 2.3490511, 48.8947631 2.3433837, 48.8944528 2.3445585, 48.8931760 2.3432750, 48.8936140 2.3424950, 48.8699780 2.3603140, 48.8692770 2.3632250, 48.8689460 2.3599740, 48.8711600 2.3611170, 48.8718330 2.3625680, 48.8726030 2.3634490, 48.8551457 2.3064362, 48.8682200 2.3862795, 48.8569251 2.3724871, 48.8927820 2.3439810, 48.8652385 2.3467947, 48.8923110 2.3520290, 48.8442018 2.3394106, 48.8289915 2.3222506, 48.8593204 2.3472769, 48.8262063 2.3413104, 48.8856760 2.3378250, 48.8847970 2.3378803, 48.8528514 2.4064283, 48.8481389 2.4033143, 48.8285586 2.3331113, 48.8276535 2.3328559, 48.8513926 2.4064136, 48.8547850 2.2692675, 48.8651423 2.2891208, 48.8591269 2.4019235, 48.8600304 2.4040296, 48.8511503 2.3968083, 48.8863055 2.3474829, 48.8955331 2.3629901, 48.8523880 2.3766318, 48.8510502 2.3768840, 48.8507078 2.3790297, 48.8361116 2.3874192, 48.8235068 2.3533933, 48.8403649 2.3951878, 48.8907372 2.3457644, 48.8873229 2.3511583, 48.8376955 2.3463172, 48.8846893 2.3539417, 48.8416560 2.3224928, 48.8238291 2.3416075, 48.8577497 2.2739837, 48.8645340 2.4052672, 48.8780261 2.3268365, 48.8398765 2.2998351, 48.8816987 2.3281627, 48.8808802 2.3287802, 48.8360217 2.3527252, 48.8354391 2.3483666, 48.8498251 2.2722599, 48.8504305 2.2704038, 48.8528838 2.2756127, 48.8452361 2.4025749, 48.8805451 2.2927512, 48.8810529 2.2917751, 48.8872955 2.3492014, 48.8870640 2.3535779, 48.8825453 2.3671700, 48.8245686 2.3765029, 48.8813195 2.2953819, 48.8898589 2.3421554, 48.8906741 2.3434068, 48.8298993 2.3526634, 48.8281786 2.3525387, 48.8883534 2.3187513, 48.8890835 2.3224688, 48.8882779 2.2997302, 48.8939893 2.3329500, 48.8935546 2.3361391, 48.8947140 2.3351360, 48.8972639 2.3451996, 48.8979057 2.3340738, 48.8958814 2.3435581, 48.8912647 2.3345914, 48.8932962 2.3379872, 48.8493216 2.4063155, 48.8980433 2.3287001, 48.8979798 2.3377499, 48.8934867 2.3300359, 48.8928448 2.3280564, 48.8939770 2.3281101, 48.8942097 2.3280510, 48.8966030 2.3288474, 48.8932032 2.3271200, 48.8352792 2.2890637, 48.8220563 2.3588648, 48.8911913 2.3392274, 48.8499872 2.3478618, 48.8463001 2.3432338, 48.8498177 2.3482783, 48.8446190 2.3895985, 48.8497058 2.2914067, 48.8488722 2.2909525, 48.8516467 2.2919993, 48.8502983 2.2919285, 48.8430441 2.2833680, 48.8427407 2.2800381, 48.8569612 2.3997902, 48.8580950 2.4069089, 48.8574194 2.4075785, 48.8794256 2.3893510, 48.8824759 2.3233165, 48.8441370 2.3723808, 48.8533370 2.3079466, 48.8365811 2.3930159, 48.8457446 2.3932577, 48.8462449 2.3946154, 48.8682520 2.3960084, 48.8608742 2.3547652, 48.8644732 2.3715756, 48.8354190 2.3928675, 48.8389285 2.3961514, 48.8220200 2.3551611, 48.8713113 2.3039889, 48.8525737 2.3850093, 48.8777366 2.2878742, 48.8782149 2.3984639, 48.8761595 2.4036138, 48.8770014 2.4071325, 48.8814737 2.3729748, 48.8807820 2.3745741, 48.8843130 2.3091760, 48.8277275 2.3062018, 48.8287563 2.3015875, 48.8930590 2.3424350, 48.8750926 2.2837673, 48.8419136 2.3247626, 48.8385785 2.3227706, 48.8431110 2.2650609, 48.8594724 2.3491134, 48.8732334 2.3431543, 48.8774393 2.3494265, 48.8774984 2.3489986, 48.8849881 2.3071728, 48.8392226 2.3945147, 48.8446508 2.3731492, 48.8358462 2.2901616, 48.8852419 2.3788486, 48.8302344 2.3704299, 48.8814548 2.3450080, 48.8706548 2.3429479, 48.8657789 2.3469220, 48.8205834 2.3501740, 48.8234560 2.3498227, 48.8533833 2.3705439, 48.8239258 2.3642439, 48.8225364 2.3462505, 48.8227836 2.3470686, 48.8257161 2.3507275, 48.8257020 2.3460018, 48.8771653 2.3515517, 48.8763392 2.3556446, 48.8682998 2.4016012, 48.8697801 2.4028967, 48.8710424 2.4039943, 48.8720618 2.4046821, 48.8727710 2.3991263, 48.8650559 2.3971773, 48.8655264 2.3981686, 48.8344269 2.3672465, 48.8284908 2.3703198, 48.8258079 2.3604332, 48.8594207 2.3678969, 48.8248710 2.3196867, 48.8247915 2.3176000, 48.8301707 2.3337415, 48.8327495 2.3363992, 48.8333703 2.3323929, 48.8351459 2.3005345, 48.8353374 2.3022404, 48.8359317 2.3005525, 48.8440288 2.4105786, 48.8908851 2.3611676, 48.8263543 2.3123490, 48.8263472 2.3104526, 48.8274473 2.3073922, 48.8273336 2.3052629, 48.8372837 2.2784287, 48.8421188 2.2774869, 48.8260357 2.3595197, 48.8267984 2.3745150, 48.8276944 2.3706840, 48.8352679 2.2821201, 48.8558849 2.3751381, 48.8545384 2.3713228, 48.8287227 2.2995517, 48.8317316 2.3684804, 48.8395554 2.2619755, 48.8900586 2.3606383, 48.8715652 2.3861467, 48.8243982 2.3283690, 48.8437094 2.2827794, 48.8424843 2.2821195, 48.8418506 2.2815590, 48.8941162 2.3618889, 48.8933356 2.3615276, 48.8901273 2.3615642, 48.8397383 2.2615466, 48.8388211 2.2609376, 48.8900701 2.3596849, 48.8908274 2.3601975, 48.8903737 2.3602877, 48.8762839 2.3874942, 48.8258804 2.3538466, 48.8910933 2.3308427, 48.8840472 2.3777246, 48.8532483 2.3881569, 48.8310847 2.3808041, 48.8325943 2.3626569, 48.8276596 2.3564922, 48.8501827 2.3300326, 48.8729108 2.3892528, 48.8926192 2.3787994, 48.8594463 2.3795210, 48.8917249 2.3596358, 48.8933896 2.3598075, 48.8353878 2.3976074, 48.8393328 2.3898245, 48.8653879 2.3568423, 48.8858319 2.3683200, 48.8866975 2.3690587, 48.8918801 2.3632407, 48.8682722 2.3654615, 48.8557307 2.3714370, 48.8559510 2.3687418, 48.8632613 2.3690657, 48.8610703 2.3668902, 48.8615047 2.3648719, 48.8625898 2.3635210, 48.8624376 2.3641865, 48.8798043 2.3995910, 48.8294190 2.3760526, 48.8893342 2.3187256, 48.8435392 2.3876321, 48.8664075 2.3511385, 48.8752547 2.3898031, 48.8739410 2.3881658, 48.8740999 2.3854670, 48.8729667 2.3708014, 48.8536536 2.3652281, 48.8839440 2.2924260, 48.8841607 2.2936643, 48.8698850 2.3947954, 48.8869564 2.3228854, 48.8320028 2.3143006, 48.8764887 2.3444554, 48.8668204 2.3972017, 48.8708653 2.3088351, 48.8703111 2.3109794, 48.8438225 2.3306529, 48.8270270 2.3545480, 48.8441654 2.3422903, 48.8525204 2.3447674, 48.8436299 2.3520995, 48.8683492 2.3653361, 48.8444368 2.3317238, 48.8878098 2.3799348, 48.8455417 2.2847565, 48.8471374 2.2853376, 48.8640679 2.3650860, 48.8556183 2.3576323, 48.8725081 2.3789468, 48.8297066 2.3719377, 48.8658987 2.3445250, 48.8518380 2.3369161, 48.8368347 2.3064637, 48.8864904 2.3929252, 48.8409479 2.3520733, 48.8548553 2.3856848, 48.8551588 2.3869294, 48.8902682 2.3369864, 48.8648476 2.3661885, 48.8954171 2.3603570, 48.8462303 2.3082719, 48.8881816 2.3761106, 48.8224627 2.3258585, 48.8531572 2.3447239, 48.8495298 2.3495342, 48.8678864 2.3249680, 48.8406223 2.3162685, 48.8415260 2.3177790, 48.8516476 2.3430530, 48.8522113 2.3433310, 48.8799994 2.2917628, 48.8760421 2.3247263, 48.8259140 2.3418063, 48.8475433 2.3020749, 48.8848153 2.3335836, 48.8768943 2.3487181, 48.8340803 2.3449578, 48.8294924 2.3480229, 48.8483268 2.3315361, 48.8384271 2.3603013, 48.8718826 2.3260739, 48.8306192 2.3113448, 48.8708189 2.3031863, 48.8224695 2.3280079, 48.8867785 2.2961065, 48.8380124 2.3925384, 48.8393761 2.3972146, 48.8729941 2.3452007, 48.8363310 2.3511207, 48.8308373 2.3481222, 48.8328106 2.3467883, 48.8189800 2.3619660, 48.8852910 2.2958210, 48.8653095 2.3468349, 48.8780467 2.2960586, 48.8785810 2.2953365, 48.8785586 2.2954162, 48.8860217 2.2909345, 48.8342538 2.4039026, 48.8328046 2.3998654, 48.8897434 2.3684941, 48.8565550 2.3066461, 48.8662189 2.3411008, 48.8338577 2.3542234, 48.8588484 2.3622538, 48.8557977 2.3334124, 48.8537947 2.3371165, 48.8401916 2.3498220, 48.8405286 2.3497872, 48.8385999 2.2890636, 48.8410381 2.3194768, 48.8665493 2.2967911, 48.8732070 2.3032419, 48.8880020 2.3070560, 48.8894260 2.3021180, 48.8501962 2.3822724, 48.8469077 2.3843835, 48.8972873 2.3596764, 48.8588932 2.3539048, 48.8755295 2.3273771, 48.8757429 2.3272510, 48.8487020 2.3404334, 48.8341468 2.3292697, 48.8334796 2.3314573, 48.8772230 2.2922270, 48.8645795 2.2824038, 48.8338948 2.3299593, 48.8810540 2.2852110, 48.8839130 2.2907430, 48.8278199 2.3453108, 48.8746985 2.3800023, 48.8294976 2.3479900, 48.8746524 2.3059699, 48.8743208 2.3074302, 48.8798388 2.3745491, 48.8345685 2.3277223, 48.8824071 2.3708251, 48.8587325 2.3232162, 48.8736497 2.3266758, 48.8265944 2.3272409, 48.8538362 2.3322137, 48.8333843 2.3867041, 48.8808106 2.3727327, 48.8406281 2.3046706, 48.8533190 2.3669820, 48.8849774 2.3801611, 48.8854894 2.3815292, 48.8856226 2.3818987, 48.8830874 2.3878108, 48.8438379 2.3524738, 48.8438379 2.3524738, 48.8222496 2.3507278, 48.8851070 2.3036780, 48.8500752 2.3009300, 48.8496090 2.3539260, 48.8827302 2.3707486, 48.8609924 2.2838960, 48.8588106 2.2845183, 48.8306465 2.3335032, 48.8725875 2.3782042, 48.8755301 2.3910815, 48.8656747 2.3928548, 48.8827937 2.3812803, 48.8829828 2.3811149, 48.8755713 2.3983661, 48.8755863 2.3989012, 48.8767180 2.4047230, 48.8771405 2.4060238, 48.8591517 2.3557695, 48.8607522 2.3545715, 48.8608207 2.3543547, 48.8609593 2.3539532, 48.8610034 2.3538240, 48.8473351 2.3951813, 48.8472416 2.3961945, 48.8475546 2.3930901, 48.8476864 2.3973242, 48.8518800 2.3897180, 48.8505687 2.3925919, 48.8500483 2.3946347, 48.8575099 2.3809573, 48.8394381 2.3922677, 48.8395862 2.3939515, 48.8513422 2.3477785, 48.8745781 2.3873676, 48.8746258 2.3882005, 48.8753047 2.3926062, 48.8352480 2.2852870, 48.8583161 2.3282685, 48.8489230 2.3496710, 48.8367930 2.2958108, 48.8560138 2.2801813, 48.8568409 2.2789161, 48.8440022 2.2934092, 48.8642512 2.3689433, 48.8515116 2.3988887, 48.8907874 2.3784109, 48.8853720 2.2926050, 48.8583103 2.3822134, 48.8661157 2.3977226, 48.8671967 2.4092129, 48.8684503 2.4092879, 48.8621715 2.3774882, 48.8746232 2.3266224, 48.8467059 2.3087748, 48.8363398 2.2999746, 48.8653853 2.3686990, 48.8653218 2.3678518, 48.8413271 2.3076655, 48.8353741 2.3033228, 48.8477911 2.3189782, 48.8469433 2.3172689, 48.8685232 2.3413917, 48.8661744 2.3390884, 48.8833230 2.2987210, 48.8825490 2.2939790, 48.8615259 2.3704088, 48.8429707 2.3067870, 48.8642079 2.3555687, 48.8840313 2.3391067, 48.8616536 2.3637831, 48.8329453 2.2890084, 48.8670104 2.3443314, 48.8545691 2.3624284, 48.8410290 2.3406982, 48.8605092 2.3788107, 48.8547397 2.3848709, 48.8643859 2.3991316, 48.8298427 2.3644959, 48.8759393 2.2895530, 48.8619514 2.3325055, 48.8364245 2.3944189, 48.8770775 2.3600536, 48.8773723 2.3588805 +37.8163406 -122.3719841, 37.8159189 -122.3712035, 37.8198117 -122.3663991, 37.8240897 -122.3725534, 37.8217995 -122.3675153, 37.8251277 -122.3701037, 37.8251958 -122.3698336, 37.8282634 -122.3718811, 37.8298005 -122.3733581, 37.8269448 -122.3774052, 37.8219781 -122.3678899, 37.8183698 -122.3702624, 37.8299019 -122.3752682, 37.8283168 -122.3771872, 37.8199566 -122.3664933, 37.8231753 -122.3748357, 37.8241714 -122.3754505, 37.8167937 -122.3722982 +yes +yes +asphalt +55.9048041 -3.1580079 +48.8688011 2.3433065, 48.8315179 2.3484655, 48.8478026 2.3022063, 48.8395100 2.3008865, 48.8425547 2.3220548, 48.8939173 2.3145811, 48.8634631 2.2867213, 48.8383335 2.2781281, 48.8330438 2.4150719, 48.8423448 2.4010169, 48.8208661 2.3326924, 48.8213634 2.3309274, 48.8199947 2.3340110, 48.8434266 2.3750303, 48.8434372 2.3750054, 48.8440016 2.3736234, 48.8440277 2.3735686, 48.8443850 2.3728793, 48.8443962 2.3728912 +49.4111306 8.6979715 +yes +yes +48.8494725 2.3556898 +48.8950879 2.3531779 +yes +49.4276763 8.6857958, 49.4038333 8.6771587, 49.4171595 8.6617457, 49.4147558 8.6660779, 49.4134202 8.6738393, 49.4192295 8.7567625, 49.4082107 8.6921228, 49.4091698 8.6936091, 49.4041276 8.6763300, 49.4172710 8.6921830, 49.4124311 8.7120085, 49.3804963 8.6875192, 49.4031182 8.6470339, 49.3989298 8.6889417, 49.4107889 8.7060227, 49.4065233 8.6910827, 49.4013623 8.6726870, 49.4089481 8.7124297, 49.4121807 8.6993722, 49.3656248 8.6889494 +Ibis, BVJ Paris-Louvre, Hôtel de Rouen, Hôtel Saint-Honoré, Hôtel Montpensier, Hôtel Louvre Bon Enfants, Hôtel Vendôme, Hôtel Costes, Hôtel Vivienne, Hôtel des Boulevards, Hôtel Sainte-Marie, Hôtel Paris Rivoli, Hôtel du Loiret, Hôtel du Septième Art, Hôtel Caron de Beaumarchais, Jardins de Paris Marais-Bastille, Hôtel de la Place des Vosges, Hôtel de Nice, Hôtel du Commerce, Hôtel Esmerelda, Port-Royal-Hôtel, Hôtel du Levant, Maitre Albert B&B, Le Clos Medicis, L'Hôtel, Victoria Palace Hotel, Hôtel Chomel, Hôtel Lindbergh, Hôtel du Champ de Mars, Hôtel Saint-Dominique, Hôtel Duquesne Eiffel, Hôtel de la Tulipe, Grand Hôtel Leveque, Timhôtel Best Western Tour Eiffel Invalides, Phytéas's houseboat B&B, Four Seasons Hôtel George V, Hyatt Regency Paris - Madeleine, Hôtel de Lille, Perfect Hotel & Hostel, Hôtel Vicq d'Azir, Hôtel du Terrage, Comfort Hotel Gare de l'Est, Albert 1er Hotel, Appel, Hôtel Hangely, Hôtel Le Quartier République, Le Marais, Le Général Hôtel, Classics Hôtel, Grand Hôtel Nouvel Opera, Hôtel de Nemours, Hôtel du Nord et de l'Est, Blue Planet Hostel, Hôtel Prince Albert, Hôtel de la Porte Dorée, Hôtel de l'Aveyron, Corail Hotel, Hôtel Le Quartier Bastille, Le Faubourg, Hôtel Palym, Hôtel Le Quartier Bercy - Square, Novotel, Kyriad Italie Gobelins, Hôtel Ibis Paris Avenue d'Italie, Timhotel Italie, Jack's, La Manufacture, Mercure Gobelins, Holiday Inn Express Paris place d'Italie, Hôtel Villa Lutece, Hôtel du Lion, Aloha Youth Hostel, Le Parc, Hôtel Eldorado, Hôtel Prince Albert Monceau, Hôtel Saint-Cyr Étoile, Hôtel Bonséjour, Hôtel Sofia, Hôtel des Arts, Hôtel Eden Montmartre, Paris Hotel, Terrass'hôtel, Hôtel Bonne Nouvelle, Tiquetonne Hôtel, Tryp Hôtel Paris François, Hôtel Victoires Opéra, Hôtel du Marais, Grand Hôtel des Arts et Metiers, Hôtel Royal Bel Air, Hôtel Carladez Cambronne, Hôtel Novotel, Hôtel Ibis Cambronne, Novotel Pari Gare Montparnasse, Hôtel Kuntz, Hôtel Le Littré, Hôtel Crimée, Hôtel Ermitage, Hôtel Balzac, Hôtel Acacias Etoile, Le Grand Hôtel Intercontinental, Ibis, Le Vélodrome, Hôtel Royal Aboukir, Grand Hôtel Leveque, Hôtel Sofitel Le Faubourg, Hôtel Astor Saint-Honoré, Crowne Plaza, Hôtel Verlain, Hôtel Antinéa, Hôtel Valadon, Hôtel États-Unis Opéra, Hôtel L'Horset Opéra, Hôtel Saint-Cyr Étoile, Hôtel Val Girard, Alizé Grenelle, Beaugrenelle Saint-Charles, Hôtel Scribe, Holiday Inn, Hôtel Cluny Square, Hôtel de Suez, Hôtel de la place des Alpes, Hôtel Paris Est Lafayette, Hôtel du Prince Eugène, Hôtel Apostrophe, Hôtel La Tour d'Auvergne, Grand Hotel Français, Grand Hôtel Doré, Hôtel Sublim Eiffel, Hôtel Albouy, Relais du Pré, Hôtel du Pré, Résidence du Pré, Au Manoir Saint-Germain des Prés, Adagio Paris Montmartre, Kube Hotel, Hôtel Cujas Panthéon, Hôtel Saint-Charles, Hôtel deVillas, Idéal Hotel, Montparnasse Rive Gauche, Citadines Place d'Italie, Hôtel Prince Albert, Ibis, Sport Hotel, Hôtel Kyriad, Novotel Paris Bercy, Hôtel Ibis Styles Paris-Bercy, Brebant, Hôtel Plaza Élysées, Hôtel Altona, Hôtel Losserand Montparnasse, Wattignies Hôtel, Hôtel Bercy Gare de Lyon, Hôtel Allegro, Terminus - Lyon, Viator, Hôtel du Midi, Holiday Inn, Hôtel Saint-Hubert, Azur, Lyon Bastille, Hôtel Adriatic, Mercure, Concordia, Hôtel Helvetia, Hôtel de Marseille, Hôtel Alexandrie, Nièvre Hôtel, Modern's, Bel Oranger, Hôtel de l'Aveyron, Gare de Lyon, Aurore Best Western, Hôtel Europe, Concorde Saint-Lazare, Hôtel Mignon, Alcyon, Hôtel Prince, Le central, Hôtel Pont Royal, ibis, Hôtel Marriott, Hôtel Coypel, Hôtel des Arts, Hôtel Dacia, Convention Montparnasse, Albe Hôtel Saint-Michel, Formule 1, Hôtel Henri IV, Hôtel Victoria Châtelet, Halle Hotel, Hôtel Britannique, Hôtel All Seasons Paris XV Lecourbe, Hôtel des Olympiades, Hôtel Régina, Hôtel du Louvre, Hôtel Louvre Piémont, Hôtel Normandy, Pavillon Louvre Rivoli, Hôtel Louvre Saint-Anne, Hôtel Opéra Maintenon, Hôtel Prince Albert Louvre, Campanile, Londres Saint-Honoré, Meliã Vendôme, Hôtel d'Aubusson, Hôtel France d'Antin, Hôtel France d'Antin, Hôtel à la Villa Saint-Martin, Holiday Inn Paris Notre-Dame, Jardin de Cluny, Hôtel de Lutèce, Hôtel Saint-Louis, Hôtel des Deux Iles, Folkestone Opéra, Sydney Opéra, Hôtel Acacias, Hôtel Rivoli, Hôtel De La Bretonnerie, Prince de Galles, Hôtel Jeanne d'Arc, Hôtel Turenne, Hôtel Saint-Louis Marais, Hôtel du Plat d'Étain, Hôtel de la Paix République, Hôtel Nazareth, Austin's Arts et Métiers Hôtel, Paris France Hôtel, Hôtel du Marais, Gardette Park Hôtel, Miramar, Timhotel Montparnasse, Printania, Hôtel Gay-Lussac, Ibis, Campanile, Appart' Valley, Little Palace Hotel, Hôtel Saint-Paul Rive Gauche, One by the Five, Holiday Inn : Gare de L'est, Hôtel Jardin Le Bréa, Le Petit Trianon, Hôtel Beauchamps, Hôtel du Rond-Point des Champs-Élysées, Hôtel Elysée Park, Hôtel Mathis Élysées, Le 123 Elysées, Le Bristol, Timhotel Élysée, Royal Madeleine, Hôtel Opal, Vintage Hostel Near Gare du Nord, Hôtel Berne Opéra, Hôtel de la Flèche d'Or, Grand Hôtel du Havre, Hôtel Britannia, Hôtel de Dieppe, Hôtel Place de Clichy, Étoile Saint-Honoré, Hôtel Étoile Friedland, Champs-Élysées Plaza, Hôtel California, Hôtel du Colisée, Hôtel Amarante Champs-Élysées, Hôtel Powers, Hôtel de la Trémoille, Hôtel Élysées Régencia, Hôtel La Bourdonnais, Hôtel Le Walt, Hôtel de Vigny, hötel Mayflower, Persing Hall, Fouquet's Barrière, Hôtel Le Monna Lisa, Mercure : Paris-La Villette, Holiday Inn Express : Hôtel Paris-Canal De La Villette, Hôtel du Panthéon, Faubourg 216-224, Faubourg 216-224, Timhotel, Hôtel Plaza La Fayette, Hôtel Bristol Nord, Hôtel Montana, Park Hyatt Paris -Vendome, Hôtel de France, Marciano, Excelsior Hôtel Varlin, Grand Hôtel de l'Univers-Nord, Hôtel Pullman Paris Bercy, Hôtel George Opera, Hôtel Sibour, Ibis, Home Business Residence, Hôtel des Trois Gares, Hôtel Acte V, Hôtel Américain, Hôtel Georgette, Hôtel Raphael, Hôtel Baltimore, Hôtel Ambassade, Villa des ambassadeurs, Hôtel Victor Hugo, Résidence Chalgrin, Résidence Impériale, Color Hotel, Holliday Inn, Hôtel Forest Hill La Villette, Hôtel Gavarni, Ibis Budget, Hôtel Atlantique, Hôtel Jeff, Hôtel Résidence Foch, TimHotel, Hôtel Elysa-Luxembourg, Hôtel Ribera, Hôtel La Fayette, Queen's Hôtel, Hôtel du Square, Holiday Inn Garden Court : Paris-Auteuil, Hôtel Studio, Hôtel Merryl, Hôtel de Bellevue Paris, Hôtel Le Régent, Jules Cesar, Hôtel Les Rives de Notre-Dame, Hôtel Notre-Dame, Hôtel Amiot, Camélia Hôtel, Le Méditel, Familia Hôtel, Hôtel Minerve, Hôtel Le Saint-Jacques, Hôtel Moderne Saint-Germain, Hôtel Sully Saint-Germain, Hôtel des Grands Hommes, Le Lotti, Eiffel Kennedy, Hôtel Le Derby Alma, Hôtel Les Théâtres, Quality Hotel Opéra - St Lazare, Hôtel Derby Eiffel, Hôtel Arcadia, Hôtel Lodge du Centre, Hôtel des Victoires, Hôtel Ronceray, Les Relais de Paris, Baldi, First Hôtel, Hôtel Ségur, Bailli de Suffren, Daumesnil Hôtel, Saint-Georges, Mercure Paris Terminus Nord, Quality Hotel Gare Du Nord, Hôtel d'Amiens, Hôtel Plaza Athénée, Le Meurice, Hôtel Saint-James & Albany, Original, l’Apostrophe, William's Opera, Ibis Paris Gare de l'Est, Élysée, Hôtel de Banville, La Maison Blanche, Home Latin, Marignan, Mercure, Européen, Hôtel de Nantes, Hôtel d'Espagne, Hôtel Montalembert, Grand Hôtel du Bel Air, Hôtel du Petit Louvre, Hôtel Delos Vaugirard, Hôtel Chatillon Paris Montparnasse, AVALON HOTEL, Hôtellerie Paris Saint-Honoré, La croix de Malte, Grand Hotel Haussmann, Hôtel Helder Opera, Hôtel London, Hôtel Opera Vivaldi, Hôtel Langlois, Hôtel des Alpes, Hôtel Chamonix, Hôtel Aris Nord, Ibis Budget, Metropole La Fayette, Baudelaire, Alison, Amarante Beau Manoir, La Sanguine, Le Clos d'Alésia, Hipotel Paris Nation, Hôtel du Moulin, France Eiffel, Le Colbert, Modern Hotel, Luxor Bastille, Le Versigny, Best Western Aïda Marais, Hôtel des 3 nations, Hôtel du Prince Eugène, Hôtel Excelsior, Hôtel Tours Magenta, ibis Styles Paris Alesia Montparnasse, Résidence Universitaire, Résidence Mouffetard, Hôtel Westminster, Mandarin Oriental, W Paris Opéra, Comfort Hotel, Relais Saint-Jacques, Hôtel Banke, Castille, Thoumieux, Hôtel Thérèse, Le Seven, Hôtel des Écoles, Ibis Paris Brancion parc des expositions, Royal Saint-Germain, Hôtel Regyn's Montmartre, Clichy Hôtel, Little Regina, Hôtel ibis, Hôtel André Gill, Hôtel de Nevers, La Soummam, Hôtel Belambra Magendie (Touring Hotel), Hôtel Mogador, Holiday Inn Paris Opéra, Hôtel du Casino, Hôtel Antin Trinité, Opéra D'Antin, Plaza Opera Hotel, Villa Lamartine Opéra, Hôtel Impérial, Terminus Vaugirard, Hôtel Mercure Paris Montmartre Sacré Coeur, Hôtel Ibis Paris Montmartre, Les Gobelins, Art Hotel Batignolles, Hôtel de Flore 108 rue Lamarck, Holliday Inn Garden Court, Le Rocroy, Hôtel Ibis Paris Sacré-Coeur, Hôtel des Arènes, Hôtel Studia, Renaissance Paris Vendôme Hotel, Hôtel de la Chope, Mercure Paris Monty Opéra, Hôtel Le M, Hôtel de Sévigné, Citadines, Étoile Saint-Ferdinand, Citadines Apart'Hotel, Le Pavillon Frontenac, Hôtel Terminus Montparnasse, Hôtel Mercure, Libertel Montmartre Duperré, Hôtel Splendid, Hôtel des Buttes Chaumont, Hôtel de la Comète, Hôtel Berkeley, Platine, New Hotel Saint-Lazare, Hôtel Londres & New-york, Hôtel des Arts, Hôtel Novotel Paris Porte d'Orléans, Hôtel Le Pavillon Bastille, Hôtel Paris Bastille, Shangri-La Hotel, Les jardins d'Alésia, 61 Paris Nation Hôtel, Palma Hotel, Le Baron, AmHotel Italie, Arian Hotel, Windsor Opera, Ideal Hotel, Meridional, Mercure Paris Vaugirard Porte de Versailles, Porte de Versailles Hotel, Hôtel Riquet, Hôtel de la Poste, Hôtel Clarisse, Hôtel Exelmans, Hôtel Boileau, Hôtel Median Paris Porte de Versailles, Villa royale Montsouris, Hôtel Virginia, Hôtel Montsouris Orléans, Hôtel Beaunier, Cécil Hotel, Parc Hotel, Sports Hotel, Hôtel du Parc Saint-Charles, Hôtel Source, Bellevue et du Chariot d'Or, Timhotel Nation, Dupleix Hotel, Hôtel Tolbiac, Best Western, Ibis, Hôtel Torcy, Hôtel de Belfort, Hôtel Palais de Chaillot, Hôtel Eiffel Turenne, Hôtel Belfort, Hôtel Mirific, Cambrai, Hôtel Le Petit Belloy, Hôtel Belloy Saint-Germain, Quality Suites, Hôtel de Paris Montmartre, Hipotel, Hôtel Pavillon de la reine, Hôtel des Pyrénées, Best Western Amiral Hotel, Ibis, Nouveau Paris Park Hotel, Hôtel Magellan, Caffè Cosy, Armoni Hotel, Hôtel Champerret-Héliopolis, Hôtel Charma, Hôtel Flor Rivoli, Hôtel Dechampaigne, Grand hôtel amelot, Louis II, Cordelia, Hôtel Bergère Opéra, Hôtel marais bastille, Hôtel Villa des Ternes, Hôtel Champerret-Élysées, Notre-Dame, Jardin de Villiers, Pavillon Courcelles Parc Monceau, Pavillon Villiers Étoile, Holiday Villa, Beauséjour Montmartre, Balcon de Charonne, Hôtel Mont Blanc, Hôtel Paris Le Marquis Eiffel, Europe - St Séverin, Hôtel Royal Saint-Michel, Hôtel Saint-Charles, Paris - Tour Eiffel, Hôtel du Parc Saint-Séverin, Hôtel Chopin, Hôtel de la Paix, Hôtel Saint-Christophe, Hôtel Perreyve, Hôtel de l'Avenir, Hôtel de France, Istria Montparnasse, Hôtel madeleine plaza, Hôtel Saint-Merry, Andréa Rivoli, Hôtel de Reims, Diva Opéra, Résidence Châtillon, Hôtel de l'Alma, Hôtel de la Vallée, Hôtel Royal Saint-Honore, Hôtel La Bourdonnais, Villa Montparnasse, IBIS STYLES PARIS PIGALLE MONTMARTRE HOTEL, IBIS STYLES PARIS PIGALLE MONTMARTRE HOTEL, Claude Bernard, Villa Panthéon, Fertel Maillot, Central hotel, Hôtel de Neuville, Hôtel CÉ, Hôtel Novanox, Comfort Hotel Mouffetard, Hôtel de la Sorbonne, Mercure, Grand Hôtel de Normandie, Hôtel du Calvados, Austin's Saint-Lazare, Austin's Saint-Lazare, Élysées Union, Hôtel Best Western, Hôtel Michelet Odéon, Trianon Rive gauche, Radisson Blu Le Dokhan's Hotel, Plaza Tour Eiffel, Adagio Aparthotel, Hôtel Relais Bergson, Hôtel Libertel Canal Saint-Martin, Timhotel, Hôtel de la Perdrix Rouge, Hôtel du Marché, Best Western Quartier Latin, Best Western Quartier Latin, Hôtel Villa Garibaldi, Academie Hotel, Le Richemont, Hôtel du Triangle d'Or, Hôtel Noir, Hôtel de Sers, Hôtel Bel Ami, Hôtel Edouard 7, Hôtel Eiffel Trocadero, Hôtel Franklin, Golden Hotel, Hapimag, Hôtel duO, The Peninsula Paris, Hôtel Mon Rêve Amadeus, Hôtel Mon Rêve Amadeus, Hôtel du Collège de France, Best Western Empire Élysées, Hôtel Le Bienvenue, Auberge flora, Hôtel du Cadran, Le citizen hotel, Canal de l'Ourcq, Inter-Hôtel Ajiel, Le Robinet d'Or, Hôtel Vintimille, Ibis, Saint Sébastien, Hôtel de bourgogne, slh.com, Marais home, Mareuil, Vienne, Beaumarchais, Paris Voltaire, Est hotel, Meteore, http://www.hoteldevenise.fr/, Gabriel, Le 20, Hôtel Pullman Montparnasse, Au Pacific Hôtel, Novotel, La Herse d'Or, FIAP, Splendid Hôtel, Hôtel de l'Avre, Hôtel Amiral Fondary, Best Western Eiffel Cambronne, Pavillon Porte de Versailles, Hôtel Novotel, Lutèce Hôtel, Eiffel Seine, Hôtel Ares Eiffel, Hôtel Mercure, Campanile Paris XV - Tour Eiffel, Hôtel Lille-Louvre, Hôtel Washington Opéra, Timhotel Palais Royal, Hôtel Choiseul Opera, Agora Saint-Germain, Hôtel Diana, Best Western, Adagio Access Paris Bastille, Hôtel Bastille Speria, Hôtel de Senlis, Hôtel Delavigne, Hôtel de l'Espérance, Hôtel All Seasons, Hôtel de Bordeaux, Abricôtel, Hôtel Lutetia, IBIS, Comfort Hotel Nation - Paris 11, Ibis, Hôtel Edouard VI, Hôtel de Crillon (fermé), Hôtel d'Albion, Holiday Inn, Paix Madeleine, Hôtel Opéra Marigny, Chavanel hôtel, Best Western Premier Opéra Diamond, Hôtel Cervantes Paris, Villa Saxe Eiffel, L'Hôtel du Collectionneur Arc de Triomphe, Sofitel Arc de Triomphe, Axel Opéra, Hôtel Royal-Bergère, Hôtel Rotary, Hôtel Aurore Montmartre, Le Secret de Paris, Hôtel Touring, Hôtel France Albion, Hôtelp Chateaudun Opéra, Monterosa, Hôtel Touraine Opera, Hôtel Vernet, Super Hotel, Hôtel Lilas-Gambetta, Viator, Camélia International, Hôtel de l'Avenir, Nice Hotel, Timhotel Montmartre, Mercure - Paris Bastille, Ibis Gare De Lyon Diderot, Hôtel Claret, Aladin, Hôtel du Roussillon, Hôtel du Commerce, Hôtel Verlaine, Mercure Blanqui Place d'Italie, Hôtel Ambre, Hôtel Ibis Italie Tolbiac, Ibis, Hôtel Manet, Hôtel Mercure, Hôtel Rubens, Ibis Styles Tolbiac Bibliothèque, Hôtel Majesty, Hôtel Novex, Royal Fromentin, Hôtel de la Paix, Hôtel Apollinaire, Marriott Rive Gauche, Solar Hôtel, Mistral Hotel, Hôtel Agenor, Hôtel Mercure Paris XV, Hôtel du Maine, Hôtel Terminus Orléans, Paris Orléans, Hôtel - Villa du Maine, Hôtel Acropole, Hôtel Duret, Saint-James, Hôtel Alexander, Villa Glamour, Hôtel Auteuil Tour Eiffel, Paris Arc de Triomphe, Le Pierre, Hôtel Astrid, Splendid Étoile, Hôtel Méridien, Hôtel Balmoral, Hôtel Le Villiers, Hôtel Belfast, Hôtel La Régence, Hôtel Mercedes, Villa Brunel, Hôtel Stella Etoile, Hôtel Novotel Paris Tour Eiffel, Adagio Paris Tour Eiffel, Hôtel Paris Bercy, Le Ritz, Hôtel Kyriad, Timhotel Berthier Paris XVII, Mama Shelter Hôtel, Lilas Blanc Grenelle, Hôtel Le Tourville, Hyatt Regency Paris Etoile and 48.8403064 2.3155776, 48.8626324 2.3411196, 48.8645200 2.3405468, 48.8611819 2.3436118, 48.8643625 2.3363084, 48.8629098 2.3381793, 48.8670031 2.3287060, 48.8667055 2.3279639, 48.8711661 2.3415044, 48.8696872 2.3486973, 48.8695728 2.3486760, 48.8559607 2.3573425, 48.8569202 2.3552931, 48.8534997 2.3618939, 48.8564448 2.3568646, 48.8539504 2.3631680, 48.8544261 2.3652418, 48.8566486 2.3558134, 48.8487987 2.3483264, 48.8523050 2.3468998, 48.8369895 2.3513817, 48.8528444 2.3444884, 48.8507040 2.3495969, 48.8486356 2.3404438, 48.8563230 2.3352294, 48.8457742 2.3243407, 48.8519056 2.3254299, 48.8521505 2.3260910, 48.8563970 2.3060759, 48.8599286 2.3087880, 48.8526441 2.3090461, 48.8599838 2.3062819, 48.8571597 2.3065436, 48.8604075 2.3104739, 48.8643297 2.3182161, 48.8687840 2.3006774, 48.8729139 2.3216323, 48.8767170 2.3485948, 48.8798562 2.3434989, 48.8763467 2.3710708, 48.8773197 2.3627064, 48.8711954 2.3550205, 48.8794148 2.3584116, 48.8651810 2.3673647, 48.8661043 2.3685294, 48.8670657 2.3747048, 48.8662470 2.3669000, 48.8553916 2.3882956, 48.8551772 2.3787982, 48.8651917 2.3728160, 48.8658412 2.3674790, 48.8456631 2.3753357, 48.8467986 2.3778628, 48.8349874 2.4067169, 48.8470135 2.3707909, 48.8473827 2.3714639, 48.8490527 2.3858203, 48.8462381 2.3733925, 48.8395127 2.3927042, 48.8452783 2.3754729, 48.8337413 2.3549627, 48.8301361 2.3564885, 48.8283030 2.3473418, 48.8328956 2.3593239, 48.8329337 2.3553280, 48.8321073 2.3538107, 48.8315527 2.3572533, 48.8363513 2.3601974, 48.8333693 2.3319728, 48.8421541 2.3046648, 48.8671624 2.2857115, 48.8850200 2.3249065, 48.8867808 2.3137817, 48.8804472 2.2855736, 48.8861896 2.3361789, 48.8846951 2.3480296, 48.8839698 2.3264000, 48.8928537 2.3428303, 48.8801463 2.3372618, 48.8866384 2.3330799, 48.8693546 2.3495274, 48.8644952 2.3495828, 48.8713219 2.3426051, 48.8649114 2.3469659, 48.8615532 2.3650131, 48.8662848 2.3574075, 48.8460247 2.3981137, 48.8421016 2.3032187, 48.8399264 2.3032478, 48.8471379 2.3013512, 48.8384924 2.3151043, 48.8784567 2.3583300, 48.8454273 2.3241304, 48.8911605 2.3763728, 48.8717563 2.3927092, 48.8733283 2.3004615, 48.8766342 2.2907798, 48.8706550 2.3303465, 48.8273283 2.3211689, 48.8381218 2.2586505, 48.8685689 2.3500099, 48.8574419 2.3062436, 48.8684048 2.3213802, 48.8728474 2.3193054, 48.8672306 2.3655555, 48.8649422 2.3776744, 48.8782575 2.3739591, 48.8567926 2.3055714, 48.8689702 2.3336520, 48.8690718 2.3338065, 48.8867704 2.3058396, 48.8407077 2.2993225, 48.8467419 2.2878241, 48.8472201 2.2858925, 48.8704849 2.3297146, 48.8376960 2.3062844, 48.8515866 2.3435085, 48.8498226 2.3425905, 48.8321555 2.3588862, 48.8772610 2.3543434, 48.8506769 2.3924817, 48.8417734 2.3317486, 48.8789004 2.3448758, 48.8515615 2.3906806, 48.8390977 2.3974259, 48.8452340 2.3101111, 48.8707687 2.3598696, 48.8780025 2.3475708, 48.8775316 2.3471837, 48.8784021 2.3475786, 48.8537719 2.3323137, 48.8831159 2.3425480, 48.8868146 2.3594625, 48.8481953 2.3419715, 48.8271300 2.3482326, 48.8400155 2.3612991, 48.8675681 2.3752283, 48.8316922 2.3218269, 48.8305203 2.3549865, 48.8472227 2.3777378, 48.8350411 2.4053733, 48.8360061 2.4060195, 48.8362217 2.4040125, 48.8351933 2.3876342, 48.8388012 2.3804572, 48.8384022 2.3811331, 48.8715269 2.3441475, 48.8746470 2.3057595, 48.8824615 2.3498469, 48.8337124 2.3176364, 48.8367389 2.3923200, 48.8393596 2.3892373, 48.8430418 2.4051424, 48.8458059 2.3717510, 48.8493585 2.3744491, 48.8468441 2.3725504, 48.8472258 2.3726440, 48.8467471 2.3717077, 48.8470172 2.3723416, 48.8462447 2.3719493, 48.8468976 2.3728340, 48.8471104 2.3720281, 48.8444405 2.3728366, 48.8460864 2.3771827, 48.8457514 2.3754798, 48.8474633 2.3712106, 48.8473704 2.3710629, 48.8472924 2.3712576, 48.8470930 2.3706217, 48.8469719 2.3704290, 48.8468671 2.3702623, 48.8468041 2.3701620, 48.8457840 2.3705756, 48.8778477 2.3549476, 48.8756394 2.3255995, 48.8470895 2.3710844, 48.8499435 2.3756832, 48.8548916 2.3050685, 48.8471437 2.3484561, 48.8565619 2.3273421, 48.8920695 2.3152913, 48.8710747 2.3050358, 48.8333040 2.3565158, 48.8332640 2.3559756, 48.8492256 2.3422373, 48.8371967 2.2971923, 48.8531115 2.3447283, 48.8228560 2.3164995, 48.8567159 2.3418236, 48.8578252 2.3467061, 48.8592331 2.3473460, 48.8582914 2.3464129, 48.8388814 2.2893381, 48.8936639 2.3472231, 48.8638091 2.3326325, 48.8629051 2.3356927, 48.8648471 2.3365400, 48.8640595 2.3341241, 48.8652388 2.3362171, 48.8664704 2.3357313, 48.8667958 2.3359208, 48.8659945 2.3315480, 48.8505420 2.2888306, 48.8650960 2.3319535, 48.8668168 2.3257587, 48.8547614 2.3395044, 48.8692604 2.3339332, 48.8692690 2.3340349, 48.8748178 2.3602198, 48.8527864 2.3423027, 48.8497835 2.3468492, 48.8524421 2.3546323, 48.8525926 2.3542186, 48.8523187 2.3549674, 48.8722043 2.3250526, 48.8734124 2.3240936, 48.8586565 2.3537620, 48.8567557 2.3551825, 48.8267304 2.3324502, 48.8583361 2.3560324, 48.8691274 2.3007665, 48.8555439 2.3632131, 48.8550844 2.3634743, 48.8523982 2.3636825, 48.8684818 2.3557047, 48.8682462 2.3617582, 48.8678710 2.3558815, 48.8659462 2.3570719, 48.8663823 2.3605584, 48.8664540 2.3608723, 48.8630139 2.3614339, 48.8609881 2.3789048, 48.8422868 2.3203371, 48.8429153 2.3212276, 48.8644122 2.3662794, 48.8442494 2.3422817, 48.8794453 2.3684329, 48.8811018 2.3654227, 48.8429257 2.3631379, 48.8675046 2.3539915, 48.8496648 2.3402192, 48.8377970 2.3464058, 48.8759291 2.3587392, 48.8449596 2.3251083, 48.8428926 2.3298403, 48.8535941 2.3383125, 48.8708870 2.3092693, 48.8704088 2.3106942, 48.8700870 2.3111689, 48.8700445 2.3113231, 48.8731008 2.3097181, 48.8717330 2.3147998, 48.8730746 2.3180911, 48.8729256 2.3237568, 48.8722936 2.3258193, 48.8815927 2.3475414, 48.8818743 2.3221457, 48.8784319 2.3268251, 48.8765921 2.3270551, 48.8768790 2.3270689, 48.8767937 2.3270652, 48.8837078 2.3286418, 48.8756281 2.3041375, 48.8750502 2.3048717, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8704404 2.3077470, 48.8717742 2.2984126, 48.8691738 2.3031698, 48.8668308 2.3028826, 48.8686655 2.2984696, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8736939 2.3003734, 48.8731462 2.3024152, 48.8690865 2.3022434, 48.8711232 2.3011684, 48.8715217 2.3076937, 48.8888774 2.3943052, 48.8884053 2.3785210, 48.8457239 2.3448389, 48.8832437 2.3593471, 48.8836193 2.3594167, 48.8813609 2.3620200, 48.8801030 2.3594914, 48.8793848 2.3585618, 48.8795188 2.3583338, 48.8688321 2.3305499, 48.8788369 2.3643037, 48.8797564 2.3574795, 48.8789739 2.3632105, 48.8831393 2.3659280, 48.8318013 2.3866661, 48.8795548 2.3363831, 48.8750728 2.3584139, 48.8809651 2.3627422, 48.8278753 2.3796701, 48.8488897 2.3684401, 48.8448068 2.3524819, 48.8647693 2.3649321, 48.8632732 2.3526751, 48.8713885 2.2935692, 48.8664199 2.2892440, 48.8683349 2.2891747, 48.8652994 2.2905368, 48.8691051 2.2891789, 48.8743938 2.2895014, 48.8761867 2.2834356, 48.8494162 2.3809935, 48.8385581 2.3228175, 48.8967400 2.3850836, 48.8586659 2.2826833, 48.8194848 2.3266295, 48.8412408 2.3134332, 48.8739957 2.3427413, 48.8742380 2.2811266, 48.8439118 2.3545847, 48.8461978 2.3409102, 48.8505185 2.2705537, 48.8810351 2.3641714, 48.8486125 2.2661824, 48.8848637 2.3606402, 48.8379511 2.2585104, 48.8379036 2.2962662, 48.8853330 2.3604560, 48.8866633 2.3608930, 48.8538117 2.3386948, 48.8907109 2.3246455, 48.8481468 2.3720124, 48.8532543 2.3457644, 48.8531361 2.3463123, 48.8757021 2.3582998, 48.8424656 2.3124799, 48.8423823 2.3125402, 48.8476583 2.3515918, 48.8477032 2.3514397, 48.8487209 2.3475835, 48.8486599 2.3478543, 48.8485999 2.3480789, 48.8456877 2.3450098, 48.8663131 2.3279889, 48.8530038 2.2759292, 48.8604399 2.3007825, 48.8695661 2.3517456, 48.8797908 2.3207196, 48.8536395 2.3074534, 48.8733074 2.3437192, 48.8733772 2.3438855, 48.8650637 2.3417127, 48.8720574 2.3420399, 48.8479558 2.3005672, 48.8465361 2.3054645, 48.8474966 2.3022867, 48.8466710 2.3049905, 48.8469542 2.3080133, 48.8390456 2.3925460, 48.8779440 2.3378300, 48.8796570 2.3549177, 48.8790898 2.3556386, 48.8783485 2.3572882, 48.8663533 2.3043410, 48.8652754 2.3282212, 48.8643761 2.3308831, 48.8548067 2.3689756, 48.8417997 2.3317623, 48.8768201 2.3458424, 48.8755250 2.3585349, 48.8466437 2.3698297, 48.8864077 2.2949505, 48.8226147 2.3587102, 48.8499249 2.3462523, 48.8498614 2.3465433, 48.8498802 2.2884724, 48.8479302 2.3878050, 48.8844650 2.3679226, 48.8720379 2.3446636, 48.8565865 2.3275569, 48.8473466 2.3995162, 48.8505331 2.2923753, 48.8413238 2.3028511, 48.8256664 2.3232257, 48.8811174 2.3514426, 48.8727937 2.3157855, 48.8636313 2.3690033, 48.8716438 2.3349837, 48.8714207 2.3349194, 48.8713271 2.3351551, 48.8718954 2.3350541, 48.8768039 2.3336297, 48.8736518 2.3520817, 48.8711767 2.3499045, 48.8773396 2.3560770, 48.8846667 2.3765525, 48.8812864 2.3650200, 48.8679824 2.3362288, 48.8710170 2.3202503, 48.8710343 2.3234791, 48.8706452 2.3219942, 48.8705622 2.3263811, 48.8261537 2.3243946, 48.8469348 2.4080026, 48.8853360 2.3350946, 48.8516043 2.2896851, 48.8514717 2.3483308, 48.8618661 2.3831677, 48.8502622 2.3730838, 48.8952730 2.3431920, 48.8929320 2.3433000, 48.8937240 2.3418900, 48.8700380 2.3601770, 48.8698590 2.3605340, 48.8697990 2.3610220, 48.8688100 2.3601130, 48.8704210 2.3610030, 48.8303814 2.3234197, 48.8419958 2.3484398, 48.8432579 2.3497680, 48.8693769 2.3310435, 48.8670604 2.3270370, 48.8721592 2.3333671, 48.8428196 2.3426105, 48.8430085 2.3422700, 48.8736554 2.3360245, 48.8682851 2.3267606, 48.8595817 2.3086929, 48.8658012 2.3360846, 48.8389861 2.3455789, 48.8451928 2.3505337, 48.8302782 2.3020187, 48.8452730 2.3250677, 48.8846283 2.3381804, 48.8829475 2.3284860, 48.8759130 2.3574890, 48.8323889 2.3868172, 48.8827924 2.3402418, 48.8661835 2.3673546, 48.8437234 2.2967496, 48.8340571 2.3460780, 48.8751482 2.3354544, 48.8715708 2.3436597, 48.8799454 2.3289718, 48.8743571 2.3321512, 48.8742308 2.3320216, 48.8766389 2.3417217, 48.8765596 2.3401099, 48.8751153 2.3361132, 48.8400178 2.3810213, 48.8331256 2.2892198, 48.8864902 2.3356152, 48.8852398 2.3300554, 48.8853086 2.3302109, 48.8357551 2.3515624, 48.8879229 2.3208812, 48.8905223 2.3350904, 48.8888344 2.3331457, 48.8797188 2.3507524, 48.8825635 2.3415494, 48.8450421 2.3524270, 48.8500954 2.3476090, 48.8654715 2.3296865, 48.8493566 2.3904152, 48.8557500 2.4005064, 48.8730243 2.3445449, 48.8397319 2.3233917, 48.8688058 2.2924351, 48.8606580 2.3469337, 48.8777667 2.2873179, 48.8280249 2.3153561, 48.8690870 2.3027342, 48.8443530 2.3233390, 48.8399770 2.3236040, 48.8820704 2.3345059, 48.8539009 2.3072420, 48.8821510 2.3708169, 48.8821809 2.3705534, 48.8429639 2.3242562, 48.8423964 2.3234359, 48.8473814 2.2833183, 48.8791797 2.3268489, 48.8801993 2.3268856, 48.8753556 2.3263124, 48.8861817 2.3351898, 48.8195998 2.3261186, 48.8508057 2.3698822, 48.8509291 2.3698902, 48.8637194 2.2934262, 48.8279437 2.3297879, 48.8465206 2.4102795, 48.8650372 2.3976697, 48.8241267 2.3617523, 48.8250171 2.3610514, 48.8252188 2.3608916, 48.8734510 2.3486409, 48.8232896 2.3261817, 48.8332485 2.3325552, 48.8900035 2.3233253, 48.8330539 2.2881095, 48.8351584 2.2825386, 48.8901866 2.3614476, 48.8902032 2.3611081, 48.8290014 2.3005012, 48.8413822 2.2626522, 48.8407519 2.2624259, 48.8362022 2.2789552, 48.8234693 2.3306543, 48.8240238 2.3274437, 48.8240433 2.3300803, 48.8242675 2.3289215, 48.8244918 2.3272586, 48.8247043 2.3268143, 48.8247319 2.3264861, 48.8371866 2.2775249, 48.8965141 2.3284414, 48.8648053 2.3525629, 48.8515323 2.3989998, 48.8504360 2.2920472, 48.8263167 2.3603544, 48.8300142 2.3566577, 48.8293227 2.3566885, 48.8910813 2.3604459, 48.8569026 2.3848430, 48.8657299 2.2861084, 48.8542447 2.3075312, 48.8921340 2.3603868, 48.8691081 2.3627657, 48.8898808 2.3211159, 48.8808975 2.3516143, 48.8502129 2.3421749, 48.8503717 2.3422419, 48.8293578 2.3748311, 48.8845083 2.3257947, 48.8742228 2.3878024, 48.8562375 2.3660049, 48.8737763 2.3859309, 48.8253189 2.3572256, 48.8478227 2.3708054, 48.8783108 2.3843089, 48.8834554 2.2924752, 48.8868844 2.3216760, 48.8446684 2.4024604, 48.8851415 2.2930709, 48.8850808 2.2936804, 48.8488376 2.4079096, 48.8591599 2.3452377, 48.8587815 2.3453015, 48.8592591 2.3683806, 48.8516052 2.3382057, 48.8731572 2.3252446, 48.8727003 2.3435855, 48.8573332 2.3714718, 48.8803203 2.2858761, 48.8851889 2.2939544, 48.8503654 2.3494131, 48.8840377 2.3149854, 48.8841956 2.3161259, 48.8836123 2.3163235, 48.8760701 2.3456581, 48.8341199 2.2951841, 48.8836722 2.3257995, 48.8550671 2.3865458, 48.8550335 2.3864546, 48.8531762 2.3451166, 48.8497422 2.3507005, 48.8516696 2.2978180, 48.8527079 2.3443015, 48.8528343 2.3441184, 48.8502770 2.2933596, 48.8504483 2.2926945, 48.8518053 2.3448347, 48.8726389 2.3422288, 48.8568044 2.3030573, 48.8436459 2.3526224, 48.8471731 2.3316624, 48.8469032 2.3316463, 48.8475577 2.3718376, 48.8390750 2.3316473, 48.8710803 2.3248004, 48.8589774 2.3504303, 48.8581962 2.3502811, 48.8471284 2.3776102, 48.8762008 2.3710157, 48.8732766 2.3450350, 48.8260384 2.3259184, 48.8569311 2.3033559, 48.8622200 2.3495080, 48.8657793 2.3299663, 48.8549752 2.3046163, 48.8348854 2.3296013, 48.8813853 2.3373815, 48.8813853 2.3373815, 48.8489375 2.3468099, 48.8488721 2.3470349, 48.8781775 2.2853021, 48.8526126 2.3891625, 48.8868980 2.3004690, 48.8844510 2.2979890, 48.8406136 2.3344845, 48.8432192 2.3494400, 48.8481440 2.3425188, 48.8493373 2.3431508, 48.8758850 2.3269550, 48.8767160 2.3270270, 48.8769450 2.3270030, 48.8769450 2.3270030, 48.8683432 2.2918443, 48.8766674 2.3587492, 48.8497393 2.3381789, 48.8487972 2.3410105, 48.8663034 2.2866997, 48.8645222 2.2823193, 48.8780091 2.3872453, 48.8804643 2.3742916, 48.8823048 2.3710585, 48.8425624 2.3243275, 48.8754147 2.3888922, 48.8818092 2.3740520, 48.8436267 2.3524487, 48.8436267 2.3524487, 48.8464533 2.3058161, 48.8552220 2.3306960, 48.8349736 2.3602946, 48.8279496 2.3689120, 48.8704582 2.3268384, 48.8808600 2.3024094, 48.8681579 2.3004143, 48.8548818 2.3332071, 48.8683305 2.3330172, 48.8613358 2.2863597, 48.8591494 2.2846290, 48.8763033 2.3463522, 48.8615283 2.3426262, 48.8580936 2.3529258, 48.8707591 2.2931194, 48.8399900 2.2848503, 48.8399900 2.2848503, 48.8498554 2.3461592, 48.8779414 2.2955547, 48.8784951 2.3709483, 48.8582325 2.3718450, 48.8565568 2.3059811, 48.8731587 2.3643941, 48.8494061 2.3987583, 48.8903884 2.3792665, 48.8399675 2.3918531, 48.8674341 2.3966731, 48.8357607 2.3019643, 48.8780937 2.3647247, 48.8821180 2.3286239, 48.8691590 2.3641891, 48.8615198 2.3709980, 48.8578116 2.3768959, 48.8616072 2.3620921, 48.8654371 2.3657135, 48.8659977 2.3674507, 48.8656162 2.3676880, 48.8629114 2.3676068, 48.8583920 2.3777450, 48.8585931 2.3685540, 48.8730436 2.3586960, 48.8630233 2.3644881, 48.8453126 2.3836601, 48.8660449 2.3682896, 48.8659929 2.3685758, 48.8383845 2.3209532, 48.8487664 2.2919554, 48.8920470 2.3024290, 48.8537967 2.3662670, 48.8305359 2.3382127, 48.8467766 2.2962381, 48.8478107 2.2976980, 48.8477629 2.2937636, 48.8458693 2.2983142, 48.8336435 2.2870519, 48.8609042 2.3467975, 48.8358096 2.2924119, 48.8485058 2.2987839, 48.8503319 2.2982277, 48.8548250 2.2922891, 48.8505295 2.2887720, 48.8626435 2.3399046, 48.8662424 2.3373468, 48.8555014 2.2928347, 48.8664296 2.3398955, 48.8690729 2.3324359, 48.8487692 2.3494934, 48.8497809 2.3452256, 48.8503513 2.3450367, 48.8497802 2.3724158, 48.8539824 2.3675485, 48.8462693 2.3425072, 48.8503978 2.3393909, 48.8381496 2.3497215, 48.8791508 2.3620731, 48.8746698 2.3557687, 48.8831847 2.3736693, 48.8510976 2.3274782, 48.8696278 2.3747304, 48.8576463 2.3728295, 48.8536962 2.3882114, 48.8695579 2.3745034, 48.8920187 2.3847925, 48.8443175 2.3235205, 48.8676142 2.3213457, 48.8728467 2.3165166, 48.8727886 2.3158091, 48.8730228 2.3161558, 48.8733647 2.3181572, 48.8717473 2.3234876, 48.8721694 2.3263232, 48.8753481 2.3233901, 48.8809428 2.3229456, 48.8497832 2.3094782, 48.8767783 2.3066420, 48.8751931 2.3013656, 48.8729693 2.3436019, 48.8734088 2.3439633, 48.8818357 2.3285868, 48.8825973 2.3280223, 48.8814057 2.3282568, 48.8761321 2.3419588, 48.8774940 2.3382643, 48.8761998 2.3369223, 48.8795288 2.3342543, 48.8763684 2.3352005, 48.8718594 2.2978476, 48.8654125 2.3983360, 48.8742921 2.4052243, 48.8925063 2.3224334, 48.8834159 2.3250804, 48.8875714 2.3189955, 48.8877239 2.3187185, 48.8899868 2.3233274, 48.8859112 2.3375816, 48.8495763 2.3798752, 48.8464004 2.3766541, 48.8512589 2.3755154, 48.8398408 2.3815157, 48.8350025 2.3485584, 48.8298177 2.3535320, 48.8282216 2.3502281, 48.8272192 2.3520564, 48.8301934 2.3530001, 48.8257554 2.3528800, 48.8257632 2.3526361, 48.8326346 2.3593458, 48.8328846 2.3572823, 48.8374662 2.3728523, 48.8345042 2.3543785, 48.8289227 2.3741564, 48.8253112 2.3613611, 48.8228445 2.3614393, 48.8828150 2.3345432, 48.8401015 2.3306768, 48.8412334 2.3257995, 48.8316304 2.3400175, 48.8338798 2.3287567, 48.8369103 2.3238769, 48.8368706 2.3240469, 48.8383272 2.2904886, 48.8353004 2.3231703, 48.8236672 2.3248089, 48.8238179 2.3241127, 48.8272146 2.3159783, 48.8235715 2.3250084, 48.8752556 2.2866823, 48.8704922 2.2798118, 48.8688673 2.2827932, 48.8645905 2.2778893, 48.8506499 2.2751573, 48.8515603 2.2775836, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8767975 2.2920290, 48.8750231 2.2935901, 48.8795379 2.2855888, 48.8759878 2.2939427, 48.8852343 2.2933820, 48.8756429 2.2938771, 48.8765806 2.2929735, 48.8848968 2.3034428, 48.8792208 2.2876966, 48.8763229 2.2931781, 48.8852857 2.3080064, 48.8496595 2.2837044, 48.8497921 2.2852692, 48.8365548 2.3939809, 48.8684106 2.3282777, 48.8728354 2.3613759, 48.8944493 2.3120125, 48.8599349 2.4026082, 48.8482765 2.2983856, 48.8542680 2.3078406, 48.8802164 2.2842407 +48.8697794 2.2369872 +París +1 +fr:Musée de l'Armée (Paris), fr:Musée de l'AP-HP, fr:Musée des Arts décoratifs de Paris, fr:Musée des arts et métiers, fr:Tour Jean-sans-Peur, fr:Musée Gustave-Moreau, fr:Égouts de Paris, fr:Espace Dalí, fr:Cité des sciences et de l'industrie, fr:Maison de Victor Hugo, fr:Musée en Herbe, fr:Maison européenne de la photographie, fr:Musée de l'Éventail, fr:Catacombes de Paris, fr:Musée de l'érotisme (Paris), fr:Petit Palais, fr:Musée de la Légion d'honneur, fr:Conciergerie, fr:L'Adresse Musée de La Poste, fr:Musée Baccarat (Paris), fr:Forum des images, fr:Musée du Chocolat (Paris), fr:Cité de l'architecture et du patrimoine, fr:Musée national de la Marine, fr:Musée de la franc-maçonnerie, fr:Musée de la Contrefaçon, fr:Musée Dapper, fr:Musée des Arts forains, fr:Musée arménien de France, fr:Musée Dupuytren, fr:Musée Valentin-Haüy, fr:Musée national Jean-Jacques Henner, fr:Musée des lettres et manuscrits, fr:Crypte archéologique du parvis Notre-Dame, fr:Bibliothèque-musée de l'Opéra, fr:Musée national d'art moderne, fr:Musée du quai Branly, fr:Galerie de minéralogie et de géologie du Muséum national d'histoire naturelle, fr:Galerie de paléontologie et d'anatomie comparée du Muséum national d'histoire naturelle, fr:Halle Saint Pierre, musée d'Art Brut et d'Art Singulier, fr:Hôtel de Sully, fr:Galerie nationale du Jeu de Paume, fr:Musée de l'Orangerie, fr:Musée national d'art moderne#Atelier Brancusi, fr:Musée Curie, fr:Grand Palais (Paris), fr:Pavillon de l'Arsenal, fr:Musée de Cluny, fr:Archives nationales (France), fr:Musée Picasso (Paris), fr:Musée Cognacq-Jay, fr:Cité nationale de l'histoire de l'immigration, fr:Musée d'Orsay, fr:Musée Cernuschi, fr:Musée Rodin, fr:Cinémathèque française, fr:Fondation Pierre Bergé - Yves Saint-Laurent, fr:Musée d'art moderne de la ville de paris, fr:Palais de Tokyo, fr:Musée Bourdelle, fr:Grande galerie de l'évolution, fr:Musée de la Vie romantique, fr:Maison de Balzac, fr:Maison de la culture du Japon à Paris, fr:Musée Zadkine, fr:Musée de Montmartre, fr:Musée de la chasse et de la nature, fr:Manufacture des Gobelins, fr:Musée du Luxembourg, fr:Palais de la découverte, fr:Centre culturel suédois, fr:Hôtel de la Monnaie (Paris), fr:Musée Galliera, fr:Musée Carnavalet, fr:Musée du Louvre, fr:Sainte-Chapelle +2 +55.9533748 -3.1895989 +yes +yes +yes +49.4075160 8.6918700 +54.1816830 7.8898378, 54.1821185 7.8888280, 54.1823120 7.8882374, 54.1827026 7.8873652, 54.1828961 7.8855741, 53.6568376 9.7983056, 54.1804232 7.8864167, 53.7490733 9.9643576 +Hopfingerbräu im Palais +yes +11 +46 +2 +48.8475254 2.3740095, 48.8461336 2.3944472, 48.8470535 2.3936319, 48.8758689 2.3483462, 48.8828001 2.3714770, 48.8820834 2.3282055, 48.8762091 2.3397990, 48.8473760 2.3414870, 48.8279402 2.3288089, 48.8579444 2.3717706, 48.8470191 2.3535114, 48.8927622 2.3434358, 48.8541702 2.3858665, 48.8532844 2.3390695, 48.8598488 2.3084707, 48.8855486 2.2906636, 48.8838490 2.2883840, 48.8842390 2.2945020, 48.8360380 2.3520261, 48.8755166 2.3946714, 48.8477091 2.3186906, 48.8584888 2.3703620, 48.8736719 2.3586685, 48.8471373 2.3529239 +yes +Fahrschule Formel 1, Fahrschule Jung, Fahrschule Lechner, Fahrschule Gölz, Fahrschule Jung and 49.3743365 8.6827546, 49.4285627 8.6458063, 49.3802219 8.6868984, 49.3845526 8.6676364, 49.4239337 8.6493485, 49.3799295 8.6700670 ++33143070223 +12 +72 +yes +567.8 +49.4092987 8.6848369 +55.9248874 -3.1446384, 55.9239715 -3.2172066, 55.9236428 -3.3787970, 55.9266397 -3.1430694, 55.9273365 -3.1468138, 55.9272404 -3.1469500, 55.9437963 -3.2690458, 55.9437692 -3.2690140, 55.9437669 -3.2690698, 55.9441583 -3.2706738, 55.9441792 -3.2706105, 55.9440317 -3.2697714, 55.9440254 -3.2698444, 55.9437692 -3.2697236, 55.9437794 -3.2696680, 55.9439859 -3.2702368, 55.9437518 -3.2698379, 55.9439954 -3.2701198, 55.9437029 -3.2701661, 55.9444013 -3.2708908, 55.9444228 -3.2708576, 55.9444139 -3.2708735, 55.9443882 -3.2709008, 55.9435460 -3.2696575, 55.9435587 -3.2695991, 55.9466158 -3.2694706, 55.9473595 -3.2707429, 55.9466516 -3.2694746, 55.9561007 -3.1136322, 55.9561489 -3.1137601, 55.9495184 -3.2714594, 55.9301628 -3.3881013, 55.9222112 -3.3806457, 55.9692421 -3.2790022, 55.9692534 -3.2789856, 55.9692762 -3.2790819, 55.9692943 -3.2789277, 55.9693197 -3.2790307, 55.9744612 -3.1738616, 55.9744206 -3.1741512, 55.9182420 -3.2999578, 55.9179174 -3.2997514, 55.9128038 -3.3143983, 55.9833224 -3.2415764, 55.9138023 -3.1790167, 55.9510031 -3.2913527, 55.9510337 -3.2911449, 55.9196251 -3.2016290, 55.9249355 -3.1445413, 55.9067281 -3.3259272, 55.9649097 -3.2105372, 55.9151968 -3.3215433 +62 +Cowdenbeath, Dunfermline, South Queensferry, Linlithgow, Kincardine, Broxburn, Bathgate, Grangemouth, Bo'ness, Inverkeithing, Dalgety Bay, Rosyth, Livingston, Armadale, Polmont +yes diff --git a/smtsemparsecpp/data/nlmaps.test.gold_jan16 b/smtsemparsecpp/data/nlmaps.test.gold_jan16 new file mode 100644 index 000000000..c33428a55 --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.test.gold_jan16 @@ -0,0 +1,880 @@ +Städt. Gem. Grundschule - Dornberg, Städt. Gem. Grundschule - Südschule, Städt. Gem. Grundschule - Diesterwegschule, Städt. Gem. Grundschule Hillegossen, Städt. Gem. Grundschule - Brüder-Grimm-Schule, Städt. Gem. Grundschule - Stiftsschule, Städt. Gem. Grundschule - Ummeln, Städt. Gem. Grundschule - Plaß-Schule, Städt. Gem. Grundschule Ubbedissen, Städt. Gem. Grundschule - Am Homersen, Städt. Gem. Grundschule - Wellbachschule, Städt. Gem. Grundschule - Heeperholz, Städt. Gem. Grundschule Milse, Städt. Gem. Grundschule - Hans-Christian-Andersen-Schule, Städt. Gem. Grundschule Babenhausen, Städt. Gem. Grundschule - Josefschule, Städt. Gem. Grundschule Altenhagen, Städt. Gem. Grundschule - Russheideschule, Städt. Gem. Grundschule - Stieghorstschule, Städt. Gem. Grundschule Brake, Städt. Gem. Grundschule - Oldentrup, Städt. Gem. Grundschule - Schröttinghausen-Deppendorf, Städt. Gem. Grundschule - Hellingskampschule, Städt. Gem. Grundschule - Volkeningschule, Städt. Gem. Grundschule - Astrid-Lindgren-Schule, Städt. Gem. Grundschule - Eichendorffschule, Städt. Gem. Grundschule - Sudbrackschule, Städt. Gem. Grundschule - Fröbelschule, Städt. Gem. Grundschule - Bültmannshofschule, Städt. Gem. Grundschule - Frölenbergschule, Städt. Gem. Grundschule - Bückardtschule, Evangelische Bekenntnisgrundschule Hoberge-Uerentrup der Stadt Bielefeld, Städt. Gem. Grundschule Theesen, Städt. Gem. Grundschule Vilsendorf, Städt. Gem. Grundschule - Martinschule, Städt. Gem. Grundschule - Windflöte, Städt. Gem. Grundschule - Bahnhofschule, Städt. Gem. Grundschule - Buschkampschule, Städt. Gem. Grundschule - Osningschule, Städt. Gem. Grundschule - Quelle, Städt. Gem. Grundschule - Vogelruthschule, Städt. Kath. Grundschule - Klosterschule, Städt. Gem. Grundschule - Dreekerheide, Städt. Gem. Grundschule - Am Waldschlößchen, Stapenhorstschule +yes +no +no +yes +Lower Granton Road +48.8337601 2.2980718, 48.8309772 2.2928903, 48.8339410 2.2950323, 48.8349198 2.2959694, 48.8381491 2.2812684, 48.8811210 2.3732246, 48.8779567 2.3742972, 48.8781153 2.3727187, 48.8307104 2.3120538, 48.8367030 2.2977655, 48.8405834 2.2993396, 48.8463258 2.3017109, 48.8893424 2.3260066, 48.8300397 2.3310990, 48.8332151 2.3611684, 48.8322056 2.3591376, 48.8712479 2.3628847, 48.8778514 2.3653978, 48.8630548 2.3794488, 48.8563588 2.4021369, 48.8705460 2.3596280, 48.8297820 2.3231434, 48.8563936 2.4058269, 48.8560853 2.4051449, 48.8637600 2.3817121, 48.8316269 2.3219796, 48.8635138 2.4091631, 48.8518271 2.4017627, 48.8615562 2.3741703, 48.8602485 2.3756498, 48.8505112 2.3734697, 48.8460708 2.3737179, 48.8496820 2.3740608, 48.8490800 2.3750090, 48.8490486 2.3705522, 48.8551656 2.3600991, 48.8459906 2.3763165, 48.8474342 2.3715019, 48.8468588 2.3691970, 48.8935171 2.3255232, 48.8909446 2.3815154, 48.8472820 2.3181790, 48.8362003 2.3593757, 48.8863875 2.3186958, 48.8493049 2.3780822, 48.8493772 2.3775082, 48.8520216 2.4013947, 48.8521964 2.4026633, 48.8466612 2.3868559, 48.8475216 2.3868219, 48.8524174 2.3830770, 48.8538323 2.3820004, 48.8503861 2.3796236, 48.8495310 2.3784411, 48.8455990 2.3806300, 48.8507593 2.3788216, 48.8481410 2.3804390, 48.8824976 2.3152932, 48.8941514 2.3276397, 48.8332886 2.3557244, 48.8373701 2.2969471, 48.8662691 2.4059876, 48.8646392 2.4080329, 48.8651930 2.4052170, 48.8829824 2.3824508, 48.8541148 2.4028833, 48.8279466 2.3304154, 48.8619444 2.3516288, 48.8611025 2.3441314, 48.8500286 2.2891336, 48.8765487 2.3769364, 48.8752389 2.3825154, 48.8701254 2.3349018, 48.8773883 2.3713487, 48.8522925 2.3568330, 48.8443535 2.3549714, 48.8465773 2.3541793, 48.8618685 2.3509784, 48.8576627 2.3525871, 48.8587248 2.3501786, 48.8462572 2.3519644, 48.8637215 2.3528934, 48.8572474 2.3590633, 48.8267666 2.3510620, 48.8257746 2.3474534, 48.8526580 2.3643423, 48.8658845 2.3575167, 48.8641612 2.3652384, 48.8885578 2.3534711, 48.8616550 2.3823490, 48.8405164 2.3219841, 48.8804129 2.3352691, 48.8794749 2.3336267, 48.8810172 2.3647737, 48.8814252 2.3658018, 48.8764651 2.3681085, 48.8383449 2.3457194, 48.8344303 2.3140331, 48.8620790 2.4013394, 48.8946928 2.3825532, 48.8943501 2.3144067, 48.8469243 2.3314911, 48.8721203 2.3123396, 48.8726364 2.3241496, 48.8517936 2.3135511, 48.8728715 2.3098614, 48.8466215 2.4086336, 48.8377558 2.3541054, 48.8386808 2.3508887, 48.8827594 2.3615206, 48.8830373 2.3593122, 48.8699837 2.3960859, 48.8791074 2.3629723, 48.8782374 2.3646053, 48.8825669 2.3666870, 48.8197848 2.3652117, 48.8448730 2.4055932, 48.8784075 2.3544102, 48.8410084 2.3943815, 48.8805633 2.3647086, 48.8796707 2.3636682, 48.8763896 2.3610152, 48.8803326 2.3639778, 48.8832959 2.3681138, 48.8859862 2.3714699, 48.8650067 2.2919269, 48.8374206 2.2895464, 48.8252367 2.3572513, 48.8671109 2.2875572, 48.8362585 2.3098681, 48.8705792 2.2974324, 48.8503715 2.3790699, 48.8681484 2.2814134, 48.8662633 2.2740207, 48.8412244 2.3146196, 48.8416926 2.3144950, 48.8739761 2.3446348, 48.8525869 2.3545810, 48.8869795 2.3395686, 48.8556968 2.2748636, 48.8374709 2.3730609, 48.8314755 2.3541835, 48.8241809 2.3260188, 48.8232738 2.3262563, 48.8258667 2.3126560, 48.8468751 2.2700239, 48.8277034 2.3290464, 48.8714383 2.3749525, 48.8714917 2.3756604, 48.8425873 2.2683262, 48.8861537 2.3665372, 48.8291397 2.3173468, 48.8862628 2.3608446, 48.8899894 2.3635134, 48.8403968 2.2858802, 48.8451889 2.3793340, 48.8546996 2.3622532, 48.8873315 2.3475211, 48.8757382 2.2870119, 48.8427628 2.3131898, 48.8846035 2.3801294, 48.8287227 2.2733061, 48.8966837 2.3303844, 48.8957156 2.3308196, 48.8416043 2.3385745, 48.8282746 2.3160906, 48.8276845 2.3152274, 48.8472109 2.2956749, 48.8505880 2.3767286, 48.8573622 2.3923455, 48.8528949 2.2984341, 48.8451099 2.2604585, 48.8234260 2.3622734, 48.8237538 2.3645279, 48.8795652 2.3399721, 48.8782649 2.3446579, 48.8416777 2.3865802, 48.8356662 2.4056140, 48.8384665 2.3992857, 48.8390505 2.3976576, 48.8367225 2.4026707, 48.8420538 2.3352669, 48.8479330 2.3109984, 48.8400158 2.3885455, 48.8380676 2.3904670, 48.8372920 2.3914250, 48.8515655 2.3106825, 48.8573206 2.3799070, 48.8568774 2.3778976, 48.8433099 2.2998521, 48.8422686 2.3028212, 48.8428121 2.3029849, 48.8766295 2.3386068, 48.8232376 2.3241574, 48.8252485 2.3653047, 48.8235509 2.3617468, 48.8604658 2.3787761, 48.8941854 2.3817753, 48.8567231 2.3036505, 48.8316207 2.3444925, 48.8310738 2.3450997, 48.8448253 2.2941187, 48.8219529 2.3664594, 48.8241488 2.3575845, 48.8231660 2.3578863, 48.8264536 2.3293804, 48.8455409 2.2880176, 48.8703798 2.3425078, 48.8815370 2.2890680, 48.8814465 2.2860544, 48.8840798 2.2887768, 48.8642750 2.3750973, 48.8844394 2.3668122, 48.8279465 2.3273604, 48.8906856 2.3765193, 48.8328694 2.3159681, 48.8209152 2.3429194, 48.8217284 2.3424285, 48.8358292 2.2784139, 48.8465347 2.4059784, 48.8771396 2.3394367, 48.8777030 2.3395918, 48.8627753 2.2762117, 48.8627898 2.2765008, 48.8314375 2.3197845, 48.8378234 2.3078140, 48.8661247 2.3355594, 48.8767239 2.3326961, 48.8767816 2.3351954, 48.8747442 2.3555041, 48.8835914 2.3739721, 48.8649591 2.3745731, 48.8515852 2.2976307, 48.8695595 2.3743475, 48.8540049 2.4108468, 48.8580410 2.3902005, 48.8383400 2.3560643, 48.8466480 2.3513950, 48.8491900 2.3494261, 48.8286796 2.3431375, 48.8727447 2.3797878, 48.8942604 2.3207728, 48.8945332 2.3199871, 48.8934902 2.3226995, 48.8243403 2.3236549, 48.8273521 2.3254454, 48.8236051 2.3228034, 48.8314118 2.3268159, 48.8317243 2.3255633, 48.8731006 2.3615331, 48.8902931 2.3539796, 48.8912086 2.3476028, 48.8286520 2.3729316, 48.8443510 2.3492066, 48.8448929 2.3490511, 48.8947631 2.3433837, 48.8944528 2.3445585, 48.8931760 2.3432750, 48.8936140 2.3424950, 48.8699780 2.3603139, 48.8692880 2.3632193, 48.8689493 2.3599577, 48.8711600 2.3611170, 48.8718330 2.3625680, 48.8726030 2.3634490, 48.8551457 2.3064362, 48.8682200 2.3862795, 48.8569251 2.3724871, 48.8927820 2.3439810, 48.8652385 2.3467947, 48.8923110 2.3520290, 48.8442018 2.3394106, 48.8289915 2.3222506, 48.8593204 2.3472769, 48.8262063 2.3413104, 48.8847970 2.3378803, 48.8528514 2.4064283, 48.8481389 2.4033143, 48.8285586 2.3331113, 48.8276535 2.3328559, 48.8513913 2.4064501, 48.8547850 2.2692675, 48.8651423 2.2891208, 48.8591269 2.4019235, 48.8600304 2.4040296, 48.8511503 2.3968083, 48.8863207 2.3474156, 48.8955331 2.3629901, 48.8528677 2.3768769, 48.8510010 2.3768139, 48.8507078 2.3790297, 48.8361116 2.3874192, 48.8235068 2.3533933, 48.8403649 2.3951878, 48.8907372 2.3457644, 48.8873419 2.3512141, 48.8376955 2.3463172, 48.8846893 2.3539417, 48.8416560 2.3224928, 48.8238291 2.3416075, 48.8577497 2.2739837, 48.8780261 2.3268365, 48.8398765 2.2998351, 48.8816987 2.3281627, 48.8808802 2.3287802, 48.8360217 2.3527252, 48.8354391 2.3483666, 48.8498251 2.2722599, 48.8504305 2.2704038, 48.8528838 2.2756127, 48.8452361 2.4025749, 48.8805451 2.2927512, 48.8810529 2.2917751, 48.8872955 2.3492014, 48.8870451 2.3535780, 48.8825453 2.3671700, 48.8245631 2.3765135, 48.8813157 2.2953299, 48.8898589 2.3421554, 48.8906741 2.3434068, 48.8298993 2.3526634, 48.8281786 2.3525387, 48.8883534 2.3187513, 48.8890835 2.3224688, 48.8882779 2.2997302, 48.8939893 2.3329500, 48.8935546 2.3361391, 48.8947140 2.3351360, 48.8972639 2.3451996, 48.8979108 2.3340735, 48.8958814 2.3435581, 48.8912647 2.3345914, 48.8932962 2.3379872, 48.8493216 2.4063155, 48.8980433 2.3287001, 48.8979878 2.3377495, 48.8934867 2.3300359, 48.8928448 2.3280564, 48.8939770 2.3281101, 48.8942097 2.3280510, 48.8966030 2.3288474, 48.8932297 2.3269691, 48.8352792 2.2890637, 48.8220563 2.3588648, 48.8911761 2.3392139, 48.8499872 2.3478618, 48.8463001 2.3432338, 48.8498313 2.3482743, 48.8446190 2.3895985, 48.8497058 2.2914067, 48.8488722 2.2909525, 48.8516467 2.2919993, 48.8502983 2.2919285, 48.8430441 2.2833680, 48.8427407 2.2800381, 48.8569612 2.3997902, 48.8580950 2.4069089, 48.8574194 2.4075785, 48.8794256 2.3893510, 48.8824759 2.3233164, 48.8441370 2.3723808, 48.8533370 2.3079466, 48.8365811 2.3930159, 48.8457446 2.3932577, 48.8462449 2.3946154, 48.8682520 2.3960084, 48.8608742 2.3547652, 48.8644744 2.3715412, 48.8354190 2.3928675, 48.8389285 2.3961514, 48.8220200 2.3551611, 48.8525737 2.3850093, 48.8777366 2.2878742, 48.8782149 2.3984639, 48.8761595 2.4036138, 48.8770014 2.4071325, 48.8814737 2.3729748, 48.8807820 2.3745741, 48.8843130 2.3091760, 48.8277275 2.3062018, 48.8287563 2.3015875, 48.8930590 2.3424350, 48.8750926 2.2837673, 48.8419136 2.3247626, 48.8385785 2.3227706, 48.8431110 2.2650609, 48.8594819 2.3491211, 48.8774393 2.3494265, 48.8774984 2.3489986, 48.8849881 2.3071728, 48.8392226 2.3945147, 48.8446708 2.3731150, 48.8358462 2.2901616, 48.8302344 2.3704299, 48.8814548 2.3450080, 48.8706548 2.3429479, 48.8657789 2.3469220, 48.8205834 2.3501740, 48.8234560 2.3498227, 48.8533833 2.3705439, 48.8239258 2.3642439, 48.8225364 2.3462505, 48.8227836 2.3470686, 48.8257161 2.3507275, 48.8257020 2.3460018, 48.8771586 2.3515478, 48.8763392 2.3556446, 48.8682998 2.4016012, 48.8697801 2.4028967, 48.8710424 2.4039943, 48.8720618 2.4046821, 48.8727710 2.3991263, 48.8650559 2.3971773, 48.8655264 2.3981686, 48.8344269 2.3672465, 48.8284908 2.3703198, 48.8258079 2.3604332, 48.8594225 2.3678987, 48.8248710 2.3196867, 48.8247915 2.3176000, 48.8301761 2.3336927, 48.8327495 2.3363992, 48.8333703 2.3323929, 48.8351459 2.3005345, 48.8353374 2.3022404, 48.8359317 2.3005525, 48.8440288 2.4105786, 48.8908851 2.3611676, 48.8263543 2.3123490, 48.8263472 2.3104526, 48.8274473 2.3073922, 48.8273336 2.3052629, 48.8372837 2.2784287, 48.8421188 2.2774869, 48.8260357 2.3595197, 48.8267904 2.3744959, 48.8276944 2.3706840, 48.8352679 2.2821201, 48.8558888 2.3751485, 48.8545384 2.3713228, 48.8287227 2.2995517, 48.8317316 2.3684804, 48.8395554 2.2619755, 48.8900586 2.3606383, 48.8715652 2.3861467, 48.8243982 2.3283690, 48.8437026 2.2828025, 48.8424912 2.2821013, 48.8418528 2.2815508, 48.8941162 2.3618889, 48.8933356 2.3615276, 48.8901273 2.3615642, 48.8397383 2.2615466, 48.8388211 2.2609376, 48.8900701 2.3596849, 48.8908274 2.3601975, 48.8903737 2.3602877, 48.8762839 2.3874942, 48.8258804 2.3538466, 48.8910933 2.3308427, 48.8840472 2.3777246, 48.8532483 2.3881569, 48.8310767 2.3807850, 48.8325943 2.3626569, 48.8276596 2.3564922, 48.8501827 2.3300326, 48.8729108 2.3892528, 48.8926192 2.3787994, 48.8594463 2.3795210, 48.8917249 2.3596358, 48.8933896 2.3598075, 48.8353878 2.3976074, 48.8393328 2.3898245, 48.8654160 2.3568702, 48.8858319 2.3683200, 48.8866975 2.3690587, 48.8918801 2.3632407, 48.8682722 2.3654615, 48.8557307 2.3714370, 48.8559503 2.3687308, 48.8610703 2.3668902, 48.8615104 2.3648715, 48.8624376 2.3641865, 48.8798043 2.3995910, 48.8294110 2.3760335, 48.8893342 2.3187256, 48.8435392 2.3876321, 48.8663973 2.3511799, 48.8752547 2.3898031, 48.8739410 2.3881658, 48.8740999 2.3854670, 48.8729667 2.3708014, 48.8536536 2.3652281, 48.8839440 2.2924260, 48.8841607 2.2936643, 48.8698850 2.3947954, 48.8869564 2.3228854, 48.8320028 2.3143006, 48.8764887 2.3444554, 48.8668204 2.3972017, 48.8708653 2.3088351, 48.8703111 2.3109794, 48.8438225 2.3306529, 48.8270270 2.3545480, 48.8441654 2.3422903, 48.8525204 2.3447674, 48.8436299 2.3520995, 48.8683492 2.3653361, 48.8444368 2.3317238, 48.8878098 2.3799348, 48.8455417 2.2847565, 48.8471374 2.2853376, 48.8556183 2.3576323, 48.8725081 2.3789468, 48.8297066 2.3719377, 48.8658987 2.3445250, 48.8518380 2.3369161, 48.8368347 2.3064637, 48.8864904 2.3929252, 48.8409479 2.3520733, 48.8548553 2.3856848, 48.8551588 2.3869294, 48.8902682 2.3369864, 48.8648476 2.3661885, 48.8954171 2.3603570, 48.8462303 2.3082719, 48.8881816 2.3761106, 48.8224627 2.3258585, 48.8531572 2.3447239, 48.8495298 2.3495342, 48.8678864 2.3249680, 48.8406223 2.3162685, 48.8415260 2.3177790, 48.8516476 2.3430530, 48.8522113 2.3433310, 48.8799994 2.2917628, 48.8259140 2.3418063, 48.8475433 2.3020749, 48.8848153 2.3335836, 48.8769218 2.3487061, 48.8340803 2.3449578, 48.8294924 2.3480229, 48.8483268 2.3315361, 48.8384271 2.3603013, 48.8718826 2.3260739, 48.8306192 2.3113448, 48.8708189 2.3031863, 48.8224695 2.3280079, 48.8867785 2.2961065, 48.8380124 2.3925384, 48.8393761 2.3972146, 48.8729941 2.3452007, 48.8363310 2.3511207, 48.8308373 2.3481222, 48.8328106 2.3467883, 48.8189800 2.3619660, 48.8852910 2.2958210, 48.8653095 2.3468349, 48.8780467 2.2960586, 48.8785810 2.2953365, 48.8785586 2.2954162, 48.8860217 2.2909345, 48.8342538 2.4039026, 48.8328046 2.3998654, 48.8897434 2.3684941, 48.8565550 2.3066461, 48.8662189 2.3411008, 48.8338577 2.3542234, 48.8557977 2.3334124, 48.8537947 2.3371165, 48.8401916 2.3498220, 48.8405286 2.3497872, 48.8385999 2.2890636, 48.8410381 2.3194768, 48.8665493 2.2967911, 48.8732070 2.3032419, 48.8880020 2.3070560, 48.8894260 2.3021180, 48.8501962 2.3822724, 48.8469077 2.3843835, 48.8972873 2.3596764, 48.8588932 2.3539048, 48.8757429 2.3272510, 48.8487020 2.3404334, 48.8341468 2.3292697, 48.8334796 2.3314573, 48.8772230 2.2922270, 48.8645795 2.2824038, 48.8338948 2.3299593, 48.8810540 2.2852110, 48.8839130 2.2907430, 48.8278199 2.3453108, 48.8746985 2.3800023, 48.8294976 2.3479900, 48.8746524 2.3059699, 48.8743208 2.3074302, 48.8798388 2.3745491, 48.8345685 2.3277223, 48.8824071 2.3708251, 48.8587325 2.3232162, 48.8736497 2.3266758, 48.8265944 2.3272409, 48.8538362 2.3322137, 48.8333843 2.3867041, 48.8808106 2.3727327, 48.8406281 2.3046706, 48.8533190 2.3669820, 48.8849774 2.3801611, 48.8854894 2.3815292, 48.8856226 2.3818987, 48.8830874 2.3878108, 48.8438379 2.3524738, 48.8438379 2.3524738, 48.8222496 2.3507278, 48.8851070 2.3036780, 48.8500752 2.3009300, 48.8496090 2.3539260, 48.8827153 2.3706889, 48.8609924 2.2838960, 48.8588106 2.2845183, 48.8725875 2.3782042, 48.8755301 2.3910815, 48.8656747 2.3928548, 48.8827937 2.3812803, 48.8829828 2.3811149, 48.8755713 2.3983661, 48.8755863 2.3989012, 48.8767180 2.4047230, 48.8771405 2.4060238, 48.8591517 2.3557695, 48.8607522 2.3545715, 48.8608207 2.3543547, 48.8609593 2.3539532, 48.8610034 2.3538240, 48.8473351 2.3951813, 48.8472416 2.3961945, 48.8475546 2.3930901, 48.8476864 2.3973242, 48.8518800 2.3897180, 48.8505687 2.3925919, 48.8500483 2.3946347, 48.8575099 2.3809573, 48.8394381 2.3922677, 48.8395862 2.3939515, 48.8513422 2.3477785, 48.8745781 2.3873676, 48.8746258 2.3882005, 48.8753047 2.3926062, 48.8352480 2.2852870, 48.8583161 2.3282685, 48.8489170 2.3496550, 48.8367930 2.2958108, 48.8560138 2.2801813, 48.8568409 2.2789161, 48.8440022 2.2934092, 48.8642512 2.3689433, 48.8515116 2.3988887, 48.8907874 2.3784109, 48.8853720 2.2926050, 48.8582876 2.3822526, 48.8661157 2.3977226, 48.8671967 2.4092129, 48.8684503 2.4092879, 48.8621521 2.3775066, 48.8746232 2.3266224, 48.8467059 2.3087748, 48.8363398 2.2999746, 48.8653607 2.3687179, 48.8653218 2.3678518, 48.8413271 2.3076655, 48.8353741 2.3033228, 48.8477911 2.3189782, 48.8469433 2.3172689, 48.8685232 2.3413917, 48.8661744 2.3390884, 48.8833230 2.2987210, 48.8825490 2.2939790, 48.8615294 2.3704064, 48.8429707 2.3067870, 48.8642079 2.3555687, 48.8840313 2.3391067, 48.8616536 2.3637831, 48.8623504 2.3738750, 48.8979615 2.3364933, 48.8758793 2.3477150, 48.8560190 2.3672129, 48.8576216 2.3674544, 48.8360001 2.3219796, 48.8350251 2.3203133, 48.8790170 2.2917880, 48.8622091 2.3851402, 48.8632469 2.3690653, 48.8828882 2.3896270, 48.8787834 2.4010884, 48.8781360 2.3980267, 48.8625550 2.3629618, 48.8952399 2.3524186, 48.8780395 2.3934718, 48.8828048 2.3710020, 48.8660714 2.3658844, 48.8303516 2.3287590, 48.8368532 2.2599762, 48.8373618 2.2580020, 48.8654759 2.3602705, 48.8632677 2.3880260, 48.8562683 2.3942549, 48.8499631 2.3497239, 48.8393432 2.3095378, 48.8741069 2.3157729, 48.8584144 2.3836364, 48.8826770 2.3321419, 48.8484995 2.3783545, 48.8735496 2.3843433, 48.8623856 2.3637772, 48.8804951 2.3519041, 48.8795243 2.3493499, 48.8574550 2.3522300, 48.8703464 2.3981027, 48.8865931 2.3945167, 48.8671158 2.3837273, 48.8690093 2.3678893, 48.8706423 2.3789714, 48.8710796 2.3783999, 48.8794232 2.3568724, 48.8316743 2.3141103, 48.8418864 2.2589925, 48.8647039 2.3648658, 48.8627509 2.3598746, 48.8816743 2.3162137, 48.8578725 2.3506304, 48.8850241 2.3269069, 48.8729651 2.3580381, 48.8390240 2.3399330, 48.8738656 2.3506193, 48.8850785 2.3253062, 48.8873233 2.3334384, 48.8695892 2.3539074, 48.8597377 2.3528662, 48.8446652 2.3099958, 48.8454930 2.3442174, 48.8541465 2.3712846, 48.8664865 2.3472959, 48.8662237 2.3472467, 48.8670720 2.3473835, 48.8759240 2.2895117, 48.8585053 2.3460897, 48.8452115 2.2894177, 48.8720532 2.3501265, 48.8775753 2.3519069, 48.8445870 2.3767036, 48.8858885 2.3592570, 48.8783540 2.3397798, 48.8517019 2.3570690, 48.8805289 2.3190782, 48.8868529 2.3404231, 48.8303164 2.3194557, 48.8640610 2.3504491, 48.8619198 2.3672748, 48.8424274 2.3106157, 48.8307059 2.3310174, 48.8304867 2.3676139, 48.8571350 2.3645799, 48.8826280 2.3241332, 48.8684166 2.3550879, 48.8401013 2.3999141, 48.8624510 2.3860890, 48.8595546 2.3865872, 48.8390673 2.3500499, 48.8389036 2.3492037, 48.8814741 2.3397434, 48.8287745 2.3078640, 48.8816608 2.3581073, 48.8823292 2.3589042, 48.8379325 2.4085812, 48.8885777 2.3539087, 48.8826206 2.3590692, 48.8582146 2.3564144, 48.8708584 2.3615535, 48.8848274 2.3786347, 48.8625781 2.3635251, 48.8346109 2.4056081, 48.8448580 2.3759075, 48.8619818 2.3506062, 48.8643606 2.3732707, 48.8648008 2.3728646, 48.8646962 2.3731533, 48.8451670 2.3832340, 48.8813601 2.3272611, 48.8538204 2.3378556, 48.8853067 2.3366858, 48.8456969 2.3708882, 48.8506404 2.2936731, 48.8504684 2.2942830, 48.8569990 2.3598958, 48.8576074 2.3584776, 48.8439225 2.2833420, 48.8430432 2.2833284, 48.8428944 2.2842743, 48.8420233 2.2855649, 48.8416421 2.2888988, 48.8416730 2.2896434, 48.8807469 2.3249718, 48.8577871 2.3811707, 48.8762568 2.3026175, 48.8671899 2.2974664, 48.8679501 2.2980675, 48.8752065 2.3706130, 48.8488146 2.2662951, 48.8900794 2.3207404, 48.8593537 2.3758114, 48.8776695 2.3160713, 48.8233133 2.3772950, 48.8254469 2.3510746, 48.8656624 2.3504627, 48.8457596 2.3191243, 48.8708210 2.3577458, 48.8791718 2.3545799, 48.8329453 2.2890084, 48.8670104 2.3443314, 48.8545691 2.3624284, 48.8410290 2.3406982, 48.8547397 2.3848709, 48.8422217 2.3027041, 48.8644770 2.4052247, 48.8643859 2.3991316, 48.8859135 2.3463455, 48.8298427 2.3644959, 48.8619514 2.3325055, 48.8364245 2.3944189, 48.8770775 2.3600536, 48.8773723 2.3588805, 48.8760150 2.3247329, 48.8755096 2.3274736, 48.8713153 2.3040116 +3 +48.8761391 2.3683073, 48.8722806 2.3695753, 48.8633521 2.3710595, 48.8615468 2.3727192, 48.8717450 2.3763419, 48.8680319 2.3652462, 48.8658631 2.3695102, 48.8610722 2.3670951, 48.8655959 2.3652444, 48.8648944 2.3762643, 48.8684955 2.3674002, 48.8700037 2.3666404, 48.8738041 2.3703747, 48.8735031 2.3753876, 48.8593542 2.3719793, 48.8636107 2.3663132, 48.8662415 2.3650038, 48.8718474 2.3654888 +49.3999791 8.6903579 +55.9082967 -3.3202293, 55.9101031 -3.3218843, 55.9102819 -3.3218516 +91 +49.4047830 8.6748233, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349 +48.8898010 2.2631730, 48.8488472 2.3218448, 48.9042834 2.3245110, 48.8343080 2.3572209, 48.8409458 2.3211307, 48.8912148 2.3413495, 48.8587314 2.3571857, 48.8857312 2.3605852, 48.8468885 2.3042494, 48.8451205 2.3179540, 48.8781729 2.3383243, 48.8958412 2.3317602, 48.8848959 2.2547563, 48.8277230 2.3275992, 48.8947570 2.3212156, 48.8869659 2.2870351, 48.8955708 2.3634069, 48.8850482 2.2942727, 48.8457586 2.3270884, 48.8529574 2.3648321, 48.8826020 2.2808120, 48.8686052 2.3443989, 48.8903038 2.3068904, 48.8852280 2.2812310, 48.8515711 2.3623262, 48.8811804 2.2887869, 48.8424086 2.3513701, 48.8486340 2.2710840, 48.8825180 2.2782270, 48.8506640 2.3288086, 48.8718009 2.3486390, 48.8458790 2.3508800, 48.8527313 2.3035652, 48.8840568 2.3401680, 48.8461550 2.3472670, 48.8868850 2.2774260, 48.8868870 2.2774290, 48.8457042 2.3274104, 48.8439673 2.3460288, 48.9011318 2.3138459, 48.8513123 2.3353958, 48.8532259 2.3807405, 48.8815993 2.3349787, 48.8396272 2.2982746, 48.8509240 2.2966111, 48.8509826 2.3348581, 48.8287686 2.3270872, 48.8520914 2.3457231, 48.8520498 2.3471195, 48.8867960 2.3430272, 48.8432427 2.2926242, 48.8867143 2.3420696, 48.8366699 2.3085489, 48.8505880 2.3262612, 48.8399309 2.3505124, 48.8764338 2.3389235, 48.8616725 2.3400056, 48.8931401 2.3450441, 48.8653656 2.3326546, 48.8491582 2.3503166, 48.8814741 2.2832174, 48.8965261 2.3424350, 48.8773026 2.3313881, 48.8733469 2.3471633, 48.8447303 2.3253916, 48.8442129 2.2981973, 48.8446667 2.2793091, 48.8634023 2.3451770, 48.8595023 2.3413445, 48.8628813 2.3500673, 48.8486036 2.2912517, 48.8674454 2.3255009, 48.8700303 2.3244833, 48.8667853 2.3409551, 48.8695324 2.3500407, 48.8512805 2.3575796, 48.8465485 2.3480584, 48.8483547 2.3477114, 48.8494880 2.3471975, 48.8555103 2.3547440, 48.8590777 2.3508458, 48.8580098 2.3551110, 48.8589606 2.3577912, 48.8546118 2.3614419, 48.8542205 2.3613106, 48.8533048 2.3662366, 48.8654907 2.3542912, 48.8660191 2.3548825, 48.8661006 2.3605374, 48.8428826 2.3467101, 48.8608482 2.3604976, 48.8599672 2.3652140, 48.8405270 2.3419263, 48.8410301 2.3394202, 48.8436908 2.3411284, 48.8944110 2.2900374, 48.8842517 2.2713707, 48.8539667 2.3343780, 48.8547259 2.3309615, 48.8789795 2.3519205, 48.8747740 2.3583086, 48.8740835 2.3661993, 48.8700416 2.3629456, 48.8813655 2.3677357, 48.8772979 2.3532928, 48.8840257 2.3785053, 48.8810534 2.3798892, 48.8794623 2.3748343, 48.8485200 2.3302805, 48.8564112 2.3276604, 48.8612993 2.3760466, 48.8698301 2.3789769, 48.8700142 2.3783921, 48.8557998 2.3744188, 48.8558974 2.3697016, 48.8474963 2.3314096, 48.8893083 2.3797923, 48.8869224 2.3699944, 48.8434562 2.3271121, 48.8943860 2.2783554, 48.8927928 2.2841487, 48.8982598 2.2938030, 48.8583168 2.3192030, 48.8555836 2.3125833, 48.8589684 2.3183256, 48.8700842 2.3190066, 48.8732220 2.3198534, 48.8564528 2.3218645, 48.8761943 2.3188756, 48.8736950 2.3227605, 48.8815247 2.3258345, 48.8733405 2.3105570, 48.8735777 2.3103416, 48.8506595 2.3134348, 48.8760259 2.3039392, 48.8621157 2.3068946, 48.8596683 2.3051766, 48.8745162 2.3280282, 48.8794555 2.3310828, 48.8668072 2.3074982, 48.8654950 2.3060890, 48.8657975 2.3070013, 48.8675010 2.3006380, 48.8574433 2.3080496, 48.8726445 2.3819387, 48.8741680 2.3019883, 48.8734257 2.2991491, 48.8776180 2.3019924, 48.8754756 2.2984999, 48.9107538 2.2934354, 48.9065394 2.2786301, 48.9057281 2.3433234, 48.9067213 2.3326840, 48.9011517 2.3139807, 48.8995625 2.3657966, 48.8935749 2.3205585, 48.8829281 2.3226645, 48.8890756 2.3246346, 48.8867932 2.3178582, 48.8948503 2.3340177, 48.8445961 2.3062818, 48.8842431 2.3378793, 48.8860532 2.3549746, 48.8950630 2.3500907, 48.8937115 2.3499835, 48.8313842 2.3453082, 48.8363739 2.3491795, 48.8300981 2.3497071, 48.8281048 2.3420248, 48.8373800 2.3594717, 48.8374878 2.3592366, 48.8389393 2.3641414, 48.8665953 2.2984346, 48.8676964 2.2984870, 48.8705973 2.2961633, 48.8287681 2.3377897, 48.8320894 2.3350179, 48.8359369 2.3170768, 48.8343750 2.3166882, 48.8292677 2.3078658, 48.8274592 2.3274621, 48.8297428 2.2943273, 48.8338197 2.3000761, 48.8435148 2.3087965, 48.8426176 2.3045363, 48.8412280 2.3124626, 48.8691233 2.2846795, 48.8913761 2.2690108, 48.8871270 2.2780605, 48.8847742 2.2624168, 48.8767826 2.2512964, 48.8851384 2.2746989, 48.9043119 2.2705984, 48.8619110 2.2804834, 48.8624138 2.2754020, 48.9050688 2.2762869, 48.8556150 2.2665151, 48.8564447 2.2802338, 48.8913410 2.3603495, 48.8530450 2.2737818, 48.8516666 2.2709872, 48.8844851 2.3048254, 48.8855199 2.3157231, 48.8768832 2.2870709, 48.8871425 2.2927875, 48.8827050 2.3127686, 48.8786276 2.2908454, 48.8857930 2.3103556, 48.8848939 2.3050098, 48.8471651 2.2695111, 48.8478819 2.2687811, 48.8455075 2.2600500, 48.8385454 2.3357931, 48.8487775 2.3737984, 48.8484110 2.3432090, 48.8439710 2.3453279, 48.8518519 2.3229864, 48.8563283 2.2806650, 48.8499446 2.3217861, 48.8361319 2.2839215, 48.8684100 2.2864027, 48.8262227 2.3303813, 48.8837717 2.3316956, 48.8915499 2.3605260, 48.8550018 2.3125388, 48.8620284 2.2797894, 48.8689638 2.3733836, 48.9038936 2.3036986, 48.8297549 2.3118834, 48.8875038 2.3421102, 48.8410409 2.2994617, 48.8807628 2.3031693, 48.8351793 2.3380648, 48.8396505 2.2961266, 48.8834296 2.3531464, 48.8490871 2.3236292, 48.8908265 2.3499846, 48.8646767 2.2807027, 48.8827134 2.3392700, 48.8389100 2.2986886, 48.9118195 2.2920331, 48.8529376 2.3498716, 48.8462836 2.3235558, 48.9039189 2.3033583, 48.8508082 2.3229326, 48.8867662 2.2664861, 48.8464730 2.3488067, 48.8937959 2.3754227, 48.8337081 2.3004333, 48.8461931 2.2921986, 48.8511845 2.2689216, 48.8366816 2.3352037, 48.8390019 2.3638914, 48.8388802 2.3643925, 48.8387780 2.3640572, 48.8391111 2.3642330, 48.8529135 2.3167601, 48.8553966 2.3450136 +1 and Bowhill Terrace, 13 and Deanhaugh Street, 91 and Holyrood Road, 50 and Saint John's Road, 72 and St John's Road, 71 and George Street, 51 and South Clerk Street, 1 and Croall Place, 206 and Bruntsfield Place, 1 and Ardmillan Terrace, 9-11 and Clerk Street, 200 and Morningside Road, 300 and Lawnmarket, 28 and Roseburn Terrace, 46 and Hanover Street, Whitehouse Road, 6 and Picardy Place, 2 and Biggar Road, 37 and St Andrew Square, 70 and St John's Road, 118 and Princes Street, 142-143-144 and Princes Street, 2-4 and Shandwick Place, 136 and Princes Street, 8 and George Street, 6 and George Street, 25-26 and West Maitland Street, 174-176 and Gorgie Road, 12 and North West Circus Place, 75 and George Street, 109 and George Street, 2 and Blenheim Place, 31-33 and Hanover Street, 3 and South Charlotte Street, 9 and Castle Street, 19 and Castle Street, 13 and New Kirkgate, 2 and Stafford Street, 19 and Frederick Street, 55 and George Street, 28-30 and Nicolson Street, 15, 17, 19, 21 and Leith Walk, 2 and Craigentinny Avenue, 125A, 125, 127 and Leith Walk, 61 and Forrest Road, 131 and Princes Street, 76 and Hanover Street, 24 and St Andrew Square, 28 and St Andrew Square, 20 and Hanover Street, 38-39 and St Andrew Square, 10-15 and Princes Street, 7 and Wolseley Place, 134 and Portobello High Street, Morningside Road, 8 and Morningside Road, 163 and St John's Road, 28-30 and Hanover Street +Edinburgh Bicycle Co-operative, Sainsbury's Local, Tesco, Moat Newsagent, Food & News, The Bike Station, Sainsbury's Local, C&G Cycles, Scotmid Co-operative, Margiotta, McColl's, Scotmid, Sainsbury's Local, Tesco, Marchmont Food & Wine, Loanhead Mini-Market, Freewheelin', Tills Bookshop, Bilston Post Office, Tesco Metro, Margiotta, Londis, V&S Sharma, Fountain News, Activity Awards, Happy Valley Convenience Store, Falko Konditormeister, Sainsbury's Local, Scotmid, Vogue Video, W Armstrong & Son, Great Grog, Underground Solu'shn, Cafe S. Luca, Oxfam Book Shop, Oxfam, St. Columba's Hospice Book Shop (secondhand), Bodrum Fine Foods, Traditional Fire Surrounds, Prestige, Johnstons Cashmere, Thistle Do Nicely, Tesco Express, Present, Royal Mile Sweets, Tollcross Newsagent, H&T Pawnbrokers, Leatherwork, Peter Trainer - Corporate Services Ltd, The 3 Stooges, Direct Dry Cleaning, Zone Eros, Smooch, Cabaret, West Port News, Lily West, Edinburgh Books, Herman Brown, Boardwise, McAlister Matheson Music Ltd, GT II Newsagent, Tesco Metro, Costcutter, Sainsbury's Local, Eddie's Seafood Market, Flight Centre, Greggs, Shelter, Sta Travel, Scotbet, SimplyFixIt, Coda Music, I Love Scotland, Best in Scotland, Margiotta, Peter Green, Gregg's, Scotmid, Word Power, Maqbool's Supermarket, Jordan Valley, O2 mobile 'phones, Keystore Express, Timber Center, Wangping Travel, Scotmid, Broadway Convenience Store, Poundsavers, Newstime & Party Planet, Scayles Music, Tesco Express, Tesco Express, Sainsbury's, KB Shop, Pedals, Unknown Pleasures, Central Superstore, M.S. Newsagent, I J Mellis, Laid Back Bikes, La Croissanterie, Revitalize, Mathieson, Rose MacDonald, Spirit Hair and Beauty, Salon Dorcas, Mathiesons Bakers, Sideburns Barber Shop, Kim O'Donnell, U Save, Soul Cycles, Murray & Murray, Ideal Computing, Scotbet, C'est Si Bon, CHI, Craig Davidson Hair, Greggs, M.W. Christie, News Plus, Oddbins, A la carte, Albany Lettings, Caroline Temple, Cheynes, Tippi, Coco, Costcutter, Fabulous Jewels, Snapdragon, Boombarbers, Moss Green, Belquin Hearing, Edinburgh Letting Centre, Rosie Brown, White Blossom Paper Boutique, All About Eve, Art Clay Scotland Jewellery Studio, Beauty Boutique, Cuckoo's Bakery, Framers, Halibut and Herring, Artisan Cheesecakes, R. C. Cunning, Stitches, Swinton, The Bay Tree Company, Very Vintage, esq barbers, Curiouser, Accommodate Edinburgh, Davison Kilt Hire & Sales, Hill's, The Salvation Army, The Dress Fabric Company, Harlequin Antiques, Drinkmonger, Pedals, JFK, Kilmour Thomson, Valerio, Riva, Nordic Outdoor, Thrift Shop, Young Antiques, Zen Lifestyle, Jason Hall Hairdressing, Just Giles Too, The Zone, Earthy, Scotmid, Munro Glazing, National Tyres & Autocare, La Quinta, Everyone's Designs, Acanthus, Maddie & Mark's Shoes, The Edinburgh Bookshop, Trinity Factors, Vivaldi, George Hughes, ACE Property Management, 181 Delicatessen, Gulliver's Toys and Gifts, MvDonald Green, Links Barbers, Andiamo, Bruntsfield News, Indigo Hairdressing, Soprano Ice, Dig-in, ooh! ruby shoes, Gordon Stevenson Violins, Sirs, Evans Cycles, Tesco Express, Hutchison Newsagent, Sandy's Barber Shop, University Gift Shop, Potter Shop, Debra, High Spirit Co, Farmfoods, Gordon Wilson, Crew, True Test, Vino Wines, Vino Wines, Morrison's Bakery, Appellation Wines, Gregg's, Margiotta, Al-Halal, EH11, Jim's Barbers, Aqua Vapor, Dudes & Divas, Stitch Express, Edinburgh Print & Sign Centre, Wallaces, Salvation Army, Scotts, Sainsbury's Local, Blackwells, Costcutter, The Bicycle Works, International Newsagents, Argos, Patisserie Valerie, J & S Newsagents, Premier, Lifestyle Express, Hamilton & Young Jewellery Desigers, Historic Connections Jewellery Designers, Bella Hairdressing Salon, Baguette Stop, Maplin, Keir Street News, Fudge House, The Carson Clark Gallery, News R Us, best-one, Bentley, Ferrari, Lamborghini, Bank, Vodafone, Mountain Warehouse, Thomas Cook, Card Factory, Three, Claire's, O2, New Look, WH Smith, Jacamo, Superdrug, Monsoon, H Samuel, Game, Accesorize, Lochrin Autos, Provenance Wines, View Forth Grocers, Viewforth Glazing, Black & Lizars, Sainsbury's Local, Tattoo Studio, James Morrow, Bike Trax, Run 4 It, Specsavers, Age Scotland, Barnardo's, British Heart Foundation, Cancer Research UK, Capability Scotland, Chest, Heart and Stroke Scotland, Marie Curie Cancer Care, PDSA, Salvation Army, Signage, Cork & Cask, A Touch of Silk, Andrew May, Aroosa Boutique, Chameleon, Costcutter, Crystal, Dough Re Mi, Hospice of Hope, Romania, Dough Re Mi, Khyber, Pins & Needles, Swanson Decorators, The Pine Tree Bakery, Thrift Shop 2, Sun Home, Looks Vintage, Video Mahal, myBearpaw, 2U Beauty, Kami, Polwarth Garage, Shrub: Swap&ReuseHub, Tesco Express, EUSA JMCC Shop, The Chocolate Moose, Hawico, reddog music, Dunedin, Babu, Optical Express, Sheila's, Newcastle Furniture Company, Ishi, Marchmont Hardware, Michael Field, Vintage Hair Company, Salut, Fruit Corner, Nina's Mini market, Lyndsay Brown, Macintosh, Duke's, D Fraser McLeod, Jones, March Hair, W Armstrong & Son, Bohemia, Scotmid, Hewats, Futon Company, Napiers, The Edge, Poundstretcher, Russell Paints, Fruitalicious, Richer Sounds, Specsavers, Schuh, Premier, Glamour Pooch, Barnardo's, Eden Aquatics And Reptiles, Clan House, Siller & Donaldson, Benny's, Greggs, Lidl, Poundland, Mc Coll's, Cashino, Hot Head, Tribe Tattoo, Digger, Crown Couture, Duncan McLaren, Timpson, EE, Body Shop, Outfit, Bubbles, Studio One, soren, Morningside Travel, Bakery Andante, Scotcleen, Newslink, Time & Tide, Bathstore, Bruntsfield Sports, Sofa So Good, Good Food, Home Hardware, Toys Galore, Johnsons, Sony Centre, Feather & Black, Rifkind & Brophy, Ann Brownlie, Costcutter, Karine, Suds R Us, Merchiston Dry Cleaners, The Co-operative Food, General Finishes UK, The Entertainer, Game, Peacocks, O2, Yours, Poundworld, 3 Store, Shoe Zone, Holland & Barrett, Semi-chem, Specsavers, Claire's, Thomson, Optical Express, Boots, Thomson, Barrhead Travel, Thomas Cook, Carphone Warehouse, EE, Thorntons, Trespass, H Samuel, Bodycare, BHS, New Look, Blue Inc, WH Smith, Clarks, Waterstones, Card Factory, Boscolo, AP Savile Stores, Ottavio, Sainsbury's Local, The Harvest Garden, Comiston Store, Henderson Wines, Addiction, Elan Hairdressing, Kirkbrae Upholstery, Cochrane's Motor Company, Day-Today, Kurlz, Lasswade Newsplus, Margiotta Food & Wine, Amir & Sons, Bookworm, Cyrus Barbers, Flamingo Bathrooms, Muir & Sons DIY Store, Salon Fairnington, Shanas, The Scruffy Dog Co., Vulcan Gas Services, William Hill, The Nomads Tent, Dingwall Fabrics, Cameratiks, Capricorn Flowers Limited, Jaxx: Hairdressers and Barbers, The Avenue Store, Be Inspired Fibres, EZ Sports, Marchmont Gallery, Jan de Vries, Carpet Rite, Sainsbury's Local, Stick Gallery, Afrin Barber, Armchair Books, Peter Bell Books, Owl & Lion, Scottish Pictures, Day Today, News Trader, Omni Furnishing, Saltire Antiques, Andrew Stout Kitchens, Scotbet, Victorian Heart Tattoo Studio, Edinburgh Golf Centre, High Spirit Co, Mr Man, fone customize, Belle Cheveaux, The Paint Shed, Floor Coverings International, Craiglea Clocks, Edinburgh News, Harmonious & Healthy Chinese Clinic, LA hair solutions, Wright of Comiston, 2's Company, The Cycle Service, Greggs, Aytouns, Salon Sixty Nine, Barber Inc, Smith Bakery & Deli, Denis Equi, Goodfellow & Steven, Gwenne, Liberton Flowers, Liberton Food, News & Wine, Paper Rack, Scotmid Co-operative Funeral Directors, Simply Clintons, Blinds, Cancer Research UK, Bottle Baron, Capital Newsagents, Choco-latte, Cleaning Centre, Drum Central, Dry Cleaners, Edinburgh Bakehouse, Edinburgh Bargain Stores, Edinburgh Fabrics, Eva's, First Class Butchers, Food for Thought, Greggs, H&T Pawnbrokers, Hifi & Video Repair Services, KHD, Cascade Juggling, Love Hate Tattoo, Lu's Tailor, Newington Stationers, Old and Newington, Pace Print, Ruby Rouge, Sainsbury's Local, The Barber, Tanz, The Edinburgh Framing Company, The Finishing Touch, The Tan Stand, Twice as Nice, William Hill, William Hill, Wood Winters wines and whiskies, Your Store, baberfella, brew store, AA Bargain Store, Backtracks, Cowan Print, Real Foods, Marchmont Garage No 1, Edinburgh Clothing Company, Flight Centre, Global News, House of Cashmere, Ladbrokes, Ladbrokes, Mode, Netversal, Heritage of Edinburgh, Ripping Records, Ryman, Shoe Zone, Tailor Stop, The Scotland Shop, Yekta, A&E Locksmiths, Apothecary, Bailey's Barber Shop, Barbers 3-2-1, Barnardo's, best-one, Bona Deli, Bonningtons, Browns, Cobblers Key, Ladbrokes, Leslie Deans & Co, Letslet, Medusa, Metro Barbers, Mobile Phone & Computer Repair Centre, Natural Foods etc., Polo Deli, Record Shack, Stitch Master, The Wee Boulangerie, User 2, Warners, William Hill, Cash Generator, Forbidden Planet, Jacob, Mace, Allan K Jackson Antiques, Bygone, Day-Today Express, Lorraine Graham Flowers, Majestic Wine Warehouse, The Bethany Shop, Hair Joy, Pan Pan Bridal, Development Direct, A Cunningham, Afrin Barbers, Amir & Son, Green House, Greggs, Niddrie Bargain Store, Polish Delicatessan, Shhh Hair & Beauty, Switch On Repairs, William Hill, iSee, Barber, Dalry hair stylists, M&D Caledonian, Allan Smith, Gregg's, Joe's Convenience Store, One to One, PC Clinic, R Brown & Son, Scotbet, Scotmid Co-op, Traditional Turkish Barbers, Urban Beauty, Jack's Grooming, Liberton Convenience Store, John Montgomery, Lady Muck, Meadow Deli & Bakery, rose & ammi flowers, Red Hot and Blue Tattoo, Big Ideas, Drift, The Mutts Nuts, Bacchus Antiques, Black Box, Golden Hare Books, The Christmas Shop, The Isle of Skye Candle Company, Bill Baber Knitwear, Hijinks, Sublime Hair Design, PI-KU Collective, Avizandum, Deadhead Comics, Maple Arts & picture framing, Still Life, Transreal, Venus Flytrap Tattoo, Patrick Buckley Antiques, Antiques & Stuff, McKensie Knight Hairdressing, Lifestyle Express, Elle Hair & Beaty, Gilmerton Grocers, S D Wright, William Hill, Mama Said, Miss Katie Cupcake, Old Town Context, Swish, Whisky World, Cavanagh Antiques, Enchantment, Forever Scotland, Hair By Alfie, Pie in the Sky, The Frayed Hem, Whiplash Trash, Cutie House, Eden, Cookie, Route One, The Scotsman, The Woollen Mill, Victor Scott Kilt Maker, Crest of Edinburgh, Ness, Royal Mile Crystal, Games Workshop, McPherson, Iconic, News Experss, Purple Glamour, Hawico, Mr Wood's Fossils, W. Armstrong & Son, Cutz Barbers, Mail Boxes Etc., Marie Curie Cancer Care, Sally, The Phone Box, Buckstone News, Headturners, Ruth Ross, Ballantrae Cashmere, Best Of Scottish, Edinburgh Cashmere Boutique, Fudge Kitchen, Heritage of Scotland, House of Cashmere, Johnstons of Elgin, Palenque, Real Scot Shop, Really Scottish, Royal Mile Jewellery, The Nutcracker Christmas Shop, Ali Willmore Hairdressing, Antiques, Carson Clark Gallery, Kilberry Bagpipes, Tete a Tete Foto, Cycle Scotland, Old Town Tattoo, Chic, Cyan, Harmony Complementary Therapies, Scottish Regimental Store, Studio XIII Gallery, Tangram, Barnets, Celtic Craft Centre, Cashmere And Kilt Centre, Geoffrey (Tailor) Kiltmaker, John Morrison Kiltmakers, Ladbrokes, The Bonnie Blue, The Tappit Hen, Wee Gift Shop, Whisky & Wine, Hector Russell, Whisky & Wine, Whiski Rooms, Corniche, Aquila, Lickety Splits, Saks, The Scottish Grocer, Cranachan & Crowdie, Eyden, Demijohn, Howies, I.J. Mellis Cheesemonger, Swish, The Whisky Shop, Clarksons, Museum CONTEXT, Walker Slater, Bobs, Games Hub, The Vapour Lounge, John Saunderson, Lupe Pinto, The Little Fox Deli, Pekoetea, Tollcross Superstore, Nicolson, Prestige Scotland, Celtic, Chinese Doctor, Ye Olde Christmas Shoppe, Hair of the Dog, Keystore, Laidlaw's, Red Ox, Scotmid, Sun Factor, X-box Heat, Day-Today, Glenvarloch Bakery, Wash Hoose, I love Edinburgh, Neanie Scot, The Royal Mile Factory Outlet, William Watt Electricians, Bonnie Scotland, Edinburgh Copy Shop, Kleen Cleaners, Lo Demore, Pinnies and Poppy Seeds, Psychomoda, Ragamuffin, Rene Walrus, Slanj, Solo, Thomas Marin Funeral Director, Tidalfire, Head Candy Style Boutique, Simply Bridsmaid, Call Print, Edinburgh Arts and Picture Framers, A.Jack, Myra Crawford, RJ's, Intelvisa, The Real. A.B. Cave, VIP's Barber, Viva, Cross Fitness Training, iQ, Haven Ink Tattoo Studio, Myriad, N&N Barbers, Scotbet, Sandher & Sons, Ben's Newsagent, Cash Converters, Green Print, Easy Let Property, USA Nailz, Welch Fishmonger, Guaranteed Watch & Clock Repairs, Focus, The Royal Mile Gallery, Treasurer 1874, Tribal Body Art, Macraes of Edinburgh, Best Fae Scotland, Cadenhead's Whisky Shop, Canongate Crafts, Celtic Design Jewellery, Holyrood Cashmere, Simply Scottish, The Wyrd Shop, Backbeats Records, Cables and chips, Chu's Salon, Euronics, Events Armoury Design and print, Hollan and Barret, Lawrence Smith and Son Wine Merchants, Oxfam, Oxfam, Richmond Barbers, Shelter, Southside Glazing and Joinery, The Clothing Bank, Adult Conceptions, Varsity Music, Woods, Ballantrae Cashmere, Clans Of Scotland, Edinburgh Cashmere & Lambswool, Elgin Cashmere, House Of Cashmere, Kiltane, Ness, The Whisky Trail, Victoria Regalia, Camera Obscura, Cashmere and Scarf Company, Castle Gift Shop, Highland House, House Of Scotland, J & S - Newsagent, The Court Curio Shop, The Wee Scotland Shop, Bingo, Cashmere House, Harris Tweed Hebrides, Howick Knitwear, Heritage Of Scotland, James Court City Refund, Jamie Scott’s Millshop, Royal Mile Factory Outlet, The Woolen Factory Outlet, Cheynes, Southside Books, Applejack, Arika, Boosh Boosh Boosh, Cowgate Newsagant, Crescent print LTD, KSI, Spectrum Graffiri shop, Antique Jewellers, House of Edinburgh, James Pringle Weavers, Marchbrae, Royal Mile Whiskies, The Cigar Box, House of Edinburgh, The Whisky Trail, Joe, Greyfriars Art Shop, Bridge Express, Greyfriars, The Golden Scissors, Allure, Chest Heart & Stroke Scotland, Cheryl Irvine, New Leaf Co-op, The Opticians At Marchmont, Mo's Moroccan, Paper Tiger, Arden, Braemore, Hunters, Kristofferson, SH Jewellery, Shelter Scotland, Technik, The Salvation Army, Co-operative Food, Duke's, Serene Beauty Therapy, Amplifon, Capability Scotland, Out of the Blue, Shoebox, Cobalt Hair, Kharma, Pollination, Revive, Bravado, Clan House, Helen Rennie Dressmaking, Kids' Stop, Kudos, Macgregor Hairdressing, Mail Boxes Etc., Nail Yard, Panache, Persian Rug Village, Too Good To Eat, Argyll Cashmere, Medusa, Wonderland Models, Butterflies, Godiva Boutique, unknown, The Edinburgh Kiltmakers - Clothing & Souvenirs, West Port Pads, 97 Black, Dalliance, Edinburgh Ink - Tattoo Studio, Main Point Books, Missionhair, 3D Laser Print, Aquarius, Scotbet, Barber, Cheynes, Jazz Tattoo, Ocean Jewellery, William Hill, Soderberg, The Makeup and Beauty Studio, Tom Brown's Stamp Shop, British Heart Foundation, White's Auto Services, Georgian Windows, Vidhi, Cook, U Save, Class, Natisse, Hair Workshop, we-fix.net, Edinburgh Barbers, MGM Letting, Save the Children, Shoppers Spot, Silicon, Thai @ Haymarket, Edinburgh Art Shop, Elite, Formo, Hyslop, Istanbul Hair Studio, Littlejohns, Nail Hub, Omega, Oriental Supermarket, Hötter than hell, Shelter, Sparkle, Statement, Sweet Serve News, The Smoking Fox, William Hill, XL Electrical, Carparts, Edinburgh Diving Centre, Caroline Cleland, Edinburgh Shiatsu Clinic, Edward & Irwyn, Julie's, Level Up, Muirs Hair Salon, Moi Nail & Eyebrow Bar, Capital Glazing, Fulton, Refinishing Services, Fresh Choice, The Meadows Pottery, Aihua Chinese Supermarket, Starlight Chinese Supermarket, WT Dunbar & Sons Funeral Directors, William Hill, Angle, Just Alans, Sash and Case, James Aird, The Art Stop, Dandelion, Monkey Temple, Tom H.G. Stewart, Totty Rocks, e-senses, Capital Lettings, Kings Barbers, Silver Joolz, Klaklak, Johnson Cleaners, Thomas Cook, DianWard, Urban Angel, Global Fruits & Vegetables, Day Today express, Bryton Travel, DJK Lettings, Hair Lounge, Home at Six, Premier, Glamour, Cancer Research, Ladbrokes, The Paint Shed, Ade Blessing Salon, BMG Office Equipment, Bazyliszek, British Heart Foundation, De Africa, Dr Vapor, First Class, Jubilant Mart, Myles, Orchid, Paradise, Passion Hut, Pound Plus, Repair Centre, The Jewellers, The No 1 Bead Shop, floxzee, Graham Fraser, Solution, Intelligent Hair Growth, Hua Xing Chinese Supermarket, Hua Xing Fruit and Veg Supermarket, Brakesafe Garage, Chinese Laundry Co., Gilhooley Plumbing and Heating, Michael Paxton Lighting, The Grange Dry Cleaners, Anteaques, Gillespie Convenience Store, Bethany, British Red Cross, Cancer Research UK, Goodfellow & Steven, Growler Beers, Morningside Mini Mart, Vision Express, Wilkies, age scotland, Farmer Autocare, J. Sives Surfacing Ltd., Edinburgh Harley Davidson, Dog Aid Society of Scotland, Blackford Motor Engineers, Ali's Cave, William Hill, Football Nation, Capital Autos, Diana Alteration, Morningside School of Music, One36 computing, Ten Hair & Beauty, Charlies Barbers, Hog's Head Music, Co-operative Food, L'Amour, Le Me, Paterson SA, Welby & Wright, The Geology Shop, Kodak Express, Italian Style, Sharps, Time & Tide, James Erskine, 786, Harlequin Hair Studio, Medusa, Criagdon Mountain Sports, A Touch of Silk, Beut, Gorgie Laundrette, Laundrette & Dry Cleaners, McRae, 20 20 opticians, McGills, electron wheels, Medusa, Mov8, Newington Metro, Signarama, Signature, Zen LIfestyle, Jonas, sofa.com, Garvald - The Mulberry Bush, Haggart Plumbing Limited, Hampton's, Keith Elgin Motor Engineers, Remnant Kings, Morisons, Lidl, Tesco Colinton, IKEA, Smyths, Co-op, Western VW, Marks & Spencer Simply Food, Sainsbury's, Costco, Waitrose, Lidl, Matalan, Jewson Timber, Dobbies Garden Centre, Niddrie Community Store, Jazz Licenced Grocers, Scotmid, Tesco Metro, Waterstones, Mothercare, Porsche, Scotmid, Dobbies Garden Centre, Klondyke Garden Centre, Kevock Garden Plants, Nissan, Lidl, Co-operative Food, M&S Simply Food, M&S Simply Food, ACE Car Repair Ltd, Morrisons, Honda Cars, Mercedes, Beaverbrooks, USC, Vision Express, Clarks, The Perfume Shop, Hobbycraft, H&M, Carphone Warehouse, Next, Victor Paris, Design Shop, ASDA, Grahams and Ceramic Tiles, Cotterell & Co, Farmfoods, Edinburgh Triumph, Two Wheels, Two Wheels Motorcycle Training, Co-op, David Phillips Autos, Pentland Plants, Kwik Fit, Sterling Furniture, Martin & Frost, Mamas & Papas, SportsDirect.com, Superdrug, Aitken & Niven, Braid Hills Golf Course Pro Shop, Wee Braids Golf Course Shop, Angle Park Auto Centre, Edinburgh Taxi Services, Kwik Fit, Harveys, Next, Dunelm, Argos, Halfords, Laura Ashley, Straiton Beds, Brantano, Bensons for Beds, Sports Direct, Carpet Right, Harry Corry, Pets at Home, Oak Furniture Land, Dreams, Nike Factory Store, Carphone Warehouse, Home Bargains, TK Maxx, Discount UK, Bed Shed, Matalan, Sainsbury's Local, Home Sense, Poundstretcher, Toys R Us, JD, River Island, Norman Stuart Auto Services, Criterium Cycles, BR Autos, GBL Motors, The Co-operative Food, Blackford Avenue Post Office, Hoffman Motors, Nairne Convenience Store, Marion's hairdressing, Londis, Scott of Dalry (MOT), VW Van Centre, Tartan Weaving Mill, Tesco Express, Gilmerton Store, ASDA Chesser, Forall's garage, Sofaworks, Majestic Wine Warehouse, Bolly Wood The Coffee Box, Nairne Convenience Store, Power House Motor Mechanics, G.W. Martin Motor Engineers, ALDI, Western, Clark Motorchoice, Westside Motors +Da Claudia +Volksbank Kurpfalz +no +no +49.4091995 8.6766242, 59.3850813 13.5022572, 44.8575335 11.5514453, 44.8481082 11.5797425, 44.8737472 11.5059971, 44.8796220 11.4377226, 55.4016889 10.3906550, 53.0721328 8.8038173, 55.6754761 12.5687576, 56.1528033 10.2021224, 55.6007184 13.0045161, 57.1080120 12.2489637, 55.3967089 10.3897563, 55.3968217 10.3896544, 55.6863922 12.5649100, 54.0898680 12.1366250, 54.0914398 12.1493603, 64.1403047 -21.8912612, 54.3781669 18.6077238, 55.7140229 9.5433880, 49.0072635 8.4025584, 49.1394689 9.2143766, 47.2668296 11.4048475, 50.0401806 15.7683616, -37.7800215 144.9779631, 45.4198724 -75.6960180, 45.5279091 -73.5887289, 45.4211130 -75.7128255, 55.2309495 11.7642273, 57.0325310 9.9548293, 57.0336675 9.9079747, 57.0571642 9.9222514, 57.0380945 9.9317871, 56.1551470 10.1942520, 55.6590857 12.3524309, 56.1710509 10.2046334, 56.1561916 10.1840778, 56.1604903 10.1841690, 57.4546925 9.9881149, 57.4375605 10.5318613, 56.7222763 10.1287779, 56.4554232 10.0413684, 55.4714632 8.4588600, 55.5675213 9.7516075, 55.5708490 9.7676326, 55.5702660 9.7595468, 55.5639869 9.7478874, 56.0450790 12.6938002, 56.0309150 12.6051710, 56.0336166 12.6137923, 55.8819836 12.4983735, 55.6805024 12.5215376, 55.8590585 9.8386109, 55.4661169 9.4721779, 55.3855964 10.3962222, 55.3756305 10.4272206, 55.4127875 10.3955197, 55.3816651 10.4313831, 55.3864972 10.3737413, 55.3860820 10.3731139, 55.4014557 10.3912531, -37.7723825 144.9906162, 55.7021637 9.5354484, 56.4503085 9.4168371, 60.1692578 24.9262935, 60.1705635 24.9406306, 49.2726880 -123.1453296, 48.4326103 -123.3782642, 49.2734016 -123.1023382, 51.9157934 4.3457623, 62.2337437 25.7238420, 61.4993792 23.7588406, 47.2115433 -1.5528330, 48.5743275 7.7552290, 51.1051852 -115.3671737, 53.5592487 10.0086754, 51.2204157 6.7672914, 48.4677570 7.9424286, 47.9952953 7.8407184, 51.5528828 9.9401132, 47.6197148 7.6592976, 47.4912541 19.0616906, 19.4292171 -99.1620068, -34.5831335 -58.3925568, 53.3294604 -6.2726169, 53.3080750 -6.1951797, 53.3063235 -6.2370639, 53.3063987 -6.2129089, 49.6049087 6.1334591, 47.0542516 8.3110390, 44.8178927 20.4488730, 41.3944073 2.1761146, 45.8873995 11.0403431, 45.8908706 11.0398201, 44.8392313 11.6114968, 44.8299442 11.6142316, 44.8228223 11.6354642, 46.4990785 11.3472611, 44.8452401 11.6061774, 44.6434713 10.9150561, 44.7015620 10.6219673, 44.6933955 10.6296847, 45.4736664 9.2041570, 45.4734473 9.2041910, 51.7595312 19.4575802, 53.4204238 14.5152447, 51.0535351 3.7091778, 51.2191000 4.3954872, 51.2089416 4.4232496, 51.0432911 3.7402416, 52.2346871 6.0475624, 52.2355880 6.0488228, 52.2379193 6.0853310, 52.2377427 6.0854685, 52.2470805 6.1340644, 52.2085424 5.9690111, 56.4928149 -5.4018368, 55.8621593 -4.0300885, 55.9021708 -4.3998121, 56.1283475 -3.9381130, 55.9438261 -3.1912451, 57.4822606 -4.2066914, 56.4022000 -3.4333172, 55.8605906 -4.2710403, 55.9411030 -3.2121066, 51.5315330 -0.0661980, 51.5368079 -0.1344236, 52.2002015 0.1283490, 50.8478557 -0.1129021, 50.8520626 -0.1537603, 51.4870480 -3.1845836, 55.6343891 12.0898965, 43.0679530 -89.4121987, 69.9656768 23.2621088, 69.9678049 23.3683520, 59.8335785 10.4374656, 59.9263660 10.6155671, 59.9547918 11.0407667, 59.9531654 10.7568229, 59.8845661 10.7686969, 59.9112324 10.7256096, 59.8082896 10.8061348, 59.9135621 10.8019485, 59.9447439 10.6568219, 59.9457495 10.8451616, 60.1440643 11.1697872, 59.2194781 10.9207221, 59.2099593 10.9401572, 59.2746351 11.0821845, 59.2799310 11.1259546, 61.1364676 10.4379828, 61.1068476 10.4729403, 60.7841732 10.6928621, 69.6526872 18.9600897, 69.6793427 18.9716104, 59.7414272 10.2089150, 59.9165585 10.7524416, 63.4160304 10.3961478, 63.4353180 10.4088212, 60.7985717 11.0593750, 60.7911658 11.0887790, 58.8511306 5.7391283, 58.9413521 5.6730425, 58.1474290 7.9882497, 59.2033541 9.6086997, 59.1334958 9.6340870, 59.1076498 9.7002690, 45.4202979 -75.7121860, 46.1935248 6.1397961, 48.6452961 9.4515269, 53.2864599 -6.2777105, 47.6481146 -122.3499046, 47.5713131 -122.3494375, 37.7769589 -122.4167994, 34.0686430 -118.4459659, 40.0173629 -105.2784426, 38.8991880 -77.0721356, 45.5140728 -122.6737551, 55.8713612 12.8294453, 55.7149865 13.2106373, 55.7086775 13.1842915, 55.8789196 12.8564836, 56.6886197 16.3221961, 59.3708432 17.9622176, 59.3627460 18.1141228, 59.8576785 17.6458208, 57.7227386 12.9560609, 57.7157952 12.9391879, 57.7128816 12.9483418, 57.7281968 12.9396867, 59.3857619 18.0429024, 59.3738000 16.5163838, 56.6724166 12.8580094, 57.6575704 12.1197067, 57.7664128 14.1530495, 57.7779749 14.1647001, 57.7788109 14.1949490, 45.8004391 15.9787366, 59.3828316 13.4981716, 57.8739406 11.9755741, 65.5866147 22.1497123, 57.6752259 12.0077884, 55.5892027 13.0053227, 59.3790084 18.0086821, 58.5863656 16.1919327, 59.2663995 15.2045826, 59.2743444 15.2063775, 63.3019961 18.7153389, 63.2838562 18.7085949, 63.1796923 14.6270967, 64.7504515 20.9574136, 59.2002604 17.6293033, 62.3917257 17.3132673, 62.3963832 17.2805271, 63.8274109 20.2648086, 63.8178417 20.3089235, 59.3228980 18.0679698, 57.7196131 11.9632134, 59.6128606 16.5621509, 56.8844855 14.8007455, 56.8757660 14.8113086, 52.2466407 6.1334564, 48.7465763 9.1356450, 48.7466031 9.1356638, 48.7988878 9.2099725, 48.7989435 9.2100305, 48.7990019 9.2101014, 51.5370023 9.9294622, 51.5492129 9.9380404, 51.5392470 9.9384162, 51.5387929 9.9339453, 59.2242039 10.9529012, 47.7524540 16.6951140, 42.3633590 -71.0859320, -39.6659549 176.8732762, 55.7337078 37.5970194, 48.5178185 9.0479891, 49.4489700 11.0826196, 61.3538730 16.3638784 +48.8758196 2.3557131, 48.8730354 2.3533915, 48.8569549 2.3497208, 48.8562998 2.3535246, 48.8414636 2.2996634, 48.8514966 2.3009053, 48.8494772 2.3513322, 48.8521302 2.3358217, 48.8553332 2.3464366, 48.8528715 2.3435491, 48.8614418 2.2990188, 48.8513763 2.3250565, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8327885 2.2772902, 48.8376679 2.3201690, 48.8391922 2.3168608, 48.8453963 2.3255943, 48.8445885 2.3722564, 48.8439502 2.3728916, 48.8310773 2.2770656, 48.8616525 2.3535093, 48.8541427 2.3314320, 48.8501755 2.3620809, 48.8566284 2.3271644, 48.8406788 2.3548958, 48.8661306 2.2897626, 48.8813252 2.3220105, 48.8610917 2.3414339, 48.8706262 2.3242484, 48.8722447 2.3050374, 48.8820013 2.3330275, 48.8450073 2.3757975, 48.8442783 2.3769332, 48.8466279 2.2560360, 48.8351429 2.3731146, 48.8413725 2.3310575, 48.8694555 2.3406786, 48.8388399 2.2765067, 48.8398137 2.3124499, 48.8176870 2.3444409, 48.8398451 2.2739161, 48.8539232 2.3938833, 48.8742514 2.3675121, 48.8470632 2.3766059, 48.8566083 2.3533348, 48.8895985 2.3191714, 48.8632334 2.3399229, 48.8493535 2.3714981, 48.8651992 2.3333992, 48.8565989 2.4064934, 48.8584702 2.3501538, 48.8585293 2.3496680, 48.8411654 2.3324666, 48.8463168 2.3872077, 48.8596955 2.3406333, 48.8620104 2.3390904, 48.8611512 2.3495492, 48.8661000 2.3337438, 48.8652752 2.3332993, 48.8677297 2.3303206, 48.8670418 2.3496240, 48.8613539 2.3526643, 48.8563329 2.3553132, 48.8657000 2.3535311, 48.8652453 2.3533870, 48.8443992 2.3820174, 48.8691076 2.3112127, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8729875 2.3210140, 48.8726568 2.3215983, 48.8776040 2.3524312, 48.8741556 2.3274201, 48.8758310 2.3206114, 48.8819076 2.3140835, 48.8751556 2.3094294, 48.8749212 2.3089779, 48.8720777 2.3056372, 48.8715518 2.3062553, 48.8688688 2.3012670, 48.8720769 2.2997667, 48.8721868 2.3033146, 48.8707626 2.3051595, 48.8701277 2.3044062, 48.8674712 2.3054788, 48.8667016 2.3011326, 48.8655118 2.3015698, 48.8713039 2.2970137, 48.8741074 2.2994150, 48.8744570 2.3007315, 48.8763620 2.3015161, 48.8767241 2.3018198, 48.8782249 2.2965872, 48.8888115 2.3939896, 48.8972935 2.3883460, 48.8971965 2.3887591, 48.8952805 2.3850234, 48.8599671 2.3250425, 48.8705380 2.3685763, 48.8293963 2.3789703, 48.8401996 2.3509062, 48.8403358 2.3506549, 48.8432745 2.3153982, 48.8725053 2.2851559, 48.8736890 2.2914977, 48.8768968 2.2823678, 48.8722856 2.2840680, 48.8693205 2.2843750, 48.8677158 2.2805552, 48.8581528 2.2756131, 48.8537034 2.3664740, 48.8749075 2.3418631, 48.8770209 2.3458704, 48.8837184 2.2879868, 48.8394916 2.2533681, 48.8396031 2.2624046, 48.8471492 2.3421620, 48.8925549 2.3269370, 48.8507465 2.3484894, 48.8470699 2.3417135, 48.8613479 2.3294517, 48.8420353 2.3432522, 48.8170906 2.3594427, 48.8623669 2.3098112, 48.8593696 2.3144127, 48.8414784 2.2515179, 48.8734234 2.3305255, 48.8715078 2.3339896, 48.8459424 2.3060603, 48.8709065 2.3498477, 48.8800493 2.3536899, 48.8820806 2.3518696, 48.8644441 2.3741599, 48.8539335 2.3775047, 48.8507314 2.3754330, 48.8540777 2.3579438, 48.8466539 2.3999463, 48.8319830 2.3768014, 48.8720026 2.3359899, 48.8543455 2.3561847, 48.8472625 2.3418020, 48.8703752 2.3029557, 48.8738314 2.3297043, 48.8240781 2.3667729, 48.8790223 2.2930687, 48.8246116 2.3235303, 48.8824856 2.3440987, 48.8558178 2.3536690, 48.8647821 2.3501454, 48.8815254 2.3543330, 48.8313000 2.3882082, 48.8424224 2.3451614, 48.8632587 2.2533252, 48.8660712 2.2550204, 48.8632351 2.3477979, 48.8580953 2.3988158, 48.8353252 2.3805436, 48.8823708 2.3546777, 48.8671989 2.3667020, 48.8410399 2.3210471, 48.8429112 2.3235502, 48.8423484 2.3212962, 48.8320324 2.3866588, 48.8336457 2.2895795, 48.8539543 2.3320945, 48.8764091 2.3236995, 48.8476756 2.3411763, 48.8305332 2.3138423, 48.8763053 2.2944546, 48.8763219 2.2947532, 48.8788573 2.2928071, 48.8761984 2.2930848, 48.8760963 2.2927992, 48.8532277 2.3589001, 48.8817162 2.3010162, 48.8336788 2.3331356, 48.8863474 2.2875098, 48.8871329 2.3013396, 48.8740366 2.4050675, 48.8780164 2.4108510, 48.8260635 2.3616139, 48.8339745 2.3680517, 48.8239032 2.3657211, 48.8606849 2.3259641, 48.8937054 2.3492738, 48.8893918 2.3447704, 48.8706840 2.3716682, 48.8832655 2.3157338, 48.8295968 2.3493740, 48.8892294 2.3935497, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8962268 2.3624023, 48.8606849 2.3259641, 48.8381765 2.3815493, 48.8537886 2.3474561, 48.8731938 2.3290960, 48.8212980 2.3643164, 48.8885210 2.3001520, 48.8549966 2.4012505, 48.8550533 2.3731077, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8292317 2.3084985, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8840501 2.3678392, 48.8465587 2.2612329, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8868617 2.3693195, 48.8698031 2.3099017, 48.8804349 2.3673901, 48.8343023 2.3639410, 48.8378546 2.3188725, 48.8635066 2.3585029, 48.8626410 2.3536464, 48.8510259 2.3410270, 48.8785042 2.4032141, 48.8843094 2.3221312, 48.8207875 2.3249534, 48.8585293 2.3496680, 48.8176870 2.3444409, 48.8465788 2.3874042, 48.8338169 2.3823515, 48.8728113 2.3697721, 48.8450073 2.3757975, 48.8633378 2.3436056, 48.8608207 2.3462695, 48.8609358 2.3477215, 48.8475234 2.2825602, 48.8850525 2.3540917, 48.8869948 2.2957423, 48.8913949 2.3030283, 48.8904986 2.3036119, 48.8789318 2.2820499, 48.8782568 2.2839644, 48.8402845 2.4069021, 48.8832938 2.3851138, 48.8923410 2.3650140, 48.8852405 2.3310874, 48.8941194 2.3721536, 48.8348835 2.3592961, 48.8742021 2.3591001, 48.8314203 2.3778776, 48.8314596 2.3779526, 48.8318827 2.3891652, 48.8461444 2.3837384, 48.8936924 2.3300230, 48.8444332 2.3065143, 48.8404521 2.3210539, 48.8406619 2.3213032, 48.8951172 2.3725920, 48.8848116 2.3938556, 48.8541004 2.3735901, 48.8883255 2.2895204, 48.8324295 2.3777926, 48.8400817 2.3808930, 48.8885318 2.3889061, 48.8541153 2.3181466, 48.8457219 2.3091127, 48.8852759 2.3287719, 48.8853098 2.3300207, 48.8411155 2.2644568, 48.8720076 2.3153410, 48.8970228 2.3778045, 48.8335588 2.3347973, 48.8743552 2.4101245, 48.8459148 2.3453004, 48.8467486 2.3457052, 48.8464858 2.3468868, 48.8373806 2.3847107, 48.8949298 2.3437869, 48.8529015 2.2772159, 48.8641419 2.3059394, 48.8171104 2.3592722, 48.8706191 2.3164188, 48.8702691 2.3171729, 48.8812617 2.3221621, 48.8784814 2.3330760, 48.8456516 2.3465029, 48.8872879 2.3219591, 48.8997033 2.3290489, 48.8413908 2.3722764, 48.8256327 2.3320576, 48.8655047 2.2723194, 48.8708239 2.3060540, 48.8441230 2.3564135, 48.8558123 2.3528997, 48.8562804 2.3531597, 48.8362151 2.2568329, 48.8388419 2.4599061, 48.8695357 2.3416876, 48.8694697 2.3420289, 48.8696274 2.3412758, 48.8626465 2.3146531, 48.8465734 2.3127269, 48.8565840 2.2986464, 48.8460758 2.3058827, 48.8204134 2.4518397, 48.8477097 2.3117779, 48.8477196 2.3115767, 48.8784451 2.2852017, 48.8624814 2.3328937, 48.8543462 2.3467503, 48.8252592 2.4120396, 48.8614367 2.2958080, 48.8605025 2.2943088, 48.8351030 2.4463930, 48.8632541 2.2402764, 48.8618634 2.4100811, 48.8361491 2.2692910, 48.8358166 2.2686689, 48.8222263 2.4483812, 48.8227496 2.4495152, 48.8662682 2.3974540, 48.8381010 2.3148758, 48.8374220 2.3149466, 48.8366275 2.4409423, 48.8999909 2.3448173, 48.9000149 2.3394792, 48.8379027 2.3622168, 48.8351429 2.4475725, 48.8220818 2.3406030, 48.8531376 2.3591975, 48.8534868 2.3580109, 48.8633082 2.2839525, 48.8171862 2.3326710, 48.8435052 2.3798226, 48.8364120 2.2686709, 48.8764185 2.3969372, 48.8298857 2.3251080, 48.8341531 2.3029351, 48.8341115 2.3027113, 48.8773569 2.4091134, 48.8625518 2.2289847, 48.8686047 2.3172472, 48.8400598 2.2883156, 48.8299997 2.3587358, 48.8299341 2.3586911, 48.8464288 2.2486197, 48.8480791 2.2445917, 48.8947243 2.3931498, 48.8291320 2.4574737, 48.8236788 2.4563722, 48.8705811 2.3031146, 48.8387116 2.3423289, 48.8293120 2.2902026, 48.8321851 2.2870636, 48.8285252 2.2905906, 48.8281768 2.2910589, 48.8301724 2.2903291, 48.8284840 2.2907616, 48.8285477 2.2904442, 48.8294272 2.2900019, 48.8284711 2.2909813, 48.8302673 2.2901359, 48.8322580 2.2868131, 48.8516565 2.2795993, 48.8762399 2.3589688, 48.8640413 2.2547307, 48.8688683 2.2484552, 48.8522560 2.2872933, 48.8505461 2.2881984, 48.8507146 2.2878412, 48.8592142 2.2272202, 48.8944990 2.3592670, 48.8964589 2.3589627, 48.8526051 2.2917373, 48.8527475 2.2917705, 48.8524256 2.2914147, 48.8520645 2.2878286, 48.8530231 2.2902364, 48.8521480 2.2910880, 48.8461602 2.2777848, 48.8315682 2.3419531, 48.8844978 2.3727600, 48.8214447 2.3591422, 48.8210623 2.3592593, 48.8296129 2.3926750, 48.8953032 2.3950120, 48.8385749 2.3187258, 48.8621437 2.4083353, 48.8625288 2.4074996, 48.8622745 2.4082713, 48.8467200 2.3470841, 48.8594021 2.3997394, 48.9014459 2.3845889, 48.8381862 2.2637137, 48.8747479 2.3774714, 48.8625581 2.2726160, 48.8759281 2.3755990, 48.8554636 2.3105772, 48.8568148 2.3113293, 48.8562582 2.3111517, 48.8753670 2.3840906, 48.8776820 2.3819290, 48.8780466 2.3820570, 48.8779501 2.3820356, 48.8282157 2.3138616, 48.8791865 2.3962914, 48.8800883 2.3966161, 48.8789953 2.3961493, 48.8797503 2.3965184, 48.8791295 2.3963574, 48.8799656 2.3966919, 48.8788628 2.3960550, 48.8789728 2.3962383, 48.8786511 2.3959011, 48.8794871 2.3965577, 48.8786364 2.3960059, 48.8781700 2.3957367, 48.8779412 2.3955240, 48.8468574 2.3115883, 48.8409751 2.3143380, 48.8418080 2.3135205, 48.8538220 2.3039217, 48.8521690 2.3015397, 48.8400362 2.2978277, 48.8398604 2.2982919, 48.8396219 2.2985580, 48.8458905 2.3061855, 48.8453505 2.3079370, 48.8457209 2.3076485, 48.8454608 2.3084333, 48.8542240 2.3047930, 48.8555641 2.2971442, 48.8921220 2.3594231, 48.8526538 2.2867524, 48.8571932 2.2995417, 48.8531145 2.3031375 +yes +8 +0 +19 +yes +55.9498298 -3.1876708, 55.9483392 -3.1987455, 55.9458479 -3.1861307, 55.9450120 -3.1915042, 55.9471021 -3.1971869, 55.9486422 -3.1962925, 55.9487023 -3.1964050, 55.9479442 -3.2034814, 55.9501160 -3.2050638 +2 +yes +83 +48.8542243 2.3500208, 48.8697525 2.3517557, 48.8606768 2.3486445, 48.8240998 2.3638457, 48.8214836 2.3639524, 48.8557761 2.3581437, 48.8804310 2.3540947, 48.8801870 2.3552631, 48.8576209 2.3506001, 48.8446070 2.3751280, 48.8818218 2.3582022, 48.8741593 2.3567202, 48.8613752 2.3532868 +9 +13 +49.4333190 8.6867073, 49.4189644 8.6822373, 49.4199838 8.7597906, 49.4227392 8.5971994, 49.4313284 8.6416542, 49.4216061 8.6481916, 49.4437081 8.7590947, 49.4213792 8.7463131, 49.4143929 8.7631903, 49.4078072 8.7077293, 49.4127417 8.7657609 +14 +10 +49.4081527 8.6735594, 49.4136373 8.6927118, 49.4095406 8.7032850, 49.4114223 8.7106815, 49.3813154 8.6894351, 49.4028742 8.6919803, 49.4047754 8.6846789, 49.3654480 8.6869739 +0.75472968250310635 +yes +48.8907119 2.3781803 +M & D`s Theme Park, Active Kid Adventure Park, Loudon Castle +Play Castle / Magic Castle, Park Aquatico, Frontier Town, Heritage USA, Great Island Science and Adventure Park, ehem. Spreepark, Six Flags New Orleans (Historical), Ancien Parc Mirapolis, Fun Town, Faliraki Lunapark, Городской парк, Ruins of Mr Marvel's Fun Park, Wonderland, Holy Land USA, Fun Park Fyn +48.8517580 2.3565980, 48.8435991 2.3495369, 48.8443095 2.3492103, 48.8530106 2.3457721, 48.8532232 2.3449207, 48.8396212 2.3497285, 48.8543470 2.3717003, 48.8692308 2.2856346, 48.8815762 2.3163770 +yes +6 +Kurpfälzisches Museum, Heidelberg Marriott Hotel, S-Printing Horse, IBIS, Stadtansicht von Matthäus Merian, Goldener Falke, Hotel zum Ritter St. Georg, Europäischer Hof, Catenan, Dem Lebendigen Geist, Reisebüro Bechtel, Landcafé Gästehaus Walnuss, Qube Hotel, Bunsenstatue, Kasse, Scheffelterrasse, NH Heidelberg, Hotel Kulturbrauerei Heidelberg, Hotel Holländer Hof, Arthotel Heidelberg, Hotel Backmulde, Hip Hotel, Myxomatose-Hase, Der Zeitungsleser, Wäscherinnenbrunnen, Bergheim 41 - Hotel im Alten Hallenbad, Große Grotte, Dienstmann Muck, Holiday Inn Express Heidelberg City Centre, Hommage an Goethe, Jugendherberge Heidelberg International, Karlstor, Carl Bosch Museum, Heidelberg Suites, Crowne Plaza Heidelberg, Leonardo Hotel Heidelberg, Waldpiraten Camp, Alte Brücke, Museum am Ginkgo, Elisabethentor, Neu Heidelberg, Hotel ISG, Crowne Plaza Heidelberg, Jugendherberge Heidelberg International and 49.4114718 8.7028414, 49.4091649 8.6726851, 49.4048641 8.6772256, 49.4150555 8.6716160, 49.4033496 8.6774778, 49.4152002 8.7091846, 49.4118757 8.7108162, 49.4117371 8.7091875, 49.4079388 8.6952668, 49.4171164 8.6729011, 49.4167279 8.6721344, 49.4277422 8.6844557, 49.4182219 8.5960910, 49.4080762 8.6812135, 49.4107178 8.6980284, 49.4149294 8.6640840, 49.4124856 8.7129396, 49.4121179 8.7180590, 49.4073921 8.6825502, 49.4131432 8.7133745, 49.4131065 8.7092091, 49.4095865 8.7066610, 49.4121564 8.7037030, 49.4115410 8.7046342, 49.4179402 8.6696532, 49.4180276 8.6704533, 49.4166963 8.6728921, 49.4097773 8.6939787, 49.4157564 8.7618968, 49.4162359 8.7623421, 49.4187291 8.7567160, 49.4083367 8.6887571, 49.4101656 8.7193309, 49.4127828 8.7178451, 49.4040886 8.6761244, 49.4151549 8.7088601, 49.4058252 8.6861495, 49.4094742 8.7169174, 49.4067980 8.6855640, 49.4071483 8.6864828, 49.4180801 8.6695142, 49.4162564 8.6598696, 49.4141369 8.7180619, 49.4154642 8.7301120, 49.4151692 8.7066598, 49.4065332 8.6919726, 49.3870250 8.6611599, 49.3864727 8.6987364, 49.4142413 8.7095334, 49.4154357 8.7295799, 49.4097529 8.7145291, 49.4006254 8.6417864, 49.3704338 8.7057626, 49.4067729 8.6917906, 49.4162402 8.6597540 +55.9516586 -3.1968492, 55.9899700 -3.3959164, 55.9498298 -3.1876708, 55.9483392 -3.1987455, 55.9874972 -3.4037961, 55.9539273 -3.1922043, 55.9902127 -3.3859837, 55.9906294 -3.3854450, 55.9450120 -3.1915042, 55.9521101 -3.1881430, 55.9471021 -3.1971869, 55.9906129 -3.3848526, 55.9504252 -3.2001729, 55.9505066 -3.1997917, 55.9486422 -3.1962925, 55.9487023 -3.1964050, 55.9479442 -3.2034814, 55.9501160 -3.2050638 +49.4047830 8.6748233, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349 +O2 mobile 'phones, EE, Carphone Warehouse, O2, Phones 4 U, O2, EE, Vodafone, 3 Store, Carphone Warehouse, Three, O2, EE, Samsung, EE, O2, Carphone Warehouse, EE, O2, 3 Store, Carphone Warehouse, EE, fone customize, AA Bargain Store, Adeel, Repair Centre, The Phone Box, Fones 2 You, Mac's Audios, 1-Tech, Mobile Care Point, Vodafone, Carphone Warehouse +St Margaret's Well, St Anthony's Well, Well, Well, Well, Well, Carlops Drinking Fountain, Well +108 +55.9849796 -3.1929699 +Schwan Apotheke +55.9545272 -3.4038103, 55.9848485 -3.4000740, 55.9895563 -3.3951093, 55.9494846 -3.2921322, 55.9263848 -3.3788125, 55.9087627 -3.3266637, 55.9776103 -3.2998329, 55.9242973 -3.3802986 +4 +22 +yes +7 +fr:Pech de Bugarach, ca:Carlit, ca:Montfalgars, ca:Pic d'Eina, ca:Pic de Noufonts, ca:Pic de Noucreus, ca:Puigpedrós, ca:Pic de la Dona, ca:Tosseta de l'Esquella, ca:Pic de Finestrelles, ca:Puig Peric, ca:Pic de Portapàs, ca:Puig de Tres Vents, ca:Roc del Pou, ca:Puig de Coma Ermada (Setcases), fr:Salasc, ca:Puig d'Ombriaga, ca:Pic de l'Infern, ca:Pic dels Gorgs (Conflent), ca:Comanegra, ca:Puig de la Llibertat, ca:Puig Peric, ca:Roc de la Campana, ca:Puig de les Pedrisses, ca:Roc de la Sentinella, ca:Puig del Boixer, ca:Puig Negre, ca:Puig Forcadell, ca:Puig Forcat, ca:Puig Neulós, ca:Puig de Calmelles, ca:Puig de la Puja, ca:Puig dels Pruners +55.9358156 -3.2103653 +yes +49.4141949 8.6492596, 49.4249111 8.6599633, 49.4225922 8.6610898, 49.4219827 8.6614068, 49.4211061 8.6602870, 49.4214429 8.6617205, 49.4246509 8.6581222, 49.4262527 8.6639370, 49.4313712 8.7044406, 49.3766520 8.6808039, 49.3697672 8.7065909, 49.3914129 8.6717410, 49.4251190 8.7424393, 49.4005850 8.6442141, 49.4242274 8.6810082, 49.4145161 8.6481333, 49.4145807 8.6502220, 49.4149318 8.6512324, 49.3966637 8.6732063, 49.3971476 8.6732324, 49.3916938 8.6839480, 49.3968837 8.6544104, 49.3739291 8.6752906, 49.3752173 8.6756735, 49.3735327 8.7051808, 49.4097428 8.7101158, 49.3756496 8.6793690, 49.3837586 8.6829733, 49.4066140 8.6679554, 49.3932939 8.6684461, 49.3896124 8.6636980, 49.3905297 8.6647270, 49.3896390 8.6650346, 49.3640663 8.7010093, 49.3697672 8.7065909, 49.3909393 8.6664585, 49.4095754 8.6826250, 49.3925312 8.6704324, 49.3963071 8.6870083, 49.3837961 8.6623413, 49.3839957 8.6617176, 49.3963303 8.6519757, 49.4176154 8.6501589, 49.3970830 8.6531353, 49.4102390 8.7705079, 49.3802540 8.6911629, 49.3739883 8.6762475, 49.3923829 8.6822201, 49.3881369 8.6632941, 49.3914253 8.6716414, 49.3913986 8.6718394, 49.3769314 8.6774682, 49.3765788 8.6774418, 49.4289729 8.7487865, 49.4452550 8.7637570, 49.4220208 8.6778853, 49.3729768 8.6873389, 49.4209557 8.6602654, 49.4262584 8.6638649, 49.3933288 8.6683994, 49.3970682 8.6531104, 49.4102852 8.7704476, 49.3752194 8.6756422, 49.4148634 8.6509295 +2 +http://www.carondebeaumarchais.com/, http://www.paris-hotel-lion.com, http://edenhotel-montmartre.com, http://www.solmelia.com, http://www.accorhotels.com/fr/hotel-1400-ibis-paris-tour-eiffel-cambronne-15eme/index.shtml, http://www.citadines.com, http://www.hotelbelorangerparis.com/, http://www.hovicha.com, http://hallehotel.fr/, http://www.bestwestern-folkestoneopera.com/, http://www.hotelsydneyopera.com/, http://lewaltparis.com/fr, http://www.pershinghall.com, http://hotelmonnalisa.com/fr, http://www.hotel-faubourg-216-214-paris.federal-hotel.com/, http://www.marcianohotel-garedunord.com, http://www.paris-hotel-americain.com/, http://www.hotelgeorgette.com, http://www.raphael-hotel.com/, http://www.colordesign-hotel-paris.com, http://www.foch-paris-hotel.com/, http://www.hotel-studio.com/, http://hotelderbyalma.com/fr, http://www.hotel-leswann.com/, http://www.astotel.com/hotel-acadia-opera-paris.php, http://www.hotelroncerayopera.fr, http://www.hoteldamiens.com/, http://www.paris-hotel-desarts.com, http://www.hotel-delos-vaugirard-paris.com/, avalonparis.com, www.paris-saint-honore.com, http://www.hipotel.info/fr/hipotel-paris-nation, hotel-11.html, www.parishotellittleregina.com/, http://www.plaza-opera-paris.com/, http://www.villaoperalamartineparis.com/, http://www.hotel-montmartre-duperre.com, http://www.hotel-splendid-paris.com, http://www.novotel.com/fr/hotel-1834-novotel-paris-porte-d-orleans, http://www.shangri-la.com/paris, http://www.alesia-paris-hotel.com, http://www.61-paris-nation-hotel.com, http://www.amhotelitalie.com, http://hotelarian.com, http://www.hotel-meridional-paris.com/, http://www.pvhotel.com, http://www.clarisse-paris-hotel.com, http://parisportedeversailles.medianhotels.com, http://www.villa-royale-montsouris-paris.com, http://www.hotelvirgina.com, http://www.parishotelmontsouris.com, http://www.cecil-hotel-montparnasse.com, http://www.parc-hotel-paris.com, http://www.hotelduparcstcharles.com, http://www.sourcehotel.fr, http://www.hotel-turenne.com, http://www.hotel-petit-belloy-saint-germain.com/, http://www.hotel-paris-belloy.com/, http://www.cordelia-paris-hotel.com/, http://www.astotel.com/hotel-bergere-opera-paris.php, http://www.jardindevilliers.com, http://www.pavillon-monceau-etoile.com, http://www.leshotelsdeparis.com/fr/nos-hotels/fiche/20/pavillon-villiers-etoile.html, www.beausejour-montmartre.com, http://lemarquisparis.com/fr, http://www.hotelroyalsaintmichel.com/, http://www.hotelchopin.fr/, www.hotelparispaix.com, http://www.perreyve-hotel-paris-luxembourg.com, http://www.hoteldelavenir.com/fr/, http://www.hotel-istria-paris.com/, http://www.paris-hotel-lavallee.com, http://hotellabourdonnais.fr/, http://www.villa-montparnasse.com/, http://www.accorhotels.com/de/hotel-8465-ibis-styles-paris-pigalle-montmartre/index.shtml, www.hotelfertel.com, http://www.hotelnovanox.com/, http://www.radissonblu.com/dokhanhotel-paristrocadero, www.academiehotel.com, http://www.hoteldutriangledor.com/, http://www.hoteldesers-paris.com, http://www.hotelbelami-paris.com, http://www.hoteledouard7-paris.com, http://paris.peninsula.com, http://www.amadeus-hotel-paris.com/, http://www.pinkhotel.fr/en, hotelajiel.com, http://lerobinetdor.com, http://www.hoteldevenise.fr/, http://www.hotel-josephine.com, http://www.kipling-hotel.com/, http://www.midi-hotel-paris.com/, www.hotel-bb.com/fr/-/hotelByName.htm?id=4560, http://www.hotelelyseesmonceau.com/, http://www.hotelneworient.com/, http://www.timhotel.com/fr/nos-hotels-paris-opera-st-lazare.htm, http://www.fred-hotel.com/, www.mltr.fr/en/, http://www.hotelsophiegermain.com/, http://www.hotel-paris-saint-germain.com/, http://www.hoteltourmaubourgparis.com/, http://hotelbearnais.e-monsite.com/, http://hotel-mimosa.parishotelinn.com/, http://www.new-hotel.com/fr/hotels-paris/candide, http://hotel-paris-rougemont.com, www.hotel-bresil-opera.com, http://www.hdroubaix.fr/, http://1eretage.com, http://www.splendid-hotel-paris.com/, http://www.hotelalyss.fr/, novotelparis.com, http://www.pullmanhotels.com/, http://www.timhotel.com/, http://www.hotel-diana-paris.com/, http://www.hotelpratic.com, http://www.hotel-bastille-speria.com/, http://www.paris-hotel-senlis.com/, https://www.facebook.com/pages/H%C3%B4tel-Pavillon-Op%C3%A9ra/196645590444280, http://www.bristolnord.fr/, http://www.hotel-provinces-opera.com/fr/hotel-provinces-opera-paris/index/index, http://www.hotelmontanalafayette.com/, http://www.hoteldescomedies.com/, http://www.st-christophers.co.uk, http://www.albert1erhotel.com/, http://www.hotelhorloge.fr/, http://www.ibishotel.com/gb/hotel-1399-ibis-paris-bastille-opera-11eme/index.shtml, http://www.choicehotels.fr/fr/comfort-hotel-fr260, http://www.ibishotel.com/fr/hotel-1401-ibis-paris-la-villette-cite-des-sciences-19eme/location.shtml, http://www.hoteloperamarignyparis.com, http://www.hotelducollectionneur.com/, http://www.hotel-rotary.fr/, http://www.lecardinal.fr/, http://www.hotel-touring.fr/, www.hotel-monterosa-opera.com, http://www.hotelvernet.com/, http://www.lilas-gambetta.com/, http://eldoradohotel.fr/notre-hotel/, http://www.mercure.com/fr/hotel-0934-mercure-paris-austerlitz-bibliotheque/index.shtml, hotelroyalfromentin.com, http://www.solarhotel.fr/, http://www.paris-orleans-hotel.com, http://www.acropole-paris-hotel.com/, http://www.leshotelsdeparis.com/fr/hotel/paris-batignolles-villa-eugenie.8.html, www.hotel-opera-batignolles-paris.com, http://www.accorhotels.com/fr/hotel-3546-novotel-paris-tour-eiffel/, http://www.accorhotels.com/fr/hotel-6790-adagio-paris-tour-eiffel/, http://www.hotel-lilas-blanc-paris.fr/, http://www.hotel-hor.com/, http://www.paris-hotel-tourville.com/fr +yes +Crédit Agricole, Société Générale, Société Générale, Société Générale, LCL, Société Générale, LCL, Crédit Agricole, Caisse d'Épargne, LCL, Société Générale, Caisses Régionales de Crédit Agricole, Société Générale, Société Générale, Société Générale, Crédit Agricole, BNP Paribas, Société Générale, BNP Paribas, BNP Paribas, Société Générale, BNP Paribas, BNP Paribas, Crédit Agricole, Caisse d'Épargne, Société Générale, LCL, Caisse d'Épargne, Caisse d'Épargne, CIC, BNP Paribas, BNP Paribas, BNP Paribas, LCL, Caisse d'Épargne, LCL, LCL, Bred, LCL, Société Générale, Société Générale, Crédit Agricole, Société Générale, BNP Paribas, HSBC, LCL, LCL, LCL, BNP Paribas, CIC, Société Générale, LCL, BNP Paribas, Caisse d'Épargne, BRED, LCL, Société Générale, BNP Paribas, HSBC, Crédit Agricole, Caisse d'Épargne, LCL, Bred Banque Populaire, Société Générale, Crédit Agricole, HSBC, BNP Paribas, Caisse d'Épargne, LCL, Crédit Agricole, LCL, BNP Paribas, Crédit Agricole, BNP Paribas, BNP Paribas, BNP Paribas, Crédit Agricole, Société Générale, BNP Paribas, LCL, LCL, BNP Paribas, LCL, Caisse d'Épargne, Crédit Mutuel, LCL, Crédit Mutuel, Société Générale, Société Générale, Crédit Mutuel, Caisse d'Épargne, LCL, Société Générale, BNP Paribas, Société Générale, LCL, Crédit Agricole, BNP Paribas, CIC, Crédit Mutuel, BPE, Crédit Agricole, CIC, Crédit Agricole, LCL, CIC, CIC, BNP Paribas, Société Générale, Caisse d'Épargne, Caisse d'Épargne, BNP Paribas, CIC, CIC, BNP Paribas, Société Générale, Société Générale, Caisse d'Épargne, LCL, BNP Paribas, Société Générale, BNP Paribas, Société Générale, Caisse d'Épargne, BNP Paribas, CIC, BRED, Société Générale, Crédit Agricole, BNP Paribas, BNP Paribas, CIC, BNP Paribas, CIC, CIC, Crédit Agricole, LCL, Caisse d'Épargne, Crédit Agricole, BNP Paribas, LCL, Société Générale, LCL, Société Générale, Caisse d'Épargne, CIC, Société Générale, BNP Paribas, CIC, BNP Paribas, CIC, BNP Paribas, LCL, Crédit Mutuel, Société Générale, LCL, Société Générale, BNP Paribas, CIC, BNP Paribas, Caisse d'Épargne, Crédit Mutuel, Crédit Agricole, CIC, BNP Paribas, LCL, LCL, CIC, Société Générale, BNP Paribas, BNP Paribas, Société Générale, BNP Paribas, CIC, LCL, BNP Paribas, CIC, BNP Paribas, BNP Paribas, Crédit Agricole, CIC, Crédit du Nord, Caisse d'Épargne, Société Générale, CIC, Caisse d'Épargne, Société Générale, Société Générale, BNP Paribas, BNP Paribas, Société Générale, CIC, Crédit Agricole, LCL, BNP Paribas, CIC, Caisse d'Épargne, BNP Paribas, BNP Paribas, BNP Paribas, LCL, Crédit Agricole, CIC, LCL, Société Générale, LCL, BNP Paribas, BNP Paribas, Société Générale, BNP Paribas, BNP Paribas, Banque Populaire, LCL, LCL, BNP Paribas, LCL, BNP Paribas, BNP Paribas, Crédit Mutuel, BNP Paribas, CIC, Société Générale, LCL, LCL, CIC, Société Générale, BNP Paribas, LCL, Caisse d'Épargne, BRED, Société Générale, BNP Paribas, LCL, LCL, BNP Paribas, BNP Paribas, BNP Paribas, LCL, Société Générale, LCL, Caisse d'Épargne, Crédit Agricole, BNP Paribas, BNP Paribas, Société Générale, CIC, Crédit Agricole, Crédit Agricole, Crédit Agricole, LCL, Société Générale, Société Générale, LCL, CIC, Crédit Agricole, LCL, LCL, Société Générale, Société Générale, BNP Paribas, LCL, Société Générale, LCL, BNP Paribas, BPCE, Crédit Mutuel, Société Générale, HSBC, Société Générale, CIC, LCL, LCL, CIC, Caisse d'Épargne, BNP Paribas, BNP Paribas, Société Générale, BRED, CIC, CIC, Crédit du Nord, Crédit Mutuel, LCL, LCL, LCL, LCL, BNP Paribas, LCL, BNP Paribas, Banque Populaire, Crédit du Nord, Société Générale, LCL, CIC, Crédit du Nord, Société Générale, Caisse d'Épargne, Société Générale, BNP Paribas, Crédit du Nord, Caisse d'Épargne, Crédit inductriel et commercial, BPCE, Crédit agricole SA, Caisses Régionales de Crédit Agricole, Crédit Mutuel Centre Est Europe, Crédit mutuel Centre Est Europe, LCL, Banque populaire, HSBC, Crédit du Nord, HSBC, LCL, Banque Populaire, BNP Paribas, Crédit Mutuel, HSBC, LCL, CIC, BPE, Banque Palatine, CIC, BNP Paribas, Caisse d'épargne, Crédit Agricole, LCL, LCL, Patrick Gouin, Crédit Agricole, HSBC, Banque Palatine, LCL, Banque Populaire, Crédit Mutuel, CIC, Caisse d'Epargne, LCL, Banque Populaire, Banque Populaire, Banque Populaire, Caudine Faidutti, Crédit Mutuel, BNP Paribas, LCL, BNP Paribas, BNP Paribas, Caisse d'Épargne, BRED, Barclays +30 +60 +55.9533748 -3.1895989 +yes +0 +no +Zanzibar Farm Airport, Brennan Farm Airport, Paris Municipal Airport, Samuel L Clemens Memorial Airport, Brazeale Farm Airport, Lake Village Airport, Henry County Airport, Stewart Airport, Cox Field, Flying Tigers Airport, Burress Airport, Paris Municipal Airport, Bear Lake County Airport +15 +no +55.9506888 -3.2047906 +yes +yes +2192 +50 mph, 70 mph, 70 mph, 70 mph, 70 mph, 70 mph, 70 mph, 70 mph, 70 mph, 70 mph, 70 mph, 70 mph, 40 mph, 70 mph, 70 mph, 50 mph, 70 mph, 50 mph, 70 mph, 70 mph +yes +10 +549 +steak house, italian, chinese, sudanese, indian, thai, spanish, japanese, regional, cantonese, pie, american, seafood, pizza, french, greek, vegetarian, Japanese, mexican, mongolian, kurdish, Lebanese, middle eastern, noodle, asian, turkish, Cantonese, Malaysian, korean, brazilian, fish, international, sushi, burger, arab, vietnamese, scottish, latin american, caribbean, chicken, african, tapas, malaysian, Scotish, Punjabi, british, portuguese, soup, mediterranean, Middle Eastern, fish and chips, nepali, nepalese, sandwich, kebab, curry, coffee shop +538 +55.9267165 -3.2386629, 55.9389764 -3.2324471, 55.9145033 -3.1296918, 55.9317481 -3.1148993, 55.9618151 -3.1653433, 55.9086969 -3.3166139, 55.9358069 -3.1285761, 55.9285078 -3.1536537, 55.9280931 -3.1542480, 55.9289856 -3.1524120, 55.9296930 -3.1573543, 55.9308854 -3.1490330, 55.9313446 -3.1501810, 55.9305381 -3.1507475, 55.9301365 -3.1519234, 55.9296254 -3.1163699, 55.9300136 -3.1147841, 55.9295135 -3.1143678, 55.9290339 -3.1140352, 55.9291168 -3.1159858, 55.9286204 -3.1155931, 55.9281972 -3.1171037, 55.9381802 -3.1376916, 55.9374343 -3.1178323, 55.9381022 -3.1166032, 55.9377101 -3.1207816, 55.9395918 -3.1433642, 55.9399577 -3.1399180, 55.9238265 -3.1591952, 55.9285647 -3.1337554, 55.9290844 -3.1371814, 55.9297626 -3.1373543, 55.9285023 -3.1366649, 55.9350829 -3.2524329, 55.9347267 -3.2533165, 55.9338964 -3.2544788, 55.9690552 -3.1927289, 55.9225182 -3.3763378, 55.9078363 -3.3154730, 55.9082957 -3.3144976, 55.9237103 -3.2169773, 55.9628071 -3.2843326, 55.9567295 -3.1549851, 55.9570183 -3.1585829, 55.9389766 -3.2324281, 55.9617712 -3.1652776, 55.9705936 -3.1599562, 55.9696930 -3.1649144, 55.9716069 -3.1643645, 55.9561343 -3.1183817, 55.9380999 -3.2729865, 55.9391695 -3.2856891, 55.9383416 -3.2718088, 55.9382288 -3.2723445, 55.9596231 -3.1580900, 55.9653178 -3.1368407, 55.9660030 -3.1385663, 55.9656849 -3.1377647, 55.9666198 -3.1395795, 55.9707140 -3.1621777, 55.9050822 -3.1576990, 55.9355775 -3.2509489, 55.9362971 -3.2489990, 55.9349382 -3.2502977, 55.9340731 -3.2519958, 55.9359295 -3.2498294, 55.9036470 -3.1544912, 55.9038978 -3.1545429, 55.9040532 -3.1549998, 55.9036002 -3.1541604, 55.9038281 -3.1540607, 55.9040058 -3.1539823, 55.9040754 -3.1544647, 55.9339860 -3.2908522, 55.9335477 -3.2911304, 55.9338068 -3.2899009, 55.9333632 -3.2901748, 55.9323425 -3.2898388, 55.8956129 -3.3229484, 55.8958402 -3.3216003, 55.8878435 -3.3373675, 55.9388790 -3.2733983, 55.9635581 -3.2781359, 55.9108498 -3.1647680, 55.9575364 -3.4153195, 55.9588764 -3.4147772, 55.9584655 -3.4151246, 55.9585135 -3.4153794, 55.9076485 -3.1762454, 55.9717593 -3.2318136, 55.9761479 -3.2589130, 55.9715342 -3.2331251, 55.9147009 -3.2524840, 55.9396503 -3.3920479, 55.9594276 -3.1759865, 55.9844680 -3.3866953, 55.9838114 -3.3875097, 55.9844743 -3.3869816, 55.9844589 -3.3864046, 55.9844499 -3.3861140, 55.9091708 -3.2372779, 55.9103212 -3.2272852, 55.9105467 -3.2264737, 55.9107613 -3.2256868, 55.9709506 -3.2329276 +876 +46 +yes +Tierheim Heidelberg +McDonald's, Bread Meats Bread, Wannaburger, Bell's Diner, Burger Meats Bun, Burger King, Burger +49.4238771 8.7063851 +2217 +yes and 19 +no +16 +55.9031798 -3.2852677, 55.9073679 -3.2580475, 55.9076454 -3.2556144, 55.9082967 -3.3202293, 55.9101031 -3.3218843, 55.9102819 -3.3218516, 55.8838914 -3.3385867, 55.8840866 -3.3391023, 55.8972738 -3.2040292, 55.9045849 -3.2066586 +6 +yes +yes +11 +48.8259806 2.3462229, 48.8456169 2.2872280, 48.8458916 2.2869967, 48.8461688 2.2871428, 48.8461114 2.2873693, 48.8460334 2.2876230, 48.8458951 2.2877900, 48.8945404 2.3437266, 48.8945867 2.3435634, 48.8286973 2.2729208, 48.8938893 2.3474384, 48.8406328 2.2820860, 48.8402998 2.2843573, 48.8396360 2.2833280, 48.8381144 2.2816798, 48.8377527 2.2807442, 48.8368318 2.2804326, 48.8371087 2.2807889, 48.8560161 2.3425271, 48.8354274 2.2891935, 48.8356940 2.2884563, 48.8355748 2.2885189, 48.8339470 2.2892638, 48.8359679 2.2915532, 48.8342477 2.2892262, 48.8352347 2.2914795, 48.8347999 2.2888232, 48.8352115 2.2886958, 48.8341796 2.2893277, 48.8353624 2.2891574, 48.8358336 2.2884148, 48.8340784 2.2889956, 48.8348947 2.2914239, 48.8354999 2.2906955, 48.8343212 2.2884484, 48.8341989 2.2872303, 48.8340298 2.2895416, 48.8353407 2.2913582, 48.8340810 2.2872939, 48.8350083 2.2912932, 48.8350881 2.2911310, 48.8353351 2.2886642, 48.8354938 2.2892404, 48.8344281 2.2888052, 48.8342630 2.2885863, 48.8352570 2.2893491, 48.8344113 2.2889885, 48.8350509 2.2887213, 48.8341310 2.2870379, 48.8355683 2.2893317, 48.8339501 2.2896850, 48.8346012 2.2885721, 48.8343312 2.2891146, 48.8356876 2.2894299, 48.8351103 2.2888302, 48.8351091 2.2877154, 48.8343517 2.2881843, 48.8350188 2.2907651, 48.8339247 2.2868767, 48.8338089 2.2866979, 48.8351414 2.2892600, 48.8357676 2.2904412, 48.8337879 2.2895489, 48.8341575 2.2888443, 48.8349264 2.2889776, 48.8345246 2.2887347, 48.8357278 2.2899455, 48.8341315 2.2894008, 48.8342180 2.2887046, 48.8352637 2.2909341, 48.8346952 2.2887176, 48.8354556 2.2885926, 48.8337467 2.2865260, 48.8375350 2.2913350, 48.8336777 2.2872161, 48.8335705 2.2869127, 48.8337434 2.2875413, 48.8369196 2.2921182, 48.8370113 2.2953749, 48.8368855 2.2923268, 48.8365647 2.2944093, 48.8364889 2.2928332, 48.8363937 2.2929303, 48.8367817 2.2921378, 48.8355582 2.2922200, 48.8363125 2.2930626, 48.8366181 2.2926689, 48.8366064 2.2923064, 48.8357751 2.2925615, 48.8359648 2.2920460, 48.8365265 2.2927826, 48.8365419 2.2923862, 48.8369093 2.2927447, 48.8354946 2.2924894, 48.8371298 2.2946386, 48.8370175 2.2919841, 48.8362209 2.2932762, 48.8364400 2.2928974, 48.8371063 2.2918600, 48.8366669 2.2926054, 48.8367129 2.2925315, 48.8355570 2.2924077, 48.8362692 2.2931276, 48.8357309 2.2919526, 48.8368092 2.2924115, 48.8358821 2.2922313, 48.8363528 2.2930114, 48.8356847 2.2927260, 48.8372278 2.2923370, 48.8364767 2.2925068, 48.8366966 2.2921926, 48.8356536 2.2920669, 48.8365779 2.2927197, 48.8373276 2.2915933, 48.8371816 2.2917254, 48.8750728 2.3731021, 48.8760309 2.3717197, 48.8732236 2.3751191, 48.8703749 2.3542325, 48.8727285 2.3755238, 48.8728549 2.3755294, 48.8759551 2.3721233, 48.8731329 2.3752200, 48.8736239 2.3747267, 48.8731846 2.3643768, 48.8789628 2.3681993, 48.8750057 2.3732187, 48.8733880 2.3750803, 48.8791741 2.3663545, 48.8799803 2.3666934, 48.8762643 2.3718037, 48.8727083 2.3757234, 48.8798303 2.3667814, 48.8786278 2.3674630, 48.8758241 2.3712670, 48.8794612 2.3667058, 48.8760324 2.3719752, 48.8748479 2.3734018, 48.8726560 2.3758966, 48.8789495 2.3661867, 48.8730396 2.3753227, 48.8796490 2.3667502, 48.8800488 2.3665663, 48.8715401 2.3682094, 48.8723941 2.3760693, 48.8729477 2.3754256, 48.8732829 2.3749396, 48.8728167 2.3757110, 48.8743519 2.3755912, 48.8727816 2.3775184, 48.8733773 2.3773312, 48.8743842 2.3751204, 48.8733155 2.3776609, 48.8754303 2.3736684, 48.8744985 2.3764230, 48.8737831 2.3773413, 48.8758646 2.3780886, 48.8743705 2.3753459, 48.8755408 2.3735518, 48.8755528 2.3737411, 48.8752275 2.3784919, 48.8760670 2.3729147, 48.8725722 2.3779060, 48.8747812 2.3759365, 48.8794798 2.3917460, 48.8747639 2.3778415, 48.8741536 2.3753826, 48.8764279 2.3727570, 48.8730829 2.3790730, 48.8744727 2.3757081, 48.8728337 2.3780212, 48.8739018 2.3778875, 48.8752616 2.3739602, 48.8757002 2.3733681, 48.8746170 2.3758549, 48.8753775 2.3740718, 48.8742580 2.3754869, 48.8729768 2.3785053, 48.8716520 2.3769873, 48.8706010 2.3780988, 48.8707685 2.3777620, 48.8572139 2.3832347, 48.8650822 2.3661184, 48.8574662 2.3837533, 48.8716433 2.3765517, 48.8516085 2.3760189, 48.8554810 2.3772626, 48.8864767 2.3827802, 48.8679595 2.3233258, 48.8716293 2.3779023, 48.8712238 2.3785218, 48.8711679 2.3783238, 48.8724152 2.3787691, 48.8718515 2.3782246, 48.8717237 2.3783347, 48.8708258 2.3788393, 48.8710347 2.3787647, 48.8719666 2.3781561, 48.8699381 2.3800189, 48.8723723 2.3789661, 48.8721369 2.3776944, 48.8718776 2.3785293, 48.8726957 2.3802680, 48.8713616 2.3785579, 48.8708933 2.3790697, 48.8719595 2.3775405, 48.8709790 2.3787026, 48.8709614 2.3792937, 48.8727991 2.3801137, 48.8722649 2.3780412, 48.8709856 2.3785552, 48.8710744 2.3784523, 48.8717065 2.3786335, 48.8714975 2.3784088, 48.8725577 2.3803377, 48.8711203 2.3789885, 48.8536747 2.4053296, 48.8586453 2.4019021, 48.8518072 2.4124809, 48.8531145 2.4036646, 48.8578352 2.4000440, 48.8589497 2.4088774, 48.8538663 2.4047101, 48.8552754 2.4007123, 48.8588681 2.4012265, 48.8590547 2.4025125, 48.8541262 2.4051957, 48.8513132 2.4124333, 48.8582204 2.3997539, 48.8582589 2.4007504, 48.8583258 2.4009450, 48.8545852 2.4008607, 48.8526913 2.4118934, 48.8623272 2.4101654, 48.8534197 2.4046530, 48.8586663 2.4014427, 48.8587829 2.4029033, 48.8540415 2.4054174, 48.8554223 2.4085278, 48.8587366 2.4011485, 48.8591422 2.4024156, 48.8578048 2.3927276, 48.8575845 2.3995526, 48.8581638 2.4006121, 48.8581343 2.3995216, 48.8587445 2.4009099, 48.8534712 2.4037410, 48.8581692 2.3989546, 48.8585714 2.4008779, 48.8578971 2.4002009, 48.8577393 2.3999088, 48.8591035 2.4013432, 48.8584365 2.4010685, 48.8578427 2.3994065, 48.8591071 2.4018052, 48.8580252 2.4003632, 48.8532348 2.4055479, 48.8590228 2.4016040, 48.8542374 2.4042895, 48.8583058 2.4003619, 48.8582833 2.3988622, 48.8545006 2.4007407, 48.8589422 2.4026958, 48.8643045 2.3993897, 48.8581984 2.4001526, 48.8545367 2.4052799, 48.8515056 2.4120751, 48.8576055 2.3931989, 48.8524695 2.4123633, 48.8590370 2.4012515, 48.8585512 2.4068790, 48.8539310 2.4051830, 48.8583902 2.4005133, 48.8580786 2.4076181, 48.8593004 2.4078997, 48.8531478 2.4049036, 48.8606568 2.4018470, 48.8533070 2.4118122, 48.8586158 2.4030631, 48.8538479 2.4049766, 48.8543924 2.4053763, 48.8508785 2.4116177, 48.8587420 2.4059272, 48.8541953 2.4045624, 48.8537836 2.4048138, 48.8576761 2.3997142, 48.8529772 2.4121920, 48.8583789 2.4013933, 48.8581764 2.4023519, 48.8587069 2.4016236, 48.8520901 2.4120013, 48.8587301 2.4020076, 48.8535306 2.4052930, 48.8868999 2.3556815, 48.8868397 2.3535733, 48.8799710 2.3668489, 48.8223527 2.3707128, 48.8224097 2.3695046, 48.8294398 2.3741712, 48.8228263 2.3716917, 48.8228048 2.3704376, 48.8228388 2.3695339, 48.8229668 2.3722639, 48.8227555 2.3709624, 48.8220709 2.3699905, 48.8230456 2.3726148, 48.8225893 2.3709731, 48.8246659 2.3675739, 48.8223500 2.3702531, 48.8375792 2.2918796, 48.8376900 2.2918232, 48.8317883 2.3378530, 48.8312318 2.3364978, 48.8297849 2.3306570, 48.8323782 2.3190588, 48.8318464 2.3204785, 48.8340640 2.3002838, 48.8340622 2.3008982, 48.8544572 2.2738459, 48.8914264 2.3616730, 48.8357490 2.2834497, 48.8357960 2.2845975, 48.8366264 2.2833601, 48.8357600 2.2860925, 48.8360655 2.2842645, 48.8366815 2.2835085, 48.8360570 2.2821210, 48.8366302 2.2836000, 48.8353570 2.2851005, 48.8361685 2.2864205, 48.8362375 2.2840533, 48.8367854 2.2843155, 48.8365994 2.2819655, 48.8352490 2.2851878, 48.8356380 2.2847705, 48.8365555 2.2836885, 48.8354955 2.2853870, 48.8371584 2.2838238, 48.8354250 2.2850228, 48.8362735 2.2826255, 48.8531773 2.4036029, 48.8536512 2.4044843, 48.8339022 2.2898349, 48.8358103 2.2918382, 48.8358773 2.2917189, 48.8540878 2.2899682, 48.8344297 2.2883294, 48.8350317 2.2885868, 48.8345622 2.2878795, 48.8346797 2.2880566, 48.8349371 2.2884518, 48.8348160 2.2882660, 48.8370509 2.2926787, 48.8371203 2.2924543, 48.8735939 2.3787795, 48.8865795 2.2862560, 48.8284544 2.2711488, 48.8282234 2.2718096, 48.8292333 2.2741387, 48.8284082 2.2724102, 48.8289689 2.2735589, 48.8906840 2.3312886, 48.8907742 2.3312960, 48.8916345 2.3631212, 48.8896273 2.3608608, 48.8627424 2.4085662, 48.8366915 2.2819093, 48.8369456 2.2829976, 48.8375484 2.2818108, 48.8363688 2.2811655, 48.8373703 2.2816463, 48.8374672 2.2817343, 48.8395842 2.2834488, 48.8357296 2.2834432, 48.8356900 2.2834710, 48.8404152 2.2824602, 48.8356754 2.2834246, 48.8358290 2.2829385, 48.8361395 2.2841886, 48.8365515 2.2835310, 48.8464460 2.2876737, 48.8372185 2.2862390, 48.8369510 2.2827549, 48.8369488 2.2828608, 48.8354141 2.2855175, 48.8355595 2.2846958, 48.8353937 2.2848900, 48.8324339 2.3195261, 48.8374995 2.2812255, 48.8376276 2.2809929, 48.8375720 2.2805654, 48.8378285 2.2810366, 48.8576363 2.4087780, 48.8583976 2.4082177, 48.8587785 2.4077670, 48.8375763 2.2810628, 48.8377174 2.2808375, 48.8375417 2.2811490, 48.8376679 2.2809007, 48.8743061 2.4017313, 48.8838481 2.3762235, 48.8875160 2.3339978, 48.8886201 2.3400907, 48.8291292 2.3571319, 48.8743242 2.3761774, 48.8741867 2.3780373, 48.8742276 2.3786006, 48.8744547 2.3790263, 48.8734422 2.3782165, 48.8742436 2.3794395, 48.8744079 2.3794233, 48.8732577 2.3786507, 48.8737785 2.3783430, 48.8728220 2.3788244, 48.8750362 2.3774754, 48.8747793 2.3767850, 48.8720580 2.3764041, 48.8754331 2.3782710, 48.8750060 2.3784490, 48.8751760 2.3781140, 48.8747156 2.3782683, 48.8711394 2.3786217, 48.8723736 2.3786244, 48.8770933 2.3862652, 48.8314447 2.3128228, 48.8724866 2.3800178, 48.8726500 2.3801350, 48.8756030 2.3778846, 48.8758054 2.3782566, 48.8760774 2.3781072, 48.8772202 2.3866952, 48.8757617 2.3719501, 48.8876996 2.3553049, 48.8870104 2.3538680, 48.8592910 2.3818271, 48.8479091 2.2987204, 48.8937456 2.3240391, 48.8941067 2.3242290, 48.8724443 2.3804222, 48.8567680 2.4073825, 48.8629514 2.2927868, 48.8869052 2.3558214, 48.8603321 2.4025489, 48.8722456 2.3801377 +yes +5 +43.6348557 3.8709154 +55.8955529 -3.2604957, 55.9772106 -3.2650677, 55.9047174 -3.1794599, 55.9122928 -3.4340796 +fr:Paris, en:Paris, Arkansas, en:Paris, Texas, en:Paris, Idaho, en:Paris, Illinois, en:Paris, Kentucky, en:Paris, Missouri, en:Paris, Tennessee +fr:Tour Eiffel +1 +EDCH, Lothian Animal Welfare Centre +144 +yes +48.8831159 2.3425480, 48.8865976 2.3588510, 48.8668168 2.3257587, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8717742 2.2984126, 48.8668308 2.3028826, 48.8686655 2.2984695, 48.8715217 2.3076937, 48.8884053 2.3785210, 48.8664199 2.2892440, 48.8604399 2.3007825, 48.8864077 2.2949505, 48.8710343 2.3234791, 48.8730243 2.3445449, 48.8606580 2.3469337, 48.8868980 2.3004690, 48.8683305 2.3330172, 48.8820490 2.3316649, 48.8731949 2.3435448, 48.8721229 2.3033103, 48.8723588 2.3088888, 48.8920470 2.3024290, 48.8609042 2.3467975, 48.8662424 2.3373468, 48.8664339 2.3251380, 48.8719873 2.3493219, 48.8737030 2.3201997, 48.8714238 2.3278025, 48.8713002 2.3277769, 48.8718146 2.3278778, 48.8778519 2.3276641, 48.8813884 2.3274308, 48.8814057 2.3282568, 48.8752556 2.2866823, 48.8704922 2.2798118, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8871244 2.3142231, 48.8870568 2.3143431, 48.8848968 2.3034428, 48.8802164 2.2842407 +9 +49.4028079 8.6877203, 49.4101353 8.6927154, 49.4099021 8.7003337 +yes +48.8454641 2.4140105 +1058 +yes and 13 +yes +48.8346251 2.2657680, 48.8315802 2.3158225, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8593908 2.3144172, 48.8299268 2.3465439, 48.8609726 2.2828299, 48.8563247 2.3152562, 48.8611046 2.3413657, 48.8475898 2.3031985, 48.8464653 2.2801018, 48.8804901 2.2865619, 48.8635857 2.2722338, 48.8408422 2.3172666, 48.8387525 2.2535353, 48.8281523 2.2728394, 48.8595020 2.3116861, 48.8364028 2.2775659, 48.8820806 2.3381707, 48.8519985 2.2908966, 48.8656358 2.2892405, 48.8797035 2.3026873, 48.8936152 2.3152934, 48.8522407 2.2805336, 48.9001725 2.3444887, 48.8711680 2.3244832, 48.8436106 2.3422313, 48.8233460 2.3160166, 48.8380740 2.3312952, 48.8449642 2.2715165, 48.8473675 2.2588537, 48.8532253 2.3080493, 48.8720375 2.2998901, 48.8738003 2.2922634, 48.8751861 2.3096416, 48.8380740 2.3312952, 48.8449642 2.2715165, 48.8473675 2.2588537, 48.8532253 2.3080493, 48.8720375 2.2998901, 48.8738003 2.2922634, 48.8751861 2.3096416, 48.8258806 2.3446643, 48.8937900 2.3314100, 48.8403571 2.3213304, 48.8873385 2.3222062, 48.8338034 2.2847592, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8206480 2.3248645, 48.8936129 2.3029112, 48.8455829 2.3086474 +no +49.3967232 8.6719507, 49.4045230 8.6499732, 49.4042523 8.6482760, 49.4005255 8.6416909, 49.4046222 8.6868381, 49.4032452 8.6845637, 49.3783665 8.6932651, 49.3778590 8.6930131, 49.3777697 8.6932265, 49.3876769 8.6645282, 49.3915440 8.6790012, 49.3793134 8.6732898, 49.4040525 8.6844956, 49.3994957 8.6878826, 49.4055996 8.6889278, 49.3813154 8.6894351, 49.3864285 8.6696286, 49.3773672 8.6667238, 49.3834643 8.6624283, 49.3974421 8.6480834, 49.4007776 8.6911061, 49.4035568 8.6922425, 49.4058460 8.6924951, 49.4055314 8.6924048, 49.4014846 8.6914932, 49.4000859 8.6904108, 49.3997565 8.6902626, 49.3995142 8.6850002, 49.3742086 8.7031163, 49.4041500 8.6845214, 49.4038715 8.6762894, 49.4003850 8.6920257, 49.4054553 8.6752473, 49.3975120 8.6522670, 49.3790377 8.6919226, 49.3786163 8.6868257, 49.3810339 8.6888988, 49.3799295 8.6843446, 49.3727648 8.7034774, 49.3744103 8.7047986, 49.3699337 8.6542672, 49.3787743 8.6924168, 49.3788201 8.6875397, 49.3670568 8.6855701, 49.3836445 8.6785428, 49.3845905 8.7090625, 49.3931903 8.6817010, 49.3801022 8.6812091, 49.3759036 8.6766890, 49.4016680 8.6740567, 49.3632402 8.6222259, 49.3772275 8.6672364, 49.3654480 8.6869739, 49.3865134 8.7038130, 49.3799233 8.6752091, 49.3796123 8.6875344, 49.3930474 8.6832081, 49.3998558 8.6384200, 49.3887612 8.6898215, 49.3896117 8.6900353, 49.3780880 8.6666402, 49.3791746 8.6705116 +Hope Cottage Nursery School, Little City Nursery, City Nursery, Little Monkeys Nursery, Colinton Private Nursery, Rainbow Kindergarten, Molly's Nursery, Heriot Hill Nursery, Strawberry Hill Nursery, Bruntsfield Nursery, Busy Bees Nursery, Childcair @ Quartermile, The Edinburgh Nursery, Annandale Nursery, The Edinburgh Nursery, High School Yards Nursery, Melville Street Nursery, Jigsaw Childcare, The Orchard Nursery, Grange Loan Nursery, Suffolk House Nursery, Mr. Squirrel's Nursery, Little Monkeys, Pinocchio's, Cherrytrees Children's Nursrey, Busy Bees Day Nursery, St Leonard's Nursery School, Queensferry Early Years Centre, Little Voices Nursery, Carrick Knowe Primary, Forbes Childrens Nursery, Baby Rainbow, Childsplay, Playdays, Chapter One Childcare, Forbes Childrens Nursery, Greenhill Montessori Nursery, Grassmarket Nursery, Kidzcare, Cameron House Nursery School, Priestfield House Nursery, Kirkliston Nursery, Start Bright Nursery, Mother Goose Nursery, Arcadia, Cherrytrees Children's Nursrey, Elsie Inglis Nursery and Preschool, Tower House Nursery, Headstart Nursery, Nippers Nursery, Granton Early Years Centre, Stanwell Nursery, Crewe Road Nursery +http://www.citycarclub.co.uk/locations/138/Cables-Wynd/, http://www.citycarclub.co.uk/locations/edinburgh-car-hire/81-granton-road/, http://www.citycarclub.co.uk/locations/edinburgh-car-hire/146-marchmont-crescent/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/, http://www.citycarclub.co.uk/ +55.9627310 -3.1774960, 55.9481181 -3.2945050 +55 +16 +yes and 3 +yes +Iwojima, Kokosinseln, Weihnachtsinsel, Bäreninsel, Kokos-Insel, Einsamkeit, Insel der Dreifaltigkeit, Tromelin, Clipperton-Insel, Bouvetinsel, Amsterdam-Insel, Sankt-Paul-Insel, Sankt Helena, Himmelfahrtsinsel, Südliche Shetlandinseln, Weihnachtsinsel, Atlassow-Insel, Peter-I.-Insel, Rudolf-Insel, Howlandinsel, Osterinsel, Robinsón Crusoe +2 +49.4238771 8.7063851 +La bobine de fil, Fresque du Demi-Millénaire - Part 2, Fresque Bottazzi, Le mur des Canuts, Fresque Musée T.Garnier 18 - Quartier des Etats-Unis, habitations en commun, Fresque Histoire des transports Lyonnais, Fresque "Lyon, la santé, la vie", Lyon et sa région, terre de l’humanisme, Lyon et sa région, terre de l’humanisme, Le mur du cinéma, Fresque de Gerland, La Fresque Lumineuse - La ville dans le futur, Fresque "Mur Démo", Fresque Musée T.Garnier 4 - Une Cité Industrielle, Fresque de Shangaï, Le Théâtre des Charpennes, Fresque Musée T.Garnier 17 - Abattoirs de la Mouche, Fresque Musée T.Garnier 1 - Annonce Musée, Fresque Musée T.Garnier 3 - Années 1900, Fresque Musée T.Garnier 19 - Cité idéale d'Egypte, Fresque Musée T.Garnier 23 - Cité idéale de Russie, Fresque Musée T.Garnier 20 - Cité idéale de l'Inde, Fresque Musée T.Garnier 22 - Cité idéale de la Côte d'Ivoire, Fresque Musée T.Garnier 24 - Cité Idéale des USA, Fresque Musée T.Garnier 21 - Cité idéale du Mexique, Fresque Musée T.Garnier 10 - Ecole, Fresque Musée T.Garnier 9 - Habitations, terrasse, Fresque Musée T.Garnier 12 - Etablissements sanitaires, Fresque Musée T.Garnier 7 - Habitations, ensemble citadin, Fresque Musée T.Garnier 8 - Habitations, vue rapprochée, Fresque Musée T.Garnier 16 - Hôpital de Grange-Blanche, Fresque Musée T.Garnier 6 - La Gare, Fresque Musée T.Garnier 11 - La tour d'horloges, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Fresque Musée T.Garnier 15 - Stade de Gerland, Fresque Musée T.Garnier 14 - Les hauts fourneaux, Fresque Musée T.Garnier 5 - Les Services Publics, Fresque Musée T.Garnier 2 - Tony Garnier Visionnaire, Fresque Musée T.Garnier 13 - Vue des usines, Fresque Disques Wem, Fresque Musée T.Garnier 22 - Cité idéale de la Côte d'Ivoire, annexe, Rue des grands chefs - Restaurant Paul Bocuse, Paul Bocuse - Restaurant Paul Bocuse, Mur de la Cour des Loges, Fresque "La renaissance", Fresque "Montluc - Jean Moulin", Fresque "Art et Industrie", Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, La Fresque du Demi-Millenaire - Part 1, La fresque des Lyonnais, La Bibliotheque de la Cité "des écrivains en Rhône-Alpes", Fresque Boulevard de la B.D. Lada, Boulevard de la B.D. - Joost Swarte, Boulevard de la B.D. - Loustal, Fresque La Dombes, Fresque de Meyzieu, Fresque des Fourchettes, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Fresque idéale de Québec, Charlie Chaplin Bubbles, Mayoud Honda, Fresque "Oullins Centre-ville", Fresque "Du Pont d'Oullins", Mur peint : L’auberge savoyarde, La Fresque du Foyer, La Fresque Art Déco, Fresque RTE Lyon La Mouche, Fresque ESAT Hélène Rivet, Fresque Source Cachée Arbre Sacré, Fresque Ancienne gare de Meyzieu, Fresque Vues sur le Lyonnais, Fresque La Chimie dans tout ses Etats, Fresque "Chez Jeanne", Fresque "Allée Arborée", Fresque "La Forge", Fresque "Les Diligences", Fresque "Les Vieux Métiers 1", Fresque "Les Vieux Métiers 2", Fresque "La Route de la Soie", La Fresque du Centenaire 1912-2012, La Fresque du Centenaire 1912-2012, Fresque "Gerland Biotechnologies", La "Fresque Végétale Lumière", Fresque des Vourlois, Fresque du Gymnase, Poster en facade gratte ciel, Fresque des Roses - St Priest, Fresque des Roses - Lyon, Av Santy, Fresque Agir pour la biodiversité, Tag La Baguetterie, Fresque aerosol, Fresque Lycée Ampere Saxe, Fresque Square Villevert, Fresque du Stade Municipal, Fresque "Les basiliques de Saint-Just", Fresque Le marathon de l'impossible, Fresque Arte Aca, Fresque "La cité KAPS", Fresque "Parking cité KAPS", Fresque des noirettes "Le Mur du Soleil", Fresque des noirettes "Le Mur de la Cascade", Fresque des Roses - Lyon 8ème mairie, Fresque des roses - Venissieux (plan1), Fresque des roses - Venissieux (plan2), Fresque "File le temps... reste les canuts", Mur des Fourrures, Fresque DeKover, Fresque "Thank You Monsieur Paul" (Bocuse), Fresque "du Confluent", Fresque des Roses - Champagne-au-Mont-d'Or, Fresque "Le Jardin d'en Face", Fresque Espace Diego Rivera and 45.7615378 4.9252989, 45.7242776 4.8539418, 45.7858145 4.8075880, 45.7779285 4.8279690, 45.7316295 4.8668787, 45.7484993 4.8788479, 45.7498654 4.8759864, 45.7698700 4.7879340, 45.7698985 4.7880655, 45.7549115 4.8434004, 45.7245886 4.8263897, 45.7433556 4.8405258, 45.7196057 4.8008161, 45.7326668 4.8630359, 45.7375747 4.8616255, 45.7725199 4.8663498, 45.7321697 4.8664580, 45.7336465 4.8632348, 45.7328203 4.8629032, 45.7320947 4.8674966, 45.7330177 4.8657973, 45.7324535 4.8672057, 45.7331360 4.8666865, 45.7335600 4.8653728, 45.7325955 4.8671070, 45.7319545 4.8635870, 45.7321249 4.8634546, 45.7316965 4.8647521, 45.7323801 4.8642213, 45.7322374 4.8643323, 45.7323075 4.8663529, 45.7329498 4.8637779, 45.7314132 4.8640073, 45.7385048 4.8613236, 45.7387649 4.8607244, 45.7389336 4.8609359, 45.7328475 4.8659300, 45.7310051 4.8652929, 45.7331061 4.8636557, 45.7333891 4.8624614, 45.7315452 4.8648710, 45.7756330 4.7951910, 45.7332067 4.8666311, 45.8155738 4.8472165, 45.8156435 4.8475277, 45.7649855 4.8287925, 45.7165371 4.8098566, 45.7493533 4.8609118, 45.6634167 4.8424264, 45.7209120 4.8541671, 45.7235048 4.8539594, 45.7222175 4.8540626, 45.7227953 4.8540163, 45.7249510 4.8538288, 45.7681064 4.8280574, 45.7659207 4.8312600, 45.7759090 4.8015510, 45.7760780 4.7952180, 45.7764025 4.7984375, 45.8202824 4.8705136, 45.7664155 5.0049470, 45.7704495 4.8643856, 45.7617643 4.8152072, 45.7621030 4.8160960, 45.7618195 4.8162683, 45.7342924 4.8626980, 45.7745993 4.8606941, 45.8437735 4.7340205, 45.7150814 4.8078204, 45.7175164 4.8098900, 45.7450213 4.8660796, 45.7502318 4.8416469, 45.7513725 4.8390037, 45.7205996 4.8439283, 45.7690470 4.7998735, 45.7697129 4.9524500, 45.7714030 5.0001735, 45.5828000 4.6317347, 45.7083270 4.8272787, 45.7318628 4.9995743, 45.7316843 5.0009960, 45.7317208 4.9997166, 45.7322290 4.9975134, 45.7340142 4.9964253, 45.7337846 4.9972670, 45.7723084 4.8215466, 45.7449245 4.8424444, 45.7452687 4.8413678, 45.7252956 4.8413865, 45.7696023 4.8272314, 45.6584310 4.7736255, 45.7081288 4.7481631, 45.7680770 4.8801051, 45.6946293 4.9406443, 45.7296178 4.8752517, 45.7463509 4.8459884, 45.7677299 4.8312641, 45.7297744 4.8742560, 45.7551709 4.8469660, 45.8764848 4.8346205, 45.8684698 4.8394062, 45.7434934 4.8478974, 45.7559238 4.8169452, 45.7447945 4.9069783, 45.7179757 4.8174971, 45.7180962 4.8187223, 45.7178274 4.8192282, 45.7860525 4.9123035, 45.7871070 4.9124765, 45.7347800 4.8728560, 45.7005717 4.8870852, 45.7008842 4.8871881, 45.7805415 4.8361690, 45.7660616 4.8316834, 45.7132220 4.9185192, 45.7637878 4.8505854, 45.7255562 4.8164955, 45.7946355 4.7932140, 45.7722055 4.8638274, 45.7318449 4.8358676 +http://gloria-kamera-kinos.de +2 +55.9712083 -3.1733004 and 55.9801706 -3.1982531 +90 +80 +01 44 54 39 00 +indaba +yes +no +yes +48.8475254 2.3740095, 48.8462510 2.3943117, 48.8470333 2.3936300, 48.8758689 2.3483462, 48.8828001 2.3714770, 48.8820834 2.3282055, 48.8762091 2.3397990, 48.8473872 2.3414431, 48.8421474 2.2852928, 48.8279402 2.3288089, 48.8579444 2.3717706, 48.8470191 2.3535114, 48.8927622 2.3434358, 48.8541702 2.3858665, 48.8532844 2.3390695, 48.8598488 2.3084707, 48.8855486 2.2906636, 48.8838490 2.2883840, 48.8842390 2.2945020, 48.8360380 2.3520261, 48.8755166 2.3946714, 48.8769610 2.3659286, 48.8477091 2.3186906, 48.8584888 2.3703620, 48.8736719 2.3586685, 48.8468320 2.3060776, 48.8420347 2.3288429, 48.8826690 2.3244518, 48.8472059 2.3423102, 48.8738022 2.3088365, 48.8712166 2.3498874, 48.8515541 2.3234852, 48.8570369 2.3595739, 48.8471373 2.3529239, 48.8445332 2.3733365 +43.6196177 3.8651667, 43.6304227 3.8875373, 43.6248205 3.8690435, 43.6188170 3.8854467, 43.6354093 3.8774770, 43.6595006 3.8914075, 43.6592117 3.8922409, 43.6589289 3.8923654, 43.7703775 4.0223446, 43.6370866 3.8147100, 43.5603989 3.9342558, 43.5595844 3.9351869, 43.6118723 3.9244185, 43.6116804 3.9251287, 43.6124857 3.9234893, 43.6124114 3.9246155, 43.6131709 3.9241006, 43.6134617 3.9236637, 43.6053399 3.9092808, 43.6119014 3.9100439, 43.6119897 4.0122314, 43.6120411 4.0125558, 43.6676906 4.0188286, 43.6680062 4.0195422, 43.6293766 3.9043547, 43.6298566 3.9048257, 43.5323965 3.9297647, 43.6403045 3.8460831, 43.6125180 3.8884380, 43.6748706 4.1230635, 43.6745966 4.1230879, 43.6743846 4.1233491, 43.6740383 4.1241561, 43.5600406 3.8796149, 43.6499929 4.0097323, 43.6456026 4.0095082, 43.6181856 3.8939608, 43.6990930 3.8995231, 43.6463973 3.8634916, 43.6063473 3.8883414, 43.5971203 3.8380027, 43.6209565 3.8143041, 43.8576951 3.9064011, 43.3950979 3.6709474, 43.3950057 3.6711243, 43.3925472 3.6769695, 43.3924662 3.6771425, 43.4013858 3.6905370, 43.4043876 3.6870145, 43.4111663 3.6832801, 43.4110256 3.6831538, 43.4114924 3.6835248, 43.4173887 3.6694803, 43.4128627 3.6872955, 43.4130923 3.6875689, 43.4013134 3.6684044, 43.3988445 3.6717365, 43.3986512 3.6715885, 43.3986047 3.6713708, 43.3982223 3.6715411, 43.3983194 3.6720080, 43.3982674 3.6717502, 43.3988763 3.6713845, 43.6062050 3.7849035, 43.6068900 3.7847798, 43.6066603 3.7843870, 43.5792410 3.7608490, 43.4439794 3.6146023, 43.4440020 3.6148260, 43.4477997 3.6107272, 43.5541925 3.7755402, 43.6190258 3.8859952, 43.6187130 3.8858420, 43.6183438 3.8853528, 43.6188514 3.8854599, 43.6184075 3.8851477, 43.6183055 3.8856168, 43.6190914 3.8858028, 43.6060735 3.9060022, 43.6060542 3.9062078, 43.6062323 3.9054241, 43.6060349 3.9064195, 43.6950162 3.7986461, 43.6960303 3.7984714, 43.6954260 3.7983572, 43.6950087 3.7984189, 43.6954369 3.7985825, 43.6946418 3.7986694, 43.6063922 3.9050274, 43.6504122 3.7880930, 43.6501715 3.7884041, 43.6505437 3.7882909, 43.6503037 3.7885951, 43.6295197 3.9051868, 43.6294484 3.9045513, 43.6298983 3.9050431, 43.6411686 3.8995370, 43.6299781 3.8876007, 43.6308722 3.8877903, 43.6303299 3.8879352, 43.6299259 3.8877818, 43.6303757 3.8877502, 43.6282390 3.8632221, 43.6279253 3.8628588, 43.6281890 3.8626720, 43.6284773 3.8628714, 43.6283834 3.8624119, 43.6351334 3.8636831, 43.6357509 3.8637781, 43.6355586 3.8631855, 43.6357035 3.8630700, 43.6355889 3.8638672, 43.6359207 3.8637050, 43.6189485 3.8849220, 43.6288024 3.8403341, 43.6289029 3.8407602, 43.6284504 3.8405007, 43.6288530 3.8405514, 43.6076001 3.7315334, 43.4879073 3.7167091, 43.4683633 3.6931744, 43.6588634 3.9204358, 43.6581442 3.9206383, 43.6936532 3.9937181, 43.3386652 3.5768270, 43.6236490 3.8315918, 43.6094471 3.8297475, 43.5844279 3.8017618, 43.5841828 3.8014655, 43.5843069 3.8016160, 43.6106770 3.7719656, 43.5785707 3.8199856, 43.5782830 3.8203519, 43.5784668 3.8195274, 43.5786200 3.8202001, 43.5779101 3.8202660, 43.5782304 3.8201176, 43.5785146 3.8197423, 43.5779591 3.8204826, 43.5781786 3.8198865, 43.4928581 3.7064885, 43.4930357 3.7066242, 43.4931850 3.7062247, 43.5600752 3.8794021, 43.5603593 3.8797128, 43.5597995 3.8794272, 43.5603939 3.8795000, 43.5504876 3.8944674, 43.5564311 3.9032723, 43.6751515 4.0900251, 43.6750817 4.0894764, 43.6668274 3.7199569, 43.6666278 3.7197356, 43.5799783 3.8727698, 43.6720712 4.0327426, 43.6721119 4.0322913, 43.6720916 4.0325169, 43.6720509 4.0329683, 43.6353791 3.8775846, 43.6357761 3.8775156, 43.6355727 3.8769834, 43.6353122 3.8774070, 43.6357096 3.8773415, 43.6352450 3.8772303, 43.6354487 3.8777708, 43.6356421 3.8771621, 43.6309218 3.8876037, 43.6882097 3.8488092, 43.6880132 3.8480228, 43.6738209 3.8568172, 43.6881795 3.8476400, 43.6781106 3.8322225, 43.6882511 3.8486040, 43.6880961 3.8478320, 43.6881650 3.8490306, 43.6741370 3.8571353, 43.6739417 3.8566669, 43.6741742 3.8566460, 43.6743821 3.8569949, 43.6742411 3.8573063, 43.6740311 3.8576433, 43.7064517 3.8325226, 43.7063777 3.8328509, 43.7070562 3.8328148, 43.7069830 3.8331370, 43.7070191 3.8329779, 43.7064136 3.8326915, 43.6217351 3.8618153, 43.6216226 3.8616570, 43.6217803 3.8621502, 43.6218955 3.8623103, 43.6220479 3.8625355, 43.6224426 3.8630973, 43.6221637 3.8626977, 43.6225690 3.8632733, 43.6409414 3.8556108, 43.6409594 3.8548162, 43.6422883 3.8551424, 43.6411543 3.8552102, 43.6419907 3.8552750, 43.6408680 3.8554119, 43.6412277 3.8554091, 43.5532616 3.9489233, 43.5532974 3.9491384, 43.6359677 3.8694266, 43.4894010 3.7913702, 43.7503421 3.8339782, 43.5794492 3.7612027, 43.5791413 3.7606797, 43.5890731 3.7711550, 43.5793441 3.7610240, 43.6290239 3.8919266, 43.7246941 4.0330700, 43.7245541 4.0335370, 43.7249258 4.0330614, 43.7951871 3.9151108, 43.5939438 3.8765475, 43.6075937 3.7317590, 43.7175398 4.1022024, 43.7197660 4.0981093, 43.7956872 4.0147269, 43.5003715 3.5957101, 43.5004674 3.5958936, 43.5006117 3.5956098, 43.6577901 4.1177023, 43.6266979 3.8500060, 43.4408553 3.6742844, 43.4825306 3.7963600, 43.4401836 3.6741654, 43.4401727 3.6743853, 43.4825849 3.7961615, 43.4814082 3.7992087, 43.4813241 3.7993784, 43.4405130 3.6744022, 43.4405238 3.6741823, 43.7370776 3.8491298, 43.7371064 3.8489010, 43.4433930 3.7627096, 43.6817649 3.9322289, 43.6821852 3.9320918, 43.6818709 3.9319810, 43.6816766 3.9325695, 43.6823958 3.9324529, 43.6820802 3.9323412, 43.6166474 3.8573751, 43.6167778 3.8572293, 43.6169069 3.8570850, 43.7716572 3.8722038, 43.7716761 3.8719703, 43.7724779 3.8720061, 43.7725346 3.8717966, 43.7722445 3.8715355, 43.5540665 3.7837156, 43.5541597 3.7828249, 43.5541647 3.7832681, 43.5543769 3.7837090, 43.5541622 3.7830416, 43.7682376 3.7872300, 43.6290100 3.9048519, 43.6290802 3.9050569, 43.6294071 3.9049095, 43.6183627 3.8847348, 43.6185035 3.8848193, 43.6283249 3.8628727, 43.6280499 3.8630256, 43.6130980 3.9238985, 43.6118006 3.9242177, 43.6126299 3.9238979, 43.6119738 3.9246815, 43.6120459 3.9248824, 43.6125571 3.9236917, 43.6116072 3.9249305, 43.6205171 3.8141108, 43.6205201 3.8138910, 43.6212321 3.8139109, 43.6213614 3.8145985, 43.6215582 3.8141418, 43.6208948 3.8144744, 43.6212301 3.8141362, 43.6215603 3.8139165, 43.6941003 4.0250540, 43.6939020 4.0254235, 43.6939633 4.0252162, 43.6591711 3.8920214, 43.6594367 3.8911990, 43.6592207 3.8916314, 43.6582198 3.9208321, 43.6585163 3.9206162, 43.6584414 3.9204205, 43.6502896 4.0020405, 43.6503821 4.0022410, 43.6976763 4.0298756, 43.6976520 4.0301065, 43.7694986 3.9601400, 43.7693289 3.9603186, 43.7260177 3.9250953, 43.7000992 3.8594266, 43.7003850 3.8597603, 43.7000587 3.8596552, 43.6997828 3.8593306, 43.6965048 3.8786983, 43.6294286 3.9046473, 43.6448152 3.8921332, 43.6343718 3.8632490, 43.6343568 3.8634807, 43.6463379 3.8480120, 43.6467585 3.8483247, 43.5597707 4.0995275, 43.5596220 4.0997963, 43.6604955 3.9747815, 43.6594627 3.9742013, 43.6594763 3.9737579, 43.6608145 3.9746570, 43.6594699 3.9739801, 43.6596202 3.9744323, 43.6746623 4.1232810, 43.5974312 3.8380987, 43.6740097 4.1243981, 43.6579117 4.1175456, 43.4168131 3.6694501, 43.4172565 3.6696232, 43.4164954 3.6692387, 43.4168583 3.6700443, 43.4169644 3.6690133, 43.4166912 3.6695817, 43.4171201 3.6697691, 43.4169346 3.6693176, 43.4169869 3.6699090, 43.4166172 3.6691078, 43.4167390 3.6689766, 43.6135328 3.9238701, 43.6502939 3.7884170, 43.6548582 3.8290418, 43.6544437 3.8295423, 43.6551353 3.8292768, 43.6543658 3.8293324, 43.6548356 3.8298237, 43.6550334 3.8291042, 43.6545637 3.8281294, 43.6547223 3.8296655, 43.6551129 3.8302136, 43.6544361 3.8279577, 43.6546787 3.8282862, 43.6585316 3.9205300, 43.6820105 3.9318961, 43.6065649 3.7848199, 43.6067483 3.7845747, 43.6060702 3.7850291, 43.6069780 3.7849695, 43.6366983 3.8144978, 43.6366426 3.8147147, 43.6369515 3.8148659, 43.6370071 3.8146491, 43.6375223 3.8149350, 43.6201327 3.8663456, 43.6202534 3.8662341, 43.5660709 3.9179278, 43.5653267 3.9177283, 43.5657089 3.9181635, 43.5660758 3.9181490, 43.5657038 3.9179432, 43.5653314 3.9179537, 43.5656987 3.9177206, 43.5653359 3.9181710, 43.5594394 3.9353604, 43.5593159 3.9355081, 43.6125490 3.8887910, 43.6125337 3.8886176, 43.6667200 3.7198656, 43.6717176 3.7734568, 43.6718233 3.7736332, 43.6162870 3.8109494, 43.6158471 3.8105923, 43.6162129 3.8106240, 43.6159302 3.8103997, 43.6160496 3.8110096, 43.6161310 3.8108193, 43.6987464 3.8995404, 43.7121686 3.9029334, 43.4589297 3.7543175, 43.4589180 3.7543228, 43.6529933 3.8373619, 43.6508843 3.8950530, 43.6507315 3.8949607, 43.6917648 3.7418407, 43.6916172 3.7414689, 43.5330244 3.9296765, 43.5325136 3.9298770, 43.5319172 3.9294506, 43.5327018 3.9295051, 43.5321554 3.9296680, 43.5317997 3.9299491, 43.5317809 3.9293286, 43.5331588 3.9297991, 43.5327959 3.9293240, 43.5324221 3.9300685, 43.6647713 4.1735240, 43.6644515 4.1740862, 43.6718014 3.7734595, 43.6678568 4.0194153, 43.6676896 4.0190494, 43.6680045 4.0199905, 43.6680054 4.0197640, 43.5706356 3.7717279, 43.5707013 3.7719698, 43.5706593 3.7717486, 43.5705880 3.7714909, 43.5600963 3.8799795, 43.5602721 3.8801987, 43.6534796 4.0787354, 43.6534317 4.0791374, 43.6536756 4.0789644, 43.6533702 4.0789204, 43.6533058 4.0787087, 43.6117721 4.0136011, 43.6116863 4.0123985, 43.6121080 4.0127573, 43.6117384 4.0139610, 43.6118546 4.0144096, 43.6117353 4.0141854, 43.6116189 4.0137355, 43.6118512 4.0146316, 43.4863784 3.6633661, 43.4861532 3.6635014, 43.4865046 3.6633688, 43.4862666 3.6636656, 43.4863943 3.6632003, 43.5135970 3.7024561, 43.5137281 3.7024700, 43.5135969 3.7025896, 43.4111140 3.6832726, 43.4404802 3.6742619, 43.7041672 3.8778252, 43.7043817 3.8765733, 43.6989479 3.8996243, 43.7510089 3.9579067, 43.5564255 3.7255180, 43.5565316 3.7256822, 43.5561942 3.7255914, 43.5562476 3.7253865, 43.4499685 3.7554268, 43.4497053 3.7558145, 43.4498173 3.7559766, 43.4500955 3.7554737, 43.4503964 3.7552773, 43.4501893 3.7556489, 43.4503038 3.7551231, 43.4504932 3.7554528, 43.5783240 3.8199268, 43.5589490 4.0996964, 43.5614992 4.0995911, 43.5588310 4.0993635, 43.5596243 4.1002013, 43.5597760 4.0986876, 43.5597783 4.0984671, 43.5620545 4.1003005, 43.5620376 4.1000750, 43.5602347 4.0988884, 43.5593747 4.0989918, 43.5606023 4.1003693, 43.5616379 4.0999630, 43.5620166 4.0998090, 43.5609348 4.0992527, 43.5608656 4.0990514, 43.5589116 4.0989084, 43.5599813 4.1002108, 43.5599087 4.0992575, 43.5599782 4.1004350, 43.5605887 4.1001450, 43.5596212 4.1004254, 43.5614514 4.0993721, 43.5615320 4.1002749, 43.4247055 3.7309961, 43.4245646 3.7307196, 43.4247311 3.7312122, 43.4248063 3.7314121, 43.4246551 3.7310234, 43.5842544 3.8016492, 43.5856187 3.7997940, 43.4202704 3.6017871, 43.4202032 3.6019092, 43.4203031 3.6017291, 43.4203982 3.6015433, 43.4201108 3.6020917, 43.4893128 3.7915575, 43.7290629 4.0219910, 43.6880963 3.8480199, 43.6740794 3.8571485, 43.5503801 3.7080438, 43.5502980 3.7075846, 43.5515883 3.7111717, 43.4518665 3.6671118, 43.4519636 3.6666861, 43.4518669 3.6668843, 43.6074111 3.7317379, 43.6916862 3.7416501, 43.6953369 3.7984780, 43.7000865 3.8595497, 43.7266072 3.8137397, 43.7267602 3.8136946, 43.7264437 3.8138412, 43.7265187 3.8140551, 43.7369980 3.8489882, 43.7540555 4.0857547, 43.7537782 4.0857441, 43.7541045 4.0857538, 43.6578444 4.1176745, 43.5793560 3.7609405, 43.5456330 3.9801787, 43.5458111 3.9801473, 43.5456517 3.9807165, 43.5459410 3.9805395, 43.5458746 3.9803428, 43.5455247 3.9803186, 43.5455884 3.9805195, 43.5454319 3.9799658, 43.5599096 3.9347799, 43.5602684 3.9344068, 43.5599643 3.9347572, 43.5600943 3.9346043, 43.5600748 4.0993804, 43.5585077 4.1002962, 43.5611173 4.1003120, 43.5584472 4.1000942, 43.5610838 4.0998280, 43.5611005 4.1000704, 43.6647299 4.1737164, 43.6648186 4.1737358, 43.6437886 3.9326955, 43.6438246 3.9325862, 43.6437605 3.9323772, 43.6436966 3.9321708, 43.6439294 3.9331897, 43.6420229 3.9651905, 43.6420525 3.9651019, 43.6423123 3.9648226, 43.6416609 3.9656105, 43.6326924 3.9203179, 43.6324614 3.9206625, 43.6325256 3.9202485, 43.6324927 3.9204607, 43.6325587 3.9200353, 43.6324312 3.9208576, 43.6325919 3.9198208, 43.5332304 3.8568364, 43.5331289 3.8569602, 43.5331879 3.8566513, 43.5330500 3.8571583, 43.5332676 3.8564538, 43.5333451 3.8562666, 43.5333622 3.8574047, 43.5334463 3.8572051, 43.5541752 3.7832580, 43.4169272 3.6695844, 43.4166904 3.6703722, 43.4166020 3.6702162, 43.4440702 3.6146922, 43.4929523 3.7062178, 43.4894008 3.7913551, 43.5066852 3.7949573, 43.5069129 3.7953969, 43.5068145 3.7952143, 43.5066745 3.7949634, 43.5065692 3.7946525, 43.5657141 3.9180220, 43.5004148 3.5958581, 43.7332502 3.9784726, 43.7333323 3.9784376, 43.7330291 3.9787029, 43.7334207 3.9786342, 43.6601367 3.9743142, 43.6934582 3.9942613, 43.6808329 3.9787335, 43.6936998 3.9940968, 43.6931284 3.9946566, 43.6932108 3.9941027, 43.6932085 3.9938757, 43.6931306 3.9948836, 43.6936308 3.9942973, 43.6808180 3.9785086, 43.6420334 4.0411045, 43.6419417 4.0413061, 43.6418471 4.0411296, 43.6720304 4.0329420, 43.6976765 4.0299962, 43.7165169 4.0057307, 43.7164697 4.0057088, 43.7164689 4.0059373, 43.7244638 4.0337393, 43.7253609 4.0825098, 43.7254229 4.0824351, 43.7295622 4.0782655, 43.7252981 4.0825861, 43.6749657 4.0897835, 43.6748368 4.0901688, 43.6748687 4.0896909, 43.6743777 4.1237602, 43.7694351 3.9602823, 43.7720773 3.8720978, 43.3985241 3.6717778, 43.4129657 3.6874107, 43.6052566 3.9098621, 43.6052841 3.9096716, 43.6053119 3.9094788, 43.6287984 3.8406235, 43.6400821 3.8366862, 43.6400282 3.8368928, 43.4799000 3.6236197, 43.5461014 3.7057959, 43.5463802 3.7060624, 43.5466688 3.7063431, 43.4755840 3.6699958, 43.5108626 3.6937431, 43.6508025 3.8950000, 43.6167099 3.8112201, 43.6167856 3.8110244, 43.4452547 3.7008790, 43.5438846 3.9752045, 43.5439446 3.9754071, 43.5042450 3.7163324, 43.6241536 3.7670944, 43.6241724 3.7668722, 43.4847620 3.7931640, 43.4847416 3.7929669, 43.6650319 4.0556563, 43.6651809 4.0559521, 43.7886110 4.0327288, 43.7709015 3.8709050, 43.7991376 3.8701130, 43.7992600 3.8701073, 43.7606032 3.8787686, 43.5951419 3.8599956, 43.5951222 3.8597460, 43.5957105 3.8604611, 43.5951667 3.8603028, 43.5951824 3.8605411, 43.8609939 3.9052133, 43.6881137 3.8177013, 43.6292248 3.8460750, 43.6311694 3.8241385, 43.8323600 3.8883929, 43.6077982 3.8056008, 43.6231395 4.0098760, 43.6085731 3.8086752, 43.6387684 3.9265324, 43.6388088 3.9267315, 43.7039898 3.8390959, 43.6118297 3.7993641, 43.6118437 3.7991494, 43.8583104 3.9003789, 43.7729316 3.9497123, 43.8101448 3.9355876, 43.6122131 3.9098892, 43.7267439 4.0279504, 43.6098109 3.9151256, 43.5624260 4.1036311, 43.5624141 4.1034183, 43.5624029 4.1032194, 43.5620030 4.1029160, 43.5620513 4.1026989, 43.5621006 4.1024776 +496 +173 +492, 680 +yes +C.E.R. Pasteur, ab conduite, École de conduite Lamartine, Centre de conduite auto-moto, ECF, Auto-École, ECF Trinité, Cluny - Saint-Germain, C.E.R. Brancion, Permis Malin, Alkris, Auto école Place de Rungis, Auto Moto École Alésia, Matt's Auto Ecole, Caser formations, École de conduite Saint-Charles, Auto-École, Fati Auto école, Auto-école du chêne, ecf, La Réussite, École de conduite, C.E.R. Auto-École, Auto moto école, Auto-école Manin, Tour Eiffel Permis, Auto moto ecolde des Buttes Chaumont, C.E.R. Porte des Lilas, Permis Express, Auto école, ABIR C.F.R., Auto-école Cosmos, Zebra, Simulauto, CER Porte de Choisy and 48.8425822 2.3123874, 48.8214455 2.3651681, 48.8384650 2.3928000, 48.8788491 2.3549176, 48.8444172 2.3902043, 48.8766806 2.3400707, 48.8908100 2.3757534, 48.8939590 2.3470250, 48.8509898 2.2929663, 48.8750750 2.3586783, 48.8791144 2.3365425, 48.8505220 2.3461000, 48.8281412 2.3023917, 48.8284745 2.3030751, 48.8451775 2.3885757, 48.8237890 2.3481077, 48.8229290 2.3469037, 48.8277073 2.3307027, 48.8310720 2.3165259, 48.8733527 2.3993062, 48.8255124 2.3143296, 48.8250029 2.3166081, 48.8410757 2.2808723, 48.8324177 2.3616433, 48.8759983 2.3280939, 48.8787222 2.3744794, 48.8917005 2.3612335, 48.8397868 2.3974178, 48.8343346 2.4041298, 48.8306699 2.3543176, 48.8800260 2.2873860, 48.8888340 2.3055800, 48.8792550 2.3846850, 48.8800423 2.3744552, 48.8835398 2.3889119, 48.8832858 2.3874568, 48.8886151 2.3731039, 48.8490335 2.3011623, 48.8826632 2.3810175, 48.8771545 2.4074241, 48.8732079 2.3741442, 48.8731711 2.3799152, 48.8902508 2.3794782, 48.8623682 2.3671929, 48.8630650 2.3887300, 48.8266297 2.3818892, 48.8198885 2.3653297 +1 +48.8785620 2.3603690 +yes +2646 +69 and 19 +11 +49.4534456 8.7619634 +48.8758196 2.3557131, 48.8569549 2.3497208, 48.8562998 2.3535246, 48.8521302 2.3358217, 48.8553332 2.3464366, 48.8614418 2.2990188, 48.8513763 2.3250565, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8453963 2.3255943, 48.8566284 2.3271644, 48.8661306 2.2897626, 48.8722447 2.3050374, 48.8450073 2.3757975, 48.8466279 2.2560360, 48.8694555 2.3406786, 48.8388399 2.2765067, 48.8176870 2.3444409, 48.8398451 2.2739161, 48.8566083 2.3533348, 48.8632334 2.3399229, 48.8620104 2.3390904, 48.8670418 2.3496240, 48.8657000 2.3535311, 48.8652453 2.3533870, 48.8443992 2.3820174, 48.8691076 2.3112127, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8729875 2.3210140, 48.8726568 2.3215983, 48.8776040 2.3524312, 48.8758310 2.3206114, 48.8720777 2.3056372, 48.8715518 2.3062553, 48.8688688 2.3012670, 48.8720769 2.2997667, 48.8721868 2.3033146, 48.8707626 2.3051595, 48.8701277 2.3044062, 48.8674712 2.3054788, 48.8667016 2.3011326, 48.8655118 2.3015698, 48.8713039 2.2970137, 48.8741074 2.2994150, 48.8744570 2.3007315, 48.8763620 2.3015161, 48.8767241 2.3018198, 48.8782249 2.2965872, 48.8972935 2.3883460, 48.8952805 2.3850234, 48.8599671 2.3250425, 48.8705380 2.3685763, 48.8293963 2.3789703, 48.8403358 2.3506549, 48.8432745 2.3153982, 48.8725053 2.2851559, 48.8736890 2.2914977, 48.8768968 2.2823678, 48.8722856 2.2840680, 48.8693205 2.2843750, 48.8677158 2.2805552, 48.8770209 2.3458704, 48.8396031 2.2624046, 48.8471492 2.3421620, 48.8507465 2.3484894, 48.8470699 2.3417135, 48.8613479 2.3294517, 48.8623669 2.3098112, 48.8593696 2.3144127, 48.8734234 2.3305255, 48.8715078 2.3339896, 48.8459424 2.3060603, 48.8319830 2.3768014, 48.8720026 2.3359899, 48.8703752 2.3029557, 48.8738314 2.3297043, 48.8790223 2.2930687, 48.8824856 2.3440987, 48.8647821 2.3501454, 48.8815254 2.3543330, 48.8313000 2.3882082, 48.8632351 2.3477979, 48.8580953 2.3988158, 48.8671989 2.3667020, 48.8410399 2.3210471, 48.8429112 2.3235502, 48.8423484 2.3212962, 48.8320324 2.3866588, 48.8336457 2.2895795, 48.8764091 2.3236995, 48.8476756 2.3411763, 48.8305332 2.3138423, 48.8763053 2.2944546, 48.8763219 2.2947532, 48.8788573 2.2928071, 48.8761984 2.2930848, 48.8760963 2.2927992, 48.8532277 2.3589001, 48.8863474 2.2875098, 48.8740366 2.4050675, 48.8780164 2.4108510, 48.8260635 2.3616139, 48.8339745 2.3680517, 48.8239032 2.3657211, 48.8892294 2.3935497, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8381765 2.3815493, 48.8731938 2.3290960, 48.8212980 2.3643164, 48.8549966 2.4012505, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8292317 2.3084985, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8465587 2.2612329, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8868617 2.3693195, 48.8698031 2.3099017, 48.8343023 2.3639410, 48.8378546 2.3188725, 48.8843094 2.3221312, 48.8207875 2.3249534, 48.8585293 2.3496680, 48.8728113 2.3697721, 48.8450073 2.3757975, 48.8633378 2.3436056, 48.8608207 2.3462695, 48.8609358 2.3477215, 48.8850525 2.3540917, 48.8402845 2.4069021, 48.8832938 2.3851138, 48.8923410 2.3650140, 48.8852405 2.3310874, 48.8742021 2.3591001, 48.8314203 2.3778776, 48.8314596 2.3779526, 48.8318827 2.3891652, 48.8461444 2.3837384, 48.8936924 2.3300230, 48.8444332 2.3065143, 48.8848116 2.3938556, 48.8541004 2.3735901, 48.8883255 2.2895204, 48.8324295 2.3777926, 48.8400817 2.3808930, 48.8885318 2.3889061, 48.8541153 2.3181466, 48.8720076 2.3153410, 48.8624814 2.3328937, 48.8747479 2.3774714, 48.8571932 2.2995417, 48.8531145 2.3031375 +38 +49.4123589 8.7022987, 49.3998237 8.6458733, 49.4430151 8.7520519, 49.3925852 8.6533247, 49.4046561 8.6489332, 49.4175865 8.7593719, 49.4239610 8.6793566, 49.3976293 8.6709378, 49.3829709 8.6804553, 49.3865139 8.6621286, 49.4331771 8.6407628, 49.3660994 8.7049892 +http://www.musee-armee.fr/, http://www.agglo-gpso.fr, www.aphp.fr/, http://www.lesartsdecoratifs.fr/francais/arts-decoratifs/, http://www.arts-et-metiers.net/, http://www.tourjeansanspeur.com/, www.musee-moreau.fr, http://www.paris.fr/loisirs/musees-expos/musee-des-egouts/visite-publique-des-egouts-de-paris/rub 9691 stand 5943 port 23931, https://www.pasteur.fr/fr/institut-pasteur/musee-pasteur, www.daliparis.com/, http://www.issy.com/ma-ville/equipements-culturels/musee-francais-de-la-carte-a-jouer, http://www.musee-en-herbe.com/, http://www.mep-fr.org, www.annehoguet.fr/musee.htm, http://www.museedelapoupeeparis.com/, http://www.espace-icare.com/, http://www.catacombes.paris.fr/, http://equipement.paris.fr/conservatoire-municipal-claude-debussy-site-la-jonquiere-3976, http://www.musee-erotisme.com/, http://www.paris.fr/politiques/conservation-restauration/atelier-de-restauration-et-de-conservation-des-photographies-de-la-ville-de-paris/p7672#, http://www.petitpalais.paris.fr/, http://www.musee-legiondhonneur.fr/, http://conciergerie.monuments-nationaux.fr/, www.museeduvinparis.com, http://www.ladressemuseedelaposte.com/, http://www.baccarat.fr/fr/univers-baccarat/musees/gallery-opening-hours.htm, http://forumdesimages.fr/, http://www.fgo-barbara.fr, http://www.ecole-valdegrace.sante.defense.gouv.fr/bibliotheque-musee/musee-du-service-de-sante-des-armees, www.museeduchocolat.fr, http://www.citechaillot.fr/fr/, www.musee-marine.fr, http://www.museefm.org/, www.fondationlecorbusier.asso.fr, http://musee-contrefacon.com/, www.dapper.com.fr, www.mairie6.paris.fr, www.le-maf.com/, www.bibliotheque-polonaise-paris-shlp.fr, www.icp.fr, http://www.christofle.com/, www.musee-clemenceau.fr/, www.compagnons.org/, www.upmc.fr/, www.avh.asso.fr/, www.musee-henner.fr/, www.bium.univ-paris5.fr/musee/, www.museemaillol.com/, http://www.museedeslettres.fr/, www.museedumontparnasse.net/, http://www.musee.mines-paristech.fr/, www.paris.fr/, crypte.paris.fr/, www.bnf.fr/, prefecturedepolice.interieur.gouv.fr, http://www.paris.fr/loisirs/musees-expos/memorial-leclerc-et-de-la-liberation-de-paris-musee-jean-moulin/p6923, http://www.centrepompidou.fr/cpv/ressource.action?param.id=FR R-89fd49e847165bc78d564f6dbeb6777¶m.idSource=FR E-2ab598d3369ad7a58ead7e6be32ba7b, http://www.maxims-musee-artnouveau.com/, http://www.henricartierbresson.org, http://www.avocatparis.org/home/presentation-et-missions/histoire-du-barreau-de-paris/musee-virtuel.html, http://www.bdic.fr/, http://www.ordredelaliberation.fr/fr doc/musee.html, http://www.museedesplansreliefs.culture.fr/, http://www.issy.com/ma-ville/equipements-culturels/les-arcades, http://www.xippas.net/, http://www.museedelhomme.fr/, http://www.quaibranly.fr/, http://www.museum-mineral.fr/, www.imarabe.org/, equipement.paris.fr/JARDIN TINO ROSSI, http://www.hallesaintpierre.org, http://www.louvre.fr/, http://equipement.paris.fr/conservatoire-municipal-w-a-mozart-1595, www.jeudepaume.org, www.musee-orangerie.fr/, http://www.cwb.fr/, www.curie.fr/, www.grandpalais.fr/, http://www.pavillon-arsenal.com/, http://www.gaite-lyrique.net/, www.musee-moyenage.fr/, www.mahj.org, http://www.archivesnationales.culture.gouv.fr/, http://www.museepicassoparis.fr/, http://www.paris.fr/loisirs/musees-expos/musee-cognacq-jay/p6466, www.musee-delacroix.fr, http://www.musee-orsay.fr, www.institutneerlandais.com/, www.pinacotheque.com/, www.lesartsdecoratifs.fr/, http://cernuschi.paris.fr/, www.musee-rodin.fr/, http://www.musee-jacquemart-andre.com/, equipement.paris.fr/Conservatoire Municipal Nadia et Lili Boulanger, https://www.sites.google.com/site/histoiregrouperenault/expos/expo-musee, http://www.ville-clichy.fr/382-le-pavillon-vendome-centre-d-art-contemporain.htm, http://www.le-bal.fr/, http://www.boulognebillancourt.com/previous/museepaulbelmondo/index.html, http://equipement.paris.fr/centre-d-animation-les-abbesses-1154, http://www.fondation-pb-ysl.net, www.mam.paris.fr/, www.palaisdetokyo.com/, fondation.cartier.com/, www.guimet.fr/, http://www.guimet.fr/fr/musee-dennery/informations-pratiques, mjcneuilly92.com, www.marmottan.com, http://vie-romantique.paris.fr, http://balzac.paris.fr, http://eaudeparis.fr/lespace-culture/pavillon-de-leau/, http://www.memorialdelashoah.org/, http://www.centreculturelirlandais.com/, http://www.mcjp.fr/, http://zadkine.paris.fr, www.museedemontmartre.fr/, www.chassenature.org, http://www.mobiliernational.culture.gouv.fr/, http://mal217.org/, www.museeduluxembourg.fr/, http://www.palais-decouverte.fr/, www.si.se/Paris/, http://www.museedelamagie.com/, http://www.fondationlouisvuitton.fr/, http://www.iicparigi.esteri.it, http://www.monnaiedeparis.fr/, http://palaisgalliera.paris.fr/, paris.fr/loisirs/musees-expos/musee-bourdelle/p6408, http://carnavalet.paris.fr/, http://www.petitpalais.paris.fr/, http://sainte-chapelle.monuments-nationaux.fr/ +playground, sports centre, swimming pool, water park, pitch, park, miniature golf, tanning salon, dance, marina, horse riding, fitness centre, picnic table, slipway, table tennis table, fitness station, garden, stadium, nature reserve, common, track, recreation ground, piste, club, firepit, dog park, outdoor seating +yes +49.3819891 8.7064791, 49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.3903727 8.7038688, 49.3716601 8.7156918, 49.4157261 8.7004521, 49.4532799 8.7620678, 49.4129054 8.7286879, 49.4209333 8.7223854, 49.4221949 8.7060036, 49.4291183 8.7154588, 49.4157681 8.7006398, 49.4088360 8.7691224, 49.3882437 8.7497467, 49.4390162 8.7105044, 49.4305905 8.7775493, 49.4272716 8.7035465, 49.4393938 8.7104846, 49.4497133 8.7157120, 49.4428768 8.7011414, 49.4395208 8.7105611, 49.4326079 8.7091648, 49.4328392 8.7092032, 49.4342309 8.7101843, 49.4342740 8.7112555, 49.4442518 8.7151750, 49.4447625 8.7168293, 49.4468314 8.7142297, 49.4308426 8.7277671, 49.3795036 8.7459449, 49.3921408 8.7451114, 49.3950715 8.7223322, 49.3735796 8.7471724, 49.4311330 8.7033214, 49.4278439 8.6859389, 49.4082372 8.7465476, 49.4136970 8.7613615, 49.4238953 8.7651482, 49.3825444 8.7132316 +53.7974026 -1.5888196, 52.5193429 -1.9956767, 51.4440363 0.2189902, 51.5082357 -0.2702788, 51.5271002 -0.0593109, -27.5314713 153.0241461, -37.8707434 145.2431359, 41.6207858 0.6284736, -27.4457530 152.9935294, 52.7727382 -1.2061350, 52.9182441 -1.4749515, -26.1397921 27.9209351, 43.2092448 2.3257355, 52.5407303 -1.8844135, -37.8032400 144.9836916, 50.4751574 4.8760546, 54.5622982 -1.3123694, 51.5449043 -0.1416992, 50.9199375 -1.4306764, 43.4360264 -80.5132918, 51.5842350 -2.9935927, 41.6443057 -0.8818539, 53.7988906 -1.5379273, 49.0752980 2.0788247, 51.3726774 -0.1000722, -37.9978007 145.0847359, -38.0207138 145.3038105, 43.3238959 -1.9728208, 52.2470692 0.7113915, -31.7415218 115.7626690, 51.6128466 -0.0650466, 43.6027465 1.4421408, -37.7844296 175.2784647, 42.8740383 -8.5518925, 47.2864345 5.0097571, 51.3656399 -0.1942536, 34.7553907 32.4631979, -33.9168798 18.3889836, 50.7422133 3.2125853, 40.3995199 -3.6719454, 41.5620885 2.0907272, -34.8450340 138.5054716, -32.5353554 115.7406294, 40.4304972 -3.7057013, 54.5998857 -5.9277568, 55.9412241 -3.1809783, 28.4701750 -16.2500236, 52.0579419 1.1564266, 53.8020197 -1.5261661, -37.8501489 145.0917119, 38.2668767 -0.6938043, -37.7385625 145.0038051, 47.3424445 0.7011886, 52.1378883 -0.4711749, 40.9640000 -5.6581657, 55.4616926 -4.6347706, 48.9510466 2.6672030, 45.1417833 1.4671320, 49.4094728 2.1181936, 49.8922033 2.2968978, -22.5641179 17.0834517, -31.8253567 115.8207578, 53.6453245 -3.0051258, 52.4461710 -1.8181764, 49.8699486 2.3697802, 54.9049926 -1.3841250, 55.9635307 -3.1783918, 49.1857550 -122.8004629, -24.8649346 152.3522792, 48.6581548 7.7300689, 47.6164998 6.8531227, 52.6367414 1.3263893, 50.4663010 4.4404796, 52.6312941 1.2882855, 52.6308935 1.2888212, 51.1291487 -3.0002954, 44.1201424 4.8408198, 52.2007028 0.1351449, 51.4839808 -0.2016925, 51.5811304 -0.0335441, 42.7757912 -71.4436183, -34.8765880 138.5513999, 52.9270411 -1.2156547, 51.3785518 -0.1035202, 51.0194379 -3.1054929, 51.7303181 0.4727366, 54.2812862 -0.4062226, 51.5361040 0.0770952, 51.5400520 0.0818832, 53.1913090 -2.5278559, 53.5526159 -1.4845162, 37.1296433 -76.5348145, 53.7536673 -0.3132392, 53.6467230 -1.7844911, 53.7254610 -1.3550935, 50.6877505 4.4057399, 51.4337900 -0.5130494, 43.5734840 3.9422104, 51.4410781 -2.5986834, -34.8739598 138.6016611 +Trinity Apse +1 +55.9849796 -3.1929699 +Paroisse de Plaisance and 48.8343750 2.3166882 +614 +Heidelberg Marriott Hotel +48.8186338 2.3589337, 48.8370737 2.3788669, 48.9000609 2.3653350, 48.8563367 2.3884320, 48.8230158 2.3140310, 48.8213412 2.3225246, 48.8685518 2.3429199, 48.8649072 2.2687029, 48.8723005 2.4127029, 48.8217660 2.3781244 +161.26302111969574 +Bank of Scotland +17 +243 +yes +638 +yes +Bank of Scotland Halifax, Santander, Clydesdale Bank, Lloyds Banking Group, TSB, Royal Bank of Scotland, Bank of Scotland, LBG, Abbey, Nationwide Building Society, Royal Bank of Scotland, Bank of Scotland, Lloyds Banking Group, Clydesdale Bank, Royal Bank of Scotland, Royal Bank of Scotland, Clydesdale Bank, Lloyds Banking Group, Bank of Scotland, Lloydes Banking Group, Lloydes Banking Group, Royal Bank of Scotland, Lloyds Banking Group, Lloyds Banking Group, Co-operative Bank, Nationwide, RBS, TSB, Lloyds Banking Group, Lloyds Banking Group, Royal Bank of Scotland, Lloyds Banking Group, Clydesdale Bank, Lloyds Banking Group +no +Parc des Expositions de Paris - Porte de Versailles, Point zéro des Routes de France, Musée Grévin, Promenade du Canal Saint-Martin, Vedettes de Paris, Palais de Musique, Promenade Canal St. Martin, Plus Vieil Arbre de Paris, Place du Carrousel, Fontaine Cuvier, Le Centaure - César, Brasserie Bofinger, Renard des Steppes, Autruche, Takin, Markhor, Cheval de Przewalski, Dromadaire, Bharal, Flamant rose, Lama, casoar, Emeu, Antilope, Gaur, Poudou, Pécari, Baudet du Poitou, Raton laveur, Wallaby, Bouquetin, Takin, Anoa, Cabiai, Daim, Yak, Ara, Trompe-oeil Bach, Himalaya, Nouvelle-Calédonie, Cévennes, Maroc, Corse, Forêts Tropicales Humides, Rapaces, Espagne, Balkans, Chien des buissons, Provence, Préalpes, USA, Zone Arides des Déserts, Alpes, Histoire des Plantes, Petite Ferme, Caucase, La Galerie des Enfants, Japon - Chine, Tourbière, Faisanderie, Rapaces nocturnes, Panda roux, Oiseaux tropicaux, Binturong, Le Manoir de Paris, Lido, Chais et entrepôts de Bercy, Cinéma - Spectacle Centre Wallonie-Bruxelles, Tour de l'Horloge, Ancienne Crèmerie, Carrières des Capucins, Le Petit Train, Batobus, Maison de Madame Violet Trefusis, Canauxrama, Daim, Babouin de Guinée, Capucin, Capybara, Chien des buissons, Girafe, Glouton, Grand Koudou, Guanaco, Jaguar, Lion d'Afrique, Loup ibérique, Lynx d'Europe, Mara, Marabout d'Afrique, Oryx algazelle, Propithèque couronné, Poudou, Singe laineux, Tapir terrestre, Vautour fauve, Zèbre de Grévy, Autruche, Addax, Grand Calao terrestre, Grue couronnée, Manchot de Humboldt, Nandou de Darwin, Otarie à crinière, Puma, Rhinocéros blanc, Aigrette garzette, Ara hyacinthe, Avocette élégante, Calao trompette, Chevalier gambette, Cigogne d'Abdim, Dendrocygne fauve, Echasse blanche, Flamant rose, Fossa, Grand Hapalémur, Héron garde-bœuf, Ibis chauve, Ibis falcinelle, Loutre d'Europe, Lémur catta, Lémur couronné, Lémur vari roux, Lémur à ventre roux, Milan royal, Ombrette, Pigeon de Guinée, Roussette paillée africaine, Sarcelle hottentote, Souchet d'Europe, Spatule d'Afrique, Tantale ibis, Tortue rayonnée, Touraco violet, Vanneau armé, Vautour moine, Vautour percnoptère, Vivarium européen, Grille du Coq, Proust (dernier lieu de vie et décès), Bureau de Gustave Eiffel, Auditorium, Statue : l'Ours de G. L. Guyot, La Sorbonne, Tour Eiffel, Cimetière du Père-Lachaise, Tour Montparnasse, Panthéon, Tour Saint-Jacques, Château de Vincennes, Basilique du Sacré-Cœur, Collège des Bernardins, Reptiles, Hôtel Lebrun, Pont Neuf, Pont Neuf, Église Saint-Eustache, Église de la Madeleine, Opéra Garnier, Hôtel de Lauzun, Presbytère, Centre Georges Pompidou, Centre Wallonie-Bruxelles, Maison de Nicolas Flamel, Argonaute, Rotonde de la Villette, Cathédrale Saint-Louis des Invalides, Elysées Céramic, Obélisque de Louxor, Maison de Tristan Tzara, Moulin de la Galette, Palais de Chaillot, Palais de Chaillot, L'Orangerie de Bagatelle, Grande Volière, Dodo Carousel, Laboratoire d'aérodynamisme de Gustave Eiffel, Les Grandes Serres du Jardin des Plantes, École Militaire, Église du dôme, Place d'Aligre, Jardin du Luxembourg, École Nationale Supérieure des Beaux-Arts, Carrousel de Montmartre, Cavae des Arènes de Lutèce, Assemblée nationale, Bateaux-Mouches, Cathédrale Notre-Dame de Paris, Arc de Triomphe, Plan du quartier Jeanne d'Arc, Arc de Triomphe du Carrousel, Colonne de Juillet, Carrousel de la Tour Eiffel, Salle du Livre d'Or, Moulin Radet, pavillon Eiffel, pavillon Ferrié, Hippodrome de Longchamp, Proue du France, Hôtel de Ville, Palais de Justice, Palais de l’Élysée, Hôtel des Invalides, Place des Vosges, Rotonde, Hôtel de Soubise, Place de la République +yes +yes +195 +yes +no +28 +55.9286688 -3.2097008, 55.9475295 -3.2065018, 55.9709381 -3.2084981, 55.9710757 -3.2083893, 55.9713224 -3.2074276, 55.9584008 -3.2092092, 55.9601757 -3.2559248, 55.9312309 -3.2523089, 55.9511924 -3.1760524, 55.9073786 -3.2585910, 55.9531081 -3.2008271, 55.9398905 -3.1798723, 55.9449974 -3.2048810, 55.9615944 -3.1808390, 55.9122939 -3.1636240, 55.9053215 -3.1319819, 55.9359122 -3.2099909, 55.9390586 -3.2260923, 55.9425869 -3.1828482, 55.9285028 -3.2096878, 55.9457396 -3.1854060, 55.9492055 -3.1928272, 55.9457758 -3.2348710, 55.9531031 -3.1974183, 55.9442082 -3.2038136, 55.9086565 -3.2096817, 55.9809058 -3.1784709, 55.9569588 -3.1874026, 55.9013749 -3.2048039, 55.9542354 -3.1917490, 55.9498996 -3.2091714, 55.9510827 -3.2031240, 55.9504209 -3.2072119, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9537368 -3.1946870, 55.9537500 -3.1946096, 55.9468356 -3.2159630, 55.9379488 -3.2323230, 55.9573609 -3.2064305, 55.9530711 -3.2010501, 55.9526098 -3.2039830, 55.9430272 -3.2039408, 55.9576475 -3.1842848, 55.9527506 -3.1965698, 55.9507785 -3.2057118, 55.9514350 -3.2026235, 55.9517068 -3.2027827, 55.9516311 -3.1963503, 55.9717098 -3.1715371, 55.9491465 -3.2108241, 55.9522434 -3.1996146, 55.9420700 -3.2221190, 55.9533643 -3.1992326, 55.9695475 -3.1723616, 55.9552540 -3.1886031, 55.9275327 -3.2095136, 55.9462028 -3.1849929, 55.9700780 -3.1719013, 55.9267933 -3.2094073, 55.9245093 -3.2096867, 55.9562249 -3.1380549, 55.9275049 -3.1644260, 55.9274977 -3.1640447, 55.9683184 -3.1734262, 55.9375910 -3.1784346, 55.9461675 -3.2083866, 55.9325351 -3.1397933, 55.9453646 -3.1914973, 55.9453776 -3.1916473, 55.9507179 -3.2052686, 55.9538645 -3.1977873, 55.9549461 -3.1936274, 55.9550466 -3.1929475, 55.9525137 -3.1970339, 55.9540653 -3.1916462, 55.9532974 -3.1903395, 55.9549221 -3.1506854, 55.9311377 -3.2521805, 55.9533274 -3.1148467, 55.9587335 -3.2260450, 55.9575343 -3.1698875, 55.9252818 -3.2099781, 55.9342963 -3.2105127, 55.9756176 -3.1666794, 55.9748270 -3.2379923, 55.9756625 -3.1668579, 55.9528423 -3.1973524, 55.9528342 -3.1149045 +no +Riegler, Bäckerei Rühle, Cafe Frisch, Mahlzahn, Riegler, Paris, Mantei, Kamps, Der Kleine Gundel, Bäckerei Rodemer, Grimminger, Bäckerei Riegler, Stefansbäck, Grimm, Mantei, Grimminger, Mantei, Mahlzahn Vollkornbäckerei, Seip, Cafè Frisch, Bäckerei Grimminger, Grimminger, Mahlzahn Vollkornbäckerei, mantei, Bridi, Conditorei Zimmermann, Mantei, Grimminger, Bäckerei Tschakert, Riegler, Görtz, Rühle, Kamps, Sofie Göbes, Schlierbacher Schiff, Mantei, Riegler, Mahlzahn Vollkornbäckerei, Riegler, Wiener Feinbäckerei Heberer, LE CROBAG, Helin Backwaren, Grimminger, Mantei, Pfänder, mantei, Mantei, Riegler, Patisserie La Flamm, Grimminger, Backshop, Lecker Bäcker, Breitenstein Bäckerei, K&U, Backwaren, Bäckerei Wacker, Bäckerei & Konditorei Stahl, Bäckerei Siegel, Café Frisch, Goldkorn, Görtz, Görtz, Laib & Leben, Mantei, Bäckerei Riegler, Backhaus, Rühle, Bäckerei-Konditorei K. Bernauer, Mantei, Riegler, Mantei, Bäckerei Bernauer, Kohlmann +yes +49.5526338 8.6554413, 49.5513229 8.6687450, 49.5554496 8.6699318, 49.5596224 8.6688235, 49.5462868 8.6715791, 49.5492546 8.6740750, 49.6390443 8.7586809, 49.6491519 8.7786154, 49.5496361 8.6717107, 49.6146080 8.6736398, 49.6015351 8.5181143, 49.6047659 8.4764246, 49.6458511 8.5671019, 49.6467494 8.5615748, 49.6566529 8.5677748, 49.6445836 8.5677274, 49.6417095 8.5631262, 49.5971548 8.4682347, 49.6052567 8.4710750, 49.6036653 8.4650992, 49.5192833 8.5023439, 49.5017017 8.5044127, 49.5273884 8.7489962, 49.5625744 8.6656969, 49.6468579 8.6317019, 49.4764727 8.5581500, 49.5001511 8.4141813, 49.4858432 8.3892989, 49.5954551 8.4634480, 49.5940946 8.4598127, 49.5299064 8.7421002, 49.5270569 8.7608652, 49.5435708 8.5967846, 49.5979747 8.4757516, 49.5988026 8.4845303, 49.5885363 8.4859606, 49.5845876 8.4879738, 49.5026807 8.4702380, 49.6017750 8.5148540, 49.5953600 8.5833630, 49.5989820 8.5839630, 49.4766349 8.5210604, 49.4766109 8.5210589, 49.4760288 8.4678779, 49.5279213 8.3955159, 49.6041485 8.7393504, 49.5271969 8.6651823, 49.6229182 8.6958850, 49.5976216 8.7371486, 49.5990671 8.7380614, 49.6233348 8.7592105, 49.6239213 8.7540220, 49.5693320 8.7183717, 49.5799659 8.7150421, 49.5836852 8.7060844, 49.5668665 8.7346098, 49.5987193 8.7329887, 49.4784646 8.4963955, 49.4822964 8.4896176, 49.4776901 8.4833126, 49.5900011 8.7564846, 49.5824512 8.7701378, 49.6499908 8.6340695, 49.5505849 8.8129790, 49.5497942 8.8086360, 49.6147886 8.7162592, 49.4815121 8.4828496, 49.5819364 8.7454907, 49.6424512 8.6384492, 49.5973081 8.7352102, 49.5596089 8.7845832, 49.5282525 8.3853190, 49.4806473 8.5961070, 49.5291303 8.3918875, 49.4785782 8.6564609, 49.6043110 8.7457135, 49.6044250 8.7292229, 49.5421727 8.6636876, 49.4869999 8.7367276, 49.5660788 8.7990762, 49.5532677 8.6658488, 49.5697702 8.7099088, 49.5637955 8.7072905, 49.5610225 8.6903218, 49.4805167 8.6715673, 49.5523081 8.5951882, 49.6118535 8.7753135, 49.6050755 8.7600210, 49.6091623 8.6418976, 49.4943601 8.7246887, 49.5454675 8.6298570, 49.6149320 8.6503966, 49.5002983 8.5498171, 49.6105522 8.6532369, 49.6020099 8.7677160, 49.4989775 8.4996107, 49.6150231 8.9143821, 49.5455206 8.7291779, 49.5078054 8.3629459, 49.4760467 8.6993112, 49.5361742 8.5642657, 49.5213559 8.4025971, 49.6726030 8.7316620, 49.5411428 8.6400552, 49.5449883 8.6380933, 49.6759656 8.7650417, 49.6696052 8.7669330, 49.4886950 8.5438017, 49.4865780 8.5341631, 49.4842068 8.5321272, 49.4844998 8.5396275, 49.4813475 8.5392948, 49.4906189 8.5252295, 49.4928093 8.5231160, 49.4950859 8.5284220, 49.4824577 8.4795332, 49.6677528 8.7451867, 49.5145230 8.6578124, 49.6562702 8.7547711, 49.6469373 8.7735990, 49.5366820 8.6659671, 49.5909727 8.7236941, 49.5888987 8.6549457, 49.5358085 8.4971147, 49.6209834 8.9451249, 49.4805822 8.5566713, 49.4928843 8.4043565, 49.4957477 8.4153853, 49.5509737 8.6679528, 49.4845835 8.4861412, 49.4915516 8.3784579, 49.5127526 8.5766366, 49.4982324 8.7655052, 49.4924928 8.3764937, 49.4786030 8.4903082, 49.6445901 8.7362064, 49.5793143 8.7544635, 49.5480018 8.3774413, 49.5411759 8.6979134, 49.5150489 8.7482457, 49.5418725 8.3751679, 49.5493313 8.6856291, 49.6476051 8.7947973, 49.6429053 8.7968483, 49.6642107 8.7970938, 49.5208026 8.6986241, 49.5416163 8.6583108, 49.5401579 8.6578378, 49.4868908 8.4676669, 49.4928220 8.4705420, 49.5020864 8.4704715, 49.5261504 8.8636211, 49.5138673 8.8528216, 49.5464780 8.7680625, 49.6098312 8.8122662, 49.5862746 8.8146330, 49.6518562 8.7848309, 49.5517497 8.8515418, 49.5661178 8.7025227, 49.4911119 8.3742960, 49.5832325 8.7940521, 49.5638706 8.7714332, 49.4769206 8.7595228, 49.5578177 8.7067432, 49.5486105 8.7553751, 49.5852926 8.7016688, 49.5785870 8.7199786, 49.5559207 8.6889238, 49.5273739 8.5651748, 49.5266308 8.5656324, 49.4797746 8.4391042, 49.4989805 8.4843058, 49.4941948 8.4844155, 49.5424684 8.4685482, 49.5001116 8.4803170, 49.5444562 8.4781503, 49.5037603 8.4961936, 49.5110301 8.4710668, 49.5330260 8.5941277, 49.4873267 8.4784658, 49.6656426 8.6609367, 49.6520788 8.6499987, 49.5114636 8.5350050, 49.6669516 8.8112186, 49.5424915 8.4717533, 49.6589466 8.8013252, 49.5391501 8.4773405, 49.4959898 8.4310922, 49.5110988 8.7443994, 49.4946219 8.3724195, 49.5181730 8.4097783, 49.5150107 8.4033010, 49.6388516 8.7691296, 49.5903819 8.6385883, 49.6269184 8.7623574, 49.5311679 8.3834222, 49.5109697 8.5390654, 49.6592860 8.8414793, 49.6333827 8.6325752, 49.5118162 8.6060150, 49.5613325 9.0150075, 49.5995733 8.8345813, 49.5050598 8.4882934, 49.4920089 8.4654110, 49.4891200 8.4631089, 49.4855525 8.4714451, 49.5083214 8.5128908, 49.6717144 8.6238800, 49.6732916 8.6243610, 49.6212544 8.7673967, 49.4777080 8.4194033, 49.4826588 8.4298418, 49.4783913 8.5133178, 49.4787334 8.4823454, 49.4818243 8.4728248, 49.6251009 8.7584019, 49.5075555 8.5062085, 49.5123400 8.4990766, 49.4890790 8.3723447, 49.5003383 8.4681392, 49.4886025 8.5229300, 49.4871963 8.5284034, 49.5048012 8.6049417, 49.5058154 8.5991281, 49.5134609 8.5109622, 49.5038199 8.5124492, 49.5294880 8.4924719, 49.4976968 8.4778553, 49.5033335 8.4634707, 49.4847637 8.4636093, 49.6675554 8.6315104, 49.4795588 8.4696925, 49.4972386 8.4722901, 49.4988236 8.4674949, 49.4966530 8.4866256, 49.5047040 8.4880834, 49.5124002 8.6565502, 49.6528838 8.5673290, 49.4782712 8.5070996, 49.4786515 8.5098927, 49.6273416 8.7269432, 49.5023852 8.4465135, 49.4938995 8.4579290, 49.5322824 8.4701025, 49.4989234 8.4484845, 49.5059134 8.5174984, 49.5080014 8.4776263, 49.4989638 8.5029609, 49.4779866 8.4958199, 49.5903363 8.6525815, 49.5941595 8.6540387, 49.4847568 8.4740166, 49.5138316 8.5479243, 49.4992414 8.4165235, 49.5918833 8.6618825, 49.4843868 8.5321396, 49.4853591 8.7967688, 49.4768109 8.4038972, 49.5676732 8.9734875, 49.5863527 8.6469574, 49.5619418 8.4791997, 49.4878267 8.5258092, 49.4786924 8.5981080, 49.5152463 8.5181107, 49.5299515 8.5718285, 49.5314204 8.5765244, 49.4794425 8.5535035, 49.4831596 8.5610945, 49.4769338 8.5657223, 49.4774095 8.5619997, 49.4848515 8.4814311, 49.5051898 8.4935473, 49.5207522 8.4034862, 49.5517543 8.3782358, 49.4982790 8.6570508, 49.4981719 8.6521516, 49.4853666 8.4627430, 49.4804899 8.4860880, 49.4848495 8.4761497, 49.4880198 8.4642243, 49.4897017 8.4377805, 49.5942259 8.6445664, 49.4975985 8.4900640, 49.4868107 8.4688548, 49.4778624 8.4536125, 49.4983114 8.5564824, 49.6750068 8.6450981, 49.5030146 8.6016449, 49.4858508 8.4824634, 49.4883473 8.4056724, 49.4765745 8.4860680, 49.5390884 8.4502362, 49.5056775 8.4842932, 49.5457099 8.4464512, 49.5031646 8.3819405, 49.4798502 8.4487432, 49.6334910 8.6209501, 49.6368541 8.6191745, 49.6389246 8.6189867, 49.5219624 8.6659217, 49.5253338 8.6668826, 49.5302210 8.8617403, 49.4995180 8.4905691, 49.5268383 8.6549756, 49.5028783 8.6616836, 49.5079175 8.6287307, 49.5105009 8.6634850, 49.4960866 8.5527532, 49.6426932 8.6512427, 49.6439529 8.7235692, 49.6460906 8.6869091, 49.4821573 8.4496006, 49.4825657 8.4492995, 49.5109298 8.7312150, 49.5049826 8.7665026, 49.4876292 8.4685313, 49.4805032 8.4790806, 49.4807315 8.4835521, 49.5223778 8.3942438, 49.4789422 8.4404426, 49.4919017 8.3762136, 49.4928241 8.3719058, 49.4945002 8.3722348, 49.4965126 8.5478242, 49.4933598 8.4183256, 49.5933244 8.9889913, 49.5265918 8.4789790, 49.5049367 8.5273225, 49.6085770 8.6485202, 49.6083653 8.6527742, 49.4981974 8.4910748, 49.5235488 8.4856429, 49.5308660 8.6481632, 49.5330110 8.6443614, 49.4924070 8.4196660, 49.4920108 8.4203004, 49.6392769 8.6309404, 49.5162649 8.4005627, 49.5306577 8.4999107, 49.4969376 8.4207200, 49.5386334 8.5790385, 49.5400345 8.5792127, 49.5267542 8.5619915, 49.5191389 8.4062496, 49.5289761 8.6181849, 49.5412571 8.5655589, 49.5465615 8.5675124, 49.5479095 8.5979610, 49.5901501 8.8932495, 49.5473900 8.5917604, 49.5328738 8.5840945, 49.5405306 8.5884183, 49.5416058 8.5883322, 49.6035142 8.4793012, 49.5010293 8.4763173, 49.5183424 8.4631446, 49.5293353 8.4507912, 49.5243687 8.4958742, 49.4871923 8.4669293, 49.5354112 8.4790783, 49.4985593 8.5551505, 49.4895692 8.7961728, 49.5648285 8.9707209, 49.4792297 8.4713083, 49.5514126 8.4775884, 49.5079915 8.5480883, 49.5223060 8.6796721, 49.5201448 8.8563305, 49.5109470 8.5175456, 49.5636208 8.7168661, 49.5801469 8.7147853, 49.6605315 8.5642116, 49.4941346 8.3623367, 49.4911856 8.4751613, 49.5666871 8.8436816, 49.5651816 8.8298309, 49.5681912 8.8297470 +no +primary, residential, primary, primary, primary, primary, primary, living street, living street, primary, pedestrian +55.9517532 -3.2076351 +yes +55.9814339 -3.1885738 +de:Rathaus (Heidelberg) +55.9286688 -3.2097008, 55.9475295 -3.2065018, 55.9709381 -3.2084981, 55.9710757 -3.2083893, 55.9713224 -3.2074276, 55.9584008 -3.2092092, 55.9601757 -3.2559248, 55.9312309 -3.2523089, 55.9511924 -3.1760524, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9531081 -3.2008271, 55.9398905 -3.1798723, 55.9449974 -3.2048810, 55.9615944 -3.1808390, 55.9122939 -3.1636240, 55.9383223 -3.4081252, 55.9359122 -3.2099909, 55.9390586 -3.2260923, 55.9425869 -3.1828482, 55.9285028 -3.2096878, 55.9457396 -3.1854060, 55.9492055 -3.1928272, 55.9457758 -3.2348710, 55.9531031 -3.1974183, 55.9442082 -3.2038136, 55.9612140 -3.3062746, 55.9809058 -3.1784709, 55.9569588 -3.1874026, 55.9328178 -3.3087070, 55.9542354 -3.1917490, 55.9428244 -3.2815918, 55.9498996 -3.2091714, 55.9510827 -3.2031240, 55.9504209 -3.2072119, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9537368 -3.1946870, 55.9537500 -3.1946096, 55.9468356 -3.2159630, 55.9379488 -3.2323230, 55.9573609 -3.2064305, 55.9530711 -3.2010501, 55.9526098 -3.2039830, 55.9430272 -3.2039408, 55.9576475 -3.1842848, 55.9527506 -3.1965698, 55.9507785 -3.2057118, 55.9514350 -3.2026235, 55.9517068 -3.2027827, 55.9516311 -3.1963503, 55.9717098 -3.1715371, 55.9491465 -3.2108241, 55.9522434 -3.1996146, 55.9420700 -3.2221190, 55.9533643 -3.1992326, 55.9695475 -3.1723616, 55.9552540 -3.1886031, 55.9275327 -3.2095136, 55.9462028 -3.1849929, 55.9700780 -3.1719013, 55.9655823 -3.2732115, 55.9267933 -3.2094073, 55.9245093 -3.2096867, 55.9562249 -3.1380549, 55.9275049 -3.1644260, 55.9274977 -3.1640447, 55.9683184 -3.1734262, 55.9375910 -3.1784346, 55.9461675 -3.2083866, 55.9325351 -3.1397933, 55.9453646 -3.1914973, 55.9453776 -3.1916473, 55.9507179 -3.2052686, 55.9538645 -3.1977873, 55.9549461 -3.1936274, 55.9550466 -3.1929475, 55.9525137 -3.1970339, 55.9540653 -3.1916462, 55.9532974 -3.1903395, 55.9549221 -3.1506854, 55.9311377 -3.2521805, 55.9533274 -3.1148467, 55.9587335 -3.2260450, 55.9575343 -3.1698875, 55.9252818 -3.2099781, 55.9342963 -3.2105127, 55.9756176 -3.1666794, 55.9429604 -3.2929801, 55.9426525 -3.2829003, 55.9430016 -3.2880429, 55.9656482 -3.2744012, 55.9748270 -3.2379923, 55.9233852 -3.2910431, 55.9234641 -3.2913646, 55.9383953 -3.3146583, 55.9756625 -3.1668579, 55.9528423 -3.1973524, 55.9528342 -3.1149045 +55.9412176 -3.1828378, 55.9283372 -3.2096631, 55.9507994 -3.2047897, 55.9460448 -3.2015976, 55.9446069 -3.1855056, 55.9588659 -3.2111897, 55.9815168 -3.1763960, 55.9103355 -3.3217849, 55.9524411 -3.1952812, 55.9702171 -3.2078338, 55.9346065 -3.2098926, 55.9710676 -3.2093363, 55.9710423 -3.2098425, 55.9478310 -3.1861334, 55.9529704 -3.2016563, 55.9542945 -3.1885490, 55.9273534 -3.1644654, 55.9330965 -3.1661388, 55.9462803 -3.2000712, 55.9463119 -3.1999342, 55.9637043 -3.2016920, 55.9481674 -3.1942981, 55.9472836 -3.1920023, 55.9472570 -3.1916452, 55.9471176 -3.1917878, 55.9593444 -3.1838906, 55.9488012 -3.1931423, 55.9642393 -3.1769217, 55.9443038 -3.1834963, 55.9476854 -3.1860695, 55.9527011 -3.1891146, 55.9459189 -3.2020308, 55.9638931 -3.2020424, 55.9579121 -3.2063031, 55.9341951 -3.1068165, 55.9392059 -3.3146403 +2 +73 +48.8316089 2.3555656, 48.8699280 2.3499165, 48.8321351 2.3486444, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8293528 2.3802852, 48.8339810 2.3847461, 48.8562087 2.3767474, 48.8210197 2.3568688, 48.8789680 2.3090890, 48.8353270 2.3472350, 48.8582469 2.3636013, 48.8450099 2.3109341, 48.8608218 2.3464552, 48.8296235 2.3814150 +78 +55.9470365 -3.1966624, 55.9473807 -3.1953726, 55.9539155 -3.1869471 +105 +1231 and Pech de Bugarach, 2921 and Pic Carlit, 1211 and Pic de Nore, 1663.38 and Montfalgars, 2784.66 and Pic du Canigou, 2572 and Puig Farinós, 2414.8 and Roca de Colom, 2692.4 and Puig Pedró de la Tossa, 1091 and Le Caroux, 2412 and Pic du Bernard Sauvage, 2292 and Puig d'Escoutou, 2362 and Pic Joffre, 1778 and Puig de l'Estelle, 1581.3, 2691, Mourral Blanc, 685 and Roc de l'Aigle, Mont Cayroux, 925 and Mont Sarrat, Roc du Couillou, 773 and Pic de la Matalena, 646 and Moun Camp, 682 and Moun Simel, 585 and Roc d'Agnel, Mont Péril, Pic de San Marti, Pic de Rey, Roc du Tonnerre, Mont Redon, 978 and Serre d'Alaric, 2786 and Pic d’Eyne, 2861 and Pic de les Nou Fonts, 2800 and Pic de Noucreus, 2651 and Pic des Sept Hommes, 2714 and Puig del Roc Negre, 2266 and Pic de Cincreus, 175 and Mont Saint-Clair, 2507 and Roca Colom, 2690 and Petit Péric, 2818 and Pic d'Engorgs, 2915 and Puigpedrós, 2880 and Piolet de Bastiments, 2702 and Pic de la Dona, 2504.1 and Puig de la Llosa, 1640.9 and Puig de l'Artiga del Rei, 1640.7 and Puig Pedrissa, 1654.4 and Puig de la Clapa, 2863 and Tosseta de l'Esquella, Roc Sant Julia, Roc du Duc, 2039 and Roc des Trépassats, 1126 and Pic de la Falguerosa, 1062 and Pic de la Pena, Puig d'En Carol, 2827 and Pic de Finestrelles, 1009 and Pic de l'Alzina, Roc Rouge, 2469.4 and Pic de Madrès, 1430.4 and Roc du Casteldos, 1843.5 and Pic Dourmidou, 1555.93 and Serre de Caillong, 2027.4 and Picaucel, 707.28 and Montolier de Perellos, 433.46 and Caja, 685.83 and Roc de Nabant, 298.55 and Plan du Pal, 589.96 and Serre de Quintillan, 1220.7 and Le Karimal, 1595.4 and Montagne de Crabixa, 843.03 and Roque de Méric, 1494.8 and Pic d'Estable, 1143.2 and Tuc de Gaubeille, 1342 and Pech dels Escarabatets, 57, 878.85 and Montagne de Tauch, 916.52 and Pech de Fraysse, 104 and Puech de Grange, 55.4 and L'Esquino de Camel, 764.94, 623.2, 788.03, 764.06, 564 and Pic de Brau, 1014.63 and Pic Saint-Christophe, 1234.63 and Roc Saint-Sauveur, 2810.2 and Pic Péric, 2325.5 and Roc d'Aude, 2376 and Mont Llaret, 2804.3 and Pic Oriental de Coll Roig, 2671 and Puig de la Grava, 583.95 and Serre de Vergès, 532.8 and Roc Rodon, 982.5 and Pic de Sailfort, 1279.72 and Pilon de Belmatx, 1706.4 and Serrat dels Cabanats, 1995.2 and Serra de Clavera, 714.6 and Puig de la Calma, 322.5 and Martal, 130.52 and Puig de les Redoleres, 395.93 and Pic Haut, 377.37 and Pic Estelle, 695.46 and Puig de Boc, 774.67 and Mont Héléna, 345.98 and Serrat d'En Bougader, 265.98 and Serrat de la Devesa, 1024.72 and Pic de Bau, 1626.7 and Serrat del Cortal, 633.41 and Le Néret, 323.46 and Peyro d'Arquo, 540.52 and Pic Aubeill, 2112.6 and Pic de Dona Pa, 718.25 and Roc de l'Hirondelle, 903.7 and Tuc d'En Guinxe, 674.54 and Pic de la Garsa, 1333.31 and Pic de les Salines, 1092.64 and Pic de Fontfrède, 725.17 and Pic Mirailles, 247.11 and Puig Oriol, 291.56 and Montou, 794.1 and Serrat d'En Parrot, 930.08 and Puig de Sant Miquel, 2288.31 and Pic de Mollet, 339.45 and Pedra Blanca, 2581.1 and El Punxo, 1773.28 and Pic de Bena, 2349.83 and La Tossa d’Err, 2098.8 and Tres Esteles, 100.86 and Serrat de la Devesa, 1211.2 and Puig des Moros, 1159.9 and L'Estanyol, 2831 and La Tour d’Eyne, 2711.45 and Cambre d’Aze, 573.8 and Pic Lazerou, 1105.4 and Roc d'En Peillofo, 2726.79 and Pic Moneliet, 2624.11 and Pic du Gallinas, 2412.4 and Serra de Mauri, 2470.12 and Puig del Pam, 2061.72 and Roc de les Perxes Blanques, 925.85 and Puig de les Feixes, 2172.2 and Mont Coronat, 500.57 and Roch de Lansac, 424.5 and Sarrat del Coude, 2662.83 and Pic de la Serre Gallinière, 2456.61 and Cime de Pomarole, 2042.3 and El Dormidor, 2093.31 and Pic Bastard, 507.17 and Força Réal, 437.55 and Puig Pedrous, 448.31 and Roc del Mut, 1632.3 and Pic del Torn, 1723.8 and Serra d'Escales, 1376.8 and Serrat de Mirailles, 1313.9 and Pic du Roussillon, 200.16 and Roc Calbeil, 2345.4 and Pic de la Rouquette, 1797.8 and Pic de Portepas, 1451.2 and Pic de la Moscatosa, 2204.1 and Roc de la Calma, 424.41 and Mont Plat, 2051.9 and La Llabanère, 1655.9 and Lloumet, 2309.47 and Serrat de l'Escaldat, 2736.56 and Pic de Font Freda, 2876.87 and Pics de Font Negra, 1687 and Cim de Portavella, 1766.02 and Puig Caga Llops, 2403.29 and Puig de la Collada Verde, 1642.09 and Puig Sec, 1830.31 and Puig dels Sarraïs, 1313.85 and Puig Ferreol, 1147.06 and Puig Fabre, 770.6 and Roc del Nissol, 899.57 and Roc Paradet, 2134.8 and Serrat de la Mente, 1356.4 and Roc des Quarante Croix, 2006.46 and Puig d'Esquena d'Ase, 1450.26 and Roc de Frausa ou Roc de France (1409m), 1030.09 and Peyre Basse, 530.25 and La Cougoulère, 823.33 and La Redoute, 1211.88 and Serre de la Garsa, 1194.41 and Mont Capell, 2059.74 and Pic d'Estaques, 597.5 and Le Devès, 566.43 and Serre de l'Artigue del Baurien, 2369.7 and Pic de la Pelade, 2034.18 and Pic de la Tossa, 1790.2 and La Tartera, 1425.26 and Mont Nègre (1425m), 871.97 and Serra del Bouchet, 794 and Garrabet, 2137.69 and Pic dels Moros, 2044.2 and La Soucarrade, 225.08 and Montrodon, 2731 and Puig dels Tres Vents, 1383.1, 800.63 and Sarrat d'Espinets, 1730.9 and Puig dels Bessis, 2461.4 and Pic Gallinasse, 2060.5 and Roc des Bassouses, 194.37 and Puig Janer, 454.95 and Mont d'Espira, 1309.9 and Sarrat Naout, 2108, 517 and Pic de Tantajo, 1901 and Roc Mosquit, 2006 and Pic de la Socarrada, Coll de la Fareille, 670 and Madeloc, Roc de Journac, 2683 and Pic de la Mina, 1288.2 and Roc del Pou, Roc de Jocavell, Roque d'Egassiés, Roc de Salimanes, Roc Punchut, 2547 and Pic Mercader, Roc du Maure, 185 and Mont Saint-Bauzille, 2495.7 and Puig de Coma Ermada, 2532 and Puig de Terrers, 2597 and Pic de la Portella, 2333 and Roc de Nou Fonts, Roc Mary, Roc Campagna, 2673 and Tossal Colomer, 2450 and Roc Negre, Salt del Burro, Pic de la Fajolle, 60 and Mour, Roc de l'Aigle, El Roc Gros, 481 and Pic de Vissou, 1073 and Roc du Nouret, 1060 and Roquo d'Astié, 535 and Mont Liausson, 502 and Mont Mars, 2638 and Puig d'Ombriaga, 2869.5 and Pic de l'Infern, 207 and Le Pech, 180 and La Roche Trouée, 125 and Pech Tenarel, 250 and Mont Grand, 155 and Pech Aigu, 225 and Saint-Jacques, Pech de l'Auzine, Pech des Combarelles, 65 and Pech Na Redorte, 200 and Plo de Maurou, Pech Tignoux, La Buissonière, 500 and Le Castelas, 430 and Roque Fumade, La Pique, Pech d'Aragnou, Pech Sarda, Pech de Brens, 1098.01 and Plo des Brus, 2013, Redoun, 500 and Roc de l'Aigle, 1918 and Pic de l'Orry, 1936 and Pic des Agrellons, Le Roc Troué, Sarrat de Labade, La Camarié, 2206 and Pic de la Calma, Four à Chaux, Sarrat Montahut, La Capsole, Coste Rouge, Plateau de Lacamp, 396 and Roc de la Vella (de l'abeille), pech de laure, 300, 1034 and Roc du Caroux, Roc de l'Escriban, Pech Counille, Pech Ginestié, Roc Rouge, La Cioutat, Milobre de Massac, Roc de Matefagine, Rocher de Béraud, La Clape, L'Aïrole, Pech Berles, Pech Lagardie, Pech de Bourrel, La Pique, Pech de Gouache, 793 and Massane, 2826 and Pic Inferior de la Vaca, 795 and Pech Cardou, 1081 and La Pique Grosse, Roc d'En Benoit, Roc Serret, 576 and La Serre, 356, 520, Pic du Porteil du Bech d'Ourteil, Roc de la Couillade del Peyroulet, Roc du Taillat del Bossut, Serrat du Roc Mary, Pic du Pla de Bernard, Pic de la Rouquette, Courtalets, Pic Barbet, Pic Bas del Canigo, Collet des Bessis, Roc Roig, Roc de Cardenius, Mont Courounat, Pic de la Créou, Roc Rodon, Roc Cante Lloups, Roc del Barry d'en Naudy, Roc del Soula de Mollere, Roc del Soula del Mix, Roc dit la Soucaillousse, Roc du Coll Diagre, Roc du Mont Courounat, Puig de Passadong, Roc dals Clots del Gourg, Roc des Cimbeils, Pic del Signor, Roc de la Roquette, Roc del Cim des Cums, Roc dels Lladres, 2040 and Pic de l'Orry, Crête des Sept Hommes, 2637 and Pic de Bassibès, Pic de Soule de Ramounet, Pic de la Solane de l'Ours, Pic des Gourgs, Pic du Bois de la Ville, Pic du Quazemi, Puig Sec, Roc de Mariailles, Roc de Terrellou, Roc de l'Aigle, 2724 and Pic Rougeat, Pic de Coumeille, Pic de Gallinasse, Pic de Serre Bernet, Puig Coulomb, Puig de las Coubynes, Roc Pointu de Coll Roig, Roc de la Cabane en Ribe, Pic Pastous, Roque Coucoulière, Pic de Pel de Ca, Pilon du Pla de la Pilote, Puig d'el Boulet, Roc Redou, Sarrat de Font Frede, Puig del Traucadou, Roc de la Roquette, Roc de Calamiche, Rocher du Palet de Rouland, Pech en Barthe, Montpeyrous, Au Mont Cal, Au Mont Long, 1557.7 and Coma Negra, 1289.4 and Puig de la Llibertat, Pech de la Vigne, Pech de l'Homme, Pech del Bousquet, Pech du Seigneur, Pech de Mont-Carretou, Roque Vacquière, Pech de Rie, 147, 187, 690 and Pic de la Coquillade, 2801 and Puigmal de Llo, 2663, 520 and Roc Traucat, 1629 and Castell Vidre, 2596 and Les Abelletes, 2714 and Pic dels Pedrons, 1015, 1182 and Pic des Sarrasis, 1179 and Pic du Midi, 1453 and Pic des Rives, 670, 283, 112 and Mont Saint-Loup, 590 and Signal d'Alaric, 504, 455, 280, quiersboutou, roc du bougre, La Roque Danseuse, 333, 252 and Mont Counil, Roc de Saint-Bauzille, 530 and Le Castella, 631 and Pech de Guilloumet, Pech de Caunettes, Mont Peyrous, Pech Mage, Mont Redon, Pech de Terri, Le Pied de Charlemagne, Courcouyol, Roc du Causse, Pech de la Bade, Roc Gris, Puig Peric, Mont Tressou, Pic del Poul, Roc de l'Escriban, Le Grand Bosc, Serre de Quinquillan, Coste Bentouse, Roque Blanche, 2844.4 and Pic de Prat de Bacivers, 2723 and Roc Colom, 2647 and Peiraforca, 2597 and Les Abelletes, 1438.2 and Roc de la Campana, 1424.0, 1330.6 and Puig de les Pedrisses, 1379.6 and Roc de la Sentinella, 975.6 and Puig del Boixer, 590 and Les Prades, 759.1 and Puig Negre, 945.2 and Puig Forcadell, 815.3 and Puig Forcat, 1257.1 and Puig Neulós, 1047.8 and Puig Pregon, 735.5 and Puig de Calmelles, 607.1 and Puig de la Parreguera, 672.8 and Puig de la Puja, 687.6 and Puig del Teixó, 831.6 and Puig dels Pruners, 1009.7 and Puig de l'Orri, Pech de Luc-sur-Aude, 1105 and Roca Gelera, 388 and Pic de Vissounel, 205 and Le Céressou +yes +55.9575800 -3.1847940, 55.9491314 -3.1876537, 55.9757878 -3.2301721, 55.9621811 -3.2003284, 55.9526181 -3.1750774, 55.9471770 -3.1904575, 55.9254145 -3.2090883, 55.9764403 -3.1701500, 55.9504129 -3.2949801, 55.9601603 -3.2006854, 55.9299490 -3.2096090, 55.9592433 -3.2230171, 55.9481079 -3.1917724, 55.9034567 -3.1574061, 55.9808227 -3.2245927, 55.9479318 -3.1942157, 55.9166326 -3.2276420, 55.9467615 -3.2168254, 55.9524553 -3.1968363, 55.9501797 -3.1870275, 55.9428645 -3.2037697, 55.9484729 -3.1956543, 55.9478512 -3.2019348, 55.9452311 -3.1921670, 55.9449743 -3.1941250, 55.9701331 -3.1723584, 55.9411858 -3.2034013, 55.9558388 -3.1571446, 55.9250843 -3.2616025, 55.9473220 -3.2061120, 55.9382464 -3.1945920, 55.9356972 -3.2104575, 55.9457633 -3.2087758, 55.9458760 -3.2095814, 55.9464641 -3.2365646, 55.9308474 -3.2091419, 55.9461542 -3.1854391, 55.9057145 -3.2240658, 55.9618166 -3.1524945, 55.9499117 -3.2074257, 55.9380654 -3.1900489, 55.9164262 -3.2851068, 55.9724535 -3.2516505, 55.9626190 -3.2334642, 55.9459369 -3.2194891, 55.9520610 -3.1917849, 55.9491345 -3.1940862, 55.9513741 -3.1884100, 55.9527128 -3.2015822, 55.9282565 -3.2096375, 55.9518891 -3.1996221, 55.9520193 -3.2031623, 55.9509410 -3.2098198, 55.9553246 -3.1925314, 55.9490742 -3.1925402 +49.4091649 8.6726851, 49.4079061 8.6867560, 49.4117371 8.7091875, 49.4073921 8.6825502, 49.4095865 8.7066610, 49.4115410 8.7046342, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4065332 8.6919726, 49.4067729 8.6917906 +Muni, 1AX, 18, 1, Megabus, linea "A" "B" "C" +49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.3988716 8.6899921, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.4240406 8.6385449, 49.3851489 8.6733031, 49.3673694 8.6862886, 49.4061345 8.6593850, 49.3956761 8.6692210, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.3704305 8.7013213, 49.4296958 8.6455225, 49.3810973 8.6895578, 49.4172010 8.6768150, 49.3593333 8.6876382, 49.3810576 8.6896077 +no +yes and 55.9574046 -3.3230477, 55.9354338 -3.2242213, 55.9392405 -3.2010466, 55.9630348 -3.1740635, 55.9636529 -3.2168886, 55.9155151 -3.2156990, 55.9237895 -3.2171350, 55.9631573 -3.2832688, 55.9707352 -3.1568526, 55.9711168 -3.1640718, 55.9711895 -3.1683355, 55.9791728 -3.2010754, 55.9338408 -3.2264371, 55.9152441 -3.2516069, 55.9825353 -3.2514844, 55.9323357 -3.1584697, 55.9514018 -3.1936368, 55.9045625 -3.2720593, 55.9521243 -3.1789512, 55.9381330 -3.1218602, 55.9302907 -3.1173483, 55.9321591 -3.1257994, 55.9454147 -3.2890984, 55.9065021 -3.2613856, 55.9553707 -3.1825623, 55.9571170 -3.1779651, 55.9601048 -3.1513646, 55.9680329 -3.1805434, 55.9587614 -3.1443997, 55.9556726 -3.1479476, 55.9557155 -3.1456658, 55.9401743 -3.2267826, 55.9552162 -3.2365445, 55.9547756 -3.2373840, 55.9095872 -3.2393054, 55.9108572 -3.2270661, 55.9216235 -3.2249213, 55.9159985 -3.1400663, 55.9092916 -3.2372626, 55.9393204 -3.2846024, 55.9042417 -3.1960580, 55.9398320 -3.2898011, 55.9217421 -3.2554291, 55.9068220 -3.1630589, 55.9464164 -3.1464399, 55.9250180 -3.1583419, 55.9260352 -3.1459743, 55.9571818 -3.2873826, 55.9492991 -3.2859470, 55.9492670 -3.2867008, 55.9547250 -3.1749696, 55.9337511 -3.2052182, 55.9498517 -3.2814881, 55.9537350 -3.2785842, 55.9497199 -3.2870771, 55.9561182 -3.2944056, 55.9541762 -3.2958566, 55.9547119 -3.2934647, 55.9552269 -3.2911211, 55.9547217 -3.2988876, 55.9539944 -3.2980005, 55.9456849 -3.1821866, 55.9419453 -3.0776622, 55.9348121 -3.0907246, 55.9171604 -3.1354115, 55.9176342 -3.1349480, 55.9133914 -3.1432354, 55.9606609 -3.1599303, 55.9188473 -3.2404491, 55.9519712 -3.1195327, 55.9171100 -3.1237879, 55.9025400 -3.1724775, 55.9029149 -3.1462329, 55.9000899 -3.2205482, 55.9465352 -3.1840511, 55.9092765 -3.3232261, 55.9330133 -3.1427254, 55.9310330 -3.1255391, 55.9354998 -3.1220327, 55.9362482 -3.1261770, 55.9308759 -3.1319934, 55.9359705 -3.1279223, 55.9337560 -3.1253756, 55.9335853 -3.1252491, 55.9298450 -3.1761132, 55.9490531 -3.1276714, 55.9511640 -3.1060082, 55.9044556 -3.1570879, 55.9076488 -3.1759925, 55.9341278 -3.1169338, 55.9065155 -3.1451234, 55.9091223 -3.2759407, 55.9292208 -3.2209361, 55.9341796 -3.2490939, 55.9544529 -3.4121242, 55.9519762 -3.1039288, 55.9100473 -3.3260875, 55.9343630 -3.2060244, 55.9317398 -3.3087896, 55.9605626 -3.1972928, 55.9678833 -3.1879703, 55.9510616 -3.2914538, 55.9459761 -3.1856715, 55.9558587 -3.3031410, 55.9568286 -3.3072594, 55.9511189 -3.1747470, 55.9510730 -3.1753467, 55.9508275 -3.1752994, 55.9509457 -3.1749408, 55.9467014 -3.1636945, 55.9729020 -3.1735210, 55.9765094 -3.1721906, 55.9593061 -3.1742277, 55.9442890 -3.2403468, 55.9863800 -3.4014440, 55.9367665 -3.2420598, 55.9459205 -3.2905781, 55.9402317 -3.2875667, 55.9402275 -3.2879315, 55.9409941 -3.2876039, 55.9406671 -3.2872934, 55.9376020 -3.2317633, 55.9789111 -3.2482505, 55.9787860 -3.1969887, 55.9640660 -3.1728458, 55.9066017 -3.2144569, 55.9605387 -3.2087492, 55.9542112 -3.1931545, 55.9635545 -3.1913656, 55.9602994 -3.1953857, 55.9544319 -3.1917436, 55.9560954 -3.2106920, 55.9722967 -3.1912847, 55.9595227 -3.1758404, 55.9533932 -3.1785163, 55.9562679 -3.1871987, 55.9743198 -3.1704310, 55.9744808 -3.1743158, 55.9759914 -3.1715382, 55.9532846 -3.2921393, 55.9574984 -3.2083571, 55.9740151 -3.2272786, 55.9367964 -3.2406611, 55.9854599 -3.3436174, 55.9641388 -3.1938555, 55.9260058 -3.2090640, 55.9359966 -3.1572700, 55.9513346 -3.1158570, 55.9661658 -3.2702350, 55.9741295 -3.1797027, 55.9600781 -3.1741020, 55.9409110 -3.2215160, 55.9556979 -3.2548082, 55.9660701 -3.2463715, 55.9649029 -3.2457519, 55.9298237 -3.3877108, 55.9690676 -3.1888662, 55.9912413 -3.4109019, 55.9710046 -3.2619213, 55.9588466 -3.2249675, 55.9013282 -3.3024177, 55.9538981 -3.1403254, 55.9334798 -3.1706064, 55.9632425 -3.1766530, 55.9793809 -3.2828111, 55.9795761 -3.2784993, 55.9816315 -3.1875747, 55.9797956 -3.2652214, 55.9808614 -3.2575795, 55.9814929 -3.2544070, 55.9822488 -3.1871833, 55.9316920 -3.1706557, 55.9453307 -3.1872851, 55.9225757 -3.1742046, 55.9177995 -3.2258715, 55.9756492 -3.1795285, 55.9227390 -3.3878621, 55.9219586 -3.3846448, 55.9220190 -3.3812464, 55.9223012 -3.3874671, 55.9216403 -3.3816171, 55.9224466 -3.3896092, 55.9219085 -3.3878670, 55.9217658 -3.3815092, 55.9221310 -3.3812652, 55.9215846 -3.3896076, 55.9614564 -3.1459832, 55.9205305 -3.3862442, 55.9209136 -3.3848589, 55.9204525 -3.3866404, 55.9207333 -3.3855343, 55.9211430 -3.3830700, 55.9101232 -3.2870070, 55.9533991 -3.1420299, 55.9393782 -3.2534274, 55.9417141 -3.2570156, 55.9410585 -3.2869761, 55.9414229 -3.2802235, 55.9403326 -3.2912941, 55.9392116 -3.2900212, 55.9388929 -3.2894937, 55.9394656 -3.2916887, 55.9003682 -3.2260323, 55.9078725 -3.2025308, 55.9413880 -3.2720449, 55.9479806 -3.2795990, 55.9409754 -3.2880597, 55.9398516 -3.2924307, 55.9380193 -3.2920921, 55.9387183 -3.2926555, 55.9387868 -3.2929480, 55.9366056 -3.2907127, 55.9377042 -3.2917990, 55.9375382 -3.2918934, 55.9393838 -3.2932527, 55.9347378 -3.2880372, 55.8767909 -3.3429604, 55.8790540 -3.3446396, 55.9415087 -3.2766618, 55.9411196 -3.2733621, 55.9408019 -3.2733746, 55.9408596 -3.2729200, 55.9408838 -3.2732713, 55.9407669 -3.2756902, 55.9408599 -3.2749720, 55.9414728 -3.2789476, 55.9415149 -3.2790978, 55.9557537 -3.2303061, 55.9881664 -3.1866683, 55.9170001 -3.2576372, 55.9224796 -3.1752957, 55.9774791 -3.1705971, 55.9799920 -3.3737074, 55.9437668 -3.1487316, 55.9425982 -3.1482480, 55.9242307 -3.3725346, 55.9423547 -3.1916864, 55.9279755 -3.3560103, 55.8977026 -3.2948914, 55.9259968 -3.2680760, 55.9801710 -3.2538339, 55.9153515 -3.1580933, 55.9088820 -3.2029285, 55.9086694 -3.2053302, 55.9273464 -3.2730805, 55.9471726 -3.1356110, 55.9008412 -3.1501893, 55.9540581 -3.1906570, 55.9285195 -3.2042449, 55.9106623 -3.1659657, 55.9716565 -3.1684610, 55.9713135 -3.1704851, 55.9713620 -3.1704984, 55.9601499 -3.1693310, 55.9563214 -3.1871536, 55.8858837 -3.2057641, 55.9621101 -3.1500541, 55.9723230 -3.1940826, 55.9768110 -3.2090813, 55.9568225 -3.3046984, 55.9714606 -3.2407164, 55.9272969 -3.2756799, 55.9398129 -3.2158327, 55.9396815 -3.3921155, 55.9596945 -3.2890959, 55.9325348 -3.2581052, 55.9762288 -3.2977563, 55.9496840 -3.2006532, 55.9749996 -3.1933672 +48 +yes +Sixt, E.On, Stadtwerke München, SWM, Stadtwerke München, SWM, BMWi/ChargeNow, BMWi/ChargeNow, Stadtwerke München, SWM, Landratsamt München, E-On, PASING ARCADEN, SWM, SIEMENS, SWM, bikomat GmbH +63 +24 +48.8108150 2.3016518, 48.8153367 2.2970255, 48.8812535 2.2714648, 48.8752564 2.2902302, 48.8719444 2.3005832, 48.8689234 2.3098108, 48.8664075 2.3221380, 48.8644950 2.3296183, 48.8623571 2.3363001, 48.8608572 2.3409680, 48.8587782 2.3474106, 48.8575436 2.3515947, 48.8552929 2.3607072, 48.8520122 2.3686542, 48.8457111 2.3727163, 48.8473551 2.3866576, 48.8472979 2.4082630, 48.8336468 2.2435931, 48.8487832 2.2988351, 48.8475338 2.3029524, 48.8504212 2.2936685, 48.7296445 2.3600059, 48.8242325 2.2730847, 48.8270162 2.2794048, 48.8326135 2.2884024, 48.8373212 2.2966299, 48.8919677 2.2377691, 48.8229245 2.3256357, 48.8280754 2.3269270, 48.8314103 2.3301279, 48.8340353 2.3325923, 48.8389167 2.3308053, 48.8330168 2.3366295, 48.8311288 2.3434842, 48.8297785 2.3504704, 48.8313959 2.3557122, 48.8331986 2.3628553, 48.8349549 2.3680817, 48.8370762 2.3729066, 48.8842870 2.3659442, 48.8480576 2.3960523, 48.8444696 2.4398829, 48.8454354 2.4293269, 48.8782117 2.3816608, 48.8808997 2.3738860, 48.8518166 2.4013757, 48.8463309 2.4190317, 48.8520240 2.3980153, 48.8663183 2.3836524, 48.8629761 2.3873271, 48.8582563 2.3901666, 48.8559463 2.3950128, 48.8720463 2.3769849, 48.8696313 2.3797364, 48.8771779 2.3711152, 48.8823909 2.3371469, 48.8834533 2.3336155, 48.8833916 2.3271828, 48.8824462 2.3221220, 48.8811421 2.3149026, 48.8802693 2.3085936, 48.8743566 2.2955149, 48.8696886 2.2853914, 48.8713568 2.2778112, 48.8652545 2.4166605, 48.8645515 2.4088118, 48.8650099 2.3985193, 48.8643020 2.3794597, 48.8653892 2.3739085, 48.8665083 2.3606199, 48.8654079 2.3560793, 48.8662606 2.3524641, 48.8686067 2.3415416, 48.8695654 2.3367072, 48.8707435 2.3324176, 48.8736792 2.3273189, 48.8828638 2.3092274, 48.8840549 2.3037368, 48.8846696 2.2989738, 48.8857297 2.2934235, 48.8395785 2.3012923, 48.8415118 2.3080120, 48.8443954 2.3175634, 48.8468543 2.3166512, 48.8514000 2.3143901, 48.8568058 2.3151577, 48.8413343 2.4008998, 48.8905035 2.3598783, 48.9162246 2.2948689, 48.8710829 2.3606594, 48.8921077 2.2852229, 48.8579460 2.4357587, 48.8625988 2.4415690, 48.8971408 2.2803973, 48.8882803 2.2884734, 48.8526992 2.4061094, 48.8534759 2.4105242, 48.8558145 2.4237108, 48.8525808 2.3887914, 48.8547441 2.3853565, 48.8581580 2.3798044, 48.8610516 2.3747956, 48.8641314 2.3695694, 48.8694348 2.3544699, 48.8706004 2.3487793, 48.8715206 2.3432861, 48.8720090 2.3397571, 48.8730354 2.3334740, 48.8747030 2.3197963, 48.8422994 2.3653504, 48.8459858 2.3551112, 48.8465082 2.3517283, 48.8499051 2.3487460, 48.8510293 2.3448480, 48.8522912 2.3393735, 48.8526872 2.3350116, 48.8363894 2.2784000, 48.8387450 2.2821427, 48.8410837 2.2879218, 48.8426906 2.2917758, 48.9368260 2.3590959, 48.8389924 2.3896778, 48.8395253 2.3958919, 48.8401549 2.3799474, 48.8410654 2.3249923, 48.8429457 2.3126019, 48.8716770 2.2935098, 48.8669099 2.2902715, 48.8630266 2.2870524, 48.8573825 2.2859234, 48.8646725 2.2937783, 48.8640063 2.2780859, 48.8580816 2.2741958, 48.8555764 2.2702166, 48.8525598 2.2681802, 48.8480038 2.2641872, 48.8452505 2.2618802, 48.8430044 2.2600472, 48.8377707 2.2565741, 48.8649686 2.3006256, 48.8723362 2.3100827, 48.8736768 2.3145456, 48.8514587 2.3267159, 48.9038952 2.3053664, 48.8939640 2.3144204, 48.8905170 2.3201235, 48.8874127 2.3256961, 48.8470802 2.3076354, 48.8470463 2.2953101, 48.8606970 2.3210551, 48.8586775 2.3231168, 48.8481026 2.3277965, 48.8452766 2.3286613, 48.8656361 2.3227452, 48.8693906 2.3253852, 48.8446967 2.2937668, 48.8546428 2.3061015, 48.8575837 2.3102891, 48.8611770 2.3148333, 48.8633194 2.3666124, 48.8610965 2.3672267, 48.8575371 2.3679970, 48.8531361 2.3686313, 48.8511945 2.3759944, 48.8500259 2.3842705, 48.8442710 2.3901179, 48.8371074 2.4024837, 48.8266498 2.4057278, 48.8354584 2.4063451, 48.8450642 2.4010776, 48.8269104 2.3661972, 48.8322556 2.3989811, 48.8658665 2.3343872, 48.8763705 2.3326310, 48.8760654 2.3385532, 48.8557241 2.3256659, 48.8784508 2.3374732, 48.8844760 2.3384377, 48.8898183 2.3386296, 48.8924388 2.3446575, 48.8977084 2.3592969, 48.8938084 2.3477393, 48.8873363 2.3497063, 48.8795699 2.3571457, 48.8762027 2.3579127, 48.8639893 2.3498782, 48.8728976 2.3562552, 48.8625595 2.3456850, 48.8552968 2.3475476, 48.8533267 2.3434941, 48.8533322 2.3346678, 48.8470860 2.3270843, 48.8422001 2.3289987, 48.8464830 2.2858855, 48.8461607 2.2783813, 48.8473202 2.2686743, 48.8477655 2.2583922, 48.8452670 2.2672606, 48.8468038 2.2717155, 48.8420002 2.2387333, 48.8406690 2.2287175, 48.8700162 2.3710617, 48.8617840 2.3537812, 48.8771276 2.4066804, 48.8754657 2.3990396, 48.8738469 2.3852526, 48.8750969 2.3893345, 48.8385876 2.3222085, 48.8317799 2.3140252, 48.8339551 2.3180764, 48.8225032 2.2984833, 48.8566177 2.3705298, 48.8602039 2.3721323, 48.8850187 2.3795672, 48.8869632 2.3867135, 48.8885434 2.3927045, 48.8911980 2.4025577, 48.8813931 2.3656341, 48.8772578 2.3494253, 48.8884812 2.3742226, 48.8908513 2.3773681, 48.8947741 2.3825277, 48.8974039 2.3855910, 48.8749279 2.3403636, 48.8759424 2.3443098, 48.8585643 2.3425634, 48.8514519 2.3619140, 48.8538938 2.3566663, 48.8429053 2.3522772, 48.8406473 2.3519334, 48.8356445 2.3527513, 48.8799166 2.3990372, 48.8819551 2.3933641, 48.8798096 2.4170873, 48.8715218 2.4043104, 48.8680997 2.4013152, 48.8382823 2.3608293, 48.8356584 2.3588519, 48.8927063 2.3274728, 48.8973715 2.3289008, 48.9061915 2.3320476, 48.8260904 2.3573505, 48.8224745 2.3585040, 48.8190866 2.3595330, 48.9231172 2.2862019, 48.9305465 2.2836436, 48.9142573 2.4038072, 48.9036279 2.3922499, 48.9207587 2.4107677, 48.8677518 2.3131104, 48.7963514 2.4492350, 48.7899066 2.4504803, 48.7797556 2.4594504, 48.8024711 2.4466949, 48.8090371 2.4347211, 48.8150770 2.4217740, 48.8214689 2.4136458, 48.9118944 2.3339725, 48.9196049 2.3429933, 48.8051317 2.3637903, 48.7869402 2.3673857, 48.7960877 2.3683672, 48.8103280 2.3622359, 48.8510924 2.3307543, 48.8439859 2.3243283, 48.8788951 2.3624612, 48.8932382 2.4133209, 48.8795976 2.3270787, 48.9301278 2.3563841, 48.9459311 2.3641518, 48.8538982 2.2893959, 48.8317277 2.2373655, 48.8296613 2.2308732, 48.8201086 2.3647992, 48.8216697 2.3693224, 48.8159011 2.3773455, 48.8109896 2.3839963, 48.8491398 2.3218984, 48.8757192 2.3279030, 48.8782019 2.2991235, 48.7687211 2.4643844, 48.8837741 2.3495359, 48.8915918 2.3496700, 48.8663302 2.3215942, 48.8603937 2.3146892, 48.8537409 2.3693210, 48.8433230 2.3737596, 48.8456163 2.3095848, 48.9064052 2.4491919, 48.8975316 2.3446684, 48.8419339 2.3211592, 48.7290137 2.3699140, 48.8787520 2.3221853, 48.8767276 2.4064297, 48.8795817 2.3886032, 48.8825949 2.3703263, 48.8767737 2.3935636, 48.8793865 2.3043786, 48.9068701 2.3657737, 48.8183938 2.3193550, 48.8956037 2.4251032, 48.8779888 2.2817745, 48.8582563 2.3901666, 48.8334522 2.3856620, 48.8849431 2.2599157, 48.8569919 2.3484061, 48.8600206 2.3465137, 48.8578140 2.3474541, 48.8592567 2.3459470, 48.8828803 2.3442565, 48.8844068 2.3603057, 48.8423078 2.3653119, 48.8423613 2.3655228, 48.8423729 2.3656610, 48.8464943 2.3658953, 48.8677105 2.3455628, 48.8423727 2.3656105, 48.9118944 2.3339725, 48.8939640 2.3144204, 48.8756570 2.3253611, 48.8662052 2.3223767, 48.8673076 2.3641562 +49.4005745 8.6876324, 49.4013101 8.6912413, 49.4018281 8.6889374, 49.4018800 8.6877769, 49.4133177 8.6889779, 49.4135514 8.6842391, 49.4146501 8.6879184, 49.4168731 8.6919549, 49.4171484 8.6930088, 49.4208847 8.6912002, 49.4093080 8.6997914, 49.4115405 8.7048863, 49.4123719 8.7105227, 49.4126424 8.7078375, 49.4121119 8.7079345, 49.4110927 8.6933193, 49.4133176 8.6889779, 49.4133176 8.6889788, 49.4133176 8.6889785, 49.4135508 8.6842393, 49.4133177 8.6889782, 49.4133176 8.6889782, 49.4133174 8.6889784, 49.4133177 8.6889788, 49.4208843 8.6912004, 49.4208840 8.6912006, 49.4168738 8.6919549, 49.4168732 8.6919560, 49.4208839 8.6912002, 49.4171481 8.6930091, 49.4168744 8.6919560, 49.4168739 8.6919560, 49.4208843 8.6911999, 49.4208846 8.6911997, 49.4168740 8.6919569, 49.4018302 8.6889341, 49.4013102 8.6912409, 49.4013098 8.6912411, 49.4005742 8.6876324, 49.4005743 8.6876329, 49.4013099 8.6912408, 49.4018301 8.6889373, 49.4005745 8.6876329, 49.4018280 8.6889343, 49.4123720 8.7105234, 49.4093080 8.6997912, 49.4115404 8.7048862, 49.4093082 8.6997910, 49.4115404 8.7048863, 49.4093082 8.6997914, 49.4146502 8.6879184, 49.4115403 8.7048862, 49.4034414 8.6858831, 49.4033425 8.6920344, 49.4034077 8.6864942, 49.4059416 8.6926646, 49.4053236 8.6938605, 49.4059413 8.6926655, 49.4059418 8.6926647, 49.4033423 8.6920342, 49.4034078 8.6864940, 49.4034077 8.6864940, 49.4059416 8.6926652, 49.4034078 8.6864942, 49.4059414 8.6926650, 49.4033423 8.6920344, 49.4196480 8.6881884, 49.4158083 8.7151936, 49.4087123 8.7054683, 49.4076130 8.7082748, 49.3832632 8.6902896, 49.4076136 8.7082749, 49.4087126 8.7054655, 49.4076135 8.7082758, 49.3832635 8.6902896, 49.4076129 8.7082756, 49.4118409 8.7090873 +148 +55.9021949 -3.1741206, 55.9087627 -3.3266637, 55.9090994 -3.2562932, 55.9085063 -3.2557150 +3 +1 +48.8684366 2.2915095 and 48.8683863 2.2914212 +硫黄島 (Iwo Jima), Annobón, Tauu Island, Pagan Island, Taongi Island, Cocos (Keeling) Islands, Christmas Island, Pukapuka, Banaba, Brava, Tristan da Cunha, Norfolk Island, Saint George Island, Rapa Iti, Tikopia, Bjørnøya, Pingelap, Parque Nacional Isla del Coco, Thule Island, Pitcairn, остров Уединения, Ilha da Trindade, Île Tromelin, Île de Clipperton, Bouvetøya, Antipodes Island, Île Amsterdam, Île Saint-Paul, Saint Helena, Ascension, South Shetland Islands, Semisopochnoi Island, Napuka, Fangataufa, Christmas Island, остров Атласова, Norfolk Island, Raoul Island, Campbell Island, Isla Floreana, Diego Garcia, Laurie Island, Peter I Island, Saint-Kilda, Macquarie Island, Franklin Island, Possession Island, остров Рудольфа, Howland Island, Isla de Pascua (Rapa Nui), Isla Robinson Crusoe, Socorro Island +yes +yes and 2 +yes +Fahrschule Formel 1 and 49.4285627 8.6458063 +48.8316281 2.3594731, 48.8535333 2.4151180, 48.9012005 2.3862959, 48.8801709 2.3706981, 48.8501676 2.3621707, 48.9003252 2.3734463, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8323948 2.3645635, 48.8645440 2.4097670, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.9007525 2.3748724, 48.8635035 2.4085486, 48.8536267 2.3664311, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8168431 2.3604808, 48.8407841 2.3912112, 48.8787212 2.3698437, 48.8586303 2.3897622, 48.8580224 2.3896621, 48.8558395 2.3835889, 48.8786755 2.3549221, 48.8478375 2.3535433, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8962481 2.3594957, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.8941507 2.3733344, 48.8679452 2.4057911, 48.8711283 2.4085012, 48.8565470 2.3790561, 48.8457849 2.4008634, 48.8384296 2.3723291, 48.8270093 2.3590302, 48.8635007 2.3703277, 48.8631933 2.3689292, 48.8503953 2.3596248, 48.8649231 2.3755432, 48.8464060 2.3874300, 48.8414869 2.3732320, 48.8350223 2.3575595, 48.9007173 2.3745755 +yes +http://www.myvue.com/ +yes +Boulogne-Billancourt, Gonesse, Arcueil, Montmagny, Villepinte, Le Chesnay, Chatou, Gentilly, Palaiseau, Antony, Neuilly-Plaisance, Neuilly-sur-Marne, Viroflay, Aubervilliers, Athis-Mons, Franconville, Garches, Stains, Noisiel, Clichy, Le Blanc-Mesnil, Chelles, Verrières-le-Buisson, Le Plessis-Robinson, Vélizy-Villacoublay, Saint-Leu-la-Forêt, Savigny-sur-Orge, Le Vésinet, Maisons-Alfort, Bry-sur-Marne, Enghien-les-Bains, Aulnay-sous-Bois, Nanterre, Épinay-sur-Seine, Villiers-le-Bel, Chevilly-Larue, Les Lilas, Morangis, Deuil-la-Barre, Limeil-Brévannes, Villemomble, Montesson, Les Pavillons-sous-Bois, Villeneuve-le-Roi, Bois-Colombes, La Garenne-Colombes, Montmorency, Rosny-sous-Bois, Châtillon, Sannois, Saint-Brice-sous-Forêt, Vitry-sur-Seine, Neuilly-sur-Seine, Meudon, Joinville-le-Pont, Noisy-le-Grand, Bourg-la-Reine, La Celle-Saint-Cloud, Malakoff, Saint-Mandé, Le Bourget, Massy, Houilles, Le Plessis-Trévise, Courbevoie, Livry-Gargan, Gennevilliers, Sceaux, La Courneuve, Le Pré-Saint-Gervais, Suresnes, Villiers-sur-Marne, Montigny-lès-Cormeilles, L'Haÿ-les-Roses, Chaville, Saint-Gratien, Montfermeil, Saint-Maurice, Alfortville, Argenteuil, Sartrouville, Cormeilles-en-Parisis, Nogent-sur-Marne, Thiais, Fontenay-sous-Bois, Champigny-sur-Marne, Issy-les-Moulineaux, Créteil, Boissy-Saint-Léger, Longjumeau, Charenton-le-Pont, Rueil-Malmaison, Fresnes, Saint-Cloud, Noisy-le-Sec, Châtenay-Malabry, Bobigny, Domont, Soisy-sous-Montmorency, Marly-le-Roi, Sevran, Garges-lès-Gonesse, Vigneux-sur-Seine, Ermont, Cachan, Sucy-en-Brie, Bagnolet, Bezons, Carrières-sur-Seine, Le Raincy, Montreuil, Le Perreux-sur-Marne, Montgeron, Le Kremlin-Bicêtre, Arnouville, Champs-sur-Marne, Fontenay-aux-Roses, Yerres, Pierrefitte-sur-Seine, Villetaneuse, Bonneuil-sur-Marne, Sarcelles, Romainville, Saint-Denis, Gagny, Choisy-le-Roi, Vanves, Villejuif, Valenton, Versailles, Villeneuve-Saint-Georges, Maisons-Laffitte, Chennevières-sur-Marne, Ville-d'Avray, Ormesson-sur-Marne, Bagneux, Levallois-Perret, Chilly-Mazarin, Eaubonne, Montrouge, Colombes, Drancy, Sèvres, Villeneuve-la-Garenne, Bondy, La Queue-en-Brie, Igny, Villebon-sur-Yvette, Paris, Paris, Paris, Paris, Paris, Cynthiana, Saint-Germain-en-Laye, Saint-Maur-des-Fossés, Orly, Juvisy-sur-Orge, Le Pecq, Asnières-sur-Seine, Puteaux, Ivry-sur-Seine, Vincennes, Pantin, Saint-Ouen, Clichy-sous-Bois, Clamart, Denning, Subiaco, Morrison Bluff, Caulksville, Blue Mountain, Detroit, Universal, Goss, Henry, Cottage Grove, Big Sandy +48.8618492 2.3434997, 48.8672925 2.3255509, 48.8659000 2.3372420, 48.8615254 2.3440287, 48.8674660 2.3326727, 48.8663903 2.3380844, 48.8660027 2.3646613, 48.8630297 2.3612527, 48.8648091 2.3411291, 48.8687993 2.3373273, 48.8648222 2.3475072, 48.8689038 2.3422059, 48.8609918 2.3544137, 48.8710439 2.3094204, 48.8695157 2.3030346, 48.8714582 2.3357136, 48.8719507 2.3429771, 48.8718710 2.3418144, 48.8705409 2.3532213, 48.8711564 2.3649322, 48.8755778 2.3590863, 48.8759060 2.3588881, 48.8727960 2.3635124, 48.8636179 2.3671410, 48.8660128 2.3794462, 48.8638290 2.3670497, 48.8679153 2.3737355, 48.8656744 2.3707975, 48.8683924 2.3793396, 48.8645151 2.3730525, 48.8679409 2.3754781, 48.8667776 2.3826288, 48.8869322 2.3399586, 48.8847049 2.3404648, 48.8596461 2.3534386, 48.8755021 2.3103942, 48.8600296 2.3006336, 48.8604171 2.3059560, 48.8795968 2.3519355, 48.8673444 2.3739608, 48.8632240 2.3875689, 48.8694500 2.3047988, 48.8647212 2.3469127, 48.8694050 2.3549341, 48.8693462 2.3552659, 48.8658103 2.3452891, 48.8588835 2.3307705, 48.8697776 2.3105917, 48.8722601 2.3035046, 48.8686679 2.3066263, 48.8671351 2.3657118, 48.8667808 2.3656961, 48.8666591 2.3656152, 48.8684771 2.3626799, 48.8666678 2.3662969, 48.8657085 2.3712657, 48.8655987 2.3744866, 48.8630511 2.3852954, 48.8780431 2.3720976, 48.8721672 2.3266440, 48.8718873 2.3570864, 48.8845714 2.3233053, 48.8844355 2.3243334, 48.8867718 2.3236539, 48.8884368 2.3207195, 48.8886141 2.3198123, 48.8891033 2.3164088, 48.8879876 2.3341073, 48.8940470 2.3341991, 48.8886186 2.3167009, 48.8835953 2.3233585, 48.8858410 2.3405929, 48.8891314 2.3403708, 48.8776115 2.2679599, 48.8828817 2.3596543, 48.8641255 2.3676318, 48.8742283 2.3755427, 48.8882137 2.3785003, 48.8723344 2.3492288, 48.8630061 2.3625592, 48.8628927 2.3617428, 48.8672258 2.3079158, 48.8838613 2.3277184, 48.8861318 2.3340926, 48.8880361 2.3910565, 48.8620045 2.3484135, 48.8621883 2.3485126, 48.8696045 2.3711651, 48.8718241 2.3676242, 48.8719097 2.3674864, 48.8664224 2.3652804, 48.8663460 2.3644859, 48.8674473 2.3626414, 48.8675118 2.3625438, 48.8652993 2.3734818, 48.8639802 2.3867074, 48.8642946 2.3862990, 48.8662357 2.3840946, 48.8667100 2.3812708, 48.8661982 2.3800386, 48.8650645 2.3775756, 48.8657840 2.3770479, 48.8661962 2.3766789, 48.8669356 2.3763865, 48.8680369 2.3754008, 48.8676267 2.3787920, 48.8598744 2.3476273, 48.8622962 2.3522413, 48.8739244 2.3454201, 48.8645313 2.3550653, 48.8627431 2.3531218, 48.8628573 2.3522080, 48.8613333 2.3538187, 48.8681798 2.3714175, 48.8722393 2.3651243, 48.8748569 2.3825637, 48.8701181 2.2849979, 48.8860554 2.3188123, 48.8741633 2.3754482, 48.8664641 2.3722308, 48.8644029 2.4080476, 48.8650517 2.3018704, 48.8840850 2.3374869, 48.8663999 2.3328148, 48.8678174 2.3028593, 48.8687850 2.3594780, 48.8865096 2.3452428, 48.8905909 2.3820031, 48.8920861 2.3792943, 48.8922518 2.3794780, 48.8847672 2.3248422, 48.8759394 2.3585316, 48.8836330 2.3284520, 48.8718006 2.3062883, 48.8803159 2.2995227, 48.8633934 2.3347841, 48.8707741 2.3411912, 48.8705661 2.3420906, 48.8709334 2.3427566, 48.8723362 2.3823271, 48.8661377 2.3353287, 48.8871654 2.3269257, 48.8861847 2.3270688, 48.8974129 2.3292183, 48.8830692 2.3825494, 48.8839003 2.3840684, 48.8605714 2.3454975, 48.8590672 2.3498178, 48.8768016 2.3394255, 48.8671282 2.3756094, 48.8652123 2.3628985, 48.8646132 2.3569121, 48.8650523 2.3569392, 48.8730380 2.3797045, 48.8958230 2.3395842, 48.8794405 2.3338166, 48.8878588 2.3596648, 48.8600943 2.3451124, 48.8604674 2.3454225, 48.8599442 2.3474167, 48.8601724 2.3488956, 48.8609295 2.3450073, 48.8612791 2.3423684, 48.8613359 2.3426577, 48.8612560 2.3431916, 48.8613382 2.3448649, 48.8617216 2.3432877, 48.8602965 2.3418540, 48.8588694 2.3415282, 48.8618530 2.3408621, 48.8622902 2.3393649, 48.8620988 2.3398606, 48.8622685 2.3398888, 48.8626905 2.3414763, 48.8619643 2.3491461, 48.8625821 2.3483927, 48.8635373 2.3490562, 48.8631582 2.3498973, 48.8629810 2.3484703, 48.8644969 2.3453886, 48.8633332 2.3460793, 48.8633690 2.3462612, 48.8634242 2.3462790, 48.8641678 2.3467038, 48.8636473 2.3431563, 48.8640954 2.3438023, 48.8625475 2.3407883, 48.8647612 2.3406523, 48.8659486 2.3400023, 48.8644890 2.3404697, 48.8655554 2.3403846, 48.8660668 2.3390095, 48.8661019 2.3389239, 48.8650200 2.3366293, 48.8656093 2.3369261, 48.8663099 2.3374684, 48.8660066 2.3354463, 48.8660278 2.3340077, 48.8663930 2.3354840, 48.8663406 2.3354494, 48.8666001 2.3357750, 48.8646841 2.3338346, 48.8660273 2.3312781, 48.8658325 2.3324895, 48.8658744 2.3325173, 48.8659399 2.3325614, 48.8663779 2.3317318, 48.8669595 2.3323778, 48.8670401 2.3324272, 48.8676684 2.3316870, 48.8671882 2.3325179, 48.8675087 2.3324647, 48.8675328 2.3323476, 48.8678727 2.3316533, 48.8680817 2.3307073, 48.8744252 2.3738880, 48.8687898 2.3338477, 48.8698110 2.3346634, 48.8690695 2.3343056, 48.8707437 2.3338850, 48.8714078 2.3378085, 48.8690729 2.3399905, 48.8691872 2.3393294, 48.8691071 2.3397858, 48.8692514 2.3401242, 48.8716597 2.3407937, 48.8716249 2.3410422, 48.8688297 2.3421626, 48.8675928 2.3409167, 48.8664997 2.3400225, 48.8691969 2.3433101, 48.8671849 2.3441863, 48.8705145 2.3428931, 48.8709276 2.3429934, 48.8647371 2.3502921, 48.8696741 2.3519506, 48.8703899 2.3484689, 48.8834373 2.3324889, 48.8590577 2.3501929, 48.8593929 2.3493115, 48.8595480 2.3490548, 48.8616594 2.3501884, 48.8794020 2.3884400, 48.8646409 2.3536613, 48.8635758 2.3531607, 48.8636089 2.3534360, 48.8640231 2.3502159, 48.8633842 2.3464893, 48.8626959 2.3521061, 48.8619134 2.3509953, 48.8671336 2.3577810, 48.8657120 2.3565756, 48.8645093 2.3542545, 48.8644805 2.3545447, 48.8646620 2.3539239, 48.8644591 2.3546214, 48.8682730 2.3614921, 48.8674734 2.3577982, 48.8661285 2.3594408, 48.8655917 2.3595983, 48.8651109 2.3571532, 48.8649701 2.3570435, 48.8751228 2.3939970, 48.8724707 2.3776998, 48.8717657 2.3765997, 48.8714128 2.3768852, 48.8613715 2.3542462, 48.8635569 2.3610435, 48.8630524 2.3640855, 48.8640247 2.3639954, 48.8615020 2.3620520, 48.8594649 2.3600214, 48.8602716 2.3621222, 48.8590981 2.3594568, 48.8617960 2.3778943, 48.8624536 2.3800165, 48.8881390 2.3534840, 48.8636510 2.3505320, 48.8643222 2.3548396, 48.8644140 2.3547850, 48.8687006 2.3354843, 48.8651140 2.3778720, 48.8821123 2.3666359, 48.8790715 2.3649117, 48.8792236 2.3665452, 48.8820420 2.3678327, 48.8820416 2.3661137, 48.8818956 2.3658787, 48.8782055 2.3656749, 48.8788300 2.3662059, 48.8815137 2.3659229, 48.8777011 2.3652544, 48.8803699 2.3667330, 48.8808723 2.3646162, 48.8760311 2.3700774, 48.8610790 2.3535900, 48.8671314 2.3577761, 48.8668458 2.3586800, 48.8668914 2.3584627, 48.8670160 2.3581568, 48.8670538 2.3582562, 48.8668315 2.3590233, 48.8668006 2.3582106, 48.8647030 2.3567983, 48.8647921 2.3568339, 48.8643639 2.3541873, 48.8668657 2.3585775, 48.8801119 2.3535250, 48.8632239 2.3566007, 48.8685410 2.3894417, 48.8673734 2.3222301, 48.8693756 2.3206236, 48.8705692 2.3211241, 48.8727654 2.3210286, 48.8703638 2.3102774, 48.8723529 2.3102456, 48.8738587 2.3163169, 48.8737509 2.3196440, 48.8744903 2.3184375, 48.8736367 2.3223675, 48.8713058 2.3233311, 48.8724761 2.3240966, 48.8721839 2.3251685, 48.8751646 2.3250295, 48.8753241 2.3259291, 48.8752570 2.3254427, 48.8741599 2.3254911, 48.8761914 2.3213046, 48.8760340 2.3235512, 48.8801220 2.3241052, 48.8831024 2.3264980, 48.8820671 2.3242802, 48.8832767 2.3277563, 48.8834770 2.3281748, 48.8837504 2.3286298, 48.8829277 2.3256156, 48.8831342 2.3236837, 48.8801215 2.3203120, 48.8799079 2.3202876, 48.8805205 2.3183206, 48.8733445 2.3091989, 48.8745431 2.3093666, 48.8794607 2.3036933, 48.8724450 2.3072214, 48.8707572 2.3085752, 48.8696331 2.3067786, 48.8715784 2.3063992, 48.8713131 2.3073190, 48.8713952 2.3012394, 48.8697736 2.3021852, 48.8669256 2.3076130, 48.8668818 2.3076173, 48.8672769 2.3062806, 48.8670111 2.3076126, 48.8671369 2.3028950, 48.8681586 2.3027800, 48.8660598 2.3017043, 48.8683182 2.2984850, 48.8651464 2.3005883, 48.8724390 2.3021296, 48.8706337 2.3954670, 48.8788328 2.3896914, 48.8600728 2.4041262, 48.8597085 2.4049673, 48.8790339 2.2985581, 48.8787934 2.2983905, 48.8775425 2.2981350, 48.8783508 2.3004239, 48.8778323 2.2987883, 48.8690865 2.3022434, 48.8694700 2.3034453, 48.8699522 2.3058242, 48.8799166 2.3359231, 48.8614760 2.3530830, 48.8885830 2.3930712, 48.8831626 2.3618001, 48.8829824 2.3614134, 48.8827589 2.3595149, 48.8835628 2.3609310, 48.8733935 2.3902484, 48.8739298 2.3893471, 48.8821165 2.3636110, 48.8787523 2.3641791, 48.8775739 2.3642408, 48.8800819 2.3647141, 48.8801565 2.3594651, 48.8797114 2.3574552, 48.8804717 2.3578445, 48.8784279 2.3643183, 48.8826930 2.3668426, 48.8753587 2.3261663, 48.8796547 2.3374136, 48.8753796 2.2958946, 48.8754103 2.3500663, 48.8702381 2.3689388, 48.8827554 2.3649189, 48.8677570 2.3369680, 48.8802074 2.3638169, 48.8828408 2.3670033, 48.8831548 2.3679716, 48.8799198 2.3624384, 48.8801632 2.3624358, 48.8658930 2.2979628, 48.8721649 2.2948681, 48.8678330 2.2903912, 48.8670044 2.2897764, 48.8637238 2.2872368, 48.8740698 2.3727422, 48.8691923 2.2884450, 48.8730386 2.2928973, 48.8692540 2.2857812, 48.8664391 2.2859464, 48.8666202 2.2859162, 48.8741506 2.2926613, 48.8744699 2.2916401, 48.8748891 2.2837909, 48.8665016 2.2891682, 48.8766202 2.2833645, 48.8734052 2.2811173, 48.8702950 2.2830521, 48.8654332 2.2855483, 48.8652388 2.2832232, 48.8671985 2.2798899, 48.8700086 2.3302941, 48.8637574 2.2772598, 48.8707204 2.3239555, 48.8705451 2.3238330, 48.8706016 2.3238683, 48.8629342 2.2763103, 48.8632435 2.2744521, 48.8595315 2.2787013, 48.8741142 2.3446221, 48.8762130 2.3456817, 48.8776819 2.2846763, 48.8951764 2.3824259, 48.8801236 2.3667122, 48.8799930 2.3669160, 48.8815607 2.3646012, 48.8604905 2.3677993, 48.8655911 2.3030514, 48.8765522 2.3574684, 48.8626372 2.2404388, 48.8709201 2.3740599, 48.8710092 2.3742679, 48.8592147 2.3578986, 48.8672772 2.3368959, 48.8866286 2.3612403, 48.8902851 2.3688154, 48.8795990 2.2908850, 48.8764826 2.2833917, 48.8642832 2.3420572, 48.8773156 2.2850715, 48.8773806 2.2848829, 48.8774160 2.2847302, 48.8656690 2.3706000, 48.8773456 2.3157482, 48.8663775 2.3472549, 48.8696608 2.3393758, 48.8603491 2.3508475, 48.8841171 2.3650610, 48.8602874 2.3097025, 48.8602217 2.3097138, 48.8859856 2.3190545, 48.8710024 2.3294337, 48.8717034 2.3766791, 48.8657517 2.3712388, 48.8655880 2.3691209, 48.8943819 2.3405045, 48.8752166 2.3329602, 48.8759120 2.3269790, 48.8830873 2.3292402, 48.8821024 2.3331994, 48.8785075 2.2845239, 48.8786662 2.2845930, 48.8809300 2.3404709, 48.8818258 2.3395224, 48.8765185 2.3448908, 48.8718967 2.3415625, 48.8853691 2.3353615, 48.8857113 2.3355174, 48.8855561 2.3353079, 48.8855279 2.3354474, 48.8828690 2.3183304, 48.8823081 2.3158735, 48.8825903 2.3165065, 48.8829889 2.3183223, 48.8829344 2.3176705, 48.8714920 2.3541352, 48.8774236 2.4101645, 48.8775262 2.2949459, 48.8791462 2.3541109, 48.8796589 2.3543864, 48.8754540 2.2867414, 48.8756436 2.2866256, 48.8792363 2.3631395, 48.8734790 2.3750462, 48.8732283 2.3745203, 48.8605552 2.3544304, 48.8726908 2.3752657, 48.8674203 2.3758861, 48.8682312 2.3751770, 48.8655345 2.3775152, 48.8890725 2.3179865, 48.8693522 2.3713516, 48.8692142 2.3714534, 48.8694819 2.3712557, 48.8673820 2.3728092, 48.8673041 2.3731992, 48.8678500 2.3687750, 48.8649857 2.3752785, 48.8660987 2.3722759, 48.8663125 2.3723460, 48.8661552 2.3797640, 48.8656909 2.3777859, 48.8670939 2.3749249, 48.8644002 2.3730285, 48.8677794 2.3780026, 48.8646865 2.3738115, 48.8765188 2.3353132, 48.8767451 2.3353322, 48.8764727 2.3353018, 48.8764220 2.3352962, 48.8760923 2.3383718, 48.8745269 2.3383294, 48.8751689 2.3383360, 48.8674715 2.3750082, 48.8632185 2.3775523, 48.8637330 2.3792298, 48.8766449 2.2886055, 48.8782254 2.2853949, 48.8777760 2.2847660, 48.8826774 2.3602875, 48.8958659 2.3827194, 48.8833475 2.2875083, 48.8744843 2.3304643, 48.8850543 2.3872280, 48.8820903 2.2863199, 48.8720949 2.3323339, 48.8705731 2.3103284, 48.8847919 2.3672165, 48.8713001 2.3766068, 48.8704762 2.3775322, 48.8704356 2.3764056, 48.8712066 2.3768241, 48.8776662 2.3398701, 48.8601399 2.2750024, 48.8764828 2.3370142, 48.8766560 2.3371844, 48.8703131 2.3487884, 48.8662293 2.3379767, 48.8675784 2.2807278, 48.8667500 2.2803710, 48.8687850 2.3380000, 48.8703423 2.3428105, 48.8731247 2.3808610, 48.8662137 2.3353607, 48.8660390 2.3352910, 48.8657884 2.3351488, 48.8649854 2.3569095, 48.8645459 2.3566348, 48.8635544 2.3694256, 48.8634434 2.3691079, 48.8719692 2.3361261, 48.8715773 2.3365388, 48.8714095 2.3355863, 48.8752025 2.3376055, 48.8751468 2.3355442, 48.8750364 2.3392304, 48.8766742 2.3373282, 48.8766460 2.3368602, 48.8769295 2.3383704, 48.8769349 2.3331592, 48.8767858 2.3369975, 48.8768072 2.3364970, 48.8758550 2.3388379, 48.8767868 2.3367967, 48.8767450 2.3377873, 48.8710277 2.3356624, 48.8708929 2.3349679, 48.8710045 2.3355038, 48.8716416 2.3409433, 48.8734969 2.3525798, 48.8706911 2.3467398, 48.8721862 2.3501755, 48.8708723 2.3480533, 48.8704690 2.3480544, 48.8716176 2.3411379, 48.8707327 2.3464923, 48.8714861 2.3419548, 48.8716074 2.3412011, 48.8751154 2.3557100, 48.8749802 2.3559340, 48.8744702 2.3552896, 48.8773577 2.3564531, 48.8785393 2.3568626, 48.8767619 2.3563475, 48.8786854 2.3569358, 48.8779934 2.3562593, 48.8782144 2.3566970, 48.8799927 2.3591789, 48.8812174 2.3638517, 48.8750088 2.3393609, 48.8796296 2.3553194, 48.8800642 2.3523843, 48.8809546 2.3510669, 48.8689508 2.3362959, 48.8667422 2.3365735, 48.8682398 2.3365168, 48.8696120 2.3356753, 48.8676561 2.3370904, 48.8675328 2.3370273, 48.8698393 2.3358297, 48.8708380 2.3349612, 48.8688219 2.3359090, 48.8688160 2.3362566, 48.8688035 2.3365534, 48.8666564 2.3369830, 48.8669153 2.3365074, 48.8702359 2.3349223, 48.8688150 2.3361103, 48.8676983 2.3366997, 48.8681903 2.3364995, 48.8678747 2.3364447, 48.8751402 2.3514767, 48.8658609 2.3370619, 48.8641660 2.3361960, 48.8656996 2.3366338, 48.8651667 2.3364852, 48.8652254 2.3367395, 48.8703362 2.3315753, 48.8597079 2.3182507, 48.8666350 2.3099131, 48.8703978 2.3225405, 48.8702620 2.3312290, 48.8702706 2.3312786, 48.8706031 2.3221827, 48.8707016 2.3218346, 48.8658986 2.3742587, 48.8663671 2.3715603, 48.8648305 2.3731176, 48.8972266 2.3855240, 48.8796615 2.3550800, 48.8798780 2.3540920, 48.8613780 2.3495790, 48.8805044 2.3746913, 48.8697793 2.3750857, 48.8616152 2.3446790, 48.8616509 2.3443800, 48.8598419 2.3677964, 48.8640655 2.3345802, 48.8936352 2.3221938, 48.8943476 2.3204974, 48.8752927 2.3875604, 48.8732552 2.3604924, 48.8731705 2.3596985, 48.8720524 2.3605991, 48.8830455 2.3398008, 48.8910970 2.3741558, 48.8911479 2.3740014, 48.8907671 2.3759930, 48.8912248 2.3734447, 48.8735546 2.3841519, 48.8908275 2.3460063, 48.8905461 2.3453913, 48.8911373 2.3471492, 48.8907355 2.3482159, 48.8851558 2.3360026, 48.8945691 2.3441669, 48.8944316 2.3452559, 48.8936382 2.3429021, 48.8940560 2.3431940, 48.8941520 2.3429690, 48.8943730 2.3432450, 48.8951370 2.3433760, 48.8943990 2.3447720, 48.8942700 2.3458810, 48.8941300 2.3458060, 48.8928950 2.3433840, 48.8948510 2.3409210, 48.8691880 2.3617720, 48.8694980 2.3633099, 48.8693445 2.3635411, 48.8697450 2.3637220, 48.8686940 2.3597770, 48.8686410 2.3599800, 48.8689770 2.3602190, 48.8690369 2.3600697, 48.8701370 2.3610220, 48.8718820 2.3623620, 48.8721550 2.3626770, 48.8724460 2.3632870, 48.8726535 2.3631861, 48.8732160 2.3629280, 48.8931040 2.3440780, 48.8926550 2.3442290, 48.8937130 2.3451630, 48.8937300 2.3449020, 48.8731527 2.3385700, 48.8664049 2.3413812, 48.8687508 2.3345042, 48.8692412 2.3299818, 48.8707775 2.3387098, 48.8689281 2.3302927, 48.8695802 2.3230555, 48.8664844 2.3389311, 48.8700770 2.3223918, 48.8675314 2.3020548, 48.8696595 2.3052249, 48.8662502 2.3285392, 48.8739879 2.3430920, 48.8634808 2.3437738, 48.8718416 2.3144851, 48.8696738 2.3309961, 48.8725161 2.3281305, 48.8947860 2.3445300, 48.8724800 2.3404835, 48.8724927 2.3528401, 48.8714038 2.3104401, 48.8715946 2.3262057, 48.8669510 2.3270370, 48.8706950 2.3313289, 48.8673862 2.2911822, 48.8679841 2.3255481, 48.8704636 2.3297136, 48.8680526 2.3287936, 48.8684086 2.3268250, 48.8662803 2.3394262, 48.8710959 2.3416366, 48.8699813 2.3246311, 48.8597088 2.3086607, 48.8687853 2.3250184, 48.8688647 2.2646951, 48.8635574 2.2602856, 48.8660415 2.3361004, 48.8939174 2.3431529, 48.8911748 2.3607925, 48.8683505 2.3748549, 48.8799295 2.3575665, 48.8864168 2.3442029, 48.8866377 2.3443434, 48.8899236 2.3398500, 48.8865304 2.3443480, 48.8615810 2.3783255, 48.8857166 2.3381509, 48.8743786 2.3636125, 48.8702183 2.2459747, 48.8690004 2.3384279, 48.8739830 2.3725892, 48.8742654 2.3727129, 48.8736424 2.3076398, 48.8828717 2.3288427, 48.8827606 2.3283572, 48.8935918 2.3230817, 48.8668318 2.2544028, 48.8934317 2.3232522, 48.8795704 2.3522406, 48.8793693 2.3525786, 48.8865873 2.3128095, 48.8661411 2.3671105, 48.8714714 2.3280397, 48.8914883 2.3506742, 48.8867280 2.3409619, 48.8736230 2.3526886, 48.8789434 2.3780844, 48.8717406 2.3715881, 48.8732745 2.3532186, 48.8727613 2.3519183, 48.8727251 2.3521315, 48.8817044 2.3525759, 48.8928740 2.3287813, 48.8752613 2.3705179, 48.8801808 2.3373122, 48.8777152 2.3320765, 48.8777130 2.3318740, 48.8720797 2.3405228, 48.8717651 2.3403142, 48.8708172 2.3482539, 48.8710210 2.3469210, 48.8710522 2.3467304, 48.8829700 2.3205585, 48.8820557 2.3285353, 48.8801158 2.3291143, 48.8815002 2.3282628, 48.8742801 2.3357676, 48.8742391 2.3333145, 48.8742326 2.3334984, 48.8741848 2.3351560, 48.8743601 2.3329097, 48.8742439 2.3332327, 48.8742300 2.3335755, 48.8742269 2.3336382, 48.8728885 2.3451791, 48.8765391 2.3394762, 48.8762148 2.3400961, 48.8765114 2.3406889, 48.8766574 2.3401427, 48.8764750 2.3395753, 48.8766574 2.3405656, 48.8680574 2.3417881, 48.8698783 2.3425685, 48.8691169 2.3422291, 48.8702023 2.3421494, 48.8641319 2.3484339, 48.8872935 2.3361945, 48.8853856 2.3359893, 48.8873045 2.3360309, 48.8858892 2.3361945, 48.8883991 2.3510703, 48.8869141 2.3514696, 48.8635290 2.3631763, 48.8825806 2.3672397, 48.8857859 2.3452590, 48.8830046 2.3650381, 48.8830637 2.3612591, 48.8728704 2.3813019, 48.8688487 2.2348654, 48.8834736 2.3604504, 48.8896591 2.3426912, 48.8857760 2.3287243, 48.8850010 2.3295757, 48.8902288 2.3476015, 48.8880810 2.2979280, 48.8974737 2.3312683, 48.8959871 2.3304855, 48.8872260 2.3324699, 48.8904006 2.3349160, 48.8905328 2.3349026, 48.8884483 2.3329205, 48.8875488 2.3327381, 48.8915716 2.3353225, 48.8953965 2.3375071, 48.8879853 2.3396455, 48.8947585 2.3282626, 48.8959929 2.3286918, 48.8961868 2.3389271, 48.8685541 2.3683047, 48.8825100 2.3378415, 48.8846868 2.3416679, 48.8843749 2.3411643, 48.8846003 2.3411844, 48.8752485 2.3690581, 48.8720517 2.3351032, 48.8662620 2.3356061, 48.8670216 2.3359869, 48.8781869 2.2884063, 48.8625297 2.3799298, 48.8590223 2.4024858, 48.8590692 2.4058632, 48.8793921 2.3895039, 48.8656739 2.3463704, 48.8973173 2.3848230, 48.8972521 2.3847586, 48.8970881 2.3845721, 48.8648559 2.3969632, 48.8731487 2.3445761, 48.8713070 2.3479965, 48.8724637 2.2980607, 48.8707216 2.3006611, 48.8682088 2.3014586, 48.8743665 2.3618973, 48.8742228 2.3624553, 48.8727849 2.3634181, 48.8729195 2.2988493, 48.8730465 2.2984497, 48.8617849 2.3518205, 48.8616656 2.3513122, 48.8619390 2.3509944, 48.8656555 2.2894172, 48.8652925 2.2891532, 48.8654719 2.2892837, 48.8595904 2.4050515, 48.8594938 2.4051634, 48.8708913 2.3580857, 48.8687802 2.3624897, 48.8692034 2.3573399, 48.8692739 2.3564386, 48.8699288 2.3950557, 48.8751640 2.3321790, 48.8598245 2.3479142, 48.8592985 2.3479258, 48.8601373 2.3481716, 48.8625488 2.3540088, 48.8600406 2.3484986, 48.8600556 2.3483497, 48.8601051 2.3500266, 48.8591455 2.3478511, 48.8602833 2.3482093, 48.8611395 2.3539719, 48.8592067 2.3534078, 48.8620249 2.3537411, 48.8621174 2.3535204, 48.8634709 2.3500130, 48.8601905 2.3476020, 48.8601948 2.3475156, 48.8596378 2.3474576, 48.8629250 2.3487647, 48.8636829 2.3493064, 48.8637680 2.3499140, 48.8634421 2.3485303, 48.8633388 2.3485138, 48.8848688 2.3069070, 48.8654002 2.3689374, 48.8614835 2.3771934, 48.8778735 2.2875843, 48.8705072 2.3019336, 48.8708689 2.3020289, 48.8697768 2.3036006, 48.8681112 2.3014721, 48.8704351 2.3043615, 48.8693740 2.3077196, 48.8777760 2.2877961, 48.8643014 2.4002976, 48.8720371 2.3481740, 48.8732358 2.3613894, 48.8732268 2.3622695, 48.8944510 2.3440420, 48.8754701 2.2836788, 48.8753925 2.2852613, 48.8750872 2.2865005, 48.8756941 2.2862216, 48.8727890 2.3429679, 48.8727157 2.3429899, 48.8851757 2.3075791, 48.8820348 2.3139529, 48.8719957 2.3430238, 48.8729655 2.3432485, 48.8720339 2.3432916, 48.8718024 2.3432812, 48.8767250 2.3307380, 48.8610880 2.3512876, 48.8614615 2.3514586, 48.8841484 2.3227392, 48.8840872 2.3230100, 48.8861392 2.3337047, 48.8720846 2.3660947, 48.8716623 2.3681061, 48.8603639 2.3478222, 48.8603388 2.3480663, 48.8599384 2.3522973, 48.8848153 2.3229754, 48.8733188 2.3446580, 48.8752221 2.3038262, 48.8701201 2.3491659, 48.8609895 2.3473093, 48.8730540 2.3435221, 48.8655913 2.3471265, 48.8852970 2.3163291, 48.8676507 2.3427272, 48.8771963 2.3513091, 48.8764165 2.3555503, 48.8764781 2.3553328, 48.8764892 2.3552357, 48.8673359 2.3991033, 48.8665408 2.3996952, 48.8675264 2.4005840, 48.8729522 2.4050353, 48.8722236 2.4047280, 48.8772063 2.4094486, 48.8769898 2.4054164, 48.8711865 2.4001138, 48.8768593 2.4057793, 48.8762568 2.4026044, 48.8692292 2.3966523, 48.8690126 2.3971718, 48.8726193 2.3990837, 48.8723933 2.3993546, 48.8758552 2.4019932, 48.8645296 2.3999995, 48.8643290 2.3977966, 48.8641688 2.3976584, 48.8642835 2.3981370, 48.8650741 2.3972853, 48.8821571 2.3281764, 48.8661899 2.3718762, 48.8591372 2.3430272, 48.8622322 2.3573881, 48.8890315 2.3624318, 48.8909716 2.3611648, 48.8913537 2.3623037, 48.8912306 2.3619236, 48.8913500 2.3613552, 48.8684859 2.3702604, 48.8904554 2.3613786, 48.8911316 2.3641074, 48.8911480 2.3638611, 48.8709751 2.3584442, 48.8816643 2.3664685, 48.8901098 2.3596369, 48.8909114 2.3604949, 48.8909059 2.3606042, 48.8763474 2.3877275, 48.8709254 2.3085765, 48.8662240 2.3388110, 48.8900400 2.3632191, 48.8682148 2.3979085, 48.8773588 2.2989656, 48.8774315 2.2986835, 48.8751593 2.3701002, 48.8741225 2.3893282, 48.8748365 2.3888937, 48.8909898 2.3608038, 48.8922565 2.3879668, 48.8896721 2.3596605, 48.8890437 2.3606481, 48.8890487 2.3604033, 48.8897921 2.3604602, 48.8910188 2.3609138, 48.8897517 2.3604732, 48.8931060 2.3282113, 48.8608088 2.3799487, 48.8605689 2.3786648, 48.8762181 2.3718774, 48.8854958 2.3656011, 48.8735521 2.3649705, 48.8861995 2.3567861, 48.8610209 2.3105163, 48.8610190 2.3113026, 48.8901495 2.3592264, 48.8745880 2.3309443, 48.8746973 2.3308647, 48.8745893 2.3308470, 48.8798304 2.3575115, 48.8789100 2.2874734, 48.8891501 2.3600864, 48.8867265 2.3692541, 48.8749302 2.3555936, 48.8936132 2.3841788, 48.8659386 2.3788507, 48.8849455 2.3527050, 48.8850090 2.3595929, 48.8918519 2.3634768, 48.8916614 2.3634553, 48.8920015 2.3179046, 48.8690083 2.3564593, 48.8760446 2.3484651, 48.8946950 2.3193622, 48.8678207 2.3478985, 48.8667602 2.3505401, 48.8644981 2.3502872, 48.8736385 2.3889782, 48.8739867 2.3864968, 48.8718150 2.3717657, 48.8727815 2.3712192, 48.8729660 2.3702046, 48.8617341 2.3650289, 48.8642536 2.2721272, 48.8616662 2.3146849, 48.8849737 2.3369336, 48.8740700 2.3880327, 48.8889949 2.3583055, 48.8860248 2.3369308, 48.8902739 2.3358959, 48.8874196 2.3791285, 48.8917305 2.3461501, 48.8906054 2.3436342, 48.8911601 2.3472858, 48.8905525 2.3481725, 48.8654434 2.3665508, 48.8614479 2.3729830, 48.8641784 2.3663950, 48.8624763 2.3635921, 48.8591882 2.3451519, 48.8929579 2.3376602, 48.8788116 2.3448907, 48.8637283 2.3634669, 48.8648741 2.3568648, 48.8647148 2.3556662, 48.8647064 2.3557113, 48.8744006 2.3588789, 48.8598587 2.3506021, 48.8899908 2.3632081, 48.8611575 2.3689699, 48.8638679 2.3648260, 48.8710277 2.3356624, 48.8890796 2.3723602, 48.8756169 2.3280376, 48.8731075 2.3603509, 48.8748935 2.3811373, 48.8767035 2.3442886, 48.8761220 2.3317510, 48.8798222 2.3536407, 48.8644516 2.3451744, 48.8665424 2.3444859, 48.8653520 2.3447568, 48.8689100 2.3859683, 48.8818977 2.3455167, 48.8809875 2.3406458, 48.8809240 2.3404741, 48.8762503 2.3384716, 48.8728060 2.3646742, 48.8722199 2.3662906, 48.8922563 2.3451633, 48.8818730 2.3810389, 48.8758373 2.3459265, 48.8795087 2.3434753, 48.8924455 2.3635357, 48.8750371 2.3453587, 48.8763927 2.3443424, 48.8841247 2.3209960, 48.8832982 2.3234280, 48.8860152 2.3193197, 48.8926082 2.3632978, 48.8647712 2.3664594, 48.8615352 2.3424505, 48.8606121 2.3677689, 48.8607123 2.3679772, 48.8845024 2.3699867, 48.8817691 2.3705494, 48.8676694 2.3433379, 48.8957541 2.3476530, 48.8957586 2.3475660, 48.8917666 2.3218705, 48.8654497 2.3690938, 48.8709594 2.3479984, 48.8829241 2.3432202, 48.8731139 2.3807450, 48.8690065 2.3742189, 48.8721796 2.3274785, 48.8715853 2.3272917, 48.8804973 2.2853562, 48.8827366 2.2912231, 48.8646705 2.3697151, 48.8961469 2.3382720, 48.8667163 2.3367639, 48.8910518 2.3314128, 48.8754797 2.3480757, 48.8776068 2.3489868, 48.8813835 2.3281151, 48.8878510 2.3535887, 48.8826169 2.3296364, 48.8598677 2.3086797, 48.8678023 2.3499020, 48.8606025 2.3457538, 48.8601414 2.3453350, 48.8903544 2.3289917, 48.8853124 2.3253739, 48.8803653 2.2993106, 48.8855401 2.2976447, 48.8702188 2.3108394, 48.8837963 2.3717833, 48.8674112 2.3229787, 48.8704742 2.3237783, 48.8697219 2.3226142, 48.8741108 2.3436798, 48.8805026 2.3961626, 48.8709398 2.3029345, 48.8593876 2.3489534, 48.8593594 2.3494831, 48.8592324 2.3496685, 48.8591582 2.3498992, 48.8589383 2.3514814, 48.8594394 2.3491586, 48.8815660 2.3478333, 48.8725291 2.3001145, 48.8724675 2.3003188, 48.8762025 2.3710966, 48.8666808 2.3456284, 48.8665292 2.3464186, 48.8665024 2.3465774, 48.8667552 2.3451020, 48.8667159 2.3453933, 48.8726851 2.3024789, 48.8737471 2.3451402, 48.8731623 2.3449978, 48.8725084 2.3448270, 48.8735309 2.3450913, 48.8705878 2.3425842, 48.8605209 2.3023944, 48.8902734 2.3546516, 48.8914921 2.3613348, 48.8680096 2.3435345, 48.8676664 2.3437165, 48.8679005 2.3435952, 48.8877980 2.2997590, 48.8811990 2.2897480, 48.8816790 2.2888680, 48.8817488 2.2888029, 48.8819610 2.2885470, 48.8814404 2.2894685, 48.8851028 2.2981721, 48.8848466 2.2963979, 48.8853809 2.2966584, 48.8845518 2.2979815, 48.8852175 2.2964748, 48.8834502 2.2938754, 48.8832548 2.2934886, 48.8822916 2.2913772, 48.8802886 2.2879403, 48.8733986 2.3215098, 48.8845738 2.2910473, 48.8847627 2.2913861, 48.8813094 2.2861348, 48.8815854 2.2860365, 48.8822997 2.2865952, 48.8843811 2.2910193, 48.8837693 2.2907507, 48.8849514 2.2959483, 48.8850091 2.2954626, 48.8849348 2.2961330, 48.8845891 2.2945570, 48.8843134 2.2943799, 48.8848608 2.2951371, 48.8850188 2.2939952, 48.8852107 2.2935244, 48.8788664 2.2847106, 48.8740226 2.3337460, 48.8786554 2.2999384, 48.8762950 2.2890600, 48.8802997 2.3577529, 48.8775890 2.2881553, 48.8619404 2.3145726, 48.8798757 2.2951878, 48.8796416 2.2949514, 48.8797688 2.2942800, 48.8799467 2.2942003, 48.8801083 2.2943052, 48.8805532 2.2934972, 48.8800771 2.2940804, 48.8815910 2.2925353, 48.8816270 2.2921775, 48.8841060 2.2909950, 48.8845760 2.2895318, 48.8826125 2.3011279, 48.8776740 2.2991918, 48.8776990 2.2990901, 48.8780258 2.2850956, 48.8846317 2.2893952, 48.8778621 2.2848987, 48.8802502 2.2957038, 48.8675021 2.3098437, 48.8885609 2.3172274, 48.8881694 2.3166376, 48.8883589 2.3169789, 48.8968374 2.3787112, 48.8971449 2.3819951, 48.8875090 2.2976290, 48.8871630 2.2970010, 48.8706152 2.3532598, 48.8876760 2.2983980, 48.8863430 2.2961140, 48.8859640 2.2915440, 48.8871530 2.2947410, 48.8853110 2.2955510, 48.8853440 2.2952310, 48.8850320 2.2952390, 48.8850780 2.2950060, 48.8840610 2.2937810, 48.8851190 2.2924220, 48.8852040 2.2920140, 48.8678227 2.3369768, 48.8809990 2.2857060, 48.8701642 2.3537129, 48.8590400 2.3622970, 48.8907611 2.3619378, 48.8814470 2.2951720, 48.8856370 2.2977760, 48.8849010 2.2988890, 48.8845430 2.2986640, 48.8846290 2.2984300, 48.8842560 2.2973050, 48.8842580 2.2968350, 48.8850869 2.3651538, 48.8749003 2.3428357, 48.8771460 2.2924640, 48.8769040 2.2919650, 48.8771270 2.2920750, 48.8772510 2.2920010, 48.8774500 2.2920680, 48.8774750 2.2918560, 48.8776900 2.2917270, 48.8777680 2.2918880, 48.8779330 2.2915640, 48.8786180 2.2913310, 48.8798280 2.2917160, 48.8813710 2.2894860, 48.8604075 2.3556155, 48.8601740 2.3563013, 48.8747214 2.3415841, 48.8705943 2.3429365, 48.8746840 2.3416410, 48.8699102 2.3115070, 48.8690272 2.3251599, 48.8700437 2.3257977, 48.8702250 2.3258823, 48.8840040 2.2933540, 48.8796560 2.2864960, 48.8804350 2.2856120, 48.8804320 2.2856580, 48.8804050 2.2857730, 48.8806940 2.2861620, 48.8805790 2.2866490, 48.8799990 2.2875200, 48.8797930 2.2884240, 48.8797640 2.2885180, 48.8769049 2.3270113, 48.8768180 2.3270140, 48.8770340 2.3271360, 48.8767510 2.3273100, 48.8766230 2.3273770, 48.8726661 2.3021404, 48.8727090 2.3021938, 48.8724355 2.3017645, 48.8695340 2.3049808, 48.8687825 2.3043355, 48.8723494 2.3607849, 48.8879180 2.3067900, 48.8880960 2.3065700, 48.8882020 2.3064360, 48.8882250 2.3064120, 48.8887260 2.3057200, 48.8883220 2.3062270, 48.8889330 2.3054700, 48.8889870 2.3053980, 48.8884000 2.2999400, 48.8799736 2.2892538, 48.8751250 2.2934560, 48.8752420 2.2940700, 48.8753410 2.2939710, 48.8770440 2.2917940, 48.8769630 2.2916430, 48.8767720 2.2915790, 48.8777980 2.2906200, 48.8792110 2.2907480, 48.8886086 2.3780545, 48.8618088 2.2825036, 48.8613662 2.2830289, 48.8613148 2.2830943, 48.8652864 2.2854968, 48.8653444 2.2836290, 48.8862020 2.3612523, 48.8758620 2.2937570, 48.8765293 2.3766762, 48.8765381 2.3785538, 48.8831467 2.3852056, 48.8793441 2.3856452, 48.8912644 2.3784340, 48.8645257 2.2825794, 48.8659302 2.2858805, 48.8657556 2.2858886, 48.8813580 2.2854140, 48.8603776 2.3434700, 48.8753759 2.3739351, 48.8751695 2.3739029, 48.8746244 2.3809330, 48.8765910 2.3232000, 48.8747470 2.3159270, 48.8810780 2.3126420, 48.8781141 2.3843466, 48.8779190 2.3852619, 48.8778925 2.3854242, 48.8782848 2.3854140, 48.8789083 2.3856186, 48.8789361 2.3851519, 48.8806716 2.3738195, 48.8820002 2.3711763, 48.8775700 2.2877800, 48.8899434 2.3710251, 48.8803750 2.3978486, 48.8811706 2.3719906, 48.8641699 2.4083715, 48.8747966 2.3861271, 48.8757475 2.3857007, 48.8753418 2.3815392, 48.8747347 2.3813029, 48.8752868 2.3817360, 48.8755279 2.3821599, 48.8590582 2.3811072, 48.8740264 2.3839194, 48.8746078 2.3810324, 48.8739520 2.3822179, 48.8735701 2.3830856, 48.8736839 2.3828415, 48.8777223 2.3322319, 48.8787477 2.3711783, 48.8819062 2.3741667, 48.8841883 2.3779754, 48.8845623 2.3786634, 48.8851670 2.3806432, 48.8852067 2.3807525, 48.8589178 2.3234187, 48.8589724 2.3234632, 48.8855935 2.3818316, 48.8805386 2.3751052, 48.8806753 2.3748196, 48.8807035 2.3747471, 48.8808173 2.3744896, 48.8808967 2.3743140, 48.8830777 2.3876231, 48.8723326 2.3483178, 48.8864670 2.3115680, 48.8799610 2.3291770, 48.8868177 2.3744113, 48.8849000 2.3707095, 48.8883341 2.3761366, 48.8848937 2.3405138, 48.8842803 2.3395848, 48.8846433 2.3402443, 48.8675053 2.3352170, 48.8859211 2.3934465, 48.8847791 2.3925318, 48.8848752 2.3926673, 48.8862192 2.3936382, 48.8754744 2.3873297, 48.8754373 2.3874893, 48.8842800 2.3047290, 48.8834170 2.3045710, 48.8820840 2.3044120, 48.8651610 2.3726873, 48.8643547 2.3728587, 48.8826325 2.3446975, 48.8629966 2.3731715, 48.8756732 2.3873298, 48.8712502 2.3797702, 48.8708280 2.3787238, 48.8671652 2.3360497, 48.8672298 2.3360756, 48.8791599 2.3910656, 48.8804060 2.3026459, 48.8803576 2.3030073, 48.8808754 2.3021137, 48.8808069 2.3021832, 48.8827997 2.3733397, 48.8830186 2.3740035, 48.8826853 2.3804864, 48.8592799 2.2849225, 48.8623163 2.3093585, 48.8734806 2.3430215, 48.8729547 2.3799476, 48.8755208 2.3906946, 48.8619535 2.4014538, 48.8708629 2.3427230, 48.8707564 2.3426660, 48.8836015 2.3202065, 48.8795130 2.3360991, 48.8828915 2.3811913, 48.8830697 2.3810418, 48.8840675 2.3805918, 48.8758598 2.4006983, 48.8606889 2.3547690, 48.8607780 2.3544920, 48.8612688 2.3578488, 48.8659762 2.3835715, 48.8754888 2.3889719, 48.8716073 2.3573055, 48.8589855 2.3540028, 48.8752800 2.3929026, 48.8752271 2.3936912, 48.8751574 2.3942236, 48.8826800 2.2865110, 48.8864590 2.3404788, 48.8846800 2.3291860, 48.8819840 2.3187180, 48.8819360 2.3185630, 48.8816120 2.3160090, 48.8636766 2.3671249, 48.8822902 2.3395019, 48.8744920 2.3729505, 48.8741051 2.3720932, 48.8739847 2.3718055, 48.8738359 2.3717117, 48.8735359 2.3710279, 48.8741858 2.3715930, 48.8745316 2.3721362, 48.8716669 2.3719109, 48.8736209 2.3748630, 48.8878559 2.3534540, 48.8628419 2.3413590, 48.8627761 2.3414067, 48.8753498 2.3460798, 48.8752300 2.3455656, 48.8643515 2.3547358, 48.8588998 2.2853182, 48.8659100 2.3367259, 48.8612139 2.3668885, 48.8596062 2.3680483, 48.8595048 2.3686879, 48.8591538 2.3688576, 48.8624274 2.3726970, 48.8618723 2.3729155, 48.8620506 2.3780323, 48.8940948 2.3515003, 48.8684431 2.3706044, 48.8643081 2.3688079, 48.8612224 2.3648477, 48.8734440 2.3641694, 48.8731976 2.3643351, 48.8714362 2.3657352, 48.8768960 2.3534930, 48.8920550 2.3461008, 48.8665545 2.3603936, 48.8926611 2.3805354, 48.8707266 2.3515964, 48.8904606 2.3790788, 48.8910196 2.3779829, 48.8907119 2.3781803, 48.8906831 2.3786293, 48.8786060 2.2895840, 48.8785190 2.2893290, 48.8709792 2.3597736, 48.8711489 2.3601690, 48.8649741 2.3359158, 48.8752070 2.3041468, 48.8592341 2.3681415, 48.8593853 2.3683292, 48.8603823 2.3676665, 48.8597890 2.4027381, 48.8599301 2.4026085, 48.8593962 2.4050659, 48.8780937 2.3647247, 48.8681030 2.4033390, 48.8609577 2.3809480, 48.8609312 2.3814496, 48.8614810 2.3806105, 48.8592165 2.3828435, 48.8666042 2.3853196, 48.8614427 2.3780898, 48.8614740 2.3781608, 48.8610647 2.3776241, 48.8615428 2.3776813, 48.8610635 2.3813235, 48.8611094 2.3814550, 48.8945524 2.3527710, 48.8623796 2.3727706, 48.8621106 2.3774234, 48.8626682 2.3786586, 48.8622688 2.3799159, 48.8623261 2.3800798, 48.8633879 2.3618031, 48.8768192 2.2635389, 48.8703223 2.3421103, 48.8728746 2.3289534, 48.8594276 2.3683212, 48.8721670 2.3253311, 48.8721199 2.3255281, 48.8995733 2.3524962, 48.8744634 2.3207611, 48.8642207 2.3684794, 48.8646300 2.3665505, 48.8661085 2.3669813, 48.8722123 2.3397120, 48.8599164 2.3463862, 48.8689558 2.3348921, 48.8759088 2.3029263, 48.8615808 2.3421921, 48.8609420 2.3686815, 48.8741075 2.3445446, 48.8831840 2.2988520, 48.8822700 2.2945370, 48.8822490 2.2942850, 48.8821450 2.2944460, 48.8590641 2.3684194, 48.8620902 2.3661764, 48.8617952 2.3647367, 48.8633340 2.3613891, 48.8624021 2.3651667, 48.8627385 2.3662233, 48.8614257 2.3704934, 48.8615823 2.3706250, 48.8647430 2.3818722, 48.8620751 2.3672533, 48.8628461 2.3362666, 48.8644915 2.3656032, 48.8690385 2.3639054, 48.8679245 2.3658481, 48.8650522 2.3663679, 48.8656106 2.3572726, 48.8626714 2.3636420, 48.8627659 2.3625185, 48.8780160 2.2938546, 48.8615523 2.3705150, 48.8633878 2.3694245, 48.8611575 2.3674679, 48.8626333 2.3674542, 48.8809048 2.3467209, 48.8642921 2.3657377, 48.8617786 2.3730898, 48.8617681 2.3611646, 48.8630387 2.3518815, 48.8632610 2.3511168, 48.8635550 2.3471565, 48.8659600 2.3653216, 48.8665862 2.3667443, 48.8661620 2.3675630, 48.8666335 2.3665296, 48.8663602 2.3680223, 48.8643746 2.3685025, 48.8641963 2.3679144, 48.8646177 2.3690280, 48.8628373 2.3675537, 48.8623150 2.3663735, 48.8708703 2.3415985, 48.8705728 2.3415832, 48.8711859 2.3417171, 48.8709869 2.3416777, 48.8620751 2.3658156, 48.8637424 2.3671066, 48.8614253 2.3643489, 48.8593585 2.3673596, 48.8599776 2.3643195, 48.8654352 2.3322141, 48.8731027 2.3586476, 48.8640444 2.3658805, 48.8641120 2.3658485, 48.8611118 2.3693564, 48.8819434 2.2862186, 48.8654853 2.3686016, 48.8643587 2.3712393, 48.8739968 2.3863516, 48.8621517 2.3740712, 48.8630245 2.3790430, 48.8639488 2.3703133, 48.8867423 2.3407873, 48.8867012 2.3411084, 48.8869741 2.3412346, 48.8985255 2.3366795, 48.8650592 2.3652757, 48.8622868 2.3667169, 48.8760379 2.3474334, 48.8793470 2.2919940, 48.8912532 2.3385474, 48.8901853 2.3390405, 48.8633935 2.3689645, 48.8633529 2.3688465, 48.8615323 2.3686143, 48.8664155 2.3287146, 48.8646787 2.3558594, 48.8644799 2.3569191, 48.8829561 2.3882121, 48.8804364 2.3909641, 48.8780831 2.3977598, 48.8763376 2.3928795, 48.8759989 2.3919521, 48.8628024 2.3492324, 48.8645903 2.3718381, 48.8647000 2.3723457, 48.8649871 2.3711423, 48.8598038 2.3550656, 48.8620675 2.3639108, 48.8649026 2.3629604, 48.8649556 2.3628423, 48.8647818 2.3633384, 48.8639382 2.3623895, 48.8641888 2.3633140, 48.8646311 2.3593875, 48.8643829 2.3635375, 48.8792674 2.3924164, 48.8792753 2.3925036, 48.8795232 2.3915635, 48.8757708 2.3732086, 48.8614963 2.3660517, 48.8842426 2.3535987, 48.8653836 2.3574562, 48.8639079 2.3545467, 48.8654028 2.3619785, 48.8937077 2.3508320, 48.8621299 2.3511204, 48.8715322 2.3782825, 48.8714475 2.3785400, 48.8710382 2.3789263, 48.8673806 2.3847823, 48.8598965 2.3075931, 48.8690612 2.3581146, 48.8719853 2.3667390, 48.8741288 2.3623407, 48.8713669 2.3626508, 48.8701720 2.3657126, 48.8677318 2.3596603, 48.8736845 2.3221625, 48.8735793 2.3550497, 48.8780639 2.3154492, 48.8917251 2.3440010, 48.8925185 2.3433234, 48.8773768 2.3515939, 48.8821120 2.3316747, 48.8831858 2.3320915, 48.8597151 2.3678389, 48.8657815 2.3471408, 48.8732540 2.3608358, 48.8655841 2.3616231, 48.8709238 2.2962068, 48.8623856 2.3637772, 48.8621474 2.3731938, 48.8799666 2.3508222, 48.8621014 2.3636145, 48.8609723 2.3678841, 48.8620444 2.3635743, 48.8622191 2.3629205, 48.8667214 2.3740769, 48.8823658 2.3242140, 48.8822955 2.3242327, 48.8825559 2.3241735, 48.8803017 2.3513038, 48.8647006 2.3580265, 48.8643054 2.3579192, 48.8642504 2.3578896, 48.8644687 2.3579073, 48.8723418 2.3016272, 48.8628005 2.3713562, 48.8633624 2.3704332, 48.8627558 2.3714312, 48.8674941 2.3845084, 48.8685628 2.3685960, 48.8622923 2.3631874, 48.8690077 2.3683815, 48.8676507 2.3828530, 48.8707889 2.3567692, 48.8708986 2.3568414, 48.8712435 2.3782107, 48.8795270 2.3564524, 48.8795400 2.3563567, 48.8795641 2.3560902, 48.8796330 2.3554913, 48.8796682 2.3551473, 48.8957481 2.3231945, 48.8849962 2.3715251, 48.8637549 2.3626184, 48.8637125 2.3625755, 48.8652327 2.3851410, 48.8908910 2.3395767, 48.8614701 2.3608326, 48.8618729 2.3587495, 48.8627385 2.3596843, 48.8652300 2.3566643, 48.8617124 2.3623064, 48.8873512 2.3371414, 48.8630199 2.3130597, 48.8591095 2.3674255, 48.8636670 2.3631192, 48.8719458 2.3478111, 48.8649403 2.3546311, 48.8629917 2.3486012, 48.8651151 2.3550922, 48.8726616 2.3794472, 48.8726783 2.3795015, 48.8715434 2.3807894, 48.8791133 2.3432693, 48.8632800 2.3800281, 48.8642792 2.3630057, 48.8753261 2.3672560, 48.8853175 2.3257002, 48.8729112 2.3593539, 48.8724267 2.3592410, 48.8641694 2.3686406, 48.8651440 2.3631259, 48.8651915 2.3632720, 48.8652987 2.3631700, 48.8645308 2.4003185, 48.8630067 2.3884535, 48.8629785 2.3883247, 48.8593762 2.3403098, 48.8637301 2.2855982, 48.8611097 2.3450773, 48.8591476 2.3413321, 48.8608076 2.3445073, 48.8698382 2.3799777, 48.8627927 2.3599257, 48.8622711 2.3595454, 48.8628804 2.3600120, 48.8773290 2.2928113, 48.8792827 2.3556589, 48.8788783 2.3543907, 48.8628035 2.3401495, 48.8589427 2.3464330, 48.8603236 2.3412799, 48.8604378 2.3417437, 48.8680112 2.3607306, 48.8689542 2.3550295, 48.8688455 2.3557193, 48.8687443 2.3560423, 48.8687789 2.3580377, 48.8865655 2.3262035, 48.8861609 2.3263857, 48.8989295 2.3723887, 48.8707205 2.3552252, 48.8846688 2.3270692, 48.8764580 2.3419193, 48.8766024 2.3419539, 48.8661069 2.3646351, 48.8732283 2.3581935, 48.8732823 2.3579211, 48.8662690 2.3645400, 48.8657515 2.3648587, 48.8786180 2.2996990, 48.8781291 2.2993229, 48.8781055 2.2991925, 48.8780418 2.2989552, 48.8702521 2.3687545, 48.8606590 2.3543661, 48.8660386 2.3519725, 48.8732076 2.3095057, 48.8724822 2.3121983, 48.8712639 2.3170765, 48.8739607 2.3084406, 48.8715844 2.3184256, 48.8701210 2.3343104, 48.8751557 2.3012743, 48.8751135 2.3069162, 48.8740015 2.3077396, 48.8710823 2.3168960, 48.8655236 2.3518622, 48.8654654 2.3518340, 48.8778724 2.3471465, 48.8759453 2.3445955, 48.8749633 2.3400064, 48.8837644 2.3214224, 48.8838310 2.3216888, 48.8837360 2.3212646, 48.8841971 2.3215837, 48.8850476 2.3250531, 48.8846112 2.3245897, 48.8841497 2.3232965, 48.8840070 2.3226361, 48.8852143 2.3252963, 48.8877657 2.3344311, 48.8637960 2.3626600, 48.8632005 2.3642711, 48.8613672 2.3505534, 48.8677324 2.3479327, 48.8677775 2.3480997, 48.8676067 2.3319418, 48.8670225 2.3471209, 48.8658657 2.3436098, 48.8720064 2.3540339, 48.8733893 2.3204120, 48.8743054 2.3188358, 48.8738866 2.3193920, 48.8737427 2.3200575, 48.8663397 2.3254419, 48.8642781 2.3403451, 48.8607050 2.3456030, 48.8647269 2.3560907, 48.8693183 2.3219957, 48.8769722 2.3514761, 48.8769498 2.3512624, 48.8690995 2.3384634, 48.8620567 2.3541153, 48.8589271 2.3464408, 48.8612553 2.3752008, 48.8632177 2.3758485, 48.8640105 2.3752729, 48.8644275 2.3749645, 48.8647588 2.3751173, 48.8608416 2.3800761, 48.8596321 2.3806824, 48.8597322 2.3805901, 48.8595923 2.3807177, 48.8867750 2.3846748, 48.8591551 2.3864296, 48.8810529 2.3440743, 48.8724968 2.3802510, 48.8701197 2.3462588, 48.8609390 2.3783004, 48.8627395 2.3470879, 48.8775308 2.3517179, 48.8761530 2.3512685, 48.8772423 2.3515577, 48.8773603 2.3513705, 48.8732411 2.3502402, 48.8773292 2.3515789, 48.8753788 2.3510407, 48.8779161 2.3521895, 48.8774311 2.3513901, 48.8709370 2.3498907, 48.8729782 2.3503653, 48.8595665 2.3672855, 48.8868368 2.3381841, 48.8852330 2.2931970, 48.8721867 2.3803594, 48.8903485 2.3329893, 48.8889248 2.3343299, 48.8958765 2.3432915, 48.8916024 2.3506910, 48.8638501 2.3526821, 48.8765916 2.3487324, 48.8721752 2.3541115, 48.8715942 2.3786219, 48.8713331 2.3785958, 48.8716046 2.3779577, 48.8791330 2.3846707, 48.8712500 2.3520810, 48.8736890 2.3449321, 48.8702796 2.3656790, 48.8920506 2.3224169, 48.8800932 2.3203737, 48.8800738 2.3204381, 48.8645930 2.3989610, 48.8770473 2.2948379, 48.8764561 2.2942937, 48.8683157 2.3749138, 48.8766633 2.3487736, 48.8852904 2.3348276, 48.8851823 2.3346822, 48.8851823 2.3346822, 48.8600274 2.3466734, 48.8600742 2.3466402, 48.8603504 2.3485177, 48.8733106 2.3433422, 48.8735611 2.3437543, 48.8734527 2.3436472, 48.8643922 2.3495404, 48.8683806 2.3433504, 48.8620495 2.3487209, 48.8629736 2.3479786, 48.8628009 2.3480997, 48.8751609 2.3444855, 48.8750074 2.3444806, 48.8896650 2.3424480, 48.8680698 2.3899407, 48.8681500 2.3898597, 48.8833822 2.3256632, 48.8826084 2.3240414, 48.8835815 2.3265373, 48.8824805 2.3211770, 48.8828636 2.3231025, 48.8834259 2.3258829, 48.8658643 2.3584113, 48.8677169 2.3546846, 48.8689009 2.3537616, 48.8694294 2.3523136, 48.8658564 2.3574132, 48.8600151 2.3100847, 48.8595266 2.3864960, 48.8620909 2.3845968, 48.8620047 2.3852499, 48.8772155 2.3697281, 48.8771466 2.3700908, 48.8732101 2.3820509, 48.8733593 2.3819219, 48.8630437 2.3604149, 48.8599783 2.3569074, 48.8613481 2.3581776, 48.8618290 2.3836224, 48.8839199 2.3413796, 48.8808370 2.3417368, 48.8836545 2.3395453, 48.8843804 2.3398419, 48.8843202 2.3398406, 48.8843804 2.3398419, 48.8843202 2.3398406, 48.8844765 2.3412725, 48.8651501 2.3948352, 48.8651105 2.3957767, 48.8636186 2.3975684, 48.8651701 2.3946452, 48.8760837 2.3277635, 48.8604624 2.3615398, 48.8650696 2.3670244, 48.8827391 2.3593305, 48.8815415 2.3580405, 48.8809060 2.3580751, 48.8822787 2.3588762, 48.8815054 2.3580226, 48.8808657 2.3580528, 48.8813749 2.3579541, 48.8864163 2.3479153, 48.8675747 2.3757418, 48.8915804 2.3366290, 48.8916215 2.3361250, 48.8915952 2.3364661, 48.8743051 2.3046273, 48.8730285 2.3001685, 48.8726150 2.3085132, 48.8832302 2.3617502, 48.8594445 2.3529167, 48.8591317 2.3536104, 48.8649433 2.3721825, 48.8638646 2.3721728, 48.8641035 2.3716585, 48.8739741 2.3435358, 48.8906307 2.3455734, 48.8594624 2.3504272, 48.8594253 2.3504176, 48.8596944 2.3507464, 48.8617511 2.3539414, 48.8693361 2.3640955, 48.8705736 2.3619015, 48.8693033 2.3625870, 48.8688333 2.3457733, 48.8703284 2.3420423, 48.8703606 2.3464059, 48.8850777 2.3783225, 48.8850559 2.3782723, 48.8658307 2.3705921, 48.8659653 2.3699783, 48.8849226 2.3788960, 48.8855374 2.3800532, 48.8710872 2.3444600, 48.8699249 2.3402179, 48.8594125 2.3293427, 48.8756987 2.3403004, 48.8751025 2.3398511, 48.8691873 2.3664852, 48.8735750 2.2981472, 48.8719260 2.3102630, 48.8640928 2.3321663, 48.8614893 2.3447073, 48.8616006 2.3440663, 48.8636317 2.4038600, 48.8756834 2.3414330, 48.8728409 2.3024068, 48.8739875 2.3072098, 48.8743483 2.3066355, 48.8693693 2.3570835, 48.8691511 2.3577313, 48.8689604 2.3584706, 48.8685362 2.3603611, 48.8642783 2.3600268, 48.8692538 2.3562991, 48.8692202 2.3580262, 48.8648545 2.3758564, 48.8644737 2.3719749, 48.8646237 2.3732155, 48.8649513 2.3745102, 48.8633433 2.3797454, 48.8631587 2.3793438, 48.8644597 2.3719159, 48.8637933 2.3810877, 48.8635949 2.3806268, 48.8633857 2.3798403, 48.8648431 2.3759306, 48.8645407 2.3775170, 48.8635552 2.3805450, 48.8632201 2.3794764, 48.8624456 2.3781632, 48.8837032 2.3600741, 48.8776751 2.3384166, 48.8668830 2.3485533, 48.8677333 2.3439283, 48.8676351 2.3439727, 48.8675989 2.3439920, 48.8675084 2.3440305, 48.8788275 2.3271308, 48.8822137 2.3290906, 48.8683026 2.3256832, 48.8685365 2.3254094, 48.8684636 2.3254367, 48.8684095 2.3254570, 48.8749931 2.3353018, 48.8732975 2.3352479, 48.8838575 2.3590700, 48.8839295 2.3590810, 48.8837299 2.3429552, 48.8835817 2.3417847, 48.8836005 2.3422276, 48.8831290 2.3419110, 48.8838716 2.3395954, 48.8838138 2.3391313, 48.8702362 2.3714708, 48.8885956 2.3203806, 48.8867468 2.3131227, 48.8870770 2.3135815, 48.8866403 2.3132708, 48.8870378 2.3126519, 48.8701365 2.3192081, 48.8729499 2.3807339, 48.8746689 2.3319421, 48.8625088 2.3482422, 48.8625379 2.3480954, 48.8625575 2.3479520, 48.8684609 2.3540316, 48.8876907 2.3895732, 48.8751618 2.3513606, 48.8731389 2.3531386, 48.8599253 2.3542896, 48.8697633 2.3312541, 48.8711019 2.3282297, 48.8715670 2.3280513, 48.8716018 2.3280558, 48.8717901 2.3283005, 48.8720480 2.3282979, 48.8724179 2.3281232, 48.8722134 2.3283316, 48.8725187 2.3283618, 48.8681835 2.2918929, 48.8609320 2.3788190, 48.8704052 2.3401387, 48.8823803 2.3237133, 48.8917605 2.3184916, 48.8726656 2.3088507, 48.8739620 2.3041170, 48.8738688 2.3066476, 48.8722902 2.3086741, 48.8744341 2.3076435, 48.8745401 2.3078099, 48.8714166 2.3075089, 48.8727444 2.3045542, 48.8738162 2.3065277, 48.8720459 2.3036661, 48.8734431 2.3062042, 48.8734448 2.3058325, 48.8724582 2.3096142, 48.8852247 2.3255576, 48.8732120 2.3625540, 48.8763184 2.2940958, 48.8793711 2.3210941, 48.8721443 2.3462235, 48.8721613 2.3028433, 48.8720253 2.3030206, 48.8724278 2.3039382, 48.8655564 2.2952522, 48.8656506 2.2954099, 48.8657276 2.2955289, 48.8668404 2.2971101, 48.8670692 2.2973577, 48.8673236 2.2976240, 48.8689888 2.2994117, 48.8735380 2.3345217, 48.8733336 2.3346541, 48.8733567 2.3347461, 48.8734176 2.3350103, 48.8885365 2.3205147, 48.8880289 2.3210515, 48.8903550 2.3174553, 48.8842558 2.3262816, 48.8842475 2.3261013, 48.8844969 2.3258681, 48.8881282 2.3212093, 48.8806070 2.3350450, 48.8933379 2.3233875, 48.8938069 2.3230035, 48.8942068 2.3204728, 48.8941679 2.3210305, 48.8739316 2.3642949, 48.8875927 2.3180689, 48.8766269 2.3409528, 48.8950535 2.3171038, 48.8952880 2.3170086, 48.8791086 2.3296385, 48.8790090 2.3291588, 48.8789990 2.3290598, 48.8790193 2.3292541, 48.8654372 2.3773868, 48.8791268 2.3149988, 48.8789853 2.3151835, 48.8652666 2.3505396, 48.8653042 2.3505623, 48.8910894 2.3310974, 48.8645971 2.3405666, 48.8742290 2.3701302, 48.8726773 2.3664509, 48.8758651 2.3683358, 48.8760870 2.3680227, 48.8738255 2.3510086, 48.8646328 2.3503127, 48.8652116 2.3502483, 48.8646959 2.3500774, 48.8636723 2.3503952, 48.8659073 2.3506008, 48.8659359 2.3508645, 48.8657593 2.3505128, 48.8862647 2.3364796, 48.8607088 2.3436325, 48.8609318 2.3437651, 48.8815563 2.3466326, 48.8662355 2.3574699, 48.8664564 2.3609351, 48.8681552 2.3599058, 48.8687915 2.3579448, 48.8647975 2.3479339, 48.8644464 2.3497330, 48.8946703 2.3460196, 48.8976169 2.3439977, 48.8621731 2.3396914, 48.8675585 2.3352443, 48.8679678 2.3355626, 48.8678404 2.3435108, 48.8666855 2.3458176, 48.8667840 2.3448980, 48.8659951 2.3472997, 48.8596787 2.3549361, 48.8739698 2.3502828, 48.8807650 2.3809540, 48.8772540 2.3793034, 48.8875403 2.3892859, 48.8768300 2.4049587, 48.8681170 2.3702881, 48.8692220 2.3131336, 48.8679417 2.3153003, 48.8763983 2.3025071, 48.8718575 2.3096862, 48.8745552 2.3434968, 48.8791560 2.3349351, 48.8786912 2.3329642, 48.8768273 2.4061935, 48.8641014 2.4040313, 48.8983371 2.3447751, 48.8929571 2.3377419, 48.8840298 2.3497933, 48.8644817 2.2886280, 48.8750787 2.2865522, 48.8761844 2.2731721, 48.8769614 2.2666348, 48.8787683 2.2627725, 48.8639756 2.2506990, 48.8775380 2.2845027, 48.8783349 2.2845148, 48.8660959 2.3165080, 48.8853349 2.3222678, 48.8632940 2.3461861, 48.8787317 2.3451434, 48.8648781 2.3453619, 48.8654581 2.3447052, 48.8623556 2.3500864, 48.8772523 2.3138827, 48.8832218 2.3770399, 48.8645929 2.3574911, 48.8813196 2.2935688, 48.8778259 2.3969489, 48.8769600 2.3706426, 48.8782894 2.3331903, 48.8873550 2.3868767, 48.8660080 2.3494045, 48.8886275 2.3399810, 48.8759552 2.3241977, 48.8761087 2.3254243, 48.8596679 2.3619976, 48.8664194 2.3321315 +19 +116 +49.4079061 8.6867560, 49.4117371 8.7091875, 49.4095865 8.7066610, 49.4115410 8.7046342, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4065332 8.6919726, 49.4067729 8.6917906 +Wiesloch, Sinsheim, Hirschhorn (Neckar), Eberbach, Östringen, Neckargemünd, Waibstadt +0.38074867737861279 +50, 50, 50, 50, 50, 50 +55.9561550 -3.2435210, 55.9002100 -3.2321660, 55.9678281 -3.2362601 +11 and 49.4091649 8.6726851, 49.4079061 8.6867560, 49.4117371 8.7091875, 49.4073921 8.6825502, 49.4095865 8.7066610, 49.4115410 8.7046342, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4065332 8.6919726, 49.4067729 8.6917906 +yes +46.3554455 -0.6680522, 46.3458003 -0.6849917, 46.6167350 -1.8692222, 47.2661765 -0.5769410, 47.0326315 -0.6067364, 47.4157721 -1.8539595, 46.9193815 -0.8487945, 47.2053637 -2.0487648, 46.6646452 -1.7570749, 46.6625119 -1.7637588, 46.4072147 -1.4060013, 47.2001295 -0.0915538, 47.1117065 -2.1078804, 47.1027718 -1.1206474, 47.1002886 -1.1228630, 47.1129029 -0.6325854, 47.2757188 -2.4265544, 46.7916310 -2.0633590, 46.5333900 -1.7720741, 47.3427522 -2.4270051, 46.5890791 -1.1245053, 46.5894219 -1.1237864, 46.8367326 -0.8835602, 46.3702547 -0.7025105, 46.5229325 -0.7565522, 46.4677815 -0.7739333, 46.4906051 -1.7945377, 46.7700629 -1.5054141, 47.1854515 -1.9446521, 47.3447411 -2.5085747, 47.2661676 -0.5769699, 47.3639737 -1.0215598, 47.2737624 -0.0625629, 47.3275906 -2.1564248, 47.0818312 -0.8260868, 47.2346479 -0.4859183, 46.8469856 -1.4865231, 47.0791770 -2.0387346, 47.1335252 -2.2132604, 47.0386689 -1.6404213, 47.2451626 -0.7699908, 47.2194968 -1.5498408, 47.0319306 -1.0922135, 47.3398280 -0.0333965 +yes +no +yes +20 +no +2 +W.H. Smith, Colette, Librairie Galignani, La Fontaine aux Vins, Gepetto & Vélos, L'Épée de Bois, Shakespeare and Company, Artazart, Distribution, New PC Charenton, Académie du bal costumé, Tang Frères, Galerie Vivienne, passages des Princes, Brentano's, Monoprix Lecourbe, Franprix, G20, Marché U, Marché U, Jerome de Noirmont, Brentano's, G20, Carrefour City, Le Fournil de Lourmel, G20, Monoprix, Franprix, Au Réparateur de Bicyclettes, Vélo Electro, Intermarché, Franprix, Lidl, Franprix, Franprix, Gil'Pressing, Moderne-Lavage, Beautés du Monde, En tete a tete, Martel bricolage, Clo Tournesol, La Boul'Ange, Jaguar - Range Rover - Land Rover, La Boulenge d'Antan, Fleurs de France, Franprix, Monoprix, Franprix, Ouistitipop, Carrefour City, Boulangerie - Pâtisserie Méri, Monoprix Convention, Dia, cora, DIA, Monoprix, Les Sourires de Dante, Springfield, Aapoum Bapoum, Franprix, Dia, Clean Pressing, Du Pain et des Idées, Monoprix, Mr Bricolage, Lidl, monop', Gibert Joseph, Gibert Joseph, Franprix, Franprix, Boucherie Louis Blanc, Leroy Merlin, Franprix, Dia, Simply Market, Simply Market, Franprix, Go Sport, Dia, La Fournée des Gourmets, Simply Market, Monoprix, Neovelo, Carrefour City, Castorama, Castorama, La Gerbe d'Or, Esprit Démarque, Picard, Les Petits Vélos de Maurice, Cycles Pliants Expansion, Velectris, Cycles Delcayre, Rando Cycles, BMG Baillou, Cycles Laurent, Paris à Vélo, c’est Sympa, Bicloune, Preya cycle, Au Point Vélo Hollandais, Vélo & Oxygen, Bike in Paris, Les Vélos Parisiens, Cycle Centre, Esprit Vélo, Cyclo Sport 34, Mountain Biker, Sri Kanaga Ambika Velo, Valmy Cycle, Le Petit Boyauteur, Cycles Saint-Honoré, Un vélo dans la ville, Ok Ça Roule, URBAN CYCLES 15, R B Cyclos, Thibault van der Straete, Spree, Franprix, Simply Market, Dia, marché Franprix, Franprix, Carrefour Express, G20, Sephora, Franprix, Monoprix, Dia, A2 Pas, Monop Beauty, Petit Casino, Boulangerie Hélène et Bernard Dorange, Carrefour Market, Europasie, Exquise, La Terrasse de Gutenberg, Page 189, El Ksour, Franprix, L'Artisterie, Le Passage Clouté, Naturalia, Carrefour Market, Leader Price, 8 a huit, Respiro, Naturalia, Librairie Compagnie, Dia, Renault, Optic 2000, La belle fleur, U Express, Simply Market, Sublissime, Tabac de l'Europe, Casino, Optica, Tchip Coiffure, Mazhar Fleurs, Franprix, Franprix, Carrefour Express Paris Batignolles, Monoprix, Franprix, Franprix, Simply Market, Monoprix, Carrefour Market, Franprix, Franprix, Franprix, A2 Pas, Picard, Monoprix, Gibert Jeune - Sciences Humaines, Gibert Jeune, Gibert Jeune, Franprix, Sitis Market, Simply Market, Monoprix, DIA, Equipages, L'Étoile de Djurjura, Franprix, SimplyMarket, Naturalia, Naturalia Crussol, Lecaille, Les compagnons de Voltaire, Guesdon, Franprix, Monoprix, Monoprix, Franprix, Dia, Tati, Franprix, Franprix, Monoprix, Franprix, Biocoop, Les nouveaux Robinson, Franprix, L'Atelier, L’atelier d’en face, G20, Le petit leader, Dhouailly et Cie, Lyon Pressing, Marché Daumesnil, monop', Aux délices de Saint-Antoine, DIA, Boulangerie Jacques Bazin, Aux Délices de Manon, Dia, Marché Franprix, Chez Miha, Frank Provost, Paris Store, Youfeng (友风书店), La maison du cerf volant, Le Vert Jade, Bureau +, Marché Franprix, Gastronom №12, Sergio Bossi, Presse Parrot, Aux Couleurs, Cinébank, Gourmand Gourmet, Petit Marché, Céline et Étienne, Monoprix, Franprix, Franprix, Librairie La Brèche, Françoise Leclant Fleurs, Le Bosquet, R Color, Pierre Michel, Papéterie-librairie de l'École militaire, Camille Albane, Carrefour City, Proxi, Au Nom de la Rose, Dia, Vitry d'Aubigny, produits exotiques, Boulangerie Thierry Renard, Fnac, Sephora, Moisan, Le Grenier à Pain, Cave Michel Renaud, Nature de pain, Le Central, Harley Davidson, Dia, Petit Casino, Naturalia, Atol, Ambiance Florale, Monoprix, Le chant du pain, Bricorama, Aït Baha, Picard, La Halle aux Blés, Au Coeur Des Pains, Picard, Passage des Panoramas, Intermarché, Le Canon de la Presse, Carrefour Market, Picard, Canal Bio, Happy, SNCF La Boutique, SFR, A. et H. Jourdan, MJJ, Гастрономъ, Gastronomie Russe, Gastronomie Russe, Гастрономъ, Гастрономъ, Prestige, Гастрономъ, Carrefour City, Boucherie Raux, Casino, Picard, Nicolas, Linel, Linel, BHV Vélo, Carrefour Market, Bio C' Bon, Franprix, Renault Garage Saint-Georges Agent, Hervé Thoraval, Adom, Librairie Nation, Goumanyat et son Royaume, Intermarché Express, Volta, Marks & Spencer Food, Poissonnerie G. Ledreux, Le Pain d'Auguste, Boulangerie Topaze, Wing Seng, Lezarts, Carrefour Market, Paris Store, Les Nouvelles Halles - 新今日超市, Supermarché Bonjour - 新温州超市, CFFC, Primeurs des Moulineaux, Vic' Optic, Nicolas Convention, Orse, Jacadi Convention, Etam Lingerie Convention, Marlina, Petit Bateau Convention, Descamps Convention, Graineterie, Fiat, Franprix, Via Scarpa, Laverie libre service SBD, Rando Boutique, Buzibi, BiCyCle Store, Roulez Champions, Franscoop, Bières Cultes, Tcha Tcha, Boulanger Pâtissier Julien, Les Verges Primeurs, Franprix, A la Tête du Client, Frank Provost, Naf naf, bleach vintage, Compagnie du Forum, Camaïeu, Déco Relief, COPY-TOP Pyramides - Palais Royal, A2 Pas, Mondial City, Kujten, Dubail, Franprix, LDLC, Chez Paco, La baguette des Pyrenees, Les halles Bolivar, Franprix, Gaetan Romp, Boulangerie Patisserie, Picard, Boulangerie Pâtisserie des Deux ponts, Intermarché Express, Coiffure Auffray Jérôme, Dia, Aux délices de Jussieu, Sajou, Mona Lisait, Epicerie de la rue Saint-Louis en l'Ile, Librairie Epona, Gwen Choc, Terre de Chine, Franprix, Der Tante Emma-Laden, Boulangerie Julien, Un jour Ailleurs, Calzedonia, Heyraud, Epicerie La Reynie, Fleux', BHV Homme, Fleux', Boulangerie Pâtisserie Gaumer, Lush Spa, Boulangerie Kahn, Nilai Store, Adidas Originals, Franprix, Boulangerie Blin, Galeria Basia Embiricos, Carrément Fleurs, Boulangerie Patrick et Christine, Le Moulin à Miel, Sandro Hommes, Maison du vélo, Atelier vélorutionnaire, Carrefour City, Rougier & Plé, Patrick Roger, Boggi Milano, Hello Kathy, Editions Guy Trédaniel, Aqua Rêves, Alimentation Générale, Tout Autour du Pain, Simply Market, AU PARADIS CANIN, Le monde en tique, Altermundi, The Australia NZ Shop, Fleurs du Temps, Harmony Pressing, Garage Roubine, Le retour à la Terre - Rive Gauche, Kitclope, Franprix, Potemkine, Lidl, L'Arc en Ciel, Scooter Center, Le Fournil du Maine, Galeries Lafayette, FNAC Montparnasse, Zara, Sonia Rykiel, Boulanger Patissier, h@ir & wave, DIA, Franprix, Nicolas, Maison Coët, La Station Rambuteau, DIA, Franprix, Franprix, Le Moulin de la Vierge, Franprix, L'Arcueillaise, Basic Beauty, Nuance Coiffure, Franprix, Franprix, Naturalia, CocciMarket, A2 Pas, Franprix, Franprix, Lavomatique, Aux saveurs d'Arcueil, Modern'Boucherie, Servotel Voyages, Maison de la Presse, Le Cintre Chic, Arcueil Télé Ménager, Dany vêtements, Renault, Maison de la literie, Dekra, Paul, Partir pas cher, Mondial City, Alain Afflelou, Marché Franprix, SNCF la boutique, Traiteur asiatique, Franprix, Proxi, Dia, Carrefour Express, Gilles Vérot, Bread & Roses, Swildens, Les Nouveaux Robinson, JL Coquet, Cartier, La Kremlinoise, Au Saint-Honoré, Hayari Couture, Monoprix, Boulangerie "Les Caprices de Charlotte", Monceau Fleurs, Supermarché G20, Le Prestige, Boucherie Frank Lecoeur, Lidl, Le Boulanger des Invalides, Julien, Monoprix, Adidas, La Maison du Caviar, Picard Surgelés, Montceau Fleurs, Holland Bikes, Cave ?, Holland Bikes, J.M. Weston, À Livr'Ouvert, Galerie de la Voûte, Lepape, Cartier, Quicksilver, Grand Optical, Mercedes-Benz Gallery, Bulgari, La Flûte de Pan, A. Testoni, Saint-Louis, Lalique, Bernardaud, glashutte et heurgon, Cristofle, Crockett & Jones, Citroën, L'Atelier Renault, Gap, Disney Store, Häagen-Dazs, PSG, Zara, L'Atelier SFR, Naf Naf, Jacadi, Avant Premiere, Carrefour Market, Boulangerie de l'Entr'acte, Picard, Optic 2000, Le Boulanger de Monge, Jean-Louis David, André, Okaidi, Monoprix, Monoprix, Franprix, Le Marché Rungis, Casino, Naturalia, Librairie des jardins, franprix, Maison Bichon, Phone 2000, La Rame, G20, Cycles Jean, Yamaha, Aux Gamins de Ménilmontant, Litote en Tête, Le Géant Des Beaux-Arts, Carrefour City, L'Epi d'Or, Ly Kuang, Giant, Centre Commercial, Asie Fabuleuse Voyages, Carrefour Express, Boulangerie Yan Chantelle, Bazar Éthic, Darty, Camaïeu, La Grande épicerie de Paris, ETS Maleville, Les Petites Emplettes, Tati, Boucherie Saint-Martin, Peugeot, Bragard, Parapharmacie de Charenton, Le Pélican, Franprix, Monceau Fleurs, Vallée de Vinales, L'Invit' à-lire, Meubles Pascal, G20, Tabac, Hermes Fleurs, Monceau Fleurs, Franprix, Boulangerie Bonon, Bio c'Bon, Maison Dault, La Grignotière, L'Échoppée Locale, Le Marché Bonnetier, Joséphine, Salsa Studio, Le Badine de Martine, Bricolage de A à Z, Sabah Épicerie, Éditions Franciscaines, Aquarelle, Pimlico, Maison de la Truffe, Baccarat, Hédiard, Caviar House & Prunier, Kaspia, Comptoirs de Paris, Franprix, Les coiffeurs de la rue, Des Gâteaux et du Pain, Franck Provost, Jossé, Optic 2000, Boulangerie Saint-Louis, Le Fournil Du Village, La Délicieuse, Librairie Fontaine Passy, Le Quai du Pain, Motori Italiani, Huré Boulanger Patissier, Cycles GUILLOCHON Gérard, Kelly Angel, Copy Express, Calymotos Pasteur, Exavue, Franprix, Boulangerie Thevenin, Longtemps..., Franprix, Boulangerie Pascal & Sylvie Robin, Laverie, Aux délices du palais, Simply Market Paris Brune, Franprix, Go Sport Vélo, Le 5e As, Les Guetteurs De Vent, Drouot Montaigne, Boulangerie Laurent Roperh, La Friche, Dia, Naturalia, Préférence, Arc en Ciel, La Boite à Much', Atome micro, The Phone House, Les Fantaisies, Star, Soleil Sucré, Romi, JNT Chaussures, Denisor, Boucherie Tizi Ouzou, Loona, Miss Lola, Délices de Belleville, Fifi, Meli Shop, Froc, Le Temple d'Or, Shinel, Vic Fel, Princesse, Sarah Bijoux, Patisserie des Sultans, Carrefour Market, Bricolex, Franprix, Autour du Fournil, Le Grenier de Félix, Arnaout, Nicolas, Paul, Naturalia, Vélo services, Coiffure, Sandro, Librairie Dalloz, Biocoop Catalogne, Biocoop Grenelle, Dia, Laverie Camagne Première, Chocolatier Pierre Marcolini, Chez Sam, Au 7 Armand Carrel, Librairie Beaujean, Album, Little Tokyo, Jihanne Souvenirs, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Boulangerie du 37, Coifhom, CocciMarket, Erol Pressing, Interflora, Franck Provost, La Grande Récré, Franprix, Franprix, Dia, Sammels B., Boutique, Boulangerie du Val de Grâce, L'Arbre à Lettres - Mouffetard, Pharmacie Monge, Les Alizés, Aux délices de Christine, Mondial Or, La halle aux chaussures Kids, Monoprix, Gerard Darel, Générale D'optique, Le Pain au Naturel, Nicolas, Loft Design By…, Ted Baker, Double Pensée, Naturalia, Paul Beuscher, La Vie Claire, monop', Blé sucré, Franprix, Point Soleil, Naturalia, G20, Mr Bricolage, Les gourmandises de Catherine, Exo Store, Dong Nam A, Big Store, L'épicerie Exotique, Leader Price, Franprix, Diagonal, Paris Pêche, Tati, Nouvelles Frontières, Epicerie Turbigo, Tabac du Temple, Patisserie de Choisy, Patisserie Saison, Arnaud DELMONTEL, Pâtisserie Hubert, Monoprix, Franprix, JouéClub, Carrefour Express, Team Outdoor, Intermarché Express, Alain Afflelou, La Fleurothèque, Franprix, Square Pressing, Skoda Paris Est, Au Bec Sucré, Midas, Speedy, Franprix, Happy, Picard, Electricité - Plomberie - Vitrerie, Boulangerie Eric Kayser, À la Bonne Viande, Au Jardin de Bellart, Page 18, Editions Eyrolles, Michel Deschamps, Le Home de Saxe, Alimentation Générale, New Beauty, Namaskaar, Rose & Théo, Mr et Mme Duciel, Carrefour, Jérome Lamaze, Mega Sun, Banco Cash, Roc-Eclerc, La Fromagerie de Paris, TTA Paris Est, Stincel, Sport Discount, Nicolas, Leduc, Épicerie, Le Monde des cartes, Pains et Gourmandises, Paris Optique, Les Saveurs de Charenton, Studio James, Lutèce, Ligne & Beauté, Body, Le Beau Verger, Amazon, L'Alinéa, Chaussure Néo, Sand & Jo, J. Maillet, Yves Benoît, Marché U, Trois Jeunes Tambours, LR Coiffure, Institut de Ségur, Presse et Vidéo, Apartment Living, Ségur Immobilier, Salle de Vente Caplot, Les Vergers Duquesne, Au Pain d'Autrefois, Proxi, Les Vins du Terroir, Paris Duquesne, Fève, Breteuil Immobilier, A. Laurans, Maison de la Cave, Rêves Institut, Monceau Fleurs, Franprix, Optic Maubert, Landemaine, Sitis Market, Maison Ellini, Relay, Bébé Cash, Natalys, Papeterie Perjac, Librairie Forhom, Cristal Zen It, Institut Marie Estrella, Votre marché, Lidl, Magma, Como, Bhai Bhai Sweets, Marionnaud, Note-X, Dia, Zerzour, Pichard, Dossemont, La Petite Chocolatière, CopyHouse, Librairie de Sèvres, G20, Rue de l'échiquier, La Cave du Daron, Moto Pasteur, Franprix, Moisan, Reprographie Numérique, Librairie Ancienne du Parnasse, Intermarché Express, Motor village, La Truffe Noire, Picard, Le Marché Franprix, Mateïs, Le Marché Franprix, ECM Car Premium, Librairie Boutique, Store plaisance, GREEN line, Thierry, DIA, La Cave, à la Bastille, Dagobert, Versade Fleurs, Bonheur de Mode, Alimentation Générale, Mori Yoshida, Da Stuzzi, Alimentation de Breteuil, Roland Gosselin et Associés, France Conseil, Consultants Immobilier, Fair-Play Breteuil, Rouxel Joailliers, Mes Chaussettes Rouges, Monoprix, Franprix, Patate Records, Bio-C-Bon, Le Saint-Georges, Carrefour Market Paris Monge, Week, Éva Baz'Art, Le bar floral, Atout fleurs, L'Herbe Rouge, Pharmacie centrale du XIe, Papeterie librairie, Librairie journaux, Franprix, Picard, Franprix, Artiyz, Cyclades Électronique, Detrad, Monoprix, Del Duca, Institut Karité, Roméo et Juliette, Les Gourmandises D'Eiffel, FNAC, Franprix, Franprix, Bastille moquette, Armorino, Dia, Eric Kayser, Krys, La Tranche Dorée, Maison Gosselin, Nicolas, La mutuelle du Mans Assurances, Sephora, La Fromagerie, Monoprix, Paul Soulabaille, Maxi Viande, Ford, Peugeot, Peugeot, TCHIP Coiffure, L'Intendant du Roy, Cordonnerie du Plateau, Carrefour Market, Cyclo Paris 15, H&M, Ecox, Franprix, HEMA, Franprix, monop', Boulangerie Gwendoline et Bruno, Dynamic Sports, Jean Louis David, La Prestigieuse, Ecgig & Zen, Velovia, Franprix, Boulangerie Abdel Jalil, Boulangerie Idhsaine, Boulangerie Leroy, La Fournée vanvéenne, Boulangerie de la Gare, Boulangerie Patisserie de la Villette, Michon Robinetterie, Alimentation générale, Boucherie Aamar Hadad, Elecson, FLM, Laverie, Nicolas, Profil +, Réparation, Splendid Coiffure, Teinturerie Pressing Marly, Dominique Saibron, Truffaut, Truffaut, Talents - Gallerie d'art, La fournée d'Augustine, Le Pain de Jacques, Inforama, La Compagnie du Lit, Leader Price, Relay, Tchip, JouéClub Pintel, Au Plaisir du Pain, Optic 2000, Toys Garage, L'Arbre à Lettres - Bastille, Fontaine Kléber, Itinéraires, Fontaine Haussmann, Dédale, Imagigraphe, L'Arbre à Lettres - Denfert, Comme un Roman, BD Net, Autant en Emporte le Vent, Librairie Droit Economie Lettres, Atout Livre, L'Acacia, L'Ecume des Pages, L'Arbre du Voyageur, L'Oeil Ecoute, La Plume Vagabonde, La Boucherie, La 25e Heure, L'Attrape-Coeurs, L'Œil au Vert, La Manoeuvre, Le Chat Pitre, Le Livre Ecarlate, Libralire, Librairie des Abbesses, Violette and Co, Village Voice, Voyelle, Le Phénix, Les editeurs associés, Librairie Gourmande, Librairie Nation, Librairie du Temple, Librairie Vigot Maloine, Les Mots à la Bouche, Librairie Nordest, Palimpseste, Les Buveurs d'Encre, Les Cahiers de Colette, Librairie des Arts et Métiers, Lipsy, Librairie du Globe, Librairie de l'Escalier, L'Arbre à Fruit, Fromagerie du Rendez-Vous, Picard, Boucherie de l'Avenir, Poissonnerie Abyss, Franprix, Boucherie du Rendez-vous, Laverie, Boulangerie Feu de Bois, Franprix, Simply Market, Dia, Futur Carrefour, Marks and Spencer, Au Levain des Martyrs, Droguerie des Martyrs, Frank Provost, Picard, Sergent Major, Le Pied de biche, Qee, Bio Génération, teeshirtplace.com, Axe Services, San Francisco Book Company, Eric Stipa, Au duc de Valmy, Simply Market, NamoBio, Freemoos, Biocoop, Ecox, En Selle Marcel, optigal, Brico Vaugirard, Carrefour Market, Garage Meyer, La Ruche Gourmande, Aki boulanger, K-mart, Digixo, Millésime, Centre Faguet Optique, Liz & lorens, Charly Coup'Hair, Divini Kreol, Jean-Claude Biguine, Les Opticiens Mutualistes, Meubles & Atmosphère, PA Design, Pharmacie Sebag-Meimoun, Retoucherie, Optique Job, kitClope, Dharma Sangh, Jean Louis David, L'Ouvre-Boîte, Levi's Store, Marché Franprix, Motus, Optique d'Hauteville, designOptic, espace SFR, Veetha, Boulangerie du Fauborg, Dia, Alexia Lingerie, Asia Pacific Trade, Caves Bardou, Coiffure Meliani, John Paul, Sitis, Boulanger Patissier, Franprix, Franprix, Office Depot, Copy-Top, Generale d'optique, Bocoray, Cordonnier, Naturalia, Institut Li Ping, Marionnaud, Bio c'Bon, Ace Mart, Copy-Top, Nicolas, Opera Market, Shop, Picard, Basler, Franprix, Monoprix, Association Microlithe, Monoprix Gourmet Lafayette, La Maison du Vitrail, Tardif, Jiajia tofu - 家家食品豆腐店, Franprix, Franprix, Renault, Foot locker, Du pareil au meme, corner shop, Conceptua, Locomotiv Gaeland, Librairie Henri IV, Island Tours, Jean-Louis David, Bexley, Jean-Claude Biguine, Daisy Simon, Ford, Poissonerie Secrétan, Daily Monop, H&M, Mango, Minelli, Al Madina, Altavic-Bio, DB Alimentation, Espérance, GO2 Santé, JLK, Ramesh, Serrurerie Générale, Les Bannetons de Charonne, Les nouveaux Robinsons, L'Air des Champs, Boulangerie Magnelli, Franprix, Bazar Zedi, La Parisienne, Maison Kayser, Laverie libre-service, Juji Ya, Kioko, Monoprix, Picard, Franprix, Boulangerie F. Comyn, Proxi, Boucherie des 3 Portes, Arcane Livres, Franck Provost, Picard Alésia, Nicolas, Sapori d'Italia, Le Bouquet d'Orléans, Coiffure Sylvie, Nicolas, Palais d'Orléans, Au Jardin de Murcie, Prox Nour, Boulangerie Pâtisserie L'Escale, Boucherie de la Porte d'Orléans, Primo Fruits, Maison d'Europe et d'Orient, Charybde, Marché Franprix, Ici-même, Monoprix, Garage de l’île Saint-Louis, Conforama, Armoire lit diffusion, Fora voyages, Naturalia, Franprix, atelier floral, Les Caves d'argent, Boulanger Ounissi, Conforama - dépot Nation, Darty, U Express, Music Guest, Hamm, Électronique Diffusion, Franprix, Franprix, Castorama, Tatanka, Au jardin de Bolivar, Home Hair, oeufs et lait Duprès, Tournesol, Ermenegildo Zegna, Fauchon, AppleStore, Naruralia, Saint-Maclou, Puma Store, L'Orchidée, Tchip, Coiffure, Librairie-presse, Carrefour Market, Laverie, Petit Casino, Atelier Gustave, Hårig, Carrefour Express, occasion, La Miche qui Fume, American Apparel, Boxingshop, Au Grain de Blé, Marché Franprix, Baguépi, HSV Sécurité, Yi Fan Shun, Afro Beauté, Proxi, Les Halles de Lancry, Les Vergers de Lancry, La Cave de Noé, Les Îles Grecques, Martel immobilier, Noix de Coco, Body Minute, Rouge Kaki, Mutant, Le verre volé, Burma, Lancel, Le Notre, Mango, Marionnaud, Mini Market, Naturalia, Orange, Promod, Zara, ?, Super U, Festival des Pains, Laverie, Marché Franprix, Carrefour City, Bulles en tête !, Nalola..., Le 5e Disque, Newspaper kiosk, Boulangerie Alia, BP, Boucherie Normande, Stohrer, Boulangerie de la Gare, V.O. Boutik, Diwali, Vidéosphère (La Vidéothèque du Cinéma), Friends, Abimedia, Led-on, Jouets Bass, Galerie Anatome, Au point du jour, Pressing Luiza, Legrand Filles et Fils, Kiosque à journaux, Village JouéClub, Librairie/Papeterie/tabac, Le Monte en l’Air, Boucherie du marché, Le Décanteur, La Goëlette, Par'ici, CKAB -- hackable:Devices, Intermarché, De Fursac, A la Mère de Famille, A la mère de Famille, Franck Provost, Franprix, Accessorie's, L'atelier, Leonidas, Alimentation, Boucherie Taine, Patisserie Honoré, Boulangerie Jean-Olivier Rondot, Aux Tenailles d'Or, Le Verger d'Alésia, Devialet, La Grande Récré, Obj'ai trouvé, monop', Boucherie Kacher, Coté Jardin, Boucherie Atlas, Claude Piat, Clean Discount, Frynet, Gérard Mulot, Point Presse, L'impérial, Royal Primeur, Tang Frères, Peugeot Avenue, Mondial moquette, Rive gauche motos, Sabre, Coquelicot, Beauty Monop', Hall' shop, Le 41, U Express, Boucherie du Square - Le Bourdais, M'Effleure la muse, Crazy Rock Circus, Boulangerie Fantasiiia, Floo, boucherie hallal, Mutuelle du Mans Assurance (MMA), Au Levain de Pyrénées, Belleville Lowrider, Fat Tire Bike Tours, Françoise Le Net, Free Scoot, Boucherie Ducoeur, Proxi, Cavavin, 8 à 8, Retour à la Terre, Illel, Carrosserie Mazet AD, Castellane, Coiffure Théatre, Coiffure, Estetika, Leader Price, Byblos, O mille et une fèves, Le Merle Moqueur, monop', Alimentation Générale, Salon de coiffure, Wash'n dry, La carte des Vins, CashExpress, Martine Fleuriste, Boulinier Jourdan, Option Scooter, Pressing, Chevrolet, Bruno Romain, Laverie Libre Service, La Cave au Bon Plaisir, Le Verger des Maraîchers, Leader Price, Art Tabac, Le Lotus, Poissonnerie de la Porte Dorée, Naturalia, La mandragore, L'ami du pain, Boucherie de la place, Votre marché, Alimentation Gle des Peupliers, Pressing des Peupliers, Garage Renault, La Boulange du 12e, Bio c' Bon, Carrefour City, monop', Franprix, Le Petit Bleu, Le pain d'antan, Sadaharu Aoki, Épicerie Anglaise, Cuisines Schmidt, Frederic Moreno, Eric Kayser, La Gourmandise, Cocci Market, Monceau Fleurs, Guy Rouez, 8 à Huit, La Cure Gourmande, N.Y.P. Supermarche, DIA, Graphi Dessin, Beauty Zen, Visite de la Tour Montparnasse, Celio, Tabac de la Tour, La bagagerie, Promod, Orange, NAFNAF, SFR, Midoré, J.C.K. Beauty, Yilpa Telecom, Ting Supermarché Chinois, Franprix, Nicolas, C&A, Boulangerie Pão Quente, Moustaches, Hôtel des Ventes Richelieu Drouot, La Tranche Dorée, Librairie La Martinière Le Seuil, Nicolas Antoine Artisan Fleuriste, Aquarium Tropical, Démocratie, La Vie Claire, Institut de Bruxelles Relaxation, Saud Sai Spa, Appear Coiffure, Du Vin et des Bulles, Garden Optique, Institut Trinité, Jardin de Trinité, La Bonbonnière, Pronuptia, Royal Coiffure, Smart Store, Tapis d'Orient, cylia l., Atmosp'Hair, Châteaudun Reprographie, Agences Vaneau, Planitour, i ♥ optic, Le Nouveau Calumet, Boutique SNCF, La Grande Récré, Orange, Le Boulevard du Scooter, Royal Viande, Alimentation Générale, Amplifon, Artisan Boulanger, Cadran Bleu, Café Coton, Climats, Frank Provost, G. D'Audrey Antiquités, ID Prestige, Interburo, Le Mobilier d'Art, Le Repaire de Bacchus, Maison Landemaine, Natalys, Open Shop, Optical Corner, Planète Rasoir, Pressing 3000, Primeurs Clichy, Rêves de Femme, Sansha, Sellerie Vintimille, Serrurerie, Sister, Un Temps Pour Tout, L'Atelier R.G., À l'Opéra, AJC, André, Arnaud Dalens, Aux Merveilles de Paris, Boutique SNCF, Carré Soleil, Citadium, Citron Vert, Degrif des Stocks, Délices de Fleurs, Image de France, Itinéraires Lointains, L'Atelier du Sourcil, Mika & Elle, La Gobelinoise, Boulangerie Akiko et Philippe Bruere, Cadoceur, Cours des Halles, Laverie Éclat, Laverie, Mademoiselle Bio, Majuscule, Monceau Fleurs, Na Na, Nana, New Star, Optical Service, Pampilles, Paris-France Immobilier, Slim Price, À Fleurs et à Mesure, 5 à Sec, Picard, Franprix, Uniqlo, Âme et esprit du vin, COS, Franck Besson, La Charmille, DLM Paris, E. Dehillerin, Jardin du Louvre, Au Cœur Immaculé de Marie, Franprix, Franprix, monop', Leader Express, Monop' Austerlitz, Franprix, Le Fournil de Paris, Auchan, Nicolas, Tout à 1, 75€, KIA, Hyundai, Phillipe Motos RN7, GAM, Franprix, Hair Jungle, Tembely, Picard, Retromotion, La Vitryenne, Carrefour Market, Louis Vuitton, Peinture en gros, Coiffure Stalingrad, The Chennai Silks, Minivague, Chennai, Kobal cash and carry, Le marché exotique, STR Alimentation Générale, Makkal Kadai, Vijay, Copie Press, SCS Informatique, Laverie - Repasser - Retouche, Errances, Le Grenier à Pains, Monoprix, Boucherie Bourdin, Au pain complet de Paris, Librairie de Paris, Monoprix, Franprix, Simply Market, JPCycles, La Moulinoise, Maison Legendre, Brewberry, Franprix, La nef des fous, Monceaux fleurs, Carrefour Express, Jardin papillon, Picard Surgelés, Paris Vert, A la pointe, Dam Dim Dom, Balile, Cocci Market, Laverie, Épicerie Cadix, Allianz Services, Techniques Études Plomberie Couverture Chauffage, Laurence Coiffure, Lavo-Cadix, Culture et bibliothèques pour tous, Déco Cadix, Techniques Études Plomberie Couverture Chauffage, Martine, Lavo-Cadix, La Ruche d'Alésia, Librairie Saint-Paul, Maya-Frih, Cyber Gun, Festival des pains, Boucherie S. Lefeuvre, Les Vins Guy Jeunemaitre, Pressing, Intermarché, Leader Price, Franprix, Gino Gina, Pascal Gaudain, Maman bébé, Basoge, Picard, Aux normes, Maison du Bijou français, Maria Galland, Chez Max Fils, Ets. Desnouettes, Le Panier du Hameau, unknown, Location Taxi Relais, Exelmans, SCA Piernet, Concorde Gestion, Les Sept Épis, Élysée Avenue, Choki Choki, Légis France, Les Sept Épis, Le Comptoir de Chalosse, Poissonnerie du Hameau, Voyages culturels Clio, Pains et Passion, A.D.L. 154, Picard, Carrefour Express, Les Vins d'Alexandre, Franprix, Garage Dekra, Miss Papillon, A. Pedone Éditeur, Jacques Gabay, Album, Caves du Panthéon, Celio, Coutard, Jennyfer, Nike Running, Derby, Dylanium Le Cuir., EDSON, Espace Micro, GAP, GINKGO, JP, Jules, Latin Optique, Le Temps Retrouvé, Les Délices du Fournil, Librairie EYROLLES, Maryline, Marks & Spencer Food, NAFNAF, Nepalaya, New Shop, Nicolas, RG512, Salamander, Sinéquanone, Six, Stock André, Sud et Express, Troifoirien, Trop Bien !, United Colors of Benetton, francesca, Abou d'Abi Bazar, Papeterie Latine, Librairie philosophique J. Vrin, pimkie, BMW, DIP, Carrefour City, Home Studio, Star's Music, Star's Music, Star's Music, Le Passage Clouté, monop’, Boulangerie Alsacienne Benoît Maeder, Vent d'Ouest, Bernard Delattre, Poilane, Rouiller, Chez Pépette, Au cochon rose, Lidl, Page à page, Chocolat thé, Feuille à feuille, Le Cellier Saint-Charles, Studio 148, Centre Auto, Carl Marletti, Mavrommatis, Supermarché Diagonal, La Tradition, Oum Coiffure, Sitis Market, Le Bel Épi, Franprix, Kelly's Fleurs, La Gerbe de Blé, Leader Price, La boulangerie des buttes Chaumont, L'Atelier des Pains, Kiloutou, Monceau Fleurs, Paul, Monoprix, Be Disc, Harmony Pressing, Cyrillus, Elan, Kenzo, Lancel, Nespresso, Bang & Olufsen, Celio, I love Paris, Mont-Blanc, Swarovski, Fournil de Wattignies, Mobalpa, Halles Optique, SOS Master, Copy-Top, COPY-TOP Etoile - Kléber, Espace Trocadéro, Franprix, Gap, Nicolas, Lexus / Smart, Gloria Coiffure, La Cyclofficine de Paris, Le Comptoir des Mots, Maison Guérard, Essalam, Passage du Havre, Franprix, Pressing Menilmontant, La Petite Rose, Aux sept merveilles, Valentino, Harry Winston, Chanel, Printemps homme, Wash'n dry, Mega Affaires, Éco-lampes, Mair mesures, L'endroit, monop’, PASS Technologie - Conseil informatique, Boutique Auto Moto, Copystar, G20, Halles 3000, Marché Franprix, A2 Pas, Le comptoir de Mathilde, Nicolas, La Bonne Pomme, Bio C'Bon, Huré, Beaubourg Optic, La Halle, Design Librairie, Le Marché des Halles, Diagonal, Passage du Désir, Coiffure mixte, The Phone House, Corep Jussieu, La Grande Récré, Franck provost, Maison de la litterie, Marché Franprix, Casino Supermarché, G20, Jardin Daumesnil, La Chocolatine, Micro Relais, OSX Informatik, TDI, Ultimate, WL, aac, Direct Optic, Franprix, Moulin de Provence, Garage AD, Cachecache, Bonobo, Monceau Fleurs, Chantal et Hugo Roggio, Stop au 22, L'Art du Pain, Miss Coiffure, Scooter Avenue, À l'ourson, Lidl, M. coiffure, Le goût de saison, Le Vent des pages, L'Épicerie, Le Marché Franprix, Givenchy, Hermès, Toyota, Cartier, Louis Vuitton, Gianfranco Ferre, Bruce Field Femme, Bruce Field Homme, La Maison du Chocolat, Sony Style George V, Tara Jarmon, Tommy Hilfiger, Nike, Le comptoir du motard, Au Club Market, Avenue Aristide Briand, Le jardin d'Éden, Love♥n Flower, La Marchande de chaussures, Yakimono, La Do Ré, Lidl, Super U, Franprix, Picard, By Cyril Lignac, Pharmacie Paul Bert, Laverie Paul Bert, Nicolas, Smile, Fromage, rouge, L'art du verger, Orange, La vie moins chère, Valérie Tomas, Laurence Coiffure, Monoprix, Lady Die, Superette Montrouge, Boucherie Lesage, Matière Grise, La Roseraie de la Mairie, Étoile d'or, Couronnes Fleur, Numéricable VHD, Fabio Salsa, Montrouge Musique, Ciusto, Défini'tif, Carrefour City, Marionnaud, Carli Paris, Intermarché Express, Naturalia, Office Depot, Boulangerie Benoist, Secrétan Ménager, Optic 2000, Euroline Mode, 8 à huit, Boulangerie Patisserie, Halles Secrétan, O'net Pressing, Fromagerie Secrétan, SNCF la boutique, Etoile Pressing, Ear-Well Lab, Monorom, G20, Just Clean Pressing, Actuel Pressing, Franprix, Le Fournil de Paris, Quai d'Art, L. B. Créations, Le pétrin alsacien, Carrefour Market, Boucherie Villette Sud, Coccinnelle, Coiffure, Comptoir d'Italie, Dray Plus - Pulsat, Euro Bazar, KB 35, Surplus américain Nr 94, Cave 18, Picard Surgeles, Carrefour City, Monoprix, ESPERANTO - langue internationale, Magasin/Kebab, 83, Gibert Joseph, Monceau Fleurs, MG Coiffure, Les Gourmandises du marché, Peugeot motocycles, DIA, Robin, Au Fournil Gaité, M. & N. Petitot, Quadro, Boulangerie des Lombards, DIA, Vacant, L’Ourson en bois, Le Fournil de Paris, Boucherie Chayma, Du Pareil au Même, Le Triomphe, Picard, Bosch Service, Alimentation Générale, Laverie libre service, Primeur Thong, Boucherie Laurent Dumont, Casitalia, Picard, Printemps Nation, Boucherie Thiebot, Hapsatousy, Institut Lys Blanc, Les Opticiens Mutualistes, Hair Styliste, Carrefour City, Minelli, Dia, Boule De Neige, Carrefour City, Copilote, L'Orée de Montmartre, Peugeot Motocycles, R'Mode, Salon de Massage, Bricolex, La Cocotte, Tage coiffure, Librairie Jonas, Junkudo, librairie japonaise, Centre Wallonie-Bruxelles, Le XXe Siècle & ses Sources, Campers, Citadium, Factory, monop', Nike, Nicolas, Naturalia, Vidéo Futur, Naturalia, Mercedes, LD informatique, Mobalpa, Hi!Tech, Bio c' Bon, Yottacom, Millie's Cookies, 3F computer, Billy The Kid, Ines d'Alexis, 2a Voyages, Biguine, Silver Creek, Missliu8, FranckOptique, happy, Produits exotiques, Beauté d'ange, Franck Provost, Picard, L'Océane, Kookaï, Redskins, Schott, 44th Square, La Boul'Ange, unknown, Sauvel Natal, Franprix, Naturalia, Foot Locker, Claude Maxime, Paul, Votre Marché, Paul, Best Mountain, Kusmi Tea, Marks & Spencer Food, Galerie Thuillier, EPI Service, Boite à surprises, Monoprix, Atome Micro, Boulangeir Pâtisserie Kellerman, Laverie libre service, Ti Beauté, Lanzt motorisation, Proxi, Tonyshop, Les Salons MG, Alimentation Générale Tamazini Frères, Laverie 2001, Leader Price express, Audionova, Amorino, Eliecotto, Optique Voltaire, Contact audition, Audika, Le saloon coiffure, Or´ Optik, 5e Cru, Orchidée, Kim Thanh, Pakkai, Yv Nghy, Saing Heng, Anny, Mo Ny, Hoa Ly, Asia Cadeaux, Erawan, Goyona, Asia Tresor, Diététique et Forme, A la calebasse verte, Au Vieux Campeur, Gepetto & Vélos, Cash Express, Nutritiel, Patrice Renouard Coiffure, Boucherie Tadfousse, Krys, Top Coiffure, Boulangerie Patisserie SAS Penain, Yuying Beauté, La Petite Fruitière, Le Potager de Montsouris, Banana Republic, Sidi Brahim Alimentation, Proxi, Garage des Peupliers, Beauté Zen, VitaMin&Co, Ronde de nuit, 1001 piles, Axone automobiles, PGM Italie, La Tonnelle, Boucherie Anezi, Stop Phone, Coiffure K.Y., Tati, Platinium, Patricia B., Optical discount, Albert, Usina literie, Les trésors Sucrés, Krys, Centre commercial Grand Sud, La station des affaires, Paradis D' griff, Thomas Cook voyages, Lacama, JN Coiffure esthétique, JN Espace mariage, Anas voyages, Kremlin Bagages, Kremlin Phone, Pêle Mêle, MAAF assurances, A la Renommée, Jean's Maverick, Cab Nation Paris 13, Bricorama, Super Cacher Koskas, Boucherie Koskas, A-Z Pc, China Moutai, Chinaco Travel, Franprix, Coiffure Roulot Michel, L'Artisan du Pain, Boucherie de la Passerelle, Coiffure Pretty Hair, Librairie Emmanuel Lhermitte, Halte épicerie, Chin Chin Salon, Lav' club, Orpi Montsouris PL, Pressing Arc en ciel, Espace canin, Alimentation Générale Daighami, BMW Motorrad Bobillot, Bazar Bobillot, Maison Cipolli, Bijouterie Bobillot, Boulangerie Patisserie Sainte-Anne, Salon de Beauté Lisa, Nicolas Tolbiac, MZR Chic, Connexion Tolbiac, Art et Végétal, Body Minute, Picard Sainte-Anne, Opium, Alixe Fougères, Lavomatique, Tangka voyages, Camille Albane, Première Optique, Paris Affaires, Fanny et Joseph, Charcuterie Pellé, Franck Provost, Pressing de l'Espérance, Quatrehomme, L'Éloge du Vin, Verger de Tolbiac, Saint Algue, Boucherie de la butte aux Cailles, Tchip, La Crac'ante, Le Phare du Ponant, Monsieur Fernand, Short Cut, Peigne Fin, Allo Phone, Jean-Claude Biguine, sarl ACDO, Librairie - Papeterie, EurObsèques, Maison Simoneau, Hollywood nails, DN moto scoot, Mya Isai, Nicolas, Bio Génération, Chabrol Pressing, A2 pas, Paris Mixte, Tchip, La boutique du déménagement, GMSA Alésia Multi Service, Allianz, L'Agence du Chalet Keops, GMSA Alésia Multi Services, Perles sur ongle, Mediabank, Droguerie, L'hair dans le vert, Lilas, Century 21 Alésia, Ping Ping Beauté, Martine, Nadia Lenne, Luc Gaspard, Xin Xin Alésia, Affinité Beauté, Paris Télé Secours, Mutuelle Générale de Paris Alésia, Scoti Immobilier, Abidis, Castim Immobilier, Jourdan Coiffure, Alésia Fleurs, Laforêt, Office Depot, Nicolas, Matmut, Librairie Ithaque, Garance Immobilier, La beauté des ongles, Optique Jorion, Etude A.M.I, Lilina, Promod, Phone House, Smart stock, Celio, L'ortie blanche, Librairie Nicole Maruani, Wash Service, Franprix, Marché Franprix, Bruno Melgani, Optique 2000, Franprix, Monoprix, Boulangerie Belazi, A2pas, Maison Hébert, Biérocratie, Cleoni institut de beauté, Charcuterie traiteur et cuisine asiatique, Lucia Coiffure, Salon Orchidée Sun, Retouches, Rose d'Or, Droguerie Quincaillerie Bricolage, Attica - La librairie des langues, Nathalie N, Kiddyland, Des mains et des pieds, Agence Montsouris, Laverie Libre Service, Petit Casino, SBI - Gefimo, L'Amiral Primeur, Retouche Gazel, La Boutique Gourmande, Maison Kevest, Rebillon, Famille Les Opticiens mutualistes, Century 21 Lutèce Immobilier, Libre service du Parc, Presse Universitaire de France, La maison des marquises, Chez Sophie, Maison de l'Astronomie, Orange, San Than Thai Massage, Boucherie Économique, Franck Provost, Nicolas, Primeurs Jeanne D'Arc, Biocoiff, Lena Beauty, IBF minéraux, JC 2000, Miss & Men Coiffure, Agnès K., Meubles You, Le Paradis des Ongles, Cung Dinh, Tahiti immobilier, Amasia, Europasie, Kampoul Pich, Weng Se, Tran Nhan Ky, Tif' Folie, Choisy immobilier, Sun Salon Coiffure, Poly China, Wa Quan bazar, Allianz, China Europe, La petite merveille, Stasia, Thai DVD, Asia Immo Conseil, Embest Chaussures, My My Onglerie, Aviva Paris Olympiades, Delphine Beauté, Hoa Ly, Petit Para, Kim Hair Line, Kawa, Alpha immobilier, Coiffure en vogue, Western Union, Optic Tolbiac, Lava'tronic, Discount Beauté, Picard Tolbiac, Ivry Coiffure, Leader Immobilier, Vivre Mobile, Au Petit Saigon Nhơ, Aux Merveilles d'Asie, L'empire des thés, Mydo Mod's, Kim Fashion, Khai Tri, Boulangerie Patisserie Sandwicherie, Kiloutou, Elysse coiffure, Boucherie Jourdan, Bazar de la Porte d'Orléans, Le Verger d'Orléans, Fabio Salsa, Century 21 Alésia Montsouris, Dany Boutique, Matériel de coiffure professionnel n°128, Assu 2000, Nuances Coiffure, Galerie du luminaire, Diagonal, Agence Alin - Porte de Châtillon, Oneclop, Le fournil du moulin, FPA Paris Brune, Pic Cuisines, Schmidt Paris 14, Alesia Moto, Arilux, La vicomte, Sublimatorium Florian Leclerc, Les amis de l'automobile, Franprix, Alimentation générale, Le Marché d'à côté, Boulangerie de la cité, Franprix, Bonjour Backery, Paul, Selectronic Paris, Super nettoyage à sec, Joalric, Halles Convention, Antonelle, La fromagerie, Point Presse, Albax, Pressing, Picard, Pressing, Fifty Fifty, Biguine, Les éleveurs gastronomes, Bijou, Boucherie Donné, Fleurs d'Auteuil, franck Provost, Proxi, Laurent Duchêne, La Bretagne, Le repaire de Bacchus, Boulangerie Festival des Pains, Jeu d'encre, Lady's Colours, Le lavoir du 14e, Coiffure Messieurs, Boulangerie Brune 77, Pressing 75, Bethania hair coiffure, GDV informatique, Midas Paris 14 - Brune, Agence Axa - James Luzon, Salon Christine, Atelier Garnero, Le relais du fruit, Sonogar, Boulangerie L. Paulin, Argana, Culture indoor, Little zoo, Beauty spot, Maria, Coiffeur homme, Carrefour City, Le fournil de Vanves, Monoprix, Halles Balard, Maison Lefaure, Maison de la Détection, KYF Cigarette électronique, SYSTA Informatique, Au Sport, Bio c' Bon, Key Largo, Allo Bureautique, Rapid Market, La Cabane, Le Jardin des Pains, Salon américain, Patrick Guedj, Premibel, Boulangerie Pâtisserie Yelles, Franprix, Tolbiac Pressing, Oriento Market, Concorde Love store, Laverie libre service, Fashion coiffure, Latino market, Anita Coiffure, Beauty bar, Private SPA, Thyda Apsara, Aux Couleurs de Paris, 8 à Huit, Mi Prix, MNAM Harmonie Mutuelles, Des griffes boulevard, Annie & Gilles Boulangerie, Bunny ongles, Libramoto, Des griffes boulevard, AGPM, La France Mutualiste, Century 21 Quai ouest, Aux Délices de la Roquette, La tradition du pain, Carrefour City, Office Depot, Casino, Be 9, Boucherie Atlas, Tchip coiffure, Ober, Proxinour, Pressing Fer d'or, Citroën Paris Rive Gauche, Coiffe' Mod, Au chat botté, M scoot, Gayomart, L'âme soeur, Paris scoot service, Lefebvre essence, Institut Minceur & Point Sourire, Les déménageurs bretons, Déménagements, La saveur du pain, Relais de Stalingrad, Gosselin, Marguerite, Fromages Laurent Dubois, Nicolas, Welcome Bio, Sacrés Vins Dieux, La Balustrade, Thaï Sympathie Krisana, La boutique SNCF, Pascal Atwe, Carrefour City, K Optik Balard, Déva institut de beauté, La Bicyclette, Les Affranchiz, Square de Belleville, Clean City, Naely, L'Atelier 67, Radiocomsat, monop', Clair obsèques, Au Bois d'Orléans, Nexity, Coiff 21, Massage Thai, Les jardins de Paul'ha, Leila Coiffure, Laverie libre service, Boucherie du Père Corentin, Bel' Dam, Marionnaud, Anaïs de Paris, Caprices..., Leonidas, Loisir & Culture, Salon de coiffure, Worktopfactory, Alimentation générale, Les sirènes d'Asie, Cordonnerie - Clés, Laverie éclat, Nicolas, Jean Louis David, Le bonhomme de bois, Le grenier à pain, Weinberg, Kenzie, CPH Immobilier, Millenium boutique, Gautier, Sélection primeurs, Vision du 15e, Alice Son's, Bedros, Boucherie du rond point, Eric Stipa, Boulangerie Saint-Charles, Picard, Franck Provost, Gold company, Elegantissimo, Photo Saint-Charles, Boulangerie Flandrin, Boucherie Saint-Charles, Body minute, La boutonnerie, Mo.Mo Prix, Boulangerie Patisserie, Lavatronic, Sitis Market, Clopinette, Franprix, Christian Echardour, Stephane Pressing, Chez Laurent, Ingencia, Marché Franprix, Pressing Paris, Jean Louis David, Jean-Claude Biguine, Au Nom de la Rose, M.G. Espace Lourmel, L'Attrape-Coeurs, Gihon, La Cave De Lourmel, Serrurerie Dépannage, Garrice Stock, Agence Dupleix, Mille et Une Déco, Supérette De Lourmel, Laverie Libre Service, Le Prince, La Volga, Vins & Délices, Franprix, Album, Patisserie Poncet, Franprix, La Dînade, Tienda Esquipulas, Atol, DIA, Franprix, Optic 2000, Les Drogueries d'Aujourd'hui, Eric Kayser, Tout Noté, Com2Print, Yankee, Carrefour bio, Naturalia, Aux Saveurs Naturelles, Chocolatier de Paris, 203, Boulangerie Pascal Chevret, Coté Photographie, Couture, Genty Gastronomie, Institut Camélia Coiffure, Nissan Bayard Nationale, Pressing Anna, Rambert Optique, Salon Marhaba, Accoustic Center, Club Med, Home & Bath, Maisons du Monde, Menting, Numéricable, Optical Service, Salimar de Grandes Marques, Tabac club, Zedi, China Art, Chinaco, Copies Services Hexamedia, Copies Services Hexamedia, Jeanny.M, Shanghai, Sigue, Allo La Place, Azote Voyages, Cadeaux Montres Maroquinerie, Chantours, Mike Coiffure, Delta Electronic, Jean Louis David, Lav'Italie 64, Le Grenier à Pain, Lingerie Lisa, Léna, Maroquinerie Chagal, Mobeco, Naturalia, Nouvelles Frontières, Phone House, Place des Marques, Satland, Selectour, Terres Nouvelles, Viva'Son, Wanli, Boulangerie, Boulangerie, L'Atelier d'à côté, Marc Page Fleurs, Franprix, Au cœur du Marché, Cycles Minutes, Rapid Vélos, Euroconcert, Printemps, Espace Bazar, C&A, A.N.T Laverie, Au Bon Coin, Au Régulateur, Bruno Optique, Chausse Confort, Horloger, Istanbul Oriental, M.S. Fleuriste, For N'FrianD's, Jérôme B., Le Fournil Parmentier, Fournil de Pierre, Fournier Fleurs, Chop'in, De Thé en Thé, Boucherie Haissoun, Bio c bon, Van Cleef & Arpels, Lav, Simply Market, Superette Nova, Mon dé rouge, SBS, Didier Poussin, Jean-Philippe Audebert, L'institut, Mystère et Boule de Gomme, La Cabane à Presse, Chris, Cyclope, Gislaine Coiffure, Julian, Natsumi et Jérôme, Publico, Bien-être, Folicils, New Look, Soit dit en passant..., Cante, Au Caprice du Chien, Charcuterie, Mur & Sol, Medya, Vival, Voyages Montparnasse, Hédiard, Librairie du Centre, carrefour express, Les Pénélopes, Autrement Dit, G20, Boulangerie Marceaux, Gant store, Ernest & Valentin, Boucherie des Gravilliers, Franprix, Boucherie Marx Dormoy, Éric Gara, Carrefour City, Du Pareil au Même, Maison d'Ennour, Curling, Le Nemrod, Expe, Vépi, Bata, Célio, Etam Lingerie, Marionnaud, Orange, SFR, Yves Rocher, Aux Péchés Normands, SNCF La Boutique, Saint Algue, Boulangerie, Cline'Net, Aubergine & Go, Renault, agence Gesmier, La ronde des pains, Franprix, Caves Fillot, Guy's Barber, blonde de pain, Mr Bricolage, Gizelle Elegance, Merci, Augys Copy Service, Carrefour Express, Laverie G. Eastman, La Baguette Sedaine, monop', La Corbeille de Montrouge, Le pain d'autrefois, Rudy Père Et Fils, Boulangerie Poilâne, Picard, G20, Franck Provost, Immanence, Lerebourg, Boucherie des Fins Gourmets, Charcuterie du Panthéon, Au marché d'Abidjan et de Bamako, Boesner, La Boulangerie, La Tonnelle, Françoise Coiffure, Office Depot, Alimentation Générale, Honda, Kremlin, La Halle aux Chaussures, Chotty, La Forêt, Chaussures Noubar, Péchés Mignons, F. Attia, Le Garde Robe, Midoré, Franprix, Vivaldi, Aquafleur, Boulangerie Patisserie au 140, La Cartouche, Nouvelle ère, Pâtisserie de l'Église, Paul Beuscher, Stock griffes, Garage Thierry Fromentin, Princillya, Eden coiffure, Saint-Maur coiffure, Au bel arôme, Coiffure, Coiffeur élégance, Globus star, Darty, Habitat, Deby Debo, Alessandro, Zadig&Voltaire, The kooples, Chris Matthioux, Birague Cleaning, Ubu galery, Valeria Fara, Modella, Tera bora, Jeff de Bruges, Photo center, Boulangerie Saint-Antoine, Du pareil au même, Jonak, Les Petites parisiennes, My e-case, Halles Saint-Antoine, Lenôtre Paris, Rynshu, Dammann frères, Galerie Michel Estades, Galerie du Marais, Modus, Art symbol gallery, Galerie Mickael Marciano, Galerie d'Art Colette Clavreul, Mark Hachem, Galerie Lisette Alibert, Sibman gallery, Galerie 26, L'archange, Galerie Mickael Marciano, Galerie Ariel Sibony, Art symbol gallery, Galerie Artima, Deborah Chock, Parfums et Senteurs du Pays Basque, Galerie de Medicis, Galerie Bluman, Galerie Mouvances, Galerie Neel, Pourchet, Galerie Ph Magmoire, Cécile & Jeanne, Le marché de Turenne, Souvenirs du Marais, Bobbi brown, Karen Millen, Aqua di Parma, Upside, Les Ateliers de la Maille, Yellow Corner, Hier pour Demain, Aridza Bross, L'objet, Camper, Monic, Majestic filatures, Home, Guerlain, American Vintage, Swatch, L'occitane en Provence, Metal pointus, Cécile & Jeanne, Solaris, Jo Malone London, Autour du Monde, BGN, Eva Tralala, Ekyog, Satellite, Aventure, Spontini, Princesse Tam-Tam, La Chaise Longue, Pandora, ba&sh, Maje, Aubade, Comptoir des Cotonniers, Gérard Darel, Les Petites..., Nicolas, Claudie Pierlot, mellow yellow, Biscotte, Chattawak, Esteban, Muji, Muji, Zadig&Voltaire, Marionnaud, Fragonard, April may, Les Bourgeoises, Antoine&Lili, Waldone, Destock, Amorino, Grolle, SFR, Proxy market, G20, G20, ACZ, Air France, Gold Foot, Oprah Paris, Vintage Story 66, Cabinet J. Raimon, épicerie ledru, ASVS Alarme Auto-surveillance, Cordonnerie, Futur Transactions, Féerie du bain, Vins et Saveurs, Roche bobois, Immobilière des Arcades, Royal Tabac, Ceprima, Fred coiffure, L'empereur chemisier, Jp Champroux, Roche bobois, Roche bobois, Ma Cave, Picard, Le Pain d'Autrefois, avas-voyage.com, Carrefour Express, Coiffure Bel Hair, GlobaeroShop, Mephisto, Tabac Saint-Mandé Presse, Boutique SNCF des Olympiades, Dunes Traiteur, France Archerie, Franprix, ImmoSoult, ZM Coiffure, Le Pain des Lys, La flûte Gana, Colisée Gourmet, La fabrique de lunettes, Picard, Maraîcher, Plaisir d'équiThé, A première vue, Salle de bain et design, Kiabi, Moulin Rory, Nicolas, Le Repaire de Bacchus, Jouannault, Franprix, Etoile nails, Claudie Fleurs, L'univer Informatique, La Bichonnerie, Rio Brazil, NSS Auto, 1001 piles, Franprix, MSL, Boucherie Samiry, Coiffeur Parisien, Alimentation Générale, L'olifant, Franprix, Librairie Papeterie Presse, Franprix, Net Pressing, Coiffure Karim, Boucherie Inara, MotoscootKB, Hédonie, Eurotribal, La Clinique du scooter, La Bicyclette Électrique, La Boulange Ve, Maryline, Sud Tunisien, Celio*, Artisan Boulanger, Aux Péchés Normands BIO, La Fournée d'Augustine, Amorin0, Le bon Panneton, Eram, Lynn Adler, ID elle, Marionnaud, Cousin, JD, Jean Fernand, Maison de la Presse, Zola Color, Picard, Imprimerie Beaugrenelle, LDLC, Franprix, Macway, Chine store - 新今日超市, La Civette Dorée, Leader Price Express, La Treille D'Or, Retoucherie Etoile Saint-Jacques, Sélection de la Mode, Tendance, Giovanni, Boulangerie, Passage Bleu, Passage Bleu, Micromania, Générale d'Optique, Boutique Orange, Pressing, Leurelor, Carrefour City, Terroir d'Auvergne, Linge de maison, Jean-Claude Biguine, Le Coin des Marques, Gill's, JMS Optique, Bergamote et Chocolats, Le Coin des Marques - Hommes, Nota Bene, Atmosphère, Dister, Librairie Gallimard, betino's record shop, Votre Marché, Benny, Au petit Versailles du Marais, G20, Patisserie Bonjour - 你好, G20, Ryad, vacant, Promod, Bata, Camaïeu, Casa, Celio, Eden, France Loisir, Joffo, Marceline, Marionnaud, Nation Literie, Tati Or, Go Sport, Maine Fleurs, 5 à Sec, ChocoLatitudes, Fanfan, Peintures de Paris, Picard, Alain Afflelou, Brulerie des Gobelins, Peugeot, Aux Quatre Saisons, Carrefour express, Au Blé d'or, Le Chant du Pain, Antoine & Lili, Bel Air, Berenice, COS, Carréblanc, Coccinelle, Cocoon, Colin Régis, Cotélac, Dans le noir, Free Lance, Fleurs de Rhum, Foie Gras Luxe, HO+X, Istella forest, JONAK, Laforêt, Lola Keim, MAX & Co., Marithé François GIRBAUD, Optic 2000, REDSKINS, REPLAY, Richard Gampel, Un amour de Lingerie, Wine Sitting, Yaya-Store, Zadig & Voltaire, a. simon, a. simon, minelli, 50m., La maison du bouton, Franprix, Franprix, Franprix, Franprix, Leader Price, La Folie du Pain, TATI, Picard, Devos, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Vapostore, Fleurs en couleur, De Lucia, Chateaunet, AlterSmoke, AlterSmoke, AlterSmoke, Ecig & Zen, Chocolat De Neuville, Cigartex, Clop' Stop, Coin des Affaires, Mobalpa, clean, Babies "R" Us, Sephora, Jean Louis David, Monceau Fleurs, Savane, monop', Copilote, Le plaisir de la marche, Tabac de l'Est, Lily Valley, Hamm, Brulerie Maubert, Librairie Notre-Dame de France, Lidl, Au Chai du Chat, Pressing, Acuitis, Gérard Mulot, Optique de Seine, Vercourt, Georges Larnicol, Ocean Nails, 13 Affaires, Mefisto, L'Echoppe, Acuitis, Eram, Foncia, Gabor, Gentleman Gallery, Gigi, Générale d'Optique, Hong Lien, Isambert, Jacqueline Riu, Jean-Marc Philippe, La Vaissellerie, Micromania, Princesse Tam-Tam, Rayon d'Or, Stock Linge, Un Jour Ailleurs, Valege, Yves Dorsey, europtical, marché franprix, méo, Coton Doux, 1001 Piles, Pharmacie Coty-Issoire, Zara Home, Salon Steve, Action Bike, Boucherie Lulu, Céline Coiffure, L'Atelier Jessica, Pompes Funèbres Générales, Pressing Blanqui Service, Supérette Avenue Laumière, marché Franprix, La maison fleurie, Espace Zen et Beauté, Le Repaire de Bacchus, Au Petit Fromager, Aux Vergers de Brancion, Boucherie Brancion, Au Palais des Roses, Brico Fassy, Clean Shop, Dia, Ding-Fring, Franck Provost, Jean-Louis David, Jeff de Bruges, Krys, Maison Guénard, Paris Bonzaï, Pressing des deux Cœurs, Prim' Alleray, Tang Frères, François Priet fromager, Josy Coiffure, Aliantis Lecourbe, Proxi, marché Franprix, Électricité A. Poelger, Bazar Brancion, Marionnaud, Attirance, Muriel Labro, Le Tabarium, Drole d' Oiseau, Laverie Trevisse, motrio, Éric Nivot, Marché Franprix, Book-Off, Pages après pages, DIA, Artisan boulanger pâtissier, Banette, Krys, Nicolas, Boucherie de Charonne, Au jardin des délices, M. Bazar, Bianco Constantina, Optic 2000, Optical €r€t, Office dépôt, Naturalia, Bricolex, Bio C Bon, Mariciel, Le Panier Gourmet - Franprix, Popmarket, homies, Pressing, Duprès, Milo, Le blé royal, BH Optic, Les Jumeaux, Cam'Arine, Ronde des Pains, Marché des Saveurs, Carrefour City, Eyes, Boucherie Jacky Lesourd, Le Moulin De la vierge, À 2 Pas, Galerie Magda Danysz, Diagonal, Ulysse Discount, Souvenirs de Paris, Anoki, Symphonie florale, Gift Shop, Le Marché Franprix, Mas, L'autre Démarche, Helium, Amarante, dan exotic, Fedra Coiffure, Le Fournil, Le Duc, Les Fleurs de Bicêtre, Casino, EG Alimentation Générale, EVA, Jolie, Lissac, Optic Charron, Beretta, Diwalis, Gallerie de la Huchette, La Boulangerie de Papa, La Mémoire de Paris, Souvenir Paris Night, Starplayer, Grim'art, Daniel Montesantos, Jadis et Gourmande, Les Opticiens du Marais, Georges Larnicol, Grohe, Podologue Pedicure, La Halle, À l'Épi d'Or, Ciel, Optic2000, Lidl Olympiades, Aux Délices de Manon, La Maison du Whisky, Aliantis Porte d'Orléans, O'Clean, Bella Nails, Franprix, Foulon, Au Plaisir du Pain, Androuet Fromager, Dia, Pressing, Mac Rayan, Axel, Mobalpa, Mouss'Coif, Piaggio, André, Courir, Boulinier, Librairie des Loisirs, Bouygues, Brioche Dorée, Claire's, Côte à côte, Eram, Etam, Général d'Optique, Lewis, Minelli, Orange, Paul, Produits Basques, Promod, San Marina, Tabac de la Fontaine, Texto, The Body Shop, Valege, Le Puits Fleuri, Librairie Blanqui, Ets Dupleix Confiserie en gros, JMB Optique, La Plateforme du Batiment, Picard, Stock'shop, Dèmonia, Modern Pressing, Casa, Fleurs d'Auteuil, Espace Topper, Vival, Affaires Plus, Stock, Alixe Fougères, C & M, BMW Paris, Retouche Orchidée, BD et Compagnie, Salon de Relaxation Chen Zen, Élixir, Ongles de Star, Inside Multimedia, Centre du Bien-être Animal, Retouche tout vêtement, Coiffeur Homme, Laverie L'Eclat, Dog Shop, B&B - Bio indépendant, Abbey bookshop, Côte à côte, Nicolas, Un Monde Vegan, Dia, Garage Péripherie, Quicksilver, Nicolas, Confo Déco, Fréquence Beauté Coiffure, Unic Optic, DynaMicro, EasyConfig, MicroShop, Montgastar, Net-Ultra, Inno Micro, SCI, Xtra PC, 3DMultimedia, L'Établisienne, Superette 21, Muji, Muji, Muji, Bullez Zen, Angela C., First Clean, Optical, Marks and Spencer, Domone Coiffure, Tryba, Hackspark, Aux Caves de l'Amiral Mouchez, Charcuterie du Parc Montsouris, Boucherie Buffalo, SITIS, Isabelle et Christophe, Optical Center, Carglass, Speedy, Emeraude, JFC Duffort, games workshop, Au Levain, Colin Montrouge SAS, Volkswagen Paris Est, Carrefour Market, Les Nouveaux Robinsons, Doc'Biker, mistigriff, Le Boudoir de Joséphine, Librairie J.N. Santon, M&G Segas, L'Amoncel, L'Éclair de Génie, La Dînade, Paul, Hair Tendance, PSS, Nicolas, Le Grenier à Pain "La Fayette", Dia, Tang Frères, FM Hair, Celio, Boulangerie Patisserie, Boutique Zen, Miss Coquines, Ba&sh, Blanc des Vosges, Eden, Le Coin des Marques, Le Moulin de la Vierge, Papeterie Plume, SFR, Tome 7, DIA, Eurolav, Cyril Franck, Miroir, Retoucherie, Traiteur Italien, Carrefour Express, Boulangerie Patisserie, G20, Bricolex, Frank L., G20, Optic 2000, Fruits et légumes, Muki sushi, Kiloutou, Cogeferm, CTA Perception, Prêt à partir, Privilèges Voyages, Biocoop, Aux Pures Gourmandises, Cyprès des Fleurs, Le Grand Buffet, Votre Marché, Helmut Newcake, Movie Store, GrosBill, copie service, Prometour, Au Plaisir du Pain, Fleurs, Monoprix, Orientation Carrière, L'atelier du sourcil, Caviste, Carel, Centrale d'optique, L'Oréal, Petit bateau, Catimi, Dieleth, Arthur, Olivier Grant, Etam lingerie, Aubade, Princesse Tam-Tam, Rodier, Charles Cotonay, Sophie-flore, Nespresso, Comptoir des cotonniers, Marionnaud, Devernois, Djula, Pierre Cuvex, Madura, Fairmount, Christine Laure, Salamander, La bagagerie, Yves Thuriès Chocolat, The Kooples, La Vie claire, Firmabo, Caroll, Gants Helion, Chassagnard, Ema Piazi, Wimona, Nicolas, Gigi Chaussures, Ekyog, Concurrence Samsung, Mariage frère, Lucas Carton, Louis Pion, Odiot, Toto, Patrick Roger, Cerruti 1881, Ralph Lauren, Massimo Dutti, Maille, Tru Trussardi, Marthan Lorand, Maison de Famille, Kenzo, Orange, Marella, Alain figaret, Sephora, Fauchon, Swarovski, Yves Delore Punis, Traiteur chez Catherine, Giambattista Valli, Minelli, Promovacances, Heurgon, Petit bateau, Démocratie Prêt-à-porter, Picard, Magma, Clarks, Maronnaud, Musika, Viviane, Choc Fleurs, Guerrisol, Promotion 7, Norbert Bottier, veo shop, Copy-Top, Au Paradis du Gourmand, Le Marché d'à Côté, Ladurée, Hugo Boss, Franprix, LOXAM CITY NATION, Ecox, Prim'Market, Carrefour City, Librairie Mona Lisait, Naturalia, monop', Franprix, Mondial Pare-Brise, Superette Bisson, Nicolas, Les délices de taine, Milady, Midas, Léopold Coiffure, thai center, Van Hoods & Sons, Aux Gourmandises d'Arago, Roblot, Services Funéraires de la Ville de Paris, Festival des Pains, Mephisto, Carrefour Market, Harry Cover, Liolà, Picard Surgelés, Docteur iPhone, Cuirs et Fourrures du Front de Seine, Mon Oeil, Sandra, Europ Video & Photo Studio, Pantheone, Garage Porsche, deNeuville, Coiffure Montesantos, A. Becquerel, Boucherie des gourmets, Bilatéral, I Love Optic, Verger Saint- Paul, Mariaunnaud, Caves Saint-Antoine, 5 à sec, Au nom de la rose, Koutchi (bijoux et objets artisanaux d'Asie centrale et d'Inde), Mali, Galerie Pamyr (Asie), Galerie binôme, Artistes coiffeurs, coloristes, Elodie Cohen, Aux Comptoires du Chineur, Le cygne rose, Bien-être Saint-Paul (diététique), As'art, Inspirations, Les Neiges d'Antan, Cocci Market, Le Boulanger de Monge, Les Provinces, Les jardin d'ilham, Ditac, Chez Aude, National Exotique, Victoria, Vision Plus, Relay, Croisière, Asia market, Dia, SNCF Boutique, Burburry, Daniel Crémieux, Loiseau Aycardi, Ralph Lauren, Tag Heuer, Mercerie Au mètre à ruban, Grand Optical, Manfield, Acuitis, Gap, Celio, Nicolas, Sara Lina, Au Nom de la Rose, Chez Affaires, Cler Fleur, Kerrymara, Leader Price, Leonidas, Les Floralies, Les Halles Bosquet, Les Quatre Saisons, Mademoiselle Bio, Roger Biliebault, Valises Delsey, Anne Sémonin, Cyrillus, Le Moulin de la Vierge, Maison Bleue, Orchi Déiste, Atol, Cave des Gobelins, Lunda, Asselin, Catex, Photo-Ciné, Baechler, Prince Coiffure, Dia, Dia, Marché Franprix, Choisy Flor, Saigon Nailux, Berlutti, Bob Design, Brykalski, Ego Paris, La Boutique des Inventions, Le Chef d'Œuvre Inconnu, NATACHA PAN, Venus sur Cour, Atmosphères et Curiosités, La Petite Caverne, 5 à Sec, Géant Casino, Au Bonheur du Jour, Derya, Animal's, Pressing Sarrette, Yada & AJ, Pressing, Polo, La Maison du Convertible, Mondial griff.com, Nicolas, Opticien des Gobelins, Redken, Rochebobois, Scott & Fox, Stock André, Yuka, L'Étoile des Gobelins, Papeterie des Gobelins, Chic Life, G20, Picard, Les Chics de Claire, Tiffany & Co, Optical plus, Pharmacie Voltaire-Dumas, Cartier, Joséphine Bakery, Paul, Petit Marché, Autovision, Modern Coiffure, Citroën Félix Faure, Pomi, Boucherie Laurent Vincent, Fromagerie Androuet, Karl Marc John, Culture of Color Nail Bar, L'Occitane en Provence, Boucherie J. Bellenfant, Oliviers & Co, Le 137, Poissonnerie Saint-Médard, Marchand de couleurs, La Fromagerie, Le Marché Franprix, Maison Morange, Picard, Fromagerie Beilleverre, Pomi Halles Mouffetard, Boucherie Saint-Médard, Les Chants de Blé, Jeff de Bruges, Nicolas, Pacific Prêt-à-porter féminin, Poissonnerie Quoniam, Brûlerie des Ternes, Marionnaud, Pierre Champion, Nicolsen Chocolatier, Le Repaire de Bacchus, de Neuville Chocolatier, Fée des Lilas, Moeti, Anoki, Patrick Véron - Fromager indépendant, Les Petites Parisiennes, Zinc de Fleurs, Rose & Charles, 5 à Sec, Dammann Frères, Tavernier, Or'in, Sherpa, Kin, Naturalia, Mococha Chocolatier, Rapid Clés, Chromatic, Nina Kendosa, Optique Lentilles de Contact, Les Précieuses de M., Modyline, Accessorie's, Vade Retro, Chromatic, Phil Defer, Ultra Orange, Hanuman, L'Autre Thé, Joker, Boutique des Cahiers, Loding, Rose & Rouge, Delitaly, Eglantine, La Maison de Ville, Les Fromages de Raphaële, Daly Coiffure, Amaryllis, B. Leduc, Biguine, Carline, Carnaval des Affaires, Cartridge World, Celianthe Medus, Clean Express, Conversons, Diane Selliers Éditeur, Eric C., La Panetière, LiliPuce, Nicolas, Pressing, Retoucheur Qualifié, Telecom, Timbres Monnaies, La Réserve des Arts, Father & Sons, Paul QUAI, La Pâtisserie, Bcbgmaxazria, C&A, Lucie Saint-Clair, Marionnaud, MinaPoe, Optique de la Madeleine, Point Vision Plus, Zwilling JA Henckels, Anna Marchetti, Camille Albane, Cyclable 12e, Alain Choukroun - Haute-Fidélité, Franprix, Optic2000, La Tradition, Boucherie Brancion, Vans, Selectprimeur, Pompes Funèbres Générales, Le Bercy, Flash Mode, Art Fleurs et Nature, France Liquide, Funny'Hair, Pooupies Valley, Midas, Rinachento, Androuet, Galerie Endora, Un deux trois, Edelweiss, Etam, Parashop, Madlyne, Tab, Orchestra, Sergent Major, eclop, René Coudari, Bréal, Caprices d'Antin, Stradivarius, Gigi, Catherine Gérard, Optic 2000, Morgan, Eurodif, Calzedonia, La Chausseria, Empire du Mariage, Sinéquanone, Carys, Shirley, Lola Jones, Maracamicie, Copy Self, Valege, Antonelle, Narda, Me, Optic d'Antin, Du pareil au même, Sephora, C ma vision, Nicolas, Miss Bolsos, Tradition des Vosges, Jeff de Bruges, Shangaï, Reality Pear, Franprix, Première Pression Provence, Games, Orange, Santiago, La Vie du Rail, Tivoli, Le Petit Marché, Les Jardins de Provence, Nicolas, Cycles Sport Urbain, Bioline, Camille Albane, Mottier, Opticien d'exeption, Proxi, Carrefour, Darty, Garage Raspail, Esthetic Center, La Compagnie de l'Optique, La Halle, Monbilier Center, Passion Scooter, www.dorel.fr, Urgence Mac, Bulthaup, Franprix, Au royaume du pain, Boucherie Malitourne, Boulangerie, Caviste, Délices Viandes, Huit à 8, Bio c Bon, Alternative Bike, La Trésorerie, Boucherie musulmane, Mini-Market, Mayette Magie Moderne, Pierre Brunet, Alimentation générale, Archives Mini-Market, The Kooples, Le Gay Choc, Bon app !, Torréfaction Guiraud, Sans Commentaire...Ou Avec, Trader, Sat.Elite Games (Playstation), Maxxi Games, Square Games, Stock Games, Play, Fun, Games, Jacques Dessange, Le Dilettante, Boucherie Chevy, Boucherie Brossard, Cave Peret, Fromagerie Vacroux & Fils, Planet Fruits, La Maison du Bain, En privé, Lidl, Jaqk, Boutique ephemere, Pains & Friandises, Bouygues Telecom, La Bonne Managere, Brossard, Daguerre Marée, Nicolas, La Pyramide du prince, Coiffure, Armonia C, 8 à Huit, Service Audi Occasion Plus, Tabac Le Drugstore, Audi Aliantis Trocadero Service Après-Vente, Beryte, épicerie orientale, Mercedes Benz, Six pieds trois pouces, Gossip City, Swish, New Season, SNCF, Famille Mary, ChicOptic, Leonidas, Paradis des Fruits, Le Pain Au Naturel, Superette, Franprix, Le Repaire De Bacchus, Point Fleurs, Paris Store, Carrosserie du centre, I Love My Blender, Ines et Waho, Ripaille, Clin d'oeil, Point Fort Fichet, Point Laverie, La coifiere, Retoucherie et repassage, tangOpium, Aba Serrurerie, 8 a Huit, Epicerie de l'Orient, First Optique, Mozaik Coiffure, Tchip, Kayen, Mélodies Graphiques, La civette du parc, Institut du parc, Pressing du parc, Laverie du parc, ADR Assistance, Assive, Jc Keller, Picard Surgeles, Naouri Market, Boulangerie Ricquer, Nouez-moi - Linge de maison, Naturalia, Maison de The Theodor, Coiffure Martine, Institut 26, Au jardin des Sablons, Boucherie Picard, Jean Claude Biguine, Thevenin, G20, La Tour Câline, Espace Zen, Franprix, Patisserie, Bières Cultes, Laurent Duchêne, Image Photo Express, La caverne aux pains, Le Petit Fumeur, Paris Affaires, Nicolaï, Au Nom de la Rose, L'essentiel, Le pain du faubourg, Boulangerie Estaëlle, Epicerie du plateau, Opti'miste, Contini, Artibat, New Lifting, Coiffure ADS, Passion chocolat, Ecologie 2000, Lara Coiffure, Opticien Ness, Tabac, Achat or et diamants, Tendance secret, Cactus & Maison-Cado, Alexis, Bel Air, Jeff de Bruges, Cariel, Sultana, La malleterie, Bijouterie Noah, SFR, Bouygues Telecom, Le coin des marques, Yan & Van Hairdressing, Du Pareil au meme, Marionnaud, Ludo Primeurs, MC Boutique, Orange, Optical Service O+, Karl Marc John, Monoprix, Sarko Chaussures, Ethan'Or, Tabac, Optique Secretan, Generation Z Enfant, Franprix, Supermarché G20, Gosselin, Librairie Julliard, Tartine et Chocolat, Knoll International France, Havas Voyages, Christine Laure, Devernois, Espace Alesia, Valege, matinbleus, 123, L'autre vue, Le Nôtre, Picard, elan nature, Café Coton, La Carpe, La Maroquinerie Parisienne, Madura, Paul, Saint-James Madeleine, André, Obrey, L'Atelier 14, La Corbeille Daudet, Pabois, Café Pouchkine, Fnac Gare Montparnasse, franprix, L'Atelier, Elegance Coiffure, Golden Delices, G&M Chaussures, Ets Andre pere & fils, Boutique Chez Papa, L'Argilerie, Labo Photo Numérique, Orange, Les gueules de Lou, SARL Fangyuan, Galerie du Roi, Carole Beaute, Clop' Story, Amplifon - Solutions auditives, Vins & huiles d'olive de France, Les intondables, L'optique du parc, Bricorama, Axel Fleurs, Elisa boutique, Librairie Polonaise, Animalis, Bercy Village, Boardriders, Club Med' - Voyage, Dammann' Frère, Eric Kayser, Fnac, Fragonnard, Loisirs et Création, Nature & Découvertes, Nicolas, Partie de Campagne, Sephora, Cash Express, L'optique du parc, RS Location, Picard Surgeles, Benichon, Bella Minceur, Pressing Pyrenees, Copy Bolivar, La cour des miracles, Eurostore, Sarah bijoux, Cosm' up, A nous les marques, Abz optique, Place des marques, Botzaris Gourmet, Baradji Tresse, HB Coiffure, France Comores Voyages, Atelier Ness, Les alizes opticiens, Cosmetique afro et mediterraneen, Ma relookeuse, Royal Price, Adöm, Adöm, Garage Rebeval, Chapeau Melon, Dekra Controle technique automobile, Europaorp, Francine Maraut, L'Échoppe Marine, Nicolas, Saisons, Jardin aux 4 saisons, Dany Cash, Martel Bricolage, Prestige Coiffure, L'eden des bebes, Body' Minute, Raja Bazar, La coiffure au naturel, No smoking, Marchandes de couleurs, Degrif des stocks, Boulangerie Patistory, Degrif des stocks, Opti' Claire, Pressing, Jialy's, Christian Brice coiffure, Saveurs d'Italie, Boucherie Leclerc Carboell, Boucherie Cambronne, L'Angle, Naturalia, Dia, Picard, Volkswagen, Toyota, La Truffe Noire, Loterie - Café les favorites, Franprix, Nicolas, monop', La petitte Rockette, La caverne du bricolo.com, Au dela du PC, Optic' all Avenue, Salon de massage thailandais Jia Jia, Coiff 19, Satelex Services, Saniz, Saniz, Leader Price, Autovision, La rose des vents, Pressing Uni-Press, Delphine Store, Les gentlemen du demenagement, Miss Divina, Point Fort Fichet, Maison Hilaire, The Kooples, Comme ça, Nicolas, Marie-Hélène Coiffure, Esthetic Beaute, L'auto jaune, Globe-Depann, Jean-Claude Biguine, Annick Goutal, Carrefour Express, L'Appartement, 5 à Sec, Jad voyages, Pompes Funèbres de la Communauté Juive, Epicerie Sarah, Naouri city, Frankodech, Renault, Yarden, Andre Krief, Agence de voyages Hanna Tours, M&L, Seat, Au Jardin de Lutece, Boucherie de la Place Monge, Pascal Pinaud, Poissonnerie Monge, Sapori d'Italia, Vin et Whisky, Au Jardin de Lutece, Poissonnerie Monge, Sapori d'Italia, Vin et Whisky, Leban Jacques, Les Halles de Cambronne, Poissonnerie Etelloise, Primeur fruits, Laverie Libre, Boucherie Pinel, Couleurs de Tollens, Dia, Elite Coiffure, Toutconfort, Librairie de l'Orient, Bedi Thomas, Picard, Le Fournil de Kuss, Naturalia, Mini-Market, Le Passé Composé, La Boulangerie, Mademoiselle Bambû, Mademoiselle Montmartre, Miss Cupcake, See Non Optic, Concorde, Franprix, L'Occitane, Naturenville, Leather & Rubber, Paris Touch, Paris Smile Souvenirs, Ryhana Souvenirs, Dia, Franprix, King Meubles, Beaute & Liss, Des etendues, Pollen, Minowa Concept, Pataluna, L'atelier de la Vilette, Why not, L'epicerie du 4, L'embellie Design, Serrurerie des Buttes Chaumont, Emporio Armani, L'Orientale, La Croquandise, Padd, Waseng, Pianos International, Alimentation, Clos de Lias, Fillles de saison, Krisco, Velos et bicyclettes, Antica Box, Mon epicerie, La petite maison dans la villette, Le dragon savant, Le comptoir, Yves Mugnier, Luce coiffure, La boutique du caban, Yarden Gel, Optic 2000, Cyber Espace, Hair & Nails, Heracles, La Générale D'Optique, Renaissance, Pomme d'amour, Pompes funebres musulmanes, LN & Cie, SAV, Carrosserie de l'Adour, L'atelier Toucha services, Les mains savantes, Espace France Asie - Salon de Massage Thaï, Boutique Marathon, Kam's Coiffure, Beauty Ambassade, Est'air Voyages, Le boudoir du regard, In Bar, Pompes funebres nouvelles, A.G.E., Assitance Bati Services, Nina Meubles & Deco, La grange aux pains, Tele-Pop-Musik, L'avenue des bebes, Le XXV, natalmarket.com, Chez Max, Blanchisserie blanc bleu, KA International, LBSA Laboratoire, Fleurs, fruits, feuillages, Boulangerie Malineau, Perene, Abat-jour, Lovely Spa, Bulthaup, Laboratoire auditif Anthony Athuil, Franklin optique, Le soleil de Franklin, Fit & Slim, Antiquites, Bioline, Livres anciens, Lagonda, Laurence Tavernier, Photocopie, Jean-Louis David, Di-Castri, G20, La Cinquième Saison, Laverie Eclat, Le Monde, Cyber Kaliam bazar, Saint-Maclou, www.novaliterie.fr, Elegance Coiffure, Le bon coin, Tabi-Dov' Imprim, Kiloutou, Marie France Pret a porter, Lav & Go, Bangla Trade International, Ades motos, Villette coiffure, Boucherie Sodivillette, Cathay Voyages, Bio Belle-Ville, Coiffure Alice, Compagnie franco-asiatique de voyages, Serrurerie depannages, La plateforme du batiment compact, Anexo, Supermarche de Stalingrad, Etoile d'Afrique Voyages, Jack Boutique, A&M Distribution, Gouraya Music, COFI La Commerciale, Thai DVD, Chine-Asie Diffusion, La cave à Nico, Univ-Fresh, Bubble Tea, Boulangerie Patisserie, Achat or, Atol, Montgolfiere bijoux, Karpieres, Sandrell, Atout cœur, Boucherie Mezouari, Carol' voyages, Idecostore, Mes dessus dessous, Eliote 105, Boucherie La Celloise, Beauty Queen, Aux ecailles d'argent, J & 3N, Coiffure by Christian Lacout, Institut de beaute by Christian Lacout, Bouygues Telecom, Belleville primeurs, Sergent Major, Orange, Jeff de Bruges, Belleville primeurs, Invito, Boucherie bellevilloise, L'opticien du village, Minceur esthetique, Jean-Claude Biguine, Tout le monde en parle..., J Well, La delicieuse, Aux deux mille pates, Bijouterie calin'or, Love, Expert, La Halle, Boulangerie Patisserie, Le Grand Litier, Boutique Debauve et Gallais, Fuxia, Causses, Heat, Relooking, Boulangerie Patisserie, Gila presse, Vieille France, Institut de beaute Laumiere, Parfumerie Laumiere, Laumiere voyages, Les createurs opticiens, Dia, Franck Provost, Florentin, La Halle aux Chaussures, Ness Beauty, Madison, La boite a lunettes, Masha boutique, Coupe coiffe, Au marche du Jourdain, Yarden, Office Depot, Chiteau, La Chaise Longue, Archivio, Nicolas, Orange, Roganel, La Cabane du Pêcheur, Les Fées Pâtissières, Stanz, Halles du Marais, Munoz, Proxy, Dimitris, Provins, Pralus, Terroir d'Auvergne, Vision KA, Inde Authentique, espace SFR, jucadi, linvosges, KN'L, La Poupée Merveilleuse, brunomelgani, texaffaires, Free'P'Star, La Verrerie, Spontini, Boucherie du Garnd Maghreb, Garage M.C.A., Le dépot de pain de l'autre Boulange, P. Garnier, R. Fougault, Aristo, Auto Primo, Carol, Au Vieux Campeur, Au Vieux Campeur, Carrefour Market, Power Cash, Manga Story, Tronix, Sat.Elite Games (Nintendo), Sat.Elite Games (Xbox), Hobby One, Level up, Recycle Store, Game Heaven, Julice, La délicieuse, Le puits d'amour, Nicolle, Shanthi Cash & Carry, J & C, Peintres sans frontieres, A2pas, motrio, Alimentation Générale, BonPlan, France Photo, terre sauvage, C.T.R., La Flûte de Pan, La Flûte de Pan, Les lunettes de Belleville, Institut Guinot, Serrurerie bellevilloise, Body Minute, Gerard Cosme l'artisan chocolatier, SNCF La boutique, Boulangerie Patisserie Gregory Desfoux, I ♥ smoke, Votre shopping 112, Du pareil... au meme, GS Optic, Panic, Fromagerie Beaufils, Boucherie des Buttes, Boulangerie Patisserie, Caty, Mobil S, Couleur cerise, Anne Ar Breiz, deNeuville, O divin l'epicerie, Jean-Louis David, Brulerie du Jourdain, Beillevaire, Paris Saint-Bière, Serrurerie, Optic'al, Le coin des marques, Boucherie Caidi, Pressing, Franprix, C. Louise, Coriel bis..., Images & Music, Le reve de bebe, Coriel..., Lise France, Coupe coiffe, Boulangerie Patisserie, Soleil Exo, AJM, La source, Optical Shop, Electromenager hifi tv meubles, Clean pressing, Lézard Créatif, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Au Vieux Campeur, Optical Center, Sport Jeunes, Boulangerie, Eric Kayser, Bricomonge, Éric Kayser, L'Harmattan, L'Île aux Fleurs, Sizard, Boulangerie Patisserie Chocolaterie, Aux délices d'Arcueil, Les dessous d'Apollon, Les dessous d'Apollon, Monoprix, Le Globe d'Or, Cours des Halles, Picard, De Vinis Illustribus, Bazar Oriental Samiry, Terra Corsa, Cavavin Malakoff, Selena Caftan, Diarra Exotic, maintennance et dépannage informatique, Le 31, Angelo Aversa Gravures sur bois, Ground Zero, Ciclop Belleville, Le conservatoire, Sadio Bee, Atelier Rebecca Guibert, Lula Lifestyleshop, La tete dans les olives, Music Please, Chez Robert M. Smith, La cantine berlinoise, Atelier Nathalie Lemaitre, Bazar de la Villette, Hair Beauty, Salon de thé bubble, San yi, Extra Loco, Gul, Confort Meubles, Lisse Fleur, Fuu, Institut Santé Nature et Sens, Petite Pologne, Peyrole Philippe, Ege tours, Boucherie Hour Heng, Agence Franchine, L'atelier des 3 coups, Coiffure et Nature, G20, Kids Fashion, Flash Coiffure, Les Quatre saisons - 新中华商场, Sazanka, Boulangerie Patisserie, Zapa, The Body Shop, Mellow Yellow, Orange, Z Génération, 1 2 3, Franprix, Abacard, Kenka, Carrefour Express, Dewerpe-Sonique, Dr. Pierre Ricaud, Le monde de Bébé, Princesse tam.tam, Mensch, Exclusif..., Rudolph, Oliviers & Co, Dim, Etam, Bagadie, Boucherie du Square, Scissors, L'arbre à Sev, Bouygues Telecom, Sud express, Liu, Richard Nabet, Takara, Thierry 21, Kiehl's, Numericable, Somewhere, Le paradis des gourmands, Carline's, Jeff de Bruges, Côte anglaise, Ocho, Harding, Idécostore, Cigusto, MGC, Dam Dom, L'Entrepôt, Souvenirs de Paris, Galerie Mailletz, Les Métamorphoses, Tertio, Passage du Désir, Carrefour, Fragola, Shana, Descamps, Sylvie & Olivier Donné, First Optic, La Jeanerie, Le Briard, Le Repaire de Bacchus, Nicolas, Gaia, Nicolas, Sun & Beauty, Jean Louis David, La Farandole des Pains, Léonidas, Jean Louis David, L'îlot Pages, La Farandole des Pains, Léonidas, Optic 2000, Point P, Astie co, Okros Tunde, AC matière, Transflux, Maison aux Artistes - Galerie du Génie, Papeteries Sill, Tanneur & cie, Hai Kai, Loulou les ames arts, Tangara le club, Ets Schweitzer, C.O.P. Centre des objets perdus, Jerem, Optique mutualiste centre, Rock Hair, U Express, La vache dans les vignes, Graphic Design, Squatter shop, Nicolas, Jean Louis David, Kasap, Flowered by, Free Center, Au Vieux Campeur, La Ferme d'Avron, Hannael, Fleurs d'Eden, Cuirs et fourrures du front de Seine, Johnny, Carrefour City, Espace Tabac, Info Max, Media Compustar, Easy Multimedia, Estheti chien, Laverie Pressing, Mongallet 21, PL Config, Bonjour, Micro Media City, À nous les marques, Carrefour Express, Carrefour Express, Carrefour City, Carrefour City, Dia, Gaignard Millon, Bio c' Bon, Primeur Saint-Jacques, Lenôtre, Yousr, AZ, Coiffeur Perfect, newvision, Symphonie Florale, Les Tignasses, Nicolas, Dia, Picard, Nicolas, Le petit poucet, Boucherie des écoles, Interflora, GA, François Priet, Bouquet des vins, Bertothi, Portobello, Boucherie nouvelle des Pyrénées, Gastronomie du Périgord, Halles Gatines, Le Repaire de Bacchus, Miel et Nature, Paul, Trapani, Bio c'Bon, Jacques Dumont, Biguine, Buffets, Buffets, Buffets, Variations végétales, Le Vin de bohême, Bureau Vallée, Franprix, David Alexander, Proxi, Produits de la ferme, Merlan&Co, Bazar 14, Bio c' bon, Chanel, Body Minute, Chocolats etc..., Thé-Troc, Paul, Franck de Roche, M coiff, Paris Prestige Cars, Nicolas, Les gourmandises de Nathalie, Librairie Fontaine, Optic Duroc, Les Chants de Blé, Proxi, Nicolas, Pop Culture, Aga, Le Pélican, Nicolas, Folie Méricourt, Boulangerie Patisserie Chocolatier, Utopie, Doursoux, Les 5 fermes, Camaieu, Lindt, Claudie Pierlot, À l'Hair libre, Julie Coiffure, 7 avril, Tribal act, Optic 2000, Bricorama, Darty, Fnac, Librairie - Caisses, Dr Pierre Ricaud, Antoine Artisan Boulanger Pâtissier, Lidl, Le gâteau battu, Librairie 52, Garage de la Villa, Dessange Paris, Galerie Pégah, mitabaya, Camaïeu, Picard, Opoptic, Sèvres Pressing, A Fleur de Pot, Aux Délices de Sèvres, La Maison du Fromage, Au nom de la Rose, Boucherie Limousine, Bours'Or, Chocolat de Neuville, Coco Star, Comptoir de la Vaisselle, Eric Kayser, Gerlane, L'orangerie du Vieux Sèvres, La Maison de l'Optique, Laura Sokol, Marionnaud, Mr & Mme Fontaine, My Shop, Patrick Coiffure, Place des Marques, Saveur de Sèvres, Sev Voyages, Racine Carée, Mak Optique, 5 à Sec, Picard, Optic 2000, Puyricard, Librairie du Compagnonage, Kimonoya, Librairie Michèle Ignazi, Christophe Bruno, Chupi Boots, 11ème Art, First Optic, Picard, Maxi Primer, Comptoir du Désert, Épicerie fine, Uptown, Eric Kayser, Le Mille Pâtes, Le Pain Quotidien, Le verger du marais, Kitchen bazaar, Mood, Les Succulents Cactus, Act'tif, Prodromus, Deli Drop, Bleu de France, Krys, Papier tigre, Alimentation générale, L'atmosphère, monop', Sœur, Melindagloss, Ongles dynamiques, Houppette et compagnie, A La Civette, Delamain, L'Habibliothèque, Fleurs, Maison Kitsuné, Pressing du Carreau du Temple, La Halle aux Chaussures, Boutique solidaire, Ponsard, Miranda Service, AM Martinno, Boreau, Eden Flor, Jet Set Coiffure, Optic 2000, Qualite Pressing, Voyages l'Escale, Naturalia, Pharmacycle, monop', APC, bibi, Nyza, des enfants rouges, Aussialso, Swildens, Onze, Au forum du bâtiment, Salon de manucure, City-troc, Bien., Jean-Paul Hévin, Comptoir des cotonniers, Coiffure Françoise Myoho, Palmaccio, Céline Soria, bonne gueule, Helmut Lang, Swildens, Ne Sweet, Le Comptoir du Terroir, Lothmann, XO, Agnès B, Marie sixtine, Jones + Jones, Antoine et Lili, Sail bags, Anne Élisabeth, Princesse tam-tam, Manoush, Les Petites, Le coq sportif, Beaubourg 59, Shoe Bizz, coeur de rose, monop’, La fée maraboutée, Monop' daily, Piaggio, Swatch, Volvo, Body minute, Zazen, Edwin, Quincaillerie d'Alembert, Aliments Express, Tchi, Tout Pour Moi, Appel, Système-bike, Hair et eau, Optic Duroc, Thaï, Serrurerie, Habitat, Hircus, Mini Mialy, Harmony, Sam Daniel, Proxy, Vesna, Johann, Mona Market, Jack Gomme, Franprix, La boutique, à demain, Zoé Lee, La maison du Hui Na, Bien, Renault, Paul&Jo, G20, Picard, Coiffeur Gregor, Au levain d'antan, Sandro, León&Harper, Le monde sauvage, La cave, Atelier Carlier, Mike Paul, ChaCabo, Rougier et Plé, Honda, Office Depot, Go Sport, El Mïlda, Bedo, Édouard de Seine, Pressing Aquavive, RoyalCheese, Le slip français, ie, La panoplie, Weber, Mireille, Outre Mer, The north face, L'air du bain, Holy Planet, Kate Mack, Epicerie, Chez Dentelles, Bazar d'Électricité, Legallais, L'enfant lyre, Scandilodge, OCD, Le Chocolat, Chocolatier Confiseur A. Trianon, Jean Maisonneuve, Oli & Joy, Papyros, Princesse Tamtam, Sorbonne Cuir, Aux Stocks Permanents, Le Mayol, Nicolas, Nissan Exotique Marché, Franck Provost, Camille albane, Picard, BiBoViNo, Express Your Tee, Le Jardin des Délices, Franprix, Le savoyard, Wine latitude, La rubrique à bulles, Dia, Tartaix, Joop Stoop, Optical Confort, Optical Discount Vincennes, Burgbad, Monoprix, Veronique Miss, Sergent Major, trains, Triathlon Store, Forever 21, Leader Price Express, La Cave De Tolbiac, Carrefour Express, Boucherie Moderne, Harley-Davidson, Art Jingle, Monoprix, Thanksgiving, Midas, Paris souvenirs, Oliviers&co, Boulangerie-Pâtisserie, Ikebana Deco, Sephora, Tie Rack, Tie Rack, Tie Rack, Tie Rack, Tie Rack, Kenzo, Le Jacquard Français, Franprix, Le Panier de la Convention, Cycles Bogoss, Vente de Doris, Librairie Guillaume Budé - Les Belles Lettres, Librairie Portugaise & Brésilienne, Boutique de l'Histoire, Le jardin du père Lachaise, Carrefour city, Libairie Internationale, Harmattan - Video, L'Opticien, Vino Sfuso, Sarrazins, La cave d'Alexandre, Decathlon Madeleine, Le vin de ma vigne, Pressing, La presse en fêtes, Librairie Ulysse, Librairie Epsilon, Le verre volé, Leader price, Dar Meimouna, Le Verger d'Oberkampf, Le jardin fromager, Picard, HEMA, jlc, Jardin du Marais, Franprix, Chez manon, Mister Max, Closs up, Taline, De Neuville, Boucherie du marais, Copicom, Intermarché Express, The Broken Arm, Intermarché Express, Alma, Boa, Vins et Luxe, Leader Price Express, La fine moustache, Le fournil de Paris, Boatilus, Décorasol, Shanny-Shanna-Morgane, Office Dépôt, La Librairie Rouge, L'Hirondelle, Les Primeurs, Du Pareil... au Même, Libertie, Du Pareil... au Même, Sport 2000, Marionnaud, Devernois, Maiffret, Geox, Démoulin, Les Planches, Pimkie, Kiosque à Fleurs, Sephora, Alain Afflelou, Etam, Zara, Undiz, Petit Bateau, Naf Naf, Monoprix, Boucherie Place des Vosges, Bata, Marionnaud, Coccinelle, Galerie Bicêtre, Pezeril, Nacho et Compagnie, univers-sons.com, monop’, Monoprix, Naturalia, Franprix, Picard, Minelli, Dia, Kaporal 5, Le Cabanon, A 2 pas, Boucherie Volailles, Fromagerie, Pikilia, Tendresse Beauté, Les Primeurs, A la Centrale des Affaires, Coiffez Comme..., Pains Gourmands, Orange, Aldorande Apple, Franprix, Picard, La Parisienne, Jad, Verger de Paris, Monsieur Chaussure, Élysée Couture, Be Watch, La Maison du Savon de Marseille, Les Colonnes de Granit, Courir, La Montre du Marais, Sunshine, Coton Doux, Just Vap, Pramil, Manoukian, Optique Caroline Joo, Girard, Mod's Hair, Mademoiselle Bio, Moustaches, Laurent Mercadal, Bossetti, Europtical, Bionat, La Compagnie des Hommes, La Compagnie des Perles, Pierre Caron, Kilims ADA, Coiffure Magique, Elle & Lui, Parfumerie Enelle, La Bulle de Sérénité, Lav'Club, Angélique et Nicolas, May, Dutot Pressing, Paris Terroirs, Joe-san, Franprix, Proxy, Dollhouse, Bouquet's, Papeterie du Dôme, Bucherer, Frank Provost, Librairie Théâtrale, Carrefour City, Club Bouygues Telecom, Nocibé, La petite épicerie, Evolution, ArmorLux, Salon59, Aux délices du moulin, Nomadeshop, Carrefour Market, La Bellevilloise, Autos-Store, Viksen, Charme d'Orient, Franprix nano, Cyclable, Popelini, Le pain quotidien, P'tit Pains et Gourmandises, Ammy, Le Ballotin des Créateurs, Geox, Bata, Body Shop, Brioche Dorée, Mmmozza, Bontemps, Liberté, Ambiance Coiffure, Clair Pressing, K par K, Naturalia, Office Depot, Franprix, Passion Beauté, G20, Supermarché Bonjour - 新温州超市, Polyglotte, H2O Coiffure, A l'heure mauve, À Tout Charme, Le Haut du Pavé, Paris des Rêves, Rose for You, Reflets de Lutèce, Pays de Poche, Les Galeries Zelkova, Le Chat Huant, Le Chat Huant, Les Galeries Zelkova, Avenirland, Lucie Saint-Clair, Monoprix, L'Iris noir, RMA coiffeur, La Cave des Papilles, Valette, La Halle, Mistigriff, parquet-carrelage.com, Mr Bricolage, Simax Beauty, Eleven Street, Le Marché d'À Côté, Boucherie Imazighen, Flavie, Télé Paris Vidéo, Coopérative alimentaire de la Goutte d’Or, Avicenne, La squadra, Côté Temple, Danyberd, Frank Arnault, amplifon, Yves Gratis, Belle aux bouts des ongles, Au petit salon, Brin d'esprit, Ibrahim, Le Pélican, Naturalia, Faubourg Saint-Martins Fleurs & Bougies, LMDW Fine Spirits, JHIN, Le Colomberie, Nani, Biocoop Belleville en Bio, Festival des pains, Jaks multimedia, Boucherie Henrino, King star, Liane, La Bagette Dorée, Chez Giovanni et Giovanna, Krys, Orange, Monceau fleurs, Boucherie du Limousin, Calzedonia, SFR, TaVu lesprix.com, Elie Eliakim, Pulp's Comics, Pulp's Tees, Pulp's Toys, Diagonal, The Art Cafe, Ami, Leader price, Oxyde, MR, Sylvine, Élévation, Sonia Rykiel, Soif d'ailleurs, K.way, Electic, Le fiacre, Ecolopressing, Alis Informatique, bois violette, SFR, Le Comptoir Seigneurie Gauthier, Level One Informatique, Bonobo, Lana Coiffure, Fine l'épicerie, Comics Records, Galerie Rouan, Tout, Autour du Pain, Cocci Market, Mogador, Les bonnes copines, Herboristerie, Exaltation, Black bird, Prana, Blanche montagne, 13 bonaparte, Tchilo, Poppy, the alphabet, Optical Discount, Le Pavillon aux Fleurs, Coiffeur, Brossette Sanitaire, Service cabine internet, U, Lemaire, Royalcheese, American apparel, APC, L'artisan joaillier, Zadig & Voltaire, Biocoop, Mariam B, Mora, Atsuko Matano, Hasting, Club Bouygues, Magic Flowers, Porcelaines M.P. Samie, La Libreria, La Dimension Fantastique, Parisylla, Bocage, Le monde de bébé, A la pointe, Carrefour express, Caroll, Zara, Bershka, Celio, H&M, Gap, Huygens, Diesel, Mango, Desigual, Camper, Ikks, Aldo, Quicksilver, Minelli, Jennyfer, Nafnaf, Promod, Bocage, H&M, Zara, Mango, intimissimi, Broche dorée, Etam lingerie, Oysho, Bocage, Eleven Paris, MBM, Éric Bompard, Maje, Adolfo Domínguez, Eram, Yves Rocher, Mini Market, Giant Paris 12, Just Prix, Comme en Pologne, ZAK Retouche, Boucherie d'Agadir, Espace SFR, Gringo, Geste ta coiffure, Yanis B, Sniper Shop, Safa Voyage, Balagne, Réservoir Shoes, Chaussures 15, Ferry, David, Au Franc Bénéfice, Au Vieux Campeur, Massimo Boni, Moni Store, Cousines Création, Gold et Bijoux, Boutique Z, Clazedonia, L'Epi d'Or de Clichy, Nary Mod, La divette de Clichy, Camaïeu, Service Optique, Classique Paris, Caillou 2000, La Diligence, Optical Discount, Gringo, Guerrisol, J. Mossis, Record, Delaveine, Saga des marques, Sapiens, Mille Bijoux, L'Œil du Huit, Jean Louis David, Optic 2000, Optic 2000, Gina Gino, Darty, Naturalia, Vanille et Chocolat, Institut de beauté, Institut de beauté, shain coiffure pour homme, Le bon petit Diable, Carrefour Express, Thusi Cash & Carry, Franprix Nano, Meubleland, Regard'Arcueil, Épicerie Laplace, Flash, Atlas, Express Market, Tommy Hilfiger, Lacoste, Aigle, Gap, Poxi, Manfield, Ikks, Zadig et Voltaire, Desigual, Intermarché, Boulangerie Mariel, TY-COFF, Vaysse Pneus, G20, La Vache Noire, Centre Chopin, Cendrillon Chaussure, G20, Optical Discount, Sunshine, Valéry Lacroix, PFG - Services Funéraires, Rinnecker, Access Corlet, Agadipain, Atelier de coiffure by Claudia, Au bout du champ, Bunny Ongles-Nails, Deri Prix, Eva Nails, Jenny & Paola, Kit à plaire, Miss Sugar Cane, Must Optic, Question de goût, Barbier Pompes Funèbres, Montrouge Fleurs, Boulangerie Gontrand Chérier, Les maronites, Letmeknow, Valentine Gauthier, Comptoir des Catacombes, La Mie Câline, A2 Pas, Marc Aurel Opticiens, Amorino, Exofrais, J'adore, Chaussures Babette, Optique Montparnasse, Le Sphinx, Dia, Picard, Mondial Moquette, Speedy, Tou'Pneus, Au Délice Lecourbe, Gilles Verot, Maison Lallement, Margaret Howell, Pressing 32, Optic Pour Tous, Leonidas, Christophe Dunoyer, Image, Boulangerie Moderne, Librairie des Petits Platons, Proxi, Claudie Pierlot, Orange, Diwali, Soufflot Optique, Librairie Duchemin, Librairie Lgdj, Dubois, Ma Librairie de Droit, La Cave à Bulles, La Moustache Blanche, Caroll, Office depot, Boulangerie Patisserie, Audi Bauer, Blouet, Collet, Éric Kayser, Danyberd, Point de Vue, Picard, Coriolan, Loding, Bruce Fields, Méric Chaussures, Dégrif des Stocks, Patrick Augustin, Mangas, Bexley.com, Vicomte A., Le Bonhomme de Bois, Styl'Net, Albert Ménès, Pierre Hermé, Cadolle, Picard, Muji, Barbara Bui, Noriem, Carré d'Artistes, Apple Store, Grand Optical, Évolution, Fragonard, Jean-Claude Biguine, Super Market, Beauté Bazaar, The North Face, Who are you, Anne Fontaine, Agatha, Thomas, Commune de Paris, Paris Baguette, Dammann Frères, L'Héritier du Temps, Selectour Afat, Cèdre Rouge, Saco, Casa Design, Tricobel, BoConcept, Inside 75, Optic Land, Inside 75, Bobby Pins, A 2 Pas, Darty, Fnac, Ryna, L'Atelier, Arnaud Marie, Flexa, La Perruche Bleue, L'Oisellerie du Pont Neuf, La Compagnie du Lit, La Boutique, Perspectives, Suzuki Beaugrenelle rive gauche, Electromust.com, Monop', Jicara Chocolat, La cave se rebiffe, Atec France, Weill Stock, G20, Maison Gosselin, Monop beauty, Orange, Copy-Top, Culture Vélo Paris 12ème, Florent coiffure, Au Billot des Halles, La Petite Cagette, Bio C'Bon, Timberland, Afwosh, Arthur Joaillier, Ata, Bienvenue, Bio C Bon, Bruno, Candy, Carré Voyage, Ceda Eclairage, Cyclo de ville, Balibert, Did'Ho, Jamin Puech, L'Atelier De Pablo, La maison du sans gluten, Liliane de Matos, Lin Zen, Mekerbeche, Miss Victorya, Monop', Picard, Poppy, Shanghai Zen, Stop Papeterie, Tulipe, Épicerie générale, Planète Optic, Le terminus, Cannelle Menthe, Boucherie traditionnelle, Picard, Envi de Lire, J'aime ton goût, Persillé, Paul, Bierissime, Only Girl, Enolia, Renault Vanves Autos, Fromagerie Beaufils, Lavinia, Café Lomi, Chapitre 20, La Crèmerie, Julhès Paris, La Cave du Barav, Bières Cultes, Renault Sejac, Bieregrad, Les caves de Reuilly, Alain Afflelou, H&M, Maison Aurouze, marché franprix, Cartier, Boucheron, Lauren Vidal, Lunettes pour Tous, Palais des thés, Franprix, Le Goût des Vignes, Maison Landemaine, A2pas, Boulangerie Pearl, Nicolas, Episode, Nicolas, Le Photon des Vosges, Tam Tam dans la Ville, Micromania, La Galette des Moulins, Via Veneto, Finsbury, Rostain, Jean Thiot, Optique Alésia, Marionnaud, Karl Marc John, Simone Pérèle, Lady's Choice, Belle Demoiselle, Jean Fané, Louis Pion, Leonidas, Palais du Stylo, Miss Paris, Nicolas, Stock 149, Boucherie d'Alésia, Le Fournil d'Alésia, Zoé Photo, Raphaël Kian, Le Bonhomme de Bois, Valdino, S.B.S., Camille Albane, Zapa, Bio C' Bon, 8 à Huit, A2 Pas, Librairie Flamberge, Librairie Fiduciaire, Galerie Martel, Le Genre Urbain, Les Autruches, Supérette des Halles, 60 Rue Saint Denis, Aux Pains des Bourbons, Boucherie André, Franprix, Lav' Club, Sauveur Man, Vacant, Yves Rocher, Saint Martin Stock, Aux Arts du Deux Roues, Picard, Pressing Alaska, Hacea, Yves Rocher, Yves Rocher, Yves Rocher, Dia, Yves Rocher, Yves Rocher, Yves Rocher, Yves Rocher, Yves Rocher, Yves Rocher, Yves Rocher, Yves Rocher, Yves Rocher, Chopard, Fred Paris, Camper, La Do Ré, Blancpain, Yves Rocher, Yves Rocher, Yves Rocher, Yves Rocher, Yves Rocher, Yves Rocher, Yves Rocher, Yves Rocher, Yves Rocher, Yves Rocher, Breguet, Buccellati, Bulgari, Cartier, Chanel, Chaumet, De Grisogono, Dior, Hublot, Frey Wille, Jaeger-LeCoultre, Jaquet Droz, Korloff, Louis Vuitton, Lorenz Baumer, Martin Du Daffoy, Mellerio dits Meller, Mikimoto, Montblanc, Yves Rocher, Yves Rocher, Jean Perzel, S&P Fashion, Zoom Flight Paris, Krypton Collections, Le Bonheur, Uzo, Omega, Officine Panerai, Patek Philippe, Piaget, Holland Bikes, La haute route, Cmonpremier.com, Vival by Casino, Nicolas, Bricolage, Teinturerie, Le petit zodiaque, Bon Sahaï, Paris Lyon, Trottinette, Guayapi, Dupain, Self' Coiff, Leroy Merlin, His, L'Oranger, City Lab, Fauchon, Gulli, Boulangerie Jeanne d'Arc, Au Bar Le Surène, Anna Kaszer, Les Moulins de Rosa, Swildens, Antik Batik, Comptoir des cotonnier, Alain, Parenthèse bien-être, Laforêt, Jean, Bob Carpenter, Les Saveurs de Batignolles, Mini Market, Flor des Batignolles, Picard, La boulangerie des artistes, Art Bambou, Kami Coiffure, Mets Caprices, Nail Art Studio, Nouvelle Amitié, Pressing Shop, SITIS, Scan Chrome, Showtime, Karl Lagerfeld, Casitalia, Boucherie Limousine, franprix, chemin vert, au temps des tartines, ma bonne étoile, alimentation générale, Aire Coupe, Julien M, Xing Wang, Dia, Au Paradis du Frais, Cream, La Cave de Belleville, Optique Saint Joseph, Nicolas, André, Du Pareil au Même, Dallas, Normandie, Jeux Descartes, Josia, Hold Up, Café Coton, Gallery S. Bensimon, W3 Computer, Sprezzatura, Une Fille à Marier, Zakoya, Malone, Ken Claude, Jacques Genin, Loft, Woodfield, Mode de Vue, FC Diffusion, Des Bulles Sinon Rien, Linco Distribution, Co Dame, Les Habitués, Marché Franprix, LOL by Louisiane, De Bouche à Oreille Maison, Picard, Lacoste, Edwart, De Neuville, Bérénice, HawaiiSurf‎, Bennice, First Optic, Calzedonia, Galerie Lavayette, saines saveurs, Garage des Gobelins, Microcase, Troisfoirien, L'entracte, Chez Benoit, Alixe Fougère, Teinturerie de Luxe, Conceptua, Jet Tour Boiloris, Cyril Raimbaud Selon votre nature, Hello Stock, Calame et Parchelin, Video 13-14, Eun Hwa, Epicerie, Philovino, Monop'Daily, Super Market de la Place, Les Muses de Montmartre, Nicolas, Caractère de Cochon, Boucherie Oubouch, Dafy moto, Picard, Bookbinders Design, Monop, C'net, 5 à sec, Lick Les Halles, SECAS, Paris Cave, La Prairial, Super-AZ, Elicy Coiffure, Pressing Glacière, Alimentation Générale, Les Oiseaux Rares, Océan Indien, Arc en ciel, Beauty Queen, Home Telecom, Ambaal, Indiana Fashion, ASI Boucherie, Kamaran Silks, Jaipur Silk Palace, Mala, Beauty Queen, SP Traders, Ganesha Sweets, Balavinyagar, Shaae, Chola Voyages, New Prabha Saloon, Retoucherie Ragawa Tailor, Rio Sapna, Hot Breads, S.P. Raju, Akil, Januna fashion, Shaae, New India, Asian Fashion, Asian Sari Centre, Indian Music Centre, Indian Silk Palace, VS-CO, Sri Mahal, Mayura Coiffure, Madras Silk House, MKS Bijouterie, Vaanavil Music, Literie Malakoff, Scoop Me a Cookie, André, Vilmorin, Vilmorin, R&M American Vintage, Superhermit, Olara, Bicycl'Art, Gooday, Sri Sai RAM Sweets, Eva Travels, Dora Phone Shop, Hindi Music, Librairie opéra, Godin cheminée cuisine, orpi, Suzuki, star motors, fleur de nuit, institut de beauté, La Sirène, La Maison du Placard, Yamaha, Cascade, Pierre Hermé, IEM, Le Passage du Désir, Sie Matic, yan yan, groupe lfb, Picard, Mini mini, Conforama Pont Neuf, bonton, white bird, Renault, Bruno Melgani Coiffeur, Truffaut, La boucherie végétarienne, IO&ES, Jo Malone, Saint Honoré, Chantal Thomass, Theory, CosmoParis, Mac, Petit bateau, Zadig&Voltaire, American Apparel, Massimo Duti, Gérard Darel, Picard, l'appartement, La Jolie Garde-Robe, twins for peace, Monoprix, Miss coquines, Camaïeu, John Sutton, Bershka, Lucas sac, Darty, Carréblanc, Jennyfer, Maisons du monde, Mendal shoes, Stradivarius, H&M, Sergent major, Yves Rocher, Franck Provost, Franprix, Agence du Canal, Nicolas, Kilo Time, My Dresshair, Biozen, KGM, Souma et Christophe, Hygena, mob, Le Temple du Scooter, Sauvez le Monde des Hommes, Vivre Mobile, Kawasaki, La Crèmerie, cotton park, Leon flam, delphinepariente, Bio c' Bon, La Perlerie 22, oska, l'appart, l'Empire du marié, Junco, Helios for men, Leader Price Express, isabelle marant, finger in the nose, maje, nue 19.04, kustom tatto, Onfroy, Pressing de Coquettes, Ladurée Bonaparte, Paul, Choux d'enfer, Initial, Copytop, Color Forever, segoola, Albert, Sam Daniel, the rolling shop, imm' sud, coeur d'amour, Picard, ab plus, Déco plus parquet, eat shop, La Jurasserie Fine - épicerie des montagnes du Jura et des terroirs de France, atelier Cologne, Les Prairies de Paris, Jean Colonna, Closed, VSP, Vénéta Cucine, traction, M, Gomina, april77, Moonyounghee, Pretty Box, La Boutique Extraordinaire, Tout le Monde Bochart, L'Opticienne, La Cure Gourmande, Recto Verso, Recto Verso, Monop Daily, E-Bicycle, black rainbow, La mie câline, broox, bazar de filles, tropico, cop copine, American vintage, Coiffure, Sennelier, H&M, Optic 2000, La Mercerie Fine, Ambroise beauté, medi mode, farcyma, Plaques émaillées, Stein, Magma, princesse, kigan, La gestion locative, tattoo 13, Cowboy Dream, démocratie, La belle vie, Paillard, Le club, body minute, Ewa Lipinska, Sarahb conseil, Guiot de Bourg, ParaBeaubourg, wasted, Anne Élisabeth, Microrama, pressing Washington, M. pressing, Nicolas, Protis, Zadig & Voltaire, aritimi, body minute, maje, unisa, André, dileme, La Vaissellerie, Zor Créations, Divine, Archives Patrimoine, mackson, A+, Vision Net, Evolu'tif, Belle et Zen, Monoprix République, monop, lyna, Chambelland, Nicolas, Jean-Louis David, nana, picard, Monop, fabiola, gana, Guy Hoquet, commepiedsnus.com, Citroën, tikva, Les Domaines qui montent, century 21, ulys pately, Cosi Vas, foncia, zic& bul, sarahfleurs.fr, sitis, esthélia, Henri, optic 2000, carrefour express, sunso, joli ongle, matahati.fr, Nathalie Lemaitre, mei mei, duroc, adenya, Maison Landemaine, Samuel B, 100% scooter, La Coulée Verte, Picard, VT Cash & Carry, Velan, MD Mode, Printemps, New Sagana Coiffure, Gopal and Co Supermarché, Ayngaran Center, Sky Phone, Ilanio Mobile, Ganapathy, Sarl Maavay, Sirasa Entreprise, Tip Com Sasr, Smart, cocci market, diagonal, lumière du 12 ème, LudikBazar, Marché M, urgence scooters, Coif Image, Monceau, nail bar, Brighton, body minute, labri, Boutique Grandes Lignes, Monceau Assurances, Lapeyre, Franprix, La Clinique de l'Audition, Baje, Parapharmacie de l'Europe, Les Domaines qui Montent, Renault RRG/République, Carrefour City, Mélanie Coiffure, Camaïeu, Imprim/Relie, Hasting, Martel Immobilier, Franprix, Gaultier, Albane, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Des marques et vous, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Maty, Desigual, Okaïdi, Guess, Copy-Top, bamyan, century 21, Gabarina, Indian Designs, Nairsaab, Thirupathy, New Karan Coiffure, Soundar Travels, Little India, Vasantham SARL, Gnannama's Silks, Sabrina, Mohan Jewellery Mart, Mantaly Tex, Eric Coiffure, Yves Rocher, Carrefour Express, Nicolas, La Bibiliothèque des Marques, Galerie MathGoth, Fil'O'Fromage, PSG, Maison Georges Larnicol, Beauté du Sacré-Coeur, Boucherie de la Paix, 8 à huit, Dam Boutons, Lav Speed, Oliya, Mieux-Etre, OS +, Ideal Optic, Ideal Optic, Korum Café, Monoprix, Size-Factory, Carton, Un Look Pour Tous, Superette du 13, L'Encadreur, Diagonal, Net Copy Center, Galerie Vivienne, Passage Jouffroy, Passage Verdeau, Galerie Véro-Dodat, Spontini, Antoine & Lili, Jardins d'Afrique, Boulanger, Lovely Coiffure, Bally, Harmont & Blaine (ouverture prochaine), Omega, Le Grenier à Pain, Au fil de l'eau, A2PAS, Couleurs quincaillerie, Éric Kayser, Grenelle Fleurs, J. Coiffure, Visior Optic, Éric & Olivier Belle, Grenelle Market, Carrefour City, Antoire & Lili, Angel Mode, L'Atelier Haut Perché, Zelena, Fixie Warehouse, Vita Confort by Lapeyre, Doursau, Comptoir Zen, Rugby Corner, Oldfield, Mercerie, Atol, Jean-Claude Biguine, Lecourbe Pressing, La Belle Vue, Le Petit Salon, La Route du Thé, La Route de la Soie, Games Workshop, Tabac Saint-Michel, Tcha Tcha, Gibert Jeune, Aaapoum Bapoum, Maximilien, Masmoudi, Optical Discount, M•A•C, Phuong Telecom, Boucherie Phnom Penh, L'Univers de Léo, Coffeur, Sabon, Redskins, Fred Perry, Le Creuset, Suncoo, Diasporama, Muriciano, Cecile Jeanne, Kookai, Ikks Men, Heroines, Rene Dehry, Crea, Michel Cluizel, Bel Air, Eden, Eleven, Marcel et Marcel, Sweet Pants, Damyel, Millet, Alain Mikil, Zadig & Voltaire, Minelli, Annick Goutal, Zapa, Adidas, Suite.341, Vilebrequin, Poles, Ikks Women, Les Temps des Cerises & Japan Rags, El Ganso, Cecile Jeanne, Moleskin, La Boutique Ephemere du Marais, Durance, Shana, Lord Fools, Planisphere, Bouchepie, Jonathan, Believe, All Saints, Art 25, Laverie, Sacha Finkelstein, Korcarz, The Kooples, Scotch & Soda, Kusumi, Nara Camice, Chir Hadach, Laverie libre service S.B.D., Fram, Jet Tours, Jeff de Bruges, Marionnaud, En Qu4tre, Alain Afflelou, Optic 2000, Entrevue, Aux Merveilleux, Beillevaire, Dessange, Espace Topper, L'Artisan des gourmands, Espace Topper, Havas Voyages, Escarcel, Effleurescences.fr, Dalloyau, Archea, Boulangerie Patisserie, Stobyz, Marionnaud, Mephisto, Cent une visions, 5 a Sec, Boulangerie Patisserie, Boulangerie Patisserie, Optical, Bleu coiffure, Huit à Huit, L'étoile, Au Fou Rire, La maison de la Bible, United Colors of Benetton, Naf Naf, Wooyoungmi, Caroll, Carrefour City, Speedy, Astuce color, Abeille Copie, Comptoir Correzien, Perene, Lenôtre Lecourbe, La Lucarne, Pressing des Volontaires, Point Rose, Minute Papillon, Renault, Chanez Coiffure, Sevhe, Urgence Scooters, Cela Coiffure, Miollis Multimédia & Services, Sani Z, Valege, M•A•C, Bizzbee, HEMA, Speedy, Saris, MP Gaz, Vtwin Corner, Optic Room, Nicolas, Grand Optical, Espace Beauté, Galerie Glénat, Brehat - Les Verreries, Clio Blue, Résidences, Sauvel, Atelier Jean Launay, Asian Cocooning, Carosserie Lecourbe, Regali Home, Doro, Maroquinerie Marie-Annick, Troifoirien, Studio L54, Jasmin Thai, The Eye Bar, Aise & Bien-Être, Armstrong, Griffon, Croque-Souris, Eden Lecourbe, TheWan, Bach & Bacchus, Malou Affaires, La Scarpa, Laverie Libre, Chez Violette, Monoprix, Cycles Tosi, Culture Vélo Paris 15ème, Dada, Sun, Bay Ganio, Cinemachine, Paradisiaque, Michèle B., La Marché de l'Opéra, Le Comptoir des Cotonniers, Alfred Dunhil, Massimo Dutti, Dia, Zara Home, Upper Shoes, Du Bout du Monde, Bottazzi, Marmara, Élite Optique, Styl'Net, Van Gold, Brixton, Toscane, Baloon, Armand Thierry, La Bouffarde Opéra, Izac, L'Open Tour, Optic'Aventure, Créations d'Ici et d'Ailleurs, Poiray, C&A, Espressamente, Maison Plisson, O' Délices, Le Destin d'une Fleur, Camaïeu, Hygena, Mim, What For, Stella Luna, What For, Stella Luna, Stella Luna, Bocage, Olivier Pancer, BSC, I ♥ Optic, Automobiles Champs Élysée, Diagonal, Loding, Marché Berri, Le Marché d'à côté, Mario Dessuti, F. Léage, Maison Lendemaine, Le Point de Wu, Bienvenue chez Filou et Chipie, Illel, Darjeeling, Lead Guitar, Le Nid - Cocon Ludique, Pier Import, Decathlon Paris Rive Gauche, Decathlon, Allo Vélo, Une pièce en Plus, Le Bail, Librairie Allemande, Franprix, Hoche pressing, Midoré, Librairie Tropiques, Boutique de vélos hollandais, Coiffure Berri, Diego, La Financière des Victoires, Saint-Honoré Market, Top Proteine, Sport System, Hygena, Marionnaud, Dinh Van, Lacoste, Eric Bompard, Omega, Institut de Beauté Chaillot, Chaillot Coiffure, Lucie Saint-Clair, Agnès B., Librairie Presse du Trocadéro, F and JM, Pressing 17, Claude Quinquaud, Chaillot Beauté, Confiserie Saint Pierre, G20, Mi Do Ré, Audioptic, Chaillot Pressing, Malitourne, Nicolas Villani, Frédéric Coiffure, Nicolas, L'Artisan Lafayette, Maroquinerie Lafayette, Vivre Mobile, Stena, Comptoirs Richard, Le Damier de l'Opéra, Naturalia, Bruno Saint Hilaire, Alimentation Générale, Les nouveaux Robinson, Arena, Franprix, Nespresso, La Bicyclette, Benetton, Lafayette 166, Bel Chou's, Laverie, Bobe Kai, Christian Gilles, Alain Afflelou, Jaune & Rouge, Bière Bodoma, Levi's, Dr. Martens, Franprix, Carrefour Express, Girard Sudron et Cie, Altermundi, Guy Degrenne, Pierre Hermé, E. Kayser, Le Kennedy, Aramisauto Paris, Lueurs d'Afrique, Mega Smoke, Miss Bolsos, Games Workshop, Les Fruits de la Reine, G20, Galerie Bicêtre, La Baguetterie, Jeff de Bruges, Marionnaud, Alain Afflelou, Massimo Duti, Petit bateau, Biocoop, Naturalia, Guidon pompes funèbres, Services Funéraires, Cours des halles, Tranauto, FMBIO, La tête dans le fromage, BathBazaar, Fabriquant paris, Fabricants Paris, La Mie de Pain, Hippy Market, Shangri-La, Kam House, Greffeuille Aveyron, Ylinne, Delaveine, Pattes à Strass, Unishop, L'Opticien, Richard Fhal, Chez Meunier, 2plumes, L'Ongle Fantastic, Totem, Linda, Girls Nails Bar, Maquis Megastore, Avanez, Boutonnerie Saint-Denis, Le Coiffman, Biocoop, Angelo Capelli, Jamini, Atelier Couronnes, Atelier de l'Eclair, Le vélo volant, Orange, Mauvaise Herbe, Hana Food, Simply Market, Piano Center, La Bovida, Kaetsu, Epiderm Institut, Swatch, Little Cosy, Bala Boosté, Monsieur Pierre, D'Un Livre L'Autre, Imany, Emmaüs Boutique, Some Hommes, La Clinique du Smartphone, Loft Design By…, Fierman, Folie's Angel, Optic Light Network, Aime la Coiffure, Titia's Hair, Lord Travel, Votre Marché, Moda.Mia, Al Shoes, Atif, Aux Fleurs de France, L'Arbre Enchanté, Festival des Pains, Origine, Au Naturel, Le Village, Leader Price, Marché Saint-Germain, Maine Montparnasse, Bazar de l'Hôtel de Ville, Monoprix, Monoprix, Bières Cultes, Daisy, Galerie Nikki Diana Marquard, Renault Rive Gauche, Le Bon Marché, Beaugrenelle - Magnetic, Beaugrenelle - Panoramic, Le Damier Gourmand, La Capsule, Radical, Touba Vision, Le Panier Gourmet - Franprix, Marché Saint-Honoré, R Canelle, Harmattan, Tabac la Corona, Au Vieux Campeur, Bü, Uniqlo, Miss Manon, L'ivre d'Antan, Beaubien, Agence de l'Hôtel de ville, Universal Moto, Centre commercial Forum 20, Lapeyre, Centre commercial de la Vache Noire, The African Fashion Shop TAFS, Saint-Quentin Radio, Monoprix, La Procure, Galerie J. Kugel, Picard, Franprix, G20, U Express, Selectronic, Franprix, casino, Lancôme, Cartier, Chanel, René Caovilla, Valentino & Roger Vivier, Berluti, Moncler, Façonnable, Officine Panerai, Dolce & Gabbana, Paul Smith, Startore, Lanvin, Massimmo Duti, Vertu, The Kooples - Ralph Lauren, Marina Rinaldi, Ladurée, Leonard, Coiff1rst, blumarine, blugirl, bally, Comme des Garçons, Moschino, Salvatore Ferragamo, Hermès, Aramis, Yves Saint-Laurent, Givenchy, Boucheron, Jun Ashida, Saint-Honore Market, Pinko, Prada, Bottega Veneta, Gucci, Saint-Honore Market, Gucci, Lanvin, La Perla, Au Pain Gourmand, Centre Commercial E. Leclerc, Le Bon Marché, Monoprix Alimentation, monop’, La Halle, Galeries Lafayette Haussmann, Printemps Jouet, Printemps, Printemps, Printemps, Marks & Spencer Food, L'Oeuf Chaussures, L'Oeuf, Pattes Blanches, Atelier Pivoine, Librairie Cler, Boulangerie Pichard, Garage de la Chine, Garage du Jourdain, La Girafe et la Lune, Boulangerie Patisserie, Franprix, La Truite Enchantée, Franprix, Decathlon, Dia, Franprix, Marché St Pierre - Tissus Dreyfus, Chez Raphaelle, Tati, Tati, Mr Bricolage, Carrefour Market, JVF, Centre commercial Italie 2, Centre commercial Italie 2, Carrefour City, Total, G20, Marché Franprix, L'Épi de Blé, Naturalia, Leroy Merlin, Centre Commercial Quais d'Ivry, Franprix, Monoprix, Monoprix, Simply Market, Une Souris Verte, Marché du Livre ancien et d'occasion de Paris, Franprix, La Fromagerie, Intermarché, Kiosque, Kiosque, Kiosque, 8 à Huit, Darl'Mat Malakoff, Dia, Passy Plaza, Legendre Moto Concept, Paul, Kiosque, Kiosque, Kiosque, Orange, Forum les Halles, AMG +, Darl'Mat, Centre Commercial Bercy 2, Centre commercial Liberté, Centre commercial OKABÉ, Niveau 1 : Quai, Station Service E. Leclerc, Abeille Repro, Atelier Pan Helio, La Maison du Toutou, La Reserve, Le Terroir Max, Lola Jones, Poissonnerie Blomet, S. Gloire, Séphora, Cash Express, L'Univers de Leo, Naturalia, Galerie Lafayette Voyages, Link, Librairie Flammarion Centre, Crèmerie Rochechouart, L'Atelier du Bricoleur, Beaubourg Souvenirs, PMU, Comptoir des Abbayes, Nicolas, La Banque de l'Image, Parkway, Saint Maclou, Size?, Avant Garde, Forever In, Sephora, Pearl, Decathlon, Abercrombie & Fitch, Sephora, Eva Koshka, Fruits Legumes Fleurs, Joker, La carte Chance, Rôtisserie Dufrenoy, Self Bazar, Clif, JT 26, Marco Serussi, Tabatière Odéon, Loxam City, Continental Marché, Bazar, Souvenirs de Paris, Empire Sono, Nouvelle Mode, RUSH, San Marina, Show sur Stock, 49 Street, Bazar, Boulanger Patissier, Franprix, Le Verger de Wattignies, Leonidas, Lyllou, Mercerie Gérard, Miss Tu, One Coiffure, Priscy's, So Fashion, Sylhet.com, TRD, Épicerie automatique, Marks & Spencer Food, Micromania, Retouche Shop, Laverie, Matériel Médical, Photocopie, Roc Eclerc, 1Primeur, Optical, GrosBill, Harmony Pressing, Percing Stalingrad, Percing Stalingrad, Yves Salomon, Zadig & Voltaire, Barbara Bui, Richmond, Blugirl, Arcade des Champs-Élysées, Atelier Mire, Galerie Hayasaki, Les Sismo, Metropolis, Von d'Art, La Virtuose de la Réclame, L'Astrée d'Or, Fuchsia Dentelles, Francine dentelles, Patch'World, Art Formel, Au Passe-Partout, Niou, Au Petit Bonheur la Chance, Mayerling, Limaselect, Galerie des Syrtes de Florence, Côté Cailloux, Courant Verre, H. Dalloz-Bourguignon, Galerie Bureau d'Art, Véronique André, EW, Monde Secret, Aux Trois Singes, Au Passe Partout, Au Bon Usage, L de O & Co, Au Débotté, Imag'In Air, Décor et Style, Il Giardino Segreto, Stua, Folle du Logis, Objets Trouvés, Olivia Clétienne, La Souris Verte, Des Photographies, Le Flat, Kiosque, Carrousel du Louvre, Brioche Dorée, Co & Bag, Découvrir Paris, Flo Prestige, Guichet Grandes Lignes, Guichet Île de France, Guichet Île de France, Jeff de Bruges, Pain à la Ligne, Relay, San Marina, The Body Shop, VitaminWater Station, Kiosque, La Maison des Pieds, Relay, Safran, Conforama, Croisière, Croisière, Relay, Guichets transilien, Relay, Caisses, Centre commercial Masséna 13, Felice Plus, Grand Optical, Laboratoire d’Analyses Médicales, Relay, Segafredo Zanetti, monop', Starbucks Coffee, Relay, Puro Gusto, Relay, Agence SNCF Transilien, Celio, Aigle, La Chaise Longue, Salsa, Relay, Six, Swarovski, Kiko, Promod, La Mode est à Vous, Pandora, Guess, Lacoste, Kusmi Tea, Sephora, Swatch, Venizi, Yellow Korner, Du Bruit dans la Cuisine, L'Occitane, Cordonnerie Noé, Petit Bateau, Relay, Izac, Solaris, Parfois, Paul, Passionata, Heller, Lush, Pylones, Sud Express, Yves Rocher, Devred, Foot Locker, Jack & Jones, Muji, Mephisto, Camaieu, Carrefour City, Dim, Du Pareil au Même, Esprit, Hema, Histoire d’Or, Jean-Claude Aubry Basic, Jean-Claude Aubry shopping, Jeff de Bruges, Kickers, Mary Paz, Micromania, Moleskine, Relay, The Cotton Gallery, Undiz, Mango, Pilier Nord Caisse, Boutique Grandes Lignes, Agence Transilien, Relay, Relay, Au palais des fruits, Guichet, Accessorize, Agatha, Atelier du Chocolat, Bourjois, Caroll, Celio Club, Celio, Delaveine, Didier Guérin, Fnac, Fossil, Geox, Histoire d'Or, Krys, L'Occitane, L'Occitane, Levi's, Mason Pradier, Multiples, Nature & Découvertes, Orcanta, Sephora, Sergent Major, Yves Rocher, Claire's, Cleor, Darjeeling, Gap, H&M lingerie, H&M, H&M, I Am, Jules, Kiko, Minelli, Nature & Découvertes, Pascal Coste, Tie Rack, Zara, Minelli, Sephora, Relay, Relay, San Marina, Forestland, L'Occitane, Donjon, Secrets intimes, Réserve naturelle, Yves Rocher, Moleskine, Croisière, Relay, Relay, Esprit, Eram, Numericable, Club Bouygues, Du pareil au même, Little extra, Espace de vente, Relay, Fnac, de Neuville, Galerie Berri Washington, Galerie des Champs, Glups, H & M, I ♥ Paris, L'Occitane, Maison Pradier, Minelli, Nord Sud, Paul, Promod, Roger Collomba, Scot, Étam Lingerie, Maxence, Tie Rack, Annick Goutal, Antonelli, Autoline, Cecilia Gilli, Dune, Escada, First Madison, Fnac, Furla, Galerie du Claridge, Jaqk, Lady of Rock, Mario Rossini, Mickael Zaken, Myrina, Nina Kendosa, Optical Center, Paul & Shark, Paul & Shark, Paul & Shark, Une étoile est née, Weill, Speedy, Rejoué, Darty, Darty cuisine, Marionnaud, Tati, Sacrés Coupons, Printemps +49.4099305 8.7067124 +Regard de la Roquette, Thermes de Cluny, L'enceinte de Philippe Auguste, Cavae des Arènes de Lutèce +yes +48.8652569 2.3516674, 48.8300663 2.3232285, 48.8595728 2.3896050, 48.8525398 2.3683116, 48.8513092 2.3691996, 48.8555874 2.3684232, 48.8674536 2.3536254, 48.8476495 2.3658974, 48.8459217 2.3669243, 48.8461560 2.3704219, 48.8770907 2.3512337, 48.8607606 2.3756443, 48.8649605 2.3450799, 48.8670451 2.3482613, 48.8562234 2.2750311, 48.8583046 2.2742742, 48.8594216 2.2764553, 48.8616790 2.2753896, 48.8640840 2.2768625, 48.8276899 2.3209286, 48.8629889 2.2687254, 48.8686944 2.3502259, 48.8751549 2.3379848, 48.8733432 2.3379745, 48.8661215 2.3507823, 48.8739628 2.3483713, 48.8717201 2.3371530, 48.8699489 2.3360007, 48.8728819 2.3542143, 48.8745507 2.3567836, 48.8763320 2.3353305, 48.8840331 2.3599166, 48.8634544 2.3348757, 48.8707881 2.3459106, 48.8713990 2.3457625, 48.8701667 2.3511661, 48.8626616 2.3670401, 48.8581081 2.3677623, 48.8687918 2.3397996, 48.8520874 2.3738549, 48.8404349 2.2955433, 48.8481380 2.2899628, 48.8479201 2.2842966, 48.8527419 2.2755239, 48.8573503 2.2644192, 48.8637136 2.2674578, 48.8782159 2.2992711, 48.8816564 2.3009719, 48.8733941 2.2976321, 48.8729359 2.3000303, 48.8297704 2.2755357, 48.8761730 2.2880129, 48.8746595 2.3016427, 48.8820575 2.3366575, 48.8827175 2.3362016, 48.8793895 2.3033872, 48.8811478 2.3095138, 48.8835708 2.3131759, 48.8510188 2.2724703, 48.8317250 2.3147515, 48.8396010 2.3006606, 48.8376563 2.2955961, 48.8836348 2.2952377, 48.8855813 2.2907242, 48.8859370 2.2933295, 48.8878412 2.3000818, 48.8375791 2.2579573, 48.8903781 2.3036102, 48.8870991 2.3042454, 48.8852028 2.2982227, 48.8825614 2.3090776, 48.8528489 2.2684422, 48.8498671 2.2682466, 48.8822341 2.3195753, 48.8871464 2.3144863, 48.8881291 2.3107924, 48.8881700 2.3101267, 48.8877377 2.3203217, 48.8554752 2.2703856, 48.8609664 2.2731965, 48.8513369 2.2919266, 48.8499385 2.2945842, 48.8451891 2.2620196, 48.8452685 2.2571105, 48.8386832 2.2525085, 48.8405981 2.2584000, 48.8474983 2.2684825, 48.8674490 2.2908704, 48.8569125 2.2822403, 48.8522469 2.3266487, 48.8531701 2.3263925, 48.8762160 2.3198347, 48.8759240 2.3229225, 48.8754510 2.3155141, 48.8766073 2.3132319, 48.8796223 2.3145554, 48.8809530 2.3244796, 48.8524074 2.3414445, 48.8511757 2.2845792, 48.8506511 2.2872112, 48.8448185 2.2905662, 48.8424585 2.2921723, 48.8444549 2.2939163, 48.8470897 2.2954971, 48.8416839 2.2986279, 48.8637261 2.3340606, 48.8727422 2.3099714, 48.8716299 2.3140084, 48.8732165 2.3236650, 48.8735008 2.3203236, 48.8782458 2.3053392, 48.8748180 2.3083063, 48.8715224 2.3074911, 48.8704701 2.3076472, 48.8464060 2.2804321, 48.8462789 2.2786025, 48.8777420 2.2844157, 48.8802481 2.2854595, 48.8817043 2.2836999, 48.8193344 2.3436498, 48.8697269 2.3107378, 48.8836443 2.2821627, 48.8364602 2.3723041, 48.8326142 2.3712146, 48.8294477 2.3759592, 48.8917578 2.3000357, 48.8966717 2.3106040, 48.9017698 2.3727634, 48.8904568 2.3984851, 48.8858277 2.3979326, 48.8892044 2.3949432, 48.8341153 2.3087657, 48.8300931 2.2958772, 48.8702788 2.3842745, 48.8782964 2.4109300, 48.8680300 2.3851169, 48.8700483 2.3490020, 48.8638253 2.3808706, 48.8611898 2.3813091, 48.8749656 2.3048145, 48.8703043 2.3008415, 48.8704362 2.3010631, 48.8523266 2.4155894, 48.8470542 2.4160413, 48.8464606 2.4154979, 48.8439439 2.4149475, 48.8467984 2.3769382, 48.8456871 2.3741212, 48.8482055 2.3763201, 48.8462392 2.3793434, 48.8442424 2.3717797, 48.8211748 2.3337795, 48.8509876 2.3461191, 48.8443452 2.4393747, 48.8513322 2.3097491, 48.8405382 2.3537295, 48.8411143 2.3555601, 48.8492146 2.3916803, 48.8521875 2.3889688, 48.8389853 2.4375942, 48.8371010 2.4404301, 48.8354329 2.4314376, 48.8250001 2.3885505, 48.8211687 2.3786713, 48.8202354 2.3234198, 48.8280671 2.2924227, 48.8314413 2.3409219, 48.8332267 2.3368964, 48.8331702 2.3326392, 48.8182194 2.3532369, 48.8162346 2.3441572, 48.8525749 2.3316556, 48.8516359 2.3307926, 48.8533286 2.3346314, 48.8212529 2.3213669, 48.8236089 2.3080736, 48.8779202 2.2791408, 48.8787672 2.2706318, 48.8801135 2.2586312, 48.8841355 2.3287497, 48.8889153 2.3930360, 48.8882804 2.3908204, 48.8412499 2.2887600, 48.8442635 2.2774236, 48.8433931 2.2751214, 48.8406480 2.2780472, 48.8377045 2.2753703, 48.8360266 2.2812068, 48.8367146 2.2836745, 48.8347180 2.2841645, 48.8359069 2.2934202, 48.8380535 2.2878802, 48.8392266 2.2915858, 48.8385251 2.2782878, 48.8383082 2.2701372, 48.8549220 2.3872314, 48.8543661 2.3848507, 48.8503080 2.3839716, 48.8492760 2.3949290, 48.8564633 2.3790389, 48.8525384 2.3807630, 48.8941847 2.3125567, 48.8988455 2.3220238, 48.8995170 2.3201098, 48.8947998 2.3186936, 48.8928002 2.3270094, 48.8796218 2.3265596, 48.8779635 2.3272883, 48.8767294 2.3305305, 48.8768744 2.3327773, 48.8777601 2.3273644, 48.8747962 2.3265054, 48.8742093 2.3255963, 48.8751600 2.3319950, 48.8693736 2.3204383, 48.8691755 2.3245526, 48.8668994 2.3066488, 48.8649899 2.3027111, 48.8693643 2.3026790, 48.8707450 2.3032755, 48.8652497 2.3101782, 48.8668521 2.3157882, 48.8715167 2.3000286, 48.8713248 2.3002088, 48.8721604 2.3295724, 48.8728406 2.3283120, 48.8729832 2.3294159, 48.8514094 2.2965704, 48.8564180 2.2929958, 48.8535709 2.4057993, 48.8532189 2.4059066, 48.8570643 2.4044749, 48.8525358 2.4040103, 48.8516489 2.3984431, 48.8542199 2.3960813, 48.8375393 2.3360135, 48.8402279 2.3373018, 48.8427433 2.3125629, 48.8405803 2.3153009, 48.8653041 2.3760609, 48.8679081 2.3779048, 48.8642583 2.3781838, 48.8717635 2.3722590, 48.8743760 2.3738893, 48.8775727 2.3697840, 48.8793418 2.3684468, 48.8774951 2.3660254, 48.8761335 2.3680786, 48.8746849 2.3665197, 48.8734003 2.3641075, 48.8710868 2.3661930, 48.8713012 2.3699655, 48.8433627 2.3377702, 48.8343356 2.3292251, 48.8447927 2.2975997, 48.8325468 2.3622967, 48.8315083 2.3567419, 48.8319231 2.3546881, 48.8298912 2.3542467, 48.8284954 2.3531059, 48.8830400 2.3466469, 48.8826393 2.3448094, 48.8821036 2.3462700, 48.8806743 2.3516188, 48.8803621 2.3527476, 48.8808367 2.3523965, 48.8767124 2.4051857, 48.8754784 2.4059676, 48.8756268 2.3994827, 48.8805125 2.3980130, 48.8818468 2.4029049, 48.8778919 2.3959017, 48.8731764 2.4132389, 48.8733436 2.4105571, 48.8277658 2.4184354, 48.8328402 2.4028704, 48.8294130 2.4015885, 48.8312754 2.3988833, 48.8254543 2.4099127, 48.8833656 2.3710732, 48.8837907 2.3764722, 48.8372899 2.3175774, 48.8613834 2.3525372, 48.8635331 2.3476629, 48.8640524 2.3476114, 48.8392766 2.3208448, 48.8617066 2.3445035, 48.8612681 2.3493661, 48.8624112 2.3480599, 48.8599405 2.3466434, 48.8589421 2.3475982, 48.8588348 2.3518897, 48.8572632 2.3514945, 48.8561847 2.3532145, 48.8655904 2.3564268, 48.8661173 2.3596343, 48.8683793 2.3679055, 48.8664719 2.3693573, 48.8658257 2.3693390, 48.8634351 2.3712286, 48.8616617 2.3727419, 48.8600810 2.3710999, 48.8569493 2.3706558, 48.8538990 2.3697241, 48.8663247 2.3710849, 48.8644965 2.3730964, 48.8632938 2.3872069, 48.8664996 2.3830714, 48.8686598 2.3815066, 48.8711417 2.3782119, 48.8727055 2.3764695, 48.8719039 2.3850869, 48.8701140 2.3966278, 48.8706874 2.3989838, 48.8678503 2.4009656, 48.8653208 2.3990687, 48.8643044 2.3982089, 48.8653996 2.3977973, 48.8651813 2.3944221, 48.8662129 2.3890609, 48.8656935 2.3876189, 48.8694311 2.3950347, 48.8673873 2.3963565, 48.8712622 2.4039026, 48.8737273 2.3960303, 48.8754660 2.3929490, 48.8754434 2.3890467, 48.8739926 2.3894557, 48.8764991 2.3923568, 48.8743201 2.3860568, 48.8750539 2.3826407, 48.8764595 2.3793277, 48.8778573 2.3813972, 48.8796002 2.3888045, 48.8774643 2.3860740, 48.8819518 2.3925799, 48.8791126 2.3785037, 48.8797928 2.3748927, 48.8814004 2.3733460, 48.8827127 2.3746701, 48.8847298 2.3801436, 48.8862604 2.3774382, 48.8862942 2.3825537, 48.8891556 2.3835322, 48.8771673 2.3743225, 48.8731252 2.3798302, 48.8645976 2.3751492, 48.8621139 2.3771509, 48.8588447 2.3789316, 48.8579887 2.3818494, 48.8586573 2.3836132, 48.8570456 2.3728609, 48.8479765 2.2966394, 48.8645209 2.3464137, 48.8637982 2.3425857, 48.8585540 2.3586704, 48.8645325 2.3616659, 48.8625383 2.3596046, 48.8616570 2.3566882, 48.8621158 2.3649459, 48.8580787 2.3502718, 48.8594346 2.3558245, 48.8691099 2.3622572, 48.8685184 2.3599117, 48.8707796 2.3431008, 48.8758064 2.3472929, 48.8661857 2.3449657, 48.8724202 2.3554241, 48.8613324 2.3672902, 48.8644708 2.3660442, 48.8657197 2.3652646, 48.8646365 2.3693357, 48.8678878 2.3727490, 48.8691580 2.3718028, 48.8727830 2.3700050, 48.8740363 2.3624556, 48.8709568 2.3611877, 48.8750670 2.3596454, 48.8756963 2.3594622, 48.8761479 2.3608784, 48.8767569 2.3560938, 48.8755329 2.3562073, 48.8720809 2.3576446, 48.8686256 2.3557047, 48.8696775 2.3543727, 48.8610006 2.3534840, 48.8631013 2.3527609, 48.8571905 2.3539864, 48.8599108 2.3609341, 48.8581811 2.3646296, 48.8557177 2.3579066, 48.8427458 2.3524509, 48.8793536 2.3584016, 48.8795963 2.3570245, 48.8497477 2.3435781, 48.8502811 2.3449753, 48.8489015 2.3412990, 48.8736110 2.3032060, 48.8239534 2.3165091, 48.8244892 2.3184730, 48.8243938 2.3190309, 48.8335546 2.2856665, 48.8227462 2.3249989, 48.8427362 2.3297851, 48.8425183 2.3350723, 48.8440936 2.3330640, 48.8601207 2.2808695, 48.8374501 2.3974695, 48.8351057 2.3855326, 48.8337350 2.3866004, 48.8323315 2.3862257, 48.8347892 2.4008341, 48.8366987 2.3918047, 48.8403103 2.3946599, 48.8375405 2.4016838, 48.8647135 2.4083257, 48.8645193 2.4105979, 48.8879678 2.3259712, 48.8623679 2.4111234, 48.8615965 2.4057488, 48.8626997 2.4034148, 48.8393156 2.3801287, 48.8337437 2.3886482, 48.8375435 2.3824463, 48.8420158 2.3412105, 48.8465305 2.3431266, 48.8384599 2.3406020, 48.8395192 2.3610330, 48.8355111 2.3025520, 48.8358706 2.3021959, 48.8427677 2.3244722, 48.8411388 2.3244182, 48.8368320 2.3312845, 48.8350879 2.3415777, 48.8350103 2.3759945, 48.8376967 2.3825388, 48.8337873 2.3947302, 48.8323342 2.4046376, 48.8570745 2.3418077, 48.8309113 2.3795463, 48.8269199 2.3653028, 48.8528829 2.3425509, 48.8531182 2.3429777, 48.8638814 2.2818570, 48.8657937 2.2830850, 48.8711878 2.2937312, 48.8426501 2.3861170, 48.8513720 2.2778196, 48.8575556 2.2800238, 48.8512318 2.4017230, 48.8578656 2.2774577, 48.8476397 2.2735592, 48.8491930 2.3705959, 48.8507729 2.3759001, 48.8658946 2.2758019, 48.8680759 2.2814412, 48.8727724 2.2915517, 48.8703465 2.2850813, 48.8331772 2.2703285, 48.8832613 2.3264678, 48.8592458 2.3868272, 48.8583848 2.3904386, 48.8346976 2.3971134, 48.8388270 2.3896712, 48.8327416 2.3788209, 48.8835907 2.3332827, 48.8748312 2.3255471, 48.8673311 2.3076664, 48.8620791 2.2617340, 48.8346333 2.2957466, 48.8331253 2.2993734, 48.8322106 2.3023731, 48.8353914 2.4079102, 48.8199090 2.3593459, 48.8309699 2.3641295, 48.8285361 2.3802860, 48.8283928 2.3842593, 48.8791806 2.3542322, 48.8796019 2.3544582, 48.8844476 2.3388182, 48.8872379 2.3326374, 48.8875505 2.3343018, 48.8643854 2.2724591, 48.8681505 2.3013315, 48.8740799 2.2997640, 48.8472783 2.3856965, 48.8516200 2.3836674, 48.8504806 2.3788351, 48.8516180 2.4015641, 48.8539136 2.4024675, 48.8539293 2.4000508, 48.8304077 2.3343316, 48.8511987 2.3837123, 48.8274915 2.3316869, 48.8199327 2.3650855, 48.8456771 2.3745689, 48.8499590 2.3632112, 48.8513238 2.3624304, 48.8526693 2.3608308, 48.8836715 2.3491968, 48.8852026 2.3499755, 48.8852293 2.3471969, 48.8516794 2.3474841, 48.8771445 2.3224363, 48.8376830 2.3448082, 48.8823429 2.3140860, 48.8455904 2.3558120, 48.8381135 2.3571067, 48.8570345 2.3629840, 48.8549662 2.3612793, 48.8354147 2.3582479, 48.8475869 2.3900296, 48.8472771 2.3956036, 48.8488604 2.3968465, 48.8483749 2.3994783, 48.8443280 2.3896931, 48.8390850 2.3568747, 48.8312574 2.3772566, 48.8243928 2.3770244, 48.8257038 2.3749538, 48.8329907 2.2869621, 48.8580090 2.3004777, 48.8278209 2.3706492, 48.8438654 2.3518035, 48.8980360 2.3337142, 48.8958294 2.3281637, 48.8978467 2.3285070, 48.8988412 2.3296764, 48.8801859 2.3312932, 48.8542757 2.3194575, 48.8570901 2.3152530, 48.8515609 2.3146168, 48.8450873 2.4015561, 48.8455770 2.3958841, 48.8468380 2.4001158, 48.8478151 2.3161845, 48.8470337 2.3212693, 48.8754466 2.2938148, 48.8806125 2.3769485, 48.8583969 2.2841520, 48.8825820 2.3812532, 48.8695049 2.3065969, 48.8485805 2.2655695, 48.8450781 2.2661861, 48.8365140 2.2786782, 48.8259800 2.3574792, 48.8259306 2.3602462, 48.8233030 2.3659003, 48.8246654 2.3631367, 48.8279577 2.3586262, 48.8419264 2.3635292, 48.8236413 2.3615505, 48.8219370 2.3633250, 48.8437079 2.3657319, 48.8560717 2.3021776, 48.8550972 2.3053909, 48.8586100 2.3037057, 48.8615949 2.3022747, 48.8306926 2.3359923, 48.8248112 2.3677360, 48.8625821 2.3543114, 48.8609931 2.4003293, 48.8448840 2.3824674, 48.8309475 2.2852917, 48.8431538 2.3637431, 48.8737596 2.3158539, 48.8211710 2.3587038, 48.8505179 2.3931013, 48.8841654 2.3220842, 48.8794250 2.3337401, 48.8821959 2.3406004, 48.8812335 2.3681216, 48.8204792 2.3667808, 48.8202218 2.3721389, 48.8217969 2.3688453, 48.8291806 2.3561302, 48.8430624 2.2598915, 48.8838324 2.2984885, 48.8799051 2.2881111, 48.8818604 2.2920888, 48.8388149 2.2819094, 48.8629792 2.3415194, 48.8634426 2.3400377, 48.8669921 2.3366321, 48.8708415 2.3535560, 48.8447284 2.3419203, 48.8425031 2.3446224, 48.8560385 2.4049110, 48.8605425 2.4091699, 48.8516010 2.3437321, 48.8508150 2.3422269, 48.8516511 2.3354386, 48.8517582 2.3381629, 48.8704217 2.3232384, 48.8419172 2.3589420, 48.8494338 2.3377819, 48.8576071 2.3358845, 48.8455626 2.3726390, 48.8502811 2.3276257, 48.8466468 2.3323592, 48.8416922 2.3314753, 48.8486047 2.2993357, 48.8991726 2.3710434, 48.8414485 2.3654773, 48.8461325 2.3412680, 48.8674254 2.3444285, 48.8604478 2.3444956, 48.8799360 2.3212877, 48.8779762 2.3183300, 48.8223980 2.3278952, 48.8749238 2.3194549, 48.8737572 2.3063309, 48.8602188 2.3423098, 48.8613591 2.3400077, 48.8448202 2.3293072, 48.8433715 2.3266113, 48.8760794 2.3011982, 48.8893758 2.3334530, 48.8397720 2.3826569, 48.8820288 2.3635484, 48.8838331 2.3670954, 48.8682247 2.3381270, 48.8471866 2.3534537, 48.8491388 2.3559696, 48.8390129 2.3499462, 48.8635083 2.2864664, 48.8766836 2.2834669, 48.8707206 2.2811510, 48.8433254 2.3023574, 48.8435384 2.3065535, 48.8366110 2.3126681, 48.8404224 2.3130691, 48.8388336 2.3158922, 48.8325290 2.3252190, 48.8276699 2.3261967, 48.8736518 2.2816369, 48.8987007 2.3645291, 48.8989558 2.3743498, 48.8985341 2.3861761, 48.9012620 2.3875624, 48.8526057 2.2629154, 48.8842153 2.3560766, 48.8845445 2.3602834, 48.8664544 2.3344768, 48.8667755 2.3343748, 48.8676389 2.3332399, 48.8691704 2.3325104, 48.8928637 2.3634518, 48.8962560 2.3589998, 48.8907716 2.3308685, 48.8914267 2.3486643, 48.8950968 2.3687029, 48.8912142 2.3513181, 48.8992745 2.3429645, 48.8937350 2.3474870, 48.8994097 2.3458849, 48.8841667 2.3418884, 48.8894575 2.3334080, 48.8888295 2.3559941, 48.8928646 2.3401075, 48.8966990 2.3380370, 48.8866760 2.3532946, 48.8951369 2.3599640, 48.8866165 2.3262539, 48.8883502 2.3535905, 48.8910569 2.3398224, 48.8990308 2.3365543, 48.8864478 2.3329208, 48.8901247 2.3605177, 48.8954760 2.3497870, 48.8896461 2.3382212, 48.8911223 2.3267442, 48.8846860 2.3536867, 48.8904472 2.3492576, 48.8852757 2.3345602, 48.8944930 2.3415130, 48.8867353 2.3613685, 48.8918730 2.3354310, 48.8928650 2.3444840, 48.8895980 2.3628765, 48.8975116 2.3442590, 48.8957920 2.3455810, 48.8944869 2.3522760, 48.8846342 2.3441510, 48.8877079 2.3504076, 48.8935221 2.3365539, 48.8962291 2.3333688, 48.8861209 2.3568514, 48.8870108 2.3668702, 48.8899467 2.3427294, 48.8974237 2.3526006, 48.8885796 2.3472110, 48.8908959 2.3450395, 48.8940382 2.3322317, 48.8437364 2.3392987, 48.8408726 2.3875568, 48.8555569 2.4090964, 48.8535427 2.4096248, 48.8661570 2.3251630, 48.8648196 2.3294492, 48.8539346 2.3493079, 48.8529322 2.3520857, 48.8482231 2.3417751, 48.8296114 2.3182270, 48.8497262 2.3529879, 48.8466399 2.3489993, 48.8415362 2.3502718, 48.8563141 2.3830600, 48.8597545 2.4033363, 48.8563540 2.3948325, 48.8418032 2.3767741, 48.8795478 2.3371494, 48.8766106 2.3457504, 48.8472092 2.3070017, 48.8218802 2.3268475, 48.8250195 2.3264168, 48.8819418 2.3521616, 48.8368662 2.3071536, 48.8383079 2.3085101, 48.8615137 2.3197027, 48.8578293 2.3192199, 48.8474837 2.3126225, 48.8512536 2.3251315, 48.8556397 2.3256421, 48.8590997 2.3185547, 48.8486555 2.3203894, 48.8608678 2.2956977, 48.8521505 2.3019919, 48.8569538 2.3096130, 48.8614149 2.3094414, 48.8606986 2.3148434, 48.8583091 2.3237904, 48.8566893 2.3067753, 48.8588632 2.3319175, 48.8597138 2.3258235, 48.8752771 2.2494139, 48.8446117 2.3178842, 48.8766241 2.3397060, 48.8528721 2.3890596, 48.8555740 2.3904061, 48.8639822 2.3355945, 48.8963398 2.3844708, 48.8828620 2.2876210, 48.8794462 2.2915207, 48.8781329 2.2884576, 48.8537524 2.3572131, 48.8416546 2.3484221, 48.8580159 2.3469052, 48.8201860 2.3400152, 48.8248017 2.3362648, 48.8685182 2.3898030, 48.8426319 2.3973692, 48.8814802 2.2949812, 48.8539886 2.4120537, 48.8777824 2.3398244, 48.8791352 2.3437478, 48.8257108 2.3218692, 48.8508939 2.3012223, 48.8305349 2.3455551, 48.8258967 2.3573107, 48.8288239 2.3418815, 48.8740909 2.3274858, 48.8261137 2.3420629, 48.8264627 2.3442784, 48.8358630 2.3380882, 48.8172529 2.3602221, 48.8224891 2.3474392, 48.8222126 2.3504401, 48.8256278 2.3503006, 48.8275490 2.3490346, 48.8233280 2.3543382, 48.8299328 2.3501105, 48.8311758 2.3480989, 48.8371959 2.3514837, 48.8527113 2.3442100, 48.8552739 2.3473751, 48.8624252 2.3386199, 48.8674261 2.3406263, 48.8659581 2.3419245, 48.8212269 2.3421677, 48.8266942 2.3386593, 48.8493100 2.3284272, 48.8205245 2.3513062, 48.8733496 2.3352682, 48.8742744 2.3329601, 48.8705692 2.3341202, 48.8482512 2.3292214, 48.8420697 2.2859200, 48.8432520 2.2833768, 48.8476438 2.3027692, 48.8361875 2.3193936, 48.8315372 2.3291516, 48.8354101 2.3485767, 48.8351279 2.3535099, 48.8348276 2.3668095, 48.8290039 2.3742797, 48.8476750 2.3269685, 48.8527675 2.2978750, 48.8419411 2.3897697, 48.8792482 2.3624736, 48.8732753 2.3592374, 48.8462637 2.3522618, 48.8234660 2.3229699, 48.8378904 2.3224575, 48.8907110 2.3761517, 48.8763666 2.3587710, 48.8532340 2.3831638, 48.8692762 2.2899202, 48.8436817 2.3546669, 48.8441122 2.3786311, 48.8726701 2.4079021, 48.8559235 2.3925572, 48.8707816 2.3496418, 48.8290907 2.3609632, 48.8849106 2.3109771, 48.8227101 2.3777404, 48.8253199 2.3107012, 48.8779977 2.3266274, 48.8920979 2.3233014, 48.8712019 2.3413851, 48.8812596 2.3282561, 48.8843107 2.3903306, 48.8863919 2.3865004, 48.8702948 2.3422163, 48.8878425 2.3243054, 48.8320919 2.3674213, 48.8934099 2.3363041, 48.8432413 2.3224129, 48.8438502 2.3225577, 48.8795791 2.4011974, 48.8720302 2.3920402, 48.8570206 2.4087900, 48.8333122 2.2766050, 48.8755099 2.3434037, 48.8502723 2.4063088, 48.8493210 2.4123278, 48.8855144 2.3166106, 48.8363345 2.3104066, 48.8933121 2.3848968, 48.8946426 2.3818500, 48.8926684 2.3791196, 48.8932861 2.3844526, 48.8626544 2.3497602, 48.8450449 2.3494549, 48.8378158 2.3970726, 48.8814585 2.3701955, 48.8888444 2.3785107, 48.8648903 2.2927818, 48.8652776 2.3001217, 48.8756781 2.3992089, 48.8446470 2.4049516, 48.8295616 2.3691128, 48.8798447 2.3453589, 48.8846966 2.3919640, 48.8780658 2.4109854, 48.8649879 2.3978217, 48.8342051 2.3135017, 48.8469391 2.4103030, 48.8552405 2.3375518, 48.8552856 2.3399457, 48.8555538 2.3334871, 48.8542055 2.3303219, 48.8959172 2.3812055, 48.8987981 2.3790742, 48.8689060 2.3919843, 48.8540164 2.2895145, 48.8451325 2.3454414, 48.8843507 2.3642047, 48.8882204 2.3169268, 48.8903863 2.3198232, 48.8959081 2.3226654, 48.8973994 2.3959893, 48.8473899 2.4102789, 48.8862633 2.3689061, 48.8380011 2.3605213, 48.8678874 2.3648918, 48.8667598 2.3654966, 48.8671087 2.3634985, 48.8901111 2.3173828, 48.8961823 2.3180562, 48.8941973 2.3125096, 48.8941445 2.3146952, 48.8926085 2.3173077, 48.8400857 2.2716780, 48.8635520 2.3425906, 48.8766714 2.3443634, 48.8389598 2.3704270, 48.8623327 2.3527653, 48.8812197 2.3164987, 48.8328697 2.3068297, 48.8430898 2.2953215, 48.8939441 2.3979076, 48.8423612 2.2812102, 48.8708161 2.2749183, 48.8845071 2.3703915, 48.8867667 2.3745936, 48.8985255 2.3605044, 48.8984477 2.3690228, 48.8746584 2.3661215, 48.8843525 2.2882367, 48.8926487 2.3594311, 48.8443704 2.4109328, 48.8493274 2.2819715, 48.8348733 2.3446364, 48.8375130 2.3651955, 48.8714017 2.3382665, 48.8732628 2.3407395, 48.8305280 2.2920390, 48.8394868 2.3971498, 48.8564317 2.3347979, 48.8911611 2.3865761, 48.8757336 2.3266104, 48.8357249 2.3282524, 48.8341118 2.4546530, 48.8774420 2.3096108, 48.8752933 2.3228773, 48.8571019 2.3984066, 48.8550829 2.3733686, 48.8401634 2.3044521, 48.8412701 2.3081103, 48.8678836 2.3493991, 48.8470236 2.3465004, 48.8707294 2.3587247, 48.8400642 2.4091298, 48.8410816 2.4113084, 48.8811450 2.3367110, 48.8458439 2.3017831, 48.8694428 2.4054011, 48.8691390 2.4092451, 48.8680339 2.4109234, 48.8478853 2.4061185, 48.8518476 2.3933111, 48.8831240 2.3238175, 48.8600843 2.3501442, 48.8400060 2.4004934, 48.8408728 2.4043717, 48.8431180 2.3203628, 48.8290070 2.3014163, 48.8266009 2.3093286, 48.8548318 2.2950502, 48.8819276 2.3203338, 48.8528083 2.2930618, 48.8865799 2.2886246, 48.8386975 2.3110254, 48.8425337 2.3640099, 48.8418066 2.3195355, 48.8774678 2.2945061, 48.8763042 2.2642980, 48.8559651 2.3563778, 48.8537639 2.3391067, 48.8484157 2.3501294, 48.8503045 2.3303232, 48.8850584 2.3071779, 48.8414902 2.3233159, 48.8553652 2.3997587, 48.8371072 2.3743837, 48.8392820 2.3298973, 48.8491858 2.3251494, 48.8832127 2.3308278, 48.8810507 2.3407852, 48.8461470 2.3242143, 48.8413329 2.3183133, 48.8842391 2.3054323, 48.8489310 2.3471707, 48.8407383 2.4105387, 48.8389528 2.4600778, 48.8223776 2.4586736, 48.8429300 2.3845957, 48.8723234 2.3336348, 48.8594647 2.3443694, 48.8886541 2.2961429, 48.8338546 2.2716111, 48.8792198 2.3491360, 48.8779092 2.3447827, 48.8774858 2.3486102, 48.8364664 2.2897401, 48.8489445 2.2576794, 48.8479443 2.2607480, 48.8533264 2.3881957, 48.8970953 2.3747831, 48.8961195 2.3742911, 48.8449041 2.3110205, 48.8309355 2.3188357, 48.8169801 2.3326668, 48.8279124 2.3056890, 48.8280162 2.3056133, 48.8601711 2.3501538, 48.8529233 2.2804514, 48.8618144 2.3501671 +Hôtel Vivienne +yes +0.38294676811798339 +57 +yes +6 +47.3430632 11.2024532, -22.9361218 -42.9102436, 43.9506744 -73.7328113, 35.0600842 -80.9103370, 46.4695153 -63.4456615, 52.4848285 13.4890165, 30.0527050 -89.9343829, 49.0551205 1.9989690, 29.4025791 -98.5563219, 36.3429260 28.2008740, 51.4081460 30.0581278, 54.2943996 -0.4104927, 40.2339282 116.1635814, 41.5467427 -73.0297334, 55.4243607 10.0399668 +94 +463 +0 +Kongresshaus +49.4136373 8.6927118 +53 +8 +yes +55.9529481 -3.1153702, 55.9501836 -3.1903813 +48.8656637 2.3778893, 48.8608198 2.3503260, 48.8490152 2.3541552, 48.8264842 2.3599429 +49.4083031 8.6962179 +city gate, wayside shrine, wayside shrine, wayside cross, ruins, memorial, castle, wayside shrine, wayside cross, technical monument, technical monument, ruins, castle, castle, castle, city gate, castle, castle, ruins, ruins, castle, tower, ruins, memorial, castle, towngate, castle, memorial, castle, memorial, house, castle, city gate, monument, boundary stone, castle, yes, castle, monument, castle, memorial, ruins, city gate, boundary stone, archaeological site, castle, castle, yes, memorial, memorial, memorial, memorial, monastery, memorial, ruins, castle, memorial, wayside cross, memorial, memorial, castle, ruins, ruins, wayside cross, wayside shrine, yes, yes, ruins, castle, castle, memorial, memorial, memorial, memorial, wayside cross, yes, wayside shrine, memorial, memorial, memorial, castle, memorial, memorial, memorial, memorial, archaeological site, ruins, yes, memorial, castle, castle, memorial, yes, memorial, wayside shrine, archaeological site, memorial, building, castle, memorial, memorial, memorial, memorial, memorial, wayside cross, yes, memorial, ruins, castle, memorial, memorial, ruins, memorial, city gate, castle, wayside cross, memorial, memorial, yes, monastery, university, wayside cross, wayside cross, wayside cross, memorial, monastery, castle, wayside cross, wayside cross, wayside cross, memorial, castle, tomb, wayside cross, wayside cross, memorial, wayside cross, castle, wayside cross, memorial, castle, boundary stone, boundary stone, ruins, ruins, castle, memorial, memorial, city gate, memorial, memorial, memorial, memorial, memorial, wayside cross, building, castle, memorial, castle, archaeological site, memorial, memorial, memorial, wayside cross, heritage, memorial, wayside cross, memorial, memorial, archaeological site, archaeological site, memorial, memorial, memorial, memorial, stone, ruins, castle, memorial, castle, memorial, castle, castle, wayside cross, memorial, yes, castle, building, memorial, ruins, memorial, memorial, castle, castle, memorial, memorial, memorial, memorial, wayside cross, castle, castle, castle, yes, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, castle, ruins, memorial, wayside shrine, wayside cross, memorial, memorial, ruins, wayside cross, wayside cross, castle, memorial, boundary stone, yes, building, memorial, memorial, wayside cross, memorial, castle, wayside cross, memorial, wayside shrine, memorial, memorial, memorial, ruins, yes, yes, castle, boundary stone, memorial, castle, memorial, heritage, memorial, castle, castle, castle, city gate, memorial, memorial, heritage, memorial, wayside cross, memorial, memorial, castle, yes, yes, city gate, memorial, yes, Brennereigenossenschaft Gronsdorf eG, city gate, wayside cross, ruins, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, castle, wayside shrine, memorial, memorial, memorial, memorial, church, castle, wayside shrine, memorial, castle, castle, ruins, ruins, memorial, ruins, wayside cross, memorial, ruins, boundary stone, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, memorial, yes, memorial, ruins, archaeological site, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, archaeological site, memorial, castle, wayside shrine, memorial, memorial, wayside cross, city gate, attraction, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, memorial, boundary stone, memorial, memorial, wayside shrine, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside chapel, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, wayside shrine, memorial, memorial, yes, wayside cross, wayside cross, memorial, wayside chapel, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, castle, castle, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, milestone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, yes, wayside cross, wayside cross, castle, memorial, castle, monument, yes, monument, memorial, wayside shrine, memorial, castle, memorial, memorial, memorial, memorial, memorial, archaeological site, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, castle, castle, castle, castle, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, archaeological site, archaeological site, wayside cross, wayside cross, castle, wayside cross, wayside shrine, castle, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, city gate, wayside cross, castle, castle, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, yes, wayside cross, wayside cross, memorial, memorial, archaeological site, ruins, memorial, memorial, wayside cross, yes, castle, monument, memorial, memorial, memorial, castle, memorial, wayside cross, castle, wayside shrine, memorial, wayside cross, wayside shrine, castle, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, archaeological site, archaeological site, wayside cross, wayside shrine, memorial, wayside cross, boundary stone, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, castle, memorial, monument, memorial, wayside cross, memorial, castle, castle, castle, memorial, castle, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, place, monument, wayside shrine, memorial, wayside cross, memorial, castle, castle, wayside cross, memorial, memorial, wayside shrine, wayside cross, castle, wayside cross, wayside chapel, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, memorial, castle, milestone, archaeological site, memorial, memorial, ruins, quarry, wayside cross, ruins, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, castle, wayside shrine, wayside cross, castle, castle, castle, wayside cross, stone, wayside cross, wayside shrine, wayside cross, archaeological site, memorial, yes, castle, castle, wayside cross, memorial, castle, memorial, locomotive, ruins, memorial, wayside cross, castle, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, ruins, wayside cross, memorial, wayside shrine, monument, city gate, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, archaeological site, wayside cross, ruins, memorial, yes, wayside cross, memorial, memorial, castle, castle, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, memorial, wayside shrine, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, memorial, wayside shrine, wayside cross, wayside cross, memorial, ruins, memorial, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside chapel, wayside cross, memorial, wayside cross, wayside cross, wayside cross, swimming, wayside cross, memorial, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, memorial, memorial, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, castle, castle, memorial, wayside shrine, memorial, ruins, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, castle, memorial, wayside cross, wayside cross, castle, city gate, archaeological site, memorial, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, yes, memorial, wayside cross, ruins, memorial, wayside cross, wayside cross, city gate, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, memorial, stone, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, memorial, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, technical monument, technical monument, technical monument, technical monument, technical monument, memorial, wayside cross, memorial, wayside cross, yes, memorial, wayside cross, wayside cross, ruins, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, castle, monument, ruins, wayside shrine, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside shrine, memorial, wayside cross, wayside cross, memorial, wayside cross, building, monastery, building, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, memorial, wayside cross, castle, wayside shrine, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside shrine, memorial, wayside cross, ruins, technical monument, memorial, castle, castle, ruins, ruins, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, city gate, yes, building, wayside cross, city gate, memorial, building, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, ruins, yes, ruins, yes, yes, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, memorial, wayside cross, memorial, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, stone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, castle, memorial, memorial, memorial, wayside cross, memorial, memorial, stone, wayside cross, memorial, archaeological site, memorial, wayside cross, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside cross, yes, memorial, wayside cross, wayside cross, archaeological site, memorial, wayside shrine, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, battlefield, battlefield, wayside cross, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, ruins, memorial, ruins, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, wayside shrine, wayside cross, wayside cross, castle, ruins, memorial, wayside shrine, wayside cross, memorial, wayside cross, archaeological site, archaeological site, castle, heritage, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, archaeological site, razed:watermill, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, castle, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, memorial, wayside shrine, memorial, wayside cross, archaeological site, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, archaeological site, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, wayside cross, wayside cross, stone, wayside shrine, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, technical monument, wayside cross, wayside cross, tomb, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, archaeological site, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside cross, wayside cross, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, ruins, wayside cross, wayside cross, memorial, memorial, castle, wayside cross, wayside cross, wayside cross, tower, tower, memorial, memorial, wayside cross, wayside shrine, wayside shrine, stone, wayside shrine, castle, memorial, wayside cross, church, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, monument, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, memorial, tower, archaeological site, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, yes, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, ruins, memorial, tomb, wayside cross, monument, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, tower, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, archaeological site, wayside cross, wayside shrine, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, wayside cross, castle, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, technical monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, ruins, wayside shrine, wayside cross, wayside cross, wayside shrine, castle, wayside cross, milestone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, memorial, memorial, wayside cross, wayside cross, castle, monument, wayside cross, castle, memorial, wayside cross, memorial, wayside shrine, wayside cross, boundary stone, wayside cross, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, castle, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, archaeological site, archaeological site, wayside cross, memorial, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, wayside shrine, wayside shrine, yes, yes, yes, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, stone, memorial, wayside cross, wayside cross, memorial, ruins, memorial, memorial, memorial, wayside cross, memorial, wayside cross, memorial, farm, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, memorial, archaeological site, wayside shrine, battlefield, wayside cross, memorial, wayside cross, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside shrine, wayside cross, wayside cross, ruins, memorial, battlefield, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, archaeological site, memorial, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, ruins, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, archaeological site, wayside cross, memorial, memorial, stone, wayside shrine, memorial, heritage, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, memorial, memorial, archaeological site, wayside cross, memorial, memorial, wayside shrine, memorial, memorial, memorial, monument, monument, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, castle, wayside cross, wayside cross, memorial, archaeological site, archaeological site, memorial, wayside shrine, wayside cross, castle, ruins, memorial, wayside cross, wayside shrine, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, Alter Getreidekasten, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, monument, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside shrine, wayside cross, wayside cross, archaeological site, memorial, stone, archaeological site, archaeological site, wayside shrine, ruins, yes, yes, wayside cross, wayside shrine, wayside shrine, milestone, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, memorial, wayside cross, ruins, wayside cross, memorial, memorial, wayside cross, castle, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside chapel, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, archaeological site, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside shrine, wayside shrine, memorial, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, castle, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, castle, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, archaeological site, memorial, wayside shrine, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, castle, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, battlefield, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, archaeological site, archaeological site, wayside cross, archaeological site, memorial, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, castle, stone, wayside cross, archaeological site, wayside cross, wayside cross, memorial, memorial, milestone, stone, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, memorial, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, castle, memorial, memorial, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, stone, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, ruins, archaeological site, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, boundary stone, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, yes, building, building, wayside cross, archaeological site, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, yes, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, industrial, wayside shrine, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, castle, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, ruins, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, memorial, memorial, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, archaeological site, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, heritage, city gate, castle, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, wayside shrine, wayside shrine, archaeological site, wayside shrine, wayside shrine, wayside shrine, archaeological site, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, archaeological site, wayside cross, wayside shrine, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside shrine, monument, memorial, wayside cross, wayside cross, boundary stone, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, archaeological site, wayside shrine, memorial, memorial, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, gallows, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, ruins, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, boundary stone, wayside cross, yes, wayside shrine, wayside cross, wayside cross, yes, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, wayside shrine, Altstraße, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, ruins, wayside cross, monument, wayside shrine, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, quarry, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, archaeological site, archaeological site, wayside shrine, ruins, castle, memorial, ruins, memorial, archaeological site, stone, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, ruins, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, archaeological site, archaeological site, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, memorial, archaeological site, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside chapel, memorial, memorial, memorial, ruins, wayside cross, castle, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, archaeological site, archaeological site, castle, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, castle, wayside cross, city gate, city gate, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, castle, boundary stone, wayside cross, wayside cross, ruins, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, yes, memorial, wayside shrine, memorial, yes, yes, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, castle, wayside cross, wayside shrine, archaeological site, milestone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, monument, castle, wayside cross, monument, archaeological site, wayside cross, wayside cross, stone, ruins, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, monument, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, memorial, memorial, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, ruins, wayside cross, boundary stone, archaeological site, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, memorial, ruins, archaeological site, memorial, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, ruins, memorial, memorial, memorial, memorial, wayside shrine, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, yes, yes, yes, yes, yes, yes, yes, wayside cross, memorial, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, monument, wayside cross, wayside cross, wayside shrine, memorial, archaeological site, archaeological site, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, yes, memorial, wayside shrine, castle, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, memorial, castle, wayside cross, wayside shrine, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, memorial, wayside cross, wayside chapel, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, milestone, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, city gate, yes, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, heritage, wayside cross, castle, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, ruins, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, boundary stone, wayside cross, memorial, wayside shrine, memorial, memorial, memorial, stone, wayside cross, wayside cross, wayside shrine, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, wayside cross, memorial, wayside shrine, castle, memorial, memorial, ruins, memorial, wayside cross, monument, wayside cross, memorial, wayside cross, monument, memorial, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, monument, memorial, wayside cross, wayside cross, ruins, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, brewery, wayside cross, wayside cross, castle, memorial, wayside cross, memorial, wayside cross, farm, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, castle, memorial, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, tower, memorial, building, wayside cross, marker, marker, marker, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, tower, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, memorial, wayside shrine, wayside shrine, wayside cross, monument, memorial, wayside cross, wayside cross, castle, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wreck, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside shrine, stone, wayside cross, wayside shrine, boundary stone, wayside cross, wayside shrine, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, building, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside shrine, wayside cross, castle, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, memorial, memorial, archaeological site, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, ruins, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, memorial, archaeological site, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, stone, stone, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, undefined, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, stone, wayside cross, stone, ruins, wayside cross, wayside cross, wayside shrine, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, monument, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, memorial, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, yes, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, locomotive, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, castle, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, ruins, wayside cross, stone, wayside shrine, industrial, archaeological site, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, stone, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, stone, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, lock, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, memorial, memorial, memorial, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, memorial, wayside cross, boundary stone, wayside cross, memorial, wayside cross, ruins, memorial, ruins, wayside cross, wayside cross, archaeological site, wayside shrine, monument, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, stone, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, ruins, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, castle, yes, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, stone, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, ruins, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, city gate, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, wayside shrine, memorial, castle, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, city gate, memorial, memorial, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, boundary stone, boundary stone, church, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, memorial, wayside shrine, wayside cross, memorial, wayside cross, milestone, memorial, wayside cross, wayside cross, memorial, wayside cross, monument, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, castle, castle, wayside shrine, memorial, wayside chapel, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, ruins, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, memorial, building, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, battlefield, wayside chapel, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, monument, monument, monument, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, ruins, memorial, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, bunker, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, castle, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, castle, boundary stone, castle, memorial, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, water well, castle, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, church, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, building, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, undefined, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, boundary stone, wayside cross, wayside cross, memorial, yes, wayside shrine, wayside cross, wayside cross, laundry fountain, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, boundary stone, memorial, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, building, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, yes, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, memorial, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, yes, wayside cross, wayside cross, memorial, memorial, memorial, mine, mine, mine, mine, mine, mine, mine, archaeological site, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, yes, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, castle, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, yes, memorial, wayside cross, ruins, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, wayside cross, yes, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, ruins, boundary stone, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, archaeological site, archaeological site, stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, ruins, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, yes, boundary stone, wayside shrine, wayside cross, wayside shrine, yes, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, ruins, yes, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, archaeological site, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside shrine, memorial, yes, wayside cross, memorial, archaeological site, ruins, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, archaeological site, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, memorial, Alter Ringlockschuppen, wayside cross, wayside cross, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, ruins, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, ruins, wayside cross, wayside cross, wayside cross, ruins, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, archaeological site, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, ruins, ruins, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, memorial, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, building, wayside cross, wayside cross, ruins, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, castle, wayside chapel, wayside cross, archaeological site, archaeological site, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, wayside chapel, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, technical monument, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, stone, wayside cross, stone, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, Stausee Büchlberg, wayside cross, memorial, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, archaeological site, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, memorial, archaeological site, wayside shrine, building, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, stone, wayside cross, stone, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, watermill, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, yes, memorial, memorial, wayside shrine, memorial, wayside cross, memorial, memorial, ruins, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, memorial, castle, wayside cross, memorial, wayside shrine, castle, memorial, wayside cross, castle, memorial, castle, wayside cross, wayside shrine, castle, castle, memorial, wayside cross, ruins, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside cross, memorial, archaeological site, tower, tower, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, boundary stone, wayside shrine, castle, castle, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, archaeological site, archaeological site, archaeological site, wayside cross, wayside cross, wayside shrine, memorial, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, heritage, memorial, wayside cross, castle, castle, wayside chapel, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, church, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, Dossenberger-Pfarrhof (Pfarrhof von Billenhausen (erbaut von Joseph Dossenberger), building, wayside cross, wayside cross, archaeological site, castle, wayside cross, wayside cross, ruins, wayside shrine, ruins, archaeological site, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, wayside shrine, memorial, memorial, memorial, archaeological site, archaeological site, wayside cross, ruins, wayside cross, ruins, ruins, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, archaeological site, wayside cross, yes, yes, wayside cross, castle, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside cross, memorial, yes, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, heritage, wayside shrine, ruins, ruins, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside cross, wayside shrine, wayside shrine, wayside shrine, castle, ruins, archaeological site, wayside shrine, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, memorial, yes, ruins, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, ruins, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, stone, stone, wayside shrine, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, ruins, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, church, city gate, memorial, wayside cross, wayside cross, wayside cross, ruins, ruins, archaeological site, ruins, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, ruins, ruins, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, yes, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, memorial, wayside cross, memorial, boundary stone, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, archaeological site, yes, wayside cross, battlefield, wayside cross, wayside cross, wayside cross, wayside cross, yes, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, memorial, wayside shrine, stone, stone, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside shrine, wayside shrine, stone, stone, memorial, memorial, memorial, wayside cross, wayside chapel, yes, wayside shrine, memorial, memorial, stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside shrine, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, archaeological site, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, castle, stone, memorial, memorial, memorial, stone, memorial, wayside cross, ruins, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, wayside shrine, monument, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, ruins, archaeological site, archaeological site, wayside cross, wayside cross, memorial, building, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, stone, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, archaeological site, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside chapel, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, memorial, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, memorial, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, ruins, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, archaeological site, ruins, memorial, wayside cross, wayside shrine, wayside shrine, castle, wayside cross, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, memorial, wayside cross, wayside shrine, ruins, wayside shrine, memorial, memorial, archaeological site, archaeological site, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, archaeological site, wayside shrine, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, yes, ruins, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, stone, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, archaeological site, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, memorial, memorial, memorial, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, wayside cross, boundary stone, boundary stone, memorial, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, boundary stone, wayside cross, yes, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, ruins, wayside cross, wayside shrine, memorial, wayside cross, city gate, city gate, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, chapel, wayside cross, wayside cross, city gate, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, yes, wayside shrine, wayside cross, building, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, memorial, memorial, archaeological site, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, church, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside chapel, archaeological site, archaeological site, archaeological site, archaeological site, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, ruins, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, ruins, memorial, church, wayside cross, memorial, wayside cross, ruins, wayside cross, castle, wayside cross, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, archaeological site, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, ruins, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, monument, memorial, wayside cross, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, memorial, ruins, ruins, wayside cross, wayside shrine, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, ruins, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, memorial, boundary stone, yes, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, memorial, wayside shrine, memorial, archaeological site, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, boundary stone, wayside cross, castle, wayside cross, memorial, boundary stone, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, boundary stone, wayside cross, wayside shrine, memorial, memorial, archaeological site, wayside shrine, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, pillory, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, archaeological site, monument, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, memorial, boundary stone, monument, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, monument, wayside cross, wayside cross, memorial, memorial, archaeological site, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, memorial, boundary stone, wayside cross, archaeological site, ruins, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, ruins, wayside cross, memorial, wayside cross, wayside cross, wayside cross, city gate, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, boundary stone, boundary stone, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, stone, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, milestone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, ruins, wayside shrine, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside chapel, wayside cross, wayside chapel, wayside chapel, yes, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, boundary stone, boundary stone, wayside shrine, monument, archaeological site, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, memorial, archaeological site, archaeological site, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, yes, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside shrine, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, wayside cross, memorial, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside shrine, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, memorial, memorial, boundary stone, boundary stone, city gate, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, statue, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, memorial, archaeological site, wayside cross, wayside cross, wayside chapel, ruins, memorial, wayside cross, memorial, wayside chapel, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, boundary stone, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, heritage, city gate, city gate, city gate, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, ruins, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, castle, memorial, memorial, memorial, ruins, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, archaeological site, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, archaeological site, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, castle, memorial, stone, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, castle, wayside cross, archaeological site, wayside cross, memorial, stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, yes, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside chapel, wayside chapel, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, archaeological site, wayside cross, wayside shrine, ruins, wayside cross, memorial, wayside chapel, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside cross, memorial, wayside cross, wayside cross, wayside cross, archaeological site, wayside shrine, memorial, wayside cross, memorial, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, castle, boundary stone, archaeological site, wayside cross, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside shrine, boundary stone, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, yes, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, ruins, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, memorial, archaeological site, wayside cross, ruins, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, boundary stone, wayside cross, memorial, memorial, wayside shrine, archaeological site, archaeological site, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, wayside cross, castle, stone, memorial, wayside shrine, wayside cross, boundary stone, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, archaeological site, memorial, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, memorial, stone, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, wayside chapel, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, archaeological site, memorial, memorial, wayside shrine, wayside shrine, boundary stone, memorial, memorial, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, boundary stone, ruins, archaeological site, battlefield, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, memorial, boundary stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside chapel, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, wayside cross, stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, castle, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, castle, castle, wayside cross, archaeological site, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, memorial, memorial, archaeological site, memorial, building, wayside cross, ruins, wayside chapel, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, archaeological site, wayside cross, memorial, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, industrial, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, archaeological site, archaeological site, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, memorial, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, memorial, wayside shrine, wayside shrine, ruins, wayside cross, wayside shrine, memorial, castle, yes, wayside shrine, memorial, archaeological site, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, ruins, memorial, monument, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, city gate, tower, ruins, castle, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, castle, memorial, memorial, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, castle, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, archaeological site, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, yes, yes, stone, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, memorial, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside chapel, ruins, wayside cross, yes, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, archaeological site, archaeological site, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, memorial, wayside shrine, boundary stone, ruins, wayside shrine, boundary stone, wayside cross, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside shrine, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, monument, ruins, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, monastery, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, city gate, wayside chapel, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, milestone, ruins, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, yes, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, ruins, memorial, memorial, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, monument, archaeological site, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, ruins, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, archaeological site, wayside cross, wayside cross, archaeological site, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, boundary stone, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, memorial, memorial, stone, archaeological site, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, fountain, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, fountain, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside chapel, wayside cross, wayside chapel, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, milestone, wayside cross, wayside shrine, milestone, wayside cross, wayside cross, boundary stone, wayside cross, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, boundary stone, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside cross, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, memorial, memorial, ruins, wayside cross, archaeological site, wayside cross, memorial, wayside cross, wayside cross, gallows, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, stone, memorial, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, tomb, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, memorial, memorial, memorial, wayside cross, castle, wayside cross, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, ruins, wayside cross, wayside cross, memorial, archaeological site, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, boundary stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, archaeological site, memorial, memorial, ruins, ruins, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside cross, memorial, archaeological site, memorial, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, ruins, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, building, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, ruins, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, yes, memorial, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside chapel, wayside chapel, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, castle, castle, castle, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, castle, castle, castle, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, church, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside shrine, memorial, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, memorial, memorial, wayside cross, stone, memorial, memorial, wayside cross, wayside shrine, tunnel, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, castle, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, castle, wayside cross, ruins, wayside cross, ruins, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, wayside cross, stone, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, stone, stone, wayside cross, wayside cross, stone, wayside shrine, wayside shrine, wayside cross, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, yes, yes, yes, yes, yes, yes, yes, memorial, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, memorial, stone, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, stone, archaeological site, archaeological site, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, archaeological site, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, boundary stone, wayside cross, wayside cross, castle, wayside cross, wayside shrine, boundary stone, wayside cross, wayside cross, boundary stone, wayside cross, memorial, memorial, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, battlefield, archaeological site, city gate, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside shrine, memorial, memorial, memorial, wayside cross, ruins, ruins, building, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, archaeological site, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, boundary stone, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, milestone, boundary stone, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, boundary stone, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, yes, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, castle, stone, stone, stone, stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, ruins, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside cross, boundary stone, stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, ruins, wayside cross, wayside chapel, wayside chapel, stone, stone, stone, wayside cross, stone, stone, stone, stone, stone, stone, wayside shrine, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, technical monument, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, castle, memorial, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, memorial, wayside shrine, castle, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, ruins, wayside shrine, memorial, wayside cross, wayside cross, boundary stone, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, battlefield, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, memorial, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, city gate, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside shrine, archaeological site, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, memorial, ruins, castle, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, stone, stone, stone, wayside shrine, stone, stone, stone, stone, memorial, memorial, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, yes, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, ruins, castle, wayside cross, wayside cross, archaeological site, wayside shrine, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, memorial, ruins, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, archaeological site, wayside shrine, castle, archaeological site, memorial, memorial, wayside cross, memorial, wayside chapel, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, stone, stone, wayside cross, memorial, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, ruins, ruins, ruins, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, monument, monument, monument, monument, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, memorial, memorial, ruins, wayside cross, memorial, wayside cross, wayside cross, ruins, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, milestone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, church, memorial, memorial, memorial, ruins, ruins, ruins, wayside cross, wayside cross, memorial, wayside cross, archaeological site, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, monument, wayside cross, castle, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, castle, memorial, boundary stone, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, stone, stone, memorial, stone, wayside cross, wayside cross, archaeological site, archaeological site, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, castle, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, yes, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, tomb, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, archaeological site, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, heritage, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, building, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, archaeological site, archaeological site, wayside cross, wayside cross, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside chapel, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, yes, ruins, wayside cross, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, city gate, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, tower, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside shrine, wayside cross, wayside chapel, wayside cross, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, boundary stone, stone, stone, stone, boundary stone, yes, wayside cross, stone, wayside cross, wayside cross, stone, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, yes, monument, memorial, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, stone, stone, stone, stone, wayside cross, stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, city gate, city gate, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, memorial, stone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, stone, memorial, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, archaeological site, archaeological site, stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, castle, wayside cross, wayside cross, wayside shrine, monument, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, boundary stone, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, wayside cross, archaeological site, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside cross, memorial, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, ruins, ruins, wayside cross, archaeological site, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside cross, wayside shrine, wayside cross, castle, memorial, memorial, memorial, ruins, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, castle, archaeological site, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, technical monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, ruins, castle, ruins, memorial, memorial, memorial, wayside cross, boundary stone, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, castle, milestone, wayside cross, memorial, memorial, memorial, boundary stone, boundary stone, memorial, wayside shrine, archaeological site, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, memorial, memorial, memorial, memorial, memorial, yes, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, milestone, milestone, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, archaeological site, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, ruins, monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, prayer site, memorial, stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, archaeological site, ruins, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside shrine, wayside cross, ruins, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, yes, memorial, yes, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, boundary stone, wayside cross, castle, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, archaeological site, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, memorial, memorial, stone, wayside cross, memorial, memorial, memorial, technical monument, memorial, wayside cross, memorial, memorial, wayside cross, ruins, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, boundary stone, memorial, wayside shrine, wayside shrine, wayside cross, yes, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, church, church, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, boundary stone, wayside cross, wayside cross, castle, wayside cross, wayside chapel, wayside cross, boundary stone, memorial, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside shrine, wayside shrine, wayside cross, wayside cross, monument, memorial, wayside cross, wayside cross, memorial, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside cross, archaeological site, wayside cross, wayside cross, tomb, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, castle, archaeological site, archaeological site, archaeological site, archaeological site, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, archaeological site, wayside shrine, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, ruins, wayside cross, ruins, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, pillory, pillory, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, ruins, castle, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside chapel, memorial, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, ruins, ruins, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, archaeological site, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, battlefield, wayside cross, wayside cross, boundary stone, memorial, wayside shrine, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, ruins, ruins, ruins, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, obelisk, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, yes, memorial, wayside cross, wayside cross, wayside shrine, wayside chapel, wayside chapel, wayside chapel, wayside chapel, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, memorial, archaeological site, archaeological site, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, yes, memorial, memorial, yes, memorial, memorial, memorial, heritage, wayside shrine, tomb, tomb, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, yes, yes, yes, yes, yes, yes, yes, yes, yes, castle, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, technical monument, technical monument, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, boundary stone, aircraft, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, castle, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, archaeological site, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, boundary stone, boundary stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, yes, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, yes, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, boundary stone, boundary stone, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, stone, wayside cross, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, church, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, battlefield, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, milestone, building, door, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, stone, wayside shrine, wayside shrine, stone, stone, stone, stone, stone, stone, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, ruins, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, city gate, church, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, door, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, stone, stone, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside shrine, archaeological site, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, archaeological site, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, industrial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, archaeological site, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, yes, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, ruins, palace, wayside cross, boundary stone, wayside cross, archaeological site, yes, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, castle, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, stone, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, boundary stone, wayside cross, wayside cross, castle, wayside cross, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, memorial, archaeological site, wayside shrine, wayside cross, wayside shrine, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, yes, memorial, archaeological site, wayside cross, archaeological site, wayside cross, stone, stone, stone, stone, stone, stone, stone, battlefield, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, milestone, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, memorial, wayside chapel, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, memorial, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, memorial, boundary stone, memorial, memorial, wayside cross, ruins, ruins, ruins, boundary stone, boundary stone, ruins, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, memorial, memorial, wayside cross, wayside cross, boundary stone, wayside chapel, wayside chapel, wayside cross, wayside cross, memorial, milestone, stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, archaeological site, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, memorial, memorial, boundary stone, boundary stone, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, memorial, stone, stone, memorial, stone, mine adit, stone, stone, wayside cross, wayside shrine, memorial, boundary stone, memorial, memorial, wayside cross, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, memorial, stone, wayside cross, stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, ruins, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, stone, stone, wayside shrine, stone, stone, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, ruins, wayside cross, wayside cross, memorial, memorial, locomotive, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, ruins, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, stone, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, tomb, tower, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, castle, wayside chapel, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, city gate, city gate, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, mining waggons, industrial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, memorial, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, technical monument, monument, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside cross, tree shrine, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, memorial, wayside cross, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, memorial, boundary stone, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, boundary stone, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, city wall, building, castle, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, monument, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, castle, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, heritage, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, memorial, boundary stone, wayside cross, wayside cross, wayside shrine, wayside shrine, archaeological site, city gate, city gate, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, monument, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, memorial, wayside shrine, memorial, memorial, memorial, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, boundary stone, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, milestone, wayside cross, wayside cross, memorial, ruins, milestone, stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, archaeological site, yes, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, boundary stone, memorial, memorial, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, yes, yes, ruins, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, archaeological site, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, boundary stone, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, boundary stone, memorial, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, memorial, aircraft, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, milestone, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, ruins, memorial, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, tomb, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, yes, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, memorial, wayside cross, memorial, memorial, wayside shrine, wayside shrine, technical monument, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, archaeological site, memorial, wayside cross, wayside cross, wayside cross, wayside cross, ruins, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, technical monument, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside shrine, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, memorial, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, milestone, memorial, memorial, wayside cross, farm, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, manor, wayside cross, memorial, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, ruins, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, heritage, memorial, memorial, memorial, memorial, wayside cross, stone, wayside shrine, monument, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside shrine, wayside cross, wayside shrine, ruins, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, building, yes, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, ruins, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, battlefield, memorial, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside shrine, castle, wayside cross, milestone, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, memorial, heritage, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, boundary stone, memorial, memorial, wayside shrine, building, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, yes, wayside chapel, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, boundary stone, milestone, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, castle, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, boundary stone, wayside shrine, Water pump, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, wayside shrine, memorial, wayside shrine, wayside cross, wayside shrine, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside chapel, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, boundary stone, memorial, memorial, boundary stone, wayside cross, memorial, heritage, memorial, wayside cross, memorial, milestone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, ruins, ruins, ruins, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, memorial, memorial, archaeological site, ruins, ruins, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside chapel, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, tumulus, boundary stone, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside chapel, wayside shrine, wayside shrine, stone, wayside shrine, wayside cross, wayside cross, stone, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, milestone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, archaeological site, archaeological site, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, yes, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, boundary stone, memorial, memorial, wayside cross, wayside cross, archaeological site, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, archaeological site, boundary stone, memorial, wayside cross, wayside cross, wayside cross, memorial, heritage, city gate, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, tomb, tomb, tomb, memorial, tomb, tomb, memorial, memorial, memorial, memorial, memorial, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, archaeological site, milestone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, milestone, tomb, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, stone, memorial, memorial, memorial, wayside cross, stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, memorial, memorial, boundary stone, wayside cross, wayside cross, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, stone, stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, wayside cross, yes, wayside cross, stone, stone, stone, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, stone, stone, stone, ruins, wayside shrine, stone, memorial, memorial, ruins, wayside cross, memorial, archaeological site, stone, stone, stone, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, stone, stone, wayside shrine, stone, stone, memorial, castle, castle, wayside shrine, stone, wayside shrine, stone, wayside cross, wayside shrine, wayside cross, memorial, stone, stone, stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, stone, stone, memorial, memorial, castle, wayside cross, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, archaeological site, memorial, memorial, wayside shrine, wayside cross, wayside cross, stone, stone, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, building, stone, stone, stone, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, stone, stone, archaeological site, castle, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside shrine, city gate, stone, stone, memorial, memorial, memorial, monument, wayside shrine, wayside shrine, wayside shrine, memorial, wayside shrine, wayside cross, memorial, wayside cross, stone, stone, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, ruins, boundary stone, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, stone, archaeological site, memorial, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, memorial, memorial, wayside shrine, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, archaeological site, archaeological site, ruins, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, memorial, memorial, memorial, wayside cross, wayside shrine, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, memorial, wayside shrine, archaeological site, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, ruins, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, archaeological site, boundary stone, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, wayside shrine, aircraft, yes, boundary stone, wayside cross, castle, wayside shrine, memorial, yes, memorial, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, memorial, memorial, wayside cross, memorial, ruins, city gate, wayside cross, wayside shrine, memorial, wayside shrine, memorial, wayside shrine, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, ruins, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, monastery, memorial, wayside cross, ruins, memorial, memorial, yes, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, wayside shrine, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, boundary stone, boundary stone, yes, wayside cross, wayside cross, ruins, wayside cross, wayside cross, yes, yes, yes, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, castle, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, ruins, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, archaeological site, memorial, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, memorial, wayside cross, memorial, memorial, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside chapel, ruins, ruins, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, stone, wayside cross, memorial, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside chapel, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, boundary stone, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside shrine, yes, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, yes, yes, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, stone, yes, wayside cross, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, milestone, milestone, memorial, wayside cross, wayside cross, tumulus, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, archaeological site, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, memorial, yes, memorial, wayside shrine, boundary stone, boundary stone, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, ruins, ruins, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, stone, memorial, wayside cross, wayside cross, wayside chapel, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside shrine, wayside shrine, stone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, castle, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, wayside cross, wayside cross, castle, wayside chapel, wayside chapel, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside shrine, wayside shrine, wayside shrine, monument, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, ruins, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, stone, stone, memorial, wayside cross, stone, wayside shrine, wayside shrine, wayside shrine, archaeological site, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, yes, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside chapel, wayside cross, wayside shrine, wayside cross, boundary stone, wayside cross, boundary stone, wayside shrine, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, memorial, castle, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, archaeological site, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, memorial, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, hamlet, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, monument, wayside shrine, wayside shrine, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, castle, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside chapel, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, memorial, yes, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside chapel, memorial, milestone, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, stone, stone, boundary stone, wayside shrine, wayside cross, wayside cross, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, castle, ruins, ruins, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, memorial, wayside cross, stone, wayside cross, memorial, wayside cross, yes, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, ruins, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, boundary stone, boundary stone, memorial, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, monument, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, stone, stone, stone, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, castle, water wheel, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, memorial, tower, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, stone, stone, stone, stone, stone, stone, stone, stone, stone, yes, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, memorial, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, wayside cross, memorial, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, memorial, wayside shrine, memorial, wayside cross, archaeological site, wayside cross, memorial, yes, yes, memorial, ruins, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside chapel, wayside cross, memorial, wayside cross, milestone, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, memorial, memorial, archaeological site, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside chapel, wayside shrine, wayside chapel, wayside chapel, wayside cross, archaeological site, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, monument, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, boundary stone, boundary stone, way side cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, stone, wayside cross, stone, wayside cross, stone, wayside shrine, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside chapel, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, stone, stone, stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, boundary stone, wayside shrine, wayside shrine, wayside shrine, memorial, archaeological site, memorial, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, milestone, milestone, milestone, memorial, memorial, memorial, wayside shrine, wayside shrine, Alte Brennerei, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, technical monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, milestone, wayside cross, wayside cross, memorial, wayside cross, stone, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, castle, boundary stone, wayside cross, yes, memorial, memorial, memorial, memorial, boundary stone, boundary stone, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside shrine, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, monument, monument, wayside shrine, wayside cross, memorial, stone, stone, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, stone, stone, stone, memorial, wayside cross, stone, stone, stone, stone, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, quarry, memorial, tumulus, memorial, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, milestone, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, archaeological site, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, boundary stone, wayside cross, memorial, memorial, wayside shrine, boundary stone, boundary stone, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, boundary stone, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, stone, stone, wayside cross, wayside shrine, wayside shrine, memorial, wayside shrine, monument, wayside shrine, wayside shrine, wayside cross, boundary stone, wayside cross, archaeological site, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, boundary stone, ruins, monument, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, castle, wayside cross, yes, memorial, memorial, wayside shrine, boundary stone, wayside cross, boundary stone, memorial, wayside cross, monument, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, boundary stone, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, memorial, memorial, memorial, memorial, wayside shrine, memorial, wayside cross, tumulus, wayside cross, monument, monument, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, wayside cross, wayside shrine, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, milestone, wayside cross, wayside cross, yes, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside chapel, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, stone, stone, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, archaeological site, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, stone, wayside shrine, wayside cross, stone, memorial, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, yes, wayside shrine, wayside shrine, wayside cross, memorial, memorial, memorial, wayside cross, castle, wayside cross, wayside cross, boundary stone, boundary stone, memorial, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, ruins, wayside shrine, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, wayside cross, milestone, memorial, monument, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside shrine, wayside shrine, boundary stone, wayside cross, wayside cross, wayside shrine, wayside shrine, memorial, wayside cross, wayside cross, monument, wayside cross, ruins, memorial, ruins, wayside cross, wayside shrine, castle, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, memorial, memorial, memorial, ruins, wayside shrine, wayside cross, monument, boundary stone, wayside cross, locomotive, locomotive, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, stone, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, memorial, memorial, monument, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, memorial, boundary stone, boundary stone, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside cross, yes, boundary stone, wayside cross, wayside cross, wayside cross, statue, wayside shrine, statue, memorial, statue, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, boundary stone, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, memorial, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, ruins, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, stone, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, milestone, wayside cross, memorial, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, memorial, tumulus, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, yes, milestone, memorial, castle, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside shrine, wayside shrine, memorial, wayside shrine, ruins, wayside cross, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, archeological site, wayside cross, monument, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside shrine, wayside shrine, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, building, wayside cross, wayside cross, wayside cross, wayside cross, city gate, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside chapel, wayside cross, wayside cross, monument, memorial, memorial, stone, boundary stone, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, boundary stone, castle, boundary stone, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, boundary stone, ruins, wayside cross, castle, boundary stone, memorial, wayside cross, wayside shrine, wayside shrine, yes, wayside cross, wayside cross, memorial, wayside shrine, wayside shrine, wayside shrine, boundary stone, boundary stone, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, memorial, memorial, memorial, memorial, wayside cross, locomotive, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, memorial, wayside cross, memorial, wayside cross, yes, wayside cross, wayside cross, wayside cross, wayside cross, boundary stone, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, boundary stone, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, yes, ruins, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, boundary stone, wayside cross, wayside shrine, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, monument, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, information, wayside chapel, wayside cross, memorial, wayside cross, wayside cross, wayside cross, yes, wayside cross, wayside shrine, wayside shrine, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, gi, wayside cross, wayside cross, wayside shrine, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, wayside cross, wayside cross, monument, wayside cross, memorial, wayside cross, wayside shrine, cemetery, memorial, yes, castle, castle, castle, castle, castle, yes, castle, castle, yes, building, church, yes, yes, archaeological site, castle, yes, archaeological site, archaeological site, yes, castle, yes, archaeological site, yes, building, yes, building, building, archaeological site, church, castle, castle, heritage, citywalls, citywalls, citywalls, citywalls, yes, heritage, military, yes, highway, yes, tomb, memorial, castle, heritage, heritage, heritage, building, castle, archaeological site, heritage, castle, ruins, monument, castle, monument, ruins, yes, heritage, castle, yes, archaeological site, tomb, castle, bridge, castle, castle, citywalls, castle, yes, yes, castle, citywalls, castle, citywalls, memorial, building, building, yes, building, yes, yes, castle, castle, castle, archaeological site, ruins, citywalls, citywalls, archaeological site, battlefield, castle, castle, castle, castle, castle, heritage, heritage, memorial, castle, ruins, ruins, church, building, building, technical monument, Competition site of the Olympic Games 1972, castle, yes, yes, industrial, castle, ruins, castle, castle, castle, heritage, city gate, city gate, yes, yes, yes, citywalls, yes, citywalls, castle, yes, tomb, castle, heritage, castle, castle, building, building, monastery, castle, city gate, citywalls, citywalls, citywalls, castle, yes, castle, castle, castle, building, castle, ruins, ruins, track, building, castle, castle, castle, castle, castle, yes, castle, yes, castle, castle, monument, track, yes, castle, castle, Altstraße, Altstraße, castle, castle, castle, monument, yes, church, powerline, castle, castle, castle, castle, castle, castle, Altstraße, monument, wayside cross, castle, track, ruins, yes, yes, steps, ruins, ruins, church, ruins, castle, ruins, monument, castle, castle, building, castle, castle, yes, building, building, building, building, building, building, city gate, castle, yes, church, memorial, yes, heritage, guesthouse, heritage, yes, building, building, building, building, building, yes, railway station, castle, archaeological site, archaeological site, city wall, castle, castle, castle, heritage, yes, building, yes, castle, yes, yes, yes, yes, yes, yes, yes, yes, castle, yes, citywalls, church, yes, building, yes, citywalls, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, house, church, citywalls, citywalls, citywalls, building, building, building, building, building, building, building, building, building, building, building, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, building, citywalls, house, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, yes, castle, ruins, yes, castle, watermill, castle, building, building, building, castle, yes, building, castle, memorial, archaeological site, wayside shrine, castle, monument, castle, building, building, castle, building, yes, castle, yes, ruins, yes, hollow lane, wayside shrine, building, city gate, castle, yes, castle, castle, castle, building, castle, city gate, city gate, city gate, castle, castle, archaeological site, ruins, ruins, castle, ruins, Driftlehrpfad, castle, heritage, castle, castle, castle, castle, castle, yes, yes, yes, ruins, yes, yes, building, yes, yes, archaeological site, building, building, building, building, building, building, building, building, monument, memorial, heritage, castle, ruins, railway station, archaeological site, archaeological site, citywalls, heritage, castle, ruins, yes, ruins, yes, city gate, building, building, yes, memorial, yes, building, citywalls, ruins, ruins, castle, yes, tomb, castle, archaeological site, monastery, archaeological site, building, building, building, building, castle, citywalls, building, 1935-1945:Reichszeugmeisterei, citywalls, yes, yes, memorial, building, castle, heritage, railway station, heritage, footway, memorial, cityhall, castle, castle, castle, castle, castle, castle, castle, castle, yes, castle, ruins, hollow lane, ruins, yes, citywalls, castle, wayside cross, yes, yes, yes, watermill, monument, castle, castle, tower, castle, castle, castle, building, monument, yes, yes, castle, archaeological site, archaeological site, archaeological site, archaeological site, yes, yes, building, castle, building, building, castle, yes, building, building, building, city gate, memorial, track, track, castle, church, yes, citywalls, citywalls, castle, castle, castle, Altstraße, yes, castle, castle, Altstrasse, Altstraße, hollow way, hollow way, Altstraße, Altstraße, Altstraße, Altstraße, Altstraße, Highway, Altstraße, yes, archaeological site, archaeological site, tower, railway station, heritage, heritage, street, Altstraße, heritage, castle, yes, building, building, monument, building, building, building, building, building, building, building, building, building, Altstraße, building, building, building, ruins, ruins, castle, building, building, building, building, castle, yes, Altstraße, Altstraße, Altstraße, Altstraße, building, building, heritage, heritage, heritage, building, building, building, building, building, building, building, building, building, heritage, building, Altstraße, Altstraße, Altstraße, Altstraße, Altstraße, yes, castle, building, building, building, building, building, building, hollow way, Altstraße, citywalls, ruins, yes, building, city gate, yes, city gate, city gate, church, Altstrasse, Altstraße, Altstraße, wayside shrine, building, building, building, building, building, building, castle, Altstraße, castle, castle, ruins, castle, citywalls, city gate, building, building, castle, ruins, castle, archaeological site, memorial, castle, castle, heritage, tollhouse, hollow lane, ruins, memorial, castle, monument, castle, Altstraße, building, building, city gate, building, memorial, ruins, building, building, building, building, building, building, building, building, memorial, yes, heritage, city gate, ruins, archaeological site, castle, ruins, castle, building, building, building, building, building, building, building, building, building, castle, yes, tower, yes, ruins, memorial, archaeological site, castle, monument, castle, yes, yes, yes, yes, yes, castle, building, Altstraße, wayside shrine, heritage, yes, building, castle, building, tower, Altstrasse, Altstrasse, Altstrasse, Altstrasse, Altstrasse, heritage, archaeological site, ruins, ruins, ruins, ruins, building, memorial, ship, yes, yes, castle, yes, Altstrasse, Altstraße, Altstraße, Altstraße, castle, Altstrasse, Altstraße, Altstraße, Altstraße, ruins, heritage, castle, archaeological site, building, yes, castle, yes, Altstraße, Altstraße, Altstraße, Altstraße, castle, archaeological site, Altstraße, memorial, building, memorial, ruins, archaeological site, castle, castle, building, castle, building, archaeological site, memorial, ship, archaeological site, memorial, yes, building, memorial, building, building, building, archaeological site, archaeological site, archaeological site, archaeological site, yes, building, building, building, building, building, building, building, building, building, building, building, castle, yes, archaeological site, yes, castle, castle, castle, castle, yes, yes, Altstraße, castle, ruins, memorial, yes, bridge, tower, archaeological site, castle, Altstraße, Altstraße, Altstraße, Altstraße, hollow way, hollow way, Altstraße, Altstraße, hollow way, hollow way, hollow way, hollow way, hollow way, hollow way, Altstraße, hollow way, castle, yes, yes, yes, yes, yes, yes, Autobahnruine Strecke 46, memorial, archaeological site, archaeological site, castle, ruins, castle, yes, yes, yes, yes, archaeological site, citywalls, castle, church, hollow way, hollow way, Altstraße, Altstraße, hollow way, hollow way, Altstraße, castle, castle, citywalls, citywalls, citywalls, citywalls, Altstraße, hollow way, hollow way, Altstraße, Altstraße, ruins, ruins, yes, yes, memorial, castle, castle, castle, ruins, city gate, Altstraße, Altstraße, Altstraße, wayside shrine, castle, archaeological site, archaeological site, hollow lane, house, memorial, castle, yes, yes, yes, city gate, castle, yes, archaeological site, citywalls, heritage, castle, castle, heritage, heritage, ruins, yes, yes, castle, monastery, church, heritage, heritage, monastery, heritage, castle, railway station, heritage, monastery, building, castle, boundary stone, bridge, archaeological site, heritage, monastery, blacksmith, yes, yes, ruins, yes, monument, castle, building, quarry, heritage, castle, citywalls, monastery, monastery, monastery, monastery, monastery, monastery, building, building, castle, ruins, castle, heritage, castle, monument, ruins, yes, heritage, heritage, monument, castle, city gate, yes, yes, hollow way, hollow way, hollow way, tower, hollow lane, memorial, ruins, wayside cross, ruins, ruins, heritage, castle, ruins, building, castle, city gate, heritage, yes, heritage, heritage, castle, building, yes, yes, castle, castle, yes, archaeological site, bridge, bridge, castle, heritage, archaeological site, heritage, heritage, archaeological site, archaeological site, building, heritage, castle, archaeological site, heritage, yes, city gate, castle, heritage, heritage, yes, yes, church, archaeological site, castle, archaeological site, archaeological site, building, building, monument, castle, ruins, yes, castle, castle, monastery, wayside cross, archaeological site, building, heritage, heritage, castle, heritage, heritage, heritage, heritage, heritage, building, yes, castle, castle, castle, castle, castle, castle, castle, castle, castle, yes, castle, castle, castle, castle, castle, castle, church, castle, castle, castle, castle, castle, castle, monument, castle, tower, castle, heritage, castle, castle, castle, yes, building, building, castle, ruins, yes, castle, track, heritage, yes, yes, yes, yes, heritage, heritage, heritage, heritage, heritage, building, heritage, memorial, castle, heritage, city gate, heritage, city gate, yes, castle, building, heritage, heritage, heritage, city gate, city gate, heritage, castle, yes, citywalls, yes, citywalls, castle, archaeological site, yes, yes, yes, heritage, castle, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, manor, heritage, heritage, castle, archaeological site, castle, castle, castle, castle, castle, yes, castle, building, archaeological site, castle, castle, Altstraße, heritage, heritage, heritage, heritage, heritage, heritage, heritage, wayside shrine, city gate, memorial, heritage, heritage, memorial, heritage, heritage, heritage, yes, yes, monument, heritage, yes, monument, heritage, heritage, building, building, heritage, heritage, heritage, castle, heritage, heritage, yes, yes, building, yes, heritage, castle, heritage, city gate, ruins, ruins, Altstraße, Altstraße, ruins, monument, yes, building, technical monument, yes, castle, castle, yes, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, building, heritage, castle, yes, yes, yes, heritage, heritage, yes, building, building, building, yes, heritage, building, building, building, building, building, building, yes, building, building, archaeological site, yes, archaeological site, building, heritage, yes, heritage, heritage, heritage, monument, castle, heritage, heritage, heritage, heritage, ruins, castle, monument, ruins, castle, heritage, heritage, yes, yes, yes, heritage, heritage, heritage, yes, memorial, building, ruins, heritage, church, castle, yes, heritage, heritage, heritage, heritage, yes, building, archaeological site, heritage, heritage, heritage, heritage, manor, ruins, heritage, heritage, heritage, heritage, monument, heritage, yes, yes, ruins, city gate, city gate, tower, castle, castle, ruins, city gate, heritage, castle, yes, heritage, yes, monument, monument, castle, heritage, hollow lane, heritage, heritage, monastery, heritage, ruins, citywalls, building, monument, city gate, citywalls, citywalls, castle, yes, yes, yes, yes, yes, ruins, heritage, memorial, memorial, memorial, memorial, heritage, castle, ruins, heritage, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, archaeological site, ruins, archaeological site, archaeological site, ruins, ruins, archaeological site, archaeological site, ruins, ruins, archaeological site, ruins, archaeological site, building, heritage, heritage, castle, heritage, church, castle, building, building, city gate, ruins, castle, memorial, Altstrasse, Altstraße, castle, castle, castle, castle, heritage, castle, castle, citywalls, yes, yes, castle, Altstraße, Altstraße, altstraße, heritage, city gate, castle, memorial, citywalls, building, building, building, castle, castle, castle, yes, Altstraße, archaeological site, castle, castle, ruins, ruins, ruins, castle, castle, castle, tower, building, heritage, heritage, castle, castle, heritage, city gate, castle, ruins, heritage, castle, heritage, memorial, castle, archaeological site, castle, castle, railway station, technical monument, heritage, castle, ruins, heritage, ruins, castle, industrial, castle, heritage, monument, heritage, heritage, heritage, heritage, memorial, heritage, yes, yes, yes, yes, yes, yes, castle, castle, city wall, city wall, city wall, city wall, city wall, city wall, city gate, city gate, castle, ruins, ruins, ruins, ruins, ruins, ruins, yes, yes, yes, yes, archaeological site, heritage, yes, monastery, citywalls, citywalls, heritage, industrial, heritage, building, yes, city gate, yes, building, building, city gate, yes, yes, yes, yes, citywalls, citywalls, building, building, building, wayside cross, tower, memorial, heritage, heritage, heritage, church, heritage, heritage, castle, monastery, monastery, monastery, heritage, heritage, heritage, castle, heritage, castle, castle, yes, castle, yes, castle, yes, heritage, heritage, ruins, church, castle, yes, yes, yes, yes, yes, yes, castle, yes, ruins, monument, heritage, monument, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, castle, castle, yes, building, yes, yes, yes, castle, castle, heritage, castle, castle, building, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, heritage, heritage, citywalls, memorial, city gate, building, building, synagoge, castle, heritage, heritage, heritage, heritage, heritage, heritage, yes, heritage, yes, city gate, heritage, monument, city gate, building, building, building, castle, lake, ruins, building, yes, ruins, yes, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, building, monument, heritage, heritage, heritage, heritage, heritage, monument, heritage, building, building, heritage, heritage, building, archaeological site, monastery, heritage, heritage, castle, bridge, monument, building, heritage, heritage, citywalls, heritage, city gate, castle, heritage, heritage, building, building, heritage, yes, yes, yes, heritage, heritage, castle, castle, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, heritage, castle, building, church, building, building, building, building, building, building, building, building, yes, city gate, heritage, city gate, building, city gate, building, heritage, heritage, ruins, memorial, wayside shrine, heritage, heritage, building, yes, building, building, building, building, wayside shrine, archaeological site, heritage, heritage, heritage, heritage, building, building, archaeological site, archaeological site, building, building, building, archaeological site, ruins, heritage, yes, yes, yes, citywalls, citywalls, city gate, archaeological site, wayside shrine, yes, heritage, heritage, heritage, hollow way, archaeological site, castle, ruins, ruins, archaeological site, ruins, ruins, ruins, ruins, ruins, ruins, ruins, ruins, wayside shrine, heritage, building, monument, castle, castle, castle, castle, archaeological site, heritage, monument, yes, yes, yes, yes, heritage, building, castle, tower, church, castle, ruins, citywalls, citywalls, heritage, archaeological site, archaeological site, heritage, heritage, building, building, building, building, building, building, building, castle, wayside shrine, building, manor, monument, citywalls, citywalls, building, yes, castle, cutting way, wayside shrine, wayside shrine, wayside shrine, heritage, heritage, yes, heritage, yes, monument, heritage, building, building, citywalls, citywalls, ruins, city gate, archaeological site, castle, citywalls, heritage, heritage, castle, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, citywalls, citywalls, citywalls, memorial, citywalls, chapel, citywalls, citywalls, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, castle, citywalls, citywalls, citywalls, citywalls, citywalls, yes, ruins, ruins, ruins, castle, castle, castle, heritage, building, church, citywalls, castle, building, yes, castle, memorial, castle, memorial, yes, yes, city gate, yes, yes, citywalls, archaeological site, cityhall, citywalls, citywalls, citywalls, heritage, yes, citywalls, castle, castle, castle, castle, city gate, citywalls, castle, castle, castle, castle, tower, citywalls, yes, castle, heritage, ship, castle, ruins, heritage, heritage, heritage, church, archaeological site, archaeological site, yes, castle, castle, yes, heritage, archaeological site, tower, archaeological site, church, castle, heritage, building, yes, yes, heritage, ruins, castle, castle, castle, castle, building, heritage, monument, castle, citywalls, building, heritage, heritage, memorial, castle, building, building, building, building, building, building, building, battlefield, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, ruins, memorial, castle, castle, heritage, castle, archaeological site, heritage, building, park, heritage, castle, ship, heritage, castle, yes, building, heritage, heritage, heritage, heritage, castle, yes, wayside shrine, building, heritage, heritage, castle, building, memorial, heritage, heritage, yes, heritage, yes, archaeological site, archaeological site, archaeological site, archaeological site, castle, building, building, city gate, ruins, yes, castle, archaeological site, archaeological site, memorial, castle, archaeological site, ruins, wayside shrine, ruins, wayside shrine, wayside shrine, wayside shrine, wayside shrine, castle, tower, memorial, monastery, archaeological site, ruins, memorial, heritage, yes, wayside shrine, castle, castle, castle, yes, yes, wayside shrine, hollow way, city wall, city wall, citywalls, citywalls, citywalls, heritage, ruins, castle, archaeological site, ruins, ruins, castle, heritage, ruins, ruins, mine, castle, castle, castle, castle, castle, city gate, archaeological site, castle, castle, memorial, castle, monument, castle, castle, yes, castle, track, castle, building, hollow way, memorial, heritage, castle, castle, castle, yes, memorial, wayside shrine, yes, heritage, church, ruins, ruins, building, building, monument, ruins, yes, yes, yes, castle, castle, church, yes, yes, yes, yes, building, castle, heritage, monument, heritage, castle, wayside shrine, church, ship, church, castle, castle, castle, yes, building, memorial, castle, railway station, heritage, citywalls, citywalls, heritage, citywalls, citywalls, Altstraße, Altstraße, manor, building, yes, castle, building, yes, castle, castle, archaeological site, heritage, archaeological site, yes, yes, wayside shrine, wayside shrine, wayside shrine, castle, archaeological site, heritage, heritage, castle, castle, wayside shrine, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, castle, city gate, boundary stone, building, tower, citywalls, tower, railway station, memorial, archaeological site, yes, city gate, heritage, yes, city gate, city gate, city gate, heritage, citywalls, citywalls, citywalls, heritage, city gate, castle, heritage, yes, ruins, heritage, castle, castle, heritage, monument, yes, yes, ruins, ruins, castle, wayside chapel, castle, ruins, church, building, building, castle, yes, city gate, city gate, yes, castle, yes, ruins, yes, citywalls, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, castle, ruins, yes, yes, yes, city gate, heritage, monument, memorial, archaeological site, heritage, heritage, castle, yes, city gate, yes, building, building, building, building, building, building, building, heritage, archaeological site, yes, church, church, castle, wayside chapel, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, ruins, memorial, ruins, castle, castle, castle, building, citywalls, building, building, building, citywalls, building, building, building, building, building, building, building, building, building, building, building, building, castle, building, city gate, castle, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, city gate, city gate, city gate, city gate, citywalls, yes, city gate, city gate, yes, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, city gate, citywalls, citywalls, citywalls, citywalls, heritage, heritage, heritage, citywalls, citywalls, citywalls, building, building, building, building, building, building, building, building, building, ruins, heritage, heritage, heritage, archaeological site, battlefield, yes, castle, ruins, castle, castle, castle, hollow way, castle, ruins, ruins, castle, heritage, castle, heritage, yes, castle, citywalls, citywalls, citywalls, memorial, ruins, heritage, yes, yes, yes, yes, city gate, yes, city gate, yes, yes, yes, yes, yes, citywalls, citywalls, citywalls, memorial, city gate, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, memorial, tomb, yes, monument, castle, ruins, yes, heritage, heritage, yes, citywalls, citywalls, citywalls, heritage, heritage, building, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, castle, heritage, heritage, monastery, heritage, heritage, building, heritage, building, castle, memorial, heritage, heritage, city gate, building, building, building, castle, yes, building, building, castle, city gate, building, heritage, city gate, city gate, citywalls, citywalls, citywalls, yes, castle, heritage, yes, yes, city gate, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, church, building, yes, monument, castle, building, castle, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, yes, building, yes, city gate, yes, yes, heritage, castle, building, heritage, heritage, heritage, archaeological site, building, building, building, building, building, building, building, building, building, yes, heritage, heritage, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, tower, memorial, city gate, heritage, heritage, castle, building, building, ruins, heritage, heritage, citywalls, city gate, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, ruins, heritage, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, city wall, ruins, citywalls, citywalls, citywalls, citywalls, castle, castle, memorial, ruins, castle, ruins, castle, yes, yes, yes, yes, city gate, yes, yes, yes, monument, yes, city gate, city gate, yes, yes, heritage, city gate, heritage, yes, ruins, heritage, city gate, heritage, city gate, yes, building, building, building, building, yes, castle, yes, city gate, yes, archaeological site, archaeological site, yes, towngate, castle, ruins, archaeological site, ruins, castle, citywalls, yes, heritage, yes, citywalls, citywalls, citywalls, citywalls, citywalls, castle, yes, building, building, building, building, building, building, building, building, heritage, wayside shrine, castle, castle, castle, heritage, heritage, ruins, ruins, railway station, city gate, city gate, castle, yes, yes, building, tower, yes, yes, yes, yes, yes, archaeological site, no, citywalls, citywalls, citywalls, citywalls, building, yes, castle, building, building, heritage, citywalls, citywalls, heritage, citywalls, citywalls, spital, memorial, castle, archaeological site, citywalls, ruins, city gate, city gate, city gate, yes, city gate, city gate, castle, building, yes, quarry, yes, yes, yes, yes, yes, monument, memorial, wayside chapel, building, building, church, building, heritage, city gate, castle, building, building, building, building, building, building, building, building, building, building, building, building, building, building, building, castle, building, wayside chapel, archaeological site, citywalls, heritage, archaeological site, archaeological site, church, building, building, building, building, building, monument, castle, castle, castle, castle, building, building, building, building, building, building, building, building, building, building, heritage, church, ruins, heritage, heritage, heritage, heritage, heritage, heritage, city gate, monument, building, building, building, building, building, building, castle, heritage, heritage, church, yes, yes, watermill, castle, castle, heritage, heritage, castle, heritage, heritage, monument, building, heritage, castle, building, building, building, castle, building, castle, citywalls, heritage, building, city gate, heritage, castle, church, church, ruins, yes, yes, building, building, yes, yes, castle, yes, yes, yes, yes, yes, wayside chapel, chapel, heritage, castle, castle, heritage, heritage, yes, building, building, building, heritage, yes, city gate, city gate, building, building, building, building, building, building, building, city wall, yes, yes, yes, building, building, building, building, building, yes, memorial, building, building, building, building, building, castle, castle, monument, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, citywalls, heritage, castle, city gate, building, castle, city gate, building, castle, heritage, memorial, building, yes, heritage, city wall, city wall, yes, citywalls, yes, heritage, city gate, memorial, ruins, ruins, wayside shrine, heritage, heritage, church, wayside shrine, ship, heritage, heritage, heritage, yes, castle, ruins, aircraft, aircraft, aircraft, monastery, wayside chapel, heritage, heritage, castle, heritage, heritage, heritage, heritage, heritage, heritage, heritage, castle, castle, yes, castle, yes, building, yes, wayside shrine, heritage, archaeological site, archaeological site, archaeological site, heritage, archaeological site, memorial, yes, building, castle, castle, heritage, heritage, heritage, castle, memorial, heritage, heritage, yes, heritage, heritage, heritage, castle, railway station, building, building, building, building, building, building, building, building, tower, yes, heritage, archaeological site, wayside chapel, city gate, building, citywalls, citywalls, citywalls, heritage, yes, yes, yes, heritage, yes, castle, yes, city wall, city wall, citywalls, archaeological site, heritage, citywalls, heritage, heritage, castle, castle, citywalls, citywalls, citywalls, yes, heritage, yes, yes, heritage, city gate, yes, yes, yes, yes, yes, yes, heritage, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, yes, yes, city gate, city gate, city gate, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, yes, yes, yes, yes, yes, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, monastery, yes, yes, citywalls, memorial, building, heritage, heritage, heritage, heritage, memorial, heritage, heritage, memorial, ruins, castle, castle, castle, castle, castle, yes, heritage, heritage, castle, wayside shrine, castle, citywalls, memorial, wayside shrine, memorial, castle, monument, yes, yes, yes, yes, building, castle, archaeological site, ruins, yes, castle, yes, railway station, monastery, castle, wayside chapel, archaeological site, castle, castle, citywalls, building, heritage, building, castle, building, castle, yes, yes, yes, wayside chapel, heritage, heritage, archaeological site, heritage, castle, castle, ruins, heritage, wayside shrine, wayside shrine, wayside shrine, castle, wayside shrine, yes, ruins, yes, yes, yes, yes, yes, yes, building, castle, heritage, castle, yes, heritage, heritage, archaeological site, memorial, castle, city gate, city gate, city gate, yes, yes, yes, yes, archaeological site, yes, heritage, heritage, heritage, building, roman road, castle, memorial, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, chapel, memorial, memorial, citywalls, citywalls, archaeological site, yes, heritage, heritage, yes, monastery, yes, building, ship, ruins, ruins, heritage, ruins, heritage, memorial, castle, yes, yes, railway station, yes, yes, yes, yes, heritage, monastery, castle, yes, Altstraße, Altstraße, citywalls, heritage, castle, citywalls, yes, city gate, citywalls, castle, castle, castle, citywalls, citywalls, archaeological site, ruins, wayside shrine, ruins, memorial, monastery, railway station, wayside shrine, yes, yes, building, building, heritage, heritage, heritage, heritage, heritage, city wall, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, archaeological site, building, citywalls, citywalls, manor, heritage, city gate, railway station, wayside shrine, heritage, citywalls, building, tower, building, building, tower, heritage, ruins, castle, castle, building, castle, castle, building, castle, castle, wayside chapel, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, yes, memorial, heritage, yes, archaeological site, building, castle, wayside chapel, citywalls, citywalls, archaeological site, heritage, city gate, citywalls, castle, city gate, building, memorial, yes, yes, yes, ruins, heritage, heritage, heritage, heritage, yes, heritage, building, archaeological site, archaeological site, archaeological site, archaeological site, chapel, chapel, castle, heritage, heritage, heritage, castle, castle, castle, ruins, ruins, castle, yes, yes, castle, archaeological site, citywalls, castle, ruins, city gate, ruins, yes, citywalls, archaeological site, castle, wayside shrine, building, citywalls, heritage, yes, memorial, memorial, yes, yes, yes, yes, ruins, yes, heritage, ruins, yes, wayside shrine, memorial, heritage, wayside shrine, memorial, underground fortifications, yes, yes, yes, castle, yes, industrial, yes, yes, yes, archaeological site, castle, castle, memorial, memorial, building, monument, ruins, archaeological site, heritage, yes, ruins, wall, track, wall, path, archaeological site, archaeological site, tomb, archaeological site, memorial, citywalls, citywalls, citywalls, citywalls, citywalls, heritage, heritage, heritage, archaeological site, building, building, church, archaeological site, castle, yes, yes, castle, yes, castle, yes, yes, yes, yes, yes, wayside shrine, yes, yes, yes, hollowway, hollowway, heritage, ruins, ruins, tower, ditch, wayside shrine, yes, tower, city gate, yes, yes, archaeological site, archaeological site, castle, archaeological site, archaeological site, building, archaeological site, castle, heritage, monastery, monastery, monastery, memorial, archaeological site, yes, heritage, memorial, ruins, ruins, city gate, castle, memorial, ruins, ruins, yes, castle, monument, memorial, ruins, heritage, ruins, castle, city wall, city wall, road, road, heritage, castle, ruins, castle, ruins, city wall, city wall, heritage, ruins, monument, monument, yes, ruins, wayside chapel, yes, yes, ruins, heritage, castle, ruins, heritage, memorial, wall, city wall, yes, yes, yes, yes, yes, memorial, citywalls, yes, wayside shrine, castle, city gate, memorial, archaeological site, chapel, castle, building, wayside shrine, city gate, yes, city gate, yes, yes, yes, city gate, memorial, memorial, memorial, memorial, wayside chapel, memorial, tower, Driftlehrpfad, archaeological site, ruins, wayside chapel, wayside shrine, archaeological site, castle, hollow, building, building, yes, ruins, ruins, castle, castle, yes, wayside chapel, memorial, castle, castle, castle, castle, ruins, manor, yes, memorial, castle, wayside shrine, archaeological site, ruins, monument, tomb, castle, ruins, tomb, building, building, monastery, building, archaeological site, building, castle, castle, ruins, yes, yes, yes, yes, ruins, castle, castle, wayside shrine, city gate, city gate, citywalls, citywalls, citywalls, yes, castle, yes, memorial, building, castle, Driftlehrpfad, wayside chapel, burial mound, burial mound, wayside shrine, church, church, castle, castle, building, railway, castle, building, wayside shrine, city gate, memorial, archaeological site, archaeological site, memorial, wayside shrine, citywalls, yes, city gate, building, yes, yes, building, building, city gate, city gate, yes, building, yes, city gate, yes, city gate, yes, castle, yes, city gate, yes, city gate, building, building, ruins, yes, yes, yes, yes, yes, castle, memorial, yes, yes, yes, city gate, city gate, yes, yes, wayside cross, castle, memorial, archaeological site, citywalls, citywalls, citywalls, citywalls, archaeological site, yes, bridge, locomotive, wayside chapel, wayside chapel, archaeological site, memorial, yes, heritage, heritage, heritage, heritage, heritage, building, memorial, yes, building, memorial, monastery, yes, building, heritage, heritage, heritage, heritage, heritage, castle, castle, ruins, yes, yes, yes, memorial, heritage, memorial, yes, archaeological site, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, heritage, memorial, castle, castle, city gate, city gate, citywalls, Altstrasse, castle, castle, yes, ruins, ruins, archaeological site, wayside chapel, wayside shrine, ruins, ruins, building, castle, ruins, ruins, ruins, heritage, church, yes, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, tower, tower, city gate, citywalls, citywalls, citywalls, tower, city gate, tower, tower, tower, castle, ruins, ruins, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, tower, tower, citywalls, tower, tower, tower, tower, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, citywalls, city gate, city gate, city gate, tower, tower, tower, tower, citywalls, citywalls, citywalls, citywalls, tower, tower, tower, tower, tower, city gate, tower, city gate, tower, citywalls, citywalls, yes, citywalls, yes, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, yes, yes, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, citywalls, citywalls, yes, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, yes, citywalls, city gate, castle, yes, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, city gate, yes, city gate, yes, citywalls, yes, yes, yes, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, citywalls, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, city gate, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, yes, citywalls, memorial, ruins, monument, citywalls, wayside chapel, wayside chapel, wayside chapel, castle, castle, ruins, building, wayside cross, yes, building, wayside chapel, castle, memorial, castle, heritage, building, wayside shrine, building, castle, heritage, castle, castle, castle, heritage, building, castle, castle, castle, castle, castle, heritage, castle, building, heritage, castle, castle, castle, castle, castle, castle, quarry, castle, castle, yes, ruins, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, building, castle, castle, archaeological site, yes, castle, castle, castle, castle, monastery, building, city gate, castle, monastery, castle, building, building, building, yes, building, building, castle, castle, building, yes, building, castle, building, castle, road, railway, railway, railway, building, building, building, heritage, building, building, archaeological site, castle, heritage, castle, castle, yes, heritage, castle, castle, heritage, castle, castle, castle, building, building, building, building, building, building, castle, citywalls, castle, ruins, ruins, castle, archaeological site, castle, castle, castle, castle, building, memorial +Musée de l'Armée, Musée de l'Assistance Publique Hôpitaux de Paris, Musée des Arts Décoratifs - Musée de la Publicité, Musée national des Arts et Métiers, Tour de Jean-sans-Peur, Musée Gustave Moreau, Les Égouts de Paris, Musée Edith Piaf, Musée Pasteur, Espace Dali, Cité des Sciences et de l'Industrie, Maison de Victor Hugo, Musée en Herbe, Maison Européenne de la Photographie, Musée de l'Eventail, Cité des Enfants (5-12 ans), Musée de la Poupée, Catacombes de Paris, Musée de l'Érotisme, Musée du Petit Palais, Musée de la Légion d'Honneur et des Ordres de Chevalerie, Conciergerie, Musée du Vin, Musée de la Poste, galerie-musée Baccarat, Salle des collections, Musée du Service de Santé des Armées, Choco-Story - Le musée gourmand du chocolat, Cité de l'architecture et du patrimoine, Musée de la Marine, Musée de la franc-maçonnerie, Espace des Sciences Pierre-Gilles de Gennes, Deyrolle, Fondation Le Corbusier, Musée de la Contrefaçon, Musée Dapper, Musée des Arts Forains, Musée Adzak - Espace d'Art International, Musée d'Anatomie Delmas-Orfila-Rouvière, Musée Arménien de France, Musée Boleslas Biegas - Musée Adam Mickiewicz, Musée Bible et Terre Sainte, Musée Bouilhet-Christofle - Musée d'Orfèvrerie, Musée Clemenceau, Musée-Librairie du Compagnonnage, Musée d'Anatomie Pathologique Dupuytren, Musée Valentin Haüy, Musée Henner, Musée d'histoire de la Médecine, Musée Maillol, Musée des Lettres et Manuscrits, Musée du Montparnasse, Musée de Minéralogie, Musée Moissan, Crypte Archéologique du Parvis Notre-Dame, Bibliothèque-Musée de l'Opéra, Musée Pierre Marly - Lunettes et Lorgnettes, Musée de la Préfecture de Police, Centre Culturel Suisse, Tour de la Cathédrale, Le trésor de Notre-Dame de Paris, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin, Musée national d'art moderne, Maxim's Art Nouveau "Collection 1900", Carrefour Numérique², Art Ludique - Le Musée, Collection des minéraux - Jussieu, Fondation Henri Cartier-Bresson, Galerie Royale, Espace Reine de Saba, Musée du Barreau, Maison de la RATP, Institut des Lettres et Manuscrits, Anciens Elèves (Musée), Musée d'Histoire contemporaine, Musée de l'Ordre de la Libération, Musée des Plans-reliefs, Catacombes de Paris, Pinacothèque de Paris 2, Musée de l'Homme, Cité des Enfants (2-7 ans), Musée du quai Branly, Galerie de Minéralogie et de Géologie, Galeries de Paléontologie et d'Anatomie comparée, Institut du Monde Arabe, Jardin Tino Rossi - Musée de la Sculpture en Plein Air, Halle Saint-Pierre, Hôtel de Sully, Le Louvre, Jeu de Paume, Musée de l'Orangerie, Atelier Brancusi, Futur Fondation Galeries Lafayette, Musée Curie, Grand Palais, Pavillon de l'Arsenal, Musée National du Moyen Âge, Musée d'Art et d'Histoire du Judaïsme, Archives Nationales, Musée de la Serrure, Musée Picasso, Musée Cognacq-Jay, Musée national Eugène Delacroix, Cité Nationale de l'Histoire de l'Immigration, Orangerie du Sénat, Musée d'Orsay, Le Musée du Fumeur, Musée national Ernest-Hébert, Institut Néerlandais, Immeuble Molitor, Pinacothèque de Paris, Musée Nissim de Camondo, Musée Cernuschi, Musée Rodin, Musée Jacquemart-André, Cinémathèque Française, Fondation Pierre Bergé Yves Saint-Laurent, Musée d'Art Moderne de la Ville de Paris, Palais de Tokyo, Fondation Cartier, Musée Guimet, Maison Chana Orloff, Musée d'Ennery, Musée Marmottan, Grande Galerie de l'Évolution, Musée de la Vie Romantique, Maison de Balzac, Pavillon de l'eau, Mémorial de la Shoah, Maison de la Culture du Japon, Musée Zadkine, Musée de Montmartre, Musée de la chasse et de la nature, Manufacture des Gobelins, Musée du Luxembourg, Palais de la Découverte, Centre Culturel Suédois, Musée de la magie, Fondation Louis Vuitton, Hôtel des Monnaies, Musée Galliera, Musée Bourdelle, Musée Carnavalet, Petit Palais, Sainte-Chapelle, Musée du Louvre +49.4026602 8.7297882, 49.4658903 8.7541091, 49.4270459 8.7212154, 49.4035191 8.7047078, 49.4261495 8.7062630, 49.4580313 8.7464236, 49.3828404 8.6974716, 49.4396455 8.6868291 +49.3868564 8.6629939, 49.4122382 8.7129316 +yes +74 +2063 +55.9813666 -3.1776197, 55.9530393 -3.2012412, 55.9554511 -3.1887924, 55.9589390 -3.2120876, 55.9410478 -3.1808355, 55.9469052 -3.1861162, 55.9426840 -3.2210587, 55.9261476 -3.3062378 +Musée de l'Armée, Musée de l'Assistance Publique Hôpitaux de Paris and 01.40.27.50.05, Musée des Arts Décoratifs - Musée de la Publicité and 01.44.55.57.50, Musée national des Arts et Métiers and +33 1 53 01 82 00, Tour de Jean-sans-Peur, Musée Gustave Moreau and 01.48.74.38.50, Les Égouts de Paris and 01.53.68.27.81, Musée Edith Piaf and 01.43.55.52.72, Musée Pasteur and 01.45.68.82.83, Espace Dali and 01.42.64.40.10, Cité des Sciences et de l'Industrie and +33 1 40 05 70 00, Maison de Victor Hugo and +33142721016, Musée de la Carte à Jouer et Galerie d'Histoire de la Ville, Musée en Herbe and 01.40.67.97.66, Maison Européenne de la Photographie and +33 1 44 78 75 00, Musée de l'Eventail and 01.42.08.90.20, Cité des Enfants (5-12 ans), Musée de la Poupée and 01.44.54.04.48, Catacombes de Paris and +33 1 43224763, Musée de l'Érotisme and 01.42.58.28.73, Musée des années 30, Musée du Petit Palais and 01.53.43.40.00, Musée de la Légion d'Honneur et des Ordres de Chevalerie and 01.40.62.84.25, Conciergerie, Musée du Vin and 01.45.25.63.26, Musée de la Poste and +33 1 42 79 24 24, galerie-musée Baccarat and +33 1 40 22 11 00, Salle des collections, Musée du Service de Santé des Armées, Musée de la Défense, Choco-Story - Le musée gourmand du chocolat and 00.33.(0)1.42.29.68.60, Musée-Jardin Paul Landowski, Cité de l'architecture et du patrimoine and 01.58.51.52.00, Musée de la Marine and +33 (0)1 53 65 69 69, +33 (0)1 53 65 69 53, Musée de la franc-maçonnerie and 01.45.23.74.09, Espace des Sciences Pierre-Gilles de Gennes, Deyrolle, Fondation Le Corbusier and 01.42.88.41.53, Musée de la Contrefaçon and +33 1 56 26 14 03, Musée Dapper and 01.45.00.91.75, Musée des Arts Forains and 01.43.40.16.22, Musée Adzak - Espace d'Art International and 01.45.43.06.98, Musée d'Anatomie Delmas-Orfila-Rouvière and 01.42.86.20.47, Musée Arménien de France, Musée Boleslas Biegas - Musée Adam Mickiewicz and 01.43.54.35.61, Musée Bible et Terre Sainte and 01.45.44.09.55, Musée Bouilhet-Christofle - Musée d'Orfèvrerie and 01.49.22.41.15, Musée Clemenceau and 01.45.20.53.41, Musée-Librairie du Compagnonnage and 01.43.26.25.03, Musée d'Anatomie Pathologique Dupuytren and 01.42.34.68.60, Musée Valentin Haüy, Musée Henner and 01.47.63.42.73, Musée d'histoire de la Médecine, Musée Maillol and 01.42.22.59.58, Musée des Lettres et Manuscrits and +33 1 42 22 48 48, Musée du Montparnasse and +33 1 42229196, Musée de Minéralogie and 01.40.51.92.90, Musée Moissan, Crypte Archéologique du Parvis Notre-Dame and 01.55.42.50.10, Bibliothèque-Musée de l'Opéra and 01.53.79.37.47, Musée Pierre Marly - Lunettes et Lorgnettes, Musée de la Préfecture de Police and 01.44.41.52.50, Centre Culturel Suisse, Musée de l'Ile-de-France and 01.41.87.29.50, Tour de la Cathédrale and 01.53.10.07.00, Musée de Nogent-sur-Marne, Maison de la Pêche et de la Nature, Le trésor de Notre-Dame de Paris, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin and 01.40.64.39.44, Galerie municipale Julio Gonzalez, Musée national d'art moderne, Maxim's Art Nouveau "Collection 1900" and 01.42.65.30.47, Carrefour Numérique², Art Ludique - Le Musée, Collection des minéraux - Jussieu, Fondation Henri Cartier-Bresson and +33156802700, Galerie Royale, Musée Albert Kahn and 01.55.19.28.00, Musée Fragonard, Espace Reine de Saba, Musée du Barreau and +33 1 44 32 47 48, Maison de la RATP, Institut des Lettres et Manuscrits, Anciens Elèves (Musée), Musée d'Histoire contemporaine and 01.44.42.54.91, Musée de l'Ordre de la Libération, Musée des Plans-reliefs and 01.45.51.95.05, Catacombes de Paris, Pinacothèque de Paris 2, Musée de l'Homme and +33144057272, Salle d'Exposition Musée, Cité des Enfants (2-7 ans), Musée du quai Branly and 01.56.61.70.00, Galerie de Minéralogie et de Géologie and 01.40.79.54.79, Galeries de Paléontologie et d'Anatomie comparée and +331 40 79 54 79, +331 40 79 56 01, Institut du Monde Arabe and 01.40.51.38.38, Jardin Tino Rossi - Musée de la Sculpture en Plein Air, Musée national de céramique and +33 1 46292200, Halle Saint-Pierre and +33 1 42 58 72 89, Hôtel de Sully, Le Louvre and +33 1 40205050, Jeu de Paume and +33 1 47031250, Musée de l'Orangerie and 01.44.50.43.00, Atelier Brancusi, Futur Fondation Galeries Lafayette, Musée Curie and 01.56.24.55.33, Grand Palais, Pavillon de l'Arsenal and 01.42.76.33.97, 01.42.76.26.32, Musée National du Moyen Âge and 01.53.73.78.13, Musée d'Art et d'Histoire du Judaïsme and 01.53.01.86.53, Archives Nationales and 01.40.27.60.96, Musée de la Serrure, Musée Picasso and 01.85.56.00.36, Musée Cognacq-Jay and 01.40.27.07.21, Musée national Eugène Delacroix and 01.44.41.86.50, Cité Nationale de l'Histoire de l'Immigration and 01 53 59 58 60, Orangerie du Sénat, Musée d'Orsay, Le Musée du Fumeur and 01.46.59.05.51, Musée d'art et d'histoire de Saint-Denis, Les Réserves du Musée des Arts et Métiers, Musée national Ernest-Hébert, Institut Néerlandais and 01.53.59.12.40, Immeuble Molitor, Pinacothèque de Paris and 01.42.68.02.01, Musée Nissim de Camondo and 01.44.55.57.50, Musée Cernuschi and 01.53.96.21.50, Musée Rodin and 01.44.18.61.10, Musée Jacquemart-André and 01.45.42.11.59, Musée De Dion-Bouton, Château d'Asnières and 01.71.07.82.25, Musée d'Histoire Urbaine et Sociale and 01.41.18.37.37, Musée Renault and 01.46.05.21.58, Pavillon de Vendôme and 01 .47 .15 .31 .05, Musée Paul-Belmondo, Cinémathèque Française and 01.71.19.33.33, Fondation Pierre Bergé Yves Saint-Laurent, Musée d'Art Moderne de la Ville de Paris and 01.53.67.40.00, Palais de Tokyo and 01.47.23.54.01, Fondation Cartier and 01.42.18.56.50, Musée Guimet and 01.58.52.53.00, Maison Chana Orloff, Musée d'Ennery and +33 1 45535796, Maison de la Photographie - Robert Doisneau, Le 116, Musée Roybet Fould, Musée Marmottan and 01.44.96.50.33, Grande Galerie de l'Évolution and 01.40.79.54.79, 01.40.79.56.01, Musée de la Vie Romantique and 01.55.31.95.67, Maison de Balzac and +33 1 55744180, Pavillon de l'eau and 01.42.24.54.02, Mémorial de la Shoah and +33 1 42 77 44 72, Musée Rodin - Villa des Brillants and 01 41 14 35 00, Musée d'Art et d'Histoire and +33 1 46 23 87 13, MACval, Exploradôme and +33 1 43 91 16 20, Maison de la Culture du Japon and 01.44.37.95 .01, Musée Zadkine and 01.55.42.77.20, Musée de Montmartre and 01.49.25.89.39, Musée de la chasse et de la nature and 01.53.01.92.40, Manufacture des Gobelins, Musée du Luxembourg and 01.40.13.62.00, Palais de la Découverte, Centre Culturel Suédois and 01.44.78.80.20, Musée de la magie, Fondation Louis Vuitton and 01.40.69.96.00, Mastaba 1, Hôtel des Monnaies, Musée Galliera and 01.56.52.86.00, Musée Bourdelle and 01.49.54.73.73, Musée Carnavalet and 01.44.59.58.58, Petit Palais and 01.53.43.40.00, Sainte-Chapelle and 01.53.40.60.80, Musée du Louvre +55.9310291 -3.2926211, 55.9795875 -3.3736290, 55.9795051 -3.3731411, 55.9197720 -3.2124574, 55.9232188 -3.2713110, 55.9193964 -3.2652222, 55.9273778 -3.2470826, 55.9398840 -3.2212051, 55.9282956 -3.2653245, 55.9392186 -3.3585746, 55.9342846 -3.3041605, 55.9335044 -3.3000747, 55.9330499 -3.2976344, 55.9298627 -3.2917640, 55.9343011 -3.3157894, 55.9540392 -3.4023192, 55.9191802 -3.2890802, 55.9090891 -3.2730290, 55.8926301 -3.3208572, 55.8916068 -3.3241899, 55.8882461 -3.3383885, 55.8856304 -3.3394973, 55.8788746 -3.3382465, 55.8765909 -3.3374744, 55.8753688 -3.3413701, 55.8746010 -3.3433669, 55.8814805 -3.3478538, 55.8838740 -3.3428988, 55.8859699 -3.3400941, 55.8901905 -3.3297626, 55.8920125 -3.3230644, 55.8931149 -3.3199173, 55.8941254 -3.3159226, 55.8954119 -3.3123968, 55.9498881 -3.2791635, 55.9405932 -3.1166552, 55.9385166 -3.1253393, 55.9361033 -3.1147220, 55.9336898 -3.1102159, 55.9334013 -3.1069114, 55.9334013 -3.1065252, 55.9441838 -3.1105250, 55.9440924 -3.1125421, 55.9439146 -3.1129970, 55.9388607 -3.4078678, 55.9377182 -3.4079403, 55.9563398 -3.1384528, 55.9583672 -3.1380034, 55.9586133 -3.1379125, 55.9333191 -3.2042555, 55.9249494 -3.2166522, 55.9683134 -3.2696868, 55.9372490 -3.2352906, 55.9401171 -3.2189968, 55.9309707 -3.1902664, 55.9470382 -3.2136679, 55.8765022 -3.3371475, 55.8765000 -3.3373552, 55.8798477 -3.3390718, 55.8820038 -3.3394309, 55.8840269 -3.3376620, 55.8741554 -3.3458290, 55.8787487 -3.3494977, 55.8833876 -3.3443867, 55.8818437 -3.3475147, 55.8845740 -3.3414649, 55.8856523 -3.3402440, 55.8883945 -3.3384518, 55.8902435 -3.3295290, 55.8919937 -3.3230485, 55.8931715 -3.3196345, 55.8944882 -3.3148529, 55.8964300 -3.3090140, 55.8964580 -3.3261033, 55.8977443 -3.3138562, 55.8986910 -3.3135523, 55.9011623 -3.3101650, 55.9101614 -3.3175337, 55.9090028 -3.3198201, 55.9112244 -3.3154319, 55.9122074 -3.3244850, 55.9147717 -3.3243147, 55.9172476 -3.3141716, 55.9082667 -3.3683320, 55.9119985 -3.3559041, 55.9175244 -3.3201689, 55.9179307 -3.3146584, 55.9214822 -3.2963197, 55.9231926 -3.2917517, 55.9249172 -3.2926733, 55.9259239 -3.3020377, 55.9264071 -3.2988209, 55.9270654 -3.2943294, 55.9280466 -3.2924574, 55.9278292 -3.3011572, 55.9295108 -3.2867840, 55.9329365 -3.3067870, 55.9312693 -3.3055464, 55.9298014 -3.3024558, 55.9316935 -3.3112913, 55.9277828 -3.3072378, 55.9277718 -3.3082778, 55.9301102 -3.2995850, 55.9307299 -3.2962123, 55.9382064 -3.3148414, 55.9382451 -3.3146688, 55.9380732 -3.3142761, 55.9379534 -3.3143254, 55.9377484 -3.3146111, 55.9360561 -3.3134078, 55.9342693 -3.3039664, 55.9349237 -3.3159468, 55.9331713 -3.3134382, 55.9331991 -3.3091330, 55.9335973 -3.3003901, 55.9330872 -3.2976357, 55.9315908 -3.2929596, 55.9186868 -3.2886896, 55.9179093 -3.2897232, 55.9188275 -3.2898464, 55.9176148 -3.2949425, 55.9181261 -3.2984479, 55.9175513 -3.2864277, 55.9197426 -3.2908369, 55.9201911 -3.2966220, 55.9194596 -3.2989566, 55.9144242 -3.2907241, 55.9084080 -3.2842852, 55.9320455 -3.3119915, 55.9092294 -3.2890958, 55.9108851 -3.2914545, 55.9144770 -3.2865339, 55.9113035 -3.2807173, 55.9175983 -3.2808001, 55.9147125 -3.2811816, 55.9164138 -3.2785558, 55.9142131 -3.2764932, 55.9132762 -3.2715025, 55.9102188 -3.2717224, 55.9103270 -3.2777573, 55.9119824 -3.2772230, 55.9099554 -3.2745935, 55.9100741 -3.2726776, 55.9131048 -3.2706969, 55.9109492 -3.2795244, 55.9117347 -3.2817733, 55.9128869 -3.2847693, 55.9173957 -3.2772058, 55.9183229 -3.2735719, 55.9200063 -3.2724109, 55.9215230 -3.2717245, 55.9200023 -3.2762674, 55.9199340 -3.2819773, 55.9215018 -3.2763807, 55.9232615 -3.2713173, 55.9246922 -3.2676352, 55.8967812 -3.3064030, 55.8977378 -3.3026287, 55.9144150 -3.2864518, 55.8992750 -3.2982293, 55.9003271 -3.2948303, 55.9019412 -3.2891579, 55.9019029 -3.2893806, 55.9025521 -3.2874507, 55.9033558 -3.2853499, 55.9049846 -3.2814342, 55.9062367 -3.2779268, 55.9071600 -3.2755416, 55.9087373 -3.2724738, 55.9083182 -3.2712923, 55.9099442 -3.2687218, 55.9124955 -3.2644213, 55.9136201 -3.2625380, 55.9174527 -3.2647107, 55.9144997 -3.2626305, 55.9193076 -3.2652191, 55.9216247 -3.2635823, 55.9230814 -3.2617413, 55.9248078 -3.2598769, 55.9153154 -3.2610730, 55.9171788 -3.2598694, 55.9187731 -3.2586250, 55.9210676 -3.2544637, 55.9226847 -3.2900244, 55.9233399 -3.2854032, 55.9419880 -3.2928830, 55.9408815 -3.2923753, 55.9376001 -3.2917115, 55.9356141 -3.2897478, 55.9325054 -3.2871313, 55.9284150 -3.2844156, 55.9401249 -3.2906181, 55.9400465 -3.2883675, 55.9402382 -3.2817236, 55.9378727 -3.2799768, 55.9351374 -3.2777255, 55.9302044 -3.2843612, 55.9309397 -3.2812781, 55.9313553 -3.2763774, 55.9302330 -3.2729000, 55.9243364 -3.2794506, 55.9251074 -3.2761631, 55.9257039 -3.2688686, 55.9251946 -3.2633464, 55.9254459 -3.2589853, 55.9239097 -3.2522003, 55.9322101 -3.2731791, 55.9329010 -3.2706725, 55.9336393 -3.2661665, 55.9335638 -3.2630104, 55.9268539 -3.2688901, 55.9284959 -3.2656306, 55.9329631 -3.2593732, 55.9346628 -3.2557144, 55.9359019 -3.2525324, 55.9296933 -3.2610278, 55.9298555 -3.2574636, 55.9318854 -3.2504862, 55.9328062 -3.2474104, 55.9368775 -3.2482297, 55.9343430 -3.2459680, 55.9358793 -3.2456362, 55.9373768 -3.2432828, 55.9405632 -3.2391741, 55.9391600 -3.2410985, 55.9371045 -3.2399842, 55.9342017 -3.2445104, 55.9364631 -3.2403239, 55.9383204 -3.2307598, 55.9389054 -3.2283387, 55.9360470 -3.2361323, 55.9347402 -3.2342933, 55.9075589 -3.2708515, 55.9071600 -3.2668392, 55.9073193 -3.2578735, 55.9011959 -3.2683402, 55.9031765 -3.2679730, 55.9035762 -3.2651085, 55.9041357 -3.2624773, 55.9045919 -3.2611212, 55.9041265 -3.2612218, 55.9067735 -3.2576247, 55.9082530 -3.2531010, 55.9094816 -3.2506930, 55.9118271 -3.2471367, 55.9138617 -3.2432021, 55.9149045 -3.2410154, 55.9065703 -3.2462482, 55.9055392 -3.2415762, 55.9047280 -3.2373593, 55.9040043 -3.2313244, 55.9040174 -3.2248441, 55.9044388 -3.2231298, 55.9055392 -3.2245241, 55.9070009 -3.2266338, 55.9085623 -3.2295466, 55.9095589 -3.2332257, 55.9102457 -3.2355353, 55.9118191 -3.2381291, 55.9134355 -3.2391246, 55.9158634 -3.2407381, 55.9172358 -3.2418700, 55.9053558 -3.2513458, 55.9189038 -3.2413153, 55.9207759 -3.2419032, 55.9220612 -3.2436566, 55.9231454 -3.2483964, 55.9246759 -3.2461586, 55.9271942 -3.2433326, 55.9283635 -3.2415537, 55.9299545 -3.2397158, 55.9324821 -3.2365811, 55.9210460 -3.2391754, 55.9239408 -3.2363550, 55.9255077 -3.2342283, 55.9277091 -3.2306058, 55.9295450 -3.2272352, 55.9329894 -3.2290165, 55.9305694 -3.2249613, 55.9291480 -3.2266115, 55.9300937 -3.2230896, 55.9310002 -3.2195807, 55.9314292 -3.2179935, 55.9336880 -3.2115060, 55.9279217 -3.2237414, 55.9226474 -3.2237809, 55.9226931 -3.2257646, 55.9256341 -3.2242615, 55.9246017 -3.2223565, 55.9247037 -3.2193189, 55.9249824 -3.2160535, 55.9256177 -3.2116777, 55.9354196 -3.2307850, 55.9365591 -3.2282087, 55.9380093 -3.2264636, 55.9378395 -3.2252939, 55.9391409 -3.2250558, 55.9397575 -3.2256219, 55.9414410 -3.2232711, 55.9435047 -3.2198589, 55.9455354 -3.2173298, 55.9577324 -3.4028820, 55.9565716 -3.4124666, 55.9565443 -3.4054179, 55.9562304 -3.4030038, 55.9578366 -3.4032061, 55.9550446 -3.4011165, 55.9540087 -3.4021164, 55.9529605 -3.4044776, 55.9462687 -3.4123717, 55.9399631 -3.4079627, 55.9387883 -3.4077527, 55.9377144 -3.4044543, 55.9391423 -3.3995092, 55.9376264 -3.3913805, 55.9389283 -3.3906747, 55.9383711 -3.3742204, 55.9378177 -3.3662518, 55.9430296 -3.3607030, 55.9368804 -3.3506686, 55.9383069 -3.3297168, 55.9391092 -3.3261043, 55.9229613 -3.3781642, 55.9089054 -3.4073417, 55.9206810 -3.3895891, 55.9207749 -3.3849287, 55.9214328 -3.3815675, 55.9209944 -3.3792944, 55.9156365 -3.3746719, 55.9213324 -3.3399502, 55.9216109 -3.3364117, 55.9214764 -3.3393840, 55.9219275 -3.3348423, 55.9189037 -3.3140961, 55.9524334 -3.3528166, 55.9518454 -3.3474309, 55.9512679 -3.3402359, 55.9497345 -3.3341454, 55.9466451 -3.3273295, 55.9453465 -3.3244188, 55.9418947 -3.3169838, 55.9520847 -3.3035079, 55.9518762 -3.3070246, 55.9503885 -3.3080662, 55.9493412 -3.3121920, 55.9469832 -3.3142260, 55.9418512 -3.3126432, 55.9408369 -3.3116963, 55.9412025 -3.3060407, 55.9416783 -3.3009811, 55.9423026 -3.2963106, 55.9587957 -3.3001937, 55.9572858 -3.2993742, 55.9499052 -3.2790606, 55.9536582 -3.2784957, 55.9370630 -3.3919366, 55.9561814 -3.2814307, 55.9558569 -3.2848148, 55.9555580 -3.2872051, 55.9544876 -3.2937387, 55.9537810 -3.2968384, 55.9525607 -3.2968986, 55.9496808 -3.2953881, 55.9486982 -3.2948268, 55.9452390 -3.2939428, 55.9429096 -3.2918926, 55.9431922 -3.2870802, 55.9429288 -3.2837142, 55.9425070 -3.2793090, 55.9418960 -3.2734651, 55.9422439 -3.2675841, 55.9425265 -3.2652716, 55.9439641 -3.2573764, 55.9444730 -3.2547179, 55.9376372 -3.2495189, 55.9394101 -3.2515106, 55.9418735 -3.2517848, 55.9432225 -3.2516682, 55.9449948 -3.2500276, 55.9453832 -3.2441638, 55.9457364 -3.2403321, 55.9457866 -3.2351332, 55.9457865 -3.2288408, 55.9460094 -3.2229027, 55.9459252 -3.2182400, 55.9467297 -3.2160853, 55.9468911 -3.2157329, 55.9495730 -3.2096804, 55.9498456 -3.2090591, 55.9470251 -3.2128783, 55.9466831 -3.2111062, 55.9457403 -3.2083802, 55.9407845 -3.2171608, 55.9415100 -3.2189378, 55.9420067 -3.2142265, 55.9429862 -3.2105745, 55.9435721 -3.2079032, 55.9452599 -3.2068906, 55.9458494 -3.2043614, 55.9463971 -3.2001543, 55.9473655 -3.1962398, 55.9476701 -3.1928242, 55.9476734 -3.2034572, 55.9475478 -3.2016708, 55.9486521 -3.1951042, 55.9486914 -3.1982744, 55.9493803 -3.1935304, 55.9826102 -3.3849972, 55.9819929 -3.3895432, 55.9819242 -3.3908551, 55.9825780 -3.3942285, 55.9839641 -3.4097289, 55.9845935 -3.4129431, 55.9866628 -3.4193537, 55.9873161 -3.4160882, 55.9886532 -3.4138927, 55.9895768 -3.4098735, 55.9899607 -3.4056361, 55.9846372 -3.3964826, 55.9867620 -3.3969118, 55.9890911 -3.3975569, 55.9909234 -3.3992102, 55.9871450 -3.3956272, 55.9875380 -3.3902711, 55.9873152 -3.3869128, 55.9868637 -3.3823120, 55.9044487 -3.1454869, 55.9903465 -3.3854493, 55.9905394 -3.3854731, 55.9865070 -3.3761955, 55.9824250 -3.3733614, 55.9842326 -3.3635923, 55.9842318 -3.3579661, 55.9802903 -3.3478429, 55.9876179 -3.4043614, 55.9796190 -3.3736553, 55.9717085 -3.3279954, 55.9679830 -3.3226445, 55.9654902 -3.3179614, 55.9619999 -3.3132611, 55.9609748 -3.3074114, 55.9583863 -3.3074683, 55.9607983 -3.3054190, 55.9603677 -3.2993974, 55.9606855 -3.2948105, 55.9612294 -3.2900709, 55.9619792 -3.2836720, 55.9588557 -3.2798684, 55.9615685 -3.2825444, 55.9627081 -3.2757823, 55.9624444 -3.2699904, 55.9621094 -3.2667435, 55.9639498 -3.2738847, 55.9616143 -3.3064237, 55.9632763 -3.3073127, 55.9667125 -3.3078131, 55.9713376 -3.3004221, 55.9698871 -3.3075677, 55.9718166 -3.3061105, 55.9733660 -3.3040475, 55.9752685 -3.2989869, 55.9744680 -3.2975465, 55.9733639 -3.2957308, 55.9736867 -3.2897965, 55.9728924 -3.2866934, 55.9703170 -3.2811761, 55.9683876 -3.2783405, 55.9663230 -3.2755327, 55.9657954 -3.2744099, 55.9655002 -3.2725418, 55.9656142 -3.2695552, 55.9713952 -3.2719557, 55.9691832 -3.2700510, 55.9665452 -3.2666823, 55.9662032 -3.2648863, 55.9659675 -3.2603008, 55.9663975 -3.2551399, 55.9669130 -3.2516956, 55.9735812 -3.2757555, 55.9730117 -3.2734774, 55.9722077 -3.2714362, 55.9729455 -3.2668252, 55.9735675 -3.2631278, 55.9742485 -3.2589195, 55.9748052 -3.2553973, 55.9733968 -3.2529770, 55.9723304 -3.2610845, 55.9725024 -3.2535321, 55.9721395 -3.2524896, 55.9701437 -3.2508068, 55.9675855 -3.2487696, 55.9648925 -3.2493877, 55.9623997 -3.2479778, 55.9644818 -3.2676060, 55.9630502 -3.2643872, 55.9551721 -3.2579960, 55.9613037 -3.2716832, 55.9580495 -3.2683248, 55.9599376 -3.2664803, 55.9600324 -3.2616137, 55.9604236 -3.2585027, 55.9616357 -3.2629955, 55.9601785 -3.2561080, 55.9590857 -3.2534318, 55.9580444 -3.2508597, 55.9570634 -3.2482852, 55.9462547 -3.2503888, 55.9467499 -3.2476345, 55.9482887 -3.2483085, 55.9548507 -3.2577933, 55.9504434 -3.2502676, 55.9506589 -3.2467353, 55.9510521 -3.2416071, 55.9516844 -3.2479636, 55.9515979 -3.2441686, 55.9560438 -3.2447140, 55.9578918 -3.2417264, 55.9515408 -3.2375369, 55.9520270 -3.2340149, 55.9525865 -3.2301729, 55.9524970 -3.2266180, 55.9522993 -3.2247346, 55.9517872 -3.2257263, 55.9509026 -3.2222768, 55.9500692 -3.2194594, 55.9500952 -3.2159210, 55.9514349 -3.2130963, 55.9564559 -3.2435432, 55.9556979 -3.2404269, 55.9546994 -3.2327545, 55.9547623 -3.2291528, 55.9549100 -3.2260503, 55.9565634 -3.2380647, 55.9571584 -3.2342742, 55.9581693 -3.2284212, 55.9607560 -3.2558704, 55.9607241 -3.2492855, 55.9612008 -3.2447994, 55.9622742 -3.2408290, 55.9639764 -3.2386566, 55.9668601 -3.2378355, 55.9674008 -3.2472135, 55.9678600 -3.2429464, 55.9684348 -3.2376134, 55.9809011 -3.2361106, 55.9819676 -3.2300197, 55.9835884 -3.2255631, 55.9820443 -3.2236070, 55.9755146 -3.2528390, 55.9763614 -3.2499658, 55.9765987 -3.2451657, 55.9766945 -3.2433686, 55.9793019 -3.2423914, 55.9766372 -3.2391238, 55.9746085 -3.2384675, 55.9728249 -3.2380100, 55.9698270 -3.2367766, 55.9676125 -3.2353921, 55.9654876 -3.2338032, 55.9639658 -3.2328402, 55.9630665 -3.2338676, 55.9615120 -3.2301834, 55.9601435 -3.2283783, 55.9580206 -3.2254421, 55.9563691 -3.2233567, 55.9552380 -3.2192535, 55.9577146 -3.2175590, 55.9544860 -3.2153379, 55.9558088 -3.2163084, 55.9574409 -3.2136525, 55.9577176 -3.2110983, 55.9587670 -3.2249388, 55.9592419 -3.2214458, 55.9594385 -3.2162145, 55.9591627 -3.2129430, 55.9587082 -3.2097806, 55.9582498 -3.2083579, 55.9601149 -3.2048779, 55.9605028 -3.2019585, 55.9776003 -3.2376176, 55.9780587 -3.2358053, 55.9785473 -3.2327758, 55.9798702 -3.2307825, 55.9807570 -3.2248233, 55.9807136 -3.2239533, 55.9791861 -3.2133411, 55.9750509 -3.2382573, 55.9753610 -3.2351103, 55.9770716 -3.2212544, 55.9756199 -3.2316891, 55.9766181 -3.2307113, 55.9786796 -3.2294305, 55.9790730 -3.2251158, 55.9783022 -3.2231042, 55.9757587 -3.2269365, 55.9760093 -3.2241696, 55.9777793 -3.2187446, 55.9768282 -3.2158782, 55.9746908 -3.2152599, 55.9720616 -3.2144788, 55.9686890 -3.2346734, 55.9691570 -3.2301059, 55.9698341 -3.2234619, 55.9702408 -3.2195972, 55.9709548 -3.2128676, 55.9701039 -3.2078561, 55.9689311 -3.2067013, 55.9677907 -3.2055970, 55.9661868 -3.2040897, 55.9648275 -3.2026212, 55.9625463 -3.1985152, 55.9623519 -3.1999659, 55.9612708 -3.1979256, 55.9590746 -3.2001052, 55.9574525 -3.1992269, 55.9576308 -3.2078827, 55.9571589 -3.2057631, 55.9570635 -3.2040021, 55.9579700 -3.1990768, 55.9589149 -3.1952296, 55.9516446 -3.2116255, 55.9505151 -3.2088197, 55.9516840 -3.2088535, 55.9565296 -3.2022609, 55.9551067 -3.2015189, 55.9026109 -3.2208010, 55.9022133 -3.2164859, 55.9021871 -3.2127583, 55.9021851 -3.2083916, 55.9018727 -3.2063506, 55.8969766 -3.2036602, 55.8992966 -3.2042234, 55.9020303 -3.2049319, 55.9042298 -3.2071980, 55.9067134 -3.2084524, 55.9090267 -3.2098842, 55.9104665 -3.2114969, 55.9128718 -3.2136198, 55.9152539 -3.2135342, 55.9171693 -3.2133860, 55.9001253 -3.2003306, 55.8991537 -3.1958384, 55.8989540 -3.1941849, 55.8992204 -3.1898748, 55.8998020 -3.1756099, 55.8997328 -3.1720575, 55.8996750 -3.1705683, 55.8999131 -3.1644178, 55.9079326 -3.2251115, 55.9091271 -3.2224615, 55.9102950 -3.2206745, 55.9115037 -3.2193046, 55.9208769 -3.2949233, 55.9137133 -3.2175820, 55.9157854 -3.2170389, 55.9180646 -3.2164542, 55.9198187 -3.2126207, 55.9211960 -3.2118424, 55.9234513 -3.2105680, 55.9167866 -3.2304883, 55.9167305 -3.2277411, 55.9167656 -3.2233099, 55.9189490 -3.2224186, 55.9210165 -3.2217005, 55.9214794 -3.2218741, 55.9222932 -3.2212655, 55.9226129 -3.2172794, 55.9231082 -3.2143717, 55.9243593 -3.2104430, 55.9246980 -3.2085764, 55.9248235 -3.2034785, 55.9332773 -3.1804495, 55.9256145 -3.1997740, 55.9261116 -3.1939316, 55.9262444 -3.1898522, 55.9263606 -3.1877380, 55.9274194 -3.1875189, 55.9290961 -3.1887496, 55.9314357 -3.1866732, 55.9315424 -3.1867143, 55.9327292 -3.1841946, 55.9335945 -3.1857897, 55.9298810 -3.1906863, 55.9322050 -3.1928865, 55.9304941 -3.1923377, 55.9259667 -3.2093706, 55.9281335 -3.2095336, 55.9303270 -3.2098768, 55.9325314 -3.2101262, 55.9312356 -3.1881622, 55.9321908 -3.2093061, 55.9333100 -3.2046099, 55.9337875 -3.2001867, 55.9342178 -3.1974967, 55.9309516 -3.2025800, 55.9352614 -3.1942899, 55.9360447 -3.1944235, 55.9385819 -3.1950517, 55.9398783 -3.1952903, 55.9366483 -3.1940225, 55.9381768 -3.1922983, 55.9397207 -3.1863782, 55.9396831 -3.1901910, 55.9415028 -3.1999255, 55.9432237 -3.2023940, 55.9346560 -3.2102493, 55.9360555 -3.2094469, 55.9370851 -3.2071954, 55.9398620 -3.2044719, 55.9413443 -3.2035998, 55.9428297 -3.2037418, 55.9312988 -3.2257047, 55.9340899 -3.2232358, 55.9363884 -3.2200155, 55.9372401 -3.2173968, 55.9385407 -3.2146679, 55.9399009 -3.2118071, 55.9409026 -3.2095928, 55.9418569 -3.2046167, 55.9451034 -3.2054205, 55.9464821 -3.2059437, 55.9479806 -3.2093194, 55.9480111 -3.2070831, 55.9492390 -3.2069040, 55.9415413 -3.1997466, 55.9397680 -3.1895210, 55.9398950 -3.1857881, 55.9443353 -3.2022970, 55.9449518 -3.1965229, 55.9506888 -3.2047906, 55.9508146 -3.2040851, 55.9509521 -3.2032596, 55.9512459 -3.2015502, 55.9513546 -3.2008993, 55.9534000 -3.1985886, 55.9545267 -3.1976404, 55.9530395 -3.1968514, 55.9525421 -3.1965899, 55.9514272 -3.1964815, 55.9502471 -3.1953894, 55.9514017 -3.1916501, 55.9523041 -3.1921025, 55.9487161 -3.1921254, 55.9473980 -3.1913002, 55.9475336 -3.1896852, 55.9461587 -3.1899395, 55.9461484 -3.1857678, 55.9446725 -3.1868648, 55.9426946 -3.1843831, 55.9410872 -3.1828376, 55.9523441 -3.1952612, 55.9524248 -3.1947854, 55.9530238 -3.1937098, 55.9548982 -3.1930798, 55.9531749 -3.1905850, 55.9532540 -3.1901090, 55.9561036 -3.1918150, 55.9566140 -3.1887839, 55.9713240 -3.2069051, 55.9776927 -3.2092865, 55.9762411 -3.2097861, 55.9749320 -3.2095049, 55.9745820 -3.2067057, 55.9732970 -3.2057714, 55.9719948 -3.2047984, 55.9718053 -3.2036348, 55.9725638 -3.1985396, 55.9733278 -3.1933986, 55.9807961 -3.2226219, 55.9802124 -3.2199741, 55.9802552 -3.2158345, 55.9804176 -3.2108942, 55.9800886 -3.2075771, 55.9800057 -3.2036063, 55.9795342 -3.1979414, 55.9778455 -3.1965005, 55.9776734 -3.1928273, 55.9755858 -3.1909264, 55.9619137 -3.1953922, 55.9597614 -3.1911416, 55.9587469 -3.1900917, 55.9574145 -3.1883681, 55.9540301 -3.1883045, 55.9542782 -3.1877994, 55.9553364 -3.1870704, 55.9555412 -3.1881647, 55.9588451 -3.1841152, 55.9619623 -3.1801852, 55.9633092 -3.1784891, 55.9631120 -3.1956917, 55.9640881 -3.1935142, 55.9659262 -3.1894058, 55.9647774 -3.1864708, 55.9623490 -3.1824104, 55.9676984 -3.1873293, 55.9736734 -3.1887369, 55.9727435 -3.1878363, 55.9700896 -3.1863276, 55.9686723 -3.1841379, 55.9672532 -3.1822368, 55.9655560 -3.1802465, 55.9806952 -3.1969953, 55.9808464 -3.1941907, 55.9803117 -3.1904556, 55.9799327 -3.1889762, 55.9791442 -3.1838015, 55.9773720 -3.1797945, 55.9740475 -3.1882178, 55.9745333 -3.1848625, 55.9749268 -3.1821540, 55.9692089 -3.1840105, 55.9706590 -3.1803378, 55.9722461 -3.1760338, 55.9719668 -3.1730260, 55.9760045 -3.1700682, 55.9801664 -3.1773603, 55.9800397 -3.1776022, 55.9799062 -3.1778409, 55.9788191 -3.1802177, 55.9780795 -3.1794306, 55.9771980 -3.1743400, 55.9769992 -3.1732606, 55.9765285 -3.1705860, 55.9759268 -3.1678383, 55.9755202 -3.1648177, 55.9721151 -3.1537189, 55.9641711 -3.1775450, 55.9664640 -3.1754998, 55.9681128 -3.1740918, 55.9696112 -3.1727684, 55.9711134 -3.1726962, 55.9713906 -3.1702867, 55.9729980 -3.1685221, 55.9504910 -3.1854886, 55.9510338 -3.1816628, 55.9515984 -3.1790606, 55.9524685 -3.1756629, 55.9501355 -3.1837930, 55.9500542 -3.1787108, 55.9507088 -3.1770555, 55.9508263 -3.1747317, 55.9539076 -3.1739661, 55.9537308 -3.1871585, 55.9538854 -3.1830563, 55.9534691 -3.1798335, 55.9559116 -3.1730017, 55.9561660 -3.1727051, 55.9568104 -3.1728667, 55.9579461 -3.1831271, 55.9579339 -3.1826673, 55.9578767 -3.1789396, 55.9577900 -3.1765309, 55.9577142 -3.1730479, 55.9581423 -3.1720186, 55.9605915 -3.1714661, 55.9629055 -3.1709645, 55.9641540 -3.1706475, 55.9660952 -3.1701319, 55.9680651 -3.1686162, 55.9696734 -3.1682011, 55.9733850 -3.1663395, 55.9649390 -3.1745777, 55.9645748 -3.1721004, 55.9644946 -3.1699298, 55.9630926 -3.1658419, 55.9632840 -3.1616052, 55.9682171 -3.1659398, 55.9660539 -3.1637920, 55.9646916 -3.1624694, 55.9628335 -3.1597422, 55.9617629 -3.1585851, 55.9597776 -3.1556585, 55.9613297 -3.1539907, 55.9691573 -3.1661209, 55.9694518 -3.1635218, 55.9630204 -3.1573809, 55.9695384 -3.1596673, 55.9674340 -3.1575049, 55.9651546 -3.1550101, 55.9656331 -3.1511869, 55.9656313 -3.1484954, 55.9634291 -3.1466359, 55.9635777 -3.1540354, 55.9622804 -3.1561015, 55.9574085 -3.1686582, 55.9573734 -3.1680155, 55.9570980 -3.1653973, 55.9573086 -3.1630811, 55.9587596 -3.1568936, 55.9592305 -3.1555460, 55.9594930 -3.1515012, 55.9699420 -3.1593102, 55.9700232 -3.1573578, 55.9617219 -3.1524164, 55.9606175 -3.1513584, 55.9573263 -3.1468079, 55.9571410 -3.1435348, 55.9566243 -3.1391790, 55.9702604 -3.1531509, 55.9737969 -3.1583519, 55.9710112 -3.1497283, 55.9692879 -3.1437169, 55.9622638 -3.1521121, 55.9624755 -3.1486902, 55.9626125 -3.1455545, 55.9612620 -3.1429355, 55.9600832 -3.1420268, 55.9588210 -3.1435684, 55.9572363 -3.1406150, 55.9591989 -3.1435154, 55.9601857 -3.1399160, 55.9602178 -3.1373142, 55.9655172 -3.1346180, 55.9625515 -3.1356365, 55.9605891 -3.1360276, 55.9582972 -3.1380268, 55.9568904 -3.1638169, 55.9561712 -3.1598115, 55.9557947 -3.1568532, 55.9551375 -3.1512278, 55.9551965 -3.1477860, 55.9552066 -3.1457361, 55.9554578 -3.1419156, 55.9558481 -3.1395406, 55.9604618 -3.1352069, 55.9609238 -3.1308953, 55.9603584 -3.1278833, 55.9576672 -3.1248964, 55.9561717 -3.1373407, 55.9564983 -3.1333450, 55.9568488 -3.1304081, 55.9573861 -3.1256986, 55.9575075 -3.1242125, 55.9530939 -3.1224190, 55.9566670 -3.1207925, 55.9566223 -3.1207752, 55.9548599 -3.1174870, 55.9534568 -3.1151874, 55.9530932 -3.1145773, 55.9521531 -3.1117404, 55.9545671 -3.1400955, 55.9531024 -3.1382365, 55.9504050 -3.1363860, 55.9478951 -3.1366968, 55.9521591 -3.1344970, 55.9514733 -3.1306358, 55.9500064 -3.1279347, 55.9482035 -3.1266012, 55.9541352 -3.1478987, 55.9518317 -3.1434104, 55.9501708 -3.1403347, 55.9492291 -3.1391700, 55.9474440 -3.1371825, 55.9462397 -3.1359437, 55.9524812 -3.1884943, 55.9517665 -3.1881346, 55.9512769 -3.1878726, 55.9489276 -3.1868532, 55.9484886 -3.1866438, 55.9457222 -3.1847309, 55.9454420 -3.1844541, 55.9459249 -3.1824225, 55.9471357 -3.1820879, 55.9432112 -3.1796016, 55.9415447 -3.1780319, 55.9406915 -3.1765923, 55.9430769 -3.1830456, 55.9428271 -3.1828112, 55.9413427 -3.1812830, 55.9399611 -3.1824940, 55.9375547 -3.1807928, 55.9405823 -3.1806167, 55.9393125 -3.1783897, 55.9349560 -3.1933400, 55.9364318 -3.1841475, 55.9355201 -3.1900188, 55.9359617 -3.1872388, 55.9362963 -3.1842234, 55.9369103 -3.1811043, 55.9369174 -3.1773439, 55.9348524 -3.1752430, 55.9326016 -3.1729391, 55.9307156 -3.1710012, 55.9290917 -3.1693572, 55.9269439 -3.1671709, 55.9346850 -3.1788915, 55.9328299 -3.1774425, 55.9293197 -3.1752233, 55.9275577 -3.1825611, 55.9284165 -3.1799312, 55.9291620 -3.1776194, 55.9273709 -3.1741560, 55.9249059 -3.1725771, 55.9262514 -3.1842179, 55.9246620 -3.1790700, 55.9244575 -3.1734277, 55.9261166 -3.1671560, 55.9231702 -3.1708443, 55.9403097 -3.1729174, 55.9383759 -3.1729846, 55.9368395 -3.1706322, 55.9341108 -3.1674764, 55.9325696 -3.1651250, 55.9296541 -3.1617563, 55.9271971 -3.1659721, 55.9283742 -3.1636257, 55.9302384 -3.1588606, 55.9315113 -3.1563215, 55.9335259 -3.1647215, 55.9336500 -3.1610915, 55.9329893 -3.1577742, 55.9322356 -3.1548702, 55.9323715 -3.1508247, 55.9320585 -3.1448768, 55.9324564 -3.1423049, 55.9334715 -3.1417330, 55.9371605 -3.1441148, 55.9421915 -3.1450760, 55.9435801 -3.1417316, 55.9447462 -3.1371614, 55.9258061 -3.1666267, 55.9238546 -3.1668960, 55.9213084 -3.1672356, 55.9185947 -3.1672340, 55.9157790 -3.1666214, 55.9142340 -3.1646711, 55.9130586 -3.1635319, 55.9116965 -3.1631391, 55.9174991 -3.1643209, 55.9149970 -3.1618939, 55.9136550 -3.1603178, 55.9128738 -3.1621664, 55.9090851 -3.1632404, 55.9070253 -3.1639890, 55.9042217 -3.1658426, 55.9010257 -3.1637208, 55.8996725 -3.1622995, 55.8981742 -3.1611032, 55.8961816 -3.1611818, 55.8936840 -3.1613625, 55.9011723 -3.1595293, 55.9020957 -3.1556311, 55.9029463 -3.1524165, 55.9035170 -3.1500021, 55.9118084 -3.1584580, 55.9101066 -3.1569506, 55.9084138 -3.1552983, 55.9063969 -3.1524068, 55.9054049 -3.1508738, 55.9042647 -3.1488406, 55.9003169 -3.1443415, 55.8981168 -3.1418475, 55.8957983 -3.1381817, 55.9240396 -3.1660970, 55.9233103 -3.1645912, 55.9210613 -3.1606007, 55.9188740 -3.1556833, 55.9176859 -3.1532867, 55.9149695 -3.1492635, 55.9136116 -3.1457571, 55.9148831 -3.1449609, 55.9163996 -3.1435672, 55.9188633 -3.1390654, 55.9133388 -3.1465021, 55.9134458 -3.1394164, 55.9150827 -3.1378569, 55.9165472 -3.1373313, 55.9183824 -3.1388347, 55.9116524 -3.1422642, 55.9102585 -3.1400862, 55.9087401 -3.1368944, 55.9063511 -3.1337589, 55.9038561 -3.1415666, 55.9037285 -3.1398193, 55.9046264 -3.1360067, 55.9050285 -3.1313637, 55.9041843 -3.1274042, 55.9029199 -3.1235102, 55.9000125 -3.1132722, 55.9066649 -3.1322431, 55.9081087 -3.1296137, 55.9124487 -3.1266841, 55.9285045 -3.1597852, 55.9275461 -3.1565876, 55.9232264 -3.1496095, 55.9215912 -3.1466966, 55.9211218 -3.1440263, 55.9183485 -3.1349359, 55.9150244 -3.1447410, 55.9135589 -3.1456275, 55.9151883 -3.1287635, 55.9137742 -3.1261785, 55.9327215 -3.1402382, 55.9329222 -3.1379711, 55.9327641 -3.1346917, 55.9324727 -3.1331238, 55.9319582 -3.1294592, 55.9305181 -3.1267762, 55.9293936 -3.1231475, 55.9328743 -3.1275489, 55.9337366 -3.1236521, 55.9342426 -3.1203851, 55.9340574 -3.1179891, 55.9339027 -3.1152528, 55.9458672 -3.1344436, 55.9470928 -3.1301399, 55.9478743 -3.1252625, 55.9483048 -3.1223925, 55.9434695 -3.1313473, 55.9413212 -3.1275061, 55.9388161 -3.1253361, 55.9426890 -3.1272897, 55.9429617 -3.1230065, 55.9472040 -3.1258516, 55.9452097 -3.1238242, 55.9435147 -3.1224781, 55.9408637 -3.1194718, 55.9407244 -3.1160733, 55.9433746 -3.1193395, 55.9344133 -3.1144351, 55.9357843 -3.1148587, 55.9380236 -3.1152253, 55.9392495 -3.1151223, 55.9411150 -3.1156042, 55.9426971 -3.1165303, 55.9389787 -3.1123728, 55.9395400 -3.1082678, 55.9397389 -3.1057825, 55.9468361 -3.1188912, 55.9498521 -3.1192344, 55.9513654 -3.1168438, 55.9524938 -3.1149324, 55.9516991 -3.1098885, 55.9507964 -3.1062097, 55.9500163 -3.1030166, 55.9493234 -3.1001144, 55.9488748 -3.0949933, 55.9486980 -3.0912535, 55.9184116 -3.2249619, 55.9485886 -3.0867221, 55.9487029 -3.0870136, 55.9477970 -3.0827446, 55.9440627 -3.1122184, 55.9443608 -3.1094208, 55.9442841 -3.1059600, 55.9443914 -3.1008634, 55.9448284 -3.0964920, 55.9452578 -3.0934432, 55.9457972 -3.0904389, 55.9463270 -3.0874274, 55.9467444 -3.0839327, 55.9466644 -3.0817683, 55.9327730 -3.1139878, 55.9337031 -3.1104929, 55.9336271 -3.1089539, 55.9348872 -3.1022740, 55.9333574 -3.1019670, 55.9338002 -3.0996745, 55.9352934 -3.0941575, 55.9351027 -3.0906187, 55.9358019 -3.0877568, 55.9369793 -3.0856927, 55.9182126 -3.2268918, 55.9195407 -3.2387433, 55.9191616 -3.2381110, 55.9849861 -3.1901462, 55.9826120 -3.1939830, 55.9814659 -3.1909085, 55.9365429 -3.0862728, 55.9358310 -3.0875175, 55.9348857 -3.0916731, 55.9345115 -3.0934515, 55.9337249 -3.0919727, 55.9335685 -3.0996143, 55.9332608 -3.1017081, 55.9347718 -3.1031813, 55.9334621 -3.1083249, 55.9335903 -3.1110499, 55.9327294 -3.1138425, 55.9465378 -3.0819782, 55.9465931 -3.0847109, 55.9460938 -3.0878918, 55.9454827 -3.0914549, 55.9448685 -3.0948482, 55.9443970 -3.0990533, 55.9441321 -3.1058756, 55.9441375 -3.1102630, 55.9438700 -3.1130254, 55.9436640 -3.1149409, 55.9469740 -3.0812965, 55.9480459 -3.0840647, 55.9484863 -3.0881285, 55.9485297 -3.0912421, 55.9487362 -3.0944129, 55.9492400 -3.1004139, 55.9322570 -3.1612284, 55.9322142 -3.1627933, 55.9333600 -3.1647608, 55.9500203 -3.1035773, 55.9508004 -3.1067703, 55.9515630 -3.1098990, 55.9521035 -3.1121334, 55.9516506 -3.1161153, 55.9486979 -3.1196816, 55.9464983 -3.1184812, 55.9442902 -3.1172326, 55.9405943 -3.1155572, 55.9411746 -3.1209215, 55.9449944 -3.1237859, 55.9387816 -3.1046926, 55.9386947 -3.1052026, 55.9395300 -3.1060327, 55.9394153 -3.1085088, 55.9387324 -3.1127820, 55.9417785 -3.1157674, 55.9407328 -3.1151449, 55.9390990 -3.1149699, 55.9351824 -3.1147189, 55.9343168 -3.1141762, 55.9430442 -3.1208634, 55.9454379 -3.1244233, 55.9426315 -3.1257189, 55.9375420 -3.1241465, 55.9385017 -3.1253270, 55.9410608 -3.1274826, 55.9426698 -3.1303633, 55.9437932 -3.1325388, 55.9489148 -3.1205366, 55.9474434 -3.1271876, 55.9465923 -3.1318067, 55.9338651 -3.1168303, 55.9340391 -3.1200271, 55.9336765 -3.1233462, 55.9326166 -3.1282137, 55.9302325 -3.1265598, 55.9321246 -3.1306062, 55.9324674 -3.1336999, 55.9326522 -3.1394240, 55.9139400 -3.1267273, 55.9185387 -3.1356912, 55.9155121 -3.1296735, 55.9187972 -3.1389581, 55.9208845 -3.1434592, 55.9217098 -3.1474682, 55.9238711 -3.1508128, 55.9272641 -3.1560030, 55.9283368 -3.1617553, 55.9124056 -3.1264908, 55.9081402 -3.1291187, 55.9069794 -3.1312605, 55.9001501 -3.1143357, 55.9028163 -3.1241578, 55.9042957 -3.1285179, 55.9052763 -3.1323346, 55.9053399 -3.1346359, 55.9036494 -3.1376896, 55.9036449 -3.1401208, 55.9040533 -3.1435558, 55.9041279 -3.1471250, 55.9085559 -3.1368622, 55.9163352 -3.1434213, 55.9097802 -3.1395749, 55.9173894 -3.1366200, 55.9163322 -3.1372610, 55.9143183 -3.1373781, 55.9137779 -3.1345943, 55.9132135 -3.1402416, 55.9122286 -3.1444287, 55.9130629 -3.1463553, 55.9150704 -3.1497274, 55.9174499 -3.1530936, 55.9186680 -3.1556511, 55.9195122 -3.1576477, 55.9211555 -3.1609401, 55.9230253 -3.1643266, 55.9239711 -3.1662740, 55.8957268 -3.1376974, 55.8980828 -3.1419913, 55.9001346 -3.1443537, 55.9045252 -3.1498080, 55.9057028 -3.1516824, 55.9070754 -3.1538016, 55.9089055 -3.1560807, 55.9102064 -3.1572552, 55.9121326 -3.1588165, 55.9031764 -3.1508718, 55.9022551 -3.1544616, 55.9012747 -3.1581888, 55.8939449 -3.1618883, 55.8995925 -3.1622011, 55.8998476 -3.1627845, 55.9010755 -3.1640688, 55.9035000 -3.1661408, 55.9058085 -3.1652823, 55.9073292 -3.1641122, 55.9091429 -3.1634886, 55.9115595 -3.1633750, 55.9145960 -3.1615459, 55.9178537 -3.1648276, 55.9135281 -3.1642499, 55.9153239 -3.1662878, 55.9181514 -3.1675567, 55.9209916 -3.1674821, 55.9238706 -3.1671045, 55.9259533 -3.1668815, 55.9451610 -3.1359397, 55.9436407 -3.1410394, 55.9429081 -3.1432174, 55.9371271 -3.1438416, 55.9336787 -3.1416750, 55.9323414 -3.1421618, 55.9318072 -3.1458138, 55.9320983 -3.1502563, 55.9327321 -3.1574144, 55.9334320 -3.1603807, 55.9335825 -3.1625302, 55.9310551 -3.1569770, 55.9299760 -3.1590609, 55.9276757 -3.1645867, 55.9301942 -3.1626048, 55.9335171 -3.1665942, 55.9352278 -3.1690789, 55.9362943 -3.1703276, 55.9380056 -3.1727326, 55.9234523 -3.1714129, 55.9257061 -3.1677999, 55.9243887 -3.1740880, 55.9222245 -3.1769786, 55.9245930 -3.1795592, 55.9250644 -3.1729179, 55.9281383 -3.1747234, 55.9294105 -3.1764887, 55.9284441 -3.1795374, 55.9274586 -3.1825436, 55.9304679 -3.1763625, 55.9324076 -3.1774297, 55.9349862 -3.1793489, 55.9365575 -3.1804052, 55.9273238 -3.1678350, 55.9287664 -3.1692897, 55.9308016 -3.1713795, 55.9333514 -3.1739921, 55.9345432 -3.1752055, 55.9359412 -3.1766219, 55.9378596 -3.1785699, 55.9371680 -3.1785827, 55.9364376 -3.1835393, 55.9361605 -3.1852598, 55.9350575 -3.1868910, 55.9334041 -3.1850316, 55.9327512 -3.1837791, 55.9316287 -3.1856495, 55.9357290 -3.1880801, 55.9352794 -3.1908999, 55.9347514 -3.1934610, 55.9392124 -3.1781004, 55.9403904 -3.1806688, 55.9380758 -3.1813799, 55.9417310 -3.1818531, 55.9432691 -3.1832993, 55.9401121 -3.1759873, 55.9416919 -3.1785475, 55.9431175 -3.1797033, 55.9442893 -3.1810875, 55.9456619 -3.1831172, 55.9469839 -3.1818513, 55.9457698 -3.1849764, 55.9488929 -3.1870504, 55.9492763 -3.1872419, 55.9513723 -3.1882358, 55.9521151 -3.1886009, 55.9460412 -3.1360340, 55.9477331 -3.1377009, 55.9495818 -3.1399010, 55.9506764 -3.1410542, 55.9529056 -3.1458123, 55.9536640 -3.1473562, 55.9479602 -3.1266742, 55.9498886 -3.1280595, 55.9515212 -3.1312938, 55.9520218 -3.1344697, 55.9483951 -3.1370477, 55.9507527 -3.1366844, 55.9527612 -3.1381206, 55.9550194 -3.1407335, 55.9535190 -3.1156774, 55.9534233 -3.1155216, 55.9549542 -3.1180265, 55.9567874 -3.1213887, 55.9572446 -3.1258367, 55.9570083 -3.1277058, 55.9565426 -3.1314563, 55.9562689 -3.1348439, 55.9576607 -3.1251460, 55.9601254 -3.1278125, 55.9606760 -3.1314648, 55.9603409 -3.1346748, 55.9536481 -3.1225672, 55.9566744 -3.1386198, 55.9585592 -3.1378743, 55.9609292 -3.1361657, 55.9631511 -3.1359104, 55.9653780 -3.1350945, 55.9601011 -3.1372948, 55.9600487 -3.1400484, 55.9564001 -3.1391243, 55.9574312 -3.1411783, 55.9587207 -3.1437256, 55.9586697 -3.1434197, 55.9592475 -3.1440935, 55.9606921 -3.1423741, 55.9622214 -3.1450944, 55.9623357 -3.1492308, 55.9611520 -3.1537771, 55.9617355 -3.1586323, 55.9598518 -3.1573266, 55.9616167 -3.1588370, 55.9668014 -3.1337263, 55.9692198 -3.1438523, 55.9704333 -3.1519544, 55.9700124 -3.1556431, 55.9558380 -3.1386914, 55.9550460 -3.1447760, 55.9550213 -3.1476460, 55.9550728 -3.1523790, 55.9548118 -3.1629421, 55.9555903 -3.1566068, 55.9563198 -3.1613807, 55.9566895 -3.1639274, 55.9611674 -3.1521276, 55.9593525 -3.1509303, 55.9591348 -3.1552068, 55.9579853 -3.1583596, 55.9574549 -3.1601489, 55.9572206 -3.1679256, 55.9620617 -3.1535479, 55.9621329 -3.1564976, 55.9625914 -3.1535957, 55.9643118 -3.1546889, 55.9658854 -3.1559206, 55.9678849 -3.1582874, 55.9635998 -3.1549966, 55.9627401 -3.1578613, 55.9697011 -3.1609259, 55.9692599 -3.1643129, 55.9634122 -3.1609252, 55.9648755 -3.1629309, 55.9664000 -3.1642510, 55.9684815 -3.1664925, 55.9631222 -3.1611889, 55.9632266 -3.1663024, 55.9643722 -3.1699129, 55.9644808 -3.1717362, 55.9649261 -3.1753058, 55.9702256 -3.1606806, 55.9724046 -3.1632755, 55.9734772 -3.1676223, 55.9694878 -3.1680589, 55.9692660 -3.1684283, 55.9700561 -3.1702309, 55.9680205 -3.1683016, 55.9662214 -3.1698249, 55.9641358 -3.1704804, 55.9611738 -3.1711284, 55.9586377 -3.1717179, 55.9575346 -3.1733551, 55.9576423 -3.1767165, 55.9577127 -3.1801199, 55.9577689 -3.1829548, 55.9565041 -3.1718648, 55.9560238 -3.1725406, 55.9598986 -3.1836144, 55.9533445 -3.1792984, 55.9539108 -3.1837466, 55.9538082 -3.1860623, 55.9537460 -3.1864288, 55.9536090 -3.1872578, 55.9570795 -3.1725344, 55.9560642 -3.1718523, 55.9542177 -3.1734790, 55.9505210 -3.1770492, 55.9471148 -3.1782693, 55.9486335 -3.1780633, 55.9498991 -3.1788399, 55.9488002 -3.1790809, 55.9492792 -3.1822951, 55.9501804 -3.1839664, 55.9512348 -3.1865851, 55.9510428 -3.1899310, 55.9517661 -3.1736932, 55.9521941 -3.1764060, 55.9513995 -3.1796348, 55.9508278 -3.1825636, 55.9503437 -3.1858623, 55.9739384 -3.1675454, 55.9716823 -3.1695986, 55.9710945 -3.1729414, 55.9696883 -3.1723864, 55.9675371 -3.1742485, 55.9652851 -3.1761642, 55.9754404 -3.1672776, 55.9767799 -3.1727255, 55.9773024 -3.1758686, 55.9778968 -3.1792143, 55.9750843 -3.1712339, 55.9738978 -3.1727490, 55.9719290 -3.1728798, 55.9722046 -3.1746804, 55.9721394 -3.1759853, 55.9703025 -3.1809373, 55.9747119 -3.1831053, 55.9743144 -3.1856322, 55.9787681 -3.1799116, 55.9803325 -3.1776103, 55.9802576 -3.1818238, 55.9807529 -3.1767871, 55.9785884 -3.1824160, 55.9794446 -3.1861987, 55.9799233 -3.1897858, 55.9807036 -3.1944752, 55.9805081 -3.1972155, 55.9657942 -3.1807024, 55.9675800 -3.1828235, 55.9684568 -3.1840135, 55.9725807 -3.1879435, 55.9687365 -3.1849738, 55.9675923 -3.1871498, 55.9659016 -3.1891647, 55.9642904 -3.1922393, 55.9636036 -3.1943508, 55.9622037 -3.1793755, 55.9627389 -3.1787103, 55.9618397 -3.1798451, 55.9622890 -3.1826621, 55.9645359 -3.1863513, 55.9587553 -3.1837463, 55.9585333 -3.1839575, 55.9557001 -3.1866674, 55.9540735 -3.1877177, 55.9572218 -3.1884308, 55.9597602 -3.1915275, 55.9606648 -3.1931837, 55.9618206 -3.1955056, 55.9620775 -3.1961605, 55.9744173 -3.1897628, 55.9757115 -3.1912766, 55.9778758 -3.1932662, 55.9778282 -3.1960220, 55.9796199 -3.1977699, 55.9798541 -3.2042094, 55.9801527 -3.2091552, 55.9803741 -3.2115676, 55.9801812 -3.2157080, 55.9802572 -3.2206212, 55.9808168 -3.2232477, 55.9737056 -3.1899377, 55.9731967 -3.1935301, 55.9724352 -3.1987820, 55.9716446 -3.2041100, 55.9719126 -3.2049401, 55.9731446 -3.2058360, 55.9748834 -3.2071317, 55.9763183 -3.2083302, 55.9712913 -3.2063993, 55.9564422 -3.1886008, 55.9511728 -3.1894775, 55.9513768 -3.1853034, 55.9530038 -3.1904535, 55.9529734 -3.1906361, 55.9550011 -3.1944896, 55.9523721 -3.1941529, 55.9522306 -3.1949546, 55.9521243 -3.1955713, 55.9414032 -3.1835175, 55.9439756 -3.1855145, 55.9457447 -3.1858708, 55.9459185 -3.1889928, 55.9462149 -3.1911216, 55.9474608 -3.1915894, 55.9483990 -3.1921221, 55.9499555 -3.1941302, 55.9513537 -3.1966807, 55.9563095 -3.1988813, 55.9543603 -3.1978922, 55.9530552 -3.1971722, 55.9518480 -3.1998550, 55.9512810 -3.2003210, 55.9511317 -3.2011985, 55.9510603 -3.2016272, 55.9507178 -3.2036019, 55.9505841 -3.2043884, 55.9451215 -3.1923158, 55.9448465 -3.1948923, 55.9448398 -3.1982337, 55.9495074 -3.2066951, 55.9492342 -3.2065847, 55.9483042 -3.2035260, 55.9477777 -3.2074310, 55.9470945 -3.2058026, 55.9462517 -3.2055118, 55.9451884 -3.2051208, 55.9428135 -3.2034910, 55.9425896 -3.2034198, 55.9417455 -3.2046015, 55.9407315 -3.2096840, 55.9393435 -3.2127503, 55.9381500 -3.2153226, 55.9368951 -3.2180234, 55.9360677 -3.2206086, 55.9339332 -3.2231747, 55.9412949 -3.2033828, 55.9392306 -3.2046030, 55.9364756 -3.2079633, 55.9348931 -3.2100243, 55.9431527 -3.2018790, 55.9380729 -3.1920260, 55.9368177 -3.1935085, 55.9393298 -3.1949761, 55.9378804 -3.1946691, 55.9368007 -3.1944119, 55.9350732 -3.1939952, 55.9308908 -3.2069640, 55.9343964 -3.1957873, 55.9338607 -3.1991324, 55.9332178 -3.2042350, 55.9316658 -3.2098633, 55.9255180 -3.2092824, 55.9343401 -3.1937110, 55.9324314 -3.1928183, 55.9307981 -3.1906344, 55.9288165 -3.1883328, 55.9268393 -3.1865276, 55.9262877 -3.1868332, 55.9260329 -3.1918876, 55.9260226 -3.1956894, 55.9252810 -3.2008040, 55.9245993 -3.2043518, 55.9245882 -3.2080628, 55.9241896 -3.2108770, 55.9228987 -3.2146532, 55.9225156 -3.2170578, 55.9221869 -3.2212083, 55.9206392 -3.2214316, 55.9191376 -3.2215284, 55.9166716 -3.2237230, 55.9166491 -3.2286985, 55.9223977 -3.2109519, 55.9207716 -3.2118853, 55.9191375 -3.2134193, 55.9176425 -3.2164250, 55.9150152 -3.2167748, 55.9131617 -3.2179327, 55.9117618 -3.2186153, 55.9105601 -3.2202188, 55.9089266 -3.2227432, 55.9076164 -3.2261893, 55.8999546 -3.1638273, 55.8995340 -3.1702762, 55.8996425 -3.1730463, 55.8989771 -3.1908750, 55.8989296 -3.1948559, 55.8992800 -3.1976335, 55.9004541 -3.2016363, 55.9185850 -3.2128862, 55.9174509 -3.2130748, 55.9153185 -3.2133602, 55.9128108 -3.2134259, 55.9111623 -3.2120145, 55.9091712 -3.2098087, 55.9068224 -3.2083279, 55.9036702 -3.2062550, 55.9022918 -3.2048441, 55.8993754 -3.2039298, 55.8975587 -3.2035692, 55.9017236 -3.2059781, 55.9020682 -3.2084040, 55.9020822 -3.2133788, 55.9020983 -3.2181138, 55.9024927 -3.2209412, 55.9538170 -3.2010786, 55.9557714 -3.2021464, 55.9519898 -3.2056255, 55.9506446 -3.2093738, 55.9504970 -3.2090293, 55.9515635 -3.2119466, 55.9590112 -3.1954889, 55.9578837 -3.1987058, 55.9569531 -3.2042594, 55.9573349 -3.2073650, 55.9581370 -3.1998753, 55.9595344 -3.2006164, 55.9611948 -3.1982635, 55.9612444 -3.2015410, 55.9622843 -3.2005526, 55.9634143 -3.2010164, 55.9646582 -3.2129757, 55.9654477 -3.2035216, 55.9669436 -3.2050472, 55.9683045 -3.2063198, 55.9696149 -3.2076181, 55.9705997 -3.2085738, 55.9709352 -3.2119099, 55.9704174 -3.2167020, 55.9701671 -3.2188738, 55.9696091 -3.2244001, 55.9693067 -3.2276608, 55.9689314 -3.2315056, 55.9685250 -3.2348925, 55.9712946 -3.2144423, 55.9732621 -3.2150362, 55.9756585 -3.2157626, 55.9775440 -3.2163025, 55.9765164 -3.2203214, 55.9757819 -3.2253483, 55.9756505 -3.2271990, 55.9771543 -3.2210647, 55.9785634 -3.2239458, 55.9787849 -3.2278793, 55.9785446 -3.2303558, 55.9754414 -3.2324687, 55.9752064 -3.2352977, 55.9792990 -3.2131670, 55.9800457 -3.2230791, 55.9804847 -3.2259297, 55.9806269 -3.2293776, 55.9765935 -3.2304701, 55.9784683 -3.2325970, 55.9778127 -3.2361500, 55.9772858 -3.2385050, 55.9602477 -3.2031604, 55.9599422 -3.2050807, 55.9584545 -3.2079471, 55.9589660 -3.2114386, 55.9592891 -3.2157462, 55.9577015 -3.2172967, 55.9592368 -3.2207211, 55.9587913 -3.2241128, 55.9573790 -3.2117285, 55.9566490 -3.2146849, 55.9557623 -3.2162108, 55.9543230 -3.2154609, 55.9551079 -3.2193216, 55.9577741 -3.2253880, 55.9599993 -3.2284217, 55.9618699 -3.2309640, 55.9632492 -3.2339433, 55.9633694 -3.2324315, 55.9664241 -3.2347134, 55.9694408 -3.2367643, 55.9731091 -3.2383395, 55.9751261 -3.2388206, 55.9767114 -3.2393360, 55.9765998 -3.2429397, 55.9764404 -3.2466030, 55.9753612 -3.2528982, 55.9778044 -3.2565189, 55.9775609 -3.2662709, 55.9779349 -3.2692159, 55.9682289 -3.2375427, 55.9678257 -3.2418878, 55.9673384 -3.2465506, 55.9672975 -3.2372246, 55.9661966 -3.2376861, 55.9633638 -3.2388133, 55.9618160 -3.2413074, 55.9608667 -3.2458460, 55.9605055 -3.2523900, 55.9606097 -3.2561219, 55.9578389 -3.2295517, 55.9572859 -3.2327712, 55.9565236 -3.2376280, 55.9548640 -3.2243511, 55.9546493 -3.2287648, 55.9546692 -3.2357647, 55.9552559 -3.2390179, 55.9562727 -3.2434691, 55.9509150 -3.2138808, 55.9498016 -3.2162253, 55.9493877 -3.2175003, 55.9495686 -3.2189589, 55.9505731 -3.2230145, 55.9514713 -3.2255762, 55.9527412 -3.2281759, 55.9524230 -3.2305165, 55.9518539 -3.2342496, 55.9514492 -3.2373993, 55.9556231 -3.2445563, 55.9530175 -3.2441643, 55.9507159 -3.2441124, 55.9505095 -3.2472253, 55.9503401 -3.2498159, 55.9480985 -3.2476264, 55.9460978 -3.2508001, 55.9571515 -3.2489141, 55.9583681 -3.2521089, 55.9593674 -3.2545759, 55.9601292 -3.2565389, 55.9602989 -3.2584026, 55.9613231 -3.2619280, 55.9597973 -3.2591231, 55.9598916 -3.2622018, 55.9597990 -3.2668442, 55.9579196 -3.2678560, 55.9625566 -3.2713077, 55.9620642 -3.2641468, 55.9631875 -3.2650165, 55.9645665 -3.2681054, 55.9612273 -3.2475075, 55.9627641 -3.2483740, 55.9650185 -3.2496090, 55.9677421 -3.2492713, 55.9694716 -3.2506410, 55.9715923 -3.2523918, 55.9723523 -3.2534784, 55.9719651 -3.2590216, 55.9721512 -3.2610306, 55.9739477 -3.2535546, 55.9741285 -3.2536167, 55.9746885 -3.2552562, 55.9739088 -3.2596296, 55.9732957 -3.2633433, 55.9726441 -3.2672961, 55.9719985 -3.2715213, 55.9666249 -3.2528329, 55.9661313 -3.2556920, 55.9657429 -3.2611747, 55.9661622 -3.2651392, 55.9669045 -3.2679416, 55.9682698 -3.2693968, 55.9694054 -3.2705672, 55.9655849 -3.2678183, 55.9654369 -3.2708414, 55.9653772 -3.2731465, 55.9667898 -3.2764453, 55.9657775 -3.2744093, 55.9684197 -3.2787100, 55.9702703 -3.2813508, 55.9731093 -3.2874377, 55.9729198 -3.2952352, 55.9745355 -3.2979654, 55.9753143 -3.2999465, 55.9731404 -3.3041361, 55.9715725 -3.3062465, 55.9687840 -3.3073703, 55.9698187 -3.3067247, 55.9715389 -3.2992270, 55.9665978 -3.3076170, 55.9630646 -3.3069371, 55.9614840 -3.3060028, 55.9636839 -3.2735235, 55.9617919 -3.2652914, 55.9620711 -3.2678476, 55.9622731 -3.2700489, 55.9625577 -3.2755530, 55.9613943 -3.2821462, 55.9585894 -3.2795552, 55.9617795 -3.2842000, 55.9610464 -3.2903852, 55.9605635 -3.2944540, 55.9602624 -3.3000026, 55.9604971 -3.3033104, 55.9576021 -3.3076981, 55.9609343 -3.3086915, 55.9625535 -3.3144333, 55.9650880 -3.3178766, 55.9679579 -3.3215985, 55.9717087 -3.3296458, 55.9793970 -3.3726056, 55.9876225 -3.4053402, 55.9796650 -3.3475006, 55.9841890 -3.3585897, 55.9841576 -3.3630607, 55.9822616 -3.3735887, 55.9866380 -3.3764865, 55.9867144 -3.3820021, 55.9871401 -3.3873073, 55.9874589 -3.3909095, 55.9870411 -3.3960723, 55.9907091 -3.3983046, 55.9901075 -3.4037978, 55.9900444 -3.3976399, 55.9863873 -3.3966739, 55.9843886 -3.3962171, 55.9891253 -3.4109545, 55.9882163 -3.4151592, 55.9866294 -3.4191943, 55.9847835 -3.4128218, 55.9842063 -3.4098674, 55.9827390 -3.3942984, 55.9821321 -3.3899489, 55.9822851 -3.3883355, 55.9828080 -3.3849883, 55.9492297 -3.1934848, 55.9485101 -3.1950625, 55.9466052 -3.2025367, 55.9483763 -3.1903144, 55.9458781 -3.2015473, 55.9450777 -3.2041637, 55.9433912 -3.2080175, 55.9425797 -3.2117259, 55.9411818 -3.2158659, 55.9413277 -3.2188601, 55.9456681 -3.2081800, 55.9460697 -3.2125273, 55.9496579 -3.2091165, 55.9491712 -3.2102205, 55.9478015 -3.2132758, 55.9458558 -3.2248034, 55.9457052 -3.2281933, 55.9455617 -3.2302479, 55.9458711 -3.2362232, 55.9455816 -3.2405353, 55.9455000 -3.2414934, 55.9451612 -3.2452583, 55.9445781 -3.2509113, 55.9415225 -3.2515239, 55.9398001 -3.2513278, 55.9445971 -3.2523768, 55.9432896 -3.2591959, 55.9423640 -3.2644657, 55.9420784 -3.2677707, 55.9416489 -3.2710870, 55.9418636 -3.2748424, 55.9422212 -3.2779592, 55.9426632 -3.2817824, 55.9430420 -3.2868775, 55.9428655 -3.2912301, 55.9449232 -3.2940603, 55.9472006 -3.2945366, 55.9486955 -3.2950830, 55.9515534 -3.2964964, 55.9531823 -3.2973789, 55.9541276 -3.2956843, 55.9547471 -3.2929786, 55.9555149 -3.2883112, 55.9557800 -3.2861577, 55.9562439 -3.2830337, 55.9566686 -3.2802126, 55.9545585 -3.2783331, 55.9513042 -3.2784661, 55.9485655 -3.2791445, 55.9575519 -3.2997035, 55.9422013 -3.2956988, 55.9417161 -3.2991090, 55.9413296 -3.3025225, 55.9409367 -3.3073767, 55.9406682 -3.3114984, 55.9417940 -3.3129455, 55.9478442 -3.3143833, 55.9494570 -3.3122920, 55.9498066 -3.3088206, 55.9517191 -3.3074357, 55.9542153 -3.3070451, 55.9412755 -3.3160661, 55.9425036 -3.3188618, 55.9451319 -3.3243154, 55.9468180 -3.3279600, 55.9497433 -3.3349945, 55.9512870 -3.3409573, 55.9515812 -3.3469413, 55.9188604 -3.3143177, 55.9230531 -3.3784073, 55.9214617 -3.3800951, 55.9215057 -3.3809769, 55.9206547 -3.3847393, 55.9205292 -3.3887035, 55.9087321 -3.4067755, 55.9219922 -3.3892326, 55.9211811 -3.3906632, 55.9387115 -3.3255350, 55.9365596 -3.3381232, 55.9353684 -3.3322588, 55.9366522 -3.3520420, 55.9385970 -3.3586716, 55.9435147 -3.3610949, 55.9410783 -3.3688003, 55.9389078 -3.3558459, 55.9483246 -3.3636111, 55.9483106 -3.3627382, 55.9482511 -3.3624897, 55.9472339 -3.3605916, 55.9471878 -3.3605529, 55.9471416 -3.3605141, 55.9470954 -3.3604754, 55.9470492 -3.3604367, 55.9470030 -3.3603979, 55.9376105 -3.3671090, 55.9469569 -3.3603592, 55.9469107 -3.3603205, 55.9467989 -3.3602757, 55.9467339 -3.3602688, 55.9466736 -3.3602644, 55.9380851 -3.3737218, 55.9386598 -3.3897845, 55.9377706 -3.3913376, 55.9369683 -3.3915650, 55.9388978 -3.3997195, 55.9378057 -3.4080213, 55.9397489 -3.4080649, 55.9407080 -3.4096156, 55.9460331 -3.4132676, 55.9528355 -3.4046126, 55.9553388 -3.4014279, 55.9560834 -3.4032868, 55.9564934 -3.4059446, 55.9565314 -3.4128336, 55.9456796 -3.2170439, 55.9455186 -3.2170669, 55.9425162 -3.2214439, 55.9413678 -3.2230988, 55.9395990 -3.2256413, 55.9390979 -3.2257588, 55.9386491 -3.2239035, 55.9387118 -3.2262810, 55.9367349 -3.2275413, 55.9351103 -3.2312333, 55.9252015 -3.2107562, 55.9253987 -3.2135471, 55.9247146 -3.2171268, 55.9244926 -3.2215848, 55.9258313 -3.2243157, 55.9285042 -3.2238795, 55.9334398 -3.2118455, 55.9314723 -3.2172745, 55.9308274 -3.2197833, 55.9296136 -3.2243870, 55.9304653 -3.2250032, 55.9325495 -3.2285089, 55.9307673 -3.2259754, 55.9286959 -3.2279452, 55.9279324 -3.2298879, 55.9257645 -3.2337083, 55.9229368 -3.2370112, 55.9213123 -3.2386078, 55.9336198 -3.2343954, 55.9335715 -3.2345102, 55.9306860 -3.2384586, 55.9294123 -3.2400186, 55.9280488 -3.2415756, 55.9271722 -3.2429560, 55.9250339 -3.2455923, 55.9232151 -3.2477265, 55.9218937 -3.2433312, 55.9191327 -3.2408905, 55.9174821 -3.2416601, 55.9155442 -3.2403119, 55.9121873 -3.2380271, 55.9100844 -3.2345862, 55.9085928 -3.2291957, 55.9064805 -3.2256576, 55.9059136 -3.2239281, 55.9055130 -3.2235475, 55.9051874 -3.2237612, 55.9042466 -3.2225799, 55.9012188 -3.2216370, 55.9009964 -3.2259325, 55.9011654 -3.2224830, 55.9038972 -3.2233847, 55.9038681 -3.2263110, 55.9038755 -3.2309659, 55.9044653 -3.2366791, 55.9057286 -3.2432938, 55.9341148 -3.0936004, 55.9132235 -3.2441097, 55.9112979 -3.2479197, 55.9088099 -3.2513593, 55.9079240 -3.2536503, 55.9075266 -3.2503101, 55.9064316 -3.2475235, 55.9052864 -3.2496942, 55.9064491 -3.2528829, 55.9075503 -3.2541662, 55.9065856 -3.2580063, 55.9013113 -3.2588432, 55.9042020 -3.2617062, 55.9033613 -3.2657397, 55.9029773 -3.2681264, 55.9011080 -3.2681454, 55.8997717 -3.2704607, 55.9072410 -3.2587178, 55.9071090 -3.2674294, 55.9345120 -3.2341784, 55.9362852 -3.2365721, 55.9387709 -3.2284310, 55.9377995 -3.2321016, 55.9372383 -3.2347134, 55.9363561 -3.2402404, 55.9340199 -3.2444985, 55.9369187 -3.2398280, 55.9390173 -3.2409979, 55.9404615 -3.2385624, 55.9374075 -3.2429156, 55.9358564 -3.2453451, 55.9347466 -3.2465763, 55.9329425 -3.2463743, 55.9322531 -3.2487853, 55.9318154 -3.2503079, 55.9306922 -3.2538412, 55.9297023 -3.2575067, 55.9295709 -3.2606877, 55.9368265 -3.2497169, 55.9354514 -3.2532746, 55.9338935 -3.2571302, 55.9329021 -3.2591791, 55.9282277 -3.2654938, 55.9332232 -3.2620549, 55.9335359 -3.2657309, 55.9324873 -3.2715714, 55.9235867 -3.2517673, 55.9252370 -3.2583224, 55.9250412 -3.2634054, 55.9253327 -3.2670045, 55.9256990 -3.2693485, 55.9259551 -3.2716316, 55.9312800 -3.2778642, 55.9306299 -3.2824308, 55.9298551 -3.2842617, 55.9340064 -3.2762792, 55.9359415 -3.2790327, 55.9384695 -3.2804768, 55.9404129 -3.2844133, 55.9399151 -3.2882897, 55.9400197 -3.2915504, 55.9262292 -3.2831711, 55.9285408 -3.2847270, 55.9332649 -3.2879535, 55.9363412 -3.2906844, 55.9383402 -3.2926493, 55.9419631 -3.2931250, 55.9235128 -3.2826349, 55.9228999 -3.2862368, 55.9222758 -3.2502543, 55.9208367 -3.2545312, 55.9187043 -3.2583187, 55.9163065 -3.2599371, 55.9149834 -3.2610302, 55.9248456 -3.2596861, 55.9229556 -3.2617372, 55.9216262 -3.2634383, 55.9192373 -3.2650568, 55.9168804 -3.2644360, 55.9145188 -3.2625192, 55.9130499 -3.2629354, 55.9118773 -3.2651211, 55.9098652 -3.2685432, 55.9083877 -3.2706547, 55.9075292 -3.2737300, 55.9059536 -3.2783654, 55.9047878 -3.2815902, 55.9039296 -3.2837533, 55.9045093 -3.2858999, 55.9023366 -3.2891550, 55.9033691 -3.2849345, 55.9017224 -3.2894546, 55.9003774 -3.2943202, 55.8990734 -3.2986221, 55.8974456 -3.3030667, 55.8967760 -3.3060509, 55.9089844 -3.2729139, 55.9243397 -3.2678317, 55.9222409 -3.2735564, 55.9194599 -3.2731131, 55.9222182 -3.2722754, 55.9203149 -3.2712369, 55.9178881 -3.2743744, 55.9200764 -3.2810447, 55.9193096 -3.2754765, 55.9173795 -3.2761652, 55.9124636 -3.2770917, 55.9112570 -3.2813389, 55.9142853 -3.2769020, 55.9165185 -3.2788121, 55.9181367 -3.2901665, 55.9174875 -3.2823698, 55.9181916 -3.2982827, 55.9177938 -3.2950125, 55.9185427 -3.2906819, 55.9198755 -3.2910665, 55.9206354 -3.2955263, 55.9196821 -3.2967661, 55.9192788 -3.2990625, 55.9164383 -3.2854468, 55.9163450 -3.2857797, 55.9138800 -3.2912021, 55.9109496 -3.2912967, 55.9114544 -3.2877137, 55.9095492 -3.2825632, 55.9164543 -3.2856393, 55.9164165 -3.2858141, 55.9145344 -3.2869570, 55.9199398 -3.2900273, 55.9318454 -3.2935283, 55.9327811 -3.2976895, 55.9334086 -3.3003838, 55.9340968 -3.3041367, 55.9330951 -3.3087774, 55.9332338 -3.3143208, 55.9345802 -3.3161433, 55.9313620 -3.2950649, 55.9299963 -3.2993091, 55.9195397 -3.2981751, 55.9297250 -3.3020246, 55.9276961 -3.3082193, 55.9311156 -3.3056373, 55.9322299 -3.3064751, 55.9340229 -3.3077201, 55.9355926 -3.3122074, 55.9361695 -3.2993236, 55.9292786 -3.2872164, 55.9289897 -3.2899278, 55.9277979 -3.2921770, 55.9269314 -3.2942609, 55.9262776 -3.2988424, 55.9257125 -3.3024787, 55.9246333 -3.2923278, 55.9261437 -3.2931143, 55.9231767 -3.2915592, 55.9223655 -3.3026194, 55.9281533 -3.2974665, 55.9218602 -3.2928436, 55.9208065 -3.2982015, 55.9207966 -3.2982812, 55.9207760 -3.2985365, 55.9171544 -3.3140322, 55.9171492 -3.3213619, 55.9120572 -3.3546582, 55.9221643 -3.2722736, 55.9178974 -3.2743427, 55.9079617 -3.3690892, 55.9144831 -3.3248672, 55.9125487 -3.3239700, 55.9007886 -3.3098165, 55.8987034 -3.3132329, 55.8967963 -3.3125927, 55.8957425 -3.3139442, 55.8949242 -3.3162397, 55.8938281 -3.3178977, 55.8960867 -3.3100259, 55.8950017 -3.3131878, 55.8933968 -3.3178990, 55.8916415 -3.3240439, 55.8901158 -3.3297005, 55.8882427 -3.3383666, 55.8865763 -3.3395564, 55.8839809 -3.3427125, 55.8803230 -3.3452399, 55.8786965 -3.3492422, 55.8754988 -3.3467674, 55.8749254 -3.3424958, 55.8760688 -3.3398180, 55.8856460 -3.3391726, 55.8841917 -3.3373799, 55.8822863 -3.3390729, 55.8788332 -3.3383954, 55.8671502 -3.3344450, 55.9195504 -3.2377835, 55.9183386 -3.2271225, 55.9188051 -3.2242383, 55.9814895 -3.1912619, 55.9818617 -3.2298282, 55.9808740 -3.2353244, 55.9789061 -3.2413813, 55.9830254 -3.1941140, 55.9781517 -3.1735386, 55.8997405 -3.1444845, 55.9481124 -3.3641161, 55.9850192 -3.4297896, 55.9292171 -3.2491367, 55.9303174 -3.2518123, 55.9303651 -3.2515417, 55.9290402 -3.2491314, 55.9508673 -3.1752354, 55.9553235 -3.1920547, 55.9553332 -3.1919926, 55.9553429 -3.1919304, 55.9553525 -3.1918683, 55.9553622 -3.1918061, 55.9553719 -3.1917440, 55.9553816 -3.1916819, 55.9553913 -3.1916197, 55.9554010 -3.1915576, 55.9554107 -3.1914955, 55.9554204 -3.1914333, 55.9554301 -3.1913712, 55.9554398 -3.1913091, 55.9554495 -3.1912469, 55.9554592 -3.1911848, 55.9554688 -3.1911227, 55.9554785 -3.1910605, 55.9554882 -3.1909984, 55.9837906 -3.4014050, 55.9838562 -3.4011669, 55.9472325 -3.1901311, 55.9440850 -3.1328436, 55.9700089 -3.2511164, 55.9423696 -3.2696941, 55.9479136 -3.2671815, 55.9323871 -3.2055924, 55.9558460 -3.2630716, 55.9557687 -3.2636778, 55.9228559 -3.3994491, 55.9066525 -3.1343463, 55.9766612 -3.1797211, 55.9270622 -3.2468023, 55.9438324 -3.2142584, 55.9433875 -3.2147686, 55.9466143 -3.2479373, 55.9602002 -3.2007101, 55.9562981 -3.1986248, 55.9131604 -3.2751589, 55.9103046 -3.3174695, 55.9475607 -3.1861653, 55.9400038 -3.4063741, 55.9403783 -3.4069026, 55.9536715 -3.1868832, 55.9525909 -3.2000321, 55.9476032 -3.2085057, 55.9464948 -3.1985795, 55.9699159 -3.1695202, 55.9514808 -3.2001745, 55.9525187 -3.1942515, 55.9539179 -3.1954762, 55.9458721 -3.1870265, 55.9452545 -3.1868374, 55.9439698 -3.1852609, 55.9287885 -3.2094065, 55.9247503 -3.2765469, 55.9700600 -3.1864505, 55.9493416 -3.2102159, 55.9651187 -3.2337410, 55.9458574 -3.2195136, 55.9458637 -3.2199619, 55.9493651 -3.2098050, 55.9595000 -3.4128903, 55.9596259 -3.4129832, 55.9598444 -3.4081902, 55.9165190 -3.2788074, 55.9272107 -3.3071587, 55.9345077 -3.1677307, 55.9256755 -3.1530955, 55.9259223 -3.1537352, 55.9222074 -3.1327641, 55.9221359 -3.1326473, 55.9223991 -3.1327743, 55.9223281 -3.1326530, 55.9225650 -3.1327823, 55.9225203 -3.1326754, 55.9704312 -3.3338225, 55.9037305 -3.1382383, 55.9287865 -3.3858749, 55.9288710 -3.3856678, 55.9338658 -3.3904702, 55.9199735 -3.1388470, 55.9525355 -3.2025587, 55.9612165 -3.4036848, 55.9897500 -3.4060327, 55.9507195 -3.1921655, 55.9532131 -3.1997985, 55.9541367 -3.1918691, 55.9547528 -3.1939230, 55.9387978 -3.1791123, 55.9632674 -3.1638738, 55.9606525 -3.2004675, 55.9074215 -3.1540164, 55.9271786 -3.3069085, 55.8924479 -3.2012056, 55.9481828 -3.3623024, 55.9391006 -3.3979981, 55.9235643 -3.3412191, 55.9372128 -3.3600559, 55.9367795 -3.3579159, 55.9745653 -3.1721302, 55.9012358 -3.0947274, 55.9707112 -3.2373591, 55.9710196 -3.2373748, 55.9837472 -3.2286500, 55.9790722 -3.2413974, 55.9784869 -3.2420743, 55.9783871 -3.2422108, 55.9327924 -3.2746746, 55.9332385 -3.2750718, 55.9689380 -3.1454180, 55.9690582 -3.1453712, 55.9127847 -3.2847322, 55.9723997 -3.1630202, 55.9422873 -3.2671901 +0 +yes +555 +Mo-Sa 09:30-12:30, Tu, Th, Fr 15:00-18:00 and 49.3791000 8.6912322 +63 +shoemaker, printery, electrician, plumber, locksmith, tailor, key cutter, dressmaker, traitor, painter, painting restoration, heating engineer, beekeeper, hvac, watchmaker, upholsterer, framer, photographer, jeweller, heating, photographic laboratory, caterer, brewery, clockmaker, builder, handicraft, glaziery, confectionery, bookbinder, optician, tiler, roofer, carpenter, window construction, gardener, carpet layer, luthier +yes +49.4133177 8.6889779, 49.4135514 8.6842391, 49.4146501 8.6879184, 49.4168731 8.6919549, 49.4171484 8.6930088, 49.4208847 8.6912002, 49.4093080 8.6997914, 49.4115405 8.7048863, 49.4123719 8.7105227, 49.4126424 8.7078375, 49.4121119 8.7079345, 49.4110927 8.6933193, 49.4133176 8.6889779, 49.4133176 8.6889788, 49.4133176 8.6889785, 49.4135508 8.6842393, 49.4133177 8.6889782, 49.4133176 8.6889782, 49.4133174 8.6889784, 49.4133177 8.6889788, 49.4208843 8.6912004, 49.4208840 8.6912006, 49.4168738 8.6919549, 49.4168732 8.6919560, 49.4208839 8.6912002, 49.4171481 8.6930091, 49.4168744 8.6919560, 49.4168739 8.6919560, 49.4208843 8.6911999, 49.4208846 8.6911997, 49.4168740 8.6919569, 49.4123720 8.7105234, 49.4093080 8.6997912, 49.4115404 8.7048862, 49.4093082 8.6997910, 49.4115404 8.7048863, 49.4093082 8.6997914, 49.4146502 8.6879184, 49.4115403 8.7048862, 49.4059416 8.6926646, 49.4059413 8.6926655, 49.4059418 8.6926647, 49.4059416 8.6926652, 49.4059414 8.6926650, 49.4196480 8.6881884, 49.4158083 8.7151936, 49.4087123 8.7054683, 49.4076130 8.7082748, 49.4076136 8.7082749, 49.4087126 8.7054655, 49.4076135 8.7082758, 49.4076129 8.7082756, 49.4118409 8.7090873 +Corstorphine Hill, Arthur's Seat, Blackford Hill, Allermuir Hill, Haggis Knowe, Crow Hill, Dunsapie Crag, Easter Craiglockhart Hill, Capelaw Hill, White Hill, Torduff Hill, Wester Craiglockhart, Buckstone Snab, The Braids, East Cairn Hill, Caerketton Hill, Whinny Hill, Mons Hill, Warklaw Hill, Calton Hill, Salisbury Crags, The Nether Hill, Dalmahoy Hill, Mansion Hill, New England, Green Craig +no +55.9426063 -3.2085087 +48.8651191 2.3417893, 48.8776904 2.2687637, 48.8889479 2.3316294, 48.8844316 2.3506830, 48.8551205 2.3589562, 48.8424054 2.3895404, 48.8947814 2.3190669, 48.8549238 2.3592860, 48.8698923 2.3755947, 48.8832324 2.3637211, 48.8842940 2.3538553, 48.8245519 2.3668617, 48.8442654 2.3304438, 48.8595500 2.3794207, 48.8476483 2.3769905, 48.8425187 2.3899605, 48.8776787 2.3858246, 48.8683317 2.3921668, 48.8522237 2.3452202, 48.8947391 2.3190753, 48.8903302 2.3647026, 48.8951201 2.3923772, 48.8541107 2.3568241, 48.8892150 2.3050790, 48.8519784 2.3354942, 48.8784073 2.3854415, 48.8782913 2.3861269, 48.8838102 2.3718772, 48.8875552 2.3794980, 48.8480906 2.3770269, 48.8698453 2.3669656, 48.8766670 2.2637973, 48.8748600 2.3639693, 48.8609265 2.3628538, 48.8294004 2.3817559, 48.8508732 2.3491554, 48.8486259 2.4110383, 48.8488289 2.3520343, 48.8640121 2.3431386, 48.8605119 2.3524278, 48.8609964 2.3511217, 48.8581282 2.3585957, 48.8665653 2.3534157, 48.8748621 2.3640685, 48.8714289 2.3586492, 48.8491305 2.3324247, 48.8616442 2.3214269, 48.8909125 2.3908221, 48.8914135 2.3730389, 48.8958998 2.3850390, 48.8523494 2.3282306, 48.8775032 2.3443702, 48.8660241 2.3891973, 48.8700810 2.3939859, 48.8852691 2.3273520, 48.8852591 2.3385563, 48.8480847 2.3771241, 48.8312041 2.3702611, 48.8520334 2.2747877, 48.8440354 2.3463430, 48.8571575 2.3234807, 48.8270369 2.3133478, 48.8497046 2.3472459, 48.8582260 2.3619639, 48.8310687 2.3580834, 48.8902445 2.3700712, 48.8548894 2.3230863, 48.8717602 2.3914301, 48.8673569 2.3780427 +55.9432488 -3.1817167, 55.9164464 -3.2255329, 55.9166163 -3.2225162, 55.9279913 -3.2292065, 55.9058039 -3.2543852, 55.9409114 -3.2097700, 55.9703622 -3.1822317, 55.9628897 -3.1944604, 55.9358839 -3.1759899, 55.9344136 -3.2126517, 55.9417000 -3.2026025, 55.9438526 -3.1964947, 55.9592575 -3.1901766, 55.9613996 -3.1820673, 55.9580853 -3.1891489, 55.9488813 -3.1834652, 55.9492101 -3.2153200, 55.9544768 -3.1997466, 55.9678361 -3.2060988, 55.9309993 -3.1942265, 55.9296483 -3.1705890, 55.9741180 -3.2117279, 55.9489685 -3.1194874, 55.9468668 -3.1827657, 55.9713977 -3.2133259, 55.9390116 -3.2052594, 55.9365045 -3.2061792, 55.9410176 -3.2095848, 55.9292890 -3.2059199, 55.9598760 -3.2111177, 55.9296306 -3.1686378, 55.9167292 -3.1640730, 55.9351048 -3.2071638, 55.9335197 -3.2097268, 55.9462694 -3.1973178, 55.9324830 -3.1925693, 55.9310841 -3.1608286, 55.9344536 -3.1587071, 55.9364299 -3.2061861, 55.9350584 -3.2069944, 55.9350875 -3.2070173, 55.9118553 -3.1422876, 55.9335280 -3.2095487, 55.9408795 -3.2097114, 55.9016895 -3.1650816, 55.9242811 -3.1768126, 55.9488044 -3.1194808, 55.9550446 -3.1662332, 55.9227482 -3.2166698, 55.9768910 -3.2298201, 55.9719283 -3.1746636, 55.9657117 -3.2328158 +http://canmore.rcahms.gov.uk/en/site/50719/details/the+cat+stane/, http://www.themodernantiquarian.com/site/728/ravenswood avenue standing stone.html +49.4785782 8.6564609, 49.4869999 8.7367276, 49.4805167 8.6715673, 49.4943601 8.7246887 +48.8410120 2.3066005, 48.8570028 2.3007925, 48.8579137 2.3005660, 48.8782645 2.3740462, 48.8318670 2.3144693, 48.8276825 2.3271004, 48.8501002 2.3428094, 48.8327092 2.3625620, 48.8304784 2.3562767, 48.8326050 2.3544168, 48.8554073 2.3268543, 48.8697474 2.3709540, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8703950 2.3709651, 48.8778698 2.3509743, 48.8529470 2.3434116, 48.8535279 2.3681762, 48.8488712 2.2873446, 48.8189960 2.3382666, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8521024 2.4034631, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8653000 2.3752307, 48.8651925 2.3758399, 48.8629074 2.3860380, 48.8668485 2.3837377, 48.8318807 2.3568124, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8507286 2.3779068, 48.8330519 2.3316747, 48.8732053 2.3585526, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8367776 2.2983375, 48.8357338 2.3020633, 48.8605667 2.3751425, 48.8644747 2.2879509, 48.8645963 2.2880351, 48.8649321 2.2883111, 48.8654525 2.2886812, 48.8667948 2.2896169, 48.8677281 2.2909720, 48.8369085 2.4021711, 48.8396803 2.3945209, 48.8368339 2.3917853, 48.8393074 2.3970077, 48.8744139 2.3574128, 48.8482696 2.3715140, 48.8470790 2.3740473, 48.8469009 2.3721664, 48.8461048 2.3740873, 48.8477030 2.3740290, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8457782 2.3745532, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8344235 2.3052236, 48.8563547 2.3050003, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8546797 2.3051724, 48.8840239 2.3218519, 48.8830031 2.2877361, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8402359 2.3617231, 48.8649004 2.4054084, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8806821 2.3741833, 48.8855270 2.2969790, 48.8846750 2.2981530, 48.8773919 2.3395256, 48.8737979 2.3160522, 48.8841082 2.3224492, 48.8388963 2.2993041, 48.8807958 2.3003045, 48.8423511 2.2814155, 48.8529207 2.3436323, 48.8386703 2.2822723, 48.8648693 2.3427189, 48.8743117 2.3760048, 48.8686697 2.3421738, 48.8578234 2.2746494, 48.8660916 2.3526753, 48.8612900 2.3499825, 48.8612937 2.3537009, 48.8669898 2.3620443, 48.8667188 2.3611850, 48.8518893 2.3417124, 48.8633000 2.3620149, 48.8632099 2.3622012, 48.8626247 2.3633483, 48.8621296 2.3644112, 48.8614452 2.3647591, 48.8630803 2.3510377, 48.8421221 2.3217245, 48.8592743 2.3796462, 48.8521680 2.3314230, 48.8447287 2.3244719, 48.8427041 2.3238548, 48.8883530 2.3917794, 48.8904247 2.3760144, 48.8296478 2.3789647, 48.8797413 2.3271672, 48.8687291 2.3014159, 48.8664956 2.3016793, 48.8698436 2.3061758, 48.8382010 2.3505000, 48.8287894 2.3821387, 48.8444634 2.4058653, 48.8749903 2.2860127, 48.8759692 2.2834989, 48.8459991 2.3734585, 48.8593999 2.2774250, 48.8411414 2.3136506, 48.8417733 2.3185097, 48.8394820 2.3097854, 48.8781855 2.2878593, 48.8362844 2.3061932, 48.8233119 2.3260789, 48.8475928 2.2669653, 48.8454405 2.2582420, 48.8606979 2.3554288, 48.8605259 2.3552067, 48.8717642 2.3765169, 48.8399984 2.2627388, 48.8390983 2.2821736, 48.8307191 2.3193023, 48.8304006 2.3192272, 48.8824125 2.3814642, 48.8758150 2.2867065, 48.8504365 2.3250405, 48.8480122 2.2605847, 48.8555518 2.3602965, 48.8585424 2.3554995, 48.8661318 2.3536080, 48.8417910 2.3293787, 48.8685310 2.3627215, 48.8645339 2.3458426, 48.8671863 2.3624934, 48.8471366 2.3867728, 48.8382469 2.3985623, 48.8356227 2.4057366, 48.8417549 2.3864187, 48.8455537 2.3108109, 48.8450445 2.3104567, 48.8394375 2.2918836, 48.8431097 2.3128917, 48.8673662 2.3064825, 48.8256887 2.3653770, 48.8695383 2.3950747, 48.8263809 2.3414522, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8953387 2.3825799, 48.8388287 2.2816271, 48.8234162 2.3578095, 48.8223317 2.3587958, 48.8283319 2.3249564, 48.8500696 2.2886536, 48.8560015 2.3425743, 48.8544203 2.3257043, 48.8488537 2.3789042, 48.8459220 2.4058540, 48.8585344 2.2751198, 48.8768988 2.3387135, 48.8620598 2.2758197, 48.8768502 2.3324723, 48.8707193 2.3495070, 48.8756147 2.3563557, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8751634 2.3407635, 48.8468273 2.3109956, 48.8727906 2.3327950, 48.8540420 2.4102463, 48.8631677 2.3877376, 48.8465399 2.3518782, 48.8371620 2.2788430, 48.8256754 2.3500062, 48.8260463 2.3458083, 48.8275711 2.3258960, 48.8274068 2.3262715, 48.8312357 2.3775548, 48.8731847 2.3591245, 48.8706166 2.3614024, 48.8549374 2.3061290, 48.8433668 2.3494422, 48.8570621 2.3817062, 48.8789794 2.3539524, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8481085 2.4036760, 48.8509779 2.2927923, 48.8550471 2.2699500, 48.8442816 2.3244689, 48.8358185 2.3869346, 48.8857946 2.3099771, 48.8416006 2.3224232, 48.8430431 2.3223965, 48.8850396 2.3205857, 48.8860872 2.3177587, 48.8468610 2.3536998, 48.8201698 2.3641255, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8804253 2.3287401, 48.8743336 2.3345374, 48.8301847 2.3456951, 48.8340558 2.2901416, 48.8330244 2.2891177, 48.8334343 2.2890580, 48.8642191 2.3423423, 48.8692088 2.4085611, 48.8815429 2.2914706, 48.8838961 2.3274356, 48.8889565 2.3226941, 48.8937935 2.3362303, 48.8959308 2.3457254, 48.8906192 2.3344868, 48.8929700 2.3402831, 48.8938006 2.3360065, 48.8928237 2.3276058, 48.8927037 2.3270855, 48.8950865 2.3279515, 48.8927798 2.3416901, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8507185 2.3452276, 48.8506024 2.2921760, 48.8434041 2.2832488, 48.8441583 2.2814225, 48.8601040 2.2800860, 48.8358361 2.3959436, 48.8620103 2.3504016, 48.8555902 2.2705124, 48.8607663 2.2829855, 48.8742509 2.3267610, 48.8760737 2.3314470, 48.8607520 2.3551307, 48.8599332 2.3492544, 48.8314530 2.3131078, 48.8366420 2.3235880, 48.8798460 2.2882480, 48.8706907 2.3018397, 48.8711468 2.3021857, 48.8750168 2.2842019, 48.8271902 2.3689921, 48.8274443 2.3054531, 48.8259715 2.3507845, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8260781 2.3450782, 48.8690375 2.4018799, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8709768 2.4035156, 48.8711831 2.4041560, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8650286 2.3978764, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8661206 2.3993734, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8646156 2.3980291, 48.8575448 2.3507955, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8265662 2.3114209, 48.8266741 2.3089333, 48.8348018 2.2835149, 48.8898740 2.3601766, 48.8289555 2.3008177, 48.8309472 2.3666202, 48.8900866 2.3603615, 48.8425217 2.2605998, 48.8399979 2.2631418, 48.8393773 2.2626930, 48.8445716 2.2773781, 48.8457722 2.3952172, 48.8423827 2.2779816, 48.8423678 2.2814812, 48.8393433 2.2612518, 48.8382522 2.2590990, 48.8911754 2.3596165, 48.8912089 2.3601196, 48.8556190 2.3071441, 48.8267862 2.3639559, 48.8275456 2.3565272, 48.8292182 2.3568482, 48.8895540 2.3596572, 48.8601780 2.3784708, 48.8918470 2.3497087, 48.8394408 2.3901626, 48.8634536 2.3668626, 48.8621900 2.3647601, 48.8643476 2.3599313, 48.8304465 2.3780998, 48.8358783 2.3528351, 48.8448082 2.4018695, 48.8577037 2.3677906, 48.8547650 2.3703199, 48.8419262 2.3651705, 48.8370898 2.3512464, 48.8439360 2.3521362, 48.8466920 2.2861937, 48.8464464 2.2864898, 48.8471256 2.2857626, 48.8467862 2.2850085, 48.8687439 2.3725567, 48.8757911 2.3276502, 48.8666300 2.3441053, 48.8751073 2.3063372, 48.8473180 2.3512660, 48.8761128 2.3302242, 48.8760136 2.3310108, 48.8628914 2.2767409, 48.8836091 2.3810186, 48.8326928 2.3011680, 48.8367477 2.3065081, 48.8396815 2.2927792, 48.8364615 2.3516931, 48.8759800 2.3435799, 48.8602282 2.3444320, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8442882 2.3080071, 48.8528372 2.2900682, 48.8524061 2.2912571, 48.8529003 2.2907372, 48.8504014 2.2929658, 48.8781331 2.2973879, 48.8466594 2.4106749, 48.8474387 2.3948976, 48.8558171 2.3591925, 48.8843398 2.3684081, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8605440 2.3490975, 48.8235069 2.3253377, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8314166 2.3251141, 48.8747610 2.3399353, 48.8610529 2.3020976, 48.8742737 2.3172451, 48.8335336 2.4018517, 48.8329666 2.3548590, 48.8860790 2.2927720, 48.8862920 2.2922300, 48.8860610 2.2916910, 48.8815650 2.2950420, 48.8816640 2.2951850, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8767675 2.3414635, 48.8801010 2.2887410, 48.8518237 2.3263371, 48.8520482 2.3269387, 48.8896590 2.3042630, 48.8459597 2.3544163, 48.8523174 2.3400938, 48.8480411 2.3409988, 48.8487519 2.3414295, 48.8763180 2.3309180, 48.8570274 2.3983184, 48.8694492 2.3546663, 48.8841050 2.3049810, 48.8840570 2.3045230, 48.8835710 2.3045840, 48.8837420 2.3043460, 48.8493470 2.3529650, 48.8818980 2.3374100, 48.8485190 2.3493440, 48.8401997 2.3954293, 48.8448871 2.2941778, 48.8452118 2.2941040, 48.8454696 2.2946866, 48.8651944 2.3554408, 48.8650138 2.3556963, 48.8895142 2.3498344, 48.8349994 2.3046409, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8619859 2.3647571, 48.8625029 2.3716831, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8455488 2.4110597, 48.8388128 2.3226987, 48.8339484 2.3183045, 48.8409661 2.2878933, 48.8412556 2.2872804, 48.8410949 2.2882264, 48.8651981 2.3604798, 48.8304463 2.3288405, 48.8314813 2.3271321, 48.8421217 2.3299033, 48.8715677 2.3606317, 48.8721816 2.3600284, 48.8590343 2.3461496, 48.8690920 2.3544517, 48.8874646 2.3257792, 48.8873604 2.3254496, 48.8830109 2.3460324, 48.8785250 2.3535336, 48.8734651 2.3583097, 48.8747915 2.3570787, 48.8791742 2.3482838, 48.8760765 2.3450995, 48.8843391 2.3213355, 48.8406978 2.3744965, 48.8449540 2.2895406, 48.8452657 2.2845482, 48.8446514 2.2839876, 48.8442772 2.2836818, 48.8597693 2.3772029, 48.8577757 2.4073141, 48.8538895 2.2941282, 48.8641842 2.3992653, 48.8535488 2.3673835, 48.8532580 2.3674767, 48.8419523 2.3375746, 48.8627281 2.3878662, 48.8573584 2.3900374, 48.8615860 2.3413149, 48.8479392 2.3716919, 48.8330591 2.3871082, 48.8646077 2.3788387, 48.8705497 2.3546686, 48.8740824 2.3480430, 48.8312382 2.3775605, 48.8438388 2.3063057, 48.8440910 2.2831411, 48.8433595 2.2833923, 48.8761824 2.3002522, 48.8513497 2.3992002, 48.8725589 2.3098007, 48.8725939 2.3370941, 48.8772970 2.3488717, 48.8774911 2.3492552, 48.8774769 2.3495261, 48.8783431 2.3528360, 48.8816257 2.3653592, 48.8740775 2.3377311, 48.8794635 2.3364478, 48.8932628 2.3267927, 48.8476121 2.2664327, 48.8931883 2.3272746, 48.8435649 2.3891604, 48.8794618 2.3547465, 48.8753162 2.3572500, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8778905 2.3549883, 48.8488552 2.3942325, 48.8489972 2.3942887, 48.8505758 2.3948498, 48.8494165 2.3948501, 48.8910317 2.3197585, 48.8347313 2.3458453, 48.8791073 2.2907296, 48.8766198 2.2875734, 48.8359858 2.3961013 +0 +french, indian, mexican, pasta, chinese, thai, regional, vietnamese, japanese, couscous, grill, belgian, italian, arab, international, pizza, canadian, New-french, libre, corsican, american, sichuan, Lanzhou, lebanese, peruvian, sushi-yakitori, asian, crepe, sushi, kebab, Sushi-yakitori, shandong, traditional, Sardaigne, steak house, iranian, mediterranean, seafood, korean, latin american, Lao, spanish, burger, moroccan, algerian, Bistrot gastronome, sandwich, gastronomic, jewish, bagel, polish, argentinian, tibetan, morrocan, vietnamien-cambodgien, senegalese, kosher, Hangzhou, smart traditional, fish, brazilian, berber, greek, ivoirian, turkish, african, tapas, chineses (Teochew) - 中国潮州, Océan indien, latino, fondue, cambodian, basque, crêpe, local, maltese, chinese - Fondue pékinoise, brunch, ethiopian, crêperie, Sud-Ouest France, syrian, creole, bento, brasserie, coffee shop, magreb, malaysian, indonesian, thai fruit juces, cocktails, maghrébine, traiteur japonais, ramen, Lyonnaise, Amérique du Sud - Argentine, mongol, Cap Vert, portuguese, crepes, ukrainian, meat, lao, mauritian, salad, caribbean, Oriental Couscous, oriental, Jiangxi, international (Francaise, sud americaine), berbere, oriental couscous, colombian, classique, paella, african caribbean, new york pizza, north african, indian pakistanese, Chinese, Sichuan, armenian, ouïghour, irak, cuisine nissarde, chicken, salade, bio, cake, gluten free, seasonal, Kazakh, Russe, huoguo, russian, bistro, hungarian, colombie, mexicain, juice, grilled meat, afghan, fish and chips, balinese, laotian, Traditionnelle, Shanxi, Maison bio producteurs bols, carribean, Bistrot Branché au charme désué, Restaurant et épicerie fine grecque, vegetarian, pakistanese, indiane, Fondue and raclette, israeli, Japanese, Cupcakes, smoothies, Africaine, georgian, tunisian, organic, salon de thé, restaurant +55.9395738 -3.2207070, 55.9317083 -3.2375695, 55.9480977 -3.1860003, 55.9471995 -3.1855061, 55.9434664 -3.1831055, 55.9434240 -3.1801919, 55.9385215 -3.1946814, 55.9748068 -3.1719428, 55.9764442 -3.1712312, 55.9584860 -3.2082072, 55.9772746 -3.1718085, 55.9624799 -3.1788559, 55.9797681 -3.1890928, 55.9356483 -3.2096691, 55.9450484 -3.2047027, 55.9461895 -3.1912537, 55.9454695 -3.2344844, 55.9707761 -3.2083458, 55.9465573 -3.2166040, 55.9594775 -3.1561656, 55.9506835 -3.1901263, 55.9426119 -3.2218340, 55.9364334 -3.2079099, 55.9454558 -3.1847776, 55.9750319 -3.1805542, 55.9463186 -3.2159103, 55.9495552 -3.2091699, 55.9582298 -3.2268150, 55.9462622 -3.2145897, 55.9462614 -3.2149075, 55.9589427 -3.2121340, 55.9425916 -3.2009298, 55.9420620 -3.2036946, 55.9418227 -3.2036511, 55.9447296 -3.2505503, 55.9460528 -3.2226765, 55.9479040 -3.2136850, 55.9461791 -3.2053213, 55.9499013 -3.1834760, 55.9573001 -3.2497968, 55.9435020 -3.2024352, 55.9518969 -3.2025598, 55.9555667 -3.1925204, 55.9423653 -3.2037351, 55.9426809 -3.2803231, 55.9429213 -3.2881096, 55.9604422 -3.2566980, 55.9656127 -3.2709323, 55.9573509 -3.1857841, 55.9580954 -3.1850322, 55.9574839 -3.1856131, 55.9291119 -3.2097442, 55.9246481 -3.2100800, 55.9608511 -3.1806444, 55.9736032 -3.1729794, 55.9375777 -3.1779460, 55.9354709 -3.1798259, 55.9323166 -3.2101798, 55.9321089 -3.2101997, 55.9309744 -3.2100917, 55.9308794 -3.2100746, 55.9710344 -3.2100024, 55.9629549 -3.2004677, 55.9596581 -3.1714061, 55.9453485 -3.2171316, 55.9224491 -3.2107749, 55.9906648 -3.3973688, 55.9302487 -3.1758834, 55.9429144 -3.1826352, 55.9416801 -3.1819013, 55.9418646 -3.1820790, 55.9497766 -3.1880920, 55.9348643 -3.1686663, 55.9254914 -3.2593484, 55.9562823 -3.1983948, 55.9595116 -3.1827051, 55.9368627 -3.2362988, 55.8838914 -3.3385867, 55.9694744 -3.1724296, 55.9221123 -3.1536690, 55.9420479 -3.1791611, 55.9443287 -3.1812574, 55.9468472 -3.1856084, 55.9895667 -3.3989278, 55.9624093 -3.1789715, 55.9685040 -3.1738921, 55.9400201 -3.1805523, 55.9427627 -3.2911646, 55.9429231 -3.2828766, 55.9444352 -3.2057104, 55.9429207 -3.2827642, 55.9567587 -3.1712895, 55.9365026 -3.2406591, 55.9451800 -3.2172509, 55.9438587 -3.1173834, 55.9782920 -3.1800335, 55.9475057 -3.2948807 +no +yes +49.4220712 8.6747880, 49.4338914 8.6803397, 49.4248554 8.6842438, 49.4134671 8.6923500, 49.3811106 8.6779339, 49.4116285 8.6967738, 49.4112877 8.7120306, 49.4124821 8.7116749, 49.4105746 8.7045338, 49.4088982 8.6985594, 49.4181588 8.6814978, 49.4183470 8.6872741, 49.4197789 8.6871221, 49.4207750 8.6845900, 49.4220217 8.6830623, 49.4248833 8.6877871, 49.4285458 8.6851837, 49.4312787 8.6910498, 49.4329833 8.6806293, 49.4036198 8.6878647, 49.4143251 8.7187531, 49.3777874 8.6694462, 49.3739035 8.6831040, 49.3769857 8.6847203, 49.3763424 8.6904918, 49.3806318 8.6903397, 49.3845467 8.6890952, 49.3867100 8.6889664, 49.3940819 8.6861279, 49.3995012 8.6869038, 49.4023964 8.6765116, 49.4056017 8.6751788, 49.4277498 8.6794326, 49.4376060 8.6778079, 49.4064375 8.6918384, 49.4075653 8.6902108, 49.4151221 8.7620371, 49.4087408 8.6948581, 49.4057652 8.6829089, 49.3770570 8.7037872, 49.3828020 8.6689721, 49.4145642 8.6791001, 49.4135694 8.6925166, 49.4159532 8.6836921, 49.4156740 8.6813317, 49.4204972 8.6680274, 49.3976942 8.6424612, 49.4050115 8.6392987, 49.3862379 8.6927467, 49.4093291 8.6596550, 49.4253936 8.6440139, 49.4213425 8.6473022, 49.4270161 8.6422111, 49.4010895 8.6737918, 49.4171231 8.7603742, 49.4017075 8.6672838, 49.4083514 8.6761325, 49.4036252 8.6814280, 49.3951758 8.6836065, 49.4175762 8.7619090 +49.4171749 8.7614432, 49.4094471 8.6926160, 49.4124142 8.7039688, 49.3850068 8.7105357, 49.4189919 8.6724909, 49.4163242 8.6709589, 49.4184386 8.6731024, 49.4168333 8.6710769, 49.4176281 8.6686596, 49.4160594 8.6702239, 49.4179870 8.6685214, 49.4190025 8.6711938, 49.4190342 8.6719873, 49.3982405 8.6891686, 49.4154939 8.6674299, 49.3984918 8.6889404, 49.4226030 8.6895511, 49.4244226 8.6879745, 49.4185216 8.6704497, 49.4197235 8.6766060, 49.4181936 8.6739962, 49.4224691 8.6894885, 49.4347006 8.6819337, 49.4225331 8.6895176, 49.4223934 8.6894683, 49.4275117 8.6831905, 49.4196417 8.6694271, 49.4189698 8.6760286, 49.4222653 8.6894258, 49.4249703 8.6863835, 49.4219203 8.6893430, 49.4221212 8.6893922, 49.4177747 8.6690561, 49.4163577 8.6686492, 49.4174980 8.6687653, 49.4179060 8.6686309, 49.4180660 8.6682820, 49.4174626 8.6687152, 49.4150725 8.6664167, 49.4139804 8.6668520, 49.4136878 8.6671227, 49.4155211 8.6676755, 49.4136571 8.6671084, 49.4155891 8.6676755, 49.4146634 8.6664310, 49.4140866 8.6673605, 49.4128509 8.6667672, 49.4130842 8.6668825, 49.4128068 8.6670431, 49.4157404 8.6712736, 49.4131056 8.6680418, 49.4126825 8.6678074, 49.4173371 8.6738318, 49.4170607 8.6768911, 49.4126952 8.6699440, 49.4134424 8.6679610, 49.4165443 8.6709680, 49.4134657 8.6678164, 49.4169024 8.6778674, 49.4171297 8.6738951, 49.4145377 8.6712997, 49.4142973 8.6712224, 49.4162063 8.6713780, 49.4171308 8.6741457, 49.4126713 8.6675754, 49.4146104 8.6715231, 49.4129993 8.6676842, 49.4125591 8.6685224, 49.4038678 8.6826012, 49.4080959 8.6940082, 49.4132083 8.7150483, 49.4098909 8.7063523, 49.4092833 8.6937547, 49.4136521 8.7166234, 49.4147825 8.7194810, 49.4146757 8.7188519, 49.4099904 8.6934756, 49.4137247 8.7168421, 49.4114575 8.7112332, 49.4117561 8.7110802, 49.4130935 8.7055063, 49.4085662 8.6938769, 49.4082925 8.6939399, 49.4049071 8.6846843, 49.4050950 8.6832018, 49.4046753 8.6751003, 49.4049813 8.6825344, 49.4047830 8.6748233, 49.4079701 8.6806978, 49.4081724 8.6765377, 49.3800680 8.6869647, 49.3803092 8.6877522, 49.3800398 8.6875371, 49.4133013 8.6913417, 49.3991167 8.6880237, 49.4003093 8.6865238, 49.3994136 8.6901411, 49.4125736 8.6667755, 49.4156475 8.7425316, 49.3942172 8.6898680, 49.4001704 8.6873707, 49.4008461 8.6862974, 49.4015034 8.6855723, 49.4018481 8.6853596, 49.4140326 8.6921865, 49.4147881 8.6920796, 49.4161519 8.6920141, 49.4164194 8.6920050, 49.3736369 8.6882014, 49.3771070 8.6871386, 49.3805914 8.6884912, 49.3956314 8.6891619, 49.4064459 8.6893600, 49.4076652 8.6925139, 49.4146958 8.6922296, 49.4126385 8.6691299, 49.4175773 8.6740734, 49.4106423 8.6974807, 49.4111306 8.6979715, 49.4127554 8.6742068, 49.4187340 8.6766656, 49.4113889 8.7076937, 49.4105563 8.7059593, 49.4101441 8.7052242, 49.4112034 8.7047612, 49.4089283 8.6982133, 49.4089648 8.6986876, 49.4093783 8.7008163, 49.4094359 8.7023071, 49.4089641 8.6955780, 49.4093310 8.6934805, 49.4096811 8.6934485, 49.4107724 8.7039613, 49.4097754 8.7076634, 49.4100334 8.7081249, 49.4094319 8.6910307, 49.4095376 8.6908723, 49.4096347 8.6903912, 49.4098329 8.6894963, 49.4098809 8.6909403, 49.4099807 8.6890051, 49.4101452 8.6899150, 49.4102122 8.6904965, 49.4103847 8.6887271, 49.4105137 8.6896038, 49.4105215 8.6905059, 49.4106282 8.6901065, 49.4126702 8.6805338, 49.4159805 8.6920165, 49.4164705 8.6920883, 49.4172314 8.6911451, 49.4173345 8.6841594, 49.4090210 8.6862339, 49.4091822 8.6858735, 49.4095605 8.6872645, 49.4088652 8.6800974, 49.4098279 8.6817194, 49.4083809 8.6789361, 49.4056745 8.6881477, 49.4061925 8.6915180, 49.4063357 8.6898884, 49.4072240 8.6872972, 49.4075178 8.6824857, 49.4075631 8.6890160, 49.4079188 8.6902159, 49.4088250 8.6844653, 49.4092527 8.6744372, 49.4111078 8.7122962, 49.4039935 8.7273740, 49.3976409 8.6521041, 49.4229888 8.6430964, 49.4032694 8.6471292, 49.4027493 8.6441103, 49.4121441 8.6411840, 49.4121197 8.6413318, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349, 49.4151012 8.6731211, 49.4158568 8.6728207, 49.4035624 8.6765204, 49.4279707 8.6838908, 49.4111900 8.7704641, 49.4101378 8.7039303, 49.4161640 8.6686617, 49.4138118 8.6719647, 49.4108048 8.6946155, 49.4157085 8.7420436, 49.4161193 8.6695151, 49.4059837 8.6870296, 49.4014465 8.6714876, 49.4016021 8.6707184, 49.4017318 8.6700873, 49.4019718 8.6690844, 49.4052846 8.6871711, 49.4033559 8.6811865, 49.4148098 8.6951639, 49.4149434 8.6951464, 49.3793331 8.6917618, 49.4170074 8.7611316, 49.4146148 8.6933443, 49.4157446 8.6679037, 49.4151298 8.6922925, 49.4150209 8.6722376, 49.4105674 8.7040917, 49.4181332 8.7565080, 49.4201274 8.6592504, 49.4194061 8.6615040, 49.4175471 8.6615820, 49.4133488 8.6736185, 49.4149163 8.6654747, 49.3787958 8.6752564, 49.3787513 8.6752582, 49.4168939 8.6715527, 49.4182453 8.6691484, 49.4083411 8.6839428, 49.4045486 8.6762865, 49.4176645 8.6590769, 49.4150320 8.7620828, 49.3892845 8.6883551, 49.4176061 8.6615500, 49.4159754 8.6729830, 49.4158552 8.6727509, 49.4032249 8.6746009, 49.4071473 8.6720042, 49.3999783 8.6914430, 49.3659380 8.6888680, 49.4019576 8.6811178, 49.4019323 8.6807736, 49.4019771 8.6810189, 49.4019064 8.6809317, 49.4045857 8.6750253, 49.3870086 8.6664502, 49.4209713 8.6746499, 49.4061766 8.6754688, 49.4103125 8.7748332, 49.4235022 8.6459331, 49.4048709 8.6753023, 49.4096671 8.7744209, 49.4097801 8.7743109, 49.4096112 8.7061878, 49.4129558 8.6762878, 49.4183219 8.7276907, 49.3766684 8.6475292, 49.4160242 8.6602643, 49.4191415 8.6622333, 49.4021987 8.6807616 +55.9380996 -3.2058620 +yes +8 + +no +Le trésor de Notre-Dame de Paris +yes +no +Le parc aux cerfs +91 +48.8184662 2.3501586, 48.8611385 2.3941583, 48.8370749 2.4110506, 48.8749148 2.4002404, 48.8327412 2.3975487, 48.8256492 2.4145211, 48.8607252 2.4037124, 48.8866268 2.3732545, 48.8439975 2.4003952, 48.8301712 2.3992796, 48.8192381 2.4359906, 48.8848404 2.3887566 +2 +12 +Dossenheimer Landstraße, 5 and Willy-Brandt-Platz, 1 and Adenauerplatz, 30 and Brückenstraße, Karlsruher Straße, 40 and Brückenstraße, 47-51 and Kurfürsten-Anlage, Breslauer Straße, 32 and Brückenstraße, 18-20 and Poststraße, 59 and Mönchhofstraße, 4 and Schwetzinger Terrasse, 36 and Dossenheimer Landstraße, Karlsruher Straße, 6-8 and Poststraße, 19/1 and Kurfürsten-Anlage, 25 and Peterstaler Straße, 37 and Dossenheimer Landstraße +248 +5 +École de conduite Lamartine, Centre de conduite auto-moto, Auto-École, ECF Trinité, Auto-École, Fati Auto école, Auto-école du chêne, ecf, La Réussite, École de conduite, C.E.R. Auto-École, Auto moto école, Auto-école Manin, Auto moto ecolde des Buttes Chaumont, C.E.R. Porte des Lilas, Permis Express, Auto école, ABIR C.F.R., Auto-école Cosmos and +331 48 78 09 98, Zebra +yes +Grill Afro Akwaba +21 and Rue Hérold, 2 and Rue de la Barrière Blanche, 5-7 and Rue de Fourcy, 19 and Rue Antoine-Julien Hénard, 10 and Rue de Fourcy, 18 and Rue de l'Orillon, 14 and Avenue Parmentier, 88 and Rue de la Jonquière, 123 and Rue de Tocqueville, 127/129 and Rue Saint-Martin, 6 and Rue Récamier, 3 and Rue d'Aligre, 22 and Rue Pierre Gourdault, 11 and Rue Jean de La Fontaine, 217 and Boulevard Saint-Germain, 100 and Rue Didot, 73 and Rue de Grenelle +yes +247 +2 +no +St. Giles' Cathedral and 55.9494705 -3.1908525 +951 +City Car Club +55.9455830 -3.1876260, 55.9666311 -3.1963169, 55.9164420 -3.3136067, 55.9690958 -3.1689922, 55.9752684 -3.2152498, 55.9008723 -3.3189823, 55.9710850 -3.2302781, 55.9278249 -3.1233349, 55.9018528 -3.2249445, 55.9194696 -3.2656157, 55.9200972 -3.2944514, 55.9183885 -3.2959833, 55.9890693 -3.3977273 +Lochheim +Conservatoire Francis Poulenc +55.8958820 -3.3106749, 55.9583533 -3.2082826, 55.9794554 -3.2794113, 55.9516586 -3.1968492, 55.9899700 -3.3959164, 55.9531024 -3.1140557, 55.9498298 -3.1876708, 55.9483392 -3.1987455, 55.9033628 -3.2848004, 55.9574011 -3.1728671, 55.9361328 -3.1040998, 55.9195933 -3.2025852, 55.9710589 -3.2774742, 55.9490376 -3.0947794, 55.9434232 -3.2046642, 55.9458479 -3.1861307, 55.9744303 -3.1776966, 55.9699444 -3.1720786, 55.9874972 -3.4037961, 55.9260049 -3.1416514, 55.9435751 -3.2689147, 55.9434933 -3.2688802, 55.9451248 -3.2679627, 55.9472851 -3.2706337, 55.9443171 -3.2706169, 55.9774386 -3.2624501, 55.9772339 -3.2660670, 55.9018609 -3.1707018, 55.9018157 -3.1717612, 55.9539273 -3.1922043, 55.9647351 -3.2042092, 55.9646221 -3.2123574, 55.9807522 -3.1787546, 55.9804391 -3.1785758, 55.9902127 -3.3859837, 55.9906294 -3.3854450, 55.9014970 -3.2224341, 55.9412096 -3.1486275, 55.9250810 -3.3061410, 55.9450120 -3.1915042, 55.9526370 -3.1734364, 55.9596395 -3.3190414, 55.9402730 -3.1715946, 55.9521101 -3.1881430, 55.9382378 -3.3140197, 55.9393607 -3.3159294, 55.9264292 -3.1646478, 55.9471021 -3.1971869, 55.9906129 -3.3848526, 55.9504252 -3.2001729, 55.9505066 -3.1997917, 55.9526834 -3.1734548, 55.9486422 -3.1962925, 55.9487023 -3.1964050, 55.9479442 -3.2034814, 55.9531378 -3.1139855, 55.9561332 -3.1142577, 55.9443252 -3.2677336, 55.9375047 -3.2398315, 55.9807254 -3.2242925, 55.9663483 -3.2086408, 55.9450592 -3.2712300, 55.9626393 -3.2000496, 55.9371388 -3.2065073, 55.9800422 -3.2999163, 55.9410173 -3.1832050, 55.9428951 -3.2860475, 55.9079078 -3.2547827, 55.9315592 -3.2267611, 55.9544119 -3.1095486, 55.9501160 -3.2050638, 55.9450042 -3.2717523, 55.9425495 -3.2686846 +172 +Jeffrey Street +49.4122382 8.7129316 +155 +yes +3 +Hotel Etab +yes +49.3788109 8.6919767, 49.4052150 8.6872450, 49.4118496 8.7084081, 49.4117760 8.7068775, 49.4117663 8.7064409, 49.4078213 8.6854792 +55.9378000 -3.1771354, 55.9539155 -3.1869471, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9544013 -3.1879472, 55.9285894 -3.1685115, 55.9820970 -3.4001038 +48.8376960 2.3062844, 48.8831159 2.3425480, 48.8481953 2.3419715, 48.8668168 2.3257587, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8717742 2.2984126, 48.8668308 2.3028826, 48.8686655 2.2984695, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8715217 2.3076937, 48.8664199 2.2892440, 48.8604399 2.3007825, 48.8864077 2.2949505, 48.8710343 2.3234791, 48.8730243 2.3445449, 48.8606580 2.3469337, 48.8330539 2.2881095, 48.8234693 2.3306543, 48.8516696 2.2978180, 48.8528343 2.3441184, 48.8504482 2.2926945, 48.8518053 2.3448347, 48.8549752 2.3046163, 48.8868980 2.3004690, 48.8487972 2.3410105, 48.8683305 2.3330172, 48.8478009 2.3422541, 48.8820490 2.3316649, 48.8731949 2.3435448, 48.8721229 2.3033103, 48.8723588 2.3088888, 48.8383845 2.3209532, 48.8920470 2.3024290, 48.8609042 2.3467975, 48.8662424 2.3373468, 48.8555019 2.2928356, 48.8664339 2.3251380, 48.8510976 2.3274782, 48.8737030 2.3201997, 48.8714238 2.3278025, 48.8713002 2.3277769, 48.8718146 2.3278778, 48.8778519 2.3276641, 48.8813884 2.3274308, 48.8814057 2.3282568, 48.8238179 2.3241127, 48.8752556 2.2866823, 48.8704922 2.2798118, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8871244 2.3142231, 48.8870568 2.3143431, 48.8848968 2.3034428, 48.8496595 2.2837044, 48.8542680 2.3078406, 48.8802164 2.2842407 +449 +yes +48.8883391 2.3034488, 48.8417871 2.2993261, 48.8608795 2.3526163, 48.8267459 2.3664051, 48.8425359 2.3619057, 48.8311601 2.3117228, 48.8308701 2.3570791, 48.8390776 2.3214724, 48.8454696 2.3871278, 48.8459092 2.3777264, 48.8515628 2.3840327, 48.8601187 2.3790729, 48.8534078 2.3591424, 48.8515137 2.3573254, 48.8465258 2.3513354, 48.8848656 2.3830530, 48.8513211 2.3556751, 48.8479918 2.3275469, 48.8572964 2.3373427, 48.8580602 2.3089956, 48.8905420 2.3939914, 48.8624940 2.3445634, 48.8949558 2.3870960, 48.8850074 2.3674278, 48.8780917 2.3027106, 48.8618853 2.2845017, 48.8460501 2.3109746, 48.8695100 2.3602240, 48.8533051 2.4010825, 48.8866611 2.3713511, 48.8401777 2.2788755, 48.8779906 2.3450959, 48.8301517 2.3816300, 48.8232707 2.3553092, 48.8247112 2.3199067, 48.8421613 2.2631956, 48.8585418 2.3648460, 48.8267977 2.3663149, 48.8349953 2.3170932, 48.8636991 2.3600389, 48.8273570 2.3419023, 48.8772018 2.3707749, 48.8949090 2.3637139, 48.8500551 2.2863669, 48.8794010 2.3973642, 48.8520545 2.3450880, 48.8659387 2.3929440, 48.8463242 2.2672050, 48.8714000 2.4083505, 48.8701190 2.3851060, 48.8471209 2.3451247, 48.8425010 2.3496621, 48.8207702 2.3440653, 48.8270880 2.3756326, 48.8720638 2.3998952, 48.8761197 2.3896217, 48.8844548 2.3219231, 48.8665219 2.3404139, 48.8927627 2.3791089, 48.8897843 2.3196463, 48.8717681 2.3573818, 48.8567195 2.3532017, 48.9004776 2.3361193, 48.8328125 2.3452788, 48.8524437 2.3031358, 48.8472981 2.3543452, 48.8621848 2.3775790, 48.8460608 2.3561547, 48.8477225 2.2969701, 48.8467385 2.3520368, 48.8441077 2.3459483, 48.8489299 2.3540817, 48.8619612 2.2845553, 48.8516295 2.3411860, 48.8433202 2.3359232, 48.8338228 2.3257312, 48.8426154 2.3558949, 48.8915823 2.3442872, 48.8477242 2.3463368, 48.8471642 2.3459531, 48.8473765 2.3454667, 48.8568692 2.3618963, 48.8568692 2.3619825, 48.8336577 2.3758171, 48.8502323 2.3636287, 48.8394063 2.3388487, 48.8341301 2.3741390, 48.8347819 2.3752986, 48.8324684 2.3762548, 48.8331207 2.3774143, 48.8762900 2.3881904, 48.8542728 2.3281460, 48.8756263 2.3537558, 48.8424786 2.3972916, 48.8370023 2.3036518, 48.8533080 2.4010815, 48.8815116 2.3323814, 48.8844014 2.3542498, 48.8558814 2.3436259, 48.8889374 2.3632101, 48.8416997 2.3451499, 48.8418628 2.3455995, 48.8416292 2.3454839, 48.8601141 2.4028795, 48.8600742 2.3522298, 48.8672834 2.3384559, 48.8398451 2.3417030 +Saravanaa Bhavan +Odeon, Filmhouse, Vue Cinema, Filmhouse +49.4071193 8.6919900, 49.4127267 8.6759075, 49.4129744 8.6753927, 49.4159882 8.7159505, 49.4152724 8.7089320, 49.4152263 8.7091544, 49.4161997 8.7168545, 49.4136480 8.7107879, 49.4137160 8.7131886, 49.3999244 8.6912464, 49.4002825 8.6911005, 49.4061329 8.6714869, 49.4043662 8.6769558, 49.4042794 8.6767159, 49.4043928 8.6767032, 49.4040938 8.6777606, 49.4041378 8.6780055, 49.4041963 8.6783706, 49.4075933 8.6747057, 49.4075056 8.6748798, 49.4078534 8.6762963, 49.4079283 8.6756934, 49.4078625 8.6803507, 49.4079068 8.6803518, 49.4079624 8.6851808, 49.4084050 8.6884254, 49.4084670 8.6883986, 49.4101809 8.6928995, 49.4099846 8.6928532, 49.4095745 8.6932967, 49.4093811 8.6931694, 49.4092112 8.6929959, 49.4090525 8.6927592, 49.4111209 8.7057655, 49.4130422 8.7053701, 49.4132415 8.7055842, 49.4133567 8.7058522, 49.4119771 8.6972359, 49.4120763 8.6972060, 49.4055633 8.6828676, 49.4049949 8.6822918, 49.4129282 8.7027762, 49.4126418 8.7016223, 49.4090720 8.7054522, 49.4084187 8.6986054, 49.4138680 8.6938162, 49.4069337 8.6900774, 49.4068742 8.6934775, 49.4088905 8.7053904, 49.4092125 8.7080457, 49.4095401 8.7091480, 49.4133887 8.7086161, 49.4151598 8.7205422, 49.4136898 8.7167012, 49.4124611 8.7128500, 49.4114089 8.7119309, 49.4112162 8.7113846, 49.4080587 8.6999304, 49.4066901 8.6710527, 49.4051217 8.6683796, 49.4005092 8.6783953, 49.4016334 8.6747771, 49.4014940 8.6745939, 49.3971927 8.6809442, 49.3961779 8.6783236, 49.4054462 8.6926553, 49.4055795 8.6925319, 49.4020509 8.6915578, 49.4025059 8.6915946, 49.4137204 8.6940432, 49.4129531 8.6764014, 49.4128723 8.6767666, 49.3984594 8.6893414, 49.4068321 8.7149530, 49.4070152 8.7149103, 49.4062811 8.7145104, 49.3998313 8.6768307, 49.4150504 8.7200383, 49.4064011 8.6905312, 49.4064324 8.6907065, 49.4064641 8.6908840, 49.4064968 8.6910579, 49.4088954 8.7128442, 49.4098287 8.6928288, 49.4131172 8.7212488, 49.4049329 8.6756419, 49.4014043 8.6725252, 49.3962812 8.6769601, 49.3993531 8.6716017, 49.3994314 8.6716997, 49.4042522 8.6786859, 49.4038577 8.6765425, 49.4047148 8.6787123, 49.4048572 8.6761515, 49.4049714 8.6760919, 49.4050841 8.6755115, 49.4016186 8.6731490, 49.4063962 8.6915499, 49.4050422 8.6812130, 49.4087518 8.7006247, 49.3960894 8.6778986 +49.4064795 8.6918220, 49.4089660 8.6724358, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4040432 8.6789769, 49.4214832 8.6754845, 49.4140422 8.6704577, 49.4228639 8.6764796, 49.4080031 8.6948451, 49.4187759 8.6518124, 49.4064148 8.6829502, 49.4075168 8.6823374, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.4124163 8.7017576, 49.4186616 8.6453088, 49.4191927 8.6451544, 49.4186552 8.6479768, 49.4108612 8.6928690, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4101694 8.6916552, 49.4119501 8.7000203, 49.4096598 8.6875604, 49.4056131 8.6868331, 49.4108200 8.6949938, 49.4138751 8.7153222, 49.3962000 8.7085445, 49.4174427 8.7569407, 49.4088000 8.6984868, 49.4154951 8.7332007, 49.4093258 8.6843524, 49.3748097 8.6779817, 49.4056935 8.6753617, 49.4073436 8.6889011 +8 +94 +yes +denn's Biomarkt, Fair & Quer, Masala, Heil's Feinschmeckerladen, Alnatura, Reformhaus Escher (Vita Nova), Alnatura, Annas Unverpacktes, denn's Biomarkt +yes +Salvatore's, The Gorgie Fish Bar, Pizza Palace, The Fountain, Globetrotter, Pierinos, Javits and Mo-Th 12:00-00:00, Fr 12:00-01:00, Sa 16:00-01:00, Su 16:00-00:00, Jubilee Supper Room and Mo-Th 11:30-00:00, Fr 11:30-01:00, Sa 16:00-01:00, Su 16:00-00:00, L'Alba D'Oro, Franco's and Mo-Th 11:30-13:30, Fr 11:30-24:00, Sa 00:00-01:00, 11:30-24:00, Su 00:00-01:00, 11:30-13:30, Gino's Fish Bridge Bar, Corbie, Angelo's, Concorde, Chip Inn, The Chip King and Mo-Su 16:30-23:00, The Mermaid, The Gold Sea, Monte Bianco, Papa Jaffer's, Deep Sea, Stefanos and Mo-Th 16:30-01:00, Fr-Sa 16:30-02:00, Su 16:30-01:00, The Codfather, Taksim, Franco's, Tony's, Gino's, Montgomery, Clameshell, Castle Rock Take Away, The Friery, Bene's Fish & Chips, Taste of Scotland, The Town House, Giovanni's, Marmaris, The Rig, Fryer's, Fourways Fish Bar, Samsun's, St John's, Chesser Fish & Chips, Bar B Que, Bodrum Express, The Fountain and Mo-Th 16:00-00:00, Fr-Sa 16:00-01:00, Su 16:00-00:00, The Milton Fry, Groathill Fish & Chips, Samsuns, CFC, Anatolian +yes +15, 15, 20, 15, 15, 15, 15, 15, 15, 15, 15, 15 +55.9387357 -3.3996538, 55.9380963 -3.4051984, 55.9385221 -3.4040472, 55.9386848 -3.4052874, 55.9333966 -3.3543268, 55.9024677 -3.2131994, 55.9579939 -3.3233291, 55.9028966 -3.1642422, 55.9122291 -3.3948137, 55.8798835 -3.3439577, 55.9226406 -3.2094180, 55.9101467 -3.2093552, 55.9546676 -3.3637002, 55.9222410 -3.1492085, 55.9387885 -3.2890803, 55.8869268 -3.2813599, 55.9691744 -3.1898383, 55.9045439 -3.3952157, 55.9729762 -3.1721306 +no +48.8715303 2.3852468 +15 +49.3819891 8.7064791, 49.3696474 8.7091898, 49.3877298 8.7446960, 49.3946455 8.7166681, 49.4052183 8.7807063, 49.4040547 8.7550178, 49.3925114 8.7464235, 49.3936499 8.7467333, 49.4005231 8.7520710 +48.8577587 2.3607290 +4 +0.71981941894613155 +Rue Robert Blache +5 +49.3999791 8.6903579, 49.4183136 8.7570658, 49.4128139 8.6783720, 49.4145117 8.6907695, 49.4072855 8.6846071, 49.4080418 8.6903517, 49.4085419 8.6884195, 49.4114635 8.7036590, 49.4112271 8.7056319, 49.3803180 8.6917254, 49.3789548 8.6920168, 49.3789551 8.6697358, 49.4118400 8.7103033, 49.4101826 8.6997355, 49.4088814 8.6922211, 49.3933124 8.6898329, 49.3999180 8.6849475, 49.4004873 8.6918128, 49.4055340 8.6909414, 49.4284910 8.6833643, 49.4298020 8.6813390, 49.3813862 8.6715525, 49.3801053 8.6879890, 49.4055840 8.6658584, 49.3805484 8.6587871, 49.4019559 8.6916056, 49.4035568 8.6918554, 49.4089227 8.6927850, 49.3788705 8.6685559, 49.3821598 8.6632293, 49.4076785 8.6917122, 49.4211931 8.6801164, 49.3746688 8.7035666, 49.4103729 8.6964923, 49.3744114 8.6827527, 49.3734828 8.6803866, 49.4088951 8.6939512, 49.4152187 8.7476376, 49.4122637 8.7077964, 49.4034041 8.6828344, 49.4283328 8.6876890, 49.4294006 8.6822101, 49.4045550 8.6757234, 49.4042051 8.6757454, 49.4055602 8.6759168, 49.3773301 8.6643950, 49.4247182 8.6873975, 49.4254190 8.6871690, 49.4211737 8.7557530, 49.4152481 8.6922641, 49.3803605 8.6881824, 49.4145068 8.6907391, 49.4148749 8.6923202, 49.4090710 8.6596269, 49.3797613 8.6848437, 49.4230594 8.6488328, 49.4059598 8.6868733, 49.3772126 8.6700382, 49.4270878 8.6470653, 49.4278529 8.6465726, 49.4188086 8.6517772, 49.3974830 8.6464426, 49.3976777 8.6479965, 49.4073819 8.6570319, 49.4014703 8.6683127, 49.4023052 8.6665425, 49.3643703 8.7049073, 49.4082152 8.6881105, 49.3672607 8.6859228, 49.4274587 8.7497458, 49.4231569 8.7538331, 49.3791539 8.6910962, 49.3746591 8.7029203, 49.3855952 8.6902427, 49.4041430 8.6464978, 49.4077479 8.6774775, 49.4179480 8.7596452, 49.4146130 8.6710105 +8 +Fahrschule Jung, Fahrschule Finkenzeller, Wagner +49.5526338 8.6554413, 49.5513229 8.6687450, 49.5554496 8.6699318, 49.5596224 8.6688235, 49.5462868 8.6715791, 49.5492546 8.6740750, 49.5496361 8.6717107, 49.6146080 8.6736398, 49.6015351 8.5181143, 49.6047659 8.4764246, 49.6458511 8.5671019, 49.6467494 8.5615748, 49.6566529 8.5677748, 49.6445836 8.5677274, 49.6417095 8.5631262, 49.5971548 8.4682347, 49.6052567 8.4710750, 49.6036653 8.4650992, 49.5192833 8.5023439, 49.5017017 8.5044127, 49.5625744 8.6656969, 49.6468579 8.6317019, 49.3779472 8.6930196, 49.3791086 8.6917106, 49.3738873 8.6885987, 49.4764727 8.5581500, 49.5001511 8.4141813, 49.4858432 8.3892989, 49.3761590 8.5674826, 49.3191887 8.5595067, 49.3726645 8.5718770, 49.3786241 8.5765412, 49.3417457 8.6549932, 49.3378610 8.6613039, 49.3479756 8.6538268, 49.3445704 8.6640475, 49.3839393 8.5721238, 49.3265417 8.5563625, 49.3191315 8.5470156, 49.3147158 8.5519038, 49.5954551 8.4634480, 49.4295856 8.6906085, 49.4242374 8.6490409, 49.5940946 8.4598127, 49.4347876 8.6782371, 49.4426103 8.6658751, 49.3138326 8.5606145, 49.5435708 8.5967846, 49.5979747 8.4757516, 49.3927830 8.5980107, 49.3923799 8.5946401, 49.5988026 8.4845303, 49.5885363 8.4859606, 49.5845876 8.4879738, 49.5026807 8.4702380, 49.6017750 8.5148540, 49.5953600 8.5833630, 49.5989820 8.5839630, 49.4046422 8.6758721, 49.4188030 8.6627721, 49.4215394 8.6751324, 49.4230903 8.6848004, 49.4423017 8.5790531, 49.4300762 8.6800795, 49.4766349 8.5210604, 49.4766109 8.5210589, 49.4760288 8.4678779, 49.4722315 8.4693491, 49.3945090 8.6898249, 49.5279213 8.3955159, 49.4036423 8.6351457, 49.4303419 8.6447639, 49.4199824 8.6516327, 49.5271969 8.6651823, 49.4641062 8.6650466, 49.4471459 8.6743543, 49.4428444 8.6214405, 49.4784646 8.4963955, 49.4707059 8.6520153, 49.4822964 8.4896176, 49.4776901 8.4833126, 49.4039244 8.6201112, 49.3976600 8.6462271, 49.3835628 8.6905633, 49.4016060 8.6295678, 49.3992245 8.6272440, 49.6499908 8.6340695, 49.3931195 8.6279937, 49.4751871 8.6837099, 49.4102743 8.6522076, 49.3186598 8.5512647, 49.4536423 8.6751502, 49.4519728 8.6778784, 49.4065263 8.6402454, 49.4077957 8.6403731, 49.4815121 8.4828496, 49.3950783 8.6433081, 49.4536254 8.3815384, 49.6424512 8.6384492, 49.4056159 8.6307388, 49.3973715 8.6486924, 49.4024942 8.6473792, 49.4229184 8.6449762, 49.4085533 8.6680811, 49.4077532 8.6729299, 49.4082928 8.6883838, 49.4096328 8.6933428, 49.4001133 8.6852761, 49.4444884 8.6271478, 49.3785544 8.6593079, 49.2999064 8.5654315, 49.5282525 8.3853190, 49.4806473 8.5961070, 49.2905479 8.5632348, 49.5291303 8.3918875, 49.3263000 8.5468316, 49.3166684 8.5493592, 49.3182722 8.5439702, 49.4714810 8.6083963, 49.4785782 8.6564609, 49.3084885 8.6352372, 49.2950357 8.5641504, 49.3225437 8.5335892, 49.3736487 8.5775117, 49.3896002 8.5660555, 49.2961664 8.5700349, 49.5421727 8.6636876, 49.3045372 8.6466441, 49.3687498 8.5800586, 49.3726561 8.5798363, 49.4002513 8.6905301, 49.3575085 8.6891721, 49.4079380 8.6845118, 49.4079623 8.6804555, 49.5532677 8.6658488, 49.5610225 8.6903218, 49.4805167 8.6715673, 49.4016967 8.6842645, 49.4152930 8.6919888, 49.5523081 8.5951882, 49.3753209 8.5842061, 49.6091623 8.6418976, 49.5454675 8.6298570, 49.6149320 8.6503966, 49.5002983 8.5498171, 49.6105522 8.6532369, 49.2956896 8.5694190, 49.4435052 8.6332139, 49.4989775 8.4996107, 49.4175155 8.6749548, 49.4280288 8.6874096, 49.4226519 8.6906789, 49.4237741 8.3796665, 49.4243637 8.3901006, 49.4198160 8.3955221, 49.3291477 8.5397666, 49.3413286 8.6690896, 49.4654686 8.5630661, 49.4503171 8.5233143, 49.4309897 8.4978410, 49.4282986 8.4891901, 49.4313149 8.4959201, 49.5078054 8.3629459, 49.3504070 8.6321551, 49.4541025 8.5375578, 49.3978519 8.5349890, 49.4036804 8.5358143, 49.4706173 8.4699685, 49.3960032 8.5914393, 49.4210265 8.4208975, 49.4213716 8.4206943, 49.5361742 8.5642657, 49.5213559 8.4025971, 49.3796214 8.6698422, 49.5411428 8.6400552, 49.5449883 8.6380933, 49.3021886 8.6429316, 49.4641500 8.4843980, 49.4631679 8.4950194, 49.4622735 8.4845749, 49.3750123 8.4535196, 49.4708285 8.6603546, 49.4886950 8.5438017, 49.4865780 8.5341631, 49.4842068 8.5321272, 49.4844998 8.5396275, 49.4813475 8.5392948, 49.4906189 8.5252295, 49.4928093 8.5231160, 49.4950859 8.5284220, 49.3904944 8.6883092, 49.3915993 8.6903930, 49.4824577 8.4795332, 49.4680044 8.4830290, 49.5145230 8.6578124, 49.4542685 8.4945230, 49.2944361 8.6843096, 49.4636413 8.4884577, 49.4743398 8.4653845, 49.5366820 8.6659671, 49.4471734 8.5061272, 49.3937049 8.5661427, 49.3099035 8.5447741, 49.5888987 8.6549457, 49.4213023 8.6891575, 49.5358085 8.4971147, 49.4621470 8.4065063, 49.4623501 8.5610464, 49.4309258 8.4206618, 49.4409798 8.4175989, 49.4437479 8.4140917, 49.4805822 8.5566713, 49.4928843 8.4043565, 49.4957477 8.4153853, 49.4205029 8.6846704, 49.4174372 8.6854637, 49.4399326 8.4449762, 49.5509737 8.6679528, 49.4845835 8.4861412, 49.4425602 8.4277767, 49.4915516 8.3784579, 49.4693839 8.4558664, 49.4268458 8.4233321, 49.4454678 8.4182004, 49.4717141 8.6047118, 49.4131348 8.5458560, 49.5127526 8.5766366, 49.4245194 8.6873395, 49.4186207 8.6905302, 49.4129911 8.6528439, 49.4554171 8.3842872, 49.4723798 8.4402139, 49.4924928 8.3764937, 49.4786030 8.4903082, 49.4331943 8.5277059, 49.4308480 8.5291667, 49.3386748 8.5339113, 49.4038073 8.6922073, 49.5480018 8.3774413, 49.3414114 8.6467625, 49.5418725 8.3751679, 49.5493313 8.6856291, 49.3993575 8.5843395, 49.4546515 8.4766580, 49.4066139 8.5537714, 49.3128737 8.5545772, 49.5416163 8.6583108, 49.5401579 8.6578378, 49.4868908 8.4676669, 49.4928220 8.4705420, 49.5020864 8.4704715, 49.4052607 8.6659933, 49.4055766 8.6654953, 49.3204781 8.5682552, 49.3714420 8.5346515, 49.3784076 8.5391735, 49.4560487 8.3748093, 49.3172379 8.5376345, 49.3116456 8.5379711, 49.4911119 8.3742960, 49.3712535 8.5910730, 49.4416867 8.6147618, 49.4404471 8.5201007, 49.4376888 8.5274582, 49.4252292 8.4170772, 49.3482256 8.5307489, 49.4070710 8.4073373, 49.4541296 8.4822180, 49.4307088 8.6826152, 49.5559207 8.6889238, 49.3260347 8.6879653, 49.3233898 8.6868008, 49.5273739 8.5651748, 49.5266308 8.5656324, 49.4797746 8.4391042, 49.4989805 8.4843058, 49.4941948 8.4844155, 49.5424684 8.4685482, 49.5001116 8.4803170, 49.5444562 8.4781503, 49.5037603 8.4961936, 49.3982142 8.4388742, 49.5110301 8.4710668, 49.5330260 8.5941277, 49.4873267 8.4784658, 49.4487633 8.6041107, 49.6656426 8.6609367, 49.6520788 8.6499987, 49.3787048 8.6764500, 49.5114636 8.5350050, 49.4543736 8.6291869, 49.5424915 8.4717533, 49.4475131 8.4261958, 49.4481810 8.4188422, 49.5391501 8.4773405, 49.4959898 8.4310922, 49.3970452 8.6830144, 49.4946219 8.3724195, 49.4671705 8.5629531, 49.5181730 8.4097783, 49.5150107 8.4033010, 49.5903819 8.6385883, 49.3507170 8.6892282, 49.5311679 8.3834222, 49.5109697 8.5390654, 49.6333827 8.6325752, 49.4226763 8.4281591, 49.5118162 8.6060150, 49.3452242 8.6743498, 49.5050598 8.4882934, 49.4445636 8.5816251, 49.4459377 8.5730972, 49.4639703 8.5662392, 49.4920089 8.4654110, 49.4891200 8.4631089, 49.4855525 8.4714451, 49.5083214 8.5128908, 49.6717144 8.6238800, 49.6732916 8.6243610, 49.4755522 8.5060354, 49.4777080 8.4194033, 49.4826588 8.4298418, 49.4783913 8.5133178, 49.4787334 8.4823454, 49.4818243 8.4728248, 49.5075555 8.5062085, 49.5123400 8.4990766, 49.4890790 8.3723447, 49.5003383 8.4681392, 49.4886025 8.5229300, 49.4509911 8.6718847, 49.4871963 8.5284034, 49.4687230 8.5596834, 49.4668508 8.5541279, 49.5048012 8.6049417, 49.5058154 8.5991281, 49.4720637 8.5678457, 49.3935169 8.4374510, 49.5134609 8.5109622, 49.5038199 8.5124492, 49.5294880 8.4924719, 49.4535628 8.4905741, 49.4564320 8.4890877, 49.4543568 8.4824181, 49.4976968 8.4778553, 49.5033335 8.4634707, 49.4741811 8.4824969, 49.4847637 8.4636093, 49.6675554 8.6315104, 49.4648656 8.5102909, 49.4795588 8.4696925, 49.4972386 8.4722901, 49.4988236 8.4674949, 49.4966530 8.4866256, 49.4620122 8.4741993, 49.4574433 8.4851197, 49.4602112 8.4778998, 49.4593083 8.4706277, 49.5047040 8.4880834, 49.5124002 8.6565502, 49.6528838 8.5673290, 49.4782712 8.5070996, 49.4786515 8.5098927, 49.4460279 8.5227546, 49.4428953 8.5184434, 49.4554270 8.5697767, 49.4603642 8.5698463, 49.5023852 8.4465135, 49.4938995 8.4579290, 49.5322824 8.4701025, 49.4989234 8.4484845, 49.4650782 8.4660830, 49.3804529 8.6874252, 49.5059134 8.5174984, 49.5080014 8.4776263, 49.4054299 8.6767260, 49.4054501 8.6767490, 49.4423442 8.5141178, 49.4989638 8.5029609, 49.3390847 8.6564963, 49.4779866 8.4958199, 49.5903363 8.6525815, 49.5941595 8.6540387, 49.4847568 8.4740166, 49.5138316 8.5479243, 49.4992414 8.4165235, 49.5918833 8.6618825, 49.4843868 8.5321396, 49.3610799 8.5359529, 49.4740411 8.6173826, 49.4279082 8.6839585, 49.3929187 8.5615782, 49.4127839 8.6732119, 49.4182810 8.6660747, 49.4167698 8.6778109, 49.2913518 8.6644581, 49.4140135 8.6829496, 49.3734559 8.6824541, 49.3734280 8.6804585, 49.3745737 8.6766391, 49.3795300 8.6822909, 49.3843561 8.6673425, 49.4156948 8.6877018, 49.4186333 8.6903397, 49.3816846 8.6868958, 49.3778358 8.6889772, 49.4096346 8.6933512, 49.4026410 8.6888163, 49.4047864 8.6845518, 49.4044472 8.6883811, 49.4062695 8.6913666, 49.4062653 8.6913679, 49.4084987 8.6926236, 49.4015292 8.6757972, 49.4751215 8.4447538, 49.4753090 8.4439781, 49.4723115 8.4446306, 49.4316305 8.5715242, 49.4722987 8.4498631, 49.4694596 8.4459163, 49.4684341 8.4346313, 49.4655353 8.4193218, 49.4768109 8.4038972, 49.4717681 8.4043309, 49.3992318 8.6882048, 49.3827614 8.6820305, 49.3687133 8.5309255, 49.5863527 8.6469574, 49.4512831 8.5851445, 49.4415950 8.5774993, 49.5619418 8.4791997, 49.4179179 8.5341440, 49.4191927 8.5147809, 49.4273409 8.5318780, 49.4878267 8.5258092, 49.4186575 8.5259343, 49.4120750 8.5220648, 49.4088197 8.5218682, 49.4062567 8.5209778, 49.4786924 8.5981080, 49.5152463 8.5181107, 49.3855700 8.5712429, 49.3305410 8.6722973, 49.3845397 8.5737947, 49.3841541 8.5774672, 49.5299515 8.5718285, 49.5314204 8.5765244, 49.4675791 8.6133121, 49.4794425 8.5535035, 49.4831596 8.5610945, 49.4769338 8.5657223, 49.4774095 8.5619997, 49.4848515 8.4814311, 49.5051898 8.4935473, 49.5207522 8.4034862, 49.5517543 8.3782358, 49.4982790 8.6570508, 49.4981719 8.6521516, 49.4853666 8.4627430, 49.4804899 8.4860880, 49.4848495 8.4761497, 49.4721189 8.5496779, 49.4880198 8.4642243, 49.4642559 8.5572445, 49.4897017 8.4377805, 49.5942259 8.6445664, 49.4975985 8.4900640, 49.4868107 8.4688548, 49.4778624 8.4536125, 49.4983114 8.5564824, 49.6750068 8.6450981, 49.4693227 8.4691927, 49.5030146 8.6016449, 49.4858508 8.4824634, 49.4744092 8.4860415, 49.4883473 8.4056724, 49.4548446 8.4036445, 49.4765745 8.4860680, 49.5390884 8.4502362, 49.5056775 8.4842932, 49.5457099 8.4464512, 49.3967764 8.5349193, 49.3947340 8.5341881, 49.4441798 8.5316600, 49.4498003 8.4787972, 49.4316207 8.5715985, 49.4015561 8.5564895, 49.4641295 8.6024278, 49.5031646 8.3819405, 49.4798502 8.4487432, 49.6334910 8.6209501, 49.6368541 8.6191745, 49.6389246 8.6189867, 49.3568753 8.4479584, 49.5219624 8.6659217, 49.4180049 8.4304703, 49.5253338 8.6668826, 49.4995180 8.4905691, 49.5268383 8.6549756, 49.3923418 8.5869300, 49.3897621 8.5866301, 49.3900106 8.5951082, 49.4702371 8.6666013, 49.3454195 8.6833029, 49.2805051 8.6730134, 49.4417734 8.4209918, 49.5028783 8.6616836, 49.5079175 8.6287307, 49.4438650 8.6097575, 49.5105009 8.6634850, 49.4960866 8.5527532, 49.6426932 8.6512427, 49.6460906 8.6869091, 49.4821573 8.4496006, 49.4825657 8.4492995, 49.3840294 8.5818336, 49.3869098 8.5828680, 49.4006673 8.6308209, 49.4876292 8.4685313, 49.4805032 8.4790806, 49.4807315 8.4835521, 49.5223778 8.3942438, 49.4789422 8.4404426, 49.4919017 8.3762136, 49.4928241 8.3719058, 49.4945002 8.3722348, 49.4965126 8.5478242, 49.4933598 8.4183256, 49.3651468 8.6848614, 49.3748990 8.6769370, 49.5265918 8.4789790, 49.4533307 8.3761199, 49.5049367 8.5273225, 49.6085770 8.6485202, 49.6083653 8.6527742, 49.4981974 8.4910748, 49.4616961 8.4823765, 49.4542475 8.4825095, 49.4609738 8.5695179, 49.5235488 8.4856429, 49.3794228 8.6676503, 49.4646409 8.4719323, 49.4464192 8.6113850, 49.4453340 8.5709402, 49.3751050 8.5886594, 49.4459998 8.6035076, 49.5308660 8.6481632, 49.5330110 8.6443614, 49.4924070 8.4196660, 49.4920108 8.4203004, 49.6392769 8.6309404, 49.5162649 8.4005627, 49.5306577 8.4999107, 49.4969376 8.4207200, 49.5386334 8.5790385, 49.5400345 8.5792127, 49.3442868 8.6897159, 49.3470840 8.6884135, 49.5267542 8.5619915, 49.3425441 8.6599382, 49.5191389 8.4062496, 49.4750609 8.6692928, 49.5289761 8.6181849, 49.5412571 8.5655589, 49.5465615 8.5675124, 49.5479095 8.5979610, 49.5473900 8.5917604, 49.5328738 8.5840945, 49.3111150 8.6481530, 49.5405306 8.5884183, 49.5416058 8.5883322, 49.6035142 8.4793012, 49.5010293 8.4763173, 49.5183424 8.4631446, 49.5293353 8.4507912, 49.5243687 8.4958742, 49.4491677 8.4946723, 49.4871923 8.4669293, 49.5354112 8.4790783, 49.3295450 8.6910429, 49.3388701 8.6518520, 49.4624577 8.4282629, 49.4985593 8.5551505, 49.4792297 8.4713083, 49.3280238 8.6814701, 49.5514126 8.4775884, 49.5079915 8.5480883, 49.5223060 8.6796721, 49.4570856 8.4268629, 49.4595673 8.4728524, 49.3993096 8.6716403, 49.4478026 8.5078667, 49.5109470 8.5175456, 49.4751194 8.6651104, 49.3047675 8.6306005, 49.3481666 8.6892411, 49.3416790 8.6596106, 49.3478664 8.6891542, 49.4253742 8.3953485, 49.6605315 8.5642116, 49.4088718 8.6936606, 49.3444638 8.6588175, 49.3694630 8.5826179, 49.3356564 8.6704998, 49.3457534 8.6699049, 49.4941346 8.3623367, 49.4911856 8.4751613, 49.2935863 8.5692961 +55.9524898 -3.1736491, 55.9525959 -3.1925077 +24.7891123 141.3146697, -1.4309167 5.6350749, -4.7738085 157.0316686, 18.1108333 145.7722222, 14.5661111 168.9566667, -12.1691894 96.8301442, -10.4878279 105.6329821, -10.8565567 -165.8461748, -0.8564844 169.5355321, 14.8522683 -24.7075971, -37.1156907 -12.2828246, -29.0260120 167.9556525, 56.5736061 -169.6263149, -27.6083244 -144.3429876, -12.2952834 168.8295414, 74.4264159 19.0079928, 6.2091635 160.7089153, 5.5280950 -87.0612001, -59.4370027 -27.3584626, -25.0696325 -130.1053040, 77.4956092 82.4334344, -20.5044623 -29.3209289, -15.8913923 54.5230377, 10.3033619 -109.2171990, -54.4189432 3.3614072, -49.6814062 178.7699280, -37.8365206 77.5549248, -38.7206736 77.5263243, -15.9672556 -5.7107062, -7.9410339 -14.3578255, -62.1687476 -58.3613060, 51.9494289 179.6228852, -14.1721262 -141.2252651, -22.2385304 -138.7468748, -10.4888425 105.6262024, 50.8628415 155.5676832, -29.0289934 167.9556525, -29.2693250 -177.9335285, -52.5374577 169.1416709, -1.2902111 -90.4317786, -7.3385866 72.4242323, -60.7213362 -44.6289196, -68.8422683 -90.5797344, 57.8372350 -8.5648581, -54.6318119 158.8625822, -76.0771107 168.3006656, -71.8869791 171.1877520, 81.7741030 58.6051449, 0.8075422 -176.6180734, -27.1259837 -109.3386817, -33.6444743 -78.8591275, 18.7927589 -110.9813295 +Kulturzentrum Karlstorbahnhof, Kulturfenster e.V. Heidelberg, Deutsch-Amerikanisches Institut and http://www.dai-heidelberg.de, Dezernat 16 and http://www.dezernat16.de +48.8662415 2.3650038 +yes +2012-11-15, 2012-11-15, 2013-03-17, 2012-11-15, 2012-11-15, 2010-10-12, 2010-10-12, 2010-10-12, 2012-11-15, 2012-11-15, 2012-11-15, 2013-03-17, 2012-11-15, 2012-11-15, 2012-11-15, 2012-11-15, 2010-10-12, 2010-10-12, 2012-11-15, 2012-11-15, 2010-10-12, 2010-10-12, 2012-11-15, 2012-11-15, 2010-10-12, 2010-10-12, 2012-11-15, 2012-11-15, 2011-11-29, 2013-03-17, 2012-11-15, 2011-11-28, 2010-10-12, 2011-11-28, 2011-11-28, 2013-03-17, 2012-11-15, 2012-11-15, 2011-11-28, 2012-11-15, 2011-11-28, 2013-03-17, 2013-03-17, 2012-11-15, 2013-03-17, 2013-03-17, 2013-03-15, 2012-11-15, 2011-11-29, 2013-03-15, 2013-03-15, 2013-03-17, 2013-03-17, 2013-03-17, 2011-11-29, 2013-03-17, 2013-03-15, 2013-03-15 +11.85654544080546 +Städt. Gem. Grundschule - Dornberg, Priv. Rudolf-Steiner-Schule and http://www.waldorfschule-bielefeld.de/, Kinderverkehrsschule, Leineweberschule, Städt. Gem. Grundschule - Südschule, Städt. Gem. Hauptschule - Marktschule, Städt. Gem. Grundschule - Diesterwegschule, Städt. Gem. Grundschule Hillegossen, Städt. Gem. Grundschule - Brüder-Grimm-Schule, Bildungszentrum Franziskus Hospital, Städt. Gem. Grundschule - Stiftsschule and http://www.stiftsschule-bielefeld.de/, Mamre-Patmos-Schule and http://www.mps-bethel.de/, Städt. Gem. Grundschule - Ummeln, Städt. Gem. Grundschule - Plaß-Schule, Städt. Gem. Grundschule Ubbedissen, Gymnasium Heepen and http://www.gymnasiumheepen.de/, Realschule Heepen and http://www.realschuleheepen.de/, Städt. Gem. Hauptschule - Heepen and http://www.hauptschule-heepen.de/, Städt. Gem. Grundschule - Am Homersen, Städt. Gem. Hauptschule - Baumheideschule, Städt. Gem. Grundschule - Wellbachschule, Brackweder Gymnasium, Städt. Gem. Grundschule - Heeperholz, Städt. Gem. Grundschule Milse, Städt. Gem. Grundschule - Hans-Christian-Andersen-Schule, Friedrich Wilhelm Murnau-Gesamtschule - Städt. Schule Bielefeld-Stieghorst, Städt. Gem. Grundschule Babenhausen, Städt. Gem. Grundschule - Josefschule, Städt. Gem. Hauptschule - Lutherschule, Bonifatiusschule, Städt. Gem. Grundschule Altenhagen, Westfalen-Kolleg Bielefeld and http://www.westfalenkolleg-bi.nrw.de/, Städt. Gem. Grundschule - Russheideschule, Städt. Gem. Grundschule - Stieghorstschule, Städt. Gem. Grundschule Brake, Städt. Gem. Grundschule - Oldentrup, Städt. Gem. Grundschule - Schröttinghausen-Deppendorf, Städt. Gem. Hauptschule - Oldentrup and http://www.hauptschule-oldentrup.de/, Städt. Gem. Grundschule - Hellingskampschule, Städt. Gem. Grundschule - Volkeningschule, Städt. Gem. Grundschule - Astrid-Lindgren-Schule, Städt. Gesamtschule Brackwede, Hans-Ehrenberg-Schule, Luisenschule, Realschule Brackwede, Städt. Martin-Niemöller-Gesamtschule, Helmholtz-Gymnasium and http://www.helmholtz-bi.de/, Verein Sonnenhellweg-Schule e.V., Städt. Gem. Grundschule - Eichendorffschule, Brodhagenschule and http://www.brodhagenschule.de/, Bosseschule, Städt. Gem. Grundschule - Sudbrackschule, Abendgymnasium and http://www.abendgymnasium-bielefeld.de/, Gertrud-Bäumer-Schule, Max-Planck-Gymnasium and http://www.mpg-bielefeld.de, Städt. Cecilien-Gymnasium and http://www.ceciliengymnasium.de/, Städt. Gem. Grundschule - Fröbelschule, Schule am Kupferhammer, Städt. Gem. Grundschule - Brocker Schule, Städt. Gem. Grundschule - Bültmannshofschule, Ganztagsschule am Lönkert, Städt. Gem. Grundschule - Frölenbergschule, Carl-Severing-Berufskolleg für Handwerk und Technik and http://www.carl-severing-berufskolleg.de/csb-ht/, Carl-Severing-Berufskolleg für Metall- und Elektrotechnik and http://www.csbme.de/, Carl-Severing-Berufskolleg für Wirtschaft und Verwaltung and http://www.carl-severing-berufskolleg.de/csb-ht/, Maria-Stemme-Berufskolleg, Städt. Realschule - Kuhloschule, Falkschule and http://www.abendrealschule-bielefeld.de/, Ratsgymnasium zu Bielefeld, Gymnasium am Waldhof, Comeniusschule, Schule am Schlepperweg, Städt. Gem. Grundschule - Bückardtschule, Evangelische Bekenntnisgrundschule Hoberge-Uerentrup der Stadt Bielefeld, Hamfeldschule, Städt. Gem. Grundschule Theesen, Städt. Gem. Grundschule Vilsendorf, Fachseminar für Altenpflege, Friedrich-von-Bodelschwingh Schulen Bethel - Berufskolleg and http://www.berufskolleg-bethel.de/, Städt. Gem. Grundschule - Martinschule, Hedwig Dornbusch Schule, Berufskolleg, Kerschensteiner Berufskolleg and http://www.gymnasium-bethel.de/, Bibelschule Mennoniten-Gemeinde Bielefeld e.V., Schule am Möllerstift, Berufskolleg Senne, Gesamtschule Rosenhöhe, Rudolf-Rempel-Berufskolleg, Johannes-Rau-Schule, Theodor-Heuss-Schule, Realschule Senne, Sekundarschule Bethel Sekundarstufe I and http://www.fvbschulen.de/, Städt. Gem. Hauptschule Bielefeld - Hauptschule Senne, Öffentlich-Stiftisches Gymnasium der v. Bodelschwinghschen Stiftungen, Musik- und Kunstschule and http://www.muku-bielefeld.de/, Städt. Gem. Grundschule - Windflöte, Albatros-Schule and http://www.albatros-schule.de/, Berufskolleg der AWO Fachschule für Sozialpädagogik, Georg-Müller-Schule Senne, Georg-Müller-Schule and http://www.gms-net.de/, Georg-Müller-Schule and http://www.gms-net.de/, Georg-Müller-Schule and http://www.gms-net.de/, Griechische Ergänzungsschule (Lyzeum), Städt. Gem. Grundschule - Bahnhofschule, Städt. Gem. Grundschule - Buschkampschule, Städt. Gem. Grundschule - Osningschule, Städt. Gem. Grundschule - Quelle, Städt. Gem. Grundschule - Vogelruthschule, Städt. Kath. Grundschule - Klosterschule, Westkampschule, Schule für Ergotherapie Eckardtsheim and http://www.evkb.de/ergotherapieschule/, Ev. Krankenhaus Bielefeld (EvKB) - Haus Burgblick and http://www.evkb.de, Opticus Schule and https://www.lwl.org/LWL/Jugend/Opticus Schule/, Ravensberger Schule and https://www.lwl.org/LWL/Jugend/Ravensberger Schule/, Volkshochschule Bielefeld and https://www.vhs-bielefeld.de/, Teutolab Chemie and http://www.uni-bielefeld.de/teutolab/fachorientiert/chemie/index.html, Städt. Gem. Grundschule - Dreekerheide and http://www.gs-dreekerheide.de/, Städt. Gem. Grundschule - Am Waldschlößchen and http://www.gs-waldschloesschen.de/, Realschule Jöllenbeck, Laborschule Haus 1, Hauptschule Nebengebäude, Turnhalle, Klosterschule, Stapenhorstschule and http://www.stapenhorstschule.de/, Marienschule Bielefeld and http://www.marienschule-bielefeld.de/, Hundeschule Tuxhorn and http://www.bielefelder-hundeschule-tuxhorn.de/, Städt. Gem. Hauptschule Jöllenbeck, Handwerkskammer Ostwestfalen-Lippe zu Bielefeld and http://www.campus-handwerk.de/ +366 +132 +447 +no +http://www.hotel-etab.de, http://www.marriott.de, http://www.auerstein.de/, http://www.grenzhof.de, http://www.hotels-in-heidelberg.de, http://www.gaestehaus-endrich.de, http://www.parkhotelatlantic.de, http://www.leonardo-hotels.com, http://www.bayrischer-hof-heidelberg.com, http://www.hackteufel.de, http://www.hotels-in-heidelberg.de, http://www.dublinerheidelberg.com, http://www.ibis-hotel.de, http://hotelneckartal.de, www.goldener-falke-heidelberg.de, http://www.hotel-ritter-heidelberg.com/, http://www.europaeischerhof.com, http://www.hotel-elite-heidelberg.de, http://www.hotel-kohler.de, http://qube-hotel-heidelberg.de/, http://www.hotel-central-heidelberg.de, http://www.denner-hotel.de, http://www.hotel-acor.de, http://www.hotel-monpti.de, http://www.hotelamkornmarkt.de, http://www.nh-hotels.de/nh/de/hotels/deutschland/heidelberg.html, http://www.hotel-goldene-rose.de, http://www.hotel-nassauer-hof.de, http://www.hotels-in-heidelberg.de, http://www.hotels-in-heidelberg.de, http://www.heidelberger-kulturbrauerei.de/, www.villamarstall.de, www.hotel-goldener-hecht.de, http://www.hollaender-hof.de, http://www.hotel-schnookeloch.de/, http://www.arthotel.de, www.weisserbock.de, http://www.gasthaus-backmulde-hotel.de, http://www.hip-hotel.de, http://www.hd-altstadt-hotel.de, http://www.krokodil-heidelberg.de, http://www.blume-hotel.de, http://www.hotel-classic-inn.de, www.garnihoteldiana.de, http://www.bergheim41.de, http://www.hotel-kranich-heidelberg.de, http://www.ihg.com/holidayinnexpress/hotels/de/de/heidelberg/hdbex/hoteldetail, http://www.4-jahreszeiten.de/, http://sevendays-hd.de, http://www.sudpfanne-heidelberg.de, http://www.molkenkur.de, http://www.gaestehaus.srh.de, www.heidelbergsuites.com, www.lamm-heidelberg.de, http://www.heidelberg-astoria.de/, www.hirschgasse.de, http://www.crowneplaza-heidelberg.de/, http://www.exzellenzhotel.de, http://www.boardinghouse-hd.de, http://www.hotel-anlage.de, http://www.panorama-heidelberg.de, http://www.leonardo-hotels.de/deutschland-hotels/hotel-heidelberg/leonardo-heidelberg-hotel, http://www.hotel-schmitt-heidelberg.de, http://www.goldenerose-hd.de, http://www.hotelheidelberg.com, www.hotel-rose-heidelberg.com, http://www.hotel-neu-heidelberg.de, https://hotelo-heidelberg.de, http://www.cafe-frisch.de, http://www.hoteldenriko-hd.de/, http://www.adler-heidelberg.de, http://www.zum-waldhorn.de, http://www.hotelbb.de/de/heidelberg, http://isg-hotel.de, http://www.crowneplaza-heidelberg.de/ +yes +yes +48.1326162 11.5725116 +yes + +Kita Philipp-Reis-Straße, Katholischer Kindergarten St. Joseph, Waldkindergarten, Privater Kindergarten Neuenheim, Kindertageseinrichtung des Studentenwerkes, Krabbelstube des Studentenwerkes, Katholischer Kindergarten St. Raphael, Evangelischer Kindergarten der Johannesgemeinde, Städtische Kindertagesstätte Lutherstraße, Katholischer Kindergarten St. Christophorus, Evangelischer Kindergarten, Sonderschulkindergarten für gehörlose und gehörgeschädigte Kinder, Kinderkrippe Studentenwerk, Waldorfkindergarten Heidelberg, Evangelischer Kindergarten, Glückskinder Betreuungsservices GmbH, Kindernest, AWO - Kindertagesstätte Bergheim, Evangelische Tageseinrichtung für Kinder, Kinderkrippe Bullerbü, Kindergarten St. Albert, Tagesstätte für Kinder, Tagesstätte für Kinder, Arche, Kindertagesstätte Fliegenpilz, Kindertagesstätte, Kindertagesstätte Blumenstraße, EVA.KITA, Sankt Elisabeth, Kinderladen Heuhüpfer e.V., Haus für Kinder, Kindergruppe Plöck, Evangelischer Kindergarten der Versöhnungsgemeinde, Schatzkiste, Städtische Kindertagesstätte Karolinger Weg, INF 685, Kindergarten, Diakonisches Werk, Krippenhaus, Evangelische Kindertagesstätte Handschuhsheim-West, Kleine Pusteblume KiGa, Städtischer Kindergarten Hardtstraße, Katholischer Kindergarten St. Vitus, Kindertagesstätte Handschuhsheimer Landstraße, Evangelischer Jakobuskindergarten, Evangelischer Kindergarten Lindenweg, Städtische Kindertagesstätte Vangerowstraße, Kath. Kindergarten St. Bartholomäus, Evangelischer Kindergarten Panamahaus, Musikkindergarten Sankt Paul, Städtische Kita Adolf-Engelhardt-Straße, Städtische Kindertagesstätte Klingenteichstraße, Kindertagesstätte Kanzleigasse, Waldkindergarten Heidelberg, Waldkindergarten Riesenstein, Waldkindergarten Heidelberg, Waldkindergarten Heidelberg, Kinderkrippe Kinderkiste, Waldkindergarten Heidelberg, Kindertagesstätte Jägerpfad, Evangelischer Kindergarten "Paula Heck", Kindertagesstätte Schwetzinger Terrasse, Kinderladen Heuhüpfer, Kiku Kinderland, Champini Sport- & Bewegungskita Heidelberg Schlierbach, Kinderhaus, Kids' Club, Sport-Kindergarten Heidelberg, Im Spitzgewann, Kindertagesstätte Emmertsgrundpassage, Kindertagesstätte Emmertsgrundpassage +567.8, 446, 481, 496, 480, 376, 375.5, 439.9, 486.9, 449, 539, 296, 258.7 +BNP Paribas +wayside shrine, memorial, archaeological site, castle, wayside cross, stone, yes, boundary stone, ruins, monument, city gate, tower, tracks +49.5625091 8.6652144, 49.2904856 8.6711957, 49.2293107 8.5154631, 49.4886708 8.4342383, 49.3874604 8.3743606, 49.4981414 8.4878822, 49.4348566 8.5221896, 49.4914529 8.4686192, 49.4429579 8.3536220, 49.4952463 8.3716996, 49.4740787 8.3281191, 49.4872738 8.4399863, 49.4833258 8.4437414, 49.5024486 8.4718364, 49.4566392 8.4291755, 49.4431050 8.3538899, 49.3633346 8.6821313, 49.4052127 8.6392987, 49.4938842 8.4613342, 49.4548799 8.5945594, 49.4941751 8.4587380, 49.4611243 8.4946413, 49.3388954 8.4209382, 49.4726510 8.9912230, 49.5501019 8.4725871, 49.4440236 8.8973087, 49.3322201 8.5330358, 49.3820239 8.3934831, 49.4764694 8.4207773, 49.4489816 8.5057887 +48.3908215 -4.4845938, 48.6510102 -2.0245876, 47.6588518 -2.7480177, 48.3800023 -3.8436213, 48.6466739 -2.0096876, 48.1017047 -1.6786814, 47.6574647 -2.7590147, 48.6084394 -4.3313468, 48.7817049 -3.2227728, 47.9038915 -2.1206020, 48.3694590 -3.4988555 +no +951 +yes and 6 +Mo-Sa 10:00-18:30, We 14:30-18:30 +no +55.8969264 -3.3064312, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9383223 -3.4081252, 55.9612140 -3.3062746, 55.9103533 -3.3220087, 55.9328178 -3.3087070, 55.9428244 -3.2815918, 55.9035407 -3.2854196, 55.9655823 -3.2732115, 55.9429604 -3.2929801, 55.9426525 -3.2829003, 55.9430016 -3.2880429, 55.9656482 -3.2744012, 55.9233852 -3.2910431, 55.9234641 -3.2913646, 55.9383953 -3.3146583 +Le Boyard +55.9501318 -3.1886125 +gardener, electrician, carpenter, paver, plumber, brewery, stonemason, hvac, photographer, pottery, photographic laboratory, key cutter, roofer, caterer, metal construction +Sainsbury's Local, Tesco, Scotmid, Scotmid Co-operative, Co-Op, Scotmid Co-operative, Scotmid, Tesco, Tesco Metro, Bodrum Fine Foods, Tesco Express, Tesco Metro, Sainsbury's Local, Sainsbury's, Maqbool's Supermarket, Scotmid, Scotmid, Scotmid Co-operative, Scotmid, Scotmid, Tesco Express, Sainsbury's, Tesco Express, Tesco Express, Co-operative, Farmfoods, Sainsburys Local, Sainsbury's Local, Tesco Express, Co-operative Food, Sainsbury's Local, Iceland, LIDL, Sainsbury's Local, Lidl, Matthew's Foods, Sainsbury's Local, The Co-operative Food, Iceland, Scotmid, Sainsbury's Local, Liberton Food, News & Wine, Sainsbury's Local, Rajah's Supermarket, Farmfoods, Co-operative Food, Vidhi, Cook, Lidl (under construction), Hua Xing Chinese Supermarket, Farmfoods, LIDL, Morisons, Lidl, Tesco Colinton, Tesco Corstorphine Extra 24hr, Morrisons Ferry Road, Waitrose, Co-op, Tesco, Waitrose, Lidl, Tesco, Aldi, Asda - The Jewel, Scotmid, Asda Leith Superstore, Tesco, Scotmid, Lidl, Sainsbury's Longstone, Sainsbury's, Co-operative Food, M&S Simply Food, Morrisons Supermarket, Sainsbury's Murrayfield, Morrisons, Morrisons, Iceland, Tesco Metro, Scotmid, Scotmid, Farmfoods, Scotmid Co-operative, Sainsbury's Local, Scotmid, Scotmid, Tesco Express, Sainsbury's Local, Scotmid Co-op, ASDA Chesser, Scotmid, Tesco Hermiston Gait, Morrisons, ALDI, Iceland, Lidl +Vulpius-Hütte and 49.4007958 8.7275016 +834 +yes +55.8969264 -3.3064312, 55.9286688 -3.2097008, 55.9709381 -3.2084981, 55.9710757 -3.2083893, 55.9713224 -3.2074276, 55.9584008 -3.2092092, 55.9601757 -3.2559248, 55.9312309 -3.2523089, 55.9511924 -3.1760524, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9073786 -3.2585910, 55.9531081 -3.2008271, 55.9449974 -3.2048810, 55.9615944 -3.1808390, 55.9122939 -3.1636240, 55.9390586 -3.2260923, 55.9425869 -3.1828482, 55.9492055 -3.1928272, 55.9457758 -3.2348710, 55.9531031 -3.1974183, 55.9442082 -3.2038136, 55.9086565 -3.2096817, 55.9612140 -3.3062746, 55.9809058 -3.1784709, 55.9542354 -3.1917490, 55.9428244 -3.2815918, 55.9498996 -3.2091714, 55.9510827 -3.2031240, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9537368 -3.1946870, 55.9468356 -3.2159630, 55.9379488 -3.2323230, 55.9573609 -3.2064305, 55.9530711 -3.2010501, 55.9526098 -3.2039830, 55.9430272 -3.2039408, 55.9576475 -3.1842848, 55.9527506 -3.1965698, 55.9507785 -3.2057118, 55.9717098 -3.1715371, 55.9695475 -3.1723616, 55.9552540 -3.1886031, 55.9462028 -3.1849929, 55.9700780 -3.1719013, 55.9683184 -3.1734262, 55.9325351 -3.1397933, 55.9453646 -3.1914973, 55.9453776 -3.1916473, 55.9507179 -3.2052686, 55.9533274 -3.1148467, 55.9587335 -3.2260450, 55.9252818 -3.2099781, 55.9429604 -3.2929801, 55.9656482 -3.2744012, 55.9233852 -3.2910431, 55.9234641 -3.2913646, 55.9383953 -3.3146583, 55.9528423 -3.1973524, 55.9528342 -3.1149045 +Sparkasse Heidelberg, H + G Bank, Sparkasse Heidelberg, H+G Bank, H+G Bank, Sparda-Bank Baden-Württemberg eG, Targobank, H+G Bank, Commerzbank, Targobank, Deutsche Bank, Postbank, Heidelberger Volksbank, Heidelberger Volksbank, Heidelberger Volksbank, BW Bank, Postbank, Volksbank Heidelberg, Sparkasse Heidelberg, Sparkasse, Commerzbank, H+G Bank, H+G Bank, Sparkasse Heidelberg, Badische Beamten Bank, Volksbank Kurpfalz H + G BANK eG, Commerzbank, Badische-Beamten-Bank, Sparkasse Heidelberg, PSD Bank Karlsruhe-Neustadt eG, Santander, Postbank ++49 6221 29406 +48.8798114 2.3837139, 48.8798183 2.3835960 +3.6128066103214249 +366 +Tang Frères, Monoprix Lecourbe, Franprix, G20, Marché U, Marché U, Dia, G20, Carrefour City, G20, Monoprix, Franprix, Intermarché, Franprix, Lidl, Franprix, Franprix, Franprix, Franprix, Carrefour City, Monoprix Convention, Dia, DIA, Monoprix, Monoprix, Lidl, monop', Franprix, Dia, Simply Market, Simply Market, Franprix, Dia, Simply Market, Monoprix, Carrefour City, Franprix, Simply Market, Dia, marché Franprix, Franprix, G20, Franprix, Monoprix, Dia, A2 Pas, Petit Casino, Carrefour Market, Europasie, Franprix, Monoprix, DIA, 8 a huit, Naturalia, Casino, Franprix, Franprix, Monoprix, Franprix, Franprix, Simply Market, Monoprix, Carrefour Market, Franprix, Franprix, Franprix, A2 Pas, Franprix, Franprix, Monoprix, Franprix, Sitis Market, Monoprix, DIA, Franprix, SimplyMarket, Naturalia, Naturalia Crussol, Franprix, Monoprix, Monoprix, Franprix, Dia, Tati, Franprix, Franprix, Monoprix, Franprix, Biocoop, Franprix, G20, monop', DIA, Dia, Marché Franprix, Paris Store, Marché Franprix, Monoprix, Franprix, Franprix, Carrefour City, Proxi, Dia, Carrefour Market, G20, Super U, Carrefour Market, Monop' COLETTE, Franprix, Carrefour City, Dia, Petit Casino, Naturalia, Franprix, Monoprix, Franprix, Carrefour Market, Canal Bio, Carrefour City, Carrefour Market, Bio C' Bon, Franprix, Intermarché Express, Wing Seng, Carrefour Market, Paris Store, Les Nouvelles Halles - 新今日超市, Supermarché Bonjour - 新温州超市, Franprix, A2 Pas, Franprix, Franprix, Picard, Intermarché Express, Dia, Franprix, Carrefour City, Simply Market, Le retour à la Terre - Rive Gauche, Franprix, Lidl, DIA, Franprix, DIA, Franprix, Franprix, Franprix, Franprix, Franprix, Naturalia, CocciMarket, A2 Pas, Franprix, Franprix, Marché Franprix, Dia, Carrefour Express, Les Nouveaux Robinson, Monoprix, Supermarché G20, Lidl, Monoprix, Carrefour Market, Franprix, G20, Le Marché Rungis, Casino, franprix, Carrefour City, La Grande épicerie de Paris, G20, Franprix, Bio c'Bon, Pimlico, Franprix, Marché Franprix, DIA, Franprix, Supermarché G20, Franprix, Simply Market Paris Brune, Carrefour, Franprix, Monoprix, Franprix, Dia, Carrefour Market, Franprix, Biocoop Grenelle, Dia, Franprix, Carrefour Express, Franprix, Dia, Franprix, CarrefourCity, Monoprix, Naturalia, monop', G20, Leader Price, Franprix, Monoprix, Franprix, Intermarché Express, Franprix, Franprix, Picard, Carrefour, Marché U, Lidl, Dia, G20, Franprix, Le Marché Franprix, Le Marché Franprix, DIA, Monoprix, Franprix, Carrefour Market Paris Monge, Franprix, Franprix, Franprix, Franprix, Monoprix, Dia, Simply Market, Monoprix, Franprix, Franprix, Franprix, DIA, Carrefour City Market, Franprix, Leader Price, Franprix, Franprix, Simply Market, Dia, Futur Carrefour, Casino, Monoprix, Biocoop, Carrefour Market, K-mart, Marché Franprix, Dia, Sitis, Franprix, Franprix, Bio c'Bon, Franprix, Monoprix, Franprix, Franprix, Monoprix, Franprix, Marché Franprix, Monoprix, U Express, Franprix, Carrefour City, Franprix, Carrefour Market, Leader Price, G20, Monoprix, Intermarché Express, Franprix, Carrefour Express, Marché Franprix, Super U, Marché Franprix, Carrefour City, Franprix, Franprix, Lidl, Tang Frères, Hall' shop, 8 à 8, Retour à la Terre, Leader Price, monop', Leader Price, Naturalia, Franprix, Bio c' Bon, Carrefour City, Franprix, Épicerie Anglaise, N.Y.P. Supermarche, DIA, Ting Supermarché Chinois, Franprix, Franprix, Monoprix, Monop' Austerlitz, Franprix, Franprix, Carrefour Market, Monoprix, Monoprix, Franprix, Simply Market, Franprix, Lidl, Monoprix, Franprix, DIA, Leader price, Franprix, Franprix, Franprix, Bio c'Bon, Franprix, Carrefour City, monop’, Lidl, Franprix, Leader Price, Franprix, Monoprix, Franprix, Intermarché Express, Franprix, Intermarché Express, Franprix, G20, Marché Franprix, A2 Pas, Diagonal, Marché Franprix, Casino Supermarché, G20, Franprix, Lidl, DIA, Super U, Franprix, Carrefour City, Intermarché Express, Naturalia, 8 à huit, G20, Franprix, Carrefour Market, Franprix, Picard Surgeles, Carrefour City, Monoprix, DIA, Franprix, Franprix, DIA, Casitalia, Carrefour City, Carrefour City, monop', Franprix, Votre Marché, Monoprix, Bio Génération, A2 pas, Franprix, Monoprix, Carrefour Express, A2pas, Franprix, DIA, Carrefour City, Franprix, Monoprix, Bio c' Bon, Franprix, Carrefour City, Casino, Welcome Bio, Carrefour City, Franprix, Franprix, Franprix, Marché Franprix, Franprix, Franprix, Marché Franprix, Dia, Carrefour bio, Naturalia, Naturalia, Franprix, Monoprix, Printemps, Paris Store, Bio c bon, G20, Franprix, Carrefour City, Carrefour Express, monop', Franprix, Proxy market, G20, G20, Monoprix, Carrefour City, Franprix, Franprix, Franprix, Zola Color, Chine store - 新今日超市, Carrefour City, G20, Casino, Carrefour express, Coccinelle, Franprix, Picard, monop', marché franprix, marché Franprix, Dia, Tang Frères, marché Franprix, Marché Franprix, DIA, Naturalia, Bio C Bon, Le Panier Gourmet - Franprix, Carrefour City, À 2 Pas, Diagonal, Le Marché Franprix, À 2 pas, Lidl Olympiades, Franprix, Dia, Picard, Dia, Marks and Spencer, Dia, Tang Frères, DIA, Carrefour Express, G20, G20, Biocoop, Monoprix, La Vie claire, G20, Franprix, Carrefour City, Naturalia, monop', Franprix, Carrefour Market, Picard Surgelés, Cocci Market, Leader Price, Franprix, Dia, Leader Price, Dia, Dia, Marché Franprix, Géant Casino, Carrefour Express, Hyper Cacher, Le Marché Franprix, Picard, Naturalia, Neuilly Cacher, Franprix, Galeries Gourmandes, Bienvenue Superette Champerret, Cocci Market, Huit à 8, Bio c Bon, Lidl, Franprix, Paris Store, Picard Surgeles, Naouri Market, Naturalia, Franprix, Monoprix, elan nature, franprix, Picard Surgeles, Dia, Franprix, monop', Leader Price, Picard Surgeles, Carrefour Express, Yarden, coccimarket, Picard, Franprix, Naturenville, Dia, Franprix, Naouri Market, Hypercacher, Yarden Gel, G20, Supermarche de Stalingrad, Univ-Fresh, Causses, Dia, Yarden, Carrefour Market, A2pas, Franprix, Monoprix, Picard, G20, Les Quatre saisons - 新中华商场, Franprix, Carrefour Express, Carrefour, U Express, Carrefour City, Eden, Carrefour City, Carrefour City, Dia, Marché Franprix, Dia, Picard, Bio c'Bon, Hyper Cacher, Franprix, Bio c' bon, Les 5 fermes, Lidl, monop', Naturalia, monop', monop’, Franprix, Bien, G20, Holy Planet, Picard, Franprix, Dia, Monoprix, Leader Price Express, Carrefour Express, Monoprix, Franprix, Carrefour city, Carrefour City, Leader price, Picard, Franprix, Intermarché Express, Intermarché Express, Intermarché Express, Leader Price Express, Coccinelle, Monoprix, Naturalia, Franprix, Picard, Dia, A 2 pas, Franprix, Franprix, Proxy, Carrefour City, Franprix nano, G20, G20, Monoprix, Naturalia, Biocoop Belleville en Bio, Diagonal, Leader price, Franprix, Carrefour Express, Cocci Market, Monoprix, Bio c' Bon, Biocoop, Carrefour express, Naturalia, Carrefour Express, Franprix Nano, Intermarché, G20, Carrefour Express, G20, A2 Pas, Dia, Supermarché G20, A 2 Pas, Monop', Dia, Bio C'Bon, Bio C Bon, Monop', Picard, Franprix, A2pas, Bio C' Bon, 8 à Huit, A2 Pas, Franprix, Dia, Vival by Casino, franprix, Marché Franprix, Monop'Daily, Monop, Picard, Picard, Franprix, Bio c' Bon, Leader Price Express, Picard, Monoprix République, monop, picard, Monop, sitis, carrefour express, VT Cash & Carry, cocci market, diagonal, Marché M, Carrefour Express, Monoprix, Diagonal, Carrefour City, Carrefour City, Monoprix, Dada, Dia, Lidl, Franprix, G20, Naturalia, Franprix, Franprix, Carrefour Express, Carrefour City, Biocoop, Naturalia, Biocoop, Simply Market, Leader Price, Monoprix, Monoprix, Le Panier Gourmet - Franprix, Monoprix, Franprix, G20, U Express, Franprix, Monoprix Alimentation, monop’, Franprix, Franprix, Dia, Franprix, Carrefour Market, Carrefour City, G20, Marché Franprix, Naturalia, Monoprix, Monoprix, Simply Market, Franprix, Monoprix, Centre Commercial E. Leclerc, Continental Marché, Franprix, monop', Carrefour City +yes +0.31693520791766788 +146 +48.8671035 2.3471909, 48.8782645 2.3740462, 48.8774801 2.3700505, 48.8327092 2.3625620, 48.8304784 2.3562767, 48.8334332 2.3545467, 48.8326050 2.3544168, 48.8530182 2.4058632, 48.8697474 2.3709540, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8703950 2.3709651, 48.8778698 2.3509743, 48.8535279 2.3681762, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8521024 2.4034631, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8695951 2.3715600, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8653000 2.3752307, 48.8673441 2.3627982, 48.8651925 2.3758399, 48.8629074 2.3860380, 48.8668485 2.3837377, 48.8672012 2.3825153, 48.8645121 2.3683814, 48.8318807 2.3568124, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8501765 2.3792170, 48.8507286 2.3779068, 48.8509545 2.3780414, 48.8502726 2.3811628, 48.8732053 2.3585526, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8605667 2.3751425, 48.8637354 2.3705262, 48.8369085 2.4021711, 48.8370521 2.4018326, 48.8396803 2.3945209, 48.8400366 2.3946968, 48.8397862 2.3968956, 48.8368227 2.4037506, 48.8368339 2.3917853, 48.8393074 2.3970077, 48.8744139 2.3574128, 48.8482696 2.3715140, 48.8470790 2.3740473, 48.8469009 2.3721664, 48.8461048 2.3740873, 48.8477030 2.3740290, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8457782 2.3745532, 48.8574421 2.3793069, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8402359 2.3617231, 48.8649004 2.4054084, 48.8806821 2.3741833, 48.8591202 2.3475207, 48.8743117 2.3760048, 48.8660916 2.3526753, 48.8645295 2.3512403, 48.8685043 2.3498910, 48.8641253 2.3698504, 48.8518531 2.3567202, 48.8612900 2.3499825, 48.8612937 2.3537009, 48.8560141 2.3571788, 48.8595710 2.3565976, 48.8549508 2.3624309, 48.8552557 2.3616146, 48.8538346 2.3644665, 48.8543409 2.3691660, 48.8650455 2.3535907, 48.8669898 2.3620443, 48.8667188 2.3611850, 48.8662353 2.3610229, 48.8633000 2.3620149, 48.8632099 2.3622012, 48.8626247 2.3633483, 48.8621296 2.3644112, 48.8614452 2.3647591, 48.8630803 2.3510377, 48.8592743 2.3796462, 48.8809308 2.3651881, 48.8812888 2.3651008, 48.8808303 2.3650793, 48.8883530 2.3917794, 48.8568213 2.3685042, 48.8904247 2.3760144, 48.8296478 2.3789647, 48.8382010 2.3505000, 48.8378958 2.3507127, 48.8377870 2.3508117, 48.8378570 2.3515198, 48.8376483 2.3516414, 48.8727273 2.3786615, 48.8284670 2.3791901, 48.8287894 2.3821387, 48.8293931 2.3783272, 48.8444634 2.4058653, 48.8806637 2.3648615, 48.8822323 2.3662711, 48.8459991 2.3734585, 48.8533487 2.3667989, 48.8949842 2.3821818, 48.8846806 2.3623964, 48.8797648 2.3567638, 48.8810016 2.3640265, 48.8606979 2.3554288, 48.8605259 2.3552067, 48.8765046 2.3790929, 48.8717642 2.3765169, 48.8824125 2.3814642, 48.8505969 2.3487384, 48.8388735 2.3499896, 48.8430873 2.3523909, 48.8433167 2.3520295, 48.8446194 2.3521389, 48.8387237 2.3571215, 48.8555518 2.3602965, 48.8585424 2.3554995, 48.8661318 2.3536080, 48.8685310 2.3627215, 48.8664790 2.3612544, 48.8671863 2.3624934, 48.8471366 2.3867728, 48.8382469 2.3985623, 48.8356227 2.4057366, 48.8417549 2.3864187, 48.8592377 2.3714158, 48.8256887 2.3653770, 48.8695383 2.3950747, 48.8953387 2.3825799, 48.8234162 2.3578095, 48.8223317 2.3587958, 48.8230555 2.3585643, 48.8454338 2.3886185, 48.8503640 2.3847349, 48.8446673 2.3830913, 48.8488537 2.3789042, 48.8459220 2.4058540, 48.8383753 2.3982048, 48.8636110 2.3699568, 48.8707193 2.3495070, 48.8761304 2.3564812, 48.8756147 2.3563557, 48.8834234 2.3734013, 48.8570504 2.3810504, 48.8540420 2.4102463, 48.8631677 2.3877376, 48.8465399 2.3518782, 48.8256754 2.3500062, 48.8312357 2.3775548, 48.8731847 2.3591245, 48.8902005 2.3757322, 48.8706166 2.3614024, 48.8433668 2.3494422, 48.8570621 2.3817062, 48.8372502 2.3914765, 48.8789794 2.3539524, 48.8481085 2.4036760, 48.8482530 2.4016764, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8337153 2.3863338, 48.8468610 2.3536998, 48.8201698 2.3641255, 48.8692088 2.4085611, 48.8525041 2.4054710, 48.8358361 2.3959436, 48.8620103 2.3504016, 48.8776629 2.3503063, 48.8607520 2.3551307, 48.8599332 2.3492544, 48.8616973 2.3497749, 48.8808570 2.3744052, 48.8816465 2.3719957, 48.8810026 2.3740798, 48.8809708 2.3734937, 48.8808782 2.3736050, 48.8271902 2.3689921, 48.8456435 2.3883893, 48.8467978 2.3874491, 48.8463910 2.3878730, 48.8240842 2.3636888, 48.8226659 2.3580445, 48.8259715 2.3507845, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8690375 2.4018799, 48.8681245 2.4017154, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8709768 2.4035156, 48.8718932 2.4046138, 48.8711831 2.4041560, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8650286 2.3978764, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8661206 2.3993734, 48.8647416 2.4000331, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8646156 2.3980291, 48.8385802 2.3568194, 48.8575448 2.3507955, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8260853 2.3604941, 48.8276987 2.3717961, 48.8898740 2.3601766, 48.8309472 2.3666202, 48.8900866 2.3603615, 48.8457722 2.3952172, 48.8315085 2.3570011, 48.8294497 2.3691497, 48.8911754 2.3596165, 48.8912089 2.3601196, 48.8267862 2.3639559, 48.8275456 2.3565272, 48.8292182 2.3568482, 48.8895540 2.3596572, 48.8601780 2.3784708, 48.8918470 2.3497087, 48.8394408 2.3901626, 48.8634536 2.3668626, 48.8621900 2.3647601, 48.8643476 2.3599313, 48.8304465 2.3780998, 48.8561136 2.3566520, 48.8740405 2.3857795, 48.8749608 2.3892009, 48.8739345 2.3878755, 48.8794344 2.3881410, 48.8536688 2.3651544, 48.8801930 2.3906171, 48.8750094 2.3896199, 48.8755856 2.3816591, 48.8358783 2.3528351, 48.8737724 2.3861774, 48.8469948 2.3720795, 48.8741080 2.3859246, 48.8448082 2.4018695, 48.8776217 2.3939651, 48.8777323 2.3952759, 48.8775224 2.3930979, 48.8577037 2.3677906, 48.8547650 2.3703199, 48.8419262 2.3651705, 48.8370898 2.3512464, 48.8439360 2.3521362, 48.8687439 2.3725567, 48.8473180 2.3512660, 48.8836091 2.3810186, 48.8364615 2.3516931, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8331060 2.3547764, 48.8275383 2.3571726, 48.8466594 2.4106749, 48.8474387 2.3948976, 48.8475088 2.4104704, 48.8293214 2.3692986, 48.8558171 2.3591925, 48.8843398 2.3684081, 48.8294964 2.3565503, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8605440 2.3490975, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8551235 2.3603692, 48.8335336 2.4018517, 48.8344090 2.3538607, 48.8329666 2.3548590, 48.8524475 2.3894597, 48.8426479 2.3496281, 48.8459597 2.3544163, 48.8370786 2.3520317, 48.8570274 2.3983184, 48.8851905 2.3788177, 48.8694492 2.3546663, 48.8803860 2.3748678, 48.8493470 2.3529650, 48.8747781 2.3879795, 48.8755246 2.3943562, 48.8828185 2.3827206, 48.8753559 2.3919799, 48.8752306 2.3934592, 48.8491590 2.3498700, 48.8485190 2.3493440, 48.8401997 2.3954293, 48.8651944 2.3554408, 48.8650138 2.3556963, 48.8895142 2.3498344, 48.8578346 2.3793123, 48.8619859 2.3647571, 48.8664714 2.3673929, 48.8625029 2.3716831, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8455488 2.4110597, 48.8651981 2.3604798, 48.8768640 2.3922696, 48.8675297 2.3843310, 48.8685607 2.3669629, 48.8715677 2.3606317, 48.8721816 2.3600284, 48.8690920 2.3544517, 48.8683922 2.3581580, 48.8768740 2.3473056, 48.8785250 2.3535336, 48.8734651 2.3583097, 48.8747915 2.3570787, 48.8791742 2.3482838, 48.8657983 2.3663325, 48.8406978 2.3744965, 48.8597693 2.3772029, 48.8525574 2.4047510, 48.8577757 2.4073141, 48.8641842 2.3992653, 48.8535488 2.3673835, 48.8532580 2.3674767, 48.8627281 2.3878662, 48.8389478 2.3497359, 48.8573584 2.3900374, 48.8862870 2.3823994, 48.8479392 2.3716919, 48.8704997 2.3615121, 48.8330591 2.3871082, 48.8646077 2.3788387, 48.8705497 2.3546686, 48.8761690 2.3558059, 48.8740824 2.3480430, 48.8312382 2.3775605, 48.8513497 2.3992002, 48.8772970 2.3488717, 48.8774911 2.3492552, 48.8774769 2.3495261, 48.8783431 2.3528360, 48.8816257 2.3653592, 48.8435649 2.3891604, 48.8794618 2.3547465, 48.8753162 2.3572500, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8778905 2.3549883, 48.8488552 2.3942325, 48.8489972 2.3942887, 48.8505758 2.3948498, 48.8494165 2.3948501, 48.8449899 2.4047731, 48.8351835 2.3533874, 48.8406761 2.3933858, 48.8359858 2.3961013 +51.4399233 7.3193298, 51.4299127 7.3343295, 51.4370631 7.3487078, 51.3954874 7.3117224, 51.4400849 7.3193098, 51.4428113 7.3879060, 51.4390018 7.3650791, 51.4392759 7.3648904, 51.4391417 7.3649827 +49.4073928 8.7041148, 49.4068507 8.7042612, 49.4161569 8.7709138, 49.4052714 8.7185373, 49.3862413 8.6792308, 49.3894429 8.6658909, 49.4085991 8.7816352, 49.4116596 8.7793796 +Falko Konditormeister, Greggs, Gregg's, Douglas's Bakery, Masons Bakery, Roll Up, Gregg's, Barnton Fine Foods, La Croissanterie, Mathiesons Bakers, Greggs, Cuckoo's Bakery, Storries Home Bakery, Morrison's Bakery, Greggs, Gregg's, Greggs, Greggs, Patissier Maxine, Patisserie Valerie, Bibi's Cake Boutique, Greggs, Dough Re Mi, Dough Re Mi, The Pine Tree Bakery, Bayne's, Goodfellow & Steven, Greggs, Bakery Andante, Greggs, Greggs, Bayne's, Stockbridge Kitchen, Goodfellow & Steven, Edinburgh Bakehouse, Greggs, Greggs, Bonningtons, The Wee Boulangerie, Jacob, Licks Cake Design, Greggs, Greggs, Glenvarloch Bakery, Archipelago Bakery, Sicilian Pastry Shop, Melinda's Cake Boutique, Greggs, Daneli's Deli, Too Good To Eat, Gregg's, Soderberg, Soderberg, Allan's Bakery, Breadshare, Valvona & Crolla Kitchen, Greggs, Goodfellow & Steven, Bayne's, Breadwinner Bakery, Parkhead Bakers, Bayne's, Archipelago Artisan Bakery, Crows Family Bakery, Piemaker, Greggs, Greggs +1864 +1910 +70 +yes +219 and 48.8534705 2.3029031, 48.8528568 2.3020177, 48.8393301 2.3500747, 48.8420623 2.2966075, 48.8578708 2.3103454, 48.8495920 2.3118988, 48.8649951 2.3377982, 48.8387859 2.3504803, 48.8463542 2.3546880, 48.8391823 2.3706120, 48.8350620 2.4078967, 48.8506752 2.3329343, 48.8451544 2.3536617, 48.8803039 2.3798878, 48.8636678 2.3350046, 48.8637726 2.3355646, 48.8670925 2.3387264, 48.8540659 2.3616249, 48.8540729 2.3612004, 48.8645550 2.3645938, 48.8480587 2.3392944, 48.8806819 2.3876000, 48.8583933 2.3023795, 48.8669641 2.3142243, 48.8651920 2.3140147, 48.8670174 2.3136289, 48.8651787 2.3134167, 48.8316177 2.3780517, 48.8436874 2.3302939, 48.8483332 2.2576994, 48.8452340 2.3448440, 48.8429501 2.3517845, 48.8589666 2.4059365, 48.8616904 2.3160412, 48.8658377 2.3554835, 48.8612301 2.2900306, 48.8784002 2.3375553, 48.8772426 2.3277376, 48.8812329 2.3301337, 48.8410891 2.3368145, 48.8314280 2.3555815, 48.8396015 2.3958093, 48.8449573 2.4022523, 48.8828326 2.3719171, 48.8838484 2.3703052, 48.8546899 2.3251122, 48.8751011 2.3616070, 48.8681435 2.2454284, 48.8649019 2.3984981, 48.8557457 2.4009907, 48.8628867 2.3292924, 48.8645244 2.3241300, 48.8522608 2.4040943, 48.8923038 2.3388466, 48.8383839 2.2786491, 48.8673541 2.3180025, 48.8689632 2.3129455, 48.8683826 2.3147872, 48.8687522 2.3154832, 48.8649600 2.3207507, 48.8659920 2.3215075, 48.8668835 2.3116323, 48.8686692 2.3103634, 48.8686841 2.3099161, 48.8689059 2.3096161, 48.8690546 2.3106303, 48.8692789 2.3103348, 48.8692931 2.3098862, 48.8508700 2.3332751, 48.8559534 2.2977197, 48.8562003 2.2980848, 48.8679715 2.3375806, 48.8696713 2.2853395, 48.8448267 2.3832538, 48.8612184 2.3359626, 48.8607940 2.3357198, 48.8611505 2.3363233, 48.8609255 2.3361637, 48.8613287 2.3357359, 48.8606908 2.3360605, 48.8608125 2.3354395, 48.8185747 2.3602641, 48.8670465 2.3537266, 48.8672803 2.3538862, 48.8854126 2.3770897, 48.8551427 2.3861181, 48.8469168 2.3372024, 48.8544579 2.3112189, 48.8525635 2.3513635, 48.8727300 2.4014992, 48.8956082 2.3863617, 48.8963229 2.3877822, 48.8966783 2.3884868, 48.8468849 2.3100155, 48.8543573 2.3136915, 48.8572041 2.3519819, 48.8572192 2.3519137, 48.8572350 2.3518428, 48.8572508 2.3517719, 48.8572661 2.3517033, 48.8560656 2.3513775, 48.8560820 2.3513063, 48.8560988 2.3512327, 48.8561157 2.3511592, 48.8561320 2.3510885, 48.8608242 2.2903788, 48.8608319 2.2903145, 48.8608723 2.2903038, 48.8609002 2.2904933, 48.8609205 2.2902287, 48.8609280 2.2901652, 48.8609419 2.2904783, 48.8609483 2.2904183, 48.8609686 2.2901537, 48.8609965 2.2903433, 48.8610167 2.2900786, 48.8610241 2.2900160, 48.8610380 2.2903290, 48.8610446 2.2902682, 48.8610648 2.2900036, 48.8610927 2.2901932, 48.8611130 2.2899286, 48.8611201 2.2898668, 48.8611341 2.2901798, 48.8611409 2.2901181, 48.8611611 2.2898535, 48.8611890 2.2900431, 48.8612092 2.2897785, 48.8612162 2.2897176, 48.8612371 2.2899680, 48.8612497 2.2892815, 48.8612573 2.2897034, 48.8612824 2.2892324, 48.8612852 2.2898930, 48.8613055 2.2896284, 48.8613058 2.2892652, 48.8613122 2.2895684, 48.8613262 2.2898814, 48.8613291 2.2892979, 48.8613334 2.2898179, 48.8613524 2.2893307, 48.8613536 2.2895533, 48.8613757 2.2893634, 48.8613815 2.2897429, 48.8614008 2.2893441, 48.8614222 2.2897322, 48.8614289 2.2893337, 48.8614296 2.2896679, 48.8614303 2.2894240, 48.8614569 2.2893330, 48.8614859 2.2893444, 48.8615086 2.2895426, 48.8615509 2.2896317, 48.8615627 2.2895858, 48.8615655 2.2894571, 48.8615688 2.2894995, 48.8615690 2.2895426, 48.8615734 2.2896657, 48.8615959 2.2896998, 48.8616108 2.2898138, 48.8616184 2.2897338, 48.8616409 2.2897679, 48.8821377 2.3372542, 48.8536817 2.3714996, 48.8696605 2.2853294, 48.8696606 2.2853482, 48.8594868 2.4062620, 48.8532110 2.3437278, 48.8669190 2.3151373, 48.8676892 2.3127232, 48.8593193 2.3574587, 48.8390007 2.2810158, 48.8603590 2.3385384, 48.8749134 2.3468385, 48.8689869 2.3342909, 48.8535289 2.3331881, 48.8445329 2.3520712, 48.8628736 2.3292933, 48.8444725 2.3494231, 48.8554490 2.3650796, 48.8553288 2.3657869, 48.8559134 2.3652568, 48.8557971 2.3659661, 48.8606366 2.3480234, 48.8645216 2.3241369, 48.8631102 2.3305704, 48.8620408 2.3297808, 48.8482400 2.3355377, 48.8474005 2.3405897, 48.8484960 2.3353412, 48.8556092 2.3748547, 48.8661998 2.3078190, 48.8433657 2.3114422, 48.8895890 2.3922761, 48.8378349 2.2570480, 48.8380419 2.2569108, 48.8630799 2.3274936, 48.8636877 2.3279312, 48.8407370 2.3407878, 48.8410188 2.3409683, 48.8624628 2.3173680, 48.8428842 2.2923159, 48.8473182 2.3484905, 48.8465020 2.2521838, 48.8614879 2.3185384, 48.8767410 2.3938898, 48.8968701 2.3795734, 48.8402590 2.2767481, 48.8362746 2.3799012, 48.8914572 2.3139757, 48.8522672 2.3477182, 48.8823814 2.3993385, 48.8575005 2.3472864, 48.8371719 2.3182950, 48.8652746 2.2967165, 48.8653830 2.3165628, 48.8708153 2.3962847, 48.8678713 2.3631980, 48.8707771 2.3829242 +4 +84 +49.4145277 8.6909495, 49.4111212 8.7021704 +01.40.27.50.05, 01.44.55.57.50, +33 1 53 01 82 00, 01.48.74.38.50, 01.53.68.27.81, 01.43.55.52.72, 01.45.68.82.83, 01.42.64.40.10, +33 1 40 05 70 00, +33142721016, 01.40.67.97.66, +33 1 44 78 75 00, 01.42.08.90.20, 01.44.54.04.48, +33 1 43224763, 01.42.58.28.73, 01.53.43.40.00, 01.40.62.84.25, 01.45.25.63.26, +33 1 42 79 24 24, +33 1 40 22 11 00, 00.33.(0)1.42.29.68.60, 01.58.51.52.00, +33 (0)1 53 65 69 69, +33 (0)1 53 65 69 53, 01.45.23.74.09, 01.42.88.41.53, +33 1 56 26 14 03, 01.45.00.91.75, 01.43.40.16.22, 01.45.43.06.98, 01.42.86.20.47, 01.43.54.35.61, 01.45.44.09.55, 01.49.22.41.15, 01.45.20.53.41, 01.43.26.25.03, 01.42.34.68.60, 01.47.63.42.73, 01.42.22.59.58, +33 1 42 22 48 48, +33 1 42229196, 01.40.51.92.90, 01.55.42.50.10, 01.53.79.37.47, 01.44.41.52.50, 01.53.10.07.00, 01.40.64.39.44, 01.42.65.30.47, +33156802700, +33 1 44 32 47 48, 01.44.42.54.91, 01.45.51.95.05, +33144057272, 01.56.61.70.00, 01.40.79.54.79, +331 40 79 54 79, +331 40 79 56 01, 01.40.51.38.38, +33 1 42 58 72 89, +33 1 40205050, +33 1 47031250, 01.44.50.43.00, 01.56.24.55.33, 01.42.76.33.97, 01.42.76.26.32, 01.53.73.78.13, 01.53.01.86.53, 01.40.27.60.96, 01.85.56.00.36, 01.40.27.07.21, 01.44.41.86.50, 01 53 59 58 60, 01.46.59.05.51, 01.53.59.12.40, 01.42.68.02.01, 01.44.55.57.50, 01.53.96.21.50, 01.44.18.61.10, 01.45.42.11.59, 01.71.19.33.33, 01.53.67.40.00, 01.47.23.54.01, 01.42.18.56.50, 01.58.52.53.00, +33 1 45535796, 01.44.96.50.33, 01.40.79.54.79, 01.40.79.56.01, 01.55.31.95.67, +33 1 55744180, 01.42.24.54.02, +33 1 42 77 44 72, 01.44.37.95 .01, 01.55.42.77.20, 01.49.25.89.39, 01.53.01.92.40, 01.40.13.62.00, 01.44.78.80.20, 01.40.69.96.00, 01.56.52.86.00, 01.49.54.73.73, 01.44.59.58.58, 01.53.43.40.00, 01.53.40.60.80 +yes +97 +attraction, information, museum, hostel, hotel, viewpoint, camp site, picnic site, artwork, guest house, apartments, gallery, apartment, zoo +989 +49.4037439 8.7284305 +43.6260277 1.4337743, 43.5871216 1.4469197, 43.6004488 1.4466659, 43.6114742 1.4144774, 43.6647905 1.5056744, 43.5967890 1.4457753, 43.5999376 1.4422424, 43.6201770 1.4574680, 43.6122292 1.4482664, 43.6193979 1.4690227, 43.5864701 1.4831213, 43.6106810 1.4366271, 43.6049920 1.4447714, 43.6064342 1.4445347, 43.5574068 1.3810477, 43.5974538 1.4205152, 43.5809519 1.4133291, 43.5793278 1.4840653, 43.4550373 1.6140315, 43.6028177 1.4544543, 43.6101165 1.3299920, 43.5893965 1.3783877, 43.5546511 1.5324505, 43.7053345 1.4665124, 43.7173181 1.4809987, 43.5710456 1.5186221, 43.5820633 1.3880789, 43.6360716 1.4636776, 43.4487189 1.8882110, 43.5663823 1.2964740, 43.5989789 1.2322484, 43.8117875 1.5436643, 43.6346708 1.3948893, 43.5462877 1.4538291, 43.3903464 1.6838497, 43.6818127 1.3179512, 43.4581595 2.0019087, 43.3667678 1.7843111, 43.5849055 1.5280232, 43.6914739 1.2305422, 43.7786407 1.4800521, 43.4575062 1.5737466, 43.4360729 1.6606592, 43.6670205 1.4292515, 43.6741677 1.4556899, 43.6087629 1.4938148, 43.5303105 1.5349250, 43.6002570 1.7130996, 43.6822986 1.5835960, 43.4592110 1.9807588, 43.6580006 1.6628788, 43.7195481 1.5891637, 43.7218275 1.5866159, 43.6783699 1.5313559, 43.7222363 1.4316614, 43.7204174 1.2983690, 43.6459833 1.3699157, 43.5763208 1.2745944, 43.6090446 1.3391380, 43.5752874 1.4017612, 43.6452108 1.5279713, 43.6478942 1.4328650, 43.5969070 1.6015882, 43.4164919 1.6289473, 43.5867726 1.4626783, 43.6380313 1.4439756, 43.5777154 1.4397126, 43.5655754 1.3998805, 43.5646197 1.4104300, 43.5593873 1.6541737, 43.5859541 1.4277228, 43.6858360 1.4477308, 43.6679680 1.3788912, 43.7275892 1.0481378, 43.8629244 1.5063181, 43.7426228 1.1837502, 43.6645799 1.1942727, 43.7804119 1.3603119, 43.6702842 1.2889952, 43.6930091 1.4135998, 43.7114127 1.3925324, 43.7427777 1.3702527, 43.7675496 1.5302985, 43.5046309 1.4113176, 43.5254276 1.8271350, 43.5177621 1.5609976, 43.5296702 1.4837001, 43.5972281 1.4309605, 43.6558407 1.3708003, 43.3556538 1.6237200, 43.2864920 1.6332584, 43.5737470 1.4624103, 43.7795463 1.4048893, 43.5150853 1.4955195, 43.7981453 1.6065723, 43.6803668 1.3919733, 43.7269867 1.4122198, 43.7793622 1.6321404, 43.5509646 1.5131319, 43.4822135 1.6647297, 43.5371019 1.3463012, 43.6955968 1.4302320, 43.6510153 1.3262337, 43.7598279 1.0439680, 43.5479174 1.4719372, 43.8389189 1.3926761, 43.5685393 1.4972514, 43.7722482 1.2941146, 43.6090586 1.3809326, 43.5826647 1.3459461, 43.3568545 1.6236983, 43.6010734 1.4764907, 43.6176235 1.2836665, 43.4007911 1.7150650, 43.6193800 1.3971976, 43.8298665 1.4312785, 43.6573515 1.4830800, 43.7812608 1.3092270, 43.5288720 1.7616672, 43.5517020 1.5059580 +yes +57.5223776 -4.4756277 +55 +Standing Stone, Standing Stone, Cup and Ring Marked Rocks, Stone, Cat Stane, Physic Well, Fort, Hatton House +Chinese Consulate (PRC), Consulate General of the United States, Consulate General of India, Consulate General of France, Consulate General of Ireland, Consulate General of Italy, Consulate General of Japan, Consulate General of Spain, Consulate General of Switzerland, Consulate General of the Russian Federation, Consulate of the Kingdom of the Netherlands, Honorary Consulate of the Republic of Latvia, Royal Norwegian Consulate General, Embassy of Romania, Consulate General of Ukraine, Honorary Consulate of Jordan in Scotland, Consulate General of the Federal Republic of Germany +yes +49.4125622 8.6856608, 49.4032393 8.6471696, 49.4028079 8.6877203, 49.4132392 8.6920033, 49.4101353 8.6927154, 49.4044206 8.6749529, 49.4148114 8.7196509, 49.4102178 8.7150766, 49.4148865 8.6633752, 49.4144262 8.6605991, 49.4157782 8.6615636, 49.3985275 8.6890932, 49.4135237 8.7132879, 49.3670450 8.6852171, 49.4015634 8.6546617, 49.4080292 8.6761951, 49.4072190 8.7145767, 49.4175156 8.7606234, 49.4149077 8.6641649, 49.4180002 8.7565605, 49.4122451 8.7658820, 49.4094639 8.7149578, 49.4102265 8.6939011, 49.4157103 8.6706413, 49.4099021 8.7003337, 49.4104740 8.7059723, 49.4274734 8.6863680, 49.4438707 8.7583986, 49.4149603 8.6903977, 49.4171332 8.6926969, 49.4131244 8.6897970, 49.4122418 8.6816335 +ADAC +fr:1er arrondissement de Paris +outside +COPY-TOP Pyramides - Palais Royal, Copy Express, CopyHouse, Reprographie Numérique, Copy-Top, Copy-Top, Châteaudun Reprographie, Copie Press, Copy-Top, Copystar, Corep Jussieu, Com2Print, Copies Services Hexamedia, Copies Services Hexamedia, Augys Copy Service, Imprimerie Beaugrenelle, copie service, Copy-Top, Copy Self, Galerie du Roi, Copy Bolivar, Cyber Espace, Photocopie, Tabi-Dov' Imprim, Papyros, Copicom, Access Corlet, Copy-Top, Scan Chrome, Copytop, Imprim/Relie, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Net Copy Center, Abeille Copie, Abeille Repro, Atelier Pan Helio, Photocopie, 1Primeur and 48.8652920 2.3348229, 48.8408505 2.3133434, 48.8404547 2.3878653, 48.8457749 2.3129290, 48.8452297 2.3188481, 48.8774276 2.3561126, 48.8821459 2.3673459, 48.8695360 2.3360734, 48.8616301 2.3525055, 48.8618476 2.3525472, 48.8761027 2.3348516, 48.8675534 2.3414224, 48.8833415 2.3607843, 48.8650685 2.2882779, 48.8611375 2.3498977, 48.8620177 2.3530439, 48.8631069 2.3516394, 48.8467332 2.3539043, 48.8470854 2.3534067, 48.8268815 2.3637663, 48.8274182 2.3663727, 48.8299013 2.3593931, 48.8462783 2.2861424, 48.8325636 2.3355609, 48.8851530 2.3747032, 48.8661357 2.3657747, 48.8758780 2.3318830, 48.8748194 2.3813364, 48.8740625 2.3838135, 48.8326766 2.3313459, 48.8590284 2.2849882, 48.8786787 2.3705829, 48.8456610 2.3548687, 48.8457841 2.3550712, 48.8487264 2.3427817, 48.8621818 2.3636830, 48.8849374 2.3251012, 48.8452982 2.3702946, 48.8398394 2.3994042, 48.8755783 2.3398675, 48.8477158 2.3424602, 48.8658821 2.3432446, 48.8650841 2.3521057, 48.8486534 2.3278795, 48.8697494 2.3035499, 48.8749205 2.3171864, 48.8730860 2.3214257, 48.8745650 2.3250136, 48.8735563 2.3098457, 48.8765287 2.3468301, 48.8755937 2.3398746, 48.8699711 2.3268278, 48.8753841 2.3314218, 48.8718420 2.3480466, 48.8598947 2.3770187, 48.8317223 2.3784008, 48.8444517 2.3215403, 48.8694805 2.2915774, 48.8769636 2.2861975, 48.8845562 2.3015462, 48.8831474 2.3244403, 48.8226063 2.3268094, 48.8442297 2.3089047, 48.8723080 2.3046693, 48.8931640 2.3265607, 48.8454855 2.2973275, 48.8454352 2.2974755, 48.8376923 2.3597409, 48.8375496 2.3596345 +Imperial Palace +106 +Commercial Street, Union Place +0 +1 and 7 +55.9533748 -3.1895989 +no +yes +49.4274974 8.6861291 +Standing Stone, Standing Stone, Cup and Ring Marked Rocks, Hanging Stanes, Cat Stane, Ravenswood Avenue Standing Stone, Physic Well, Bonnington Weir +4 +Dalmeny Primary School, Pirniehall Primary School, Fettes College Preparatory School, Saint Mark's School, Haywired, Bun-sgoil Taobh na Pairce, Blackhall Primary School, St David's RC Primary School, Kirkliston Nursery School, Mannafields Christian School, Clifton Hall School, Dalmeny Nursery School, Currie Community High School, Queensferry High School, EDETA Training Services, Craigour Park Primary School, Liberton Primary School, St Thomas of Aquins, James Gillespie's High School, George Watson's College, South Morningside Primary School, Granton Primary School, Fettes College, Murrayburn Primary School, Westburn Primary School (Closed July 2009), Flora Stevenson's Primary School, Firrhill High School, Craigroyston Community High School, George Heriot's School, Niddrie Mill Primary School (Closed), Hermitage Park Primary School, Leith Academy, Lorne Primary School, Drummond Community High School, Stewart's Melville College, Craigentinny Primary School, St Ninians RC Primary School, Bruntsfield Primary School, George Watson's College Primary, Currie Primary School, Tynecastle High School, James Gillespie Primary School, St Peter's Primary School, Castlebrae High School, Gracemount High School, Buckstone Primary School, Liberton High School, Lismore Primary School‎ (Closed July 2009), Fox Covert Primary School and RC Primary School, Greengables Nursery, Leith Primary School, Craigmillar Childrens Centre, Prestonfield Primary School, St Francis and Niddrie Mills Primary schools Campus, Holy Rood High School, Brunstane Primary School, Royal High Primary School, Newcraighall Primary School, Parsons Green Primary School, Tiler Training School, Merchiston Castle School, Towerbank Primary School, The Mary Erskine School, Ratho Primary School, Craigmount High School, Colinton Primary, Hillwood Primary School, Canal View Primary School, The Yard, Nether Currie Primary School, Sighthill Primary School, Royal Blind School, Royal Blind School, Duddingston Primary School, East Craigs Primary, Royal Mile Primary School, Edinburgh School of English, Panmure St Anne's, Trinity Academy, Gorgie Mills School, Sciennes Primary School, Education Centre, Victoria Primary School, Broughton High School, The Royal High School, Queensferry Primary School, Longston Primary School, Pentland Primary, Edinburgh Academy, Stockbridge Primary School, Broughton Primary School, Rowanfield School, St Mary's Leith Primary School, Tollcross Primary School, Prospect Bank School, Abbeyhill Primary School, St Mary's RC Primary School, Leith Walk Primary School, St Johns RC Primary School, Portobello High School, St. George's (Upper School), Balgreen Primary School, Harmeny School, Preston Street Primary School, Davidson's Mains Primary School, Dalry Primary School, Roseburn Primary, Ferryhill Primary School, School, Oaklands School, Craigroyston Primary School, Carrick Knowe Primary, Pilrig Park School, Arbor Green Nursery, Moffat Early Years Campus, Carrick Knowe Primary, St Augustine's RC High School, Forrester High School, Broomhouse Primary School, Edinburgh Academy Junior School, Corstorphine Primary, St. John Vianney Roman Catholic Primary, Darroch Annex, Cargilfield School, Forthview Primary School, St. George's (Lower School), Juniper Green Primary, Clovenstone Primary School, Kaimes School, Stenhouse Primary, Balerno High School, Bonaly Primary School, Dean Park Primary School Annexe, Clifton Hall School, Gylemuir Primary School, Boroughmuir High School, Rudolf Steiner School, St Cuthbert's RC Primary School, Craiglockhart Primary, Wardie Primary School, St Margaret's R C Primary School, Dean Park School, Trinity Primary school, Fort Primary, Cramond Primary School, Holy Cross Primary School +19 +no +Caiy Stane, Balm Well, Hanging Stanes, The Buckstane, Ravenswood Avenue Standing Stone, Bonnington Weir +84 +Les Délices du Colonel, Siseng, Le Cambodge, Royal Montgallet - 新富园, Karma, Au couvert d'asie, Le Bristrot ZEN, Palace Châtelet, Tong Fan, Come and Wok, Tian He, Suave, Wok Gambas, La Cascade, Au Vietnam, Melinda, Da Lat, Traiteur Asiatique, Côté Asie, Jix Xin Lou, Deliceo, Mian Fan, Délice Impérial, Couronne d'argent, Express Bonne Nouvelle, Enquan, Qi Hong, Jin Long, Little Hanoi, Xinlongmeishi, Auberge du Bonheur, Chamroeun Crimée, Le Palais du Bonheur, Exo Exquis, Jardin de Montsouris, Fan Sin, Sourire d'Asie, Aloes Traiteur, Le Françis, Le Printemps de Jade, Traiteur Chez Victor, Traiteur Paris Gourmand, Kung Fu, Traiteur Nihao, Shun Fa, Long Hoa, Hang Meas, Royal Saint-Jacques, Palace Thaï, Asian, New Shangaï, Ting Ting, Fukuoka, WoknNoodles, Végébowl, Le Bonheur, Muki Sushi, Chen Regal, Délice Zheng, Chez Jin, Heng Long, Feng Sheng, Asian Grill, Le Lotus, Au Village de Choisy, Trésor d'Asie, Gourmet d'Asie, Hanouman, New Locomotive, New Thai San, Thaï Papaya, Zhen Fa, Hauky, Délice 18, Restaurant mandarin du marché, Mustang, La Maison de Thé de Mademoiselle Li, Les Délices du Bonheur, Douraku, Délices Asiatiques, Bangkok Express, Traiteur Délice Cadet, Gourmet d'asie, Inagiku, Pho Bida Viet Nam, Traiteur Ji Li, Restaurant Raviolis – Guo Xin, Angkor.Monorom, Aux Délices d'Asie, restaurant traiteur, Asie Prestige, Royal Mouffetard, Délices d'Asie, Chez Zhao, C'trobon, La Fontaine céleste, Le Jardin, Dat Viet, Paris, Tricotin 1, Ju You, Traiteur Jin Xin Lou, Au chalet du bonheur, Cathay House, L'origami, Delices de la mer, Delicieux Monge, Delicieux Monge, Délices d'Or, Shinzzo, Guo Min, Jing hua cheng, Traiteur Asiatique, Le dragon d'or, Xia's Fast Food, Rong Fa Sushi, Traiteur asiatique, Maison des saveurs, Traiteur Asiatique, La Fontaine d'Or, Bang Loan, Les Pâtes Vivantes, Chez Chung, Grand Bonheur, O'Woks, Chez Vong, Misso, La Table du Ramen, Asia Gourmet, Délices d'Asie, Délices Sichuan, Thaï-Viet, New Hong Kong Fast Food, Ma Kitchen, Au Ciel de Shanghai, Lotus de Nissane, Lao Chaleune, Le Pavillon Rouge, Hao Ye, Ravioli Pïnja, Bayon Restaurant Cambodgien, Cuisine d'Asie, bon appétit, Le Saint Nicolas, Saveur Asia, Aux Délices de Grenelle, Yongfa, New Saigon, Chez Yu, Dersou, Yao Yao, La Pivoine Chinoise, Dragons Elysées, Asie House, Ito, Ladélice, New Impérial Monceau, Artgens, Thu Thu, Petit Hong Kong, Pho20 +371 +A 4, A 86, A 13 +48.8417539 2.3228265, 48.8417906 2.3194104, 48.8455266 2.3019080, 48.8465149 2.3169266, 48.8496947 2.3229620, 48.8529756 2.3361563, 48.8513821 2.3427739, 48.8477633 2.3023462, 48.8371669 2.2968355, 48.8359376 2.2934703, 48.8391271 2.2825599, 48.8446716 2.3110739, 48.8452432 2.3693333, 48.8428726 2.2978113, 48.8472412 2.3109555, 48.8516223 2.3251656, 48.8454014 2.2921884, 48.8553049 2.4152098, 48.8582001 2.3497997, 48.8784404 2.3739693, 48.8396457 2.3020004, 48.8465313 2.2847495, 48.8491445 2.3035292, 48.8542989 2.3051382, 48.8461467 2.3400524, 48.8570374 2.4045098, 48.8860526 2.3426933, 48.8826497 2.3364419, 48.8672812 2.3170088, 48.8316492 2.2999377, 48.8583893 2.4147064, 48.8547572 2.3940413, 48.8761391 2.3683073, 48.8722806 2.3695753, 48.8681927 2.3630580, 48.8650417 2.3850337, 48.8468335 2.3820503, 48.8633521 2.3710595, 48.8761999 2.3804521, 48.8777890 2.3812354, 48.8826601 2.3752883, 48.8586939 2.3840128, 48.8710381 2.3610667, 48.8426016 2.2921367, 48.8356606 2.3026082, 48.8425344 2.2977018, 48.8268013 2.3644366, 48.8267042 2.3418398, 48.8313314 2.3159690, 48.8325651 2.3114089, 48.8326373 2.3560872, 48.8397551 2.3618303, 48.8430740 2.3643198, 48.8833178 2.3262875, 48.8615468 2.3727192, 48.8331323 2.2995011, 48.8490609 2.2878691, 48.8844475 2.3427325, 48.8833424 2.3495594, 48.8822817 2.3504868, 48.8827033 2.3434430, 48.8822885 2.3414974, 48.8820176 2.3394460, 48.8817974 2.3532647, 48.8771098 2.3551079, 48.8477369 2.3279061, 48.8883776 2.3495011, 48.8866559 2.3493852, 48.8538990 2.3696060, 48.8757644 2.3562329, 48.8791100 2.3541841, 48.8866553 2.3168809, 48.8884411 2.3158504, 48.8492375 2.3711135, 48.8568075 2.3541182, 48.8602512 2.3502694, 48.8546459 2.3450877, 48.8462262 2.3548763, 48.8843315 2.3304472, 48.8460104 2.3669740, 48.8840058 2.3529245, 48.8374833 2.3535202, 48.8379005 2.3555967, 48.8392465 2.3387222, 48.8382197 2.3418042, 48.8502113 2.3668644, 48.8453226 2.3377425, 48.8474704 2.3718474, 48.8881036 2.3258701, 48.8862612 2.3438540, 48.8445009 2.3753880, 48.8412568 2.3561020, 48.8802722 2.3675063, 48.8743118 2.3204772, 48.8844890 2.3447472, 48.8841058 2.3521880, 48.8858346 2.3758518, 48.8588810 2.3417760, 48.8722562 2.3773810, 48.8700309 2.3292678, 48.8702717 2.3306225, 48.8687745 2.3432434, 48.8667885 2.3495539, 48.8648587 2.3516262, 48.8683427 2.3501494, 48.8681440 2.3484373, 48.8914586 2.3497646, 48.8268925 2.3513505, 48.8794183 2.3843978, 48.8840145 2.3317743, 48.8541575 2.3560098, 48.8443282 2.3605939, 48.8612709 2.3498777, 48.8552582 2.3605246, 48.8454837 2.3329497, 48.8475334 2.3382332, 48.8238740 2.3180838, 48.8510705 2.2951132, 48.8780661 2.3700636, 48.8313804 2.3480743, 48.8296687 2.3796004, 48.8279138 2.3225247, 48.8759721 2.3267452, 48.8754098 2.3151509, 48.8313695 2.3205695, 48.8684390 2.2990680, 48.8716186 2.4041500, 48.8746281 2.3022896, 48.8780563 2.2975311, 48.8379492 2.3512092, 48.8199140 2.3618618, 48.8242035 2.3397900, 48.8244362 2.3385188, 48.8770173 2.3640220, 48.8605186 2.3511396, 48.8607908 2.3512861, 48.8409048 2.3002716, 48.8781096 2.3616482, 48.8682772 2.2938009, 48.8621497 2.2864059, 48.8483838 2.2603636, 48.8878856 2.3659310, 48.8774224 2.2614000, 48.8280956 2.3585627, 48.8293080 2.3652192, 48.8717450 2.3763419, 48.8422285 2.2561274, 48.8846348 2.3590969, 48.8920738 2.3615515, 48.8857831 2.3704180, 48.8882670 2.3737456, 48.8842463 2.3674355, 48.8886939 2.3740545, 48.8835852 2.3687084, 48.8323241 2.3308583, 48.8478006 2.3440011, 48.8757565 2.3604345, 48.8659123 2.3250771, 48.8495867 2.3963351, 48.8694759 2.3127917, 48.8648568 2.3224814, 48.8316539 2.3201884, 48.8584294 2.2957348, 48.8474359 2.3956182, 48.8441490 2.4410460, 48.8594767 2.3890495, 48.8571807 2.2995618, 48.8680319 2.3652462, 48.8660165 2.3525131, 48.8470892 2.3842101, 48.8449275 2.3804850, 48.8389160 2.3896782, 48.8570795 2.3793482, 48.8527591 2.3685273, 48.8630663 2.3527335, 48.8601693 2.3891491, 48.8599140 2.3909353, 48.8509100 2.3440225, 48.8651560 2.3002462, 48.8801931 2.3090971, 48.8668874 2.3528247, 48.8769493 2.2859070, 48.8412710 2.2855359, 48.8528709 2.3486106, 48.8306412 2.2918306, 48.8413192 2.2547825, 48.8384448 2.2588960, 48.8432911 2.2695096, 48.8363724 2.2819007, 48.8442938 2.2814436, 48.8485380 2.2573725, 48.8458645 2.2564076, 48.8572259 2.2668689, 48.8544526 2.2693573, 48.8459313 2.2692557, 48.8512448 2.2756544, 48.8508102 2.2778841, 48.8477025 2.2738262, 48.8200408 2.3479644, 48.8212446 2.3690189, 48.8226584 2.3668672, 48.8190929 2.3443682, 48.8195872 2.3642183, 48.8407510 2.3161284, 48.8408847 2.3255233, 48.8357296 2.3158704, 48.8323111 2.3252588, 48.8289690 2.3280388, 48.8296366 2.3263748, 48.8240050 2.3260887, 48.8257339 2.3264008, 48.8447616 2.2905846, 48.8256825 2.3151865, 48.8250160 2.3112381, 48.8279762 2.3057040, 48.8282568 2.3034035, 48.8574201 2.3243023, 48.8459313 2.3090188, 48.8496408 2.2962215, 48.8523475 2.2907877, 48.8528387 2.2979972, 48.8550663 2.2959776, 48.8457977 2.3185660, 48.8469280 2.2921211, 48.8505096 2.3274022, 48.8311741 2.3447143, 48.8330426 2.3312889, 48.8330416 2.3357290, 48.8304042 2.3289496, 48.8347199 2.3367751, 48.8348054 2.3320949, 48.8346868 2.3410351, 48.8376293 2.3387512, 48.8369790 2.3350851, 48.8349554 2.3463747, 48.8394809 2.3371526, 48.8417537 2.3377112, 48.8416250 2.3485540, 48.8281988 2.3566483, 48.8239378 2.3581173, 48.8340823 2.3537029, 48.8240665 2.3530961, 48.8297239 2.3690723, 48.8404168 2.3535555, 48.8520468 2.3397933, 48.8558630 2.3465049, 48.8528153 2.3347150, 48.8544526 2.3311094, 48.8580548 2.3474799, 48.8623038 2.3502010, 48.8625013 2.3507772, 48.8636772 2.3510372, 48.8579636 2.3465114, 48.8623046 2.3423204, 48.8603000 2.3464643, 48.8636409 2.3426454, 48.8631553 2.3418265, 48.8650306 2.3407360, 48.8549469 2.3729734, 48.8477025 2.3536570, 48.8658631 2.3695102, 48.8610722 2.3670951, 48.8655959 2.3652444, 48.8655010 2.3522216, 48.8669313 2.3543718, 48.8613680 2.3530523, 48.8626723 2.3594550, 48.8600506 2.3607005, 48.8649717 2.3601088, 48.8437230 2.4019904, 48.8445383 2.3775163, 48.8405196 2.4047985, 48.8395307 2.3783327, 48.8405642 2.3920854, 48.8387954 2.3810242, 48.8537699 2.3826458, 48.8556078 2.3835929, 48.8541941 2.3777992, 48.8495092 2.3936775, 48.8521926 2.3936896, 48.8532589 2.3878909, 48.8504312 2.3841184, 48.8460954 2.3766582, 48.8455898 2.3850416, 48.8649600 2.3947898, 48.8648944 2.3762643, 48.8657274 2.3810297, 48.8575027 2.3926652, 48.8608171 2.3885376, 48.8571820 2.3811598, 48.8582893 2.3802180, 48.8622924 2.3792422, 48.8642354 2.3795451, 48.8634043 2.3873675, 48.8635967 2.3838899, 48.8662870 2.3897869, 48.8490543 2.4025492, 48.8548100 2.3960622, 48.8556270 2.4100482, 48.8544541 2.4122493, 48.8600077 2.4010312, 48.8641235 2.4090336, 48.8649012 2.4008295, 48.8649070 2.3998063, 48.8769312 2.2849408, 48.8754537 2.2797323, 48.8753771 2.2991851, 48.8750050 2.2958071, 48.8746876 2.3040608, 48.8747971 2.3033120, 48.8750816 2.3064737, 48.8779490 2.3049095, 48.8688553 2.3011783, 48.8678567 2.3013134, 48.8815385 2.2956906, 48.8789650 2.2944900, 48.8840444 2.3042439, 48.8839678 2.3023801, 48.8875816 2.2944455, 48.8818996 2.2861056, 48.8860578 2.3041773, 48.8699848 2.3287478, 48.8750248 2.3145888, 48.8851026 2.3266307, 48.8856655 2.3275184, 48.8833981 2.3265291, 48.8815640 2.3207727, 48.8814950 2.3154241, 48.8958618 2.3281541, 48.8908274 2.3196997, 48.8919542 2.3272320, 48.8894716 2.3189974, 48.8905833 2.3035017, 48.8948720 2.3143780, 48.8727102 2.3345720, 48.8689234 2.3406303, 48.8712959 2.3437499, 48.8844160 2.3292308, 48.8835474 2.3336949, 48.8816820 2.3456299, 48.8832578 2.3459960, 48.8834110 2.3475269, 48.8837284 2.3488082, 48.8763445 2.3614950, 48.8684955 2.3674002, 48.8700037 2.3666404, 48.8762256 2.3723091, 48.8725652 2.3640736, 48.8738041 2.3703747, 48.8774841 2.3709987, 48.8705409 2.3514636, 48.8707624 2.3546578, 48.8690121 2.3562318, 48.8794220 2.3546823, 48.8850648 2.3549532, 48.8818932 2.3663627, 48.8934493 2.3369256, 48.8917794 2.3352127, 48.8990071 2.3376842, 48.8994040 2.3445085, 48.8992399 2.3440425, 48.8965488 2.3383847, 48.8957759 2.3460150, 48.8979185 2.3294720, 48.8964168 2.3349069, 48.8891775 2.3451972, 48.9005952 2.3351144, 48.9011543 2.3445750, 48.9008261 2.3438595, 48.8904593 2.3545937, 48.8950801 2.3589964, 48.8751448 2.3735780, 48.8685956 2.3900339, 48.8735031 2.3753876, 48.8722991 2.3766565, 48.8703700 2.3791942, 48.8770727 2.3925548, 48.8736809 2.3897517, 48.8719517 2.3920209, 48.8891494 2.3933914, 48.8822173 2.3934544, 48.8872647 2.3758855, 48.8888297 2.3790479, 48.8829941 2.3814519, 48.8786649 2.3784063, 48.8855727 2.3811520, 48.8834799 2.3835649, 48.8863045 2.3939114, 48.8706984 2.4090842, 48.8755313 2.3977586, 48.8706206 2.3982918, 48.8759333 2.4069996, 48.8839109 2.3979467, 48.8989432 2.3869214, 48.8538420 2.3492906, 48.8337840 2.3198864, 48.8363741 2.3098652, 48.8823434 2.3703224, 48.8533006 2.4091489, 48.8537801 2.4114641, 48.8674613 2.3438214, 48.8499500 2.3769797, 48.8470284 2.4077647, 48.8655973 2.2521957, 48.8683976 2.2458347, 48.8704442 2.2461780, 48.8688316 2.2477983, 48.8520184 2.4094142, 48.8623378 2.2682175, 48.8496205 2.4036764, 48.8558805 2.4016616, 48.8898813 2.3155227, 48.8445744 2.3876337, 48.8917397 2.3142884, 48.8864203 2.3325703, 48.8854403 2.3309916, 48.8888432 2.2975858, 48.8189926 2.3575382, 48.8721179 2.3385859, 48.8539073 2.4012043, 48.8339369 2.3145520, 48.8776027 2.3270929, 48.8347274 2.3935263, 48.8641893 2.3299462, 48.8262144 2.3748087, 48.8222866 2.3235525, 48.8422384 2.3371968, 48.8245328 2.3394230, 48.8564210 2.3497120, 48.8303448 2.3338271, 48.8371726 2.2967406, 48.8252648 2.3158680, 48.8346411 2.2842123, 48.8380766 2.2780055, 48.8377037 2.2774821, 48.8636364 2.3968839, 48.8303497 2.3751651, 48.8624480 2.2893920, 48.8324846 2.3616424, 48.8976429 2.3589492, 48.8859544 2.3562670, 48.8210556 2.3567317, 48.8683870 2.3633979, 48.8806519 2.4004273, 48.8283215 2.3766409, 48.8394100 2.2709295, 48.8572681 2.2911573, 48.8625031 2.3009633, 48.8883177 2.3371911, 48.8445790 2.3614939, 48.8725060 2.3265052, 48.8856373 2.3263659, 48.8783887 2.2690382, 48.8771192 2.2618218, 48.8319874 2.3777146, 48.8262191 2.3053681, 48.8865752 2.3770595, 48.8411112 2.3657854, 48.8294677 2.3494266, 48.8320219 2.3028314, 48.8309632 2.2918204, 48.8545746 2.3446665, 48.8550316 2.3449206, 48.8550827 2.3439980, 48.8528590 2.3510623, 48.8792041 2.3039281, 48.8342486 2.3425441, 48.8255813 2.3041840, 48.8483378 2.3594757, 48.8745891 2.3627432, 48.8754929 2.3615609, 48.8890079 2.3632043, 48.8364059 2.4010293, 48.8947397 2.3820270, 48.8950270 2.3539258, 48.8323359 2.4200595, 48.8322107 2.4176394, 48.8330064 2.4147766, 48.8337431 2.4190611, 48.8625107 2.3109476, 48.8894902 2.3806301, 48.8347529 2.3577560, 48.8488854 2.3676323, 48.8254239 2.3694610, 48.8275075 2.3672605, 48.8336951 2.3651195, 48.8338003 2.3625255, 48.8582183 2.3633569, 48.8395113 2.4061466, 48.8409893 2.4021854, 48.8419636 2.4099074, 48.8428499 2.3882529, 48.8443380 2.3820200, 48.8465345 2.4039066, 48.8519692 2.3809344, 48.8521453 2.3853886, 48.8363138 2.3737506, 48.8767105 2.3931022, 48.8708961 2.3969286, 48.8440626 2.4113218, 48.8622381 2.3454960, 48.8454362 2.3531891, 48.8389126 2.3825734, 48.8378588 2.4114608, 48.8327062 2.3968887, 48.8623435 2.4069746, 48.8403137 2.3203018, 48.8407586 2.3208814, 48.8769804 2.3588987, 48.8450228 2.3738335, 48.8237712 2.3188140, 48.8801510 2.3573983, 48.8805773 2.3573666, 48.8824951 2.3574497, 48.8614785 2.3787271, 48.8536724 2.3590186, 48.8470305 2.3545898, 48.8461336 2.3606308, 48.8425014 2.3760160, 48.8554010 2.4000885, 48.8593542 2.3719793, 48.8599048 2.3846150, 48.8684236 2.3819214, 48.8636107 2.3663132, 48.8348913 2.3240947, 48.8810971 2.2830508, 48.8404610 2.3268800, 48.8417540 2.3374890, 48.8614056 2.3545336, 48.8550375 2.3005938, 48.8662415 2.3650038, 48.8693907 2.3535655, 48.8768554 2.3805574, 48.8718474 2.3654888, 48.8749571 2.3636986, 48.8682917 2.3606483, 48.8331685 2.3836267, 48.8352499 2.3810305, 48.8607263 2.3528287, 48.8609620 2.3524085, 48.8445095 2.3768246, 48.8575368 2.3603524, 48.8669398 2.3481896, 48.8262166 2.3382475, 48.8602214 2.3342707, 48.8827284 2.3435858, 48.8694215 2.3127592, 48.8388440 2.3207879, 48.8399732 2.3214653, 48.8597659 2.3358960, 48.8386930 2.3209191, 48.8223084 2.3727446, 48.8606139 2.3327315, 48.8606238 2.3326890, 48.8684084 2.3898491, 48.8606916 2.3319568, 48.8606942 2.3320405, 48.8462302 2.2775691, 48.8757767 2.3558590, 48.8187381 2.3603132, 48.8382416 2.4446399, 48.8399257 2.4407658, 48.8480293 2.3335576, 48.8464818 2.3340282, 48.8823771 2.3827729, 48.8549799 2.3152238, 48.8705165 2.3847431, 48.8230296 2.3485201, 48.8278250 2.3617461, 48.8222813 2.3365890, 48.8392359 2.3063319, 48.8791228 2.2634314, 48.8786255 2.2671376, 48.8769408 2.2659712, 48.8821613 2.2906191, 48.8582512 2.2683212, 48.8279457 2.3056505, 48.8668278 2.3572924, 48.8516547 2.2871068, 48.8516812 2.2870710, 48.8517036 2.2871226, 48.8516646 2.2871185, 48.8516831 2.2871003, 48.8516712 2.2870911, 48.8519081 2.2866142, 48.8519081 2.2866142, 48.8519156 2.2865522, 48.8519156 2.2865522, 48.8517799 2.2871987, 48.8530404 2.3610674, 48.8917906 2.3880857, 48.8430807 2.3520816, 48.8423553 2.3450638, 48.8420396 2.3453568, 48.8424163 2.3444687, 48.8414902 2.3449983, 48.8761354 2.3257216, 48.8298558 2.3774780, 48.8661245 2.3148417, 48.8751114 2.3268883, 48.8442798 2.3761425, 48.8443032 2.3761619, 48.8606413 2.3526521, 48.8600944 2.3519685, 48.8963051 2.3742570 +yes +yes +492, 680 +21 +49.4194799 8.7033812, 49.4258222 8.7062319, 49.4289782 8.7145993, 49.4299579 8.7185898, 49.3551484 8.6336513, 49.4270542 8.7105990, 49.4184666 8.7052069, 49.4245168 8.7056416, 49.4235710 8.7025718, 49.4242799 8.7072520, 49.4224817 8.7024542, 49.4229479 8.7068545, 49.4193290 8.7035781, 49.4221380 8.7051571, 49.4263381 8.7055314, 49.4188706 8.7007961, 49.4276600 8.7101416, 49.4243184 8.7025688, 49.4189138 8.7068425, 49.4254814 8.7024102, 49.4213140 8.7019771, 49.4268509 8.7026924, 49.4254256 8.7051858, 49.4195009 8.7025277, 49.4201952 8.7010712, 49.4208217 8.7059731, 49.4233178 8.7053934, 49.4276906 8.7058352, 49.4238991 8.7095045, 49.4206459 8.7039110, 49.4265814 8.7086544, 49.4256259 8.7093622, 49.4257275 8.7070484, 49.4179403 8.7025717, 49.4207145 8.7089359, 49.4222472 8.7095805, 49.4248984 8.7025175 +55.9268574 -3.2089248 +55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9002100 -3.2321660, 55.9579565 -3.2439627, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9344345 -3.1791228, 55.9100535 -3.1423251, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9826346 -3.1875882, 55.9247496 -3.2493835, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9051775 -3.1653894, 55.9297028 -3.2566262, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9694813 -3.2293505, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9102318 -3.2377415, 55.9781076 -3.1743896, 55.9243498 -3.2526320 +yes +0 +55.9566271 -3.2720552, 55.9418294 -3.1502506, 55.9201209 -3.2500686, 55.9232770 -3.2473521, 55.9256887 -3.2299616, 55.9216082 -3.1959071, 55.9190764 -3.1843258 +155 +48.8678615 2.3515176, 48.8681982 2.3520494, 48.8742181 2.3379134, 48.8797487 2.3564752, 48.8827832 2.3594133, 48.8327554 2.3711889, 48.8294224 2.3758727, 48.8322707 2.3582796, 48.8704428 2.3883722, 48.8703637 2.3893764, 48.8695013 2.3822447, 48.8701522 2.3848448, 48.8705756 2.3882952, 48.8726648 2.3889559, 48.8692544 2.3857069, 48.8732512 2.3826034, 48.8719640 2.3809798, 48.8715747 2.3812545, 48.8707876 2.3814258, 48.8701383 2.3797607, 48.8703047 2.3816624, 48.8689756 2.3829202, 48.8674758 2.3831632, 48.8681056 2.3856641, 48.8692096 2.3486800, 48.8675048 2.3473847, 48.8702235 2.3490322, 48.8818782 2.3342987, 48.8404563 2.3540242, 48.8457501 2.3710340, 48.8507318 2.3902220, 48.8273026 2.3137753, 48.8321419 2.3413424, 48.8330200 2.3329456, 48.8529986 2.3973185, 48.8537772 2.3960030, 48.8411229 2.3744020, 48.8713839 2.3723624, 48.8720555 2.3717928, 48.8725878 2.3713798, 48.8734747 2.3704890, 48.8741515 2.3743018, 48.8747572 2.3721336, 48.8756416 2.3688091, 48.8761685 2.3706316, 48.8767824 2.3701809, 48.8766895 2.3672800, 48.8750608 2.3672145, 48.8735860 2.3650243, 48.8717399 2.3675792, 48.8714321 2.3669323, 48.8715550 2.3681089, 48.8696638 2.3693259, 48.8715040 2.3760459, 48.8687232 2.3723495, 48.8683112 2.3698916, 48.8680322 2.3727849, 48.8631317 2.3869263, 48.8640310 2.3863813, 48.8665041 2.3812744, 48.8656858 2.3776485, 48.8674450 2.3750281, 48.8686005 2.3800123, 48.8681319 2.3792398, 48.8520050 2.3739783, 48.8456295 2.4033753, 48.8663147 2.3719752, 48.8769811 2.4048559, 48.8758342 2.4011315, 48.8703695 2.3665503, 48.8748068 2.3638809, 48.8753882 2.3643616, 48.8831646 2.3720227, 48.8833551 2.3721300, 48.8836055 2.3731171, 48.8836902 2.3740022, 48.8840147 2.3752146, 48.8844169 2.3762767, 48.8849729 2.3784198, 48.8850377 2.3791735, 48.8851153 2.3790072, 48.8855033 2.3809706, 48.8856762 2.3815928, 48.8865051 2.3847954, 48.8873411 2.3873650, 48.8876230 2.3883824, 48.8890494 2.3945176, 48.8827251 2.3816969, 48.8725474 2.3766326, 48.8739080 2.3960132, 48.8775377 2.3857736, 48.8831878 2.3714050, 48.8640393 2.3755646, 48.8706620 2.3611950, 48.8732736 2.3584401, 48.8755934 2.3832701, 48.8756530 2.3832155, 48.8482774 2.3428253, 48.8784345 2.3578878, 48.8703209 2.2825197, 48.8268477 2.3647861, 48.8541564 2.4000911, 48.8465229 2.3686904, 48.8463083 2.3680521, 48.8470474 2.3726397, 48.8467819 2.3725108, 48.8459580 2.3724556, 48.8455779 2.3697051, 48.8663510 2.3672959, 48.8658303 2.3698488, 48.8657851 2.3771616, 48.8665079 2.3800178, 48.8653617 2.3809810, 48.8760867 2.3599561, 48.8829095 2.3591741, 48.8834606 2.3606563, 48.8826329 2.3615224, 48.8854259 2.3538571, 48.8884161 2.3532369, 48.8841015 2.3597869, 48.8874152 2.3671866, 48.8853281 2.3720155, 48.8905441 2.3545731, 48.8902032 2.3626104, 48.8896626 2.3678766, 48.8830418 2.3799420, 48.8839897 2.3776750, 48.8839192 2.3777877, 48.8793674 2.3913866, 48.8642121 2.3813367, 48.8549764 2.3705401, 48.8491281 2.3756993, 48.8907340 2.3442268, 48.8482547 2.3739915, 48.8476489 2.3756562, 48.8505462 2.3785256, 48.8495764 2.3778022, 48.8488506 2.3771667, 48.8490151 2.3766595, 48.8493081 2.3747820, 48.8485986 2.3761016, 48.8466357 2.3723850, 48.8376761 2.3448921, 48.8355075 2.3583356, 48.8464369 2.3792454, 48.8584489 2.3792058, 48.8945048 2.3474462, 48.8929338 2.3489373, 48.8919373 2.3499061, 48.8943845 2.3506181, 48.8938805 2.3498536, 48.8953235 2.3467399, 48.8953754 2.3495531, 48.8909128 2.3454738, 48.8916063 2.3445324, 48.8921962 2.3448571, 48.8923204 2.3442537, 48.8902437 2.3476818, 48.8906398 2.3495092, 48.8907675 2.3495020, 48.8923427 2.3461089, 48.8949846 2.3408277, 48.8842461 2.3613088, 48.8840672 2.3616073, 48.8841745 2.3614072, 48.8882926 2.3599384, 48.8845099 2.3646309, 48.8856332 2.3659515, 48.8920952 2.3613649, 48.8883041 2.3506540, 48.8883196 2.3501401, 48.8883144 2.3520272, 48.8883763 2.3527059, 48.8886896 2.3559132, 48.8886090 2.3548159, 48.8889395 2.3584021, 48.8890178 2.3582290, 48.8890523 2.3595116, 48.8866144 2.3504214, 48.8858198 2.3551215, 48.8863622 2.3561844, 48.8878527 2.3515748, 48.8872861 2.3561221, 48.8839769 2.3509507, 48.8850544 2.3495979, 48.8857811 2.3496248, 48.8861021 2.3496301, 48.8863490 2.3496462, 48.8876294 2.3496373, 48.8885253 2.3496748, 48.8890580 2.3496748, 48.8887476 2.3496695, 48.8889098 2.3496802, 48.8841020 2.3522661, 48.8840538 2.3519670, 48.8840388 2.3514774, 48.8892343 2.3496802, 48.8896364 2.3496856, 48.8847017 2.3493780, 48.8847898 2.3493834, 48.8848569 2.3493834, 48.8852449 2.3493834, 48.8851108 2.3493834, 48.8863243 2.3494209, 48.8860562 2.3494048, 48.8857987 2.3494048, 48.8866171 2.3494388, 48.8873464 2.3494796, 48.8876365 2.3494656, 48.8887125 2.3494781, 48.8889239 2.3494603, 48.8891003 2.3494710, 48.8884971 2.3494495, 48.8880001 2.3494761, 48.8904052 2.3495068, 48.8897932 2.3494533, 48.8892625 2.3494710, 48.8830632 2.3383743, 48.8857316 2.3349375, 48.8857096 2.3352645, 48.8854435 2.3359469, 48.8859008 2.3346803, 48.8853035 2.3363355, 48.8851642 2.3366575, 48.8843335 2.3382618, 48.8886961 2.3390540, 48.8851431 2.3383441, 48.8865032 2.3356719, 48.8885778 2.3354686, 48.8888861 2.3383196, 48.8842610 2.3413414, 48.8845571 2.3411073, 48.8847258 2.3403346, 48.8849081 2.3418344, 48.8895658 2.3377576, 48.8850086 2.3604185, 48.8907312 2.3639595, 48.8961106 2.3318024, 48.8991268 2.3345829, 48.8952517 2.3371563, 48.8962344 2.3344485, 48.8965875 2.3360980, 48.8956272 2.3391536, 48.8965966 2.3385842, 48.8983862 2.3383214, 48.8944354 2.3403228, 48.8944213 2.3442287, 48.9000243 2.3455555, 48.8996339 2.3501097, 48.8837052 2.3395939, 48.8832400 2.3421635, 48.8834792 2.3421669, 48.8839647 2.3413568, 48.8865870 2.3452064, 48.8832262 2.3499505, 48.8846010 2.3470099, 48.8881281 2.3463794, 48.8883520 2.3487355, 48.8869557 2.3324658, 48.8869663 2.3326053, 48.8890733 2.3333345, 48.8903665 2.3341127, 48.8903277 2.3330237, 48.8903732 2.3369030, 48.8916416 2.3355004, 48.8908322 2.3375902, 48.8908023 2.3394033, 48.8910048 2.3400771, 48.8912851 2.3396007, 48.8926693 2.3356185, 48.8934479 2.3366141, 48.8928829 2.3373736, 48.8929557 2.3385657, 48.8923455 2.3400044, 48.8904263 2.3404251, 48.8913682 2.3472930, 48.8603661 2.3754100, 48.8901143 2.3611781, 48.8314088 2.3488132, 48.8487505 2.3777984, 48.8503027 2.3774477, 48.8626941 2.3877054, 48.8785891 2.3856103, 48.8810145 2.3891669, 48.8321125 2.3499256, 48.8774636 2.3705618, 48.8682585 2.2932381, 48.8782580 2.3987300, 48.8832583 2.3346263, 48.8832465 2.3341658, 48.8831954 2.3348376, 48.8842151 2.3311538, 48.8830070 2.3349691, 48.8833032 2.3455032, 48.8841705 2.3313488, 48.8826156 2.3432538, 48.8834306 2.3335452, 48.8841164 2.3315750, 48.8824079 2.3419280, 48.8834666 2.3339320, 48.8831738 2.3344061, 48.8821954 2.3389929, 48.8836632 2.3332864, 48.8831695 2.3452574, 48.8824739 2.3367661, 48.8829388 2.3356827, 48.8831317 2.3458945, 48.8843696 2.3305004, 48.8842302 2.3305121, 48.8826517 2.3426287, 48.8827762 2.3362216, 48.8839947 2.3320999, 48.8842717 2.3309204, 48.8824891 2.3425994, 48.8830995 2.3449030, 48.8829578 2.3351297, 48.8832939 2.3340079, 48.8830087 2.3354500, 48.8840806 2.3311362, 48.8827159 2.3359415, 48.8828527 2.3354881, 48.8840902 2.3316931, 48.8911573 2.3437849, 48.8841548 2.3308314, 48.8839884 2.3315392, 48.8827419 2.3443694, 48.8824955 2.3419279, 48.8842291 2.3288540, 48.8840681 2.3286855, 48.8841801 2.3289398, 48.8859483 2.3285578, 48.8851713 2.3293553, 48.8576992 2.2797776, 48.8298513 2.2961748, 48.8373832 2.3826403, 48.8799725 2.3588623, 48.8800272 2.3588101, 48.8829349 2.3636381, 48.8829772 2.3594750, 48.8826392 2.3667648, 48.8772474 2.3640950, 48.8809351 2.3625812, 48.8809545 2.3624632, 48.8831311 2.3654083, 48.8830941 2.3655236, 48.8839358 2.3671407, 48.8289706 2.3807621, 48.8280472 2.3808170, 48.8292763 2.3823041, 48.8294437 2.3827214, 48.8290930 2.3833191, 48.8297040 2.3791490, 48.8809954 2.3651002, 48.8812463 2.3652224, 48.8827050 2.3670033, 48.8465800 2.3730993, 48.8839900 2.3286046, 48.8839605 2.3284938, 48.8763431 2.4041075, 48.8880685 2.3769540, 48.8888236 2.3460678, 48.8955600 2.3458430, 48.8909736 2.3451546, 48.8857875 2.3376754, 48.8856834 2.3380986, 48.8908443 2.3617886, 48.8850609 2.3402076, 48.8569556 2.3980459, 48.8564650 2.4027024, 48.8892956 2.3534520, 48.8883918 2.3276047, 48.8433038 2.3543255, 48.8418031 2.3029041, 48.8414214 2.2514890, 48.8665787 2.3687395, 48.8672442 2.3624249, 48.8919172 2.3436860, 48.8917691 2.3440528, 48.8423698 2.3854379, 48.8469303 2.3075499, 48.8475588 2.3088840, 48.8486504 2.3085581, 48.8448872 2.3142661, 48.8446342 2.3148283, 48.8488629 2.3113707, 48.8752295 2.2843527, 48.8531440 2.3776869, 48.8595596 2.2753644, 48.8595734 2.2750496, 48.8616150 2.2754832, 48.8659680 2.2795955, 48.8672885 2.2809372, 48.8680280 2.2809252, 48.8683971 2.2825564, 48.8473600 2.3864659, 48.8698073 2.3749191, 48.8698594 2.3755160, 48.8624876 2.3424711, 48.8650939 2.3440997, 48.8652964 2.3432812, 48.8659653 2.3433342, 48.8683868 2.3418763, 48.8671550 2.3566053, 48.8751636 2.4061686, 48.8904492 2.3770876, 48.8384989 2.2572066, 48.8396082 2.2579126, 48.8398593 2.2580096, 48.8651590 2.3511287, 48.8751432 2.3825052, 48.8750868 2.3823845, 48.8425813 2.3448154, 48.8940561 2.3541965, 48.8917696 2.3461211, 48.8918716 2.3465917, 48.8751867 2.4062512, 48.8968424 2.3818049, 48.8499326 2.3631550, 48.8688265 2.2482135, 48.8462126 2.4118560, 48.8437424 2.2986106, 48.8455688 2.3253845, 48.8459243 2.3259674, 48.8460036 2.3258028, 48.8464844 2.3265135, 48.8917516 2.3438452, 48.8911967 2.3437988, 48.8933614 2.3614463, 48.8861681 2.3474404, 48.8462352 2.3927786, 48.8935766 2.3294235, 48.8878878 2.3544913, 48.8880271 2.3560550, 48.8812030 2.3284499, 48.8742437 2.3321727, 48.8942439 2.3352879, 48.8988973 2.3399388, 48.8997428 2.3522502, 48.8921164 2.3345008, 48.8911613 2.3319378, 48.8921939 2.3316488, 48.8856755 2.3448166, 48.8930350 2.3633966, 48.8900140 2.3602197, 48.8762979 2.3397799, 48.8766916 2.3405068, 48.8933200 2.3491176, 48.8246903 2.3553751, 48.8377773 2.3494970, 48.8895988 2.3163725, 48.8825981 2.3645629, 48.8928809 2.3504734, 48.8920706 2.3346881, 48.8933750 2.3385392, 48.8413779 2.3118977, 48.8433854 2.3736074, 48.8510517 2.3092163, 48.8518484 2.3096816, 48.8369959 2.3933620, 48.8545431 2.2743043, 48.8589523 2.2771588, 48.8599813 2.3497684, 48.8968971 2.3856504, 48.8278579 2.3057957, 48.8302062 2.3335779, 48.8254006 2.3802275, 48.8984327 2.3695091, 48.8394454 2.3963015, 48.8605989 2.3512022, 48.8983279 2.3618983, 48.8983261 2.3617173, 48.8983518 2.3649038, 48.8982617 2.3563907, 48.8750935 2.3351732, 48.8436342 2.3043290, 48.8431682 2.3046133, 48.8918524 2.3632899, 48.8919900 2.3631317, 48.8756176 2.3432285, 48.8760560 2.3438036, 48.8762724 2.3440214, 48.8429539 2.4085434, 48.8443890 2.4068429, 48.8418110 2.4082929, 48.8257982 2.3468029, 48.8266018 2.3354681, 48.8272551 2.3352458, 48.8330622 2.3958487, 48.8336114 2.3861569, 48.8337322 2.3983467, 48.8337623 2.3951877, 48.8342999 2.3975412, 48.8343797 2.3963938, 48.8345191 2.3966361, 48.8348254 2.3934365, 48.8348947 2.3972942, 48.8349022 2.3933477, 48.8349654 2.3960429, 48.8358704 2.3961786, 48.8359891 2.3974455, 48.8360813 2.3872238, 48.8361353 2.3948924, 48.8361988 2.3988969, 48.8364221 2.3949270, 48.8364309 2.3988951, 48.8365523 2.3982569, 48.8366252 2.3929585, 48.8366508 2.3952223, 48.8366989 2.3943677, 48.8369456 2.4019945, 48.8370471 2.3917506, 48.8375850 2.3971765, 48.8376090 2.3907850, 48.8380876 2.3941069, 48.8382060 2.3900510, 48.8382377 2.3966077, 48.8384334 2.3930799, 48.8392532 2.4005400, 48.8393971 2.4089227, 48.8394590 2.3963160, 48.8398776 2.4385198, 48.8401062 2.4087456, 48.8403121 2.4025153, 48.8403240 2.3922740, 48.8404000 2.3925410, 48.8405290 2.3878980, 48.8406298 2.4087338, 48.8408716 2.4093998, 48.8408973 2.4043894, 48.8411011 2.3894090, 48.8411636 2.4011997, 48.8412990 2.3878120, 48.8414464 2.4049212, 48.8415076 2.4114849, 48.8415328 2.3867030, 48.8416660 2.4012796, 48.8419094 2.4012356, 48.8421054 2.4051399, 48.8422686 2.4130852, 48.8427012 2.4099683, 48.8430070 2.4049900, 48.8432746 2.4053848, 48.8435321 2.4018263, 48.8435985 2.3849459, 48.8438772 2.4055537, 48.8438822 2.4018602, 48.8441184 2.4107116, 48.8445290 2.4022130, 48.8445690 2.3838350, 48.8447684 2.4039094, 48.8450108 2.3819449, 48.8449722 2.4058543, 48.8451489 2.3992116, 48.8456490 2.4058577, 48.8458140 2.3781933, 48.8460195 2.4011318, 48.8464795 2.3973596, 48.8468250 2.3761200, 48.8469175 2.3998635, 48.8470370 2.3752130, 48.8473365 2.3968804, 48.8475637 2.3772093, 48.8476803 2.3969131, 48.8478107 2.3769587, 48.8486250 2.3761890, 48.8486464 2.3760764, 48.8486500 2.3759526, 48.8486995 2.3922091, 48.8488565 2.3718825, 48.8491107 2.3914645, 48.8491891 2.3706453, 48.8492039 2.3749537, 48.8493182 2.3945344, 48.8494100 2.3666950, 48.8495420 2.3885630, 48.8496199 2.3992270, 48.8496430 2.3879630, 48.8497090 2.3874500, 48.8499140 2.3738580, 48.8500548 2.3704157, 48.8501440 2.3736032, 48.8501956 2.3990356, 48.8507639 2.3673484, 48.8517110 2.3618880, 48.8517771 2.3894115, 48.8518450 2.3616490, 48.8521525 2.3608127, 48.8522346 2.3609020, 48.8526930 2.3593190, 48.8527195 2.3598976, 48.8527480 2.3589640, 48.8531388 2.3585705, 48.8532690 2.3582420, 48.8535826 2.3671894, 48.8536386 2.3574595, 48.8536840 2.3653980, 48.8540083 2.3867106, 48.8542800 2.3558000, 48.8543900 2.3585670, 48.8546430 2.3624970, 48.8551500 2.3611171, 48.8551661 2.3610199, 48.8553710 2.3839922, 48.8554533 2.3526702, 48.8555080 2.3530370, 48.8557740 2.3511230, 48.8557940 2.3561690, 48.8559788 2.3536549, 48.8576042 2.3453235, 48.8576673 2.3795437, 48.8578611 2.3794239, 48.8580233 2.3793056, 48.8588686 2.3399492, 48.8593222 2.3528610, 48.8597358 2.3468419, 48.8618647 2.3406148, 48.8659038 2.3352738, 48.8664823 2.3650887, 48.8680548 2.3339763, 48.8682365 2.3599800, 48.8683243 2.3611065, 48.8693195 2.3570045, 48.8692824 2.3567025, 48.8701819 2.3507724, 48.8703411 2.3499916, 48.8703632 2.3498715, 48.8704864 2.3493477, 48.8705032 2.3492529, 48.8716194 2.3500035, 48.8721225 2.3499157, 48.8721226 2.3502025, 48.8722370 2.3500383, 48.8737185 2.3504412, 48.8741816 2.3506318, 48.8747445 2.3507850, 48.8752900 2.3395820, 48.8758873 2.3483293, 48.8779921 2.3512114, 48.8784568 2.3428425, 48.8787058 2.3506082, 48.8792051 2.3494881, 48.8792478 2.3478686, 48.8794000 2.3508120, 48.8795410 2.3488399, 48.8798786 2.3436312, 48.8799663 2.3473845, 48.8339632 2.2872487, 48.8359881 2.2902310, 48.8372786 2.2895116, 48.8449733 2.3955604, 48.8452920 2.3209130, 48.8452821 2.3979496, 48.8463896 2.3943133, 48.8471562 2.3938782, 48.8489640 2.3916850, 48.8493880 2.3888810, 48.8496070 2.3873440, 48.8502461 2.3827334, 48.8504940 2.3815430, 48.8505009 2.3846476, 48.8513150 2.3816100, 48.8518018 2.3280805, 48.8525120 2.3807800, 48.8533500 2.3805110, 48.8537880 2.3957560, 48.8541520 2.3797770, 48.8561260 2.3783390, 48.8576484 2.3771545, 48.8584759 2.3764078, 48.8603270 2.3754070, 48.8618492 2.3647130, 48.8621758 2.3636326, 48.8622764 2.3665452, 48.8633235 2.3689417, 48.8645757 2.3597362, 48.8671223 2.3513757, 48.8700760 2.3506120, 48.8736310 2.3479604, 48.8755325 2.3482416, 48.8758100 2.3397850, 48.8760265 2.3400514, 48.8760800 2.3403660, 48.8768678 2.3487512, 48.8389060 2.3767670, 48.8390010 2.3874480, 48.8396552 2.3779295, 48.8543680 2.3547701, 48.8239017 2.3229235, 48.8242472 2.3213940, 48.8245758 2.3199505, 48.8255285 2.3158189, 48.8256468 2.3482018, 48.8258238 2.3144135, 48.8260929 2.3588377, 48.8261054 2.3131480, 48.8275286 2.3318231, 48.8290970 2.2993460, 48.8296899 2.2967192, 48.8300150 2.2961350, 48.8325027 2.2889045, 48.8366313 2.2763322, 48.8431275 2.2603574, 48.8451702 2.3983100, 48.8475546 2.3889290, 48.8478588 2.3908091, 48.8482240 2.3808030, 48.8482720 2.3787290, 48.8490260 2.3810470, 48.8492020 2.3781220, 48.8498208 2.3768806, 48.8499970 2.3791060, 48.8520364 2.3739698, 48.8540329 2.3736919, 48.8545885 2.3714719, 48.8546118 2.3729736, 48.8546280 2.3710930, 48.8550337 2.3704743, 48.8574091 2.3612872, 48.8577110 2.3608910, 48.8618100 2.3539090, 48.8627772 2.3535227, 48.8646021 2.3531390, 48.8700440 2.3507020, 48.8726232 2.2763923, 48.8737450 2.3479740, 48.8738400 2.3446450, 48.8761660 2.3441530, 48.8791390 2.3535520, 48.8798180 2.3528100, 48.8820870 2.3509300, 48.8861322 2.3494762, 48.8866800 2.3495020, 48.8876420 2.3494764, 48.8878870 2.3494964, 48.8906598 2.3495186, 48.8909454 2.3495172, 48.8988341 2.3238069, 48.8715019 2.4045081, 48.8762240 2.4062991, 48.8763811 2.4061703, 48.8769447 2.4050363, 48.8776734 2.4065084, 48.8779210 2.4059297, 48.8781032 2.4108393, 48.8782650 2.4058287, 48.8657823 2.3994721, 48.8572967 2.3515291, 48.8522308 2.3678097, 48.8242892 2.3764902, 48.8243395 2.3766423, 48.8259590 2.3538780, 48.8333535 2.3991671, 48.8378748 2.3573539, 48.8367172 2.3580385, 48.8370906 2.3578084, 48.8469222 2.3993098, 48.8490463 2.3989425, 48.8563665 2.3939744, 48.8572552 2.3854799, 48.8572776 2.3855905, 48.8576754 2.3919847, 48.8594350 2.3870127, 48.8722210 2.3643307, 48.8261039 2.3582769, 48.8468249 2.4104107, 48.8468448 2.4101919, 48.8468528 2.4101033, 48.8471654 2.4071583, 48.8472069 2.4066764, 48.8513516 2.4062448, 48.8517143 2.4071448, 48.8664981 2.3243419, 48.8941417 2.3326946, 48.8715688 2.4022351, 48.8949489 2.3601209, 48.8911550 2.3633069, 48.8394801 2.3713759, 48.8391251 2.3715959, 48.8378949 2.3555704, 48.8240305 2.3234209, 48.8275253 2.3261423, 48.8295090 2.3482501, 48.8296744 2.3329116, 48.8296889 2.3480032, 48.8300287 2.3471023, 48.8306286 2.3439710, 48.8307741 2.3363033, 48.8308821 2.3552981, 48.8309560 2.3563203, 48.8313659 2.3419868, 48.8314521 2.3413377, 48.8337067 2.3652426, 48.8343505 2.3671081, 48.8349875 2.3690185, 48.8369558 2.3731388, 48.8372547 2.3741922, 48.8389808 2.3876834, 48.8400503 2.3966865, 48.8405435 2.3976638, 48.8419125 2.3931180, 48.8425378 2.3971712, 48.8431422 2.3868843, 48.8438225 2.3907961, 48.8438274 2.3883763, 48.8441353 2.3903995, 48.8448504 2.3956453, 48.8449655 2.3825373, 48.8450610 2.3817030, 48.8455335 2.4059659, 48.8457371 2.3744755, 48.8458882 2.3745674, 48.8460421 2.3746885, 48.8461407 2.3758102, 48.8461570 2.3756299, 48.8462020 2.3762720, 48.8463517 2.4060121, 48.8463588 2.3819651, 48.8469945 2.3695400, 48.8469983 2.3840650, 48.8470022 2.3692654, 48.8493154 2.3681094, 48.8494375 2.3698324, 48.8497678 2.3690872, 48.8499439 2.3739778, 48.8502341 2.3736347, 48.8502976 2.3687576, 48.8538513 2.4054931, 48.8636158 2.3993948, 48.8639863 2.3992574, 48.8652421 2.3951007, 48.8655085 2.3946733, 48.8677329 2.3907031, 48.8684805 2.3898741, 48.8688786 2.3895491, 48.8702670 2.3890490, 48.8704853 2.3883060, 48.8714250 2.3861474, 48.8717558 2.3890342, 48.8994665 2.3362669, 48.9005443 2.3357066, 48.8320164 2.4039323, 48.8320207 2.4038132, 48.8341445 2.4013757, 48.8351942 2.4016328, 48.8372220 2.4037368, 48.8314328 2.3873778, 48.8317821 2.3857254, 48.8320640 2.3883288, 48.8350055 2.3874833, 48.8358666 2.3847168, 48.8373190 2.3826641, 48.8374528 2.3917533, 48.8380369 2.3818677, 48.8387612 2.3810831, 48.8388667 2.3937811, 48.8389421 2.3806421, 48.8394110 2.3802556, 48.8573040 2.3514977, 48.8614181 2.3533893, 48.8616790 2.3513642, 48.8617384 2.3511100, 48.8617679 2.3509583, 48.8619491 2.3505495, 48.8620204 2.3499051, 48.8620520 2.3497369, 48.8638474 2.3430292, 48.8643157 2.3474095, 48.8648065 2.3458024, 48.8810201 2.3499806, 48.8472316 2.4033307, 48.8474060 2.3985801, 48.8475134 2.3982539, 48.8476893 2.3944332, 48.8480152 2.3982806, 48.8523912 2.3718273, 48.8678628 2.3622500, 48.8682145 2.3624441, 48.8753496 2.3569996, 48.8757151 2.3564916, 48.8759340 2.3562965, 48.8763508 2.3558909, 48.8769505 2.3553665, 48.8776793 2.3547127, 48.8779306 2.3546949, 48.8779709 2.3544608, 48.8789523 2.3541157, 48.8798131 2.3564484, 48.8287082 2.3506786, 48.8296935 2.3756700, 48.8297238 2.3756448, 48.8302476 2.3763292, 48.8302804 2.3763891, 48.8303177 2.3764541, 48.8554738 2.3844934, 48.8558003 2.3750398, 48.8563070 2.3766560, 48.8563443 2.3735148, 48.8563892 2.3736140, 48.8573040 2.3791655, 48.8575988 2.3723727, 48.8580871 2.3720646, 48.8599833 2.3751511, 48.8606643 2.3672378, 48.8612261 2.3646636, 48.8612423 2.3694822, 48.8615175 2.3633665, 48.8620657 2.3606971, 48.8625682 2.3596478, 48.8658847 2.3446913, 48.8659713 2.3446586, 48.8669646 2.3445039, 48.8486198 2.2907379, 48.8241171 2.3356096, 48.8251709 2.3747800, 48.8262146 2.3732825, 48.8265738 2.3354498, 48.8270035 2.3668285, 48.8275378 2.3738779, 48.8276171 2.3715500, 48.8279608 2.3733287, 48.8280357 2.3734257, 48.8303701 2.3343029, 48.8324259 2.3797103, 48.8328426 2.3359068, 48.8348268 2.3999659, 48.8363410 2.4027533, 48.8363547 2.4029753, 48.8367250 2.4043293, 48.8367567 2.3928042, 48.8375039 2.3386695, 48.8380611 2.4053828, 48.8381721 2.4055291, 48.8420689 2.3415277, 48.8298782 2.3572786, 48.8517163 2.4061866, 48.8523080 2.4042254, 48.8534161 2.4030439, 48.8310093 2.3571815, 48.8268348 2.3665087, 48.8272788 2.3567770, 48.8282237 2.3563309, 48.8285149 2.3563221, 48.8291592 2.3654668, 48.8296502 2.3647788, 48.8268291 2.3641616, 48.8522322 2.3898977, 48.8524976 2.3895606, 48.8539546 2.3825521, 48.8544392 2.3816128, 48.8569327 2.3799755, 48.8585657 2.3781777, 48.8633818 2.3710966, 48.8671029 2.3655043, 48.8683370 2.3634922, 48.8699682 2.3607540, 48.8706171 2.3596295, 48.8708012 2.3598095, 48.8712575 2.3602178, 48.8713074 2.3601361, 48.8718731 2.3599327, 48.8724770 2.3594063, 48.8730997 2.3588306, 48.8734420 2.3585204, 48.8742775 2.3577777, 48.8785606 2.3557407, 48.8481543 2.3934076, 48.8542868 2.3877696, 48.8569986 2.3852716, 48.8575346 2.3847601, 48.8580303 2.3809765, 48.8581695 2.3807581, 48.8583918 2.3804386, 48.8608624 2.3805635, 48.8611746 2.3809999, 48.8452169 2.4120881, 48.8461924 2.4121067, 48.8466376 2.4114577, 48.8473580 2.4106924, 48.8473835 2.4103563, 48.8524722 2.4106454, 48.8526979 2.4111873, 48.8557704 2.4107086, 48.8574629 2.4101809, 48.8581256 2.4099841, 48.8587706 2.4100076, 48.8592004 2.4098008, 48.8608587 2.4094863, 48.8649243 2.4085167, 48.8651848 2.4086243, 48.8669825 2.4087455, 48.8681301 2.4072046, 48.8708179 2.4047157, 48.8748416 2.4030830, 48.8800875 2.3982376, 48.8801636 2.3979290, 48.8822748 2.3961932, 48.8897519 2.3898235, 48.8897859 2.3901176, 48.8900562 2.3906182, 48.8908981 2.3898028, 48.8924246 2.3879304, 48.8928662 2.3878039, 48.8931913 2.3928220, 48.8332843 2.3172595, 48.8257570 2.3480755, 48.8257663 2.3482098, 48.8276817 2.3715635, 48.8277542 2.3314326, 48.8277569 2.3294975, 48.8325094 2.3123346, 48.8338839 2.3082929, 48.8340082 2.3078231, 48.8347282 2.3054035, 48.8361022 2.3004952, 48.8362679 2.2934700, 48.8376932 2.4037117, 48.8397308 2.3978085, 48.8420906 2.3894385, 48.8425267 2.3896625, 48.8445646 2.3180923, 48.8470920 2.3268174, 48.8521103 2.3659956, 48.8555817 2.3636375, 48.8592929 2.3562507, 48.8596838 2.3565776, 48.8618200 2.3569043, 48.8746673 2.3308647, 48.8735099 2.3310689, 48.8323649 2.4042508, 48.8319766 2.3145168, 48.8325060 2.3158066, 48.8334834 2.3173462, 48.8338586 2.3183718, 48.8340668 2.3182365, 48.8341266 2.3177915, 48.8347650 2.3425150, 48.8349068 2.3452703, 48.8350373 2.3453379, 48.8350577 2.3457523, 48.8350801 2.3462140, 48.8361574 2.3222159, 48.8383431 2.2893686, 48.8389031 2.3587665, 48.8392803 2.3599626, 48.8394354 2.3604664, 48.8442862 2.2943443, 48.8444182 2.2937030, 48.8469994 2.2956834, 48.8472148 2.3034083, 48.8527070 2.3336447, 48.8228812 2.3586455, 48.8250947 2.3203976, 48.8266929 2.3240664, 48.8276258 2.3263944, 48.8366568 2.3904615, 48.8377732 2.2978996, 48.8390555 2.3541961, 48.8391729 2.3879459, 48.8393615 2.3547196, 48.8394955 2.3009500, 48.8395273 2.3563297, 48.8403152 2.3627036, 48.8403428 2.3600459, 48.8403121 2.3615285, 48.8421501 2.3099414, 48.8431512 2.3481982, 48.8442099 2.3456920, 48.8451757 2.3455730, 48.8457102 2.3460054, 48.8488355 2.3252187, 48.8506988 2.3354533, 48.8254520 2.3540117, 48.8320288 2.2933775, 48.8330901 2.2875209, 48.8338287 2.2951996, 48.8352845 2.3006101, 48.8353138 2.3004808, 48.8355333 2.3008990, 48.8375177 2.3108660, 48.8377213 2.3092594, 48.8381274 2.3040720, 48.8383431 2.3045795, 48.8384042 2.3046605, 48.8386443 2.3051222, 48.8396738 2.3028038, 48.8403607 2.4028757, 48.8406684 2.3153202, 48.8409914 2.3133930, 48.8414293 2.3136925, 48.8419801 2.3147584, 48.8471459 2.3017502, 48.8529188 2.3087416, 48.8560088 2.3152292, 48.8584188 2.3146004, 48.8664898 2.3645091, 48.8669961 2.3635905, 48.8670152 2.3630804, 48.8670361 2.3631640, 48.8674351 2.3629732, 48.8679849 2.3651178, 48.8686416 2.3633147, 48.8686663 2.3632144, 48.8488706 2.4054308, 48.8489816 2.4056570, 48.8494687 2.4051936, 48.8600707 2.3247081, 48.8297510 2.3778979, 48.8250371 2.3884441, 48.8274964 2.3762942, 48.8295399 2.3793050, 48.8312902 2.3804965, 48.8535184 2.3767685, 48.8567309 2.3731009, 48.8567919 2.3727131, 48.8596630 2.4036667, 48.8597113 2.4032404, 48.8672556 2.3729520, 48.8678310 2.3962785, 48.8712975 2.3932942, 48.8736717 2.3893707, 48.8752326 2.3699504, 48.8785201 2.3757987, 48.8785987 2.3756111, 48.8839930 2.3680663, 48.8841702 2.3653361, 48.8809813 2.3738144, 48.8813033 2.3729918, 48.8330219 2.3641260, 48.8337653 2.3094048, 48.8342723 2.3283804, 48.8354533 2.3258265, 48.8357486 2.3110952, 48.8366678 2.3127785, 48.8368862 2.3126418, 48.8408789 2.3214931, 48.8475924 2.3949477, 48.8480651 2.3944560, 48.8484606 2.3943801, 48.8489226 2.3946004, 48.8530598 2.3535567, 48.8552774 2.3345202, 48.8555651 2.3608523, 48.8570886 2.3297266, 48.8585185 2.3298224, 48.8586963 2.3287531, 48.8761034 2.3355444, 48.8762920 2.3325923, 48.8217293 2.3329753, 48.8342289 2.3218797, 48.8343205 2.2844154, 48.8348748 2.2829273, 48.8355558 2.2807022, 48.8360155 2.2791843, 48.8366129 2.3508583, 48.8372702 2.3535459, 48.8379882 2.3433930, 48.8382061 2.3565243, 48.8385318 2.3366177, 48.8396083 2.3376405, 48.8411746 2.3066119, 48.8412714 2.3397958, 48.8414201 2.3390745, 48.8452811 2.3694044, 48.8246139 2.3297884, 48.8248448 2.3309724, 48.8248677 2.3167742, 48.8249619 2.3287697, 48.8249980 2.3313844, 48.8257400 2.3120275, 48.8259545 2.3126700, 48.8260495 2.3309436, 48.8285948 2.3330627, 48.8290174 2.3328655, 48.8326036 2.3623992, 48.8334174 2.3642162, 48.8359245 2.3856627, 48.8401447 2.3704675, 48.8403742 2.3701490, 48.8409627 2.3362290, 48.8415305 2.3538584, 48.8419422 2.3357262, 48.8430208 2.3525662, 48.8432035 2.3315463, 48.8441253 2.3305131, 48.8452074 2.3522138, 48.8467725 2.3266058, 48.8484788 2.3326047, 48.8493788 2.3389951, 48.8500333 2.3399942, 48.8445302 2.3291617, 48.8496464 2.3378520, 48.8462036 2.2991334, 48.8466880 2.3668924, 48.8504922 2.3892597, 48.8506002 2.3865799, 48.8508572 2.3411144, 48.8515666 2.3400541, 48.8517508 2.3398717, 48.8521001 2.3863956, 48.8528464 2.3842636, 48.8529129 2.3851769, 48.8532221 2.3833883, 48.8545205 2.3824395, 48.8560866 2.3825736, 48.8610854 2.3101169, 48.8742389 2.3553630, 48.8744853 2.3555219, 48.8767135 2.3539984, 48.8767602 2.3536655, 48.8773020 2.3497131, 48.8780538 2.3450154, 48.8222079 2.3512623, 48.8221465 2.3506206, 48.8403122 2.2839206, 48.8421802 2.2856456, 48.8446133 2.2871390, 48.8459908 2.2882261, 48.8465650 2.3875568, 48.8481839 2.2902622, 48.8868930 2.3555588, 48.8332913 2.3012392, 48.8319028 2.3045724, 48.8763704 2.3313223, 48.8813097 2.3805063, 48.8407025 2.2998297, 48.8408105 2.3005583, 48.8428691 2.2953585, 48.8691839 2.3358994, 48.8419850 2.2935384, 48.8420971 2.3007593, 48.8432807 2.3001298, 48.8435688 2.2937775, 48.8452755 2.2974744, 48.8469016 2.2922005, 48.8469813 2.2932207, 48.8470332 2.2925959, 48.8471729 2.2924922, 48.8481405 2.2934613, 48.8488766 2.3550116, 48.8489122 2.3193174, 48.8489272 2.3523931, 48.8491216 2.3136783, 48.8491775 2.3141515, 48.8492908 2.3146445, 48.8493554 2.3527922, 48.8499990 2.3166689, 48.8508919 2.2958074, 48.8511850 2.2966292, 48.8454208 2.2917026, 48.8473674 2.2962615, 48.8475073 2.2831429, 48.8477824 2.2824011, 48.8351811 2.4063529, 48.8389376 2.2789040, 48.8416959 2.2795090, 48.8450469 2.2801242, 48.8454304 2.2845227, 48.8459998 2.2813073, 48.8462807 2.2851535, 48.8894150 2.3628554, 48.8850120 2.3563702, 48.8762217 2.3586964, 48.8433449 2.3251164, 48.8550540 2.3941000, 48.8560955 2.3926896, 48.8578050 2.3996283, 48.8582358 2.3823367, 48.8586186 2.3835107, 48.8592411 2.3830225, 48.8601008 2.3822123, 48.8626812 2.3797075, 48.8630453 2.3672473, 48.8635008 2.3671098, 48.8634092 2.3790356, 48.8644595 2.3839203, 48.8648530 2.3666639, 48.8657480 2.3705095, 48.8680948 2.3655417, 48.8682070 2.3654610, 48.8687325 2.3631261, 48.8740998 2.3453668, 48.8903381 2.3486643, 48.8905361 2.3482493, 48.8481499 2.3941327, 48.8277079 2.3495286, 48.8314922 2.3442625, 48.8320979 2.3443846, 48.8367757 2.3452596, 48.8548426 2.3031870, 48.8548827 2.3032421, 48.8567726 2.3001849, 48.8568344 2.3001716, 48.8569127 2.2999765, 48.8577877 2.3006194, 48.8596013 2.3072329, 48.8600760 2.3280535, 48.8612403 2.3243984, 48.8615577 2.3576761, 48.8617439 2.2982592, 48.8626940 2.3099487, 48.8627569 2.3393126, 48.8629258 2.3030795, 48.8629949 2.3080187, 48.8630650 2.3165032, 48.8635613 2.3394544, 48.8265121 2.3465625, 48.8321818 2.3392750, 48.8508705 2.3623119, 48.8512015 2.3822530, 48.8514794 2.3101353, 48.8540997 2.3239460, 48.8541902 2.3194979, 48.8550561 2.3402771, 48.8600928 2.3731117, 48.8535790 2.3638481, 48.8571030 2.3539440, 48.8571580 2.2667766, 48.8573414 2.3540716, 48.8574462 2.3575428, 48.8584854 2.2792832, 48.8597267 2.2821320, 48.8630086 2.3362399, 48.8631579 2.3415886, 48.8632373 2.3412593, 48.8653506 2.3423662, 48.8670831 2.3356438, 48.8682396 2.2933172, 48.8697732 2.2938530, 48.8744871 2.3117910, 48.8747123 2.3133715, 48.8747243 2.3027090, 48.8759626 2.2965087, 48.8308265 2.3530126, 48.8359247 2.2814968, 48.8381961 2.2812162, 48.8466206 2.4134552, 48.8530692 2.4125589, 48.8569190 2.4110486, 48.8647596 2.4089845, 48.8671280 2.4091658, 48.8673068 2.4087318, 48.8678522 2.4092408, 48.8718692 2.4084946, 48.8729156 2.4089018, 48.8730227 2.4088436, 48.8774817 2.4062578, 48.8799062 2.4010873, 48.8808314 2.4005187, 48.8827476 2.3997867, 48.8837604 2.3973570, 48.8853759 2.3967693, 48.8891501 2.3919739, 48.8921011 2.3883839, 48.8939074 2.3869648, 48.8950741 2.3853043, 48.8965893 2.3846935, 48.8974790 2.3852300, 48.8355408 2.3093378, 48.8413240 2.2886217, 48.8592270 2.3236594, 48.8624657 2.3115669, 48.8779515 2.3440896, 48.8380661 2.2876899, 48.8454913 2.3116790, 48.8455110 2.3111536, 48.8669202 2.3834926, 48.8689269 2.3715327, 48.8759321 2.3727655, 48.8984073 2.3709403, 48.8526033 2.3136415, 48.8357816 2.3023056, 48.8363872 2.3030756, 48.8365194 2.3011778, 48.8368720 2.3025022, 48.8369553 2.3024373, 48.8370310 2.3025696, 48.8388883 2.3004061, 48.8489669 2.2876751, 48.8689288 2.3715403, 48.8402950 2.3002166, 48.8404916 2.2780605, 48.8424961 2.3064436, 48.8433477 2.2798969, 48.8440160 2.3238242, 48.8471428 2.2860305, 48.8474003 2.2951465, 48.8480350 2.2869182, 48.8490968 2.2877519, 48.8249781 2.3039567, 48.8257243 2.3052770, 48.8265928 2.3048244, 48.8213106 2.3411460, 48.8239590 2.3308277, 48.8239711 2.3514442, 48.8239998 2.3510117, 48.8241733 2.3533935, 48.8244865 2.3278048, 48.8245804 2.3396886, 48.8246044 2.3382584, 48.8248799 2.3536513, 48.8256032 2.3217938, 48.8260622 2.3105582, 48.8266135 2.3534752, 48.8269262 2.3513163, 48.8281250 2.3216386, 48.8281819 2.3155262, 48.8289185 2.3222763, 48.8296026 2.3178273, 48.8322116 2.2883420, 48.8324706 2.3133021, 48.8329583 2.2774040, 48.8330016 2.2770756, 48.8330898 2.2768283, 48.8331174 2.2765291, 48.8333400 2.3145004, 48.8337885 2.3608913, 48.8356331 2.4060202, 48.8360628 2.4058718, 48.8367584 2.3566102, 48.8368296 2.3568351, 48.8459364 2.3679712, 48.8488033 2.3687487, 48.8384611 2.3605477, 48.8671353 2.3480000, 48.8938413 2.3472931, 48.8942404 2.3460471, 48.8942255 2.3458385, 48.8466055 2.3466048, 48.8934234 2.3381216, 48.8929811 2.3381482, 48.8839216 2.3271785, 48.8839775 2.3271608, 48.8839670 2.3273081, 48.8841275 2.3270884, 48.8845343 2.3268965, 48.8846683 2.3268418, 48.8855156 2.3264429, 48.8862771 2.3262148, 48.8861526 2.3261584, 48.8865223 2.3259623, 48.8869014 2.3259253, 48.8871792 2.3257982, 48.8875030 2.3256728, 48.8874194 2.3255802, 48.8189427 2.3623110, 48.8193375 2.3442401, 48.8193930 2.3452226, 48.8200280 2.3394747, 48.8202391 2.3395613, 48.8205079 2.3556087, 48.8205508 2.3372668, 48.8205989 2.3495983, 48.8211121 2.3347051, 48.8215967 2.3323735, 48.8292229 2.3255814, 48.8292882 2.2971394, 48.8313803 2.3349575, 48.8316633 2.3221401, 48.8325886 2.3203616, 48.8357379 2.3250590, 48.8369802 2.2739149, 48.8386159 2.3222156, 48.8344865 2.4691570, 48.8357568 2.3008708, 48.8360131 2.3100586, 48.8369650 2.3090961, 48.8375624 2.3080571, 48.8385808 2.3067130, 48.8395895 2.3092578, 48.8714897 2.3427273, 48.8205058 2.3593321, 48.8505602 2.3001391, 48.8427552 2.2924068, 48.8434280 2.2929776, 48.8518541 2.2999378, 48.8526008 2.2998174, 48.8526618 2.2999032, 48.8560465 2.2944608, 48.8561074 2.2945466, 48.8566822 2.2923833, 48.8568355 2.2938443, 48.8582848 2.3558481, 48.8595125 2.3524319, 48.8608732 2.2962429, 48.8610323 2.2965408, 48.8613476 2.2971959, 48.8630993 2.3180109, 48.8348722 2.4086899, 48.8358883 2.4089442, 48.8360619 2.4087881, 48.8425612 2.3139626, 48.8475557 2.4085227, 48.8415102 2.4131166, 48.8416826 2.4130896, 48.8319771 2.3979134, 48.8323454 2.3551969, 48.8974525 2.3959552, 48.8678050 2.3496900, 48.8681841 2.3484645, 48.8682787 2.3487909, 48.8685115 2.3495915, 48.8690548 2.3514051, 48.8293741 2.3599170, 48.8312247 2.3581349, 48.8225167 2.3571540, 48.8897765 2.3719886, 48.8437894 2.2772811, 48.8441585 2.2771994, 48.8485264 2.2810711, 48.8487304 2.2813632, 48.8489564 2.2816880, 48.8512111 2.3987159, 48.8512690 2.4044346, 48.8514506 2.4058799, 48.8514709 2.3995095, 48.8515803 2.4001141, 48.8543196 2.3962849, 48.8568402 2.4046511, 48.8580682 2.3877975, 48.8600706 2.3886064, 48.8604792 2.4008059, 48.8611195 2.3880530, 48.8631905 2.3883955, 48.8650677 2.3956244, 48.8651291 2.3943708, 48.8654133 2.3895489, 48.8660045 2.3873365, 48.8662887 2.3905433, 48.8682334 2.3864308, 48.8686568 2.3866090, 48.8690384 2.3861855, 48.8704416 2.3841005, 48.8704583 2.3841770, 48.8726164 2.3842276, 48.8734281 2.3825503, 48.8735409 2.3833038, 48.8274881 2.3770197, 48.8883372 2.3743635, 48.8966561 2.3798725, 48.8301525 2.3594415, 48.8465069 2.4099879, 48.8757435 2.3262717, 48.8836814 2.3499178, 48.8201088 2.3481923, 48.8201319 2.3478823, 48.8202012 2.3481361, 48.8205445 2.3494030, 48.8233285 2.3741842, 48.8217463 2.3258742, 48.8219887 2.3306289, 48.8349501 2.4072247, 48.8351659 2.4069054, 48.8708394 2.3465254, 48.8736212 2.2769315, 48.8816472 2.3154087, 48.8824542 2.2862966, 48.8837737 2.2909262, 48.8843309 2.2884576, 48.8853037 2.2956381, 48.8892808 2.2928055, 48.8346342 2.3606245, 48.8550678 2.3246859, 48.8843190 2.3697260, 48.8849215 2.3709154, 48.8871420 2.3755550, 48.8488878 2.4063145, 48.8826421 2.3444926, 48.8618141 2.3222918, 48.8649047 2.3105605, 48.8649598 2.3105563, 48.8707207 2.3458677, 48.8710108 2.3455226, 48.8748858 2.3191940, 48.8814710 2.3009002, 48.8836868 2.2986830, 48.8845223 2.3081683, 48.8848975 2.3067652, 48.8871423 2.3009349, 48.8873797 2.3010160, 48.8688331 2.3251265, 48.8871184 2.2983257, 48.8887957 2.2976069, 48.8833935 2.3195861, 48.8845689 2.3194756, 48.8847283 2.3200247, 48.8848321 2.3192257, 48.8854073 2.2987197, 48.8862629 2.3178705, 48.8862908 2.3178312, 48.8874366 2.3136254, 48.8418848 2.2853423, 48.8507831 2.3944957, 48.8518835 2.3934531, 48.8520017 2.3935558, 48.8523499 2.3931181, 48.8617792 2.3745107, 48.8622369 2.3739210, 48.8623819 2.3639950, 48.8740920 2.3388296, 48.8754273 2.3247309, 48.8612936 2.3581608, 48.8394875 2.2840062, 48.8397475 2.2846463, 48.8427503 2.2863046, 48.8468131 2.2904315, 48.8500437 2.3954755, 48.8391079 2.3390778, 48.8422773 2.3762540, 48.8391187 2.4008037, 48.8397181 2.4041355, 48.8423773 2.3977129, 48.8432024 2.3913685, 48.8449650 2.3837024, 48.8526582 2.2904698, 48.8577122 2.2791705, 48.8581675 2.2754001, 48.8516727 2.3995074, 48.8317848 2.3580564, 48.8331084 2.3230703, 48.8629913 2.4001471, 48.8332462 2.4027150, 48.8422716 2.3666416, 48.8425115 2.3664241, 48.8425602 2.3663854, 48.8432847 2.3745921, 48.8611021 2.3537247, 48.8459524 2.3314941, 48.8467856 2.2815796, 48.8473038 2.3299657, 48.8822077 2.3636469, 48.8822937 2.3628730, 48.8826834 2.3615248, 48.8842662 2.3384857, 48.8843570 2.3383511, 48.8843580 2.3554674, 48.8855628 2.3868905, 48.8973410 2.3866230, 48.8480167 2.2901082, 48.8654197 2.3615883, 48.8659969 2.3276111, 48.8455361 2.2879377, 48.8511656 2.2918014, 48.8516745 2.2912562, 48.8619109 2.3023193, 48.8706613 2.3081543, 48.8650528 2.3603618, 48.8651208 2.3506212, 48.8476557 2.4073288, 48.8521365 2.4011863, 48.8535107 2.3984631, 48.8543651 2.4004082, 48.8549033 2.3991563, 48.8554579 2.4009305, 48.8898322 2.3630151, 48.8879186 2.3618545, 48.8198018 2.3378923, 48.8196733 2.3393782, 48.8194043 2.3405063, 48.8188325 2.3408390, 48.8184256 2.3419067, 48.8186884 2.3425003, 48.8186360 2.3430082, 48.8189215 2.3438558, 48.8179357 2.3423853, 48.8177750 2.3424496, 48.8176743 2.3436137, 48.8176500 2.3360501, 48.8176561 2.3358653, 48.8203267 2.3373700, 48.8208968 2.3323023, 48.8213376 2.3305144, 48.8216173 2.3310795, 48.8307176 2.3336597, 48.8307282 2.3338267, 48.8585619 2.3617793, 48.8361012 2.3067804, 48.8370117 2.3056189, 48.8371245 2.3054619, 48.8376650 2.3010309, 48.8377402 2.3012212, 48.8377416 2.3017034, 48.8413425 2.3652072, 48.8302778 2.3399791, 48.8322774 2.3210471, 48.8377505 2.2985678, 48.8453367 2.3772879, 48.9000932 2.3358853, 48.8930812 2.3271799, 48.8929996 2.3279230, 48.8934982 2.3273635, 48.8913377 2.3270343, 48.8890318 2.3625198, 48.8385809 2.2760467, 48.8391660 2.2753163, 48.8424520 2.4098573, 48.8424857 2.4095701, 48.8259883 2.3455054, 48.8272205 2.3617938, 48.8273986 2.3619739, 48.8328002 2.4147823, 48.8330462 2.4142455, 48.8292797 2.3113663, 48.8640760 2.3711926, 48.8686215 2.3677037, 48.8865423 2.3744088, 48.8871015 2.3755517, 48.8874259 2.3761952, 48.8879389 2.3772336, 48.8882498 2.3778555, 48.8514698 2.3700116, 48.8872981 2.3760451, 48.8665165 2.3683479, 48.8694157 2.3590847, 48.8682902 2.3596238, 48.8678311 2.3593666, 48.8672074 2.3625921, 48.8667957 2.3616365, 48.8665822 2.3611873, 48.8664154 2.3613483, 48.8683330 2.3613789, 48.8695843 2.3619338, 48.8702528 2.3615935, 48.8690474 2.3626629, 48.8704302 2.3646700, 48.8691323 2.3642484, 48.8692179 2.3644883, 48.8690735 2.3645106, 48.8692386 2.3642586, 48.8697500 2.3660372, 48.8696778 2.3660972, 48.8706124 2.3655057, 48.8694303 2.3634932, 48.8695071 2.3630968, 48.8692731 2.3634968, 48.8702835 2.3620952, 48.8705613 2.3638521, 48.8713642 2.3601890, 48.8705252 2.3633357, 48.8711719 2.3607711, 48.8710414 2.3599919, 48.8728103 2.3592741, 48.8721819 2.3598636, 48.8721578 2.3608292, 48.8730710 2.3614410, 48.8770896 2.3562735, 48.8725656 2.3610975, 48.8740822 2.3581488, 48.8742604 2.3579932, 48.8784331 2.3584349, 48.8758489 2.3565569, 48.8757713 2.3594937, 48.8759182 2.3592349, 48.8777771 2.3618573, 48.8786221 2.3622165, 48.8786839 2.3642852, 48.8787652 2.3620625, 48.8791639 2.3631429, 48.8791832 2.3622961, 48.8793613 2.3629572, 48.8784953 2.3643169, 48.8781974 2.3647593, 48.8327047 2.3707777, 48.8761411 2.3506599, 48.8761885 2.3503881, 48.8762353 2.3501240, 48.8680926 2.3610021, 48.8695011 2.3633940, 48.8746456 2.3609364, 48.8744745 2.3553973, 48.8732099 2.3603812, 48.8779410 2.3615512, 48.8312476 2.3692666, 48.8282070 2.3117648, 48.8709890 2.3479479, 48.8612331 2.3307752, 48.8772530 2.3684287, 48.8555642 2.4099582, 48.8693111 2.4053516, 48.8693458 2.4054393, 48.8700399 2.3997726, 48.8759391 2.3978752, 48.8778074 2.3962431, 48.8783525 2.3970152, 48.8784425 2.4031985, 48.8792691 2.3969644, 48.8795219 2.3994918, 48.8795356 2.3982191, 48.8796083 2.3963611, 48.8802166 2.3988280, 48.8803390 2.3964590, 48.8572951 2.3046553, 48.8576872 2.3057939, 48.8589015 2.3030720, 48.8598304 2.3026176, 48.8602954 2.3025663, 48.8662018 2.3313095, 48.8555997 2.3574881, 48.8557109 2.3601000, 48.8559022 2.3548777, 48.8562284 2.3535332, 48.8567415 2.3537794, 48.8573155 2.3512430, 48.8573892 2.3512851, 48.8252160 2.3417519, 48.8224474 2.3475967, 48.8229613 2.3467212, 48.8219138 2.3504264, 48.8452095 2.3545995, 48.8270974 2.3073235, 48.8284991 2.3004553, 48.8436002 2.3079842, 48.8441466 2.3088151, 48.8269175 2.3384014, 48.8212937 2.3464680, 48.8567779 2.2992342, 48.8570024 2.2995661, 48.8572851 2.2993540, 48.8275500 2.3524043, 48.8275876 2.3526683, 48.8278715 2.3527270, 48.8382373 2.3652401, 48.8388299 2.3633571, 48.8397555 2.3662914, 48.8403120 2.3648539, 48.8353850 2.3628972, 48.8370232 2.3622198, 48.8380447 2.3651672, 48.8395521 2.3656977, 48.8406525 2.3654951, 48.8212773 2.3484096, 48.8212833 2.3478488, 48.8214566 2.3483919, 48.8214582 2.3485034, 48.8214603 2.3486734, 48.8314949 2.3464003, 48.8446576 2.4023708, 48.8446711 2.4022645, 48.8863030 2.3629244, 48.8347963 2.4081651, 48.8263279 2.3477604, 48.8267258 2.3480552, 48.8438274 2.3883763, 48.8451702 2.3983100, 48.8452821 2.3979496, 48.8612713 2.3434005, 48.8618647 2.3406148, 48.8675113 2.3263048, 48.8688331 2.3251265, 48.8743834 2.3157963, 48.8970752 2.3747307, 48.8971135 2.3748889, 48.8522697 2.3672667, 48.8526671 2.3672168, 48.8463203 2.2792657, 48.8471893 2.2793406, 48.8168872 2.3337518, 48.8534314 2.2864512, 48.8471350 2.2790676, 48.8453920 2.3132117, 48.8602828 2.3469501, 48.8771319 2.3510066, 48.8431362 2.3363642, 48.8778732 2.3448763, 48.8372540 2.3630681 +105 +49.4296874 8.6826637, 49.4278935 8.6837354, 49.4147764 8.6710359, 49.4278053 8.7495282, 49.4178891 8.7605933, 49.4075919 8.6845735, 49.4092752 8.6923105, 49.4084767 8.6927500, 49.4078943 8.6929172, 49.4082491 8.6928194, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4158218 8.6922416, 49.4072954 8.6910173, 49.4082662 8.6915918, 49.4103403 8.6975369, 49.4165191 8.6921856, 49.4120923 8.7117858, 49.4151801 8.6903524, 49.4071068 8.6898761, 49.4108200 8.6918918, 49.4227158 8.6483350, 49.4160126 8.6922256, 49.4278746 8.6871277, 49.4277708 8.6843289, 49.4101101 8.6935285, 49.4080641 8.6904292, 49.4168755 8.6790034, 49.4283321 8.6836841, 49.4228152 8.6504004, 49.4082494 8.6913249, 49.4060965 8.6874091, 49.4081205 8.6928550, 49.4114742 8.7040324, 49.4207600 8.7562394, 49.4278253 8.6839436, 49.4278064 8.7495089 +55.9606990 -3.2496993, 55.9400545 -3.1930414, 55.9494596 -3.1096499, 55.9138280 -3.1645331, 55.9376548 -3.1781132, 55.9403771 -3.4162904, 55.9195401 -3.1576764, 55.9259844 -3.2829976, 55.9351037 -3.2894757, 55.9502710 -3.2958592, 55.9732511 -3.1566940 +55.9840623 -3.2228676 +69 +yes and 49.3715156 8.7012631 +37.7500651 -122.4340964, 37.7494950 -122.4338475, 37.7481784 -122.4318047, 37.7482870 -122.4317704, 37.7879001 -122.4032530, 37.7879882 -122.4037767, 37.7876404 -122.4065068, 37.7873775 -122.4085239, 37.7869825 -122.4117339, 37.7868400 -122.4132360, 37.7867454 -122.4133988, 37.7865280 -122.4151500, 37.7863839 -122.4147044, 37.8074857 -122.4122331, 37.8065738 -122.4141681, 37.7858381 -122.4208295, 37.7860823 -122.4213101, 37.7858443 -122.4215600, 37.8058156 -122.4201928, 37.8061825 -122.4173877, 37.8050741 -122.4248113, 37.8049424 -122.4251017, 37.8047238 -122.4253684, 37.8049272 -122.4254027, 37.8053138 -122.4240294, 37.8024234 -122.4249055, 37.8002533 -122.4244764, 37.7986934 -122.4241845, 37.7964948 -122.4237345, 37.7949360 -122.4234292, 37.7914294 -122.4227083, 37.7873203 -122.4218983, 37.7872205 -122.4163915, 37.7873494 -122.4149152, 37.7874377 -122.4147865, 37.7878071 -122.4133072, 37.7876377 -122.4131357, 37.7878614 -122.4114361, 37.7883158 -122.4080030, 37.7885668 -122.4059259, 37.7894553 -122.4072305, 37.7892383 -122.4089471, 37.7890348 -122.4105779, 37.7888245 -122.4122344, 37.7887296 -122.4136334, 37.7886349 -122.4137618, 37.7882480 -122.4150753, 37.7884387 -122.4153902, 37.7882006 -122.4170495, 37.7936864 -122.4231765, 37.7895224 -122.4223268, 37.8077705 -122.4105938, 37.7858278 -122.4058393, 37.7866147 -122.4049381, 37.7864654 -122.4047321, 37.7874083 -122.4036077, 37.7879204 -122.4029268, 37.7885919 -122.4024548, 37.7884698 -122.4023003, 37.7894632 -122.4012427, 37.7904738 -122.3996977, 37.7909147 -122.3992085, 37.7912199 -122.3990282, 37.7915447 -122.3981096, 37.7919524 -122.3981442, 37.7926895 -122.3975313, 37.7925538 -122.3970849, 37.7942766 -122.3948018, 37.7920324 -122.3977043, 37.7944131 -122.3950607, 37.8075184 -122.4123666, 37.8065215 -122.4134910, 37.8059994 -122.4172590, 37.8056529 -122.4205190, 37.8054155 -122.4221927, 37.8052527 -122.4234200, 37.8051442 -122.4236947, 37.8044396 -122.4250053, 37.8025001 -122.4246362, 37.8006419 -122.4242586, 37.7984038 -122.4237608, 37.7960775 -122.4233316, 37.7940496 -122.4227651, 37.7942082 -122.4229370, 37.7923946 -122.4225591, 37.7913958 -122.4222349, 37.8056122 -122.4218837, 37.7992825 -122.4189061, 37.7991130 -122.4192065, 37.7955320 -122.4181508, 37.7945850 -122.4183350, 37.7946664 -122.4163695, 37.7938050 -122.4096919, 37.7930318 -122.4092112, 37.7853492 -122.4055185, 37.7843469 -122.4045150, 37.7846454 -122.4039142, 37.7847539 -122.4037597, 37.7842316 -122.4041030, 37.7835261 -122.4025151, 37.7829902 -122.4025495, 37.7821627 -122.4008414, 37.7818193 -122.4010039, 37.7806363 -122.3999660, 37.7784384 -122.3966529, 37.7781331 -122.3964297, 37.7771698 -122.3952195, 37.7769255 -122.3950736, 37.7772943 -122.3949229, 37.7772672 -122.3946225, 37.7777963 -122.3939702, 37.7768533 -122.3945023, 37.7755323 -122.3971419, 37.7764838 -122.3985209, 37.7761242 -122.4022631, 37.7779104 -122.4000014, 37.7793078 -122.4020012, 37.7789483 -122.4020957, 37.7771439 -122.4044132, 37.7757191 -122.4064044, 37.7754274 -122.4065417, 37.7739280 -122.4084815, 37.7724490 -122.4103612, 37.7708168 -122.4125663, 37.7703632 -122.4123180, 37.7716591 -122.4138973, 37.7719508 -122.4138029, 37.7721001 -122.4141720, 37.7729006 -122.4154423, 37.7733145 -122.4156912, 37.7741303 -122.4169989, 37.7741981 -122.4173765, 37.7752700 -122.4184494, 37.7754464 -122.4183893, 37.7757381 -122.4191960, 37.7754939 -122.4189385, 37.7736011 -122.4186209, 37.7782225 -122.4194551, 37.7786688 -122.4197882, 37.7798628 -122.4200286, 37.7799849 -122.4198998, 37.7821995 -122.4204866, 37.7828778 -122.4204179, 37.7830062 -122.4205011, 37.7830848 -122.4206947, 37.7849708 -122.4210499, 37.7889845 -122.4026340, 37.7901947 -122.4014023, 37.7896588 -122.4037282, 37.7897402 -122.4049985, 37.7863305 -122.4167890, 37.7861298 -122.4184176, 37.7855735 -122.4228551, 37.7854718 -122.4252669, 37.7851733 -122.4278504, 37.7847663 -122.4281594, 37.7843186 -122.4315412, 37.7848206 -122.4309318, 37.7844196 -122.4328463, 37.7843178 -122.4330266, 37.7845281 -122.4332841, 37.7840872 -122.4333871, 37.7835504 -122.4375282, 37.7839167 -122.4376655, 37.7834826 -122.4392963, 37.7836386 -122.4394164, 37.7831231 -122.4396482, 37.7829535 -122.4395280, 37.7828042 -122.4423433, 37.7829874 -122.4431329, 37.7827913 -122.4458030, 37.7827599 -122.4459811, 37.7823299 -122.4459653, 37.7825329 -122.4467635, 37.7820784 -122.4472957, 37.7820558 -122.4476543, 37.7821802 -122.4476390, 37.7820053 -122.4498532, 37.7822868 -122.4499499, 37.7818988 -122.4530106, 37.7815563 -122.4534053, 37.7798354 -122.4931351, 37.7799168 -122.4934183, 37.7794962 -122.4932037, 37.7794826 -122.4933926, 37.7798191 -122.4936557, 37.7795573 -122.4935814, 37.7799507 -122.4932381, 37.7796794 -122.4963537, 37.7794148 -122.4967056, 37.7792724 -122.4998814, 37.7796794 -122.5028254, 37.7791570 -122.5025164, 37.7798610 -122.5049869, 37.7797389 -122.5052873, 37.7800577 -122.5076563, 37.7798949 -122.5074503, 37.7799221 -122.5099050, 37.7797796 -122.5096304, 37.7791216 -122.5094930, 37.7756617 -122.5003177, 37.7754785 -122.5007383, 37.7754989 -122.5035793, 37.7753293 -122.5039398, 37.7751597 -122.5057852, 37.7750986 -122.5059311, 37.7891981 -122.4152653, 37.7893134 -122.4150078, 37.7910097 -122.4156423, 37.7922029 -122.4157974, 37.7924132 -122.4141495, 37.7927048 -122.4118492, 37.7934544 -122.4078526, 37.7932474 -122.4075663, 37.7934120 -122.4063181, 37.7936086 -122.4047989, 37.7938053 -122.4031510, 37.8070654 -122.4103449, 37.8068551 -122.4106453, 37.8066448 -122.4120271, 37.8065364 -122.4122160, 37.8050377 -122.4118813, 37.8047668 -122.4116465, 37.8027867 -122.4114233, 37.8006774 -122.4105478, 37.8004101 -122.4099889, 37.8002162 -122.4105649, 37.8004332 -122.4105306, 37.7991379 -122.4088569, 37.7992532 -122.4090286, 37.7991922 -122.4087624, 37.7993480 -122.4086509, 37.7971439 -122.4085909, 37.7967709 -122.4082646, 37.7962894 -122.4082732, 37.7953670 -122.4082476, 37.7937799 -122.4077582, 37.8063855 -122.4232325, 37.8036726 -122.4232484, 37.8035574 -122.4233771, 37.8016788 -122.4230252, 37.8014415 -122.4228020, 37.7989229 -122.4224728, 37.7987940 -122.4226445, 37.7986719 -122.4225157, 37.7990178 -122.4223012, 37.7977224 -122.4220351, 37.7970239 -122.4220608, 37.7962210 -122.4217512, 37.7957734 -122.4218285, 37.7952240 -122.4215366, 37.7951087 -122.4214336, 37.7949934 -122.4212963, 37.7942338 -122.4212620, 37.7934741 -122.4211933, 37.7931961 -122.4213478, 37.7923618 -122.4206697, 37.7919217 -122.4210500, 37.7915343 -122.4211418, 37.7908357 -122.4206440, 37.7907543 -122.4207813, 37.7894452 -122.4205410, 37.7895062 -122.4203951, 37.7877969 -122.4203780, 37.7878987 -122.4202148, 37.7879258 -122.4200518, 37.7865827 -122.4199745, 37.7867116 -122.4198114, 37.7868068 -122.4194985, 37.7850972 -122.4196741, 37.8073496 -122.4079591, 37.8072682 -122.4075728, 37.8022905 -122.4029208, 37.8014157 -122.4027320, 37.7996185 -122.4023972, 37.7977263 -122.4020024, 37.7947114 -122.4015355, 37.7951558 -122.4014788, 37.7946810 -122.4013501, 37.7926335 -122.3958328, 37.7943350 -122.3945488, 37.7932952 -122.3934198, 37.7924067 -122.3943554, 37.7919997 -122.3948618, 37.7910162 -122.3961063, 37.7901209 -122.3969646, 37.7899445 -122.3975054, 37.7878245 -122.4001786, 37.7878381 -122.3998524, 37.7864031 -122.4017275, 37.7861318 -122.4023197, 37.7829558 -122.4066225, 37.7827998 -122.4067084, 37.7825217 -122.4068886, 37.7825488 -122.4065625, 37.7823996 -122.4070345, 37.7811378 -122.4083649, 37.7808122 -122.4090258, 37.7793876 -122.4105793, 37.7790281 -122.4113003, 37.7775322 -122.4128952, 37.7771862 -122.4129896, 37.7773219 -122.4134703, 37.7764060 -122.4143114, 37.7761075 -122.4150066, 37.7727900 -122.4191952, 37.7731428 -122.4182596, 37.7703747 -122.4197788, 37.7707614 -122.4203453, 37.7680204 -122.4200621, 37.7670705 -122.4197531, 37.7663920 -122.4198732, 37.7653010 -122.4195354, 37.7651503 -122.4193840, 37.7649400 -122.4199505, 37.7648246 -122.4197531, 37.7618662 -122.4197445, 37.7620562 -122.4192896, 37.7616287 -122.4194612, 37.7605363 -122.4191351, 37.7600545 -122.4193153, 37.7584056 -122.4191522, 37.7589009 -122.4189892, 37.7573130 -122.4188433, 37.7568991 -122.4189892, 37.7557658 -122.4186802, 37.7551890 -122.4188518, 37.7541440 -122.4185343, 37.7535875 -122.4186630, 37.7524610 -122.4183540, 37.7523117 -122.4181566, 37.7521692 -122.4186716, 37.7520334 -122.4185343, 37.7494003 -122.4180794, 37.7490202 -122.4178648, 37.7488845 -122.4182253, 37.7482533 -122.4186802, 37.7468756 -122.4191608, 37.7469774 -122.4188862, 37.7452468 -122.4202165, 37.7702405 -122.4456788, 37.7815477 -122.4557681, 37.7812324 -122.4564824, 37.7814265 -122.4586356, 37.7811374 -122.4585605, 37.7810466 -122.4587536, 37.7815096 -122.4590144, 37.7813234 -122.4609038, 37.7810177 -122.4612687, 37.7811823 -122.4641071, 37.7807956 -122.4641973, 37.7807845 -122.4643617, 37.7808764 -122.4644255, 37.7807541 -122.4671566, 37.7809983 -122.4678003, 37.7808931 -122.4704703, 37.7805778 -122.4708931, 37.7810594 -122.4721634, 37.7803132 -122.4724209, 37.7804958 -122.4725340, 37.7807715 -122.4726936, 37.7806388 -122.4759657, 37.7803132 -122.4764378, 37.7804922 -122.4791912, 37.7801791 -122.4795855, 37.7800298 -122.4827784, 37.7798738 -122.4845980, 37.7803080 -122.4848555, 37.7802469 -122.4845465, 37.7799349 -122.4849328, 37.7801045 -122.4877394, 37.7797924 -122.4881085, 37.7800027 -122.4899024, 37.7796974 -122.4902800, 37.7795957 -122.4919966, 37.7799552 -122.4923228, 37.7850328 -122.4240337, 37.7846530 -122.4214931, 37.7845512 -122.4213300, 37.7850919 -122.4181325, 37.7850396 -122.4177938, 37.7853788 -122.4158712, 37.7854466 -122.4144979, 37.7855823 -122.4142146, 37.7858650 -122.4121391, 37.7860368 -122.4097600, 37.7863556 -122.4081893, 37.7866812 -122.4056144, 37.7870169 -122.4179793, 37.7866235 -122.4210522, 37.7861695 -122.4245155, 37.7859114 -122.4264595, 37.7857487 -122.4278070, 37.7867524 -122.4285794, 37.7866167 -122.4285538, 37.7864675 -122.4297640, 37.7865965 -122.4297039, 37.7861826 -122.4330771, 37.7860469 -122.4330340, 37.7859385 -122.4331370, 37.7858910 -122.4333344, 37.7859723 -122.4346907, 37.7857893 -122.4350941, 37.7855452 -122.4380551, 37.7853687 -122.4384070, 37.7852332 -122.4395228, 37.7852534 -122.4393683, 37.7853485 -122.4396517, 37.7854773 -122.4398147, 37.7850228 -122.4399262, 37.7849142 -122.4430247, 37.7847380 -122.4433766, 37.7844192 -122.4458487, 37.7841884 -122.4463035, 37.7846498 -122.4461747, 37.7864066 -122.4400121, 37.7826267 -122.4209352, 37.7821927 -122.4192077, 37.7831831 -122.4189845, 37.7830542 -122.4189502, 37.7833323 -122.4177486, 37.7831356 -122.4174224, 37.7832848 -122.4172336, 37.7834951 -122.4156457, 37.7837190 -122.4139463, 37.7839225 -122.4123155, 37.7333439 -122.4341146, 37.7336018 -122.4339773, 37.7333778 -122.4337627, 37.7306904 -122.4313129, 37.7285513 -122.4313423, 37.7286056 -122.4315569, 37.7287414 -122.4310075, 37.7285928 -122.4310211, 37.7164063 -122.4407726, 37.7162841 -122.4412790, 37.7147304 -122.4426465, 37.7296110 -122.4331926, 37.7261179 -122.4335362, 37.7725629 -122.4271208, 37.7724886 -122.4271971, 37.7727613 -122.4255587, 37.7728240 -122.4254941, 37.7750096 -122.4193518, 37.7752830 -122.4191695, 37.7237397 -122.4527763, 37.8026615 -122.4058342, 37.7602500 -122.4381220, 37.8000731 -122.4427175, 37.8000773 -122.4429777, 37.8002766 -122.4410592, 37.8001123 -122.4413201, 37.7998569 -122.4443992, 37.7991938 -122.4517479, 37.7982490 -122.4474040, 37.7938960 -122.3962630, 37.7350442 -122.4750296, 37.7348192 -122.4745190, 37.7348959 -122.4718603, 37.7826712 -122.4715165, 37.7900779 -122.3973324, 37.8063946 -122.4755980, 37.8066743 -122.4754598, 37.8073122 -122.4750992, 37.8077451 -122.4747013, 37.7985742 -122.4470382, 37.8003316 -122.4468364, 37.8015284 -122.4299080, 37.7698835 -122.4483879, 37.7696842 -122.4487848, 37.7734369 -122.4495198, 37.7736095 -122.4491588, 37.7759209 -122.4462621, 37.7754086 -122.4499596, 37.7753704 -122.4494447, 37.7750352 -122.4531023, 37.7749600 -122.4525772, 37.7744927 -122.4582852, 37.7742595 -122.4580599, 37.7743273 -122.4587090, 37.7752263 -122.4651517, 37.7770368 -122.4639232, 37.8051033 -122.4322388, 37.8070241 -122.4071695, 37.7268052 -122.4756978, 37.7270758 -122.4757595, 37.7273213 -122.4751556, 37.7767196 -122.4262286, 37.7877082 -122.4066920, 37.7877749 -122.4435048, 37.7875969 -122.4435646, 9.9906840 -84.1504287, 37.7853936 -122.4093312, 37.7621911 -122.4352428, 37.7623119 -122.4350524, 37.7624107 -122.4359472, 37.7623663 -122.4355805, 37.7624148 -122.4374826, 37.7628952 -122.4350231, 37.7638864 -122.4332716, 37.7639457 -122.4336524, 37.7677871 -122.4291506, 37.7676579 -122.4291238, 37.7672427 -122.4291913, 37.7678942 -122.4291010, 37.7672911 -122.4288313, 37.7678572 -122.4287240, 37.7882810 -122.4034650, 37.7920316 -122.4158514, 37.7890998 -122.4166329, 37.7929197 -122.4160112, 37.7956283 -122.4167948, 37.7623781 -122.3973643, 37.7659491 -122.4499203, 37.7777491 -122.4166993, 37.7784932 -122.4145772, 37.7996086 -122.4360904, 37.7997022 -122.4362285, 37.7995695 -122.4391803, 37.8004874 -122.4475303, 37.7990605 -122.4430620, 37.7999719 -122.4359078, 37.7988819 -122.4428431, 37.8006033 -122.4309704, 37.7993017 -122.4395074, 37.7920664 -122.4230774, 37.7939521 -122.4233809, 37.7984888 -122.4242871, 37.7228751 -122.4492993, 37.7843417 -122.4083799, 37.7732193 -122.5094719, 37.7730526 -122.5100823, 37.7713376 -122.5094780, 37.7730623 -122.5099524, 37.7736359 -122.5098469, 37.7510820 -122.4365124, 37.7902660 -122.4225849, 37.7809200 -122.4207186, 37.7734715 -122.4716467, 37.7732222 -122.4720004, 37.7767410 -122.4722999, 37.7845288 -122.4729578, 37.7730544 -122.4719870, 37.7769513 -122.4723886, 37.7765902 -122.4721548, 37.7843461 -122.4727748, 37.7733124 -122.4719545, 37.7824738 -122.4731577, 37.7772126 -122.4718860, 37.7846952 -122.4724611, 37.7842309 -122.4726881, 37.7653711 -122.4768439, 37.7637253 -122.4773406, 37.7651265 -122.4774410, 37.7651763 -122.4771473, 37.7655195 -122.4775619, 37.7981369 -122.4040437, 37.7984038 -122.4019150, 37.7864698 -122.3980058, 37.7898678 -122.4007776, 37.7846489 -122.4070405, 37.7841266 -122.4084047, 37.7559775 -122.4764013, 37.7601283 -122.4767065, 37.7483732 -122.4761739, 37.7599874 -122.4769846, 37.7526487 -122.4761825, 37.7487336 -122.4758329, 37.7562359 -122.4767119, 37.7503718 -122.4760331, 37.7451990 -122.4756672, 37.7464646 -122.4760287, 37.7540793 -122.4765228, 37.7502718 -122.4762798, 37.7485093 -122.4758701, 37.7485547 -122.4762718, 37.7521106 -122.4764229, 37.7577989 -122.4768064, 37.7450879 -122.4759346, 37.7466328 -122.4757654, 37.7578031 -122.4765444, 37.7540943 -122.4762690, 37.7373068 -122.4751533, 37.7271849 -122.4746491, 37.7413368 -122.4756969, 37.7414759 -122.4754270, 37.7391897 -122.4752419, 37.7309279 -122.4747158, 37.7433289 -122.4758221, 37.7263033 -122.4752117, 37.7433139 -122.4754986, 37.7391607 -122.4755616, 37.7376007 -122.4754212, 37.7311504 -122.4746276, 37.7310304 -122.4745228, 37.7312595 -122.4750192, 37.7216548 -122.4754813, 37.7173134 -122.4730047, 37.7645489 -122.4431699, 37.7774736 -122.4588050, 37.7769033 -122.4586521, 37.7771471 -122.4583141, 37.7693989 -122.4293944, 37.7934341 -122.3952982, 37.7860637 -122.4568864, 37.7875574 -122.4467799, 37.7875773 -122.4469696, 37.7865288 -122.4532785, 37.7879454 -122.4407257, 37.7862633 -122.4553541, 37.7863128 -122.4536142, 37.7846320 -122.4644747, 37.7869618 -122.4499244, 37.7871212 -122.4472522, 37.7856633 -122.4588196, 37.7881142 -122.4408796, 37.7508325 -122.4439701, 37.7511656 -122.4385830, 37.7471736 -122.4441832, 37.7704174 -122.4452853, 37.7741217 -122.4463069, 37.7757135 -122.4466914, 37.7669041 -122.4479460, 37.7700367 -122.4454051, 37.7673187 -122.4464799, 37.7739565 -122.4465032, 37.7702021 -122.4449433, 37.7788494 -122.4469825, 37.7672489 -122.4466451, 37.7718076 -122.4457938, 37.7719176 -122.4456066, 37.7756581 -122.4463390, 37.7785087 -122.4472714, 37.7671329 -122.4465199, 37.7786914 -122.4474453, 37.7774219 -122.4469247, 37.7670424 -122.4462687, 37.7670868 -122.4479048, 37.7739120 -122.4458712, 37.7675684 -122.4448406, 37.7787954 -122.4472048, 37.7673422 -122.4448799, 37.7146481 -122.4719381, 37.7244830 -122.4024083, 37.7169648 -122.3891600, 37.8014600 -122.4315507, 37.8015624 -122.4313898, 37.7353189 -122.5046077, 37.7351796 -122.5004996, 37.7353189 -122.5026175, 37.7098977 -122.3930198, 37.7167597 -122.4413933, 37.7165622 -122.4408255, 37.7324082 -122.4059021, 37.7293737 -122.4150047, 37.7692570 -122.4291174, 37.7291475 -122.4193716, 37.7339634 -122.3907499, 37.7343056 -122.3907340, 37.7900667 -122.3942010, 37.7904673 -122.3932275, 37.7885774 -122.3909566, 37.7899382 -122.3923940, 37.7892706 -122.3935798, 37.7485022 -122.4589160, 37.7467379 -122.4583284, 37.7689281 -122.4356947, 37.7721358 -122.4307953, 37.7720055 -122.4303556, 37.7722134 -122.4305711, 37.7720894 -122.4301052, 37.7920140 -122.4815698, 37.7378001 -122.4514647, 37.7377651 -122.4517551, 37.7716459 -122.5036197, 37.7535905 -122.4954095, 37.7532925 -122.4955658, 37.7607702 -122.4960244, 37.7844955 -122.3952726, 37.7628573 -122.3908626, 37.7877434 -122.4216333, 37.7587055 -122.4631292, 37.7585995 -122.4640519, 37.7584595 -122.4639124, 37.7582899 -122.4638427, 37.7605076 -122.4406247, 8.5077722 125.9789017, 37.7240697 -122.4522341, 37.7259918 -122.4522582, 37.7240485 -122.4524859, 37.7254488 -122.4525023, 37.7208496 -122.4474323, 37.7211045 -122.4473020, 37.7345842 -122.4719275, 37.7675843 -122.4355739, 37.7730240 -122.4528432, 37.7732066 -122.4524004, 37.8056765 -122.4371753, 37.7791532 -122.5129411, 37.7653828 -122.4156514, 37.7655458 -122.4128777, 37.7758058 -122.4971516, 37.7770300 -122.4640939, 37.7771635 -122.4636541, 37.7773038 -122.4642640, 37.7811799 -122.4122670, 37.7901405 -122.3932844, 37.7897441 -122.3935526, 37.7900769 -122.3938342, 37.7900303 -122.3929249, 37.7898479 -122.3929436, 37.7900153 -122.3936678, 37.7902698 -122.3932093, 37.7897844 -122.3938369, 37.7896339 -122.3928472, 37.7895788 -122.3933326, 37.7902549 -122.3935874, 37.7896742 -122.3936921, 37.7899687 -122.3930777, 37.7898459 -122.3936974, 37.7901977 -122.3934346, 37.7895215 -122.3929732, 37.7645161 -122.4327886, 37.7774211 -122.4160269, 37.7646988 -122.4244233, 9.9857757 -84.1100058, 37.7517598 -122.4254173, 37.7518770 -122.4255434, 37.7518932 -122.4231645, 37.7520190 -122.4226923, 37.7520780 -122.4202115, 37.7521821 -122.4204097, 37.7846325 -122.4668493, 37.7848927 -122.4647404, 37.7847936 -122.4669432, 37.7848461 -122.4651260, 37.7850597 -122.4648309, 37.7687493 -122.4030378, 37.7661987 -122.4028340, 37.7698985 -122.4034375, 37.7664574 -122.4026543, 37.7674763 -122.4028943, 37.7685627 -122.4028608, 37.7672368 -122.4026933, 37.7697585 -122.4032336, 37.7933155 -122.4011185, 37.7940361 -122.4014297, 37.7948174 -122.4012457, 37.7937309 -122.4011453, 37.7941718 -122.4012902, 37.7953841 -122.3969718, 37.7945999 -122.4030014, 37.7951679 -122.3989406, 37.7946423 -122.4047127, 37.7943922 -122.4045947, 37.7945109 -122.3977014, 37.7957783 -122.4035808, 37.7932052 -122.4012151, 37.7941845 -122.4002602, 37.7409957 -122.4661951, 37.7412300 -122.4662434, 37.7420207 -122.4942784, 37.7423984 -122.4946065, 37.7481450 -122.4139340, 37.7485740 -122.4136090, 37.7483690 -122.4140740, 37.7470478 -122.4135113, 37.8015930 -122.4295070, 37.7693241 -122.4529187, 37.7691502 -122.4531333, 37.7779590 -122.4382840, 37.7486563 -122.4707231, 37.7779013 -122.4381208, 37.7488826 -122.4686623, 37.7490207 -122.4684000, 37.7764755 -122.4261860, 37.7624054 -122.4149348, 37.7985693 -122.4243300, 37.7452070 -122.4133817, 37.7988554 -122.4523659, 8.5070910 125.9786762, 37.7229652 -122.4525001, 37.7237354 -122.4562527, 37.7479625 -122.4589779, 37.7316164 -122.4533024, 37.7236887 -122.4560891, 37.7585862 -122.4660394, 37.7583654 -122.4701243, 37.7340666 -122.4990233, 37.7339718 -122.4968714, 37.7368504 -122.4537673, 37.7729932 -122.4769430, 37.7728380 -122.4764588, 37.7748147 -122.4548948, 37.7767640 -122.4757735, 37.7766315 -122.4760914, 37.7655815 -122.4152362, 37.7650043 -122.4193576, 37.7652037 -122.4161172, 37.7618958 -122.4151034, 37.7650786 -122.4153876, 37.7337604 -122.4934171, 37.7339214 -122.4896757, 37.7338345 -122.4917168, 37.7869084 -122.4565151, 37.7529699 -122.4341555, 37.7316291 -122.4513250, 37.7299803 -122.4512285, 37.7314275 -122.4532403, 37.8082789 -122.4141009, 37.7693980 -122.4521124, 37.7734254 -122.4663049, 37.8005296 -122.4475648, 37.7997086 -122.4362667, 37.8008427 -122.4276089, 37.7881551 -122.4090877, 37.7904499 -122.4055375, 37.7927644 -122.3927085, 37.8084123 -122.4100480, 37.8071167 -122.4156479, 37.8004525 -122.4105821, 37.7950657 -122.3999088, 37.7874729 -122.4078678, 37.7857365 -122.4096385, 37.7800009 -122.4167733, 37.7761697 -122.4215410, 37.7745791 -122.4341180, 37.7936998 -122.4213961, 37.7707344 -122.4660864, 37.8020728 -122.4125753, 37.7902111 -122.4076489, 37.7899758 -122.4071611, 37.7763563 -122.3958020, 37.7844521 -122.4711623, 37.7846142 -122.4708404, 37.7818385 -122.4923290, 37.7834186 -122.4924440, 37.7836006 -122.4901440, 37.7836650 -122.4884266, 37.7839554 -122.4820021, 37.7837954 -122.4853763, 37.7840959 -122.4787941, 37.7929233 -122.4178901, 37.7814696 -122.4933616, 37.7834210 -122.4925857, 37.7837098 -122.4905627, 37.7838163 -122.4880702, 37.7839687 -122.4848702, 37.7841139 -122.4816301, 37.7818213 -122.4924756, 37.7815116 -122.4935222, 37.7716631 -122.4016977, 37.7980264 -122.4502029, 37.7684770 -122.4199182, -31.4348336 -62.0871169, 37.7483700 -122.4141900 +Kongresshaus +Boucherie Louis Blanc, El Ksour, L'Étoile de Djurjura, Lecaille, Boucherie de Saint-Ouen, Boucherie chevaline, Gilles Vérot, Boucherie Frank Lecoeur, Boucherie Saint-Martin, Boucherie de l'Église, Boucherie Tizi Ouzou, Boucherie Duret, À la Bonne Viande, Mr et Mme Duciel, J. Maillet, Maxi Viande, Boucherie Aamar Hadad, Boucherie de l'Avenir, Boucherie du Rendez-vous, Boucherie de la Tour, P. Dupont, Boucherie des 3 Portes, Boucherie de la Porte d'Orléans, Boucheries Bernard, Boucherie Pinon, Charcuterie de Montmartre, Boucherie moderne, boucherie Toualbi, Le roi du saucisson, Boucherie Taine, Boucherie Kacher, Boucherie Atlas, Boucherie du Square - Le Bourdais, boucherie hallal, Boucherie Ducoeur, Boucherie de la place, Boucherie Bourdin, Boucherie de l'Europe, Boucherie S. Lefeuvre, LEAUTEY Traiteur, Le Comptoir de Chalosse, Boucherie Menguellet, M. & N. Petitot, Boucherie Chayma, Boucherie Laurent Dumont, Boucherie Thiebot, unknown, Boucherie maison Desfresnes, Saing Heng, Boucherie Tadfousse, Boucherie Anezi, Boucherie Koskas, Boucherie de la Passerelle, Charcuterie Pellé, Boucherie de la butte aux Cailles, Charcuterie traiteur et cuisine asiatique, Boucherie Économique, Boucherie Jourdan, Boucherie Donné, Boucherie Atlas, Marguerite, Boucherie Ibrahim, Boucherie du Père Corentin, Boucherie du rond point, Boucherie Saint-Charles, Boucherie Riquet, Boucherie Petard, Chez Laurent, Charcuterie, Charcuterie Champerret 03, Boucherie des Gravilliers, Boucherie Marx Dormoy, Boucherie des Fins Gourmets, Charcuterie du Panthéon, Boucherie Pilote, Terroir d'Auvergne, Foie Gras Luxe, Boucherie Lulu, Boucherie Brancion, Éric Nivot, Boucherie de Charonne, Milo, Boucherie Jacky Lesourd, Mas, Produits Basques, Charcuterie du Parc Montsouris, Boucherie du Marché, Traiteur chez Catherine, Volailler Pinel, Charcutier - Traiteur, Charcutier - Traiteur, A. Becquerel, Boucherie des gourmets, Boucherie du Limousin, Les Provinces, Roger Biliebault, Au Bouvier Normand, Christophe M, Boucherie Laurent Vincent, Boucherie J. Bellenfant, Boucherie Saint-Médard, B. Leduc, Boucherie Brancion, Boucherie Malitourne, Délices Viandes, Boucherie musulmane, Boucherie Chevy, Boucherie Brossard, Boucherie de l'Etoile, Boucherie Picard, Boucherie Leclerc Carboell, Boucherie Cambronne, Boucherie Durand, Andre Krief, Boucherie de la Place Monge, Leban Jacques, Boucherie Pinel, Aux Viandes, Kosher Discount, L. Langlais, Boucherie Sodivillette, Boucherie Mezouari, Boucherie La Celloise, Boucherie bellevilloise, Provins, Boucherie des Buttes, Boucherie Caidi, Boucherie Hour Heng, Boucherie du Square, Sylvie & Olivier Donné, Kasap, La boucherie, SH, Boucherie Gouraya, Mon petit poulet, Pétard, Boucherie des écoles, Boucherie nouvelle des Pyrénées, Boucherie Limousine, Mr & Mme Fontaine, Boucherie Moderne, Boucherie du marais, Boucherie Place des Vosges, Boucherie Murat, Boucherie Volailles, Boucherie Imazighen, Ibrahim, Boucherie Henrino, Boucherie du Limousin, Mogador, Boucherie d'Agadir, Atlas, Gilles Verot, Au Billot des Halles, Persillé, El Tast, Boucherie d'Alésia, Boucherie André, Boucherie Limousine, Boucherie Oubouch, ASI Boucherie, La boucherie végétarienne, Gabarina, Boucherie de la Paix, Boucherie Phnom Penh, Bouchepie, La Belle Epoque, Elahna, Rôtisserie Dufrenoy +38, 1008, 38, 1008 +7 +48.8327214 2.2760964, 48.8603916 2.3509546, 48.8968959 2.3816601, 48.8971044 2.3816782, 48.8944359 2.3921105, 48.8963293 2.3809167, 48.8964706 2.3824606, 48.8803216 2.3555510, 48.8804209 2.3551550, 48.8420645 2.3669152, 48.8700092 2.3544453, 48.8704779 2.3594577, 48.8708352 2.3536253, 48.8710508 2.3532908, 48.8711319 2.3608919, 48.8712985 2.3603301, 48.8719672 2.3578958, 48.8732120 2.3604731, 48.8771513 2.3577741, 48.8796187 2.3586844, 48.8796271 2.3569957, 48.8796716 2.3557085, 48.8796874 2.3567074, 48.8827872 2.3593240, 48.8840883 2.3598171, 48.8446084 2.3392295, 48.8449600 2.3396186, 48.8449967 2.3394482, 48.8462155 2.3403061, 48.8462550 2.3401238, 48.8765194 2.3605612, 48.8974957 2.3823085, 48.8963910 2.3798810, 48.8482708 2.3312661, 48.8359690 2.3340767, 48.8382235 2.3363856, 48.8437715 2.3390263, 48.8560486 2.3467133, 48.8658457 2.3524637, 48.8744335 2.3573446, 48.8762234 2.3608400, 48.8835576 2.3736618, 48.8865179 2.3848229, 48.8877259 2.3894378, 48.8192964 2.3591989, 48.8229624 2.3580348, 48.8262502 2.3570174, 48.8295593 2.3560541, 48.8305073 2.3557566, 48.8348296 2.3577170, 48.8351107 2.3579281, 48.8375764 2.3598054, 48.8623165 2.3666929, 48.8783169 2.3540053, 48.8818847 2.3508263, 48.8826195 2.3501566, 48.8839948 2.3493141, 48.8857449 2.3493535, 48.8876365 2.3494057, 48.8918558 2.3492806, 48.8950486 2.3466320, 48.8676302 2.3625667, 48.8680531 2.3585597, 48.8683666 2.3589049, 48.8693277 2.3556037, 48.8756902 2.3567777, 48.8780893 2.3554184, 48.8384322 2.2520706, 48.8316621 2.2882617, 48.8362012 2.2940777, 48.8374136 2.2969290, 48.8384270 2.2983451, 48.8387612 2.2994894, 48.8409611 2.3058982, 48.8415495 2.3082701, 48.8419188 2.3094760, 48.8425137 2.3109370, 48.8440021 2.3162774, 48.8443559 2.3175408, 48.8445760 2.3184704, 48.8447459 2.3190992, 48.8467697 2.3268120, 48.8470410 2.3265393, 48.8480825 2.3306234, 48.8487650 2.3332475, 48.8489628 2.3336678, 48.8490185 2.3403600, 48.8492136 2.3379669, 48.8500171 2.3422854, 48.8528177 2.3434981, 48.8549249 2.3452782, 48.8553028 2.3456639, 48.8613464 2.3488269, 48.8670393 2.3478677, 48.8672649 2.3514423, 48.8674456 2.3496127, 48.8681141 2.3517571, 48.8687044 2.3521383, 48.8695579 2.3508803, 48.8725205 2.3501052, 48.8738367 2.3506135, 48.8770339 2.3514356, 48.8773993 2.3515289, 48.8783169 2.3540053, 48.8787290 2.3543515, 48.8467489 2.2798138, 48.8535777 2.3136037, 48.8235273 2.3233179, 48.8239028 2.3233683, 48.8254753 2.3241865, 48.8267351 2.3248103, 48.8272167 2.3255910, 48.8284323 2.3252147, 48.8289464 2.3237729, 48.8292665 2.3228809, 48.8292996 2.3224097, 48.8348239 2.3198642, 48.8463977 2.3177702, 48.8464112 2.3177508, 48.8519694 2.3139420, 48.8528466 2.3135170, 48.8659329 2.3141789, 48.8663996 2.3142218, 48.8703388 2.3125872, 48.8651526 2.3511533, 48.8656342 2.3516950, 48.8695009 2.3545087, 48.8718920 2.3479551, 48.8735429 2.3479558, 48.8755508 2.3497655, 48.8738368 2.2550936, 48.8738487 2.2551117, 48.8303042 2.3685309, 48.8404642 2.2516455, 48.8412775 2.2515588, 48.8424395 2.2516933, 48.8290200 2.3107653, 48.8447688 2.3428095, 48.8464339 2.3444080, 48.8495895 2.3445880, 48.8502122 2.3449806, 48.8517722 2.3565641, 48.8522032 2.3554318, 48.8523983 2.3569490, 48.8529164 2.3465997, 48.8554946 2.3602332, 48.8565360 2.3610412, 48.8569566 2.3615565, 48.8578434 2.3621328, 48.8601930 2.3644751, 48.8611558 2.3645006, 48.8614159 2.3499657, 48.8621500 2.3503755, 48.8643601 2.3516084, 48.8651081 2.3520308, 48.8668450 2.3655781, 48.8672552 2.3652881, 48.8679844 2.3641821, 48.8683402 2.3635832, 48.8701433 2.3548693, 48.8707223 2.3551958, 48.8712868 2.3555105, 48.8717783 2.3602447, 48.8776303 2.3564128, 48.8792931 2.3572578, 48.8720509 2.3432412, 48.8720656 2.3432419, 48.8729960 2.3431243, 48.8756621 2.3433786, 48.8761545 2.3452626, 48.8768530 2.3473939, 48.8799559 2.3592582, 48.8812324 2.3646174, 48.8722782 2.3393113, 48.8723082 2.3384507, 48.8729111 2.3342123, 48.8751518 2.3267584, 48.8764039 2.3274861, 48.8807350 2.3516831, 48.8810009 2.3503960, 48.8810723 2.3271105, 48.8815819 2.3270150, 48.8821360 2.3413004, 48.8823601 2.3367581, 48.8828198 2.3447726, 48.8832720 2.3336875, 48.8842654 2.3298791, 48.8379237 2.3197967, 48.8822451 2.3509013, 48.8828996 2.3503181, 48.8598799 2.3763537, 48.8601897 2.3724976, 48.8607736 2.3748701, 48.8625390 2.3717045, 48.8630479 2.3710367, 48.8664130 2.3654583, 48.8667862 2.3639364, 48.8728728 2.3589035, 48.8788353 2.3555144, 48.8653611 2.3505053, 48.8657723 2.3505727, 48.8723790 2.3541774, 48.8732984 2.3547713, 48.8750886 2.3559148, 48.8433518 2.3657747, 48.8447303 2.3729353, 48.8293150 2.3113205, 48.8869789 2.2866785, 48.8311660 2.3876949, 48.8323684 2.3896078, 48.8365265 2.2770271, 48.8370403 2.2618654, 48.8375575 2.2775266, 48.8387424 2.2595818, 48.8392530 2.2656814, 48.8403262 2.2801181, 48.8744065 2.3472697, 48.8762524 2.3464237, 48.8777253 2.3476578, 48.8798154 2.3494941, 48.8802469 2.3532268, 48.8803092 2.3514400, 48.8282912 2.3116506, 48.8448715 2.3249504, 48.8455418 2.3256055, 48.8461364 2.3261845, 48.8334512 2.3773071, 48.8619643 2.3483196, 48.8428102 2.3291455, 48.8451158 2.3284845, 48.8729002 2.3099188, 48.8748944 2.3090375, 48.8805084 2.3619274, 48.8811163 2.3636137, 48.8814920 2.3650358, 48.8819481 2.3663081, 48.8821973 2.3677429, 48.8832816 2.3717862, 48.8834479 2.3724248, 48.8841277 2.3750080, 48.8844696 2.3763040, 48.8856059 2.3806389, 48.8862712 2.3824690, 48.8867900 2.3851598, 48.8883302 2.3903681, 48.8885652 2.3912590, 48.8895001 2.3931375, 48.8905354 2.3938323, 48.8822808 2.3686254, 48.8839235 2.3748959, 48.8842553 2.3761798, 48.8848855 2.3787639, 48.8861901 2.3835629, 48.8875304 2.3886758, 48.8880082 2.3905157, 48.8886533 2.3929408, 48.8894636 2.3912541, 48.8898985 2.3911637, 48.8904093 2.3921447, 48.8912454 2.3912205, 48.8918602 2.3905517, 48.8919168 2.3928699, 48.8919233 2.3904964, 48.8925308 2.3940044, 48.8929052 2.3932987, 48.8930391 2.3915286, 48.8933701 2.3931171, 48.8448830 2.2574858, 48.8462446 2.2581679, 48.8530791 2.2620776, 48.8664096 2.2716127, 48.8673347 2.2724080, 48.8756208 2.2813251, 48.8786037 2.2841741, 48.8794693 2.2825111, 48.8805699 2.2850311, 48.8829245 2.2875164, 48.8847893 2.2904750, 48.8853376 2.2931719, 48.8872546 2.2946838, 48.8228627 2.3149622, 48.8247737 2.3179297, 48.8249559 2.3171091, 48.8252965 2.3154992, 48.8255525 2.3142323, 48.8256142 2.3141184, 48.8261702 2.3114499, 48.8274334 2.3071536, 48.8286696 2.3015319, 48.8289522 2.3000127, 48.8293065 2.2986273, 48.8296162 2.2972213, 48.8319721 2.2901175, 48.8324058 2.2891585, 48.8340470 2.2853092, 48.8354170 2.2813491, 48.8355513 2.2806446, 48.8359795 2.2793305, 48.8370231 2.2610664, 48.8378122 2.2626653, 48.8398471 2.2565449, 48.8411304 2.2563071, 48.8422237 2.2561834, 48.8192663 2.3610596, 48.8193318 2.3611912, 48.8193565 2.3578968, 48.8195634 2.3448551, 48.8196132 2.3448551, 48.8196621 2.3453672, 48.8197873 2.3632571, 48.8200051 2.3466151, 48.8202869 2.3647953, 48.8206389 2.3658740, 48.8207390 2.3558721, 48.8214459 2.3342952, 48.8216704 2.3688164, 48.8218197 2.3691946, 48.8222543 2.3708598, 48.8226656 2.3285074, 48.8228257 2.3726409, 48.8229118 2.3157193, 48.8232094 2.3163875, 48.8233895 2.3743456, 48.8235167 2.3249477, 48.8247333 2.3195621, 48.8263229 2.3823839, 48.8264339 2.3834650, 48.8265062 2.3822430, 48.8326681 2.3996599, 48.8331476 2.4009146, 48.8338663 2.4030288, 48.8346646 2.4049652, 48.8352437 2.4059002, 48.8357014 2.4066393, 48.8364271 2.4074011, 48.8373073 2.4078424, 48.8382325 2.4081372, 48.8390585 2.4083480, 48.8397616 2.4086730, 48.8406938 2.4088868, 48.8426064 2.4094936, 48.8439256 2.4099203, 48.8451325 2.4103546, 48.8478846 2.4110636, 48.8496662 2.4111570, 48.8502378 2.4110284, 48.8510772 2.4108762, 48.8538165 2.4103636, 48.8546900 2.4101501, 48.8561798 2.4098935, 48.8569773 2.4097974, 48.8578974 2.4096362, 48.8587857 2.4094795, 48.8605276 2.4090828, 48.8614501 2.4090164, 48.8632295 2.4086587, 48.8640787 2.4084869, 48.8643046 2.4080903, 48.8651224 2.4085940, 48.8664402 2.4086991, 48.8669659 2.4086773, 48.8689783 2.4087383, 48.8698486 2.4086651, 48.8712943 2.4085633, 48.8726305 2.4083817, 48.8768457 2.4063185, 48.8776389 2.4060356, 48.8778355 2.4051635, 48.8780616 2.4037542, 48.8792647 2.4009938, 48.8799495 2.4004613, 48.8842999 2.3966316, 48.8862478 2.3953580, 48.8879609 2.2999414, 48.8884520 2.2940553, 48.8891016 2.3937096, 48.8893907 2.3029507, 48.8948901 2.3826836, 48.8951379 2.3160713, 48.8956218 2.3937555, 48.8959571 2.3934899, 48.8963801 2.3930499, 48.8965259 2.3841369, 48.8972757 2.3856006, 48.8973603 2.3876025, 48.8973949 2.3244951, 48.8974056 2.3834148, 48.8974293 2.3258581, 48.8975095 2.3307294, 48.8981550 2.3589474, 48.8983592 2.3601862, 48.8984051 2.3620526, 48.8984983 2.3694058, 48.8985205 2.3758036, 48.8985274 2.3772560, 48.8985315 2.3712885, 48.8986046 2.3701712, 48.8987316 2.3785749, 48.8310001 2.2830092, 48.8314025 2.2857072, 48.8315587 2.2815449, 48.8333719 2.2706960, 48.8338400 2.2715979, 48.8339930 2.2750804, 48.8343417 2.2726141, 48.8343875 2.2738402, 48.8249970 2.3180094, 48.8252522 2.3169551, 48.8255512 2.3156213, 48.8262082 2.3126501, 48.8264164 2.3115827, 48.8265128 2.3112200, 48.8270818 2.3086567, 48.8452584 2.2590484, 48.8566799 2.2666210, 48.8569748 2.2679116, 48.8575521 2.2707259, 48.8905970 2.3903936, 48.8913590 2.3895808, 48.8922020 2.3883760, 48.8929739 2.3891637, 48.8937762 2.3908017, 48.8202063 2.3383703, 48.8203511 2.3377183, 48.8205007 2.3370653, 48.8207884 2.3357523, 48.8210695 2.3344691, 48.8214921 2.3325772, 48.8222032 2.3292203, 48.8223810 2.3285534, 48.8239836 2.3214324, 48.8242743 2.3201401, 48.8270483 2.3076074, 48.8285130 2.3009724, 48.8295410 2.2954475, 48.8298025 2.2952076, 48.8305540 2.2929153, 48.8314260 2.2907886, 48.8320101 2.2894748, 48.8355635 2.2797146, 48.8191396 2.3443212, 48.8193642 2.3433758, 48.8193856 2.3571772, 48.8196280 2.3411500, 48.8196700 2.3470271, 48.8199055 2.3396917, 48.8201065 2.3658958, 48.8207406 2.3548910, 48.8233064 2.3751957, 48.8234993 2.3756800, 48.8290861 2.3899484, 48.8295455 2.3910934, 48.8297930 2.3917387, 48.8334905 2.4027697, 48.8358113 2.4072860, 48.8363173 2.4077835, 48.8391543 2.4089219, 48.8426328 2.4100351, 48.8455027 2.4109636, 48.8489404 2.4115704, 48.8497367 2.4115318, 48.8506811 2.4113316, 48.8515936 2.4110931, 48.8525194 2.4110643, 48.8539736 2.4107007, 48.8542638 2.4106361, 48.8551834 2.4105688, 48.8563915 2.4105559, 48.8574157 2.4100859, 48.8584278 2.4099966, 48.8593550 2.4098412, 48.8601953 2.4096185, 48.8612124 2.4095098, 48.8621677 2.4093408, 48.8630535 2.4091593, 48.8650534 2.4089196, 48.8664180 2.4091839, 48.8688630 2.4091039, 48.8696862 2.4090668, 48.8702094 2.4089823, 48.8716906 2.4088779, 48.8732130 2.4086670, 48.8740036 2.4084322, 48.8751737 2.4079206, 48.8756315 2.4077036, 48.8771100 2.4070857, 48.8771159 2.4071056, 48.8773690 2.4067931, 48.8786184 2.4027129, 48.8808459 2.3974793, 48.8864275 2.3961784, 48.8874087 2.3949446, 48.8989710 2.3788093, 48.8990047 2.3808442, 48.8981765 2.3448497, 48.8987081 2.3646946, 48.8987552 2.3675798, 48.8987827 2.3688590, 48.8988196 2.3700663, 48.8988204 2.3700431, 48.8988268 2.3717060, 48.8988448 2.3727012, 48.8988640 2.3734800, 48.8989406 2.3772841, 48.8856475 2.3701793, 48.8858968 2.3705970, 48.8861789 2.3709630, 48.8871470 2.3721213, 48.8873799 2.3730541, 48.8877439 2.3728500, 48.8880664 2.3738887, 48.8885537 2.3734029, 48.8888905 2.3741639, 48.8890179 2.3750468, 48.8895800 2.3750408, 48.8900573 2.3763670, 48.8902691 2.3759069, 48.8906584 2.3771469, 48.8912961 2.3771989, 48.8914088 2.3780837, 48.8919393 2.3780075, 48.8931947 2.3797585, 48.8936420 2.3803448, 48.8938110 2.3811558, 48.8944078 2.3813523, 48.8451524 2.2570652, 48.8487559 2.2591390, 48.8608787 2.2667205, 48.8621397 2.2675911, 48.8630181 2.2700066, 48.8635246 2.2712622, 48.8706028 2.2745002, 48.8715073 2.2730209, 48.8760170 2.2813491, 48.8858976 2.2915033, 48.8886117 2.3005037, 48.8906828 2.3048130, 48.8913741 2.3062589, 48.8960512 2.3176664, 48.8960577 2.3176874, 48.8973038 2.3209697, 48.8979652 2.3395599, 48.8982449 2.3288381, 48.8983303 2.3382367, 48.8936378 2.3869350, 48.8942556 2.3886316, 48.8945116 2.3891665, 48.8946702 2.3860976, 48.8947497 2.3900298, 48.8947735 2.3859989, 48.8958462 2.3863296, 48.8964057 2.3873760, 48.8967647 2.3855503, 48.8967938 2.3881870, 48.8971482 2.3861079, 48.8348910 2.2817529, 48.8873582 2.3959361, 48.8984401 2.3634393, 48.8984692 2.3660958, 48.8985035 2.3668560, 48.8986483 2.3836394, 48.8987772 2.3843426, 48.8990591 2.3828932, 48.8683940 2.3099783, 48.8691823 2.3084282, 48.8695603 2.3072461, 48.8709620 2.3048760, 48.8713807 2.3035634, 48.8729760 2.2984473, 48.8731641 2.2978786, 48.8909915 2.2972236, 48.8322991 2.3309035, 48.8367784 2.3347997, 48.8420981 2.3381045, 48.8785146 2.3543340, 48.8441278 2.3810013, 48.8452302 2.3774830, 48.8269602 2.3789833, 48.8683178 2.3230336, 48.8436748 2.3737917, 48.8493230 2.3748029, 48.8527245 2.3713626, 48.8401191 2.3239877, 48.8403104 2.3240127, 48.8410048 2.3247606, 48.8423240 2.3244737, 48.8644518 2.3500922, 48.8744843 2.3553792, 48.8771987 2.3561104, 48.8384851 2.3654772, 48.8385497 2.3627952, 48.8386777 2.3669081, 48.8391856 2.3650018, 48.8395364 2.3638511, 48.8398984 2.3656842, 48.8400121 2.3629275, 48.8404838 2.3648787, 48.8292993 2.3771286, 48.8283905 2.3779707, 48.8461478 2.2725622, 48.8506053 2.2773965, 48.8519984 2.2793673, 48.8752168 2.3285048, 48.8689598 2.2834084, 48.8326617 2.3770266, 48.8340405 2.3765888, 48.8487069 2.2830307, 48.8490039 2.2819421, 48.8500716 2.2850155, 48.8511676 2.2869417, 48.8513779 2.2860734, 48.8516019 2.2865051, 48.8782816 2.3620545, 48.8793868 2.3622499, 48.8797715 2.3623814, 48.8799733 2.3639019 +Doris Ellen Baer +Heidelberg Marriott Hotel, Schwimmverein Mannheim e.V., Hallenbad, Nichtschwimmerbecken, Babybecken, Schwimmerbecken, Babybecken, Schwimmbad Siegfriedbrunnen, Pension Berger, Heidelberg Suites, Crowne Plaza Heidelberg, Freibad Freizeitbad, Wellenbad, Außenbecken, Kinderschwimmbecken, Duttweiler Freibad, Hallen-Freibad, Grosses Schwimmerbecken (50m Bahnen) + Sprungbecken (1er, 3er), Nichtschwimmerbecken mit Edelstahl Wasserrutsche, AQWA Freibad, Freibad Ladenburg, Nichtschwimmerbecken, Mümlingtal Bad Hetzbach, Hallenbad Kirchardt, Warmstrudelbecken, Hallenbad Einhausen, SaSch!, Kreishallenbad Maxdorf, Freibad Heidelsheim, Crowne Plaza Heidelberg, Hallenbad, Freibad FaMOS +1 +Cafe Arista, cafe, Santino's Diner, Cafe K, The Beachhouse, Peter's Yard, Olly Bongo's, Caffe Nero, Cafe Marmalade, Starbucks, Snax Corner, WRVS, Aroma Coffee Bar, Starbucks, The Treehouse Cafe, Cafe Grande, Starbucks Coffee, Zulu Lounge, Starbucks, Rocket, Pavilion Cafe, Cafe S. Luca, No. 39 Coffee House, Traverse Theatre Bar/cafe, Cafe Domenico's, Relish, Rocksalt Café Deli, Cafe Truva, The Roamin' Nose, Shore Deli Co, Clock Cafe, Renroc, Mitchaell's Cafe, Caffè Nero, Coffee Mavi, Scoff, Alexander's, Lovecrumbs, Preacher's Patisserie, Starbucks, Wild Wood Cafe, Frisky, St. Giles' Cathedral Café, Patisserie Valerie, Caffe Espress, Starbucks Coffee, Glass & Thompson, Costa Coffee, Costa, Bluebird, Cafe Camino, Tiki Cafe, O'Briens, Starbucks, Costa Coffee, Dovecot Cafe, Firth of Froth, Redcoat cafe, The City Cafe, Loudon's Cafe & Bakery, Fresco, Black Medicine, Artisan Roast, Nardini, La Barantine, Project Coffee, Meltmongers, Costa, The Scranary, Popeye's, Jamieson's Victorian Tearoom, Deli 194, The Blue Bean Coffee House, Hendersons, The Pastures, Cobbs Marchmont, The Haven, The Gardener's Cottage, Milk Cafe, Pickle & Custard, Pep & Fodder, Baguette Express, Caffe Nero, Starbucks Coffee, Caffe Centro, Eteaket Tea Boutique, Piece Box, Bruno's Diner, The Clock, Le Petit Repas, Jacob, Starbucks, Caffe Nero, Fit Food Bistro, The Riverside Kitchen Ltd, Bakehouse, Artisan Roast, Caffe Nero, Starbucks, Cafe Braw, Caffe Nero, Saint Giles Cafe, Wellington Coffee, Wee Coffee Bar, mint cafe, Caffe Nero, Costa, Castello Coffee Co, VinCaffe, Costa, Coffee House, Southern Cross Cafe, Royal Cafe, Circus Cafe, Cafe Jacques, Starbucks, Mimi's Bakehouse, Cafe Truva, Brass & Copper, Patisserie Valerie, Cafe Vivo, Clarinda's Tearoom, Looking Glass Books, Cafe on the Corner, The Forest, Asti, Nom De Plume, Costa, Costa, Cafe Class, The Purple Pig Cafe, Embo, I love Cafe, Costa, Blackwood Coffee, La Cerise, Let Me Eat, Serenity Cafe, Library Cafe, Crumbs Cafe, Casa Angelina, Street Bar, Happiee Daze, Peter's Yard, Empire Cafe, Cafe Florentine, Fountain Cafe, Affogato, Costa, Leaf & Bean, The Open Door, The Clock, Cafe Blush, Morningside Kitchen, Latte Dah, Broughton Delicatessan, Printworks Coffee Company, La Locanda, Deacon's House Cafe, Starbucks, Costa, Marie Delices, The Manna House, Snax Cafe, Machina Espresso, The Tide, Costa, Le Cafe Bleu, The Chocolate Tree, Undercroft, Starbucks, Fair Trade Coffee Shop, The Square, Mimi's Bakehouse, Gran Caffe, The Hideout, Hula Juice Bar and Gallery, The Corner Coffee Bar, The Elephant House, Salt Cafe, Fortitude Coffee Merchants, FYUL, Cafe Cockburn, Arts Cafe, Caffe Piccolo, Zaza's, Cafe Keno, Just the Ticket, Forsyth's Tea Room, Globe Cafe, Zebra Coffee Co., Has Beans, Cuttea Sark, Caffeine Drip, Starbucks, Leo & Ted, Pekoetea, Cafe Truva, The Genuine Article, Cafe Tartine, Cairngorm, Cortado, The Little Inn, Castle Cafe, Glenha's Deli and Café, Parliament Cafe, Waka, Colletti & Co, L'Echoppe, Coffee Magic, Bramble, Cafe Casablanca, GAIA Italian Delicatessen, Yellow Bench, Sandwich Express, Word of Mouth Bistro Cafe, Pera, Starbucks Coffee, Fazeli's Deli, Frederick Coffee House, Latitude Coffee, Valvona and Crolla, 9, Halo Coffee CO, Zea, Sandwich Culture, Viet Nam House, Costa, Odds & Ends Coffee, rabbie's, Cafe Efe & Bistro, Deli Fresco, The Bridge Community Café, Cafe Plus, Polentoni, The Filling Place, The Green Cat, LK Coffee & More, Gorgie Farm Cafe, Troy, Cucina LC, Kung Fu Tea, nutan's, Quick and Plenty Cafe, Stag Espresso, Elm Rose Cafe Diner, Costa, Starbucks, CJ's Cafe, Khartoum, Yawn, Café Portrait, Falko Konditormeister, Marshmallow Valley, Babies and Bumps, Burr & Co, The Milkman, Dicle Cafe, Tupiniquim, Fruitmarket Gallery, Scottish Storytelling Centre, Pavilion Coffee House, Caffe Nero, Starbucks, Crumbs of Portobello, Coffee drive +de:Heidelberg, de:Heidelberg +Sainsbury's Local, Holder Planning, Underground Solu'shn, Waterstones, Johnstons Cashmere, Thistle Do Nicely, News Corner, D.J. Alexander, Present, Royal Mile Sweets, Tollcross Newsagent, Leatherwork, Peter Trainer - Corporate Services Ltd, The 3 Stooges, Direct Dry Cleaning, Zone Eros, Smooch, Cabaret, West Port News, Lily West, Edinburgh Books, Herman Brown, Boardwise, McAlister Matheson Music Ltd, GT II Newsagent, Tesco Metro, Sainsbury's Local, Thomas Cook, The Scotsman, Flight Centre, Greggs, Shelter, Sta Travel, SimplyFixIt, Coda Music, I Love Scotland, Best in Scotland, Bonkers, Ernest Jones, Twenty Twenty, Jordan Valley, Scotmid, Alpine Bikes, I.J. Mellis, Margiotta, Edinburgh Bicycle Co-operative, McPherson Day Gallery, John Hall, Phase, Christopher Ness Jewellery, Sandy Jones, Tesco Express, Louis Vuitton, Central Superstore, Egg, Real Foods, Something Fishy, lifestyle express, M&S Simply Food, Accessorize, BHS, Great Scot, Holland & Barrett, Fraser Hart, H&M, Kanoo Travel, M&S, Monsoon, O2, Romanes & Paterson, Swatch, EE, The Works, Topshop / Topman, Vodafone, Dr. Martens, Whittard, 3 Store, Cotswold, Tiso, Next, Potter Shop, John Lewis, Sainsbury's Local, Margiotta, Edina Lock & Key Co. Ltd., Build-a-bear Workshop, Carphone Warehouse, Coral, Currys PCWorld, Flight Centre, Three, HMV, Holland & Barrett, Rae Macintosh, McGraths, Mountain Warehouse, New Look, O2, Oddbins, Optical Express, EE, Patissier Maxine, Sainsbury's Local, Scotbet, Specsavers Opticians, Thomson, Urban Outfitters, Edinburgh Woollen Mill, Allsaints, Ann Summers, Clarks, Samsung, Footlocker, Gap, H&M, Hotter, Levi's, Office, Russell Bromley, Size?, Superdrug, The Body Shop, The Perfume Shop, Lush Spa, Thomas Sabo, Ben's Cookies, USC, Zara, fat face, Cath Kidston, Charles Tyrwhitt, Jones, Kiehl's, Lakeland, TM Lewin, Trotters opticians, Co-operative Food, Crombie's of Edinburgh, Blackwells, Waterstone's, High & Mighty, Trailfinders, Day-Today, Paperchase, Links, Burberry, Mulberry, G-Star, Nespresso, Reiss, JoJo Maman Bebe, Tommy Hilfiger, North America Travel Service, Kurt Geiger, Boss, Swarovski, Pandora, Pepperberry, Sole, Miss Selfridge, Virgin Media, JD, Crabtree & Evelyn, River Island, Swarovski, EE, International Newsagents, Argos, Patisserie Valerie, J & S Newsagents, Premier, Lifestyle Express, Historic Connections Jewellery Designers, Castle Fine Art, Pen Shop, Whistles, Jo Malone, White Stuff, Hamilton & Inches, Arran Aromatics, Jack Wills, Sweaty Betty, Co-operative Food, Space.NK, Anta, schuh, The North Face, Pretty Green, Barbour, Radley, Alistir Wood Tait, Robert Anthony, Goodwins, Rogerson Footwear, ecco, Watch, John Whyte, Trespass, Laing, Jigsaw, Moss, Hobbs, LK Bennett, Anthropologie, Ede & Ravenscroft, Brora, Sassoon, Keir Street News, Fudge House, Laura Ashley, Left Luggage, Lyon & Turnbull Auctionhouse, Coast, Mint Velvet, Phase Eight, lululemon athletica, McColl's, Church's, Bibi's Cake Boutique, Karen Millen, Molton Brown, The Kooples, Goodwins, Duncanson & Edwards, Ottimo Lighting, Harvey Jones, Fired Earth, Greggs, Nevisport, Farrow & Ball, Craighead & Woolf, Belle-Eve, Run And Become, City Barbers, James Ness, James Alexander, Ruffians, Shuropidy, Boscolo Bathrooms, Vincent Bell, Jeffreys Interiors, Ted & Muffy, Cheynes, Villeneuve Wines, Natural Selection Food, Life Story, Alex Hair Studio, Vino, Broughton News, Narcissus, Coco Chocolate, Allan Hair, Curiouser, O2, Thorntons, AMERIkandy, Ice Store, H Samuel, Burton, Warren James, I Luv Scotland, Next, Accessorize, Mountain Warehouse, JD, Perfume Shop, McColl's, Carphone Warehouse, Razor Sharp, Clintons, Garage, Claire's, Millie's Cookies, Card Factory, Tiger, Sports Direct, Look, River Island, Books4Less, Superdrug, Ryman, Michael Kors, Barrhead Travel, EE, Wallis, Poundland, Dorothy Perkins, ManKind, Officers Club, Hawkin's Bazaar, Quiz, Vision Express, Ernest Jones, Black & Lizars, Shrub: Swap&ReuseHub, Sculleries, Gordon Fraser, Barnardo's, Sharon Robertson Hair, Green Grocer, Saorsa Art Gallery, Boombarbers, Stockbridge Store, debra, Just Dogs, Eden, Dick's, Sheila Fleet, Catalog Ltd, Gorgeous, Spanish Fine Foods, Aesop, Antiques, Frank Lindsay, Vagabond, Reiss, Alpha Art, Vino, Ian Smith Design, New Town Desigh, Bethany, The Floatarium, Rose Street Barbers, The Players Lounge, Joules, Daniel Henderson, Hawico, Hawes & Curtis, reddog music, Oliver Bonas, Dunedin, Gift World, Rox, Kitchens International, Treehouse, Salut, W Armstrong & Son, Hewats, Napiers, Richer Sounds, Specsavers, Schuh, Premier, bath store, La Novia, James Scott, Ian Dickson Travel, Vans, Beerhive, Penhaligon's, Duncan McLaren, Dickson Reid, Pride, Joseph Bonnar, Hidden Hearing, Xile, Argento, Dune, Bottledog, Ottavio, Orvis, Scribbler, FOPP, STA Travel, amplifon, Johnsons, Poundstretcher, Moleta Munro, Tesco Express, Game, Stewart Travel, L'Occitaine, Verve, Shakeaway, Stockbridge Kitchen, Miss Bizio Couture, Sainsbury's Local, Afrin Barber, Armchair Books, Peter Bell Books, Owl & Lion, Scottish Pictures, savers, Edinburgh Clothing Company, Flight Centre, Global News, House of Cashmere, Ladbrokes, Netversal, Heritage of Edinburgh, Ripping Records, Ryman, Shoe Zone, The Scotland Shop, Yekta, Cash Generator, Forbidden Planet, Jacob, Mace, Bamboo Boutique, Knights Barber, Licks Cake Design, Ling Ling Massage, The Colour Room, Bacco Wine, Blue, Trigg, Zen Kichen, Edina Paint Co, Futur Property Auctions, Gamefish, Handbag Heaven, Sally, George Pirie Antiques, Urban, Torrance Gallery, Lonsdale & Dutch, McAree Brother, McLean Forth Properties, Newtown Interiors, Prontaprint, The Wind Section, designer-lights.com, Arden Property Management, Rachel Scott Bridal Couture, Ritz, Sturrock, Armstrong &Thomson, relove, Mr Purves, The Remedy Rooms, Ampersand, Linzi Crawford, Aitken Nairn, Dunpark, Carolyn Baxtre Dress and Hair Boutique, Coline Blaikie and Co, London Street Grocery, Absolute Nail and Beauty, Dj Alexander, Marwicks Solicitors and Estate Agents, The Ringmaker, Arthaus, Broughton Place Hair and Beauty, Dragonfly, Lamesley Briddal, Big Ideas, Drift, The Mutts Nuts, Bacchus Antiques, Black Box, Golden Hare Books, The Christmas Shop, The Isle of Skye Candle Company, Bill Baber Knitwear, Hijinks, Sublime Hair Design, Concrete wardrobe, JoeD Edi, Shamoon's, boombarbers, PI-KU Collective, Avizandum, Deadhead Comics, Maple Arts & picture framing, Still Life, Transreal, Venus Flytrap Tattoo, Mama Said, Miss Katie Cupcake, Old Town Context, Swish, Whisky World, Broughton Property Management, Den of Iniquity, Cavanagh Antiques, Enchantment, Forever Scotland, Hair By Alfie, Pie in the Sky, The Frayed Hem, Whiplash Trash, Cutie House, Eden, Cookie, Route One, The Scotsman, The Woollen Mill, Victor Scott Kilt Maker, Crest of Edinburgh, Ness, Royal Mile Crystal, Games Workshop, Hi-Fi Corner, Picture Framer, Powerhouse Fitness, Ladbrokes, mC'm, Iconic, News Experss, Purple Glamour, Hawico, Mr Wood's Fossils, W. Armstrong & Son, Cutz Barbers, Mail Boxes Etc., Marie Curie Cancer Care, Sally, The Phone Box, Ballantrae Cashmere, Best Of Scottish, Edinburgh Cashmere Boutique, Fudge Kitchen, Heritage of Scotland, House of Cashmere, Johnstons of Elgin, Palenque, Real Scot Shop, Really Scottish, Royal Mile Jewellery, The Nutcracker Christmas Shop, Ali Willmore Hairdressing, Antiques, Carson Clark Gallery, Kilberry Bagpipes, Tete a Tete Foto, Cycle Scotland, Old Town Tattoo, Chic, Cyan, Harmony Complementary Therapies, Scottish Regimental Store, Studio XIII Gallery, Tangram, Barnets, Celtic Craft Centre, Cashmere And Kilt Centre, Geoffrey (Tailor) Kiltmaker, John Morrison Kiltmakers, Ladbrokes, The Bonnie Blue, The Tappit Hen, Wee Gift Shop, Whisky & Wine, Hector Russell, Whisky & Wine, Whiski Rooms, Corniche, Aquila, Lickety Splits, Saks, The Scottish Grocer, Cranachan & Crowdie, Eyden, Demijohn, Howies, I.J. Mellis Cheesemonger, Swish, The Whisky Shop, Clarksons, Museum CONTEXT, Walker Slater, British Heart Foundation, Cheynes, Direct Lettings, Exclusive Barbers, Mathew Watt, Fast Frame, Mr James, St Columba's Hospice, boombarbers, Nicolson, Prestige Scotland, Bonnie Scotland, Edinburgh Copy Shop, Kleen Cleaners, Lo Demore, Pinnies and Poppy Seeds, Psychomoda, Ragamuffin, Rene Walrus, Slanj, Solo, Thomas Marin Funeral Director, Tidalfire, Call Print, Edinburgh Arts and Picture Framers, Guaranteed Watch & Clock Repairs, Focus, The Royal Mile Gallery, Treasurer 1874, Tribal Body Art, Macraes of Edinburgh, Adult Conceptions, Varsity Music, Woods, Ballantrae Cashmere, Clans Of Scotland, Edinburgh Cashmere & Lambswool, Elgin Cashmere, House Of Cashmere, Kiltane, Ness, The Whisky Trail, Victoria Regalia, Camera Obscura, Cashmere and Scarf Company, Castle Gift Shop, Highland House, House Of Scotland, J & S - Newsagent, The Court Curio Shop, The Wee Scotland Shop, Cashmere House, Harris Tweed Hebrides, Howick Knitwear, Heritage Of Scotland, James Court City Refund, Jamie Scott’s Millshop, Royal Mile Factory Outlet, The Woolen Factory Outlet, Cheynes, Southside Books, Applejack, Arika, Boosh Boosh Boosh, Cowgate Newsagant, Crescent print LTD, KSI, Spectrum Graffiri shop, Antique Jewellers, House of Edinburgh, James Pringle Weavers, Marchbrae, Royal Mile Whiskies, The Cigar Box, House of Edinburgh, The Whisky Trail, Joe, Greyfriars Art Shop, Bridge Express, Greyfriars, The Golden Scissors, Archipelago Bakery, Berketex Bride, HIM, Hadeel, Stock Xchange, Eyecare Plus, London1 Barber, Marshmallow Lady, Paper Tiger, Brian Drumm, AGA, Charlie Miller, Zen Beauty, Neal's Yard Remedies, Ryden Lettings, ALC, Alchemia Studio, City alteration, Howie R Nicholsby 21st Century Kilt, Jane Davidson, Kakao by K, Cox & Co, Pam Jenkins, Samsung support centre, eye, ishi, The Salvation Army, Pink, CeX Edinburgh, Dance Wear, Robert Graham, The Wax Bar, Covet, Toni and Guy, Austin Reed, Cruise, Gant, Hackett, Hollister, Jaeger, Rohan, Slaters, The White Company, Viyella, French Connection, Creative cookware, Cute-icle nail spa, Forever Flawless, Ladbrokes, Palenque, Vision Express, Rock Candy, Tartan Gift and Souvenirs, The Treasure Trove, Tickets Scotland, Viking Optical Centre, madefromscotland, Murdo Macleans, CC, Hector Russel Kiltmakers, Arran Aromatics, Cheynes, Hanover Health Foods, Holland & Barrett, William Hill, Camper, Jenners, Bulthaup, Coulters, Hadden Rankin, Simpson & Marwick, connolly, Selenita, Sweet Service, Swatch, Blunted Barbers, Kennethkim Hairedresser, Troon Designer Clothing, Jack Brown eye care, Stringers Cellos, Hair by 7 West, Scotbet, Apple, Sandro, Best-one, Daneli's Deli, Sainsbury's Local, Yankee Scotland, 1-Tech, Argyll Cashmere, Medusa, Wonderland Models, Butterflies, Godiva Boutique, unknown, The Edinburgh Kiltmakers - Clothing & Souvenirs, West Port Pads, 97 Black, Paper Rack, Amma Art, Box Office, DOFOS Pet Centre, Christopher Ross, Emma Roy, Dalliance, Edinburgh Ink - Tattoo Studio, Main Point Books, Missionhair, 3D Laser Print, Aquarius, Scotbet, KnotStressed Therapies Clinic, Barber, Cheynes, Jazz Tattoo, Ocean Jewellery, William Hill, Live Laugh -Love, Black & Lizars, Soderberg, Vodafone, Mark 1 Motorcycles, Dean Jones Hair, Johnsons The Cleaners, Key Player, Ladbrokes, Simply Exquisite Bridal Shop, Vinyl Villains, Bees 2 Honey, Save the Children, Supercuts, Vaporized, Boyd Property, F-Tailor Design, Hershaws, Joyce's Cake Shop, William Hill, The Life Room Studio Gallery, The Photography Gallery, New Town Therapy, Epitome, Bryce McKenzie Decoration, Colours Gallery, Archipelago Artisan Bakery, Keen Cost newsagent and grocer, Arusha Gallery, Gallery Seventeen, Rachel Scott Accessories, Edinburgh Bicycle Co-operative, Medusa, Thorntons, Barbers, Bob's Fish, Loulabelle's Beauty, M&A Store, Snow Sport Services, Bagel Factory, Millie's Cookies, Nero Express, Medusa, Zen LIfestyle, Crystal Chandelier Company, Elite Nails, Golden Hare, Lillies & Dreams, Reflect, Vox Box, WH Smith, Transport for Edinburgh Travelshop, Primark, Sainsbury's Local, Scott's In The Park, House of Fraser, Jenners, Tartan Weaving Mill, Debenhams, Frisky, Harvey Nichols +10 +yes +yes +5 +Evangelische Friedenskirche, Peterskirche, Heiliggeistkirche, Jakobuskirche, Johanneskirche, Markushaus, Evangelisches Gemeindezentrum, Providenzkirche, Lutherkirche, Kreuzkirche, Christuskirche, Bergkirche, Emmaus-Gemeinde, Evangelische Studierendengemeinde (Karl-Jaspers-Haus), Die ARCHE - Evangelische Wichern-Gemeinde, Melanchthonkirche, Peterskirche +49.4126021 8.6894511 +yes +Da Claudia +55.9899019 -3.3868462 +yes +18.714666719476902 +yes and 37 +2 and 55.9651802 -3.1900260, 55.9436384 -3.2027881 +yes and 19 +tower, memorial, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside shrine, wayside cross, castle, ruins, ruins, wayside cross, wayside cross, wayside cross, ruins, memorial, castle, wayside shrine, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, memorial, wayside cross, wayside shrine, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, ruins, wayside cross, castle, memorial, wayside cross, wayside cross, wayside cross, castle, castle, wayside cross, castle, wayside cross, castle, castle, castle, castle, castle, lavoir, wayside cross, archaeological site, castle, castle, castle, castle, castle, castle, castle, yes, wayside cross, memorial, memorial, stone, memorial, memorial, memorial, castle, wayside cross, yes, abbey, archaeological site, archaeological site, archaeological site, ruins, memorial, wayside shrine, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, castle, castle, castle, wayside cross, castle, wayside cross, wayside shrine, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, archaeological site, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, memorial, memorial, track, ruins, wayside cross, wayside cross, wayside cross, building, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside shrine, memorial, wayside cross, memorial, wayside shrine, wayside cross, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, memorial, stone, tomb, tomb, tomb, tomb, tomb, tomb, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, castle, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, wayside shrine, memorial, memorial, memorial, memorial, memorial, castle, memorial, stone, memorial, memorial, memorial, memorial, memorial, memorial, stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, wayside cross, memorial, memorial, wayside cross, memorial, memorial, stone, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, wayside cross, wayside cross, wayside cross, wayside cross, wayside cross, memorial, memorial, memorial, memorial, farm, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, tomb, memorial, memorial, tomb, memorial, memorial, memorial, wayside cross, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, cannon, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, tomb, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, building, castle, ruins, chapel, manor, memorial, manor, ruins, castle, castle, yes, castle, wayside shrine, monument, castle, castle, castle, castle, castle, castle, castle, castle, castle, church, castle, castle, wayside shrine, ruins, castle, castle, castle, ruins, castle, ruins, yes, yes, manor, yes, yes, manor, wayside shrine, ship, ruins, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, castle, yes, castle, castle, monument, city gate, castle, castle, castle, yes, yes, memorial, memorial, memorial, memorial, building, wayside shrine, ruins, ruins, ruins, ruins, citywalls, archaeological site, tomb, tomb, tomb, tomb, tomb, citywalls, citywalls, memorial, tomb, yes, tomb, wayside cross, water well, manor, tower, memorial, memorial, memorial, memorial, yes, memorial, archaeological site +49.4127828 8.7178451 +0 +italian +http://www.brooksedinburgh.com/, http://www.ardmillanhotel.com/, http://www.apexhotels.co.uk/en/hotels/edinburgh/apex-international-hotel/, http://www.hiexpress.com/, http://lemondehotel.co.uk/, http://www.placeshilton.com/edinburgh-city-centre, http://www.hot-el-apartments.com/edinburgh-waterfront-apartments/, http://www.jurysinns.com/hotels/edinburgh, http://www.apexhotels.co.uk/hotels/edinburgh-waterloo-place/?source=adwords mis1&gclid=CPyo uiJiqQCFVf-2AodJ02fJQ, http://www.travelodge.co.uk/search and book/hotel overview.php?hotel id=428, http://www.radissonblu.co.uk/hotel-edinburgh?facilitator=BIGMOUTHMEDIAREZIDOR&csref=g en sk brand 3 ediza, http://www.macdonaldhotels.co.uk/holyrood/, http://www.thistle.com/en/hotels/united kingdom/edinburgh/the king james/index.html, http://www.oceanservicedapts.com/index.php?gclid=COTK4ISGzKUCFYIe4QodBwiXjg, http://www.theglasshousehotel.co.uk/, http://www.oldwaverley.co.uk/, http://www.royalbritishhotel.com/, https://www.hotelduvin.com/locations/edinburgh/, http://edinburgh.frasershospitality.com, http://niracaledonia.com/en/, http://www.townhousecompany.com/thebonham/, http://www.hotelceilidh-donia.co.uk/, http://www.thedunstane.co.uk/, http://www.edinburghthistlehotel.com/, http://www.chester-residence.com/, http://www.thegrassmarkethotel.co.uk/, http://www.motel-one.com/en/hotels/edinburgh/hotel-edinburgh-royal/, http://www.ibis.com/gb/hotel-2039-ibis-edinburgh-centre-royal-mile/index.shtml, http://www.thescotsmanhotel.co.uk/, http://www.thenorthumberlandhotel.co.uk, http://www.edinburghmintohotel.co.uk/, http://www.kildonanlodgehotel.co.uk, http://www.cairnedinburgh.com/, http://abbeyhoteledinburgh.wix.com/abbeyhoteledinburgh, http://www.inverleithhotel.co.uk/, http://www.merithhousehotel.co.uk/, http://www.rosehallhotel.co.uk, http://www.parliamenthouse-hotel.co.uk/, http://www.royalscotsclub.com/, http://www.travelodge.co.uk/hotels/353/Edinburgh-Haymarket-hotel, http://www.11brunswickst.co.uk/, http://www.royalettrick.com/, http://www.claremont-hotel.co.uk/, http://www.travelodge.co.uk/hotels/418/Edinburgh-Cameron-Toll-hotel/, http://www.thewestendhotel.co.uk/, http://www.staycentral.co.uk/, http://www.fountaincourtapartments.com/locations/, http://www.edinburghcityhotel.com/, http://www.placeshilton.com/waldorf-edinburgh-caledonian, http://www.townhousecompany.com/theedinburghresidence/, www.tunehotels.com/our-hotels/haymarket-edinburgh, http://www.thedunstane.co.uk/, http://www.tommymiahsoriginalrajhotel.com/, http://www.hotelinedinburgh.co.uk/, http://www.themurrayfieldhouse.co.uk/, http://www.staycity.com/edinburgh/west-end/, http://www.rockvillehotel.co.uk, http://www.channings.co.uk, http://www.ibis.com, http://www.thegeorgehoteledinburgh.co.uk/, http://www.theroxburghe.com/, http://www.parkviewhousehotel.co.uk/, http://www.rockvillehotel.co.uk, http://www.rockvillehotel.co.uk, http://www.rockvillehotel.co.uk, http://www.rockvillehotel.co.uk +8 +55.8969264 -3.3064312, 55.9073786 -3.2585910, 55.9053215 -3.1319819, 55.9086565 -3.2096817, 55.9103533 -3.3220087, 55.9013749 -3.2048039, 55.9035407 -3.2854196 +57 +1 +0 +55.9509478 -3.2066848 +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8346251 2.2657680, 48.9012005 2.3862959, 48.8801709 2.3706981, 48.8315802 2.3158225, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8501676 2.3621707, 48.8593908 2.3144172, 48.8299268 2.3465439, 48.8609726 2.2828299, 48.8563247 2.3152562, 48.8611046 2.3413657, 48.8475898 2.3031985, 48.8464653 2.2801018, 48.9003252 2.3734463, 48.8804901 2.2865619, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8323948 2.3645635, 48.8645440 2.4097670, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.9007525 2.3748724, 48.8635035 2.4085486, 48.8635857 2.2722338, 48.8536267 2.3664311, 48.8408422 2.3172666, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8387525 2.2535353, 48.8281523 2.2728394, 48.8168431 2.3604808, 48.8595020 2.3116861, 48.8407841 2.3912112, 48.8787212 2.3698437, 48.8586303 2.3897622, 48.8580224 2.3896621, 48.8364028 2.2775659, 48.8558395 2.3835889, 48.8820806 2.3381707, 48.8519985 2.2908966, 48.8656358 2.2892405, 48.8786755 2.3549221, 48.8797035 2.3026873, 48.8478375 2.3535433, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8936152 2.3152934, 48.8522407 2.2805336, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8711680 2.3244832, 48.8436106 2.3422313, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.8233460 2.3160166, 48.8380740 2.3312952, 48.8449642 2.2715165, 48.8473675 2.2588537, 48.8532253 2.3080493, 48.8720375 2.2998901, 48.8738003 2.2922634, 48.8751861 2.3096416, 48.8380740 2.3312952, 48.8449642 2.2715165, 48.8473675 2.2588537, 48.8532253 2.3080493, 48.8720375 2.2998901, 48.8738003 2.2922634, 48.8751861 2.3096416, 48.8941507 2.3733344, 48.8258806 2.3446643, 48.8679452 2.4057911, 48.8711283 2.4085012, 48.8565470 2.3790561, 48.8457849 2.4008634, 48.8384296 2.3723291, 48.8270093 2.3590302, 48.8635007 2.3703277, 48.8937900 2.3314100, 48.8631933 2.3689292, 48.8503953 2.3596248, 48.8649231 2.3755432, 48.8403571 2.3213304, 48.8873385 2.3222062, 48.8338034 2.2847592, 48.8464060 2.3874300, 48.8414869 2.3732320, 48.8350223 2.3575595, 48.9007173 2.3745755, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8206480 2.3248645, 48.8936129 2.3029112, 48.8455829 2.3086474 +Ambulances, Ambulances Regence, Cavendish Ambulances, Ambulances Lilas Valerie J.M.S., Malone ambulances, Ambulances Sainte-Marthe, Dahlia ambulances, Ambulances Alban, Ambulances Beaugrenelle +27 +285 +48.8316492 2.2999377, 48.8681927 2.3630580, 48.8710381 2.3610667, 48.8757644 2.3562329, 48.8667885 2.3495539, 48.8648587 2.3516262, 48.8683427 2.3501494, 48.8770173 2.3640220, 48.8757565 2.3604345, 48.8660165 2.3525131, 48.8630663 2.3527335, 48.8668874 2.3528247, 48.8256825 2.3151865, 48.8250160 2.3112381, 48.8279762 2.3057040, 48.8282568 2.3034035, 48.8636772 2.3510372, 48.8655010 2.3522216, 48.8669313 2.3543718, 48.8613680 2.3530523, 48.8626723 2.3594550, 48.8600506 2.3607005, 48.8649717 2.3601088, 48.8763445 2.3614950, 48.8725652 2.3640736, 48.8705409 2.3514636, 48.8707624 2.3546578, 48.8690121 2.3562318, 48.8252648 2.3158680, 48.8683870 2.3633979, 48.8262191 2.3053681, 48.8320219 2.3028314, 48.8255813 2.3041840, 48.8745891 2.3627432, 48.8754929 2.3615609, 48.8582183 2.3633569, 48.8227669 2.3087009, 48.8215858 2.3017380, 48.8769804 2.3588987, 48.8614056 2.3545336, 48.8693907 2.3535655, 48.8749571 2.3636986, 48.8682917 2.3606483, 48.8757767 2.3558590, 48.8279457 2.3056505, 48.8668278 2.3572924 +49.3999791 8.6903579 +154 +Collège Privé Saint-Louis, École maternelle publique Souzy, École primaire, École primaire, École maternelle Le Vau, École élémentaire B, École élémentaire A, Collège Pierre Mendès France, École maternelle Olivier de Serre, École primaire, École maternelle des Grands Champs, Collège Léon Gambetta, Collège Wolfgang Amadeus Mozart, Lycée Dorian, Collège Georges Courteline, École maternelle, École élémentaire, École Primaire, Collège César Franck, Centre Inter Entreprise de Formation en Alternance, École élémentaire Compans, École élémentaire Brunet, École maternelle Brunet, Lycée général et technologique Henri Bergson, École maternelle, BTS Henri Bergson, École privée Saint-Laurent, Conservatoire de musique du 14e Arrondissement, École élémentaire Chernoviz, École maternelle, École Polyvalente Pajol, École primaire, École primaire, École Normale Catholique Blomet, École primaire publique Duquesne, Cours Diderot, Lisaa, EIPDCE, École maternelle Élisa Lemonnier, École primaire, École élémentaire privée L'Immaculée-Conception, Colegio Español Frederico Garcia Lorca, École Élémentaire Hyppolite Maindron, École maternelle Maurice Ripoche, École élémentaire Beaudricourt, College Lycée Stanislas, École Primaire Publique Lancry, Actif Tutor, École élémentaire de l'Évangile, École maternelle Tchaïkovski, École élémentaire Maurice Genevoix, École élémentaire de Torcy, École maternelle de Torcy, École Élémentaire Doudeauville, École maternelle Marx Dormoy, École polyvalente de la Goutte d'Or, École maternelle Goutte d'Or, École polyvalente des Poissonniers, Collège Chaptal, Collège Jules Ferry, Collège privé Saint-Michel de Picpus, Lycée général privé Saint-Michel de Picpus, Section d'enseignement général et professionnel adapté du Collège Vincent d'Indy, École maternelle Picpus, École élémentaire Lamoricière, École élémentaire Lamoricière Eb, École Montenpoivre, École élémentaire de la Plaine, École primaire Publique Laugier, Wall Street Institute, Collège Henri Bergson, Collège Louise Michel, Collège privé Lucien de Hirsch, Section d'enseignement général et professionnel adapté du Collège Edouard Pailleron, École maternelle, École primaire, École primaire, École élémentaire privée Lucien de Hirsch, Cours Clapeyron, École maternelle Carrel, Lycée professionnel Armand Carrel, École élémentaire Armand Carrel, IPAG Paris, École maternelle, Insititut d'Osthéopathie Dauphine, Collège Sonia Delaunay, École primaire Mathis, École primaire Tandou, École maternelle Belliard, École élémentaire Belliard, Collège Hector Berlioz, École maternelle Paul Abadie, Polynotes, l'école de musiques, École primaire, École maternelle, École Maternelle Bruxelles, École Élémentaire Bruxelles, EFAP Paris, École primaire, École maternelle Colonel Moll, Lycée professionnel Suzanne Valadon, Lycée Camille Jenatzy, Cours Nation Bauchat (École secondaire privée), École maternelle, École maternelle, École élémentaire Picpus, École primaire, École primaire, École primaire Jean Jaurès, Lycée général et technologique privé Les Petits Champs, École élémentaire privée Montessori Kids, École primaire Privé École du Cerene, Collège privé Soeur Rosalie, Lycée général privé Louise de Marillac, École élémentaire privée Soeur Rosalie, Collège Victor Hugo, École primaire B, École maternelle, École maternelle, Collège Georges Duhamel, École maternelle Antoine Chantin, École maternelle Volontaires, École maternelle, École élémentaire Télégraphe, École maternelle Auguste Perret, École élémentaire Auguste Perret, Section d'enseignement professionnel du Lycée polyvalent Elisa Lemonnier, École privée française d'Enseigement technique, Collège Lucie Faure, École maternelle publique Maraîchers, École primaire publique Pyrénées T, Collège privé Saint-Louis de Gonzague, École maternelle, Collège Paul Valéry, Lycée général Paul Valéry, Collège Buffon, Collège privé Saint-Jean de Passy, Lycée des métiers de l'optique FRESNEL, Lycée privé Saint-Jean de Passy, École élémentaire privée La Bruyère-Sainte-Isabelle, École élémentaire privée Saint-Jean de Passy, Living School, École Active bilingue Jeannine Manuel (École élémentaire privée), Collège de Staël, Lycée général Buffon, École primaire, École maternelle, École maternelle Simone Weil, École maternelle Brochant, Inlingua, École élémentaire Lemercier, École élémentaire, École maternelle Simon Bolivar, École maternelle et primaire Henri Schili, Paris II - Panthéon Assas - Centre Vaugirard, École maternelle Eugénie Cotton, École élémentaire Eugénie Cotton EA, École élémentaire, Collège Camille Sée, Lycée général Camille Sée, École maternelle, École primaire, Lycée professionnel privé Marcel Lamy, École Maternelle des Renaudes, Sup de pub, Sup career, Campus langues, École Ganénou, Collège Honoré de Balzac, Lycée général et technologique Honoré de Balzac, Collège Maurice Ravel, Lycée général et technologique Maurice Ravel, Cours Tocqueville, École Marseille, Lycée Municipal d'Adultes Philippe Leclerc de Hauteclocque, École privée Bossuet, Collège Jacques Prévert, École maternelle, École primaire, Collège privé Notre-Dame de France, Cours privé Alfred de Musset, École élémentaire privée Notre-Dame de France, École maternelle, École maternelle, École primaire, École primaire privée Notre-Dame de France, École maternelle Pierre Foncin, École maternelle Surmelin, École primaire Bretonneau, École élémentaire Manin, Collège Victor Duruy, Collège d'Hulst (École secondaire privée ), Collège privé d'Hulst, Cours Montaigne (École secondaire privée), Cours Thérèse Chappuis (École secondaire privée), Lycée polyvalent Maximilien Vox-Art-Dessin, Lycée polyvalent privé Albert de Mun, Section d'enseignement professionnel du Lycée polyvalent Maximilien Vox, Section d'enseignement professionnel du Lycée polyvalent privé Saint-Nicolas, École maternelle, École maternelle, École primaire privée Saint-Jean Bosco, Collège Guillaume Apollinaire, Collège Privé L'Alma, Collège privé La Rochefoucauld, Collège privé Sainte-Elisabeth, Cours Fidès (École secondaire privée), Institut Privé de l'Alma (École Secondaire Privée ), L'École (École secondaire privée), Lycée général et technologique Roger Verlomme, Lycée général privé La Rochefoucauld, Lycée général privé Sainte-Elisabeth, Section d'enseignement général et professionnel adapté du Collège Guillaume Apollinaire, Section d'enseignement professionnel du Lycée polyvalent privé Albert de Mun, École élementaire privée the lennen bilingual school, École Active Bilingue Jeannine Manuel (Collège privé), École Active Bilingue Jeannine Manuel (Lycée général privé), École du Champ de Mars (École secondaire privée), École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École primaire, École primaire, École primaire, École primaire, École primaire, École primaire, École Élémentaire Privée L'Alma, École élémentaire privée La Rochefoucauld, Lycée professionnel, École polyvalente Bernard Buffet, École maternelle Planchat K, École élémentaire Planchat, École maternelle, École Maternelle Sarrette, École privée Saint-Jean-Baptiste de Belleville - Maternelle et Primaires, École maternelle, École Multimedia, École et Collège Saint-Georges (privé), École maternelle et primaire Saint-Georges (privé), Inalco, École Dentaire Française, École maternelle Prévoyance, École de Boulangerie et de Pâtisserie, École maternelle Delambre, École élémentaire Delambre, École privée catholique Sainte-Marguerite, Collége privé Notre-Dame de Lourdes, École primaire privée Notre-Dame de Lourdes, École privée Sainte-Marthe, Living school, Lycee Beth Haya Mouchka, Cours Florent, École élémentaire du Clos, École élémentaire 14 Riblette, École élémentaire 16 Riblette, École primaire privée Montessori, Lycée technologique École Nationale Supérieure des Arts Appliqués, Cours Spinoza, Collège privé Notre-Dame de Sainte-Croix, Collège privé Saint-Pierre-Fourier, Lycée privé Saint-Pierre-Fourier, École Maternelle Thionville, École primaire des Grands Moulins, École primaire, École Privée Charles Peguy, École élémentaire privée Montessori, Cours Molière (École secondaire privée), École élémentaire privée Cours Molière, École Supérieure des Techniques de Biologie Appliquée, École Saint-John Perse, progress com, Collège Turgot, Collège privé Saint-Germain de Charonne, Lycée technologique Duperré École Supérieure des Arts Appliqués, Section d'enseignement général et professionnel adapté du Collège Robert Doisneau, Section d'enseignement professionnel du Lycée polyvalent Martin Nadaud, Section d'enseignement professionnel du Lycée polyvalent Paul Poiret, École Maternelle, École Maternelle, École Maternelle, École Primaire, École primaire, École primaire, École élémentaire privée Eugène Napoléon, École élémentaire privée Saint-Germain de Charonne, École Primaire, Collège Claude Bernard, Collège Jean de La Fontaine, Collège Jean-Baptiste Say, Collège Molière, Cours Beauséjour (École secondaire privée), Lycée Jean-Baptiste Say, Lycée général Jean de La Fontaine, Lycée général Molière, Lycée général et technologique Claude Bernard, École maternelle, École maternelle, École primaire d'application, École primaire d'application, École primaire, École Élementaire Privée International School of Paris, École élémentaire privée Lamazou, Collège Privé Notre-Dame de Grâce de Passy, Collège privé Gerson, Collège privé La Tour, Collège privé Notre-Dame des Oiseaux, Etablissement privé Notre-Dame des Oiseaux (École secondaire privée), Institut de La Tour (École secondaire privée), Lycée polyvalent privé Sainte-Thérèse, Lycée privé Gerson, Section d'enseignement professionnel du Lycée polyvalent privé Sainte-Thérèse, École maternelle d'application, École maternelle d'application, École maternelle privée Jardin d'enfants des Nations-Unies, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École primaire d'application, École primaire d'application, École primaire, École primaire, École Élementaire Privée École Galilée, École élémentaire privée Gerson, École élémentaire privée La Providence, École élémentaire privée Le Cours du Soleil, École élémentaire privée Notre-Dame des Oiseaux, École élémentaire privée Saint-Louis de Gonzague, École maternelle, Collège Carnot, Collège Pierre de Ronsard, Collège Privé Sainte-Ursule-Louise de Bettignies, Lycée général Carnot, École des Techniciens Supérieurs (École secondaire professionnelle privée), École maternelle, École maternelle, École primaire, École Élémentaire Privée Sainte-Ursule-Louise de Bettignies, Collège Janson de Sailly, Collège Privé Pascal, Collège privé GASTON TENOUDJI, Collège privé L'Assomption, Collège privé Saint-Honoré d'Eylau, Cours Carnot (École secondaire privée), International School of Paris (École secondaire privée), Lycée Privé Pascal, Lycée Professionnel Hôtelier, Lycée général Janson de Sailly, Lycée privé Sainte-Ursule-Louise de Bettignies, Prépa Sciences (École secondaire privée), lycee gen. et technol. prive gaston tenoudji, École Active Bilingue Monceau (Collège privé), École Gaston Tenoudji, École Hôtelière Jean Drouant, École Maternelle Privée Stuart School-Petite École Bilingue, École Maternelle d'Application, École Primaire d'Application, École Privée Françoise Morice Esthétique-Cosmétique, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École primaire, École primaire, École primaire, École primaire, École primaire, École primaire, École primaire, École Élementaire Privée Ohr Kitov (Sinai), École Élementaire Privée École Ejm, École Élémentaire Privée Eurécole, École Élémentaire Privée Gabriel, École Élémentaire Privée L'Assomption, École Élémentaire Privée Les Moineaux, École Élémentaire Privée Pascal, École Élémentaire Privée Saint-FranÇois d'Heylau, École élémentaire privée Gaston Tenoudji, Collège Gérard Philipe, Collège Marx Dormoy, Collège Yvonne Le Tac, Collège privé Saint-Vincent, École Elementaire Simon Bolivar, École des Récollets, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École primaire A, École primaire d'application, École primaire, École primaire, École primaire, École élémentaire privée Sainte-Marie, École maternelle, Lycée Privé de l'Assomption, École Active Bilingue Étoile, École Maternelle Publique Bougainvilliers, École Maternelle Publique Christine de Pisan, École Maternelle Publique Tapisseries, École Maternelle Publique Jouffroy, École Élémentaire Publique Jouffroy, École Élémentaire Publique Saussure, Paris graduate school of management, École Privée Marbeuf Esthétique Élysées, École secondaire privée Eurécole, Collège privé Fénelon-Sainte-Marie, École Maternelle Bienfaisance, École Élémentaire Bienfaisance, École Élémentaire Privée Fénelon-Sainte-Marie, École Élémentaire Privée Sainte-Marie des Batignolles, Collège Privé Saint-Michel des Batignolles, Lycée Privé Saint-Michel des Batignolles, École Élémentaire Privée Le Sacré-Coeur, École Élémentaire Privée Saint-Thomas d'Aquin, École Élémentaire Publique Saint-Ouen, IRIS - Institut des Ressources Informatiques Supérieur, Lycée technologique École Nationale de Commerce, École 2d Degré Général Privée École Privee Akiba, École Francaise Privée des Hautes Études Commerciales, École Primaire Privée Hattemer, École Professionnelle Privée Régine Ferrère Esthétique-Cosmétique, École Secondaire Privée Ohr Kitov, École Technique Privée AKIBA, École primaire d application, École primaire, École Élementaire Privée Montessori's Cool, École Maternelle, École élémentaire Eugénie Cotton EB, Collège privé pour handicapés Regain Tournesol, Collège privé Notre-Dame de Sion, Collège privé Saint-Sulpice, Collège privé Sainte-Geneviève, Lycée des métiers des activités sociales et commerciales, Lycée général et technologique privé Notre-Dame de Sion, Lycée général et technologique privé Sainte-Geneviève, Lycée privé Saint-Sulpice, École primaire privée Sainte-Geneviève, Collège Montaigne, Collège privé École Alsacienne, Lycée général Montaigne, École Alsacienne (Lycée général privé), École primaire privée Alsacienne, Lycée général et technologique Simone Weil, Section d'enseignement professionnel du Lycée polyvalent François Truffaut, École primaire privée Sainte-Jeanne-Elisabeth, École primaire, École Primaire, École Primaire, Lycée des métiers du génie chimique et des procédés industriels N.L Vauquelin, École primaire Saint-Victor, École primaire Littré, École primaire Balanchine, Collège Camille Claudel, Collège privé La Bruyère-Sainte-Isabelle, École Élémentaire, Lycée polyvalent privé Catherine Labouré, École et Collège Modigliani, École maternelle, École Lacordaire, École primaire, Lycée général et technologique Chaptal, Collège Edouard Pailleron, Lycée Paul Bert, Lycée général Paul Bert, École Maternelle Alain Fournier, Lycée François Villon, Collège et Lycée Stanislas, Lycée général et technologique Emile Dubois, École Wurtz, École Élémentaire, École, Collège Georges Braque, École Glacière, Lycée Lazare Ponticelli, École primaire, École primaire publique Kuss, Lycée Professionnel Tolbiac, Collège Gabriel Fauré, École primaire, École primaire, École primaire, École maternelle, Lycée Autogéré de Paris, École primaire Saint-Jean, École maternelle, Collège Saint-Exupéry, Collège George Sand, Collège Marie Curie, Parmentier, Lycée Lavoisier, École élémentaire de la Victoire, École Élémentaire, Lycée professionnel Pierre Lescot, École maternelle Eupatoria, Collège Henri Matisse, Collège La Grange aux Belles, École primaire d'application, École maternelle Domrémy, École Saint-Jacques, École maternelle privée Diwan, Collège Georges Rouault, École élémentaire Cheminets, Lycée Technique Diderot, École maternelle Fagon, Collège Edmond Michelet, Lycée professionnel Hector Guimard, Collège Guillaume Budé, École maternelle, Collège Flora Tristan, Lycée Professionnel Maria Deraismes, École élémentaire Curial, École élémentaire Ourq, Section d'enseignement professionnel du Lycée polyvalent D'Alembert, Collège Maurice Utrillo, Lycée Rabelais, Lycée professionnel agricole du Breuil-École privée d'Horticulture et Arboriculture, École primaire d'application, École maternelle, Lycée général et technologique Arago, Lycée général Fénelon, École primaire Convention, École Jongkind, École Élémentaire d'Argenteuil, École primaire, École maternelle, Groupe Scolaire Beauregard, École maternelle et primaire, École primaire Saint-Louis-en-l'Île, Lycée général et technologique Sophie Germain, École élémentaire Saint-Merri, École primaire Moussy, Groupe Scolaire Archives, École Élémentaire Hospitalière Saint-Gervais, École élémentaire, Lycée général Louis Le Grand, Collège Charlemagne, École primaire Charlemagne, École Massillon, École élémentaire privée Massillon, École primaire, École des Francs-Bourgeois, École primaire, École Élémentaire, École maternelle Chapon, Annexe Lycée Professionnel Nicolas Flamel, École maternelle Paul Dubois, École élémentaire Béranger, Lycée et Collège Henri IV, Lycée général Saint-Louis, Lycée polyvalent François Truffaut, École primaire des Quatre Fils, École Maternelle Perle, Collège Victor Hugo - Annexe, Lycée général Victor Hugo, École primaire Turenne, École Maternelle et Élémentaire, École primaire, Collège Louise Michel, Lycée professionnel Marie Laurencin, École maternelle Legouvé, École élémentaire Rampal, Lycée Georges Brassens, École Internationale Algérienne, Conservatoire municipal du XIXe Jacques Ibert, École élémentaire Général Lasalle, École maternelle Rampal, École maternelle et primaire Madame, École élémentaire Froment, École élémentaire privée Sainte-Thérèse, École maternelle Tandou, Collège Georges Méliès, École Élémentaire, École primaire Surène, Lycée général et technologique Racine, École Élémentaire, Collège Octave Gréard, Lycée Polyvalent Racine (Annexe), École Active Bilingue Monceau (École élémentaire privée), École maternelle, La Rochefoucauld, Lycée étranger privé Léonard de Vinci, Lycée Jules Ferry, École Élementaire Privée The Lennen Bilingual School, École maternelle Bretonneau, École primaire Pelleport, Collège Colette Besson, Collège Jean-Baptiste Clément, Centre des Formations Industrielles, École élémentaire Alquier-Debrousse, Lycée professionnel Charles de Gaulle, École primaire Pierre Girard, École maternelle Dautancourt, École élémentaire Truffaut, École polonaise, École maternelle Léon Schwartzenberg, Lycée Technologique Bachelard, Lycée technologique Jules Siegfried, École élémentaire, Écoles maternelle et élémentaire Miollis, Lycée des métiers de l'hôtellerie Belliard, Institut National des Jeunes Aveugles, Lycée professionnel Gustave Ferrié, École primaire Paul Bert, École élémentaire Richomme, École de Sage-Femme de Saint-Antoine, Cité scolaire Rodin, Lycée Jean Lurçat, Lycée privé Notre-Dame de France, Collège Valmy, École maternelle Martel, École Élémentaire Faubourg-Saint-Denis, École Sainte-Anne Sainte-Marie, École maternelle Château des Rentiers, École élémentaire avenue d'Ivry (école B), École maternelle de la Pointe d'Ivry, École Château des Rentiers, École primaire Dunois, Lycée Professionnel Galilée, Collège Gustave Flaubert, Atelier beaux-arts Montparnasse, Saint-Lambert - Théodore deck, Lycée technique du Bâtiment, École primaire Prisse d'Avennes, École Élémentaire Porte Brancion, École Maternelle Porte Brancion, École Saint-Honoré d'Eylau, École Polyvalente, Groupe Scolaire, Institution Notre-Dame de Sainte-Croix, Collège Eugène Delacroix, Lycée privé Saint-Louis de Gonzague, Lycée Professionnel Octave Feuillet, École Élémentaire, Groupe Scolaire, Groupe Scolaire Molière, École Maternelle Gros, École Élémentaire, Lycée général et technologique privé Charles de Foucauld, École suédoise de Paris, Collège André Malraux, Cours Sainte-Ursule, École privée catholique Blanche de Castille, École de Paris des Métiers de la Table, École maternelle publique Bayen, École élémentaire publique Berthier, École élémentaire Vigée-Lebrun, École Léman-Belleville, École publique élémentaire, École maternelle, Groupe Scolaire du Parc des Princes, École Universelle, Lycée professionnel René Cassin, Institut National des Jeunes Sourds, École primaire publique Frères Voisin, École Maternelle Privée Montessori Rive Gauche, Lycée général Victor Duruy, École primaire, Lycée professionnel Gustave Eiffel, Collège Paul Gauguin, Lycée Edgar Quinet, École maternelle Cour des Noues, Section d'enseignement professionnel du Lycée polyvalent Fresnel, École Élémentaire Eugène Varlin, Collège Georges Brassens, École Maternale et Élémentaire Parmentier, École élémentaire République, École Sainte-Elisabeth, Cours Hattemer (École secondaire privée), École Robert Estienne, École Saint-Pierre de Chaillot, Collège Aimé Césaire, Collège Jean Moulin, École Élémentaire Severo, Lycée professionnel Erik Satie, Collège Alphonse Daudet, Collège François Couperin, Lycée général Charlemagne, Collège Pierre Alviset, École Élémentaire Gerty-Archimède, Collège Jean François Oeben, École élémentaire privée Saint-Michel de Picpus, Lycée Condorcet, Groupe scolaire Lamoricière-Carnot, Collège Vincent d'Indy, École primaire privée Sainte-Geneviève, Lycée polyvalent Elisa Lemonnier, École primaire, Lycée général et technologique Passy-Saint-Honoré, Collège privé Rocroy Saint-Vincent-de-Paul, École primaire privée Saint-Vincent-de-Paul, École élémentaire Dussoubs, Collège Thomas Mann, École Élémentaire Belzunce, École élémentaire publique Clichy, Section d'enseignement professionnel du Lycée polyvalent Lucas de Nehou, École du Mont Cenis, École publique Sainte-Isaure, Collège et Lycée Jacques Decour, Collège Bossuet - Notre-Dame, École élémentaire privée Bossuet-Notre-Dame, Lycée Bossuet - Notre-Dame, École primaire, École des Enfants du spectacle, École maternelle, École élémentaire, École primaire, École maternelle, Lycée polyvalent Jacques Monod, École maternelle, École maternelle, Groupe scolaire, École primaire, École primaire, Collège Raymond-Queneau, Annexe du collège Pierre-Alviset, École primaire, École maternelle, École élémentaire Ramponeau, École maternelle Couronnes, École élémentaire Levert, École élémentaire Fessart, Lycée Théophile Gautier, École Primaire privée Sainte-Marie de Sion, Annexe du lycée Maximilien-Vox, Lycée Carcado-Saisseval, École élémentaire, École maternelle, Lycée professionnel Corvisart-Arts Graphiques et des Arts du Livre, École élémentaire, École Maternelle et Élementaire Publique Vandrezanne, Groupe Scolaire Privé Saint-Vincent-de-Paul, École Élémentaire Ricaut, École Maternelle Ricaut, École nationale de chimie physique et biologie de Paris, Groupe scolaire Saint-Jean de Montmartre, École élémentaire Belleville, Collège Françoise Dolto, École maternelle, Collège Claude Chappe, École élémentaire, Collège Lycée Stéphane Mallarmé, École primaire Pouchet, École Primaire Publique Marguerite Long, Collège Boris Vian, Groupe Scolaire Ferdinand Faucon, École élémentaire Hermel, Lycée général Colbert, École élémentaire Gerbert, École primaire Primo Levi, École élémentaire Buffault, École polyvalente Simplon, Collège Jules Verne, École Élémentaire, École élémentaire, École maternelle Roquette, École maternelle Popincourt, Lycée professionnel Marcel Deprez, École élémentaire Étienne Dolet, École maternelle, Lycée général et technologique Voltaire, École maternelle Amiraux, École maternelle et élémentaire Louis-Blanc, Lycée général Claude Monet, École élémentaire Cavé, École maternelle Saint-Luc, École René Binet, Groupe Scolaire Saint-Germain de Charonne, Groupe Scolaire des Pyrénées, École privée de la Providence, École polyvalente Champagne, École Vitruve, École élémentaire privée Fénelon-Sainte-Marie, École maternelle Richomme, Collège Georges Clemenceau, École primaire, Groupe scolaire Jeanne d'Arc, École Saint-Éloi, Collège privé Sainte-Clotilde, École Saint-Éloi, École primaire Blanche, École élémentaire, Collège Lycée Saint-Louis, Groupe scolaire Milton, École Notre-Dame de Lorette, École primaire Pommard, École élémentaire, École élémentaire, École élémentaire, Annexe du Lycée Fénelon, Lycée polyvalent Lucas de Nehou, Lycée technologique privé La Plaine Monceau, École élémentaire privée Fénelon-Sainte-Marie, Écoles élémentaire et maternelle Chaptal, École élémentaire privée Sainte-Clotilde, Lycée privé catholique Fénelon-Sainte-Marie, École Suzanne Valadon, École primaire d'application Houdon, École Élémentaire Asseline, École Maternelle Relais Saussure, École élémentaire Jean-François Lépine, École maternelle Charlemagne, École élémentaire d'Oran, École élémentaire Pierre Budin, École Élémentaire Mairie de Paris, École Varet, Collège Jules Romains, École Maternelle Saint-Dominique, École maternelle Roquepine, École Monceau, ENSCI - Les Ateliers, École primaire Tournelles, École primaire, Collège Roland Dorgelès, École primaire, École Active bilingue Lamartine, École primaire, École primaire, École primaire d'application, Groupe Scolaire Pereire, École primaire, École élémentaire privée du Saint-Esprit, École primaire Henri Noguères, Collège Guy Flavien, École maternelle, Cité Scolaire Henri Bergson, Lycée général et technologique jacquard, Lycée polyvalent l'Initiative, École élémentaire privée Saint-Marcel, Collège André Citroën, École maternelle Ballard, École primaire Balard, École primaire Gourdault, École Sainte-Jeanne d'Arc, École élémentaire de la Guadeloupe, École maternelle Paradis, Lycée polyvalent privé Saint-Nicolas, Conservatoire municipal du 13ème Maurice Ravel, Groupe Scolaire, Collège Condorcet, Collège Bernard Palissy, École maternelle, Écoles Grégoire-Ferrandi CCIP (École secondaire professionnelle privée), École Joseph de Maistre, Collège Antoine Coysevox, Lycée Professionnel Étienne Dolet, Lycée Turgot, École élémentaire Philippe de Girard, École Polyvalente du Moulin de la Pointe, École primaire, École maternelle Alphonse Baudin, Collège Paul Verlaine, Ateliers des beaux-arts de la ville de Paris - Centre Sévigné, École Primaire Fagon, École maternelle Vincent Auriol, École primaire, École Polyvalente Publique Reims, École maternelle Sarrette A, École primaire privée Saint-Joseph, Groupe scolaire Saint-Jean-Gabriel, Collège privé Thérèse Chappuis, Lycée général privé Saint-Thomas d'Aquin, Lycée professionnel Beaugrenelle, École primaire, École élémentaire privée Fidès, École Maternelle des Longues Raies, École élémentaire Belleville H, Collège Moulin des Prés, École maternelle Bobillot, Collège et Lycée Hélène Boucher, École élémentaire publique Claude Bernard, École du Soleil, École élémentaire privée La Trinité, École polyvalente Olivier Métra, École élémentaire Olivier Métra, École maternelle Général Lasalle, École élementaire Goubet, EREA Édith Piaf, École maternelle Retrait, École élémentaire Pyrénées Eb, École élémentaire Pyrénées, Collège et lycée privés Sainte-Louise, École primaire privée Sainte-Louise, École maternelle Darius Milhaud, École maternelle Manin, École élémentaire Manin Eb, École maternelle Pali-Kao, École élémentaire Tourtille, École maternelle Tourtille, École polyvalente Émile Duployé, École Saint-Paul, École maternelle 7e Art, École élémentaire Tourelles, École maternelle Championnet D, École élémentaire Championnet, École élémentaire Claude Vellefaux, École maternelle Gambetta, Lycée professionnel Théophile Gautier, École élémentaire Charenton, École élémentaire 11 Lesseps, École élémentaire 9 Lesseps, Collège Robert Doisneau, École maternelle Amandiers, École élémentaire Amandiers, Collège Alain Fournier, École maternelle Reuilly X, École élémentaire Reuilly A, École élémentaire Reuilly B, École élémentaire Belleville, École élémentaire Julien Lacroix, École élementaire Villette, Lycée Louis Amand, Lycée Polyvalent Paul Poiret, École élémentaire Charles Baudelaire, École maternelle Charles Baudelaire, Collège Paul-Verlaine (annexe), École maternelle, École maternelle, École élémentaire Tlemcen, Collège Charles Péguy, École primaire privée Sainte-Catherine, Lycée technologique privé Jules Richard, Lycée professionnel Abbé Grégoire, École Blanche Jeanne d'Arc, SEGPA du Collège Jean-Baptiste Clément, École polyvalente Davout, École élémentaire Sorbier, École polyvalente Forest, École élémentaire Voltaire, Lycée polyvalent Martin Nadaud, Collège Lucie et Raymond Aubrac, Collège Anne Frank, Lycée Général Lamartine, Rocroy Saint-Vincent-de-Paul, École primaire Cugnot, Collège Daniel Mayer, École Massillon, École primaire privée Notre-Dame de la Croix, Lycée Technologique d'Arts Appliqués Auguste Renoir +7 +495 and 55.9340759 -3.0969078, 55.9519539 -3.1884083, 55.9479503 -3.1917952, 55.9530134 -3.2142910, 55.9478002 -3.2081413, 55.9386935 -3.2182790, 55.9400293 -3.2218656, 55.9448031 -3.2122001, 55.9455517 -3.2319996, 55.9536641 -3.2412247, 55.9393708 -3.2226169, 55.9339951 -3.2242895, 55.9485590 -3.1984660, 55.9527795 -3.1830101, 55.9233928 -3.2495641, 55.9075085 -3.2601250, 55.9201949 -3.2568968, 55.9235850 -3.2498898, 55.9234055 -3.2496291, 55.9291086 -3.1622145, 55.9287712 -3.1607042, 55.9258250 -3.2453116, 55.9195196 -3.2618447, 55.9282449 -3.2552516, 55.9383057 -3.2503683, 55.9415254 -3.1004964, 55.9487280 -3.1868685, 55.9681946 -3.2394189, 55.9749839 -3.1786455, 55.9727101 -3.1970488, 55.9603081 -3.2107045, 55.9625350 -3.2037987, 55.9623678 -3.2065428, 55.9736483 -3.1827628, 55.8985834 -3.2593352, 55.9675425 -3.1917851, 55.9688726 -3.1950695, 55.9725744 -3.1878307, 55.9764194 -3.1968732, 55.9757382 -3.1965357, 55.9709295 -3.2290845, 55.9606871 -3.2487338, 55.9536622 -3.1872425, 55.9565123 -3.2442957, 55.9559374 -3.2438911, 55.9689317 -3.1949769, 55.9628443 -3.2000159, 55.9696454 -3.2006076, 55.9679404 -3.1368303, 55.9245026 -3.2462826, 55.9245495 -3.2462640, 55.9232175 -3.2481049, 55.9192286 -3.1386957, 55.9197007 -3.1380226, 55.9137536 -3.1474495, 55.8994958 -3.2311293, 55.9272696 -3.2320395, 55.9515768 -3.2367550, 55.9430287 -3.2292834, 55.9149135 -3.2153765, 55.9126347 -3.2166853, 55.9715342 -3.2396512, 55.9253227 -3.2038950, 55.9409626 -3.2385035, 55.9409129 -3.2364482, 55.9614176 -3.2176893, 55.9563828 -3.1500518, 55.9567793 -3.1501599, 55.9640660 -3.1617691, 55.9711047 -3.1519140, 55.9700990 -3.1476178, 55.9699103 -3.1473612, 55.9794597 -3.1720782, 55.9791297 -3.1704934, 55.9776702 -3.1930546, 55.9271391 -3.1870984, 55.9312243 -3.1716568, 55.9217665 -3.1317079, 55.9196528 -3.1357238, 55.9452306 -3.0932586, 55.9763714 -3.1700979, 55.9727178 -3.2084635, 55.9731820 -3.2057650, 55.9458946 -3.2359826, 55.9476467 -3.2333076, 55.9421078 -3.2471068, 55.9787745 -3.1699744, 55.9447609 -3.2434052, 55.9498076 -3.2219942, 55.9579663 -3.2088053, 55.9368480 -3.2372057, 55.9659135 -3.1340343, 55.9672545 -3.1958578, 55.9519136 -3.2180305, 55.8897636 -3.1620915, 55.8898633 -3.1619972, 55.8928258 -3.1331472, 55.8929168 -3.1332421, 55.9148733 -3.2566448, 55.8984427 -3.2164902, 55.9357638 -3.2272989, 55.9412282 -3.2280878, 55.9501207 -3.2294132, 55.9527001 -3.1828037, 55.9494023 -3.2030602, 55.9592735 -3.2449240, 55.9637680 -3.2418855, 55.9526920 -3.1833146, 55.9560012 -3.1381828, 55.9520267 -3.1910592, 55.9614168 -3.1711787, 55.9367364 -3.1436706, 55.9352189 -3.1425272, 55.9509175 -3.2218773, 55.9516061 -3.2220318, 55.9443411 -3.1018614, 55.9523386 -3.2166925, 55.9328704 -3.2359316, 55.9316516 -3.2342827, 55.9314129 -3.2338599, 55.9197117 -3.2569286, 55.9119663 -3.2594709, 55.9073294 -3.2601223, 55.9305774 -3.2544337, 55.9501605 -3.1999414, 55.9606818 -3.1685748, 55.9662929 -3.1561624, 55.9580618 -3.1583013, 55.9663264 -3.1333091, 55.9409529 -3.2239038, 55.9275101 -3.2238190, 55.9355488 -3.2470879, 55.9719464 -3.2186362, 55.9336260 -3.2302083, 55.9388981 -3.2376677, 55.9389643 -3.2370370, 55.8957961 -3.2027554, 55.9340400 -3.0971256, 55.9027043 -3.2317298, 55.9048951 -3.2401465, 55.8983131 -3.2529409, 55.8982152 -3.2529759, 55.8968064 -3.2617298, 55.9505782 -3.1643798, 55.9364742 -3.1442593, 55.9364251 -3.1442736, 55.9513463 -3.1915316, 55.9182088 -3.2391527, 55.9460336 -3.2355680, 55.9415110 -3.1008429, 55.9414446 -3.1006519, 55.9485114 -3.1092515, 55.9185755 -3.2543017, 55.9381683 -3.1188638, 55.9245837 -3.2400577, 55.9256006 -3.2109986, 55.8988106 -3.1122530, 55.9676379 -3.1938318, 55.9383639 -3.2504417, 55.9722323 -3.2146044, 55.9724565 -3.2118885, 55.9612213 -3.2440717, 55.9308244 -3.1518837, 55.9297330 -3.1533386, 55.9316562 -3.1507078, 55.9318718 -3.1463329, 55.9277241 -3.1234427, 55.9720416 -3.2015689, 55.9466298 -3.0986934, 55.9574952 -3.1234468, 55.9197247 -3.1913944, 55.8957294 -3.2025668, 55.9258851 -3.2241566, 55.9413787 -3.0870066, 55.9449606 -3.0819338, 55.9455754 -3.0809719, 55.9638152 -3.1833546, 55.9377687 -3.0829248, 55.9562912 -3.1167564, 55.9553136 -3.1347966, 55.9523526 -3.1216124, 55.9121454 -3.2269756, 55.9559888 -3.1381085, 55.9386713 -3.2294016, 55.9408297 -3.2281101, 55.9313859 -3.2266750, 55.9082024 -3.1450986, 55.9719796 -3.1819990, 55.9729029 -3.1796943, 55.9781105 -3.2484770, 55.9776368 -3.1715747, 55.9129316 -3.2587696, 55.9481854 -3.1327032, 55.9497070 -3.1282573, 55.9505802 -3.1256311, 55.9315629 -3.0896016, 55.9316842 -3.0896474, 55.9524152 -3.1898271, 55.9517230 -3.1626551, 55.9195263 -3.1315612, 55.9204725 -3.1296564, 55.9271847 -3.2322346, 55.9752701 -3.1721362, 55.9370202 -3.1150617, 55.9498130 -3.1278824, 55.9335311 -3.2460168, 55.9654945 -3.1987511, 55.9414195 -3.2607368, 55.9491933 -3.2339726, 55.9491916 -3.2340269, 55.9401509 -3.1051771, 55.9185615 -3.2564239, 55.9182467 -3.2558059, 55.9255939 -3.2592967, 55.9621338 -3.2357562, 55.9551141 -3.1716795, 55.9554953 -3.1694437, 55.9557105 -3.1678403, 55.9198790 -3.2500668, 55.9491095 -3.1886633, 55.9483181 -3.1921400, 55.8985472 -3.2526169, 55.9347539 -3.0927986, 55.9264385 -3.2440961, 55.9545824 -3.1235823, 55.9502050 -3.1185776, 55.9503672 -3.1183641, 55.9502919 -3.1184525, 55.9514019 -3.1213054, 55.9515864 -3.1214448, 55.9384573 -3.2506124, 55.9781398 -3.2041489, 55.9384983 -3.1011659, 55.9383994 -3.1013350, 55.9360595 -3.0997430, 55.9360181 -3.0994647, 55.9352687 -3.0936685, 55.9604081 -3.1692015, 55.9385531 -3.2456125, 55.9203652 -3.2493989, 55.8936687 -3.1341152, 55.9523063 -3.2197090, 55.9062132 -3.1443033, 55.9410985 -3.2191428, 55.9800561 -3.1685204, 55.9186017 -3.2133163, 55.9197518 -3.1694474, 55.9195114 -3.1713437, 55.9189800 -3.1809284, 55.9200112 -3.1691248, 55.9201390 -3.1981185, 55.9191575 -3.2099986, 55.9203639 -3.1969606, 55.9265636 -3.1932019, 55.9188974 -3.1826016, 55.9189683 -3.1842309, 55.9202821 -3.1940116, 55.9398002 -3.2220426, 55.9784658 -3.2466154, 55.9789098 -3.2447800, 55.9679775 -3.1369332, 55.9717821 -3.1844100, 55.9716908 -3.1860434, 55.9717113 -3.1875051, 55.9681145 -3.1895803, 55.9442882 -3.1018500, 55.9399651 -3.2399588, 55.9394933 -3.2453748, 55.9559491 -3.1383617, 55.9572454 -3.1673651, 55.9516224 -3.1908957, 55.9670513 -3.1881007, 55.9082492 -3.2565595, 55.9151194 -3.2550825, 55.9122377 -3.2233399, 55.9622789 -3.2011859, 55.9421647 -3.2470797, 55.9354120 -3.1193612, 55.9393811 -3.2455628, 55.9383946 -3.2504900, 55.9382808 -3.2503344, 55.9407555 -3.1334453, 55.9536161 -3.1183473, 55.9522235 -3.1196956, 55.9523435 -3.1199743, 55.9389764 -3.2564267, 55.9028769 -3.1704602, 55.9403251 -3.1711216, 55.9559118 -3.1688770, 55.8943851 -3.1612131, 55.9457633 -3.1036022, 55.9471038 -3.1039051, 55.9501220 -3.1187317, 55.9512778 -3.1212874, 55.9506598 -3.1233359, 55.9372017 -3.1058578, 55.9553192 -3.1595172, 55.9650158 -3.2055812, 55.9639608 -3.2050152, 55.9640506 -3.2037879, 55.9644488 -3.2053085, 55.9768122 -3.1695301, 55.9460133 -3.0786259, 55.9641775 -3.2051492, 55.9698924 -3.2368261, 55.9414184 -3.0989528, 55.9784045 -3.1624012, 55.9436659 -3.0898885, 55.9714848 -3.1856041, 55.9644884 -3.2607345, 55.9528004 -3.1190589, 55.9495735 -3.2250446, 55.9360819 -3.0998763, 55.9116079 -3.2325243, 55.9093972 -3.2356124, 55.9024335 -3.2486536, 55.9792933 -3.1868121, 55.9301289 -3.1759929, 55.9523218 -3.1219972, 55.9523473 -3.1218286, 55.9237523 -3.2486106, 55.9667609 -3.1986965, 55.9527147 -3.1829537, 55.9612608 -3.2180586, 55.9394512 -3.2452451, 55.9431085 -3.2293645, 55.9430025 -3.2292568, 55.9409323 -3.2384857, 55.9430616 -3.2293168, 55.9395239 -3.2453984, 55.9393795 -3.2453481, 55.9394029 -3.2453236, 55.9819465 -3.1774958, 55.9172683 -3.2148101, 55.9733347 -3.1998701, 55.9082028 -3.1062073, 55.9064191 -3.2363051, 55.9089283 -3.2357059, 55.9026053 -3.2453772, 55.9226886 -3.1659385, 55.9289069 -3.2483973, 55.9596457 -3.1649121, 55.9518266 -3.2180597, 55.9404913 -3.2132648, 55.9412112 -3.2385524, 55.9395609 -3.2454472, 55.9433784 -3.2295944, 55.9203199 -3.1339112, 55.9434087 -3.2296013, 55.9384884 -3.2506410, 55.9410200 -3.2385372, 55.9395943 -3.2454714, 55.9412402 -3.2385785, 55.9399375 -3.2400031, 55.9409900 -3.2385210, 55.9410979 -3.2385587, 55.9330752 -3.2518749, 55.9044032 -3.1455205, 55.9195813 -3.1706208, 55.9352633 -3.0935375, 55.9347337 -3.0928281, 55.8956840 -3.2110087, 55.8948418 -3.2158308, 55.8946710 -3.2156575, 55.8949531 -3.2113167, 55.8939386 -3.2155602, 55.8951467 -3.2161873, 55.8948458 -3.2116936, 55.8951646 -3.2111469, 55.8906180 -3.2303624, 55.8924010 -3.2267274, 55.8934535 -3.2249209, 55.8904695 -3.2299954, 55.9171429 -3.1435645, 55.9174253 -3.1426070, 55.9501752 -3.1186403, 55.9502514 -3.1185072, 55.9025541 -3.1224669, 55.9734237 -3.1921831, 55.9481275 -3.2086529, 55.9486427 -3.2079483, 55.9413168 -3.2110594, 55.9562630 -3.2104579, 55.9527474 -3.1872395, 55.9639719 -3.2292745, 55.9431363 -3.2293927, 55.9431629 -3.2294198, 55.9432761 -3.2295356, 55.9432343 -3.2294925, 55.9431947 -3.2294521, 55.9563108 -3.2104273, 55.9198136 -3.1910370, 55.9198330 -3.1912323, 55.9519638 -3.1893845, 55.9444560 -3.2438143, 55.9276018 -3.1242863, 55.9401029 -3.2459404, 55.9400420 -3.2458821, 55.9556775 -3.1678207, 55.9554007 -3.1697309, 55.9550351 -3.1719805, 55.9563502 -3.1500510, 55.9552887 -3.1595205, 55.9550536 -3.1721411, 55.9231423 -3.1317251, 55.9263765 -3.1245977, 55.9320392 -3.1186143, 55.9230920 -3.1288480, 55.9264003 -3.1245253, 55.9238791 -3.1301288, 55.9249092 -3.1317835, 55.9574584 -3.1234473, 55.9450441 -3.0797032, 55.9442320 -3.1018081, 55.9699278 -3.1455846, 55.9013948 -3.1244584, 55.8988473 -3.1283552, 55.9231803 -3.2480077, 55.9164084 -3.1849654, 55.9177937 -3.1846644, 55.9240254 -3.2490676, 55.9370530 -3.1415506, 55.9517404 -3.2180889, 55.9446501 -3.0880025, 55.9021353 -3.2501935, 55.8942654 -3.1626324, 55.9038648 -3.1462199, 55.9121932 -3.1484610, 55.9074964 -3.1559715, 55.9071592 -3.1590133, 55.8988194 -3.1121826, 55.9025795 -3.1224539, 55.9469951 -3.1020335, 55.9408433 -3.2281719, 55.9195246 -3.2619701, 55.9258506 -3.2453444, 55.9386713 -3.2294652, 55.9316728 -3.2343298, 55.9236107 -3.2499213, 55.9506990 -3.1783969, 55.9513642 -3.1213511, 55.9436387 -3.0899418, 55.9776667 -3.1692632, 55.9773820 -3.1693260, 55.9772501 -3.1693673, 55.9766189 -3.1695907, 55.9777727 -3.1692450, 55.9774929 -3.1693026, 55.9256594 -3.2520596, 55.9297266 -3.2084328, 55.9624869 -3.2031288, 55.9541500 -3.1863978, 55.9119787 -3.2185675, 55.9529445 -3.1871277, 55.9547367 -3.1871003, 55.9517145 -3.2168733, 55.9516104 -3.2171239, 55.9335665 -3.2301068, 55.9851895 -3.2288638, 55.9848232 -3.2292501, 55.9527384 -3.1830711, 55.9527092 -3.1828278, 55.9527213 -3.1833724, 55.9527280 -3.1833793, 55.9528735 -3.1872831, 55.9290689 -3.1622585, 55.9287341 -3.1607101, 55.9388821 -3.2377253, 55.9368436 -3.2372698, 55.9369848 -3.1150579, 55.9275073 -3.2236133, 55.9275449 -3.2240159, 55.9274742 -3.2239695, 55.9614221 -3.2179944, 55.9068688 -3.1616681, 55.9070854 -3.1607388, 55.9054631 -3.1633904, 55.9475046 -3.2015110, 55.8954601 -3.2603374, 55.9198302 -3.1373243, 55.8937125 -3.1750539, 55.9700060 -3.1923639, 55.9517074 -3.1917116, 55.9519919 -3.1918536, 55.9346349 -3.2323382, 55.9548342 -3.1729534, 55.9549105 -3.1724623, 55.9523992 -3.1195987, 55.9104811 -3.1489302, 55.9515016 -3.1889995, 55.9515990 -3.1890502, 55.9525338 -3.1894550, 55.9517985 -3.1891003, 55.9514012 -3.1889631, 55.9024101 -3.2496156 +yes +322 +MM, LY, TZ, CN, CO, UZ, NL, QA, SE, ML, RS, CN, MU, TN, SN, NP, SR, GE, TW, AU, JP, MT, PY, MX, BI, US, CH, PL, IL, CO, US, BE, LK, GQ, EC, KR, SY, IT, DZ, SG, BF, UA, ET, FI, ZA, AT, LU, BG, CA, DE, BR, CN, ES, RO, PK, VA, IR, EG, YE, OM, DK, SO, CY, GR, UY, BH, KW, AR, VE, MX, KE, BJ, LB, PE, LA, BJ, CI, AO, IE, CD, KM, DE, LV, CA, GH, HU, TD, LT, DJ, AL, PT, PK, MA, MY, NE, GN, MR, AE, NG, UG, BD, ID, KH, RU, IN, MG, AF, MC, GA, SK, PH, SC, MA, TR, BE, TG, AM, ZW, RU, LR, LT, PT, CM, DZ, VN, CL, ZA, SN, TN, NL, NO, GB, ML, RW, RU +491 +no +285 +yes +48.8600225 2.3936303 +エディンバラ +Fresque du Demi-Millénaire - Part 2, Fresque Musée T.Garnier 18 - Quartier des Etats-Unis, habitations en commun, Fresque Histoire des transports Lyonnais, Fresque "Lyon, la santé, la vie", Le mur du cinéma, Fresque de Gerland, La Fresque Lumineuse - La ville dans le futur, Fresque "Mur Démo", Fresque Musée T.Garnier 4 - Une Cité Industrielle, Fresque de Shangaï, Fresque Musée T.Garnier 17 - Abattoirs de la Mouche, Fresque Musée T.Garnier 1 - Annonce Musée, Fresque Musée T.Garnier 3 - Années 1900, Fresque Musée T.Garnier 19 - Cité idéale d'Egypte, Fresque Musée T.Garnier 23 - Cité idéale de Russie, Fresque Musée T.Garnier 20 - Cité idéale de l'Inde, Fresque Musée T.Garnier 22 - Cité idéale de la Côte d'Ivoire, Fresque Musée T.Garnier 24 - Cité Idéale des USA, Fresque Musée T.Garnier 21 - Cité idéale du Mexique, Fresque Musée T.Garnier 10 - Ecole, Fresque Musée T.Garnier 9 - Habitations, terrasse, Fresque Musée T.Garnier 12 - Etablissements sanitaires, Fresque Musée T.Garnier 7 - Habitations, ensemble citadin, Fresque Musée T.Garnier 8 - Habitations, vue rapprochée, Fresque Musée T.Garnier 16 - Hôpital de Grange-Blanche, Fresque Musée T.Garnier 6 - La Gare, Fresque Musée T.Garnier 11 - La tour d'horloges, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Fresque Musée T.Garnier 15 - Stade de Gerland, Fresque Musée T.Garnier 14 - Les hauts fourneaux, Fresque Musée T.Garnier 5 - Les Services Publics, Fresque Musée T.Garnier 2 - Tony Garnier Visionnaire, Fresque Musée T.Garnier 13 - Vue des usines, Fresque Musée T.Garnier 22 - Cité idéale de la Côte d'Ivoire, annexe, Fresque "La renaissance", Fresque "Montluc - Jean Moulin", Fresque "Art et Industrie", Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, La Fresque du Demi-Millenaire - Part 1, Fresque idéale de Québec, Fresque "Oullins Centre-ville", Fresque "Du Pont d'Oullins", Mur peint : L’auberge savoyarde, La Fresque du Foyer, La Fresque Art Déco, Fresque RTE Lyon La Mouche, Fresque Vues sur le Lyonnais, Fresque La Chimie dans tout ses Etats, Fresque "Chez Jeanne", Fresque "Allée Arborée", Fresque "La Forge", Fresque "Les Diligences", Fresque "Les Vieux Métiers 1", Fresque "Les Vieux Métiers 2", La Fresque du Centenaire 1912-2012, La Fresque du Centenaire 1912-2012, Fresque "Gerland Biotechnologies", Fresque des Vourlois, Fresque du Gymnase, Fresque des Roses - St Priest, Fresque des Roses - Lyon, Av Santy, Fresque Agir pour la biodiversité, Fresque aerosol, Fresque Lycée Ampere Saxe, Fresque "Les basiliques de Saint-Just", Fresque Le marathon de l'impossible, Fresque Arte Aca, Fresque "La cité KAPS", Fresque "Parking cité KAPS", Fresque des Roses - Lyon 8ème mairie, Fresque des roses - Venissieux (plan1), Fresque des roses - Venissieux (plan2), Fresque DeKover, Fresque "du Confluent", Fresque Espace Diego Rivera and 45.7242776 4.8539418, 45.7316295 4.8668787, 45.7484993 4.8788479, 45.7498654 4.8759864, 45.7549115 4.8434004, 45.7245886 4.8263897, 45.7433556 4.8405258, 45.7196057 4.8008161, 45.7326668 4.8630359, 45.7375747 4.8616255, 45.7321697 4.8664580, 45.7336465 4.8632348, 45.7328203 4.8629032, 45.7320947 4.8674966, 45.7330177 4.8657973, 45.7324535 4.8672057, 45.7331360 4.8666865, 45.7335600 4.8653728, 45.7325955 4.8671070, 45.7319545 4.8635870, 45.7321249 4.8634546, 45.7316965 4.8647521, 45.7323801 4.8642213, 45.7322374 4.8643323, 45.7323075 4.8663529, 45.7329498 4.8637779, 45.7314132 4.8640073, 45.7385048 4.8613236, 45.7387649 4.8607244, 45.7389336 4.8609359, 45.7328475 4.8659300, 45.7310051 4.8652929, 45.7331061 4.8636557, 45.7333891 4.8624614, 45.7315452 4.8648710, 45.7332067 4.8666311, 45.7165371 4.8098566, 45.7493533 4.8609118, 45.6634167 4.8424264, 45.7209120 4.8541671, 45.7235048 4.8539594, 45.7222175 4.8540626, 45.7227953 4.8540163, 45.7249510 4.8538288, 45.7342924 4.8626980, 45.7150814 4.8078204, 45.7175164 4.8098900, 45.7450213 4.8660796, 45.7502318 4.8416469, 45.7513725 4.8390037, 45.7205996 4.8439283, 45.5828000 4.6317347, 45.7083270 4.8272787, 45.7318628 4.9995743, 45.7316843 5.0009960, 45.7317208 4.9997166, 45.7322290 4.9975134, 45.7340142 4.9964253, 45.7337846 4.9972670, 45.7449245 4.8424444, 45.7452687 4.8413678, 45.7252956 4.8413865, 45.6584310 4.7736255, 45.7081288 4.7481631, 45.6946293 4.9406443, 45.7296178 4.8752517, 45.7463509 4.8459884, 45.7297744 4.8742560, 45.7551709 4.8469660, 45.7434934 4.8478974, 45.7559238 4.8169452, 45.7447945 4.9069783, 45.7179757 4.8174971, 45.7180962 4.8187223, 45.7178274 4.8192282, 45.7347800 4.8728560, 45.7005717 4.8870852, 45.7008842 4.8871881, 45.7132220 4.9185192, 45.7255562 4.8164955, 45.7318449 4.8358676 +post office, post box, kindergarten, park, parking, telephone, pub, place of worship, school, bus station, recycling, library, bank, fuel, restaurant, bicycle parking, toilets, atm, cinema, doctors, pharmacy, cafe, police, nightclub, car rental, parking entrance, leisure, fast food, medical centre, dentist, third sector offices, community project, public building, arts centre, car sharing, bureau de change, theatre, biergarten, fire station, masonic lodge, bar, bench, bbq, university, taxi, disused, marketplace, grit bin, stripclub, clinic, dressmaker, embassy, brothel, veterinary, community centre, clock, waste basket, fountain, vending machine, shelter, posts, artwork, dance hall, picnic bench, car wash, Austrian cosulate, swimming pool, grave yard, motorcycle parking, podiatrist, chiropodist, ice cream, waste transfer station, chiropractor, gallery, bookmakers, waste disposal, social facility, gym, drinking water, casino, photo booth, college, vacuum, jet wash, tourism, charging station, gambling, courthouse, register office, bingo, weighbridge, hairdressing, Renaissance Restoration, patisserie, finanacial advisor, physiotherapy, studio, yes, Yoga, food court, funeral, academi, financial advice, internet cafe, sauna, language centre, spa, first aid, driving school, kids area, childcare, nursing home, van rental, animal shelter, lamppost, crane, bicycle repair station, school tuition, prison, hospital, bandstand, health centre, conference centre, post depot, townhall, amusements, crematorium, mortuary, pontoon, parking lane, shop, harbourmaster, tool hire, community center, kiosk, retirement home, Music Shop, social centre, reception area, nursery, scout hall, animal boarding, common, hotel, house removals, community hall, hall, care home +49.4118566 8.7016009 +Standing Stone, Caiy Stane, Standing Stone, Balm Well, Cup and Ring Marked Rocks, Stone, Hanging Stanes, The Buckstane, Cat Stane, Ravenswood Avenue Standing Stone, Physic Well, Fort, Bonnington Weir, Hatton House +55.9387357 -3.3996538, 55.9380963 -3.4051984, 55.9385221 -3.4040472, 55.9386848 -3.4052874, 55.9333966 -3.3543268, 55.9024677 -3.2131994, 55.9579939 -3.3233291, 55.9028966 -3.1642422, 55.9122291 -3.3948137, 55.8798835 -3.3439577, 55.9226406 -3.2094180, 55.9101467 -3.2093552, 55.9546676 -3.3637002, 55.9222410 -3.1492085, 55.9387885 -3.2890803, 55.8869268 -3.2813599, 55.9691744 -3.1898383, 55.9045439 -3.3952157, 55.9729762 -3.1721306 +5 +yes +48 +french, indian, mexican, pasta, chinese, thai, regional, vietnamese, japanese, couscous, grill, belgian, italian, arab, international, pizza, canadian, New-french, libre, corsican, american, sichuan, Lanzhou, lebanese, peruvian, sushi-yakitori, asian, crepe, sushi, kebab, Sushi-yakitori, shandong, traditional, Sardaigne, steak house, iranian, mediterranean, seafood, korean, latin american, Lao, spanish, burger, moroccan, algerian, Bistrot gastronome, sandwich, gastronomic, jewish, bagel, polish, argentinian, tibetan, morrocan, vietnamien-cambodgien, senegalese, kosher, Hangzhou, smart traditional, fish, brazilian, berber, greek, ivoirian, turkish, african, tapas, chineses (Teochew) - 中国潮州, Océan indien, latino, fondue, cambodian, basque, crêpe, local, maltese, chinese - Fondue pékinoise, brunch, ethiopian, crêperie, Sud-Ouest France, syrian, creole, bento, brasserie, coffee shop, magreb, malaysian, indonesian, thai fruit juces, cocktails, maghrébine, traiteur japonais, ramen, Lyonnaise, Amérique du Sud - Argentine, mongol, Cap Vert, portuguese, crepes, ukrainian, meat, lao, mauritian, salad, caribbean, Oriental Couscous, oriental, Jiangxi, international (Francaise, sud americaine), berbere, oriental couscous, colombian, classique, paella, african caribbean, new york pizza, north african, indian pakistanese, Chinese, Sichuan, armenian, ouïghour, irak, cuisine nissarde, chicken, salade, bio, cake, gluten free, seasonal, Kazakh, Russe, huoguo, russian, bistro, hungarian, colombie, mexicain, juice, grilled meat, afghan, fish and chips, balinese, laotian, Traditionnelle, Shanxi, Maison bio producteurs bols, carribean, Bistrot Branché au charme désué, Restaurant et épicerie fine grecque, vegetarian, pakistanese, indiane, Fondue and raclette, israeli, Japanese, Cupcakes, smoothies, Africaine, georgian, tunisian, organic, salon de thé, restaurant +49.3826654 8.6703241, 49.3795039 8.6788777, 49.3994731 8.6498961, 49.3795039 8.6788791, 49.3795039 8.6788799, 49.3795039 8.6788784, 49.3795039 8.6788807 +no +yes +yes ++496221166707 +48.8570374 2.3118779, 48.8660977 2.3554138, 48.8957518 2.3879761, 48.8957352 2.3886935, 48.8660456 2.3145051, 48.8414574 2.3172246, 48.8677629 2.2935696, 48.8625016 2.3453019, 48.8705899 2.3500828, 48.8618163 2.2873421, 48.8404563 2.3198526, 48.8603240 2.3522598, 48.8960350 2.3884154, 48.8566677 2.3132514, 48.8564589 2.3132374, 48.8609823 2.2977973, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8614768 2.3351677, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8661515 2.3122667, 48.8505164 2.3621847, 48.8599188 2.3265259, 48.8794667 2.3125380, 48.8553042 2.3158566, 48.8755169 2.3105465, 48.8373190 2.3319319, 48.8421181 2.3562419, 48.8344502 2.3520875, 48.8657061 2.2966614, 48.8432079 2.3186583, 48.8576820 2.3627148, 48.8611474 2.3358637 +55.9440035 -3.1620073 +48.8547859 2.3941295 +49.4125622 8.6856608, 49.4028079 8.6877203, 49.4132392 8.6920033, 49.4101353 8.6927154, 49.4149603 8.6903977, 49.4171332 8.6926969, 49.4131244 8.6897970, 49.4122418 8.6816335 +12 +Greyfriars Bobby Statue +no +18 +yes +yes +49.4176558 8.6587085, 49.4185953 8.7563610, 49.4146001 8.7738410, 49.4162757 8.6922037, 49.4306151 8.6467040, 49.4055996 8.6889278, 49.3773672 8.6667238, 49.3834643 8.6624283, 49.3974421 8.6480834, 49.4121728 8.7080504, 49.4123763 8.7095125, 49.4089611 8.6957225, 49.4083996 8.6927648, 49.4115665 8.7029371, 49.4091521 8.6979357, 49.4178759 8.6766696, 49.4070439 8.6949350, 49.3742086 8.7031163, 49.4041500 8.6845214, 49.4060715 8.6915874, 49.4128315 8.7094842, 49.4087049 8.7054045, 49.4136428 8.6936066, 49.4079188 8.6896894, 49.4071802 8.6893369, 49.4278664 8.6462916, 49.4269602 8.6468617, 49.3790377 8.6919226, 49.3810339 8.6888988, 49.4118680 8.7106616, 49.4085554 8.6900358, 49.4127804 8.7095036, 49.3836445 8.6785428, 49.4121545 8.7119807, 49.4123356 8.7097176, 49.3772275 8.6672364, 49.4254663 8.6892002, 49.4317284 8.6827286, 49.4235631 8.6886029, 49.3887612 8.6898215, 49.3896117 8.6900353, 49.4143279 8.6877116 +Viernheim, Schifferstadt, Walldorf, Hemsbach, Speyer, Bad Schönborn, Philippsburg, Eppelheim, Leimen, Weinheim, Waghäusel, Sandhausen, Edingen-Neckarhausen, Dossenheim, Hockenheim, Schriesheim, Schwetzingen, Ladenburg +20 +52.5069115 13.3228318, 52.5062394 13.3173230, 52.5063184 13.2846256, 52.5701303 13.3098188, 52.5044686 13.3827465, 52.5152342 13.3889227, 52.5235613 13.4109816, 52.5827216 13.2901148, 52.5308522 13.4125641, 52.4878837 13.2628406, 52.5082357 13.2578049, 52.4877481 13.3204876, 52.5193671 13.4276134, 52.5194671 13.3556992, 52.4304694 13.2304081, 52.4881781 13.3703210, 52.4911781 13.3684657, 52.4339812 13.3592913, 52.4751067 13.3234171, 52.5083552 13.4529561, 52.4900350 13.3827424, 52.4897481 13.3832833, 52.4747650 13.4469205, 52.6350882 13.4995196, 52.5091398 13.4598832, 52.5095667 13.4580847, 52.5160850 13.4564770, 52.5179670 13.4676240, 52.5153376 13.4718582, 52.4982357 13.3189482, 52.4919428 13.4211845, 52.5076500 13.3180837, 52.5552143 13.4388386, 52.5924426 13.3263936, 52.4949140 13.4155220, 52.5210713 13.3573605, 52.4814692 13.3483659, 52.6331209 13.2886358, 52.5881097 13.2855979, 52.5442796 13.2040241, 52.5213052 13.3852660, 52.5201134 13.4499870, 52.5148686 13.3811135, 52.5298163 13.4448184, 52.4133800 13.3624524, 52.5096866 13.1801984, 52.5335195 13.4036376, 52.4821596 13.3825900, 52.5210049 13.3850412, 52.5101889 13.3763490, 52.5228146 13.3824135, 52.5250993 13.3871462, 52.4390321 13.3440299, 52.5052560 13.3197902, 52.4576996 13.2907097, 52.4726336 13.3216954, 52.4246828 13.3307770, 52.5192482 13.2984365, 52.5140665 13.2973768, 52.4999586 13.4755158, 52.4559667 13.5510826, 52.4270030 13.2180894, 52.5231246 13.3595877, 52.5113636 13.3078414, 52.5452910 13.4214510, 52.5320900 13.3963020, 52.5339232 13.4020087, 52.5931545 13.3819714, 52.4508283 13.1466473, 52.5420410 13.4232985, 52.5351839 13.2710239, 52.4992112 13.3016415, 52.4585397 13.3166172, 52.4994281 13.4454712, 52.6202937 13.3137992, 52.5419050 13.4204589, 52.5439069 13.4176124, 52.4875448 13.3544549, 52.4874030 13.3541033, 52.4438246 13.2933907, 52.5263442 13.2977323, 52.5122149 13.4954972, 52.4467398 13.3150321, 52.5266828 13.3968336, 52.5236397 13.4027624, 52.4994084 13.3068508, 52.5190043 13.4092910, 52.5190513 13.4295589, 52.5018008 13.3008448, 52.5328024 13.4245980, 52.5365752 13.2046599, 52.4975767 13.2918904, 52.4988369 13.2994295, 52.4439488 13.4323140, 52.4612174 13.4456615, 52.5217320 13.3250972, 52.5531442 13.4140118, 52.5529712 13.4139794, 52.5378953 13.2030051, 52.4531819 13.4522533, 52.4407417 13.4592066, 52.4238137 13.4854959, 52.5298871 13.4713873, 52.4405190 13.3878949, 52.4210262 13.2976603, 52.5073215 13.3138562, 52.4863289 13.4651538, 52.4299557 13.2239573, 52.4556040 13.3173913, 52.5085666 13.4527848, 52.4853877 13.3476898, 52.5152881 13.4683393, 52.4820229 13.3169195, 52.4864004 13.3189983, 52.4860835 13.3290663, 52.5874017 13.2855961, 52.4476904 13.5756307, 52.5063136 13.3769923, 52.4115692 13.3424025, 52.5034406 13.3062941, 52.5037231 13.3050833, 52.5467849 13.4178351, 52.4897934 13.3795333, 52.5436877 13.4166071, 52.4900743 13.4245113, 52.4837246 13.2667894, 52.5452558 13.4173243, 52.5458583 13.4178349, 52.5152520 13.4676370, 52.3868165 13.3950979, 52.5874767 13.2846426, 52.3920720 13.4020275, 52.5278460 13.4034219, 52.5271255 13.3298305, 52.5297533 13.3284790, 52.5343540 13.4313230, 52.5268439 13.3873632, 52.5275792 13.3303878, 52.4812778 13.4391031, 52.5521062 13.4080968, 52.5236838 13.3874161, 52.5087225 13.2681911, 52.4868832 13.2846499, 52.4757170 13.2907370, 52.5010184 13.4974647, 52.4899162 13.3117635, 52.4233415 13.4362432, 52.5248544 13.3381275, 52.5004111 13.4317600, 52.4837200 13.2829887, 52.5204821 13.3939696, 52.5123526 13.2678588, 52.5112961 13.3978043, 52.5113327 13.2695740, 52.5164118 13.2598493, 52.5263187 13.3927162, 52.5227354 13.5567904, 52.5082551 13.2584459, 52.5473004 13.3893260, 52.5531314 13.1990761, 52.6212404 13.3136198, 52.6012705 13.2467275, 52.5178177 13.2932026, 52.4452085 13.2933119, 52.4467726 13.3062338, 52.5026881 13.3091942, 52.5026355 13.3086870, 52.5044423 13.3154003, 52.5064745 13.3203237, 52.5299462 13.4042591, 52.4215057 13.4945968, 52.4196696 13.4934625, 52.4873581 13.3228612, 52.5032428 13.3155784, 52.5031733 13.3168532, 52.5097710 13.3041806, 52.5042380 13.2947598, 52.5072909 13.2267518, 52.5006731 13.2963304, 52.5166214 13.2957794, 52.5114074 13.3007945, 52.3759416 13.6488756, 52.4896709 13.4339609, 52.5773500 13.3980944, 52.5874952 13.4020387, 52.4890372 13.1808833, 52.5105629 13.4575533, 52.4258695 13.4781647, 52.4346528 13.5433155, 52.4774025 13.2875429, 52.4947897 13.4144665, 52.5036107 13.3428877, 52.5020516 13.3274590, 52.5019174 13.3149696, 52.5037050 13.3137120, 52.5404869 13.4115154, 52.5372942 13.4081004, 52.5372945 13.3965114, 52.5560901 13.5584639, 52.4896443 13.4073191, 52.5865820 13.4017960, 52.4193420 13.2652145, 52.5011858 13.4165717, 52.4928279 13.4162445, 52.4938330 13.4138351, 52.4959732 13.3388640, 52.5114066 13.3909593, 52.4596179 13.3637266, 52.4137912 13.1440820, 52.5094177 13.3918636, 52.5137798 13.3867873, 52.5190936 13.2936265, 52.4823860 13.2889504, 52.5088670 13.3886297, 52.5116312 13.2935277, 52.5135524 13.3067557, 52.5091159 13.3231962, 52.5084112 13.3230343, 52.4630360 13.3192411, 52.4947349 13.3354157, 52.5086626 13.3233372, 52.4896718 13.4086687, 52.5121323 13.3111276, 52.5009630 13.4308196, 52.4918249 13.4138554, 52.4918942 13.4171604, 52.4909534 13.4133602, 52.5274294 13.3865661, 52.4916792 13.3908912, 52.4887560 13.3973908, 52.5123284 13.4174384, 52.5226711 13.3999181, 52.4362446 13.2599715, 52.4377056 13.2572691, 52.5194461 13.1715958, 52.4402291 13.4163377, 52.4167016 13.3386462, 52.5200759 13.3912892, 52.4156660 13.3038181, 52.4654911 13.3838958, 52.4167232 13.3150006, 52.5109054 13.2925759, 52.5889692 13.2808143, 52.5143165 13.4933841, 52.5241670 13.3495977, 52.4380752 13.2619078, 52.5099381 13.4555380, 52.4289520 13.2594051, 52.4388951 13.2620348, 52.4146202 13.2667181, 52.4526569 13.3712229, 52.5052060 13.4671770, 52.5682194 13.4397025, 52.4476546 13.3889907, 52.5653066 13.4040842, 52.5264091 13.3878587, 52.5474594 13.3539523, 52.5196031 13.3006048, 52.5047787 13.3281340, 52.4611303 13.3208711, 52.4653532 13.3261806, 52.4050239 13.5732228, 52.5283027 13.4250842, 52.5223000 13.4025415, 52.4863729 13.3558412, 52.4695855 13.3436400, 52.4646458 13.3386915, 52.4510479 13.3410754, 52.4888808 13.4514304, 52.5713143 13.3772117, 52.5024545 13.3235066, 52.4658960 13.4325315, 52.5069310 13.3001008, 52.5522064 13.4194146, 52.5274951 13.4034676, 52.5490461 13.3539211, 52.5614452 13.2087194, 52.4376800 13.2334683, 52.5052427 13.3276748, 52.4705900 13.4683231, 52.4527994 13.2878293, 52.4781316 13.3130289, 52.5255247 13.3087669, 52.5555648 13.3418651, 52.4894064 13.3170840, 52.5893322 13.3346494, 52.4713888 13.3850537, 52.5420950 13.3978570, 52.5839059 13.3027830, 52.5077312 13.3108621, 52.4996151 13.4258374, 52.5360800 13.4179450, 52.4754702 13.3397296, 52.4662347 13.3839426, 52.5186770 13.3856040, 52.5188432 13.3855752, 52.5228090 13.4014188, 52.4542633 13.5174410, 52.5111231 13.4615464, 52.4902524 13.3488767, 52.4771684 13.2900752, 52.5345549 13.3538560, 52.5289698 13.3949864, 52.5282595 13.3935979, 52.4771310 13.4211842, 52.5111674 13.4565759, 52.4881604 13.3396191, 52.4787252 13.3449806, 52.5089982 13.2222587, 52.5103714 13.3785200, 52.4876209 13.3908878, 52.5369310 13.2667883, 52.5363712 13.2703134, 52.5368458 13.2709624, 52.4267629 13.3738584, 52.4815005 13.4264323, 52.5222512 13.3845929, 52.5073189 13.3258386, 52.3993983 13.4099124, 52.5026176 13.3851524, 52.4932741 13.5064620, 52.5057403 13.3263663, 52.4922732 13.4255285, 52.4192490 13.3428855, 52.5361571 13.4180559, 52.5229923 13.4006601, 52.4294113 13.3225497, 52.4491222 13.3524470, 52.5390377 13.4213263, 52.6097807 13.3295938, 52.5429358 13.5711923, 52.5280126 13.4100471, 52.4424028 13.2834388, 52.4816526 13.4310556, 52.4326111 13.3000801, 52.4699252 13.3253753, 52.4961535 13.4224306, 52.4546344 13.5765736, 52.4634443 13.3388174, 52.5633447 13.4193334, 52.4201088 13.5004855, 52.5415299 13.3499703, 52.5222734 13.4498672, 52.4774287 13.3306646, 52.4900931 13.3837738, 52.4449480 13.3745728, 52.4990616 13.3107853, 52.5036578 13.3467190, 52.5322498 13.3951179, 52.4936308 13.3229806, 52.4202395 13.4917437, 52.5258997 13.3904417, 52.5258840 13.3903475, 52.4970593 13.3558268, 52.5504924 13.4582409, 52.4415589 13.3537732, 52.5712732 13.4100235, 52.5641446 13.3921067, 52.4579728 13.3289151, 52.4967986 13.3513721, 52.4999022 13.3140264, 52.4998037 13.3193377, 52.5089136 13.4597632, 52.5223761 13.3244308, 52.4976201 13.3245734, 52.4972963 13.3240386, 52.4980199 13.3188341, 52.5028066 13.4546539, 52.4980348 13.3266685, 52.4998461 13.3272413, 52.4975750 13.3541708, 52.4986907 13.3134634, 52.4383812 13.5497315, 52.5050216 13.3213128, 52.5031210 13.3222555, 52.5040127 13.3218515, 52.5098870 13.3009280, 52.5294717 13.4097836, 52.5259324 13.3121837, 52.4845244 13.4279564, 52.5030064 13.3163054, 52.4908268 13.3249581, 52.5067881 13.3984014, 52.4986531 13.4316113, 52.5032919 13.3173579, 52.4947170 13.3046819, 52.4511108 13.3394855, 52.4467908 13.3430905, 52.5158150 13.3900468, 52.5486148 13.4204475, 52.4860426 13.3942041, 52.5038063 13.3478626, 52.4993795 13.3124574, 52.5025765 13.3362913, 52.5026543 13.3369574, 52.5192960 13.5555643, 52.5277674 13.4013573, 52.4901678 13.3859053, 52.4723227 13.4427795, 52.4525902 13.1394496, 52.5093777 13.4122062, 52.6376588 13.4916475, 52.4819592 13.3209548, 52.4996078 13.3017208, 52.5610130 13.4108304, 52.5110493 13.4523542, 52.5264284 13.3495377, 52.5077054 13.3224097, 52.4533015 13.1446473, 52.5052029 13.3213508, 52.5053698 13.3213997, 52.5052522 13.3206141, 52.5026008 13.4541578, 52.5039396 13.4496705, 52.4742122 13.3225369, 52.4967594 13.2927776, 52.4965012 13.2925505, 52.4651273 13.3211790, 52.5044862 13.3572887, 52.5680460 13.3297663, 52.4516240 13.6245675, 52.5097763 13.2743919, 52.4802446 13.3474984, 52.5058808 13.2998222, 52.5052101 13.2994779, 52.5048823 13.2989499, 52.5051950 13.3010238, 52.5050908 13.2982867, 52.4783394 13.3302113, 52.4783316 13.3280731, 52.5016581 13.3215066, 52.4901661 13.3879453, 52.5069262 13.3046572, 52.5332160 13.4068670, 52.5344093 13.4862470, 52.4943580 13.4338436, 52.5033917 13.3194823, 52.5076652 13.3092003, 52.5914706 13.2987461, 52.5322456 13.4288704, 52.5196349 13.3922870, 52.5072297 13.3179535, 52.4376187 13.2154785, 52.4427186 13.5064825, 52.4379660 13.5486403, 52.5023777 13.4306011, 52.5257634 13.3876676, 52.4661421 13.3066430, 52.4470205 13.4017563, 52.5262627 13.3937995, 52.5252240 13.3045958, 52.5150559 13.4541734, 52.4449745 13.2948308, 52.5324240 13.4097060, 52.4933373 13.4346900, 52.5071988 13.4710171, 52.5191259 13.4373449, 52.5269301 13.4077863, 52.5282867 13.3305771, 52.5383566 13.4195004, 52.5397718 13.4070303, 52.4530487 13.5104700, 52.4894382 13.3967172, 52.5930806 13.3129791, 52.5182854 13.3231069, 52.5020333 13.3292818, 52.5413988 13.4096054, 52.5063176 13.4706450, 52.4981925 13.3003248, 52.5285182 13.3944661, 52.5099337 13.3232528, 52.5750390 13.5182607, 52.5419431 13.3565439, 52.4186690 13.3991784, 52.4888557 13.3290126, 52.4878185 13.3313451, 52.4911897 13.3312448, 52.5358328 13.4226530, 52.4705605 13.3346022, 52.4688809 13.3333144, 52.5127542 13.4172149, 52.4968333 13.3848313, 52.4789536 13.3439700, 52.4792535 13.3445743, 52.4927046 13.3872113, 38.3255285 -75.2196085, 52.5044321 13.3375029, 52.4552268 13.4447934, 52.5223558 13.3842198, 52.5101257 13.2799408, 52.5258909 13.3942026, 52.5082660 13.3750140, 52.4601389 13.3250278, 52.4758334 13.4237017, 52.4915702 13.4199692, 52.5136384 13.4535065, 52.5036518 13.3346199, 52.5039172 13.3348953, 52.5015951 13.3254072, 52.5011524 13.3248706, 52.4987428 13.3243444, 52.4656089 13.3902675, 52.4737180 13.4236274, 52.4607030 13.4325405, 52.5668609 13.5191958, 52.5017912 13.3556920, 52.5067247 13.3200181, 52.5151446 13.3065187, 52.5305935 13.4345103, 52.5564385 13.3732526, 52.4598109 13.3220521, 52.5271114 13.3855709, 52.4771925 13.4411001, 52.5022808 13.4146065, 52.5087390 13.3905740, 52.4900326 13.3607221, 52.4375647 13.4727126, 52.5635198 13.3283672, 52.4523278 13.3200354, 52.4947391 13.3383845, 52.4962197 13.3426992, 52.5022752 13.3292939, 52.5566345 13.2073219, 52.5871273 13.2857810, 52.5045704 13.3317205, 52.5206194 13.2996717, 52.5053540 13.3381928, 52.4865818 13.4469072, 52.5294520 13.4007190, 52.6196833 13.3037694, 52.6188074 13.3051161, 52.5223686 13.3244249, 52.5145203 13.3049595, 52.5185020 13.4659600, 52.5107024 13.3013925, 52.5099539 13.2965993, 52.5474328 13.1967191, 52.4893756 13.3197932, 52.4828526 13.5261825, 52.4817581 13.5264803, 52.4754563 13.3396573, 52.4865176 13.3515135, 52.5426068 13.3563172, 52.4930783 13.3473845, 52.5001214 13.3499633, 52.5047351 13.3536719, 52.4874178 13.3493833, 52.4935341 13.3217046, 52.5049437 13.3229339, 52.5001197 13.3237367, 52.4970056 13.3128929, 52.4611056 13.5204276, 52.5073540 13.3204878, 52.5228253 13.4113960, 52.5385418 13.4161732, 52.5374701 13.4176690, 52.5399257 13.4177513, 52.5275432 13.3992750, 52.5113615 13.4382814, 52.4633715 13.5140820, 52.5101166 13.4519234, 52.5122870 13.4484294, 52.4587147 13.5124532, 52.4366317 13.4723954, 52.4366322 13.4723955, 52.4259332 13.3927884, 52.5284097 13.3789426, 52.4888517 13.3290677, 52.5367899 13.5872268, 52.4467074 13.5619791, 52.5970445 13.2960778, 52.4820941 13.3578333, 52.5870901 13.2257923, 52.4828435 13.2666188, 52.4771940 13.2799944, 52.4442621 13.2908896, 52.5227419 13.3946251, 52.5443211 13.1691522, 52.4170391 13.3992253, 52.4324251 13.2194250, 52.4315102 13.2309184, 52.4239372 13.3715936, 52.4192006 13.3610804 +Apex Edinburgh International +49.4095367 8.7037082, 49.4132139 8.7078103 +107 +49.4071068 8.6898761, 49.4168755 8.6790034, 49.4114748 8.7041577 +yes +55.9492055 -3.1928272 and 55.9505405 -3.1879922 +55.9048041 -3.1580079 +yes +memorial +99 +48.8379921 2.2782892, 48.8817403 2.3808725, 48.8820166 2.3809080, 48.8758342 2.4007667, 48.8841787 2.3817284, 48.8742878 2.3724982, 48.8707937 2.3688435, 48.8813944 2.3909952, 48.8442122 2.2877432 +BNP Paribas +191.69023527352718 +12 +49.3999791 8.6903579, 49.4183136 8.7570658, 49.4128139 8.6783720, 49.4145117 8.6907695, 49.4072855 8.6846071, 49.4080418 8.6903517, 49.4085419 8.6884195, 49.4114635 8.7036590, 49.4112271 8.7056319, 49.3803180 8.6917254, 49.3789548 8.6920168, 49.3789551 8.6697358, 49.4118400 8.7103033, 49.4101826 8.6997355, 49.4088814 8.6922211, 49.3933124 8.6898329, 49.3999180 8.6849475, 49.4004873 8.6918128, 49.4055340 8.6909414, 49.4284910 8.6833643, 49.4298020 8.6813390, 49.3813862 8.6715525, 49.3801053 8.6879890, 49.4055840 8.6658584, 49.3805484 8.6587871, 49.4019559 8.6916056, 49.4035568 8.6918554, 49.4089227 8.6927850, 49.3788705 8.6685559, 49.3821598 8.6632293, 49.4076785 8.6917122, 49.4211931 8.6801164, 49.3746688 8.7035666, 49.4103729 8.6964923, 49.3744114 8.6827527, 49.3734828 8.6803866, 49.4088951 8.6939512, 49.4152187 8.7476376, 49.4122637 8.7077964, 49.4034041 8.6828344, 49.4283328 8.6876890, 49.4294006 8.6822101, 49.4045550 8.6757234, 49.4042051 8.6757454, 49.4055602 8.6759168, 49.3773301 8.6643950, 49.4247182 8.6873975, 49.4254190 8.6871690, 49.4211737 8.7557530, 49.4152481 8.6922641, 49.3803605 8.6881824, 49.4145068 8.6907391, 49.4148749 8.6923202, 49.4090710 8.6596269, 49.3797613 8.6848437, 49.4230594 8.6488328, 49.4059598 8.6868733, 49.3772126 8.6700382, 49.4270878 8.6470653, 49.4278529 8.6465726, 49.4188086 8.6517772, 49.3974830 8.6464426, 49.3976777 8.6479965, 49.4073819 8.6570319, 49.4014703 8.6683127, 49.4023052 8.6665425, 49.3643703 8.7049073, 49.4082152 8.6881105, 49.3672607 8.6859228, 49.4274587 8.7497458, 49.4231569 8.7538331, 49.3791539 8.6910962, 49.3746591 8.7029203, 49.3855952 8.6902427, 49.4041430 8.6464978, 49.4077479 8.6774775, 49.4179480 8.7596452, 49.4146130 8.6710105 +fr:Musée en Herbe, fr:Maison européenne de la photographie, fr:Centre musical Fleury Goutte d'Or-Barbara, fr:Le Plateau (centre d'art contemporain), fr:La Bellevilloise, fr:Centre national d'art et de culture Georges-Pompidou, fr:Théâtre de la Gaîté, fr:Hôtel Gouthière, fr:Grande halle de la Villette, fr:Pavillon Carré de Baudouin, fr:Centre culturel irlandais de Paris, fr:Maison de l'Amérique latine, fr:Centre culturel suédois, fr:Cent Quatre (établissement culturel), fr:Maison des Métallos +48.8292797 2.3113663 +Cameo Bar +yes +yes +49.4084390 8.6682963 +69 +48.8956082 2.3863617 +Gonesse, Villepinte, Neuilly-Plaisance, Neuilly-sur-Marne, Aubervilliers, Athis-Mons, Stains, Noisiel, Le Blanc-Mesnil, Chelles, Maisons-Alfort, Bry-sur-Marne, Aulnay-sous-Bois, Villiers-le-Bel, Chevilly-Larue, Les Lilas, Limeil-Brévannes, Villemomble, Les Pavillons-sous-Bois, Villeneuve-le-Roi, Rosny-sous-Bois, Saint-Brice-sous-Forêt, Vitry-sur-Seine, Joinville-le-Pont, Noisy-le-Grand, Saint-Mandé, Le Bourget, Le Plessis-Trévise, Livry-Gargan, La Courneuve, Le Pré-Saint-Gervais, Villiers-sur-Marne, Montfermeil, Saint-Maurice, Alfortville, Nogent-sur-Marne, Thiais, Fontenay-sous-Bois, Champigny-sur-Marne, Créteil, Boissy-Saint-Léger, Charenton-le-Pont, Noisy-le-Sec, Bobigny, Sevran, Garges-lès-Gonesse, Vigneux-sur-Seine, Sucy-en-Brie, Bagnolet, Le Raincy, Montreuil, Le Perreux-sur-Marne, Montgeron, Le Kremlin-Bicêtre, Arnouville, Champs-sur-Marne, Yerres, Pierrefitte-sur-Seine, Bonneuil-sur-Marne, Sarcelles, Romainville, Saint-Denis, Gagny, Choisy-le-Roi, Villejuif, Valenton, Villeneuve-Saint-Georges, Chennevières-sur-Marne, Ormesson-sur-Marne, Drancy, Bondy, La Queue-en-Brie, Saint-Maur-des-Fossés, Orly, Juvisy-sur-Orge, Ivry-sur-Seine, Vincennes, Pantin, Clichy-sous-Bois +251 +44.7695203 -72.0464788 +yes +55.9524898 -3.1736491, 55.9525959 -3.1925077 +48.8373758 2.3176784, 48.8379602 2.2583959, 48.8410120 2.3066005, 48.8570028 2.3007925, 48.8579137 2.3005660, 48.8318670 2.3144693, 48.8395609 2.3021892, 48.8375207 2.2967192, 48.8375266 2.2960585, 48.8276825 2.3271004, 48.8501002 2.3428094, 48.8327092 2.3625620, 48.8304784 2.3562767, 48.8334332 2.3545467, 48.8326050 2.3544168, 48.8530182 2.4058632, 48.8554073 2.3268543, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8529470 2.3434116, 48.8535279 2.3681762, 48.8488712 2.2873446, 48.8189960 2.3382666, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8521024 2.4034631, 48.8318807 2.3568124, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8501765 2.3792170, 48.8507286 2.3779068, 48.8509545 2.3780414, 48.8502726 2.3811628, 48.8330519 2.3316747, 48.8367776 2.2983375, 48.8357338 2.3020633, 48.8369085 2.4021711, 48.8370521 2.4018326, 48.8396803 2.3945209, 48.8400366 2.3946968, 48.8397862 2.3968956, 48.8368227 2.4037506, 48.8368339 2.3917853, 48.8393074 2.3970077, 48.8482696 2.3715140, 48.8470790 2.3740473, 48.8469009 2.3721664, 48.8461048 2.3740873, 48.8477030 2.3740290, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8457782 2.3745532, 48.8574421 2.3793069, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8344235 2.3052236, 48.8563547 2.3050003, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8546797 2.3051724, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8374001 2.2957684, 48.8402359 2.3617231, 48.8384262 2.2988961, 48.8379252 2.2975063, 48.8384650 2.2984232, 48.8386614 2.2988499, 48.8388963 2.2993041, 48.8423511 2.2814155, 48.8529207 2.3436323, 48.8386703 2.2822723, 48.8578234 2.2746494, 48.8583112 2.2754219, 48.8518531 2.3567202, 48.8560141 2.3571788, 48.8549508 2.3624309, 48.8552557 2.3616146, 48.8538346 2.3644665, 48.8543409 2.3691660, 48.8518893 2.3417124, 48.8421221 2.3217245, 48.8521680 2.3314230, 48.8447287 2.3244719, 48.8427041 2.3238548, 48.8489183 2.3392705, 48.8506265 2.3304803, 48.8485082 2.3285161, 48.8508389 2.3266905, 48.8568213 2.3685042, 48.8427653 2.3300120, 48.8420145 2.3302544, 48.8440612 2.3225950, 48.8442156 2.3244262, 48.8473522 2.3183754, 48.8296478 2.3789647, 48.8382010 2.3505000, 48.8378958 2.3507127, 48.8377870 2.3508117, 48.8378570 2.3515198, 48.8376483 2.3516414, 48.8284670 2.3791901, 48.8287894 2.3821387, 48.8293931 2.3783272, 48.8444634 2.4058653, 48.8459991 2.3734585, 48.8583220 2.2745520, 48.8584493 2.2748476, 48.8580404 2.2776736, 48.8411414 2.3136506, 48.8533487 2.3667989, 48.8557164 2.2701238, 48.8417733 2.3185097, 48.8559683 2.2711042, 48.8369684 2.2533009, 48.8394820 2.3097854, 48.8502874 2.2762982, 48.8362844 2.3061932, 48.8535026 2.2653555, 48.8491712 2.2665706, 48.8233119 2.3260789, 48.8475928 2.2669653, 48.8484138 2.2647127, 48.8478601 2.2637874, 48.8485576 2.2650178, 48.8454405 2.2582420, 48.8485516 2.2751179, 48.8415500 2.2669376, 48.8399984 2.2627388, 48.8390983 2.2821736, 48.8307191 2.3193023, 48.8304006 2.3192272, 48.8505969 2.3487384, 48.8465904 2.3434584, 48.8481836 2.3416278, 48.8504365 2.3250405, 48.8439434 2.3420437, 48.8461211 2.3404463, 48.8388735 2.3499896, 48.8430873 2.3523909, 48.8433167 2.3520295, 48.8446194 2.3521389, 48.8387237 2.3571215, 48.8480122 2.2605847, 48.8555518 2.3602965, 48.8585424 2.3554995, 48.8417910 2.3293787, 48.8474457 2.3180776, 48.8478498 2.3111276, 48.8452289 2.2582589, 48.8471366 2.3867728, 48.8382469 2.3985623, 48.8356227 2.4057366, 48.8417549 2.3864187, 48.8455537 2.3108109, 48.8450445 2.3104567, 48.8474933 2.3107909, 48.8394375 2.2918836, 48.8514163 2.3135568, 48.8426729 2.3023971, 48.8431492 2.3040014, 48.8431097 2.3128917, 48.8256887 2.3653770, 48.8263809 2.3414522, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8388287 2.2816271, 48.8397112 2.3025357, 48.8396385 2.3018330, 48.8234162 2.3578095, 48.8223317 2.3587958, 48.8230555 2.3585643, 48.8283319 2.3249564, 48.8500696 2.2886536, 48.8454338 2.3886185, 48.8560015 2.3425743, 48.8544203 2.3257043, 48.8503640 2.3847349, 48.8446673 2.3830913, 48.8488537 2.3789042, 48.8459220 2.4058540, 48.8585344 2.2751198, 48.8383753 2.3982048, 48.8580367 2.3228472, 48.8570504 2.3810504, 48.8468273 2.3109956, 48.8540420 2.4102463, 48.8465399 2.3518782, 48.8371620 2.2788430, 48.8256754 2.3500062, 48.8260463 2.3458083, 48.8275711 2.3258960, 48.8274068 2.3262715, 48.8312357 2.3775548, 48.8390681 2.2569423, 48.8549374 2.3061290, 48.8433668 2.3494422, 48.8570621 2.3817062, 48.8372502 2.3914765, 48.8481085 2.4036760, 48.8509779 2.2927923, 48.8550471 2.2699500, 48.8418785 2.2997087, 48.8442816 2.3244689, 48.8482530 2.4016764, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8276838 2.3319307, 48.8416006 2.3224232, 48.8337153 2.3863338, 48.8430431 2.3223965, 48.8468610 2.3536998, 48.8201698 2.3641255, 48.8301847 2.3456951, 48.8425418 2.2920002, 48.8340558 2.2901416, 48.8330244 2.2891177, 48.8334343 2.2890580, 48.8357045 2.2898603, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8507185 2.3452276, 48.8506024 2.2921760, 48.8434041 2.2832488, 48.8441583 2.2814225, 48.8525041 2.4054710, 48.8358361 2.3959436, 48.8555902 2.2705124, 48.8314530 2.3131078, 48.8366420 2.3235880, 48.8442760 2.3236880, 48.8443641 2.3231615, 48.8412683 2.3182655, 48.8271902 2.3689921, 48.8274443 2.3054531, 48.8456435 2.3883893, 48.8467978 2.3874491, 48.8463910 2.3878730, 48.8240842 2.3636888, 48.8226659 2.3580445, 48.8259715 2.3507845, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8260781 2.3450782, 48.8257972 2.3453018, 48.8385802 2.3568194, 48.8575448 2.3507955, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8260853 2.3604941, 48.8265662 2.3114209, 48.8266741 2.3089333, 48.8276987 2.3717961, 48.8348018 2.2835149, 48.8289555 2.3008177, 48.8309472 2.3666202, 48.8425217 2.2605998, 48.8399979 2.2631418, 48.8393773 2.2626930, 48.8445716 2.2773781, 48.8457722 2.3952172, 48.8423827 2.2779816, 48.8315085 2.3570011, 48.8423678 2.2814812, 48.8393433 2.2612518, 48.8382522 2.2590990, 48.8294497 2.3691497, 48.8556190 2.3071441, 48.8267862 2.3639559, 48.8275456 2.3565272, 48.8292182 2.3568482, 48.8394408 2.3901626, 48.8304465 2.3780998, 48.8561136 2.3566520, 48.8536688 2.3651544, 48.8358783 2.3528351, 48.8469948 2.3720795, 48.8448082 2.4018695, 48.8577037 2.3677906, 48.8547650 2.3703199, 48.8522552 2.3385407, 48.8419262 2.3651705, 48.8370898 2.3512464, 48.8439360 2.3521362, 48.8466920 2.2861937, 48.8464464 2.2864898, 48.8462140 2.2863069, 48.8471256 2.2857626, 48.8467862 2.2850085, 48.8473180 2.3512660, 48.8326928 2.3011680, 48.8434103 2.2931530, 48.8367477 2.3065081, 48.8396815 2.2927792, 48.8364615 2.3516931, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8442882 2.3080071, 48.8528372 2.2900682, 48.8524061 2.2912571, 48.8529003 2.2907372, 48.8331060 2.3547764, 48.8275383 2.3571726, 48.8504014 2.2929658, 48.8466594 2.4106749, 48.8474387 2.3948976, 48.8475088 2.4104704, 48.8293214 2.3692986, 48.8558171 2.3591925, 48.8310392 2.3425080, 48.8294964 2.3565503, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8235069 2.3253377, 48.8314166 2.3251141, 48.8551235 2.3603692, 48.8335336 2.4018517, 48.8344090 2.3538607, 48.8329666 2.3548590, 48.8524475 2.3894597, 48.8426479 2.3496281, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8518237 2.3263371, 48.8518410 2.3270180, 48.8520482 2.3269387, 48.8459597 2.3544163, 48.8523174 2.3400938, 48.8370786 2.3520317, 48.8480411 2.3409988, 48.8487519 2.3414295, 48.8260443 2.3266660, 48.8255907 2.3265438, 48.8570274 2.3983184, 48.8493470 2.3529650, 48.8315966 2.3304662, 48.8497330 2.3457635, 48.8491590 2.3498700, 48.8485190 2.3493440, 48.8401997 2.3954293, 48.8448871 2.2941778, 48.8452118 2.2941040, 48.8454696 2.2946866, 48.8578346 2.3793123, 48.8403727 2.3337448, 48.8349994 2.3046409, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8313376 2.3296145, 48.8455488 2.4110597, 48.8388128 2.3226987, 48.8339484 2.3183045, 48.8409661 2.2878933, 48.8412556 2.2872804, 48.8410949 2.2882264, 48.8304463 2.3288405, 48.8314813 2.3271321, 48.8421217 2.3299033, 48.8470111 2.3265176, 48.8372237 2.3221630, 48.8527018 2.3349473, 48.8406978 2.3744965, 48.8449540 2.2895406, 48.8452657 2.2845482, 48.8446514 2.2839876, 48.8442772 2.2836818, 48.8525574 2.4047510, 48.8577757 2.4073141, 48.8538895 2.2941282, 48.8286359 2.3240592, 48.8535488 2.3673835, 48.8532580 2.3674767, 48.8419523 2.3375746, 48.8389478 2.3497359, 48.8573584 2.3900374, 48.8479392 2.3716919, 48.8330591 2.3871082, 48.8312382 2.3775605, 48.8494428 2.2974856, 48.8438388 2.3063057, 48.8512725 2.3428163, 48.8440910 2.2831411, 48.8433595 2.2833923, 48.8413554 2.2888602, 48.8413772 2.2882287, 48.8513497 2.3992002, 48.8371175 2.3176252, 48.8476121 2.2664327, 48.8435649 2.3891604, 48.8448189 2.3202573, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8488552 2.3942325, 48.8489972 2.3942887, 48.8505758 2.3948498, 48.8494165 2.3948501, 48.8449899 2.4047731, 48.8347313 2.3458453, 48.8351835 2.3533874, 48.8406761 2.3933858, 48.8359858 2.3961013 +49.4641062 8.6650466, 49.4707059 8.6520153, 49.4751871 8.6837099, 49.4785782 8.6564609, 49.4805167 8.6715673, 49.4760467 8.6993112, 49.4708285 8.6603546, 49.4702371 8.6666013, 49.4750609 8.6692928, 49.4751194 8.6651104 +49.6456638 11.2486442, 49.6869871 11.2478652, 49.9369790 11.2928872, 55.2018630 -6.5202424, 49.7469204 11.2125674, 49.7732750 11.0336009, 57.4542188 -3.1283578, 49.7343892 11.1473405, 57.3024853 -6.3568033, 57.5223776 -4.4756277, 54.8587333 -4.4629463, 55.6978487 -5.2756058, 55.9162905 12.6954531, 50.0705845 9.0773229, 50.0961391 9.1321639, 52.3472337 9.2793924, 49.1987988 10.8786650, 49.6727905 11.1710373, 49.7800785 11.1877359, 54.2718195 10.5219966, 49.7493891 10.3073410, 57.6883368 -4.2387842, 49.4570024 11.0749556, 51.1127444 13.7669099, 49.7494075 11.1905603, 52.3620505 4.9501282, 52.2316818 4.8294736, 48.3770848 9.5651469, 49.6107714 11.1950278, 49.7254640 11.1203714, 50.9570510 14.0821619, 51.6056697 12.5660378, 47.7377817 11.8606277, 19.6779250 -72.0190560, 51.6491451 8.1322169, 39.2994322 -75.6084788, 47.8805389 7.7309643, 47.7382628 11.8561188, 57.5466316 -2.9539288, 46.4446553 11.2649046, 43.9560756 0.3734684, 18.4229704 -64.6585212, 49.7680050 11.2610027, 47.3229302 11.6031449, 17.1508415 -25.0151935, 49.3012203 20.6405260, 49.6202927 11.2004055, 17.0165122 -96.5647291, 53.0858724 8.7794585, 47.7154486 7.5507400, 47.6573658 7.5616578, 50.0508489 10.6949484, 48.1565486 12.8317267, 52.0286941 13.8905298, 49.8906957 12.0552018, 49.8404248 12.0483529, 49.8393902 12.0813774, 48.5997264 8.1119037, 50.1668062 9.7850096, 49.6571046 11.0294806, 49.6835585 11.4177462, 49.7101634 11.2170598, 49.6231966 11.2274498, 49.6734939 11.1704152, 49.6997244 11.1892375, 49.6897244 11.1714339, 49.6888952 11.1736596, 49.6886483 11.1741326, 49.7022319 11.1626244, 49.6905040 11.1707362, 49.6893155 11.1723273, 49.6930962 11.1165523, 49.6924786 11.1173353, 49.7386449 11.2206049, 49.7556736 11.1753291, 49.8028327 11.2617837, 49.8111549 11.2184821, 49.8034433 11.2623667, 49.8034417 11.2615955, 49.6955705 11.1303525, 49.6967629 11.1299104, 49.7041615 11.1158602, 49.6900302 11.1720609, 49.7109181 11.1725166, 49.6795446 11.1916249, 49.8088842 11.2175666, 49.6825402 11.1417329, 49.6703138 11.1271309, 49.8107853 11.2230337, 49.7997759 11.1964019, 50.1783302 10.9051888, 49.9224534 10.7763625, 50.0929639 10.9738508, 49.7014005 11.1632168, 49.6794574 11.1920586, 49.1288795 11.1519051, 49.7630622 10.6162756, 49.7518785 10.3654360, 49.7931793 10.3436231, 49.6452337 11.2986539, 49.2526785 10.8304397, 49.8222642 11.4299384, 48.9415866 9.2568606, 50.0254757 17.0301426, 49.5635854 10.7397772, 14.4377636 -60.8333445, 14.6018539 -60.9068867, 14.6901502 -61.0141987, 14.5891040 -60.8679840, 49.7799230 11.1868867, 49.7870371 11.0908606, 49.8137382 10.9926748, 50.3265164 11.9175117, 49.6714547 11.1403763, 49.6917066 11.1727224, 49.6943067 11.1308623, 49.7992057 11.4024345, 49.6312243 11.2532446, 50.1195468 9.1168917, 49.9502569 10.0083550, 46.3062754 18.5303872, 49.0482593 8.4728229, 48.8894849 10.1878863, 45.8447477 -122.8281437, 38.2575362 -85.7632828, 34.5472284 -112.4607113, 44.1602815 -121.3590756, 14.7836679 -60.9970984, 48.1523037 11.5735899, 56.6914827 -5.9398158, 0.4592119 33.2016341, 38.0563465 -84.5191318, 50.1187730 9.1140807, 46.2889158 11.5390687, 49.1202318 16.9146605, 48.7253800 9.8798631, 49.5711031 9.4266883, 35.0372431 -85.3075539, 50.8967130 10.9195864, 47.3101241 9.6245227, 49.0943937 15.8912097, 49.7074906 11.1541041, 60.6397737 16.9660802, 46.2691749 13.1240465, 49.7220164 11.1154373, 49.7455932 11.2137946, 48.5956956 8.8698258, 47.6567058 13.0407186, 48.9826505 18.1572739, 49.0429562 18.2148335, 53.5436085 9.6062248, 45.7326576 -0.3782353, 56.1892366 -4.0714805, 50.0879360 9.0648034, 57.6353335 -3.2870129, 57.6450306 -3.3421110, 57.6101458 -3.2894032, 57.5992245 -3.2784059, 57.6009715 -3.3129796, 57.5993208 -3.3172323, 45.0361300 1.6054555, 56.8348734 -5.0738994, 57.5265535 -3.2167789, 57.5262020 -3.2099339, 57.5300526 -3.2110120, 57.5295183 -3.2067185, 57.5365006 -3.2152563, 49.7870041 10.6609521, 52.1045105 11.6376557, 46.7017144 11.1801777, 49.6352996 11.2879927, 49.7988563 10.9217370, 49.7911233 10.8848605, 48.1221709 18.9472421, 51.9220050 7.7868974, 49.8462945 11.1940156, 57.4667732 -3.2280843, 57.6137233 -3.6206951, 57.8273602 -4.0782856, 51.7638075 -3.5209769, 57.2712702 -3.2591360, 55.6973828 -5.2761196, 57.4566016 -3.3429798, 57.4591122 -3.3533078, 57.4841196 -3.2091318, 57.4265098 -3.3144275, 44.7024426 33.6962298, 44.7833201 33.6059654, 57.3432180 -3.3390260, 47.3092484 9.6392571, 56.6986205 -3.7208573, 52.4507978 0.9154400, 56.2574204 -3.7854861, 58.0248615 -3.8678057, 56.0141643 -4.3632000, 56.6206674 -6.0701909, 57.3390471 -4.0097785, 55.8328855 -5.9514638, 55.8911318 -2.8906855, 50.3675798 -4.1372484, 56.6244764 -3.8498805, 49.3039105 -0.3317255, 45.5860326 11.4844862, 48.7484485 9.8145810, 47.8875450 6.4093115, 50.3679106 -4.1373766, 51.4537192 8.4186344, 49.2340529 18.4087081, 56.9400822 -4.2393214, 50.9760204 11.0171214, 49.7400798 9.3203213, 48.7655204 9.8215187, 45.5259189 -122.6849720, 50.1202334 11.6026832, 57.3436880 -3.3377192, 45.9747668 11.9501842, 49.7942579 11.1106331, 51.3491807 7.4299280, 49.2867907 10.2595813, 58.4344849 -3.0842455, 49.7078370 11.1490654, 49.7076915 11.1515894, 49.7063455 11.1578192, 37.7876056 -122.3092605, 48.9597948 18.1128028, 50.1021340 11.8860174, 45.4496883 11.6641117, 49.2301167 0.2149744, 49.2308275 0.2150060, 51.6294680 10.6335470, 52.0266790 8.9062015, 51.8720942 7.9094348, 48.1163214 15.7649837, 48.4318579 7.9990141, 50.1919742 11.3112050, 48.7546437 19.0821003, 48.8182391 17.7925113, 56.2873096 -2.6427493, 49.7299097 11.2922488, 52.1416510 -10.2894351, 40.5899876 -105.0766115, 49.4863531 9.4535448, 51.0463969 4.3823131, 36.2050811 -89.1913579, 50.8190694 5.1446701, 58.1708039 -7.0446706, 56.4149472 -5.4717961, 49.7067121 11.2764281, 57.3975178 -3.4079486, 55.6406131 -6.1079234, 55.6354771 -6.1264917, 55.6297258 -6.1521772, 57.4101996 -3.3942548, 57.4557552 -3.2326510, 57.4418846 -3.2369387, 57.4437548 -3.2405717, 55.8828961 -6.1259408, 12.5777223 -87.0240762, 49.1691375 10.9431037, 44.9450440 -93.2345327, 14.4796587 -60.9647768, 14.5069529 -60.9065836, 24.7142042 121.6901667, 49.5150311 10.0082225, 56.4148386 -5.4715488, 56.6243636 -3.8497389, 45.1465161 11.7580705, 57.3510908 -2.7454158, 57.3499133 -2.7442978, 43.8347339 -70.1268733, 57.1131336 -5.8487781, 55.7567102 -6.2902314, 55.7667745 -6.3630145, 55.7868527 -6.4303385, 57.3382196 -2.3194096, 55.8544042 -6.1089996, 46.0414805 8.9560023, 52.0258088 -1.5659944, 37.8658789 -122.2997804, 14.4376190 -60.8331479, 57.8978244 -6.8039558, -27.7236773 153.2226907, 50.3677538 -4.1366720, 52.1560692 7.3187114, 55.7403561 -6.3314743 +7 +Maria Luisa, Piccola Italia, Casa Naktel, I quattro mori, Chez Peppe, Ristorante Pellicano, Da Attilio, La Maffiosa di Termoli, Tina, Caffé Vito, La Piazza Ristorante Pizza, Restorante Verdi, Ristorante Tavola Calda, Pastapapa, La Perla, Deliziefollie, Fuxia, La Comedia, Le Caruso, Soprano, Auberge de Venise, La Massara, Ristorante Pizza Sarno, La Dolce Vita, Ristorante Caffe Toscano, La Bocca Della Verita, Oenosteria, Pompei, Trevoli, Villa Sophia, Ziti, Ô Soleil de Naples, Mama Luna, Le Rialto, Iannello, Il Maestro, Gusto, Quartier Latin, Le Mondelo, Swan & Vincent, Chez Pino, Fontanarosa, La Fabbrica, Da Maurizio, Amores, Del'Arte, Il Gallo Nero, Pastapapà, VILLA DEL PADRE, Casanova, I Fratelli, Pulcinella, Pizza Caratello, La tour de Pise, Fuxia, Pizzeria Santa Lucia, Golosino, Mezzo di Pasta, Café Médicis, Nouï, L'Assagio, Babalou, Acqualina in bocca, Les Patios, Portobello, Gioia Mia, Stan & Co, L'authentique Panini, La Prima, Divinamente Italiano, L'Arôme Antique, Tentazioni, Pizzeria, Pucinella, Le Patio, Trattoria Victoria, Casa Nostra, Il Piccolo Rifugio, La Sirena, Pastapapa, L'Altra, Marco Polo, Cinecitta, Sapori, Piccoli Cugini, Chez Thomas, Sole di Sardegna, Café Cotta, Da Fabio, Les associés, Maison Cipolli, San Giovanni, Momento, Il Pinocchio, Casa di Cervaro, Bistrot 32, L'auberge calabraise, Fiori, Trattoria Silviano, Al Gusto della Pasta, Il Farniente, Monteleone, Caffè Corto, Paris Milan, Da Pïppo, Pizzeria Straciatella, La divina, Pizza Pronto, Il Suppli, Marcovaldo, Il seguito, Il Toscano - 0039, Origin, Naturellement, Il Gigolo, Pizza Rustica, Rim Café, La Dolce Vita, Pizza Loriana, Rossini, l'angolo 42, Traiteur Italien, Da Franco, La Rosa, Da Ugo, Ricci, Pescatore, La Strada, Fame da Lupo, Pizzeria Palermo, Delizius, Bistro Italien, Bistro I Ghiotti, Delitaly, La Famiglia, Trattoria di Bellagio, Gianni Bommarito, Ô Güsto, Pizza Flora, Coccodrillo, Caffe Caesar, Italian Trattoria, Molto Gusto, Andiamo Pizza, Villa Palatine, Di Vino, Autentico, Pink Flamingo, Il Bosco, La Gazetta, Sogoosto, La Toscane, Osteria Sicilia, Pizzeria Bella Italia, Restaurant de la Tour, l'autre Via Mela, Restaurant Marco-Roma, PastaPaPá, La Cucina, Spaccanapoli, Girasole, La suite, Buono sano bello, Emporio Armani Caffe, Le Colisée Wagram, Mie & You, Pizza Maria, L'écumoire, La Trottinette, Enoteca, Tavernier & Co, L'Italy Cafė Ristorante Pizza Cafė, Casa Cristo, La Lucania, La Bettola D'Alfredo, Bacino, Gustibus, Au Village Italien, Tappo, Caffè Stern, Le Petit Italien, La Gondola, Swann et Vincent, Angelo & Jacqueline, Caffe Soprano, Les Vitelloni, Il Farnese, La Focacceria des Vitelloni, Delitaly, La Forchetta, Le Madonnina, Terra Nova, Castello, D'Alfredo, Trattoria Di Sapri, Da Ornella, La Solita Taverna, Bistrò I, Italian Style Café, Corso, Restaurant Il Bugigattolo, Da mimmo, Mezzomezzo, Renato, Visconti, Francesca, La Basilicata, L'Anfora, Florentina, Corso, L'Osteria, Cinquecento, Caffé della Pizza, Lo Spaghettino, Stella di Mare, Scalo, La piccola sicilia, Ober Mamma, Da Vinci, La Tarantella, Ciacco, Nieli, La Pignatta, Les Artistes, Gardenparty, Aldo, Firenze, Il Toscano, Le Carpaccio, Officina Schenatti, Café de New York, Il Gusto Sardo, Tivoli, Chez Gusto, Pizza King, Baba Sandwisch, Trattoria Da Gigi, Focaccina, Enza & Famiglia, Il Timo, Le Bugatti, Pizza de Vinci, La Pieta, Pasta et Basta, Il Pacificio, Little Italy, Il Goto, Green Cafe, I'Taglia +49.4050743 8.6463529, 49.4171072 8.6773196, 49.4171621 8.6765719, 49.4177493 8.6779095, 49.4179042 8.6765456, 49.4183971 8.6765049, 49.4184718 8.6774518, 49.4190800 8.6770270, 49.4173101 8.6911592, 49.4173141 8.6856590, 49.4173841 8.6864299, 49.4173964 8.6887825, 49.4174192 8.6903041, 49.4168113 8.6765908, 49.4168113 8.6771056, 49.4169219 8.6787272, 49.4169748 8.6791607, 49.4170266 8.6795511, 49.4171525 8.6805099, 49.4172388 8.6826853, 49.4172827 8.6814338, 49.4173167 8.6834999, 49.4173345 8.6846458, 49.4179636 8.6792876, 49.4179993 8.6797629, 49.4181166 8.6806061, 49.4182615 8.6814568, 49.4184562 8.6827889, 49.4184996 8.6830345, 49.4187424 8.6793683, 49.4188816 8.6811640, 49.4189906 8.6808338, 49.4190085 8.6811738, 49.4193919 8.6778301, 49.4126783 8.6843825, 49.4126857 8.6858934, 49.4127125 8.6852240, 49.4128201 8.6864315, 49.4129308 8.6871682, 49.4132152 8.6882157, 49.4133058 8.6894895, 49.4133283 8.6902455, 49.4133726 8.6914495, 49.4117100 8.6785021, 49.4117171 8.6787048, 49.4119478 8.6798767, 49.4121911 8.6809383, 49.4123972 8.6818428, 49.4125796 8.6830848, 49.4130381 8.6829093, 49.4131441 8.6842989, 49.4117429 8.6768667, 49.4126418 8.6770005, 49.4126658 8.6805331, 49.4127054 8.6796956, 49.4127764 8.6817686, 49.4133372 8.6813782, 49.4134270 8.6813115, 49.4129906 8.6768393, 49.4130462 8.6795215, 49.4132321 8.6806359, 49.4134560 8.6768246, 49.4140773 8.6767907, 49.4143370 8.6767573, 49.4149687 8.6767513, 49.4153969 8.6770975, 49.4154763 8.6767218, 49.4134732 8.6780167, 49.4143331 8.6784643, 49.4154251 8.6780426, 49.4160812 8.6765800, 49.4161384 8.6779769, 49.4166481 8.6779973, 49.4136631 8.6792108, 49.4139712 8.6812406, 49.4143640 8.6792347, 49.4145629 8.6804670, 49.4146015 8.6814504, 49.4154028 8.6787457, 49.4154304 8.6791703, 49.4157628 8.6803714, 49.4162426 8.6792175, 49.4164053 8.6803686, 49.4166151 8.6816138, 49.4148907 8.6823809, 49.4157135 8.6838270, 49.4157371 8.6825679, 49.4164509 8.6825931, 49.4164769 8.6820833, 49.4164883 8.6826074, 49.4165324 8.6837830, 49.4138171 8.6830288, 49.4138905 8.6841593, 49.4140673 8.6831303, 49.4143492 8.6848301, 49.4143982 8.6833887, 49.4148836 8.6836697, 49.4134000 8.6861630, 49.4138148 8.6881061, 49.4139567 8.6853638, 49.4139909 8.6860589, 49.4141876 8.6870872, 49.4142824 8.6879866, 49.4148833 8.6848069, 49.4149785 8.6858235, 49.4150166 8.6858318, 49.4137510 8.6912462, 49.4138984 8.6901677, 49.4140122 8.6915610, 49.4142111 8.6891822, 49.4143633 8.6890907, 49.4144550 8.6901875, 49.4145297 8.6910089, 49.4146438 8.6901960, 49.4149569 8.6908041, 49.4151322 8.6902740, 49.4153158 8.6909838, 49.4157243 8.6847764, 49.4157844 8.6855831, 49.4157934 8.6864461, 49.4158135 8.6903357, 49.4158328 8.6876589, 49.4158376 8.6902771, 49.4164423 8.6876319, 49.4164544 8.6865144, 49.4165771 8.6855422, 49.4166179 8.6903268, 49.4138995 8.6921339, 49.4146709 8.6921591, 49.4147814 8.6922098, 49.4151601 8.6921549, 49.4151722 8.6920865, 49.4158539 8.6910356, 49.4158861 8.6921393, 49.4159558 8.6921390, 49.4162860 8.6919730, 49.4165142 8.6921010, 49.4169007 8.6921351, 49.4170872 8.6918724, 49.4171258 8.6778744, 49.4173600 8.6919318, 49.4173614 8.6916050, 49.4177943 8.6783487, 49.4183327 8.6910378, 49.4184227 8.6909561, 49.4186264 8.6783589, 49.4190205 8.6906815, 49.4194515 8.6790135, 49.4195903 8.6904161, 49.4196892 8.6901030, 49.4202648 8.6899350, 49.4203690 8.6825543, 49.4203815 8.6828030, 49.4204759 8.6896128, 49.4209753 8.6825183, 49.4212350 8.6821598, 49.4212780 8.6891664, 49.4219154 8.6821734, 49.4220812 8.6837966, 49.4221339 8.6830765, 49.4222189 8.6844817, 49.4222397 8.6888096, 49.4225675 8.6863407, 49.4226992 8.6818875, 49.4227731 8.6868755, 49.4227835 8.6875590, 49.4227907 8.6827089, 49.4229471 8.6883512, 49.4231098 8.6884074, 49.4244197 8.6874057, 49.4244545 8.6876235, 49.4250439 8.6862252, 49.4250896 8.6864045, 49.4254807 8.6850680, 49.4256032 8.6851066, 49.4258098 8.6843351, 49.4259545 8.6843125, 49.4261921 8.6834366, 49.4124675 8.6722192, 49.4129302 8.6721550, 49.4131552 8.6738690, 49.4136853 8.6735943, 49.4137196 8.6725106, 49.4137645 8.6746386, 49.4145431 8.6738210, 49.4149545 8.6714849, 49.4149778 8.6726757, 49.4150096 8.6750823, 49.4158607 8.6714529, 49.4126730 8.6690534, 49.4132936 8.6693274, 49.4132628 8.6670083, 49.4135612 8.6677150, 49.4135964 8.6715064, 49.4139734 8.6723081, 49.4142219 8.6712401, 49.4142964 8.6702560, 49.4143168 8.6702199, 49.4139596 8.6662087, 49.4142991 8.6674911, 49.4154226 8.6668475, 49.4154248 8.6675290, 49.4156968 8.6675995, 49.4162451 8.6675949, 49.4166577 8.6676273, 49.4169215 8.6672607, 49.4169911 8.6662984, 49.4139814 8.6645669, 49.4143214 8.6646612, 49.4147333 8.6648772, 49.4152605 8.6652064, 49.4154416 8.6660364, 49.4157157 8.6657664, 49.4159235 8.6654553, 49.4160820 8.6654569, 49.4169391 8.6654729, 49.4169806 8.6617282, 49.4170334 8.6658721, 49.4174280 8.6662762, 49.4175246 8.6618665, 49.4171948 8.6651903, 49.4173511 8.6636609, 49.4176121 8.6647998, 49.4178309 8.6632609, 49.4181704 8.6647260, 49.4184312 8.6674382, 49.4186818 8.6640511, 49.4187556 8.6655096, 49.4187648 8.6648676, 49.4188060 8.6672546, 49.4155953 8.6697454, 49.4159497 8.6698497, 49.4165496 8.6696429, 49.4168408 8.6689980, 49.4170012 8.6677061, 49.4171707 8.6686342, 49.4172298 8.6676984, 49.4174128 8.6693715, 49.4178480 8.6676654, 49.4178524 8.6687706, 49.4171535 8.6709421, 49.4172348 8.6701536, 49.4172921 8.6695818, 49.4173364 8.6700629, 49.4190007 8.6705905, 49.4166659 8.6726028, 49.4166670 8.6735494, 49.4169240 8.6723938, 49.4171472 8.6737932, 49.4183404 8.6705952, 49.4185070 8.6724018, 49.4185338 8.6749625, 49.4192472 8.6749265, 49.4195758 8.6747658, 49.4133440 8.6764079, 49.4138880 8.6763877, 49.4163830 8.6760030, 49.4182300 8.6834061, 49.4182520 8.6851810, 49.4183900 8.6910820, 49.4184010 8.6886120, 49.4185321 8.6872289, 49.4185782 8.6871771, 49.4185920 8.6904127, 49.4186311 8.6885736, 49.4189790 8.6833159, 49.4190300 8.6884598, 49.4192380 8.6841289, 49.4192800 8.6849949, 49.4195050 8.6866570, 49.4195140 8.6870830, 49.4195370 8.6884649, 49.4196581 8.6826459, 49.4199600 8.6773080, 49.4199961 8.6783739, 49.4200970 8.6848350, 49.4201581 8.6863238, 49.4202170 8.6869468, 49.4202830 8.6764509, 49.4204150 8.6809190, 49.4204550 8.6780810, 49.4205870 8.6772420, 49.4206200 8.6838998, 49.4207260 8.6847269, 49.4209180 8.6789200, 49.4209610 8.6813179, 49.4209711 8.6793159, 49.4209852 8.6862147, 49.4210510 8.6824740, 49.4210640 8.6789419, 49.4210830 8.6780970, 49.4210860 8.6807959, 49.4211021 8.6798378, 49.4211090 8.6871899, 49.4211559 8.6772780, 49.4212910 8.6820829, 49.4213399 8.6842469, 49.4214270 8.6893360, 49.4214319 8.6845956, 49.4215220 8.6822390, 49.4216181 8.6858356, 49.4216560 8.6805150, 49.4217220 8.6805970, 49.4217970 8.6865979, 49.4218148 8.6793050, 49.4218230 8.6776541, 49.4218351 8.6821330, 49.4218390 8.6782120, 49.4219112 8.6873225, 49.4219192 8.6771650, 49.4220090 8.6767740, 49.4220961 8.6836650, 49.4222170 8.6807629, 49.4223591 8.6853211, 49.4222961 8.6804661, 49.4226130 8.6847709, 49.4227970 8.6819088, 49.4229871 8.6805259, 49.4230670 8.6848431, 49.4232990 8.6894080, 49.4234651 8.6846938, 49.4234681 8.6865040, 49.4234910 8.6796409, 49.4236171 8.6827640, 49.4237360 8.6879330, 49.4237580 8.6812619, 49.4238011 8.6844951, 49.4239440 8.6892690, 49.4239580 8.6803100, 49.4240080 8.6893380, 49.4241530 8.6823040, 49.4241661 8.6860290, 49.4242310 8.6801610, 49.4244160 8.6839109, 49.4244380 8.6829640, 49.4245780 8.6882290, 49.4246100 8.6889189, 49.4246640 8.6818110, 49.4246781 8.6890690, 49.4248031 8.6797470, 49.4248249 8.6809710, 49.4248621 8.6816269, 49.4249760 8.6846130, 49.4250750 8.6832560, 49.4253311 8.6822080, 49.4254600 8.6792840, 49.4255210 8.6889629, 49.4256210 8.6819569, 49.4257190 8.6827099, 49.4257411 8.6841829, 49.4259246 8.6862592, 49.4259050 8.6854009, 49.4259540 8.6807890, 49.4260250 8.6825349, 49.4261240 8.6788169, 49.4262660 8.6793190, 49.4264071 8.6821287, 49.4265490 8.6847520, 49.4265521 8.6803830, 49.4266771 8.6784878, 49.4268582 8.6817330, 49.4269550 8.6819368, 49.4271950 8.6825720, 49.4273762 8.6784086, 49.4274400 8.6784900, 49.4280311 8.6783430, 49.4289440 8.6789069, 49.4296015 8.6786695, 49.4303140 8.6784310, 49.4193061 8.6662789, 49.4196582 8.6599549, 49.4201491 8.6671790, 49.4204980 8.6593060, 49.4218560 8.6590330, 49.4223230 8.6586590, 49.4227041 8.6599350, 49.4239290 8.6613409, 49.4239240 8.6891660, 49.4245260 8.6889749, 49.4247110 8.6903420, 49.4247340 8.6891350, 49.4252520 8.6874410, 49.4254530 8.6902880, 49.4258831 8.6854929, 49.4260181 8.6863257, 49.4260640 8.6901700, 49.4260850 8.6870670, 49.4262320 8.6878290, 49.4263340 8.6885170, 49.4263691 8.6917450, 49.4264151 8.6837788, 49.4264409 8.6888950, 49.4264640 8.6868940, 49.4265440 8.6909910, 49.4266889 8.6877150, 49.4268370 8.6877030, 49.4268390 8.6899869, 49.4269100 8.6870850, 49.4269660 8.6843329, 49.4271270 8.6887639, 49.4272970 8.6896680, 49.4274455 8.6878665, 49.4274440 8.6865619, 49.4276170 8.6855049, 49.4277320 8.6850120, 49.4277480 8.6858580, 49.4277490 8.6894119, 49.4277910 8.6883539, 49.4277979 8.6883870, 49.4278640 8.6904159, 49.4278730 8.6872199, 49.4279140 8.6867310, 49.4279880 8.6871899, 49.4282450 8.6892880, 49.4282630 8.6877620, 49.4287530 8.6894728, 49.4139021 8.6934089, 49.4151030 8.6933070, 49.4154360 8.6932489, 49.4159440 8.6931880, 49.4165520 8.6930700, 49.4172660 8.6928049, 49.4185620 8.6918969, 49.4186210 8.6921849, 49.4191279 8.6919820, 49.4198090 8.6916480, 49.4204880 8.6913349, 49.4213850 8.6932749, 49.4214290 8.6908230, 49.4225571 8.6906010, 49.4225910 8.6904319, 49.4239790 8.6903530, 49.4291700 8.6895049, 49.4173111 8.6930110, 49.4173880 8.6934880, 49.4179160 8.6925329, 49.4184710 8.6922600, 49.4186231 8.6929789, 49.4187120 8.6957600, 49.4192260 8.6919350, 49.4192870 8.6948570, 49.4197900 8.6916599, 49.4198320 8.6947620, 49.4198420 8.6932200, 49.4206940 8.6927889, 49.4208080 8.6949000, 49.4213620 8.6923480, 49.4214950 8.6908100, 49.4218850 8.6917680, 49.4219620 8.6949180, 49.4220110 8.6940240, 49.4220850 8.6929870, 49.4225010 8.6913139, 49.4225410 8.6920930, 49.4229250 8.6905690, 49.4232010 8.6906370, 49.4239177 8.6908126, 49.4247140 8.6911789, 49.4247610 8.6911489, 49.4248240 8.6926430, 49.4248711 8.6920369, 49.4261260 8.6912390, 49.4263200 8.6913639, 49.4272860 8.6912040, 49.4277800 8.6910779, 49.4281380 8.6910150, 49.4288690 8.6905680, 49.4295050 8.6905550, 49.3943040 8.6900800, 49.4108350 8.7039470, 49.3963305 8.7237131, 49.4157600 8.6814287, 49.4146025 8.6823832, 49.4101824 8.7154497, 49.4105755 8.7157261, 49.4077012 8.6585784, 49.4079501 8.6566361, 49.3651164 8.6827392, 49.3651733 8.6848917, 49.4110482 8.7185034, 49.4121488 8.7072459, 49.4125818 8.7119156, 49.4126987 8.7122689, 49.4102866 8.6968609, 49.4108310 8.6996879, 49.4112467 8.7022475, 49.4114477 8.7039217, 49.4117235 8.7076903, 49.4117880 8.7080450, 49.4117480 8.7096691, 49.4118220 8.7086061, 49.4118894 8.7092078, 49.4119135 8.7104339, 49.4119976 8.7109244, 49.4120232 8.7106718, 49.4122631 8.7097191, 49.3992691 8.6805010, 49.3847230 8.6637014, 49.3832266 8.6637256, 49.3775602 8.6428499, 49.3777209 8.6401945, 49.3655232 8.6243373, 49.3764111 8.6167172, 49.3739958 8.6152527, 49.3631440 8.6217088, 49.3655232 8.6243373, 49.3639825 8.6226422, 49.3647231 8.6234790, 49.3695056 8.6543941, 49.3688383 8.6533213, 49.3727297 8.6503655, 49.3679790 8.6514705, 49.3707421 8.6528707, 49.3717586 8.6515564, 49.3735191 8.6494213, 49.4265320 8.6450922, 49.4262982 8.6443734, 49.4269175 8.6439201, 49.4265983 8.6441508, 49.4272612 8.6457816, 49.4271740 8.6453041, 49.4277724 8.6464494, 49.4271321 8.6450735, 49.4274549 8.6466613, 49.4268826 8.6470234, 49.4283306 8.6431718, 49.4286813 8.6458889, 49.4281265 8.6462483, 49.4289691 8.6457199, 49.4274915 8.6435875, 49.4285051 8.6451620, 49.4278090 8.6447757, 49.4283446 8.6444646, 49.4274967 8.6435875, 49.4283341 8.6438611, 49.4292866 8.6455348, 49.4296529 8.6452478, 49.4295779 8.6434373, 49.4296896 8.6428794, 49.4299198 8.6450493, 49.4302931 8.6437565, 49.4295081 8.6441132, 49.4302635 8.6423028, 49.4307519 8.6432630, 49.4312055 8.6429250, 49.4302792 8.6447221, 49.4305775 8.6444405, 49.4309595 8.6439818, 49.4302966 8.6437726, 49.4238400 8.6469215, 49.4261709 8.6452907, 49.4256231 8.6455804, 49.4251311 8.6458433, 49.4248938 8.6459613, 49.4243111 8.6464548, 49.4237179 8.6477315, 49.4237772 8.6478978, 49.4239238 8.6487186, 49.4222454 8.6469537, 49.4225978 8.6467338, 49.4222070 8.6490726, 49.4218650 8.6491102, 49.4226781 8.6490029, 49.4217255 8.6490673, 49.4216627 8.6492068, 49.4208356 8.6479300, 49.4204309 8.6481500, 49.4202599 8.6484128, 49.4204099 8.6495286, 49.4211183 8.6493409, 49.4187244 8.6489010, 49.4195410 8.6487186, 49.4189268 8.6500651, 49.4197050 8.6497217, 49.4191432 8.6487776, 49.4182114 8.6503762, 49.4183755 8.6513257, 49.4184522 8.6523986, 49.4192514 8.6520445, 49.4189478 8.6521733, 49.4209333 8.6484826, 49.4249043 8.6484718, 49.4266890 8.6471441, 49.4261150 8.6475116, 49.4255428 8.6479300, 49.4241087 8.6489868, 49.4233672 8.6496332, 49.4229293 8.6500758, 49.4224094 8.6504567, 49.4219069 8.6507517, 49.4207065 8.6513579, 49.4213765 8.6510307, 49.4212439 8.6501724, 49.4205460 8.6504084, 49.4278282 8.6408088, 49.4280724 8.6418039, 49.4282381 8.6404440, 49.4302809 8.6389956, 49.4308304 8.6384243, 49.4276712 8.6399156, 49.4286568 8.6399853, 49.4290633 8.6394837, 49.4288976 8.6379388, 49.4295866 8.6381882, 49.4285626 8.6383063, 49.4240983 8.6374801, 49.4282783 8.6385959, 49.4277026 8.6392209, 49.4251660 8.6409241, 49.4256231 8.6424047, 49.4275456 8.6387676, 49.4274095 8.6382473, 49.4270466 8.6373621, 49.4253753 8.6387461, 49.4259755 8.6382258, 49.4265268 8.6377698, 49.4247891 8.6391431, 49.4257242 8.6426944, 49.4242971 8.6383277, 49.4248485 8.6400068, 49.4254660 8.6418039, 49.4261534 8.6440301, 49.4260173 8.6434454, 49.4268896 8.6416000, 49.4273676 8.6434239, 49.4261709 8.6419755, 49.4265756 8.6416590, 49.4264674 8.6398351, 49.4266524 8.6405593, 49.4269175 8.6414284, 49.4387302 8.6341462, 49.4381268 8.6335909, 49.4376489 8.6329687, 49.4383430 8.6352217, 49.4378861 8.6362356, 49.4371361 8.6376679, 49.4383186 8.6257321, 49.4370733 8.6334407, 49.4367384 8.6342722, 49.4376628 8.6389285, 49.4371151 8.6383921, 49.4285085 8.6250079, 49.4366617 8.6385316, 49.4362256 8.6392987, 49.4374326 8.6389178, 49.4354128 8.6319548, 49.4352105 8.6323464, 49.4336162 8.6355972, 49.4340243 8.6427855, 49.4336441 8.6355221, 49.4348372 8.6415732, 49.4318404 8.6345029, 49.4276572 8.6254799, 49.4260348 8.6287308, 49.4274479 8.6274379, 49.4282853 8.6242086, 49.4294541 8.6268854, 49.4315404 8.6329365, 49.4203401 8.5956860, 49.4311357 8.6289078, 49.4201656 8.5942805, 49.4201307 8.5971880, 49.4179078 8.5938674, 49.4192828 8.5950369, 49.4185185 8.5945594, 49.4184313 8.5949779, 49.4178311 8.5959166, 49.4174576 8.5945541, 49.4170249 8.5956645, 49.4312997 8.6436009, 49.4317951 8.6449796, 49.4321893 8.6461759, 49.4315718 8.6467659, 49.4322102 8.6472970, 49.4312438 8.6459827, 49.4308182 8.6449796, 49.4313625 8.6479568, 49.4308775 8.6483645, 49.4308775 8.6483645, 49.4303577 8.6488366, 49.4301501 8.6490646, 49.4300367 8.6478978, 49.4307624 8.6474204, 49.4298657 8.6473829, 49.4302705 8.6468464, 49.4284946 8.6485201, 49.4282085 8.6494160, 49.4279643 8.6487722, 49.4292796 8.6477530, 49.4302391 8.6458218, 49.4274514 8.6507785, 49.4291994 8.6481661, 49.4295273 8.6495930, 49.4289830 8.6467659, 49.4288854 8.6501884, 49.4284632 8.6503547, 49.4257277 8.6513633, 49.4251450 8.6514062, 49.4248101 8.6515510, 49.4270466 8.6485362, 49.4266210 8.6489975, 49.4261220 8.6493140, 49.4264919 8.6509931, 49.4270745 8.6496896, 49.4235155 8.6501777, 49.4244158 8.6499578, 49.4222908 8.6497217, 49.4196631 8.6498129, 49.4241401 8.6514276, 49.4225908 8.6511755, 49.4200854 8.6516744, 49.4198760 8.6507088, 49.4200540 8.6516261, 49.4249182 8.6446470, 49.4245239 8.6448455, 49.4243809 8.6439764, 49.4237319 8.6426890, 49.4243739 8.6431611, 49.4248275 8.6428928, 49.4239238 8.6453873, 49.4233306 8.6459479, 49.4236586 8.6399531, 49.4235888 8.6378451, 49.4241541 8.6396313, 49.4226537 8.6386710, 49.4218930 8.6394918, 49.4227095 8.6407471, 49.4222105 8.6412996, 49.4212020 8.6403608, 49.4223954 8.6428338, 49.4226920 8.6435580, 49.4231683 8.6454087, 49.4218267 8.6417556, 49.4221582 8.6423296, 49.4229223 8.6444378, 49.4233690 8.6464119, 49.4204204 8.6413586, 49.4211043 8.6442822, 49.4194956 8.6456716, 49.4197469 8.6423242, 49.4192339 8.6430162, 49.4215475 8.6427855, 49.4218860 8.6430752, 49.4220500 8.6424959, 49.4210171 8.6431128, 49.4218476 8.6438102, 49.4203506 8.6479622, 49.4210520 8.6434346, 49.4202319 8.6436063, 49.4203471 8.6439657, 49.4194328 8.6440569, 49.4195654 8.6444056, 49.4202982 8.6444753, 49.4191920 8.6462617, 49.4194014 8.6453176, 49.4191362 8.6472273, 49.4193735 8.6474955, 49.4208356 8.6476672, 49.4206821 8.6467177, 49.4232800 8.6459854, 49.4207414 8.6468893, 49.4224687 8.6452854, 49.4199737 8.6455911, 49.4202913 8.6451781, 49.4207624 8.6457789, 49.4209438 8.6451674, 49.4212160 8.6448079, 49.4211113 8.6457628, 49.4225839 8.6465085, 49.4215615 8.6449045, 49.4218999 8.6469322, 49.4217987 8.6462778, 49.4216417 8.6456984, 49.4220535 8.6455375, 49.4216173 8.6448187, 49.4218965 8.6445773, 49.4224757 8.6452961, 49.4230131 8.6448938, 49.4232608 8.6459076, 49.4231457 8.6454356, 49.4185081 8.6434937, 49.4187384 8.6435527, 49.4188640 8.6443466, 49.4185046 8.6448133, 49.4184103 8.6458942, 49.4178101 8.6458218, 49.4184278 8.6452049, 49.4177438 8.6466104, 49.4183999 8.6467391, 49.4185081 8.6481124, 49.4183755 8.6470020, 49.4177508 8.6474204, 49.4179008 8.6487722, 49.4174576 8.6488473, 49.4170179 8.6462349, 49.4172029 8.6475438, 49.4160478 8.6452317, 49.4169586 8.6458218, 49.4168993 8.6459666, 49.4158279 8.6453229, 49.4159814 8.6455536, 49.4186197 8.6489385, 49.4172064 8.6525059, 49.4180823 8.6491048, 49.4179776 8.6492175, 49.4175240 8.6525971, 49.4174332 8.6509341, 49.4155347 8.6500812, 49.4156674 8.6511648, 49.4165573 8.6507624, 49.4161001 8.6506820, 49.4162502 8.6498076, 49.4168993 8.6515832, 49.4158244 8.6526132, 49.4137653 8.6499792, 49.4169028 8.6502475, 49.4163514 8.6527151, 49.4156813 8.6517763, 49.4138107 8.6537451, 49.4157581 8.6526078, 49.4156534 8.6530906, 49.4147041 8.6521196, 49.4150392 8.6528385, 49.4141806 8.6494803, 49.4143551 8.6499310, 49.4141876 8.6522484, 49.4137548 8.6521786, 49.4137025 8.6511809, 49.4137479 8.6527634, 49.4138107 8.6537451, 49.4140620 8.6546892, 49.4140620 8.6546892, 49.4128265 8.6522162, 49.4137932 8.6550486, 49.4133500 8.6522108, 49.4133465 8.6555046, 49.4130150 8.6558211, 49.4104008 8.6628217, 49.4122681 8.6522269, 49.4126345 8.6545175, 49.4123169 8.6567169, 49.4120098 8.6578006, 49.4098389 8.6630094, 49.4100727 8.6630309, 49.4095073 8.6644363, 49.4095701 8.6650050, 49.4105718 8.6596513, 49.4114618 8.6593723, 49.4101460 8.6605525, 49.4100413 8.6642110, 49.4095422 8.6616147, 49.4093956 8.6620384, 49.4092804 8.6619580, 49.4092350 8.6624837, 49.4106102 8.6621779, 49.4089558 8.6636800, 49.4085509 8.6659598, 49.4098598 8.6652303, 49.4087429 8.6648816, 49.4089279 8.6666197, 49.4109941 8.6474580, 49.4106695 8.6494642, 49.4143691 8.6368096, 49.4133011 8.6400658, 49.4139573 8.6409509, 49.4131371 8.6404467, 49.4097516 8.6521572, 49.4146518 8.6360210, 49.4121913 8.6436599, 49.4117864 8.6446255, 49.4140689 8.6376733, 49.4136711 8.6388588, 49.4125403 8.6421204, 49.4137060 8.6443090, 49.4125752 8.6439067, 49.4111128 8.6503708, 49.4115177 8.6455321, 49.4109802 8.6479944, 49.4106067 8.6501348, 49.4119714 8.6504138, 49.4109907 8.6512399, 49.4104811 8.6510736, 49.4117376 8.6513042, 49.4103554 8.6522913, 49.4110360 8.6540562, 49.4114898 8.6523074, 49.4113920 8.6523074, 49.4108790 8.6523771, 49.4107917 8.6523557, 49.4097062 8.6529994, 49.4112769 8.6531550, 49.4101216 8.6538845, 49.4108580 8.6547804, 49.4106207 8.6558264, 49.4099191 8.6553597, 49.4095736 8.6552203, 49.4097935 8.6562771, 49.4094340 8.6594313, 49.4095841 8.6579454, 49.4091024 8.6615878, 49.4090954 8.6405969, 49.4122157 8.6402321, 49.4136606 8.6364770, 49.4125577 8.6393738, 49.4112245 8.6394382, 49.4113501 8.6386442, 49.4111268 8.6406291, 49.4104706 8.6405969, 49.4115281 8.6407417, 49.4098563 8.6404681, 49.4094026 8.6378396, 49.4110849 8.6378503, 49.4103450 8.6378610, 49.4085649 8.6379468, 49.4079226 8.6383975, 49.4082019 8.6404359, 49.4077551 8.6392558, 49.4077551 8.6392558, 49.4086975 8.6405003, 49.4093537 8.6406398, 49.4078179 8.6404306, 49.4064496 8.6403340, 49.4052035 8.6403286, 49.4069837 8.6404198, 49.4056084 8.6402911, 49.4099889 8.6425066, 49.4048893 8.6390626, 49.4056782 8.6388803, 49.4120133 8.6417180, 49.4048963 8.6390626, 49.4114130 8.6414391, 49.4048823 8.6379468, 49.4115665 8.6414981, 49.4110884 8.6422223, 49.4109313 8.6425602, 49.4111652 8.6412835, 49.4099087 8.6448079, 49.4109104 8.6411816, 49.4103938 8.6410528, 49.4102193 8.6412191, 49.4101041 8.6420292, 49.4099855 8.6430001, 49.4100692 8.6427534, 49.4099366 8.6438853, 49.4097795 8.6449903, 49.4098912 8.6455697, 49.4086940 8.6491156, 49.4082542 8.6503816, 49.4090012 8.6518729, 49.4089558 8.6484289, 49.4079959 8.6510628, 49.4097341 8.6464924, 49.4095038 8.6470556, 49.4089244 8.6518353, 49.4089244 8.6518353, 49.4089244 8.6518353, 49.4078947 8.6511970, 49.4076923 8.6489868, 49.4080867 8.6454248, 49.4087568 8.6451298, 49.4065613 8.6528599, 49.4074549 8.6405218, 49.4058772 8.6489439, 49.4075736 8.6481071, 49.4072769 8.6457467, 49.4064776 8.6584282, 49.4072525 8.6456394, 49.4074235 8.6469430, 49.4069732 8.6433595, 49.4065544 8.6505747, 49.4070360 8.6547053, 49.4070605 8.6441374, 49.4064287 8.6404842, 49.4081076 8.6406451, 49.4068231 8.6421150, 49.4067394 8.6415035, 49.4065544 8.6405325, 49.4052174 8.6441535, 49.4057236 8.6461437, 49.4059400 8.6439818, 49.4059610 8.6501670, 49.4048928 8.6492336, 49.4053187 8.6491263, 49.4059121 8.6518085, 49.4059470 8.6536431, 49.4050743 8.6506283, 49.4053466 8.6515832, 49.4065125 8.6516905, 49.4072874 8.6533749, 49.4049277 8.6499846, 49.4064147 8.6500275, 49.4065544 8.6499953, 49.4066660 8.6496627, 49.4065613 8.6488903, 49.4076888 8.6518353, 49.4069034 8.6515617, 49.4055473 8.6648843, 49.4068755 8.6559713, 49.4064077 8.6560249, 49.4066032 8.6571515, 49.4056189 8.6523879, 49.4062402 8.6546946, 49.4060936 8.6544156, 49.4062472 8.6545873, 49.4061844 8.6599195, 49.4060168 8.6611104, 49.4061913 8.6608636, 49.4064636 8.6590290, 49.4062891 8.6590827, 49.4063310 8.6599839, 49.4057550 8.6632347, 49.4058981 8.6623979, 49.4060273 8.6616254, 49.4057969 8.6621457, 49.4057096 8.6626393, 49.4053850 8.6650532, 49.4054339 8.6657184, 49.4017546 8.6411601, 49.4003896 8.6415678, 49.4031125 8.6406720, 49.4022678 8.6408865, 49.4042854 8.6403716, 49.4042785 8.6444378, 49.4032731 8.6447060, 49.4040341 8.6482573, 49.3969055 8.6425763, 49.4013671 8.6395508, 49.4018035 8.6412245, 49.4011018 8.6396098, 49.3991678 8.6418897, 49.4004245 8.6415356, 49.4002919 8.6405110, 49.4008644 8.6395347, 49.4006131 8.6389178, 49.4001104 8.6392236, 49.4001627 8.6397547, 49.3994959 8.6394596, 49.3988675 8.6396956, 49.3997159 8.6417663, 49.3990316 8.6409348, 49.3996076 8.6407256, 49.3975200 8.6401784, 49.3964621 8.6392021, 49.3982182 8.6399746, 49.3980890 8.6388105, 49.3983718 8.6412460, 49.3984626 8.6421311, 49.3976945 8.6414713, 49.3973140 8.6385047, 49.3977888 8.6423510, 49.3957080 8.6430001, 49.3967205 8.6413050, 49.3951040 8.6418360, 49.3947793 8.6420345, 49.3965808 8.6401516, 49.3959035 8.6415893, 49.3961060 8.6402857, 49.3962212 8.6411279, 49.3962910 8.6417556, 49.3960047 8.6392933, 49.3963399 8.6427855, 49.3956556 8.6393631, 49.3951005 8.6395347, 49.3944860 8.6397278, 49.3945803 8.6404735, 49.3947723 8.6420828, 49.3957254 8.6404574, 49.3950237 8.6406612, 49.3946885 8.6413318, 49.3958162 8.6429679, 49.3948491 8.6429948, 49.3951843 8.6431289, 49.3950691 8.6432415, 49.3949713 8.6431986, 49.3940286 8.6398673, 49.3934386 8.6405057, 49.3934525 8.6400175, 49.3943743 8.6408973, 49.3938331 8.6410582, 49.3935538 8.6413103, 49.3942800 8.6431503, 49.3943429 8.6420506, 49.3938017 8.6422223, 49.3937004 8.6422652, 49.3937668 8.6430377, 49.4011018 8.6423081, 49.4005293 8.6424261, 49.4017686 8.6425442, 49.4021770 8.6424154, 49.4022852 8.6429518, 49.4007562 8.6442769, 49.4025924 8.6445022, 49.4018000 8.6430591, 49.4012484 8.6432737, 49.4019047 8.6438906, 49.4006524 8.6434300, 49.4024667 8.6438906, 49.4006724 8.6438209, 49.4014474 8.6448187, 49.4020339 8.6446846, 49.4027530 8.6444807, 49.4008504 8.6450171, 49.4027006 8.6449555, 49.4021910 8.6459291, 49.4032277 8.6467499, 49.4027285 8.6495823, 49.4031963 8.6482412, 49.4034197 8.6479944, 49.4011856 8.6475813, 49.4027739 8.6452746, 49.4009342 8.6456609, 49.4021246 8.6452907, 49.4010180 8.6463851, 49.4015870 8.6461222, 49.4024179 8.6472434, 49.4028856 8.6457199, 49.4025191 8.6471361, 49.4038665 8.6501777, 49.4017686 8.6472648, 49.4018000 8.6474097, 49.4012484 8.6474794, 49.4011262 8.6474901, 49.4029205 8.6495394, 49.4039783 8.6486703, 49.4013357 8.6487615, 49.4015207 8.6499953, 49.4019536 8.6486328, 49.4021456 8.6497968, 49.4025924 8.6484450, 49.4034267 8.6474419, 49.4037339 8.6492926, 49.4033394 8.6487025, 49.4036676 8.6480159, 49.4045542 8.6497700, 49.4042505 8.6491424, 49.4028088 8.6532676, 49.4045054 8.6522537, 49.4041004 8.6524361, 49.3993668 8.6435902, 49.3993772 8.6493194, 49.3999672 8.6427855, 49.3993004 8.6430001, 49.4004315 8.6468571, 49.3991782 8.6420184, 49.4001034 8.6440140, 49.3992585 8.6427748, 49.3998904 8.6476886, 49.3994959 8.6445934, 49.3995867 8.6452961, 49.3996949 8.6460042, 49.4002989 8.6458164, 49.4005363 8.6476457, 49.4005502 8.6477637, 49.4007597 8.6493838, 49.4008225 8.6503065, 49.3999253 8.6479461, 49.3999253 8.6478603, 49.4000615 8.6488903, 49.4005607 8.6529565, 49.4002046 8.6502314, 49.4003827 8.6516315, 49.3992236 8.6480105, 49.3992411 8.6481875, 49.4007283 8.6542815, 49.3986441 8.6435419, 49.3989269 8.6457789, 49.3987942 8.6447275, 49.3990630 8.6469001, 49.3995204 8.6503869, 49.3981030 8.6447811, 49.3983369 8.6459666, 49.3979843 8.6438477, 49.3978726 8.6429679, 49.3985184 8.6481661, 49.3981588 8.6449474, 49.3982007 8.6455643, 49.3982042 8.6460096, 49.3983404 8.6467123, 49.3984556 8.6474794, 49.3985708 8.6483431, 49.3986616 8.6491317, 49.3988571 8.6506391, 49.3991748 8.6535144, 49.3989618 8.6519533, 49.3993703 8.6549252, 49.3971988 8.6451405, 49.3968880 8.6427426, 49.3970661 8.6439604, 49.3975793 8.6485791, 49.3973524 8.6462080, 49.3974990 8.6473882, 49.3976387 8.6484182, 49.3978761 8.6484772, 49.3974466 8.6512023, 49.3978342 8.6499310, 49.3979773 8.6511433, 49.3980646 8.6512238, 49.3975828 8.6518943, 49.3969928 8.6500436, 49.3963644 8.6507946, 49.3970067 8.6510628, 49.3967938 8.6488420, 49.3962631 8.6497486, 49.3958162 8.6503869, 49.3971080 8.6487186, 49.3962003 8.6489975, 49.3966716 8.6559230, 49.3950097 8.6493194, 49.3962561 8.6507195, 49.3956661 8.6491424, 49.3946885 8.6435392, 49.3965319 8.6434990, 49.3966786 8.6446792, 49.3968112 8.6457199, 49.3968880 8.6463314, 49.3971254 8.6482412, 49.3939029 8.6438102, 49.3970277 8.6475062, 49.3969334 8.6475760, 49.3954636 8.6437404, 49.3939029 8.6438102, 49.3940531 8.6452478, 49.3953833 8.6468464, 49.3958337 8.6435795, 49.3949504 8.6434641, 49.3941299 8.6437082, 49.3939239 8.6442178, 49.3941648 8.6460793, 49.3942975 8.6460471, 49.3960676 8.6466211, 49.3951564 8.6445773, 49.3953065 8.6457253, 49.3959349 8.6443681, 49.3962561 8.6442822, 49.3961898 8.6455107, 49.3955229 8.6456770, 49.3943184 8.6471683, 49.3947199 8.6470395, 49.3957673 8.6479300, 49.3962806 8.6477959, 49.3964237 8.6465460, 49.3946222 8.6483002, 49.3951529 8.6481339, 49.3943882 8.6505693, 49.4090151 8.6704338, 49.4053571 8.6668020, 49.4078458 8.6692643, 49.4078563 8.6684060, 49.4072420 8.6716139, 49.4082123 8.6694843, 49.4084253 8.6669254, 49.4096294 8.6667109, 49.4083834 8.6679178, 49.4094026 8.6679929, 49.4089767 8.6702836, 49.4081286 8.6703479, 49.4072036 8.6682290, 49.4078389 8.6717749, 49.4052174 8.6668396, 49.4078144 8.6704391, 49.4066137 8.6725581, 49.4071024 8.6685723, 49.4078493 8.6688620, 49.4070744 8.6698866, 49.4070465 8.6709541, 49.4078040 8.6710346, 49.4052977 8.6674136, 49.4077621 8.6719680, 49.4065194 8.6686260, 49.4063030 8.6709005, 49.4065264 8.6710346, 49.4070640 8.6717212, 49.4052593 8.6682022, 49.4061634 8.6714798, 49.4080972 8.6721557, 49.4060622 8.6724937, 49.4072943 8.6725259, 49.4071582 8.6725420, 49.4080937 8.6712492, 49.4081041 8.6725795, 49.4087673 8.6726171, 49.4088581 8.6731589, 49.4087987 8.6731696, 49.4087534 8.6744624, 49.4087499 8.6748004, 49.4080413 8.6746341, 49.4080553 8.6735505, 49.4080308 8.6756694, 49.4169279 8.7611305, 49.4082176 8.6760315, 49.4087743 8.6755085, 49.4080535 8.6766484, 49.4089645 8.6766592, 49.4096521 8.6765385, 49.4085317 8.6766833, 49.4089366 8.6751786, 49.4358244 8.6780995, 49.4356622 8.6768818, 49.4343174 8.6546731, 49.4338778 8.6524951, 49.4363442 8.6557782, 49.4365047 8.6566955, 49.4366442 8.6566526, 49.4350430 8.6587983, 49.4366198 8.6571836, 49.4366721 8.6574411, 49.4351791 8.6589807, 49.4351930 8.6586803, 49.4350744 8.6584872, 49.4340802 8.6534017, 49.4339895 8.6522216, 49.4344953 8.6650479, 49.4338708 8.6663836, 49.4379558 8.6775738, 49.4335918 8.6669469, 49.4334487 8.6672312, 49.4379524 8.6778420, 49.4382419 8.6799234, 49.4373558 8.6780459, 49.4357826 8.6813289, 49.4377849 8.6802506, 49.4374814 8.6796552, 49.4373349 8.6785126, 49.4370628 8.6804545, 49.4364140 8.6808139, 49.4372303 8.6805832, 49.4366861 8.6808890, 49.4356395 8.6812109, 49.4351302 8.6812055, 49.4349453 8.6798805, 49.4347988 8.6786467, 49.4347709 8.6784321, 49.4354756 8.6781961, 49.4356343 8.6770910, 49.4356204 8.6769274, 49.4357093 8.6772788, 49.4366163 8.6765224, 49.4363721 8.6779547, 49.4338464 8.6792368, 49.4361454 8.6769032, 49.4368849 8.6778098, 49.4339336 8.6800414, 49.4364872 8.6762810, 49.4338429 8.6785072, 49.4365117 8.6759913, 49.4363250 8.6761710, 49.4337801 8.6780834, 49.4342651 8.6784053, 49.4336580 8.6788881, 49.4339929 8.6807925, 49.4339406 8.6817098, 49.4346593 8.6819780, 49.4257975 8.6575109, 49.4258987 8.6565024, 49.4260278 8.6584872, 49.4267710 8.6617595, 49.4270222 8.6627948, 49.4297785 8.6624998, 49.4265128 8.6606973, 49.4262860 8.6596835, 49.4206263 8.6592811, 49.4273118 8.6640126, 49.4199318 8.6596352, 49.4248973 8.6570334, 49.4202354 8.6576450, 49.4228212 8.6581331, 49.4205251 8.6629772, 49.4194293 8.6633044, 49.4200505 8.6610407, 49.4208705 8.6642271, 49.4208775 8.6642700, 49.4341464 8.6831528, 49.4333999 8.6852932, 49.4347046 8.6831206, 49.4347046 8.6822838, 49.4332708 8.6838716, 49.4343941 8.6826003, 49.4345407 8.6842257, 49.4341848 8.6842042, 49.4341011 8.6846173, 49.4334627 8.6817527, 49.4336127 8.6847353, 49.4315229 8.6751866, 49.4334697 8.6823320, 49.4333929 8.6824822, 49.4333475 8.6831152, 49.4332150 8.6841291, 49.4329010 8.6688781, 49.4434217 8.7146688, 49.4432334 8.7144810, 49.4322905 8.6722577, 49.4313276 8.6759806, 49.4332638 8.6813128, 49.4325486 8.6808354, 49.4331906 8.6783463, 49.4331243 8.6790705, 49.4331975 8.6800307, 49.4330022 8.6804545, 49.4330545 8.6823750, 49.4312334 8.6790061, 49.4307554 8.6791295, 49.4304030 8.6791402, 49.4328242 8.6790490, 49.4324021 8.6786950, 49.4326184 8.6785930, 49.4301135 8.6797947, 49.4300646 8.6798751, 49.4316311 8.6810392, 49.4303681 8.6813450, 49.4319835 8.6792743, 49.4317707 8.6794245, 49.4304170 8.6789042, 49.4316904 8.6825144, 49.4304519 8.6797303, 49.4310136 8.6795962, 49.4323219 8.6809158, 49.4319242 8.6809212, 49.4296494 8.6815006, 49.4324021 8.6819619, 49.4324021 8.6824822, 49.4289551 8.6828792, 49.4282504 8.6825627, 49.4311148 8.6810982, 49.4304937 8.6824286, 49.4294575 8.6825842, 49.4298204 8.6824769, 49.4297401 8.6815220, 49.4508052 8.7531316, 49.4282713 8.6831045, 49.4292063 8.6816669, 49.4291540 8.6802560, 49.4287109 8.6789900, 49.4285016 8.6772037, 49.4267431 8.6828578, 49.4280794 8.6817849, 49.4281562 8.6794299, 49.4278735 8.6808193, 49.4276468 8.6795586, 49.4277235 8.6800092, 49.4268617 8.6802238, 49.4269594 8.6788666, 49.4272071 8.6800790, 49.4254312 8.6805940, 49.4478617 8.7534642, 49.4514747 8.7520480, 49.4514747 8.7520480, 49.4501565 8.7541938, 49.4478512 8.7532014, 49.4475234 8.7553471, 49.4469863 8.7539631, 49.4466724 8.7559694, 49.4461283 8.7564522, 49.4461492 8.7537646, 49.4461771 8.7544835, 49.4452773 8.7551433, 49.4460586 8.7531209, 49.4460586 8.7531209, 49.4459469 8.7545907, 49.4454621 8.7535554, 49.4455040 8.7539577, 49.4454342 8.7534481, 49.4444960 8.7528849, 49.4441472 8.7537217, 49.4442309 8.7568438, 49.4446774 8.7555993, 49.4447506 8.7540543, 49.4443077 8.7556851, 49.4445344 8.7566775, 49.4444542 8.7571388, 49.4440670 8.7585872, 49.4441507 8.7545639, 49.4441484 8.7548185, 49.4439589 8.7597406, 49.4433527 8.7530565, 49.4439240 8.7535983, 49.4434950 8.7515277, 49.4426160 8.7526381, 49.4404151 8.7521124, 49.4394244 8.7532657, 49.4379279 8.7512165, 49.4419254 8.7522840, 49.4410464 8.7518442, 49.4376419 8.7409115, 49.4397802 8.7522358, 49.4402162 8.7519890, 49.4393791 8.7523162, 49.4386116 8.7529492, 49.4395625 8.7537196, 49.4395918 8.7536091, 49.4393128 8.7532014, 49.4380117 8.7392485, 49.4393163 8.7523377, 49.4379000 8.7528312, 49.4377500 8.7519944, 49.4379279 8.7512165, 49.4375477 8.7512648, 49.4217290 8.7057906, 49.4291680 8.6963117, 49.4282259 8.6974490, 49.4291191 8.6978674, 49.4284981 8.6960220, 49.4286725 8.6959791, 49.4288749 8.6964941, 49.4299913 8.6991119, 49.4298727 8.6979747, 49.4296145 8.6971056, 49.4295657 8.6962044, 49.4308705 8.6957216, 49.4308915 8.6971700, 49.4297471 8.6958289, 49.4314776 8.7000668, 49.4311148 8.6988544, 49.4319381 8.7001956, 49.4316171 8.7022609, 49.4315369 8.7010592, 49.4317323 8.7039024, 49.4318125 8.7052274, 49.4309333 8.7034249, 49.4309996 8.7033874, 49.4312090 8.7050450, 49.4306403 8.6928141, 49.4307798 8.6930609, 49.4309333 8.6946166, 49.4312962 8.6933827, 49.4306752 8.6930823, 49.4299844 8.6939085, 49.4298169 8.6948526, 49.4305217 8.6888927, 49.4300053 8.6925405, 49.4313136 8.6912584, 49.4292412 8.6937207, 49.4291854 8.6951423, 49.4295762 8.6951584, 49.4289935 8.6928195, 49.4297611 8.6936831, 49.4297262 8.6915481, 49.4304379 8.6923903, 49.4296111 8.6927819, 49.4305670 8.6920577, 49.4309892 8.6929268, 49.4311985 8.6920685, 49.4301972 8.6909473, 49.4306891 8.6918539, 49.4307101 8.6921704, 49.4317532 8.6889303, 49.4313311 8.6904591, 49.4312369 8.6897296, 49.4308147 8.6891288, 49.4311008 8.6890912, 49.4315578 8.6889249, 49.4305321 8.6889517, 49.4307729 8.6904323, 49.4305705 8.6893648, 49.4306682 8.6897939, 49.4308671 8.6911350, 49.4303193 8.6882061, 49.4304449 8.6884260, 49.4303995 8.6884636, 49.4302809 8.6877608, 49.4302042 8.6879271, 49.4297122 8.6852771, 49.4300751 8.6864036, 49.4296529 8.6853683, 49.4291610 8.6835283, 49.4302286 8.6835390, 49.4291924 8.6836410, 49.4290982 8.6833352, 49.4301379 8.6825627, 49.4304135 8.6847728, 49.4307380 8.6875677, 49.4312194 8.6870795, 49.4307066 8.6854434, 49.4309054 8.6862159, 49.4307031 8.6825037, 49.4312334 8.6826593, 49.4313171 8.6835659, 49.4309927 8.6835337, 49.4313625 8.6843598, 49.4306612 8.6835927, 49.4315404 8.6867845, 49.4319765 8.6863875, 49.4316276 8.6850893, 49.4318404 8.6842149, 49.4321963 8.6826003, 49.4324091 8.6860067, 49.4326289 8.6849284, 49.4323463 8.6840808, 49.4327370 8.6825359, 49.4330022 8.6838984, 49.4328382 8.6855775, 49.4331626 8.6850303, 49.4331173 8.6850357, 49.4301553 8.6900890, 49.4294541 8.6895257, 49.4295169 8.6884582, 49.4299948 8.6878842, 49.4295308 8.6876267, 49.4291156 8.6874819, 49.4294575 8.6845073, 49.4291540 8.6868489, 49.4291383 8.6856687, 49.4291854 8.6857438, 49.4283097 8.6852342, 49.4291784 8.6847380, 49.4288295 8.6847192, 49.4283201 8.6835176, 49.4286411 8.6859959, 49.4286062 8.6840540, 49.4279922 8.6858135, 49.4279363 8.6875516, 49.4273781 8.6873786, 49.4214009 8.6682987, 49.4225594 8.6745107, 49.4212404 8.6754227, 49.4220430 8.6748433, 49.4224617 8.6732447, 49.4221756 8.6716461, 49.4227549 8.6673653, 49.4212718 8.6766243, 49.4195585 8.6766404, 49.4197399 8.6784804, 49.4201622 8.6760664, 49.4201307 8.6808568, 49.4362186 8.7528419, 49.4366617 8.7520748, 49.4367733 8.7515706, 49.4349383 8.7516779, 49.4373907 8.7519675, 49.4374465 8.7518334, 49.4372442 8.7532282, 49.4366338 8.7515330, 49.4359291 8.7517637, 49.4363756 8.7491459, 49.4359430 8.7509215, 49.4356605 8.7501168, 49.4353570 8.7512809, 49.4349070 8.7509376, 49.4353046 8.7503850, 49.4349070 8.7509376, 49.4345686 8.7491137, 49.4341953 8.7505674, 49.4342441 8.7510556, 49.4349279 8.7501276, 49.4338674 8.7494785, 49.4340069 8.7483197, 49.4336825 8.7506801, 49.4336755 8.7505674, 49.4332917 8.7473971, 49.4317986 8.7500578, 49.4327231 8.7504548, 49.4334034 8.7487328, 49.4327405 8.7450689, 49.4325382 8.7497789, 49.4326498 8.7472200, 49.4326498 8.7472200, 49.4333371 8.7495428, 49.4346139 8.7440389, 49.4324405 8.7472093, 49.4325696 8.7469572, 49.4331696 8.7458682, 49.4304589 8.7458253, 49.4305496 8.7486255, 49.4295971 8.7490708, 49.4295064 8.7479711, 49.4318265 8.7466782, 49.4314462 8.7478369, 49.4307798 8.7500310, 49.4299146 8.7501007, 49.4306368 8.7478852, 49.4306368 8.7478852, 49.4301763 8.7480998, 49.4294610 8.7460023, 49.4308601 8.7470645, 49.4323254 8.7464958, 49.4318544 8.7453425, 49.4310554 8.7455893, 49.4239726 8.7489474, 49.4246216 8.7471181, 49.4293389 8.7479335, 49.4253823 8.7469786, 49.4291749 8.7472147, 49.4298309 8.7454659, 49.4298937 8.7454551, 49.4238819 8.7467319, 49.4299739 8.7465870, 49.4301728 8.7467694, 49.4289098 8.7462437, 49.4285574 8.7464958, 49.4291854 8.7493336, 49.4276154 8.7464583, 49.4291575 8.7500739, 49.4268164 8.7464905, 49.4259545 8.7465817, 49.4240599 8.7469733, 49.4244646 8.7460184, 49.4239866 8.7438673, 49.4249776 8.7457985, 49.4238540 8.7457877, 49.4245100 8.7446129, 49.4235330 8.7431163, 49.4241855 8.7431055, 49.4234702 8.7478477, 49.4243983 8.7423599, 49.4236028 8.7441140, 49.4235993 8.7448221, 49.4233655 8.7482768, 49.4246984 8.7488079, 49.4246984 8.7488079, 49.4266907 8.7488079, 49.4245205 8.7489152, 49.4259510 8.7481105, 49.4273467 8.7476438, 49.4249531 8.7486845, 49.4254695 8.7483305, 49.4243983 8.7505245, 49.4268687 8.7477672, 49.4281736 8.7474185, 49.4276398 8.7480837, 49.4285330 8.7479764, 49.4277130 8.7480086, 49.4269559 8.7483895, 49.4268164 8.7483251, 49.4259964 8.7487757, 49.4248589 8.7505245, 49.4250159 8.7495750, 49.4242343 8.7503314, 49.4250753 8.7510878, 49.4247228 8.7504816, 49.4244995 8.7509215, 49.4234981 8.7520587, 49.4238296 8.7504709, 49.4239692 8.7514257, 49.4234492 8.7504441, 49.4234562 8.7507820, 49.4234527 8.7495911, 49.4235260 8.7540543, 49.4251067 8.7518871, 49.4235051 8.7536144, 49.4282992 8.7509376, 49.4274060 8.7512970, 49.4248833 8.7521338, 49.4279363 8.7496823, 49.4285434 8.7496555, 49.4281213 8.7509269, 49.4282713 8.7508410, 49.4286935 8.7505567, 49.4275177 8.7501115, 49.4266349 8.7562698, 49.4265930 8.7518388, 49.4265268 8.7521392, 49.4277061 8.7517262, 49.4270711 8.7528151, 49.4243844 8.7575787, 49.4262511 8.7532657, 49.4267396 8.7541509, 49.4262965 8.7554491, 49.4261115 8.7544996, 49.4261639 8.7596977, 49.4268966 8.7551165, 49.4277445 8.7564307, 49.4266803 8.7563127, 49.4237284 8.7575465, 49.4242239 8.7631685, 49.4255707 8.7563342, 49.4247612 8.7568116, 49.4242274 8.7580991, 49.4241680 8.7641609, 49.4248799 8.7585551, 49.4254695 8.7591559, 49.4227688 8.7451869, 49.4227234 8.7443340, 49.4232050 8.7457395, 49.4230235 8.7468177, 49.4227165 8.7462223, 49.4226990 8.7474239, 49.4233795 8.7470376, 49.4208601 8.7520587, 49.4232259 8.7511307, 49.4233795 8.7470376, 49.4222314 8.7500149, 49.4232259 8.7511307, 49.4219523 8.7451923, 49.4227130 8.7487435, 49.4206507 8.7500900, 49.4206053 8.7501597, 49.4205844 8.7501973, 49.4203262 8.7527347, 49.4191955 8.7468284, 49.4196352 8.7532389, 49.4185744 8.7528527, 49.4184278 8.7517905, 49.4184208 8.7502295, 49.4186721 8.7481052, 49.4183231 8.7493980, 49.4183406 8.7489742, 49.4174123 8.7510771, 49.4192863 8.7464315, 49.4181626 8.7467641, 49.4182673 8.7476331, 49.4172622 8.7507766, 49.4202145 8.7359387, 49.4180579 8.7482822, 49.4178694 8.7491190, 49.4175588 8.7502617, 49.4172971 8.7517315, 49.4176147 8.7441301, 49.4173564 8.7481159, 49.4174053 8.7460828, 49.4202075 8.7325644, 49.4173076 8.7499183, 49.4208007 8.7343025, 49.4173774 8.7470806, 49.4178694 8.7431109, 49.4179462 8.7419039, 49.4210171 8.7327468, 49.4207624 8.7352413, 49.4206786 8.7362391, 49.4207763 8.7356490, 49.4202040 8.7346888, 49.4203925 8.7338573, 49.4209299 8.7334657, 49.4211916 8.7298608, 49.4211916 8.7298608, 49.4208252 8.7277740, 49.4215335 8.7313682, 49.4211916 8.7298608, 49.4184138 8.7568545, 49.4173076 8.7524718, 49.4180404 8.7560177, 49.4211567 8.7562430, 49.4175693 8.7536091, 49.4178555 8.7550414, 49.4183964 8.7562537, 49.4193107 8.7568760, 49.4183582 8.7569612, 49.4201517 8.7567151, 49.4194956 8.7561303, 49.4201656 8.7560338, 49.4201532 8.7569234, 49.4217673 8.7542152, 49.4220814 8.7545747, 49.4230270 8.7536842, 49.4209857 8.7562376, 49.4231073 8.7576324, 49.4212439 8.7548214, 49.4209124 8.7563074, 49.4215824 8.7555563, 49.4211532 8.7562323, 49.4221651 8.7570316, 49.4224862 8.7593490, 49.4213277 8.7546927, 49.4225211 8.7538880, 49.4229119 8.7530082, 49.4233725 8.7585121, 49.4224478 8.7584478, 49.4218441 8.7571120, 49.4215545 8.7587374, 49.4189478 8.7574500, 49.4229537 8.7562644, 49.4229537 8.7561411, 49.4222210 8.7554222, 49.4209752 8.7581420, 49.4215231 8.7586999, 49.4201831 8.7575090, 49.4197190 8.7573695, 49.4181416 8.7571925, 49.4193735 8.7580025, 49.4179741 8.7587214, 49.4193735 8.7580025, 49.4204797 8.7586945, 49.4197678 8.7582010, 49.4205146 8.7592685, 49.4170842 8.7616235, 49.4176915 8.7615108, 49.4168644 8.7627447, 49.4174786 8.7630236, 49.4168644 8.7627447, 49.4177054 8.7613499, 49.4162781 8.7645096, 49.4165363 8.7635279, 49.4161524 8.7662369, 49.4157755 8.7672025, 49.4161524 8.7662369, 49.4157197 8.7681466, 49.4147774 8.7736291, 49.4105963 8.7778509, 49.4143237 8.7749219, 49.4135210 8.7758285, 49.4169167 8.7675136, 49.4148333 8.7752438, 49.4127986 8.7763703, 49.4116503 8.7772179, 49.4188326 8.7662745, 49.4178834 8.7641555, 49.4168085 8.7680072, 49.4171959 8.7666178, 49.4176566 8.7667197, 49.4178799 8.7649441, 49.4175833 8.7654376, 49.4175833 8.7654376, 49.4178799 8.7649441, 49.4179218 8.7639195, 49.4188815 8.7647134, 49.4189827 8.7620366, 49.4181486 8.7613231, 49.4179218 8.7639195, 49.4181975 8.7653250, 49.4181416 8.7642413, 49.4184383 8.7614250, 49.4185534 8.7641877, 49.4199772 8.7617844, 49.4189303 8.7599605, 49.4186267 8.7631148, 49.4199179 8.7649065, 49.4192897 8.7610388, 49.4206891 8.7614518, 49.4185569 8.7606633, 49.4201063 8.7603146, 49.4194154 8.7610602, 49.4191676 8.7603360, 49.4201342 8.7630934, 49.4199912 8.7626857, 49.4194398 8.7638980, 49.4220046 8.7603468, 49.4211183 8.7607920, 49.4204029 8.7625033, 49.4209892 8.7604594, 49.4211218 8.7623852, 49.4213660 8.7616825, 49.4221651 8.7621868, 49.4215789 8.7609744, 49.4220291 8.7610602, 49.4221651 8.7621868, 49.4205251 8.7619615, 49.4211741 8.7624818, 49.4235051 8.7627715, 49.4230270 8.7641180, 49.4218546 8.7632275, 49.4227793 8.7626588, 49.4224303 8.7629378, 49.4227897 8.7641126, 49.4224931 8.7630558, 49.4231596 8.7636191, 49.4226048 8.7617522, 49.4229712 8.7641072, 49.4236132 8.7628680, 49.4230410 8.7616450, 49.4232015 8.7608081, 49.4227688 8.7601054, 49.4235435 8.7644184, 49.4234178 8.7641609, 49.4236097 8.7614840, 49.4226083 8.7609798, 49.4224373 8.7606096, 49.4237633 8.7634367, 49.4235051 8.7627715, 49.4139573 8.7698203, 49.4097307 8.7748790, 49.4106172 8.7722182, 49.4117759 8.7738919, 49.4110290 8.7725508, 49.4111338 8.7734628, 49.4104427 8.7742728, 49.4132767 8.7718749, 49.4137967 8.7704319, 49.4111128 8.7724650, 49.4113013 8.7728190, 49.4113432 8.7728834, 49.4116643 8.7726796, 49.4110919 8.7744391, 49.4123169 8.7731999, 49.4127776 8.7726903, 49.4136327 8.7710327, 49.4110988 8.7665749, 49.4115665 8.7653840, 49.4136083 8.7681413, 49.4139817 8.7692463, 49.4111547 8.7711936, 49.4121250 8.7705392, 49.4116922 8.7702119, 49.4126031 8.7709254, 49.4119330 8.7697828, 49.4122192 8.7692839, 49.4131092 8.7698203, 49.4132209 8.7679321, 49.4130289 8.7698632, 49.4133884 8.7689513, 49.4124949 8.7684202, 49.4127218 8.7675083, 49.4127218 8.7675083, 49.4121773 8.7663978, 49.4126520 8.7677121, 49.4105753 8.7689137, 49.4109174 8.7692839, 49.4112629 8.7659365, 49.4115805 8.7671220, 49.4111721 8.7696540, 49.4112419 8.7682325, 49.4127392 8.7650031, 49.4122750 8.7655878, 49.4105893 8.7677765, 49.4108092 8.7664729, 49.4119644 8.7649333, 49.4119051 8.7641072, 49.4117341 8.7666768, 49.4121983 8.7675565, 49.4127427 8.7639785, 49.4131615 8.7658882, 49.4127741 8.7666017, 49.4139712 8.7664729, 49.4142644 8.7647885, 49.4131441 8.7635869, 49.4137688 8.7644291, 49.4143202 8.7643003, 49.4153114 8.7615645, 49.4139573 8.7623477, 49.4133605 8.7648261, 49.4134722 8.7633616, 49.4146797 8.7576216, 49.4136292 8.7632221, 49.4137723 8.7631094, 49.4147320 8.7642467, 49.4150671 8.7629002, 49.4141073 8.7628573, 49.4149798 8.7586302, 49.4157302 8.7568277, 49.4153358 8.7614787, 49.4151159 8.7606472, 49.4144633 8.7612212, 49.4151543 8.7559801, 49.4146902 8.7627017, 49.4148926 8.7618220, 49.4157162 8.7577236, 49.4149589 8.7604594, 49.4154056 8.7596440, 49.4157162 8.7558407, 49.4156010 8.7588179, 49.4160896 8.7565702, 49.4129626 8.7571657, 49.4149903 8.7576056, 49.4144110 8.7560445, 49.4153184 8.7560070, 49.4145192 8.7568331, 49.4150147 8.7567902, 49.4160268 8.7551916, 49.4150392 8.7510663, 49.4159431 8.7542367, 49.4156569 8.7550628, 49.4155696 8.7543333, 49.4156290 8.7542421, 49.4147739 8.7511307, 49.4154545 8.7551057, 49.4155278 8.7534642, 49.4155278 8.7534642, 49.4138979 8.7545586, 49.4150915 8.7509698, 49.4153114 8.7521178, 49.4149763 8.7504119, 49.4149414 8.7502027, 49.4148612 8.7497950, 49.4152032 8.7504601, 49.4149763 8.7504119, 49.4140934 8.7513131, 49.4130115 8.7503260, 49.4144110 8.7501758, 49.4135943 8.7496877, 49.4128090 8.7513667, 49.4135838 8.7510985, 49.4133570 8.7528902, 49.4131615 8.7537539, 49.4126345 8.7504333, 49.4123797 8.7522036, 49.4120796 8.7517852, 49.4130673 8.7525094, 49.4124984 8.7529010, 49.4124984 8.7529010, 49.4141946 8.7542045, 49.4146937 8.7533140, 49.4143796 8.7524396, 49.4144214 8.7525254, 49.4139747 8.7533194, 49.4141981 8.7552720, 49.4149240 8.7542099, 49.4150950 8.7550575, 49.4142504 8.7470806, 49.4143935 8.7456375, 49.4149240 8.7482339, 49.4147739 8.7487650, 49.4147460 8.7478423, 49.4153637 8.7456858, 49.4149938 8.7493068, 49.4145192 8.7469035, 49.4147320 8.7459111, 49.4154789 8.7444842, 49.4156115 8.7435400, 49.4157337 8.7425476, 49.4141387 8.7461632, 49.4153882 8.7426871, 49.4133919 8.7466621, 49.4140655 8.7470055, 49.4151718 8.7442428, 49.4123588 8.7455732, 49.4128858 8.7457609, 49.4162467 8.7399405, 49.4154859 8.7342864, 49.4170354 8.7368506, 49.4159326 8.7412065, 49.4157546 8.7422419, 49.4132942 8.7428910, 49.4151334 8.7353700, 49.4125333 8.7366790, 49.4133674 8.7365341, 49.4150496 8.7367970, 49.4142295 8.7376660, 49.4120098 8.7373173, 49.4105125 8.7352681, 49.4126764 8.7380898, 49.4119644 8.7377733, 49.4104846 8.7353271, 49.4121808 8.7433738, 49.4141422 8.7385941, 49.4117376 8.7396562, 49.4115945 8.7403804, 49.4110639 8.7430358, 49.4114549 8.7411690, 49.4113292 8.7418342, 49.4122157 8.7421829, 49.4123448 8.7410188, 49.4133709 8.7382668, 49.4154963 8.7412924, 49.4125159 8.7398654, 49.4133709 8.7382668, 49.4133709 8.7382668, 49.4140096 8.7429607, 49.4134477 8.7380201, 49.4133919 8.7397689, 49.4133151 8.7412655, 49.4144494 8.7405306, 49.4141981 8.7416303, 49.4140655 8.7422419, 49.4146797 8.7397850, 49.4151927 8.7409168, 49.4140306 8.7438244, 49.4145541 8.7423277, 49.4142958 8.7447363, 49.4132488 8.7443072, 49.4156150 8.7314916, 49.4157825 8.7288147, 49.4154580 8.7277204, 49.4168469 8.7306494, 49.4156010 8.7296355, 49.4158802 8.7330580, 49.4159291 8.7324357, 49.4155731 8.7304831, 49.4160966 8.7310302, 49.4170493 8.7318939, 49.4148088 8.7287074, 49.4169865 8.7297696, 49.4186895 8.7308908, 49.4173111 8.7298286, 49.4173879 8.7298930, 49.4176496 8.7304240, 49.4173006 8.7280530, 49.4171471 8.7287396, 49.4170703 8.7278706, 49.4177717 8.7295175, 49.4176670 8.7287664, 49.4181172 8.7292439, 49.4178799 8.7277901, 49.4183336 8.7307888, 49.4183091 8.7301183, 49.4183161 8.7311751, 49.3594302 8.7046373, 49.3601778 8.7052381, 49.3598389 8.7044281, 49.3604853 8.7044066, 49.3638777 8.7039667, 49.3598844 8.7041008, 49.3609150 8.7041759, 49.3615195 8.7043101, 49.3598774 8.7026632, 49.3605709 8.7053025, 49.3603071 8.7044120, 49.3595979 8.7031245, 49.3612050 8.7062788, 49.3630148 8.6822355, 49.3634864 8.6817634, 49.3603980 8.7033337, 49.3604923 8.7033981, 49.3631021 8.6844456, 49.3608591 8.7053668, 49.3614845 8.7053025, 49.3609570 8.7046105, 49.3611491 8.7032801, 49.3610199 8.7032747, 49.3609290 8.7028563, 49.3617570 8.7034088, 49.3622322 8.7051201, 49.3619317 8.7027383, 49.3618758 8.7031245, 49.3624698 8.7027061, 49.3623649 8.7043530, 49.3624139 8.7032640, 49.3636786 8.7016922, 49.3634305 8.7039346, 49.3626864 8.7025183, 49.3630532 8.7035269, 49.3629973 8.7051952, 49.3623789 8.7020141, 49.3634864 8.7040901, 49.3628226 8.7069762, 49.3642899 8.7058228, 49.3636995 8.7055653, 49.3647231 8.7037146, 49.3603735 8.6870420, 49.3607543 8.6869776, 49.3616557 8.6869133, 49.3611212 8.6869508, 49.3625431 8.6868489, 49.3631336 8.6867899, 49.3632209 8.6866021, 49.3636576 8.6867201, 49.3639790 8.6867040, 49.3631301 8.6854327, 49.3630567 8.6833459, 49.3631405 8.6798859, 49.3629030 8.6794943, 49.3628715 8.6782390, 49.3639860 8.6798269, 49.3628366 8.6776221, 49.3626375 8.6771446, 49.3621518 8.6771500, 49.3619073 8.6757231, 49.3627807 8.6761039, 49.3626514 8.6749238, 49.3752341 8.6162049, 49.3713988 8.6196113, 49.3705954 8.6212099, 49.3690724 8.6234844, 49.3690724 8.6234844, 49.3675773 8.6068761, 49.3649223 8.6152768, 49.3778606 8.6176479, 49.3765892 8.6474633, 49.3753109 8.6489010, 49.3762539 8.6495662, 49.3666445 8.6580366, 49.3666445 8.6580366, 49.3678428 8.6603487, 49.3677939 8.6610353, 49.3693484 8.6638302, 49.3700156 8.6633527, 49.3691737 8.6636156, 49.3694322 8.6635512, 49.3759605 8.6522913, 49.3758662 8.6575162, 49.3758558 8.6588037, 49.3743050 8.6652249, 49.3729078 8.6633259, 49.3734737 8.6641628, 49.3736064 8.6643451, 49.3735575 8.6659330, 49.3748813 8.6643612, 49.3752690 8.6652946, 49.3741722 8.6630899, 49.3742875 8.6616415, 49.3735715 8.6623603, 49.3745774 8.6626446, 49.3748184 8.6617327, 49.3751397 8.6609548, 49.3761212 8.6647475, 49.3764006 8.6653268, 49.3759710 8.6642432, 49.3749861 8.6621565, 49.3754192 8.6610943, 49.3758104 8.6624622, 49.3760828 8.6632723, 49.3756462 8.6636370, 49.3764390 8.6639482, 49.3757684 8.6666411, 49.3764041 8.6661315, 49.3759885 8.6672741, 49.3764775 8.6682183, 49.3768617 8.6685240, 49.3766451 8.6676282, 49.3774345 8.6659706, 49.3771061 8.6654395, 49.3767988 8.6635083, 49.3759745 8.6603004, 49.3771446 8.6633688, 49.3766207 8.6628538, 49.3764670 8.6600965, 49.3771306 8.6610353, 49.3769630 8.6590880, 49.3772738 8.6620224, 49.3773087 8.6599678, 49.3769141 8.6599678, 49.3773681 8.6584657, 49.3650271 8.6803848, 49.3649397 8.6753690, 49.3648524 8.6758733, 49.3649258 8.6772627, 49.3651563 8.6837590, 49.3649677 8.6784804, 49.3642271 8.6817044, 49.3650026 8.6792019, 49.3650410 8.6812216, 49.3651773 8.6864841, 49.3652297 8.6855990, 49.3653729 8.6867094, 49.3664734 8.6796498, 49.3648105 8.6866504, 49.3643458 8.6866772, 49.3650201 8.6956948, 49.3657887 8.6912102, 49.3654707 8.6881739, 49.3659004 8.6932755, 49.3667284 8.6849231, 49.3661066 8.6849606, 49.3669799 8.6835980, 49.3669520 8.6824608, 49.3668961 8.6811519, 49.3668227 8.6791456, 49.3656384 8.6797035, 49.3659179 8.6796713, 49.3667948 8.6780781, 49.3667179 8.6759108, 49.3667633 8.6770588, 49.3689886 8.6878896, 49.3678777 8.6794943, 49.3671441 8.6796016, 49.3675179 8.6795050, 49.3677345 8.6794513, 49.3674096 8.6848265, 49.3673502 8.6912745, 49.3685554 8.6846602, 49.3686881 8.6878252, 49.3686462 8.6830723, 49.3696732 8.6830080, 49.3685589 8.6814791, 49.3684855 8.6794460, 49.3703160 8.6777830, 49.3708050 8.6777616, 49.4025959 8.6652946, 49.4028088 8.6652786, 49.3915601 8.6649460, 49.4027268 8.6654449, 49.3979738 8.6666787, 49.3974711 8.6631811, 49.3722581 8.6736953, 49.3773297 8.6734995, 49.3731383 8.6741352, 49.3738718 8.6742640, 49.3744377 8.6743605, 49.3757195 8.6716354, 49.3762819 8.6746502, 49.3772668 8.6747897, 49.3750245 8.6744571, 49.3755624 8.6745375, 49.3756497 8.6727512, 49.3769001 8.6747253, 49.3772878 8.6726493, 49.3748778 8.6726010, 49.3765264 8.6716729, 49.3772878 8.6702299, 49.3748778 8.6715657, 49.3766905 8.6704659, 49.3772668 8.6715335, 49.3756392 8.6696962, 49.3773681 8.6716944, 49.3772808 8.6699939, 49.3761492 8.6707985, 49.3756218 8.6701548, 49.3758278 8.6701226, 49.3756287 8.6709380, 49.3749511 8.6710265, 49.3750035 8.6700261, 49.3752620 8.6701494, 49.3769874 8.6694628, 49.3763238 8.6698222, 49.3773367 8.6693126, 49.3760583 8.6689317, 49.3773157 8.6687225, 49.3774834 8.6680359, 49.3774659 8.6667001, 49.3764321 8.6751759, 49.3767674 8.6752349, 49.3773122 8.6753261, 49.3773402 8.6762756, 49.3767569 8.6759055, 49.3773576 8.6772949, 49.3766731 8.6771446, 49.3765683 8.6763936, 49.3767254 8.6765063, 49.3746822 8.6768281, 49.3761352 8.6771125, 49.3725899 8.6793119, 49.3738334 8.6766887, 49.3756252 8.6769944, 49.3721166 8.6795667, 49.3718913 8.6812109, 49.3725061 8.6764902, 49.3725341 8.6768121, 49.3721603 8.6776650, 49.3721289 8.6768657, 49.3725480 8.6777964, 49.3717516 8.6777401, 49.3720660 8.6785394, 49.3723210 8.6785877, 49.3726563 8.6833298, 49.3726668 8.6841023, 49.3723384 8.6845422, 49.3723035 8.6856741, 49.3740290 8.6877394, 49.3738614 8.6841613, 49.3727192 8.6824769, 49.3724956 8.6812001, 49.3710460 8.6828685, 49.3726773 8.6816293, 49.3737706 8.6856741, 49.3728519 8.6827290, 49.3726843 8.6848855, 49.3724013 8.6870313, 49.3723105 8.6862212, 49.3727122 8.6867040, 49.3727017 8.6856365, 49.3739592 8.6876428, 49.3732920 8.6856955, 49.3739103 8.6852878, 49.3738369 8.6832708, 49.3737740 8.6826378, 49.3733095 8.6826861, 49.3738090 8.6825037, 49.3735959 8.6800146, 49.3737915 8.6816132, 49.3737845 8.6810446, 49.3737531 8.6806208, 49.3729148 8.6766726, 49.3731104 8.6803687, 49.3737950 8.6799932, 49.3736832 8.6785877, 49.3736902 8.6783731, 49.3734841 8.6768764, 49.3731733 8.6779064, 49.3735680 8.6778527, 49.3729881 8.6772627, 49.3739207 8.6777294, 49.3740814 8.6768818, 49.3748114 8.6786950, 49.3751572 8.6790973, 49.3758278 8.6804438, 49.3751013 8.6772251, 49.3751363 8.6781800, 49.3743364 8.6787379, 49.3765892 8.6873907, 49.3743853 8.6809856, 49.3749616 8.6800736, 49.3749581 8.6818868, 49.3744237 8.6799556, 49.3739696 8.6826164, 49.3749407 8.6810312, 49.3749442 8.6805779, 49.3744656 8.6825788, 49.3755065 8.6824876, 49.3760304 8.6824393, 49.3764181 8.6824071, 49.3763692 8.6799449, 49.3762889 8.6814576, 49.3763343 8.6788961, 49.3758453 8.6795586, 49.3770223 8.6841023, 49.3762958 8.6778930, 49.3769001 8.6823750, 49.3775392 8.6823374, 49.3770363 8.6823696, 49.3774449 8.6848372, 49.3773821 8.6840218, 49.3770957 8.6856848, 49.3774519 8.6856633, 49.3771201 8.6867577, 49.3773751 8.6872727, 49.3761457 8.6874551, 49.3734562 8.6920792, 49.3709866 8.6916018, 49.3719298 8.6900783, 49.3718913 8.6891663, 49.3730475 8.6910439, 49.3720904 8.6891663, 49.3728554 8.6920524, 49.3721079 8.6900783, 49.3719577 8.6910599, 49.3721498 8.6918807, 49.3765788 8.6914408, 49.3737566 8.6910278, 49.3722581 8.6897510, 49.3723000 8.6910331, 49.3727576 8.6897510, 49.3734632 8.6906523, 49.3735051 8.6897081, 49.3725585 8.6888230, 49.3729497 8.6906683, 49.3730999 8.6887854, 49.3743189 8.6887532, 49.3756322 8.6922830, 49.3764390 8.6924011, 49.3740500 8.6892790, 49.3741408 8.6932862, 49.3749721 8.6902982, 49.3750559 8.6895311, 49.3743189 8.6903197, 49.3742980 8.6912584, 49.3749057 8.6937368, 49.3749267 8.6912692, 49.3747590 8.6931467, 49.3749057 8.6921865, 49.3750874 8.6886996, 49.3764670 8.6903465, 49.3756392 8.6931199, 49.3763832 8.6914140, 49.3770957 8.6910760, 49.3756916 8.6913550, 49.3758942 8.6904377, 49.3759047 8.6895955, 49.3758173 8.6885279, 49.3764705 8.6896169, 49.3771446 8.6898261, 49.3774764 8.6926425, 49.3770642 8.6886191, 49.3775602 8.6885387, 49.3771411 8.6914918, 49.3773786 8.6940908, 49.3772843 8.6956143, 49.3775567 8.6950833, 49.3769210 8.6925083, 49.3771620 8.6956465, 49.3761003 8.6960328, 49.3773402 8.6964619, 49.3771935 8.6972719, 49.3772563 8.6984199, 49.3772773 8.6986130, 49.3769210 8.6989188, 49.3650480 8.7017083, 49.3649153 8.7061930, 49.3642830 8.7019497, 49.3669904 8.7035108, 49.3649362 8.6999488, 49.3651144 8.7038755, 49.3653345 8.7056726, 49.3650061 8.7019444, 49.3663895 8.7076735, 49.3656349 8.7072873, 49.3679336 8.7052381, 49.3661799 8.7094438, 49.3679196 8.7063432, 49.3656839 8.7058711, 49.3679545 8.7052488, 49.3687161 8.7081134, 49.3686253 8.7063217, 49.3694077 8.7056458, 49.3692820 8.7049913, 49.3690724 8.7042618, 49.3693029 8.7040901, 49.3680733 8.7043905, 49.3667948 8.7005013, 49.3667668 8.7040901, 49.3673677 8.7041545, 49.3674271 8.7024271, 49.3670533 8.7039077, 49.3660472 8.7045085, 49.3676891 8.7023091, 49.3679755 8.7022716, 49.3677939 8.7019229, 49.3668716 8.7001365, 49.3664594 8.7001473, 49.3676436 8.7009948, 49.3669939 8.7006193, 49.3665677 8.7007052, 49.3707736 8.7051201, 49.3707596 8.7052220, 49.3663860 8.7025237, 49.3664838 8.7006301, 49.3672105 8.7018371, 49.3676227 8.7019283, 49.3667459 8.7017566, 49.3671266 8.7027973, 49.3657572 8.7037307, 49.3662183 8.7036771, 49.3662603 8.7007266, 49.3656489 8.7022877, 49.3663301 8.7008929, 49.3658970 8.7019122, 49.3655371 8.7031245, 49.3658376 8.7030548, 49.3697291 8.7036395, 49.3664105 8.7035805, 49.3702007 8.7015259, 49.3700400 8.7053990, 49.3700086 8.7027115, 49.3700016 8.7018853, 49.3704941 8.7052864, 49.3742246 8.7062037, 49.3715840 8.7064505, 49.3722546 8.7062305, 49.3708923 8.7064236, 49.3707805 8.7052166, 49.3723874 8.7093043, 49.3729742 8.7065631, 49.3735924 8.7065685, 49.3734527 8.7098461, 49.3739662 8.7098140, 49.3741827 8.7066919, 49.3751642 8.7069333, 49.3717411 8.7028912, 49.3733549 8.7044710, 49.3749546 8.7053293, 49.3726982 8.7009680, 49.3712207 8.7045541, 49.3718215 8.7039265, 49.3719630 8.7038273, 49.3722127 8.7046909, 49.3716398 8.7021026, 49.3721533 8.7046802, 49.3726843 8.7036932, 49.3730126 8.7044388, 49.3719664 8.7012899, 49.3726755 8.7027946, 49.3730161 8.7040418, 49.3733060 8.7036932, 49.3731453 8.7036127, 49.3740744 8.7031782, 49.3741827 8.7045997, 49.3741373 8.7045944, 49.3745110 8.7045515, 49.3743015 8.7041223, 49.3738229 8.7027436, 49.3736762 8.7025613, 49.3730999 8.7024915, 49.3725026 8.7017781, 49.3736867 8.7019980, 49.3754751 8.7009090, 49.3735226 8.7010404, 49.3744412 8.7025237, 49.3746962 8.7026149, 49.3740220 8.7024754, 49.3741513 8.7014025, 49.3751432 8.7017083, 49.3768198 8.7015903, 49.3759291 8.7023950, 49.3760409 8.7027651, 49.3753319 8.7017351, 49.3759955 8.7016600, 49.3772703 8.7006569, 49.3764879 8.7016547, 49.3768477 8.7017351, 49.3772092 8.7020302, 49.3766696 8.7037897, 49.3873106 8.7342381, 49.3808152 8.7045676, 49.3751607 8.7028831, 49.3752131 8.7029153, 49.3770153 8.7029609, 49.3748568 8.7047553, 49.3757615 8.7050235, 49.3752760 8.7040311, 49.3750839 8.7034786, 49.3750000 8.7038970, 49.3774624 8.7037522, 49.3774519 8.7052113, 49.3774170 8.7043530, 49.3775148 8.7040472, 49.3773402 8.7039936, 49.3762260 8.7057531, 49.3756567 8.7064236, 49.3761911 8.7056726, 49.3755763 8.7061876, 49.3752934 8.7058389, 49.3760933 8.7067884, 49.3771970 8.7077916, 49.3768267 8.7069574, 49.3773541 8.7068152, 49.3771446 8.7078935, 49.3867519 8.6978137, 49.3886026 8.7357831, 49.3778117 8.6990476, 49.3784962 8.6994874, 49.3785591 8.6997074, 49.3803717 8.7043154, 49.3798443 8.7052864, 49.3790131 8.7001580, 49.3805742 8.7044549, 49.3798024 8.7009090, 49.3811051 8.7041438, 49.3812552 8.7045890, 49.3808152 8.7030602, 49.3803228 8.7017727, 49.3812937 8.7062573, 49.3805149 8.7060803, 49.3796837 8.7044120, 49.3797675 8.7032640, 49.3793728 8.7040526, 49.3785556 8.7026471, 49.3778536 8.7025237, 49.3777313 8.7031943, 49.3782308 8.7042725, 49.3783076 8.7041652, 49.3788140 8.7037146, 49.3780911 8.7054634, 49.3779549 8.7054044, 49.3785102 8.7044120, 49.3789363 8.7049109, 49.3784403 8.7050664, 49.3784019 8.7067455, 49.3789991 8.7050611, 49.3777558 8.7068367, 49.3790864 8.7056243, 49.3787896 8.7064183, 49.3813216 8.7075448, 49.3814403 8.7083387, 49.3838256 8.7115037, 49.3867519 8.6979747, 49.3883861 8.7104416, 49.3868217 8.7044764, 49.3893918 8.7045836, 49.3901250 8.7052917, 49.3900622 8.7051094, 49.3895105 8.7352198, 49.3892870 8.7364429, 49.3898422 8.7379503, 49.3886026 8.7357831, 49.3877157 8.7430036, 49.3878973 8.7424886, 49.3879741 8.7424028, 49.3872338 8.7351072, 49.3883861 8.7371457, 49.3880928 8.7361479, 49.3967240 8.6977011, 49.3932815 8.7099266, 49.3945384 8.7091541, 49.3932396 8.7118578, 49.3967205 8.6982322, 49.3991189 8.6982697, 49.3967833 8.6964512, 49.4040516 8.6962312, 49.4051232 8.7097979, 49.4007248 8.7273610, 49.3999428 8.7268245, 49.3982461 8.7242281, 49.3972546 8.7238955, 49.4034127 8.7271142, 49.3982112 8.7258482, 49.3982391 8.7249255, 49.3965424 8.7249684, 49.3919616 8.7220073, 49.3921991 8.7309551, 49.4036222 8.7280798, 49.3921991 8.7309551, 49.3921991 8.7309551, 49.3922619 8.7308586, 49.3922445 8.7308720, 49.3922846 8.7308291, 49.4032801 8.7277365, 49.4032731 8.7286538, 49.4036222 8.7280798, 49.3871395 8.6638731, 49.3980716 8.7293673, 49.3899644 8.6599624, 49.3868392 8.6621672, 49.3846776 8.6380327, 49.3885886 8.6475384, 49.3846776 8.6380327, 49.3846776 8.6380327, 49.3894791 8.6535144, 49.3895349 8.6537236, 49.3895419 8.6544532, 49.3892381 8.6519748, 49.3885747 8.6528975, 49.3891857 8.6537504, 49.3892696 8.6612767, 49.3874154 8.6651176, 49.3879392 8.6650050, 49.3913401 8.6647528, 49.3904288 8.6665285, 49.3891299 8.6665070, 49.3880649 8.6665231, 49.3844716 8.6576074, 49.3870208 8.6626956, 49.3856868 8.6607027, 49.3833646 8.6616415, 49.3833262 8.6625320, 49.3852853 8.6628699, 49.3874154 8.6622101, 49.3883826 8.6618400, 49.3834589 8.6575055, 49.3782412 8.6492872, 49.3864760 8.6594528, 49.3828058 8.6567277, 49.3819747 8.6567545, 49.3813949 8.6531228, 49.3782552 8.6565346, 49.3849780 8.6595547, 49.3854668 8.6588788, 49.3819537 8.6536646, 49.3833366 8.6563575, 49.3811610 8.6565185, 49.3841364 8.6584228, 49.3831131 8.6588037, 49.3830223 8.6575592, 49.3826452 8.6582243, 49.3837417 8.6569583, 49.3836160 8.6592382, 49.3833995 8.6581278, 49.3820236 8.6576021, 49.3824042 8.6590827, 49.3822191 8.6570871, 49.3844716 8.6644953, 49.3813391 8.6572373, 49.3847160 8.6629021, 49.3817651 8.6583102, 49.3834205 8.6608583, 49.3849465 8.6616415, 49.3851700 8.6613196, 49.3860849 8.6627519, 49.3845135 8.6640877, 49.3847614 8.6645114, 49.3854913 8.6633313, 49.3855961 8.6644202, 49.3854424 8.6629075, 49.3849710 8.6666679, 49.3851386 8.6636531, 49.3851002 8.6643505, 49.3842272 8.6646777, 49.3842691 8.6655468, 49.3849849 8.6658633, 49.3849116 8.6651659, 49.3838535 8.6645597, 49.3835706 8.6667806, 49.3833366 8.6657345, 49.3828093 8.6659867, 49.3853481 8.6666411, 49.3844926 8.6666840, 49.3841678 8.6637765, 49.3841538 8.6629504, 49.3842202 8.6657023, 49.3841818 8.6649299, 49.3841573 8.6644953, 49.3841364 8.6638892, 49.3840944 8.6629504, 49.3836614 8.6627948, 49.3830712 8.6627144, 49.3828233 8.6646831, 49.3831306 8.6646938, 49.3828827 8.6627197, 49.3833820 8.6646456, 49.3828442 8.6637121, 49.3838465 8.6637443, 49.3828023 8.6668825, 49.3828198 8.6652517, 49.3821213 8.6630738, 49.3794566 8.6651444, 49.3812203 8.6671722, 49.3812902 8.6655307, 49.3815905 8.6631650, 49.3777593 8.6664158, 49.3820934 8.6640018, 49.3820794 8.6648226, 49.3796243 8.6664212, 49.3820585 8.6653858, 49.3820271 8.6661100, 49.3815486 8.6671239, 49.3801936 8.6649030, 49.3820061 8.6669040, 49.3813426 8.6643505, 49.3813775 8.6635137, 49.3801272 8.6641896, 49.3805952 8.6670220, 49.3803402 8.6658096, 49.3789118 8.6646992, 49.3793624 8.6646456, 49.3797151 8.6662763, 49.3788874 8.6667913, 49.3781539 8.6672205, 49.3776615 8.6654234, 49.3803158 8.6571622, 49.3799910 8.6568081, 49.3789572 8.6590290, 49.3812622 8.6614430, 49.3818280 8.6608636, 49.3811121 8.6628592, 49.3787337 8.6569583, 49.3808362 8.6596245, 49.3809689 8.6590344, 49.3812203 8.6581331, 49.3812029 8.6608207, 49.3805149 8.6582565, 49.3807384 8.6574250, 49.3788769 8.6573714, 49.3793309 8.6611640, 49.3801062 8.6576772, 49.3794671 8.6589646, 49.3792750 8.6568189, 49.3795684 8.6572587, 49.3776335 8.6593080, 49.3786743 8.6618561, 49.3780492 8.6630577, 49.3788175 8.6582834, 49.3801202 8.6588949, 49.3798234 8.6610192, 49.3795370 8.6581063, 49.3798059 8.6597371, 49.3792401 8.6598122, 49.3804730 8.6601073, 49.3801901 8.6604720, 49.3796487 8.6610246, 49.3795160 8.6605418, 49.3795894 8.6619580, 49.3807209 8.6618131, 49.3801132 8.6616093, 49.3795230 8.6627787, 49.3801028 8.6625749, 49.3796417 8.6635834, 49.3784822 8.6603540, 49.3775043 8.6608422, 49.3777802 8.6610729, 49.3780212 8.6580956, 49.3779025 8.6585408, 49.3791703 8.6621135, 49.3783041 8.6590505, 49.3783286 8.6593133, 49.3779653 8.6601663, 49.3776650 8.6619633, 49.3776370 8.6626393, 49.3778221 8.6641359, 49.3785207 8.6611533, 49.3781400 8.6620224, 49.3785905 8.6627573, 49.3791772 8.6634976, 49.3785276 8.6638141, 49.3775183 8.6633313, 49.3890775 8.6743283, 49.3879112 8.6741567, 49.3890077 8.6744785, 49.3861024 8.6739850, 49.3859278 8.6730623, 49.3894895 8.6712599, 49.3899504 8.6748862, 49.3907256 8.6738777, 49.3868287 8.6733413, 49.3854703 8.6758572, 49.3863608 8.6746556, 49.3867414 8.6739153, 49.3860780 8.6755782, 49.3850164 8.6728317, 49.3861792 8.6759537, 49.3859522 8.6747789, 49.3848348 8.6741352, 49.3798583 8.6716944, 49.3775881 8.6725098, 49.3848837 8.6737061, 49.3825649 8.6742479, 49.3847684 8.6746126, 49.3846113 8.6746180, 49.3847545 8.6748540, 49.3846567 8.6759001, 49.3816150 8.6754012, 49.3810213 8.6752939, 49.3826452 8.6755139, 49.3840525 8.6725634, 49.3839722 8.6744893, 49.3836894 8.6734968, 49.3826801 8.6718231, 49.3825160 8.6731589, 49.3824915 8.6740816, 49.3790899 8.6707878, 49.3834728 8.6744034, 49.3820585 8.6741889, 49.3828652 8.6720994, 49.3826696 8.6720002, 49.3826172 8.6726305, 49.3824112 8.6750311, 49.3824776 8.6741889, 49.3813041 8.6714369, 49.3819747 8.6715657, 49.3820305 8.6729980, 49.3813216 8.6727619, 49.3812692 8.6721987, 49.3822226 8.6755139, 49.3803088 8.6736631, 49.3795579 8.6711097, 49.3787372 8.6699885, 49.3811819 8.6740226, 49.3814543 8.6740655, 49.3804275 8.6748433, 49.3805952 8.6739314, 49.3803996 8.6738616, 49.3801202 8.6725581, 49.3802459 8.6722791, 49.3804695 8.6717373, 49.3807174 8.6711365, 49.3801726 8.6721611, 49.3810632 8.6727083, 49.3799107 8.6738294, 49.3791039 8.6727297, 49.3800154 8.6749828, 49.3794322 8.6748648, 49.3792995 8.6740762, 49.3793833 8.6752027, 49.3789398 8.6715388, 49.3799491 8.6703157, 49.3790830 8.6701924, 49.3790201 8.6692697, 49.3785067 8.6735183, 49.3778152 8.6747950, 49.3777523 8.6747468, 49.3785975 8.6748862, 49.3786184 8.6710989, 49.3787477 8.6744088, 49.3781749 8.6741996, 49.3783355 8.6729926, 49.3782412 8.6725634, 49.3781295 8.6721933, 49.3777837 8.6717480, 49.3781924 8.6705840, 49.3779374 8.6703694, 49.3777453 8.6734110, 49.3786289 8.6681432, 49.3779723 8.6685991, 49.3784333 8.6687118, 49.3780736 8.6697257, 49.3786184 8.6701494, 49.3814822 8.6687601, 49.3859208 8.6674190, 49.3853551 8.6681002, 49.3850722 8.6681700, 49.3850897 8.6689854, 49.3854040 8.6674404, 49.3859138 8.6682290, 49.3844611 8.6681163, 49.3850408 8.6700422, 49.3841154 8.6718661, 49.3847789 8.6718392, 49.3842795 8.6694092, 49.3841433 8.6712652, 49.3827150 8.6699134, 49.3837173 8.6692268, 49.3835916 8.6701924, 49.3835497 8.6711097, 49.3827604 8.6681968, 49.3820725 8.6680681, 49.3826906 8.6707985, 49.3827290 8.6691570, 49.3823029 8.6691517, 49.3811400 8.6704338, 49.3809584 8.6692375, 49.3794986 8.6676550, 49.3814299 8.6691785, 49.3817512 8.6702943, 49.3807768 8.6682129, 49.3802844 8.6674297, 49.3802529 8.6696076, 49.3801342 8.6685026, 49.3799665 8.6675048, 49.3788664 8.6679769, 49.4161106 8.7115681, 49.4156569 8.7145400, 49.4160547 8.7141967, 49.4161176 8.7163210, 49.4195794 8.7253439, 49.4180509 8.7230051, 49.4169970 8.7199152, 49.4173948 8.7218785, 49.4165643 8.7179840, 49.4159989 8.7159991, 49.4164316 8.7158060, 49.4164316 8.7158060, 49.4178904 8.7134349, 49.4187907 8.7135315, 49.4154963 8.7100124, 49.4169272 8.7151515, 49.4174297 8.7141752, 49.4178904 8.7134349, 49.4172343 8.7136924, 49.4165782 8.7146795, 49.4161245 8.7119865, 49.4156848 8.7133920, 49.4165643 8.7132311, 49.4169063 8.7117183, 49.4160827 8.7101412, 49.4165782 8.7122548, 49.4164177 8.7096798, 49.4154684 8.7120831, 49.4154196 8.7110960, 49.4152870 8.7095618, 49.4151823 8.7078774, 49.4092944 8.7139392, 49.4149798 8.7062466, 49.4147704 8.7049592, 49.4143586 8.7025988, 49.4145122 8.7035215, 49.4139957 8.7010539, 49.4136746 8.6990154, 49.4135769 8.6975992, 49.4142260 8.6971271, 49.4141911 8.6988008, 49.4145541 8.7250006, 49.4141492 8.6976421, 49.4142714 8.6989886, 49.4144563 8.6980015, 49.4142400 8.6993426, 49.4167422 8.7248665, 49.4167143 8.7240672, 49.4171191 8.7270284, 49.4149449 8.6974382, 49.4148123 8.6989403, 49.4154231 8.7015527, 49.4172238 8.7257168, 49.4166201 8.7247646, 49.4169063 8.7258267, 49.4172413 8.7274039, 49.4151997 8.7268192, 49.4149868 8.7259072, 49.4158174 8.7218517, 49.4137828 8.7241423, 49.4134303 8.7232947, 49.4127672 8.7238097, 49.4133325 8.7224740, 49.4130324 8.7211704, 49.4148682 8.7188154, 49.4148088 8.7190568, 49.4103938 8.7198159, 49.4096434 8.7192231, 49.4123239 8.7198991, 49.4114618 8.7192768, 49.4102018 8.7198615, 49.4094061 8.7162298, 49.4095073 8.7178284, 49.4091164 8.7143523, 49.4092874 8.7153715, 49.4092001 8.7148619, 49.4073258 8.7154412, 49.4068545 8.7149048, 49.4089977 8.7133116, 49.4126764 8.7142986, 49.4115456 8.7119383, 49.4118109 8.7124211, 49.4140585 8.7176675, 49.4140550 8.7175387, 49.4138212 8.7171686, 49.4138805 8.7172598, 49.4136118 8.7164658, 49.4129731 8.7145239, 49.4132732 8.7155807, 49.4133709 8.7154680, 49.4132034 8.7153769, 49.4129137 8.7156236, 49.4132732 8.7155807, 49.4122401 8.7161332, 49.4131685 8.7152213, 49.4117585 8.7119007, 49.4138700 8.7143683, 49.4123867 8.7148780, 49.4123763 8.7143469, 49.4121738 8.7133598, 49.4118109 8.7124211, 49.4113676 8.7127537, 49.4110709 8.7130219, 49.4116747 8.7118363, 49.4122367 8.7119704, 49.4122960 8.7120348, 49.4123414 8.7120241, 49.4118946 8.7117773, 49.4121145 8.7116057, 49.4133674 8.7116539, 49.4135385 8.7116566, 49.4134023 8.7125927, 49.4136152 8.7144274, 49.4134303 8.7134135, 49.4129486 8.7135905, 49.4128509 8.7136549, 49.4126590 8.7132633, 49.4125508 8.7129521, 49.4123414 8.7103987, 49.4133535 8.7110960, 49.4125228 8.7111819, 49.4131441 8.7105006, 49.4124565 8.7107098, 49.4112350 8.7068045, 49.4131964 8.7090737, 49.4122785 8.7091595, 49.4132523 8.7095833, 49.4128265 8.7095940, 49.4093537 8.7124532, 49.4128090 8.7083226, 49.4117061 8.7089986, 49.4113711 8.7105757, 49.4122611 8.7083709, 49.4131790 8.7076735, 49.4125769 8.7078425, 49.4132278 8.7082207, 49.4133151 8.7082207, 49.4121250 8.7067026, 49.4125857 8.7066114, 49.4127043 8.7059945, 49.4132209 8.7066704, 49.4122052 8.7078559, 49.4132366 8.7071639, 49.4120517 8.7062627, 49.4130952 8.7059408, 49.4118004 8.7061501, 49.4116503 8.7066919, 49.4106486 8.7070191, 49.4106975 8.7069413, 49.4102996 8.7072042, 49.4109959 8.7108064, 49.4098563 8.7074134, 49.4112524 8.7076843, 49.4112105 8.7073678, 49.4106887 8.7074563, 49.4102350 8.7085345, 49.4103258 8.7087384, 49.4117306 8.7085667, 49.4112228 8.7090468, 49.4113240 8.7085319, 49.4111931 8.7086499, 49.4112577 8.7113079, 49.4107341 8.7099937, 49.4108702 8.7103397, 49.4092944 8.7068528, 49.4113187 8.7098569, 49.4113292 8.7100822, 49.4118074 8.7100232, 49.4118807 8.7109083, 49.4115351 8.7111282, 49.4118423 8.7104899, 49.4115002 8.7112087, 49.4100343 8.7082905, 49.4101949 8.7093902, 49.4105596 8.7110612, 49.4104776 8.7108546, 49.4103659 8.7101465, 49.4106312 8.7115037, 49.4107149 8.7112409, 49.4109139 8.7125283, 49.4096120 8.7090844, 49.4104811 8.7129414, 49.4100937 8.7131184, 49.4102647 8.7105596, 49.4089418 8.7078559, 49.4088685 8.7049538, 49.4087638 8.7068206, 49.4088581 8.7061608, 49.4087603 8.7049806, 49.4072943 8.7082797, 49.4090710 8.7098354, 49.4091513 8.7102914, 49.4093991 8.7117237, 49.4074270 8.7076682, 49.4083205 8.7068635, 49.4067603 8.7080383, 49.4069662 8.7086874, 49.4084776 8.7092239, 49.4064461 8.7091756, 49.4071198 8.7090844, 49.4068929 8.7096530, 49.4060796 8.7099320, 49.4085788 8.7103343, 49.4079610 8.7083977, 49.4090326 8.7088859, 49.4096364 8.7110585, 49.4090500 8.7093312, 49.4093712 8.7099373, 49.4093991 8.7117237, 49.4099261 8.7120509, 49.4088860 8.7124425, 49.4092909 8.7111658, 49.4092909 8.7111658, 49.4090570 8.7110907, 49.4097830 8.7123084, 49.4093677 8.7121582, 49.4099191 8.7136978, 49.4081774 8.6975348, 49.4093781 8.7121099, 49.4088232 8.7043583, 49.4083066 8.6983073, 49.4090116 8.7018156, 49.4089453 8.7028348, 49.4086731 8.7031192, 49.4083834 8.6986560, 49.4083345 8.6987579, 49.4084008 8.6992782, 49.4080657 8.6998630, 49.4086940 8.7005174, 49.4084392 8.7013918, 49.4085614 8.6996537, 49.4082996 8.7006569, 49.4088162 8.7017995, 49.4087464 8.7015688, 49.4087568 8.7026042, 49.4093467 8.6999756, 49.4088022 8.7029421, 49.4087952 8.7039828, 49.4088406 8.7036288, 49.4089698 8.7042296, 49.4090605 8.7054634, 49.4100937 8.7011075, 49.4089418 8.6970896, 49.4103624 8.6976528, 49.4096434 8.6979157, 49.4090815 8.6981785, 49.4091827 8.6987364, 49.4102193 8.7019390, 49.4094165 8.7013811, 49.4094165 8.7013811, 49.4098458 8.7000024, 49.4103799 8.6997771, 49.4107219 8.6996698, 49.4099855 8.7004960, 49.4102577 8.7028885, 49.4106870 8.7039024, 49.4111617 8.7025720, 49.4095457 8.7031192, 49.4110430 8.7017673, 49.4107568 8.7027168, 49.4095003 8.7042081, 49.4103310 8.7051415, 49.4096085 8.7063432, 49.4094444 8.7024164, 49.4101006 8.7040633, 49.4113292 8.7037361, 49.4114165 8.7046319, 49.4095212 8.7065792, 49.4109941 8.7058336, 49.4116084 8.7050825, 49.4123553 8.7049913, 49.4096015 8.7055224, 49.4103345 8.7060803, 49.4115561 8.7056082, 49.4116852 8.7054849, 49.4123204 8.7053561, 49.4131650 8.7054151, 49.4130708 8.7045139, 49.4127637 8.7036663, 49.4120238 8.7000185, 49.4116084 8.6993802, 49.4115700 8.7051710, 49.4124426 8.7022448, 49.4116573 8.7022287, 49.4116782 8.7004369, 49.4121703 8.7007642, 49.4110779 8.7014508, 49.4111327 8.7012706, 49.4110360 8.7006676, 49.4120133 8.6997074, 49.4119574 8.6987740, 49.4109313 8.7003726, 49.4106800 8.6989135, 49.4120447 8.6981678, 49.4118248 8.6982644, 49.4111338 8.6974007, 49.4105491 8.6974463, 49.4120307 8.6973256, 49.4118178 8.6966872, 49.4117410 8.6973900, 49.4104950 8.6978781, 49.4020932 8.6734647, 49.4012729 8.6724776, 49.4032522 8.6716622, 49.4028856 8.6720645, 49.4050813 8.6680841, 49.4051023 8.6693984, 49.4045752 8.6700475, 49.4036850 8.6710882, 49.4041493 8.6705357, 49.4022084 8.6729282, 49.4018000 8.6728263, 49.4017022 8.6742371, 49.4004664 8.6765599, 49.4001906 8.6770910, 49.4005782 8.6720109, 49.4017162 8.6733037, 49.4012729 8.6751813, 49.4010808 8.6759269, 49.4016185 8.6727780, 49.3996530 8.6701334, 49.3995832 8.6713350, 49.4002535 8.6701387, 49.4009063 8.6688727, 49.4015661 8.6669147, 49.4021002 8.6660671, 49.4014055 8.6679929, 49.3991084 8.6716622, 49.4022852 8.6662656, 49.3980960 8.6736953, 49.3967344 8.6708951, 49.3988117 8.6726117, 49.3966367 8.6710829, 49.3973698 8.6724669, 49.3934875 8.6735827, 49.3967414 8.6698812, 49.3964167 8.6671829, 49.3955998 8.6694360, 49.4000405 8.6776757, 49.3994750 8.6767209, 49.3980506 8.6676657, 49.3961723 8.6702514, 49.3951040 8.6677247, 49.3944022 8.6680198, 49.3942521 8.6682987, 49.3936725 8.6722040, 49.3939099 8.6704713, 49.3931627 8.6759269, 49.3914554 8.6677086, 49.3919931 8.6683148, 49.3916544 8.6715817, 49.3919337 8.6699617, 49.3913611 8.6733896, 49.3915287 8.6727297, 49.3912005 8.6750633, 49.3915950 8.6754441, 49.3922899 8.6757392, 49.3932535 8.6762917, 49.3930301 8.6760128, 49.3930755 8.6768550, 49.3936131 8.6765116, 49.3941788 8.6768228, 49.3942137 8.6780834, 49.3959175 8.6774504, 49.3953554 8.6774290, 49.4002221 8.6780995, 49.3996251 8.6765331, 49.3990526 8.6756480, 49.4003128 8.6782175, 49.3996879 8.6778367, 49.3985498 8.6745322, 49.3965878 8.6763239, 49.3972546 8.6752242, 49.3969230 8.6757767, 49.3957569 8.6777508, 49.3961793 8.6813611, 49.3988710 8.6811572, 49.3983927 8.6818814, 49.3987593 8.6813772, 49.3982775 8.6819512, 49.3978656 8.6793655, 49.3988536 8.6785609, 49.3983229 8.6768603, 49.3999847 8.6789471, 49.3997333 8.6796337, 49.4026657 8.6951745, 49.3981972 8.6850947, 49.3973628 8.6842364, 49.3981100 8.6806530, 49.3972965 8.6785501, 49.3968985 8.6792529, 49.3978411 8.6776489, 49.3969928 8.6790758, 49.3962736 8.6783195, 49.3972651 8.6841935, 49.3954426 8.6812699, 49.3952925 8.6788881, 49.3949818 8.6800951, 49.3949783 8.6813021, 49.3960327 8.6813235, 49.3966681 8.6843759, 49.3936742 8.6860093, 49.3928625 8.6890000, 49.3963015 8.6834800, 49.3962945 8.6802614, 49.3971673 8.6805135, 49.3967100 8.6827129, 49.3972721 8.6812216, 49.3966402 8.6796767, 49.3971708 8.6813074, 49.3972232 8.6823696, 49.3972546 8.6828738, 49.3973175 8.6826003, 49.3975130 8.6827022, 49.3980262 8.6822516, 49.3972616 8.6849982, 49.3967205 8.6852556, 49.3983369 8.6842954, 49.3974152 8.6852717, 49.3973733 8.6855561, 49.3942521 8.6888766, 49.3936271 8.6879352, 49.3949800 8.6877957, 49.3981030 8.6855078, 49.3975863 8.6841130, 49.3975200 8.6855507, 49.3967519 8.6855829, 49.3955788 8.6857009, 49.3952890 8.6847246, 49.3962107 8.6856794, 49.3972930 8.6894774, 49.3964726 8.6896491, 49.3982531 8.6893058, 49.3956067 8.6899763, 49.3948561 8.6898583, 49.3936934 8.6901051, 49.3942434 8.6859852, 49.3943778 8.6869830, 49.3952768 8.6877233, 49.3937022 8.6900353, 49.3936428 8.6889142, 49.3940635 8.6888900, 49.3935904 8.6872673, 49.3935555 8.6865538, 49.3943603 8.6860174, 49.3943463 8.6854005, 49.3943463 8.6878493, 49.3948718 8.6860174, 49.3950202 8.6869186, 49.3936742 8.6848354, 49.3939012 8.6854675, 49.3956120 8.6877286, 49.3959227 8.6873800, 49.3956102 8.6868221, 49.3935049 8.6855078, 49.3934578 8.6846468, 49.3942032 8.6914891, 49.3941892 8.6907971, 49.3926984 8.6902070, 49.3945628 8.6916715, 49.3937179 8.6922455, 49.3931139 8.6925083, 49.3912598 8.6881632, 49.3912598 8.6860067, 49.3934735 8.6901212, 49.3939832 8.6921436, 49.3943603 8.6921382, 49.3936306 8.6914784, 49.3913017 8.6873049, 49.3933094 8.6914676, 49.3920489 8.6902016, 49.3922899 8.6916071, 49.3924330 8.6926532, 49.3918813 8.6929429, 49.3929114 8.6880022, 49.3927961 8.6871922, 49.3921502 8.6880773, 49.3920070 8.6872405, 49.3919721 8.6890912, 49.3913855 8.6891556, 49.3929602 8.6858350, 49.4030986 8.6952817, 49.3999602 8.6928248, 49.3984765 8.6927336, 49.4006864 8.6934954, 49.3985429 8.6940587, 49.3995727 8.6930019, 49.4020583 8.6949760, 49.4014823 8.6946112, 49.4007841 8.6945415, 49.3997578 8.6946863, 49.3993703 8.6944985, 49.3995134 8.6926532, 49.3988396 8.6923635, 49.3957359 8.6952013, 49.3993074 8.6921060, 49.3985359 8.6931199, 49.3983823 8.6928356, 49.3976701 8.6935651, 49.3975933 8.6938387, 49.3972232 8.6943322, 49.3968357 8.6951101, 49.4000685 8.6936295, 49.3999602 8.6926800, 49.4011856 8.6934739, 49.4017337 8.6936188, 49.4051197 8.6914301, 49.4050115 8.6922401, 49.4034232 8.6931038, 49.3992481 8.6910009, 49.3996042 8.6918056, 49.3992271 8.6902714, 49.4022189 8.6926478, 49.3997438 8.6905664, 49.4002430 8.6906952, 49.4000650 8.6910760, 49.4000510 8.6918271, 49.4002291 8.6910921, 49.4004315 8.6908239, 49.4010739 8.6911243, 49.4008714 8.6920953, 49.4014369 8.6921972, 49.4018244 8.6914247, 49.4037304 8.6931306, 49.4030323 8.6919075, 49.4025610 8.6917037, 49.4029485 8.6929375, 49.4039992 8.6922294, 49.4045682 8.6923742, 49.4045926 8.6934739, 49.4048021 8.6934954, 49.4051162 8.6925405, 49.4048370 8.6935812, 49.4052105 8.6907274, 49.4044844 8.6922562, 49.4022922 8.6897081, 49.4041284 8.6904216, 49.4046938 8.6905396, 49.4033255 8.6901534, 49.4032277 8.6909044, 49.4031370 8.6917520, 49.4025470 8.6915910, 49.4009552 8.6909097, 49.3988920 8.6894345, 49.4019152 8.6895847, 49.4016673 8.6911029, 49.4017721 8.6902982, 49.4012135 8.6894453, 49.4010250 8.6904538, 49.4005712 8.6891180, 49.4003059 8.6906040, 49.3996042 8.6903787, 49.4000336 8.6889195, 49.3992900 8.6899710, 49.3987838 8.6891770, 49.3991713 8.6885440, 49.3993493 8.6886996, 49.3988396 8.6865431, 49.3989723 8.6844188, 49.4017616 8.6815220, 49.3990910 8.6882597, 49.4004804 8.6865270, 49.4004595 8.6868489, 49.4005083 8.6872619, 49.3996775 8.6879057, 49.4004699 8.6868328, 49.3989688 8.6878252, 49.3990177 8.6871600, 49.4002011 8.6859477, 49.3999777 8.6851001, 49.4007736 8.6817795, 49.3993912 8.6836410, 49.3987942 8.6853522, 49.3989443 8.6865270, 49.3987977 8.6849982, 49.3994540 8.6866450, 49.4001034 8.6865914, 49.4004839 8.6857438, 49.3992376 8.6851913, 49.3994575 8.6850250, 49.4001034 8.6824554, 49.3995832 8.6831689, 49.3992271 8.6837643, 49.4002675 8.6824822, 49.4003233 8.6829007, 49.4003303 8.6840218, 49.4012449 8.6812216, 49.4004001 8.6849016, 49.4003861 8.6822408, 49.4017162 8.6806422, 49.4005991 8.6828524, 49.4043518 8.6846548, 49.4011995 8.6827397, 49.4010390 8.6837590, 49.4018000 8.6825413, 49.4019291 8.6878037, 49.4026902 8.6877394, 49.4018139 8.6828524, 49.4014718 8.6852127, 49.4015975 8.6837053, 49.4018907 8.6849284, 49.4016359 8.6845744, 49.4015521 8.6853951, 49.4013915 8.6849767, 49.4017232 8.6858618, 49.4019361 8.6858833, 49.4010390 8.6860174, 49.4011716 8.6871976, 49.4017581 8.6866772, 49.4019012 8.6886942, 49.4018768 8.6871225, 49.4020827 8.6805135, 49.4032906 8.6825842, 49.4031614 8.6816239, 49.4026134 8.6827666, 49.4033290 8.6836839, 49.4032836 8.6828148, 49.4033848 8.6846602, 49.4027844 8.6848319, 49.4034511 8.6847407, 49.4034616 8.6870313, 49.4026692 8.6857653, 49.4034232 8.6859637, 49.4046171 8.6896384, 49.4053326 8.6899388, 49.4043308 8.6890054, 49.4044460 8.6870795, 49.4047078 8.6871547, 49.4054408 8.6872995, 49.4028926 8.6871171, 49.4027285 8.6869347, 49.4020618 8.6884367, 49.4034861 8.6887318, 49.4027111 8.6885655, 49.4033743 8.6887103, 49.4034721 8.6880291, 49.4043692 8.6887747, 49.4042470 8.6896598, 49.4049312 8.6890161, 49.4051023 8.6852610, 49.4043587 8.6846280, 49.4044041 8.6879539, 49.4052454 8.6862159, 49.4046555 8.6807227, 49.4053012 8.6865699, 49.4044041 8.6857921, 49.4041109 8.6871332, 49.4044146 8.6833245, 49.4049731 8.6845958, 49.4038142 8.6825520, 49.4048300 8.6819136, 49.4022328 8.6802399, 49.4026029 8.6792850, 49.4029066 8.6808890, 49.4033988 8.6812377, 49.4034895 8.6815006, 49.4039329 8.6821014, 49.4046031 8.6831635, 49.4051057 8.6837858, 49.4049626 8.6827022, 49.4046589 8.6775845, 49.4033778 8.6781263, 49.4040550 8.6801165, 49.4042959 8.6773646, 49.4042156 8.6765867, 49.4052908 8.6813450, 49.4038002 8.6806208, 49.4044076 8.6794353, 49.4043029 8.6787915, 49.4039817 8.6775845, 49.4030706 8.6787164, 49.4039259 8.6771768, 49.4041668 8.6779976, 49.4028193 8.6798054, 49.4051372 8.6750633, 49.4052803 8.6743176, 49.4052070 8.6768174, 49.4047706 8.6779869, 49.4048823 8.6790383, 49.4050010 8.6798161, 49.4051651 8.6806583, 49.4097132 8.6935598, 49.4118632 8.6962098, 49.4115805 8.6940587, 49.4112943 8.6930609, 49.4109627 8.6931145, 49.4116398 8.6947131, 49.4118039 8.6958182, 49.4103205 8.6933666, 49.4079261 8.6957753, 49.4114479 8.6945790, 49.4106940 8.6946809, 49.4105648 8.6932594, 49.4088127 8.6947024, 49.4097097 8.6940050, 49.4101565 8.6947292, 49.4100343 8.6951476, 49.4100099 8.6945790, 49.4101530 8.6957270, 49.4083136 8.6940104, 49.4088511 8.6941123, 49.4090815 8.6940962, 49.4086556 8.6939621, 49.4088057 8.6937046, 49.4091687 8.6935169, 49.4093537 8.6936992, 49.4092106 8.6933988, 49.4092315 8.6954480, 49.4096748 8.6952978, 49.4089174 8.6963171, 49.4087917 8.6954427, 49.4082612 8.6956465, 49.4079052 8.6967784, 49.4058807 8.6900139, 49.4075177 8.6955553, 49.4060831 8.6911082, 49.4077900 8.6943698, 49.4079017 8.6941391, 49.4067708 8.6948526, 49.4068371 8.6940801, 49.4067219 8.6902660, 49.4064985 8.6890376, 49.4055037 8.6890966, 49.4057376 8.6889142, 49.4067533 8.6928463, 49.4060063 8.6940855, 49.4067987 8.6931950, 49.4055840 8.6880612, 49.4061250 8.6929804, 49.4059191 8.6939782, 49.4058388 8.6927122, 49.4062856 8.6927444, 49.4062751 8.6921918, 49.4063344 8.6924601, 49.4063728 8.6921757, 49.4074305 8.6928141, 49.4069034 8.6913550, 49.4065648 8.6894238, 49.4058074 8.6895096, 49.4059575 8.6891019, 49.4063868 8.6885065, 49.4060552 8.6866879, 49.4055944 8.6830831, 49.4058702 8.6842686, 49.4062227 8.6875838, 49.4055002 8.6851376, 49.4051965 8.6841345, 49.4054478 8.6823159, 49.4074479 8.6930931, 49.4073153 8.6925620, 49.4070500 8.6924842, 49.4079436 8.6903411, 49.4076085 8.6942196, 49.4074235 8.6924601, 49.4079471 8.6927283, 49.4081705 8.6923850, 49.4081705 8.6923850, 49.4082088 8.6919987, 49.4072734 8.6918700, 49.4069383 8.6896062, 49.4073188 8.6894667, 49.4071006 8.6909124, 49.4069488 8.6901212, 49.4075701 8.6893487, 49.4077027 8.6892951, 49.4080972 8.6912155, 49.4063344 8.6866933, 49.4066695 8.6886781, 49.4063170 8.6844242, 49.4070710 8.6866236, 49.4068127 8.6843973, 49.4073362 8.6844027, 49.4072141 8.6872458, 49.4074793 8.6853629, 49.4076434 8.6890966, 49.4076015 8.6861837, 49.4074305 8.6881524, 49.4100221 8.6925218, 49.4089296 8.6920953, 49.4094183 8.6927497, 49.4094776 8.6919022, 49.4089017 8.6926156, 49.4098720 8.6926425, 49.4100849 8.6917251, 49.4092769 8.6924896, 49.4090640 8.6918083, 49.4096818 8.6912692, 49.4090134 8.6914998, 49.4089314 8.6918995, 49.4089122 8.6910197, 49.4087691 8.6910573, 49.4087848 8.6903197, 49.4086242 8.6899978, 49.4087254 8.6899441, 49.4110116 8.6919773, 49.4108092 8.6897939, 49.4106242 8.6889035, 49.4109941 8.6906093, 49.4111896 8.6918646, 49.4082228 8.6868221, 49.4079506 8.6859503, 49.4080413 8.6858377, 49.4110465 8.6913925, 49.4102542 8.6868864, 49.4104252 8.6879218, 49.4102542 8.6868864, 49.4102542 8.6868864, 49.4083450 8.6874712, 49.4081076 8.6870849, 49.4084532 8.6890697, 49.4085369 8.6885923, 49.4084008 8.6878574, 49.4082612 8.6879218, 49.4093677 8.6874604, 49.4094235 8.6896598, 49.4095841 8.6887801, 49.4077848 8.6848265, 49.4079680 8.6861059, 49.4077376 8.6843893, 49.4079436 8.6849767, 49.4075509 8.6841398, 49.4083048 8.6829409, 49.4084846 8.6829060, 49.4088354 8.6828175, 49.4077603 8.6839628, 49.4078685 8.6835954, 49.4101687 8.6863929, 49.4096294 8.6835444, 49.4099156 8.6848775, 49.4078389 8.6790973, 49.4088057 8.6790651, 49.4079610 8.6778796, 49.4086905 8.6768979, 49.4078912 8.6822730, 49.4079226 8.6813182, 49.4087952 8.6812109, 49.4088406 8.6773431, 49.4087673 8.6822945, 49.4079157 8.6811250, 49.4077900 8.6825144, 49.4078773 8.6828470, 49.4078319 8.6779815, 49.4095387 8.6769193, 49.4079436 8.6791456, 49.4080483 8.6790061, 49.4079226 8.6813182, 49.4078179 8.6813235, 49.4088057 8.6800522, 49.4079575 8.6804760, 49.4078284 8.6802775, 49.4080483 8.6790061, 49.4079959 8.6769247, 49.4078458 8.6769730, 49.4086905 8.6768979, 49.4081670 8.6768818, 49.4088860 8.6768764, 49.4065753 8.6827666, 49.4063833 8.6803848, 49.4062995 8.6791509, 49.4065439 8.6822569, 49.4065055 8.6815435, 49.4064566 8.6811036, 49.4065438 8.6810955, 49.4071512 8.6810393, 49.4068406 8.6833888, 49.4064706 8.6814523, 49.4070360 8.6790276, 49.4062402 8.6790597, 49.4062001 8.6783919, 49.4062646 8.6782604, 49.4061110 8.6773270, 49.4078074 8.6731482, 49.4073851 8.6768121, 49.4077935 8.6755997, 49.4078179 8.6766565, 49.4077691 8.6746931, 49.4070221 8.6747923, 49.4078354 8.6736685, 49.4070186 8.6769515, 49.4077691 8.6745375, 49.4075631 8.6769515, 49.4068022 8.6768228, 49.4060657 8.6762542, 49.4064810 8.6769837, 49.4060761 8.6756212, 49.4060308 8.6745912, 49.4060761 8.6744839, 49.4060517 8.6741030, 49.4060133 8.6738616, 49.4060587 8.6728638, 49.3905301 8.6882651, 49.3905859 8.6860549, 49.3905510 8.6892414, 49.3897619 8.6874282, 49.3891054 8.6862051, 49.3878903 8.6863661, 49.3897270 8.6887693, 49.3892940 8.6875033, 49.3868148 8.6906469, 49.3898632 8.6917895, 49.3904253 8.6874068, 49.3897689 8.6892736, 49.3868287 8.6886621, 49.3868776 8.6890268, 49.3897759 8.6896920, 49.3868427 8.6867845, 49.3887563 8.6875784, 49.3880788 8.6891663, 49.3879392 8.6876535, 49.3869265 8.6877179, 49.3875830 8.6876643, 49.3890286 8.6893380, 49.3902472 8.6916929, 49.3886480 8.6806905, 49.3880719 8.6900032, 49.3880928 8.6903250, 49.3875970 8.6890912, 49.3878693 8.6883509, 49.3867938 8.6919129, 49.3883756 8.6904484, 49.3868287 8.6903465, 49.3868148 8.6902070, 49.3867833 8.6916554, 49.3867868 8.6926371, 49.3875376 8.6904913, 49.3867833 8.6921757, 49.3883268 8.6916018, 49.3887388 8.6917734, 49.3888889 8.6931199, 49.3872757 8.6917734, 49.3881976 8.6917573, 49.3877890 8.6917466, 49.3876004 8.6927015, 49.3894214 8.6903840, 49.3892905 8.6903465, 49.3893219 8.6918217, 49.3893115 8.6904323, 49.3892870 8.6930019, 49.3895629 8.6934578, 49.3900098 8.6928838, 49.3902088 8.6903518, 49.3909176 8.6902499, 49.3897689 8.6902928, 49.3904393 8.6927819, 49.3902333 8.6911833, 49.3911725 8.6911243, 49.3912354 8.6903250, 49.3911481 8.6917627, 49.3911237 8.6931735, 49.3886096 8.6957109, 49.3885677 8.6957109, 49.3879985 8.6806530, 49.3874328 8.6804599, 49.3872897 8.6806208, 49.3847684 8.6805832, 49.3844960 8.6806047, 49.3860535 8.6788130, 49.3874922 8.6797893, 49.3871709 8.6792207, 49.3867310 8.6790705, 49.3855157 8.6793923, 49.3869544 8.6806154, 49.3852015 8.6799610, 49.3864097 8.6806262, 49.3857741 8.6806262, 49.3841957 8.6806047, 49.3841468 8.6813343, 49.3850408 8.6806154, 49.3854738 8.6806262, 49.3854529 8.6879861, 49.3860954 8.6890805, 49.3859976 8.6927068, 49.3840630 8.6821818, 49.3839163 8.6870098, 49.3840002 8.6864948, 49.3865913 8.6863875, 49.3839163 8.6867738, 49.3857322 8.6865699, 49.3848243 8.6866236, 49.3839722 8.6848211, 49.3838465 8.6878359, 49.3848383 8.6879003, 49.3844472 8.6903679, 49.3862491 8.6884582, 49.3855367 8.6884797, 49.3840770 8.6879861, 49.3858510 8.6878467, 49.3863608 8.6877501, 49.3854599 8.6890805, 49.3860814 8.6897349, 49.3861024 8.6903894, 49.3854319 8.6918056, 49.3860465 8.6919236, 49.3854599 8.6905825, 49.3845659 8.6927068, 49.3854599 8.6926854, 49.3854529 8.6904109, 49.3847056 8.6919665, 49.3837313 8.6908078, 49.3843913 8.6905503, 49.3838605 8.6891556, 49.3846043 8.6891448, 49.3837871 8.6890215, 49.3837557 8.6903733, 49.3837627 8.6904913, 49.3837732 8.6919236, 49.3839757 8.6930931, 49.3838640 8.6938763, 49.3840386 8.6928517, 49.3823728 8.6932862, 49.3828757 8.6931467, 49.3828338 8.6920953, 49.3833506 8.6929965, 49.3820725 8.6913872, 49.3821563 8.6934149, 49.3828338 8.6923742, 49.3819118 8.6927068, 49.3819537 8.6902499, 49.3828268 8.6910546, 49.3828198 8.6909044, 49.3823937 8.6912370, 49.3819537 8.6912048, 49.3814159 8.6897242, 49.3818891 8.6931843, 49.3797430 8.6922777, 49.3793519 8.6919129, 49.3793030 8.6928999, 49.3813111 8.6932379, 49.3787232 8.6934525, 49.3803298 8.6933184, 49.3795160 8.6933774, 49.3804625 8.6915320, 49.3795614 8.6914140, 49.3811190 8.6924118, 49.3806476 8.6923903, 49.3805358 8.6923850, 49.3802844 8.6923420, 49.3790830 8.6917734, 49.3793833 8.6911780, 49.3798286 8.6910787, 49.3799875 8.6901265, 49.3809497 8.6893246, 49.3798967 8.6901158, 49.3800678 8.6900675, 49.3805149 8.6900568, 49.3805358 8.6893541, 49.3804904 8.6917412, 49.3805114 8.6910760, 49.3806109 8.6900353, 49.3811924 8.6917627, 49.3806266 8.6883134, 49.3785905 8.6935437, 49.3798548 8.6887693, 49.3799177 8.6883670, 49.3800958 8.6875570, 49.3789712 8.6918539, 49.3785765 8.6929053, 49.3785556 8.6933666, 49.3782709 8.6944047, 49.3789433 8.6917251, 49.3795579 8.6898744, 49.3790760 8.6916447, 49.3802774 8.6877018, 49.3786167 8.6925727, 49.3779601 8.6947265, 49.3780038 8.6917949, 49.3786254 8.6910546, 49.3778501 8.6935759, 49.3778047 8.6953032, 49.3781050 8.6922348, 49.3786778 8.6894667, 49.3786359 8.6887854, 49.3779409 8.6943483, 49.3781400 8.6936831, 49.3779514 8.6930609, 49.3779479 8.6927497, 49.3786464 8.6905235, 49.3787512 8.6877823, 49.3833122 8.6891448, 49.3828582 8.6903411, 49.3829211 8.6891395, 49.3834013 8.6868730, 49.3837295 8.6879808, 49.3829752 8.6870366, 49.3818210 8.6871171, 49.3813216 8.6883831, 49.3809409 8.6874121, 49.3828931 8.6880559, 49.3827046 8.6880827, 49.3817651 8.6890697, 49.3822086 8.6870527, 49.3819328 8.6881793, 49.3826172 8.6870152, 49.3813600 8.6871761, 49.3811121 8.6872029, 49.3810387 8.6891019, 49.3821632 8.6833191, 49.3832668 8.6836731, 49.3797308 8.6832628, 49.3827080 8.6837268, 49.3821982 8.6825788, 49.3819817 8.6869347, 49.3813111 8.6840057, 49.3809427 8.6871439, 49.3807523 8.6845207, 49.3815346 8.6837697, 49.3812762 8.6849821, 49.3820305 8.6861730, 49.3822750 8.6837590, 49.3820864 8.6854541, 49.3816813 8.6863983, 49.3812483 8.6853683, 49.3811435 8.6859369, 49.3806965 8.6854112, 49.3803472 8.6872351, 49.3803769 8.6838180, 49.3796295 8.6823696, 49.3810073 8.6825439, 49.3808431 8.6838958, 49.3798496 8.6842686, 49.3799840 8.6859396, 49.3800381 8.6861247, 49.3792681 8.6873049, 49.3796487 8.6828738, 49.3797413 8.6836785, 49.3796854 8.6830884, 49.3798251 8.6839655, 49.3798565 8.6848104, 49.3799508 8.6852932, 49.3801447 8.6872190, 49.3792855 8.6856472, 49.3798478 8.6854917, 49.3786778 8.6855775, 49.3792157 8.6855775, 49.3792750 8.6873960, 49.3782797 8.6839253, 49.3782797 8.6839253, 49.3785346 8.6837858, 49.3786324 8.6846441, 49.3786918 8.6838931, 49.3778256 8.6875355, 49.3786080 8.6874336, 49.3787462 8.6873028, 49.3779933 8.6848372, 49.3780038 8.6873370, 49.3780038 8.6840165, 49.3792296 8.6846656, 49.3786010 8.6838931, 49.3790306 8.6836892, 49.3793100 8.6822194, 49.3790795 8.6838609, 49.3781295 8.6773592, 49.3784403 8.6820906, 49.3789677 8.6828256, 49.3784927 8.6830348, 49.3785270 8.6823260, 49.3794671 8.6806744, 49.3795300 8.6821979, 49.3795405 8.6813396, 49.3794776 8.6795050, 49.3792122 8.6806154, 49.3794741 8.6786199, 49.3789048 8.6815006, 49.3788804 8.6807495, 49.3794636 8.6779761, 49.3784892 8.6806583, 49.3783949 8.6804223, 49.3794881 8.6793172, 49.3783460 8.6785233, 49.3783565 8.6795264, 49.3794601 8.6775792, 49.3788175 8.6759698, 49.3794462 8.6764097, 49.3794252 8.6756963, 49.3788769 8.6774933, 49.3786150 8.6774021, 49.3786289 8.6755675, 49.3786534 8.6764634, 49.3782063 8.6764258, 49.3782797 8.6755192, 49.3826888 8.6819297, 49.3828181 8.6807254, 49.3829263 8.6822033, 49.3819083 8.6792314, 49.3810492 8.6822087, 49.3811435 8.6778742, 49.3821528 8.6822087, 49.3826941 8.6790973, 49.3819677 8.6778903, 49.3825718 8.6781371, 49.3822401 8.6821872, 49.3818699 8.6806315, 49.3804450 8.6758894, 49.3810876 8.6806315, 49.3803542 8.6793172, 49.3803367 8.6805242, 49.3803053 8.6822194, 49.3804101 8.6780834, 49.3811610 8.6793172, 49.3796505 8.6821926, 49.4115491 8.6768603, 49.4123797 8.6764634, 49.4126974 8.6785072, 49.4147669 8.6762971, 49.4153986 8.6763185, 49.3816377 8.6587179 +1786 +yes +steak house, italian, chinese, sudanese, indian, thai, spanish, japanese, regional, cantonese, pie, american, seafood, pizza, french, greek, vegetarian, Japanese, mexican, mongolian, kurdish, Lebanese, middle eastern, noodle, asian, turkish, Cantonese, Malaysian, korean, brazilian, fish, international, sushi, burger, arab, vietnamese, scottish, latin american, caribbean, chicken, african, tapas, malaysian, Scotish, Punjabi, british, portuguese, soup, mediterranean, Middle Eastern, fish and chips, nepali, nepalese, sandwich, kebab, curry, coffee shop +0 +Heidelberg +no +49.4091649 8.6726851, 49.4093508 8.6801567, 49.4092005 8.6801515, 49.4096416 8.6803947, 49.4180684 8.6889644, 49.4151692 8.7066598, 49.4065332 8.6919726, 49.4149496 8.7239163, 49.4205986 8.7368660, 49.3899847 8.6546401, 49.4096058 8.6805282, 49.4067729 8.6917906 +temple, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification, fortification +49.4101353 8.6927154 ++49 6221 89800 +49.4117816 8.7062296 +48.8403064 2.3155776 +48.8662200 2.3249104, 48.8650379 2.3286066, 48.8525775 2.3471111, 48.8700157 2.3323221, 48.8681204 2.3330906, 48.8511629 2.3461411, 48.8505858 2.3424689, 48.8501915 2.3422706, 48.8491091 2.3761310, 48.8505493 2.3817662, 48.8501724 2.3435882, 48.8533251 2.3447071, 48.8531776 2.3444036, 48.8535396 2.3433463, 48.8574614 2.3987906, 48.8742770 2.3896380, 48.8743044 2.3892719, 48.8491809 2.3755427, 48.8254296 2.3625833, 48.8387188 2.3931980, 48.8545533 2.3063815, 48.8712165 2.3047449, 48.8529173 2.3925273, 48.8507085 2.3989753, 48.8714930 2.3827956, 48.8723464 2.3801862, 48.8382546 2.2981240, 48.8698462 2.3511474, 48.8533293 2.3537801, 48.8525744 2.3443077, 48.8509038 2.3499006, 48.8544576 2.3860329, 48.8652240 2.3226798, 48.8801560 2.3645743, 48.8803220 2.3624411, 48.8264498 2.3300888, 48.8569747 2.2789476, 48.8509994 2.2716479, 48.8367744 2.3106015, 48.8781326 2.3729131, 48.8670191 2.3734737, 48.8553246 2.3870617, 48.8472720 2.3419460, 48.8512259 2.3463004, 48.8393482 2.3496204, 48.8447885 2.3495957, 48.8662422 2.3531014, 48.8451782 2.2607665, 48.8502962 2.3467993, 48.8581704 2.3526545, 48.8380223 2.3905149, 48.8830930 2.3182419, 48.8455527 2.3122101, 48.8690440 2.3790131, 48.8458285 2.3180784, 48.8264707 2.3409799, 48.8399670 2.3932678, 48.8362897 2.3941894, 48.8750645 2.3432258, 48.8714964 2.3360288, 48.8518501 2.3734396, 48.8657672 2.2895091, 48.8613020 2.3436850, 48.8754781 2.3161670, 48.8479470 2.3518746, 48.8653166 2.3764191, 48.8343427 2.3291566, 48.8629626 2.3620980, 48.8531706 2.3753195, 48.8472217 2.3997508, 48.8352586 2.2921097, 48.8389972 2.3978830, 48.8656850 2.3648977, 48.8542021 2.3323694, 48.8432593 2.3496118, 48.8437015 2.3252275, 48.8685177 2.3700123, 48.8424552 2.3519375, 48.8417849 2.3027944, 48.8891440 2.3384231, 48.8220789 2.3422051, 48.8550650 2.3736566, 48.8314386 2.3693373, 48.8665900 2.2802703, 48.8297529 2.3232406, 48.8670640 2.3762600, 48.8843529 2.3389708, 48.8543689 2.3844927, 48.8524626 2.3344163, 48.8437952 2.2924901, 48.8647194 2.3519904, 48.8438946 2.3480265, 48.8670326 2.3442625, 48.8505064 2.3990388, 48.8578215 2.3585267, 48.8514788 2.3399912, 48.8577488 2.3574229, 48.8809778 2.3506944, 48.8913689 2.3617657, 48.8401899 2.3544829, 48.8390221 2.2602403, 48.8817199 2.3736232, 48.8756587 2.2879128, 48.8607962 2.3544296, 48.8895561 2.3758782, 48.8655527 2.3550525, 48.8484473 2.3486979, 48.8578192 2.3677027, 48.8506487 2.3394886, 48.8592808 2.2750466, 48.8536640 2.3812458, 48.8614660 2.2754877, 48.8621668 2.2760986, 48.8511985 2.3394291, 48.8691209 2.2843412, 48.8768373 2.3360674, 48.8736234 2.3521787, 48.8515290 2.3631334, 48.8238315 2.3237941, 48.8454180 2.3800124, 48.8455314 2.3807867, 48.8909365 2.3459092, 48.8946930 2.3411100, 48.8661636 2.4056122, 48.8506983 2.3768187, 48.8838523 2.3212469, 48.8423736 2.3428351, 48.8443967 2.3484123, 48.8685177 2.3885331, 48.8262892 2.3413948, 48.8270505 2.3323348, 48.8406225 2.2998537, 48.8571270 2.3979136, 48.8936044 2.3241261, 48.8198098 2.3426440, 48.8410729 2.3068009, 48.8801130 2.3288983, 48.8803277 2.3288040, 48.8662042 2.3409974, 48.8843073 2.3722714, 48.8837994 2.3268783, 48.8511798 2.3383451, 48.8340824 2.2894102, 48.8761555 2.3374709, 48.8340089 2.3599820, 48.8390780 2.3825910, 48.8353393 2.2891615, 48.8468370 2.3423807, 48.8465142 2.3433389, 48.8505990 2.3456055, 48.8465728 2.3430664, 48.8504723 2.3461960, 48.8489271 2.3424893, 48.8500519 2.3478861, 48.8430083 2.2821288, 48.8643193 2.3987773, 48.8664792 2.3830247, 48.8614107 2.3530384, 48.8634341 2.3488612, 48.8944610 2.3410230, 48.8328942 2.3612036, 48.8287768 2.3797760, 48.8260378 2.3589252, 48.8655088 2.3336403, 48.8610286 2.3506049, 48.8603680 2.3507537, 48.8430117 2.3895138, 48.8238470 2.3485801, 48.8261136 2.3448083, 48.8277194 2.3285997, 48.8319785 2.3603654, 48.8233115 2.3452510, 48.8249394 2.3621629, 48.8354021 2.2817071, 48.8779928 2.3581823, 48.8241761 2.3255140, 48.8503487 2.2919735, 48.8510260 2.3454319, 48.8302628 2.3570676, 48.8743514 2.3892317, 48.8650907 2.3663328, 48.8356500 2.3982873, 48.8871092 2.3696248, 48.8746003 2.3892694, 48.8544041 2.3263101, 48.8763280 2.3281599, 48.8475171 2.3511154, 48.8688115 2.3351558, 48.8842818 2.3240276, 48.8517905 2.3431197, 48.8521627 2.3432953, 48.8458061 2.2882640, 48.8517963 2.3444980, 48.8734347 2.3423380, 48.8597263 2.3084052, 48.8588644 2.3499502, 48.8546846 2.3623086, 48.8495810 2.3432900, 48.8785100 2.2913980, 48.8708175 2.3215271, 48.8771010 2.3264720, 48.8901988 2.3711496, 48.8927180 2.3633290, 48.8486860 2.3472380, 48.8496985 2.3391523, 48.8495401 2.3379890, 48.8596285 2.3543087, 48.8586710 2.3226860, 48.8528086 2.3367891, 48.8336859 2.3868686, 48.8793718 2.3771217, 48.8485950 2.3547820, 48.8482600 2.3542670, 48.8809912 2.3271773, 48.8849202 2.3922140, 48.8843340 2.3042300, 48.8592269 2.2848863, 48.8727028 2.3774431, 48.8844882 2.3797443, 48.8483070 2.3491750, 48.8766668 2.2631854, 48.8471227 2.3170343, 48.8551206 2.3754858, 48.8755206 2.3107673, 48.8550364 2.3537242, 48.8552629 2.3577442, 48.8629068 2.3360400, 48.8650605 2.3675907, 48.8606690 2.3649892, 48.8611982 2.3691660, 48.8484698 2.3422948, 48.8457286 2.3439757, 48.8640378 2.3714742, 48.8468603 2.3284098, 48.8453695 2.3449759, 48.8488691 2.3480343, 48.8619528 2.3839513, 48.8486058 2.3490931, 48.8515221 2.3576093, 48.8480332 2.3305556, 48.8467934 2.2930036, 48.8462338 2.3791304, 48.8706132 2.3372378, 48.8509434 2.3787103, 48.8466460 2.3540941, 48.8509721 2.3462170, 48.8649699 2.3651171, 48.8767427 2.3486323, 48.8776237 2.3510223, 48.8459804 2.3437576, 48.8471712 2.3424413, 48.8472282 2.3421851, 48.8473726 2.3415145, 48.8530863 2.3613492, 48.8768546 2.3394094, 48.8765860 2.3484202, 48.8775195 2.3505640, 48.8733140 2.3824530, 48.8529720 2.3670301, 48.8324885 2.3469599, 48.8525936 2.3699173, 48.8498754 2.3703313, 48.8643192 2.3787076, 48.8604118 2.3355806, 48.8533415 2.3431399, 48.8520773 2.3429803, 48.8457362 2.3697500, 48.8434847 2.3066562, 48.8508280 2.3491332, 48.8510464 2.3492257, 48.8343831 2.3190886, 48.8655293 2.2951989, 48.8932169 2.3262813, 48.8897514 2.3204025, 48.8880900 2.3188012, 48.8662148 2.3575540, 48.8482981 2.3490270, 48.8526768 2.3603455, 48.8501731 2.3321278, 48.8557624 2.3071037, 48.8311200 2.3020623, 48.8602139 2.3523059, 48.8753660 2.3269931, 48.8606773 2.3523377, 48.8446639 2.3749180 +yes +49.4126418 8.7016223 +55.9338797 -3.0920141, 55.9274598 -3.3076072 +55.9353820 -3.2098014 +6 +no +french +Polton, Bonnyrigg, Loanhead, Haddington, Penicuik, Musselburgh, Cockenzie and Port Seton, Gullane, Dalkeith, Prestonpans, Tranent, Gorebridge, Mayfield, Newtongrange, Eskbank, Lasswade +49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.3988716 8.6899921, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.4240406 8.6385449, 49.3851489 8.6733031, 49.3673694 8.6862886, 49.4061345 8.6593850, 49.3956761 8.6692210, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.3704305 8.7013213, 49.4296958 8.6455225, 49.3810973 8.6895578, 49.4172010 8.6768150, 49.3593333 8.6876382, 49.3810576 8.6896077 +55.9432488 -3.1817167, 55.9164464 -3.2255329, 55.9166163 -3.2225162, 55.9279913 -3.2292065, 55.9409114 -3.2097700, 55.9703622 -3.1822317, 55.9628897 -3.1944604, 55.9358839 -3.1759899, 55.9344136 -3.2126517, 55.9417000 -3.2026025, 55.9438526 -3.1964947, 55.9592575 -3.1901766, 55.9613996 -3.1820673, 55.9580853 -3.1891489, 55.9488813 -3.1834652, 55.9492101 -3.2153200, 55.9544768 -3.1997466, 55.9678361 -3.2060988, 55.9309993 -3.1942265, 55.9296483 -3.1705890, 55.9741180 -3.2117279, 55.9782570 -3.2974770, 55.9126235 -3.3200599, 55.9489685 -3.1194874, 55.9328025 -3.3133858, 55.9468668 -3.1827657, 55.9713977 -3.2133259, 55.9873483 -3.3962845, 55.9390116 -3.2052594, 55.9379190 -3.2748726, 55.9365045 -3.2061792, 55.9410176 -3.2095848, 55.9292890 -3.2059199, 55.9598760 -3.2111177, 55.9296306 -3.1686378, 55.9167292 -3.1640730, 55.9351048 -3.2071638, 55.9335197 -3.2097268, 55.9462694 -3.1973178, 55.9324830 -3.1925693, 55.9310841 -3.1608286, 55.9344536 -3.1587071, 55.9364299 -3.2061861, 55.9350584 -3.2069944, 55.9350875 -3.2070173, 55.9492741 -3.4056494, 55.9118553 -3.1422876, 55.9335280 -3.2095487, 55.9408795 -3.2097114, 55.9242811 -3.1768126, 55.9488044 -3.1194808, 55.9550446 -3.1662332, 55.9227482 -3.2166698, 55.9812556 -3.3751682, 55.9768910 -3.2298201, 55.9719283 -3.1746636, 55.9657117 -3.2328158 +55.9340640 -3.1225496 +1 +700 +Cité des Sciences et de l'Industrie, Maison de Victor Hugo, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin, Musée national d'art moderne, Musée Cernuschi, Musée d'Art Moderne de la Ville de Paris, Maison de Balzac, Musée Bourdelle, Musée Carnavalet, Petit Palais +Gedenkstein Synagoge, ehemalige Synagoge, Bunsenstatue, Johann Wolfgang Goethe, Joseph Victor von Scheffel, Dulger-Brunnen, Alfred Hettner, Albert Fritz, Dr. Alfred Baer, Dr. Maximilian Neu, Gustav Bopp, Dr. Anna Hamburger, Salomon Deutsch, Simon Hochherrr, Betty Blum, Michael 'Michel' Liebhold, Leopold Oppenheimer, Ludwig Brummer, Alice Hochherr, Anneliese Weil, Arthur Weil, Frieda Hochherr, Ilse Weil, Ingeborg Weil, Julius Weil, Amalie 'Mally' Liebhold, Bertha 'Berthel' Marx, Ella Hochherr, Heinrich 'Heinz' Hochherr, Klaus Liebhold, Leni Blumenthal, Liselotte Hochherr, Margot Hochherr, Martin Liebhold, Ruth Liebhhold, Susanne Hochherr, Adele Bock, Clara Freund, Doris Ellen Baer, Hans Dieter Baer, Heinrich Freund, Jeanette Schneider, Klara Baer, Louise Neu, Babette Oppenheimer, Hermann Durlacher, Ludwig Seligmann, Paula Deutsch, Walter Durlacher, Hermann Böning, Ludwig Snopek, Ferdinand Hochherr, Karoline Kaufmann geb. Hess, Leontine Goldschmidt, Albert Kaufmann, Alfred Flor, Betty Snopek, Erika Hochherrr, Eva Hochherr geb. Mainzer, Gerda Kaufmann geb. Fleischhacker, Jella Hochherr, Ludwig Kaufmann, Sara Snopek geb. Isaak, Dr. Johanna Geissmar, Julius Rinklin, Alfred Mombert, Jakob Geissmar, Wasilij Skorkin, Maja Bitsch, Alfred Seitz, Aleksej Bjelow, Anatolij Bachatschow, Elisabeth Geissmar geb. Hirsch, Ella Gutman geb. Mombert, Else Geissmar, Käthe Seitz geb. Brunnemer, Martha Geissmar, Nikolaj Ewdokimow, Pawel Chrebor, Familie Wertheimer, Den Toten der Kriege 1914-1918 und 1939-1945, Dokumentations- und Kulturzentrum Deutscher Sinti und Roma +yes +48.8790173 2.3543851, 48.8783323 2.3732739, 48.8882750 2.3740777, 48.8773675 2.4068219, 48.8649034 2.3999667, 48.8766834 2.4067529, 48.8358842 2.3867689, 48.8758486 2.3562046, 48.8742769 2.3568951, 48.8757672 2.3581886, 48.8648183 2.3992191 +37 +43.5871216 1.4469197 +Gustave Eiffel +yes +48.1133979 11.5580798, 48.2167392 11.5288862, 49.9606475 11.6260343, 48.1672232 11.5486553, 49.1738649 12.9413601, 49.2234454 12.6611867, 48.0529514 11.6690600, 48.0652614 11.6606034, 48.1502805 11.5678752, 49.4141881 12.4140633, 49.7934099 12.2899120, 48.1467783 11.4594849, 50.0060004 11.4141590, 48.1724381 11.5708812, 50.3759930 11.7382095, 48.1395725 11.6047921, 48.0954169 11.5566816, 48.0913305 11.6784142, 47.8527854 12.3359177, 49.2915039 11.4151762, 49.2943053 11.4096947, 50.3177512 12.1012234, 50.3176182 12.1006372, 47.6768601 11.8377311, 49.7835917 12.3094464, 48.1106870 12.1546587, 48.1128273 12.1503231, 48.5745332 13.4639931, 48.1452629 11.4616156, 49.1952695 12.5011479, 48.1101440 11.5418164, 48.1187926 11.4450399, 48.1169283 11.4307756, 48.1121499 11.6495213, 49.8692952 11.8872856, 47.8376039 11.7570497, 48.0087205 11.7329256, 48.0216058 11.7817301, 48.4036435 11.9891592, 48.5330823 12.1608939, 47.9110333 11.6747920, 48.5335696 12.1598458, 47.8282218 12.9077877, 48.0481989 11.7018359, 48.0771504 11.7151918, 48.0772113 11.7150714, 48.1436359 11.5777273, 48.1433386 11.5761135, 48.7136659 13.2701615, 48.1144089 11.7961741, 48.0597535 11.6211298, 48.0672747 11.6620874, 48.3649975 11.4598175, 49.4491408 11.8705906, 47.9837849 11.7003225, 48.0199151 11.7286030, 49.6241375 12.2242896, 48.1439897 11.5890544, 48.1504174 11.5926415, 48.1425164 11.5819824, 48.1413020 11.5773712, 50.0606042 11.8190607, 48.7256870 13.6028288, 48.7279362 13.6020419, 48.1708444 11.5561051, 48.7365394 13.5593114, 48.7345934 13.5963213, 48.7364847 13.5964511, 48.7382158 13.6078165, 49.4275675 11.9755052, 48.7302984 13.6011798, 48.1029807 11.8361371, 48.1350817 11.8749388, 49.3437809 12.3643806, 48.8323467 12.1397113, 48.9733293 12.8819444, 48.2061893 11.5287483, 48.7223938 13.6179050, 48.1011013 11.6307959, 48.2372271 11.5475541, 48.2509071 11.5479241, 49.3771405 12.7026831, 47.8632158 12.0083649, 47.8539580 12.0178026, 50.0420746 11.6720609, 48.6157478 13.5403897, 49.3618383 12.4477189, 48.0760825 11.5427810, 47.8977079 11.7820554, 50.1048363 11.8889127, 48.1358816 11.5497163, 48.1273073 11.5451210, 48.1365137 11.5736815, 48.9954252 12.0237005, 50.1096264 11.4141541, 48.3455521 12.1317089, 48.0002694 11.7956966, 48.5982247 13.5518268, 48.2568821 11.4533336, 48.1426929 11.5915162, 50.3733173 11.5112514, 47.5806808 12.9900205, 48.1010543 11.5467882, 50.0428392 11.4838079, 48.1684727 11.5687083, 48.1711863 11.7155717, 48.6457043 13.5429788, 49.9284665 11.5112743, 48.7163700 13.6172725, 49.0075578 13.4083931, 49.4527997 11.4905453, 48.6167866 11.9930003, 49.7497963 11.5185637, 49.0106437 12.4811226, 48.1782705 11.6260539, 49.2660036 12.6113604, 49.5350217 11.8060476, 48.0251906 11.9632421, 48.1418146 11.5678012, 48.1372350 11.5755354, 48.8581460 12.2279055, 48.4051825 11.9906620, 48.1350984 11.5760826, 47.7647020 12.3237407, 49.8435273 11.6212057, 48.4676545 11.9380643, 48.4683690 11.9372259, 48.4675850 11.9354037, 48.1162625 11.5773134, 48.1155748 11.5803688, 48.2868645 11.4176679, 48.1489142 11.4594334, 48.0960216 11.4131009, 50.0062150 11.4624009, 50.0010014 11.4376082, 48.2731929 11.4236388, 49.8882725 11.5570158, 48.1637344 11.4579506, 48.1476363 11.6010835, 48.1539596 11.6074323, 48.2849053 11.4363469, 48.1799294 11.5750893, 47.8639011 12.6442624, 48.3046921 11.5429995, 48.1798173 11.5493366, 48.1767245 11.5477536, 47.8729654 12.1972526, 48.5308012 11.4964571, 49.7329267 12.0697249, 49.7310450 12.0683404, 48.1596505 11.9979333, 48.1189859 11.4452775, 47.7684577 11.6491787, 48.7011673 12.0279415, 47.7602384 11.7365376, 47.9707197 11.7805174, 49.1659479 12.9730771, 50.1667325 12.1244929, 47.7501179 11.6777269, 48.1256571 11.6629814, 49.9332237 11.5116958, 49.9330126 11.5119533, 49.8294448 11.7475129, 47.7041339 12.0283575, 49.9328745 11.5121784, 47.6520979 11.4211323, 49.2788252 11.4634516, 50.2214645 11.9356910, 48.0742257 11.6533857, 48.0596714 11.6672049, 48.1287664 11.4349115, 47.6824907 11.5717732, 50.2855025 12.1008402, 48.3591440 12.6093476, 48.1403023 11.5739691, 48.2510565 11.5076920, 48.0313255 11.6009473, 47.8825405 12.3323531, 47.7086603 11.7559246, 48.1598332 11.5978295, 48.1609141 11.5986413, 50.1443874 11.9537653, 47.6172547 11.7431278, 49.0511001 11.7847275, 49.3243011 12.8922854, 49.3497904 12.8859420, 48.1540535 11.5364883, 48.1577100 11.5604800, 49.5191482 11.5071905, 48.3195203 11.6884744, 49.9443687 11.5763882, 50.2548425 12.0280849, 49.9531135 11.4272279, 48.1431039 11.5739255, 47.7518380 11.5542307, 48.1094874 11.6715247, 49.9672770 11.7432501, 49.9909971 11.7468775, 49.9947925 11.7477127, 48.0436899 11.6184000, 50.3302575 12.0690000, 50.0170225 11.7056704, 48.1694783 11.5704846, 48.1951367 11.5726760, 49.9601080 11.8330026, 48.5429503 11.5196548, 49.9826914 11.9467996, 48.6105657 13.6209883, 48.7976268 11.5458268, 48.8125589 11.5856847, 48.5368053 11.4792245, 48.8988008 11.6460326, 50.0504378 11.6749634, 47.7196300 13.0070178, 47.5031642 13.0178510, 47.5763930 12.9428503, 47.5858088 12.9880887, 50.0418210 11.6710138, 49.0445983 11.4760465, 50.0467669 11.6732356, 47.7945484 11.8652626, 48.8228747 11.8710406, 49.3389467 12.8146818, 48.9651063 12.3820209, 49.6236211 11.4208589, 47.5336896 12.9724350, 47.5301100 12.9619598, 47.5031123 12.9328624, 48.5606131 13.2960716, 49.1260615 12.1333535, 49.1256211 12.1361069, 49.1255453 12.1369761, 49.1044233 11.8101537, 49.0308094 12.0929987, 49.3131522 12.2445134, 49.3422506 12.2848751, 48.8211211 11.5141945, 47.8516723 12.0615827, 47.8485888 12.0672963, 49.2233186 12.1547666, 49.2331221 11.9525808, 50.0948613 11.7333105, 48.1508584 11.6433653, 50.0502973 12.0609370, 48.0377230 11.4622667, 50.0254865 11.6880247, 49.9687258 11.5747570, 49.5032451 11.7435371, 50.0997781 11.6086337, 50.1054293 11.6083476, 49.5110738 11.4410764, 49.0116277 13.2042654, 48.1469931 11.6257305, 48.0686738 11.6615712, 49.1844101 12.0257204, 48.6328788 13.1769786, 48.1635945 11.5422540, 48.4554508 13.2099038, 48.1201768 11.6588925, 49.4655419 12.5319803, 49.1645854 11.9617084, 48.8284245 12.7200960, 48.8833939 11.7772066, 47.9828283 11.5203806, 48.3081584 12.3332939, 47.8125152 12.1214531, 47.8648888 12.7820620, 47.8519085 12.7832926, 48.3710829 13.2776572, 48.2201211 11.6774482, 48.2245882 11.6741143, 49.4297829 11.5457238, 48.2263875 11.6752754, 48.2137470 11.8802685, 48.1386282 11.5783400, 48.1258240 11.6768961, 48.5730213 12.5785231, 49.4894042 11.4795580, 48.9295466 13.5781872, 48.0876973 11.6096828, 48.0713652 11.6061007, 49.4904322 11.4787933, 47.7838440 12.2774723, 48.0645494 11.6250396, 48.1477907 11.6012806, 48.1411124 11.5911449, 48.1420419 11.5694098, 48.6020461 12.3128264, 48.0125422 11.5154911, 47.7705922 11.6748336, 48.5946076 12.4311920, 49.8616405 11.6570392, 49.5466339 11.9989292, 49.5475287 12.0005339, 49.1624256 12.0837400, 49.1650022 12.1008606, 49.1642339 12.0802211, 49.2050461 12.0387575, 49.5455014 12.0005665, 48.4516658 13.1929689, 48.1012876 11.6309166, 48.1216394 11.5816197, 48.1400779 11.5683717, 47.6753407 11.4912807, 48.1338649 11.5674133, 48.1424482 11.5727949, 48.1225592 11.5679070, 48.0790364 11.7432694, 48.1114620 11.7728378, 48.0217457 11.8128583, 48.0045195 11.8446675, 48.9964840 12.1112392, 49.9123877 11.5130613, 48.1586030 11.5801588, 48.4990785 12.0623824, 48.9742962 13.1352720, 48.2385309 11.5735864, 49.8907112 11.5576850, 49.8988856 11.5412436, 49.5503094 12.0325901, 49.0409666 12.1261312, 48.1136230 11.4812146, 48.1308581 11.5826367, 48.1808226 11.5474087, 48.1766390 11.7434041, 48.2167506 11.5288939, 48.2169135 11.5289632, 50.3300146 11.6693425, 48.1970602 11.8109996, 48.1936977 11.4594269, 49.8624559 12.0950023, 49.1593765 11.9394701, 48.1052088 11.4596178, 48.6612244 12.5310457, 50.2247998 12.1446066, 50.2699412 12.1148272, 48.1516220 11.5525356, 48.1619407 11.5761975, 48.1619237 11.5760965, 48.1619235 11.5760954, 48.1618271 11.5756350, 48.1619234 11.5760944, 48.1420322 11.5715095, 48.1425078 11.5724864, 48.1417931 11.5707416, 48.1431184 11.5721749, 48.1399719 11.5734647, 49.9181164 11.5098373, 48.1388639 11.5739365, 47.8045823 12.2214612, 47.7145365 12.1290861, 47.9098136 11.6754772, 48.1508795 11.5801207, 47.8733749 11.8703542, 49.0078958 12.1165596, 49.3710655 12.2559091, 50.1213622 11.9904154, 47.9029318 12.2354760, 50.3665316 11.9524574, 49.2309993 12.6565069, 49.2309058 12.6607232, 50.3628917 11.9370021, 49.0165046 12.0887646, 49.5129283 11.4823227, 49.4535459 12.1806422, 49.4535406 12.1806536, 49.4535421 12.1806457, 49.4535570 12.1806551, 49.4535474 12.1806465, 49.4535439 12.1806499, 49.6071713 11.6331204, 49.5713889 11.9282692, 48.2484642 11.6828738, 48.1581096 11.6156226, 50.0300227 11.9060469, 48.3591631 12.5094907, 48.3586447 12.5343924, 47.7275214 12.1230949, 48.1166096 11.7662870, 50.3113074 11.9095828, 48.0631239 12.2330584, 48.1566658 11.6254379, 49.9523438 11.8670610, 48.2418607 12.4527747, 47.7706773 12.1475696, 48.0007322 12.4072228, 48.3327301 11.6172233, 48.5734486 13.4640106, 48.1598066 11.4148877, 48.1687944 11.4573356, 49.3518845 11.4485073, 50.1421473 11.9753124, 49.0806939 12.0824892, 48.1433520 11.5818825, 48.1440058 11.5811138, 48.1440394 11.5811862, 48.1441172 11.5805089, 48.1435307 11.5821849, 49.6848998 11.5026780, 49.3175931 12.8435562, 48.4010364 13.3712269, 48.0835944 11.8228819, 49.1669984 11.9955209, 49.2813735 12.0377887, 48.5377879 11.8593020, 49.9711209 11.7503505, 49.0070924 12.3792350, 49.9724725 11.7387437, 49.9567536 12.1214341, 48.4732128 13.2135492, 49.9392269 11.4453954, 47.8046498 12.3714877, 48.9002004 13.0360209, 48.3222795 11.8443135, 47.7027468 11.7615738, 48.1491588 11.4340765, 50.3275697 11.8592399, 48.1916228 11.8684710, 48.5435989 13.2387134, 49.1657640 12.0997544, 50.3802233 11.7655001, 47.9160513 11.5805505, 47.9005583 11.6080856, 47.8914385 11.5880742, 47.8662085 11.5423723, 50.3933146 11.6886249, 49.0490274 12.6476381, 47.9480348 11.5977988, 47.9538922 11.4985415, 47.9081813 11.5466083, 47.9375040 11.5280923, 47.9516801 11.4760690, 47.9463678 11.6443382, 50.0888918 11.7391512, 48.1416278 11.5902260, 47.4769809 12.9616386, 48.1617099 11.5810683, 48.0159193 11.8961216, 47.7725722 12.4343029, 49.7569832 11.5351092, 48.0182478 11.7123423, 48.7636807 11.7840985, 48.6352566 13.1810400, 48.6332943 13.1730816, 50.1067324 11.6086009, 48.5166731 12.1256140, 48.6989114 11.8723543, 48.5436782 12.1537502, 48.1266612 11.6705674, 47.8670370 12.0073600, 48.1641390 11.5315247, 49.8668080 11.4201143, 48.2344666 11.6737996, 47.9211183 11.4202190, 48.3057015 11.4866372, 48.1768831 11.6030792, 48.5469610 13.0920037, 49.5281851 11.4954622, 48.1966964 11.8107166, 48.6333358 12.4004686, 48.1200168 11.6770560, 48.1192391 11.6769136, 47.8477656 11.5822566, 48.1953186 11.5755861, 47.8627828 12.3682165, 48.9872511 13.1747092, 50.2303774 11.6747940, 48.6913587 12.2076836, 48.6904770 12.2075236, 49.3391485 12.1214552, 49.3252029 12.1130808, 49.6470044 12.0474891, 48.3041089 11.8588743, 48.5682510 12.3257440, 48.6183133 13.3896849, 47.8664443 11.7837703, 50.2224054 12.0285376, 49.3115707 12.0782223, 47.9806706 11.5715732, 47.6407172 11.8119658, 50.1586517 12.0450508, 50.3959147 11.7517171, 50.0754361 11.6758203, 48.1811702 11.5169736, 48.1478657 11.7322591, 49.5120207 11.4438338, 49.5030364 11.5429444, 48.8938835 13.0411789, 48.1603293 12.0316006, 49.1640074 13.1074417, 48.7416090 11.4478339, 49.9233769 11.6005430, 48.5741240 12.5789391, 48.5553424 12.4154760, 48.7499032 12.3372814, 47.8177812 11.5831907, 50.2481179 12.0346542, 47.7181107 11.7940329, 50.0244804 12.3084366, 48.0605044 12.2198648, 50.1755442 11.7976128, 47.7560236 11.7451567, 47.7340849 11.7658323, 48.1307110 11.5923150, 47.8593309 12.1240177, 50.0379127 12.0038680, 49.9946339 11.7861359, 49.5583611 11.9772712, 50.1907032 11.6789749, 47.9313740 11.4208664, 49.3271140 12.1141460, 50.1082542 11.6047778, 49.0205921 12.0952396, 49.2250749 11.5402651, 49.3424310 12.5290121, 48.2069696 11.6425405, 48.0587790 11.7725479, 50.0131184 11.5462805, 47.6420716 12.1021865, 49.8671429 11.9362476, 50.2052252 12.1457506, 48.8633623 13.6780136, 48.0969476 11.5923807, 47.8252837 12.0966772, 47.8521215 12.0634403, 49.9086379 11.7596314, 49.3262209 12.9527050, 50.0328796 11.7627971, 49.9491040 11.9686054, 50.0152645 11.8552500, 50.0325244 11.7628357, 47.6434474 11.7466035, 49.6753801 11.4191505, 47.6450803 11.7423983, 48.8809002 12.5642144, 47.8463632 12.2297235, 48.8136490 11.5110770, 48.4008166 11.7440251, 47.9339678 12.7348143, 47.9337012 12.7343361, 49.2434542 12.9349168, 49.0351785 11.5424379, 49.2241870 12.6609190, 48.1509192 11.5766855, 47.7408140 12.7027315, 48.0901367 11.6484822, 49.7273904 11.4744562, 49.6686885 12.0998908, 47.6734563 11.5974212, 48.4987681 12.1754338, 48.9399526 13.6174750, 47.8307822 11.8016392, 48.8115053 12.2818893, 49.1970690 13.0502105, 49.8984450 12.0457164, 48.9577183 12.8734443, 48.5821928 13.2391059, 48.2087968 11.5811398, 48.5148832 11.5443784, 48.5114077 11.5445715, 49.0348960 12.6122460, 49.2132941 12.6724124, 49.2223433 12.6878565, 48.9670759 13.3186444, 48.9608782 13.3116962, 48.9602160 13.3124150, 48.9796758 13.3094109, 49.0242625 12.1398854, 49.0535718 12.6805814, 49.0535391 12.6763560, 48.9562231 13.4658637, 50.0226249 11.8149188, 49.0188390 12.0832940, 47.7528561 12.5191508, 50.0967401 11.5404060, 49.8170477 11.8481107, 49.8174632 11.8597217, 49.8261396 11.8368756, 48.3225772 11.6015380, 48.2303373 11.5684865, 48.5502505 11.9452100, 48.1479010 11.8192123, 48.1522516 11.8536961, 48.1687671 11.9126528, 48.8272520 12.3966062, 48.1739333 11.5481724, 49.5254924 11.9614494, 50.1223636 11.7840136, 50.0395891 11.9515272, 50.0480085 11.9954977, 47.6254457 12.5110784, 48.9426280 12.4692627, 48.5634852 11.9882072, 48.8265783 13.7752130, 48.9667118 12.8349224, 49.8210346 11.7431909, 47.8083086 12.5920009, 48.1635298 11.7132941, 48.9701961 12.3265193, 48.7957646 12.6424422, 48.8838557 12.5678186, 50.0615527 11.8200016, 49.0246651 12.6579342, 48.1481400 11.7289444, 48.9381557 12.9308734, 47.8993548 12.8624100, 47.8673146 12.1277265, 48.2766485 12.3846048, 49.9473973 11.6150938, 49.5225359 12.2661674, 49.8873532 11.4850110, 49.9627815 11.4660231, 48.1674732 11.5451537, 48.1661995 11.5386788, 49.6514341 11.4676563, 49.6772117 12.1660213, 49.5444496 11.9443589, 49.5447464 11.9443084, 48.0937782 11.4886530, 49.6059368 11.5082344, 48.1408800 11.5640079, 48.9650564 13.5881898, 48.7565516 13.5148193, 49.5435705 11.9422976, 47.6210461 12.1777480, 49.4477239 11.6857625, 49.4460554 11.6835686, 49.8879820 12.4296686, 49.0139001 13.2324271, 47.9822735 11.4885352, 48.1094506 11.7266607, 50.3106075 11.9096814, 48.2477983 11.4401776, 48.2511189 11.4408524, 48.2511196 11.4408547, 48.2471125 11.4395942, 48.2471134 11.4395935, 48.2511207 11.4408524, 49.5019190 12.0527679, 49.7315595 12.3461012, 49.5100108 12.5477321, 48.2927027 11.4798357, 48.2352747 12.8234436, 49.6767965 12.1612248, 49.9090658 12.5278358, 49.6821913 12.1675909, 50.0497889 11.6009071, 47.8502657 12.9639733, 47.8941231 12.1380535, 48.7635782 11.4224738, 48.7633148 11.4204362, 48.7638216 11.4214954, 48.7646048 11.4293850, 48.7633155 11.4204348, 48.7659842 11.4300553, 48.7638215 11.4214919, 48.7638216 11.4214937, 48.7646069 11.4293837, 48.7646059 11.4293843, 48.7646054 11.4293827, 49.7772736 12.0910176, 48.0831501 11.5408608, 49.0152337 12.1047908, 49.8986046 11.8430735, 48.1200261 11.5495680, 48.1200218 11.5495670, 48.1200271 11.5495696, 48.1311897 11.5566510, 48.1200196 11.5495694, 48.1200271 11.5495680, 48.1200217 11.5495702, 48.1200228 11.5495654, 48.1200218 11.5495654, 48.1311905 11.5566500, 48.1200218 11.5495718, 48.1200260 11.5495696, 48.1200228 11.5495687, 48.1200228 11.5495718, 47.9829128 12.1298784, 49.0148423 12.0988033, 49.8970555 11.7010378, 48.3073913 11.9294207, 49.5220581 12.0202369, 49.0188010 12.0865158, 49.0196418 12.1076991, 49.0224890 12.0971760, 49.0086624 12.1140073, 49.0104384 12.0604168, 49.0079845 12.0596346, 49.0063004 12.0842723, 48.0643201 11.4200679, 49.9852673 12.4733816, 49.5182739 12.0223498, 49.0161006 12.0649200, 48.1554042 11.5459282, 49.5036987 11.5105657, 49.5039492 11.5098909, 47.8169133 12.3425923, 49.0155580 12.1020225, 48.8160063 13.3690565, 48.2104282 11.6748380, 49.0186698 12.0861070, 49.0143791 12.0568333, 49.0128154 12.0501601, 47.7242216 12.8623232, 49.9480493 11.5152437, 47.7185209 12.1322924, 49.0135863 12.0980858, 49.0141433 12.0909775, 48.9616275 13.3707694, 50.0571318 12.1630188, 49.0230406 12.0759531, 49.9695730 11.8248926, 47.8692224 12.6550306, 49.0139872 12.0993480, 50.0456727 12.1526067, 48.0827435 11.8239421, 48.7789409 13.4416277, 48.0701021 11.8683821, 49.2279800 12.3591491, 49.5978247 12.1277408, 49.9636948 11.4430543, 48.0829495 11.8239749, 47.7892014 12.3063237, 48.9213941 13.3631052, 50.0468919 11.7900887, 50.1018467 11.9289190, 47.9808205 11.5709699, 48.0189284 11.5913994, 47.9712056 11.5651943, 50.0720623 11.7343687, 49.5057702 12.0479512, 49.0701788 12.3965783, 48.1433019 11.6171321, 47.7394301 12.0912820, 48.2748956 11.4707489, 47.7658961 12.3264238, 48.0606524 11.8506605, 48.0225887 11.9300372, 50.0608396 12.1181770, 47.8852671 11.6003827, 47.8423723 11.5854156, 47.9290227 11.4768712, 48.8410570 11.5318713, 47.6534906 11.5020849, 50.0798842 12.1424534, 49.9405337 11.5815981, 48.1525638 11.7410681, 49.9620176 12.4906845, 48.1253719 12.6753670, 49.2820607 11.4621282, 49.2767281 11.4605954, 49.2752957 11.4611307, 49.2737454 11.4693648, 49.2791542 11.4630600, 48.2355809 12.4317737, 48.2227941 12.4279217, 50.0096304 11.5342528, 50.0091730 11.5180114, 47.5883957 12.9893172, 47.8480477 11.4745505, 48.0620830 11.5214274, 49.1519360 12.1734992, 49.7531999 11.8335514, 48.0465646 11.5142681, 47.6410480 11.9992875, 48.0397728 11.5225044, 47.6257705 11.7093124, 49.8782430 12.3371545, 48.5308753 13.1752456, 48.6353244 13.4786526, 50.3085656 11.9225515, 48.0827751 11.8241935, 49.2069877 12.0869222, 48.2681020 11.4687779, 49.0961493 12.0473105, 49.5687334 11.5124981, 48.8567728 13.6782100, 47.6623215 11.4890566, 47.6615700 11.4886820, 48.8846783 12.5732420, 47.6528220 11.4593720, 48.1678123 11.9108847, 48.4802940 11.9460062, 48.4801747 11.9404357, 47.7615614 12.1850432, 48.4001496 11.7431475, 48.4001523 11.7431449, 48.4001532 11.7431439, 48.4001514 11.7431458, 48.4001559 11.7431412, 48.4001541 11.7431430, 48.4007607 11.7445270, 48.3994950 11.7424349, 48.4001505 11.7431466, 48.4001550 11.7431421, 48.0302320 11.5198002, 50.1335623 11.6582094, 49.0900685 13.3194516, 48.1636994 11.4992629, 48.1638954 11.5006114, 49.8268841 12.4254832, 49.7736898 11.4977477, 47.7334230 12.8910243, 49.6730978 12.1569376, 49.4450506 11.8566044, 49.4450517 11.8566084, 50.0343837 12.0057082, 50.0389404 12.0059588, 50.0901476 11.9226350, 49.9046225 11.5856532, 49.0196241 12.0926982, 49.0196255 12.0926983, 49.0211080 12.0903255, 49.0312029 12.1063028, 49.0312049 12.1062961, 49.0312084 12.1063023, 49.0325759 12.1057144, 49.0185305 12.0953889, 49.0185345 12.0953894, 49.0190701 12.0946023, 49.0176917 12.0961121, 49.0185908 12.0921057, 49.0185915 12.0921105, 49.0185924 12.0921057, 49.0185926 12.0921125, 49.0185929 12.0921080, 49.0185929 12.0921105, 49.0185931 12.0921031, 49.0185934 12.0921144, 49.0185941 12.0921007, 49.0185951 12.0921031, 49.0185952 12.0921079, 49.0199275 12.0918002, 49.0199275 12.0918026, 49.0207083 12.0971348, 49.0178839 12.0974031, 49.0170899 12.1040314, 49.0197670 12.0892004, 49.0197695 12.0892010, 49.0197721 12.0892016, 49.0148994 12.0776648, 49.0149005 12.0776669, 49.0149008 12.0776631, 49.0149019 12.0776653, 49.0194381 12.0923903, 49.0197664 12.0922483, 49.0197664 12.0922513, 49.0197669 12.0922536, 49.0185726 12.0948193, 49.0185728 12.0948165, 49.0185744 12.0948225, 49.0185745 12.0948195, 49.0185746 12.0948167, 49.0183173 12.0948407, 49.0180503 12.0962374, 49.0180507 12.0962358, 49.0180522 12.0962387, 49.0180527 12.0962370, 49.0180531 12.0962355, 49.0168598 12.0945021, 49.0168622 12.0945069, 49.0168625 12.0945028, 49.0168652 12.0945035, 49.0169572 12.0964730, 49.0187855 12.0866987, 49.0187856 12.0866955, 49.0187871 12.0866972, 49.0196952 12.0908512, 49.0196955 12.0908472, 49.0196970 12.0908553, 49.0196980 12.0908517, 49.0196983 12.0908477, 47.6718840 11.6473889, 49.0244130 12.0975018, 48.0607948 11.6184129, 47.6484915 12.0931252, 48.6862566 11.6120963, 48.1513324 11.5941030, 47.6772885 12.4698671, 47.8572809 11.7969272, 50.0185900 11.5947993, 49.1186381 13.2891826, 50.0415115 11.6710379, 50.0455047 11.6729648, 50.0572140 11.6809567, 47.6681210 11.7064390, 47.6677988 11.7053201, 47.6609640 11.7055680, 49.6728265 12.1490093, 48.9675009 12.3906760, 50.1159200 11.8631050, 48.2111314 12.6028598, 47.6471760 11.9526540, 48.6122223 12.1926004, 50.0182437 11.8324940, 50.0190952 11.8331859, 49.9335870 11.7378440, 49.9329190 11.7325956, 50.0909091 12.0894665, 48.1175567 11.6564215, 48.1187199 11.6573237, 48.2808759 11.6737437, 49.5247695 11.9030735, 48.9718495 13.4328515, 50.1586640 11.5704392, 49.9850909 11.6517051, 50.0125545 11.6992003, 47.7269118 12.1058124, 49.4938239 12.1796909, 49.2736602 12.5400565, 48.4825420 11.6301966, 47.6831295 11.5763012, 48.3986459 11.7457661, 48.5949122 11.6561854, 47.8697313 12.6394417, 49.0180645 12.0899199, 48.5415771 12.1614274, 49.5063706 12.0586238, 48.0769911 11.5173999, 49.5392559 12.1610923, 48.0257085 11.5959285, 49.9347352 11.5927808, 50.1764459 11.7554872, 48.7262394 11.4138936, 49.5136483 11.9690411, 49.5108070 11.9702656, 48.2336061 12.7101152, 49.2954987 12.3550665, 48.1060045 11.4224434, 48.8816363 12.5677468, 48.1164589 11.7457519, 47.7227471 12.8663906, 48.0816872 12.0609230, 50.2152548 12.0074059, 50.2320320 11.9824924, 48.3291750 11.9250679, 48.5052660 13.4522395, 48.2398892 12.6898530, 47.7347322 12.8876517, 47.6648917 11.8866486, 47.7224481 12.8774277, 50.1253347 11.5988929, 49.0373017 11.4713987, 48.4045914 11.9889563, 48.3659809 11.6092197, 49.9061473 11.7649973, 49.6689324 12.2302463, 48.1125639 11.7873969, 48.8035706 11.4955081, 48.8017857 11.4931013, 49.7661741 11.9355854, 48.8378723 12.1833660, 49.8506179 11.5871782, 48.1263201 11.8782617, 48.0432704 11.5177994, 47.7260291 12.1109024, 48.0957791 11.7622930, 47.7351805 12.1103036, 47.7502995 12.0906760, 47.6631098 11.9347543, 49.3619592 12.3332809, 48.4552782 11.9126341, 48.1247230 11.9803220, 48.5728017 13.4633595, 48.1405104 11.5935655, 48.1220871 11.5437710, 48.1405112 11.5935605, 48.1405097 11.5935706, 48.1220876 11.5437719, 48.3070385 11.9079993, 49.8813986 12.3387714, 49.8843655 12.3365134, 47.6923168 12.2660427, 48.1580588 11.4442607, 49.8556988 12.2213404, 47.6931296 12.3891410, 47.6502013 11.9345166, 47.6501599 11.9345446, 47.6485872 11.9324325, 48.2985551 11.9050355, 48.9239093 13.4441838, 48.1647650 11.5899480, 48.1282133 11.5527531, 48.1255776 11.6306425, 50.0129545 12.0051052, 50.1047922 12.1674481, 47.8567739 11.6863454, 48.2490350 11.5586567, 49.0006194 12.3996130, 48.9993664 12.3982370, 48.0739860 11.5144815, 48.4306622 11.5979945, 48.8303475 12.9625458, 48.8303482 12.9625450, 48.8303492 12.9625441, 48.8342572 12.9618574, 48.8342580 12.9618573, 48.8342589 12.9618574, 47.8454487 12.3706689, 47.9519330 12.2752926, 49.3528140 12.3797332, 49.3790168 12.3987072, 49.5561735 11.5420028, 48.3234735 11.5329278, 48.5324057 12.1498019, 48.1290254 11.6311058, 49.5458338 11.5409081, 49.5564497 11.5434917, 48.3251363 11.8655590, 47.7186656 12.8727953, 47.7283278 12.8874375, 48.2176073 11.6301119, 47.6097012 12.8662571, 50.1338452 11.4297540, 49.5048933 12.6154745, 49.9358251 11.5223760, 48.8453913 12.9581656, 48.1385566 11.5968928, 48.2936431 11.6542585, 49.0757627 11.9068162, 49.4786149 12.4996766, 48.1815609 11.5157431, 48.8482307 12.9391855, 48.1300418 11.6068213, 49.9689695 11.5310708, 48.8815221 12.5648911, 48.8818937 12.5646408, 49.3567688 12.4175171, 48.1965731 11.5757210, 49.1026763 13.1112906, 47.8040137 12.8559330, 49.4258166 12.6794486, 48.9941475 13.2205163, 47.5953829 11.7822341, 47.6044414 12.9864303, 47.7498419 12.8495333, 47.7545069 12.8488217, 47.7551318 12.8493986, 47.9900882 11.6446685, 48.0493027 11.4506593, 47.5823437 12.8658692, 47.5823262 12.8659575, 48.1615304 11.5918723, 47.5421323 12.9394960, 47.5444136 12.9527252, 49.7647053 11.7962899, 49.8618788 11.8979045, 50.1152569 12.1216525, 50.1046531 12.1021386, 50.1035974 12.1287697, 48.7638007 11.4265851, 49.5111470 11.4098766, 47.8564924 12.4847039, 47.7053568 12.0322933, 47.7092784 12.0441586, 47.7039798 12.0231242, 48.2682507 11.4695839, 48.2721605 11.4646675, 48.2718239 11.4652688, 48.2716386 11.4650139, 48.2721166 11.4647511, 48.2724362 11.4649601, 47.7292845 12.4392342, 47.7634284 12.4516572, 49.9618409 11.6711507, 49.0108389 12.4811544, 47.7468620 12.2479646, 47.7400398 12.2332605, 49.6406789 12.4388138, 49.1798457 11.7586122, 49.8006520 12.3857626, 49.9514872 12.1060524, 48.0313595 11.5868381, 47.7267192 12.8687083, 47.6686694 11.6625171, 48.1342423 11.5700387, 49.7830222 11.4348553, 48.0260123 11.5251821, 47.6604914 11.5080991, 47.6614539 11.5187932, 47.6593777 11.5030454, 47.6498945 11.4676288, 47.6601322 11.5051051, 48.9513267 13.4829135, 48.8737373 12.0075412, 48.1349504 11.5943735, 48.0271457 12.5541518, 47.6433999 12.1751083, 47.6407574 12.1696156, 47.6411215 12.1703695, 47.6403878 12.1635277, 48.3996544 11.8520538, 49.9587512 11.5802173, 49.9447427 11.5773091, 49.9442251 11.5776919, 49.9443692 11.5763951, 49.9410438 11.5748716, 47.8659427 12.0111514, 48.4056651 11.9909489, 48.0784519 12.5696682, 47.9165852 12.0318879, 47.7232401 12.8761185, 47.6431611 11.9170922, 47.8662840 12.0159958, 47.6173936 11.7076257, 49.8788169 12.3370226, 47.6996482 12.2430712, 49.2150275 12.7622283, 49.7516975 11.7265102, 48.6835709 11.6132535, 48.6848789 11.6136664, 47.8393271 11.9691096, 47.7020991 12.0130841, 48.3479535 11.9235535, 47.7021170 12.0131818, 47.9718784 11.6528135, 47.7581962 12.2737426, 47.6493815 11.9316988, 48.8049165 11.8889334, 48.0040033 11.5136520, 47.9367272 12.9322049, 47.7108302 12.1251726, 47.6339493 13.0038067, 47.6442786 12.0466307, 49.2791168 11.4474779, 49.2765759 11.4603898, 47.8032737 11.5000786, 48.8311137 13.4591452, 49.2784356 11.4552455, 49.2800695 11.4584632, 48.3996250 11.7420086, 49.2804964 11.4619377, 49.4913697 11.7660931, 47.6472166 11.9289408, 49.0135720 12.1459346, 49.1071095 13.2047136, 48.1073936 11.4528835, 49.6592217 11.5167515, 49.9394884 11.5305029, 49.3329703 11.4406888, 49.0317793 12.0933680, 48.1521700 11.5278539, 48.1497300 11.5273092, 47.7197728 12.8759652, 48.7841110 13.5796127, 47.8826998 11.9182081, 48.3415480 11.9222212, 48.1627561 11.5861396, 49.8050396 11.5284272, 49.0512827 11.8145616, 48.7864857 13.3751383, 49.6899734 12.1492885, 48.9446626 13.6012764, 48.9402070 13.5950476, 48.0795080 11.5270511, 48.8156148 11.8875333, 49.6458378 12.2104212, 49.6369475 12.2019238, 47.7180909 11.6534598, 49.8234349 11.6667095, 49.1737777 12.8528844, 48.1970574 11.4581073, 49.6766225 12.1607203, 49.6769325 12.1608543, 49.6772034 12.1609933, 49.1778799 11.4136321, 49.6833617 12.1507245, 48.1717682 11.7160853, 49.1784941 11.6516372, 48.5259749 12.3142889, 49.3778005 12.7064711, 48.5330205 12.1628553, 48.5305960 12.1578907, 48.7356699 11.5492059, 47.8508053 12.7851381, 47.6764212 11.8710364, 48.1424597 11.5822622, 49.8247899 12.1940792, 48.1450137 11.5810073, 48.2393390 11.4385684, 48.2564046 11.4654355, 48.2596082 11.4451115, 48.2605838 11.4347639, 48.1678985 11.7149075, 47.7873372 11.8339232, 47.7200996 12.7699376, 47.6054977 12.9858304, 47.6241300 12.9745039, 47.7900190 12.0771110, 48.7548713 13.8178262, 47.7101114 12.1139656, 47.6945682 13.0460095, 49.8841615 11.9164322, 49.3432447 12.3640770, 49.3300666 12.4136162, 47.7641979 11.9958704, 50.3416351 11.7143397, 50.0666062 12.0711517, 49.9480885 11.8915341, 48.1366177 11.5770164, 48.6879045 12.2017217, 48.1451646 11.4563233, 49.7220245 12.1913195, 49.7204497 12.1998025, 49.5983479 12.2578390, 50.0777379 11.9240709, 47.9417533 12.9357259, 47.9422619 12.9367666, 47.9424226 12.9368673, 47.9386089 12.9354309, 48.7557813 12.5888625, 50.0964003 11.6507085, 49.0165204 12.0930160, 49.0142314 12.0978208, 49.0142509 12.0983715, 49.0145444 12.0943274, 49.0148619 12.0936434, 50.1071864 11.6113150, 48.1788331 11.4617680, 49.8308091 11.9002786, 49.8121183 11.6156822, 48.3049382 11.9087780, 48.6919369 11.7130487, 48.1636845 11.4571067, 48.9389978 13.5126937, 48.9421185 13.5082968, 49.6626801 11.9936761, 48.9435067 12.0285624, 47.7561775 12.0420924, 49.8026070 12.1691206, 49.8075440 12.1639654, 49.8033895 12.1561119, 49.8018280 12.1559349, 47.7409841 12.0154738, 47.7481852 12.0511155, 47.7349927 12.0534271, 50.0966697 12.2230986, 50.0974045 12.2239071, 50.0965526 12.2228208, 48.3710824 13.2773536, 47.6056995 12.9094085, 47.6057338 12.9091081, 49.8555425 12.2214595, 47.7601898 12.4233394, 47.7608375 12.4316584, 47.8611631 12.1264453, 49.9758154 11.7336493, 47.6452525 12.0985877, 47.6452469 12.0985652, 47.6537812 12.0983658, 49.9590090 11.5788897, 49.9589325 11.5810671, 47.7224967 12.8480335, 49.7633614 11.4467299, 48.4510659 13.1932104, 47.7061640 12.0341307, 47.6900275 12.7995463, 47.6900364 12.7994766, 47.6900311 12.7995088, 49.9462668 11.5753721, 48.2889659 11.4600298, 48.2866384 11.4602750, 48.2860387 11.4609057, 48.2863124 11.4604083, 48.8822337 12.5741336, 47.7670520 12.2581243, 47.7766786 12.2687321, 48.5106716 13.4421507, 47.9241734 12.0134157, 47.7210112 12.8922962, 48.1019055 11.5954917, 48.2671203 11.4312604, 48.2720955 11.4679281, 49.7343649 12.3586803, 48.9678967 12.3917663, 48.0683448 11.6098579, 49.3663032 11.9178031, 48.7588183 13.0169252, 47.8544613 12.1599328, 47.7221913 12.1894134, 47.7246807 12.1709495, 47.5401994 11.5451552, 49.4706490 11.9408120, 47.6579035 11.9415792, 49.5018247 12.5383206, 49.3497571 12.4515065, 47.7464395 12.3381211, 47.7659819 12.3239531, 47.7580017 12.3517938, 49.5615084 12.3823115, 49.4564703 12.4166112, 49.4551418 12.4166112, 47.7631802 12.3374573, 48.5737124 13.4765344, 47.7446979 12.2429108, 47.7630063 12.2918643, 47.7447155 12.2428771, 49.0377941 11.9039954, 50.0526539 11.7960194, 49.3075015 12.9981043, 50.3165121 11.9152028, 48.8032590 13.7899737, 48.8041500 13.7886807, 47.7733827 12.0100012, 48.5265075 11.7205988, 48.9220173 13.3198590, 48.8179778 12.4098805, 47.8526533 12.1211066, 47.8613138 12.1265330, 48.5443248 13.2254096, 50.2425926 11.7175152, 48.5944939 13.7808318, 47.9625481 12.5927347, 47.9991272 12.5280347, 49.0912527 13.2981318, 48.6882168 13.3842941, 48.6868642 13.3837733, 49.5105435 12.0310510, 47.7674242 12.1528439, 49.5561400 11.5420073, 48.0623530 12.7674659, 47.7400654 12.1371015, 47.9092360 12.5896225, 49.8914332 11.6466049, 48.0277606 12.5531517, 48.0281149 12.5558822, 48.2992047 11.9025085, 47.6534090 12.9601781, 47.7312135 12.1780115, 47.7269867 12.1845863, 47.9595897 11.5376868, 48.8824802 12.8857350, 49.7569808 12.3616907, 49.8844532 11.5861064, 49.8852766 11.8245376, 49.8852959 11.8229621, 49.8879875 11.8243576, 49.4783567 11.4849884, 48.3990175 11.7449704, 50.4001633 11.6998988, 49.6328084 12.3295919, 49.6320358 12.3311107, 47.8569246 12.6380051, 48.6688398 13.4709508, 48.7277680 13.3804249, 48.7275635 13.3807985, 48.7272747 13.3808012, 48.0324798 12.2112503, 48.0562318 12.2264944, 49.6417158 12.3501188, 48.7704499 11.6184683, 48.7303779 13.3827246, 47.8553775 12.1411868, 47.7833503 12.1360315, 48.8168048 11.8437817, 49.6292350 12.1383406, 47.8767571 11.9346753, 49.6177320 12.4853949, 49.6176503 12.4881415, 49.6152817 12.4843595, 49.6469340 12.1128377, 49.0356603 11.9073368, 49.0990659 13.1587652, 50.2397173 11.7104793, 47.7672883 12.4748115, 49.6705144 12.1550293, 49.7793960 11.4564819, 47.6336196 12.9628090, 50.2131652 11.9776788, 48.5768606 13.4909578, 48.5228676 13.7151535, 47.7982689 12.1683402, 49.7055393 12.2139592, 50.0136617 12.2136879, 50.0136855 12.2157508, 49.9920041 12.0208498, 50.0139926 12.0095350, 48.8450566 12.9580396, 47.7061545 12.3694177, 49.0514617 12.0471284, 47.7004604 12.3484653, 47.6987234 12.3686649, 47.6930389 12.3353247, 47.7042026 12.3746624, 49.1965765 12.5176483, 49.2151299 12.5445669, 48.1031258 11.5819555, 49.6835526 11.4192035, 49.8323846 11.5325722, 48.1054944 11.4234912, 47.7149569 12.3804414, 49.3926752 12.1366930, 49.3945161 11.7421020, 48.8817065 12.6342820, 48.8819510 12.6350105, 48.7796330 13.8009741, 48.7845612 13.8021811, 48.9992118 13.2156448, 47.6102189 12.9746370, 48.7816509 13.8034148, 50.2469070 11.7053695, 47.6143208 12.0207704, 49.2002219 12.5267441, 48.0591281 12.3762203, 48.7750358 13.3569059, 50.0105336 11.8934659, 49.1961430 12.5176137, 49.1983256 12.5157498, 48.2733303 12.1502952, 49.1976270 12.5139895, 49.0652691 13.3231780, 49.4655042 12.5320506, 48.1387014 11.5494796, 48.8902997 13.2961769, 47.8700426 12.6439622, 49.0995235 13.2668239, 48.0022971 11.9851144, 48.0252327 11.9631538, 48.5416019 12.1493345, 48.5352601 12.1538781, 48.0366292 11.7142532, 48.0433467 11.7024952, 47.6331000 12.0727235, 47.6330902 12.0727539, 49.9411028 11.5822645, 48.2568850 11.4483941, 48.9359625 13.4531758, 48.2486664 11.5586716, 47.7793672 11.7330936, 49.9108279 12.1905951, 48.9446683 12.4655688, 49.1730310 12.9522436, 48.0193348 11.4865864, 47.6135032 12.1635647, 48.5226155 13.3178228, 48.3787098 11.4146348, 48.1442245 11.5803045, 48.1452772 11.5841502, 50.0079225 11.8385729, 47.7821575 12.3049909, 48.8211556 13.7279195, 48.5297613 11.5069795, 48.5305389 11.5092844, 48.5301377 11.5042898, 47.7507912 12.5581244, 49.6839579 12.1638196, 48.1938660 11.8032158, 49.6757639 12.1641077, 50.1518828 11.4676595, 48.2375898 11.8599602, 48.2378150 11.8595478, 48.9643064 12.8800107, 48.9618224 12.9049615, 49.2067820 12.0415821, 48.9325732 13.5392478, 47.6292152 12.0979484, 48.0709459 11.8875406, 47.6772334 11.6052254, 50.3196790 11.9034624, 50.4150441 11.8829338, 50.4150305 11.8829163, 50.4150388 11.8828808, 50.3214813 11.9134860, 48.8865448 11.4124570, 49.6223088 12.4827525, 49.1846695 11.9334813, 47.7614026 11.6196178, 47.7083935 12.1358732, 49.8600554 11.9510977, 48.5855336 13.5563823, 49.9798064 12.1169880, 48.5303007 11.5051354, 47.7176305 12.1245370, 49.3988623 12.5260962, 47.9262715 11.7402148, 49.2154521 13.0708055, 49.2030946 13.1099047, 47.6565571 12.1587301, 47.6580416 12.1655075, 48.9856943 12.1749282, 49.5521965 12.0623864, 47.9597561 11.5915361, 47.8465568 12.2298217, 47.7927724 12.6175327, 50.2516176 11.7555514, 48.9104430 13.5396970, 47.8468783 11.6204102, 47.7289062 12.6842696, 48.4592536 12.7617655, 48.1318245 11.5762231, 48.1315857 11.5758387, 47.8713552 12.6385811, 48.2170222 12.5058803, 48.1656435 12.8335450, 48.1656405 12.8335445, 48.1656422 12.8335421, 48.1656413 12.8335475, 48.1656423 12.8335510, 47.9062761 12.2915808, 47.8961042 12.3052859, 50.3283397 11.9341101, 48.1029918 11.4232833, 49.6332825 12.0916657, 48.1670840 11.7120233, 47.7083099 12.1068627, 48.1398408 11.5780689, 48.1671028 11.5483431, 48.2700458 11.4683333, 48.7845529 13.8019681, 48.5300473 11.5066380, 49.0518443 11.7822030, 48.5285863 11.5050544, 49.5130007 11.4296719, 49.4932776 11.4751642, 48.1413436 11.5969927, 48.1428538 11.4125010, 48.5278523 11.5056174, 48.1940954 11.4600752, 48.7656923 11.5351364, 48.4067613 11.7574390, 47.7259635 12.1148467, 48.1320053 11.5557894, 50.3199340 11.9165126, 49.0413060 11.4708290, 48.1403638 11.5719644, 48.1400691 11.5731123, 48.1401611 11.5727358, 48.1402587 11.5723472, 47.7730997 11.5727335, 49.0190540 12.0985788, 48.0938038 11.4659904, 49.7353650 12.3569415, 50.3121132 11.9174085, 49.0183174 12.0958518, 48.2350566 12.4315667, 48.1532035 12.8174680, 48.1570952 12.8253903, 50.1509972 12.0529393, 47.7777085 12.3663525, 47.9707607 11.7802007, 48.2934356 11.9067051, 47.6673450 11.7145331, 47.8657489 12.0113892, 49.1974796 12.7466092, 49.4206070 11.8806656, 49.8621215 11.9530041, 48.0991170 11.4784139, 48.0978106 11.4892883, 49.2841959 11.4810539, 48.9057654 12.6920206, 48.8821761 12.5732443, 48.8820707 12.5732315, 48.1039524 11.5792060, 48.2874464 11.4608564, 47.7785483 11.7334497, 47.7788087 11.7333363, 49.0063017 12.0967461, 48.0863175 11.5566341, 47.8670604 12.7062032, 49.2134526 12.5097439, 48.0256685 11.9628068, 47.8670623 12.7061976, 48.5307772 11.5098889, 48.9959303 12.1214955, 49.3972937 12.5256275, 48.5293635 11.5050471, 50.3201104 11.9041564, 48.1375657 11.5880634, 48.6589279 13.2510419, 48.2769930 11.9365109 +55.9501677 -3.1941355 +1 +yes and 9 and 55.9354769 -3.1317550, 55.9368505 -3.2110421, 55.9771807 -3.1761476, 55.9378976 -3.1933725, 55.9584903 -3.1863264, 55.9338204 -3.1793988, 55.9401022 -3.1818027, 55.9712125 -3.2539350, 55.9342454 -3.2456558 +yes +0 +yes +148 +John Redpath Electrical Contractor, JK McCrone +822 +no +19 +48.8760867 2.3599561, 48.8968424 2.3818049, 48.8433854 2.3736074, 48.8242892 2.3764902, 48.8243395 2.3766423, 48.8798131 2.3564484, 48.8762217 2.3586964, 48.8312247 2.3581349, 48.8966561 2.3798725, 48.8292797 2.3113663, 48.8971135 2.3748889 +49.4126021 8.6894511 +yes +2386 +52 +52.0455273 8.4506902, 52.0583801 8.5520281, 52.0441674 8.5341281, 52.0579438 8.4922378, 52.0238436 8.5234911, 52.0555549 8.5378820, 52.0498292 8.5592441, 52.0292398 8.6021218, 52.0292227 8.6009951, 52.0272514 8.5957092, 52.0306293 8.6106186, 52.0473461 8.5908186, 52.0469513 8.5887087, 52.0231198 8.6053870, 52.0580464 8.6142089, 52.0581150 8.4919573, 52.0312632 8.5407538, 52.0319234 8.5420151, 52.0462690 8.6409561, 52.0191448 8.5779535, 52.0184508 8.5657079, 52.0743431 8.6025251, 52.0754057 8.4694042, 52.0386901 8.5655696, 52.0318962 8.5656184, 52.0273349 8.5382436, 52.0542712 8.5439409, 52.0181631 8.5466796, 52.0522750 8.5245659, 52.0456077 8.5212121, 52.0419948 8.5160247, 52.0292851 8.5181917, 52.0418895 8.5307595, 52.0327138 8.5227649, 52.0314754 8.5141184, 52.0295337 8.5150115, 52.0157211 8.5484732, 52.0306430 8.5117068, 52.0226396 8.5511428, 52.0223364 8.5495579, 52.0233884 8.5519795, 52.0234840 8.5536985, 52.0265557 8.5458287, 52.0185875 8.5275250, 52.0186597 8.5289951, 52.0209783 8.5457695, 52.0267434 8.4659864, 52.0459901 8.5425345, 52.0682897 8.5224152, 52.0719588 8.5498716, 52.0442328 8.5433584, 52.0563214 8.5500007, 52.0207414 8.5292478, 52.0261491 8.6392547, 52.0341466 8.5270978, 52.0345204 8.5277213, 52.0223837 8.5432316, 52.0383046 8.4923385, 52.0984088 8.5009157, 52.0926733 8.5329308, 52.0981428 8.5181712, 52.0359835 8.4982002, 52.0327367 8.5222372, 52.0719981 8.5498472, 52.0184308 8.5473987, 52.0208485 8.5454983, 52.0586804 8.5511665, 52.0228461 8.5508389, 52.0307135 8.5117101, 52.0267458 8.4660597, 52.0459428 8.5203701, 52.0207097 8.5292682, 52.0261594 8.5241174, 52.0312156 8.5405749, 52.0272333 8.5379784, 52.0315859 8.5423180, 52.0526516 8.5253447, 52.0468920 8.5467931, 52.0186691 8.5656553, 52.0472610 8.5893105, 52.0391042 8.5656841, 52.0315635 8.5657826, 52.0543651 8.5447212, 52.0462867 8.6407281, 52.0579586 8.6142179, 52.0743547 8.6022238, 52.0293357 8.5180617, 52.0206646 8.5676682, 52.0425279 8.5168567, 52.0270594 8.5966793, 52.0323486 8.6056893, 52.0230896 8.6059771, 52.0500810 8.5586981, 52.0580908 8.4924175, 52.0455684 8.4510738, 52.0421608 8.5307615, 52.0294960 8.5152776, 52.0309613 8.5144666, 52.0586088 8.5516394, 52.0156406 8.5480803, 52.0558267 8.5374208, 52.0308117 8.5117948, 52.0262032 8.6392966, 52.0265579 8.5454510, 52.0152026 8.5416301, 52.0184126 8.5282924, 52.0459863 8.5425744, 52.0754769 8.4692486, 52.0679871 8.5225119, 52.0691401 8.4845397, 52.0191158 8.5773854, 52.0297068 8.6015894, 52.0201494 8.5681889, 52.0186450 8.5755408, 52.0232011 8.5539890, 52.0237894 8.5555069, 52.0313093 8.5114951, 52.0310937 8.5122956, 52.0387363 8.4870857, 52.0339819 8.5272111, 52.0347237 8.5273506, 52.0946122 8.5192946, 52.0987762 8.5011761, 52.0363557 8.4985144, 52.0327248 8.5359890 +477 +161 +memorial +4 +49.4236325 8.6489134, 49.4054825 8.6765974, 49.4085411 8.6936835, 49.4178011 8.7610141, 49.3796459 8.6697617, 49.4278793 8.6839291, 49.4013876 8.6762755, 49.3743030 8.7032001, 49.3734822 8.6802951, 49.4367405 8.6791812, 49.4328280 8.6823664, 49.4276958 8.6865270, 49.4306638 8.6826578, 49.4095154 8.7028510, 49.3790081 8.6915773, 49.4044750 8.6884416, 49.4024626 8.6846545, 49.3989037 8.6901330, 49.3805544 8.6588755, 49.4060908 8.6592832, 49.3734128 8.6805105, 49.3758039 8.6636769, 49.4080952 8.6906263, 49.3640844 8.7046377 +Heidenloch, Römischer Tempel, Freischaren-Schanze, Freischaren-Schanze, Lochheim, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall +no +yes +48.8600225 2.3936303, 48.8631279 2.3912635, 48.8597319 2.3936651, 48.8598029 2.3985154, 48.8597855 2.3942322, 48.8591071 2.3914902, 48.8596833 2.3988939, 48.8627870 2.3936382, 48.8601213 2.3928080, 48.8588033 2.3945025, 48.8623244 2.3917870, 48.8599553 2.3920732, 48.8623521 2.3905310, 48.8611410 2.3949350, 48.8626557 2.3947199, 48.8627718 2.3931199, 48.8624253 2.3954178, 48.8600462 2.3938832, 48.8599858 2.3940879, 48.8592676 2.3937520, 48.8630712 2.3949750, 48.8622181 2.3963152, 48.8597856 2.3928042, 48.8618038 2.3979473, 48.8601567 2.3927356, 48.8745532 2.3997688, 48.8636700 2.3961570, 48.8631900 2.3959850, 48.8640090 2.3946760, 48.8631340 2.3951910, 48.8630490 2.3970150, 48.8629220 2.3974440, 48.8623290 2.3973160, 48.8620890 2.3973800, 48.8619200 2.3982600, 48.8608190 2.3965430, 48.8621460 2.3960710, 48.8627670 2.3962430, 48.8625690 2.3953630, 48.8625410 2.3953840, 48.8621740 2.3956630, 48.8612420 2.3984100, 48.8608330 2.3978950, 48.8606210 2.3980880, 48.8605360 2.3986240, 48.8607900 2.3993750, 48.8604800 2.3994180, 48.8610160 2.3990960, 48.8601410 2.3998690, 48.8599860 2.3999120, 48.8599430 2.3998900, 48.8599157 2.3998601, 48.8598870 2.3998260, 48.8597460 2.3996760, 48.8597030 2.3996110, 48.8595760 2.3988820, 48.8596330 2.3988390, 48.8593930 2.3981520, 48.8601690 2.3998480, 48.8380895 2.2848918, 48.8381983 2.2846836, 48.8392279 2.2918128, 48.8383179 2.2847059, 48.8603950 2.3968860, 48.8602820 2.3969940, 48.8602260 2.3982600, 48.8612140 2.3960710, 48.8613270 2.3953840, 48.8614820 2.3946980, 48.8616660 2.3945260, 48.8611655 2.3949235, 48.8612140 2.3948910, 48.8611860 2.3949120, 48.8618070 2.3951910, 48.8618920 2.3955350, 48.8611290 2.3953200, 48.8611570 2.3952770, 48.8610590 2.3953630, 48.8606490 2.3953200, 48.8605360 2.3954060, 48.8593650 2.3971870, 48.8589830 2.3970370, 48.8628940 2.3934100, 48.8627390 2.3931740, 48.8623570 2.3934100, 48.8620890 2.3935600, 48.8625690 2.3930450, 48.8622870 2.3931960, 48.8615250 2.3925090, 48.8615530 2.3925730, 48.8624140 2.3921230, 48.8635010 2.3912640, 48.8633310 2.3906640, 48.8622020 2.3918220, 48.8613550 2.3923590, 48.8616940 2.3901270, 48.8622870 2.3903420, 48.8617790 2.3912860, 48.8607200 2.3892260, 48.8601130 2.3904280, 48.8605360 2.3911140, 48.8607060 2.3915650, 48.8607223 2.3916025, 48.8607340 2.3916510, 48.8608750 2.3921870, 48.8607480 2.3911790, 48.8607200 2.3911140, 48.8607060 2.3910500, 48.8606490 2.3908780, 48.8605790 2.3905780, 48.8608890 2.3922300, 48.8614120 2.3939470, 48.8609600 2.3928310, 48.8614120 2.3943330, 48.8613527 2.3946884, 48.8609030 2.3946120, 48.8608750 2.3946980, 48.8607900 2.3942040, 48.8611150 2.3943540, 48.8607200 2.3949340, 48.8605650 2.3950620, 48.8605360 2.3951050, 48.8601410 2.3954920, 48.8592520 2.3964570, 48.8590680 2.3966720, 48.8593510 2.3969290, 48.8596890 2.3960710, 48.8588000 2.3963500, 48.8587580 2.3962000, 48.8589830 2.3966720, 48.8588850 2.3968010, 48.8580380 2.3955560, 48.8587290 2.3935170, 48.8587580 2.3930880, 48.8591810 2.3935600, 48.8594350 2.3923590, 48.8593510 2.3912860, 48.8595620 2.3911140, 48.8590400 2.3917370, 48.8593220 2.3914790, 48.8593650 2.3914790, 48.8607620 2.3921660, 48.8605360 2.3924230, 48.8604520 2.3925520, 48.8600560 2.3928090, 48.8605080 2.3931310, 48.8604380 2.3930240, 48.8606350 2.3928090, 48.8604230 2.3929170, 48.8600560 2.3928740, 48.8601705 2.3927894, 48.8602540 2.3934100, 48.8606350 2.3935820, 48.8602120 2.3936030, 48.8601410 2.3939040, 48.8597740 2.3945690, 48.8585320 2.3955990, 48.8601980 2.3952770, 48.8606490 2.3946550, 48.8604800 2.3943760, 48.8598300 2.3954060, 48.8597030 2.3952980, 48.8605360 2.3942900, 48.8594630 2.3950620, 48.8594630 2.3949550, 48.8595200 2.3949980, 48.8597180 2.3947830, 48.8590680 2.3951480, 48.8590960 2.3954700, 48.8587720 2.3960710, 48.8590260 2.3954920, 48.8590960 2.3955770, 48.8597740 2.3955130, 48.8596890 2.3956420, 48.8590120 2.3965860, 48.8589314 2.3964384, 48.8590400 2.3965860, 48.8588420 2.3962640, 48.8590400 2.3957060, 48.8591390 2.3959850, 48.8590400 2.3960920, 48.8591670 2.3962000, 48.8588990 2.3963070, 48.8599400 2.3929300, 48.8611450 2.3938920, 48.8581960 2.3952270, 48.8605580 2.3925470, 48.8621020 2.3942670, 48.8596730 2.3927980, 48.8610650 2.3949100, 48.8601070 2.3930030, 48.8611720 2.3939770, 48.8614040 2.3952430, 48.8608790 2.3933140, 48.8636050 2.3964430, 48.8591120 2.3946450, 48.8597030 2.3956510, 48.8607600 2.3938000, 48.8593520 2.3939080, 48.8610650 2.3934180, 48.8585032 2.3954149, 48.8584651 2.3953018, 48.8583980 2.3953650, 48.8592830 2.3947420, 48.8593664 2.3947165, 48.8596270 2.3943920, 48.8597115 2.3945144, 48.8584840 2.3952396, 48.8585550 2.3961900, 48.8585740 2.3948400, 48.8587570 2.3965220, 48.8586237 2.3963910, 48.8587457 2.3966952, 48.8585780 2.3963770, 48.8590510 2.3971380, 48.8595280 2.3972980, 48.8592570 2.3974000, 48.8595920 2.3973830, 48.8594170 2.3990380, 48.8615073 2.3918887, 48.8611069 2.3916616, 48.8615364 2.3918726, 48.8609848 2.3913417, 48.8629618 2.3902204, 48.8616640 2.3912770, 48.8617058 2.3884516, 48.8596730 2.3944650, 48.8615530 2.3981050, 48.8597415 2.3943819, 48.8609620 2.3968630, 48.8611260 2.3963200, 48.8628596 2.3928690, 48.8613050 2.3968980, 48.8628120 2.3929370, 48.8614690 2.3970200, 48.8610990 2.3973950, 48.8628360 2.3931780, 48.8618534 2.3934719, 48.8603710 2.3963320, 48.8614688 2.3925529, 48.8589100 2.3968930, 48.8630280 2.3949170, 48.8586723 2.3951535, 48.8587444 2.3947978, 48.8585366 2.3952915, 48.8584981 2.3952292, 48.8584645 2.3952683, 48.8588825 2.3967505, 48.8400702 2.3271875, 48.8400754 2.3271720, 48.8380080 2.3265179, 48.8378801 2.3273132, 48.8372444 2.3276178, 48.8374191 2.3283155, 48.8381622 2.3271449, 48.8377236 2.3252931, 48.8605280 2.3969170, 48.8358381 2.3286537, 48.8462169 2.3464400, 48.8464367 2.3461084, 48.8464358 2.3461112, 48.8460335 2.3463612, 48.8604789 2.3396192, 48.8605536 2.3395647, 48.8604509 2.3396043, 48.8604957 2.3395787, 48.8604596 2.3396602, 48.8603995 2.3395784, 48.8604239 2.3395906, 48.8604383 2.3395984, 48.8604619 2.3396094, 48.8604721 2.3396151, 48.8604860 2.3396229, 48.8604945 2.3396278, 48.8605318 2.3396927, 48.8605030 2.3395818, 48.8605019 2.3396321, 48.8604105 2.3395845, 48.8608045 2.3398019, 48.8607982 2.3397874, 48.8608013 2.3397996, 48.8608024 2.3398005, 48.8608034 2.3398013, 48.8608056 2.3398026, 48.8608065 2.3398034, 48.8608087 2.3398049, 48.8608103 2.3398061, 48.8607925 2.3397934, 48.8607823 2.3397872, 48.8607848 2.3397881, 48.8604062 2.3395311, 48.8605097 2.3395860, 48.8612866 2.3948323, 48.8611197 2.3929716, 48.8595742 2.3949400, 48.8623225 2.3943663, 48.8631335 2.3933669, 48.8583882 2.3956719, 48.8605313 2.3396277, 48.8591916 2.3918972 +49.4102265 8.6939011, 49.4099021 8.7003337, 49.4104740 8.7059723 +99 +48.8834296 2.3531464 +55.9918052 -3.3860654, 55.9951617 -3.3732725, 55.9950208 -3.4111205, 55.9938394 -3.4136276, 55.9833029 -3.1759417, 55.9405506 -3.2128984, 55.9408017 -3.2123133, 55.9408588 -3.2121518, 55.9406762 -3.2125446, 55.9409715 -3.2118284, 55.9409148 -3.2119933, 55.9406135 -3.2127202, 55.9834389 -3.1722248, 55.9901233 -3.1821068, 55.9742425 -3.1800365, 55.9776177 -3.1714457, 55.9942065 -3.4103941, 55.9426631 -3.2081241, 55.9425729 -3.2079614, 55.9235675 -3.2338755, 55.9244798 -3.2473711, 55.9232306 -3.3792832, 55.9414442 -3.2104954, 55.9199400 -3.4326795, 55.9810970 -3.1962090, 55.9814428 -3.1963861, 55.9815073 -3.1957746 +3 +49.4333190 8.6867073, 49.4199838 8.7597906, 49.3967496 8.6929283, 49.3758602 8.6941971, 49.4437081 8.7590947, 49.4213792 8.7463131, 49.3924724 8.6994716, 49.4143929 8.7631903, 49.4078072 8.7077293, 49.4127417 8.7657609 +48.8832844 2.3022074, 48.8556200 2.3068506, 48.8950280 2.3447570, 48.8673061 2.3458878, 48.8702836 2.3508959, 48.8363545 2.3536716, 48.8522718 2.3406371, 48.8346500 2.3172863, 48.8319392 2.3309271, 48.8445352 2.3242726, 48.8414313 2.3069539, 48.8378972 2.3017072, 48.8355703 2.2859671, 48.8476672 2.3527426, 48.8460795 2.3742445, 48.8438489 2.3721964, 48.8526670 2.3323656, 48.8494031 2.3370695, 48.8249137 2.3571341, 48.8260261 2.3459422, 48.8501935 2.3250319, 48.8227135 2.3260702, 48.8189756 2.3612028, 48.8469142 2.3813987, 48.8842024 2.3388617, 48.8448696 2.2974529, 48.8568210 2.3523008, 48.8500524 2.3076923, 48.8586271 2.3007824, 48.8296368 2.2975779, 48.8697560 2.3414883, 48.8797179 2.3570269, 48.8413622 2.3437999, 48.8415875 2.3505588, 48.8686452 2.3957029, 48.8728505 2.3993800, 48.8352367 2.3263118, 48.8742224 2.3396921, 48.8337013 2.3466308, 48.8463962 2.3870738, 48.8632649 2.3858206, 48.8414439 2.2869114, 48.8767699 2.2867318, 48.8802563 2.2982452, 48.8294672 2.3084779, 48.8587218 2.4028880, 48.8521928 2.4013589, 48.8467299 2.2847703, 48.8724892 2.3267639, 48.8835954 2.3291657, 48.8923205 2.3416630, 48.8770457 2.4050940, 48.8659081 2.3781743, 48.8593821 2.3790898, 48.8743311 2.3737383, 48.8305048 2.3677879, 48.8518448 2.3890950, 48.8198243 2.3386394, 48.8624613 2.3594619, 48.8529864 2.3827830, 48.8212165 2.3424964, 48.8747784 2.3848811, 48.8398751 2.3939229, 48.8394177 2.3984809, 48.8354853 2.3854944, 48.8646806 2.4060380, 48.8239587 2.3634647, 48.8910508 2.3191148, 48.8914069 2.3267388, 48.8833930 2.3812455, 48.8708265 2.3779442, 48.8557679 2.3464388, 48.8594808 2.3467106, 48.8625411 2.3496651, 48.8521023 2.3568721, 48.8577587 2.3558712, 48.8777176 2.3937456, 48.8639803 2.3651991, 48.8476074 2.3428362, 48.8575593 2.3848465, 48.8418918 2.3218739, 48.8807422 2.3649558, 48.8694004 2.3648970, 48.8688629 2.3592316, 48.8590770 2.3279978, 48.8478715 2.3198313, 48.8299140 2.3786838, 48.8701399 2.3208052, 48.8791820 2.3141155, 48.8707001 2.3083322, 48.8738936 2.3008712, 48.8461742 2.4105318, 48.8765925 2.3611628, 48.8687959 2.2895729, 48.8681029 2.2819378, 48.8612043 2.2751645, 48.8759825 2.3462270, 48.8256117 2.3156483, 48.8846736 2.3626003, 48.8412041 2.3167359, 48.8838977 2.2893818, 48.8447043 2.2574488, 48.8388336 2.2570514, 48.8562928 2.4086751, 48.8613711 2.3348960, 48.8724460 2.3296815, 48.8770249 2.3413662, 48.8673989 2.3038079, 48.8768924 2.3218191, 48.8626137 2.3716303, 48.8577490 2.3740410, 48.8544587 2.3716617, 48.8434438 2.2775683, 48.8465081 2.4010506, 48.8383375 2.4059297, 48.8917953 2.3346857, 48.8982438 2.3586188, 48.8722045 2.3371834, 48.8677158 2.3837011, 48.8485984 2.2616822, 48.8581577 2.2877816, 48.8658810 2.2957521, 48.8524932 2.2753573, 48.8671349 2.2739152, 48.8565975 2.2717002, 48.8640768 2.2926880, 48.8649634 2.2873793, 48.8414706 2.2667764, 48.8369118 2.2971635, 48.8523889 2.2926023, 48.8348381 2.3051360, 48.8608328 2.3202142, 48.8609201 2.3180354, 48.8555779 2.3258692, 48.8570577 2.3190096, 48.8688688 2.3293533, 48.8617696 2.3477277, 48.8750802 2.3235709, 48.8561278 2.3314027, 48.8491689 2.3364515, 48.8842925 2.3209233, 48.8963707 2.3196241, 48.8891032 2.3083901, 48.8839542 2.3137640, 48.8799650 2.2946628, 48.8602752 2.3525888, 48.8648255 2.3978523, 48.8987342 2.3363211, 48.8933357 2.3510120, 48.8878706 2.3493757, 48.8847676 2.3506962, 48.8900150 2.3386297, 48.8975554 2.3349479, 48.8995298 2.3700602, 48.8722691 2.3468122, 48.8831291 2.3341159, 48.8810244 2.3451276, 48.8251592 2.3753556, 48.8410007 2.3779168, 48.8768622 2.3589369, 48.8758269 2.3554902, 48.8843019 2.3905346, 48.8927700 2.3745823, 48.8839103 2.3739430, 48.8886607 2.3737892, 48.8691728 2.4085455, 48.8361192 2.2976662, 48.8886357 2.3901364, 48.8928033 2.3785257, 48.8725254 2.3564163, 48.8904169 2.3596324, 48.8420324 2.3637585, 48.8666934 2.3539857, 48.8572232 2.3616056, 48.8947703 2.3652163, 48.8519206 2.2919652, 48.8478953 2.3316238, 48.8407489 2.3325635, 48.8297226 2.3219729, 48.8579662 2.2945015, 48.8656127 2.3609051, 48.8398794 2.3222566, 48.8482686 2.2900770, 48.8418713 2.2668542, 48.8640694 2.3487228, 48.8413844 2.2869823, 48.8455743 2.3050037, 48.8647293 2.3437855, 48.8646150 2.3358501, 48.8531446 2.3665394, 48.8691228 2.3722077, 48.8731641 2.3135886, 48.8769406 2.3357171, 48.8499033 2.3749234, 48.8568674 2.2763388, 48.8286079 2.3568587, 48.8368162 2.3928761 +30 mph +48.9012005 2.3862959, 48.8801709 2.3706981, 48.8593908 2.3144172, 48.8609726 2.2828299, 48.8611046 2.3413657, 48.9003252 2.3734463, 48.8804901 2.2865619, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8645440 2.4097670, 48.9007525 2.3748724, 48.8635035 2.4085486, 48.8635857 2.2722338, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8595020 2.3116861, 48.8787212 2.3698437, 48.8820806 2.3381707, 48.8656358 2.2892405, 48.8786755 2.3549221, 48.8797035 2.3026873, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8936152 2.3152934, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.8711680 2.3244832, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.8720375 2.2998901, 48.8738003 2.2922634, 48.8751861 2.3096416, 48.8720375 2.2998901, 48.8738003 2.2922634, 48.8751861 2.3096416, 48.8941507 2.3733344, 48.8679452 2.4057911, 48.8711283 2.4085012, 48.8635007 2.3703277, 48.8937900 2.3314100, 48.8631933 2.3689292, 48.8649231 2.3755432, 48.8873385 2.3222062, 48.9007173 2.3745755, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8936129 2.3029112 +Cowdenbeath, South Queensferry, Linlithgow, Kincardine, Broxburn, Bathgate, Polton, Grangemouth, Bo'ness, Inverkeithing, Dalgety Bay, Rosyth, Bonnyrigg, Loanhead, Haddington, Penicuik, Musselburgh, Cockenzie and Port Seton, Gullane, Dalkeith, Livingston, Mid Calder, East Calder, Whitburn, Blackburn, West Calder, Fauldhouse, Prestonpans, Tranent, Armadale, Gorebridge, Mayfield, Newtongrange, Eskbank, Polmont, Lasswade +48.0843405 1.8516661, 48.0842975 1.8516532, 48.3634720 1.4444762, 48.3633107 1.4440969, 48.3090898 0.8101983, 48.4391987 1.4310492, 48.4438257 1.2435743, 48.4551854 1.5391428, 48.4550506 1.5390148, 48.2034446 1.3965531, 48.7450953 1.3465073, 48.7450288 1.3465364, 48.2041014 1.8493980, 48.2999243 1.2898661, 48.2856652 1.2503363, 48.2806148 1.2225198, 48.2800124 1.6183789, 48.0715594 1.3225756, 48.1293202 1.8532335, 48.2693592 1.1573085, 48.3892052 1.4934020, 48.3895541 1.4932054, 48.4271283 1.5158383, 48.4272198 1.5156725, 48.1637076 1.2647788, 48.3576867 1.4338803, 48.2544459 1.5705178, 48.0964603 1.8517115, 48.4156457 1.4892388, 48.4162429 1.5034164, 48.4143664 1.5057059, 48.1825735 1.3757520, 48.2632013 1.5930746, 48.3532908 1.4265631, 48.1806158 1.3747250, 48.0675193 1.2906117, 48.2069451 1.8485104, 48.4781262 1.4607501, 48.4535767 1.2953431, 48.7640966 1.3132549, 48.2832224 1.6280084, 48.4383314 1.5246435, 48.4468667 1.4788401, 48.3901942 1.7298268, 48.1105340 1.3319487, 48.4632188 1.4998341, 48.4659463 1.5066438, 48.3785954 1.4828822, 48.4161166 1.4771368, 48.0740104 1.3616631, 48.4568587 1.4826879, 48.2475820 1.5440602, 48.4513703 1.4448174, 48.2401186 1.5169750, 48.4492426 1.4904726, 48.2486754 1.1179446, 48.2331282 1.4901118, 48.3203285 0.8051680, 48.4458166 1.2350335, 48.4433598 1.2420607, 48.4391932 1.4309164, 48.4570303 1.4509779, 48.1904330 1.3353860, 48.3223013 1.8632060, 48.2543193 1.5705637, 48.2757180 1.6234395, 48.1775018 1.3793555, 48.2040697 1.8494049, 48.3348687 0.8176667, 48.1872589 1.3201202, 48.2168835 1.4325651, 48.1962959 1.0911905, 48.1794701 1.2987100, 48.2106265 1.1624752, 48.2084923 1.1591442, 48.3221267 1.6678925, 48.4731048 1.6040268, 48.4894113 1.5380927, 48.1963001 1.0981460, 48.1968889 1.0975920, 48.1947865 1.0689477, 48.1935748 1.0698455, 48.1871866 1.0458453, 48.1871223 1.0509226, 48.1900625 1.0581630, 48.2106023 1.1100587, 48.1995584 1.1160835, 48.2004834 1.1155760, 48.2010401 1.1152619, 48.2059666 1.1275207, 48.2078779 1.1355348, 48.2084109 1.1207323, 48.2103535 1.1013451, 48.2100796 1.1121090, 48.2096161 1.1402341, 48.2120405 1.1473697, 48.2121332 1.1532022, 48.2125462 1.1593680, 48.2098871 1.0867530, 48.2334847 1.0399341, 48.2333927 1.0401108, 48.2322909 1.0341270, 48.1862854 1.0086807, 48.1727366 0.9992126, 48.1724930 0.9979646, 48.1729260 1.0214302, 48.1842903 1.0479504, 48.1871074 1.0206582, 48.1868218 1.0387459, 48.2287232 1.4736829, 48.3294431 1.3825318, 48.5275940 1.0273486, 48.4645219 1.4828255, 48.4691914 1.5145482, 48.4615172 1.4943654, 48.4374840 1.4150964, 48.4520187 1.4458254, 48.4460522 1.4725078, 48.4465773 1.4671375, 48.4460603 1.4673988, 48.4439314 1.4657609, 48.4542788 1.4483370, 48.4614819 1.4553185, 48.4381387 1.4532784, 48.4424128 1.4516460, 48.2988415 1.8615469, 48.3288402 0.7988397, 48.3346487 0.8179752, 48.8598809 1.4038341, 48.4465792 1.5307528, 48.4521257 1.4838056, 48.4584810 1.4876866, 48.4330586 1.4924879, 48.1806344 1.3817390, 48.1833120 1.3838413, 48.4454252 1.4926736, 48.4469583 1.4918402, 48.4469302 1.4936845, 48.4469151 1.4933052, 48.4546304 1.4839991, 48.4624190 1.4819697, 48.4640214 1.4831040, 48.4631220 1.4841448, 48.4592278 1.4898047, 48.4588196 1.4907004, 48.4529511 1.4903462, 48.5498237 1.0300964, 48.1935903 1.3917793, 48.2257416 1.1758624, 48.1967095 1.3716422, 48.1930807 1.3530002, 48.1577871 1.2501317, 48.2082347 1.1898048, 48.2214721 1.4461878, 48.1943170 1.3608285, 48.2087707 1.1646492, 48.2731424 1.6079429, 48.4424555 1.4942771, 48.1720956 1.0168141, 48.1830829 0.9645850, 48.1859763 0.9810924, 48.1862491 0.9967439, 48.1823985 0.9559790, 48.1780392 1.8542274, 48.4393078 1.5002210, 48.4419654 1.4987456, 48.4436044 1.4961478, 48.3618146 1.1357971, 48.9173361 1.4926155, 48.7150723 1.3677673, 48.1903936 0.9341271, 48.1909690 0.9328489, 48.1718135 0.9804996, 48.1718313 0.9720534, 48.1722624 0.9651040, 48.1720555 0.9492426, 48.1735595 0.9562174, 48.2206300 0.9624339, 48.2093787 0.9308883, 48.1980415 1.8512274, 48.1895642 1.8532898, 48.1093173 1.3374097, 48.2318147 1.8488774, 48.7395328 1.3689272, 48.7418660 1.3757489, 48.8201457 1.3593555, 48.8612797 1.4229397, 48.4543906 1.4904051, 48.4537794 1.4911526, 48.4538725 1.4910121, 48.1807804 1.3891995, 48.1820987 1.3888362, 48.1798285 1.3871839, 48.1798161 1.3890830, 48.2136652 1.2309553, 48.2105588 1.2490264, 48.2153970 1.0554300, 48.2132553 1.0632878, 48.2176213 1.0391332, 48.2171034 1.0130321, 48.2308790 1.0204333, 48.2241358 0.9796079, 48.1961479 1.0898435, 48.2030098 0.8932894, 48.1672194 0.9358151, 48.3384590 1.8674987, 48.4281911 1.7644205, 48.4486735 1.7908682, 48.4508879 1.7860990, 48.2394174 1.0726545, 48.1851974 1.0426517, 48.7601426 1.5150503, 48.8485610 1.5240961, 48.2095275 1.1638064, 48.2086614 1.1654995, 48.2087279 1.1647970, 48.4708045 1.4931683, 48.2057211 1.1797547, 48.2080503 1.1698283, 48.2086619 1.1660235, 48.4438562 1.4656888, 48.3983559 1.4872365, 48.4914501 1.5904421, 48.4934615 1.6778847, 48.5115889 1.7632885, 48.6004922 1.6755514, 48.4656778 1.5717267, 48.4866511 1.6594969, 48.7374396 1.4154121, 48.5682771 1.5933435, 48.7212106 1.4179156, 48.7019630 1.3445490, 48.7082444 1.4239005, 48.2802436 1.8585158, 48.2654306 1.8528604, 48.5619935 1.0300248, 48.1423995 1.9132167, 48.0792039 1.1332806, 48.0769466 1.1403842, 48.0760918 1.1413983, 48.0886169 1.1227140, 48.0887950 1.1232395, 48.0769434 1.1249208, 48.0690723 1.1303498, 48.0879206 1.1206368, 48.0878806 1.1206668, 48.0861488 1.1228792, 48.0861026 1.1228238, 48.0911631 1.1217791, 48.0969602 1.1259293, 48.0957659 1.1434943, 48.0810642 1.3318138, 48.0837706 1.3389849, 48.0359084 1.2736162, 48.0878308 1.3301961, 48.0739971 1.3213741, 48.0601380 1.3451955, 48.0865509 1.3528851, 48.0677895 1.2950501, 48.0954226 1.3365682, 48.4516192 1.4901383, 48.4499351 1.4902463, 48.4509817 1.4916513, 48.4482826 1.4911159, 48.4445900 1.4937793, 48.4438310 1.4959260, 48.4448610 1.4955440, 48.4500930 1.4913781, 48.4336756 1.4929244, 48.4585193 1.4909708, 48.4616415 1.4832882, 48.4607283 1.4839313, 48.4624299 1.4819197, 48.5071496 1.4635719, 48.4555452 1.7960234, 48.4539982 1.7981341, 48.4619596 1.8122235, 48.6307434 1.4126334, 48.2632102 1.7617362, 48.3573699 1.6104690, 48.2400520 1.0829658, 48.4290111 1.9028543, 48.1358374 0.9775138, 48.1363663 0.9815642, 48.7427023 1.5888652, 48.7727834 1.5546424, 48.7830689 1.5755487, 48.7829459 1.5755817, 48.1377511 0.9875665, 48.6744694 1.3835015, 48.7508848 1.4455038, 48.7507738 1.4455127, 48.7621381 1.4131696, 48.7540891 1.4568896, 48.4987577 1.6903064, 47.9906514 1.2545075, 47.9962698 1.2597897, 47.9861315 1.2470133, 48.2483407 1.8515642, 48.2485162 1.8513487, 48.2133566 1.8471773, 48.2400078 1.8507771, 48.8349270 1.3651623, 48.3617964 1.8792363, 48.4073062 1.8953031, 48.3532037 1.8740723, 48.4143368 1.8974174, 48.4451180 1.7436754, 48.3761771 1.7139844, 48.3288228 1.6733964, 48.3559274 1.6932395, 48.6433866 1.4033215, 48.7170492 1.3771616, 48.8436645 1.3810541, 48.7317495 1.3627510, 48.7347146 1.3628805, 48.4794759 1.4610359, 48.4795088 1.4608291, 47.9871247 1.2489563, 48.2006359 0.8817417, 48.3902968 1.7296167, 48.4387203 1.7736310, 48.4357387 1.7264684, 48.6044852 1.6764659, 48.6047343 1.6776367, 48.6056601 1.6786023, 48.6076342 1.6811250, 48.6094321 1.7073012, 48.7895005 1.5760710, 48.7368700 1.3836098, 48.8616552 1.4175168, 48.8658673 1.4291425, 48.8431789 1.3815951, 48.8627873 1.4400855, 48.7644535 1.3137446, 48.1436327 1.0479263, 48.1446398 1.0438524, 48.3784586 1.8879329, 48.5327668 1.4552183, 48.5964801 1.6344961, 48.2943438 1.2784344, 48.1238755 1.1830063, 48.1203418 1.1789078, 48.2646069 1.1464120, 48.4665860 0.9721291, 48.4680964 0.9833235, 48.4692749 0.9917513, 48.9178051 1.5163564, 48.7687669 1.4010983, 48.4432797 1.4586460, 48.4263803 1.4345241, 48.4263450 1.4343908, 48.2783751 1.2038212, 48.2785049 1.2038943, 48.2859335 1.2109996, 48.3028844 1.2394689, 48.3028596 1.2394869, 48.2330824 1.1841121, 48.3909110 1.2074193, 48.8165842 1.5626415, 48.8227708 1.5562821, 48.8230971 1.5568726, 48.5892604 1.5785545, 48.5860031 1.5774820, 48.1499364 1.3998178, 48.1511375 1.4008810, 48.1283145 1.1895873, 48.2687237 1.7554738, 48.2687963 1.7555788, 48.7607313 1.3283222, 48.1200348 1.5164207, 48.7571201 1.0593963, 48.7630168 1.2330016, 48.7619868 1.2307431, 48.7697041 1.1973535, 48.7594087 1.2197692, 48.7690072 1.1998653, 48.7633865 1.2243158, 48.7568745 1.4817572, 48.2758000 1.6233580, 48.2758830 1.6233161, 48.2757436 1.6234125, 48.2757673 1.6233850, 48.8413849 1.4922311, 48.7618946 1.1344644, 48.6035213 1.6962877, 48.6038889 1.6958545, 48.7492012 1.4084464, 48.7508203 1.4157200, 48.7492740 1.4083049, 48.7509154 1.4156900, 48.7459726 1.3960136, 48.7456448 1.3952102, 48.4420751 1.4989362, 48.4556997 1.4915385, 48.4706119 1.4894945, 48.5962086 1.6154260, 48.9189505 1.4642931, 48.5800278 1.5814336, 48.5883483 1.5791331, 48.5850681 1.5781057, 48.5817149 1.5806846, 48.5828744 1.5864487, 48.5846561 1.5791234, 48.5852779 1.5783029, 48.5857035 1.5781314, 48.5845146 1.5783536, 48.5785051 1.5814940, 48.5781910 1.5842706, 48.5855768 1.5840847, 48.5891156 1.5937111, 48.5796458 1.5936179, 48.5887061 1.5730446, 48.6303549 1.5123061, 48.4858586 1.5268474, 48.7387647 1.3344359, 48.5612943 1.5099262, 48.5562795 1.5088278, 48.5417197 1.4933979, 48.5629140 1.5082652, 48.5686432 1.5014794, 48.3402518 1.3474079, 48.3193902 1.3433670, 48.3144491 1.3216928, 48.3330130 1.3910728, 48.6458010 1.5425057, 48.6500512 1.5445534, 47.9960173 1.2330143, 48.0110352 1.2352850, 48.4783101 1.6303488, 48.4678695 1.5800519, 48.5098261 1.7453193, 48.3484299 1.6877878, 48.0663212 1.3379550, 48.0663284 1.3379163, 48.0866822 1.3250947, 48.1932315 0.8532599, 48.4860872 1.0589912, 48.4766655 1.1449504, 48.4516866 1.2313903, 48.4157788 1.4872052, 48.4156604 1.4871839, 48.4161089 1.4788356, 48.4159687 1.4788327, 48.4158166 1.4827704, 48.4159441 1.4828103, 48.4237280 1.4843067, 48.4350351 1.4850487, 48.3693543 1.2313848, 48.3777903 1.2321079, 48.4242698 1.2319935, 48.4264831 1.2401531, 48.4270678 1.2534320, 48.4292906 1.2736696, 48.4517014 1.4862557, 48.4495182 1.4936334, 48.4832358 1.0361872, 48.5042208 1.0253641, 48.4794856 1.0191569, 48.4791294 1.0197163, 48.4640670 1.1943546, 48.4654472 1.1961144, 48.4522688 1.4910912, 48.1385666 1.2067109, 48.2898283 1.2665462, 48.0755319 1.0697377, 48.4492264 1.2905124, 48.5081392 1.0206523, 48.4433783 1.2104106, 48.4798510 1.1597339, 48.4459606 1.2314837, 48.6763169 1.4636419, 48.6769680 1.4741718, 48.5153087 0.9895117, 48.4737212 1.1610821, 48.4916829 1.5333225, 48.6446760 0.9342008, 48.4478748 1.3303765, 48.6683749 1.4977366, 48.3115236 0.8206040, 48.3244133 0.8089273, 48.3168358 0.7971910, 48.3178707 0.7961281, 48.1027073 1.8514071, 48.7422926 1.3190808, 48.7422202 1.3192275, 48.1723500 1.2833042, 48.4436345 1.9087713, 48.3688085 1.4580360, 48.3734994 1.4701515, 48.4110738 1.7493703, 48.4458999 1.7865767, 48.5031107 1.6190166, 48.4997925 1.6114044, 48.5141816 1.6446348, 48.5962346 1.4239362, 48.1994290 1.3818580, 48.7512742 1.4156030, 48.7528348 1.4506420, 48.7467213 1.4173998, 48.7494643 1.4300620, 48.7517949 1.4184551, 48.7512294 1.4156355, 48.7517671 1.4184670, 48.7317079 1.4184431, 48.7335716 1.4179845, 48.7297375 1.3668655, 48.7297739 1.3668588, 48.7298138 1.3668454, 48.2692940 1.2680420, 48.2579330 1.2720985, 48.2687176 1.2673716, 48.2623531 1.2806883, 48.2789350 1.2539336, 48.2586986 1.2748530, 48.2743759 1.2567214, 48.2901657 1.3180781, 48.2761530 1.2744818, 48.7148629 1.4327769, 48.7279706 1.3889336, 48.7368287 1.3836394, 48.7367890 1.3836644, 48.7453826 1.3949182, 48.6353577 1.5607061, 48.7745640 1.3465635, 48.3148678 0.7992779, 48.5170758 0.9794413, 48.7676945 1.2452235, 48.7675029 1.2442214, 48.7666930 1.2454151, 48.7465105 1.3828935, 48.7465709 1.3830411, 48.7460069 1.3895928, 48.7156463 1.3528618, 48.7156000 1.3527496, 48.7426978 1.3459456, 48.7342605 1.3866265, 48.0942882 1.5129314, 48.1345344 0.9722245, 48.5922934 0.9086983, 48.3875106 1.1212244, 48.1923446 1.9394272, 48.1525637 1.5978859, 48.1208939 1.5450524, 48.1090935 1.4823789, 48.1099283 1.5068616, 48.1298953 1.5697194, 48.1156238 1.4399875, 48.1101000 1.4290050, 48.1497723 1.6558110, 48.1540567 1.6317286, 48.6547891 1.2565297, 48.6506087 1.2157617, 48.7029078 1.3434978, 48.6780679 1.3176014, 48.6347988 0.9888437, 48.6503313 1.0131508, 48.3470506 1.6269478, 48.4468210 1.4789483, 48.4661452 1.4851003, 48.4506123 1.4902125, 48.4438475 1.4944572, 48.4430415 1.4980146, 48.4437026 1.4969840, 48.4438425 1.4973813, 48.4431599 1.4974032, 48.4435666 1.4962377, 48.2845645 1.6271581, 48.2350355 1.4972412, 48.4301529 1.5048675, 48.4308430 1.5009460, 48.7378384 1.3688163, 48.7392265 1.3684309, 48.6078989 1.6842001, 48.6072486 1.6864655, 48.6079177 1.6841421, 48.6013821 1.7031632, 47.9830400 1.2822379, 47.9856150 1.3046469, 47.9778729 1.2582126, 47.9763162 1.3275978, 48.7605248 1.5700487, 48.7597408 1.5660632, 48.2078487 1.3291624, 48.1950313 1.3644507, 48.1920857 1.3709906, 48.2067039 1.2896780, 48.2069438 1.3077202, 48.2105979 1.2932806, 48.2071428 1.2858757, 48.2063321 1.2877849, 48.2835395 1.1526792, 48.4223116 1.2140030, 48.5056070 1.3493083, 48.4871113 1.0118267, 48.4939038 1.0189164, 48.4951571 1.0185534, 48.5259370 1.6932314, 48.5244027 1.6915195, 48.5241091 1.6857225, 48.5273462 1.6732396, 48.5240703 1.6856085, 48.4470362 1.4960230, 48.2835308 1.2394677, 48.6864403 1.0667075, 48.6951770 1.0795658, 48.7108230 1.0904478, 48.4364319 1.4796590, 48.4382006 1.4730734, 48.4356740 1.4825941, 48.4864109 1.7406431, 48.4899994 1.7323690, 48.4345946 1.4946684, 48.5211991 1.7449406, 48.5217091 1.7446465, 48.5218901 1.7482961, 48.5176104 1.7101297, 48.5179251 1.6992604, 48.4456719 1.4947115, 48.3291910 1.6510035, 48.4640366 1.4830712, 48.4519148 1.4837828, 48.4521306 1.4837572, 48.4521410 1.4836582, 48.5762793 1.5041534, 48.3855704 1.2336704, 48.3962604 1.2154725, 48.4975478 1.0582088, 48.6032959 1.6731815, 48.3861744 1.4775925, 48.7156819 0.8768385, 48.7744560 1.3466811, 48.7663261 1.1583551, 48.7613934 1.2297404, 48.4896866 1.5836171, 48.1690863 0.8326436, 47.9764661 1.2539912, 47.9865523 1.2477317, 47.9967724 1.2406049, 48.4656554 0.9647699, 48.4644066 0.9558621, 48.4684584 0.9854847, 48.7628492 1.2379364, 48.3506384 0.8488761, 48.6705305 0.8481390, 48.6726304 0.8494744, 48.6826076 0.8796183, 48.6789010 0.8649456, 48.6816088 0.8754314, 48.5190320 1.6822693, 48.1973693 1.0909382, 48.6517761 1.5264590, 48.6486478 1.5432671, 48.6506818 1.5361150, 48.2867417 1.6317288, 48.4991412 1.0150051, 48.2844343 1.2444990, 48.2845456 1.2443652, 48.8482297 1.4642728, 48.1838759 1.9348874, 48.4335596 1.4928141, 48.5925868 1.5964286, 48.4681980 1.4830354, 48.4679911 1.4837896, 48.4452476 1.4839687, 48.4453889 1.4841059, 48.6065464 1.4208198, 48.4621636 1.4853747, 48.5023629 1.1954425, 48.4801501 1.1295117, 48.0273443 1.2560778, 48.4544846 1.2967169, 48.4569679 1.2921342, 48.6518352 1.2078313, 48.4791682 1.5045178, 48.4791482 1.5045576, 48.4165775 1.3554040, 48.1802252 1.3840426, 48.5202181 1.7651459, 48.2168699 1.3818879, 48.2923823 0.8237943, 48.5489066 1.4929922, 48.5452650 1.4735723, 48.5260206 1.4884351, 48.6979977 0.9481873, 48.2080500 1.4123381, 48.1435030 1.4020243, 48.1455767 1.2171817, 48.1073837 1.1664543, 48.1521523 1.2311191, 48.2057749 1.2041528, 48.3018738 1.0823795, 48.1302205 1.0827274, 48.7356230 1.3421397, 48.7344321 1.3446478, 48.7355864 1.3422558, 47.9923659 1.2324185, 48.1820644 1.3847079, 48.1827878 1.3874679, 48.1808744 1.3857293, 48.1831851 1.3862120, 48.1818889 1.3785094, 48.3918449 1.1738434, 48.3925420 1.1776216, 48.3922627 1.1758879, 48.3935885 1.1826232, 48.3033115 1.2413287, 48.3033413 1.2413118, 48.2996998 1.2392848, 48.2971299 1.2450944, 48.2969691 1.2433349, 48.2929930 1.2440721, 48.2508997 1.3145256, 48.2096402 1.3464606, 48.2089588 1.3462590, 48.3948106 1.2056395, 48.3228600 1.2242280, 48.3843620 1.2192812, 48.3967433 1.2191649, 48.3571979 1.2290984, 48.3459692 1.2343988, 48.3507879 1.2307415, 48.0581930 1.6146145, 48.3398197 1.1533005, 48.3426300 1.1767847, 48.3430034 1.1830786, 48.3162632 1.1975847, 48.3141275 1.2138854, 48.3111882 1.2177123, 48.3405978 1.1148765, 48.3190842 1.1455771, 48.3298151 1.1265662, 48.3159454 1.1490037, 48.3236823 1.1050243, 48.3234195 1.1077313, 48.3143590 1.1320817, 48.3077813 1.1464594, 48.2969161 1.0635728, 48.2949570 1.0980591, 48.2493747 1.3214720, 48.4453734 1.2417600, 48.4466196 1.2421721, 48.3274753 1.0502716, 48.3394223 1.0562486, 48.3260051 1.0650136, 48.3094305 1.0935407, 48.2975177 1.0961476, 48.2958931 1.0981971, 48.2852393 1.2102351, 48.2637294 1.0964816, 48.2629211 1.0989440, 48.2633169 1.1138636, 48.2531858 1.1912039, 48.2583755 1.2154481, 48.2283113 1.3639843, 48.2295675 1.3697276, 48.2316442 1.3657649, 48.2209826 1.3762353, 48.3323300 1.3288791, 48.4621308 1.1909610, 48.1963451 1.3821766, 48.7445525 1.0461831, 48.7317320 1.0190795, 48.7646261 1.1483258, 48.6481986 1.5304508, 48.6526936 1.5255837, 48.6538123 1.5210418, 48.6008347 1.6649601, 48.5995716 1.6763886, 48.6010618 1.6647018, 48.3271155 0.8171662, 48.0842385 1.3611118, 48.0943510 1.3474342, 48.0598249 1.3375592, 48.1103175 1.3384734, 48.1122911 1.3416004, 48.1071474 1.3360773, 48.1108405 1.3301120, 48.1785145 1.3862871, 48.5837204 1.4286469, 48.1479135 1.8558582, 48.3494143 0.8436469, 48.5324200 0.9333882, 48.5028044 1.6426651, 48.1762276 1.2919780, 48.4262766 1.5141654, 48.1004840 1.1554996, 48.1904708 1.3353833, 48.1943499 1.3607892, 48.1950693 1.3644322, 48.1994633 1.3818325, 48.2034883 1.3965537, 48.2544847 1.5705020, 48.2509605 1.5568886, 48.2980612 1.6491657, 48.2980822 1.6491147, 48.2867898 1.6317194, 48.2846065 1.6271354, 48.3092408 1.6593938, 48.3092567 1.6593394, 48.3093070 1.6591556, 48.3902183 1.7297823, 48.4379765 1.7741102, 48.4659821 1.6516449, 48.4446695 1.8004961, 48.0837688 1.3390501, 48.7710598 1.3841647, 48.7011110 1.4422828, 48.5958539 1.6061276, 48.5485955 1.5931692, 48.5932449 1.6590397, 48.5194122 1.5695741, 48.5151215 1.5637173, 48.5952643 1.6430052, 48.5344960 1.5858147, 48.5526192 1.5936871, 48.5038983 1.5462638, 48.5614198 1.5930634, 48.9144197 1.5162262, 48.9148563 1.5165512, 48.9144034 1.5156884, 48.9053734 1.5141654, 48.2916457 1.2719962, 48.7920591 1.3768649, 48.4481628 1.2051159, 48.4454480 1.2592578, 48.4458528 1.2492656, 48.4925202 1.0875319, 48.4921702 1.0890722, 48.4380975 1.3238065, 48.4170290 1.3522755, 48.3927388 1.4126147, 48.4099364 1.3828992, 48.3798389 1.4484648, 48.4001676 1.3849929, 48.4156984 1.3615662, 48.5050582 1.0317446, 48.4088398 1.3802353, 48.9142658 1.5158406, 48.9197209 1.5193364, 48.9145614 1.5123495, 48.3900681 1.4685433, 48.3239082 0.8134067, 48.8421993 1.5425607, 48.8442780 1.5236170, 48.5906176 1.2923726, 48.6280956 1.2852999, 48.6755808 1.4656942, 48.0140943 1.2737766, 48.4631360 1.1874165, 48.4574629 1.2080616, 48.4844993 1.0908788, 48.4815185 1.1167990, 48.4859109 1.0826046, 48.4851225 1.0500272, 48.4737847 1.1524705, 48.7208009 1.3551932, 48.4458635 1.4817513, 48.1100427 1.3719249, 48.1163251 1.3893474, 48.1391759 0.9151555, 48.7275901 0.9964160 +Monument aux héros et victimes de la mer, Château des Creissauds, Mémorial des Camps de la Mort, Obélisque, Statue Virgo Mirarabilis, Stèle du 24 Avril 1915, Stèle du 24 Avril 1915, Porte d'Aix, Palais Longchamp, Monument à la mémoire de Frédéric Chevillon maire d'Allauch, Monument des Rapatriés +48 +48.8570374 2.3118779, 48.8631692 2.3329513, 48.8779237 2.3345515, 48.8626245 2.3025393, 48.8403827 2.3113658, 48.8864800 2.3399022, 48.8651191 2.3417893, 48.8339661 2.3324864, 48.8836865 2.3338083, 48.8660456 2.3145051, 48.8602845 2.3247488, 48.8559492 2.3460263, 48.8575222 2.2845690, 48.8414574 2.3172246, 48.8677629 2.2935696, 48.8625016 2.3453019, 48.8403652 2.3414281, 48.8629386 2.2890051, 48.8618163 2.2873421, 48.8749151 2.3431481, 48.8565109 2.3263842, 48.8519070 2.2652250, 48.8703234 2.2765175, 48.8716440 2.2881063, 48.8302877 2.3141843, 48.8557584 2.3320096, 48.8716204 2.2814131, 48.8483211 2.3294718, 48.8677268 2.3223990, 48.8591945 2.2851420, 48.8522269 2.3350050, 48.8505577 2.3402229, 48.8476741 2.3140391, 48.8830345 2.3077236, 48.8513629 2.3410046, 48.8547304 2.3248616, 48.8554427 2.3276941, 48.8434645 2.3207843, 48.8456499 2.3395974, 48.8434624 2.3362665, 48.8718820 2.3312120, 48.8656784 2.3307909, 48.8404563 2.3198526, 48.8672999 2.3221942, 48.8367685 2.3218491, 48.8678618 2.3225499, 48.8640279 2.3450171, 48.8573239 2.3286291, 48.8454353 2.3277854, 48.8566677 2.3132514, 48.8556933 2.3113320, 48.8564589 2.3132374, 48.8297380 2.3306629, 48.8704435 2.3261996, 48.8622099 2.2873776, 48.8609823 2.2977973, 48.8848436 2.3445206, 48.8614768 2.3351677, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8442282 2.3447813, 48.8661515 2.3122667, 48.8506605 2.3437398, 48.8545855 2.3356172, 48.8483243 2.3344262, 48.8599188 2.3265259, 48.8473326 2.3227159, 48.8613305 2.3197359, 48.8433913 2.2512835, 48.8707890 2.3259075, 48.8791676 2.3124361, 48.8794667 2.3125380, 48.8553042 2.3158566, 48.8755169 2.3105465, 48.8655978 2.2993165, 48.8643054 2.2977930, 48.8641085 2.2964123, 48.8373190 2.3319319, 48.8653887 2.2935591, 48.8260871 2.3327019, 48.8715060 2.2814214, 48.8594040 2.2672517, 48.8812030 2.3335190, 48.8551953 2.2808684, 48.8463579 2.2732198, 48.8547299 2.2897642, 48.8428133 2.3337722, 48.8880654 2.3406347, 48.8485965 2.3340156, 48.8662091 2.3108575, 48.8766546 2.2633259, 48.8563449 2.3387717, 48.8657061 2.2966614, 48.8432079 2.3186583, 48.8660437 2.3149694, 48.8553966 2.3450136, 48.8611474 2.3358637 +48.8854632 2.2970065 +Buchhandlung Schmitt & Hahn, Thalia, Buchhandlung Schmitt, Eichendorff, Buchbinderei Dyroff, Reisebuchladen Heidelberg, Buchladen - artes liberales, Bücherstube an der Tiefburg, Hassbeckers Galerie & Buchhandlung, Buch-Markt, Antiquariat Friedrich Welz, Schmitt & Hahn, Wieblinger Buchladen, Buchladen, Lehmanns Fachbuchhandlung +49.4146460 8.6905719 +yes +1 +yes +Avenue Victoria +3 +Romexpo, Hendelsbeurs Amsterdam, Messe Basel, CNR Expo, Messe Moskau-Sokolniki, Prague Exhibition Centre Letňany (PVA), Lenexpo, Průmyslový palác, PALEXPO, Выставочный комплекс на Красной Пресне, Olympia, Messezentrum Zürich, Hallen 1-7, National Exhibition Centre, Helsingin Messukeskus, Výstaviště Lysá nad Labem, Zagrebački Velesajam, IFEMA, Feria de Muestras de Zaragoza, МВЦ Крокус Экспо (павильон 3) и Крокус Сити Холл, Feira Internacional de Lisboa, Feria de Valencia, Міжнародний Виставковий Центр, Starptautiskais izstāžu centrs, Cemexpo Centro de Exposiciones Mital del Mundo, Международен панаир Пловдив, Messe Wien, Damascus International Fairground, Norges Varemesse, Centrum Expo XXI, BVV, a.s., Fira de Barcelona, Интер Експо Център, Tüyap Beylikdüzü Fuar ve Kongre Merkezi, Fira de Barcelona - Fira Gran Via, Stockholmsmässan, Expo, Targi Kielce, Incheba, Olma Messen St.Gallen, Messe Dornbirn, Recinto Ferial Macají, BVV, a.s., Выставка достижений народного хозяйства, Hungexpo +Aral, Esso, Shell, Total, Independent, Agip, OMV, Avia and 49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.3988716 8.6899921, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.4240406 8.6385449, 49.3851489 8.6733031, 49.3673694 8.6862886, 49.4061345 8.6593850, 49.3956761 8.6692210, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.3704305 8.7013213, 49.4296958 8.6455225, 49.3810973 8.6895578, 49.4172010 8.6768150, 49.3593333 8.6876382, 49.3810576 8.6896077 +49.4081091 8.6783361, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.4240406 8.6385449, 49.4061345 8.6593850, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.4296958 8.6455225, 49.4172010 8.6768150 +0 +48.8390959 2.2748832 +48.8687993 2.3373273, 48.8710439 2.3094204, 48.8274124 2.3148434, 48.8540343 2.4058858, 48.8703138 2.3531191, 48.8828817 2.3596543, 48.8669356 2.3763865, 48.8420168 2.3896839, 48.8324911 2.2973690, 48.8288878 2.3328361, 48.8600943 2.3451124, 48.8668458 2.3586800, 48.8831342 2.3236837, 48.8671369 2.3028950, 48.8831626 2.3618001, 48.8829824 2.3614134, 48.8827589 2.3595149, 48.8835628 2.3609310, 48.8397944 2.3818660, 48.8875165 2.3520499, 48.8342294 2.3264332, 48.8773456 2.3157482, 48.8714920 2.3541352, 48.8438107 2.3152002, 48.8682312 2.3751770, 48.8826774 2.3602875, 48.8567777 2.3726141, 48.8545688 2.3719378, 48.8341870 2.3157058, 48.8768072 2.3364970, 48.8361075 2.3240698, 48.8907355 2.3482159, 48.8449670 2.3488185, 48.8939174 2.3431529, 48.8799295 2.3575665, 48.8570416 2.3726643, 48.8509119 2.2937166, 48.8935918 2.3230817, 48.8240405 2.3250200, 48.8830637 2.3612591, 48.8344267 2.2884194, 48.8961868 2.3389271, 48.8355850 2.3240208, 48.8363755 2.3920736, 48.8435173 2.3219294, 48.8393146 2.3237992, 48.8466620 2.2831751, 48.8701201 2.3491659, 48.8852970 2.3163291, 48.8673359 2.3991033, 48.8237982 2.3450583, 48.8641688 2.3976584, 48.8240750 2.3283368, 48.8741225 2.3893282, 48.8511496 2.3478020, 48.8890437 2.3606481, 48.8890487 2.3604033, 48.8295957 2.3746853, 48.8728060 2.3646742, 48.8818730 2.3810389, 48.8459218 2.2883699, 48.8527658 2.3454086, 48.8849514 2.2959483, 48.8343901 2.3531943, 48.8786180 2.2913310, 48.8797930 2.2884240, 48.8777980 2.2906200, 48.8862020 2.3612523, 48.8845623 2.3786634, 48.8808754 2.3021137, 48.8541359 2.3719456, 48.8707266 2.3515964, 48.8629894 2.3679436, 48.8735793 2.3550497, 48.8523803 2.3462357, 48.8698382 2.3799777, 48.8300313 2.3294841, 48.8395438 2.3233136, 48.8424526 2.3235103, 48.8810529 2.3440743, 48.8638501 2.3526821, 48.8485977 2.3744032, 48.8404087 2.3999123, 48.8827391 2.3593305, 48.8815415 2.3580405, 48.8821155 2.3583738, 48.8809060 2.3580751, 48.8822787 2.3588762, 48.8815054 2.3580226, 48.8816608 2.3581073, 48.8808657 2.3580528, 48.8813749 2.3579541, 48.8915804 2.3366290, 48.8826206 2.3590692, 48.8832302 2.3617502, 48.8632201 2.3794764, 48.8837032 2.3600741, 48.8732975 2.3352479, 48.8838575 2.3590700, 48.8839295 2.3590810, 48.8720480 2.3282979, 48.8507085 2.3490872, 48.8733336 2.3346541, 48.8790090 2.3291588, 48.8464207 2.3056421, 48.8303084 2.3537927 +17 +St Mary's Episcopal Cathedral, St Mary's Metropolitan Cathedral (RC) and 55.9486145 -3.2162817, 55.9560692 -3.1878858 +152113 +yes +Kopierladen E. Müller, Textstudio Gross, Baier Copyshop and 49.4127737 8.6762760, 49.4175276 8.7614856, 49.4139969 8.6710169 +yes +49.3825748 8.6819524, 49.4044470 8.6760982, 49.4099535 8.7063761, 49.4132864 8.6917954, 49.4184660 8.6905365, 49.4047867 8.6755693, 49.4030356 8.6747793, 49.4153068 8.7610184, 49.4191914 8.7566303, 49.4120067 8.6991463, 49.3989549 8.6891760, 49.3806424 8.6885835, 49.4086829 8.6938220, 49.4018638 8.6725783, 49.4282885 8.6835188, 49.4129623 8.6762887, 49.4149227 8.6648005, 49.4235174 8.6462268 +3 +yes +yes +10 +48.8266377 9.1840977, 48.8274672 9.1858535, 48.7995897 9.1471380, 48.7210662 9.0907708, 48.8368900 9.1424577, 48.7365807 9.0884143, 48.8072983 9.1143108, 48.7746889 9.1591284, 48.7607867 9.1731311, 48.7420005 9.1357855, 48.8288194 9.1584861, 48.7592714 9.1414993, 48.7628009 9.1770306, 48.7391872 9.1019369, 48.8175257 9.2449749, 48.7640439 9.1597973, 48.7595438 9.1774796, 48.7789784 9.1251496, 48.7686324 9.1529661, 48.7680451 9.1492725, 48.8018079 9.1772330, 48.7701846 9.1396353, 48.7894569 9.2569712, 48.7870973 9.2545468, 48.7907133 9.2573534, 48.7932684 9.2601204, 48.7891137 9.2624515, 48.7639249 9.1680146, 48.7084205 9.2117984, 48.7332638 9.1395737, 48.7329962 9.1387316, 48.7276835 9.1087426, 48.7926570 9.2096756, 48.7294246 9.1656576, 48.7654891 9.1709268, 48.7655516 9.1706606, 48.7368577 9.2271867, 48.7401197 9.2308934, 48.7670335 9.1823919, 48.7800860 9.1633248, 48.8194598 9.2224883, 48.8108804 9.0954110, 48.7322352 9.1377111, 48.7822231 9.1366622, 48.8073484 9.1590099, 48.7676498 9.1774891, 48.7560843 9.2453564, 48.7637979 9.2084589, 48.7961031 9.1911908, 48.7242834 9.1022678, 48.7768952 9.1197768, 48.8083000 9.2194447, 48.7413789 9.1248427, 48.7745727 9.2415359, 48.7688755 9.2441238, 48.7666474 9.2415359, 48.7554850 9.1899509, 48.7165072 9.1971033, 48.7233809 9.1577786, 48.7160561 9.2011485, 48.7159995 9.1968655, 48.7170981 9.2013115, 48.7138515 9.1965289, 48.7666676 9.2460021, 48.7815012 9.2111514, 48.8180458 9.1878364, 48.7884986 9.1882810, 48.7563639 9.1450595, 48.7645870 9.1790033, 48.7802290 9.2205449, 48.7793145 9.2145778, 48.7177504 9.0903203, 48.7217493 9.0906470, 48.7746807 9.2184857, 48.8186514 9.1903173, 48.8176924 9.2126264, 48.8166158 9.2133627, 48.7410037 9.1880643, 48.7878337 9.1734858, 48.7667769 9.1777628, 48.8214409 9.1838807, 48.8209323 9.1861981, 48.8221080 9.1864585, 48.8197625 9.1883439, 48.8193500 9.1850308, 48.8252510 9.1910397, 48.8260647 9.1920028, 48.8199278 9.1906552, 48.8230059 9.1973316, 48.8233111 9.1968938, 48.8227177 9.1963188, 48.7593799 9.1838496, 48.7508769 9.2198901, 48.7796113 9.1969177, 48.7452380 9.1696763, 48.7452810 9.1715740, 48.7406173 9.2178894, 48.7295759 9.1970490, 48.7369809 9.2191710, 48.7381733 9.2194275, 48.7623744 9.1304930, 48.7578261 9.2370157, 48.7367641 9.2205799, 48.7839150 9.1572630, 48.7757122 9.1641515, 48.7752849 9.1192939, 48.7715042 9.1853889, 48.7575769 9.2388906, 48.8090133 9.1822986, 48.7390675 9.1316012, 48.7439412 9.2071733, 48.7370951 9.2197467, 48.8265520 9.1607642, 48.7525561 9.1756229, 48.7404105 9.1054389, 48.7410545 9.1054709, 48.7481843 9.1483115, 48.8370298 9.1702902, 48.7993978 9.0860783, 48.8077981 9.1206167, 48.8076711 9.1225829, 48.8086376 9.1172926, 48.8182959 9.1903252, 48.7887924 9.2642856, 48.8122456 9.1179810, 48.8131232 9.1189432, 48.7487655 9.1069716, 48.7392521 9.1025062, 48.7394250 9.1030131, 48.7395350 9.1034031, 48.7396715 9.1038998, 48.7788072 9.2205227, 48.7839443 9.1601364, 48.7834011 9.1287279, 48.7843358 9.1238844, 48.7916399 9.1781621, 48.8388199 9.1578288, 48.7774970 9.1693281, 48.7750793 9.1663017, 48.7751830 9.1661607, 48.8262448 9.1757557, 48.7411561 9.1260443, 48.7555505 9.2220026, 48.8054996 9.2020247, 48.8234829 9.1130457, 48.7752130 9.2832684, 48.7746120 9.2829572, 48.7743327 9.2794113, 48.8138974 9.1121863, 48.7530309 9.1014541, 48.7843224 9.2165759, 48.7831510 9.2172907, 48.7785138 9.2086178, 48.7839139 9.2106372, 48.7790514 9.2057946, 48.8060904 9.1133314, 48.8162900 9.0840537, 48.8165125 9.0834346, 48.8146796 9.0810644, 48.8152745 9.0835875, 48.8160842 9.0868605, 48.7786322 9.2456524, 48.7762240 9.1750209, 48.7718238 9.2626929, 48.8146602 9.1096755, 48.7809227 9.1806028, 48.7060395 9.2185219, 48.7071249 9.2227690, 48.7044404 9.2136152, 48.6968403 9.2143132, 48.7182280 9.1545775, 48.7191411 9.1471746, 48.8046901 9.2349995, 48.8188647 9.2481858, 48.8206470 9.2456598, 48.8331868 9.2293397, 48.8347645 9.2331793, 48.8356983 9.2329175, 48.8309543 9.2250457, 48.8305769 9.2283573, 48.8307974 9.2299852, 48.8358608 9.2248547, 48.8170499 9.1992551, 48.8107298 9.2118431, 48.7343433 9.0879666, 48.7551923 9.2530678, 48.8137307 9.1253132, 48.8120298 9.1246418, 48.8128560 9.1239832, 48.8413219 9.1544918, 48.7805244 9.1271053, 48.8433973 9.2223737, 48.8370737 9.1704442, 48.7822257 9.2544192, 48.8054532 9.2320141, 48.8056405 9.2327579, 48.8171001 9.1874488, 48.7768972 9.1189405, 48.7338058 9.0886242, 48.8332911 9.1684064, 48.8354403 9.2184495, 48.7057162 9.2176827, 48.8289383 9.1748132, 48.8268277 9.1747844, 48.8268769 9.1741223, 48.8300230 9.1687489, 48.8055366 9.2324050, 48.7824450 9.1914402, 48.7202910 9.1609103, 48.8142090 9.1481160, 48.8121989 9.1435521, 48.8079225 9.2357497, 48.7456862 9.2049071, 48.7198885 9.1496536, 48.7945720 9.2080750, 48.7950033 9.2072260, 48.8028868 9.2343907, 48.8356794 9.2376729, 48.8313302 9.2366779, 48.7703341 9.1187892, 48.7887572 9.1837958, 48.8084196 9.1186212, 48.8236860 9.2103348, 48.8150484 9.2102456, 48.8374600 9.2044225, 48.8374634 9.2040761, 48.8409245 9.2153278, 48.8388606 9.2056806, 48.8396473 9.2048209, 48.8393347 9.2045834, 48.7980345 9.2121395, 48.8081986 9.2366770, 48.7439226 9.1083014, 48.8353670 9.2373126, 48.8356297 9.2340838, 48.8314969 9.2258363, 48.8318341 9.2264183, 48.7790513 9.1185036, 48.8444373 9.2242491, 48.8445387 9.2244230, 48.7333414 9.1263614, 48.7283946 9.1387608, 48.8304955 9.2241243, 48.8352716 9.2418323, 48.7666439 9.1806411, 48.7773542 9.1168251, 48.8410924 9.1477487, 48.8413121 9.1525671, 48.8471852 9.1700770, 48.7898540 9.2143644, 48.8086360 9.2376287, 48.8337665 9.1991029, 48.8100293 9.2405992, 48.8431923 9.2226412, 48.8437176 9.2236573, 48.7699094 9.2108676, 48.7909237 9.1784804, 48.7920249 9.1795616, 48.8154503 9.1268229, 48.7385484 9.2177999, 48.7376538 9.2310181, 48.8276548 9.1909514, 48.8315570 9.1800171, 48.8096807 9.2347081, 48.6990455 9.2132810, 48.8081099 9.2335760, 48.7613729 9.2151350, 48.7511610 9.2190936, 48.7539750 9.2215031, 48.8029053 9.0890292, 48.8295186 9.1843913, 48.8098205 9.1113682, 48.8279351 9.1711828, 48.8012310 9.1694436, 48.7785204 9.1258373, 48.8159579 9.2165807, 48.8049251 9.1867935, 48.8308172 9.1887317, 48.8148142 9.2017924, 48.8302121 9.1875344, 48.7996420 9.2229824, 48.7378856 9.1352853, 48.8424442 9.1879741, 48.8392424 9.1909048, 48.7319355 9.1376197, 48.8296085 9.2243751, 48.7273902 9.1117501, 48.7645889 9.1733372, 48.8045633 9.2308930, 48.8037302 9.2277588, 48.8018432 9.2303856, 48.8072533 9.2270114, 48.8037215 9.2104640, 48.8074978 9.2191098, 48.8124578 9.2217400, 48.8125945 9.2217420, 48.7075520 9.2011028, 48.7148133 9.1194638, 48.7185828 9.1154232, 48.7172949 9.1054408, 48.7172567 9.1029189, 48.8158067 9.2443278, 48.8176857 9.2487742, 48.7712246 9.1547735, 48.8118293 9.2351643, 48.7905987 9.2605609, 48.8333184 9.1873643, 48.8341675 9.1905630, 48.8334775 9.1794198, 48.8447076 9.2077794, 48.7862159 9.1694913, 48.7839006 9.1573870, 48.7808338 9.1593382, 48.7521248 9.2419563, 48.7300954 9.1404549, 48.7284923 9.1444964, 48.8080764 9.0936132, 48.7324649 9.1772340, 48.7334669 9.1823238, 48.7288626 9.1681428, 48.7706954 9.1512908, 48.7347608 9.1838793, 48.7723082 9.0917874, 48.7763145 9.2491292, 48.7756492 9.1426027, 48.7767829 9.1545653, 48.7767803 9.1554165, 48.7739885 9.1583727, 48.7219175 9.1167139, 48.7704774 9.1240234, 48.8165376 9.1551303, 48.8117988 9.1625976, 48.7276958 9.1024524, 48.8321003 9.2322653, 48.8326631 9.2326698, 48.8332878 9.2313485, 48.7594363 9.1532356, 48.7935643 9.1608362, 48.7694406 9.1690311, 48.7696653 9.1683555, 48.8171509 9.0903048, 48.7814884 9.1516856, 48.7712936 9.2162328, 48.7607339 9.1537406, 48.7600113 9.1521808, 48.7595816 9.1556686, 48.8263731 9.2366065, 48.8294446 9.2391274, 48.7829242 9.2062334, 48.7623808 9.1773067, 48.7646171 9.1434123, 48.7633222 9.1697771, 48.7630903 9.1700913, 48.7204005 9.0968405, 48.7478631 9.1272094, 48.7312314 9.1274441, 48.7324783 9.1225136, 48.7448834 9.1198033, 48.7253897 9.1367571, 48.7273313 9.1579700, 48.7315670 9.1084216, 48.7506025 9.0861736, 48.7446217 9.0611144, 48.7787389 9.1393711, 48.8365280 9.2217044, 48.7813051 9.1689915, 48.7765392 9.1579724, 48.7744867 9.1458177, 48.7361292 9.2318532, 48.7776266 9.1480593, 48.7898372 9.2007663, 48.8123543 9.1589288, 48.7420560 9.2311052, 48.7446788 9.2331679, 48.7842006 9.2878565, 48.7673531 9.1999049, 48.7498990 9.2156633, 48.7383712 9.1228988, 48.7800747 9.1931414, 48.7920253 9.1954565, 48.7908360 9.1937683, 48.7838586 9.2741572, 48.7114554 9.1634521, 48.7881335 9.2663343, 48.7370982 9.1144251, 48.7363057 9.1093423, 48.7130076 9.1585263, 48.7150329 9.1539437, 48.7098982 9.1485498, 48.7451817 9.2038319, 48.7362682 9.2147899, 48.7439861 9.1648276, 48.7470010 9.1608184, 48.8392216 9.1664665, 48.8188392 9.2382554, 48.8002038 9.0894887, 48.8060945 9.0873080, 48.8028102 9.1066768, 48.8204892 9.1196116, 48.8011361 9.0939236, 48.7955992 9.1813365, 48.8000632 9.2268497, 48.7816258 9.1725460, 48.7643960 9.0908786, 48.7728345 9.0914895, 48.8043971 9.1925007, 48.7821801 9.2518655, 48.7357866 9.0928556, 48.8168682 9.1152268, 48.8154075 9.1200702, 48.8153503 9.1123796, 48.8168770 9.1123473, 48.8098351 9.1466309, 48.7199402 9.0976200, 48.8065816 9.1468318, 48.8045414 9.1778666, 48.8155354 9.1078630, 48.7739387 9.1823385, 48.8076483 9.1123899, 48.8169176 9.2077469, 48.8185502 9.2106968, 48.8155686 9.0848061, 48.8137525 9.0822193, 48.7690958 9.1644412, 48.7673641 9.1642521, 48.7633749 9.2692990, 48.7223376 9.1573845, 48.7274898 9.0988236, 48.8044435 9.1091905, 48.7326952 9.0995469, 48.8434809 9.2310416, 48.7638079 9.1718809, 48.7017227 9.2042496, 48.8230217 9.2187817, 48.7733470 9.1534804, 48.7719578 9.1539280, 48.8058990 9.0874108, 48.8180005 9.2335228, 48.8307733 9.2341712, 48.8331629 9.2380752, 48.7435824 9.1408036, 48.7705843 9.1606059, 48.8343450 9.2339347, 48.8308551 9.2260656, 48.7812806 9.1949048, 48.8103608 9.2121063, 48.8087963 9.2136793, 48.7240693 9.1930107, 48.7255371 9.1991398, 48.8076188 9.2102143, 48.8062301 9.2081052, 48.8105291 9.2148008, 48.7643171 9.1709762, 48.8136709 9.2278711, 48.8150081 9.2299158, 48.8125624 9.1694969, 48.7194776 9.2054499, 48.8521068 9.1588256, 48.8007260 9.2382458, 48.7644345 9.1715715, 48.7565516 9.1606251, 48.7590074 9.1626262, 48.7619942 9.1613615, 48.7629149 9.1624609, 48.8436496 9.1956404, 48.8340493 9.2051857, 48.8371998 9.2058005, 48.7193315 9.2107441, 48.8306017 9.2020589, 48.7005838 9.2090522, 48.7801931 9.1422537, 48.7771497 9.1468615, 48.7738640 9.1461596, 48.8332386 9.1988699, 48.7689675 9.1781807, 48.7274729 9.1457170, 48.7455359 9.1544761, 48.7802104 9.1933560, 48.8317406 9.2161584, 48.7911933 9.1977305, 48.7092210 9.1564480, 48.7252514 9.1396022, 48.7610661 9.1737504, 48.7591576 9.1730067, 48.8349567 9.1672216, 48.7216336 9.1576307, 48.7244705 9.1491328, 48.7803793 9.1882891, 48.8114655 9.1366803, 48.7877288 9.2486707, 48.7822603 9.1730816, 48.7772829 9.2329886, 48.7777141 9.2242777, 48.8268718 9.1785649, 48.7669215 9.2457439, 48.8258919 9.1763678, 48.8255869 9.1756592, 48.8339469 9.1948547, 48.8156196 9.2158408, 48.8346357 9.1950301, 48.8297902 9.1944334, 48.8119814 9.2376803, 48.8245881 9.2142286, 48.7825401 9.1635644, 48.7342785 9.0914496, 48.7381037 9.1020154, 48.8336814 9.1948442, 48.7099533 9.1528975, 48.7407211 9.1763493, 48.7426104 9.1724479, 48.7089631 9.1507678, 48.7090052 9.1519172, 48.7089714 9.1514099, 48.7237992 9.1587663, 48.8363137 9.2230187, 48.8395941 9.2135911, 48.7866941 9.2146286, 48.7823164 9.2519854, 48.7848897 9.2508569, 48.7777861 9.2548671, 48.8183226 9.2019666, 48.7826648 9.2517310, 48.7400670 9.1490404, 48.8166071 9.1883914, 48.7113978 9.1227160, 48.7571646 9.1597673, 48.8075661 9.1713501, 48.7484681 9.1718397, 48.7897170 9.2673255, 48.7690349 9.2648510, 48.7646059 9.1904563, 48.7783606 9.1223325, 48.7784968 9.1620721, 48.8055200 9.1524939, 48.8076644 9.2449565, 48.8122579 9.2334897, 48.7691810 9.1801868, 48.7558646 9.1694060, 48.7257282 9.1788525, 48.8076526 9.2056148, 48.8068482 9.2022284, 48.8425623 9.2088898, 48.8427337 9.2085867, 48.8426262 9.2106905, 48.8425385 9.2103692, 48.8426622 9.2096481, 48.7884315 9.1797690, 48.7625410 9.1582979, 48.7443115 9.1090741, 48.8367968 9.2332124, 48.7655226 9.1821093, 48.7361247 9.1822587, 48.8066682 9.1122013, 48.7984164 9.0956065, 48.7855092 9.2118888, 48.8492672 9.1400666, 48.7710845 9.1857416, 48.7736190 9.1964435, 48.7751109 9.2406746, 48.7737725 9.2472025, 48.8003927 9.1725422, 48.7915957 9.1702268, 48.7959038 9.1733436, 48.8193893 9.2471637, 48.8207046 9.2115518, 48.8095037 9.2181615, 48.8053198 9.1587810, 48.8177101 9.1198326, 48.8130076 9.2004942, 48.8128610 9.1969872, 48.8027080 9.2213772, 48.8070962 9.2524967, 48.8061834 9.2517355, 48.8064416 9.2510240, 48.7943742 9.2096553, 48.7948456 9.1913354, 48.8434766 9.1613193, 48.8448719 9.1528376, 48.8500034 9.1488812, 48.8515336 9.1504860, 48.8509961 9.1520113, 48.7565127 9.2195515, 48.8315586 9.1877508, 48.8313907 9.1875618, 48.8095825 9.2057612, 48.8107589 9.1133969, 48.8110865 9.1109156, 48.8094892 9.1557716, 48.7357879 9.0884283, 48.7543718 9.2601854, 48.7501425 9.1860357, 48.7467357 9.2154738, 48.7039509 9.2089283, 48.8048290 9.2161153, 48.8033496 9.1479300, 48.8159368 9.2165860, 48.8200863 9.2224019, 48.8212485 9.2226212, 48.8214843 9.2222823, 48.8236179 9.2103705, 48.7952625 9.2255831, 48.8369320 9.2156710, 48.7859488 9.1980146, 48.7547736 9.1621293, 48.7819829 9.2471275, 48.7257985 9.1348586, 48.7263224 9.1346135, 48.8292608 9.2153360, 48.8052196 9.2127830, 48.8045390 9.1922910, 48.8044768 9.1920297, 48.8104531 9.1763046, 48.8100863 9.1764542, 48.7304742 9.1434084, 48.7728990 9.1822464, 48.8127585 9.2105934, 48.7729909 9.1422342, 48.8385699 9.1577327, 48.8380615 9.1658797, 48.8229842 9.2168755, 48.7567497 9.1499066, 48.8530285 9.1578785, 48.8399847 9.2030723, 48.8301491 9.1687960, 48.8262636 9.1755850, 48.8241092 9.1749191, 48.8306865 9.1847392, 48.8146443 9.1096746, 48.8129143 9.1240847, 48.7808338 9.1593382, 48.7826665 9.1340345 +yes +01.43.41.09.70, ab conduite, Centre de conduite auto-moto, Auto-École, Alkris, Fati Auto école, Auto-école du chêne, École de conduite, C.E.R. Auto-École, Auto moto école, Auto-école Manin, Auto moto ecolde des Buttes Chaumont, C.E.R. Porte des Lilas, Permis Express, Auto école, ABIR C.F.R., Auto-école Cosmos and +331 48 78 09 98, Zebra, Simulauto and 01.45.85.75.22, CER Porte de Choisy +0.030262550579005898 +55.9533414 -3.1913502 +149 +no +38 +http://www.traverse.co.uk/, http://www.ept.org.uk, http://www.thestand.co.uk/, http://www.leitheatre.com/, http://www.edtheatres.com/festival, http://www.edtheatres.com/, http://www.lyceum.org.uk/, http://www.leiththeatretrust.org, http://www.edtheatres.com/studio +2014 +64 +Piscine Blomet, Piscine Suzanne Berlioux, Piscine de Reuilly, Piscine de Vaires-sur Marne, Piscine Communale, Alfred Nakache, Piscine Château Landon, Piscine Municipale Rouvet, Piscine municipale de Neuilly-Plaisance, Piscine Armand Massard, Piscine Salvador Allende, Piscine Cour des lions, Piscine Paul Valeyre, Piscine municipale Bernard Lafay, Piscine Catherine Lagatu, Aquapol, Aqua Sénart, Les nymphéas, Oberkampf, Centre sportif Saint-Germain, Piscine municipal de Guyancourt, Bassin-école Vitruve, Piscine intercommunale, Piscines Collège Stanislas, Les Grands Bains du Parisis, Les Nymphéas du Parisis, Mount Sterling City Pool, Piscine Intercommunale Caneton, Piscine de Brunoy, Piscine Alex Jany, Piscine municipale d'Orsay, Piscine Fernand-Blanluet, Piscine Pailleron, Piscine Georges Hermant, Piscine municipale, Piscine Jean Taris, Centre nautique, Piscine de Marville, Piscine Intercommunale du Kremlin-Bicêtre, Piscine Georges Vallerey, Bassin-école, Piscine Athis Paray, Centre aquatique Youri Gagarine, Piscine Pierre De COUBERTIN, Piscine des Raguidelles, Piscine des Closeaux, Piscine Raymond Mulinghausen, Espace nautique Auguste Delaune, Piscine des Ulis, Piscine Jean-Boiteux, Piscine Levrière, Piscine Château des Rentiers, Piscine Municipale d'Ivry sur Seine, Piscine Orme au Chat, Piscine Lionel-Terray, Piscine Édouard Herriot, Piscine Hébert, Piscine Tournesol de Bondy, Piscine de Fresnes, Piscine Molitor, Piscine des Eguerêts, Piscine Tournesol, Piscine Marcel Dumesnil, Piscine Jean Guimier, Piscine municipale Franck Esposito, Piscine, Piscine à vague, Piscine du Jardin Parisien, Piscine municipale, Piscine Caneton, Piscine René et André Mourlon, Piscine Joséphine Baker, Centre Aquatique Arthur Hévette, Paris Swimming Pool, Centre Aquatique de Saint-Cyr, Piscine du Long Rayage, Piscine Roger Le Gall, Piscine Intercommunale de Fosses, Piscine de Saint-Germain-en-Laye, Piscine des tourneroches, Espace nautique du Val-d'Orge, Centre aquatique Dôme de Vincennes, Pateaugeoire, Piscine, Piscine des Louvrais, piscine Caneton, Centre Nautique et Sportif Claude Bernard, Piscine de Morsang-sur-Orge, Centre nautique Roger-Lebas, Piscine Christine Caron, Piscine de Sèvres, Piscine Agnès Béraudias, Piscine Intercommunale, Robert Belvaux, Piscine Bertrand Dauvin, La vague, Oakland Swimming Pool, Piscine Champerret, Piscine, Piscine de Villaine, Centre aquatique d’Alfortville, La vague, Piscine AquaZena, Piscine Maurice Thorez, Piscine de Marville, Le Nautil, Piscine Pierre Bonningue, Piscine Montbauron, Piscine Alex Jany, Bassin reservé aux habitants du domaine du golf, Piscine Roger Avenau, Piscine Nogent Nautique, Piscine de La Celle-Saint-Cloud, Newtown Townhomes Public Pool, Piscine de Bagneux, Pool, Piscine Léo Lagrange, Piscine Marius Jacotot, Jacuzzi +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8346251 2.2657680, 48.8315802 2.3158225, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8501676 2.3621707, 48.8299268 2.3465439, 48.8563247 2.3152562, 48.8475898 2.3031985, 48.8464653 2.2801018, 48.8323948 2.3645635, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.8536267 2.3664311, 48.8408422 2.3172666, 48.8387525 2.2535353, 48.8281523 2.2728394, 48.8168431 2.3604808, 48.8407841 2.3912112, 48.8586303 2.3897622, 48.8580224 2.3896621, 48.8364028 2.2775659, 48.8558395 2.3835889, 48.8519985 2.2908966, 48.8478375 2.3535433, 48.8522407 2.2805336, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8436106 2.3422313, 48.8233460 2.3160166, 48.8380740 2.3312952, 48.8449642 2.2715165, 48.8473675 2.2588537, 48.8532253 2.3080493, 48.8380740 2.3312952, 48.8449642 2.2715165, 48.8473675 2.2588537, 48.8532253 2.3080493, 48.8258806 2.3446643, 48.8565470 2.3790561, 48.8457849 2.4008634, 48.8384296 2.3723291, 48.8270093 2.3590302, 48.8503953 2.3596248, 48.8403571 2.3213304, 48.8338034 2.2847592, 48.8464060 2.3874300, 48.8414869 2.3732320, 48.8350223 2.3575595, 48.8206480 2.3248645, 48.8455829 2.3086474 +St. Albert and 49.4085805 8.6761541 +49.4066800 8.6851295, 49.4123926 8.7103200, 49.4022609 8.6800427, 49.4131657 8.7074358, 49.4115288 8.7077973 +10 +yes +48.8707489 2.3907280, 48.8506016 2.3432743, 48.8459665 2.3500377, 48.8535359 2.3481924, 48.8450745 2.3528309 +0 +49.3788109 8.6919767, 49.4052150 8.6872450, 49.4118496 8.7084081, 49.4117760 8.7068775, 49.4117663 8.7064409, 49.4078213 8.6854792 +259.51167152149065 +no +yes +Lochheim +yes +http://www.myvue.com/ +no +yes +yes +no +49.3988716 8.6899921, 49.3673694 8.6862886, 49.3704305 8.7013213, 49.3810973 8.6895578, 49.3593333 8.6876382, 49.3810576 8.6896077 +24 +Kurpfälzisches Museum +24 +28 +65 and 48.8376960 2.3062844, 48.8831159 2.3425480, 48.8865976 2.3588510, 48.8481953 2.3419715, 48.8467471 2.3717077, 48.8668168 2.3257587, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8717742 2.2984126, 48.8668308 2.3028826, 48.8686655 2.2984695, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8715217 2.3076937, 48.8884053 2.3785210, 48.8278673 2.3796510, 48.8664199 2.2892440, 48.8604399 2.3007825, 48.8864077 2.2949505, 48.8710343 2.3234791, 48.8730243 2.3445449, 48.8606580 2.3469337, 48.8330539 2.2881095, 48.8234693 2.3306543, 48.8562375 2.3660049, 48.8516696 2.2978180, 48.8528343 2.3441184, 48.8504482 2.2926945, 48.8518053 2.3448347, 48.8549752 2.3046163, 48.8868980 2.3004690, 48.8487972 2.3410105, 48.8683305 2.3330172, 48.8478009 2.3422541, 48.8820490 2.3316649, 48.8731949 2.3435448, 48.8721229 2.3033103, 48.8723588 2.3088888, 48.8383845 2.3209532, 48.8920470 2.3024290, 48.8609042 2.3467975, 48.8662424 2.3373468, 48.8555019 2.2928356, 48.8664339 2.3251380, 48.8719873 2.3493219, 48.8510976 2.3274782, 48.8737030 2.3201997, 48.8714238 2.3278025, 48.8713002 2.3277769, 48.8718146 2.3278778, 48.8778519 2.3276641, 48.8813884 2.3274308, 48.8814057 2.3282568, 48.8495763 2.3798752, 48.8238179 2.3241127, 48.8752556 2.2866823, 48.8704922 2.2798118, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8871244 2.3142231, 48.8870568 2.3143431, 48.8848968 2.3034428, 48.8496595 2.2837044, 48.8542680 2.3078406, 48.8802164 2.2842407 +no +55.9406104 -3.2945168, 55.9579671 -3.2416031, 55.9099988 -3.3187446, 55.9335740 -3.2140903, 55.9452785 -3.1910772, 55.9432977 -3.1864231, 55.9274173 -3.3075858, 55.9455967 -3.2068856, 55.9558479 -3.1868996, 55.9385133 -3.1977770, 55.9364081 -3.4051737, 55.9388075 -3.3555498, 55.9411797 -3.2700165, 55.9326592 -3.3137139, 55.9581549 -3.4146320, 55.9259159 -3.2475077, 55.9340106 -3.3057008, 55.9532855 -3.1942698, 55.9528122 -3.1966134, 55.9577481 -3.1745891, 55.9522948 -3.1996615, 55.9512080 -3.2029850, 55.9505306 -3.2060289, 55.9360698 -3.1801396, 55.9431462 -3.2098500, 55.9424957 -3.2178326, 55.9430147 -3.2208977, 55.9431450 -3.1777930, 55.9473014 -3.2066559, 55.9382479 -3.2288358, 55.9493199 -3.2107221, 55.9371375 -3.2021480, 55.9416831 -3.1813332, 55.9399477 -3.1799875, 55.9400554 -3.1800410, 55.9383873 -3.1947438, 55.9381286 -3.1934756, 55.9532580 -3.2007176, 55.9498239 -3.1879473, 55.9457420 -3.2062080, 55.9361540 -3.2091272, 55.9368151 -3.2079507, 55.9519224 -3.2021395, 55.9456455 -3.2052495, 55.9420725 -3.2685561, 55.9526727 -3.1905474, 55.9499553 -3.1886925, 55.9483500 -3.1918487, 55.9534890 -3.1892336, 55.9564328 -3.1863322, 55.9462158 -3.1854968, 55.9448431 -3.2048049, 55.9426898 -3.2037234, 55.9472487 -3.1909778, 55.9475118 -3.1893161, 55.9479802 -3.1868691, 55.9462178 -3.1884860, 55.9445944 -3.1837358, 55.9447090 -3.1838238, 55.9390205 -3.1796146, 55.9391727 -3.1798248, 55.9901108 -3.3958456, 55.9382045 -3.1790187, 55.9393085 -3.1795319, 55.9299625 -3.2092643, 55.9362743 -3.1942603, 55.9364425 -3.1941118, 55.9364298 -3.1945475, 55.9381921 -3.1929355, 55.9380470 -3.1915010, 55.9447005 -3.1877270, 55.9428356 -3.1884222, 55.9454993 -3.1874399, 55.9779953 -3.1733866, 55.9341605 -3.2104863, 55.9454998 -3.1881337, 55.9450783 -3.1887212, 55.9480103 -3.1837600, 55.9486091 -3.1831054, 55.9381703 -3.1892079, 55.9382556 -3.1704864, 55.9404236 -3.1696109, 55.9517036 -3.1735044, 55.9444953 -3.1872925, 55.9457654 -3.1982160, 55.9357656 -3.2102949, 55.9634754 -3.1970678, 55.9608923 -3.1970860, 55.9571867 -3.1639997, 55.9595119 -3.1505528, 55.9754036 -3.1792572, 55.9780588 -3.1803331, 55.9781026 -3.1779536, 55.9779059 -3.1732084, 55.9779507 -3.1735468, 55.9780888 -3.1742385, 55.9781653 -3.1742810, 55.9781945 -3.1744492, 55.9781434 -3.1745486, 55.9657634 -3.1762911, 55.9648030 -3.1769642, 55.9618573 -3.1797874, 55.9614066 -3.1810341, 55.9282699 -3.1971794, 55.9300538 -3.2006041, 55.9291787 -3.1994540, 55.9288531 -3.2399727, 55.9444334 -3.1838739, 55.9432684 -3.2138648, 55.9434340 -3.2137230, 55.9382190 -3.1871150, 55.9163168 -3.3178016, 55.9342480 -3.2099670, 55.9250348 -3.2099016, 55.9556948 -3.1880622, 55.9288850 -3.2096120, 55.9268034 -3.2091405, 55.9599295 -3.1873744, 55.9511210 -3.2277490, 55.9369030 -3.3008559, 55.9760995 -3.1730677, 55.9690233 -3.1728199, 55.9473560 -3.1862560, 55.9472450 -3.1859400, 55.9471464 -3.1859252, 55.9532957 -3.1984157, 55.9727023 -3.1754426, 55.9447520 -3.1840600, 55.9645394 -3.2127643, 55.9360392 -3.2090372, 55.9426597 -3.2129400, 55.9429829 -3.2134256, 55.9425021 -3.1970043, 55.9173034 -3.2149399, 55.9371649 -3.2025037, 55.9368530 -3.2004540, 55.9191492 -3.2130522, 55.8967480 -3.3189972, 55.9459933 -3.2231784, 55.9366774 -3.2079221, 55.9536450 -3.1936151, 55.9471310 -3.1906350, 55.9433250 -3.2363632, 55.9436340 -3.1927890, 55.9131941 -3.3215704, 55.9267768 -3.2325501, 55.9265880 -3.2362930, 55.9479871 -3.1862306, 55.9478974 -3.1862047, 55.9670709 -3.1749630, 55.9455865 -3.2342233, 55.9455978 -3.2346741, 55.9372962 -3.2491878, 55.9372632 -3.2492416, 55.9399014 -3.1712062, 55.9275895 -3.1645483, 55.9241128 -3.1723545, 55.9321255 -3.1800006, 55.9334491 -3.1664892, 55.9819081 -3.3968033, 55.9824701 -3.3972270, 55.9517351 -3.1896593, 55.9526200 -3.1872149, 55.9514550 -3.1958932, 55.9113288 -3.3221174, 55.9378609 -3.2405808, 55.9371924 -3.2382206, 55.9772777 -3.2461729, 55.9005835 -3.3187680, 55.9504487 -3.1855770, 55.9481787 -3.1818614, 55.9469357 -3.2061870, 55.9468336 -3.2067128, 55.9510529 -3.1895716, 55.9474443 -3.2026403, 55.9469842 -3.2055924, 55.9484539 -3.2033601, 55.9477666 -3.2049354, 55.9519571 -3.1962325, 55.9475027 -3.1864955, 55.9450666 -3.1879264, 55.9173837 -3.3145666, 55.9650759 -3.2031617, 55.9807357 -3.1771531, 55.9801105 -3.1784204, 55.9803382 -3.1778904, 55.9509532 -3.1703030, 55.9449293 -3.1531235, 55.9426622 -3.1700360, 55.9536680 -3.1591788, 55.9510831 -3.1696039, 55.9471411 -3.1970342, 55.9472696 -3.1965989, 55.9476455 -3.1953503, 55.9470721 -3.1972816, 55.9444791 -3.1881383, 55.9441090 -3.1902632, 55.9441665 -3.1899295, 55.9430221 -3.1890898, 55.9442010 -3.1896725, 55.9442375 -3.1894117, 55.9434877 -3.1870683, 55.9411521 -3.2175600, 55.9416473 -3.2167635, 55.9417417 -3.2166027, 55.9412822 -3.2173787, 55.9414839 -3.2157963, 55.9533340 -3.1882867, 55.9535985 -3.1880495, 55.9540239 -3.1884159, 55.9647669 -3.1742071, 55.9550392 -3.1900725, 55.9551557 -3.1901442, 55.9626030 -3.2336790, 55.9718556 -3.1742189, 55.9598707 -3.1836010, 55.9596341 -3.1834611, 55.9632066 -3.1785776, 55.9606353 -3.1818678, 55.9571142 -3.1859300, 55.9583217 -3.1846287, 55.9591802 -3.1838027, 55.9615406 -3.1806868, 55.9703043 -3.1722134, 55.9714725 -3.1735772, 55.9649663 -3.1768207, 55.9645028 -3.1902250, 55.9585203 -3.1837638, 55.9589264 -3.1833589, 55.9658761 -3.1755965, 55.9758546 -3.1700490, 55.9698894 -3.1717423, 55.9698726 -3.1719094, 55.9673457 -3.1743716, 55.9608269 -3.1809491, 55.9626007 -3.1788719, 55.9456193 -3.2178696, 55.9666564 -3.2048348, 55.9896602 -3.3989461, 55.9897226 -3.3892617, 55.9904018 -3.3860921, 55.9316272 -3.2648845, 55.9459387 -3.2172281, 55.9261122 -3.1387785, 55.9535356 -3.2058772, 55.9468216 -3.2042574, 55.9122985 -3.3155498, 55.9418064 -3.1502056, 55.9366240 -3.1802622, 55.9259084 -3.1931834, 55.9234603 -3.2480989, 55.9111503 -3.3240497, 55.9386265 -3.2264699, 55.9311720 -3.2951988, 55.9014700 -3.2230460, 55.9635314 -3.2337201, 55.9623235 -3.2362031, 55.9400736 -3.1717606, 55.9808127 -3.2595224, 55.9514755 -3.1782823, 55.9511672 -3.1780596, 55.9509125 -3.1777434, 55.9486026 -3.1924520, 55.9427213 -3.2130274, 55.9431431 -3.2136700, 55.9480325 -3.1815054, 55.9480039 -3.1817137, 55.9089361 -3.3201414, 55.9094368 -3.3204754, 55.9092872 -3.3205265, 55.9085739 -3.3187295, 55.9117444 -3.3246249, 55.9114205 -3.3241848, 55.9691533 -3.2784692, 55.9163294 -3.3174640, 55.9437913 -3.2075720, 55.9438272 -3.2058255, 55.9439569 -3.2059882, 55.9141250 -3.3250705, 55.9140139 -3.3251617, 55.9501068 -3.1901274, 55.9502048 -3.1904658, 55.9502374 -3.1901476, 55.9777985 -3.2431662, 55.9341031 -3.3103280, 55.9338808 -3.3104461, 55.9505032 -3.1770192, 55.9644079 -3.2126470, 55.9509705 -3.1758549, 55.9353260 -3.1974910, 55.9359590 -3.1944058, 55.8843050 -3.3391037, 55.9439543 -3.2071456, 55.9319254 -3.2512353, 55.9173812 -3.3147110, 55.9482625 -3.1920719, 55.9122188 -3.3171913, 55.9228018 -3.1364902, 55.9552280 -3.1478679, 55.9549996 -3.1445229, 55.9355007 -3.1026548, 55.9135725 -3.3140139, 55.9167553 -3.3178746, 55.9218026 -3.1745330, 55.9220250 -3.1740037, 55.9222596 -3.1746208, 55.9451505 -3.1872267, 55.9426518 -3.1008380, 55.9338262 -3.0919845, 55.9338797 -3.0920141, 55.9189185 -3.2647989, 55.9214872 -3.3034840, 55.9344336 -3.1226594, 55.9503499 -3.1810630, 55.9516064 -3.1841709, 55.9237248 -3.2366306, 55.9833943 -3.2415959, 55.9347829 -3.1798219, 55.9122663 -3.3242829, 55.9154236 -3.3172381, 55.9676214 -3.1664619, 55.9247393 -3.2762275, 55.9834316 -3.2423890, 55.9836698 -3.2462331, 55.9836844 -3.2504406, 55.9837405 -3.2490698, 55.9265395 -3.2441561, 55.9358853 -3.2101222, 55.9495537 -3.1836402, 55.9229086 -3.3978162, 55.9095414 -3.2288680, 55.9086019 -3.2094913, 55.9503720 -3.1813833, 55.9504108 -3.1802868, 55.9507721 -3.1811578, 55.9658637 -3.1761995, 55.9527684 -3.2488426, 55.9812017 -3.1750664, 55.9812425 -3.1753695, 55.9614848 -3.1812115, 55.9503954 -3.3029550, 55.9395792 -3.2047082, 55.9395908 -3.2047041, 55.9376968 -3.2030817, 55.9089416 -3.3164123, 55.9308207 -3.2096951, 55.9743623 -3.1997016, 55.9330618 -3.1065999, 55.9335680 -3.1067948, 55.9375488 -3.3118506, 55.9728634 -3.3514884, 55.9429037 -3.2078542, 55.9475634 -3.3645665, 55.9459800 -3.2223160, 55.9593810 -3.2409668, 55.9561231 -3.1987844, 55.9463571 -3.2082808, 55.9231651 -3.2343395, 55.9561721 -3.1565201, 55.9378482 -3.3327076, 55.9445511 -3.2071402, 55.9524023 -3.1867211, 55.9522776 -3.1904447, 55.9423834 -3.1891736, 55.9396025 -3.1913584, 55.9383522 -3.2265372, 55.9350041 -3.1939677, 55.9585188 -3.1644249, 55.9517596 -3.2028162, 55.9395810 -3.1916680, 55.9457233 -3.1826212, 55.9625044 -3.2362710, 55.9627903 -3.2341275, 55.9414710 -3.2036216, 55.9295730 -3.1756342, 55.9242094 -3.1728587, 55.9239552 -3.1723571, 55.9240756 -3.1746808, 55.9241838 -3.1735301, 55.9230650 -3.1714407, 55.9232656 -3.1716767, 55.9519102 -3.2244910, 55.9386901 -3.3172128, 55.9387866 -3.3166414, 55.9268426 -3.1666054, 55.9413339 -3.2710077, 55.9413445 -3.2708146, 55.9443702 -3.1853406, 55.9409652 -3.1851060, 55.9411294 -3.1853959, 55.9548055 -3.1927722, 55.9273713 -3.1874512, 55.9441079 -3.1919941, 55.9265860 -3.2092934, 55.9509401 -3.1790287, 55.9632358 -3.1796142, 55.9274324 -3.1996630, 55.9303417 -3.2637536, 55.9303636 -3.2638502, 55.9305298 -3.2635743, 55.9308144 -3.2639192, 55.9583318 -3.1187044, 55.9140047 -3.2847797, 55.9532656 -3.1152143, 55.9533715 -3.1154926, 55.9536925 -3.1156095, 55.9523964 -3.1125548, 55.9531590 -3.1065611, 55.9569152 -3.1168216, 55.9545977 -3.1418305, 55.9374032 -3.1711512, 55.9392787 -3.1786578, 55.9392916 -3.1784800, 55.9410201 -3.1806656, 55.9409384 -3.1805218, 55.9435127 -3.1836307, 55.9446441 -3.1839145, 55.9353259 -3.1974274, 55.9356823 -3.2014008, 55.9372592 -3.2021206, 55.9429165 -3.1831794, 55.9121573 -3.3216925, 55.9312185 -3.1718146, 55.9274598 -3.3076072, 55.9276450 -3.3080783, 55.9276631 -3.3081360, 55.9240601 -3.2517049, 55.9340161 -3.1746636, 55.9258469 -3.1648168, 55.9539718 -3.1946063, 55.9230518 -3.1726728, 55.9233383 -3.1720153, 55.9624754 -3.2326403, 55.9551794 -3.4015311, 55.9383407 -3.3187573, 55.9310730 -3.3145350, 55.9311471 -3.3142171, 55.9157480 -3.2864086, 55.9159814 -3.2865221, 55.9484210 -3.1872643, 55.9503683 -3.2078227, 55.9305617 -3.1761991, 55.9192762 -3.1670567, 55.9448310 -3.1949994, 55.9446376 -3.1965778, 55.9445589 -3.1947495, 55.9444142 -3.1965059, 55.9447377 -3.1971839, 55.9442766 -3.1978649, 55.9324266 -3.1585275, 55.9417129 -3.1849464, 55.9417884 -3.1851916, 55.9418282 -3.1853346, 55.9418526 -3.1852528, 55.9418744 -3.1849589, 55.9418899 -3.1847817, 55.9418905 -3.1855192, 55.9419227 -3.1854387, 55.9420262 -3.1854659, 55.9421747 -3.1855648, 55.9412750 -3.1446800, 55.9330745 -3.2607364, 55.9207513 -3.1600951, 55.9520027 -3.2062005, 55.9523984 -3.2038646, 55.9530497 -3.2000438, 55.9534470 -3.1976948, 55.9535975 -3.1968237, 55.9331086 -3.1362248, 55.9328125 -3.1366963, 55.9221224 -3.1339138, 55.9223185 -3.1339297, 55.9225101 -3.1339536, 55.9230177 -3.3792156, 55.9447090 -3.1977550, 55.9354932 -3.2368783, 55.9811288 -3.1900190, 55.9687011 -3.1415142, 55.9611799 -3.1900622, 55.9443966 -3.1836641, 55.9389888 -3.1717191, 55.9390958 -3.1739542, 55.9396811 -3.1731682, 55.9400547 -3.1761388, 55.9408960 -3.1768412, 55.9044458 -3.1561935, 55.9369677 -3.2108383, 55.9219280 -3.1788973, 55.9551528 -3.1962671, 55.9332363 -3.2293846, 55.9216297 -3.1545295, 55.9538687 -3.1922380, 55.9773393 -3.1724494, 55.9789535 -3.2110248, 55.9449763 -3.1994667, 55.9440570 -3.0985717, 55.9308970 -3.2761417, 55.9308699 -3.2764985, 55.9449994 -3.1905191, 55.9450146 -3.1904231, 55.9450298 -3.1903272, 55.9450449 -3.1902313, 55.9451338 -3.1906532, 55.9471706 -3.1875904, 55.9472333 -3.1877797, 55.9473065 -3.1867806, 55.9474310 -3.1878868, 55.9475351 -3.1877754, 55.9476704 -3.1869573, 55.9466232 -3.1903104, 55.9227217 -3.1743920, 55.9228810 -3.1754273, 55.9231124 -3.1754193, 55.9229249 -3.1782458, 55.9499694 -3.1797507, 55.9499757 -3.1798160, 55.9500637 -3.1794660, 55.9500938 -3.1794485, 55.9229601 -3.1790391, 55.9234202 -3.1790544, 55.9496737 -3.1953225, 55.9496093 -3.1936827, 55.9324201 -3.2283154, 55.9332737 -3.2297560, 55.9540835 -3.1946291, 55.9538883 -3.1945191, 55.9332338 -3.3059686, 55.9461093 -3.1908375, 55.9219330 -3.1748598, 55.9218016 -3.1748987, 55.9219960 -3.1749734, 55.9744239 -3.1691820, 55.9728088 -3.1726327, 55.9662597 -3.2747756, 55.9236090 -3.1756325, 55.9232313 -3.1775694, 55.9233923 -3.1756184, 55.9233871 -3.1778419, 55.9232089 -3.1756515, 55.9241251 -3.1769791, 55.9240500 -3.1763163, 55.9240459 -3.1760836, 55.9760545 -3.1722808, 55.9760744 -3.1723069, 55.9760967 -3.1723363, 55.9761143 -3.1723594, 55.9761347 -3.1723863, 55.9403945 -3.2158834, 55.9278319 -3.2080812, 55.9349041 -3.1941656, 55.9352085 -3.1942601, 55.9415572 -3.1816423, 55.9764476 -3.1748222, 55.9239723 -3.2766478, 55.9733387 -3.1597088, 55.9734148 -3.1600433, 55.9735494 -3.1606497, 55.9735513 -3.1593324, 55.9736293 -3.1610016, 55.9224592 -3.1709234, 55.9218927 -3.1712183, 55.9213809 -3.1720986, 55.9226362 -3.1713083, 55.9217894 -3.1710946, 55.9214361 -3.1718249, 55.9226459 -3.1734170, 55.9213580 -3.1747778, 55.9220244 -3.1710946, 55.9218908 -3.1714830, 55.9610834 -3.2095634, 55.9630366 -3.2717464, 55.9630747 -3.2715963, 55.9484447 -3.1843437, 55.9484777 -3.1836947, 55.9170876 -3.2804582, 55.9135224 -3.2850940, 55.9067106 -3.2882563, 55.9217086 -3.1768073, 55.9222416 -3.1726200, 55.9588598 -3.2100369, 55.9590703 -3.2119737, 55.9439019 -3.2085830, 55.9451311 -3.1897703, 55.9452737 -3.1901683, 55.9877270 -3.4032457, 55.9446192 -3.1863319, 55.9458070 -3.2095020, 55.9444803 -3.2039362, 55.9460182 -3.2010225, 55.9459465 -3.2016327, 55.9128704 -3.1462314, 55.9096084 -3.1641850, 55.9523560 -3.1898764, 55.9501677 -3.1941355, 55.9224638 -3.1384787, 55.9318779 -3.1171239, 55.9136277 -3.2843172, 55.9298225 -3.2990436, 55.9311044 -3.3133383, 55.9458515 -3.1980077, 55.9457862 -3.1979355, 55.9452290 -3.1985640, 55.9437008 -3.2082520, 55.9805652 -3.3733239, 55.9805687 -3.3735771, 55.9805828 -3.3738869, 55.9866034 -3.3821926, 55.9112196 -3.2389868, 55.9432504 -3.1876414, 55.9446635 -3.1870755, 55.9435643 -3.1873169, 55.9512576 -3.1129346, 55.9514240 -3.1093846, 55.9229811 -3.1763698, 55.9230219 -3.1728013, 55.9221871 -3.1768683, 55.9714345 -3.2340139, 55.9756296 -3.2991464, 55.9071740 -3.1760256, 55.9225250 -3.1716936, 55.9042124 -3.2337312, 55.9420976 -3.2147413, 55.9405016 -3.1167372, 55.9632048 -3.1967376, 55.9468551 -3.1921685, 55.9389289 -3.2006557, 55.9381152 -3.2525427, 55.9412187 -3.1774429, 55.9779252 -3.2983140, 55.9479663 -3.2096906, 55.9218200 -3.1722829, 55.9295395 -3.1282958, 55.9301933 -3.1287728, 55.9619346 -3.2372188, 55.8999085 -3.2504636, 55.9352033 -3.0999188, 55.9343002 -3.1048832, 55.9321485 -3.0988146, 55.9014944 -3.2029824, 55.9679010 -3.2352863, 55.9706854 -3.2358050, 55.9710370 -3.2354851, 55.9710928 -3.2351825, 55.9711575 -3.2348271, 55.9712178 -3.2357510, 55.9712241 -3.2344343, 55.9713106 -3.2340930, 55.9717340 -3.2345051, 55.9719358 -3.2348431, 55.9719826 -3.2342604, 55.9556426 -3.1715490, 55.9557362 -3.1704782, 55.9558930 -3.1705907, 55.9357218 -3.3185706, 55.9415743 -3.1747963, 55.9415635 -3.1757823, 55.9116844 -3.3222899, 55.9119672 -3.3224414, 55.9239634 -3.1724671, 55.9220936 -3.1720186, 55.9294754 -3.2049102, 55.9239120 -3.1786280, 55.9220264 -3.1760991 +CN, US, IN, FR, IE, IT, JP, ES, CH, RU, NL, LV, NO, RO, UA, JO, DE +yes +48.8914267 2.4345090, 48.9303011 2.2689297, 48.6997370 2.3739749, 48.8735147 2.3546804, 48.8725743 2.3544129, 48.8454320 2.2826721, 48.8679601 2.3808000, 48.9339922 2.3313679, 48.9053922 2.3819002, 48.7354660 2.4497950, 48.9516594 2.5645141, 48.9294308 2.4038695, 48.9659991 2.3902127, 49.0017114 2.3713145, 48.8876146 2.3607162, 48.8874370 2.3698420, 48.7112625 2.2604075, 48.8196528 2.2575851, 48.7958902 2.3164376, 48.8076552 2.2964862, 48.8431118 2.5325015, 48.7723428 2.4068085, 48.8819623 2.4866656, 48.9020602 2.2405931, 48.8953252 2.2983414, 48.8703670 2.4141090, 48.8595128 2.3801584, 48.9339162 2.4320058, 48.9491084 2.4129723, 48.9499377 2.4966883, 48.8985762 2.2000173, 48.7813956 2.4460465, 48.8420784 2.3551117, 48.8707111 2.3526824, 48.8742511 2.3562294, 48.8679659 2.3772772, 48.8690173 2.3800602, 48.9196348 2.3033098, 48.7818160 2.3571728, 48.7817353 2.3571994, 48.9521895 2.2347921, 48.9255385 2.2792899, 48.7856167 2.2510412, 48.8853542 2.4002846, 48.7959103 2.1395452, 48.9094646 2.2166478, 48.9506037 2.3920534, 48.8873605 2.3541200, 48.8885339 2.3563367, 48.8172877 2.3936138, 48.9199822 2.4253046, 48.8341064 2.5457532, 48.8311403 2.5359242, 48.8295031 2.2375046, 48.8986515 2.6018540, 48.7055664 2.4096044, 48.8816642 2.2404690, 48.8640439 2.1954059, 48.7261722 2.2720548, 48.9717304 2.3907479, 48.9774026 2.4109439, 48.9724538 2.3933323, 48.9670268 2.3975092, 48.9792955 2.3972390, 48.9703955 2.3947230, 49.0085298 2.3947059, 48.9011299 2.2351352, 48.9459345 2.3715535, 48.9761540 2.3837000, 48.8921659 2.2297528, 48.8863311 2.2168327, 48.9934635 2.2467040 +yes +162, 251, 164, 493, 238, 146, 157, 454, 318, 252, 175, 208, 178, 478, 178, 118, 278, 103, 237, 82, 158, 155, 162, 362 +1 +Le Fournil de Lourmel, La Boul'Ange, La Boulenge d'Antan, Boulangerie - Pâtisserie Méri, Les Sourires de Dante, Du Pain et des Idées, La Fournée des Gourmets, La Gerbe d'Or, Boulangerie Hélène et Bernard Dorange, Les compagnons de Voltaire, Guesdon, Aux délices de Saint-Antoine, Boulangerie Jacques Bazin, Aux Délices de Manon, Céline et Étienne, Les Moissons, Vitry d'Aubigny, Boulangerie Thierry Renard, Moisan, Le Grenier à Pain, Nature de pain, Le chant du pain, A. et H. Jourdan, Le Pain d'Auguste, Boulangerie Topaze, Boulanger Pâtissier Julien, Chez Paco, La baguette des Pyrenees, Gaetan Romp, Boulangerie Patisserie, Boulangerie Pâtisserie des Deux ponts, Aux délices de Jussieu, Gwen Choc, Boulangerie Julien, Boulangerie Pâtisserie Gaumer, Boulangerie Kahn, Boulangerie Blin, Boulangerie Patrick et Christine, Tout Autour du Pain, Le Fournil du Maine, Boulanger Patissier, Maison Coët, Le Moulin de la Vierge, L'Univers du Pain, Bread & Roses, Au Saint-Honoré, Boulangerie "Les Caprices de Charlotte", Le Boulanger des Invalides, Julien, Boulangerie de l'Entr'acte, Le Boulanger de Monge, Maison Bichon, Aux Gamins de Ménilmontant, L'Epi d'Or, Boulangerie Yan Chantelle, Boulangerie Bonon, Maison Dault, La Grignotière, Joséphine, Le Badine de Martine, Bechu, Boulangerie Schou, Des Gâteaux et du Pain, Jossé, Boulangerie Saint-Louis, Le Fournil Du Village, Aux Sucreries de ma Mie, Le Quai du Pain, Huré Boulanger Patissier, Boulangerie Thevenin, Boulangerie Pascal & Sylvie Robin, Aux délices du palais, Boulangerie Gontier, Boulangerie Laurent Roperh, Les petits mitrons, Patisserie des Sultans, Autour du Fournil, La Tlemcenienne, Le Grenier de Félix, Arnaout, Paul, Boulangerie Patisserie, Boulangerie du 37, Le boulanger du parc, Les Délices Vauvenargues, Boulangerie, Boulangerie du Val de Grâce, Aux délices de Christine, Le Pain au Naturel, Blé sucré, Christian et Myckie, Patisserie de Choisy, Patisserie Saison, Arnaud DELMONTEL, Pâtisserie Hubert, Au Bec Sucré, Boulangerie Eric Kayser, Michel Deschamps, Leduc, Pains et Gourmandises, Les Saveurs de Charenton, Au Pain d'Autrefois, Landemaine, Maison Ellini, Zerzour, Pichard, Dossemont, Moisan, La Truffe Noire, Le Saint-Georges, Les Gourmandises D'Eiffel, Eric Kayser, Paul Soulabaille, Boulangerie Gwendoline et Bruno, La Prestigieuse, Au Coin de la Rue, Hissine, Boulangerie Patisserie de la Villette, Dominique Saibron, La fournée d'Augustine, Le Pain de Jacques, Au Plaisir du Pain, Boulangerie Feu de Bois, Au Levain des Martyrs, Paul, La Pompadour, La Ruche Gourmande, Aki boulanger, Boulangerie du Fauborg, Boulanger Patissier, Les Bannetons de Charonne, Boulangerie Magnelli, La Parisienne, Maison Kayser, Boulangerie des Epinettes, Aux Epis d'Or, Boulangerie Basso, Boulangerie F. Comyn, Boulangerie Pâtisserie L'Escale, Boulanger Ounissi, Christophe & Muriel, Le petit creux, Cousin, La Miche qui Fume, Au Grain de Blé, Baguépi, Le Notre, Festival des Pains, Maison Landemaine, Stohrer, Le fournil d'Andrézieux, Friends, Boulangerie Jean-Olivier Rondot, L'impérial, Coquelicot, Le 41, Boulangerie Fantasiiia, Au Levain de Pyrénées, A la baguette de Mozart, Au Duc de la Chapelle, L'ami du pain, La Boulange du 12e, Le pain d'antan, Sadaharu Aoki, Eric Kayser, La Gourmandise, La Flûte Enchantée, Midoré, La Tranche Dorée, Artisan Boulanger, Maison Landemaine, La Gobelinoise, Boulangerie Akiko et Philippe Bruere, Paul, Lebon, Tembely, La Vitryenne, Aux armes de Niel, Le Grenier à Pains, Au pain complet de Paris, La Moulinoise, Maison Legendre, Boulangerie, Delmontel, Boulangerie, Festival des pains, Artisan boulanger, Vaudron, Les Sept Épis, Pains et Passion, Les Délices du Fournil, francesca, Boulangerie Alsacienne Benoît Maeder, Bernard Delattre, Poilane, Rouiller, La Tradition, Le Bel Épi, La Gerbe de Blé, La boulangerie des buttes Chaumont, L'Atelier des Pains, Paul, Fournil de Wattignies, Huré, La Chocolatine, L'Art du Pain, By Cyril Lignac, Boulangerie Patisserie, Aux delices des Lilas, Boulangerie Benoist, Boulangerie Patisserie, Le Fournil de Paris, Le pétrin alsacien, Le pain retrouvé, Robin, Au Fournil Gaité, Au Chardon d'Argent, Boulangerie des Lombards, Le Fournil de Paris, Millie's Cookies, La Boul'Ange, Paul, Paul, Boulangeir Pâtisserie Kellerman, Amorino, Yv Nghy, Boulangerie Patisserie SAS Penain, L'Artisan du Pain, Boulangerie Patisserie Sainte-Anne, La Crac'ante, Monsieur Fernand, La Gambette à Pain, Maison Hébert, Maison Kevest, Boulangerie Patisserie Sandwicherie, Le fournil du moulin, La vicomte, Bonjour Backery, Paul, Fifty Fifty, Laurent Duchêne, La Bretagne, Boulangerie Brune 77, Boulangerie L. Paulin, Le fournil de Vanves, Maison Lefaure, Le Jardin des Pains, Boulangerie Pâtisserie Yelles, Annie & Gilles Boulangerie, Aux Délices de la Roquette, La tradition du pain, La saveur du pain, La Huche Normande, Square de Belleville, Les jardins de Paul'ha, Le grenier à pain, Boulangerie Saint-Charles, Boulangerie Flandrin, L'Angelus, Guillaume Delcourt, Boulangerie de Mogador, Boulangerie Patisserie, Patisserie Poncet, Eric Kayser, Boulangerie Pascal Chevret, Le Grenier à Pain, Boulangerie, Boulangerie, Le Fournil Parmentier, Les délices de la Chapelle, Boulangerie Marceaux, Ernest & Valentin, Aux Péchés Normands, La Baguette Sedaine, Le pain d'autrefois, Rudy Père Et Fils, Boulangerie Poilâne, La Boulangerie, Boulangerie Patisserie, Midoré, Boulangerie Patisserie au 140, Au bel arôme, Boulangerie Saint-Antoine, Bernard Telhier, Eugène, Le Pain d'Autrefois, Le Pain des Lys, La flûte Gana, Colisée Gourmet, La Boulange Ve, Sud Tunisien, Artisan Boulanger, Aux Péchés Normands BIO, La Fournée d'Augustine, Le bon Panneton, Boulangerie, Au petit Versailles du Marais, Patisserie Bonjour - 你好, Au Blé d'or, Colin Régis, Gérard Mulot, Maison Guénard, Boulangerie Metayer, Artisan boulanger pâtissier, Banette, Le blé royal, Délice Pain, Le Moulin De la vierge, Golden Bread, EVA, La Boulangerie de Papa, Ciel, Aux Délices de Manon, Foulon, Au Plaisir du Pain, Brioche Dorée, Paul, Desgranges, Paul, Le Grenier à Pain "La Fayette", Boulangerie Patisserie, Boulangerie Patisserie, Au Plaisir du Pain, Yves Thuriès Chocolat, Au Paradis du Gourmand, Ladurée, Boulangerie Alsacienne, Les délices de taine, Aux Gourmandises d'Arago, Festival des Pains, Boulangerie Evrard, Le Boulanger de Monge, Eric Kayser, Paul, Pou, Sara Lina, La baguette, Le Moulin de la Vierge, Asselin, Joséphine Bakery, Paul, Maison Morange, Les Chants de Blé, La Panetière, Paul QUAI, La Pâtisserie, Mottier, Le quartier du pain, Morieux, Au royaume du pain, Boulangerie, Le Gay Choc, Pains & Friandises, La Pyramide du prince, Le Pain Au Naturel, Maison Hardel, Boulangerie Ricquer, Thevenin, Au Petit Duc, Aux Surprises, Laurent Duchêne, La caverne aux pains, L'essentiel, Le pain du faubourg, Boulangerie Estaëlle, Contini, Gosselin, Paul, Pabois, Café Pouchkine, Eric Kayser, Boulangerie Patistory, La Truffe Noire, Maison Hilaire, Aux delices d'Oceane, La flute de Meaux, L'artisan boulanger Maison Maaned, Le Fournil de Kuss, La Croquandise, La grange aux pains, Le XXV, Boulangerie Malineau, Boulangerie Patisserie, La delicieuse, Boulangerie Patisserie, Boulangerie Patisserie, Vieille France, Boulangerie Patisserie, Le fournil de Paris, Boulangerie Patisserie, Le paradis du pain, Les Fées Pâtissières, Stanz, Pralus, Le dépot de pain de l'autre Boulange, La délicieuse, Le puits d'amour, Nicolle, Boulangerie Patisserie Gregory Desfoux, Boulangerie Patisserie, Boulangerie Patisserie, Boulangerie, Eric Kayser, Éric Kayser, Boulangerie Patisserie Chocolaterie, Sazanka, Boulangerie Patisserie, Le paradis des gourmands, Gaia, La coeur des pains, Tout chaud, Le petit poucet, Paul, Paul, Les Chants de Blé, Boulangerie Patisserie Chocolatier, Utopie, Antoine Artisan Boulanger Pâtissier, Le gâteau battu, Aux Délices de Sèvres, Eric Kayser, Eric Kayser, Le Pain Quotidien, Lohezic, L'atmosphère, AM Martinno, Au levain d'antan, Mireille, Boulangerie Patisserie, Boulangerie-Pâtisserie, Passion Forest, Sarrazins, Boulangerie Patisserie, Bakery's, Boulangerie Patisserie, Chez manon, Boulangerie patisserie le grand siècle, Le fournil de Paris, Démoulin, Monoprix, La Tradition de Murat, Le fournil d'eugénie, Pezeril, Pains Gourmands, La Parisienne, Angélique et Nicolas, Aux délices du moulin, La Bellevilloise, Le pain quotidien, P'tit Pains et Gourmandises, Ammy, Brioche Dorée, Liberté, Nani, Festival des pains, La Bagette Dorée, KSC, Tout, Autour du Pain, Parisylla, Broche dorée, L'Epi d'Or de Clichy, Boulangerie Mariel, Agadipain, Boulangerie Gontrand Chérier, La Mie Câline, Maison Lallement, Boulangerie Moderne, Boulangerie Patisserie, Blouet, Collet, Éric Kayser, Les Saveurs de la Grande Armée, Paris Baguette, Candy, Mekerbeche, Paul, Maison Landemaine, Boulangerie Pearl, La Galette des Moulins, Le Fournil d'Alésia, Aux Pains des Bourbons, Dupain, His, Boulangerie Jeanne d'Arc, Les Moulins de Rosa, Les Saveurs de Batignolles, La boulangerie des artistes, Mets Caprices, chemin vert, au temps des tartines, saines saveurs, Chez Benoit, Ganesha Sweets, Hot Breads, Sri Sai RAM Sweets, Pierre Hermé, Souma et Christophe, Onfroy, Paul, La mie câline, Chambelland, gana, Maison Landemaine, Baje, Carton, Le Grenier à Pain, Éric Kayser, Éric & Olivier Belle, Muriciano, Sacha Finkelstein, Aux Merveilleux, L'Artisan des gourmands, Dalloyau, Boulangerie Patisserie, Boulangerie Patisserie, Boulangerie Patisserie, O' Délices, Maison Lendemaine, Midoré, F and JM, Mi Do Ré, Moisan, Boulangerie Patisserie, Jaune & Rouge, E. Kayser, La Mie de Pain, Chez Meunier, Festival des Pains, Au Naturel, Le Damier Gourmand, R Canelle, Miss Manon, Boulangerie Pichard, Boulangerie Patisserie, Chez Raphaelle, L'Épi de Blé, Paul, Boulanger Patissier, Brioche Dorée, Pain à la Ligne, Paul, Mason Pradier, Paul +55.9380996 -3.2058620 +873 +yes +yes +2 +yes +48.8611385 2.3941583, 48.8875758 2.3303180, 48.8749148 2.4002404, 48.8979156 2.3166483, 48.8890374 2.3392767, 48.8607252 2.4037124, 48.8624937 2.2850289, 48.8866268 2.3732545, 48.8868716 2.3419216, 48.8848404 2.3887566 +yes +16 +55.9519194 -3.1206685, 55.9358911 -3.1317799, 55.9374522 -3.1226785, 55.9244123 -3.1588931, 55.9835999 -3.1958115, 55.9641435 -3.1730936, 55.9742767 -3.1702118, 55.9731159 -3.1739750, 55.9574184 -3.1562247, 55.9099801 -3.2277882, 55.9451254 -3.1797232, 55.9191282 -3.2765048, 55.9643785 -3.1730529, 55.9791285 -3.1872469 +51.0116810 13.8720606, 51.0273756 13.7474285, 51.0823918 13.7335753, 51.0824545 13.7336039, 51.0825170 13.7336323, 51.0829896 13.7332707, 51.0828616 13.7332262, 51.0827595 13.7331813, 51.0826580 13.7331399, 51.0825999 13.7331126, 51.0825362 13.7330866, 51.0827583 13.7327555, 51.0832603 13.7324804, 51.0831002 13.7336158, 51.0117707 13.8698726, 51.0337981 13.8131925, 51.0336044 13.8119211, 51.0795450 13.6564691, 51.0803520 13.6560575, 51.0797631 13.6570269, 51.0805189 13.6559334, 51.0798370 13.6570887, 51.0801264 13.6570556, 51.0798991 13.6571398, 51.0798903 13.6567817, 51.0800585 13.6558509, 51.0795076 13.6568246, 51.0800106 13.6572306, 51.0802644 13.6565229, 51.0801590 13.6559327, 51.0796771 13.6569580, 51.0801474 13.6574467, 51.0795919 13.6568858, 51.0799591 13.6557717, 51.0806719 13.6547946, 51.0844031 13.6492495, 51.0844377 13.6491173, 51.0845865 13.6492686, 51.0848005 13.6481637, 51.0560319 13.6534353, 51.1129021 13.7134784, 51.0870850 13.7344070, 51.0879019 13.7346740, 51.0872746 13.7345070, 51.0497161 13.6717032, 51.0497575 13.6719559, 51.0647887 13.7927801, 51.0400501 13.6372683, 51.0400368 13.6376398, 51.0397949 13.6376750, 51.0398668 13.6372683, 51.0396860 13.6366848, 51.0395593 13.6369259, 51.0392180 13.6369677, 51.0396431 13.6373610, 51.0396199 13.6371140, 51.0392895 13.6367341, 51.1523082 13.7957194, 51.1532344 13.7957454, 51.1521680 13.7957598, 51.1520584 13.7957188, 51.1536728 13.7955165, 51.1520531 13.7963601, 51.1522370 13.7957382, 51.0847930 13.6490593, 51.0849131 13.6491394, 51.0845156 13.6488769, 51.0847316 13.6490137, 51.0849792 13.6491835, 51.0844573 13.6488382, 51.0848531 13.6490969, 51.0685627 13.6241474, 51.0695246 13.6253081, 51.0699998 13.6237618, 51.0683859 13.6251032, 51.0701737 13.6247207, 51.0683173 13.6249097, 51.0694974 13.6255021, 51.0679836 13.6227283, 51.0698285 13.6245618, 51.0682702 13.6249019, 51.0700321 13.6235780, 51.0699302 13.6241295, 51.0706362 13.6240940, 51.0699677 13.6239464, 51.0699803 13.6233425, 51.0698958 13.6243490, 51.0683476 13.6228519, 51.0703047 13.6239192, 51.0681631 13.6226829, 51.0681586 13.6222257, 51.0705447 13.6245614, 51.0704860 13.6238946, 51.1190382 13.7795044, 51.0400538 13.6374139, 51.0422774 13.6356744, 51.0419915 13.6350658, 51.0422431 13.6350551, 51.0423833 13.6350452, 51.0422138 13.6356743, 51.0424026 13.6345030, 51.0424536 13.6356798, 51.0419222 13.6347316, 51.0425869 13.6359640, 51.0424255 13.6347004, 51.0423683 13.6356861, 51.0419113 13.6345174, 51.0423088 13.6353555, 51.0432389 13.7577645, 51.0436111 13.7590246, 51.1521334 13.7973645, 51.1521117 13.7971177, 51.1520977 13.7967766, 51.1526180 13.7960916, 51.1531397 13.7962202, 51.1521522 13.7975794, 51.0543396 13.6500775, 51.0444714 13.6375970, 51.0445916 13.6380352, 51.0452089 13.6382144, 51.0448329 13.6384755, 51.0420013 13.6356697, 51.0419801 13.6353571, 51.0449595 13.6381873, 51.0450957 13.6377784, 51.0451578 13.6382089, 51.0451645 13.6385095, 51.0445991 13.6376131, 51.0447789 13.6380437, 51.0449673 13.6384880, 51.0451001 13.6385027, 51.0450315 13.6384948, 51.0450594 13.6382009, 51.0416818 13.6350996, 51.0450879 13.6379787, 51.0454522 13.6334655, 51.0444342 13.6335000, 51.0444346 13.6335829, 51.0453155 13.6342072, 51.0453139 13.6338984, 51.0446628 13.6337701, 51.0446591 13.6334707, 51.0453174 13.6340041, 51.0453155 13.6341049, 51.0451033 13.6335278, 51.0444341 13.6336615, 51.0288807 13.7029059, 51.0288738 13.7030353, 51.0644000 13.6702199, 51.0645429 13.6701187, 51.0634300 13.6708257, 51.0629448 13.6704116, 51.0631020 13.6703333, 51.0643496 13.6698018, 51.0644680 13.6697240, 51.0644477 13.6701873, 51.0636715 13.6706991, 51.0634927 13.6708243, 51.0635567 13.6707778, 51.0643411 13.6702497, 51.0644908 13.6701611, 51.0644102 13.6697624, 51.0630231 13.6703734, 51.0641429 13.6701302, 51.0634263 13.6702687, 51.0639096 13.6702519, 51.0137071 13.8237285, 51.0133685 13.8237824, 51.0091874 13.7517437, 51.0791960 13.7360348, 51.0794212 13.7358213, 51.0870710 13.7344832, 51.0142964 13.7502569, 51.0087245 13.7463770, 51.0088480 13.7468738, 51.0087864 13.7463491, 51.0087804 13.7469334, 51.0086531 13.7464071, 51.0089693 13.7475994, 51.0088690 13.7473466, 51.0344156 13.8132738, 51.0348170 13.8134266, 51.0336234 13.8138274, 51.0329768 13.8143450, 51.0334312 13.8109893, 51.0343168 13.8122016, 51.0336983 13.8136243, 51.0331994 13.8114875, 51.0328423 13.8122627, 51.0342593 13.8124407, 51.0344050 13.8119857, 51.0328773 13.8146286, 51.0332285 13.8128171, 51.0344733 13.8129873, 51.0327823 13.8123939, 51.0331331 13.8116328, 51.0336632 13.8137234, 51.0327738 13.8149048, 51.0331475 13.8127182, 51.0332927 13.8113066, 51.0341415 13.8119262, 51.0330634 13.8126383, 51.0341602 13.8128656, 51.0330179 13.8118828, 51.0345801 13.8121302, 51.0329008 13.8121372, 51.0338927 13.8126132, 51.0347322 13.8125764, 51.0345819 13.8124388, 51.0333598 13.8111666, 51.0331521 13.8139008, 51.0341967 13.8119795, 51.0432745 13.6329438, 51.0433880 13.6329447, 51.0434910 13.6329348, 51.0616086 13.8881605, 51.0640528 13.6635614, 51.0638879 13.6639550, 51.0641915 13.6639163, 51.0641879 13.6640152, 51.0638942 13.6637425, 51.0641939 13.6638145, 51.0639733 13.6633695, 51.0638080 13.6677778, 51.0632291 13.6683586, 51.0629009 13.6680561, 51.0636169 13.6676692, 51.0631196 13.6683612, 51.0628342 13.6680588, 51.0636968 13.6679241, 51.0243263 13.7754713, 51.0240081 13.7747430, 51.0241660 13.7751557, 51.0245582 13.7746933, 51.0241526 13.7747192, 51.0230794 13.7751941, 51.0238220 13.7741584, 51.0245153 13.7756778, 51.0246264 13.7758160, 51.0244310 13.7749487, 51.0244424 13.7755583, 51.0240402 13.7763887, 51.0234623 13.7756473, 51.0235990 13.7758451, 51.0232885 13.7754532, 51.0238738 13.7745660, 51.0245718 13.7757461, 51.0237728 13.7760773, 51.0089122 13.7468473, 51.0545652 13.6571661, 51.0544809 13.6571568, 51.0545984 13.6575051, 51.0564776 13.6490552, 51.0580882 13.6488216, 51.0546570 13.6508731, 51.0571567 13.6545872, 51.0556063 13.6475528, 51.0569011 13.6540618, 51.0561655 13.6542541, 51.0546351 13.6507613, 51.0559429 13.6545543, 51.0571677 13.6557061, 51.0545624 13.6504539, 51.0568417 13.6544648, 51.0569245 13.6550228, 51.0568989 13.6556656, 51.0570603 13.6550313, 51.0567548 13.6539175, 51.0569839 13.6545736, 51.0570223 13.6555839, 51.0563415 13.6551338, 51.0557576 13.6480748, 51.0560964 13.6490288, 51.0556641 13.6496888, 51.0559435 13.6495665, 51.0561604 13.6490052, 51.0559214 13.6494670, 51.0561791 13.6494340, 51.0557350 13.6491827, 51.0562316 13.6494131, 51.0561324 13.6494525, 51.0414360 13.6346991, 51.0537377 13.6809286, 51.0869121 13.6263809, 51.0864569 13.6264478, 51.0868109 13.6272543, 51.0865604 13.6261106, 51.0868648 13.6272874, 51.0863500 13.6267865, 51.0863754 13.6267068, 51.0864006 13.6266273, 51.0865935 13.6259527, 51.0865248 13.6262863, 51.0869641 13.6261298, 51.0869379 13.6262564, 51.0864323 13.6265290, 51.0687005 13.7630620, 51.0645983 13.6700479, 51.1202199 13.7366354, 51.0636067 13.6634968, 51.0635972 13.6633514, 51.0485276 13.6711573, 51.0485157 13.6699918, 51.0487311 13.6711188, 51.0242553 13.7767138, 51.0268164 13.7599593, 51.0652601 13.8015009 +yes +5 +55.9424743 -3.2815848 +21 +49.3872050 8.6620109, 49.3988716 8.6899921, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.3851489 8.6733031, 49.3673694 8.6862886, 49.3956761 8.6692210, 49.3704305 8.7013213, 49.3810973 8.6895578, 49.3593333 8.6876382, 49.3810576 8.6896077 +55.8994270 -3.2972350, 55.9232575 -3.2877434, 55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9002100 -3.2321660, 55.9579565 -3.2439627, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9372727 -3.3656602, 55.9344345 -3.1791228, 55.9100535 -3.1423251, 55.9377502 -3.4029754, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9365550 -3.3142140, 55.9826346 -3.1875882, 55.9247496 -3.2493835, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9051775 -3.1653894, 55.8839472 -3.3405441, 55.9297028 -3.2566262, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9694813 -3.2293505, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9447450 -3.3593706, 55.9102318 -3.2377415, 55.9781076 -3.1743896, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9243498 -3.2526320, 55.9835994 -3.3988708, 55.9397193 -3.2934475 +Mo-Sa 10:30-20:00, Su 14:00-20:00, Sa-Su 09:00-18:00 and 48.8198098 2.3426440, 48.8486860 2.3472380, 48.8809912 2.3271773, 48.8311200 2.3020623 +Gräfenberg, Gräfenberg, Hollfeld, Pretzfeld, Eggolsheim, Dufftown, Kirchehrenbach, Alzenau, Alzenau, Spalt, Kunreuth, Ebermannstadt, Gottesgabe, Wiesenbronn, Nürnberg, Dresden, Pretzfeld, Igensdorf, Kurort Rathen, Smyrna, Eppan a.d. Weinstr. - Appiano s.s.d.v., Condom, Ebermannstadt, Hniezdne, Igensdorf-Lindelbach, Bremen, Bad Bellingen, Efringen-Kirchen, Kirchlauter, Erbendorf, Kappelrodeck, Wartmannsroth, Baiersdorf, Betzenstein, Egloffstein, Igensdorf, Kunreuth, Leutenbach, Leutenbach, Leutenbach, Leutenbach, Leutenbach, Leutenbach, Leutenbach, Pinzberg, Pinzberg, Pretzfeld, Pretzfeld, Wiesenttal, Wiesenttal, Wiesenttal, Wiesenttal, Pinzberg, Pinzberg, Pinzberg, Leutenbach, Leutenbach, Leutenbach, Wiesenttal, Kunreuth, Effeltrich, Wiesenttal, Ebermannstadt, Großheirath, Bad Staffelstein, Leutenbach, Leutenbach, Heideck, Schlüsselfeld, Castell, Wiesentheid, Hiltpoltstein, Windsbach, Ahorntal, Wilhelmsdorf, Eggolsheim, Hof, Kunreuth, Leutenbach, Pinzberg, Pottenstein, Alzenau, Arnstein, Bonyhád, Stutensee, Westhausen, St. Helens, Glenbeg, Lexington, Panchià, Höpfingen, Klaus, Jaroměřice nad Rokytnou, Valbo, Forchheim, Pretzfeld, Herrenberg, Berchtesgaden, Guderhandsviertel, Alzenau, Schlüsselfeld, Magdeburg, Lilling, Hirschaid, Frensdorf, Horné Turovce, Alverskirchen, Heiligenstadt i. OFr., Klaus, Lion-sur-Mer, Costabissara, Fougerolles, Dalwhinnie, Freudenberg, Waldstetten, Portland, Wirsberg, Quero Vas, Hagen, Schillingsfürst, Wiesenthau, Wiesenthau, Wiesenthau, Weißenstadt, Lemgo, Ohlsbach, Weißenbrunn, Moravské Lieskové, Fort Collins, Rosenberg, Sint-Truiden, Oban, Egloffstein, Port Askaig, Spalt, Minneapolis, 員山鄉宜蘭縣, Oban, Kennethmont, Kennethmont, Freeport, Bowmore, Bruichladdich +23 +49.4145277 8.6909495, 49.4111212 8.7021704 +yes +10 +Mo-Sa 09:30-20:00 +49.4120976 8.7096738 +yes +no +55.9248874 -3.1446384 +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8346251 2.2657680, 48.9012005 2.3862959, 48.8801709 2.3706981, 48.8315802 2.3158225, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8501676 2.3621707, 48.8593908 2.3144172, 48.8299268 2.3465439, 48.8609726 2.2828299, 48.8563247 2.3152562, 48.8611046 2.3413657, 48.8475898 2.3031985, 48.8464653 2.2801018, 48.9003252 2.3734463, 48.8804901 2.2865619, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8323948 2.3645635, 48.8645440 2.4097670, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.9007525 2.3748724, 48.8635035 2.4085486, 48.8635857 2.2722338, 48.8536267 2.3664311, 48.8408422 2.3172666, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8387525 2.2535353, 48.8281523 2.2728394, 48.8168431 2.3604808, 48.8595020 2.3116861, 48.8407841 2.3912112, 48.8787212 2.3698437, 48.8586303 2.3897622, 48.8580224 2.3896621, 48.8364028 2.2775659, 48.8558395 2.3835889, 48.8820806 2.3381707, 48.8519985 2.2908966, 48.8656358 2.2892405, 48.8786755 2.3549221, 48.8797035 2.3026873, 48.8478375 2.3535433, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8936152 2.3152934, 48.8522407 2.2805336, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8711680 2.3244832, 48.8436106 2.3422313, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.8233460 2.3160166, 48.8380740 2.3312952, 48.8449642 2.2715165, 48.8473675 2.2588537, 48.8532253 2.3080493, 48.8720375 2.2998901, 48.8738003 2.2922634, 48.8751861 2.3096416, 48.8380740 2.3312952, 48.8449642 2.2715165, 48.8473675 2.2588537, 48.8532253 2.3080493, 48.8720375 2.2998901, 48.8738003 2.2922634, 48.8751861 2.3096416, 48.8941507 2.3733344, 48.8258806 2.3446643, 48.8679452 2.4057911, 48.8711283 2.4085012, 48.8565470 2.3790561, 48.8457849 2.4008634, 48.8384296 2.3723291, 48.8270093 2.3590302, 48.8635007 2.3703277, 48.8937900 2.3314100, 48.8631933 2.3689292, 48.8503953 2.3596248, 48.8649231 2.3755432, 48.8403571 2.3213304, 48.8873385 2.3222062, 48.8338034 2.2847592, 48.8464060 2.3874300, 48.8414869 2.3732320, 48.8350223 2.3575595, 48.9007173 2.3745755, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8206480 2.3248645, 48.8936129 2.3029112, 48.8455829 2.3086474 +104 +49.4186075 8.6904514 +yes + +49.4869999 8.7367276, 49.4943601 8.7246887 +La bobine de fil and www.cite-creation.com, Fresque du Demi-Millénaire - Part 2, Fresque Bottazzi, Le mur des Canuts and http://cite-creation.com/, Fresque Musée T.Garnier 18 - Quartier des Etats-Unis, habitations en commun, Fresque Histoire des transports Lyonnais, Fresque "Lyon, la santé, la vie" and http://cite-creation.com/, Lyon et sa région, terre de l’humanisme and http://cite-creation.com/, Lyon et sa région, terre de l’humanisme and http://cite-creation.com/, Le mur du cinéma and http://cite-creation.com/, Fresque de Gerland and http://cite-creation.com/, La Fresque Lumineuse - La ville dans le futur and http://cite-creation.com/, Fresque "Mur Démo" and http://cite-creation.com/, Fresque Musée T.Garnier 4 - Une Cité Industrielle, Fresque de Shangaï, Le Théâtre des Charpennes and http://cite-creation.com/, Fresque Musée T.Garnier 17 - Abattoirs de la Mouche, Fresque Musée T.Garnier 1 - Annonce Musée, Fresque Musée T.Garnier 3 - Années 1900, Fresque Musée T.Garnier 19 - Cité idéale d'Egypte, Fresque Musée T.Garnier 23 - Cité idéale de Russie, Fresque Musée T.Garnier 20 - Cité idéale de l'Inde, Fresque Musée T.Garnier 22 - Cité idéale de la Côte d'Ivoire, Fresque Musée T.Garnier 24 - Cité Idéale des USA, Fresque Musée T.Garnier 21 - Cité idéale du Mexique, Fresque Musée T.Garnier 10 - Ecole, Fresque Musée T.Garnier 9 - Habitations, terrasse, Fresque Musée T.Garnier 12 - Etablissements sanitaires, Fresque Musée T.Garnier 7 - Habitations, ensemble citadin, Fresque Musée T.Garnier 8 - Habitations, vue rapprochée, Fresque Musée T.Garnier 16 - Hôpital de Grange-Blanche, Fresque Musée T.Garnier 6 - La Gare, Fresque Musée T.Garnier 11 - La tour d'horloges, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Fresque Musée T.Garnier 15 - Stade de Gerland, Fresque Musée T.Garnier 14 - Les hauts fourneaux, Fresque Musée T.Garnier 5 - Les Services Publics, Fresque Musée T.Garnier 2 - Tony Garnier Visionnaire, Fresque Musée T.Garnier 13 - Vue des usines, Fresque Disques Wem, Fresque Musée T.Garnier 22 - Cité idéale de la Côte d'Ivoire, annexe, Rue des grands chefs - Restaurant Paul Bocuse and http://cite-creation.com/, Paul Bocuse - Restaurant Paul Bocuse and http://cite-creation.com/, Mur de la Cour des Loges, Fresque "La renaissance" and http://cite-creation.com/, Fresque "Montluc - Jean Moulin" and http://cite-creation.com/, Fresque "Art et Industrie" and http://cite-creation.com/, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, La Fresque du Demi-Millenaire - Part 1, La fresque des Lyonnais and http://cite-creation.com/, La Bibliotheque de la Cité "des écrivains en Rhône-Alpes" and http://cite-creation.com/, Fresque Boulevard de la B.D. Lada, Boulevard de la B.D. - Joost Swarte, Boulevard de la B.D. - Loustal, Fresque La Dombes, Fresque de Meyzieu, Fresque des Fourchettes and http://www.gerard-gasquet.com/, Fresque La Résidence de la Sarra and http://cite-creation.com/, Fresque La Résidence de la Sarra and http://cite-creation.com/, Fresque La Résidence de la Sarra and http://cite-creation.com/, Fresque idéale de Québec and http://cite-creation.com/, Charlie Chaplin Bubbles, Mayoud Honda, Fresque "Oullins Centre-ville" and http://cite-creation.com/, Fresque "Du Pont d'Oullins" and http://cite-creation.com/, Mur peint : L’auberge savoyarde, La Fresque du Foyer and http://cite-creation.com/, La Fresque Art Déco and http://cite-creation.com/, Fresque RTE Lyon La Mouche and http://cite-creation.com/, Fresque ESAT Hélène Rivet and http://cite-creation.com/, Fresque Source Cachée Arbre Sacré and http://cite-creation.com/, Fresque Ancienne gare de Meyzieu and http://cite-creation.com/, Fresque Vues sur le Lyonnais and http://tomassi.chez-alice.fr/, Fresque La Chimie dans tout ses Etats and http://cite-creation.com/, Fresque "Chez Jeanne" and http://cite-creation.com/, Fresque "Allée Arborée" and http://cite-creation.com/, Fresque "La Forge" and http://cite-creation.com/, Fresque "Les Diligences" and http://cite-creation.com/, Fresque "Les Vieux Métiers 1" and http://cite-creation.com/, Fresque "Les Vieux Métiers 2" and http://cite-creation.com/, Fresque "La Route de la Soie" and http://cite-creation.com/, La Fresque du Centenaire 1912-2012, La Fresque du Centenaire 1912-2012, Fresque "Gerland Biotechnologies" and http://cite-creation.com/, La "Fresque Végétale Lumière" and http://cite-creation.com/, Fresque des Vourlois and http://cite-creation.com/, Fresque du Gymnase, Poster en facade gratte ciel and http://www.guillaume.bottazzi.org/fr/art-public/villeurbanne.html, Fresque des Roses - St Priest and http://cite-creation.com/, Fresque des Roses - Lyon, Av Santy and http://cite-creation.com/, Fresque Agir pour la biodiversité and http://cite-creation.com/, Tag La Baguetterie and http://artdekaley.blogspot.fr/p/street-art.html, Fresque aerosol and http://artdekaley.blogspot.fr/p/street-art.html, Fresque Lycée Ampere Saxe, Fresque Square Villevert and http://cite-creation.com/, Fresque du Stade Municipal, Fresque "Les basiliques de Saint-Just" and http://cite-creation.com/, Fresque Le marathon de l'impossible, Fresque Arte Aca, Fresque "La cité KAPS" and http://cite-creation.com/, Fresque "Parking cité KAPS" and http://www.ecohlcite.com/, Fresque des noirettes "Le Mur du Soleil" and http://cite-creation.com/, Fresque des noirettes "Le Mur de la Cascade" and http://cite-creation.com/, Fresque des Roses - Lyon 8ème mairie and http://cite-creation.com/, Fresque des roses - Venissieux (plan1) and http://cite-creation.com/, Fresque des roses - Venissieux (plan2) and http://cite-creation.com/, Fresque "File le temps... reste les canuts", Mur des Fourrures, Fresque DeKover and http://cite-creation.com/, Fresque "Thank You Monsieur Paul" (Bocuse) and http://cite-creation.com/, Fresque "du Confluent" and http://cite-creation.com/, Fresque des Roses - Champagne-au-Mont-d'Or and http://cite-creation.com/, Fresque "Le Jardin d'en Face" and http://cite-creation.com/, Fresque Espace Diego Rivera and http://cite-creation.com/ +48 +yes +48.8318676 2.2884097 +362 and 53.2761342 10.4887315, 53.2785461 10.4325550, 53.2788878 10.4304511, 53.2789685 10.4288410, 53.2790665 10.4275363, 53.2793515 10.4296426, 53.2795102 10.4307986, 53.2799998 10.4311699, 53.2800388 10.4305360, 53.2802531 10.4298171, 53.2809568 10.4325528, 53.2811750 10.4273023, 53.2815625 10.4295745, 53.2819911 10.4325519, 53.2826269 10.4275353, 53.2826725 10.4291199, 53.2826929 10.4307084, 53.2830280 10.4271192, 53.2831022 10.4287052, 53.2831150 10.4325998, 53.2837288 10.4279036, 53.2838773 10.4307180, 53.2839650 10.4284990, 53.2841272 10.4300084, 53.2844130 10.4326432, 53.2845618 10.4317124, 53.2848592 10.4268501, 53.2849266 10.4286468, 53.2852440 10.4326785, 53.2853993 10.4312437, 53.2862019 10.4312152, 53.2862903 10.4296828, 53.2863750 10.4281667, 53.2755425 10.4331058, 53.2761180 10.4342194, 53.2777425 10.4325522, 53.2784206 10.4363617, 53.2787675 10.4341599, 53.2792207 10.4369299, 53.2797841 10.4352717, 53.2798691 10.4329383, 53.2802341 10.4377177, 53.2804318 10.4357138, 53.2804958 10.4341054, 53.2809025 10.4367483, 53.2810767 10.4351505, 53.2811385 10.4383054, 53.2815542 10.4387704, 53.2818275 10.4359059, 53.2818582 10.4345100, 53.2819239 10.4373488, 53.2823376 10.4392990, 53.2825169 10.4360569, 53.2830035 10.4345927, 53.2833004 10.4377685, 53.2833131 10.4391705, 53.2835717 10.4400953, 53.2836192 10.4362508, 53.2840499 10.4383614, 53.2841091 10.4371511, 53.2842429 10.4346390, 53.2852186 10.4350928, 53.2859174 10.4342212, 53.2861266 10.4418947, 53.2863287 10.4367179, 53.2864599 10.4407835, 53.2866391 10.4384732, 53.2867455 10.4400080, 53.2710726 10.4382947, 53.2712649 10.4401709, 53.2715637 10.4389128, 53.2715925 10.4369872, 53.2716948 10.4356207, 53.2718374 10.4407911, 53.2719692 10.4318737, 53.2722286 10.4381808, 53.2723073 10.4283180, 53.2723904 10.4339771, 53.2724363 10.4306150, 53.2726881 10.4386844, 53.2728290 10.4358632, 53.2729874 10.4377402, 53.2730720 10.4325897, 53.2732284 10.4344339, 53.2734787 10.4368595, 53.2735875 10.4305386, 53.2736198 10.4281482, 53.2737720 10.4388769, 53.2741165 10.4378899, 53.2742165 10.4350736, 53.2744418 10.4333647, 53.2744887 10.4302344, 53.2745759 10.4321830, 53.2747589 10.4355519, 53.2750037 10.4313911, 53.2750244 10.4339792, 53.2756698 10.4357777, 53.2762404 10.4301091, 53.2769792 10.4292635, 53.2770442 10.4300230, 53.2772394 10.4288761, 53.2777241 10.4276349, 53.2779813 10.4305866, 53.2726055 10.4416071, 53.2728502 10.4404349, 53.2734544 10.4426876, 53.2743250 10.4409690, 53.2744621 10.4388953, 53.2747879 10.4443669, 53.2750500 10.4378589, 53.2751288 10.4397836, 53.2751450 10.4422597, 53.2757981 10.4406575, 53.2760134 10.4424302, 53.2760164 10.4368845, 53.2761627 10.4389881, 53.2761796 10.4452081, 53.2763269 10.4435753, 53.2766362 10.4424130, 53.2766704 10.4390843, 53.2771652 10.4411989, 53.2772523 10.4373479, 53.2774570 10.4432890, 53.2774622 10.4454378, 53.2776832 10.4389597, 53.2780373 10.4403893, 53.2780504 10.4415209, 53.2781549 10.4473295, 53.2783446 10.4438912, 53.2784492 10.4458331, 53.2788437 10.4415770, 53.2789054 10.4449397, 53.2789458 10.4393966, 53.2794086 10.4432135, 53.2794484 10.4380709, 53.2795354 10.4453708, 53.2796264 10.4421588, 53.2800367 10.4398083, 53.2800561 10.4433928, 53.2801021 10.4465008, 53.2804990 10.4442490, 53.2805738 10.4408210, 53.2810142 10.4458552, 53.2815482 10.4424549, 53.2820320 10.4405398, 53.2797657 10.4502715, 53.2800199 10.4497269, 53.2801004 10.4492386, 53.2806957 10.4514076, 53.2809171 10.4481633, 53.2809629 10.4492709, 53.2813039 10.4508782, 53.2813871 10.4469217, 53.2814826 10.4528633, 53.2816343 10.4403479, 53.2817669 10.4438881, 53.2818878 10.4501453, 53.2819890 10.4484668, 53.2822309 10.4530921, 53.2823413 10.4472747, 53.2824481 10.4497679, 53.2825917 10.4423832, 53.2828899 10.4517158, 53.2830861 10.4532008, 53.2832324 10.4444640, 53.2832644 10.4490285, 53.2833666 10.4420578, 53.2837859 10.4440672, 53.2840219 10.4478656, 53.2840421 10.4427225, 53.2845804 10.4425334, 53.2848516 10.4434057, 53.2853521 10.4442130, 53.2858661 10.4462832, 53.2858796 10.4480533, 53.2859562 10.4447281, 53.2845328 10.4543058, 53.2846452 10.4532757, 53.2856692 10.4514935, 53.2859074 10.4541269, 53.2859706 10.4326894, 53.2860876 10.4504262, 53.2860891 10.4516431, 53.2862331 10.4551076, 53.2864368 10.4486951, 53.2865416 10.4522857, 53.2865468 10.4341588, 53.2867524 10.4442833, 53.2868220 10.4349471, 53.2868925 10.4499564, 53.2869911 10.4489239, 53.2871062 10.4438475, 53.2871192 10.4506975, 53.2871194 10.4520651, 53.2872992 10.4574875, 53.2873154 10.4546493, 53.2874758 10.4563049, 53.2875741 10.4457860, 53.2877174 10.4444075, 53.2878229 10.4555057, 53.2878324 10.4429645, 53.2880147 10.4430071, 53.2881349 10.4550950, 53.2884875 10.4437367, 53.2888166 10.4526623, 53.2889339 10.4538563, 53.2881558 10.4478585, 53.2882657 10.4469997, 53.2888313 10.4496181, 53.2890622 10.4467478, 53.2896048 10.4486217, 53.2897562 10.4474893, 53.2899887 10.4449804, 53.2906473 10.4474064, 53.2906569 10.4510389, 53.2907103 10.4449384, 53.2907284 10.4465969, 53.2907509 10.4479661, 53.2914642 10.4483187, 53.2914817 10.4489736, 53.2916190 10.4504909, 53.2921300 10.4494183, 53.2844239 10.4552791, 53.2856557 10.4564919, 53.2877152 10.4596216, 53.2883024 10.4565032, 53.2883276 10.4601175, 53.2886603 10.4570435, 53.2886754 10.4588919, 53.2891997 10.4551672, 53.2892513 10.4569805, 53.2895030 10.4592396, 53.2897695 10.4619477, 53.2909285 10.4582108, 53.2863131 10.4265248, 53.2872355 10.4327684, 53.2876366 10.4262801, 53.2877399 10.4345791, 53.2878013 10.4389019, 53.2878291 10.4355610, 53.2878367 10.4372062, 53.2880742 10.4416461, 53.2884106 10.4402480, 53.2884385 10.4351391, 53.2884497 10.4361964, 53.2887476 10.4287357, 53.2889652 10.4273053, 53.2892675 10.4423403, 53.2893199 10.4371074, 53.2893432 10.4387193, 53.2893811 10.4401862, 53.2894471 10.4338566, 53.2899882 10.4279237, 53.2900173 10.4351990, 53.2901080 10.4370574, 53.2902004 10.4393046, 53.2902606 10.4383364, 53.2902934 10.4335554, 53.2904159 10.4364033, 53.2905766 10.4328178, 53.2905819 10.4283490, 53.2906678 10.4351769, 53.2907212 10.4262747, 53.2908081 10.4379270, 53.2908976 10.4336480, 53.2909769 10.4366348, 53.2910409 10.4305047, 53.2913822 10.4286086, 53.2930728 10.4263859, 53.2932250 10.4288652, 53.2932524 10.4316868, 53.2936115 10.4273995, 53.2943354 10.4293190, 53.2945085 10.4266900, 53.2950907 10.4276795, 53.2772158 10.4658264, 53.2777014 10.4641203, 53.2780024 10.4621416, 53.2782612 10.4585624, 53.2782945 10.4498138, 53.2782958 10.4652568, 53.2784461 10.4657086, 53.2785414 10.4547227, 53.2786263 10.4641222, 53.2786328 10.4520188, 53.2787736 10.4557550, 53.2787924 10.4670508, 53.2790828 10.4662430, 53.2791022 10.4648568, 53.2791640 10.4630981, 53.2792677 10.4514601, 53.2793765 10.4674115, 53.2794189 10.4528188, 53.2794217 10.4637224, 53.2795526 10.4585785, 53.2796594 10.4660088, 53.2797526 10.4542423, 53.2798863 10.4626378, 53.2799338 10.4677675, 53.2800722 10.4608966, 53.2801571 10.4519139, 53.2803121 10.4666314, 53.2806292 10.4644867, 53.2806672 10.4593631, 53.2810451 10.4657299, 53.2811282 10.4604347, 53.2811311 10.4631622, 53.2815557 10.4641010, 53.2816662 10.4552491, 53.2818042 10.4539243, 53.2818947 10.4607963, 53.2821785 10.4631616, 53.2821829 10.4561119, 53.2824551 10.4585111, 53.2824798 10.4621966, 53.2827543 10.4647244, 53.2828941 10.4598433, 53.2832188 10.4557112, 53.2834286 10.4540762, 53.2834431 10.4682343, 53.2836004 10.4666031, 53.2836872 10.4638191, 53.2837723 10.4609960, 53.2843918 10.4648994, 53.2965086 10.4505225, 53.2970659 10.4507086, 53.2972331 10.4482649, 53.2972909 10.4465259, 53.2980193 10.4288210, 53.2722859 10.4750874, 53.2734158 10.4819874, 53.2735252 10.4819483, 53.2735569 10.4819370, 53.2736634 10.4801685, 53.2738513 10.4776452, 53.2739393 10.4759802, 53.2740538 10.4816901, 53.2740773 10.4816892, 53.2741338 10.4816490, 53.2742179 10.4516208, 53.2744281 10.4771164, 53.2745874 10.4742626, 53.2746080 10.4707787, 53.2746293 10.4736401, 53.2746485 10.4656168, 53.2755292 10.4821798, 53.2756433 10.4783543, 53.2756842 10.4805945, 53.2760968 10.4743407, 53.2761750 10.4827802, 53.2769644 10.4708135, 53.2769781 10.4833074, 53.2772690 10.4745942, 53.2682855 10.4693710, 53.2859902 10.4520524, 53.2851469 10.4511304, 53.2871487 10.4462649, 53.2882270 10.4453029, 53.2872393 10.4408913, 53.2912110 10.4482268, 53.2895850 10.4328281, 53.2834187 10.4575743 +48.8298344 2.3228877, 48.8319942 2.3245602, 48.8586437 2.3458501, 48.8573191 2.3660431, 48.8580708 2.3643313, 48.8577587 2.3607290, 48.8483622 2.3739893, 48.8557612 2.3561274, 48.8533876 2.3620076, 48.8575825 2.3562566, 48.8577181 2.3586116, 48.8555900 2.3628380, 48.8437435 2.3544856, 48.8498300 2.3549148, 48.8446680 2.3483159, 48.8405040 2.3347917, 48.8556694 2.3399888, 48.8555375 2.3409454, 48.8537528 2.3324105, 48.8533939 2.3394107, 48.8493501 2.3391528, 48.8546811 2.3332029, 48.8497831 2.3401650, 48.8441458 2.3298957, 48.8468341 2.3265156, 48.8550882 2.3414828, 48.8442966 2.3310034, 48.8554631 2.3741053, 48.8533962 2.3787654, 48.8554359 2.3744522, 48.8533316 2.3759759, 48.8561021 2.3751898, 48.8263535 2.3601541, 48.8263671 2.3595230, 48.8278970 2.3505521, 48.8349997 2.3270026, 48.8332286 2.3157120, 48.8234665 2.3685489, 48.8413291 2.2990993, 48.8408025 2.2883022, 48.8581641 2.2723388, 48.8523143 2.3350471, 48.8516415 2.3185465, 48.8482525 2.3194882, 48.8537038 2.3235630, 48.8449146 2.3734371, 48.8584187 2.2875657, 48.8523799 2.4036853, 48.8544589 2.4006544, 48.8475463 2.3713427, 48.8449916 2.3240393, 48.8395978 2.2669106, 48.8274124 2.3148434, 48.8570811 2.3559832, 48.8588049 2.3266129, 48.8334988 2.3198962, 48.8527753 2.4059315, 48.8551966 2.4016334, 48.8540343 2.4058858, 48.8373556 2.2574212, 48.8378434 2.2578634, 48.8381218 2.2586505, 48.8488333 2.3253506, 48.8461967 2.3783357, 48.8360044 2.3574926, 48.8237611 2.3626525, 48.8477330 2.3484405, 48.8415272 2.3511512, 48.8288139 2.3506397, 48.8492934 2.3349249, 48.8414290 2.2990451, 48.8517156 2.3336409, 48.8566933 2.4002542, 48.8455384 2.3288228, 48.8519626 2.3388319, 48.8300397 2.3310990, 48.8374507 2.3523064, 48.8334170 2.3554490, 48.8457103 2.3192202, 48.8523526 2.3444419, 48.8568120 2.3062305, 48.8537402 2.4056302, 48.8538057 2.4056125, 48.8484568 2.3995601, 48.8478160 2.3975417, 48.8540277 2.3358692, 48.8404976 2.3244044, 48.8491586 2.2872491, 48.8472243 2.3185062, 48.8514886 2.3986829, 48.8300837 2.3230365, 48.8528282 2.4062488, 48.8474511 2.3483430, 48.8518790 2.3487080, 48.8514969 2.3476094, 48.8518241 2.3377078, 48.8393461 2.2989248, 48.8378680 2.3520336, 48.8491407 2.3785568, 48.8467150 2.3839386, 48.8479594 2.3771753, 48.8468326 2.3790947, 48.8509991 2.3778569, 48.8484434 2.3726021, 48.8490503 2.3712312, 48.8477004 2.3736634, 48.8500746 2.3738623, 48.8447706 2.3779554, 48.8451286 2.3836536, 48.8541269 2.3674250, 48.8489304 2.3762840, 48.8462620 2.3786885, 48.8453283 2.3813011, 48.8446100 2.3833680, 48.8477398 2.3888781, 48.8476122 2.3930340, 48.8420168 2.3896839, 48.8367142 2.3522749, 48.8297431 2.3515115, 48.8275755 2.3532310, 48.8473878 2.3433434, 48.8361883 2.4001628, 48.8361733 2.3992550, 48.8355057 2.3978609, 48.8381280 2.3966112, 48.8385750 2.3962263, 48.8361097 2.4056728, 48.8400454 2.3808140, 48.8347357 2.3876562, 48.8396394 2.3801031, 48.8394044 2.3805434, 48.8465303 2.3834704, 48.8463112 2.3834371, 48.8519093 2.3341886, 48.8396241 2.4024373, 48.8477852 2.3980971, 48.8485668 2.3983079, 48.8284622 2.3428564, 48.8319371 2.3141252, 48.8327575 2.3159370, 48.8330455 2.3162946, 48.8332491 2.3170528, 48.8362254 2.3224012, 48.8364089 2.3224024, 48.8324709 2.3200140, 48.8324257 2.3207007, 48.8324031 2.3208037, 48.8323749 2.3209067, 48.8514297 2.3722999, 48.8544625 2.3823250, 48.8507756 2.3816053, 48.8367172 2.3924117, 48.8366661 2.3926576, 48.8366787 2.3933514, 48.8432799 2.3892766, 48.8450336 2.3825955, 48.8453967 2.3826032, 48.8470342 2.3868537, 48.8469567 2.3869061, 48.8466891 2.3824558, 48.8467101 2.3827554, 48.8508333 2.3797344, 48.8494049 2.3783024, 48.8481949 2.3766544, 48.8482849 2.3767134, 48.8499216 2.3737700, 48.8456109 2.3933509, 48.8410573 2.3873134, 48.8478582 2.3735429, 48.8483311 2.3741932, 48.8462275 2.3737111, 48.8458407 2.3720988, 48.8459184 2.3726478, 48.8491474 2.3746104, 48.8471402 2.3725177, 48.8490161 2.3747617, 48.8470772 2.3727405, 48.8475609 2.3752480, 48.8469814 2.3726034, 48.8459741 2.3725698, 48.8459507 2.3730386, 48.8458244 2.3719271, 48.8464740 2.3718667, 48.8501253 2.3762844, 48.8493623 2.3902888, 48.8497475 2.3788828, 48.8468146 2.3805349, 48.8442266 2.3492264, 48.8310200 2.3347804, 48.8252128 2.3624715, 48.8251313 2.3623868, 48.8248667 2.3622623, 48.8462167 2.3753959, 48.8460708 2.3770013, 48.8458391 2.3749747, 48.8469247 2.3730534, 48.8472565 2.3708817, 48.8471819 2.3707631, 48.8467280 2.3702882, 48.8465554 2.3692393, 48.8463534 2.3689294, 48.8456188 2.3700692, 48.8453198 2.3707747, 48.8457141 2.3704736, 48.8274542 2.3356985, 48.8324911 2.2973690, 48.8342552 2.3021401, 48.8331822 2.3057910, 48.8330642 2.3057247, 48.8370250 2.2962718, 48.8320429 2.3030516, 48.8567473 2.3041925, 48.8562200 2.3044115, 48.8560475 2.3045247, 48.8555290 2.3047711, 48.8555382 2.3054236, 48.8553164 2.3055412, 48.8549906 2.3050099, 48.8547805 2.3051304, 48.8487705 2.3484391, 48.8488367 2.3472494, 48.8454096 2.3428012, 48.8451686 2.3207087, 48.8522230 2.3849242, 48.8510651 2.3842956, 48.8525445 2.3847726, 48.8452457 2.3838856, 48.8239780 2.3622896, 48.8368051 2.3525786, 48.8524629 2.4041332, 48.8576438 2.3546760, 48.8577293 2.3547383, 48.8578549 2.3549208, 48.8343459 2.3060180, 48.8343850 2.3935686, 48.8331731 2.3864450, 48.8330278 2.3862477, 48.8330119 2.3635033, 48.8322800 2.3612312, 48.8331196 2.3540446, 48.8321701 2.3590298, 48.8319327 2.3582100, 48.8330825 2.3614982, 48.8332640 2.3561912, 48.8321364 2.3546768, 48.8505276 2.3447826, 48.8513045 2.3459712, 48.8355997 2.3589131, 48.8353091 2.3587223, 48.8534095 2.3799147, 48.8253500 2.3613456, 48.8392195 2.3712618, 48.8321878 2.3587424, 48.8375203 2.3917674, 48.8538840 2.3375740, 48.8459719 2.2775704, 48.8286167 2.3222750, 48.8291859 2.3226894, 48.8445390 2.3211809, 48.8305262 2.3381265, 48.8496002 2.3981379, 48.8528829 2.3864220, 48.8530453 2.3745559, 48.8504050 2.3701018, 48.8517234 2.3993213, 48.8289443 2.3298857, 48.8289302 2.3293063, 48.8288878 2.3328361, 48.8376310 2.2974210, 48.8461025 2.3834255, 48.8430137 2.3209354, 48.8386044 2.2987363, 48.8472505 2.3480517, 48.8565275 2.3420348, 48.8568716 2.3421327, 48.8563329 2.3422554, 48.8569183 2.3418674, 48.8333386 2.2983800, 48.8319312 2.3029513, 48.8583659 2.3474922, 48.8542020 2.3503178, 48.8380436 2.2819311, 48.8447774 2.2964422, 48.8475784 2.2858410, 48.8499929 2.2889519, 48.8517565 2.2895333, 48.8527624 2.2872737, 48.8496754 2.3496176, 48.8518091 2.3568234, 48.8519507 2.3561108, 48.8517989 2.3564163, 48.8515128 2.3437930, 48.8575762 2.3501043, 48.8555040 2.3574259, 48.8583173 2.3517204, 48.8274198 2.3518171, 48.8572208 2.3551092, 48.8571117 2.3550358, 48.8571384 2.3549764, 48.8569458 2.3554337, 48.8271315 2.3323734, 48.8581626 2.3561038, 48.8579512 2.3567221, 48.8564037 2.3572215, 48.8569706 2.3578174, 48.8570944 2.3576266, 48.8573873 2.3589592, 48.8575151 2.3587307, 48.8574097 2.3590501, 48.8422251 2.3519017, 48.8259202 2.3471664, 48.8569391 2.3587226, 48.8562824 2.3592731, 48.8562386 2.3592343, 48.8558049 2.3600410, 48.8402209 2.3517797, 48.8555549 2.3612781, 48.8559169 2.3603985, 48.8556266 2.3621786, 48.8554990 2.3630220, 48.8550149 2.3631694, 48.8556083 2.3627374, 48.8552888 2.3629682, 48.8553171 2.3630156, 48.8552064 2.3625817, 48.8555544 2.3581927, 48.8549470 2.3612543, 48.8557611 2.3570094, 48.8556412 2.3606593, 48.8260343 2.3476244, 48.8540797 2.3659063, 48.8562566 2.3646932, 48.8549472 2.3633131, 48.8537619 2.3675235, 48.8549776 2.3673407, 48.8540510 2.3686163, 48.8538949 2.3685489, 48.8554539 2.3579276, 48.8548402 2.3583739, 48.8551687 2.3602451, 48.8543977 2.3599670, 48.8521583 2.3613070, 48.8525480 2.3641850, 48.8532015 2.3640647, 48.8544815 2.3628958, 48.8536886 2.3643812, 48.8545334 2.3627527, 48.8519412 2.3645366, 48.8498781 2.3644772, 48.8477690 2.3654853, 48.8189632 2.3613966, 48.8208495 2.3637354, 48.8235845 2.3656863, 48.8262413 2.3615997, 48.8237603 2.3652263, 48.8521687 2.3444775, 48.8533184 2.3416729, 48.8449381 2.3496655, 48.8526479 2.3470482, 48.8560432 2.3669557, 48.8559327 2.3681748, 48.8544692 2.3379604, 48.8468855 2.3408953, 48.8459422 2.3434742, 48.8422162 2.3202513, 48.8438796 2.3245430, 48.8382008 2.3515664, 48.8417641 2.3556159, 48.8429787 2.3633417, 48.8359676 2.3585104, 48.8400778 2.3373997, 48.8413087 2.3389738, 48.8413263 2.3391080, 48.8382571 2.3458273, 48.8437946 2.3390709, 48.8536730 2.3797768, 48.8543308 2.3402565, 48.8546432 2.3327719, 48.8533032 2.3340213, 48.8529586 2.3360296, 48.8516089 2.3354609, 48.8514421 2.3272954, 48.8551090 2.3306870, 48.8487629 2.3975462, 48.8416177 2.3314774, 48.8419379 2.3304718, 48.8422661 2.3280738, 48.8424306 2.3290349, 48.8471137 2.3267431, 48.8467204 2.3172126, 48.8530169 2.3313456, 48.8521220 2.3374608, 48.8396584 2.3567615, 48.8558538 2.3252896, 48.8411207 2.2875779, 48.8583918 2.4006119, 48.8390096 2.3532786, 48.8389664 2.3530576, 48.8384933 2.3512141, 48.8193723 2.3655267, 48.8296408 2.3826067, 48.8296130 2.3809208, 48.8282557 2.3802729, 48.8314453 2.3762846, 48.8511260 2.3460443, 48.8517830 2.3177917, 48.8425329 2.3202995, 48.8434466 2.3895932, 48.8397944 2.3818660, 48.8387533 2.3310982, 48.8395777 2.3302123, 48.8490162 2.3701002, 48.8498772 2.3811118, 48.8495091 2.3797387, 48.8463681 2.3733407, 48.8542991 2.3674061, 48.8538841 2.3681040, 48.8396268 2.3145492, 48.8430176 2.3242123, 48.8410422 2.3148300, 48.8479223 2.3736079, 48.8516854 2.3468389, 48.8411418 2.3133493, 48.8575743 2.2745958, 48.8564304 2.2797283, 48.8546720 2.2831002, 48.8556834 2.2695115, 48.8445537 2.3572323, 48.8438344 2.3546970, 48.8406209 2.3131425, 48.8408995 2.3133856, 48.8377889 2.3112404, 48.8510948 2.2675935, 48.8485486 2.2609653, 48.8485892 2.2607508, 48.8495519 2.2685978, 48.8478164 2.2424927, 48.8483714 2.2664428, 48.8243361 2.3260774, 48.8235176 2.3258353, 48.8410150 2.3160260, 48.8482315 2.2642376, 48.8473334 2.2588597, 48.8286456 2.3651923, 48.8454540 2.2578610, 48.8505335 2.3887324, 48.8453467 2.3836640, 48.8369274 2.3592628, 48.8513298 2.3837511, 48.8449412 2.2575407, 48.8452233 2.2577704, 48.8394586 2.2616545, 48.8403523 2.2652749, 48.8402456 2.2655127, 48.8407348 2.2646847, 48.8475082 2.3756380, 48.8378544 2.2962158, 48.8296616 2.3177920, 48.8283684 2.3161973, 48.8397098 2.2848132, 48.8412392 2.2879275, 48.8347149 2.3277467, 48.8354063 2.3258802, 48.8358672 2.3242187, 48.8355698 2.3250292, 48.8348588 2.3273891, 48.8350846 2.3267608, 48.8341036 2.3294199, 48.8324180 2.3247172, 48.8342294 2.3264332, 48.8463464 2.3945644, 48.8368961 2.3177487, 48.8367758 2.3180171, 48.8396082 2.3324972, 48.8559760 2.3666852, 48.8499857 2.3459367, 48.8485371 2.3779078, 48.8511475 2.3804023, 48.8533661 2.3445967, 48.8527336 2.3464352, 48.8526210 2.3463757, 48.8510655 2.3458688, 48.8515005 2.3480197, 48.8505010 2.3475831, 48.8414932 2.3132873, 48.8426877 2.3123128, 48.8425813 2.3133329, 48.8425225 2.3124389, 48.8566502 2.3266740, 48.8485654 2.3482310, 48.8496798 2.3526713, 48.8515559 2.3496810, 48.8472106 2.3483382, 48.8471676 2.3484712, 48.8407751 2.3245796, 48.8431709 2.3416539, 48.8426788 2.3414503, 48.8575636 2.3501179, 48.8463554 2.3405710, 48.8430442 2.3495364, 48.8431709 2.3494420, 48.8428285 2.3484260, 48.8450551 2.3490236, 48.8455001 2.3492453, 48.8449589 2.3493182, 48.8452352 2.3492038, 48.8453933 2.3492411, 48.8452357 2.3490360, 48.8451938 2.3492149, 48.8449425 2.3498446, 48.8449041 2.3498515, 48.8384619 2.3563683, 48.8384169 2.3562199, 48.8387726 2.3573303, 48.8395766 2.3564711, 48.8580509 2.3613022, 48.8584177 2.3025456, 48.8569221 2.3035938, 48.8464241 2.2954995, 48.8359122 2.3596749, 48.8530145 2.3117479, 48.8501505 2.3397562, 48.8507370 2.3741124, 48.8500040 2.3740125, 48.8516089 2.3778622, 48.8503505 2.3762126, 48.8465347 2.3810262, 48.8452145 2.3770818, 48.8353460 2.2854410, 48.8247155 2.3622282, 48.8245453 2.3629329, 48.8217881 2.3649842, 48.8462262 2.3142889, 48.8299382 2.3626544, 48.8567106 2.3947298, 48.8577097 2.3005438, 48.8515887 2.3004692, 48.8568923 2.2921973, 48.8516581 2.3996110, 48.8512398 2.3832978, 48.8502779 2.3906229, 48.8503887 2.3930028, 48.8502002 2.3918245, 48.8507491 2.3956735, 48.8399742 2.3934259, 48.8366296 2.4029905, 48.8385089 2.3991495, 48.8426310 2.3854954, 48.8347163 2.4076218, 48.8479740 2.3007339, 48.8468451 2.3046139, 48.8475414 2.3012068, 48.8467540 2.3049111, 48.8390560 2.3924535, 48.8378894 2.3906889, 48.8397585 2.3884230, 48.8390438 2.3923714, 48.8482418 2.3105178, 48.8505805 2.3092017, 48.8517546 2.3104073, 48.8514424 2.3108980, 48.8517685 2.3133289, 48.8498367 2.3124580, 48.8517506 2.3131416, 48.8470660 2.3954688, 48.8446026 2.3117965, 48.8445056 2.3203943, 48.8446279 2.3203361, 48.8458069 2.3492233, 48.8503634 2.3868517, 48.8438107 2.3152002, 48.8437516 2.3150319, 48.8333957 2.3653856, 48.8449195 2.3183472, 48.8453227 2.3190283, 48.8323092 2.3130666, 48.8254617 2.3652375, 48.8569621 2.3721314, 48.8567777 2.3726141, 48.8545688 2.3719378, 48.8536042 2.3707268, 48.8538783 2.3707951, 48.8546993 2.3708799, 48.8480733 2.3112387, 48.8345104 2.3934103, 48.8455102 2.3829497, 48.8553433 2.3747935, 48.8538434 2.3724806, 48.8418339 2.3497835, 48.8549268 2.3539661, 48.8264546 2.3410881, 48.8570588 2.3798634, 48.8524031 2.3825246, 48.8303551 2.3540212, 48.8546913 2.3857584, 48.8564566 2.3025481, 48.8314493 2.3411256, 48.8380307 2.2817398, 48.8503931 2.3688912, 48.8506208 2.3689945, 48.8453517 2.2976315, 48.8493300 2.3749472, 48.8341870 2.3157058, 48.8224620 2.3587564, 48.8452541 2.2717989, 48.8400603 2.2864594, 48.8437006 2.2963141, 48.8449901 2.2972313, 48.8502257 2.3782954, 48.8503235 2.3783645, 48.8495013 2.3784402, 48.8515963 2.3430149, 48.8492402 2.2880111, 48.8401706 2.3924398, 48.8290830 2.3743921, 48.8283217 2.3816212, 48.8351017 2.3201496, 48.8351935 2.3203079, 48.8218202 2.3423613, 48.8444522 2.3901640, 48.8443813 2.3902545, 48.8260323 2.3598011, 48.8226689 2.3629591, 48.8432368 2.3854870, 48.8370059 2.2837291, 48.8365516 2.2821427, 48.8356895 2.2807712, 48.8354976 2.2815391, 48.8370362 2.2836115, 48.8470725 2.4064857, 48.8391796 2.3955829, 48.8387420 2.3963264, 48.8390768 2.3942535, 48.8370556 2.3918823, 48.8372166 2.3915674, 48.8387373 2.3961225, 48.8516698 2.3805401, 48.8385818 2.2889747, 48.8383246 2.2880446, 48.8381278 2.2872162, 48.8377112 2.2593212, 48.8566013 2.3030438, 48.8447537 2.3186687, 48.8277214 2.3493461, 48.8582656 2.3882446, 48.8543675 2.3835627, 48.8549950 2.3458720, 48.8543860 2.3452440, 48.8538530 2.3437110, 48.8526640 2.3534610, 48.8530320 2.3533850, 48.8523740 2.3670920, 48.8361075 2.3240698, 48.8537952 2.4109052, 48.8498873 2.3503879, 48.8377658 2.3556217, 48.8373866 2.2787503, 48.8376849 2.2783476, 48.8370124 2.2782827, 48.8373420 2.2787571, 48.8584947 2.3265348, 48.8248377 2.3236483, 48.8238612 2.3234793, 48.8243856 2.3234123, 48.8242408 2.3233372, 48.8280919 2.3264056, 48.8403734 2.3690860, 48.8388484 2.3702978, 48.8376057 2.3732965, 48.8365782 2.3714028, 48.8397347 2.3696009, 48.8359107 2.3720037, 48.8315850 2.3242790, 48.8521286 2.3374207, 48.8469541 2.4077243, 48.8485558 2.3279413, 48.8390548 2.2577341, 48.8388575 2.2576602, 48.8404902 2.2580804, 48.8476438 2.3479747, 48.8495928 2.3812853, 48.8295186 2.3712567, 48.8410271 2.2662469, 48.8420173 2.3480157, 48.8431426 2.3492259, 48.8428742 2.3485446, 48.8430296 2.3492151, 48.8430013 2.3491186, 48.8528026 2.3743383, 48.8300641 2.3145322, 48.8285724 2.3161086, 48.8508024 2.3768778, 48.8502524 2.3764928, 48.8417557 2.3487402, 48.8566955 2.3731518, 48.8570910 2.3727607, 48.8505156 2.3091488, 48.8407873 2.3491103, 48.8446176 2.3491298, 48.8442208 2.2944378, 48.8486566 2.2967202, 48.8419574 2.3290304, 48.8529638 2.3701915, 48.8521273 2.3846642, 48.8436740 2.3495038, 48.8451117 2.3493401, 48.8449670 2.3488185, 48.8448364 2.3492811, 48.8448928 2.3492758, 48.8445379 2.3489273, 48.8445159 2.3485397, 48.8529580 2.3375756, 48.8501520 2.3419436, 48.8434406 2.3494268, 48.8432628 2.3494718, 48.8447332 2.3491164, 48.8446591 2.3491299, 48.8437358 2.3472026, 48.8384430 2.3563154, 48.8349766 2.2830210, 48.8327742 2.2887456, 48.8447791 2.3492894, 48.8435770 2.3493886, 48.8377834 2.3909830, 48.8442707 2.3492157, 48.8401572 2.3240577, 48.8412056 2.3941921, 48.8418196 2.3905033, 48.8294590 2.3017660, 48.8441758 2.3479878, 48.8445200 2.3486356, 48.8445253 2.3488180, 48.8570416 2.3726643, 48.8475785 2.4004192, 48.8274320 2.3314214, 48.8510173 2.2932405, 48.8509119 2.2937166, 48.8508690 2.2932272, 48.8535259 2.4120078, 48.8439446 2.3493055, 48.8438873 2.3493114, 48.8485015 2.3421189, 48.8501669 2.3420537, 48.8455001 2.3427289, 48.8334129 2.3092754, 48.8434049 2.2987789, 48.8566315 2.4020574, 48.8433712 2.3246895, 48.8435643 2.3254572, 48.8476850 2.4080780, 48.8402155 2.3458349, 48.8508424 2.4062247, 48.8356633 2.3751497, 48.8489864 2.3403461, 48.8556147 2.3867624, 48.8560496 2.3884378, 48.8531504 2.3773721, 48.8513051 2.3765410, 48.8349006 2.3856248, 48.8427645 2.2780599, 48.8404972 2.3950481, 48.8286998 2.3507416, 48.8286000 2.3506267, 48.8427006 2.2950967, 48.8332740 2.3869138, 48.8412651 2.3237285, 48.8412198 2.3236119, 48.8276701 2.3500783, 48.8423579 2.3222342, 48.8426136 2.3217510, 48.8425995 2.3220085, 48.8426424 2.3222812, 48.8421833 2.3220777, 48.8526377 2.4062734, 48.8418212 2.3214760, 48.8211226 2.3412820, 48.8333002 2.3325229, 48.8488761 2.3682264, 48.8211831 2.3635911, 48.8509701 2.3489635, 48.8476389 2.3773813, 48.8380973 2.3926743, 48.8395564 2.3497363, 48.8500694 2.2761219, 48.8498994 2.2724503, 48.8514931 2.2777343, 48.8512248 2.2780374, 48.8506071 2.2713372, 48.8400881 2.3806431, 48.8240405 2.3250200, 48.8517277 2.3664938, 48.8359510 2.3274377, 48.8337887 2.2902462, 48.8339105 2.2899243, 48.8332825 2.2894710, 48.8331362 2.2888144, 48.8515069 2.4066855, 48.8351363 2.3445567, 48.8260954 2.3467344, 48.8304114 2.3551772, 48.8245312 2.3763864, 48.8248510 2.3607452, 48.8416788 2.3272221, 48.8556751 2.3337849, 48.8344267 2.2884194, 48.8338498 2.2894608, 48.8396619 2.3229538, 48.8518599 2.3446879, 48.8526960 2.3467728, 48.8514101 2.4052556, 48.8515061 2.4064299, 48.8491856 2.4063562, 48.8480831 2.4040261, 48.8222536 2.3618120, 48.8221935 2.3616081, 48.8221264 2.3613884, 48.8222287 2.3611417, 48.8221688 2.3609429, 48.8221335 2.3607766, 48.8347833 2.2887478, 48.8342967 2.2879777, 48.8341388 2.2878870, 48.8335658 2.2868046, 48.8221897 2.3589982, 48.8354116 2.2892340, 48.8337101 2.2863906, 48.8219714 2.3582637, 48.8220277 2.3582482, 48.8234610 2.3537855, 48.8298312 2.3567979, 48.8484873 2.3463043, 48.8500822 2.3477323, 48.8507620 2.3449853, 48.8463607 2.3432591, 48.8308414 2.3123480, 48.8311654 2.3137963, 48.8502006 2.2918459, 48.8501155 2.2920291, 48.8420674 2.3760001, 48.8496451 2.3534642, 48.8570961 2.3998935, 48.8571003 2.4079730, 48.8514439 2.3380763, 48.8371809 2.3497368, 48.8516647 2.3719912, 48.8530064 2.2754461, 48.8511636 2.2783753, 48.8526949 2.3089511, 48.8522713 2.3728858, 48.8541526 2.2759522, 48.8283068 2.3264318, 48.8348517 2.2891489, 48.8349806 2.2890202, 48.8355850 2.3240208, 48.8364355 2.3230794, 48.8363755 2.3920736, 48.8363401 2.3920991, 48.8476343 2.3974001, 48.8452414 2.3792066, 48.8388762 2.3961905, 48.8440274 2.3842239, 48.8400356 2.3360672, 48.8395556 2.3365605, 48.8217455 2.3523997, 48.8221973 2.3554703, 48.8495790 2.3543056, 48.8310317 2.3791154, 48.8360032 2.2916086, 48.8354526 2.2925379, 48.8360026 2.2919856, 48.8444056 2.3230253, 48.8398470 2.3238410, 48.8519848 2.3846342, 48.8405177 2.3236190, 48.8294367 2.3791321, 48.8288886 2.3760435, 48.8281574 2.3022904, 48.8417263 2.3245973, 48.8419109 2.3245351, 48.8435173 2.3219294, 48.8416495 2.3246134, 48.8417952 2.3245691, 48.8419805 2.3245034, 48.8404349 2.3156482, 48.8429231 2.3260926, 48.8405515 2.3159715, 48.8427978 2.3210455, 48.8405038 2.3158186, 48.8415667 2.3196636, 48.8404090 2.3155450, 48.8408520 2.3154700, 48.8416910 2.3246067, 48.8410405 2.3217676, 48.8371723 2.3209043, 48.8450620 2.2639791, 48.8404449 2.3243133, 48.8393146 2.3237992, 48.8466620 2.2831751, 48.8465353 2.2834107, 48.8420648 2.2629254, 48.8239202 2.3655030, 48.8231449 2.3164243, 48.8274421 2.3056058, 48.8272767 2.3063130, 48.8273081 2.3061699, 48.8579931 2.4032941, 48.8495349 2.2915103, 48.8494723 2.2914581, 48.8193061 2.3373740, 48.8396713 2.3471300, 48.8318467 2.3029070, 48.8515798 2.3992009, 48.8515911 2.3992945, 48.8448238 2.3691876, 48.8471374 2.3947373, 48.8416499 2.3895371, 48.8447328 2.3894590, 48.8462215 2.3870803, 48.8470847 2.3868148, 48.8275287 2.3149795, 48.8412254 2.3738186, 48.8405967 2.2643349, 48.8470601 2.2681655, 48.8467068 2.2996176, 48.8238476 2.3506828, 48.8403098 2.3340328, 48.8207235 2.3507707, 48.8341834 2.3261480, 48.8199467 2.3483675, 48.8233348 2.3532089, 48.8480339 2.3711696, 48.8515203 2.3696022, 48.8537094 2.3705397, 48.8537227 2.3702879, 48.8534314 2.3706101, 48.8502098 2.3923579, 48.8497025 2.3932209, 48.8494363 2.3945868, 48.8385781 2.3705346, 48.8392685 2.3708042, 48.8221895 2.3632536, 48.8223064 2.3631664, 48.8222916 2.3627648, 48.8222392 2.3628073, 48.8223782 2.3631115, 48.8223716 2.3627130, 48.8230753 2.3626307, 48.8234533 2.3618634, 48.8229485 2.3577916, 48.8229254 2.3569509, 48.8211212 2.3425439, 48.8202708 2.3594105, 48.8202117 2.3594306, 48.8195166 2.3596336, 48.8193606 2.3601238, 48.8506918 2.3841353, 48.8410733 2.2637691, 48.8409491 2.2637071, 48.8258771 2.3495257, 48.8258284 2.3486459, 48.8255453 2.3475405, 48.8264077 2.3428246, 48.8266961 2.3392484, 48.8268524 2.3383549, 48.8279313 2.3307106, 48.8277088 2.3287499, 48.8277300 2.3277843, 48.8463247 2.3542973, 48.8248691 2.3468871, 48.8250908 2.3464880, 48.8237982 2.3450583, 48.8230883 2.3447901, 48.8237048 2.3451996, 48.8219312 2.3422877, 48.8333333 2.3556520, 48.8226287 2.3606739, 48.8226746 2.3608366, 48.8226533 2.3607500, 48.8229131 2.3618148, 48.8231151 2.3621098, 48.8209801 2.3644246, 48.8243498 2.3621084, 48.8244278 2.3621405, 48.8244847 2.3621306, 48.8245544 2.3621635, 48.8239970 2.3618533, 48.8245778 2.3614015, 48.8250784 2.3610028, 48.8247279 2.3612848, 48.8249548 2.3611007, 48.8257664 2.3605166, 48.8257097 2.3600718, 48.8253582 2.3607812, 48.8254715 2.3606886, 48.8256982 2.3612634, 48.8255348 2.3609777, 48.8256127 2.3614328, 48.8254727 2.3611014, 48.8255281 2.3616006, 48.8254308 2.3611848, 48.8253116 2.3614221, 48.8249807 2.3620807, 48.8250256 2.3619913, 48.8213603 2.3347178, 48.8216356 2.3337458, 48.8233935 2.3258237, 48.8387916 2.3812873, 48.8328265 2.3361398, 48.8334329 2.3320275, 48.8367785 2.2975889, 48.8353295 2.3023316, 48.8355400 2.3018828, 48.8536438 2.3402017, 48.8526953 2.3470942, 48.8250589 2.3163847, 48.8256612 2.3136542, 48.8262642 2.3127271, 48.8263278 2.3124589, 48.8269282 2.3097177, 48.8533715 2.3422551, 48.8372157 2.2784595, 48.8373662 2.2784119, 48.8374744 2.2783898, 48.8377489 2.2783295, 48.8378835 2.2783147, 48.8409791 2.2776487, 48.8415966 2.2775907, 48.8417106 2.2775691, 48.8430969 2.2772758, 48.8313589 2.2922508, 48.8312406 2.2923850, 48.8313819 2.2919236, 48.8318056 2.2909044, 48.8321693 2.2900809, 48.8333911 2.2872190, 48.8333311 2.2873692, 48.8334759 2.2870071, 48.8347594 2.2843303, 48.8344487 2.2844456, 48.8343110 2.2848131, 48.8350242 2.2828765, 48.8348954 2.2832036, 48.8309240 2.2930315, 48.8288796 2.2990421, 48.8316365 2.2921115, 48.8337223 2.2896712, 48.8437437 2.2775524, 48.8426810 2.2779896, 48.8426051 2.2779253, 48.8418037 2.2778904, 48.8416325 2.2779601, 48.8521711 2.3714010, 48.8240750 2.3283368, 48.8235152 2.3304799, 48.8245642 2.3282644, 48.8250198 2.3200783, 48.8249015 2.3203760, 48.8372695 2.2771628, 48.8378574 2.2780721, 48.8377480 2.2779702, 48.8431209 2.2826573, 48.8424008 2.2820215, 48.8416776 2.2810225, 48.8490942 2.3396105, 48.8322843 2.3152081, 48.8563012 2.2797681, 48.8281212 2.3500641, 48.8278444 2.3497300, 48.8541163 2.3390471, 48.8426080 2.3301580, 48.8309319 2.3809995, 48.8339877 2.3859431, 48.8370765 2.3521704, 48.8515332 2.3460413, 48.8516027 2.3460829, 48.8280428 2.3570384, 48.8300765 2.3566608, 48.8511496 2.3478020, 48.8329514 2.3692712, 48.8487835 2.2875266, 48.8402141 2.2853650, 48.8445983 2.3417212, 48.8288049 2.3816393, 48.8306308 2.3813385, 48.8360293 2.3987610, 48.8352730 2.3987266, 48.8358656 2.3983311, 48.8329971 2.3865539, 48.8454138 2.3449157, 48.8419273 2.3255444, 48.8419458 2.3253394, 48.8420169 2.3254159, 48.8264604 2.3691548, 48.8327810 2.3359512, 48.8487274 2.3758510, 48.8292102 2.3745186, 48.8563545 2.3025991, 48.8562747 2.3028390, 48.8557667 2.3453212, 48.8456597 2.3425776, 48.8465513 2.2796735, 48.8295957 2.3746853, 48.8286016 2.3219064, 48.8530641 2.3387326, 48.8554103 2.3643002, 48.8409358 2.3247136, 48.8542640 2.3651059, 48.8537965 2.3646707, 48.8563379 2.3653392, 48.8555655 2.3665858, 48.8549123 2.3654914, 48.8580971 2.3653667, 48.8470631 2.3700997, 48.8471459 2.3702456, 48.8474998 2.3708712, 48.8482512 2.3721967, 48.8471795 2.3719974, 48.8198771 2.3422222, 48.8469506 2.3967840, 48.8450981 2.4030570, 48.8445374 2.4047983, 48.8459401 2.3981714, 48.8469580 2.4075011, 48.8431170 2.4096136, 48.8181346 2.3609207, 48.8193633 2.3602971, 48.8193706 2.3607627, 48.8472632 2.3686633, 48.8539102 2.3699317, 48.8470293 2.3690164, 48.8462686 2.3631462, 48.8584285 2.3451526, 48.8466386 2.3740238, 48.8515572 2.3384274, 48.8516756 2.3382308, 48.8467985 2.3747872, 48.8438542 2.3424632, 48.8523071 2.3446538, 48.8523579 2.3447087, 48.8222822 2.3596195, 48.8510597 2.3686542, 48.8454616 2.2846288, 48.8576256 2.3683245, 48.8573074 2.3684033, 48.8566728 2.3031742, 48.8327372 2.3358964, 48.8326973 2.3358705, 48.8471599 2.2855769, 48.8459727 2.2850778, 48.8425193 2.3260648, 48.8394722 2.3232687, 48.8389034 2.3510109, 48.8444716 2.3118167, 48.8493078 2.3774714, 48.8520540 2.3392420, 48.8509886 2.3003532, 48.8381318 2.3517955, 48.8387946 2.3486773, 48.8318806 2.3042643, 48.8329686 2.3010817, 48.8319851 2.3034469, 48.8436153 2.2938569, 48.8374438 2.3009990, 48.8428377 2.2917440, 48.8367552 2.2993610, 48.8368605 2.3030920, 48.8386895 2.3004673, 48.8392782 2.3008123, 48.8431037 2.2954369, 48.8436199 2.2939852, 48.8369700 2.2985824, 48.8317774 2.3387153, 48.8528114 2.3539541, 48.8437191 2.2967019, 48.8208030 2.3633818, 48.8274435 2.3705955, 48.8205400 2.3633918, 48.8205631 2.3634931, 48.8545629 2.3851571, 48.8498132 2.3518796, 48.8490910 2.2871941, 48.8515765 2.3436771, 48.8521735 2.3442731, 48.8520404 2.3443625, 48.8515776 2.3438599, 48.8520835 2.3444093, 48.8518887 2.3442140, 48.8524757 2.3445678, 48.8529435 2.3456985, 48.8528864 2.3462159, 48.8535544 2.2900587, 48.8533015 2.2903128, 48.8221288 2.3258121, 48.8529010 2.3458674, 48.8530967 2.3453771, 48.8528548 2.3460331, 48.8530912 2.3454025, 48.8529158 2.3458178, 48.8528801 2.3459362, 48.8530593 2.3452208, 48.8531271 2.3452514, 48.8530349 2.3453279, 48.8528985 2.3461598, 48.8531949 2.3450333, 48.8531460 2.3451752, 48.8528383 2.3461107, 48.8529227 2.3457849, 48.8531071 2.3449244, 48.8530259 2.3454331, 48.8531325 2.3389945, 48.8528398 2.3392414, 48.8534928 2.3391049, 48.8497401 2.3508144, 48.8494708 2.3495778, 48.8533652 2.2880737, 48.8491265 2.3038627, 48.8507385 2.3006549, 48.8506165 2.3004771, 48.8290807 2.3169825, 48.8519408 2.2889178, 48.8531583 2.2878252, 48.8527669 2.3446610, 48.8521288 2.3444359, 48.8528975 2.3446411, 48.8527110 2.3446730, 48.8528195 2.3446512, 48.8529973 2.3446935, 48.8526334 2.3445601, 48.8243545 2.3680684, 48.8501590 2.2937116, 48.8501190 2.2938779, 48.8540526 2.3381367, 48.8527451 2.2909129, 48.8452783 2.3021757, 48.8482224 2.2951925, 48.8501040 2.2917529, 48.8478257 2.2897580, 48.8477463 2.2896869, 48.8459218 2.2883699, 48.8453388 2.2878488, 48.8350277 2.3205989, 48.8528174 2.3454656, 48.8524768 2.3451560, 48.8528047 2.3455506, 48.8524991 2.3448569, 48.8523811 2.3455175, 48.8523985 2.3454156, 48.8526936 2.3454400, 48.8518297 2.3444041, 48.8524942 2.3450079, 48.8525154 2.3452198, 48.8525300 2.3444340, 48.8524984 2.3449165, 48.8523948 2.3451403, 48.8526323 2.3452414, 48.8525589 2.3451535, 48.8523556 2.3455883, 48.8527431 2.3454930, 48.8525232 2.3451020, 48.8526255 2.3453560, 48.8524246 2.3449029, 48.8526532 2.3453925, 48.8527658 2.3454086, 48.8524155 2.3453426, 48.8527323 2.3453722, 48.8564012 2.2779632, 48.8330093 2.3868281, 48.8437820 2.3881621, 48.8485041 2.3805544, 48.8222398 2.3591920, 48.8444922 2.3906935, 48.8274032 2.3423677, 48.8322518 2.3505076, 48.8274091 2.3702950, 48.8339084 2.3226213, 48.8394410 2.3322130, 48.8302211 2.3529383, 48.8490054 2.3495877, 48.8454569 2.3021602, 48.8461901 2.3512999, 48.8479950 2.3233385, 48.8434408 2.2933619, 48.8534312 2.3389430, 48.8581170 2.3176186, 48.8316555 2.2928196, 48.8235887 2.3709824, 48.8366915 2.3872945, 48.8347265 2.3446963, 48.8378379 2.3473550, 48.8484552 2.3315803, 48.8502142 2.3307201, 48.8484725 2.2893525, 48.8465954 2.3717420, 48.8455223 2.3425685, 48.8536307 2.3312600, 48.8471376 2.3781538, 48.8433447 2.3026630, 48.8309698 2.3120278, 48.8321210 2.3246559, 48.8337101 2.3186360, 48.8532271 2.3906633, 48.8319258 2.3247528, 48.8348341 2.3196255, 48.8532124 2.3749112, 48.8587506 2.3498885, 48.8585618 2.3501138, 48.8584400 2.3500508, 48.8582310 2.3499150, 48.8586577 2.3512239, 48.8585324 2.3516236, 48.8584636 2.3518059, 48.8295801 2.3570095, 48.8555154 2.3007432, 48.8310133 2.3479849, 48.8362085 2.3507215, 48.8457271 2.2773879, 48.8277176 2.3503583, 48.8303310 2.3543233, 48.8304313 2.3542566, 48.8301931 2.3538796, 48.8550776 2.3606106, 48.8538565 2.3611419, 48.8539037 2.3621825, 48.8493157 2.3784984, 48.8312746 2.3688607, 48.8295989 2.3477981, 48.8358990 2.3466845, 48.8546823 2.3502166, 48.8334394 2.3321755, 48.8484830 2.3465489, 48.8280833 2.3518785, 48.8345869 2.4046238, 48.8489944 2.3476761, 48.8558979 2.3067417, 48.8498557 2.3451858, 48.8339315 2.3535154, 48.8343358 2.3532328, 48.8334871 2.3538301, 48.8343901 2.3531943, 48.8335872 2.2986473, 48.8281734 2.3581151, 48.8281213 2.3581379, 48.8282088 2.3580869, 48.8298944 2.3567517, 48.8279789 2.3582481, 48.8514668 2.3336573, 48.8306371 2.3542033, 48.8301553 2.3526298, 48.8304963 2.3537726, 48.8488823 2.3702261, 48.8468258 2.4090233, 48.8458824 2.3754339, 48.8538600 2.3320680, 48.8423637 2.3259492, 48.8396674 2.3497245, 48.8416725 2.3497548, 48.8417916 2.3497766, 48.8418859 2.3497875, 48.8419165 2.3497914, 48.8418378 2.3496214, 48.8420720 2.3498351, 48.8421234 2.3498351, 48.8424378 2.3496767, 48.8426012 2.3496389, 48.8427514 2.3496042, 48.8429464 2.3495590, 48.8440708 2.3494232, 48.8445679 2.3496772, 48.8445191 2.3496762, 48.8267542 2.3240551, 48.8383528 2.3897390, 48.8571765 2.3589357, 48.8347921 2.2897514, 48.8351951 2.2896751, 48.8517041 2.3505648, 48.8408366 2.3037928, 48.8323064 2.3247729, 48.8574751 2.3504537, 48.8265747 2.3745807, 48.8375722 2.4445310, 48.8454864 2.3196693, 48.8522732 2.3263458, 48.8520072 2.3255283, 48.8473882 2.3059953, 48.8338061 2.3177640, 48.8412345 2.3039106, 48.8447679 2.3497792, 48.8550250 2.3290640, 48.8310938 2.3750078, 48.8303039 2.3757207, 48.8306843 2.3753807, 48.8310107 2.3759336, 48.8471340 2.3864431, 48.8467506 2.3832061, 48.8329435 2.4149758, 48.8323315 2.4178175, 48.8312852 2.3735705, 48.8311337 2.3738972, 48.8549171 2.3551866, 48.8383546 2.3930656, 48.8394477 2.3924756, 48.8394195 2.3921135, 48.8531969 2.3783676, 48.8335611 2.3308711, 48.8478589 2.3407967, 48.8421984 2.3516249, 48.8336470 2.3315763, 48.8335273 2.3314999, 48.8362062 2.3237133, 48.8349296 2.3296602, 48.8484295 2.3424166, 48.8526874 2.3539909, 48.8446809 2.3466783, 48.8336698 2.3296041, 48.8337502 2.3300015, 48.8481127 2.3756890, 48.8492365 2.3739525, 48.8495930 2.3774565, 48.8495450 2.3787201, 48.8500160 2.3788251, 48.8496527 2.3779307, 48.8465400 2.3811858, 48.8503285 2.3781973, 48.8481611 2.3766463, 48.8460012 2.3764202, 48.8553144 2.3878881, 48.8434604 2.4022375, 48.8496167 2.3700570, 48.8535356 2.3706586, 48.8481689 2.3925595, 48.8469569 2.3847760, 48.8464179 2.3800872, 48.8359839 2.2844143, 48.8300301 2.3296176, 48.8337668 2.3278330, 48.8354148 2.3235123, 48.8490915 2.3487987, 48.8529290 2.3314950, 48.8498887 2.3433647, 48.8519361 2.2987977, 48.8567608 2.3945887, 48.8372979 2.3511170, 48.8516564 2.3473784, 48.8335564 2.3869198, 48.8334907 2.3868335, 48.8337569 2.3871813, 48.8329726 2.3861326, 48.8338510 2.3872594, 48.8206809 2.3635646, 48.8207494 2.3637471, 48.8203146 2.3640270, 48.8552012 2.3739399, 48.8546611 2.3726793, 48.8407193 2.3049672, 48.8418070 2.3034131, 48.8546868 2.2950925, 48.8545526 2.2952974, 48.8406718 2.3048275, 48.8409660 2.3058020, 48.8445280 2.3226454, 48.8445064 2.3227126, 48.8445876 2.3224605, 48.8443285 2.3232584, 48.8446976 2.3221192, 48.8446671 2.3222139, 48.8588292 2.3233490, 48.8431753 2.3523678, 48.8466756 2.3050730, 48.8466342 2.3052128, 48.8337390 2.3618054, 48.8343386 2.3607778, 48.8481870 2.3541570, 48.8485630 2.3547360, 48.8486600 2.3548950, 48.8488030 2.3550960, 48.8585600 2.3535180, 48.8359828 2.3592084, 48.8582564 2.3530692, 48.8579136 2.3528123, 48.8506291 2.3395396, 48.8527723 2.3849647, 48.8528254 2.3852671, 48.8439032 2.3546898, 48.8537312 2.3325450, 48.8470633 2.3037370, 48.8449521 2.3058381, 48.8473348 2.3028088, 48.8495520 2.3551790, 48.8495960 2.3546780, 48.8493090 2.3539520, 48.8470580 2.3520490, 48.8468240 2.3516360, 48.8209363 2.3710302, 48.8400915 2.3026528, 48.8473631 2.2860341, 48.8583141 2.3549137, 48.8579708 2.3528081, 48.8353583 2.4058762, 48.8322089 2.3384309, 48.8460163 2.3825296, 48.8340751 2.3295497, 48.8292209 2.3194742, 48.8342025 2.3183393, 48.8300192 2.3572538, 48.8325523 2.3205074, 48.8327672 2.3201392, 48.8311012 2.3195882, 48.8545486 2.3843630, 48.8320470 2.3201850, 48.8361138 2.2912062, 48.8372803 2.2893133, 48.8502351 2.3456241, 48.8527246 2.3060632, 48.8426923 2.3634778, 48.8310513 2.3195553, 48.8325941 2.3183175, 48.8543921 2.3426853, 48.8541359 2.3719456, 48.8542108 2.3674171, 48.8544265 2.3673700, 48.8555777 2.3673888, 48.8558432 2.3674030, 48.8416174 2.3913852, 48.8582177 2.3718944, 48.8324657 2.3375075, 48.8439086 2.2933248, 48.8522889 2.3461766, 48.8522996 2.3459479, 48.8567447 2.3780076, 48.8568956 2.3783832, 48.8559378 2.3789593, 48.8572892 2.3686817, 48.8584332 2.3828373, 48.8586116 2.3834178, 48.8541661 2.3685390, 48.8557389 2.3682126, 48.8565630 2.3686073, 48.8584554 2.3675609, 48.8389090 2.3816630, 48.8357533 2.3521704, 48.8328552 2.3251354, 48.8577162 2.3793963, 48.8413733 2.3746037, 48.8581328 2.2944968, 48.8556111 2.3402066, 48.8477523 2.3131717, 48.8476019 2.3124307, 48.8442862 2.3237918, 48.8443083 2.3239728, 48.8488626 2.3712412, 48.8467371 2.3102329, 48.8547937 2.3759343, 48.8537976 2.3699213, 48.8537389 2.3700602, 48.8471804 2.3954861, 48.8434953 2.2942123, 48.8436406 2.2945169, 48.8436647 2.2952514, 48.8436712 2.2953928, 48.8517123 2.3431217, 48.8425000 2.3216700, 48.8369503 2.2962225, 48.8414376 2.3081178, 48.8423140 2.3102450, 48.8425076 2.3118940, 48.8365104 2.3100891, 48.8341782 2.3066372, 48.8354947 2.3020460, 48.8490626 2.3191414, 48.8501266 2.3186024, 48.8501791 2.3187017, 48.8547424 2.3544531, 48.8549834 2.3538154, 48.8547359 2.3551293, 48.8570133 2.3782712, 48.8566264 2.3772226, 48.8563976 2.3765843, 48.8560776 2.3757039, 48.8558645 2.3750846, 48.8534957 2.3378664, 48.8465511 2.3138238, 48.8321324 2.3033719, 48.8378987 2.3453148, 48.8440903 2.3080654, 48.8587772 2.3712220, 48.8580013 2.3652526, 48.8584347 2.3637448, 48.8586082 2.3675198, 48.8578247 2.3662529, 48.8578018 2.3672245, 48.8575285 2.3645936, 48.8567071 2.3672138, 48.8581319 2.3686779, 48.8580112 2.3685170, 48.8535896 2.3766260, 48.8548638 2.3756068, 48.8440870 2.4099235, 48.8279596 2.3690455, 48.8390877 2.3229490, 48.8391641 2.3230105, 48.8338390 2.3310374, 48.8338958 2.3308830, 48.8486709 2.3406612, 48.8487278 2.3406336, 48.8512608 2.3557825, 48.8364049 2.3226710, 48.8527721 2.3537633, 48.8540362 2.3623674, 48.8286889 2.3529053, 48.8475558 2.3229755, 48.8328233 2.3148509, 48.8553317 2.3737743, 48.8555334 2.3742149, 48.8569521 2.3559048, 48.8371692 2.2604023, 48.8376247 2.2580288, 48.8376766 2.2578767, 48.8559854 2.3944716, 48.8416157 2.3241646, 48.8357881 2.3244751, 48.8314315 2.3294141, 48.8459453 2.3434253, 48.8455190 2.3446763, 48.8573688 2.3547540, 48.8574138 2.3546799, 48.8570633 2.3551401, 48.8574390 2.3545800, 48.8571737 2.3548765, 48.8395961 2.3095374, 48.8387816 2.3087465, 48.8391602 2.3093568, 48.8389373 2.3091572, 48.8394382 2.3093976, 48.8392571 2.3092329, 48.8392441 2.3094339, 48.8421556 2.3297775, 48.8412506 2.3295393, 48.8416571 2.3270780, 48.8421577 2.3302112, 48.8416283 2.3300199, 48.8425340 2.3286959, 48.8420879 2.3286451, 48.8567275 2.3315486, 48.8556162 2.3630412, 48.8556754 2.3628716, 48.8557140 2.3630523, 48.8292890 2.3827479, 48.8266091 2.3593388, 48.8269314 2.3590856, 48.8523778 2.3470388, 48.8526537 2.3469166, 48.8523803 2.3462357, 48.8517469 2.3467656, 48.8516515 2.3468745, 48.8517944 2.3467249, 48.8516192 2.3469206, 48.8515225 2.3470249, 48.8515711 2.3472131, 48.8535002 2.3401314, 48.8536168 2.3389809, 48.8533371 2.3410727, 48.8532818 2.3422887, 48.8533115 2.3417776, 48.8431656 2.3215298, 48.8429562 2.3212651, 48.8430265 2.3213483, 48.8433339 2.3217349, 48.8431258 2.3214748, 48.8433095 2.3217058, 48.8440092 2.3200413, 48.8432967 2.3202953, 48.8338004 2.3298620, 48.8468797 2.3518136, 48.8466990 2.3540136, 48.8467952 2.3538782, 48.8449568 2.4059557, 48.8511933 2.3505104, 48.8315467 2.3138335, 48.8469658 2.3519512, 48.8409750 2.2622928, 48.8398339 2.2616480, 48.8417746 2.2589201, 48.8531336 2.3637219, 48.8578716 2.3815256, 48.8471265 2.3778627, 48.8429464 2.3483818, 48.8547153 2.3722204, 48.8553063 2.2929430, 48.8388865 2.3811523, 48.8407506 2.2646900, 48.8300313 2.3294841, 48.8538306 2.3993936, 48.8579662 2.3531583, 48.8580620 2.3532663, 48.8574895 2.3571997, 48.8587806 2.3545747, 48.8578490 2.3571632, 48.8588486 2.3540437, 48.8580087 2.3580443, 48.8402927 2.3220815, 48.8395328 2.3223837, 48.8440391 2.2817247, 48.8445540 2.3545770, 48.8376807 2.3193494, 48.8367280 2.3487200, 48.8367280 2.3487200, 48.8353170 2.3478860, 48.8343790 2.3452750, 48.8390760 2.3396870, 48.8423170 2.3292890, 48.8458679 2.3533248, 48.8479497 2.3423497, 48.8378270 2.3494780, 48.8381888 2.3042257, 48.8390748 2.4006273, 48.8542844 2.3069658, 48.8461703 2.3431295, 48.8551846 2.3683407, 48.8492442 2.3663097, 48.8299612 2.3310985, 48.8408808 2.3244034, 48.8400924 2.3237108, 48.8393869 2.3231702, 48.8403081 2.3242278, 48.8406615 2.3245098, 48.8404594 2.3240309, 48.8395438 2.3233136, 48.8409574 2.3244561, 48.8399097 2.3239054, 48.8389227 2.3228126, 48.8424526 2.3235103, 48.8434981 2.3075930, 48.8440240 2.3472518, 48.8454218 2.3443032, 48.8471091 2.3427342, 48.8329372 2.3326610, 48.8343803 2.4319409, 48.8510925 2.3451163, 48.8264183 2.3594835, 48.8265292 2.3594023, 48.8512133 2.3476661, 48.8477856 2.3484509, 48.8582210 2.3520080, 48.8253525 2.3720476, 48.8512133 2.3476661, 48.8580917 2.3673244, 48.8588343 2.3460244, 48.8586892 2.3462092, 48.8583433 2.3457410, 48.8582854 2.3457116, 48.8580663 2.3458343, 48.8580112 2.3460493, 48.8497700 2.3469745, 48.8587212 2.3462247, 48.8582612 2.3447141, 48.8455984 2.2883019, 48.8453614 2.2889968, 48.8450738 2.2896645, 48.8450085 2.2893909, 48.8520425 2.3727672, 48.8308245 2.3748433, 48.8304658 2.3751862, 48.8327687 2.3208864, 48.8477685 2.3654087, 48.8508134 2.3857979, 48.8505324 2.3866725, 48.8473769 2.2988656, 48.8536387 2.3823255, 48.8370135 2.2619135, 48.8539772 2.3672599, 48.8349936 2.3767308, 48.8516535 2.3572091, 48.8515672 2.3574567, 48.8515407 2.3575307, 48.8520358 2.3566034, 48.8522159 2.3567550, 48.8524240 2.3569408, 48.8527399 2.3603182, 48.8285549 2.3526652, 48.8550985 2.2950194, 48.8544715 2.2949225, 48.8551112 2.2944545, 48.8561978 2.2933321, 48.8532868 2.3705392, 48.8569948 2.3687863, 48.8242461 2.3702515, 48.8294636 2.3226190, 48.8566547 2.3800710, 48.8522736 2.3601056, 48.8532920 2.3672601, 48.8537757 2.3672319, 48.8483797 2.3742370, 48.8485977 2.3744032, 48.8522022 2.3713690, 48.8239414 2.3680343, 48.8535973 2.3809063, 48.8536026 2.3810610, 48.8303091 2.3336374, 48.8332821 2.3158571, 48.8317988 2.3146939, 48.8576761 2.3645851, 48.8583332 2.3023009, 48.8583373 2.3023739, 48.8401363 2.4001170, 48.8404087 2.3999123, 48.8467826 2.3409996, 48.8467457 2.3410229, 48.8560939 2.3585197, 48.8566017 2.3566308, 48.8561161 2.3584293, 48.8564583 2.3573913, 48.8564670 2.3064503, 48.8252015 2.3720127, 48.8371629 2.3559666, 48.8370058 2.3559801, 48.8388582 2.3488365, 48.8387938 2.3509383, 48.8289715 2.3074959, 48.8314561 2.3292848, 48.8314561 2.3292848, 48.8555654 2.3715734, 48.8429759 2.3300912, 48.8556688 2.3718087, 48.8555912 2.3708780, 48.8461537 2.3193328, 48.8463990 2.3190925, 48.8320253 2.3443178, 48.8325489 2.3467144, 48.8328188 2.3708042, 48.8532066 2.3427171, 48.8553697 2.3706003, 48.8556142 2.3707029, 48.8547706 2.3693854, 48.8485317 2.3720297, 48.8512913 2.3846401, 48.8463104 2.3716432, 48.8292677 2.3193582, 48.8407230 2.2660512, 48.8427363 2.3286605, 48.8306596 2.3335092, 48.8300416 2.3298058, 48.8548651 2.3630193, 48.8548528 2.3625713, 48.8241984 2.3723240, 48.8244851 2.3719243, 48.8586241 2.3268636, 48.8586513 2.3287866, 48.8451240 2.3820686, 48.8450821 2.3814682, 48.8399332 2.3814668, 48.8395951 2.3820031, 48.8388480 2.3877154, 48.8394060 2.3878024, 48.8451080 2.3813725, 48.8457402 2.3799671, 48.8440551 2.3807061, 48.8432866 2.3832660, 48.8452868 2.3790952, 48.8388348 2.3812326, 48.8522115 2.3547191, 48.8522699 2.3547676, 48.8389777 2.2554512, 48.8450978 2.3822089, 48.8311618 2.3751930, 48.8320219 2.3789968, 48.8316352 2.3782454, 48.8333790 2.3696370, 48.8344179 2.3677184, 48.8343314 2.3678570, 48.8296787 2.3771822, 48.8296787 2.3771822, 48.8279603 2.3795362, 48.8293770 2.3829863, 48.8245921 2.3766187, 48.8336992 2.3704367, 48.8335806 2.3701245, 48.8337227 2.3700220, 48.8347669 2.3695324, 48.8345736 2.3676408, 48.8347111 2.3680593, 48.8346577 2.3678932, 48.8410868 2.3302507, 48.8566043 2.3732320, 48.8572868 2.3732076, 48.8554057 2.3739758, 48.8577963 2.3582331, 48.8514176 2.2922548, 48.8496523 2.2952955, 48.8496214 2.2953917, 48.8493913 2.2976509, 48.8476194 2.2968225, 48.8528242 2.3430244, 48.8524241 2.3429917, 48.8528802 2.3428782, 48.8526538 2.3430082, 48.8195003 2.3649063, 48.8571463 2.3596101, 48.8567007 2.3604839, 48.8563782 2.3611155, 48.8576365 2.3584032, 48.8578041 2.3579820, 48.8578694 2.3580283, 48.8326934 2.2940585, 48.8440899 2.2842544, 48.8438178 2.2832533, 48.8428218 2.2844370, 48.8427637 2.2845666, 48.8426549 2.2848175, 48.8425369 2.2850575, 48.8421541 2.2939753, 48.8567851 2.3809084, 48.8555276 2.3843963, 48.8432683 2.3065957, 48.8430309 2.3065562, 48.8461870 2.3049257, 48.8462738 2.3052530, 48.8441621 2.3083292, 48.8559553 2.3863880, 48.8469667 2.3032763, 48.8582720 2.3546441, 48.8514160 2.3746780, 48.8587657 2.3813608, 48.8505710 2.3490338, 48.8507085 2.3490872, 48.8507865 2.3491165, 48.8331438 2.3284598, 48.8400942 2.3634468, 48.8436968 2.4021337, 48.8566387 2.3564827, 48.8272380 2.3739098, 48.8413749 2.2846430, 48.8308824 2.3308541, 48.8475894 2.2658939, 48.8477552 2.2658174, 48.8446015 2.3186457, 48.8577807 2.3606532, 48.8479870 2.3710527, 48.8538669 2.3274765, 48.8398426 2.2664677, 48.8515538 2.3446273, 48.8449203 2.3214165, 48.8451259 2.3208317, 48.8400443 2.3945040, 48.8471240 2.2951446, 48.8501612 2.2853693, 48.8462784 2.3181382, 48.8487428 2.2829149, 48.8499527 2.2857379, 48.8500531 2.2855627, 48.8233478 2.3739572, 48.8323596 2.3507129, 48.8435883 2.2981394, 48.8432976 2.3005724, 48.8495232 2.2827594, 48.8461008 2.2790972, 48.8460759 2.2786183, 48.8259283 2.3648732, 48.8256470 2.3650793, 48.8418253 2.3235858, 48.8468373 2.3601741, 48.8483086 2.2872193, 48.8462135 2.3676679, 48.8477461 2.3511419, 48.8527860 2.3433192, 48.8416188 2.2808890, 48.8529099 2.2868719, 48.8566620 2.3563500, 48.8554458 2.3617217, 48.8408224 2.3556248, 48.8388681 2.3562783, 48.8540956 2.3386733, 48.8384220 2.4593519, 48.8305866 2.4133509, 48.8201104 2.4442417, 48.8395574 2.4439548, 48.8507237 2.3305867, 48.8573667 2.3785302, 48.8532758 2.3834775, 48.8464207 2.3056421, 48.8408375 2.3874300, 48.8330343 2.3541878, 48.8280243 2.3513291, 48.8303084 2.3537927, 48.8302539 2.3536052, 48.8255087 2.3537284, 48.8289425 2.3568654, 48.8222354 2.3405407, 48.8430967 2.3047973, 48.8417016 2.3220312, 48.8478409 2.2644706, 48.8451240 2.3151945, 48.8422835 2.3705897, 48.8279032 2.3155377, 48.8527947 2.3434202, 48.8367701 2.3930789, 48.8311227 2.3287719, 48.8376458 2.3597357, 48.8377834 2.3597919, 48.8380568 2.3599624, 48.8534305 2.3611806, 48.8419025 2.3689354, 48.8421950 2.3453702, 48.8584113 2.2942650, 48.8565883 2.3770985, 48.8480855 2.2788555, 48.8448754 2.3733160, 48.8244117 2.3278513, 48.8455345 2.3864379, 48.8346712 2.3775992, 48.8354828 2.3766566, 48.8372520 2.3747580, 48.8387965 2.3219353, 48.8390322 2.3210621, 48.8407259 2.3221523 +55.9378000 -3.1771354, 55.9539155 -3.1869471, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9544013 -3.1879472, 55.9285894 -3.1685115, 55.9820970 -3.4001038 +2 +32 +12 +44 +8, 10, 32, 88, 72, 96, 20, 16, 6, 70, 48, 42, 24, 2, 8, 14, 44, 46, 2, 12, 2, 2, 38, 182, 22, 2, 14, 2, 2, 24, 54, 32, 42, 32, 56, 40, 40, 8, 106, 30, 40, 48, 8, 84, 16, 56, 24, 50, 10, 32, 12, 16, 30, 64, 28, 10, 24, 26, 44, 100, 96, 10, 28, 10, 24, 7, 17, 6, 10, 104, 8, 42, 30, 121, 12, 11, 23, 42, 7, 15, 10, 12, 92, 13, 43, 22, 24, 10, 8, 6, 15, 22, 14, 7, 30, 7, 10, 10, 6, 10, 18, 6, 6, 6, 6, 16, 30, 8, 60, 16, 60, 4, 44, 80, 16, 16, 14, 16, 23, 20, 20, 66, 47, 10, 9, 5, 21, 39, 64, 24, 16, 12, 24, 24, 10, 16, 16, 28, 15, 16, 10, 12, 6, 6, 5, 18, 13, 18, 18, 36, 32, 30, 24, 20, 42, 24, 16, 30, 10, 6, 40, 13, 43, 20, 8, 6, 25, 96, 20, 30, 6, 14, 10, 10, 10, 14, 14, 4, 10, 20, 4, 50, 29, 4, 150, 72, 120, 48, 60, 250, 30, 100, 24, 20, 22, 16, 520, 12, 20, 26, 62 +70 +2.0652769148611698 +1 +48.8323660 2.2749612 +Rue Marie et Louise +46 +yes +49.4005745 8.6876324, 49.4018281 8.6889374, 49.4018800 8.6877769, 49.4135514 8.6842391, 49.4146501 8.6879184, 49.4168731 8.6919549, 49.4171484 8.6930088, 49.4208847 8.6912002, 49.4123719 8.7105227, 49.4121119 8.7079345, 49.4133176 8.6889779, 49.4133176 8.6889788, 49.4133176 8.6889785, 49.4133177 8.6889782, 49.4133176 8.6889782, 49.4133174 8.6889784, 49.4133177 8.6889788, 49.4208843 8.6912004, 49.4208840 8.6912006, 49.4168738 8.6919549, 49.4168732 8.6919560, 49.4208839 8.6912002, 49.4171481 8.6930091, 49.4168744 8.6919560, 49.4168739 8.6919560, 49.4208843 8.6911999, 49.4208846 8.6911997, 49.4168740 8.6919569, 49.4018302 8.6889341, 49.4013098 8.6912411, 49.4005742 8.6876324, 49.4005743 8.6876329, 49.4013099 8.6912408, 49.4018301 8.6889373, 49.4005745 8.6876329, 49.4018280 8.6889343, 49.4123720 8.7105234, 49.4115404 8.7048862, 49.4093082 8.6997914, 49.4146502 8.6879184, 49.4115403 8.7048862, 49.4034414 8.6858831, 49.4033425 8.6920344, 49.4034077 8.6864942, 49.4059416 8.6926646, 49.4053236 8.6938605, 49.4059413 8.6926655, 49.4059418 8.6926647, 49.4033423 8.6920342, 49.4034078 8.6864940, 49.4034077 8.6864940, 49.4059416 8.6926652, 49.4034078 8.6864942, 49.4059414 8.6926650, 49.4033423 8.6920344, 49.4196480 8.6881884, 49.4158083 8.7151936, 49.4087123 8.7054683, 49.4076130 8.7082748, 49.3832632 8.6902896, 49.4076136 8.7082749, 49.4087126 8.7054655, 49.4076135 8.7082758, 49.3832635 8.6902896, 49.4076129 8.7082756, 49.4118409 8.7090873 +40 +yes +2 +48.8503975 2.3429508, 48.8542243 2.3500208, 48.8240998 2.3638457, 48.8214836 2.3639524, 48.8516699 2.3435357, 48.8530171 2.3437086, 48.8557761 2.3581437, 48.8576209 2.3506001, 48.8470189 2.3431051, 48.8446070 2.3751280, 48.8464568 2.3019875 +55.9458479 -3.1861307, 55.9526370 -3.1734364, 55.9526834 -3.1734548 +yes +0 +Ibis +1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1 +49.4091649 8.6726851, 49.4079061 8.6867560, 49.4117371 8.7091875, 49.4073921 8.6825502, 49.4095865 8.7066610, 49.4115410 8.7046342, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4065332 8.6919726, 49.4067729 8.6917906 +16, 10, 8, 20, 20, 16, 22, 28, 10, 40, 26, 16, 42, 14, 8, 8, 20, 8, 8, 16, 16, 12, 12, 8, 10, 48, 8, 16, 18, 10, 10, 10, 20, 20, 38, 28, 20, 80, 18, 20, 20, 10, 24, 18, 8, 10, 6, 10, 34, 6, 8, 12, 12, 12, 20, 6, 10, 20, 12, 20, 24, 10, 8, 4, 12, 30, 12, 10, 16, 8, 8, 18, 10, 10, 12, 16, 12, 10, 32, 26, 24, 16, 6, 26, 10, 22, 12, 36, 16, 28, 20, 16, 12, 28, 16, 18, 8, 8, 10, 26, 18, 24, 16, 4, 12, 12, 4, 2, 2, 8, 8, 8, 6, 20, 4, 16, 12, 8, 2, 28, 18, 20, 14, 26, 12, 4, 6, 6, 4, 4, 10, 12, 6, 14, 6, 20, 10, 12, 8, 14, 10, 12, 10, 8, 18, 26, 20, 12, 16, 14, 10, 8, 8, 12, 56, 10, 8, 28, 10, 8, 6, 8, 22, 14, 14, 10, 18, 10, 8, 16, 8, 10, 8, 14, 4, 8, 10, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 10, 10, 8, 10, 12, 8, 40, 30, 18, 20, 20, 20, 4, 4, 12, 4, 10, 6, 4, 4, 4, 2, 22, 4, 4, 6, 4, 10, 4, 4, 6, 16, 16, 6, 4, 4, 4, 6, 4, 4, 4, 4, 2, 4, 4, 4, 10, 4, 4, 10, 30, 10, 12, 10, 8, 8, 8, 9, 24, 10, 26, 16, 16, 10, 8, 20, 16, 10, 10, 6, 8, 10, 8, 12, 20, 36, 22, 14, 8, 10, 14, 12, 8, 8, 8, 10, 6, 20, 10, 30, 16, 14, 10, 16, 14, 8, 6, 8, 6, 10, 10, 16, 10, 10, 10, 12, 14, 6, 8, 10, 34, 8, 8, 12, 10, 8, 10, 8, 10, 16, 18, 32, 30, 18, 20, 20, 54, 12, 10, 8, 8, 8, 26, 8, 10, 10, 10, 6, 14, 12, 6, 8, 20, 20, 10, 12, 10, 20, 8, 12, 8, 22, 10, 8, 4, 16, 8, 10, 6, 6, 12, 6, 6, 16, 24, 10, 8, 20, 20, 20, 12, 18, 10, 10, 8, 68, 18, 6, 6, 8, 8, 10, 34, 14, 10, 6, 10, 10, 8, 20, 4, 8, 4, 8, 8, 12, 8, 6, 6, 6, 8, 12, 12, 6, 14, 8, 18, 10, 20, 14, 22, 22, 22, 16, 10, 20, 12, 12, 10, 18, 6, 14, 20, 8, 18, 10, 10, 12, 12, 20, 20, 4, 12, 20, 18, 16, 6, 20, 30, 10, 6, 18, 8, 9, 8, 12, 10, 10, 14, 4, 12, 16, 8, 10, 4, 2, 12, 22, 10, 12, 22, 8, 6, 8, 18, 26, 14, 16, 16, 12, 14, 20, 10, 20, 14, 20, 16, 32, 18, 26, 10, 8, 20, 18, 8, 18, 10, 6, 6, 6, 16, 12, 10, 14, 16, 16, 22, 16, 8, 18, 10, 4, 6, 12, 28, 20, 18, 22, 10, 8, 8, 10, 8, 12, 12, 16, 16, 14, 10, 30, 16, 16, 12, 14, 12, 8, 8, 6, 20, 24, 10, 10, 10, 20, 12, 8, 8, 8, 8, 10, 6, 10, 10, 10, 10, 12, 10, 10, 20, 10, 12, 16, 14, 12, 24, 8, 8, 10, 12, 36, 6, 10, 20, 24, 12, 12, 30, 20, 10, 10, 4, 10, 6, 10, 10, 10, 4, 12, 10, 10, 28, 10, 28, 18, 6, 14, 8, 10, 16, 26, 10, 8, 10, 6, 10, 10, 8, 10, 8, 6, 10, 10, 16, 10, 6, 18, 10, 18, 12, 12, 14, 12, 20, 8, 4, 6, 22, 4, 12, 8, 24, 12, 4, 20, 14, 20, 10, 40, 14, 4, 6, 6, 6, 4, 6, 10, 44, 12, 14, 24, 22, 8, 8, 12, 26, 26, 16, 6, 6, 10, 6, 10, 14, 16, 28, 32, 10, 14, 14, 14, 14, 22, 14, 10, 8, 16, 20, 12, 10, 36, 10, 12, 22, 6, 12, 12, 12, 22, 2, 8, 6, 12, 6, 26, 18, 10, 8, 8, 12, 30, 12, 6, 12, 10, 12, 6, 16, 6, 6, 14, 15, 4, 16, 8, 10, 12, 10, 10, 20, 8, 18, 16, 22, 10, 6, 6, 6, 6, 12, 10, 8, 14, 12, 8, 14, 12, 10, 12, 20, 20, 24, 8, 10, 12, 8, 30, 16, 8, 24, 20, 16, 8, 8, 8, 10, 14, 8, 18, 18, 6, 8, 10, 10, 8, 8, 20, 20, 36, 20, 8, 12, 10, 4, 14, 18, 10, 10, 8, 10, 12, 16, 12, 8, 8, 8, 12, 8, 8, 38, 12, 18, 12, 20, 12, 10, 10, 24, 10, 10, 10, 12, 8, 8, 6, 8, 6, 12, 8, 10, 24, 8, 8, 6, 14, 8, 12, 8, 8, 14, 12, 28, 4, 14, 20, 8, 36, 10, 10, 14, 12, 24, 10, 20, 18, 30, 8, 8, 14, 8, 8, 10, 20, 10, 30, 12, 10, 14, 14, 16, 12, 12, 24, 20, 10, 14, 22, 40, 30, 12, 16, 10, 8, 8, 14, 8, 28, 4, 6, 8, 12, 4, 22, 12, 4, 8, 8, 10, 20, 10, 40, 20, 12, 8, 30, 24, 8, 10, 10, 32, 16, 14, 10, 16, 18, 12, 12, 24, 16, 12, 12, 12, 22, 8, 12, 28, 4, 12, 22, 6, 10, 20, 24, 14, 10, 34, 12, 16, 10, 10, 10, 12, 14, 18, 14, 10, 24, 10, 24, 14, 8, 14, 6, 14, 14, 10, 12, 6, 14, 18, 24, 20, 12, 14, 10, 14, 28, 6, 8, 8, 14, 8, 12, 12, 12, 8, 6, 10, 6, 18, 30, 20, 10, 10, 8, 8, 24, 12, 10, 8, 10, 4, 6, 12, 6, 8, 8, 10, 24, 10, 6, 20, 8, 8, 10, 8, 12, 20, 8, 20, 12, 20, 14, 28, 8, 8, 16, 8, 24, 8, 18, 14, 26, 14, 8, 10, 8, 8, 8, 6, 12, 6, 12, 16, 8, 26, 10, 10, 10, 12, 16, 10, 12, 14, 20, 14, 8, 8, 10, 10, 10, 10, 10, 22, 16, 10, 14, 16, 60, 14, 20, 20, 22, 30, 22, 4, 8, 6, 8, 24, 12, 6, 12, 6, 8, 46, 22, 4, 14, 8, 6, 10, 6, 16, 8, 14, 40, 8, 8, 20, 24, 12, 30, 14, 8, 10, 14, 8, 10, 20, 14, 14, 18, 12, 14, 16, 12, 12, 20, 16, 8, 14, 16, 10, 8, 10, 10, 16, 8, 8, 18, 18, 10, 26, 14, 12, 8, 18, 20, 8, 12, 10, 20, 18, 8, 14, 8, 8, 22, 16, 34, 6, 6, 72, 18, 4, 8, 6, 6, 6, 6, 12, 10, 12, 16, 8, 10, 18, 24, 8, 20, 14, 14, 64, 16, 8, 20, 12, 6, 14, 6, 10, 8, 34, 48, 16, 14, 6, 12, 10, 10, 32, 14, 10, 12, 6, 8, 8, 8, 6, 8, 8, 8, 10, 8, 8, 6, 8, 24, 42, 20, 18, 16, 16, 22, 20, 18, 26, 14, 36, 14, 12, 10, 10, 12, 10, 10, 10, 6, 8, 4, 26, 8, 16, 20, 24, 10, 10, 10, 10, 18, 62, 8, 10, 16, 16, 16, 50, 22, 16, 10, 10, 30, 10, 12, 8, 26, 30, 10, 14, 12, 8, 10, 10, 15, 14, 10, 26, 20, 30, 22, 8, 10, 16, 16, 16, 14, 24, 8, 18, 20, 18, 10, 4, 12, 8, 12, 12, 14, 12, 32, 32, 8, 8, 6, 13, 10, 16, 30, 20, 12, 12, 8, 16, 30, 10, 16, 8, 12, 8, 10, 44, 8, 8, 24, 16, 18, 10, 10, 16, 8, 8, 10, 16, 16, 14, 26, 12, 10, 8, 14, 20, 8, 8, 10, 8, 10, 8, 10, 8, 16, 10, 14, 20, 14, 8, 8, 8, 12, 6, 8, 12, 14, 12, 14, 16, 16, 14, 14, 20, 8, 20, 20, 18, 26, 10, 8, 14, 8, 16, 10, 14, 16, 4, 4, 18, 24, 10, 12, 24, 42, 10, 12, 24, 12, 10, 36, 8, 20, 14, 10, 24, 28, 10, 8, 68, 24, 22, 12, 4, 28, 8, 6, 12, 12, 20, 16, 10, 10, 14, 12, 40, 24, 4, 16, 10, 8, 8, 8, 10, 8, 10, 10, 10, 20, 36, 18, 72, 22, 12, 20, 10, 10, 14, 16, 16, 8, 22, 14, 14, 20, 22, 8, 10, 10, 10, 10, 32, 24, 16, 10, 10, 6, 6, 10, 8, 6, 8, 8, 12, 10, 26, 6, 16, 16, 10, 14, 6, 10, 8, 10, 20, 10, 10, 8, 10, 4, 10, 10, 23, 21, 13, 8, 12, 10, 12, 12, 6, 10, 30, 16, 12, 8, 10, 8, 6, 22, 14, 22, 20, 10, 10, 10, 10, 6, 8, 16, 8, 6, 6, 10, 12, 8, 8, 8, 18, 28, 20, 20, 12, 3, 14, 30, 10, 24, 16, 14, 10, 10, 10, 16, 14, 20, 8, 8, 4, 10, 6, 6, 6, 12, 10, 10, 10, 10, 18, 12, 8, 20, 16, 6, 30, 20, 6, 12, 6, 10, 10, 10, 28, 22, 8, 10, 14, 10, 20, 54, 70 +yes +3172 and 47.8931595 7.9220044, 47.6706184 9.6099393, 48.8409034 9.1608485, 49.5114392 8.6601812, 48.6525503 9.3971910, 49.7634816 9.6217365, 49.7711879 9.5730596, 49.7592849 9.5493504, 48.8085947 9.1086907, 48.8084453 9.1083882, 48.7672340 9.1634636, 48.7646487 9.1455060, 48.8517845 9.1905506, 47.7572746 9.4550989, 48.8048250 9.1776074, 48.7975239 9.1823227, 48.7763570 9.2485420, 49.7438132 9.5591926, 48.5441691 10.0649595, 48.5481307 10.0299806, 48.0859164 8.6731360, 48.0941243 8.6558902, 48.1009818 8.7502162, 48.3855242 8.4343050, 48.4253862 8.9771471, 48.7896840 9.2403361, 48.7898028 9.2401816, 48.7987295 9.2671029, 48.7877576 9.2251651, 48.7720412 9.1018571, 48.7716001 9.1036725, 48.7548168 9.1609347, 48.7393742 9.1043352, 48.7331011 9.0916034, 48.7294036 9.0792362, 48.7127340 9.0963494, 48.7061888 9.1632435, 48.6921724 9.3046368, 48.6844604 9.3243976, 48.6197323 9.4551205, 48.4917874 9.4829183, 48.4024099 9.4114303, 48.2380029 8.1766286, 48.7850407 9.1860670, 48.8431211 9.6562274, 49.1236093 8.5683603, 48.4276781 9.2092618, 48.6307794 9.4154575, 48.0319228 8.4105207, 48.0468749 8.4196097, 47.8638812 9.1743006, 48.4226168 8.9110413, 48.7841199 9.0904498, 48.0698826 8.3504215, 48.8047324 9.1919671, 49.3929098 8.7766872, 48.7219890 9.0756901, 48.7093678 9.1402100, 48.7063494 9.1632880, 48.6935525 9.2233254, 48.6938888 9.2230679, 48.6956216 9.2628339, 48.6944266 9.2857314, 48.6948056 9.2857019, 48.6586541 9.3789196, 48.6529244 9.3974295, 48.6306373 9.4582064, 48.6310225 9.4580187, 48.6296852 9.4774326, 48.6300159 9.4774419, 48.6288271 9.4974811, 48.6286715 9.5206816, 48.6316019 9.5381045, 48.6319392 9.5378497, 48.6333417 9.5538473, 48.6185241 9.5910600, 48.5837682 9.6626361, 48.5774390 9.6630037, 48.5654624 9.6356449, 48.5467301 9.6424113, 48.5336488 9.6575403, 48.5324382 9.6697929, 48.5275597 9.7174851, 48.5185011 9.7592517, 48.5182325 9.7572384, 48.5181465 9.7821863, 48.5183786 9.7822118, 48.5171773 9.8183016, 48.5108829 9.8343256, 48.5110458 9.8346520, 48.4760028 9.8823361, 48.4762453 9.8832418, 48.6614547 8.9975223, 48.4698348 9.9046761, 48.4565333 9.9488063, 48.4566115 9.9731268, 48.4575723 9.9853023, 48.4575380 10.0128756, 48.4578922 10.0113024, 48.4566193 10.0241328, 48.1830256 9.7816113, 48.4569309 10.0238267, 48.4568614 9.9728885, 48.4568169 9.9495995, 48.5177027 9.8172282, 48.5200483 9.8076658, 48.5228113 9.7372686, 48.5275062 9.7199164, 48.5311230 9.6960245, 48.5333133 9.6642932, 48.5466813 9.6482904, 48.5636428 9.6740108, 48.5770545 9.6749818, 48.5840802 9.6628951, 48.6143628 9.6120035, 48.6186112 9.5926055, 48.6336256 9.5515051, 48.6287221 9.5185340, 48.6291371 9.4980277, 48.6402661 9.4329496, 48.6532481 9.3976460, 48.6589208 9.3792326, 48.6665530 9.3662042, 48.6754390 9.3458767, 48.6846579 9.3248490, 48.6925264 9.3047185, 48.6957928 9.2643366, 48.7024660 9.1783020, 48.7068672 9.1631451, 48.7069591 9.1634389, 48.7099095 9.1403554, 48.8871970 9.0451463, 48.8776217 9.0839978, 48.1612777 9.7900051, 48.6283215 9.5740630, 48.9168298 8.9430269, 48.4120306 8.4067443, 48.7156317 8.2268140, 48.0783822 8.4461271, 48.9607189 9.2194538, 48.9606145 9.2187767, 49.1769947 9.9318229, 48.7783246 9.5110956, 48.4587660 9.9811761, 48.6623908 9.2255884, 48.6218504 9.2494700, 48.5949915 9.2530806, 48.8361387 8.5909962, 47.8659661 7.7484426, 48.6208580 9.4555416, 49.4738271 9.7966510, 48.8164045 8.5799195, 48.6355511 9.2927221, 48.9546798 9.2502443, 48.7913607 8.1911997, 48.7290336 8.1554927, 48.6648842 9.2107380, 48.5759911 9.2290474, 48.6997566 9.4094867, 48.6938675 9.1999755, 48.5475367 9.2644429, 48.5806508 9.1736055, 48.5586863 9.1737419, 48.5435954 9.1493859, 49.5618613 9.6229111, 49.5614784 9.6227222, 49.5585167 9.6153308, 49.5404830 9.5884578, 49.5323399 9.5784239, 49.5323111 9.5778313, 49.5372729 9.5834493, 49.4242922 9.4869280, 49.4246245 9.4865582, 48.9800359 9.2295550, 48.9690446 9.2262070, 48.5415003 8.8029163, 48.7522067 8.2485351, 48.7535173 8.2447141, 48.7677441 8.2305067, 48.5339160 9.2339354, 49.0641753 9.8706185, 48.6971369 9.2439721, 48.6975218 9.2437986, 48.6751085 9.3456470, 48.6934507 9.2025498, 48.6930968 9.2025100, 48.6765698 9.3688639, 48.6763806 9.3691866, 48.7024629 9.4396321, 48.7038033 9.4501905, 48.7071589 9.4739798, 48.7068984 9.4739726, 48.7160960 9.5495317, 48.7030443 9.6013973, 48.7114471 9.5003428, 48.4005596 9.3164813, 48.4013004 9.3400954, 48.8219767 8.8342570, 49.0835719 9.8669593, 48.6119127 8.8048547, 48.8379781 8.6962629, 48.8664890 8.6819781, 49.0280176 9.8739938, 48.6160097 9.2200212, 48.6157890 9.2201356, 48.5787567 9.1741510, 48.5587099 9.1732797, 48.5341206 9.1897357, 49.0518476 9.8853764, 49.4534456 8.7619634, 49.0683492 9.8995733, 48.4284117 8.6254017, 48.3301529 8.3967477, 48.9446845 8.4982423, 48.9420376 8.5063840, 48.9416725 8.5063002, 48.9248065 8.5977004, 48.9127357 8.6194374, 48.9086000 8.6501571, 48.8953199 8.7844283, 48.8803882 8.7880004, 48.8650961 9.2405642, 48.7089158 9.1148538, 48.8282641 8.8712993, 48.7644963 9.0315801, 48.8459831 8.4682949, 49.0294081 9.8404404, 48.5135967 9.7471919, 48.8381885 8.7479090, 48.7472998 9.0342151, 48.7421470 9.0351020, 48.7334551 9.0451019, 48.7290626 9.0800494, 48.6983948 9.6468413, 48.6992687 9.6445523, 48.6507051 8.2149644, 48.9704136 9.8727094, 48.6482872 9.4175625, 48.6479386 9.4174626, 48.6401517 9.4323574, 48.6107285 9.5013356, 48.6755332 9.5140860, 48.8797804 8.7885918, 48.8285183 8.8716562, 48.8107839 8.9226049, 48.7283187 9.0566488, 49.4964212 9.8159753, 49.5643411 9.8957718, 48.7509336 9.7392346, 48.7654033 9.7760138, 48.7092477 9.1149016, 48.7127753 9.0976601, 48.7224250 9.0759774, 48.7289707 9.0560605, 48.7337038 9.0454766, 48.7423208 9.0355761, 48.7473445 9.0346415, 48.7645813 9.0322451, 48.7844212 9.0003039, 48.8106073 8.9221678, 48.8955466 8.7849848, 48.9090368 8.6494218, 48.9464307 8.4929472, 48.9251683 8.5976789, 48.9155805 8.6166065, 48.9126798 8.6288162, 48.8955930 8.6334932, 48.1738882 9.9243238, 48.7359768 9.9564593, 49.5271869 9.4744451, 48.6341570 10.0297153, 47.7067101 8.9539274, 48.7406791 9.0358330, 47.9861753 9.9541146, 48.7097609 9.1403874, 48.7204349 9.0570947, 48.7048575 9.0466886, 48.7026191 9.0310935, 48.6956734 9.0150770, 48.6954821 9.0154086, 49.0826807 9.9068846, 48.5820337 9.5361343, 48.5712605 9.5309834, 48.6286557 9.5742425, 48.6140017 9.6120933, 48.6022552 9.7936233, 48.7511871 8.0194252, 48.7114985 9.5118429, 48.7122053 9.5620039, 48.7030671 9.6118484, 48.6989434 9.6444299, 48.5459412 9.6258707, 48.3089635 9.2492758, 48.5153202 9.0859236, 48.5170905 9.0891957, 48.8348623 8.1815513, 47.6235849 9.5546946, 48.8386810 9.9568035, 48.4287133 9.6526070, 48.5798562 9.4316519, 48.0406218 8.5867569, 49.2734493 8.6948297, 48.0472287 8.5367557, 48.0889133 8.5918009, 48.0964731 8.5900449, 48.0962888 8.5896869, 48.1271981 8.5738132, 48.1273707 8.5741961, 48.2063358 8.6250931, 48.2056876 8.6226666, 48.2166201 8.6418668, 48.2167189 8.6414624, 48.2289745 8.6503769, 48.2289399 8.6499782, 48.2430476 8.6475682, 48.2431946 8.6479274, 48.2530209 8.6435126, 48.2531765 8.6438750, 48.2644203 8.6389933, 48.2645575 8.6393495, 48.2813956 8.6412975, 48.2813341 8.6408543, 48.2977146 8.6351507, 48.2972932 8.6347804, 48.3242880 8.6472160, 48.3243877 8.6476748, 48.3373584 8.6487786, 48.3373826 8.6483555, 48.3442700 8.6558343, 48.3469514 8.6618212, 48.3520586 8.6725316, 48.3522059 8.6721901, 48.3618750 8.6853301, 48.3619453 8.6849173, 48.3713676 8.6946796, 48.3714747 8.6942675, 48.3771842 8.7089372, 48.3774259 8.7087457, 48.4015796 8.7280541, 48.4011997 8.7277379, 48.4099417 8.7261467, 48.4099143 8.7265573, 48.4189313 8.7323191, 48.4189389 8.7328924, 48.4322851 8.7485039, 48.4288649 8.7451607, 48.4438641 8.7598648, 48.4440497 8.7595431, 48.4559934 8.7754291, 48.4717159 8.7892318, 48.4718223 8.7889048, 48.4561276 8.7750251, 48.4826991 8.8074012, 48.4829142 8.8071597, 48.4900488 8.8276497, 48.4900638 8.8270884, 48.5042436 8.8447640, 48.5037320 8.8430924, 48.5144951 8.8663899, 48.5147165 8.8661081, 48.5246719 8.8856662, 48.5255121 8.8869187, 48.5793415 8.8991287, 48.5792420 8.8996092, 48.5897158 8.8973723, 48.5898831 8.8977661, 48.6007304 8.8955808, 48.6008778 8.8962924, 48.6077084 8.8980109, 48.6079663 8.8972585, 48.6154948 8.9060911, 48.6151912 8.9052045, 48.6258039 8.9133937, 48.6258196 8.9129671, 48.6416668 8.9325258, 48.6424929 8.9331792, 48.6463972 8.9402165, 48.6475180 8.9443391, 48.6544979 8.9553375, 48.6546364 8.9549938, 48.6660811 8.9634531, 48.6642502 8.9625290, 48.6859489 8.9803457, 48.6861202 8.9800142, 48.7052895 9.0487083, 48.9563601 8.4816797, 48.9628669 8.4705850, 48.9720450 8.4492261, 48.9800139 8.4373000, 48.9918759 8.4366585, 49.0226256 8.4738843, 49.0395003 8.4872545, 49.0579562 8.5001354, 49.0715988 8.5098925, 49.1278148 8.5510693, 49.1616098 8.5691075, 49.1619031 8.5686656, 49.1730981 8.5754146, 49.1863209 8.5834869, 49.1990464 8.5921852, 49.1981135 8.5909866, 49.2128827 8.6012971, 49.2246552 8.6038684, 49.2362134 8.6022889, 49.2481139 8.6006746, 49.2662926 8.6102057, 49.2712965 8.6143221, 48.9062510 9.1542529, 48.9060983 9.1547569, 48.8583446 9.1257738, 48.8584252 9.1252132, 48.8046855 9.0395252, 48.8044203 9.0399424, 48.9524256 9.2073550, 48.9522036 9.2076234, 49.2743678 8.7629605, 49.2717609 8.6653623, 49.2727646 8.6477288, 49.2896339 8.6240448, 48.6937396 8.9998316, 48.6934591 9.0005857, 49.3126261 8.6293908, 49.3227278 8.6300450, 49.3238313 8.6296606, 49.3494406 8.6315022, 49.3506615 8.6310836, 49.3624388 8.6321377, 49.3777679 8.6340671, 49.3996042 8.6379323, 49.3995595 8.6374762, 49.4242619 8.6344464, 49.4415225 8.6440635, 49.4478965 8.6458733, 49.4498040 8.6466878, 49.4629951 8.6455334, 49.4767567 8.6402530, 49.4791177 8.6400463, 49.4935411 8.6393382, 49.4935774 8.6389413, 49.5081718 8.6398428, 49.5097612 8.6392983, 49.5313281 8.6336119, 49.5312920 8.6331428, 49.5525637 8.6279741, 49.5628605 8.6308686, 49.5629636 8.6305028, 49.5736837 8.6351574, 49.5737159 8.6346703, 49.5849793 8.6344711, 49.5927035 8.6319637, 49.6087826 8.6293910, 49.3087695 8.5838082, 49.3089156 8.5844077, 49.3148038 8.5766768, 49.3148851 8.5773384, 49.3265942 8.5634383, 49.3401364 8.5565264, 49.3499012 8.5518260, 49.3500649 8.5521838, 49.3669972 8.5452572, 49.3671253 8.5456554, 49.4035912 8.5452834, 49.4340209 8.5404260, 49.4340541 8.5408405, 49.4447718 8.5409303, 49.4447240 8.5413473, 48.5221209 9.2518579, 48.7138577 8.0381166, 48.5074260 9.1044855, 48.4966756 9.1647104, 48.7065484 9.1643826, 48.6529830 10.0549964, 48.6617309 7.9371316, 48.4604679 10.1730350, 48.7707679 9.2502478, 49.4983798 8.7221746, 48.5770937 10.1564522, 49.1356288 10.1460742, 49.6508039 9.5817874, 48.9688930 10.0421164, 48.4176102 8.6975529, 48.4510454 8.7024623, 48.5000283 9.2685370, 48.7443551 8.0688245, 48.7293246 8.0869285, 48.6394888 8.0724431, 48.6565743 8.0901528, 48.1245036 9.9555176, 48.5961319 10.1848887, 48.6980717 9.2484000, 48.1584954 9.8273206, 49.3726291 8.6154446, 49.3728206 8.6138336, 48.0740864 9.9161494, 47.6370345 9.6797608, 48.9159563 8.3440876, 48.8526869 8.2665743, 48.8301365 8.2749044, 48.8539086 8.2653152, 49.5396049 9.8644960, 49.5218245 9.8353583, 48.6992588 7.9806463, 47.7914795 8.9797220, 47.7515920 9.0963188, 47.6885117 9.1208074, 47.8182309 9.0258793, 47.7715126 8.9829763, 48.3505082 9.4001775, 48.3121609 8.6420209, 48.3122837 8.6416456, 48.3863838 8.7265175, 48.3864661 8.7260545, 48.5603672 8.8930171, 48.5605008 8.8925417, 48.5431572 8.8902599, 48.5431163 8.8898269, 48.6759155 8.9637953, 48.7855955 9.0161288, 48.7860187 9.0156133, 49.2685960 8.7808264, 49.2752513 8.7415830, 49.2807376 8.7212441, 49.2805216 8.7210148, 49.2784436 8.7067962, 49.2782043 8.7070247, 49.2761940 8.6961312, 49.2753863 8.6915806, 49.2720878 8.6653395, 49.2735130 8.6454921, 49.2772630 8.6311618, 49.2770465 8.6306095, 49.2724834 8.6147195, 49.2851444 8.6114523, 49.2896916 8.6235466, 49.3026611 8.6271942, 49.3028738 8.6268039, 49.2925232 8.6002521, 49.2925827 8.6009328, 49.2988050 8.5936118, 49.2990364 8.5939962, 49.3365839 8.6307588, 49.3366657 8.6303464, 49.3897310 8.6391038, 49.3897229 8.6386760, 49.4090665 8.6360177, 49.4090472 8.6355624, 49.3786252 8.6340635, 49.4678475 8.6434689, 49.5201575 8.6377645, 49.5201414 8.6373810, 49.5848404 8.6341265, 49.6087473 8.6288107, 49.3319505 8.5414892, 49.3322094 8.5412671, 49.3308082 8.5193728, 49.3310823 8.5183610, 49.3310769 8.5049699, 49.3315658 8.5013626, 49.3341986 8.4859848, 49.3339040 8.4859031, 49.3391146 8.4759931, 49.3392346 8.4764335, 49.0083118 8.4586493, 49.0084147 8.4581585, 49.0479857 8.4924290, 49.0479541 8.4929699, 49.1031348 8.5412231, 49.1041106 8.5425407, 49.1383259 8.5543833, 49.1383617 8.5537736, 49.2290781 8.6026935, 48.0844287 8.5950728, 48.0842978 8.5946580, 48.0707959 8.6062199, 48.0729727 8.6031045, 48.0616780 8.6172924, 48.0614729 8.6169757, 48.0467958 8.6243721, 48.0467018 8.6239468, 48.0341264 8.6201920, 48.0308426 8.6174004, 48.1119121 8.5822120, 48.1117959 8.5818045, 48.7390909 9.1046003, 48.7399694 9.1089399, 48.4015433 9.0154681, 48.3690922 8.9823530, 48.6050833 9.7626886, 48.8298430 8.2749761, 48.8899782 8.1857857, 48.7640789 8.9877233, 47.8328952 8.7686961, 48.3570794 8.4941471, 48.7769422 8.2549352, 48.1391265 9.5711715, 48.5790648 9.6732660, 48.7612090 9.0913193, 47.8748989 8.3130633, 48.3236105 8.9161333, 48.3234236 8.9166417, 48.3354920 8.9500999, 48.7933136 8.3221746, 47.6551491 8.2488428, 47.6976799 9.6153172, 47.6209896 8.2562141, 47.7163607 9.4892661, 47.8086566 9.3140978, 47.7784875 9.3563684, 47.7680005 9.0451650, 47.7090187 9.0968096, 47.7299238 9.0291139, 49.6866841 9.7590894, 48.8168471 9.3139413, 48.3610944 8.5627862, 48.3509823 8.8958946, 48.7814979 8.0742777, 49.5483312 8.6217587, 49.5480505 8.6219075, 49.5530900 8.6271975, 49.4551559 8.5414923, 49.4535171 8.5424121, 49.4544949 8.5572809, 49.4547252 8.5574877, 49.4576280 8.5488333, 49.4578834 8.5490444, 49.4502084 8.5687290, 49.4495578 8.5714117, 49.4960783 8.5568899, 49.4959437 8.5573374, 49.4351626 8.6037261, 49.4353535 8.6040008, 49.4400482 8.5951900, 49.4402646 8.5954224, 49.4233651 8.6243011, 49.4235630 8.6246347, 49.3715952 8.5445479, 49.3716150 8.5449583, 49.3797900 8.5437786, 49.3798146 8.5441885, 49.4147544 8.5477856, 49.4147652 8.5481923, 49.4234904 8.5447593, 49.4235969 8.5451401, 48.9378783 9.1912896, 48.9378316 9.1918418, 49.3216434 8.5680879, 48.4123305 8.6398138, 48.4354246 8.7298101, 48.6880144 9.1785474, 48.6858077 9.1789465, 48.0595559 9.8025082, 48.3514994 8.6437519, 48.8875682 9.4009667, 48.8876980 9.4006577, 47.6362371 8.3136248, 47.6779532 8.3787909, 47.6936388 8.3971377, 47.7387708 8.4432421, 48.8785766 8.2176171, 47.7197129 8.3478040, 47.7511295 8.3431455, 47.7672706 8.3721662, 47.8617756 8.4449749, 48.5969608 8.3495784, 48.7023715 9.0313312, 48.3062437 8.8763154, 48.3058874 8.8764285, 48.3357611 8.9499201, 47.8004338 9.1706255, 48.3681478 8.4801354, 48.0196978 9.4665935, 48.6857923 9.1793283, 48.6880227 9.1789153, 48.6069853 8.1926563, 48.8593992 9.3241072, 48.8715005 8.2321744, 48.3423742 8.4719118, 49.7678910 9.5953982, 49.7769359 9.5730416, 48.8786367 8.1735131, 48.0713702 9.0372714, 48.6848670 7.9775150, 47.7798874 9.1801891, 47.7467856 9.2219730, 47.7024077 9.2711721, 49.7787336 9.5717771, 49.7663206 9.5991074, 49.7695219 9.5838183, 48.8166940 9.3150476, 48.8151457 9.4065628, 48.7916196 9.5897736, 47.8910671 9.9026842, 48.8655865 8.6613281, 47.7246597 9.0581343, 48.5364785 8.8432038, 47.8361535 9.8150148, 47.9351250 9.8898565, 48.7893036 9.5560934, 49.1923091 9.8718353, 47.7169396 9.5803960, 48.4227649 9.9594069, 48.7358912 9.1642861, 48.7640362 8.1301721, 48.6633238 8.8019223, 48.7393241 8.7097934, 48.7345657 8.7897901, 48.7441012 8.8062343, 48.7482361 8.8816313, 48.7581302 8.9422327, 48.7612316 8.8240758, 49.7716334 9.3622440, 49.7717798 9.4016861, 49.7804454 9.4381406, 48.6158224 9.5925440, 48.7139662 9.1632623, 48.7143277 9.1636349, 48.4872370 7.8598603, 48.8046022 9.2898469, 48.8138342 9.3497442, 48.8154088 9.4066499, 48.8102775 9.4322703, 48.8074826 9.4751998, 48.8069459 9.4770765, 48.8078174 9.5037961, 48.8080541 9.5036458, 48.8198273 9.5426560, 48.8200502 9.5428065, 48.8030326 9.2877111, 48.7798546 9.1993849, 48.8133527 8.3020104, 48.7560825 9.0917547, 48.8170882 9.0553505, 48.4071384 8.5365533, 48.8154144 9.5168585, 48.8188802 9.5202568, 48.7478672 9.6172670, 48.5344168 9.6558410, 48.5453878 9.6446335, 48.5531535 9.6323297, 48.5596589 9.6304432, 48.5716398 9.6511007, 48.5308763 9.6959963, 48.5224429 9.7375540, 48.4114429 9.9732844, 48.4958713 9.8455097, 48.4386013 9.9754436, 48.4382636 9.9761016, 48.3704027 8.5354285, 48.8178799 9.5186817, 48.3900820 8.4765948, 47.8296456 8.9962185, 47.8855604 9.1505723, 47.9060139 9.1734577, 49.7229609 9.6338761, 48.3185342 9.2959345, 48.5436491 9.1502839, 48.5360389 9.1360139, 49.6974530 9.6271813, 48.7665879 9.1834710, 48.3728210 8.9367987, 47.6826585 9.7853553, 47.6954449 9.7932976, 47.7061333 9.8028095, 47.7104232 9.8141411, 47.7171469 9.8406117, 47.7261390 9.8725292, 47.7424942 9.8953725, 47.7526269 9.9068504, 47.6210810 9.7381655, 47.6385438 9.7433628, 47.6475323 9.7532081, 47.6568329 9.7692078, 47.6674698 9.7801294, 47.7114584 9.8215361, 47.7197408 9.8576128, 47.7627504 9.9179727, 47.7729395 9.9331797, 47.7777565 9.9484506, 47.7899826 9.9658295, 47.7989986 9.9798027, 47.8161444 9.9911528, 47.8245186 9.9917204, 47.8337802 9.9915487, 47.8489069 9.9923148, 47.8610368 10.0079398, 47.8713224 10.0266884, 47.8850746 10.0410061, 47.8969530 10.0537807, 47.9095105 10.0670038, 47.9222606 10.0801768, 47.9331244 10.0958325, 49.4982324 8.7655658, 48.0320171 8.5433056, 48.6587664 10.2204325, 48.7344923 10.1593282, 48.6338300 9.9951868, 48.7117384 8.8171859, 48.8654161 8.5566606, 48.3724339 9.8123755, 48.7673126 8.1710003, 48.7033738 8.1232844, 48.4322357 9.1288781, 48.7937419 9.1615616, 49.2282577 9.1394988, 48.6797333 10.1041771, 49.0804342 8.5200945, 49.4349711 8.5675363, 47.9211739 8.6720702, 47.9243660 8.5951144, 47.9270881 8.5763973, 47.9206487 8.5048201, 47.9272378 8.5397640, 47.9119552 8.4726552, 47.9111741 8.4713726, 47.8954235 8.4400780, 47.8955227 8.4242315, 47.8895667 8.4055618, 47.8992706 8.3120095, 47.9029212 8.2574463, 47.9050432 8.2222440, 47.9062746 8.1362588, 47.9146743 8.0818462, 48.7355711 9.3524087, 48.7115328 10.0939877, 48.7240254 10.0934189, 48.6479161 9.9618928, 48.8195893 10.1185590, 48.7591062 10.1036537, 48.8029141 10.1254094, 48.6719594 8.9984651, 48.7749207 9.9383719, 48.7263455 10.0235930, 48.4135032 8.2449603, 47.9995301 9.9695933, 49.2854470 8.6116948, 49.3219743 8.5683836, 47.8096201 8.9909358, 49.7068665 9.7781075, 48.5513494 8.2504632, 47.8586463 9.3550964, 47.8762025 9.3450098, 48.8078487 10.2116028, 48.5917876 10.1317650, 48.5999880 10.0683864, 48.5347143 7.9226115, 48.5669403 7.8349143, 48.6581973 7.9520294, 48.3447143 9.1625738, 49.3269369 8.4562714, 48.4986374 9.8430141, 48.6414710 9.5955141, 48.7240485 8.3586705, 48.6565200 9.9340273, 48.7006808 9.9077288, 48.5056730 8.9313385, 49.4374384 8.6412289, 49.4582684 8.6461975, 49.4243132 8.6340120, 49.3624164 8.6317186, 49.3124170 8.6289601, 49.2130203 8.6008043, 49.2478377 8.6002076, 49.2565956 8.6018218, 49.2565096 8.6023342, 49.2360633 8.6017869, 49.1863754 8.5829504, 49.1729647 8.5747696, 49.0773701 9.3926672, 48.4583916 8.3744317, 48.4623649 8.3486391, 49.4590109 8.5776135, 48.7980930 9.2139999, 48.7903192 9.2227408, 48.4496976 9.7983302, 48.5186599 10.1712401, 48.4762236 9.5948157, 49.3589734 9.4688627, 49.3809781 9.4973151, 49.3335547 8.5103395, 48.7019319 8.9166915, 48.0281381 9.8411581, 48.6699273 8.7897063, 47.7074751 7.5255506, 47.6679584 9.3399687, 48.5063101 9.1086316, 49.4635962 9.7770129, 48.7722200 9.1411946, 48.7803603 9.1769220, 48.7769014 9.1818398, 48.8359049 9.2179531, 48.8375716 9.2206574, 48.8375548 9.2232488, 48.7721996 9.1414944, 49.0373756 8.3121690, 47.8666461 8.1705984, 48.6953283 10.1734823, 48.7986667 9.2046281, 49.3737643 9.8712252, 48.6929518 9.2193656, 48.6938357 9.2206004, 49.0120022 8.4077454, 49.0178024 8.4036805, 48.9510439 8.8779408, 48.5111315 8.5279242, 48.7807176 9.1831154, 49.2359955 9.2145358, 49.2511272 9.2157990, 48.8270165 9.2104598, 48.8063751 9.2134082, 48.8328169 9.2156668, 48.8270900 9.2162522, 48.7926529 9.1960124, 48.8024262 9.2102505, 48.8096187 9.2182127, 48.6176296 10.1490073, 48.6783345 9.1273774, 49.4089845 9.4328833, 48.1098046 10.0812923, 49.6071719 9.8174005, 49.2683049 9.1486098, 49.0379898 8.9165667, 48.5406115 8.6982202, 49.0151348 8.4164330, 48.6037512 8.7366987, 48.5692403 8.7178066, 48.5893646 8.7315048, 48.9629464 8.4696573, 49.3041861 8.5654006, 49.3084976 8.4882100, 49.3062824 8.5276746, 49.0335897 8.3768366, 49.2764479 9.2287816, 48.5083302 8.1360071, 48.5716165 10.1546193, 48.5234036 10.0829835, 48.5644946 10.1405713, 48.6006926 10.1930766, 48.4939269 10.0871105, 48.5585352 10.1276554, 48.4802340 10.1035539, 48.5499229 10.1089296, 48.5094281 10.0809424, 48.4913880 10.0897599, 48.5793227 10.1694371, 48.5370883 10.0921411, 48.6523282 10.2286344, 48.6777857 10.2184380, 48.6672503 10.2279878, 48.6370427 10.2166432, 48.6242549 10.2192783, 48.6120766 10.2056884, 48.6920895 10.2143262, 48.7030136 10.2146742, 48.8618376 10.1931581, 48.8332632 10.2076457, 48.8827238 10.1645929, 48.9421283 10.1919918, 49.0364808 10.1865475, 49.0173985 10.1969915, 48.7571167 10.2018021, 48.7402931 10.1962372, 48.8042748 10.2100402, 48.8474227 10.1971056, 48.8970654 10.1761638, 48.7897010 10.2109234, 48.8686720 10.1739204, 48.9261748 10.1945281, 48.9533976 10.1868556, 49.0011869 10.1934122, 49.0225740 10.1963081, 49.0924030 10.2095399, 49.0609686 10.1808684, 49.0760021 10.1991841, 49.0492076 10.1772995, 49.2125333 9.2753125, 49.2268390 8.9484307, 48.6013920 8.0919220, 48.5679097 8.1432529, 48.8001812 9.7973925, 49.2574002 8.5047612, 49.2292889 8.4964665, 49.2824056 8.5244084, 48.7464556 8.2066346, 49.4651669 8.5271434, 49.3780540 8.6486849, 49.4648287 8.5270186, 48.3098676 7.8350464, 47.9924895 8.6077700, 47.9923293 8.6073623, 48.7543901 9.1453973, 48.7765896 9.0222248, 47.7074526 9.8044526, 47.7110714 9.8186784, 47.7326922 9.8808486, 47.6810687 9.7846550, 47.6957684 9.7929756, 47.7112098 9.8198943, 47.7248769 9.8702909, 47.7109077 9.8173971, 47.7173970 9.8403679, 47.7426976 9.8951877, 47.7199073 9.8575529, 47.8245155 9.9914569, 47.7779873 9.9483692, 47.8149009 9.9906789, 47.7899695 9.9654515, 47.7731043 9.9330387, 47.8007641 9.9821144, 47.8344653 9.9911242, 47.7630499 9.9179319, 47.8489307 9.9919631, 47.9223871 10.0797186, 47.9095392 10.0665796, 47.8715057 10.0263294, 47.9324012 10.0946047, 47.8972148 10.0536202, 47.8611937 10.0076449, 47.6212371 9.7377938, 49.2427738 8.6584711, 49.2277019 8.6549049, 47.7251277 9.7136677, 48.2882830 10.0373949, 48.3678389 8.9810088, 47.6983756 9.6703430, 48.5345073 8.5657906, 47.8354774 9.1733536, 47.7196201 9.2434980, 48.4688382 8.5243138, 48.4462792 8.4404912, 48.4651360 8.3226158, 48.4798743 8.2756820, 48.5509660 8.2160283, 48.5282910 8.2156177, 47.8583352 8.0527659, 48.6233742 9.6474853, 47.8421728 9.2591347, 47.8963299 9.2766958, 49.0024709 8.4620661, 48.4617734 9.1534473, 48.7463828 9.1631837, 48.7464742 9.1635807, 48.4295834 9.1753342, 48.6560469 7.9614999, 48.6067013 7.9957688, 48.5935738 7.9814908, 48.5290189 7.9282942, 48.4305716 7.9656859, 48.4476505 7.9377941, 48.3742224 8.0253808, 48.2895888 8.0689839, 49.2283026 8.8731254, 48.0080734 8.9166012, 47.9412086 9.2958515, 47.8780689 8.7556860, 47.9683465 9.1545316, 48.0887124 8.9262412, 48.1419177 8.8203361, 48.9560784 8.4813376, 49.0906796 8.5312506, 49.3402268 8.5570096, 49.3267720 8.5639613, 47.8834738 8.7282837, 48.3602149 9.1986196, 48.6482603 7.9925410, 48.5905388 8.1221704, 48.5816658 8.2219592, 48.8149369 8.9153444, 48.8146940 8.9150211, 48.7110459 10.0443640, 48.2291935 9.0734132, 49.1198820 8.7404111, 49.1810203 9.3405836, 49.6376906 9.7310949, 48.6725457 9.0031015, 47.9822946 10.0070220, 47.9633804 9.7640640, 47.9377464 9.7580317, 47.8005130 9.6082012, 47.7827675 9.5985322, 47.8641749 9.6775262, 47.9102931 9.7647206, 47.8468824 9.6380335, 47.8288333 9.6165700, 47.8643581 9.6772609, 47.7976959 9.6066726, 47.7798501 9.5963029, 47.8269115 9.6166384, 47.9110831 9.7457007, 48.0417478 9.7901424, 48.0076356 9.7742830, 49.0398224 9.7392156, 48.8145665 8.1477899, 48.8700451 8.2330963, 49.4401569 8.6267606, 49.4827502 8.9652469, 49.2261275 8.4015628, 49.2270042 8.3930670, 49.2146867 8.4245865, 48.7852067 9.6873710, 49.3110545 9.1469762, 49.3257362 9.1127483, 49.3334168 9.1021488, 49.3837384 9.0786578, 49.4005395 9.0671825, 49.4398367 8.9046171, 48.4629531 10.1380779, 48.4439448 8.8366702, 48.8317992 9.2086803, 48.8342680 9.2098271, 48.8363275 9.2136031, 48.6069355 9.6317726, 48.8023955 9.2082550, 48.8123036 9.2196914, 48.8169866 9.2258518, 48.8242368 9.2224948, 48.8259297 9.2110930, 48.8343474 9.2081900, 49.0629251 9.1970198, 49.3918443 8.7985821, 49.3926349 8.8038177, 48.8128038 9.2216738, 48.5246441 9.3443560, 48.1387764 9.7690366, 48.5423680 9.4008658, 49.2809102 9.3551891, 49.2809335 9.3557682, 49.4141841 8.6552752, 49.2978779 9.3767644, 49.3795727 9.4593926, 49.3797955 9.4604041, 49.3927454 9.4696114, 49.4062626 9.4721040, 49.4101237 9.4741552, 48.8002789 9.0640069, 49.0011181 8.7173021, 49.0227741 8.7040411, 48.3425352 8.5795308, 48.8257307 9.3013261, 49.0006795 8.7705306, 48.7170600 8.5425541, 47.9418017 9.0439966, 48.0005307 9.1181165, 48.0452735 9.2370497, 48.6921929 9.6652387, 48.8150939 9.0241163, 48.7171935 10.2085770, 48.7281783 10.2004541, 48.7730993 10.2108669, 48.9290165 8.6489728, 48.9371276 8.7215122, 49.4940290 9.2614381, 48.9147442 8.7639662, 48.9149020 8.7645148, 48.9242325 8.7483836, 48.9189948 8.8492099, 47.7993589 9.7259098, 47.8117916 9.7614954, 48.7548994 9.1746002, 49.7078295 9.8039152, 49.6375662 9.7305937, 49.6611667 9.7566617, 49.6719607 9.7713529, 49.7006601 9.7954395, 49.6060244 9.6866807, 49.6510182 9.7397939, 49.6902614 9.7878745, 49.4769864 9.5641676, 49.5712029 9.6403884, 49.4710234 9.5601560, 49.5847956 9.6616762, 49.5158134 9.5684642, 49.5802327 9.6475074, 49.5027455 9.5624713, 49.3205162 9.4126575, 49.3135309 9.4057155, 49.2256498 9.3508030, 49.1781679 9.3380479, 49.2066141 9.3436718, 49.1616635 9.3004576, 49.1810215 9.3400832, 49.2163030 9.3470828, 49.2136669 9.5260814, 49.5927143 9.7364883, 49.5549584 8.5103589, 49.5504868 8.4235355, 49.5540665 8.4673540, 49.5546737 8.4894870, 49.5534822 8.4431096, 49.5552322 8.5100715, 49.5530546 8.4434530, 49.5507729 8.4234367, 49.5544057 8.4894966, 49.0563897 8.8749520, 49.1142373 8.5502969, 49.1143832 8.5498328, 49.0228039 8.4734539, 49.0388576 8.4862787, 48.2640265 9.4987664, 48.9331986 8.8054530, 48.9174229 9.2198333, 48.5609982 8.4262796, 49.5721278 9.4133089, 49.0695697 8.5077440, 49.0905926 8.5317581, 48.7949712 9.2020362, 49.3061073 8.5324333, 49.1618568 9.2788309, 48.5579834 9.8178047, 48.1752988 8.6009275, 48.1432037 8.5710423, 48.1432443 8.5706427, 48.1598980 8.5730541, 48.1598046 8.5726511, 49.1721181 9.3296726, 49.1724302 9.3294218, 49.2162912 9.3475840, 48.9000520 9.0220794, 49.1847108 10.0900827, 49.1848252 10.0891598, 49.1896587 10.1082909, 49.1898348 10.1079377, 49.1986441 10.1270995, 49.1988046 10.1266370, 48.1912071 8.5866264, 48.1913427 8.5862720, 48.1999009 8.6040224, 48.1996877 8.6042934, 48.1761727 8.5742583, 48.1761942 8.5738077, 49.1832002 9.2198007, 49.1835335 9.2196862, 49.1887589 9.1831723, 49.1890446 9.1832209, 49.1696319 9.2528172, 48.8542751 8.8988339, 49.2504081 9.0980374, 47.9439493 7.7362338, 49.2428488 9.1540163, 49.5941383 8.6311749, 47.9391928 7.8716401, 49.1676442 9.2597076, 49.1206387 9.3002491, 49.1863674 9.1970883, 49.1867235 9.1971601, 49.3930439 8.5437518, 49.3930296 8.5441632, 48.0198623 8.0751576, 47.9907295 8.1179395, 47.9809321 8.1427470, 49.0240512 8.3759973, 49.1316010 9.3015276, 49.1353274 9.3040368, 49.1354048 9.3046888, 49.1509022 9.3021184, 49.0723846 9.2819012, 49.0771419 9.3096681, 49.0837516 9.2903086, 49.0837076 9.2896928, 49.0923412 9.2925464, 49.0923485 9.2920329, 49.1060069 9.3021985, 49.1062536 9.3017889, 49.1871870 9.1416283, 49.1875135 9.1416704, 48.9090324 8.6901325, 48.9093271 8.6896039, 48.9167507 8.7200161, 48.9169880 8.7193856, 49.1881041 9.1586514, 49.1885956 9.1193045, 49.1887701 9.1662358, 49.1889471 9.1654843, 49.1935880 9.1069908, 49.1941353 9.1064907, 49.1962800 9.0992722, 49.1965765 9.0994330, 49.2036084 9.0845099, 49.2036611 9.0837736, 49.2114728 9.0729929, 49.2118116 9.0713709, 49.2133993 9.0307116, 49.2142990 9.0467238, 49.2147927 9.0477382, 49.2155578 9.0111665, 49.2159065 9.0112163, 49.2185724 8.9937861, 49.2189155 8.9938342, 49.2218636 8.9761899, 49.2219514 8.9712138, 49.2248674 8.9472710, 49.2251454 8.9475697, 49.2266030 8.9376576, 49.2269236 8.9219300, 49.2273008 8.9222375, 49.2317164 8.9040974, 49.2317859 8.9044922, 49.2401385 8.8905193, 49.2429873 8.8802683, 49.2495696 8.8542327, 49.2497135 8.8548752, 49.2539483 8.8424593, 49.2541812 8.8428710, 49.2568309 8.8327005, 49.2583625 8.8204228, 49.2587335 8.8197907, 49.2611840 8.8071279, 49.2637538 8.8014070, 49.2659403 8.7934976, 49.2723335 8.7690189, 49.4170428 9.9859917, 49.3322519 9.4113637, 49.3323330 9.4117828, 47.8987210 8.2902797, 49.2067543 9.3440942, 49.2256829 9.3512941, 49.2346814 9.3494335, 49.2350284 9.3488643, 49.2607647 9.3531930, 49.2721106 9.3520496, 49.2721130 9.3515930, 49.2545234 9.3523889, 49.2547890 9.3530127, 47.9248891 7.7105768, 47.8995226 7.6787759, 47.8816479 7.7126377, 49.3051714 9.3924690, 49.3052611 9.3918019, 49.3132850 9.4061184, 49.3203389 9.4131413, 49.3255112 9.4136580, 49.3429653 9.4064294, 49.3435612 9.4069728, 49.1933219 9.3504312, 49.1950681 9.3511910, 49.1969154 9.3501739, 49.2428822 9.3487869, 49.2429988 9.3482992, 49.2885484 9.3674880, 49.2888492 9.3671594, 49.2958364 9.3767718, 49.2959616 9.3776113, 49.1780806 9.3385165, 49.1870030 9.3458296, 49.1876263 9.3456559, 49.4020579 9.9426631, 49.0045901 9.2376857, 49.0062638 9.2386840, 49.0142088 9.2460114, 49.0515765 9.1483214, 47.9039911 7.7383012, 49.1616461 9.3009935, 49.1694306 9.3107204, 49.1704268 9.3162466, 47.9727362 7.9445677, 47.9606923 7.9897254, 49.6055676 9.6868114, 49.3911061 10.1211012, 49.4380783 10.0161634, 48.9743928 8.7957421, 49.0561625 9.2688179, 49.0594630 9.2693759, 47.8617298 7.6974840, 49.2142768 9.0230381, 47.9824084 7.8543163, 47.9789931 7.9111705, 47.9795406 7.9099467, 48.1429371 8.6384638, 48.1320146 8.6355665, 48.1499024 8.6152193, 49.0304599 9.2531977, 49.5015800 10.0350131, 49.4759747 9.9397946, 49.4375193 9.9653786, 49.4656731 9.9274158, 49.4845684 9.8958289, 49.4532351 9.9581528, 49.3578060 9.4179989, 49.3580375 9.4176915, 49.3822707 9.9380177, 49.3640239 9.9013334, 49.4317944 9.5039781, 49.4317696 9.5032233, 49.4407047 9.5144379, 49.4409211 9.5138979, 49.4469098 9.5186981, 49.4471603 9.5184619, 48.8725770 8.6904871, 48.7752034 9.0254208, 48.7754392 9.0239267, 48.7761735 9.0236883, 48.7762929 9.0238041, 48.7763222 9.0224710, 48.9740454 9.2647035, 48.9900450 9.2318387, 48.9918045 9.2329174, 49.0141796 9.2465322, 49.0456156 9.2645516, 48.9219152 9.0236911, 48.9260777 9.0680844, 48.0441698 7.9757164, 48.0505716 8.0496292, 48.6003226 9.1902861, 48.6005238 9.1901062, 49.1563088 9.3072238, 49.1570966 9.3161343, 49.2701869 9.6254730, 49.3627346 9.4259543, 49.3628020 9.4269527, 49.3688240 9.4397699, 49.3690412 9.4393949, 49.3752319 9.4523197, 49.3753066 9.4533315, 48.9217824 8.9317455, 48.8343987 8.8560836, 48.8353603 8.8553140, 48.8521225 8.8002086, 48.8525235 8.8006640, 48.8672672 8.7912439, 48.8675228 8.7920279, 48.8755213 8.7939155, 47.9162923 8.0705453, 47.9169414 8.0695102, 47.9335625 8.0303327, 49.1985853 9.5675230, 49.2036230 9.4713725, 49.2038764 9.4709519, 49.2057822 9.4822418, 49.2066521 9.4849493, 49.3178826 9.6893395, 49.3413300 9.7360884, 49.2804805 9.7398425, 49.2152324 9.5901564, 49.2155556 9.5901928, 49.1826470 9.7457752, 49.1829911 9.7455545, 49.2014502 9.6852944, 49.2062055 9.6383435, 48.8556122 9.1240650, 48.8595120 9.1069904, 48.9239379 9.1534561, 48.9241264 9.1537921, 49.1743390 9.8670407, 49.2954225 9.7786234, 49.3266174 9.8116523, 49.3832252 9.8481597, 49.3925185 9.8606230, 49.4104072 9.8827154, 49.4173592 9.8680119, 49.4126354 9.8073800, 49.4217191 9.8163356, 48.8957794 9.1514907, 48.8958618 9.1510115, 48.8840902 9.1453702, 48.8839518 9.1447028, 48.8723227 9.1366426, 48.8723919 9.1361233, 48.8444490 9.1145130, 48.8379323 9.1003275, 48.8381889 9.0999711, 48.8311361 9.0867367, 48.8313792 9.0863760, 48.8219855 9.0834900, 48.8219651 9.0781112, 48.8213163 9.0768080, 48.8143349 9.0649853, 48.8147418 9.0645765, 48.8081518 9.0478713, 48.8084962 9.0476868, 48.7824919 9.0079472, 48.7828894 9.0081705, 49.3462673 9.7652536, 49.3322744 9.9286728, 49.1835852 10.0756758, 49.1833333 10.0696043, 49.4620731 9.8465217, 49.4311530 9.8374961, 49.4588393 9.8921111, 49.4733722 9.8731286, 49.4779904 9.8366968, 47.7860281 9.1194209, 48.8471779 8.9618798, 49.5398575 9.1061778, 49.5514779 9.1200926, 48.9213373 9.1585809, 48.9274840 9.1694800, 48.9277300 9.1691057, 49.1774172 9.9585539, 49.1777132 9.9580959, 49.1833611 10.0480406, 49.1836647 10.0482720, 49.3928222 9.4691860, 49.4174596 9.4780929, 49.4178835 9.4789911, 48.9895024 9.6120129, 48.8960794 9.1960948, 49.0333941 9.9294090, 49.4544367 9.5315328, 49.4560320 9.5330608, 49.4620658 9.5447052, 49.4621953 9.5441557, 49.4683691 9.5576946, 49.4696743 9.5539390, 49.4772960 9.5647733, 49.4889725 9.5650150, 49.4895315 9.5653540, 49.5027792 9.5628991, 49.1735411 9.9956779, 49.1738282 9.9957325, 49.1774935 10.0296026, 48.8462333 9.1297668, 48.8452915 9.1309330, 49.5403467 9.5889109, 49.5504165 9.6068297, 49.5505889 9.6064863, 49.5585365 9.6146243, 49.5712189 9.6408172, 49.5800040 9.6478395, 49.5846226 9.6621280, 49.5911156 9.6691373, 49.5927203 9.6700680, 49.5993920 9.6809044, 48.7406938 8.6474860, 49.5994571 9.6992900, 48.8267253 9.3001515, 49.6283044 9.7298560, 49.6126629 9.7161207, 49.6222826 9.7288373, 49.6609192 9.7570507, 49.6509129 9.7402683, 49.6720702 9.7719881, 49.6805457 9.7792678, 49.6902760 9.7883448, 49.6804068 9.7796570, 49.7005867 9.7958626, 49.4475495 8.9708096, 48.7613425 9.2144219, 49.0965990 9.4469764, 49.0927050 9.3961852, 49.0851274 9.2259822, 48.7546412 9.1453708, 47.7031193 9.9355243, 49.3688113 8.7873065, 48.0024684 9.3886804, 48.9139897 8.8754916, 48.7540192 9.1406562, 48.7542552 9.1411383, 48.7547015 9.1445888, 48.7581785 9.1286783, 48.7811028 9.1943466, 48.4595988 10.1711934, 48.4645404 10.1223774, 48.4802017 10.1041631, 48.4914513 10.0901495, 48.4951764 10.0871437, 48.5097340 10.0813635, 48.5366930 10.0923397, 48.5495692 10.1089249, 48.5640570 10.1405415, 48.6002192 10.1932351, 48.6143248 10.2091203, 48.6237947 10.2194702, 48.6370975 10.2170778, 48.6518587 10.2288665, 48.6672443 10.2286901, 48.6777252 10.2191011, 48.6918304 10.2147888, 48.7030388 10.2151575, 48.7411557 10.1966712, 48.7566988 10.2022541, 48.7725633 10.2111265, 48.7895482 10.2114348, 48.8216854 10.2168276, 48.8334224 10.2081744, 48.8474543 10.1975819, 48.8620769 10.1936834, 48.8691565 10.1741861, 48.8750477 10.1666259, 48.8751128 10.1673993, 48.8863019 10.1658808, 48.8966666 10.1763137, 48.9102131 10.1899836, 48.9104742 10.1896634, 48.9258950 10.1949601, 48.9420077 10.1925203, 48.9558196 10.1862163, 48.9689245 10.1865525, 48.9692640 10.1862417, 49.0009182 10.1938674, 49.0170502 10.1975981, 49.0224299 10.1969381, 49.0363577 10.1873324, 49.0493389 10.1776823, 49.0605574 10.1810565, 49.0758780 10.1995729, 49.0923405 10.2099712, 48.8218705 10.2163375, 48.5732709 10.1585590, 49.7621113 9.6294051, 49.3683330 9.9579141, 49.4195134 10.0535016, 49.2882383 9.9406478, 48.5580685 10.1277207, 48.5788457 10.1693436, 48.7170747 10.2080523, 48.7282666 10.2009034, 49.3350076 8.7983923, 49.3459639 8.7931740, 47.5611045 8.0321768, 49.0171260 9.1534397, 49.0958167 9.1828417, 49.1095965 9.1848677, 48.9183760 9.1563179, 48.9193212 9.1562973, 48.9447724 9.1977190, 48.9449139 9.1972527, 48.9689682 9.2267241, 48.9800924 9.2300574, 49.0304309 9.2538320, 49.1210630 9.3007708, 49.1566653 9.3071655, 49.1573678 9.3160744, 49.1601842 9.3549323, 49.1603741 9.3548775, 49.1616105 9.3397381, 49.1627015 9.3701449, 49.1629358 9.3698809, 49.1725530 9.3817719, 49.1727033 9.8237784, 49.1727925 10.0129405, 49.1729493 9.8236024, 49.1742106 9.8457741, 49.1744759 9.8456315, 49.1744599 9.8623803, 49.1755740 9.9774230, 49.1758547 9.9772793, 49.1759763 9.4001758, 49.1762700 9.8859732, 49.1765088 9.8857580, 49.1770020 9.9345641, 49.1772620 9.9342406, 49.1775887 9.9105015, 49.1777734 10.0294788, 49.1778655 9.9103748, 49.1793399 9.7775155, 49.1796070 9.7775911, 49.1807457 9.4136814, 49.1810781 9.7598064, 49.1813474 9.7612968, 49.1848157 9.7374138, 49.1863246 9.7340659, 49.1896744 9.4186012, 49.1915830 9.7190278, 49.1918286 9.7192538, 49.1949465 9.4295459, 49.1960968 9.7038567, 49.1963928 9.7037561, 49.1971836 9.4521348, 49.1974572 9.4517932, 49.2011210 9.6877344, 49.2043366 9.6644362, 49.2048790 9.6585922, 49.2107745 9.5010542, 49.2110505 9.5008148, 49.2114338 9.5359667, 49.2114729 9.5317012, 49.2118076 9.5173316, 49.2120967 9.5172403, 49.2124341 9.6151901, 49.2127552 9.6151143, 49.2170647 9.5622814, 49.2173850 9.5621363, 49.1245726 9.1305009, 47.6079887 9.5842570, 47.7033469 9.4328489, 49.2890193 8.6051647, 49.4686864 8.5404084, 49.4851183 8.5476333, 48.7551328 9.1535306, 48.7566070 9.1640406, 48.7557736 9.1598401, 48.7546346 9.1489468, 48.7625116 9.1698325, 48.7558502 9.1591969, 48.7547025 9.1516596, 48.7548466 9.1550583, 48.7585917 9.1675048, 48.7555269 9.1595050, 48.7550228 9.1570424, 48.7613879 9.1693616, 48.7560877 9.1617608, 48.7575173 9.1652105, 48.7546558 9.1464774, 48.4514506 8.6433457, 48.4521970 8.6763233, 48.0200383 8.9369411, 49.5696414 9.3640897, 49.5231654 9.3393124, 49.4802730 9.3690583, 48.2306681 8.4106254, 49.4495458 9.4257146, 49.5010683 9.3497671, 48.9581869 8.4301067, 48.9588630 8.4053268, 49.5938778 9.4109944, 49.6063091 9.4370118, 49.6365504 9.4846227, 49.6602377 9.4805080, 49.1311984 9.6338251, 48.7608842 9.4910508, 49.0202769 8.4154626, 49.0937207 8.4121225, 49.3247506 8.5396272, 49.3449164 8.5491365, 49.3476699 8.5480496, 49.4952879 9.2130894, 49.5031612 9.2386569, 49.5219997 9.1700767, 48.4753733 8.4047423, 47.7684484 8.2821018, 48.3226704 9.6087540, 49.1474300 8.5625138, 49.5377487 9.3431212, 48.7771328 9.2445594, 49.3255788 8.8127019, 49.7696553 9.5847553, 48.4906185 9.4512150, 49.3701568 9.1999841, 47.9013964 9.0132227, 47.9153307 9.0468785, 47.9169175 9.0522260, 47.9620341 9.0454807, 47.9754874 9.0793087, 47.9906752 9.0789811, 48.0136013 9.2302443, 48.0821258 9.4500636, 48.1845139 9.4862038, 47.7042046 8.3034213, 49.4012435 9.2089612, 49.4319311 9.2375567, 48.6662152 9.3659699, 48.7024144 9.1774889, 48.7875950 8.9827448, 48.7876052 8.9815757, 48.8007249 8.9412573, 48.8234792 8.8884679, 48.8398485 8.8382949, 48.8437503 8.8159339, 48.9716348 8.4471469, 48.9718087 8.4470090, 48.9800714 8.4366231, 48.9927379 8.4365284, 49.0067732 8.4559623, 48.5196274 9.8080095, 49.2271886 9.5357194, 49.2520286 9.5232629, 49.4119380 10.0303080, 47.8002754 8.1987104, 47.8190174 8.3196830, 49.5074139 9.3070533, 48.6021740 10.0615431, 49.3016282 9.2526462, 49.3705341 9.1559288, 47.7798199 8.3268191, 47.9951149 8.3443070, 48.7264018 9.2107797, 48.7307799 9.1669412, 48.7433433 9.2683902, 48.9658830 8.8832406, 48.9738816 8.8559312, 48.7113403 9.1646288, 48.7184698 9.1629256, 48.5406158 10.2588419, 49.5254765 9.2865999, 48.5231648 10.0833983, 49.1749304 9.7974010, 49.2061965 9.6407316, 49.1898162 9.4180403, 48.7855603 9.1803280, 49.1808888 9.4132057, 49.1505384 9.3016113, 48.8446461 9.1140852, 47.8627536 8.7857416, 47.8630151 8.7860010, 47.8535430 8.8002637, 47.8552075 8.7980343, 47.7654182 8.8041796, 47.7657572 8.8037537, 47.7705586 8.8141093, 47.7706044 8.8134856, 47.7617045 8.7965771, 47.7628714 8.7979748, 47.7551290 8.7854432, 47.7553585 8.7852332, 47.7469775 8.7566261, 47.7473369 8.7564457, 47.7403603 8.7455512, 47.7404180 8.7453253, 48.8239442 8.8879073, 48.7799018 9.1991603, 48.5594430 9.6643993, 48.7313314 9.1307290, 48.3687987 8.1200636, 49.4132111 9.3294052, 49.4189386 9.2924573, 48.7996329 9.3537647, 48.4579439 9.9875507, 48.5509131 9.6345880, 48.5946710 9.6469612, 48.5992368 9.6429459, 48.7955218 8.9596138, 48.7956324 8.9603226, 48.8010415 8.9413894, 48.8400889 8.8396024, 48.8444913 8.8147692, 49.0063430 8.4560599, 49.0579894 8.4995784, 49.0805123 8.5195564, 49.1277871 8.5505582, 49.2664691 8.6097473, 49.4372590 8.6415845, 49.4421019 8.6438758, 49.4678506 8.6439180, 49.2190424 9.2112957, 49.5718373 8.6650002, 48.8093665 9.1834320, 48.8095509 9.1831162, 48.8095078 9.1830372, 48.8096179 9.1832193, 48.8283942 9.2316547, 48.8095137 9.1829682, 48.4316518 9.7505267, 49.1205878 10.1522484, 49.3220845 8.4655350, 48.8188915 9.2372072, 48.7994543 9.1709984, 48.0863844 7.6920940, 49.5923356 9.3604914, 49.4679710 9.1246953, 48.8303778 9.1746521, 49.4848966 8.5480070, 49.5081710 8.5609162, 49.4469737 9.2106562, 48.7743937 9.1727386, 48.7745047 9.1728634, 48.7754257 9.1720375, 48.8313151 9.2122250, 48.8350574 9.2149805, 48.8322297 9.1705414, 47.6269148 8.5717357, 48.9787489 9.3717375, 48.2185403 8.2568051, 47.8600876 8.1797615, 48.9013819 9.0541283, 48.9512077 9.4128480, 48.8834077 9.3881405, 48.8835815 9.3877978, 47.8227987 8.1685497, 48.4982390 8.8442656, 48.7025036 9.4527857, 47.7560737 8.1820547, 47.7707507 8.1831101, 47.7790395 8.1062076, 47.7866778 8.1801994, 47.7916734 8.0821287, 47.8504829 8.2620373, 48.7684830 9.3231418, 49.1891606 9.1171652, 49.2233552 8.9533636, 47.9911663 8.1651822, 48.9270875 9.6214201, 48.0170829 9.3136142, 47.8569443 8.1100233, 48.7122492 9.9138169, 49.1729576 9.7848150, 49.6197048 9.6044235, 48.9656310 9.5806902, 48.7678116 9.1836149, 48.9014012 8.3087881, 49.0962224 9.0919870, 49.7715202 9.4676383, 49.3158418 9.0749821, 48.1377280 9.5979167, 49.5340464 9.2539952, 49.1736873 10.0258466, 49.1967104 9.0903943, 49.3193613 9.1170267, 49.3291232 9.0554272, 47.9784290 8.9641589, 47.9839356 9.0405854, 47.9880187 8.9974481, 47.9918093 8.7739738, 47.9933461 8.7241803, 48.0204120 8.6493049, 49.1782893 9.3731611, 47.7349571 9.2397100, 47.7754898 9.1749163, 49.5431360 9.8876914, 47.6849697 8.0154772, 47.7621595 7.9758828, 47.8079054 7.9357172, 49.2749828 8.7411568, 48.9123330 8.3510166, 48.9123902 8.3504577, 48.9278859 8.3574251, 48.9559673 8.3820776, 48.9608511 8.4084866, 48.9612460 8.4083461, 48.9738379 8.4364444, 48.9757448 8.4369507, 48.8648202 8.2474782, 48.8789975 8.2631638, 48.8792150 8.2627626, 48.8885040 8.2890322, 48.8888477 8.2888475, 48.8942425 8.3105677, 48.8946078 8.3105747, 48.9003187 8.3333080, 48.9006232 8.3329890, 48.9687147 8.4298277, 49.1673363 9.2596599, 49.1822425 9.2236902, 49.1825846 9.2237977, 49.2685258 8.7797727, 49.2745175 8.6394890, 47.8957752 8.4241928, 48.6409446 8.9308115, 48.0228909 8.6121741, 48.0229438 8.6117576, 48.0055377 8.6048873, 48.0055973 8.6052895, 47.9752433 8.6184455, 47.9753906 8.6187932, 47.9849016 8.6118658, 47.9850938 8.6121629, 47.9552172 8.6194757, 47.9552291 8.6198897, 47.9646618 8.6210187, 47.9647513 8.6214154, 47.9116196 8.6845772, 47.9119042 8.6847225, 47.9259038 8.6546660, 47.9261670 8.6547362, 47.9455845 8.6191598, 47.9456945 8.6195331, 47.8917868 8.7230715, 47.8921007 8.7230347, 47.8714101 8.7775596, 47.8714406 8.7780359, 47.8805881 8.7757992, 47.8806648 8.7762586, 47.8875369 8.7383252, 47.8878393 8.7382397, 47.8901856 8.7700635, 47.8902294 8.7506918, 47.8903428 8.7689517, 47.8904407 8.7503382, 47.8166959 8.8469901, 47.8170162 8.8472903, 47.8245464 8.8337926, 47.8250767 8.8336072, 47.8448826 8.8115167, 47.8450907 8.8118378, 47.8068358 8.8542626, 47.8068588 8.8547291, 47.7867976 8.8232352, 47.7868863 8.8228929, 47.7967813 8.8360776, 47.7970006 8.8357483, 47.7495150 8.7631515, 47.7397150 8.7380011, 48.0790498 9.6790386, 48.0970763 9.7026062, 47.7399867 8.7345273, 47.8004997 8.8485013, 47.8007334 8.8482334, 47.8008476 8.8480453, 47.8351310 8.8196960, 47.8353577 8.8200357, 47.8944095 8.7072382, 47.8958979 8.7055108, 47.9054261 8.6967782, 47.9056734 8.6970585, 47.9202794 8.6741869, 47.9205383 8.6743676, 47.9322153 8.6301805, 47.9323560 8.6305783, 48.0151141 8.6076181, 48.0151259 8.6071821, 48.6389999 8.9275089, 48.6723269 8.9637019, 48.7474451 9.0594116, 48.8206218 9.2271254, 49.3135359 8.6418842, 48.2094871 7.7785810, 49.1590946 9.2905858, 49.1786306 9.2350337, 49.0220898 8.6269575, 49.0222804 8.5892203, 49.0809449 8.7838851, 49.0954448 8.8068286, 49.1134678 8.8290440, 49.1227203 8.8550260, 49.1481199 8.9186301, 49.2129006 8.6719161, 47.7325414 9.8811144, 47.7557211 8.9496434, 47.7789662 9.1536377, 47.5711618 7.7613910, 48.8601439 9.3228828, 48.7981271 8.1679392, 48.4481460 7.9010627, 48.6273473 9.3396756, 47.7837255 8.9321885, 47.6884934 9.2990145, 48.4625038 10.1391752, 48.8146124 9.3537610, 48.8253583 9.2125643, 48.7795491 9.1745436, 48.7060514 9.1629651, 48.8698641 10.2833974, 49.0008013 8.3719610, 48.9295711 9.8767384, 48.9205756 8.2058607, 49.2944589 9.4709116, 48.9080374 9.3417376, 48.7121894 9.1604107, 48.7603626 9.1685129, 48.7804469 9.1766071, 48.8221293 9.2045896, 49.6084586 9.3445733, 48.1847953 7.7655600, 49.3783297 8.5626284, 48.9551893 9.2496743, 48.9563878 9.2482053, 48.9547502 9.2555397, 48.9559081 9.2587417, 48.0006677 8.4180724, 48.9899167 9.2772816, 48.9911975 9.2808639, 49.0039164 9.2719079, 48.7074798 8.3199480, 48.7386713 8.2896820, 48.7778355 8.1869501, 48.6456999 9.4144185, 48.8844951 8.2680861, 48.9590094 8.4066839, 49.1381543 9.6093247, 48.6491481 8.3326042, 48.6554113 8.2894004, 48.6879563 8.2301900, 48.7074212 8.2330668, 48.7132068 8.1470490, 48.7784092 8.1874412, 48.8734243 8.1508880, 47.7724018 8.0207021, 48.3743563 8.0257583, 48.5343596 7.9223391, 49.0370746 8.3124966, 48.7583042 9.1234566, 48.7468811 8.3019773, 49.0722747 9.2823707, 49.1585703 9.2916476, 47.6086108 9.5882404, 47.8505591 9.6398559, 49.2409505 8.8896780, 49.5458579 8.6284759, 48.4985741 9.1585090, 48.0811778 9.4497598, 48.2142025 9.0999390, 48.5469927 9.6418125, 48.4569517 7.9109849, 48.4999920 7.9558778, 48.5327154 7.9556963, 48.0592054 10.1387419, 48.0592098 10.1391537, 48.0702593 10.1387506, 48.0702882 10.1391449, 48.6148651 8.9415072, 48.0969837 10.1331788, 48.0970453 10.1335784, 48.1066856 10.1273087, 48.1084077 10.1248434, 48.6805662 8.7748231, 48.7984089 9.2595177, 47.7610670 8.8037000, 48.5016195 8.8470383, 48.5113291 10.0836131, 48.6613430 8.9970074, 48.8681111 9.1392799, 49.0585670 10.1757670, 49.2094830 9.6368000, 49.2147031 9.6143039, 49.2733589 8.6666298, 49.3763680 8.5460170, 49.3912580 9.4722350, 49.5086670 8.6555330, 49.5389680 9.5818630, 47.9940879 8.5899209, 47.9956209 8.5645447, 47.9959086 8.5645447, 47.9939755 8.5399688, 47.9587454 8.5182969, 47.9228405 8.5057249, 47.9977403 8.5298491, 47.9937431 8.5402147, 47.9938303 8.5900723, 48.9818800 9.5718630, 48.5460870 7.8906230, 48.5478963 7.8841324, 48.5584850 7.8601509, 48.5617709 7.9504028, 48.5629237 7.8546515, 48.5722846 8.2255376, 48.5760022 7.8292923, 48.5927521 7.8515502, 48.6055000 8.0325500, 48.6548090 8.0662569, 48.6606900 8.3591362, 48.6858580 8.1097150, 48.6916995 8.3591663, 48.7078830 8.3305170, 48.7093170 8.3642330, 48.7340793 8.3748358, 48.7537300 7.9730480, 48.7670670 8.3636330, 48.8069304 8.5273814, 48.8249429 8.1271170, 48.8328153 8.3659850, 48.9489909 8.3702649, 48.9574500 8.2972500, 48.9589170 8.2985830, 48.9791637 8.3244037, 48.9832531 8.3288457, 49.0187170 8.3479000, 49.0191830 8.3479500, 48.6402538 8.9301926, 48.9374320 8.3952437, 48.7308046 9.0893561, 48.2398830 7.7793830, 48.2579198 7.7929986, 48.2705952 7.8125847, 48.3110330 7.7605830, 48.3346474 7.8428322, 48.3554371 7.8002445, 48.3574902 7.8512044, 48.3734330 7.7886830, 48.3947330 7.8102000, 48.4001330 7.8933830, 48.4114480 7.7933680, 48.4274830 7.9020330, 48.4379830 7.9272000, 48.4479820 7.8659680, 48.4517717 7.8168926, 48.4725400 7.9013520, 48.4765210 7.8142310, 48.4938289 7.8211029, 48.4999694 7.9558417, 48.5229170 8.0998830, 48.5310170 7.9861170, 48.5326830 7.9557170, 48.5409774 8.0240442, 48.5472980 8.0623920, 48.5937204 9.3206755, 48.5534341 9.6559665, 49.0030851 8.4628615, 48.0379234 7.7293497, 49.0203975 9.0656401, 48.9982101 9.1453968, 48.9969555 9.1440267, 49.4054330 9.1869505, 47.9400659 7.6824225, 47.9538389 8.5278386, 47.9588767 8.5186162, 47.9615826 8.4506762, 47.9658830 7.7700330, 47.9659170 7.7697170, 47.9805750 7.7635273, 47.9837311 7.7849445, 47.9839613 7.7847717, 48.1808656 8.6361506, 48.1907686 8.0457454, 48.2058330 8.0877000, 48.2168499 8.0970402, 48.2176720 7.9314050, 48.2212720 7.9437941, 48.2277966 7.9140232, 48.2279955 8.1605839, 48.2286275 8.0059734, 48.2330439 8.1013160, 48.2345984 8.2036570, 48.2368736 7.9896524, 48.2379330 7.8932500, 48.2555480 8.0133480, 48.2570330 8.1073500, 48.2595670 8.3721896, 48.2824752 8.2062911, 48.2830000 8.1397000, 48.2832642 8.3506122, 48.2910322 8.0392709, 48.2910500 8.2665000, 48.2910563 8.2959909, 48.2989873 8.6414910, 48.3069678 8.0585182, 48.3217330 8.0348581, 48.3259330 8.4315500, 48.3281646 8.2181236, 48.3348301 8.0181870, 48.3449670 8.0203830, 48.3452000 8.0201670, 48.3565000 8.2588830, 48.3999726 8.0071964, 48.4097330 8.3233117, 48.4197850 8.1578400, 48.4420000 8.3969330, 48.4575500 8.2570000, 48.4801432 8.2004096, 48.4887676 8.1481384, 48.4950460 8.2558272, 48.5059500 8.2238170, 48.5417133 8.2768459, 48.5847800 8.2056130, 49.1472065 8.5623849, 47.5460330 7.7388520, 47.5734631 8.3349699, 47.5780500 7.8072330, 47.5902330 7.8354170, 47.6037668 8.4374549, 47.6291103 8.3256420, 47.6395883 8.3102169, 47.6487330 8.3510670, 47.7103170 7.5820170, 47.7156830 8.4265000, 47.7743576 7.5512018, 47.7856830 8.3940330, 47.7889668 7.7044398, 47.7945010 7.6870566, 47.7976329 7.5578769, 47.7990720 7.6587700, 47.8031743 8.3456957, 47.8202270 7.5699620, 47.8531180 7.6319320, 47.8959086 7.5981429, 47.9043730 7.7147870, 47.9684886 7.6570344, 47.9819830 7.6439330, 48.0003170 7.6259670, 48.0153000 7.6122000, 48.0295330 7.6006500, 48.0383170 7.6236500, 48.0529549 7.5922298, 48.0853000 7.6018000, 48.1190170 7.9090170, 48.1309711 7.8212053, 48.1418882 7.6721800, 48.1523158 7.6755834, 48.1573830 7.7826500, 48.4366870 9.3637130, 48.4843930 9.3248730, 48.4862109 9.3965814, 48.4927420 9.2875430, 48.6100953 9.7359647, 48.6951318 9.5087763, 48.7161433 9.3601088, 48.7161810 9.3576709, 48.7402794 9.3781920, 48.7404120 9.5855230, 48.7476500 9.8711170, 48.7645430 9.5672900, 48.7736200 9.2476950, 48.7846670 9.6227330, 48.7848670 9.6242670, 48.7862309 9.7367878, 48.7864261 9.7369502, 48.7933000 9.7032330, 48.7934830 9.7030170, 48.7935170 9.5878330, 48.7952701 9.6556446, 48.7953183 9.6551020, 48.8276648 9.3330095, 48.8278846 9.3333936, 48.8409670 9.0113670, 48.8533780 9.2663030, 48.8595726 9.3622839, 48.8599799 9.3622413, 48.8659437 9.4038197, 48.8712050 9.1966870, 48.8716730 9.1963800, 48.8833541 9.1287628, 48.9126230 9.2462520, 48.9290100 8.6802484, 48.9370704 9.4252807, 48.9525330 8.9154670, 48.9636942 9.3598270, 48.9843629 9.3467415, 48.9850789 8.6059223, 48.9859000 8.8367670, 48.9881036 8.7948533, 49.0055358 8.4869222, 49.0243380 8.7420570, 49.0328000 8.5161330, 49.0423170 8.3932500, 49.0477330 8.3660500, 49.0511915 8.6626662, 49.0526450 8.3678513, 49.0639830 8.3914830, 49.0676670 8.6572830, 49.0696330 8.4054500, 49.0736894 8.5432028, 49.0801735 8.4646877, 49.0898788 8.4106652, 49.1099500 8.5761000, 49.1188526 8.4295464, 49.1390191 8.5644378, 49.1446330 8.6017000, 49.1447000 8.6024670, 49.1471830 8.4521170, 49.1871170 8.6465000, 49.1883403 8.4824997, 49.1982637 8.4516222, 49.2252635 8.7409916, 49.2391719 8.7617558, 49.2605470 8.6672930, 49.2851107 8.5669430, 49.2872563 8.6813077, 49.2883000 8.7676670, 49.2924160 8.7275980, 49.3032000 8.6768250, 49.3184700 8.6317400, 49.3230700 8.7747870, 49.3268720 8.6810230, 49.3313570 8.6618150, 49.3413245 8.6058483, 49.3601020 8.6711250, 49.3605250 8.6625800, 49.3619019 8.5847515, 49.3767236 8.6475773, 49.4665850 8.7363180, 49.4794666 8.6257420, 49.4921330 8.5657500, 49.5217170 8.6551500, 49.5526830 8.6507000, 49.5811000 8.4476670, 49.5815830 8.4482670, 47.9975030 8.5302945, 48.0419830 8.4883500, 48.0655438 8.4682246, 48.0832569 8.5411148, 48.1414980 8.5064731, 48.1788732 8.5660799, 48.2979450 8.5315800, 48.3489548 8.4142438, 48.3594693 8.6192517, 48.3680170 8.6080830, 48.3719597 8.4119412, 48.4483983 8.6199163, 48.4488186 8.7789073, 48.4599670 8.6768170, 48.4600670 8.4376500, 48.4654330 8.4702000, 48.4767556 8.4196997, 48.4798170 8.6652000, 48.4815000 8.4845000, 48.4856296 8.6859055, 48.5001830 8.6501000, 48.5036330 8.4298830, 48.5189500 8.8445330, 48.5199080 8.4176270, 48.5279000 8.4291670, 48.5422670 8.6766170, 48.5514330 8.4943330, 48.5588530 8.5843280, 48.5727730 8.8587670, 48.5741670 8.5083670, 48.5869193 8.7971396, 48.5955670 8.8322100, 48.5967307 8.6276243, 48.5985650 8.5783820, 48.6117172 8.4540114, 48.6260580 8.4657700, 48.6436689 8.5086578, 48.6612100 8.5437920, 48.6719830 8.7399000, 48.6769480 8.7127580, 48.6909400 8.5662350, 48.7177394 8.5615051, 48.7387942 8.5777668, 48.7801768 8.6929798, 48.7834250 8.6750280, 48.7910500 8.7255670, 48.8183500 8.7933500, 48.8376330 8.6233330, 48.8551000 8.6176000, 47.6025173 8.0211622, 47.6072330 8.1101170, 47.6072670 8.1736000, 47.6225330 8.0891000, 47.6236000 7.9214330, 47.6319500 7.6580330, 47.6325000 7.6761830, 47.6325170 8.1838330, 47.6366393 8.0951706, 47.6383620 8.0061345, 47.6405485 7.7046519, 47.6411836 7.7459877, 47.6422670 7.8162000, 47.6439585 7.5866786, 47.6474914 7.8456108, 47.6476330 7.7744830, 47.6476566 7.8885845, 47.6486830 8.1771830, 47.6512830 7.9251330, 47.6522670 8.0618330, 47.6581670 7.5683830, 47.6589716 8.0132859, 47.6595081 7.8438563, 47.6798188 7.9498966, 47.6892000 8.1552000, 47.6949000 8.7174330, 47.7003000 8.0172170, 47.7094800 8.7450330, 47.7196330 8.0142072, 47.7197317 8.1309356, 47.7211170 7.9979670, 47.7337170 7.8800830, 47.7378500 8.7566830, 47.7392528 8.1453652, 47.7409085 8.1722459, 47.7438765 8.8121633, 47.7451098 7.9756753, 47.7470723 8.0454830, 47.7474375 8.0200677, 47.7518650 8.8245410, 47.7545000 7.8890670, 47.7823670 8.7153670, 47.7962703 8.8269564, 47.7969559 8.7077718, 47.7969970 8.8254450, 47.8104250 8.8047630, 47.8206670 8.0743330, 47.8320500 7.9601330, 47.8361047 8.3091044, 47.8585000 7.9980500, 47.8585655 8.2373324, 47.8652500 8.3247000, 47.8746280 8.1100880, 47.8838170 8.1648670, 47.8839607 8.1384720, 47.8930230 7.8914280, 47.8979600 8.1600950, 47.9037830 7.9315830, 47.9127421 7.8924294, 47.9147602 7.8819426, 47.9197651 7.9373184, 47.9394300 8.0942280, 47.9440670 8.2419330, 47.9613000 8.1525670, 47.9761170 8.2942500, 48.0007420 7.8133470, 48.0032570 7.8091950, 48.0033670 8.2013330, 48.0146741 8.3199163, 48.0171545 7.7925268, 48.0178376 7.7922795, 48.0248757 8.1911143, 48.0282000 7.8581330, 48.0388759 8.1744511, 48.0489830 7.8556500, 48.0516500 7.8610670, 48.0518000 7.8607830, 48.0528500 7.7567000, 48.0583797 8.5689081, 48.0612887 7.8153689, 48.0614000 7.8979830, 48.0618500 7.8998670, 48.0703369 7.7607759, 48.0746747 7.8638511, 48.0755000 7.9240170, 48.0757000 7.9237670, 48.0816330 8.5894170, 48.1008416 7.9803231, 48.1009146 7.9801326, 48.1072670 8.4146670, 48.1347394 8.2783178, 48.1365420 8.1655052, 48.1564486 8.4167406, 48.1716000 8.2331000, 48.1756407 8.3294208, 48.1874761 8.2305894, 48.1881755 8.3868434, 48.2045250 8.4048127, 48.2109879 8.3806724, 48.2206330 8.4636500, 47.6535728 9.7780530, 47.6609770 9.9400770, 47.6727500 9.8113000, 47.6765400 9.8811220, 47.6777384 9.9724308, 47.6810500 9.9977170, 47.7065880 9.9999900, 47.7114220 10.0463530, 47.7262570 9.9522280, 47.7339670 10.0705000, 47.7381050 9.9837170, 47.7483330 9.9446830, 47.7502221 10.0449374, 47.7602700 10.0664980, 47.7612500 10.1059000, 47.7692300 10.0759778, 47.7876800 10.0440630, 47.7973750 10.0155080, 47.8104070 10.0302900, 47.8402680 10.0163820, 47.8690770 10.0360320, 47.9072277 10.0912928, 47.9248500 10.1007330, 48.4818530 10.1460780, 48.5392170 10.1142170, 48.5599170 10.1930830, 48.5650160 10.1315784, 48.5794670 10.2886181, 48.6015500 10.2615500, 48.6082234 10.2224831, 48.6268170 10.1988670, 48.6377950 10.2335980, 48.6609538 10.3555752, 48.6951329 10.1999890, 48.7004420 10.2842080, 48.7048670 10.3085170, 48.7061170 10.3378330, 48.7162500 10.2483670, 48.7314077 10.3593375, 48.7337829 10.1376649, 48.7495622 10.2672746, 48.7552830 10.2922830, 48.7748200 10.2827520, 48.7925500 10.3695500, 48.8013072 10.2282570, 48.8047430 10.4094870, 48.8322283 10.3318884, 48.8692791 10.3752248, 48.8727150 10.2202680, 48.8776820 10.2482950, 48.8790723 10.1848694, 48.8868580 10.1579080, 48.8887180 10.3534489, 48.9224000 10.2033670, 48.9351780 10.2992230, 48.9377980 10.2703700, 48.9656130 10.3678550, 48.9669170 10.3121500, 48.9848666 10.3113511, 48.9935170 10.2055830, 49.0239939 10.3255613, 49.0365390 10.2420911, 47.8266170 8.9283030, 47.8508544 8.9244287, 47.7054970 8.9164600, 47.7515868 8.8952490, 47.8505130 8.8293850, 47.8793824 8.9081528, 47.8916420 8.9299220, 47.9165975 8.9592390, 47.6154703 9.7472023, 47.6276208 9.7270496, 47.6529085 9.5931250, 47.6571521 9.6746189, 47.6652741 9.4740318, 47.6653177 9.4809164, 47.6672414 9.5776997, 47.6893844 9.5829661, 47.6982546 9.7748372, 47.7042032 9.3522091, 47.7052670 9.7392330, 47.7159678 9.7294454, 47.7191703 9.2456166, 47.7234180 9.6982550, 47.7261237 9.8204563, 47.7492170 9.5977670, 47.7662027 9.7930424, 47.7681656 9.5881556, 47.7721511 9.2153960, 47.7762208 9.7103985, 47.7859140 9.2134539, 47.8057803 9.1224769, 47.8058731 9.1228683, 47.8183550 9.9931030, 47.8240826 9.0792325, 47.8242353 9.0793942, 47.8336198 9.0324971, 47.8357670 9.6851670, 47.8365670 9.0487670, 47.8368500 9.0486830, 47.8397081 9.9853248, 47.8418420 9.9482500, 47.8428500 9.0189330, 47.8493500 9.7224780, 47.8554220 9.9238170, 47.8582230 9.7700000, 47.8601170 9.7902330, 47.8679851 9.9965429, 47.8803330 9.7972170, 47.8936670 9.8445000, 47.9024500 9.9031330, 47.9153100 9.9309630, 47.9204500 9.9626000, 47.9309430 10.0046170, 47.9341592 10.0497777, 47.9644007 9.8181840, 47.9712904 9.9389160, 47.9927830 9.9216000, 47.9961170 9.8559330, 48.0049053 10.0620258, 48.0151500 9.9149830, 48.0349330 10.0093670, 48.0354500 9.7784830, 48.0357330 10.1194330, 48.0500330 10.0759330, 48.0521500 10.0434500, 48.0807830 9.8582000, 48.1494670 9.8993830, 48.2020850 10.0443470, 48.2147828 9.9928587, 48.2840214 9.9620452, 48.3133830 10.0200880, 48.4432820 10.0182750, 48.4920830 10.0780000, 47.7338312 9.4654942, 47.7582550 9.4920600, 47.7742670 9.5699500, 47.7831768 9.5384306, 47.7891117 9.5194814, 47.8237219 9.4824233, 47.8276500 9.3702670, 47.8759250 9.2850000, 47.8868830 9.4341670, 47.8872274 9.1739257, 47.9173420 9.3325700, 47.9499583 9.3376812, 47.9669670 9.3554830, 47.9919683 9.3282587, 48.0235500 9.3952000, 48.7133000 10.3790000, 48.7171830 8.8975670, 48.7330589 8.9369837, 48.7424186 8.9989272, 48.9464830 9.0523500, 48.9564670 9.0917500, 48.9647170 9.0318000, 48.9845670 9.0345500, 49.0040170 9.2270000, 49.0135870 9.1980800, 49.0397966 8.9751039, 49.0501830 9.1358170, 49.0662330 9.1594170, 49.0903500 9.0511000, 49.1079833 9.0159446, 49.1458660 8.8374268, 49.1576170 8.8850500, 49.1678850 8.9676800, 49.1774989 8.8770258, 49.1900450 8.8304750, 49.1909830 9.0434330, 49.1921699 9.2335363, 49.2064500 9.0278170, 49.2185500 9.2120000, 49.2717720 8.8962380, 49.2798500 9.2850000, 49.2927420 9.1203170, 49.3000830 8.9269830, 49.3068600 8.8907900, 49.3128074 9.3630219, 49.3197830 8.9624500, 49.3229770 9.4023730, 49.3310170 8.9414330, 49.3320750 9.2812150, 49.3340770 9.3363280, 49.3511522 9.2751628, 49.3571420 8.8612770, 49.3619020 8.9598370, 49.3664470 9.3032250, 49.3673600 8.9176050, 49.3978830 9.1575500, 49.4112170 9.0888000, 49.4112645 9.1087361, 49.4186470 8.9831350, 49.4241750 9.1029300, 49.4388100 8.9681070, 49.4518730 9.0302309, 49.4575175 9.3320036, 49.4581800 9.0702950, 49.4588670 8.9574330, 49.4667500 9.5066170, 49.4754731 9.1457066, 49.5225930 9.4097780, 49.5418130 9.3889400, 49.5606500 9.3834330, 49.5754830 9.6241500, 49.6056170 9.6433170, 49.6121352 9.5531347, 49.6143000 9.3200670, 49.6230500 9.6770670, 49.6301000 9.3239670, 49.6418972 9.7259377, 49.6575500 9.4308500, 49.6645000 9.5412830, 49.6931935 9.5973680, 49.6934170 9.5432500, 49.7008939 9.5792116, 49.7140902 9.4552649, 49.7243209 9.4319978, 49.7328450 9.6206830, 49.7372000 9.4628500, 49.7462524 9.5242110, 49.1787151 10.0695640, 49.1878670 9.9996330, 49.1968941 10.0641702, 49.2162170 9.9632670, 49.2215080 9.6782750, 49.2220900 9.5877470, 49.2331947 10.0431316, 49.2362670 9.9082330, 49.2386670 9.8286270, 49.2456620 9.6128480, 49.2498000 9.9531000, 49.2587284 10.0467105, 49.2630130 9.8110500, 49.2645500 9.8420170, 49.2656380 9.8889480, 49.2727327 9.9271674, 49.2772227 9.9133837, 49.2860530 9.9996120, 49.2925330 9.6736670, 49.3127280 9.9480500, 49.3158518 10.1292596, 49.3187330 9.7611330, 49.3265680 9.9862680, 49.3276670 10.0235670, 49.3315670 9.7116830, 49.3397950 10.0554730, 49.3404830 10.0182720, 49.3433750 9.7072870, 49.3465330 9.7253330, 49.3551430 9.9922030, 49.3561170 9.7860500, 49.3629500 10.0735170, 49.3642708 9.8038800, 49.3663000 9.7195830, 49.3736380 10.0303380, 49.3739170 9.7948000, 49.3889500 10.1385670, 49.3927920 9.8858550, 49.3949080 10.0950970, 49.3969500 9.9632230, 49.4340689 10.0441635, 49.4456850 9.8060850, 49.4535500 9.7620830, 49.4842500 10.0197830, 49.4853954 9.7466260, 49.4863330 9.7131500, 49.5123330 9.6952000, 49.5173400 10.0746330, 49.5800975 9.7094230, 49.0209154 9.4581133, 49.0216544 9.4132149, 49.0474330 9.4436330, 49.0696150 9.5349420, 49.0974565 9.8287401, 49.1019970 10.1918130, 49.1153330 10.0845000, 49.1200580 9.5472600, 49.1229420 10.1203550, 49.1376730 9.7859420, 49.1420570 10.0886180, 49.1452500 9.4288170, 49.1490170 9.9776670, 49.1499170 9.7990150, 49.1543330 10.0759670, 49.1560800 10.1290420, 49.1567218 9.5413931, 49.1595670 9.9602830, 49.1684350 9.8765780, 49.1690170 9.9394330, 49.1758720 9.6268250, 49.1772030 9.7103720, 49.1961430 9.6901650, 49.2165133 9.4572817, 49.2275528 9.4255677, 49.2653111 9.4540030, 49.2684020 9.5065730, 49.2777970 9.5539880, 49.2856170 9.5089000, 49.3297830 9.5799170, 49.3451670 9.5550670, 49.3565970 9.5073730, 49.3642000 9.6785170, 49.3670170 9.6112830, 49.3982920 9.5330370, 49.4072330 9.5908830, 49.4103996 9.6556100, 49.4268950 9.6564770, 49.4276230 9.7501720, 49.4414500 9.7197170, 49.4532080 9.6440500, 49.4599720 9.6094980, 48.4883670 9.9312500, 48.5019313 9.9195983, 48.5056550 9.9879070, 48.5175208 9.8922673, 48.5293670 9.8096170, 48.5328330 9.9883000, 48.5548330 9.9853000, 48.5551330 9.8634830, 48.5660330 9.9504670, 48.5708500 9.7934000, 48.5717825 9.8814045, 48.5954299 10.0300891, 48.5970500 9.8501330, 48.6121000 10.0256830, 48.6319500 9.8867670, 48.6433830 9.9263170, 48.6678830 10.0359830, 48.6704330 10.0080170, 48.6731000 10.0688330, 48.6929000 10.0792830, 48.7859029 10.1231628, 48.7936550 10.0019380, 48.8224080 10.0008370, 48.9032870 10.1520530, 48.9056045 10.1751184, 48.9236830 10.1451170, 48.9427280 10.1314750, 48.9732630 10.1604530, 48.9930509 10.1010553, 49.0005313 10.0555011, 49.0257000 9.9917670, 49.0291330 9.6492170, 49.0474900 9.6274570, 49.0476054 9.7075314, 49.0527343 10.1189876, 49.0685350 9.9413520, 49.0721330 10.0067500, 49.0736670 9.9757670, 49.0803900 9.5865580, 49.0877504 9.9395821, 49.0958830 9.6557670, 49.0971170 10.0026500, 49.1126824 9.6575256, 48.8069330 9.8571330, 48.8193370 9.8822770, 48.8417670 9.7408170, 48.8483670 9.9118830, 48.8498000 9.7755500, 48.8564670 9.5792830, 48.8584220 9.6018050, 48.8599670 9.7252830, 48.8617070 10.0746220, 48.8686701 10.1089465, 48.8812030 10.0927180, 48.8918230 9.9685270, 48.8945670 9.6584330, 48.8956900 10.0485670, 48.8964500 9.4983330, 48.9013420 9.8888980, 48.9046830 9.9893330, 48.9083100 9.9388220, 48.9100180 10.0246300, 48.9115600 9.9097870, 48.9144830 9.8215800, 48.9151500 9.7298000, 48.9197780 10.0488520, 48.9251730 9.4545750, 48.9315647 9.7103285, 48.9382650 9.6637730, 48.9400330 9.7735000, 48.9468670 9.6254670, 48.9483000 9.7038500, 48.9711330 9.6316330, 48.9860170 9.6796170, 48.3640420 9.2547142, 48.3729020 9.1215530, 48.3858370 9.7108180, 48.3866820 8.9954520, 48.3871530 8.9961650, 48.3875680 9.8047100, 48.3882055 9.7643443, 48.3886670 9.8709830, 48.4008530 9.2390230, 48.4015670 9.8266670, 48.4055830 9.6513830, 48.4080080 9.0812630, 48.4108080 9.8459180, 48.4235720 9.2088030, 48.4341180 9.9210330, 48.4369420 9.8439420, 48.4517230 9.7655030, 48.4554103 9.7070077, 48.4591007 9.6639741, 48.4634301 9.6757964, 48.4649770 9.7506770, 48.4682830 9.6936000, 48.4844830 9.5523830, 48.4885500 9.5826170, 48.4887170 8.9344170, 48.4936670 9.7131170, 48.5002500 9.7394670, 48.5132300 9.7781020, 48.5132670 9.5611670, 48.5146594 9.4494508, 48.5180170 9.6092500, 48.5222730 9.5825870, 48.5292462 9.5273046, 48.5315795 8.9664734, 48.5342064 9.4912327, 48.5917436 9.1069271, 48.5929350 9.1473970, 48.6090970 9.0469600, 48.6147400 9.0249230, 48.6173167 9.2876041, 48.6519206 9.0876697, 49.1590514 9.2872506, 47.6004000 7.7026000, 47.8857746 8.9756074, 47.8859270 8.8120630, 47.9005330 8.7022170, 47.9259068 8.7465911, 47.9360391 8.8557505, 47.9363370 8.9431200, 47.9383770 8.7454120, 47.9434700 8.9007300, 47.9471148 8.9427032, 47.9511030 8.7555370, 47.9513942 8.8627546, 47.9940670 8.9319330, 48.0156039 8.7755863, 48.0202524 8.8823347, 48.0435972 8.8926365, 48.0956526 8.7169068, 48.1121364 8.6948230, 48.1321080 8.6641068, 48.1588000 8.7110330, 48.1708000 8.9380170, 48.1861848 8.7351214, 48.2031500 8.7191330, 48.2166830 9.0529830, 48.2184670 8.8526000, 48.2268170 8.7849670, 48.2269500 9.2281500, 48.2315820 8.8503870, 48.2316830 8.8983500, 48.2348330 9.4363330, 48.2366300 9.0936910, 48.2377129 9.2647553, 48.2482670 8.8143330, 48.2521630 9.5333080, 48.2545830 9.2806470, 48.2618170 8.8483330, 48.2624500 8.8491670, 48.2645924 9.4534662, 48.2890670 9.1443170, 48.2935050 8.7774530, 48.2968330 9.0724330, 48.2977320 9.4559280, 48.2980330 9.3411830, 48.3004930 8.6632320, 48.3191670 8.7275170, 48.3192570 8.8619130, 48.3202495 9.1575336, 48.3221548 8.6832986, 48.3253900 9.3276830, 48.3380293 9.5738981, 48.3402778 8.6697672, 48.3427003 9.1847867, 48.3438150 8.7354430, 48.3678330 9.5323830, 48.3735000 8.7590170, 48.3773670 8.8483880, 48.3958200 8.7827980, 48.1996780 7.7459371, 47.9442830 9.2346500, 47.9459330 9.2654670, 47.9791000 9.2311000, 47.9994465 9.2366250, 48.0040234 9.1560241, 48.0206670 9.1069170, 48.0273000 9.0867670, 48.0297500 8.9506000, 48.0383670 9.4640500, 48.0426522 9.0529168, 48.0548612 9.3493067, 48.0556670 8.9803330, 48.0570670 9.3151000, 48.0655099 9.2252456, 48.0774743 9.5119507, 48.0792731 9.1893146, 48.0793077 9.1210433, 48.0797670 9.1512330, 48.0895670 9.0680500, 48.0926870 9.5460400, 48.0946416 9.0253685, 48.1081000 9.2067000, 48.1159143 9.7442412, 48.1162330 9.6918000, 48.1197820 9.3193920, 48.1218840 8.9885167, 48.1288442 9.4713802, 48.1401830 9.6421170, 48.1467000 9.1463000, 48.1524508 9.4951230, 48.1530430 9.3367870, 48.1682830 9.1281000, 48.1751097 9.3078235, 48.1772170 9.2316830, 48.1809500 9.2115500, 48.1840500 9.2739330, 48.1871000 9.0911170, 48.1879084 9.1773210, 48.1880830 9.1356670, 48.1980170 9.1174500, 48.1985500 9.5314170, 48.1995033 9.4914311, 48.2161170 9.5366830, 48.2176000 9.6519000, 48.2459700 9.6135500, 48.2566670 9.5915500, 48.2714750 9.5875450, 47.8397070 9.5787300, 47.8797170 9.5754330, 47.8836330 9.6383170, 47.9080533 9.5632333, 47.9137141 9.6474407, 47.9271330 9.6767330, 47.9276670 9.5353170, 47.9419000 9.7125830, 47.9430800 9.4731180, 47.9453130 9.5467820, 47.9464500 9.5999900, 47.9537670 9.5204170, 47.9609519 9.6036727, 47.9650330 9.6812500, 47.9773330 9.4319170, 47.9875120 9.7792211, 47.9894000 9.5158000, 47.9967100 9.4783820, 47.9991446 9.5484658, 48.0237000 9.6468000, 48.0253170 9.6938330, 48.0440521 9.7334064, 48.0454207 9.6262701, 48.0607000 9.5890170, 48.0890170 9.8227830, 48.0959597 9.8282842, 48.1458830 9.8318670, 48.1467330 9.8320330, 48.1642170 9.8586330, 48.1643000 9.8582830, 48.1862500 9.8699500, 48.1976830 9.8722000, 48.2059890 8.5364458, 48.2114330 9.8789170, 48.2304000 9.8672000, 48.2369900 9.7501380, 48.2395000 9.8732000, 48.2435830 9.7944320, 48.2564000 9.9017830, 48.2700050 9.7803130, 48.2732370 9.6844370, 48.2812500 9.9157170, 48.2818830 9.9157830, 48.2827750 9.7514620, 48.2910930 9.8000520, 48.2943000 9.7321000, 48.2946320 9.9222650, 48.2950280 9.9220980, 48.3028680 9.6901430, 48.3127420 9.8624170, 48.3154130 9.9259670, 48.3184420 9.9287570, 48.3240500 9.7299500, 48.3445420 9.9513000, 48.3473950 9.9536670, 48.3486980 9.7875920, 48.3494850 9.7141070, 48.3528450 9.9189100, 48.3605330 9.9637680, 48.3671853 9.9410047, 47.6715330 8.1580000, 47.8037330 8.5259170, 47.8153683 8.5324025, 47.8168348 8.5728117, 47.8169830 8.5608330, 47.8247750 8.6352700, 47.8301098 9.6137542, 47.8485500 8.5738170, 47.8620330 8.6291500, 47.8653700 8.7751820, 47.9045330 8.6734830, 47.9168900 8.6348980, 47.9730000 7.9490680, 47.9901700 8.7344070, 48.0756683 8.4923576, 48.0869894 8.5899962, 48.7122837 9.4044395, 48.8339500 8.8704780, 48.8405480 9.1604220, 48.8656689 10.1073633, 48.9597741 9.6418802, 48.9670000 9.8265170, 47.8851016 10.0405843, 47.7527287 9.9064274, 48.6993800 9.6425167, 49.3542656 9.1037485, 48.7636630 9.1698862, 49.4060911 9.2520921, 49.5475739 8.6743037, 49.5491434 8.6737980, 48.7837874 9.2334093, 48.7886039 9.2237877, 48.7928365 9.2176067, 48.7974690 9.2131843, 49.4702609 8.5115350, 49.4281658 9.4267079, 48.0522907 8.2062352, 48.8100521 9.1499136, 49.7439151 9.5589060, 48.7486330 9.1682769, 48.8264999 9.2091583, 48.8308063 9.3219963, 48.9430187 8.3660857, 48.9431328 8.3655939, 48.8244955 8.2075570, 48.8356102 8.2236478, 48.8357875 8.2232148, 48.8652450 8.2485294, 48.8093502 8.1833565, 48.7386040 8.1153999, 48.7386928 8.1160895, 48.7534464 8.1298274, 48.7645851 8.1376317, 48.7747067 8.1438554, 48.7868830 8.1531499, 49.3886195 8.5856266, 49.3909552 8.5818014, 49.4458495 9.0040694, 49.4386947 8.8995958, 48.9974096 8.4856216, 48.9974443 8.4856756, 49.4647920 8.9725475, 48.8261898 9.3037368, 47.6811021 9.9977945, 48.7478387 9.2078880, 48.7784464 9.1778161, 48.9083491 9.1834889, 47.9098730 7.5900636, 48.4623549 9.9269456, 48.4621257 9.9264800, 48.4696794 9.9037837, 49.2347850 9.0786324, 48.7515723 9.1890861, 48.6968449 9.1425551, 48.7548644 9.1747974, 48.7935238 9.2185622, 48.7959018 9.2162765, 48.7413541 9.2185881, 48.4465865 9.4558156, 48.4111046 9.4979143, 49.3334014 8.5097343, 49.0105041 8.4146360, 49.0136283 8.4193128, 49.0137164 8.4162490, 49.4128823 8.5434598, 49.0109913 8.4155885, 49.2427424 8.8803727 +48.8790173 2.3543851, 48.8783323 2.3732739, 48.8882750 2.3740777, 48.8773675 2.4068219, 48.8649034 2.3999667, 48.8766834 2.4067529, 48.8758486 2.3562046, 48.8742769 2.3568951, 48.8757672 2.3581886, 48.8648183 2.3992191 +49.4194799 8.7033812, 49.4258222 8.7062319, 49.4289782 8.7145993, 49.4299579 8.7185898, 49.3551484 8.6336513, 49.4270542 8.7105990, 49.4184666 8.7052069, 49.4245168 8.7056416, 49.4235710 8.7025718, 49.4242799 8.7072520, 49.4224817 8.7024542, 49.4229479 8.7068545, 49.4193290 8.7035781, 49.4221380 8.7051571, 49.4263381 8.7055314, 49.4188706 8.7007961, 49.4276600 8.7101416, 49.4243184 8.7025688, 49.4189138 8.7068425, 49.4254814 8.7024102, 49.4213140 8.7019771, 49.4268509 8.7026924, 49.4254256 8.7051858, 49.4195009 8.7025277, 49.4201952 8.7010712, 49.4208217 8.7059731, 49.4233178 8.7053934, 49.4276906 8.7058352, 49.4238991 8.7095045, 49.4206459 8.7039110, 49.4265814 8.7086544, 49.4256259 8.7093622, 49.4257275 8.7070484, 49.4179403 8.7025717, 49.4207145 8.7089359, 49.4222472 8.7095805, 49.4248984 8.7025175 +55.9384166 -3.2182340, 55.9612219 -3.2575527, 55.9450101 -3.1858398, 55.9018738 -3.4984923, 55.9301377 -3.1678364, 55.9721869 -3.1751900, 55.9605648 -3.1852708 +55.9242691 -3.2516299, 55.9453312 -3.3667171, 55.9482698 -3.1839334, 55.9029993 -3.1537668, 55.9456290 -3.3653235, 55.9140021 -3.2849920 +La bobine de fil, Fresque du Demi-Millénaire - Part 2, Fresque Musée T.Garnier 18 - Quartier des Etats-Unis, habitations en commun, Fresque Histoire des transports Lyonnais, Fresque "Lyon, la santé, la vie", Le mur du cinéma, La Fresque Lumineuse - La ville dans le futur, Fresque Musée T.Garnier 4 - Une Cité Industrielle, Fresque de Shangaï, Le Théâtre des Charpennes, Fresque Musée T.Garnier 17 - Abattoirs de la Mouche, Fresque Musée T.Garnier 1 - Annonce Musée, Fresque Musée T.Garnier 3 - Années 1900, Fresque Musée T.Garnier 19 - Cité idéale d'Egypte, Fresque Musée T.Garnier 23 - Cité idéale de Russie, Fresque Musée T.Garnier 20 - Cité idéale de l'Inde, Fresque Musée T.Garnier 22 - Cité idéale de la Côte d'Ivoire, Fresque Musée T.Garnier 24 - Cité Idéale des USA, Fresque Musée T.Garnier 21 - Cité idéale du Mexique, Fresque Musée T.Garnier 10 - Ecole, Fresque Musée T.Garnier 9 - Habitations, terrasse, Fresque Musée T.Garnier 12 - Etablissements sanitaires, Fresque Musée T.Garnier 7 - Habitations, ensemble citadin, Fresque Musée T.Garnier 8 - Habitations, vue rapprochée, Fresque Musée T.Garnier 16 - Hôpital de Grange-Blanche, Fresque Musée T.Garnier 6 - La Gare, Fresque Musée T.Garnier 11 - La tour d'horloges, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Mur peint : La tour de Babel du futur, Fresque Musée T.Garnier 15 - Stade de Gerland, Fresque Musée T.Garnier 14 - Les hauts fourneaux, Fresque Musée T.Garnier 5 - Les Services Publics, Fresque Musée T.Garnier 2 - Tony Garnier Visionnaire, Fresque Musée T.Garnier 13 - Vue des usines, Fresque Musée T.Garnier 22 - Cité idéale de la Côte d'Ivoire, annexe, Rue des grands chefs - Restaurant Paul Bocuse, Paul Bocuse - Restaurant Paul Bocuse, Fresque "Montluc - Jean Moulin", Fresque "Art et Industrie", Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, Fresque du Demi-Millénaire - Part 2, La Fresque du Demi-Millenaire - Part 1, Fresque La Dombes, Fresque de Meyzieu, Fresque des Fourchettes, Fresque idéale de Québec, Charlie Chaplin Bubbles, Mur peint : L’auberge savoyarde, La Fresque du Foyer, La Fresque Art Déco, Fresque RTE Lyon La Mouche, Fresque Source Cachée Arbre Sacré, Fresque Ancienne gare de Meyzieu, Fresque "Chez Jeanne", Fresque "Allée Arborée", Fresque "La Forge", Fresque "Les Diligences", Fresque "Les Vieux Métiers 1", Fresque "Les Vieux Métiers 2", La Fresque du Centenaire 1912-2012, La Fresque du Centenaire 1912-2012, Fresque "Gerland Biotechnologies", Poster en facade gratte ciel, Fresque des Roses - St Priest, Fresque des Roses - Lyon, Av Santy, Fresque Agir pour la biodiversité, Fresque aerosol, Fresque Lycée Ampere Saxe, Fresque du Stade Municipal, Fresque Le marathon de l'impossible, Fresque des noirettes "Le Mur du Soleil", Fresque des noirettes "Le Mur de la Cascade", Fresque des Roses - Lyon 8ème mairie, Fresque des roses - Venissieux (plan1), Fresque des roses - Venissieux (plan2), Fresque "File le temps... reste les canuts", Fresque DeKover, Fresque "Thank You Monsieur Paul" (Bocuse), Fresque "Le Jardin d'en Face", Fresque Espace Diego Rivera and 45.7615378 4.9252989, 45.7242776 4.8539418, 45.7316295 4.8668787, 45.7484993 4.8788479, 45.7498654 4.8759864, 45.7549115 4.8434004, 45.7433556 4.8405258, 45.7326668 4.8630359, 45.7375747 4.8616255, 45.7725199 4.8663498, 45.7321697 4.8664580, 45.7336465 4.8632348, 45.7328203 4.8629032, 45.7320947 4.8674966, 45.7330177 4.8657973, 45.7324535 4.8672057, 45.7331360 4.8666865, 45.7335600 4.8653728, 45.7325955 4.8671070, 45.7319545 4.8635870, 45.7321249 4.8634546, 45.7316965 4.8647521, 45.7323801 4.8642213, 45.7322374 4.8643323, 45.7323075 4.8663529, 45.7329498 4.8637779, 45.7314132 4.8640073, 45.7385048 4.8613236, 45.7387649 4.8607244, 45.7389336 4.8609359, 45.7328475 4.8659300, 45.7310051 4.8652929, 45.7331061 4.8636557, 45.7333891 4.8624614, 45.7315452 4.8648710, 45.7332067 4.8666311, 45.8155738 4.8472165, 45.8156435 4.8475277, 45.7493533 4.8609118, 45.6634167 4.8424264, 45.7209120 4.8541671, 45.7235048 4.8539594, 45.7222175 4.8540626, 45.7227953 4.8540163, 45.7249510 4.8538288, 45.8202824 4.8705136, 45.7664155 5.0049470, 45.7704495 4.8643856, 45.7342924 4.8626980, 45.7745993 4.8606941, 45.7450213 4.8660796, 45.7502318 4.8416469, 45.7513725 4.8390037, 45.7205996 4.8439283, 45.7697129 4.9524500, 45.7714030 5.0001735, 45.7318628 4.9995743, 45.7316843 5.0009960, 45.7317208 4.9997166, 45.7322290 4.9975134, 45.7340142 4.9964253, 45.7337846 4.9972670, 45.7449245 4.8424444, 45.7452687 4.8413678, 45.7252956 4.8413865, 45.7680770 4.8801051, 45.6946293 4.9406443, 45.7296178 4.8752517, 45.7463509 4.8459884, 45.7297744 4.8742560, 45.7551709 4.8469660, 45.8684698 4.8394062, 45.7434934 4.8478974, 45.7447945 4.9069783, 45.7860525 4.9123035, 45.7871070 4.9124765, 45.7347800 4.8728560, 45.7005717 4.8870852, 45.7008842 4.8871881, 45.7805415 4.8361690, 45.7132220 4.9185192, 45.7637878 4.8505854, 45.7722055 4.8638274, 45.7318449 4.8358676 +48.8507240 2.3518758, 48.8660977 2.3554138, 48.8643016 2.3480523, 48.8662844 2.3817490, 48.8957518 2.3879761, 48.8547934 2.3662431, 48.8551205 2.3589562, 48.8695018 2.3546892, 48.8957352 2.3886935, 48.8616153 2.3542965, 48.8705899 2.3500828, 48.8411575 2.3473052, 48.8327663 2.3893382, 48.8513494 2.3555880, 48.8536113 2.3476422, 48.8495079 2.3483856, 48.8585526 2.3597161, 48.8533658 2.3493036, 48.8526313 2.3500601, 48.8603240 2.3522598, 48.8960350 2.3884154, 48.8405179 2.3703276, 48.8465117 2.3551571, 48.8762675 2.3826909, 48.8435231 2.3731854, 48.8961521 2.3880996, 48.8418109 2.3577568, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8474726 2.3606487, 48.8546351 2.3638127, 48.8614029 2.3519903, 48.8590015 2.3547571, 48.8505164 2.3621847, 48.8612650 2.3554176, 48.8601858 2.3588061, 48.8590543 2.3618044, 48.8598775 2.3620895, 48.8581216 2.3616628, 48.8352761 2.4093810, 48.8586563 2.3821295, 48.8370020 2.3826461, 48.8421181 2.3562419, 48.8548859 2.3560679, 48.8612559 2.3587824, 48.8344502 2.3520875, 48.8582260 2.3619639, 48.8530932 2.3611938, 48.8576820 2.3627148 +565 +49.4189644 8.6822373, 49.4227392 8.5971994, 49.4313284 8.6416542, 49.4216061 8.6481916, 49.4014041 8.6551906, 49.3743420 8.6581351 +48.8337601 2.2980718, 48.8309772 2.2928903, 48.8339410 2.2950323, 48.8349198 2.2959694, 48.8381491 2.2812684, 48.8811210 2.3732246, 48.8779567 2.3742972, 48.8781153 2.3727187, 48.8307104 2.3120538, 48.8367030 2.2977655, 48.8405834 2.2993396, 48.8463258 2.3017109, 48.8893424 2.3260066, 48.8300397 2.3310990, 48.8332151 2.3611684, 48.8322056 2.3591376, 48.8712479 2.3628847, 48.8778514 2.3653978, 48.8630548 2.3794488, 48.8563588 2.4021369, 48.8705460 2.3596280, 48.8297820 2.3231434, 48.8563936 2.4058269, 48.8560853 2.4051449, 48.8637600 2.3817121, 48.8316269 2.3219796, 48.8635138 2.4091631, 48.8518271 2.4017627, 48.8615562 2.3741703, 48.8602485 2.3756498, 48.8505112 2.3734697, 48.8460708 2.3737179, 48.8496820 2.3740608, 48.8490800 2.3750090, 48.8490486 2.3705522, 48.8551656 2.3600991, 48.8459906 2.3763165, 48.8474342 2.3715019, 48.8468588 2.3691970, 48.8935171 2.3255232, 48.8909446 2.3815154, 48.8472820 2.3181790, 48.8362003 2.3593757, 48.8863875 2.3186958, 48.8493049 2.3780822, 48.8493772 2.3775082, 48.8520216 2.4013947, 48.8521964 2.4026633, 48.8466612 2.3868559, 48.8475216 2.3868219, 48.8524174 2.3830770, 48.8538323 2.3820004, 48.8503861 2.3796236, 48.8495310 2.3784411, 48.8455990 2.3806300, 48.8507593 2.3788216, 48.8481410 2.3804390, 48.8824976 2.3152932, 48.8941514 2.3276397, 48.8332886 2.3557244, 48.8373701 2.2969471, 48.8662691 2.4059876, 48.8646392 2.4080329, 48.8651930 2.4052170, 48.8829824 2.3824508, 48.8541148 2.4028833, 48.8279466 2.3304154, 48.8619444 2.3516288, 48.8611025 2.3441314, 48.8500286 2.2891336, 48.8765487 2.3769364, 48.8752389 2.3825154, 48.8701254 2.3349018, 48.8773883 2.3713487, 48.8522925 2.3568330, 48.8443535 2.3549714, 48.8465773 2.3541793, 48.8618685 2.3509784, 48.8576627 2.3525871, 48.8587248 2.3501786, 48.8462572 2.3519644, 48.8637215 2.3528934, 48.8572474 2.3590633, 48.8267666 2.3510620, 48.8257746 2.3474534, 48.8526580 2.3643423, 48.8658845 2.3575167, 48.8641612 2.3652384, 48.8885578 2.3534711, 48.8616550 2.3823490, 48.8405164 2.3219841, 48.8804129 2.3352691, 48.8794749 2.3336267, 48.8810172 2.3647737, 48.8814252 2.3658018, 48.8764651 2.3681085, 48.8383449 2.3457194, 48.8344303 2.3140331, 48.8620790 2.4013394, 48.8946928 2.3825532, 48.8943501 2.3144067, 48.8469243 2.3314911, 48.8721203 2.3123396, 48.8726364 2.3241496, 48.8517936 2.3135511, 48.8728715 2.3098614, 48.8466215 2.4086336, 48.8377558 2.3541054, 48.8386808 2.3508887, 48.8827594 2.3615206, 48.8830373 2.3593122, 48.8699837 2.3960859, 48.8791074 2.3629723, 48.8782374 2.3646053, 48.8825669 2.3666870, 48.8197848 2.3652117, 48.8448730 2.4055932, 48.8784075 2.3544102, 48.8410084 2.3943815, 48.8805633 2.3647086, 48.8796707 2.3636682, 48.8763896 2.3610152, 48.8803326 2.3639778, 48.8832959 2.3681138, 48.8859862 2.3714699, 48.8650067 2.2919269, 48.8374206 2.2895464, 48.8252367 2.3572513, 48.8671109 2.2875572, 48.8362585 2.3098681, 48.8705792 2.2974324, 48.8503715 2.3790699, 48.8681484 2.2814134, 48.8662633 2.2740207, 48.8412244 2.3146196, 48.8416926 2.3144950, 48.8739761 2.3446348, 48.8525869 2.3545810, 48.8869795 2.3395686, 48.8556968 2.2748636, 48.8374709 2.3730609, 48.8314755 2.3541835, 48.8241809 2.3260188, 48.8232738 2.3262563, 48.8258667 2.3126560, 48.8468751 2.2700239, 48.8277034 2.3290464, 48.8714383 2.3749525, 48.8714917 2.3756604, 48.8425873 2.2683262, 48.8861537 2.3665372, 48.8291397 2.3173468, 48.8862628 2.3608446, 48.8899894 2.3635134, 48.8403968 2.2858802, 48.8451889 2.3793340, 48.8546996 2.3622532, 48.8873315 2.3475211, 48.8757382 2.2870119, 48.8427628 2.3131898, 48.8846035 2.3801294, 48.8287227 2.2733061, 48.8966837 2.3303844, 48.8957156 2.3308196, 48.8416043 2.3385745, 48.8282746 2.3160906, 48.8276845 2.3152274, 48.8472109 2.2956749, 48.8505880 2.3767286, 48.8573622 2.3923455, 48.8528949 2.2984341, 48.8451099 2.2604585, 48.8234260 2.3622734, 48.8237538 2.3645279, 48.8795652 2.3399721, 48.8782649 2.3446579, 48.8416777 2.3865802, 48.8356662 2.4056140, 48.8384665 2.3992857, 48.8390505 2.3976576, 48.8367225 2.4026707, 48.8420538 2.3352669, 48.8479330 2.3109984, 48.8400158 2.3885455, 48.8380676 2.3904670, 48.8372920 2.3914250, 48.8515655 2.3106825, 48.8573206 2.3799070, 48.8568774 2.3778976, 48.8433099 2.2998521, 48.8422686 2.3028212, 48.8428121 2.3029849, 48.8766295 2.3386068, 48.8232376 2.3241574, 48.8252485 2.3653047, 48.8235509 2.3617468, 48.8604658 2.3787761, 48.8941854 2.3817753, 48.8567231 2.3036505, 48.8316207 2.3444925, 48.8310738 2.3450997, 48.8448253 2.2941187, 48.8219529 2.3664594, 48.8241488 2.3575845, 48.8231660 2.3578863, 48.8264536 2.3293804, 48.8455409 2.2880176, 48.8703798 2.3425078, 48.8815370 2.2890680, 48.8814465 2.2860544, 48.8840798 2.2887768, 48.8642750 2.3750973, 48.8844394 2.3668122, 48.8279465 2.3273604, 48.8906856 2.3765193, 48.8328694 2.3159681, 48.8209152 2.3429194, 48.8217284 2.3424285, 48.8358292 2.2784139, 48.8465347 2.4059784, 48.8771396 2.3394367, 48.8777030 2.3395918, 48.8627753 2.2762117, 48.8627898 2.2765008, 48.8314375 2.3197845, 48.8378234 2.3078140, 48.8661247 2.3355594, 48.8767239 2.3326961, 48.8767816 2.3351954, 48.8747442 2.3555041, 48.8835914 2.3739721, 48.8649591 2.3745731, 48.8515852 2.2976307, 48.8695595 2.3743475, 48.8540049 2.4108468, 48.8580410 2.3902005, 48.8383400 2.3560643, 48.8466480 2.3513950, 48.8491900 2.3494261, 48.8286796 2.3431375, 48.8727447 2.3797878, 48.8942604 2.3207728, 48.8945332 2.3199871, 48.8934902 2.3226995, 48.8243403 2.3236549, 48.8273521 2.3254454, 48.8236051 2.3228034, 48.8314118 2.3268159, 48.8317243 2.3255633, 48.8731006 2.3615331, 48.8902931 2.3539796, 48.8912086 2.3476028, 48.8286520 2.3729316, 48.8443510 2.3492066, 48.8448929 2.3490511, 48.8947631 2.3433837, 48.8944528 2.3445585, 48.8931760 2.3432750, 48.8936140 2.3424950, 48.8699780 2.3603139, 48.8692880 2.3632193, 48.8689493 2.3599577, 48.8711600 2.3611170, 48.8718330 2.3625680, 48.8726030 2.3634490, 48.8551457 2.3064362, 48.8682200 2.3862795, 48.8569251 2.3724871, 48.8927820 2.3439810, 48.8652385 2.3467947, 48.8923110 2.3520290, 48.8442018 2.3394106, 48.8289915 2.3222506, 48.8593204 2.3472769, 48.8262063 2.3413104, 48.8847970 2.3378803, 48.8528514 2.4064283, 48.8481389 2.4033143, 48.8285586 2.3331113, 48.8276535 2.3328559, 48.8513913 2.4064501, 48.8547850 2.2692675, 48.8651423 2.2891208, 48.8591269 2.4019235, 48.8600304 2.4040296, 48.8511503 2.3968083, 48.8863207 2.3474156, 48.8955331 2.3629901, 48.8528677 2.3768769, 48.8510010 2.3768139, 48.8507078 2.3790297, 48.8361116 2.3874192, 48.8235068 2.3533933, 48.8403649 2.3951878, 48.8907372 2.3457644, 48.8873419 2.3512141, 48.8376955 2.3463172, 48.8846893 2.3539417, 48.8416560 2.3224928, 48.8238291 2.3416075, 48.8577497 2.2739837, 48.8780261 2.3268365, 48.8398765 2.2998351, 48.8816987 2.3281627, 48.8808802 2.3287802, 48.8360217 2.3527252, 48.8354391 2.3483666, 48.8498251 2.2722599, 48.8504305 2.2704038, 48.8528838 2.2756127, 48.8452361 2.4025749, 48.8805451 2.2927512, 48.8810529 2.2917751, 48.8872955 2.3492014, 48.8870451 2.3535780, 48.8825453 2.3671700, 48.8245631 2.3765135, 48.8813157 2.2953299, 48.8898589 2.3421554, 48.8906741 2.3434068, 48.8298993 2.3526634, 48.8281786 2.3525387, 48.8883534 2.3187513, 48.8890835 2.3224688, 48.8882779 2.2997302, 48.8939893 2.3329500, 48.8935546 2.3361391, 48.8947140 2.3351360, 48.8972639 2.3451996, 48.8979108 2.3340735, 48.8958814 2.3435581, 48.8912647 2.3345914, 48.8932962 2.3379872, 48.8493216 2.4063155, 48.8980433 2.3287001, 48.8979878 2.3377495, 48.8934867 2.3300359, 48.8928448 2.3280564, 48.8939770 2.3281101, 48.8942097 2.3280510, 48.8966030 2.3288474, 48.8932297 2.3269691, 48.8352792 2.2890637, 48.8220563 2.3588648, 48.8911761 2.3392139, 48.8499872 2.3478618, 48.8463001 2.3432338, 48.8498313 2.3482743, 48.8446190 2.3895985, 48.8497058 2.2914067, 48.8488722 2.2909525, 48.8516467 2.2919993, 48.8502983 2.2919285, 48.8430441 2.2833680, 48.8427407 2.2800381, 48.8569612 2.3997902, 48.8580950 2.4069089, 48.8574194 2.4075785, 48.8794256 2.3893510, 48.8824759 2.3233164, 48.8441370 2.3723808, 48.8533370 2.3079466, 48.8365811 2.3930159, 48.8457446 2.3932577, 48.8462449 2.3946154, 48.8682520 2.3960084, 48.8608742 2.3547652, 48.8644744 2.3715412, 48.8354190 2.3928675, 48.8389285 2.3961514, 48.8220200 2.3551611, 48.8525737 2.3850093, 48.8777366 2.2878742, 48.8782149 2.3984639, 48.8761595 2.4036138, 48.8770014 2.4071325, 48.8814737 2.3729748, 48.8807820 2.3745741, 48.8843130 2.3091760, 48.8277275 2.3062018, 48.8287563 2.3015875, 48.8930590 2.3424350, 48.8750926 2.2837673, 48.8419136 2.3247626, 48.8385785 2.3227706, 48.8431110 2.2650609, 48.8594819 2.3491211, 48.8774393 2.3494265, 48.8774984 2.3489986, 48.8849881 2.3071728, 48.8392226 2.3945147, 48.8446708 2.3731150, 48.8358462 2.2901616, 48.8302344 2.3704299, 48.8814548 2.3450080, 48.8706548 2.3429479, 48.8657789 2.3469220, 48.8205834 2.3501740, 48.8234560 2.3498227, 48.8533833 2.3705439, 48.8239258 2.3642439, 48.8225364 2.3462505, 48.8227836 2.3470686, 48.8257161 2.3507275, 48.8257020 2.3460018, 48.8771586 2.3515478, 48.8763392 2.3556446, 48.8682998 2.4016012, 48.8697801 2.4028967, 48.8710424 2.4039943, 48.8720618 2.4046821, 48.8727710 2.3991263, 48.8650559 2.3971773, 48.8655264 2.3981686, 48.8344269 2.3672465, 48.8284908 2.3703198, 48.8258079 2.3604332, 48.8594225 2.3678987, 48.8248710 2.3196867, 48.8247915 2.3176000, 48.8301761 2.3336927, 48.8327495 2.3363992, 48.8333703 2.3323929, 48.8351459 2.3005345, 48.8353374 2.3022404, 48.8359317 2.3005525, 48.8440288 2.4105786, 48.8908851 2.3611676, 48.8263543 2.3123490, 48.8263472 2.3104526, 48.8274473 2.3073922, 48.8273336 2.3052629, 48.8372837 2.2784287, 48.8421188 2.2774869, 48.8260357 2.3595197, 48.8267904 2.3744959, 48.8276944 2.3706840, 48.8352679 2.2821201, 48.8558888 2.3751485, 48.8545384 2.3713228, 48.8287227 2.2995517, 48.8317316 2.3684804, 48.8395554 2.2619755, 48.8900586 2.3606383, 48.8715652 2.3861467, 48.8243982 2.3283690, 48.8437026 2.2828025, 48.8424912 2.2821013, 48.8418528 2.2815508, 48.8941162 2.3618889, 48.8933356 2.3615276, 48.8901273 2.3615642, 48.8397383 2.2615466, 48.8388211 2.2609376, 48.8900701 2.3596849, 48.8908274 2.3601975, 48.8903737 2.3602877, 48.8762839 2.3874942, 48.8258804 2.3538466, 48.8910933 2.3308427, 48.8840472 2.3777246, 48.8532483 2.3881569, 48.8310767 2.3807850, 48.8325943 2.3626569, 48.8276596 2.3564922, 48.8501827 2.3300326, 48.8729108 2.3892528, 48.8926192 2.3787994, 48.8594463 2.3795210, 48.8917249 2.3596358, 48.8933896 2.3598075, 48.8353878 2.3976074, 48.8393328 2.3898245, 48.8654160 2.3568702, 48.8858319 2.3683200, 48.8866975 2.3690587, 48.8918801 2.3632407, 48.8682722 2.3654615, 48.8557307 2.3714370, 48.8559503 2.3687308, 48.8610703 2.3668902, 48.8615104 2.3648715, 48.8624376 2.3641865, 48.8798043 2.3995910, 48.8294110 2.3760335, 48.8893342 2.3187256, 48.8435392 2.3876321, 48.8663973 2.3511799, 48.8752547 2.3898031, 48.8739410 2.3881658, 48.8740999 2.3854670, 48.8729667 2.3708014, 48.8536536 2.3652281, 48.8839440 2.2924260, 48.8841607 2.2936643, 48.8698850 2.3947954, 48.8869564 2.3228854, 48.8320028 2.3143006, 48.8764887 2.3444554, 48.8668204 2.3972017, 48.8708653 2.3088351, 48.8703111 2.3109794, 48.8438225 2.3306529, 48.8270270 2.3545480, 48.8441654 2.3422903, 48.8525204 2.3447674, 48.8436299 2.3520995, 48.8683492 2.3653361, 48.8444368 2.3317238, 48.8878098 2.3799348, 48.8455417 2.2847565, 48.8471374 2.2853376, 48.8556183 2.3576323, 48.8725081 2.3789468, 48.8297066 2.3719377, 48.8658987 2.3445250, 48.8518380 2.3369161, 48.8368347 2.3064637, 48.8864904 2.3929252, 48.8409479 2.3520733, 48.8548553 2.3856848, 48.8551588 2.3869294, 48.8902682 2.3369864, 48.8648476 2.3661885, 48.8954171 2.3603570, 48.8462303 2.3082719, 48.8881816 2.3761106, 48.8224627 2.3258585, 48.8531572 2.3447239, 48.8495298 2.3495342, 48.8678864 2.3249680, 48.8406223 2.3162685, 48.8415260 2.3177790, 48.8516476 2.3430530, 48.8522113 2.3433310, 48.8799994 2.2917628, 48.8259140 2.3418063, 48.8475433 2.3020749, 48.8848153 2.3335836, 48.8769218 2.3487061, 48.8340803 2.3449578, 48.8294924 2.3480229, 48.8483268 2.3315361, 48.8384271 2.3603013, 48.8718826 2.3260739, 48.8306192 2.3113448, 48.8708189 2.3031863, 48.8224695 2.3280079, 48.8867785 2.2961065, 48.8380124 2.3925384, 48.8393761 2.3972146, 48.8729941 2.3452007, 48.8363310 2.3511207, 48.8308373 2.3481222, 48.8328106 2.3467883, 48.8189800 2.3619660, 48.8852910 2.2958210, 48.8653095 2.3468349, 48.8780467 2.2960586, 48.8785810 2.2953365, 48.8785586 2.2954162, 48.8860217 2.2909345, 48.8342538 2.4039026, 48.8328046 2.3998654, 48.8897434 2.3684941, 48.8565550 2.3066461, 48.8662189 2.3411008, 48.8338577 2.3542234, 48.8557977 2.3334124, 48.8537947 2.3371165, 48.8401916 2.3498220, 48.8405286 2.3497872, 48.8385999 2.2890636, 48.8410381 2.3194768, 48.8665493 2.2967911, 48.8732070 2.3032419, 48.8880020 2.3070560, 48.8894260 2.3021180, 48.8501962 2.3822724, 48.8469077 2.3843835, 48.8972873 2.3596764, 48.8588932 2.3539048, 48.8757429 2.3272510, 48.8487020 2.3404334, 48.8341468 2.3292697, 48.8334796 2.3314573, 48.8772230 2.2922270, 48.8645795 2.2824038, 48.8338948 2.3299593, 48.8810540 2.2852110, 48.8839130 2.2907430, 48.8278199 2.3453108, 48.8746985 2.3800023, 48.8294976 2.3479900, 48.8746524 2.3059699, 48.8743208 2.3074302, 48.8798388 2.3745491, 48.8345685 2.3277223, 48.8824071 2.3708251, 48.8587325 2.3232162, 48.8736497 2.3266758, 48.8265944 2.3272409, 48.8538362 2.3322137, 48.8333843 2.3867041, 48.8808106 2.3727327, 48.8406281 2.3046706, 48.8533190 2.3669820, 48.8849774 2.3801611, 48.8854894 2.3815292, 48.8856226 2.3818987, 48.8830874 2.3878108, 48.8438379 2.3524738, 48.8438379 2.3524738, 48.8222496 2.3507278, 48.8851070 2.3036780, 48.8500752 2.3009300, 48.8496090 2.3539260, 48.8827153 2.3706889, 48.8609924 2.2838960, 48.8588106 2.2845183, 48.8725875 2.3782042, 48.8755301 2.3910815, 48.8656747 2.3928548, 48.8827937 2.3812803, 48.8829828 2.3811149, 48.8755713 2.3983661, 48.8755863 2.3989012, 48.8767180 2.4047230, 48.8771405 2.4060238, 48.8591517 2.3557695, 48.8607522 2.3545715, 48.8608207 2.3543547, 48.8609593 2.3539532, 48.8610034 2.3538240, 48.8473351 2.3951813, 48.8472416 2.3961945, 48.8475546 2.3930901, 48.8476864 2.3973242, 48.8518800 2.3897180, 48.8505687 2.3925919, 48.8500483 2.3946347, 48.8575099 2.3809573, 48.8394381 2.3922677, 48.8395862 2.3939515, 48.8513422 2.3477785, 48.8745781 2.3873676, 48.8746258 2.3882005, 48.8753047 2.3926062, 48.8352480 2.2852870, 48.8583161 2.3282685, 48.8489170 2.3496550, 48.8367930 2.2958108, 48.8560138 2.2801813, 48.8568409 2.2789161, 48.8440022 2.2934092, 48.8642512 2.3689433, 48.8515116 2.3988887, 48.8907874 2.3784109, 48.8853720 2.2926050, 48.8582876 2.3822526, 48.8661157 2.3977226, 48.8671967 2.4092129, 48.8684503 2.4092879, 48.8621521 2.3775066, 48.8746232 2.3266224, 48.8467059 2.3087748, 48.8363398 2.2999746, 48.8653607 2.3687179, 48.8653218 2.3678518, 48.8413271 2.3076655, 48.8353741 2.3033228, 48.8477911 2.3189782, 48.8469433 2.3172689, 48.8685232 2.3413917, 48.8661744 2.3390884, 48.8833230 2.2987210, 48.8825490 2.2939790, 48.8615294 2.3704064, 48.8429707 2.3067870, 48.8642079 2.3555687, 48.8840313 2.3391067, 48.8616536 2.3637831, 48.8623504 2.3738750, 48.8979615 2.3364933, 48.8758793 2.3477150, 48.8560190 2.3672129, 48.8576216 2.3674544, 48.8360001 2.3219796, 48.8350251 2.3203133, 48.8790170 2.2917880, 48.8622091 2.3851402, 48.8632469 2.3690653, 48.8828882 2.3896270, 48.8787834 2.4010884, 48.8781360 2.3980267, 48.8625550 2.3629618, 48.8952399 2.3524186, 48.8780395 2.3934718, 48.8828048 2.3710020, 48.8660714 2.3658844, 48.8303516 2.3287590, 48.8368532 2.2599762, 48.8373618 2.2580020, 48.8654759 2.3602705, 48.8632677 2.3880260, 48.8562683 2.3942549, 48.8499631 2.3497239, 48.8393432 2.3095378, 48.8741069 2.3157729, 48.8584144 2.3836364, 48.8826770 2.3321419, 48.8484995 2.3783545, 48.8735496 2.3843433, 48.8623856 2.3637772, 48.8804951 2.3519041, 48.8795243 2.3493499, 48.8574550 2.3522300, 48.8703464 2.3981027, 48.8865931 2.3945167, 48.8671158 2.3837273, 48.8690093 2.3678893, 48.8706423 2.3789714, 48.8710796 2.3783999, 48.8794232 2.3568724, 48.8316743 2.3141103, 48.8418864 2.2589925, 48.8647039 2.3648658, 48.8627509 2.3598746, 48.8816743 2.3162137, 48.8578725 2.3506304, 48.8850241 2.3269069, 48.8729651 2.3580381, 48.8390240 2.3399330, 48.8738656 2.3506193, 48.8850785 2.3253062, 48.8873233 2.3334384, 48.8695892 2.3539074, 48.8597377 2.3528662, 48.8446652 2.3099958, 48.8454930 2.3442174, 48.8541465 2.3712846, 48.8664865 2.3472959, 48.8662237 2.3472467, 48.8670720 2.3473835, 48.8759240 2.2895117, 48.8585053 2.3460897, 48.8452115 2.2894177, 48.8720532 2.3501265, 48.8775753 2.3519069, 48.8445870 2.3767036, 48.8858885 2.3592570, 48.8783540 2.3397798, 48.8517019 2.3570690, 48.8805289 2.3190782, 48.8868529 2.3404231, 48.8303164 2.3194557, 48.8640610 2.3504491, 48.8619198 2.3672748, 48.8424274 2.3106157, 48.8307059 2.3310174, 48.8304867 2.3676139, 48.8571350 2.3645799, 48.8826280 2.3241332, 48.8684166 2.3550879, 48.8401013 2.3999141, 48.8624510 2.3860890, 48.8595546 2.3865872, 48.8390673 2.3500499, 48.8389036 2.3492037, 48.8814741 2.3397434, 48.8287745 2.3078640, 48.8816608 2.3581073, 48.8823292 2.3589042, 48.8379325 2.4085812, 48.8885777 2.3539087, 48.8826206 2.3590692, 48.8582146 2.3564144, 48.8708584 2.3615535, 48.8848274 2.3786347, 48.8625781 2.3635251, 48.8346109 2.4056081, 48.8448580 2.3759075, 48.8619818 2.3506062, 48.8643606 2.3732707, 48.8648008 2.3728646, 48.8646962 2.3731533, 48.8451670 2.3832340, 48.8813601 2.3272611, 48.8538204 2.3378556, 48.8853067 2.3366858, 48.8456969 2.3708882, 48.8506404 2.2936731, 48.8504684 2.2942830, 48.8569990 2.3598958, 48.8576074 2.3584776, 48.8439225 2.2833420, 48.8430432 2.2833284, 48.8428944 2.2842743, 48.8420233 2.2855649, 48.8416421 2.2888988, 48.8416730 2.2896434, 48.8807469 2.3249718, 48.8577871 2.3811707, 48.8762568 2.3026175, 48.8671899 2.2974664, 48.8679501 2.2980675, 48.8752065 2.3706130, 48.8488146 2.2662951, 48.8900794 2.3207404, 48.8593537 2.3758114, 48.8776695 2.3160713, 48.8233133 2.3772950, 48.8254469 2.3510746, 48.8656624 2.3504627, 48.8457596 2.3191243, 48.8708210 2.3577458, 48.8791718 2.3545799, 48.8329453 2.2890084, 48.8670104 2.3443314, 48.8545691 2.3624284, 48.8410290 2.3406982, 48.8547397 2.3848709, 48.8422217 2.3027041, 48.8644770 2.4052247, 48.8643859 2.3991316, 48.8859135 2.3463455, 48.8298427 2.3644959, 48.8619514 2.3325055, 48.8364245 2.3944189, 48.8770775 2.3600536, 48.8773723 2.3588805, 48.8760150 2.3247329, 48.8755096 2.3274736, 48.8713153 2.3040116 +37.8163406 -122.3719841, 37.8159189 -122.3712035, 37.8198117 -122.3663991, 37.8240897 -122.3725534, 37.8217995 -122.3675153, 37.8251277 -122.3701037, 37.8251958 -122.3698336, 37.8282634 -122.3718811, 37.8298005 -122.3733581, 37.8269448 -122.3774052, 37.8219781 -122.3678899, 37.8183698 -122.3702624, 37.8299019 -122.3752682, 37.8283168 -122.3771872, 37.8199566 -122.3664933, 37.8231753 -122.3748357, 37.8241714 -122.3754505, 39.4661054 -6.3676957, 39.4692595 -6.3692342, 37.8167937 -122.3722982 +yes +yes +asphalt +55.9048041 -3.1580079 +48.8688011 2.3433065, 48.8315179 2.3484655, 48.8478026 2.3022063, 48.8395100 2.3008865, 48.8425547 2.3220548, 48.8939173 2.3145811, 48.8634631 2.2867213, 48.8383335 2.2781281, 48.8330438 2.4150719, 48.8423448 2.4010169, 48.8208661 2.3326924, 48.8213634 2.3309274, 48.8199947 2.3340110, 48.8434266 2.3750303, 48.8434372 2.3750054, 48.8440016 2.3736234, 48.8440277 2.3735686, 48.8443850 2.3728793, 48.8443962 2.3728912, 48.8811914 2.3574052, 48.8287437 2.3781575, 48.8287490 2.3781533, 48.8299410 2.3777024, 48.8299525 2.3776918, 48.8299641 2.3776812, 48.8299756 2.3776705, 48.8300706 2.3775830, 48.8300849 2.3775706, 48.8294739 2.3760829, 48.8295906 2.3759434, 48.8297928 2.3757861, 48.8661124 2.3146762, 48.8467301 2.3432308, 48.8503333 2.3427622, 48.8638627 2.3485951, 48.8591500 2.3486798, 48.8751665 2.3270754, 48.8751724 2.3280388, 48.8430086 2.3744896, 48.8711400 2.3046021, 48.8297551 2.3780497, 48.8297627 2.3780429, 48.8402386 2.3209859, 48.8382959 2.3613024 +49.4111306 8.6979715 +yes +yes +48.8494725 2.3556898 +48.8950879 2.3531779 +yes +49.4276186 8.6855844, 49.4038333 8.6771587, 49.4171595 8.6617457, 49.4147558 8.6660779, 49.4134202 8.6738393, 49.4192295 8.7567625, 49.4082107 8.6921228, 49.4091698 8.6936091, 49.4041276 8.6763300, 49.4172710 8.6921830, 49.4124311 8.7120085, 49.3804963 8.6875192, 49.4031182 8.6470339, 49.3989298 8.6889417, 49.4107830 8.7059189, 49.4065233 8.6910827, 49.4013623 8.6726870, 49.4101932 8.7062396, 49.4089481 8.7124297, 49.4121807 8.6993722, 49.3656248 8.6889494 +Ibis, BVJ Paris-Louvre, Hôtel Crayon Rouge, Hôtel Saint-Honoré, Hôtel Montpensier, Hôtel Louvre Bon Enfants, Hôtel Vendôme, Hôtel Costes, Hôtel Vivienne, Hôtel des Boulevards, Hôtel Sainte-Marie, Hôtel Paris Rivoli, Hôtel du Loiret, Hôtel du Septième Art, Hôtel Caron de Beaumarchais, Jardins de Paris Marais-Bastille, Hôtel de la Place des Vosges, Hôtel de Nice, Hôtel du Commerce, Hôtel Esmerelda, Port-Royal-Hôtel, Hôtel du Levant, Maitre Albert B&B, Le Clos Medicis, L'Hôtel, Victoria Palace Hotel, Le Petit Chomel, Hôtel Lindbergh, Hôtel du Champ de Mars, Hôtel Saint-Dominique, Hôtel Duquesne Eiffel, Hôtel de la Tulipe, Grand Hôtel Leveque, Timhôtel Best Western Tour Eiffel Invalides, Phytéas's houseboat B&B, Four Seasons Hôtel George V, Hyatt Regency Paris - Madeleine, Hôtel de Lille, Perfect Hotel & Hostel, Hôtel Vicq d'Azir, Hôtel du Terrage, Comfort Hotel Gare de l'Est, Appel, Hôtel Hangely, Hôtel Le Quartier République, Le Marais, Le Général Hôtel, Classics Hôtel, Grand Hôtel Nouvel Opera, Hôtel de Nemours, Hôtel du Nord et de l'Est, Blue Planet Hostel, Hôtel Prince Albert, Hôtel de la Porte Dorée, Hôtel de l'Aveyron, Corail Hotel, Hôtel Le Quartier Bastille, Le Faubourg, Hôtel Palym, Hôtel Le Quartier Bercy - Square, Novotel, Kyriad Italie Gobelins, Hôtel Ibis Paris Avenue d'Italie, Timhotel Italie, Jack's, La Manufacture, Mercure Gobelins, Holiday Inn Express Paris place d'Italie, Hôtel Villa Lutece, Hôtel du Lion, Aloha Youth Hostel, Le Parc, Hôtel Prince Albert Monceau, Hôtel Saint-Cyr Étoile, Hôtel Bonséjour, Hôtel Sofia, Hôtel des Arts, Hôtel Eden Montmartre, Paris Hotel, Terrass'hôtel, Hôtel Bonne Nouvelle, Tiquetonne Hôtel, Tryp Hôtel Paris François, Hôtel Victoires Opéra, Hôtel du Marais, Grand Hôtel des Arts et Métiers, Hôtel Royal Bel Air, Hôtel Carladez Cambronne, Novotel Paris Vaugirand Montparnasse, Hôtel Ibis Cambronne, Novotel Pari Gare Montparnasse, Hôtel Kuntz, Hôtel Le Littré, Hôtel Crimée, Hôtel Ermitage, Hôtel Balzac, Hôtel Acacias Etoile, Le Grand Hôtel Intercontinental, Ibis, Le Vélodrome, Hôtel Royal Aboukir, Grand Hôtel Leveque, Hôtel Sofitel Le Faubourg, Hôtel Astor Saint-Honoré, Crowne Plaza, Hôtel Verlain, Hôtel Antinéa, Hôtel Valadon, Hôtel États-Unis Opéra, Hôtel L'Horset Opéra, Hôtel Saint-Cyr Étoile, Hôtel Val Girard, Alizé Grenelle, Beaugrenelle Saint-Charles, Hôtel Scribe, Holiday Inn, Hôtel Cluny Square, Hôtel de Suez, Hôtel de la place des Alpes, Hôtel Paris Est Lafayette, Hôtel du Prince Eugène, Hôtel Apostrophe, Hôtel La Tour d'Auvergne, Grand Hotel Français, Grand Hôtel Doré, Hôtel Sublim Eiffel, Hôtel Albouy, Relais du Pré, Hôtel du Pré, Résidence du Pré, Au Manoir Saint-Germain des Prés, Adagio Paris Montmartre, Kube Hotel, Hôtel Cujas Panthéon, Hôtel Saint-Charles, Hôtel deVillas, Idéal Hotel, Montparnasse Rive Gauche, Citadines Place d'Italie, Hôtel Prince Albert, Ibis, Sport Hotel, Hôtel Kyriad, Novotel Paris Bercy, Hôtel Ibis Styles Paris-Bercy, Brebant, Hôtel Plaza Élysées, Hôtel Altona, Hôtel Losserand Montparnasse, Wattignies Hôtel, Hôtel Bercy Gare de Lyon, Hôtel Allegro, Terminus - Lyon, Viator, Hôtel du Midi, Holiday Inn, Hôtel Saint-Hubert, Azur, Lyon Bastille, Hôtel Adriatic, Mercure, Concordia, Hôtel Helvetia, Hôtel de Marseille, Hôtel Alexandrie, Nièvre Hôtel, Modern's, Bel Oranger, Hôtel de l'Aveyron, Gare de Lyon, Aurore Best Western, Hôtel Europe, Hôtel Mignon, Alcyon, Hôtel Prince, Le central, Hôtel Pont Royal, ibis, Hôtel Marriott, Hôtel Coypel, Hôtel des Arts, Hôtel Dacia, Convention Montparnasse, Albe Hôtel Saint-Michel, Formule 1, Hôtel Henri IV, Hôtel Victoria Châtelet, Halle Hotel, Hôtel Britannique, Hôtel All Seasons Paris XV Lecourbe, Hôtel des Olympiades, Hôtel Régina, Hôtel du Louvre, Hôtel Louvre Piémont, Hôtel Normandy, Pavillon Louvre Rivoli, Hôtel Louvre Saint-Anne, Hôtel Opéra Maintenon, Hôtel Prince Albert Louvre, Campanile, Londres Saint-Honoré, Meliã Vendôme, Hôtel d'Aubusson, Hôtel France d'Antin, Hôtel France d'Antin, Hôtel à la Villa Saint-Martin, Holiday Inn Paris Notre-Dame, Le Jardin de Cluny, Hôtel de Lutèce, Hôtel Saint-Louis, Hôtel des Deux Iles, Folkestone Opéra, Sydney Opéra, D'win, Hôtel Rivoli, Hôtel De La Bretonnerie, Prince de Galles, Hôtel Jeanne d'Arc, Hôtel Turenne, Hôtel Saint-Louis Marais, Hôtel du Plat d'Étain, Hôtel de la Paix République, Hôtel Nazareth, Austin's Arts et Métiers, Paris France Hôtel, Le Relais du Marais, Gardette Park Hôtel, Miramar, Timhotel Montparnasse, Printania, Hôtel Gay-Lussac, Ibis, Campanile, Appart' Valley, Little Palace Hotel, Hôtel Saint-Paul Rive Gauche, One by the Five, Holiday Inn : Gare de L'est, Hôtel Jardin Le Bréa, Le Petit Trianon, Hôtel Beauchamps, Hôtel du Rond-Point des Champs-Élysées, Hôtel Elysée Park, Hôtel Mathis Élysées, Le 123 Elysées, Le Bristol, Timhotel Élysée, Royal Madeleine, Hôtel Opal, Vintage Hostel Near Gare du Nord, Hôtel Berne Opéra, Hôtel Exe Paris Centre, Grand Hôtel du Havre, Hôtel Britannia, Hôtel de Dieppe, Hôtel Place de Clichy, Étoile Saint-Honoré, Hôtel Étoile Friedland, Champs-Élysées Plaza, Hôtel California, Hôtel du Colisée, Hôtel Amarante Champs-Élysées, Hôtel Powers, Hôtel de la Trémoille, Hôtel Élysées Régencia, Hôtel La Bourdonnais, Hôtel Le Walt, Hôtel de Vigny, hötel Mayflower, Persing Hall, Fouquet's Barrière, Hôtel Le Monna Lisa, Mercure : Paris-La Villette, Holiday Inn Express : Hôtel Paris-Canal De La Villette, Les Dames du Panthéon, Faubourg 216-224, Faubourg 216-224, Timhotel, Hôtel Mercure Paris Gare du Nord La Fayette, Park Hyatt Paris -Vendome, Hôtel de France, Marciano, Excelsior Hôtel Varlin, Grand Hôtel de l'Univers-Nord, Hôtel Pullman Paris Bercy, Hôtel George Opera, Hôtel Sibour, Ibis, Park Suites, Hôtel des Trois Gares, Hôtel Acte V, Hôtel Américain, Hôtel Georgette, Hôtel Raphael, Hôtel Baltimore, Hôtel Ambassade, Villa des ambassadeurs, Hôtel Victor Hugo, Résidence Chalgrin, Résidence Impériale, Color design Hotel, Holliday Inn, Hôtel Forest Hill La Villette, Hôtel Gavarni, Ibis Budget, Hôtel Atlantique, Hôtel Jeff, Hôtel Résidence Foch, TimHotel, Hôtel Elysa-Luxembourg, Hôtel Ribera, Hôtel La Fayette, Queen's Hôtel, Hôtel du Square, Holiday Inn Garden Court : Paris-Auteuil, Hôtel Studio, Hôtel Merryl, Hôtel de Bellevue Paris, Hôtel Le Régent, Ambassadeur, Jules Cesar, Hôtel Les Rives de Notre-Dame, Hôtel Notre-Dame, Hôtel Amiot, Camélia Hôtel, Le Méditel, Familia Hôtel, Hôtel Minerve, Hôtel Le Saint-Jacques, Hôtel Moderne Saint-Germain, Hôtel Sully Saint-Germain, Hôtel des Grands Hommes, Le Lotti, Eiffel Kennedy, Hôtel Le Derby Alma, Hôtel Les Théâtres, Best Western Premier Le Swann, Hôtel Derby Eiffel, Hôtel Arcadia, Hôtel Lodge du Centre, Hôtel des Victoires, Hôtel Ronceray, Les Relais de Paris, Baldi, First Hôtel, Hôtel Ségur, Bailli de Suffren, Daumesnil Hôtel, Saint-Georges, Hôtel de Maubeuge, Mercure Paris Terminus Nord, Quality Hotel Gare Du Nord, Hôtel d'Amiens, Le Meurice, Hôtel Saint-James & Albany, Original, l’Apostrophe, William's Opera, Hôtel Des Arts Bastille, Ibis Paris Gare de l'Est, Élysée, Hôtel de Banville, La Maison Blanche, Home Latin, Marignan, Mercure, Européen, Hôtel de Nantes, Hôtel d'Espagne, Hôtel Montalembert, Grand Hôtel du Bel Air, Hôtel du Petit Louvre, Hôtel Delos Vaugirard, Hôtel Chatillon Paris Montparnasse, AVALON HOTEL, Hôtellerie Paris Saint-Honoré, La croix de Malte, Grand Hotel Haussmann, Hôtel Helder Opera, Hôtel London, Hôtel Opera Vivaldi, Hôtel Langlois, Hôtel des Alpes, Hôtel Aris Nord, Ibis Budget, Metropole La Fayette, Baudelaire, Alison, Amarante Beau Manoir, La Sanguine, Le Clos d'Alésia, Hipotel Paris Nation, Hôtel du Moulin, France Eiffel, Le Colbert, Modern Hotel, Luxor Bastille, Le Versigny, Best Western Aïda Marais, Hôtel des 3 Nations, Grand Hôtel du Prince Eugène, Hôtel Excelsior, Hôtel Tours Magenta, ibis Styles Paris Alesia Montparnasse, Résidence Universitaire Concordia, Résidence Mouffetard, Hôtel Westminster, Mandarin Oriental, W Paris Opéra, Comfort Hotel, Relais Saint-Jacques, Hôtel Banke, Castille, Thoumieux, Hôtel Thérèse, Le Seven, Hôtel des Écoles, Ibis Paris Brancion parc des expositions, Royal Saint-Germain, Hôtel Regyn's Montmartre, Clichy Hôtel, Little Regina, Hôtel ibis, Hôtel André Gill, Hôtel de Nevers, La Soummam, Hôtel Belambra Magendie (Touring Hotel), Hôtel Mogador, Holiday Inn Paris Opéra, Hôtel du Casino, Hôtel Antin Trinité, Opéra D'Antin, Plaza Opera Hotel, Villa Lamartine Opéra, Hôtel Impérial, Terminus Vaugirard, Hôtel Mercure Paris Montmartre Sacré Cœur, Hôtel Ibis Paris Montmartre, Les Gobelins, Art Hotel Batignolles, Hôtel de Flore 108 rue Lamarck, Holliday Inn Garden Court, Le Rocroy, Hôtel Ibis Paris Sacré-Coeur, Hôtel des Arènes, Hôtel Studia, Renaissance Paris Vendôme Hotel, Hôtel de la Chope, Mercure Paris Monty Opéra, Hôtel Le M, Hôtel de Sévigné, Citadines, Étoile Saint-Ferdinand, Citadines Apart'Hotel, Le Pavillon Frontenac, Hôtel Terminus Montparnasse, Hôtel Mercure, Libertel Montmartre Duperré, Hôtel Splendid, Hôtel des Buttes Chaumont, Hôtel de la Comète, Hôtel Berkeley, Platine, New Hotel Saint-Lazare, Hôtel Londres & New-york, Hôtel des Arts, Hôtel Novotel Paris Porte d'Orléans, Hôtel Le Pavillon Bastille, Hôtel Paris Bastille, Shangri-La Hotel, Les jardins d'Alésia, 61 Paris Nation Hôtel, Palma Hotel, Le Baron, AmHotel Italie, Arian Hotel, Windsor Opera, Ideal Hotel, Meridional, Mercure Paris Vaugirard Porte de Versailles, Porte de Versailles Hotel, Hôtel Riquet, Hôtel de la Poste, Hôtel Clarisse, Hôtel Exelmans, Hôtel Boileau, Hôtel Median Paris Porte de Versailles, Villa royale Montsouris, Hôtel Virginia, Hôtel Montsouris Orléans, Hôtel Beaunier, Cécil Hotel, Parc Hotel, Sports Hotel, Hôtel du Parc Saint-Charles, Hôtel Source, Hôtel Bellevue et du Chariot d'Or, Timhotel Nation, Dupleix Hotel, Hôtel Tolbiac, Best Western, Ibis, Hôtel Torcy, Hôtel de Belfort, Hôtel Palais de Chaillot, Hôtel Eiffel Turenne, Hôtel Belfort, Hôtel Mirific, Cambrai, Hôtel Le Petit Belloy, Hôtel Belloy Saint-Germain, Quality Suites, Hôtel de Paris Montmartre, Hipotel, Hôtel Pavillon de la reine, Hôtel des Pyrénées, Best Western Amiral Hotel, Ibis, Nouveau Paris Park Hotel, Hôtel Magellan, Caffè Cosy, Armoni Hotel, Hôtel Champerret-Héliopolis, Hôtel Charma, Hôtel Flor Rivoli, Grand Hôtel Dechampaigne, Grand hôtel amelot, Louis II, Cordelia, Hôtel Bergère Opéra, Hôtel marais bastille, Hôtel Villa des Ternes, Hôtel Champerret-Élysées, Notre-Dame, Jardin de Villiers, Pavillon Courcelles Parc Monceau, Pavillon Villiers Étoile, Holiday Villa, Beauséjour Montmartre, Balcon de Charonne, Hôtel Mont Blanc, Hôtel Paris Le Marquis Eiffel, Europe - St Séverin, Hôtel Royal Saint-Michel, Hôtel Saint-Charles, Mercure Paris - Tour Eiffel, Idéal Hôtel, Hôtel du Parc Saint-Séverin, Hôtel Chopin, Hôtel de la Paix, Hôtel Saint-Christophe, Hôtel Perreyve, Hôtel de l'Avenir, Hôtel de France, Istria Montparnasse, Hôtel madeleine plaza, Hôtel Saint-Merry, Andréa Rivoli, Hôtel de Reims, Diva Opéra, Résidence Châtillon, Hôtel de l'Alma, Hôtel de la Vallée, Hôtel Royal Saint-Honore, Hôtel La Bourdonnais, Villa Montparnasse, Ibis Style, Claude Bernard, Villa Panthéon, Fertel Maillot, Central hotel, Hôtel de Neuville, Hôtel CÉ, Hôtel Novanox, Comfort Hotel Mouffetard, Hôtel de la Sorbonne, Mercure, Grand Hôtel de Normandie, Hôtel du Calvados, Austin's Saint-Lazare, Austin's Saint-Lazare, Élysées Union, Hôtel Best Western, Hôtel Michelet Odéon, Trianon Rive gauche, Radisson Blu Le Dokhan's Hotel, Plaza Tour Eiffel, Adagio Aparthotel, Hôtel Relais Bergson, Hôtel Libertel Canal Saint-Martin, Timhotel, Hôtel de la Perdrix Rouge, Hôtel du Marché, Best Western Quartier Latin, Best Western Quartier Latin, Hôtel Villa Garibaldi, Académie Hotel, Le Richemont, Hôtel du Triangle d'Or, Hôtel Cluny-Sorbonne, Hôtel Noir, Hôtel de Sers, Hôtel Bel Ami, Hôtel Edouard 7, Hôtel Eiffel Trocadero, Hôtel Franklin, Golden Hotel, Hapimag, Hôtel duO, The Peninsula Paris, Hôtel Mon Rêve Amadeus, Hôtel du Collège de France, Best Western Empire Élysées, Hôtel Le Bienvenue, Auberge flora, Hôtel du Cadran, Le citizen hotel, Canal de l'Ourcq, Inter-Hôtel Ajiel, Le Robinet d'Or, 1K, Ibis, Saint Sébastien, Hôtel de bourgogne, slh.com, Marais HÔme, Mareuil, Vienne, Beaumarchais, Paris Voltaire, Meteore, Hôtel de Venise, Gabriel, Le 20, Moley, Archives, Ideal, Hôtel Floridor, Hôtel Rhin et Danube, Hôtel Murat, Innova, Grand Hôtel Saint-Michel, Sélect, Hôtel Grand Paris, Hôtel Joséphine, R.Kipling Hôtel, Hôtel Choisy, Ibis Paris Tour Montparnasse, Hótel de Ménilmontant, Villa Beaumarchais, Le Richmond, Picardy Hotel, ibis Styles Paris Gare du Nord TGV, École centrale, Citadines, Campanile, Mary's, Alhambra, Le relais du Louvre, Hôtel de la place du Louvre, Kyriad, Hôtel des Belges, Nouvel Orleans, Au royal mad, Hôtel de l'Europe, Cyrano, Rhétia, Saint Louis Saintonge, Regina, Les Trois Collèges, Hôtel Central Saint Germain, Hôtel du Midi, Hôtel Caron, Beau séjour, B&b Hôtel Paris Porte Des Lilas, Acacia, Art Hotel, Hipotel, Best Western Elysées Paris Monceau, New Orient Hôtel, Timhotel Opera Gare Saint-Lazare, Madrid Opéra, Villa Opéra Drouot, Amadeus, Fred Hôtel, Molitor, Hôtel de la Paix, Hôtel des Fontaines, ibis, Hôtel Les Jardins d'Eiffel, Le Caravelle, Hôtel Royal Phare, metallos, fabric, Hôtel de l'Exposition, Hôtel Sophie Germain, Hôtel Saint-Germain-des-Prés, christal, Royal Monceau – Raffles Pari, Moris, Le Méditerranéen, Hôtel de Latour-Maubourg, Hôtel Béarnais, Hôtel Eiffel-Blomet, Hôtel Mimosa, Nouvel Hôtel Eiffel, Vic Eiffel, Art Hotel Eiffel, Saint Pétersbourg, Hôtel du Cygne, AC Hotel by Marriott, Hôtel Warwick, Hôtel des Champs Élysée, Hôtel Arc Élysée, Hôtel Lancaster, Hôtel Rochester, New Hotel Candide, Marriott Opera Ambassador, Les Jardins de Montmartre, Hôtel de la cité Rougemont, Hôtel Brésil Opéra, Hôtel Abrial, Hôtel de Roubaix, Hôtel 1er Etage, Appart'Tourisme Paris Porte de Versailles, Audran, Hôtel Résidence Quintinie Square, Hôtel Pullman Montparnasse, Au Pacific Hôtel, Novotel, La Herse d'Or, FIAP, Splendid Hôtel, Hôtel de l'Avre, Hôtel Amiral Fondary, Best Western Eiffel Cambronne, Hôtel Alyss, Mercure, Pavillon Porte de Versailles, Hôtel Novotel, Hôtel du Pont Neuf, Tonic Hotel, Lutèce Hôtel, Hôtel Karraz, Le Relais des Halles, Eiffel Seine, Hôtel Ares Eiffel, Europe Hotel, Hôtel Mercure, Campanile Paris XV - Tour Eiffel, Hôtel Lille-Louvre, Hôtel Washington Opéra, Pullman Paris Tour Eiffel, Cambon Hôtel, Hôtel Malte Opéra - Astotel, Timhotel Palais Royal, Hôtel Volney Opéra, Hôtel Choiseul Opera, Hôtel du Globe, Appi, Agora Saint-Germain, Hôtel Diana, Best Western, Adagio Access Paris Bastille, Villa Mazarin, Le Compostelle, Hôtel Pratic, Hôtel Bastille Speria, Paris Bruxelles, Nevers Hotel, Le Haut Marais, Hôtel du Vieux Saule, Hôtel de Senlis, Hôtel Delavigne, Hôtel de l'Espérance, Hôtel de Milan, Hôtel Paris-Nord, Hôtel Pavillon Opéra, Ibis Style, Hôtel Bristol Nord, Hôtel Provinces Opéra, Hôtel Hauteville Opéra, Hôtel Palace, Hôtel Montana, Mercure Paris Opera Grands Boulevards, Hôtel des comédies, Hôtel de Bordeaux, Saint-Christopher's Inns, Gare du Nord, Hôtel Albert 1er, Abricôtel, Hôtel Lutétia, Hôtel de l'Horloge, Hôtel Voltaire République, IBIS, Comfort Hotel Nation - Paris 11, Ibis, Hôtel Edouard VI, Hôtel La Parizienne, Hôtel de Crillon (fermé), Hôtel d'Albion, Holiday Inn, Paix Madeleine, Le Lavoisier, Hôtel Opéra Marigny, Chavanel hôtel, Best Western Premier Opéra Diamond, Hôtel Cervantes Paris, Villa Saxe Eiffel, L'Hôtel du Collectionneur Arc de Triomphe, Sofitel Arc de Triomphe, Ibis Styles, Axel Opéra, Hôtel du Leman, Hôtel Royal-Bergère, Maison Athénée, Le Péra, Astra, Hôtel Caumartin, Hôtel Rotary, Villathéna, Le Cardinal, New Hotel Opera, Hôtel Aurore Montmartre, ATN Hôtel, Hôtel Vintimille, Le Grey Hôtel, Le Secret de Paris, Excelsior, Carlton's, Hôtel Touring, Hôtel France Albion, Hôtelp Chateaudun Opéra, Monterosa, Hôtel Touraine Opera, Hôtel Vernet, Hôtel Levert, Super Hotel, Hôtel Lilas-Gambetta, Art Hôtel Congrès, Kimotel, Viator, Darcet, Camélia International, Hôtel De L'Avenir Jonquière, Hôtel de l'Avenir, Nice Hotel, Azur Hotel, Hôtel Eldorado, Hôtel Luxia, Timhotel Montmartre, Le Relais Montmartre, Mercure - Paris Bastille, Ibis Gare De Lyon Diderot, Hôtel Claret, Aladin, Hôtel du Roussillon, Hôtel du Commerce, Hôtel Verlaine, Mercure Blanqui Place d'Italie, Hôtel Ambre, Hôtel Ibis Italie Tolbiac, Ibis, Hôtel Manet, Hôtel Mercure, Hôtel Rubens, Ibis Styles Tolbiac Bibliothèque, Hôtel Majesty, Hôtel Novex, Royal Fromentin, Hôtel de la Paix, Hôtel Montparnasse - Saint-Germain, Hôtel Arotel, L'Espérance, Hôtel Apollinaire, Hôtel de Paris, Hôtel Waldorf, Marriott Rive Gauche, Solar Hôtel, Mistral Hotel, Hôtel Agenor, Hôtel Mercure Paris XV, Hôtel du Maine, Hôtel Lecourbe, Hôtel d'Alésia, Hôtel Terminus Orléans, Paris Orléans, Hôtel Montparnasse Alésia, Hôtel - Villa du Maine, Hôtel Acropole, Aberotel Montparnasse, Hôtel Duret, Saint-James, Hôtel Alexander, Villa Glamour, Hôtel Auteuil Tour Eiffel, Paris Arc de Triomphe, Le Pierre, Hôtel Astrid, Splendid Étoile, Hôtel Méridien, Hôtel Balmoral, Villa Eugénie, Hôtel Le Villiers, Hôtel Belfast, Hôtel La Régence, Best Western Opera Batignolles, Hôtel Mercedes, Villa Brunel, Hôtel Stella Etoile, Hôtel Novotel Paris Tour Eiffel, Adagio Paris Tour Eiffel, Hôtel Paris Bercy, Le Ritz, Hôtel Kyriad, Timhotel Berthier Paris XVII, Mama Shelter Hôtel, Est Hôtel Paris, Lilas Blanc Grenelle, Hôtel Hor, Hôtel Plaza Athénée, Hôtel Le Tourville, Hyatt Regency Paris Etoile and 48.8403064 2.3155776, 48.8626324 2.3411196, 48.8645288 2.3405105, 48.8611819 2.3436118, 48.8643625 2.3363084, 48.8629098 2.3381793, 48.8670031 2.3287060, 48.8667055 2.3279639, 48.8711661 2.3415044, 48.8696872 2.3486973, 48.8695728 2.3486760, 48.8559607 2.3573425, 48.8569202 2.3552931, 48.8534997 2.3618939, 48.8564448 2.3568646, 48.8539504 2.3631680, 48.8544261 2.3652418, 48.8566486 2.3558134, 48.8487987 2.3483264, 48.8524744 2.3472030, 48.8369895 2.3513817, 48.8528444 2.3444884, 48.8507040 2.3495969, 48.8486356 2.3404438, 48.8563230 2.3352294, 48.8457742 2.3243407, 48.8519344 2.3253667, 48.8521505 2.3260910, 48.8563970 2.3060759, 48.8599286 2.3087880, 48.8526441 2.3090461, 48.8599838 2.3062819, 48.8571597 2.3065436, 48.8604075 2.3104739, 48.8643297 2.3182161, 48.8687840 2.3006774, 48.8729139 2.3216323, 48.8767170 2.3485948, 48.8798562 2.3434989, 48.8763467 2.3710708, 48.8773197 2.3627064, 48.8711954 2.3550205, 48.8651810 2.3673647, 48.8661043 2.3685294, 48.8670657 2.3747048, 48.8662470 2.3669000, 48.8553916 2.3882956, 48.8551772 2.3787982, 48.8651917 2.3728160, 48.8658412 2.3674790, 48.8456631 2.3753357, 48.8467986 2.3778628, 48.8349874 2.4067169, 48.8470135 2.3707909, 48.8473827 2.3714639, 48.8490527 2.3858203, 48.8462381 2.3733925, 48.8395127 2.3927042, 48.8452783 2.3754729, 48.8337413 2.3549627, 48.8301361 2.3564885, 48.8283030 2.3473418, 48.8328956 2.3593239, 48.8329337 2.3553280, 48.8321073 2.3538107, 48.8315772 2.3571955, 48.8363513 2.3601974, 48.8333693 2.3319728, 48.8421541 2.3046648, 48.8671624 2.2857115, 48.8867808 2.3137817, 48.8804472 2.2855736, 48.8861896 2.3361789, 48.8846951 2.3480296, 48.8839698 2.3264000, 48.8928537 2.3428303, 48.8801463 2.3372618, 48.8866384 2.3330799, 48.8693546 2.3495274, 48.8644952 2.3495828, 48.8713219 2.3426051, 48.8649114 2.3469659, 48.8615532 2.3650131, 48.8662848 2.3574075, 48.8460247 2.3981137, 48.8421016 2.3032187, 48.8399264 2.3032478, 48.8471379 2.3013512, 48.8384924 2.3151043, 48.8784567 2.3583300, 48.8454273 2.3241304, 48.8911605 2.3763728, 48.8717563 2.3927092, 48.8733283 2.3004615, 48.8766342 2.2907798, 48.8706664 2.3304172, 48.8273283 2.3211689, 48.8381218 2.2586505, 48.8685689 2.3500099, 48.8574419 2.3062436, 48.8684048 2.3213802, 48.8728474 2.3193054, 48.8672306 2.3655555, 48.8649422 2.3776744, 48.8782575 2.3739591, 48.8567926 2.3055714, 48.8689702 2.3336520, 48.8690718 2.3338065, 48.8867704 2.3058396, 48.8407077 2.2993225, 48.8467419 2.2878241, 48.8472201 2.2858925, 48.8706403 2.3297901, 48.8376960 2.3062844, 48.8515866 2.3435085, 48.8498226 2.3425905, 48.8321555 2.3588862, 48.8772727 2.3543165, 48.8506769 2.3924817, 48.8417734 2.3317486, 48.8789004 2.3448758, 48.8515615 2.3906806, 48.8390977 2.3974259, 48.8452340 2.3101111, 48.8707687 2.3598696, 48.8780025 2.3475708, 48.8775316 2.3471837, 48.8784021 2.3475786, 48.8537719 2.3323137, 48.8831159 2.3425480, 48.8865976 2.3588510, 48.8481953 2.3419715, 48.8271300 2.3482326, 48.8400155 2.3612991, 48.8675681 2.3752283, 48.8316922 2.3218269, 48.8305203 2.3549865, 48.8472227 2.3777378, 48.8350411 2.4053733, 48.8360061 2.4060195, 48.8362217 2.4040125, 48.8351933 2.3876342, 48.8388012 2.3804572, 48.8384022 2.3811331, 48.8715269 2.3441475, 48.8746470 2.3057595, 48.8824615 2.3498469, 48.8337124 2.3176364, 48.8367389 2.3923200, 48.8393596 2.3892373, 48.8430418 2.4051424, 48.8458059 2.3717510, 48.8493585 2.3744491, 48.8468441 2.3725504, 48.8472258 2.3726440, 48.8467471 2.3717077, 48.8470172 2.3723416, 48.8462447 2.3719493, 48.8468976 2.3728340, 48.8471104 2.3720281, 48.8444405 2.3728366, 48.8460864 2.3771827, 48.8457514 2.3754798, 48.8474633 2.3712106, 48.8473704 2.3710629, 48.8472924 2.3712576, 48.8470930 2.3706217, 48.8469719 2.3704290, 48.8468671 2.3702623, 48.8468041 2.3701620, 48.8457840 2.3705756, 48.8778477 2.3549476, 48.8470895 2.3710844, 48.8499435 2.3756832, 48.8548916 2.3050685, 48.8471437 2.3484561, 48.8565619 2.3273421, 48.8920695 2.3152913, 48.8710747 2.3050358, 48.8333040 2.3565158, 48.8332931 2.3560025, 48.8492256 2.3422373, 48.8371967 2.2971923, 48.8531115 2.3447283, 48.8228560 2.3164995, 48.8567159 2.3418236, 48.8578252 2.3467061, 48.8592331 2.3473460, 48.8582914 2.3464129, 48.8388814 2.2893381, 48.8936639 2.3472231, 48.8638091 2.3326325, 48.8629051 2.3356927, 48.8648471 2.3365400, 48.8640595 2.3341241, 48.8652388 2.3362171, 48.8664704 2.3357313, 48.8667958 2.3359208, 48.8659945 2.3315480, 48.8505420 2.2888306, 48.8650960 2.3319535, 48.8668168 2.3257587, 48.8547614 2.3395044, 48.8692604 2.3339332, 48.8692690 2.3340349, 48.8748178 2.3602198, 48.8527864 2.3423027, 48.8497835 2.3468492, 48.8524421 2.3546323, 48.8525926 2.3542186, 48.8523187 2.3549674, 48.8722043 2.3250526, 48.8734124 2.3240936, 48.8586565 2.3537620, 48.8567557 2.3551825, 48.8267304 2.3324502, 48.8583361 2.3560324, 48.8691274 2.3007665, 48.8555439 2.3632131, 48.8550844 2.3634743, 48.8523982 2.3636825, 48.8684818 2.3557047, 48.8682462 2.3617582, 48.8678710 2.3558815, 48.8659462 2.3570719, 48.8663823 2.3605584, 48.8664540 2.3608723, 48.8609881 2.3789048, 48.8422950 2.3202566, 48.8430653 2.3214055, 48.8644122 2.3662794, 48.8442494 2.3422817, 48.8794453 2.3684329, 48.8811018 2.3654227, 48.8429257 2.3631379, 48.8675046 2.3539915, 48.8496648 2.3402192, 48.8377970 2.3464058, 48.8759291 2.3587392, 48.8449596 2.3251083, 48.8428926 2.3298403, 48.8535941 2.3383125, 48.8708870 2.3092693, 48.8704088 2.3106942, 48.8700870 2.3111689, 48.8700445 2.3113231, 48.8731008 2.3097181, 48.8717330 2.3147998, 48.8730746 2.3180911, 48.8729256 2.3237568, 48.8722936 2.3258193, 48.8815927 2.3475414, 48.8818743 2.3221457, 48.8784319 2.3268251, 48.8765921 2.3270551, 48.8768790 2.3270689, 48.8767937 2.3270652, 48.8837078 2.3286418, 48.8756281 2.3041375, 48.8750502 2.3048717, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8704404 2.3077470, 48.8717742 2.2984126, 48.8691738 2.3031698, 48.8668308 2.3028826, 48.8686655 2.2984695, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8736939 2.3003734, 48.8731462 2.3024152, 48.8690865 2.3022434, 48.8711232 2.3011684, 48.8715217 2.3076937, 48.8888774 2.3943052, 48.8884053 2.3785210, 48.8457239 2.3448389, 48.8832437 2.3593471, 48.8836193 2.3594167, 48.8813609 2.3620200, 48.8801030 2.3594914, 48.8688585 2.3305811, 48.8788369 2.3643037, 48.8797564 2.3574795, 48.8789739 2.3632105, 48.8831393 2.3659280, 48.8318013 2.3866661, 48.8795548 2.3363831, 48.8750728 2.3584139, 48.8809651 2.3627422, 48.8278673 2.3796510, 48.8488897 2.3684401, 48.8448068 2.3524819, 48.8647693 2.3649321, 48.8632732 2.3526751, 48.8713885 2.2935692, 48.8664199 2.2892440, 48.8683349 2.2891747, 48.8652994 2.2905368, 48.8691051 2.2891789, 48.8743938 2.2895014, 48.8761867 2.2834356, 48.8494162 2.3809935, 48.8383119 2.3229285, 48.8967400 2.3850836, 48.8586659 2.2826833, 48.8194848 2.3266295, 48.8412408 2.3134332, 48.8739957 2.3427413, 48.8742380 2.2811266, 48.8439118 2.3545847, 48.8461978 2.3409102, 48.8505185 2.2705537, 48.8810351 2.3641714, 48.8486125 2.2661824, 48.8848637 2.3606402, 48.8379511 2.2585104, 48.8379036 2.2962662, 48.8853330 2.3604560, 48.8866633 2.3608930, 48.8538117 2.3386948, 48.8907109 2.3246455, 48.8481468 2.3720124, 48.8532543 2.3457644, 48.8531361 2.3463123, 48.8757021 2.3582998, 48.8424656 2.3124799, 48.8423823 2.3125402, 48.8476583 2.3515918, 48.8477032 2.3514397, 48.8487209 2.3475835, 48.8486599 2.3478543, 48.8485999 2.3480789, 48.8456877 2.3450098, 48.8663131 2.3279889, 48.8530038 2.2759292, 48.8604399 2.3007825, 48.8695661 2.3517456, 48.8797757 2.3206849, 48.8536395 2.3074534, 48.8733074 2.3437192, 48.8733772 2.3438855, 48.8650637 2.3417127, 48.8720574 2.3420399, 48.8479558 2.3005672, 48.8465361 2.3054645, 48.8474966 2.3022867, 48.8466710 2.3049905, 48.8469542 2.3080133, 48.8390456 2.3925460, 48.8779440 2.3378300, 48.8798133 2.3502312, 48.8803179 2.3513988, 48.8796570 2.3549177, 48.8790898 2.3556386, 48.8783485 2.3572882, 48.8652754 2.3282212, 48.8643761 2.3308831, 48.8548067 2.3689756, 48.8417997 2.3317623, 48.8768201 2.3458424, 48.8540849 2.3819815, 48.8755250 2.3585349, 48.8466437 2.3698297, 48.8864077 2.2949505, 48.8226147 2.3587102, 48.8499249 2.3462523, 48.8498614 2.3465433, 48.8498802 2.2884724, 48.8479302 2.3878050, 48.8844650 2.3679226, 48.8720379 2.3446636, 48.8565865 2.3275569, 48.8473466 2.3995162, 48.8505331 2.2923753, 48.8413238 2.3028511, 48.8256664 2.3232257, 48.8811174 2.3514426, 48.8727937 2.3157855, 48.8636313 2.3690033, 48.8716438 2.3349837, 48.8714207 2.3349194, 48.8713271 2.3351551, 48.8718954 2.3350541, 48.8768039 2.3336297, 48.8736518 2.3520817, 48.8773396 2.3560770, 48.8846667 2.3765525, 48.8812864 2.3650200, 48.8679824 2.3362288, 48.8710170 2.3202503, 48.8710343 2.3234791, 48.8706452 2.3219942, 48.8705622 2.3263811, 48.8261537 2.3243946, 48.8469348 2.4080026, 48.8853360 2.3350946, 48.8516043 2.2896851, 48.8514717 2.3483308, 48.8618661 2.3831677, 48.8502622 2.3730838, 48.8952730 2.3431920, 48.8929320 2.3433000, 48.8937240 2.3418900, 48.8700380 2.3601770, 48.8698590 2.3605340, 48.8697990 2.3610220, 48.8688100 2.3601130, 48.8704210 2.3610030, 48.8303814 2.3234197, 48.8419958 2.3484398, 48.8432503 2.3497657, 48.8693831 2.3310566, 48.8670604 2.3270370, 48.8721592 2.3333671, 48.8428196 2.3426105, 48.8430085 2.3422700, 48.8736554 2.3360245, 48.8682851 2.3267606, 48.8595817 2.3086929, 48.8658012 2.3360846, 48.8389861 2.3455789, 48.8451928 2.3505337, 48.8302782 2.3020187, 48.8452730 2.3250677, 48.8846283 2.3381804, 48.8829475 2.3284860, 48.8759130 2.3574890, 48.8323604 2.3867916, 48.8827924 2.3402418, 48.8661835 2.3673546, 48.8437234 2.2967496, 48.8340571 2.3460780, 48.8751482 2.3354544, 48.8715708 2.3436597, 48.8799454 2.3289718, 48.8743571 2.3321512, 48.8742308 2.3320216, 48.8766389 2.3417217, 48.8765596 2.3401099, 48.8751153 2.3361132, 48.8400178 2.3810213, 48.8331256 2.2892198, 48.8864902 2.3356152, 48.8852398 2.3300554, 48.8853086 2.3302109, 48.8357551 2.3515624, 48.8879229 2.3208812, 48.8905223 2.3350904, 48.8888344 2.3331457, 48.8797188 2.3507524, 48.8825635 2.3415494, 48.8450576 2.3523824, 48.8500954 2.3476090, 48.8654715 2.3296865, 48.8493566 2.3904152, 48.8557500 2.4005064, 48.8730243 2.3445449, 48.8397318 2.3233917, 48.8688058 2.2924351, 48.8606580 2.3469337, 48.8777667 2.2873179, 48.8280249 2.3153561, 48.8690870 2.3027342, 48.8443530 2.3233390, 48.8399770 2.3236040, 48.8820704 2.3345059, 48.8539009 2.3072420, 48.8821510 2.3708169, 48.8821869 2.3705363, 48.8429639 2.3242562, 48.8473814 2.2833183, 48.8791797 2.3268489, 48.8801993 2.3268856, 48.8753163 2.3262880, 48.8861817 2.3351898, 48.8195998 2.3261186, 48.8508057 2.3698822, 48.8509291 2.3698902, 48.8637194 2.2934262, 48.8279437 2.3297879, 48.8465206 2.4102795, 48.8650372 2.3976697, 48.8241267 2.3617523, 48.8250171 2.3610514, 48.8252188 2.3608916, 48.8734510 2.3486409, 48.8232896 2.3261817, 48.8332485 2.3325552, 48.8900035 2.3233253, 48.8330539 2.2881095, 48.8351584 2.2825386, 48.8901866 2.3614476, 48.8902032 2.3611081, 48.8290014 2.3005012, 48.8413822 2.2626522, 48.8407519 2.2624259, 48.8362022 2.2789552, 48.8234693 2.3306543, 48.8240238 2.3274437, 48.8240433 2.3300803, 48.8242675 2.3289215, 48.8244918 2.3272586, 48.8247043 2.3268143, 48.8247319 2.3264861, 48.8371866 2.2775249, 48.8965141 2.3284414, 48.8648053 2.3525629, 48.8515323 2.3989998, 48.8504360 2.2920472, 48.8263167 2.3603544, 48.8300142 2.3566577, 48.8293227 2.3566885, 48.8910813 2.3604459, 48.8569026 2.3848430, 48.8657299 2.2861084, 48.8542447 2.3075312, 48.8921340 2.3603868, 48.8898808 2.3211159, 48.8808975 2.3516143, 48.8502129 2.3421749, 48.8503717 2.3422419, 48.8293498 2.3748120, 48.8845083 2.3257947, 48.8742228 2.3878024, 48.8562375 2.3660049, 48.8737763 2.3859309, 48.8253189 2.3572256, 48.8478227 2.3708054, 48.8783108 2.3843089, 48.8834554 2.2924752, 48.8868844 2.3216760, 48.8446684 2.4024604, 48.8851415 2.2930709, 48.8850808 2.2936804, 48.8488376 2.4079096, 48.8591599 2.3452377, 48.8587815 2.3453015, 48.8592591 2.3683806, 48.8516052 2.3382057, 48.8731572 2.3252446, 48.8727003 2.3435855, 48.8573332 2.3714718, 48.8803203 2.2858761, 48.8851889 2.2939544, 48.8503654 2.3494131, 48.8840377 2.3149854, 48.8841956 2.3161259, 48.8836123 2.3163235, 48.8760701 2.3456581, 48.8341199 2.2951841, 48.8836722 2.3257995, 48.8550671 2.3865458, 48.8550335 2.3864546, 48.8531762 2.3451166, 48.8497422 2.3507005, 48.8516696 2.2978180, 48.8527079 2.3443015, 48.8528343 2.3441184, 48.8502770 2.2933596, 48.8504482 2.2926945, 48.8465583 2.2886239, 48.8518053 2.3448347, 48.8726389 2.3422288, 48.8568044 2.3030573, 48.8436459 2.3526224, 48.8471731 2.3316624, 48.8469032 2.3316463, 48.8475577 2.3718376, 48.8390750 2.3316473, 48.8710803 2.3248004, 48.8589774 2.3504303, 48.8581962 2.3502811, 48.8471284 2.3776102, 48.8762008 2.3710157, 48.8732766 2.3450350, 48.8260384 2.3259184, 48.8569311 2.3033559, 48.8622200 2.3495080, 48.8657793 2.3299663, 48.8549752 2.3046163, 48.8348854 2.3296013, 48.8812883 2.3374059, 48.8489375 2.3468099, 48.8488721 2.3470349, 48.8781775 2.2853021, 48.8526126 2.3891625, 48.8868980 2.3004690, 48.8844510 2.2979890, 48.8406136 2.3344845, 48.8432192 2.3494400, 48.8481440 2.3425188, 48.8493373 2.3431508, 48.8758850 2.3269550, 48.8767160 2.3270270, 48.8769450 2.3270030, 48.8769450 2.3270030, 48.8683432 2.2918443, 48.8766674 2.3587492, 48.8497393 2.3381789, 48.8487972 2.3410105, 48.8663034 2.2866997, 48.8645222 2.2823193, 48.8780091 2.3872453, 48.8804643 2.3742916, 48.8823048 2.3710585, 48.8425624 2.3243275, 48.8754147 2.3888922, 48.8818092 2.3740520, 48.8436267 2.3524487, 48.8436267 2.3524487, 48.8464533 2.3058161, 48.8552220 2.3306960, 48.8349736 2.3602946, 48.8279496 2.3689120, 48.8704582 2.3268384, 48.8480250 2.3424208, 48.8808600 2.3024094, 48.8681579 2.3004143, 48.8548818 2.3332071, 48.8683305 2.3330172, 48.8613358 2.2863597, 48.8591494 2.2846290, 48.8763033 2.3463522, 48.8615283 2.3426262, 48.8580936 2.3529258, 48.8707591 2.2931194, 48.8399900 2.2848503, 48.8498554 2.3461592, 48.8779414 2.2955547, 48.8784951 2.3709483, 48.8582177 2.3718944, 48.8565568 2.3059811, 48.8731587 2.3643941, 48.8494061 2.3987583, 48.8903884 2.3792665, 48.8399675 2.3918531, 48.8674341 2.3966731, 48.8357607 2.3019643, 48.8780937 2.3647247, 48.8639385 2.3658779, 48.8691590 2.3641891, 48.8615198 2.3709980, 48.8578089 2.3768843, 48.8616072 2.3620921, 48.8654371 2.3657135, 48.8659977 2.3674507, 48.8656162 2.3676880, 48.8629114 2.3676068, 48.8584046 2.3777246, 48.8585931 2.3685540, 48.8630233 2.3644881, 48.8453126 2.3836601, 48.8660449 2.3682896, 48.8659929 2.3685758, 48.8634531 2.3609298, 48.8636111 2.3608349, 48.8623589 2.3732346, 48.8337720 2.3312182, 48.8822355 2.3930133, 48.8374147 2.2587399, 48.8421264 2.3127643, 48.8478009 2.3422541, 48.8483795 2.3426037, 48.8709790 2.3304633, 48.8822668 2.3317439, 48.8820490 2.3316649, 48.8268796 2.3591197, 48.8434570 2.3202557, 48.8671379 2.3838211, 48.8590485 2.3668105, 48.8795188 2.3562771, 48.8794595 2.3567982, 48.8794947 2.3565291, 48.8651168 2.3565931, 48.8580886 2.3708776, 48.8575757 2.3698730, 48.8640800 2.3686697, 48.8639711 2.3687304, 48.8592501 2.3409933, 48.8592411 2.3408997, 48.8795621 2.3556783, 48.8793903 2.3556516, 48.8310268 2.3299085, 48.8581355 2.3776215, 48.8583251 2.3780178, 48.8580854 2.3775006, 48.8610769 2.3787886, 48.8618089 2.3626401, 48.8827065 2.3421526, 48.8479497 2.3423497, 48.8498319 2.3430667, 48.8330291 2.3326221, 48.8550826 2.3625198, 48.8642095 2.3750958, 48.8800813 2.4078578, 48.8608893 2.3783489, 48.8774405 2.3516182, 48.8716336 2.3781382, 48.8803508 2.3196013, 48.8803226 2.3197300, 48.8797334 2.3208324, 48.8732586 2.3431878, 48.8731949 2.3435448, 48.8490958 2.3892034, 48.8322100 2.3163892, 48.8448885 2.2525142, 48.8387190 2.2887410, 48.8654958 2.3602194, 48.8620490 2.3855022, 48.8625965 2.3867261, 48.8590356 2.3074168, 48.8811534 2.3401795, 48.8548974 2.3061456, 48.8640478 2.3719991, 48.8629730 2.3725842, 48.8690799 2.3627798, 48.8309620 2.3306490, 48.8550470 2.3337283, 48.8726353 2.3020591, 48.8756218 2.3002330, 48.8691727 2.3575022, 48.8480115 2.3767847, 48.8582076 2.3104628, 48.8836701 2.3426942, 48.8416436 2.3023754, 48.8697369 2.3561524, 48.8433685 2.3067399, 48.8453062 2.3098838, 48.8487081 2.2983306, 48.8721186 2.3280405, 48.8631266 2.3493066, 48.8820964 2.2821515, 48.8721229 2.3033103, 48.8723588 2.3088888, 48.8742260 2.3045270, 48.8722300 2.3035311, 48.8723468 2.3092947, 48.8583520 2.3817005, 48.8727104 2.3366864, 48.8928553 2.3410634, 48.8720938 2.3452475, 48.8723737 2.3447919, 48.8905029 2.3176430, 48.8655229 2.3528371, 48.8586618 2.3548945, 48.8340088 2.2873349, 48.8852894 2.3358999, 48.8391712 2.3065751, 48.8383845 2.3209532, 48.8487664 2.2919554, 48.8920470 2.3024290, 48.8537967 2.3662670, 48.8305359 2.3382127, 48.8467766 2.2962381, 48.8478107 2.2976980, 48.8477629 2.2937636, 48.8458693 2.2983137, 48.8451167 2.2972807, 48.8460129 2.2788621, 48.8336435 2.2870519, 48.8609042 2.3467975, 48.8609645 2.3439879, 48.8606167 2.3438308, 48.8358096 2.2924119, 48.8626621 2.3480358, 48.8632014 2.3489279, 48.8485058 2.2987839, 48.8503319 2.2982277, 48.8496541 2.2970273, 48.8548250 2.2922891, 48.8505295 2.2887720, 48.8626435 2.3399046, 48.8662424 2.3373468, 48.8555019 2.2928356, 48.8664339 2.3251380, 48.8672054 2.3373463, 48.8664296 2.3398955, 48.8698384 2.3301357, 48.8690729 2.3324359, 48.8663041 2.3507132, 48.8657702 2.3508350, 48.8487692 2.3494934, 48.8497809 2.3452256, 48.8503513 2.3450367, 48.8497802 2.3724158, 48.8573106 2.3543715, 48.8564649 2.3570459, 48.8552252 2.3624659, 48.8539824 2.3675485, 48.8673776 2.3624747, 48.8642399 2.3579343, 48.8641558 2.3576834, 48.8633203 2.3623726, 48.8462693 2.3425072, 48.8503978 2.3393909, 48.8381496 2.3497215, 48.8781298 2.3553218, 48.8794165 2.3584057, 48.8719873 2.3493219, 48.8791508 2.3620731, 48.8793857 2.3585512, 48.8718470 2.3496329, 48.8739599 2.3504213, 48.8701107 2.3571666, 48.8795273 2.3583384, 48.8740739 2.3501524, 48.8710667 2.3499360, 48.8746698 2.3557687, 48.8791694 2.3579809, 48.8794618 2.3581896, 48.8831847 2.3736693, 48.8510976 2.3274782, 48.8655318 2.3831817, 48.8656412 2.3664939, 48.8696278 2.3747304, 48.8576463 2.3728295, 48.8536962 2.3882114, 48.8695579 2.3745034, 48.8920187 2.3847925, 48.8443175 2.3235205, 48.8451015 2.3209567, 48.8676142 2.3213457, 48.8728467 2.3165166, 48.8727886 2.3158091, 48.8730228 2.3161558, 48.8733647 2.3181572, 48.8737030 2.3201997, 48.8717473 2.3234876, 48.8721694 2.3263232, 48.8753481 2.3233901, 48.8809428 2.3229456, 48.8497832 2.3094782, 48.8767783 2.3066420, 48.8751931 2.3013656, 48.8728034 2.3448929, 48.8729693 2.3436019, 48.8737675 2.3454198, 48.8734088 2.3439633, 48.8714238 2.3278025, 48.8713002 2.3277769, 48.8718146 2.3278778, 48.8717067 2.3278605, 48.8818357 2.3285868, 48.8778519 2.3276641, 48.8812100 2.3290931, 48.8798176 2.3287392, 48.8825973 2.3280223, 48.8778495 2.3279191, 48.8821375 2.3285672, 48.8813884 2.3274308, 48.8814057 2.3282568, 48.8736020 2.3345619, 48.8819244 2.3409828, 48.8761321 2.3419588, 48.8774940 2.3382643, 48.8761998 2.3369223, 48.8795288 2.3342543, 48.8763684 2.3352005, 48.8718594 2.2978476, 48.8750687 2.3920520, 48.8654125 2.3983360, 48.8742921 2.4052243, 48.8929084 2.3216284, 48.8936294 2.3231896, 48.8925063 2.3224334, 48.8834670 2.3253587, 48.8834159 2.3250805, 48.8934196 2.3250693, 48.8875714 2.3189955, 48.8877239 2.3187185, 48.8899868 2.3233274, 48.8859419 2.3247766, 48.8850855 2.3250309, 48.8837250 2.3449137, 48.8859112 2.3375816, 48.8854507 2.3336093, 48.8495763 2.3798752, 48.8464004 2.3766541, 48.8512589 2.3755154, 48.8398408 2.3815157, 48.8350025 2.3485584, 48.8298177 2.3535320, 48.8282216 2.3502281, 48.8272192 2.3520564, 48.8301934 2.3530001, 48.8257554 2.3528800, 48.8257632 2.3526361, 48.8326346 2.3593458, 48.8328846 2.3572823, 48.8374662 2.3728523, 48.8345042 2.3543785, 48.8289147 2.3741373, 48.8253112 2.3613611, 48.8228445 2.3614393, 48.8828150 2.3345432, 48.8401015 2.3306768, 48.8424127 2.3235503, 48.8420098 2.3232266, 48.8387045 2.3230599, 48.8412334 2.3257995, 48.8401876 2.3221698, 48.8425142 2.3236617, 48.8316304 2.3400175, 48.8338798 2.3287567, 48.8369103 2.3238769, 48.8368706 2.3240469, 48.8383272 2.2904886, 48.8353004 2.3231703, 48.8446043 2.3087314, 48.8282857 2.3249208, 48.8236672 2.3248089, 48.8238179 2.3241127, 48.8299897 2.3202251, 48.8272146 2.3159783, 48.8235715 2.3250084, 48.8432967 2.3071264, 48.8752556 2.2866823, 48.8704922 2.2798118, 48.8688673 2.2827932, 48.8645905 2.2778893, 48.8506499 2.2751573, 48.8515603 2.2775836, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8767975 2.2920290, 48.8750231 2.2935901, 48.8795379 2.2855888, 48.8759878 2.2939427, 48.8871244 2.3142231, 48.8852343 2.2933820, 48.8756429 2.2938771, 48.8765806 2.2929735, 48.8870568 2.3143431, 48.8848968 2.3034428, 48.8792208 2.2876966, 48.8763229 2.2931781, 48.8852857 2.3080064, 48.8496595 2.2837044, 48.8497921 2.2852692, 48.8365548 2.3939809, 48.8684106 2.3282777, 48.8728354 2.3613759, 48.8944493 2.3120125, 48.8599349 2.4026082, 48.8729633 2.3586429, 48.8482765 2.2983856, 48.8792645 2.3577254, 48.8663807 2.3041556, 48.8542680 2.3078406, 48.8802164 2.2842407 +48.8697794 2.2369872 +París +2 +fr:Musée de l'Armée (Paris), fr:Musée de l'AP-HP, fr:Musée des Arts décoratifs de Paris, fr:Musée des arts et métiers, fr:Tour Jean-sans-Peur, fr:Musée Gustave-Moreau, fr:Égouts de Paris, fr:Espace Dalí, fr:Cité des sciences et de l'industrie, fr:Maison de Victor Hugo, fr:Musée en Herbe, fr:Maison européenne de la photographie, fr:Musée de l'Éventail, fr:Catacombes de Paris, fr:Musée de l'érotisme (Paris), fr:Petit Palais, fr:Musée de la Légion d'honneur, fr:Conciergerie, fr:L'Adresse Musée de La Poste, fr:Musée Baccarat (Paris), fr:Forum des images, fr:Musée du Chocolat (Paris), fr:Cité de l'architecture et du patrimoine, fr:Musée national de la Marine, fr:Musée de la franc-maçonnerie, fr:Musée de la Contrefaçon, fr:Musée Dapper, fr:Musée des Arts forains, fr:Musée arménien de France, fr:Musée Dupuytren, fr:Musée Valentin-Haüy, fr:Musée national Jean-Jacques Henner, fr:Musée des lettres et manuscrits, fr:Crypte archéologique du parvis Notre-Dame, fr:Bibliothèque-musée de l'Opéra, fr:Musée national d'art moderne, fr:Musée de l'Ordre de la Libération, fr:Musée des Plans-reliefs, fr:Musée de l'Homme, fr:Musée du quai Branly, fr:Galerie de minéralogie et de géologie du Muséum national d'histoire naturelle, fr:Galerie de paléontologie et d'anatomie comparée du Muséum national d'histoire naturelle, fr:Halle Saint Pierre, musée d'Art Brut et d'Art Singulier, fr:Hôtel de Sully, fr:Musée du Louvre, fr:Galerie nationale du Jeu de Paume, fr:Musée de l'Orangerie, fr:Musée national d'art moderne#Atelier Brancusi, fr:Musée Curie, fr:Grand Palais (Paris), fr:Pavillon de l'Arsenal, fr:Musée de Cluny, fr:Archives nationales (France), fr:Musée Picasso (Paris), fr:Musée Cognacq-Jay, fr:musée Delacroix, fr:Cité nationale de l'histoire de l'immigration, fr:Musée d'Orsay, fr:Musée Cernuschi, fr:Musée Rodin, fr:Cinémathèque française, fr:Fondation Pierre Bergé - Yves Saint-Laurent, fr:Musée d'art moderne de la ville de paris, fr:Palais de Tokyo, fr:Grande galerie de l'évolution, fr:Musée de la vie romantique, fr:Maison de Balzac, fr:Maison de la culture du Japon à Paris, fr:Musée Zadkine, fr:Musée de Montmartre, fr:Musée de la chasse et de la nature, fr:Manufacture des Gobelins, fr:Musée du Luxembourg, fr:Palais de la découverte, fr:Centre culturel suédois, fr:Musée de la Magie, fr:Hôtel de la Monnaie (Paris), fr:Musée Galliera, fr:Musée Bourdelle, fr:Musée Carnavalet, fr:Petit Palais, fr:Sainte-Chapelle, fr:Musée du Louvre +9 +55.9533748 -3.1895989 +yes +yes +yes +49.4212804 8.6803337 +54.1816830 7.8898378, 54.1821258 7.8888114, 54.1823120 7.8882374, 54.1827026 7.8873652, 54.1828961 7.8855741, 53.6568376 9.7983056, 54.1804232 7.8864167, 53.7390518 9.6573156, 53.7395327 9.6581624, 53.7376641 9.6627171, 53.7451281 9.6581813, 53.7521611 9.6722464, 53.7526487 9.6549005, 53.7526402 9.6549076, 53.7526339 9.6548933, 53.7526579 9.6548838, 53.7537386 9.6544662, 53.7538859 9.6528848, 53.7562786 9.6508073, 53.7555235 9.6524604, 53.7555579 9.6524447, 53.7568365 9.6502144, 53.7555393 9.6524549, 53.7506919 9.9613928, 53.7491025 9.9442938, 53.7483330 9.9379710 +Hopfingerbräu im Palais +yes +9 +47 +2 +48.8475254 2.3740095, 48.8462510 2.3943117, 48.8470333 2.3936300, 48.8758689 2.3483462, 48.8828001 2.3714770, 48.8820834 2.3282055, 48.8762091 2.3397990, 48.8473872 2.3414431, 48.8421474 2.2852928, 48.8279402 2.3288089, 48.8579444 2.3717706, 48.8470191 2.3535114, 48.8927622 2.3434358, 48.8541702 2.3858665, 48.8532844 2.3390695, 48.8598488 2.3084707, 48.8855486 2.2906636, 48.8838490 2.2883840, 48.8842390 2.2945020, 48.8360380 2.3520261, 48.8755166 2.3946714, 48.8769610 2.3659286, 48.8477091 2.3186906, 48.8584888 2.3703620, 48.8736719 2.3586685, 48.8468320 2.3060776, 48.8420347 2.3288429, 48.8826690 2.3244518, 48.8472059 2.3423102, 48.8738022 2.3088365, 48.8712166 2.3498874, 48.8515541 2.3234852, 48.8570369 2.3595739, 48.8471373 2.3529239, 48.8445332 2.3733365 +yes +Fahrschule Formel 1, Fahrschule Jung, Fahrschule Lechner, Fahrschule Gölz, Fahrschule Finkenzeller, Wagner, Fahrschule i-drive, Fahrschule Jung and 49.3743365 8.6827546, 49.4285627 8.6458063, 49.3802219 8.6868984, 49.3845526 8.6676364, 49.4239337 8.6493485, 49.4059368 8.6924965, 49.3994161 8.6879728, 49.3824623 8.6753775, 49.3799295 8.6700670 ++33143070223 +17 +80 +yes +567.8 +49.4092987 8.6848369 +55.9248874 -3.1446384, 55.9239715 -3.2172066, 55.9236428 -3.3787970, 55.9266397 -3.1430694, 55.9273365 -3.1468138, 55.9272404 -3.1469500, 55.9437963 -3.2690458, 55.9437692 -3.2690140, 55.9437669 -3.2690698, 55.9441583 -3.2706738, 55.9441792 -3.2706105, 55.9440317 -3.2697714, 55.9440254 -3.2698444, 55.9437692 -3.2697236, 55.9437794 -3.2696680, 55.9439859 -3.2702368, 55.9437518 -3.2698379, 55.9439954 -3.2701198, 55.9437029 -3.2701661, 55.9444013 -3.2708908, 55.9444228 -3.2708576, 55.9444139 -3.2708735, 55.9443882 -3.2709008, 55.9435460 -3.2696575, 55.9435587 -3.2695991, 55.9466158 -3.2694706, 55.9473595 -3.2707429, 55.9466516 -3.2694746, 55.9560835 -3.1136081, 55.9561317 -3.1137360, 55.9495184 -3.2714594, 55.9301628 -3.3881013, 55.9222112 -3.3806457, 55.9692421 -3.2790022, 55.9692534 -3.2789856, 55.9692762 -3.2790819, 55.9692943 -3.2789277, 55.9693197 -3.2790307, 55.9744612 -3.1738616, 55.9744206 -3.1741512, 55.9182420 -3.2999578, 55.9179174 -3.2997514, 55.9128038 -3.3143983, 55.9833224 -3.2415764, 55.9138023 -3.1790167, 55.9510031 -3.2913527, 55.9510337 -3.2911449, 55.9519291 -3.2177129, 55.9366259 -3.2046536, 55.9368934 -3.2046063, 55.9196251 -3.2016290, 55.9249355 -3.1445413, 55.9067281 -3.3259272, 55.9649043 -3.2105119, 55.9151968 -3.3215433 +63 +Cowdenbeath, South Queensferry, Linlithgow, Kincardine, Broxburn, Bathgate, Grangemouth, Bo'ness, Inverkeithing, Dalgety Bay, Rosyth, Livingston, Mid Calder, East Calder, Whitburn, Blackburn, West Calder, Fauldhouse, Armadale, Polmont +yes diff --git a/smtsemparsecpp/data/nlmaps.test.id b/smtsemparsecpp/data/nlmaps.test.id new file mode 100644 index 000000000..dbcdcbee8 --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.test.id @@ -0,0 +1,880 @@ +w132 +h238 +e91 +e222-south +n368 +e37 +n880 +w6 +p198-east +n285 +n314 +n649 +h126 +p181 +e117 +e27 +h90 +h176 +n40 +n654 +w84 +n677 +n267 +n114 +e218-west +n504 +n270 +e216-south +e145 +n203 +n49 +p274-east +e177-west +n410 +h191 +n632 +h64-south +n6 +e293 +n434 +p77 +e46 +w16 +n616 +n737 +h39 +h241 +e216-west +h125 +e41 +e68 +h204-west +e8 +h53 +e176-west +n492 +p145 +n802 +n883 +w200-south +n315 +h6 +n183 +e131 +n742 +p118 +p95 +n269 +e136 +e237-east +e208 +e298-south +e171 +p40 +n105 +e270 +e160 +n836 +n214 +n833 +n539 +n560 +n409 +w197 +n344 +p45 +n483 +w10 +w23 +e178-south +h283 +n310 +n215 +p44 +e159 +p20 +h167 +e53-south +e206 +n811 +n3 +h59 +n896 +n470 +p138 +w112 +e129 +n700 +n698 +e58-west +e249 +n750 +n764 +p57 +e10-west +h251-south +p51 +n843 +w61 +w188 +w165 +p174-west +n522 +h54-south +e135 +e141 +n547 +h50 +h271 +w192 +h62-south +w53 +p290-east +n216 +w134 +n39 +e34 +e97 +n685 +w191 +n856 +e75 +n571 +n821 +h189 +n889 +w109 +p9-south +n402 +n320 +p51-south +p233 +h57-east +p160 +p202 +w123-west +e86 +n530 +n243 +n678 +h211 +n65 +p269 +h165 +w151 +h67-east +w87 +e4 +p50-west +n378 +p183 +w168 +n146 +n781 +e31 +e161 +e107 +n882 +n266 +p120 +h226-east +e111 +n521 +n763 +e202 +n217 +n662 +n176 +n518 +p261-south +e113-east +h225-east +n58 +n484 +w74 +n517 +n828 +n515 +p74 +e230 +n99 +e113 +n360 +n117 +n710 +p123 +n513 +n448 +n790 +w199-south +n477 +n382 +h65 +w9 +n74 +h261 +e79 +e165 +h257-east +w118 +w33 +n292 +w72 +h212-east +p10 +e176-south +h10-south +h190-west +p81 +w54 +p246 +e284 +n549 +h293 +p174-east +p187-east +n318 +n770 +p29 +p49 +n582 +p186-east +h65-east +h30-east +h14 +n826 +e184 +h75 +n776 +w190-south +e201 +p207 +n135 +h214-south +h260 +e188-south +p28 +n212 +p87 +n482 +p111 +n746 +n154 +h15 +p178 +e178-east +e298 +w15 +w98 +n532 +e47 +h7 +h93 +n788 +n192 +e17 +e146 +n617 +n83 +w184 +n638 +h73 +h278 +h229 +p178-west +p92 +n590 +p273 +e109 +e271-west +w108 +e48 +h254 +h49-west +p144 +n735 +h212 +n325 +n820 +n313 +p245 +e137-east +n508 +w73 +p99 +h253 +n608 +n306 +e114 +n588 +n71 +h122 +n443 +e60 +n591 +n553 +p294 +p271 +n372 +e61 +p19 +n691 +p169-east +n283 +n282 +h118 +n273 +n189 +p234 +h102 +p76 +p250 +e130 +h120 +n291 +h282 +e192 +n728 +e140 +e229 +h114-west +p263 +e214 +e196 +n575 +h280 +n297 +h236 +n524 +n144 +p112 +n15 +e64 +p57-west +w144-east +p94 +n669 +p79 +e11 +h78 +n79 +e264 +h204 +n500 +h262 +n866 +e166 +w64 +n223 +n506 +w113 +n766 +e196-south +h180-south +n613 +n544 +e296 +n874 +e218-east +n280 +n113 +h292-east +w73-west +e168 +w50 +h285 +p197 +n803 +h216 +e295 +w131 +n233 +h204-east +p91 +p59 +n141 +n350 +n814 +w119 +h275 +e227 +h145 +n26 +p154 +h163 +h223 +w139 +n822 +n727 +e243 +p13 +n860 +e113-west +p65 +e263 +h166 +n356 +h300 +n877 +w154 +e115 +h112 +n281 +n801 +p238 +n232 +n656 +h257-west +e15 +n704 +p97-east +w100 +n175 +n586 +p103 +h142 +h155 +n782 +p236 +e177-south +n129 +n290 +p254 +n459 +e139 +e148 +p110 +h233 +w120 +e239 +w43 +n149 +e157-west +e279 +w174 +h249 +h279 +n699 +n876 +p68 +e88 +e112 +n551 +h57 +w196 +e237 +h27 +n136 +h185 +e157 +w95 +n322 +p52-west +h96 +e157-east +p56 +n864 +w169-east +n838 +p196 +e198-west +p188-west +n319 +p52-east +n206 +n595 +e183-east +n436 +p43 +e71 +e9 +p105 +n490 +h114 +n531 +e291 +p244 +h81 +w74-south +h8 +n886 +n45 +n230 +n850 +h187 +h60 +h253-east +e51 +n100 +e12 +h193-west +n438 +h226 +p88 +n36 +n163 +h149 +h76 +e235 +w60 +h31 +h172 +e83 +e158 +w164 +n169 +h48-east +n555 +n441 +n493 +e113-south +n602 +n489 +e47-east +e7 +n674 +n846 +h139 +n712 +p198-west +n278 +h49-east +n622 +h171-south +e288-east +h230 +w2 +p279 +p9-east +e101 +w37 +n461 +n812 +n392 +w135-south +e147 +h184 +n507 +n505 +e63-east +n468 +n122 +n643 +h211-west +e61-east +h295 +n840 +h133 +p252 +n466 +n798 +h251-west +p168-east +e187 +p27 +e9-south +n260 +e272 +n5 +h30-west +n235 +w124 +n447 +n14 +n714 +n242 +p228 +e96 +n481 +h58-west +h188 +n420 +n847 +p153 +p32 +e67 +n57 +p249 +p157 +e76 +n537 +n837 +h266 +h16 +p240 +p30-east +n328 +w93 +n668 +e168-east +p97-south +h226-west +w38 +h198-west +n862 +n250 +w123-south +n695 +n308 +e276-south +n93 +n858 +h157 +h107 +h250 +n256 +n1 +n739 +n660 +e198-east +h174 +e124 +n578 +e10-east +e20 +n855 +e29-east +n75 +e137 +n431 +h57-south +n719 +p257 +h203 +h224-west +p217-east +n204 +w121 +p177 +h115 +w186-east +e164 +n213 +e250 +e87 +n191 +n661 +h70 +n546 +w63 +p208 +e103 +p107 +n162 +e182 +e108 +n102 +w130 +w198-west +p10-west +e173 +n572 +n293 +n207 +e253 +n366 +p298 +h251-east +n419 +p184 +e232 +p290-south +h191-east +n893 +n523 +p174 +e28 +w143 +w189 +n119 +p264-west +p225 +n59 +h298 +n474 +e264-west +e283 +n873 +n241 +w58 +h194 +h198 +p17 +p221 +n606 +n37 +e267 +n20 +n134 +h82 +h141 +h130 +n417 +p187-south +h191-west +n416 +w102 +n164 +p234-east +p14 +e297 +e23 +h193 +n150 +n509 +p44-south +e84 +p53 +p174-south +h220 +n17 +n424 +n849 +n805 +h192 +n16 +e30 +h287 +p296 +h114-south +n211 +n339 +h20 +w82 +p8 +e61-west +h198-east +h9-east +h4 +n403 +n42 +p63 +n519 +e121 +e278 +n51 +p185 +p260 +n326 +h160 +n658 +n439 +p24 +n160 +n346 +p130 +n174 +p169 +n70 +h208 +n496 +w148 +h106 +h237 +n584 +n415 +h193-south +n375 +p201 +w39 +p52 +n289 +n787 +e48-south +h13 +h218 +e57 +e222-west +n457 +n675 +p56-west +h273 +p188-east +e221 +w73-east +w136 +n121 +n245 +n762 +w149 +p49-south +e65 +e58-east +h64-east +n795 +p178-east +h127 +h209-south +p239 +n791 +p231 +n851 +e49-west +n73 +h214-east +n108 +e197-east +n725 +p274-south +e216-east +n171 +e224 +n749 +n224 +h66 +p108 +n161 +w156 +p217 +h105 +e195 +e244 +w135-east +p264-east +n396 +h183-west +n657 +w75 +h200 +e110 +n525 +n480 +n653 +h178 +h224-south +w92 +p212 +p242 +p204-south +n80 +p62 +p117 +n693 +e165-south +p255 +h171-west +e238 +n514 +e1 +n673 +n64 +w80 +w125 +n354 +n35 +e9-west +e10-south +n890 +n345 +h291 +n859 +e49-south +n194 +n774 +n28 +n172 +n458 +w146 +e29-west +h275-west diff --git a/smtsemparsecpp/data/nlmaps.test.line b/smtsemparsecpp/data/nlmaps.test.line new file mode 100644 index 000000000..d349d106a --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.test.line @@ -0,0 +1,880 @@ +1332 +1138 +1791 +2374 +368 +1737 +880 +1206 +2081 +285 +314 +649 +1026 +1581 +1817 +1727 +990 +1076 +40 +654 +1284 +677 +267 +114 +2249 +504 +270 +2372 +1845 +203 +49 +2089 +2241 +410 +1091 +632 +2268 +6 +1993 +434 +1477 +1746 +1216 +616 +737 +939 +1141 +2248 +1025 +1741 +1768 +2155 +1708 +953 +2240 +492 +1545 +802 +883 +2309 +315 +906 +183 +1831 +742 +1518 +1495 +269 +1836 +2124 +1908 +2380 +1871 +1440 +105 +1970 +1860 +836 +214 +833 +539 +560 +409 +1397 +344 +1445 +483 +1210 +1223 +2366 +1183 +310 +215 +1444 +1859 +1420 +1067 +2353 +1906 +811 +3 +959 +896 +470 +1538 +1312 +1829 +700 +698 +2231 +1949 +750 +764 +1457 +2223 +2291 +1451 +843 +1261 +1388 +1365 +2205 +522 +2263 +1835 +1841 +547 +950 +1171 +1392 +2267 +1253 +2091 +216 +1334 +39 +1734 +1797 +685 +1391 +856 +1775 +571 +821 +1089 +889 +1309 +2310 +402 +320 +2318 +1633 +2008 +1560 +1602 +2173 +1786 +530 +243 +678 +1111 +65 +1669 +1065 +1351 +2014 +1287 +1704 +2192 +378 +1583 +1368 +146 +781 +1731 +1861 +1807 +882 +266 +1520 +2031 +1811 +521 +763 +1902 +217 +662 +176 +518 +2341 +2107 +2030 +58 +484 +1274 +517 +828 +515 +1474 +1930 +99 +1813 +360 +117 +710 +1523 +513 +448 +790 +2308 +477 +382 +965 +1209 +74 +1161 +1779 +1865 +2037 +1318 +1233 +292 +1272 +2027 +1410 +2364 +2258 +2150 +1481 +1254 +1646 +1984 +549 +1193 +2076 +2079 +318 +770 +1429 +1449 +582 +2078 +2013 +2003 +914 +826 +1884 +975 +776 +2305 +1901 +1607 +135 +2284 +1160 +2368 +1428 +212 +1487 +482 +1511 +746 +154 +915 +1578 +2115 +1998 +1215 +1298 +532 +1747 +907 +993 +788 +192 +1717 +1846 +617 +83 +1384 +638 +973 +1178 +1129 +2206 +1492 +590 +1673 +1809 +2253 +1308 +1748 +1154 +2136 +1544 +735 +1112 +325 +820 +313 +1645 +2108 +508 +1273 +1499 +1153 +608 +306 +1814 +588 +71 +1022 +443 +1760 +591 +553 +1694 +1671 +372 +1761 +1419 +691 +2075 +283 +282 +1018 +273 +189 +1634 +1002 +1476 +1650 +1830 +1020 +291 +1182 +1892 +728 +1840 +1929 +2146 +1663 +1914 +1896 +575 +1180 +297 +1136 +524 +144 +1512 +15 +1764 +2197 +2045 +1494 +669 +1479 +1711 +978 +79 +1964 +1104 +500 +1162 +866 +1866 +1264 +223 +506 +1313 +766 +2369 +2273 +613 +544 +1996 +874 +2122 +280 +113 +2040 +2163 +1868 +1250 +1185 +1597 +803 +1116 +1995 +1331 +233 +2024 +1491 +1459 +141 +350 +814 +1319 +1175 +1927 +1045 +26 +1554 +1063 +1123 +1339 +822 +727 +1943 +1413 +860 +2235 +1465 +1963 +1066 +356 +1200 +877 +1354 +1815 +1012 +281 +801 +1638 +232 +656 +2168 +1715 +704 +2070 +1300 +175 +586 +1503 +1042 +1055 +782 +1636 +2365 +129 +290 +1654 +459 +1839 +1848 +1510 +1133 +1320 +1939 +1243 +149 +2237 +1979 +1374 +1149 +1179 +699 +876 +1468 +1788 +1812 +551 +957 +1396 +1937 +927 +136 +1085 +1857 +1295 +322 +2194 +996 +2109 +1456 +864 +2047 +838 +1596 +2247 +2209 +319 +2065 +206 +595 +2116 +436 +1443 +1771 +1709 +1505 +490 +1014 +531 +1991 +1644 +981 +2289 +908 +886 +45 +230 +850 +1087 +960 +2036 +1751 +100 +1712 +2153 +438 +1126 +1488 +36 +163 +1049 +976 +1935 +1260 +931 +1072 +1783 +1858 +1364 +169 +2004 +555 +441 +493 +2359 +602 +489 +2096 +1707 +674 +846 +1039 +712 +2210 +278 +2005 +622 +2272 +2130 +1130 +1202 +1679 +2056 +1801 +1237 +461 +812 +392 +2300 +1847 +1084 +507 +505 +2104 +468 +122 +643 +2157 +2103 +1195 +840 +1033 +1652 +466 +798 +2166 +2074 +1887 +1427 +2347 +260 +1972 +5 +2134 +235 +1324 +447 +14 +714 +242 +1628 +1796 +481 +2140 +1088 +420 +847 +1553 +1432 +1767 +57 +1649 +1557 +1776 +537 +837 +1166 +916 +1640 +2058 +328 +1293 +668 +2111 +2324 +2162 +1238 +2154 +862 +250 +2298 +695 +308 +2378 +93 +858 +1057 +1007 +1150 +256 +1 +739 +660 +2120 +1074 +1824 +578 +2094 +1720 +855 +2095 +75 +1837 +431 +2264 +719 +1657 +1103 +2160 +2084 +204 +1321 +1577 +1015 +2050 +1864 +213 +1950 +1787 +191 +661 +970 +546 +1263 +1608 +1803 +1507 +162 +1882 +1808 +102 +1330 +2182 +2186 +1873 +572 +293 +207 +1953 +366 +1698 +2035 +419 +1584 +1932 +2345 +2020 +893 +523 +1574 +1728 +1343 +1389 +119 +2217 +1625 +59 +1198 +474 +2252 +1983 +873 +241 +1258 +1094 +1098 +1417 +1621 +606 +37 +1967 +20 +134 +982 +1041 +1030 +417 +2333 +2151 +416 +1302 +164 +2086 +1414 +1997 +1723 +1093 +150 +509 +2314 +1784 +1453 +2330 +1120 +17 +424 +849 +805 +1092 +16 +1730 +1187 +1696 +2271 +211 +339 +920 +1282 +1408 +2232 +2023 +2001 +904 +403 +42 +1463 +519 +1821 +1978 +51 +1585 +1660 +326 +1060 +658 +439 +1424 +160 +346 +1530 +174 +1569 +70 +1108 +496 +1348 +1006 +1137 +584 +415 +2278 +375 +1601 +1239 +1452 +289 +787 +2351 +913 +1118 +1757 +2250 +457 +675 +2196 +1173 +2080 +1921 +2032 +1336 +121 +245 +762 +1349 +2316 +1765 +2102 +2012 +795 +2077 +1027 +2281 +1639 +791 +1631 +851 +2227 +73 +2028 +108 +2119 +725 +2343 +2121 +171 +1924 +749 +224 +966 +1508 +161 +1356 +1617 +1005 +1895 +1944 +2044 +2088 +396 +2149 +657 +1275 +1100 +1810 +525 +480 +653 +1078 +2285 +1292 +1612 +1642 +2337 +80 +1462 +1517 +693 +2362 +1655 +2147 +1938 +514 +1701 +673 +64 +1280 +1325 +354 +35 +2222 +2348 +890 +345 +1191 +859 +2352 +194 +774 +28 +172 +458 +1346 +2224 +2170 diff --git a/smtsemparsecpp/data/nlmaps.test.mrl b/smtsemparsecpp/data/nlmaps.test.mrl new file mode 100644 index 000000000..7831ed6d4 --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.test.mrl @@ -0,0 +1,880 @@ +query(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school'),keyval('school:de','Grundschule')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','water_well')),qtype(least(topx(5)))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('shop','scuba_diving'))),maxdist(DIST_OUTTOWN)),qtype(least(topx(1)))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','police')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Carrick Knowe'))),search(nwr(keyval('shop','car'))),maxdist(DIST_INTOWN)),qtype(findkey('addr:street'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(latlong)) +query(around(center(nwr(keyval('name','Alaise'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_INTOWN)),qtype(count)) +query(east(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('smoking','no')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','university')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes'),keyval('bicycle_parking','lockers')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank')),qtype(findkey(and('addr:street','addr:housenumber')))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Alnwickhill'))),search(nwr(keyval('shop','*'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'),keyval('wheelchair','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop'),keyval('name','Blumenstraße')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('information','map'),keyval('hiking','yes')),qtype(least(topx(1)))) +query(nwr(keyval('monitoring:bicycle','yes')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','parking')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','african')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','library')),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('second_hand','only'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','japanese')),qtype(least(topx(1)))) +query(south(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','townhall')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','university')),qtype(count)) +query(east(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','police')),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim')),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','indian')),qtype(latlong)) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Airport'))),search(nwr(keyval('site_type','megalith'))),maxdist(DIST_INTOWN)),qtype(latlong))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','books')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Cinaxe'))),search(nwr(keyval('amenity','restaurant'),or(keyval('cuisine','indian'),keyval('cuisine','asian')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('tourism','theme_park'))),maxdist(DIST_DAYTRIP)),qtype(findkey('name'))) +query(nwr(keyval('abandoned:tourism','theme_park')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','ice_cream')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fire_station')),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('historic','manor'))),maxdist(DIST_DAYTRIP)),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','*'),keyval('wheelchair','yes')),qtype(latlong,findkey('name'))) +query(west(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking'),keyval('bicycle_parking','lockers')),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Newhaven Road'))),search(nwr(keyval('shop','mobile_phone'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('natural','spring'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +query(west(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(DIST_OUTTOWN))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Waterstones'))),search(nwr(keyval('amenity','parking'),keyval('parking','underground'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','pharmacy'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','climbing')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','cave_entrance')),qtype(least(topx(2)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','butcher'),keyval('wheelchair','yes')),qtype(count)) +query(south(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey('wikipedia'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','ice_cream')),qtype(latlong)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('aeroway','aerodrome'),keyval('aerodrome','international'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','soccer')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','drinking_water')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','camp_site')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank')),qtype(findkey('operator'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','german')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','water_well')),qtype(least(topx(1)))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('name','KFC'))),qtype(count)) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Castlehill'))),search(nwr(keyval('amenity','townhall'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral'),keyval('name','Cramond Kirk')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Waterstones'))),search(nwr(keyval('highway','bus_stop'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','motorway'),keyval('ref','A 4')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','monument')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','traffic_signals')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','motorway'),keyval('ref','M90')),qtype(findkey('maxspeed'))) +query(area(keyval('name','Newington')),nwr(keyval('name','Subway')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fire_station')),qtype(count)) +query(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','soccer')),qtype(latlong)) +query(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop')),qtype(count)) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','conference_centre')),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','animal_shelter')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','burger')),qtype(nodup(findkey('name')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','monument')),qtype(latlong(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(2)),count)) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Lauriston'))),search(nwr(keyval('shop','bakery'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1)))),for('car')) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery')),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tower:type','communication'),keyval('communication:mobile_phone','yes')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','tomb')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Burger King')),qtype(least(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('building','apartments')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','rugby')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','townhall'),keyval('wheelchair','yes')),qtype(count)) +query(around(center(area(keyval('name','Montpellier')),nwr(keyval('name','Tennis Club du Parc'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','camp_site')),qtype(latlong)) +query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(findkey('wikipedia'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(findkey('wikipedia'))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','animal_shelter')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','3')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','viewpoint')),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('railway','station'))),qtype(count)) +query(south(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','phone')),qtype(latlong(topx(1)))) +query(nwr(keyval('amenity','kneipp_water_cure')),qtype(count)) +query(area(keyval('name','Marseille')),nwr(keyval('historic','monument')),qtype(least(topx(1)),count)) +query(area(keyval('name','Nantes')),nwr(keyval('historic','memorial')),qtype(least(topx(1)))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(area(keyval('name','Newington')),nwr(keyval('name','Summerhall Place')),qtype(least(topx(1)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(findkey('website'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','electrician')),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('advertising','column')),qtype(count)) +query(area(keyval('name','Osterode')),nwr(keyval('natural','cave_entrance')),qtype(least(topx(1)),count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(nwr(keyval('Schalansky_ref','*')),qtype(findkey('name:de'))) +query(east(area(keyval('name','Paris')),nwr(keyval('building','cathedral'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','monument')),qtype(latlong)) +query(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural')),qtype(latlong,findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera')),qtype(findkey('website'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('shop','car'),keyval('brand','Vauxhall'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Newhaven Road'))),search(nwr(and(keyval('shop','butcher'),keyval('shop','bakery')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','hospital')),qtype(count)) +query(area(keyval('name','Pays de la Loire')),nwr(keyval('historic','monument')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Chez Jenny')),qtype(findkey('phone'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','restaurant'))),maxdist(WALKDING_DIST)),qtype(findkey('name',topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Holiday Inn Express')),qtype(least(topx(1)))) +query(area(keyval('name','5e Arrondissement')),nwr(keyval('name','Avenue du Général Lemonnier')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('historic','*'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','stationery')),qtype(latlong)) +query(area(keyval('name','Montpellier')),nwr(keyval('sport','tennis')),qtype(latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school')),qtype(count)) +query(nwr(keyval('name','Edinburgh'),keyval('place','city')),qtype(findkey('population'))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','driving_school')),qtype(latlong,findkey('name'))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('amenity','drinking_water'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(least(topx(1)))) +query(west(area(keyval('name','Berlin')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(and(keyval('shop','bakery'),keyval('shop','butcher'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','speed_camera')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','phone')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','parking'),keyval('parking','underground')),qtype(latlong)) +query(north(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(DIST_OUTTOWN))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fire_station')),qtype(latlong)) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(or(keyval('amenity','arts_centre'),keyval('tourism','museum')))),maxdist(DIST_INTOWN)),qtype(findkey('website'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','*')),qtype(nodup(findkey('leisure')))) +query(area(keyval('name','Brietlingen')),nwr(keyval('emergency','fire_hydrant')),qtype(least(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','spring'))),qtype(latlong)) +query(nwr(keyval('name','Cash Converters'),keyval('shop','*')),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'),keyval('railway','station'))),search(nwr(keyval('tourism','museum'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','parking'),keyval('parking','underground')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Vercingétorix'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'),keyval('denomination','protestant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','Nantes')),nwr(keyval('historic','*')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('wheelchair','yes')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','skateboard')),qtype(latlong)) +dist(query(nwr(keyval('name','City of Edinburgh')),qtype(latlong)),query(nwr(keyval('name','Leeds'),keyval('place','city')),qtype(latlong)),unit(mi)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','butcher')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','african')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water')),qtype(count)) +query(east(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank')),qtype(findkey('operator'))) +query(area(keyval('name','Leith')),nwr(keyval('name','Summerhall Place')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','attraction')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tower:type','communication')),qtype(least(topx(1)))) +query(area(keyval('name','Neuenheim')),nwr(keyval('name','Werrgasse')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Franprix')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','climbing')),qtype(least(topx(2)))) +query(area(keyval('name','Leith')),nwr(keyval('name','Abbey Avenue')),qtype(least(topx(1)))) +query(south(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','soccer')),qtype(least(topx(2)))) +query(north(around(center(nwr(keyval('name','Schriesheim'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_OUTTOWN))),qtype(latlong)) +query(area(keyval('name','Leith')),nwr(keyval('name','Henderson Street')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République')),qtype(findkey('highway'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','monument')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(or(keyval('sport','tennis'),keyval('sport','badminton'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Newhaven Road'))),search(nwr(keyval('recycling:glass','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','townhall')),qtype(findkey('wikipedia'))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','books')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('cuisine','asian')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','police')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('operator','Apex Hotels')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','soccer')),qtype(count)) +query(south(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey(and('name','ele')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','cricket')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop')),qtype(nodup(findkey('network')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel')),qtype(latlong)) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(WALKDING_DIST)),qtype(latlong)),for('car')) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','park')),qtype(least(topx(1)),latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','fish_and_chips'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(area(keyval('name','München')),nwr(keyval('amenity','charging_station')),qtype(findkey('operator'))) +query(nwr(keyval('building','planned')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','post_office')),qtype(count)) +query(north(area(keyval('name','Île-de-France')),nwr(keyval('station','subway'))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('railway','station'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Lauriston'))),search(nwr(and(keyval('amenity','bank'),keyval('amenity','pharmacy')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(nwr(keyval('Schalansky_ref','*')),qtype(findkey('name'))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(least(topx(20)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','viaduct')),qtype(least(topx(1)),count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','tailor')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Mannheimer Straße'))),search(nwr(keyval('amenity','driving_school'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','tennis')),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','butcher')),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(east(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Czernyring'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1))))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République')),qtype(findkey('maxspeed'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel'),keyval('fuel:diesel','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','4')),qtype(count,latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','martial_arts')),qtype(least(topx(2)))) +query(south(area(keyval('name','Pays de la Loire')),nwr(keyval('historic','monument'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','buddhist')),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','library')),qtype(least(topx(1)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial'))),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','5e Arrondissement'))),search(nwr(keyval('shop','*'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','tower')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','soccer')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('wheelchair','yes')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(least(topx(5)))) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Angelweg'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1))))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','memorial'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('name','KFC'))),qtype(count)) +query(nwr(keyval('abandoned:tourism','theme_park')),qtype(latlong)) +query(area(keyval('name','Deutschland')),nwr(keyval('name','Volkshochschule'),keyval('amenity','school')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','traffic_signals')),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Thalia'))),search(nwr(keyval('amenity','parking'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera'))),search(nwr(keyval('amenity','restaurant'),or(keyval('cuisine','indian'),keyval('cuisine','asian')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','swimming')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','climbing')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue'))),search(nwr(keyval('amenity','pharmacy'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','townhall')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bar'),keyval('cuisine','french')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','dentist')),qtype(latlong(topx(1)))) +query(area(keyval('name','Bayern')),nwr(keyval('historic','*')),qtype(findkey('historic'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','museum')),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('information','map'),keyval('hiking','yes'))),search(nwr(keyval('natural','peak'))),maxdist(WALKDING_DIST)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','charging_station')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','buddhist')),qtype(least(topx(1)))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','memorial'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','stationery')),qtype(latlong)) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Cathédrale Notre-Dame de Paris'))),search(nwr(keyval('tourism','museum'))),maxdist(10000)),qtype(findkey(and('name','phone')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop')),qtype(latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral'))),qtype(count)) +dist(query(around(center(area(keyval('name','Stuttgart')),nwr(keyval('name','Rührbrunnen'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST),topx(1)),qtype(latlong)),for('walk')) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('second_hand','only')),qtype(latlong,findkey('opening_hours'))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('craft','*')),qtype(nodup(findkey('craft')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','library')),qtype(least(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(findkey('name'))) +query(area(keyval('name','10e Arrondissement')),nwr(keyval('name','Place de la République')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(findkey('website'))) +query(north(area(keyval('name','Schriesheim')),nwr(keyval('amenity','post_box'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank'),keyval('atm','yes')),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('second_hand','only'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','indian')),qtype(latlong)) +query(area(keyval('name','Fountainbridge')),nwr(keyval('amenity','bank')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','seafood')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(latlong(topx(1)))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('sport','golf'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','stationery')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Guru Balti')),qtype(findkey('phone'))) +dist(query(area(keyval('name','Paris')),nwr(keyval('name','Gare du Nord')),qtype(latlong)),query(area(keyval('name','Paris')),nwr(keyval('name','Basilique du Sacré-Cœur')),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Cathédrale Notre-Dame de Paris'))),search(nwr(or(keyval('amenity','arts_centre'),keyval('tourism','museum')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(least(topx(1)))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue de Cicé'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema')),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','butcher'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','butcher')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank')),qtype(findkey(and('addr:street','addr:housenumber')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Marriott Hotel')),qtype(findkey('rooms'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','skateboard')),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg-Altstadt'),keyval('railway','station')),qtype(least(topx(1)))),for('walk')) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Cinaxe'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(findkey(and('addr:street','addr:housenumber')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','camp_site')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','stationery')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','animal_shelter')),qtype(least(topx(2)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Mary King's Close'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(nodup(findkey('operator')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('recycling:clothes','yes')),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','toilets')),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Jurys Inn')),qtype(findkey('addr:street'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('building','apartments')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','water_well')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Summerhall Place')),qtype(findkey('lanes'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','ice_cream')),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(east(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop')),qtype(least(topx(20)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','library')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'),keyval('railway','station'))),search(nwr(keyval('amenity','restaurant'),or(keyval('cuisine','italian'),keyval('cuisine','indian')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','cinema'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bar'),keyval('smoking','yes'))),search(nwr(keyval('highway','bus_stop'))),maxdist(WALKDING_DIST)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','parking'),keyval('parking','underground')),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','basketball')),qtype(least(topx(2)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','african')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','fish_and_chips')),qtype(findkey(and('name','opening_hours')))) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','public_bookcase')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Plöck')),qtype(findkey('maxspeed'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(around(center(area(keyval('name','Montpellier')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('sports','tennis'))),maxdist(2000)),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','viewpoint')),qtype(latlong(topx(1)))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','shoemaker')),qtype(count)) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Calton Hill')),qtype(latlong))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Robinet d'Or')),qtype(findkey('addr:street'))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('second_hand','only'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','library')),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +query(west(around(center(nwr(keyval('name','Schriesheim'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_OUTTOWN))),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(nwr(keyval('Schalansky_ref','*')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','arts_centre')),qtype(findkey(and('name','website')))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein')),qtype(findkey('start_date'))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Airport')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Calton Hill')),qtype(latlong))) +query(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school')),qtype(findkey(and('name','website')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','traffic_signals')),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop'),keyval('wheelchair','yes')),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','spring'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(findkey('website'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','university')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','monument')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','München')),nwr(keyval('name','Frauenkirche'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','kindergarten')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(findkey('ele'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'),keyval('wheelchair','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','*')),qtype(nodup(findkey('historic')))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),maxdist(DIST_OUTTOWN)),qtype(latlong)) +query(area(keyval('name','Bretagne')),nwr(keyval('craft','brewery')),qtype(latlong)) +query(area(keyval('name','1er Arrondissement')),nwr(keyval('name','Avenue du Général Lemonnier')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','charging_station')),qtype(least(topx(1)),count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('name','La Flûte de Pan'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('opening_hours'))) +query(area(keyval('name','8e Arrondissement')),nwr(keyval('name','Subway')),qtype(least(topx(1)))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','bar'))),maxdist(500)),qtype(findkey('name',topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('amenity','bureau_de_change'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('craft','*')),qtype(nodup(findkey('craft')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket')),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Königstuhl'))),search(nwr(keyval('shelter_type','weather_shelter'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(count)) +query(area(keyval('name','Lüneburg')),nwr(keyval('emergency','fire_hydrant')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank'),keyval('atm','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank')),qtype(findkey('operator'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(findkey('phone',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','cave_entrance')),qtype(latlong)) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Léon de Bruxelles')),qtype(latlong))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','traffic_signals')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket')),qtype(findkey('name'))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Restalrig Avenue'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1))))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','museum')),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(area(keyval('name','Witten')),nwr(keyval('social_facility:for','migrant')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','climbing')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water')),qtype(findkey('ele'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','living_street'),keyval('oneway','yes')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','soccer')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fountain')),qtype(latlong,count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','stationery')),qtype(latlong)) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum')),qtype(findkey('phone'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','picnic_site')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','*')),qtype(nodup(findkey('tourism')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tower:type','communication'),keyval('name','Fernsehturm Heidelberg')),qtype(latlong)) +query(area(keyval('name','Toulouse')),nwr(keyval('amenity','post_office')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('aeroway','helipad')),qtype(least(topx(1)))) +query(nwr(keyval('craft','distillery'),keyval('product','whisky')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('internet_access','wlan')),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','embassy')),qtype(findkey('name'))) +query(area(keyval('name','Dresden')),nwr(keyval('junction','roundabout')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','toilets')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','charging_station')),qtype(findkey('operator'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','1er Arrondissement')),qtype(findkey('wikipedia'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Robinet d'Or')),qtype(findkey('smoking'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','copyshop')),qtype(findkey('name'),latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Longstone Park'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','italian'),keyval('name','Giuliano's')),qtype(findkey('addr:street'))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(area(keyval('name','Osterode')),nwr(and(keyval('natural','spring'),keyval('natural','peak'))),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('advertising','column'))),qtype(latlong)) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','police')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Neuenheim'))),search(nwr(keyval('amenity','townhall'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(area(keyval('name','United Kingdom')),nwr(keyval('name','Marks & Spencer Food')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school')),qtype(findkey('name'))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','restaurant'),keyval('cuisine','african'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','asian')),qtype(findkey('name'))) +query(east(area(keyval('name','Nantes')),nwr(keyval('historic','*'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','motorway')),qtype(nodup(findkey('ref')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','toilets')),qtype(latlong)) +query(west(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(west(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(nwr(keyval('name','Edinburgh'),keyval('place','city')),qtype(findkey('population'))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','post_office'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','police')),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak'))),search(nwr(keyval('information','map'),keyval('hiking','yes'))),maxdist(WALKDING_DIST)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','soccer')),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','speed_camera')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','harbour')),qtype(latlong)) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','miniature_golf')),qtype(least(topx(1)),latlong)) +query(south(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop'))),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Thalia'))),search(nwr(keyval('amenity','parking'),keyval('parking','underground'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','butcher')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop'),keyval('name','Erich-Hübner-Platz')),qtype(findkey('note'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','speed_camera')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','fire_hydrant')),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('historic','*'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('leisure','swimming_pool'))),maxdist(30000)),qtype(findkey('name'))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('second_hand','only'))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','cafe'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(findkey('wikipedia'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Hard Rock Cafe'))),search(nwr(keyval('shop','*'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','castle')),qtype(least(topx(1)))) +query(north(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','protestant')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site'),keyval('fireplace','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','kindergarten'),keyval('denomination','protestant')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','restaurant'))),maxdist(WALKDING_DIST)),qtype(findkey('name',topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','pier'),keyval('name','Hawes Pier'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','kneipp_water_cure')),qtype(least(topx(1)))) +dist(query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(latlong)),query(nwr(keyval('name','Mannheim'),keyval('place','city')),qtype(latlong)),unit(km)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)),count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('cuisine','greek')),qtype(count,latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)),count)) +query(area(keyval('name','Nantes')),nwr(keyval('historic','*')),qtype(findkey('historic'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Piatto Verde')),qtype(findkey('cuisine'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(findkey('website'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','rugby')),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','McDonald's')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','bmx')),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Waterstones'))),search(nwr(keyval('amenity','parking'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','ambulance_station')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','books')),qtype(count)) +query(west(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(latlong(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school')),qtype(findkey('name'))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','*'))),qtype(count,latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tower:type','communication')),qtype(least(topx(1)))) +query(area(keyval('name','Île-de-France')),nwr(keyval('station','subway')),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('amenity','embassy')),qtype(findkey('country'))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school'))),qtype(count)) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Haymarket'),keyval('railway','station')),qtype(least(topx(1)))),for('walk')) +query(nwr(keyval('craft','distillery')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','attraction')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','tomb')),qtype(latlong(topx(1)))) +query(nwr(keyval('name','Edinburgh'),keyval('place','city')),qtype(findkey('name:ja'))) +query(south(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural'))),qtype(latlong,findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','*')),qtype(nodup(findkey('amenity')))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Brunnengasse'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint'),keyval('wheelchair','yes')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'),keyval('wheelchair','yes'))),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','fountain'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)),for('walk')) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','defibrillator')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey('phone'))) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','table_tennis')),qtype(latlong(topx(1)))) +query(west(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('historic','memorial'),keyval('wheelchair','yes'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('name','Gare du Nord'),keyval('railway','station'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school'))),qtype(count)) +query(area(keyval('name','Eppelheim')),nwr(keyval('name','Subway')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','italian')),qtype(latlong)) +query(west(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','construction')),qtype(count)) +query(area(keyval('name','Berlin')),nwr(keyval('amenity','restaurant'),keyval('cuisine','italian')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('operator','Apex Hotels')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('smoking','yes')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','library')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','defibrillator')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Mary King's Close'))),search(nwr(and(keyval('amenity','bank'),keyval('amenity','pharmacy')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','bmx')),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('historic','*'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('historic'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','ambulance_station')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +dist(query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(latlong)),query(nwr(keyval('name','Rennes'),keyval('place','city')),qtype(latlong)),unit(mi)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('natural','spring'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(latlong)) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(findkey('wikipedia'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Vercingétorix'))),search(nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','bar'))),maxdist(500)),qtype(findkey('name',topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','motorway'),keyval('ref','M8')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','motorway'),keyval('ref','A 4')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Yorckstraße'))),search(nwr(keyval('recycling:clothes','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Neuenheim'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN)),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Cinaxe'))),search(nwr(keyval('amenity','fountain'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(east(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak'),keyval('name','Arthur's Seat')),qtype(findkey('ele'))) +query(nwr(keyval('name','Manure Pit')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','police')),qtype(least(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(west(area(keyval('name','Schriesheim')),nwr(keyval('amenity','post_box'))),qtype(latlong)) +query(nwr(keyval('craft','distillery')),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','italian')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','fire_hydrant')),qtype(latlong)) +query(south(area(keyval('name','Berlin')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station'),keyval('name','Argentine')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb'))),qtype(count)) +query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(findkey('name:fr'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('name','Ristorante Pellicano')),qtype(findkey('smoking'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(findkey('site_type'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Schwarzer Adler')),qtype(findkey('phone'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Starbucks')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','books')),qtype(latlong)) +query(east(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Thalia'))),search(nwr(keyval('highway','bus_stop'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking'),keyval('bicycle_parking','lockers')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(latlong(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('railway','station'))),qtype(count)) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Viewforth'))),search(nwr(keyval('amenity','gym'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))),for('walk')) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Chez Jenny')),qtype(findkey('cuisine'))) +query(east(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel')),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','artwork')),qtype(latlong(topx(1)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum'),keyval('internet_access:fee','no')),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('historic','memorial'),keyval('wheelchair','yes'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(west(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(count)) +query(around(center(area(keyval('name','Toulouse')),nwr(keyval('name','Polyclinique du Parc'))),search(nwr(keyval('amenity','post_office'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('historic','memorial'),keyval('wheelchair','yes'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(area(keyval('name','Wieblingen')),nwr(keyval('amenity','bank')),qtype(least(topx(1)))) +query(east(area(keyval('name','Bayern')),nwr(keyval('historic','memorial'))),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Castlehill'))),search(nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','tower')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','arts_centre')),qtype(least(topx(1)),count,latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(or(keyval('sport','tennis'),keyval('sport','badminton'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','rowing')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Franprix')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak'))),search(nwr(keyval('amenity','parking'))),maxdist(WALKDING_DIST)),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','electrician')),qtype(findkey('name'))) +query(nwr(keyval('amenity','public_bookcase')),qtype(count)) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(WALKDING_DIST)),qtype(latlong)),for('car')) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site'),keyval('fireplace','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel'),keyval('opening_hours','24/7')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school')),qtype(count)) +query(north(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school'))),qtype(latlong)) +query(west(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station'))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('historic','*'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('historic'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','The Salisbury')),qtype(findkey('stars'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','post_office')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fire_station')),qtype(least(topx(1)))) +query(area(keyval('name','Paris')),nwr(keyval('historic','tomb')),qtype(latlong)) +query(east(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket')),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'),keyval('denomination','catholic'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','pier')),qtype(latlong)) +query(south(area(keyval('name','Paris')),nwr(keyval('building','cathedral'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','post_office')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Summerhall Place')),qtype(findkey('maxspeed'))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +query(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes')),qtype(latlong)) +query(area(keyval('name','Marseille')),nwr(keyval('historic','monument')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket')),qtype(count)) +query(west(area(keyval('name','Paris')),nwr(keyval('tourism','museum'))),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','books')),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera'))),search(nwr(keyval('amenity','fountain'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','climbing')),qtype(least(topx(1)))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','prison'),keyval('tourism','attraction')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Hôtel Victoria Châtelet')),qtype(findkey('addr:street'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','defibrillator')),qtype(count)) +query(nwr(keyval('amenity','exhibition_center')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel')),qtype(latlong,nodup(findkey('brand')))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(area(keyval('name','14e Arrondissement')),nwr(keyval('amenity','school')),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Lauriston'))),search(nwr(keyval('aeroway','helipad'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','indian')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','protestant')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral')),qtype(latlong,findkey('name'))) +query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(findkey('population'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','books')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','copyshop')),qtype(findkey('name'),latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('cuisine','asian')),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','McDonald's')),qtype(count)) +query(area(keyval('name','Stuttgart')),nwr(keyval('leisure','playground')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint')),qtype(least(topx(1)))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Bernard Dimey'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1))))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Castle'))),search(nwr(keyval('name','KFC'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('amenity','school'))),maxdist(200)),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','3')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','theatre')),qtype(findkey('website'))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('cuisine',or('greek','italian'))),qtype(count)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('leisure','swimming_pool'))),maxdist(30000)),qtype(findkey('name'))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Yorckstraße'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bar'),keyval('smoking','yes')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','castle')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','fire_hydrant')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','ice_cream')),qtype(latlong)) +dist(query(nwr(keyval('name','City of Edinburgh')),qtype(latlong)),query(nwr(keyval('name','Leeds'),keyval('place','city')),qtype(latlong)),unit(km)) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','Paris')),nwr(keyval('historic','tomb')),qtype(least(topx(1)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','tower')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue')),qtype(findkey('website'))) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Yorckstraße'))),search(nwr(keyval('shop','bakery'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1)))),for('car')) +query(area(keyval('name','Ludwigshafen am Rhein')),nwr(keyval('memorial:type','stolperstein')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Librairie Galignani'))),search(nwr(keyval('amenity','parking'),keyval('parking','underground'))),maxdist(DIST_INTOWN),topx(1)),qtype(least(topx(1)))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station'))),search(nwr(keyval('tourism','museum'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','museum')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bar')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','4')),qtype(count,latlong)) +query(area(keyval('name','Stockbridge')),nwr(keyval('name','St Vincent Street')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','embassy')),qtype(findkey('country'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','university')),qtype(least(topx(2)))) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),maxdist(DIST_OUTTOWN)),qtype(latlong)) +dist(query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Musée du Louvre'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(findkey('ele'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','townhall'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(latlong(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('amenity','school'))),maxdist(200)),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site')),qtype(least(topx(5)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop'),keyval('name','The Square')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','car_sharing')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','climbing')),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','library')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(WALKDING_DIST)),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','basketball')),qtype(latlong)) +query(north(area(keyval('name','Dresden')),nwr(keyval('building','greenhouse'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','water_well')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','butcher')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','university')),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('second_hand','only')),qtype(latlong,findkey('opening_hours'))) +query(nwr(keyval('craft','distillery')),qtype(findkey('addr:city'))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','stationery')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','swimming')),qtype(least(topx(1)))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('name','Galeria Kaufhof'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('opening_hours'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','picnic_site')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel')),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera'))),search(nwr(keyval('advertising','column'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(east(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(latlong)) +query(east(area(keyval('name','Schriesheim')),nwr(keyval('amenity','post_box'))),qtype(latlong)) +query(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural')),qtype(findkey(and('name','website')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','phone')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','attraction')),qtype(latlong(topx(1)))) +query(area(keyval('name','Adendorf')),nwr(keyval('emergency','fire_hydrant')),qtype(count,latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('tourism','hotel'),keyval('stars','4'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','picnic_site')),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','memorial'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking')),qtype(findkey('capacity'))) +query(south(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(DIST_OUTTOWN))),qtype(count)) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(latlong))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','rowing')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bbq')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','italian'),keyval('name','Maria Luisa')),qtype(findkey('addr:street'))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(least(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'),keyval('wheelchair','yes'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','spring')),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','car_sharing')),qtype(count)) +query(south(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(latlong)) +query(east(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','tennis')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(5000)),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('operator','Accor')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Plöck')),qtype(findkey('lanes'))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('tourism','hotel'),keyval('stars','4'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking')),qtype(findkey('capacity'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site'),keyval('fireplace','yes')),qtype(least(topx(1)))) +query(area(keyval('name','Baden-Württemberg')),nwr(keyval('emergency','phone')),qtype(count,latlong)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),maxdist(DIST_OUTTOWN)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','charging_station')),qtype(latlong)) +query(east(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural'))),qtype(latlong,findkey('name'))) +query(east(area(keyval('name','Paris')),nwr(keyval('tourism','museum'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(latlong)) +query(north(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'),keyval('fuel:diesel','yes'),keyval('addr:street','Bergheimer Straße')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop')),qtype(least(topx(20)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Summerhall Place')),qtype(findkey('surface'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','bmx')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('information','map')),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Brunnengasse'))),search(nwr(keyval('amenity','bicycle_parking'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(nwr(keyval('name','Kelso ROC Post'),keyval('landuse','military')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Quai de Béthune'))),search(nwr(keyval('recycling:glass','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Fragonard'))),search(nwr(keyval('shelter_type','weather_shelter'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(latlong,findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','camp_site')),qtype(latlong)) +query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(findkey('name:es'))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','fish_and_chips'))),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum')),qtype(findkey('wikipedia'))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue'))),search(nwr(keyval('advertising','column'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','monument')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','car_sharing')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','REWE City')),qtype(latlong(topx(1)))) +query(area(keyval('name','Pinneberg')),nwr(keyval('memorial:type','stolperstein')),qtype(latlong)) +query(around(center(area(keyval('name','Berlin')),nwr(keyval('name','Deutscher Bundestag'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('information','map'),keyval('hiking','yes')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','catholic')),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('railway','station'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','stationery')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop'),keyval('name','South Gyle Park')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','driving_school')),qtype(latlong,findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('name','Ristorante Pellicano')),qtype(findkey('phone'))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','martial_arts')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak'),keyval('name','Königstuhl')),qtype(findkey('ele'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','tennis')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','picnic_site')),qtype(latlong)) +query(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes'),keyval('oneway','yes')),qtype(count)) +query(west(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) diff --git a/smtsemparsecpp/data/nlmaps.train.counter b/smtsemparsecpp/data/nlmaps.train.counter new file mode 100644 index 000000000..03e00e839 --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.train.counter @@ -0,0 +1,1500 @@ +864 +385 +84 +1472 +2372 +68 +2015 +1010 +2281 +7 +1776 +1247 +511 +539 +1362 +815 +334 +2375 +1250 +1911 +2359 +1512 +405 +963 +757 +928 +424 +2021 +1261 +1113 +1479 +899 +301 +1567 +1420 +1646 +1739 +297 +2312 +462 +662 +2327 +1979 +1223 +1731 +1602 +609 +2356 +33 +413 +1921 +1449 +350 +1469 +420 +1417 +1875 +2089 +830 +968 +1890 +1069 +1164 +746 +103 +999 +106 +1717 +706 +1540 +696 +1765 +1761 +1538 +1180 +638 +1256 +1094 +1143 +100 +332 +2084 +932 +1246 +352 +2206 +978 +1051 +688 +2166 +1441 +178 +1058 +2256 +768 +1623 +1799 +1380 +603 +750 +2334 +245 +639 +976 +634 +558 +252 +1524 +126 +1061 +1384 +257 +643 +179 +315 +1734 +596 +2220 +1560 +1116 +197 +1680 +733 +2285 +124 +1771 +1446 +1098 +382 +2008 +627 +1346 +275 +923 +2171 +927 +2250 +1819 +1089 +1121 +1954 +1166 +475 +689 +1980 +1302 +2232 +2071 +564 +809 +1485 +1927 +184 +2354 +388 +1666 +1432 +356 +1561 +1986 +2235 +1043 +428 +165 +2376 +52 +1105 +896 +838 +248 +894 +150 +2289 +1755 +1831 +1221 +1085 +141 +1156 +1850 +2224 +604 +834 +1939 +1437 +884 +21 +490 +1536 +739 +1732 +85 +1489 +65 +167 +1751 +712 +369 +1216 +2229 +470 +2174 +1344 +18 +1127 +1945 +283 +610 +579 +1305 +2186 +961 +236 +649 +2143 +23 +1692 +1481 +1277 +1020 +2180 +1664 +2287 +1628 +946 +645 +239 +1784 +1558 +2141 +1548 +459 +729 +2126 +1849 +563 +1968 +2278 +28 +2355 +541 +1226 +1972 +1827 +1999 +2142 +346 +1769 +441 +217 +1713 +1530 +226 +187 +1231 +1202 +1898 +650 +1912 +1101 +756 +105 +2047 +1737 +686 +595 +1525 +243 +2321 +960 +1463 +1612 +766 +2369 +843 +1684 +88 +1704 +985 +1615 +987 +375 +237 +798 +2122 +1803 +2059 +2081 +1822 +164 +791 +532 +97 +752 +886 +1908 +1310 +588 +131 +2199 +1497 +808 +997 +2298 +1023 +260 +2243 +378 +26 +2211 +983 +1361 +1817 +1 +389 +2214 +1993 +933 +717 +613 +444 +602 +109 +2233 +614 +822 +700 +792 +1336 +1551 +2111 +1109 +1741 +1688 +1033 +1555 +1709 +1114 +1754 +1961 +1275 +565 +2282 +1587 +2137 +1614 +1531 +1889 +1957 +2378 +1401 +2245 +1705 +1691 +1055 +474 +1694 +1124 +931 +2320 +2294 +902 +1167 +1545 +1341 +647 +293 +326 +770 +372 +406 +1535 +1566 +322 +1224 +776 +764 +868 +1028 +1887 +2176 +1917 +1433 +562 +1618 +271 +1789 +2097 +51 +1909 +984 +198 +675 +924 +951 +1377 +807 +1650 +2065 +1617 +1429 +911 +59 +1053 +2286 +123 +1375 +1682 +1773 +537 +1953 +580 +1712 +560 +941 +394 +1404 +451 +2178 +1499 +1234 +397 +2140 +348 +379 +1944 +1743 +1212 +880 +2330 +1873 +2318 +774 +1626 +96 +336 +2197 +1358 +1081 +1027 +262 +654 +177 +575 +61 +567 +2117 +632 +1142 +2010 +778 +45 +1266 +708 +111 +823 +1047 +278 +556 +494 +784 +2138 +354 +1030 +181 +991 +380 +1686 +755 +422 +1916 +12 +2331 +2068 +2345 +436 +1563 +625 +2001 +1220 +988 +1526 +967 +1804 +2338 +6 +1328 +608 +333 +805 +67 +1749 +920 +1424 +1210 +1533 +1304 +1357 +568 +1366 +1967 +1492 +1123 +1539 +747 +2173 +1188 +993 +1689 +1960 +1060 +340 +455 +138 +1282 +950 +1468 +1825 +624 +1096 +947 +1200 +189 +1762 +1245 +1327 +472 +1570 +582 +887 +310 +1843 +1677 +42 +1289 +1408 +728 +316 +1742 +1386 +1523 +1718 +2005 +2268 +463 +1542 +1410 +2339 +1532 +1701 +1549 +180 +1354 +1169 +1513 +1674 +1258 +916 +267 +816 +1608 +1100 +1924 +1941 +1000 +526 +593 +1036 +247 +2360 +376 +1547 +496 +335 +328 +1757 +2100 +944 +1667 +1171 +1665 +3 +1400 +2260 +954 +1661 +760 +1546 +390 +1853 +311 +557 +2275 +477 +2217 +139 +1138 +540 +342 +2109 +399 +2163 +1621 +276 +1434 +253 +572 +1958 +500 +1758 +1052 +1965 +1603 +1079 +996 +1332 +1470 +525 +169 +1589 +2261 +1406 +1989 +1365 +2265 +1879 +1981 +1207 +702 +833 +485 +1988 +1168 +256 +740 +1572 +1930 +2326 +883 +246 +2322 +943 +1636 +1276 +1565 +195 +127 +679 +856 +576 +218 +1118 +1244 +1832 +617 +2279 +201 +1534 +1049 +1460 +1484 +1382 +1768 +258 +54 +1411 +411 +2042 +1956 +1998 +1679 +1655 +891 +1003 +1848 +1629 +452 +1991 +1403 +1219 +417 +510 +606 +695 +671 +1505 +1585 +1663 +2158 +1597 +569 +396 +1057 +393 +1288 +1619 +1721 +1343 +599 +720 +1155 +80 +1591 +829 +633 +329 +1477 +1175 +1681 +1315 +119 +1698 +1508 +1599 +1284 +669 +1316 +1852 +1321 +2050 +1287 +806 +2125 +1045 +515 +2219 +670 +1042 +183 +1903 +1217 +2343 +493 +114 +1379 +979 +646 +2061 +1248 +730 +155 +527 +497 +1918 +1240 +1642 +519 +2136 +1592 +498 +1866 +2032 +922 +1131 +1984 +439 +893 +1935 +2006 +2070 +1815 +81 +743 +1298 +339 +2170 +1145 +2314 +1050 +1673 +453 +723 +935 +1593 +1191 +1369 +302 +584 +860 +1360 +341 +1372 +1325 +644 +10 +693 +1541 +897 +2058 +2200 +2357 +651 +1213 +464 +2183 +1818 +264 +2291 +1147 +847 +1495 +878 +185 +2215 +144 +2300 +230 +771 +1780 +2212 +1306 +1239 +853 +1195 +1430 +1735 +2054 +1798 +622 +130 +2048 +658 +2182 +1295 +2192 +1133 +146 +2040 +719 +1801 +274 +2033 +555 +8 +1702 +251 +737 +707 +1225 +1884 +2131 +1074 +2201 +1163 +1457 +1676 +1465 +1788 +87 +509 +1922 +235 +1356 +628 +1146 +687 +2130 +1254 +1752 +1604 +1581 +1108 +75 +2188 +2274 +1351 +549 +2025 +2276 +2051 +623 +1919 +208 +592 +1574 +1039 +2018 +1578 +1791 +2105 +680 +937 +83 +1340 +1792 +1594 +1882 +1255 +2337 +77 +76 +454 +426 +1278 +862 +1564 +2362 +225 +1139 +1951 +40 +767 +1228 +1095 +1496 +1046 +2258 +2092 +384 +166 +630 +1193 +1422 +429 +1290 +1488 +1398 +721 +137 +2066 +2144 +772 +1987 +948 +254 +2086 +1008 +1352 +1896 +1034 +1609 +1183 +2067 +2218 +636 +1185 +1392 +383 +1675 +925 +66 +2203 +1515 +2293 +1720 +410 +1699 +2335 +158 +971 +360 +1269 +450 +2225 +1393 +2333 +89 +701 +1933 +986 +1554 +487 +1579 +758 +2310 +398 +542 +1906 +1466 +2028 +783 +1748 +1586 +742 +1381 +298 +2374 +1189 +110 +263 +1322 +1015 +1527 +2024 +1243 +918 +1482 +2164 +1503 +2370 +852 +1326 +62 +533 +501 +1876 +2255 +551 +629 +901 +982 +1671 +2207 +1227 +1500 +1797 +1669 +1459 +132 +1885 +1389 +1157 +1264 +2301 +1436 +1973 +705 +303 +566 +1313 +2179 +867 +722 +1176 +1658 +2253 +1233 +30 +427 +1229 +890 +1725 +824 +799 +363 +561 +46 +1267 +1557 +1414 +573 +635 +777 +1910 +1368 +2053 +1425 +2202 +286 +600 +1104 +1610 +1285 +1067 +403 +1744 +20 +1112 +586 +337 +998 +1007 +1009 +2132 +2128 +1728 +1521 +2134 +744 +192 +753 +715 +828 +866 +1293 +682 +1445 +1230 +1932 +368 +1440 +434 +2112 +357 +2353 +431 +1833 +939 +2198 +716 +1359 +1435 +425 +299 +1779 +1781 +392 +1120 +1854 +2296 +233 +60 +2038 +471 +1657 +917 +2045 +1394 +1880 +1892 +347 +1964 +731 +1687 +990 +817 +47 +1453 +953 +32 +306 +710 +1235 +691 +86 +125 +1685 +591 +994 +1402 +2168 +91 +1640 +904 +2124 +2104 +196 +1946 +2175 +2242 +909 +1068 +814 +1902 +432 +1841 +370 +362 +308 +147 +1904 +1837 +1794 +285 +142 +186 +1337 +2213 +2366 +1793 +1198 +910 +1613 +2228 +1405 +732 +1631 +1187 +1696 +2155 +1397 +818 +449 +1151 +351 +1975 +877 +221 +1370 +1528 +1861 +1399 +466 +224 +94 +2037 +1265 +735 +1037 +1874 +412 +220 +366 +386 +1950 +11 +2184 +751 +597 +1899 +227 +1204 +826 +1893 +2194 +2017 +156 +957 +2052 +22 +2324 +2177 +973 +725 +2113 +2098 +151 +1634 +611 +1622 +1562 +1309 +364 +1339 +300 +1371 +2056 +1652 +1518 +238 +2319 +331 +528 +942 +851 +2189 +1421 +970 +785 +2187 +1280 +619 +407 +261 +1162 +934 +1959 +1218 +2328 +17 +2072 +1985 +443 +1474 +840 +2292 +908 +1914 +871 +1385 +2227 +547 +2295 +1268 +1296 +929 +1588 +2116 +176 +1415 +2210 +779 +641 +681 +219 +1150 +1270 +157 +714 +945 +1031 +1605 +2014 +2190 +869 +204 +1974 +2062 +1158 +1724 +2302 +320 +782 +2349 +172 +31 +400 +1438 +1715 +29 +578 +1520 +1877 +1590 +1955 +1063 +1196 +71 +250 +194 +502 +1514 +1647 +53 +207 +1483 +361 +1018 +484 +2157 +404 +2316 +1447 +1454 +1134 +1303 +1144 +90 +43 +1076 +1625 +1203 +936 +544 +2020 +1206 +618 +665 +55 +1888 +666 +900 +1821 +2099 +2303 +486 +1598 +1868 +1947 +2348 +102 +93 +2151 +664 +1550 +1082 +2096 +1173 +1314 +2244 +1772 +535 +1824 +136 +683 +921 +200 +37 +448 +115 +553 +812 +831 +1878 +2063 +1915 +1378 +640 +1753 +1869 +1569 +294 +841 +955 +2269 +678 +304 +2311 +287 +620 +1072 +2259 +24 +2147 +117 +2082 +1211 +1080 +598 +358 +759 +1683 +1349 +2264 +1070 +1777 +898 +1842 +1130 +803 +273 +795 +1334 +2237 +1871 +199 +108 +445 +2325 +387 +2127 +468 +844 +793 +1897 +1660 +626 +1575 +1241 +1154 +295 +154 +2016 +796 +1851 +940 +95 +1826 +228 +1251 +1976 +2238 +1012 +1471 +1035 +685 +478 +209 +1374 +1805 +2091 +2041 +1376 +323 +1078 +1141 +1022 +1126 +9 +2273 +421 +2306 +1738 +373 +1925 +152 +330 +1571 +754 +1501 +534 +663 +49 +1940 +1723 +2160 +1002 +2060 +1862 +2009 +962 +704 +1106 +1690 +122 +874 +1855 +1970 +1016 +461 +788 +129 +2305 +1300 +870 +2254 +2241 +966 +2341 +270 diff --git a/smtsemparsecpp/data/nlmaps.train.de b/smtsemparsecpp/data/nlmaps.train.de new file mode 100644 index 000000000..a8dfbd20f --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.train.de @@ -0,0 +1,1500 @@ +Wie viele japanische Restaurants gibt es in Paris ? +Wie heißen die Kindergärten von Edinburgh ? +Wie viele Krankenhäuser gibt es in Heidelberg ? +Wie viele Metzger und Bäcker gibt es in Paris ? +Wie viele Second Hand Läden gibt es im Süden von Edinburgh ? +Kannst du mich über die Standpunkte von Büchereien in Heidelberg informieren ? +Welche archäologischen Stätten existieren im Osten von Heidelberg ? +Gibt es mehr als 20 Bushaltestellen in Heidelberg ? +Wo gibt es Stolpersteine im Süden von Heidelberg ? +Welche Küchen gibt es in Heidelberg ? +Wo gibt es Bars in Edinburgh , die eine Bushaltestelle in der Nähe haben ? +Wo gibt es Kindergärten in Hamburg ? +Wo in Edinburgh würde ich ein Denkmal finden ? +Gibt es in Edinburgh Schlüsselnachmacher ? +Gibt es eine Blumenstraße in Lampertheim ? +Würdest du mir die Orte von Denkmälern in Paris sagen ? +Wie viele katholische Kirchen gibt es in Edinburgh ? +Wie viele Orte zum Geldwechseln gibt es im Süden von Edinburgh ? +Wie viele abgelegene Inseln gibt es ? +Kann man von dem Palace of Holyroodhouse in Edinburgh an einen Wasserbrunnen laufen ? +Wo gibt es Kindergärten in Süden von Edinburgh ? +Kannst du mir die Webseiten von Fahrradverleihen in Paris nennen ? +Wie viele Denkmäler gibt es in Edinburgh ? +Wie viele 3 Sterne Hotels gibt es im Norden von Heidelberg ? +Kannst du mir alle Rastplätze in Paris nennen ? +Welche Städte befinden sich im Umkreis von Heidelberg ? +Wie viele Mitfahrzentralen gibt es in Edinburgh ? +Wo sind die Bergwerke im Osten von Heidelberg ? +Wie viele Orte zum Wassertreten gibt es in Deutschland ? +Bitte zähle alle Orte von Stolpersteinen im Norden von Heidelberg auf , die man mit einem Rollstuhl besuchen kann ! +Gibt es ein afrikanisches Restaurant in der Nähe des Place de la République in Paris , das man zu Fuß erreichen kann ? +Wo in Paris gibt es Theater ? +Wie viele McDonalds gibt es in Edinburgh ? +Wie viele Friedhöfe befinden sich im Norden von Paris ? +Ist es möglich von der Rue Lauriston in Paris zum nächsten Fitnessstudio zu laufen ? +Kannst du mir die Webseiten von Kulturzentren in Paris geben ? +Kann man ein historisches Herrschaftshaus als Tagesausflug von Edinburgh aus besuchen ? +Wie viele Theater gibt es in Heidelberg ? +Wie viele Campingplätze gibt es im Süden von Paris ? +Kannst du mir bitte alle Namen von Attraktionen in Edinburgh nennen ? +Wo in Paris gibt es Monoprix Supermärkte ? +Wie viele Friedhöfe befinden sich im Süden von Paris ? +Wie viele Gefängnisse gibt es in Edinburgh ? +Wie heißen die Konferenzzentren ? +Wie viele Kilometer sind Edinburgh und Glasgow von einander entfernt ? +Wo in Paris gibt es Bio Supermärkte ? +Welches Restaurant in Paris biete Burgers an ? +Gibt es Weinreben im Süden von Edinburgh ? +Welche katholischen Kirchen gibt es in Heidelberg ? +Wie viele Bibliotheken liegen in der Stadt Edinburgh ? +Gibt es Bio Supermärkte im Norden von Edinburgh ? +Wie viele Orte für Minigolf gibt es im Norden von Paris ? +Gibt es mehr als eine Universität in Edinburgh ? +Wie viele griechische Restaurants gibt es in Paris und wo sind diese ? +In wie vielen Geschäften in Edinburgh könnte ich einkaufen gehen ? +Kann man eine Apotheke von dem Kino Le Cinaxe in Paris aus zu Fuß erreichen ? +Wo sind die Friedhöfe im Norden von Edinburgh ? +Wie viele Orte zum Geldwechseln gibt es im Osten von Paris ? +Würdest du mir sagen wo in Paris sich Blitzer befinden ? +Wie heißen die Quellen im Umkreis von Heidelberg ? +Wo sind Kirchen , die Nahe am Palace of Holyroodhouse in Edinburgh sind ? +Wo gibt es Bergwerke in Heidelberg ? +Wo ist die nächste Glas Recycling Stelle von der Mannheimer Straße in Heidelberg ? +Würdest du mir bitte den Namen eines Hotels in Paris geben , das von Accor geführt wird ? +Wenn ich in Heidelberg wäre , wie viele Museen könnte ich mir anschauen ? +Wie weit sind das Heidelberger Schloss und der Bahnhof Heidelberg-Altstadt von einander entfernt ? +Was ist die Zahl der Denkmäler in Heidelberg ? +Wie heißt das nächste Restaurant von der King Street in Edinburgh ? +Was ist die Zahl der Denkmäler in Paris ? +Welche Art von historischen Stätten gibt es in Paris ? +Was ist die Anzahl von Bars in Paris ? +Gibt es eine Quelle im Norden von Edinburgh ? +Wie viele Hotels kann man vom Palace of Holyroodhouse in Edinburgh aus zu Fuß erreichen ? +Welche Art von Attraktivitäten gibt es in Paris ? +Gibt es ein Tierheim in Heidelberg ? +Wie heißt die Internetseite des Kinos Cinéma Chaplin in Paris ? +Wo gibt es Messegelände ? +Wie weit entfernt ist die nächste Tankstelle von der Plöck in Heidelberg ? +Gibt es mehr als 20 Ruinen in Heidelberg ? +Wie viele Schulen befinden sich in Heidelberg ? +Welche Moscheen findet man in Edinburgh ? +Gibt es Helikopterlandeplätze im Osten von Paris ? +Wie viele Kilometer sind Heidelberg und Stuttgart von einander entfernt ? +Gibt es einen Kindergarten im Wördenmoorweg in Hamburg ? +Wo in Edinburgh findet man Wanderkarten ? +Wie viele Kirchen gibt es im Westen von Paris ? +Wo gibt es Bars in Heidelberg , in denen das Rauchen erlaubt ist und eine Bushaltestelle maximal 400 Meter entfernt ist ? +Gibt mir die Webseite von Mitfahrzentralen in Heidelberg . +Welche Kinos gibt es in Paris ? +Wie viele Second Hand Läden gibt es im Westen von Heidelberg ? +Wie heißt der nächste Freizeitpark von Paris aus ? +Kann ich irgendwo in Heidelberg Skateboard fahren ? +Wo in Heidelberg gibt es Rathäuser ? +Wie viele Schulen gibt es im Süden von Heidelberg ? +Würdest du mir bitte den Ort einer Attraktion in Paris nennen , die man mit dem Rollstuhl besichtigen kann ? +Wer betreibt die Aufladestationen in Paris ? +Kann ich vom Palace of Holyroodhouse zum Edinburgh Waverley laufen ? +Wo ist der nächste Spielplatz von Ainsty Grove in York ? +Wie viele Bahnhöfe gibt es in Paris ? +Kannst du mir bitte alle Hotels in Paris mit 3 Sternen sagen ? +Bitte sag mir , wo es südlich vom Place de la République in Paris öffentliche Toiletten gibt . +Wie heißen die Unfallstationen Heidelberg ? +Gibt es eine Bushaltestelle an dem Hôpital des Enfants Malades , Paris ? +Kannst du mir ein Kino in Heidelberg nennen von dem aus es eine Bar gibt , die nicht weiter als 500 Meter entfernt ist ? +Wie viele katholische Kirchen gibt es in Paris ? +Wie lautet die Telefonnummer des La Garrigue in Edinburgh ? +Würdest du mir die Telefonnummer von Cesarino in Heidelberg nennen ? +Wie heißen die Kindergärten Paris ? +Wie viele Hotels liegen in dem Bezirk der Stadt Heidelberg ? +Welche Aktivitäten gibt es für Touristen in Heidelberg ? +Wie viele Denkmäler gibt es in Bayern ? +Darf man im Taj Mahal in Heidelberg rauchen ? +Welche Küchen werden in Paris angeboten ? +Wo in Heidelberg ist es möglich Skateboard zu fahren ? +Wo in Edinburgh kann ich Eiscreme bekommen ? +Gibt es ein Planetarium im Umkreis von Edinburgh ? +Wie vielen Brauereien kann ich in Edinburgh besuchen ? +Wie viele Grabmale gibt es im Westen von Paris ? +Wo im Norden von Paris gibt es Trinkwasser ? +Gibt es ein Planetarium in Heidelberg ? +Würdest du mir einen Ort in Heidelberg geben an dem ich Tischtennis spielen kann ? +Wie viele Gefängnisse gibt es in Paris ? +Gibt es mehr als einen Buchladen in Paris ? +Gibt es Moscheen südlich von Heidelberg ? +Wie viele Mitfahrzentralen gibt es in Heidelberg ? +Wo sind die Bergspitzen in Edinburgh , die eine Wanderkarte in der Nähe haben , die man zu Fuß erreichen kann ? +Bitte gib mir Cafés in Paris , die einen Parkplatz in der Nähe haben . +Bitte sag mir wo es Tankstellen in Heidelberg gibt , die Diesel verkaufen ? +Wo kann ich einen Zahnarzt in Edinburgh finden ? +Gibt es ein Schwimmbad im Osten von Heidelberg ? +Wie hoch ist der Eiffelturm in Paris ? +Gibt es Gewächshäuser in Dresden und wenn ja , wie viele und wo sind diese ? +Kann man das Hotel Schönberger Hof in Heidelberg mit einem Rollstuhl befahren ? +Wie viele Schulen in Heidelberg haben eine Bushaltestelle weniger als 200 Meter entfernt ? +Wie viele Orte gibt es um Tennis zu spielen im Westen von Montpellier ? +Welche Geschäfte gibt es in der Nähe der Altstadt von Heidelberg ? +Gibt es Helikopterlandeplätze im Westen von Edinburgh ? +Wo sind Fahrradparkplätze in Edinburgh ? +Wie viele Friedhöfe befinden sich im Norden von Heidelberg ? +Wo ist die nächste katholische Kirche vom Heidelberger Hauptbahnhof aus ? +Wo in Edinburgh gibt es Plätze zum Grillen ? +Wo gibt es Piere in Heidelberg ? +Gibt es 2 oder mehr Auswahlmöglichkeiten zum Klettern in Edinburgh ? +Welche Kinos in Paris kann man mit einem Rollstuhl befahren ? +Wie lauten Name der Gefängnisse von Edinburgh ? +Wo in Stuttgart gibt es öffentliche Toilette ? +Wie viele 3 Sterne Hotels gibt es im Westen von Edinburgh ? +Wie viele Fahrradverleihe gibt es im Osten von Paris ? +Wie viele japanische Restaurants gibt es in Edinburgh ? +Bitte , kannst du mir die Namen von Theatern in Paris nennen , die meine Mutter , die im Rollstuhl sitzt , besuchen kann ? +Ist es möglich vom Palais de l’Élysée in Paris zum Bahnhof Bastille zu laufen ? +Wo in Edinburgh gibt es Glas Recycling Stellen ? +Könntest du mir bitte alle Bademöglichkeiten Heidelbergs nennen ? +Gibt es ein Schwimmbad im Süden von Edinburgh ? +Welche Kinos gibt es in Edinburgh ? +Kann ich vom Musee du Louvre zum Arc de Triomphe in Paris laufen ? +Wie viele Kilometer sind Paris und Lyon von einander entfernt ? +Wo in Edinburgh befinden sich Bäckereien ? +Wo ist der nächste Kindergarten von der Avenue René Coty in Paris und wie heißt er ? +Wie viele Brücken gibt es in Edinburgh und wie heißen diese ? +Wo gibt es Kindergärten in Westen von Edinburgh ? +Gibt es einen Golfplatz in Heidelberg ? +Wenn ich in Edinburgh wäre , wie viele Hotel Optionen hätte ich ? +Würdest du mir den Ort eines schönen Aussichtspunktes in Heidelberg sagen ? +Wie viele Kathedralen gibt es im Süden von Edinburgh ? +Wo in Heidelberg findet man Wanderkarten ? +Wie viele Stolpersteine kann man in Heidelberg finden ? +Aus wie vielen Apartments kann ich in Paris auswählen ? +Wie lauten die internationalen Referenznamen für die Autobahnen in Paris ? +Gibt es Feuerhydranten in Heidelberg ? +Würdest du mir bitte den Ort eines Postamtes in Paris nennen , das man mit einem Rollstuhl erreichen kann ? +Kannst du mir bitte alle Hotels mit 3 Sternen in Heidelberg sagen ? +Wo gibt es Stolpersteine im Süden von Delmenhorst ? +Wie viele Orte für Minigolf gibt es im Norden von Edinburgh ? +Wo kann ich Trinkwasser in Edinburgh finden ? +Wie viele Konferenzzentren sind verzeichnet ? +Gibt es ein Rathaus in der Näher der Fischergasse in Heidelberg zu dem man hinlaufen kann ? +Kannst du mir bitte die Websites aller Hotels in Heidelberg nennen ? +Gibt es Bio Supermärkte im Norden von Heidelberg ? +Welche Art von Freizeitaktivitäten gibt es in Edinburgh ? +Wie viele Campingplätze gibt es im Westen von Edinburgh ? +Wo gibt es italienische Restaurants in Paris ? +Wie viele Baustellen gibt es im Moment in Paris ? +Gibt es Helikopterlandeplätze im Norden von Edinburgh ? +Wie weit muss ich vom Gare du Nord in Paris aus fahren um eine Aufladestation zu finden ? +Kannst du mir den Standort in Paris einer Metzgerei , die man mit einem Rollstuhl befahren kann , geben ? +Welche Schule gibt es in Heidelberg ? +Wie viele Möglichkeiten zum Cricketspielen gibt es in Edinburgh ? +Wo in Paris gibt es Rathäuser ? +Kannst du mir bitte die E-Mail Adresse eines Hotels in Paris nennen ? +Wie viele Meilen liegen zwischen Aberdeen und Edinburgh ? +Wie heißen die Krankenhäuser von Heidelberg ? +Gibt es archäologischen Stätten in Paris ? +Gibt es Feuerwehren in Heidelberg ? +Gibt es irgendwelche Aussichtspunkte in Heidelberg , die mit dem Rollstuhl zugänglich sind ? +Welches ist die nächste Apotheke von dem Palace of Holyroodhouse in Edinburgh ? +Wenn ich in Paris wäre , wie viele Bibliotheken könnte ich besuchen ? +Gibt es Büchereien in Edinburgh ? +Wann wurden die verschiedenen verlassenen Freizeitparks geschlossen ? +Gibt es ein Schwimmbad im Westen von Edinburgh ? +Gibt es irgendwelche Orte in Edinburgh an denen man Rugby spielen kann ? +Wo im Westen von Lyon gibt es Wandgemälde und wie heißen diese ? +Wie viele Brücken gibt es in Eure-et-Loir und wo sind diese ? +Wie viele Menschen leben in Heidelberg ? +Kann ich von der Mannheimer Straße aus in Heidelberg zur nächsten Kirche laufen ? +Wo ist die nächste Aufladestation von der Lothian Road in Edinburgh ? +Kannst du mir den Standort einer Metzgerei in Heidelberg geben ? +Kann ich irgendwo in Paris vegetarisch essen ? +Was sind die Standorte aller Bäckereien in Edinburgh ? +Wo ist die nächste öffentliche Toilette vom Rührbrunnen in Stuttgart ? +Welche Städte befinden sich im Westen von Paris ? +Gibt es Weinreben im Norden von Heidelberg ? +Gibt es eine Autobahn A5 , die nach Heidelberg führt ? +Gibt es irgendwelche Universitäten in Paris ? +Wo gibt es 4 Sterne Hotels im Westen von Heidelberg ? +Welche Berge befinden sich in Heidelberg ? +Wo in Paris befindet sich das Sacre Coeur ? +Wo sind der nächste Metzger und der nächste Bäcker von Quai de Béthune in Paris ? +Wie viele Stolpersteine kann man in Magdeburg und Netphen finden ? +Wo sind Fahrradparkplätze in Heidelberg ? +Wie viele Quellen gibt es im Westen von Nîmes ? +Wie weit sind der Eiffelturm und Notre Dame in Paris voneinander entfernt ? +Wo gibt es Briefkästen südlich von Schriesheim ? +Kann ich vom Gare du Nord in Paris aus zum nächsten Kulturzentrum laufen ? +Wie heißt der nächste Freizeitpark von Heidelberg aus ? +Wer ist der Betreiber der Bushaltestelle Mairie du XV in Paris an ? +Gibt es in Heidelberg öffentlich zugängliche Defibrillatoren ? +Wo gibt es Metzger und Bäcker in Edinburgh ? +Kannst du mir die Webseiten und Telefonnummern von Fahrradverleihen in Paris nennen ? +Gibt es Weinreben im Westen von Heidelberg ? +Welche archäologischen Stätten existieren im Norden von Paris ? +Gibt es 5 oder mehr Rastplätze in Edinburgh ? +Wie viele verschiedene Kunstwerke könnte ich mir in Paris anschauen ? +Wie viele Orte zum Geldwechseln gibt es im Osten von Edinburgh ? +Welche Art von Landbenutzungen sind in Edinburgh verzeichnet ? +Wie lauten die Namen aller asiatischen Restaurants in Edinburgh ? +Ist St Mary's Episcopal Cathedral eine Kathedrale in Edinburgh ? +Wie viele Denkmäler gibt es im Süden von Heidelberg ? +Welche Kultstätten gibt es in Heidelberg ? +Wie viele Schwimmbäder gibt es im Süden von Edinburgh ? +Kannst du mir die Standpunkte aller Schlüsselnachmacher in Edinburgh auflisten ? +In welchen Städten gibt es Konferenzzentren ? +Gibt es 13 oder mehr Grabmale in Edinburgh ? +Wie viele Campingplätze gibt es in Edinburgh ? +Welches ist das nächste Hotel vom Edinburgh Schloss ? +Wie viele 3 Sterne Hotels gibt es im Westen von Heidelberg ? +Gibt es Burgen in Edinburgh ? +Bei wie vielen Bergspitzen in Edinburgh gibt es eine Wanderkarte , die man zu Fuß erreichen kann ? +Kannst du mir bitte die Websites aller Hotels in Edinburgh nennen ? +Gibt es eine Straße namens Marktstraße in Neuenheim ? +Wie nah ist der nächste Kindergarten vom Ulster Drive in Edinburgh ? +Wer betreibt die Mitfahrzentralen in Paris ? +Wie viele Spuren hat die Maaßstraße in Heidelberg ? +An wie viel verschiedenen Orten kann man in Heidelberg schwimmen gehen ? +Welche Art von Kunstwerk erschaffen die berlin bears ? +Gibt mir die Wikipedia Seiten von U-Bahn Stationen in Île-de-France ? +Wie weit sind Pilrig St Paul's und True Jesus Church in Edinburgh von einander entfernt ? +Gibt es mehr als eine Universität in Paris ? +Gib mir Name und Ort aller Touristenaktivitäten in Edinburgh , die man mit dem Rollstuhl besuchen kann . +Was ist das nächste Denkmal vom Königstuhl in Heidelberg und wo ist es ? +Wo gibt es einen Rastplatz in Paris ? +Wie viele Denkmäler gibt es in Heidelberg ? +Wo gibt es Kreisel im Osten von Dresden ? +Wie viele historische Herrschaftshäuser kann man als Tagesausflug von Edinburgh aus besuchen ? +Wo sind die Krankenhäuser Paris' ? +Wo in Edinburgh kann ich Brauereien finden ? +Wie viele Kindergärten gibt es in Paris ? +Wie viele Notfalltelefone gibt es in Heidelberg ? +Wo gibt es 4 Sterne Hotels im Süden von Paris ? +Gibt es Golfplätze im Umkreis von Heidelberg ? +Kannst du mir ein Kino in Paris nennen , welches ein Restaurant in der Nähe hat , das man zu Fuß erreichen kann ? +Wo ist die nächste Recycling Stelle für Kleider von der Rue Lauriston in Paris ? +Könntest du alle Aussichtspunkte Paris' auflisten ? +Gibt es Moscheen im Süden von Edinburgh ? +Wie viele Notfalltelefone gibt es in Paris ? +Welchen Konfessionen gehören die Kathedralen von Paris an ? +Welche Kinos gibt es in Heidelberg ? +Welches ist der nächste Flughafen von Edinburgh ? +Wo gibt es Metzger und Bäcker in Heidelberg ? +Wie viele Werbesäulen gibt es in Paris ? +Kann man Badminton oder Tennis in Heidelberg spielen ? +Kannst du mir mögliche Parkgelegenheiten in Edinburgh nennen ? +Bitte gib mir die Namen der Autobahnen in Heidelberg ? +Wie viele Möglichkeiten gibt es in Paris Tischtennis zu spielen ? +Gibt es Bio Supermärkte im Osten von Edinburgh ? +Wo kann ich archäologischen Stätten in Edinburgh finden ? +Wie viele Restaurants gibt es im Osten von Paris ? +Wie viele Second Hand Läden gibt es im Osten von Paris ? +Kannst du alle Orte aufzählen , an denen es überdachte Fahrradparkplätze in Edinburgh gibt ? +Gibt es 3 oder mehr Aussichtspunkte in Heidelberg ? +An wie vielen Orten kann ich in Paris klettern gehen ? +Würdest du mir bitte die Anzahl an Verkehrsampeln in Edinburgh geben ? +Wie lautet die Wikipedia Seite des Königstuhls in Heidelberg ? +Wie viele Hotels in Paris sind mit einem Rollstuhl befahrbar ? +Kann ich irgendwo in Paris Meeresfrüchte kaufen ? +Wie viele Wasserbrunnen gibt es in Edinburgh ? +Wie viele Orte gibt es um Tennis zu spielen im Norden von Montpellier ? +Wo in Edinburgh kann ich Schreibwaren kaufen ? +Kannst du mir eine Apotheke in Heidelberg nennen ? +Welche archäologischen Stätten existieren im Westen von Paris ? +Gibt es eine Bank im 7 . Arrondissement , Paris ? +Bitte , kannst du mir die Namen von Theatern in Paris nennen , die mein Mann , der im Rollstuhl sitzt , besuchen kann ? +Wo sind der nächste Metzger und der nächste Bäcker von der Mannheimer Straße in Heidelberg ? +Wo gibt es Schulen im Süden von Bielefeld ? +Kannst du alle Orte aufzählen , an denen es überdachte Fahrradparkplätze in Heidelberg gibt ? +Wie viele subways gibt es in Heidelberg ? +Wie viele Denkmäler gibt es im Westen von Edinburgh ? +An welchen Orten in Edinburgh kann man Autos unterirdisch parken ? +Welche Höhe haben die Gipfel in Heidelberg ? +Gibt es Bio Supermärkte im Westen von Paris ? +Wie viele griechische Restaurants gibt es in Heidelberg und wo sind diese ? +Gibt es einen Starenweg in Lampertheim ? +Wie viele Fahrradparkplätze gibt es in Edinburgh ? +Wie viele McDonalds gibt es in Heidelberg ? +Welche Kinos in Edinburgh kann man mit einem Rollstuhl befahren ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Westen von Paris nennen ? +Wie weit ist der Cat Stane Megalith vom Edinburgh Flughafen entfernt ? +Wie viele Meilen liegen zwischen Frankfurt und Heidelberg ? +Wie viele Restaurants in Paris würden mir griechisches Essen servieren ? +Wo in Paris gibt es Restaurants in denen das Rauchen erlaubt ist ? +Würdest du mir bitte den Namen eines Hotels mit 4 Sternen in Edinburgh sagen ? +Hat Paris Burger Kings ? +Kannst du mir die Zahl der Polizeiwachen in Heidelberg nennen ? +Wo gibt es 4 Sterne Hotels im Westen von Edinburgh ? +Wo in Paris kann ich Eis kaufen ? +Sind Fahrräder auf der Avenue du Général Lemonnier in Paris erlaubt ? +Wie viele Schulen befinden sich in Paris ? +Wie viele Tennisplätze hat Paris ? +Wer sind die Künstler der Wandgemälde in Lyon ? +Wo ist die nächste Bushaltestelle von der Librairie Galignani in Paris ? +Wie viele Friedhöfe befinden sich im Osten von Edinburgh ? +Wie viele Stolpersteine befinden sich im Umkreis von Heidelberg ? +Wie weit muss ich vom Edinburgh Waverley aus fahren um eine Aufladestation zu finden ? +Ist das Sacre Coeur eine Kathedrale in Paris ? +Wie heißen die Campingplätze in Heidelberg ? +Wo ist der nächste Fahrradparkplatz von der Avenue René Coty in Paris ? +Wie viele Bahnhöfe kann man im Norden von Edinburgh finden ? +Bitte zähle alle Geburtstage der Menschen auf , die einen Stolperstein in Heidelberg haben . +Kannst du mir sagen , wo es Flughäfen gibt , die maximal 50km von Edinburgh entfernt sind ? +Vom Edinburgh Castle aus , wo ist die nächste Gelegenheit Geld zu wechseln ? +Welches ist der nächste Kindergarten vom Wördenmoorweg aus in Hamburg und wo ist dieser ? +Gibt es afrikanische Restaurants in Edinburgh ? +Bitte zähle alle Orte von Stolpersteinen im Süden von Heidelberg auf , die man mit einem Rollstuhl besuchen kann ! +Gibt es Moscheen nördlich von Paris ? +Wo gibt es Restaurants im Westen von Heidelberg ? +Wie viele Piere gibt es in Paris ? +Wie viele Spielstraßen gibt es in Paris ? +Wo ist die nächste Kirche von dem Palace of Holyroodhouse in Edinburgh aus ? +Wie weit sind der Palace of Holyroodhouse und Calton Hill in Edinburgh voneinander entfernt ? +Wie viele Brücken gibt es im Süden von Edinburgh und wo sind diese ? +Gibt es einen Supermarkt in der Nähe der Avenue des Ternes in Paris ? +Gibt es Moscheen im Westen von Edinburgh ? +Gibt es in der Nähe von Edinburgh einen Flughafen ? +Kann man das Sacre Coeur in Paris mit dem Rollstuhl besuchen ? +Wie viele Schwimmbäder gibt es in Heidelberg ? +Wo in Edinburgh kann ich mein Klettern üben ? +Welches Restaurant ist dem Sacre Coeur in Paris am nächsten und wo ist es ? +Gibt es Moscheen im Norden von Heidelberg ? +Wie viele Meilen sind Heidelberg und Mannheim von einander entfernt ? +Wie viele 3 Sterne Hotels gibt es im Süden von Paris ? +Gibt es Helikopterlandeplätze im Süden von Heidelberg ? +Wie heißt das Restaurant am nächsten am Heidelberger Schloss ? +Wie viele Piere gibt es in Heidelberg ? +Wo in Paris gibt es Friedhöfe ? +Wie viele Brauereien gibt es in der Bretagne und wie heißen diese ? +Wo in Paris gibt es Burgen ? +Kannst du mir sagen , wo in Heidelberg ich ein Postamt finden kann ? +Welche Höhe haben die Gipfel in Edinburgh ? +Gibt es irgendwelche Orte in Paris an denen man Tennis spielen kann ? +Kann man Mitfahrzentrale in Edinburgh finden ? +Was ist die Zahl der Denkmäler in Edinburgh ? +Wie viele Rathäuser gibt es in Paris ? +Gibt es historische Stätten in der Nähe des Gare du Nord in Paris zu denen man laufen kann ? +Welche Krankenhäuser existieren in Edinburgh ? +Wo gibt es Konferenzzentren ? +Gibt es einen Ort in Paris wo man sich zum Rudern trifft ? +Gibt es 3 oder mehr Aussichtspunkte in Paris ? +Wenn ich in Paris wäre , aus wie vielen Restaurants , die französisches Essen servieren , könnte ich auswählen ? +An wie vielen Orten in Heidelberg kann ich mir ein Fahrrad leihen ? +Wie viele Denkmäler gibt es im Norden von Edinburgh ? +Wie viele historische Stätten gibt es im Westen von Nantes ? +Wie viele Second Hand Läden gibt es im Norden von Edinburgh ? +Wie viele Meilen liegen zwischen Marseille und Paris ? +Würdest du mir verraten wie die griechischen Restaurants in Edinburgh heißen ? +Gibt es Helikopterlandeplätze in Paris ? +Welche Freizeitbeschäftigungen werden im Heidelberg Marriott Hotel angeboten ? +Gibt es einen Ort in der Nähe von Edinburgh , wo man tauchen gehen kann ? +Wie viele Fast Food Restaurants gibt es im Osten von Edinburgh ? +Wo in Heidelberg befinden sich Banken ? +Gibt es 5 oder mehr Wasserbrunnen in Edinburgh ? +Wie viele griechische und italienische Restaurants gibt es in Heidelberg ? +Wie viele Möglichkeiten gibt es in Heidelberg Tischtennis zu spielen ? +Kannst du mir mögliche Parkgelegenheiten in Paris nennen ? +Welche Art von Attraktivitäten gibt es in der Nähe des Bahnhofs Heidelberg-Altstadt ? +Bitte gib mir Cafés in Heidelberg , die einen Parkplatz in der Nähe haben . +Wie viele Spielplätze gibt es in York ? +Kannst du mir die verfügbaren Wikipedia Seiten der archäologischen Stätten von Paris sagen ? +Wo in Paris gibt es Museen ? +Gibt es Weinreben im Osten von Paris ? +Wo ist die nächste Werbesäule vom Kino Le Cinaxe in Paris ? +Welche Städte befinden sich im Norden von Paris ? +Welche Geschäfte gibt es um das Hard Rock Cafe in Heidelberg ? +Kannst du mir die Orte von Bücherläden in Heidelberg sagen ? +Wie viele Spielstraßen gibt es in Heidelberg ? +Wo gibt es Briefkästen im Süden von Schriesheim ? +Wie viele Burgen hat Heidelberg ? +Wie viele Naturschutzgebiete gibt es im Hohenlohekreis ? +Wo in Paris gibt es Gefängnisse ? +Wie viele 4 Sterne Hotels gibt es in Edinburgh und wo sind diese ? +Bitte gib mir die Namen der Autobahnen in Edinburgh ? +Wie viele Kulturzentren liegen um dem Edinburgh Waverley ? +Kannst du mir den Straßenname einer Bäckerei in Edinburgh geben ? +Wie lauten die Öffnungszeiten des Tesco , der am nächsten an Deaconess Garden in Edinburgh ist ? +Wie viele subways gibt es in Edinburgh ? +Wie heißt das nächste Geschäft von der Mannheimer Straße in Heidelberg bei dem man ein Handy kaufen kann ? +Wo befinden sich die Berge Edinburghs ? +Welches ist der nächste internationale Flughafen von Paris ? +Was ist der Name eines Hotels in Edinburgh in dem man nicht Rauchen darf ? +Wo gibt es Denkmäler im Westen von Bayern ? +Wo gibt es Banken in Paris , die man mit Rollstuhl befahren kann ? +Gibt es Gebäude in Planung ? +Wie lautet die Wikipedia Seite der William Chambers Statue in Edinburgh ? +Wie viele Schwimmbäder gibt es im Westen von Heidelberg ? +Wie viele Universitäten hat Edinburgh ? +Wo sind Stellen in Edinburgh an denen Taxis warten ? +Wer betreibt die Aufladestationen in Edinburgh ? +Welche Flughäfen befinden sich maximal einen Tagesausflug weit von Edinburgh ? +Gibt es verlassene Freizeitparks ? +Kannst du mir die Telefonnummer einer Bäckerei in Paris geben ? +Wie viele Denkmäler gibt es im Süden von Paris ? +Gibt es historische Stätten in der Nähe des Edinburgh Waverleys zu denen man laufen kann ? +Wie viele Schwimmbäder gibt es im Süden von Paris ? +Wo in Paris kann ich meinen Kampfsport üben ? +Bitt gib mir die Namen und Webseiten von allen Kulturzentren in Paris ! +Was ist die Anzahl von Bars in Heidelberg ? +Wie viele Church of Scotland Kirchen gibt es in Edinburgh ? +Gibt es eine Quelle im Westen von Paris ? +Wie viele Notfallsirenen gibt es in Witten ? +Vom Heidelberger Hauptbahnhof aus , wo ist die nächste Trinkwasserstelle ? +Wo kann man sich in Heidelberg Fahrräder leihen ? +Würdest du mir verraten wie die griechischen Restaurants in Heidelberg heißen ? +Wo sind in Paris Supermärkte ? +Wo in Heidelberg kann ich rudern gehen ? +Kann man das Hotel Malmaison in Edinburgh mit einem Rollstuhl befahren ? +Wie viele Edeka Märkte gibt es in Heidelberg ? +Gibt es ein Lokal in Edinburgh in dem Sandwich serviert werden ? +Wie viele Kirchen gibt es im Osten von Edinburgh ? +Welche Moscheen findet man in Paris ? +Wie viele Ruinen gibt es in Heidelberg ? +Gibt es Weinreben im Osten von Heidelberg ? +Kann ich irgendwo in Paris Skateboard fahren ? +Welche Busse halten an der Peterskirche in Heidelberg an ? +Gibt es Wandgemälde in Deutschland ? +Wie viele Feuerwehren befinden sich in Paris ? +Wie viele Bücherläden gibt es in Heidelberg ? +Ist die Avenue du Général Lemonnier in Paris eine Einbahnstraße ? +Gibt es einen Kindergarten in Neuenheim ? +Würdest du bitte alle Bäckereien in Heidelberg auflisten ? +Gibt es ein Restaurant namens La Garrigue in Edinburgh ? +Könntest du mir sagen aus wie vielen Rastplätzen man in Edinburgh auswählen kann ? +Könntest du mir bitte alle Bademöglichkeiten Paris' nennen ? +Wie viele Orte für Minigolf gibt es im Westen von Heidelberg ? +Wo sind in Edinburgh Supermärkte ? +Gibt es Fahrradverleihe in Heidelberg ? +Kann man irgendwo in Heidelberg Fußball spielen ? +Kann man im Umkreis von Heidelberg irgendwo Tauchausrüstung kaufen ? +Wo warten Taxis in Edinburgh ? +Gibt es 5 oder mehr Kathedralen in Paris ? +An wie vielen verschiedenen Orten in Paris kann ich Picknick machen ? +Wie viele Apotheken gibt es in Edinburgh ? +Wie viele Second Hand Läden gibt es in Edinburgh ? +Kannst du mir den Ort eines Restaurants in Heidelberg nennen , das man mit einem Rollstuhl befahren kann ? +Wie viele Kirchen gibt es im Süden von Paris ? +Gibt es eine Quelle im Osten von Paris ? +Wie viele Grabmale gibt es im Süden von Paris ? +Gibt es mehr als eine Feuerwehr in Edinburgh ? +Gibt es ein Rathaus in der Näher der Rue Vercingétorix in Paris zu dem man hinlaufen kann ? +Wer erbaute den Eiffelturm in Paris ? +Wie viele Bahnhöfe kann man im Osten von Heidelberg finden ? +Wo gibt es Seilrutschen ? +Kannst du mir den Namen des nächsten Restaurants oder der nächsten Bar vom Heidelberg Schloss aus nennen ? +Wo gibt es Kindergärten in Paris ? +Wie viele Quellen gibt es im Umkreis von Heidelberg ? +Gibt es archäologischen Stätten in Edinburgh ? +Gibt es Helikopterlandeplätze im Süden von Paris ? +Existieren griechische Restaurants in Heidelberg ? +Wo gibt es Schulen in Bielefeld ? +Wo in Paris kann ich Burgers essen ? +Welche katholischen Kirchen gibt es in Edinburgh ? +Kannst du mir die Orte von allen archäologischen Stätten in Paris geben ? +Gibt es Polizeiwachen in Heidelberg ? +Bitte gib mir Kinos in Edinburgh , die einen Parkplatz in der Nähe haben . +Ist es möglich zum nächsten Fitnessstudio zu laufen von dem Wieblinger Weg in Heidelberg ? +Welche Art von Attraktivitäten gibt es in der Nähe des Bahnhofs Bastille in Paris ? +Wo gibt es Bushaltestellen in San Francisco ? +Wie viele Schwimmbäder gibt es in Paris ? +Wo in Stuttgart gibt es Spielplätze , die man mit dem Rollstuhl befahren kann ? +Wo in Baden-Baden gibt es Notfallsirenen ? +Wenn ich in Edinburgh wäre , aus wie vielen Restaurants , die britisches Essen servieren , könnte ich auswählen ? +Wie viele Denkmäler oder Wegekreuze gibt es in Nantes ? +Gibt es 5 oder mehr Kathedralen in Edinburgh ? +Wo gibt es Bushaltestellen in Paris ? +Wie viele Kirchen gibt es im Norden von Heidelberg ? +Welche Aktivitäten gibt es für Touristen in Paris ? +Wo sind die Hotels Paris' , die von Accor geführt werden ? +Wo gibt es Schulen im Westen von Bielefeld ? +Wo in Heidelberg gibt es Plätze zum Grillen ? +Welches ist das nächste Fast Food Restaurant vom Heidelberger Hauptbahnhof aus ? +Wie viele Kathedralen gibt es im Norden von Paris ? +Wo im Norden von Edinburgh kann ich Geld wechseln ? +Welche Art von Attraktivitäten gibt es in Heidelberg ? +Wenn ich in Edinburgh wäre , aus wie vielen Restaurants kann ich wählen ? +An wie vielen verschiedenen Orten in Edinburgh kann ich Picknick machen ? +Kannst du mir bitte den Standort eines Hotels in Heidelberg nennen ? +Für welche Menschen gibt es Stolpersteine in Bielefeld ? +Bitte gib mir Kinos in Heidelberg , die einen Parkplatz in der Nähe haben . +Kann ich in der Nähe von Paris American Football zu spielen ? +Wie hoch sind die Kapazitäten der verschiedenen Fahrradparkplätze in Edinburgh ? +Wie lautet der japanische Name für den Eiffelturm in Paris ? +Gibt es Tankstellen in Heidelberg , die immer offen sind ? +Wie viele Campingplätze gibt es im Norden von Heidelberg ? +Wo gibt es U-Bahn Stationen in Île-de-France ? +An wie vielen Stellen in Heidelberg kann ich Fußball spielen ? +Wie viele 3 Sterne Hotels gibt es im Norden von Edinburgh ? +Wie viele Kindergärten gibt es in Hamburg ? +Wie viele Schulen gibt es in Bielefeld ? +Gibt es mehrere Rugbyplätze in Edinburgh ? +Wie weit entfernt ist die nächste Tankstelle von der Avenue de Ségu in Paris ? +Wie viele Metzgereien in Edinburgh kann man mit einem Rollstuhl befahren ? +Kann ich irgendwo in Paris Meeresfrüchte essen ? +Kann ich irgendwo in Edinburgh vegetarisch essen ? +Wo in Edinburgh kann ich schwimmen gehen ? +Wie viele Botschaften gibt es in Paris ? +Aus welchen Küchen kann ich in Heidelberg wählen ? +Wie viele Entitäten mit dem Namen Driving Test Centre gibt es und wo sind diese ? +Wie viele Schulen gibt es im Norden von Paris ? +Wenn ich in Paris wäre , wie viele Hotel Optionen hätte ich ? +Kannst du mir Bars in Edinburgh nennen in denen es kostenloses Internet gibt ? +Kann man den nächsten Ort zum Klippenspringen von Edinburgh aus als Tagesausflug besuchen ? +Welche Art von historischen Stätten gibt es in Marseille ? +Gibt es einen Golfplatz in Paris ? +Sollte ich das Auto nehmen , um zur nächsten Bäckerei von Mary King's Close in Edinburgh zu kommen ? +Wie viele Fast Food Restaurants gibt es im Osten von Heidelberg ? +Gibt es eine Quelle im Süden von Heidelberg ? +Gibt es irgendwelche schönen Aussichtspunkte in Edinburgh ? +Welche Art von Freizeitaktivitäten gibt es in Paris ? +Wie heißen Kinos , die man vom Place de la République in Paris zu Fuß erreichen kann ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Süden von Paris nennen ? +Wie viele Spielstraßen in Paris sind zudem Einbahnstraßen ? +Gibt es einen Supermarkt in der Nähe der Lothian Road in Edinburgh ? +Wo kann ich archäologische Stätten in Paris finden und wie heißen diese ? +Kannst du mir alle Orte in Heidelberg nennen an denen man Skateboard fahren kann ? +Wo in Baden-Württemberg gibt es Notfalltelefone ? +Wo ist das nächste Restaurant vom Pier Neckarsonne Ausflugsschiff in Heidelberg ? +Kannst du mir die Telefonnummern von Fahrradverleihen in Paris nennen ? +Vom Eiffelturm in Paris aus , wo ist die nächste Gelegenheit Geld zu wechseln ? +Wo kann man Wasser treten ? +Wie viele Grundschulen gibt es in Neuenheim ? +Gibt es ein Lokal in Heidelberg in dem Sandwich serviert werden ? +Gibt es eine Straße namens Rue Poliveau im 5 . Arrondissement ? +Wie heißen die Bio Supermärkte Paris ? +Gibt es Denkmäler in Heidelberg , die Quellen sind ? +Gibt es einen Bio Supermarkt , den man von der Lothian Road in Edinburgh zu Fuß erreichen kann ? +Wie viele Helikopterlandeplätze gibt es in Edinburgh ? +Kann ich vom Heidelberger Schoss zum Hauptbahnhof laufen ? +Wie viele Spuren hat die Whitehouse Loan in Edinburgh ? +Kannst du mir sagen , wo in Edinburgh ich ein Postamt finden kann ? +Gibt es Campingplätze in Heidelberg ? +Wie viele Unfallstationen hat Heidelberg ? +Welche archäologischen Stätten existieren im Süden von Edinburgh ? +Wo in Edinburgh kann ich mein Auto parken ? +Wo gibt es Bergwerke in Paris ? +An wie vielen Orten in Edinburgh kann ich mein Basketball verbessern ? +Welche Church of Scotland Kirchen gibt es in Edinburgh ? +Welche Kultstätten gibt es in Edinburgh ? +Wie viele Schwimmbäder gibt es im Norden von Edinburgh ? +Gibt es ein Schwimmbad im Osten von Edinburgh ? +Welche Flughäfen befinden sich maximal einen Tagesausflug weit von Heidelberg ? +Wie lauten die Webseiten und Namen der Museen oder Kulturzentren , die man zu Fuß vom Eiffelturm in Paris erreichen kann ? +Wo im Norden von Heidelberg gibt es Werbesäulen ? +Wie weit sind der Musee du Louvre und Arc de Triomphe in Paris voneinander entfernt ? +Wie viele Bahnhöfe gibt es in Heidelberg ? +Gibt es ein Restaurant in der Nähe der Avenue des Ternes in Paris ? +Wie viele Restaurants gibt es im Süden von Heidelberg ? +Wie lauten die Öffnungszeiten des McDonalds der am nächsten am Heidelberger Hauptbahnhof ist ? +Wo ist das nächste Kulturzentrum vom Musee de Louvre in Paris und wie heißt es ? +Gibt es Attraktionen in Paris ? +Wie viele Bergwerke gibt es in Paris ? +Wie viele Kinos gibt es in Edinburgh ? +Wo in Edinburgh gibt es Friedhöfe ? +Kannst du mir sagen wo in Edinburgh es Bars gibt ? +Wie lautet die Website des Buffalo Grill in Edinburgh ? +Wie viele Bergwerke gibt es im Süden von Heidelberg ? +Wo in Edinburgh kann ich Cricket spielen ? +Wo im Westen von Paris kann ich Geld wechseln ? +Kannst du mir bitte die E-Mail Adresse eines Hotels in Heidelberg nennen ? +Gibt es einen Wasserbrunnen innerhalb von 2km um das Heidelberger Schloss ? +Wie viele Schlüsselnachmacher gibt es in Edinburgh ? +Aus welchen Küchen kann ich in Edinburgh wählen ? +Wie viele Fish and Chips Läden gibt es im Osten von Edinburgh ? +Wie lautet die Wikipedia Seite der Stadt Edinburgh ? +Wo gibt es Bushaltestellen im Westen von San Francisco ? +Gibt es Aufladestationen für elektrische Autos in Paris und falls ja , wie viele ? +Wie viele Bäckereien gibt es in Heidelberg ? +Wo ist der nächste Renault Händler von Paris aus ? +Kann das Restaurant Cesarino in Heidelberg mit einem Rollstuhl befahren werden ? +Was ist die Telefonnummer des The Salisbury Hotels in Edinburgh ? +Wie weit sind der Palace of Holyroodhouse und die Camera Obscura in Edinburgh voneinander entfernt ? +Wo in Edinburgh befinden sich Quellen ? +Wie heißen alle Schwimmbäder , die maximal 30km von Edinburgh entfernt sind ? +Wo sind Mitfahrzentralen in Heidelberg , die immer offen sind . +Welchen Konfessionen gehören die Kathedralen von Edinburgh an ? +Gibt es Bio Supermärkte im Norden von Paris ? +Wie viele Fahrradverleihe gibt es im Norden von Heidelberg ? +Wo sind die nächste Bank und die nächste Apotheke von der Yorckstraße in Heidelberg ? +Wo gibt es Schulen in Bielefeld , die man als Rollstuhlfahrer besuchen kann . +Wie viele griechische und italienische Restaurants gibt es in Paris ? +Was sind die maximalen Geschwindigkeiten , die für die Whitehouse Loan in Edinburgh aufgeführt sind ? +Kann ich irgendwo in Heidelberg Tennis spielen ? +Kann ich von Quai de Béthune aus in Paris zur nächsten Kirche laufen ? +Wie viele Fast Food Restaurants gibt es im Süden von Heidelberg ? +Welches ist der nächste Parkplatz von Librairie Galignani in Paris ? +Wie viele Häfen gibt es in Edinburgh ? +Gibt es Grenzsteine in Nantes ? +Wie viele Schwimmbäder gibt es im Süden von Heidelberg ? +Wie weit entfernt ist die nächste Tankstelle von Cambridge Gardens in Edinburgh ? +Wo in Edinburgh gibt es Gefängnisse ? +Wann wird die Post in Briefkästen um Alaise eingesammelt ? +Wie viele Museen befinden sich in Paris ? +Gibt es im Moment in Paris irgendwelche Baustellen ? +Wie heißen die Orte an denen man Rugby spielen kann in Edinburgh ? +Gibt es einen Hafen in Edinburgh ? +Wo ist das nächste Hotel vom Pier Neckarsonne Ausflugsschiff in Heidelberg ? +Gibt es ein Restaurant namens Taj Mahal in Heidelberg ? +Kannst du mir bitte die Internetseite der Hotels in Paris nennen ? +Gibt es Tankstellen in Paris , die immer offen sind ? +Wo ist die nächste Recycling Stelle für Kleider von Mary King's Close in Edinburgh ? +Wo im Süden von Paris gibt es Trinkwasser ? +Kannst du mir den Standort einer Metzgerei in Paris geben ? +Wo kann man in Heidelberg Unfallstationen finden ? +Gibt es eine Quelle im Süden von Paris ? +Kann man den nächsten Ort zum Klippenspringen von Heidelberg aus als Tagesausflug besuchen ? +Kann ich vom Palais de l’Élysée in Paris zum nächsten Springbrunnen laufen ? +Gibt es Stolpersteine in Ludwigshafen am Rhein ? +Welche Art historische Stätte ist dem Gare du Nord in Paris am nächsten ? +Wo in Heidelberg kann ich Tischtennis spielen ? +Wie viele Hotels befinden sich in Heidelberg ? +Wo sind Stellen in Paris an denen Taxis warten ? +Gibt es ein Restaurant namens Ristorante Pellicano in Paris ? +Wie viele Bäckereien gibt es in Edinburgh ? +Gibt es eine Straße namens Amselgasse in Handschuhsheim ? +Wo sind Kirchen , die Nahe am Heidelberger Schloss sind ? +Wo gibt es Mienenfelder auf der Erde ? +Gibt es mehr als 2 Orte mit Trinkwasser in Edinburgh ? +Wie lautet die Website des Kinos Cinéma Chaplin in Paris ? +Wie viele Stolpersteine lassen sich im Süden von Heidelberg finden ? +Gibt es mehrere Quellen in Heidelberg ? +Wo in Paris kann ich schwimmen gehen ? +Wie viele Mitfahrzentralen gibt es in Heidelberg ? +Wie heißen die Quellen im Umkreis von Paris ? +Kann ich vom Palais de l’Élysée zum Gare du Nord in Paris laufen ? +Wo gibt es Wassertürme in Vendée ? +Wie viele Bergspitzen in Edinburgh haben einen Parkplatz in der Nähe ? +Wie lautet die Telefonnummer des Taj Mahal in Heidelberg ? +Wo sind in Heidelberg Supermärkte ? +Welche Geschäfte gibt es um das Hard Rock Café in Paris ? +Wie viele Bücherläden gibt es in Edinburgh ? +Wo gibt es Schulen im Osten von Bielefeld ? +Kann ich von dem Palace of Holyroodhouse in Edinburgh zum nächsten Springbrunnen laufen ? +Wo liegt das Edinburgh Schloss ? +Bitte gib mir die Namen der Botschaften in Paris . +Welche Museen von Paris haben WLAN ? +Wie viele Postämter gibt es in Paris ? +Wie viele archäologische Stätten kann ich in Heidelberg finden ? +Welche Art von historischen Stätten gibt es in Edinburgh ? +Wie viele Kulturzentren liegen um dem Gare du Nord in Paris ? +In wie vielen Hotels in Edinburgh darf man nicht rauchen ? +Gibt es Megalithe in Edinburgh und falls ja , wo ? +Welches ist das nächste Museum vom Gare du Nord in Paris ? +Wie viele Seilrutschen gibt es ? +Wie viele Restaurants in Edinburgh würden mir griechisches Essen servieren ? +Gibt es Denkmäler in Edinburgh ? +Existieren griechische Restaurants in Paris ? +Wie viele Restaurants gibt es in Paris ? +Gibt es Mitfahrzentralen in Paris ? +Gibt es mehr als ein Fahrradparkplatz in Paris ? +Wie viele Kirchen gibt es im Norden von Paris ? +Wo gibt es im Norden von Paris Museen ? +Gibt es Moscheen im Westen von Heidelberg ? +Bitte sag mir , wo es nördlich vom Place de la République in Paris öffentliche Toiletten gibt . +Gibt es japanische Restaurants in Edinburgh ? +Was ist die Anzahl von Bars in Edinburgh ? +Wie viele Rathäuser gibt es in Heidelberg ? +Wo gibt es Gipfel in Edinburgh ? +Welche Art von Geschäften sind Geschäfte namens Cash Converters ? +Gibt es Helikopterlandeplätze im Norden von Paris ? +Welche Schulen in Edinburgh haben eine Bushaltestelle weniger als 200 Meter entfernt ? +Wie viele Brücken gibt es im Norden von Eure-et-Loir ? +Wo in Edinburgh gibt es Theater ? +In wie vielen Geschäften in Paris könnte ich einkaufen gehen ? +Wo in Heidelberg gibt es Bio Supermärkte ? +Wo warten Taxis in Heidelberg ? +Gibt es einen Wasserbrunnen innerhalb von 2km um das Palais de l’Élysée in Paris ? +Wie viele Blitzer gibt es in Paris ? +Welche katholischen Kirchen gibt es in Paris ? +Wie viele christliche Kirchen kann man in der Stadt Edinburgh finden ? +Welches ist das nächste Fast Food Restaurant vom Gare du Nord in Paris aus ? +Wo ist der nächste Helikopterlandeplatz von der Yorckstraße in Heidelberg ? +Wie lauten Name und Wikipedia Seite der Pariser Gefängnisse ? +Wie heißen die Geschäfte in der Sternstraße in Bonn ? +Kannst du mir sagen wie viele Supermärkte Heidelberg hat ? +Wie heißen die Grabmale von Paris und wie lauten deren Wikipedia Seiten ? +Wo kann man sich in Paris Fahrräder leihen ? +Wie viele Second Hand Läden gibt es im Norden von Paris ? +Gib mir die Webseiten von Kontrollstationen für Fahrräder ! +Gibt es Büchereien in Paris ? +Wie viele Aufladestationen gibt es in München und wo sind diese ? +Wie viele Friedhöfe gibt es in Edinburgh ? +Wie viele Restaurants gibt es in Berlin ? +Bitte gib mir alle Orte an denen es Monumente gibt im Osten von Pays de la Loire ! +Wie viele Geschäfte namens Cash Converters gibt es ? +Kannst du mir die Namen von archäologischen Stätten in Paris ? +Wo im Osten von Edinburgh kann ich Geld wechseln ? +Wie viele Kindergärten gibt es in Heidelberg ? +Würdest du mir die Orte von Monumenten in Edinburgh sagen ? +Wie viele Kathedralen gibt es im Westen von Paris ? +Falls es in Paris Mitfahrzentralen gibt , kannst du mir sagen wo ? +Wie viele Trinkwasserstellen in Heidelberg kann man mit dem Rollstuhl erreichen ? +Gibt es mehrere Orten zum Fußballspielen in Heidelberg ? +Hat O2 einen Fernmeldeturm in Edinburgh ? +Wann wurden die nun verlassenen Freizeitparks eröffnet ? +Wie viele Orte zum Geldwechseln gibt es im Süden von Paris ? +Wie viele Aussichtspunkte hat Edinburgh ? +Wenn ich die Universitäten Heidelbergs zählen würde , welche Zahl würde ich bekommen ? +Wo und wie viele Spielplätze gibt es im Norden von York ? +Gibt es irgendwelche Parks in Heidelberg und wenn ja , wo sind diese ? +Gibt es Burgen in Paris ? +Wo gibt es Restaurants im Osten von Paris ? +Kannst du mir die Webseiten von Kindergärten in Hamburg geben ? +Kannst du mir sagen wo ich ein Kunstwerk in Paris finden kann ? +An wie vielen verschiedenen Orten in Heidelberg kann ich Picknick machen ? +Welche Beschaffenheit hat die Whitehouse Loan in Edinburgh ? +Würdest du mir einen Ort in Edinburgh geben an dem ich Basketball spielen kann ? +Wo in Edinburgh gibt es Läden , die ausschließlich Second Hand Ware haben , und wie lauten die Öffnungszeiten ? +Gibt mir die Telefonnummern von Brennereien ! +Welche Kulturzentren gibt es in Paris ? +Existiert eine Straße , die Whitehouse Loan heißt in Morningside ? +Wie viele Fast Food Restaurants gibt es im Westen von Heidelberg ? +Kann man vom Palais de l’Élysée in Paris an einen Wasserbrunnen laufen ? +Wie viele Möglichkeiten gibt es in Edinburgh Basketball zu spielen ? +Vom Edinburgh Waverley aus , wo ist die nächste Trinkwasserstelle ? +Wo gibt es Briefkästen östlich von Schriesheim ? +Welche Schulen in Heidelberg haben eine Bushaltestelle weniger als 200 Meter entfernt ? +Hat der Südwestrundfunk einen Fernmeldeturm in Heidelberg ? +Wo in Edinburgh gibt es Viadukte ? +Kannst du mir bitte den Namen eines Hotels in Edinburgh nennen ? +Kannst du mir sagen , wo in Paris ich ein Postamt finden kann ? +Wie viele Werbesäulen gibt es in Edinburgh ? +Wo gibt es Restaurants im Osten von Heidelberg ? +Welche archäologischen Stätten existieren im Osten von Paris ? +Wo gibt es Banken in Edinburgh , die man mit Rollstuhl befahren kann ? +Wo finde ich ein wartendes Taxi in Heidelberg ? +Würdest du mir bitte den Namen eines Hotels in Paris sagen ? +Wie viele Migratenunterkünfte gibt es in Witten ? +Gibt es eine Bushaltestelle in der Lothian Road , Edinburgh ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Westen von Heidelberg nennen ? +Ist irgendeine Ruine in Heidelberg auch ein Tempel ? +Wie viele Fast Food Restaurants gibt es im Süden von Paris ? +Wer betreibt die Mitfahrzentralen in Heidelberg ? +Wo im Norden von Paris kann ich Geld wechseln ? +Gibt es 5 oder mehr Hotels in Edinburgh ? +Wie viele Burgen hat Paris ? +Wie weit von Heidelberg entfernt ist das nächste Planetarium ? +Gib mir Name und Ort aller Touristenaktivitäten in Paris , die man mit dem Rollstuhl besuchen kann . +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Norden von Heidelberg nennen ? +Wie heißen die historischen Stätten mit Inschriften und wie lauten diese in Nantes ? +Hat Edinburgh Burger Kings ? +Kannst du mir den Straßenname einer Metzgerei in Edinburgh geben ? +Wie viele subways gibt es in Paris ? +Wer sind die Hersteller der Windräder in Sachsen ? +Wenn ich in Edinburgh wäre , aus wie vielen Bars könnte ich wählen ? +Wo gibt es Kreisel im Norden von Dresden ? +Was ist das nächste Restaurant vom Brandenburger Tor aus in Berlin ? +Wer betreibt die Bushaltestelle Pasteur - Lycée Buffon in Paris ? +Kann ich irgendwo in Heidelberg vegetarisch essen ? +Gibt es eine Haltestelle namens Pont Cardinet in Paris ? +Welche Art von Landbenutzungen sind in Paris verzeichnet ? +Wie viele Theater gibt es in Paris ? +Wie viele Campingplätze gibt es im Osten von Paris ? +Wie viele Fahrradverleihe gibt es im Westen von Paris ? +Wie viele 3 Sterne Hotels gibt es im Süden von Edinburgh ? +Wo in Paris befinden sich Banken ? +Wie viele verlassene Freizeitparks gibt es ? +Gibt es 3 oder mehr Aussichtspunkte in Edinburgh ? +Falls es Wikipedia Seiten der Bergspitzen im Westen von Languedoc-Roussillon , nenne sie mir bitte . +Wie viele Rad Parkplätze gibt es in Edinburgh ? +Wie viele japanische Restaurants gibt es in Heidelberg ? +Wie viele Second Hand Läden gibt es im Süden von Heidelberg ? +Welche Ruine ist dem Heidelberger Hauptbahnhof am nächsten ? +Wie viele Unfallstationen hat Paris ? +Wie viele Banken befinden sich in Paris ? +Würdest du bitte alle Bäckereien in Paris auflisten ? +Wie heißen die Bademöglichkeiten in Heidelberg ? +Wie viele Kulturzentren gibt es im Westen von Paris ? +Würdest du mir bitte den Namen eines Hotels mit 4 Sternen in Heidelberg sagen ? +Wie viele Brücken gibt es im Süden von Eure-et-Loir ? +Würdest du mir sagen wo in Heidelberg sich Blitzer befinden ? +Würdest du mir den Ort eines Tennisplatzes in Paris nennen ? +Wie heißen die Kopiergeschäfte in Edinburgh und wo kann ich sie finden ? +Wo im Westen von Paris gibt es Werbesäulen ? +Wie weit ist die nächste öffentliche Toilette vom Rührbrunnen in Stuttgart entfernt ? +Wie heißen die Brennereien ? +Kann das Restaurant L'Encrier in Paris mit einem Rollstuhl befahren werden ? +Wie weit sind das Heidelberger Schloss und der Sume-Brunnen voneinander entfernt ? +Wie viele Kilometer sind Paris und Rennes von einander entfernt ? +Gibt es Planetarien im Umkreis von Edinburgh ? +Falls es Wikipedia Seiten der Bergspitzen im Osten von Languedoc-Roussillon , nenne sie mir bitte . +Wie weit sind der Palace of Holyroodhouse und der Bahnhof Haymarket in Edinburgh von einander entfernt ? +Welche Krankenhäuser existieren in Paris ? +Kannst du mir sagen wo ich ein Kunstwerk in Heidelberg finden kann ? +Wo und wie viele Spielplätze gibt es im Osten von York ? +Kannst du mir die Bücherläden von Paris nennen ? +Wie werden die Bergspitzen im Westen von Languedoc-Roussillon genannt und wie hoch sind sie ? +Wo auf der Welt gibt es Friedhöfe für Haustiere ? +Gibt es ein Schwimmbad im Westen von Paris ? +Wie viele Mobilfunkmasten gibt es in Heidelberg ? +Würdest du mir bitte den Namen eines Hotels in Heidelberg geben , bei dem es WLAN gibt ? +Wie viele Orte gibt es um Tennis zu spielen im Osten von Montpellier ? +Kannst du mir sagen wie viele Supermärkte Paris hat ? +Welche archäologischen Stätten kann ich in Edinburgh finden ? +Wie viele Zimmer gibt es im Hotel Schönberger Hof in Heidelberg ? +Wo gibt es Bushaltestellen im Osten von San Francisco ? +Was ist die Telefonnummer der Piatto Verde in Edinburgh ? +Wo in Heidelberg kann ich Burgers essen ? +Wie heißt das Restaurant am nächsten an der Camera Obscura in Edinburgh ? +Was ist die Homepage des Restaurants Zum Seppl in Heidelberg ? +Gibt es mehr als eine Burg in Paris ? +Wie viele Quellen gibt es in Paris ? +Gibt es Konferenzzentren in Deutschland ? +Gibt es Denkmäler in Edinburgh , die Quellen sind ? +Wie viele Schulen gibt es im Westen von Heidelberg ? +Vom Heidelberger Schloss aus , wo ist die nächste Bank mit Geldautomat ? +Wo im Westen von Paris gibt es Trinkwasser ? +Wo in Heidelberg gibt es Recycling Stellen für Kleidung ? +Wo gibt es 4 Sterne Hotels im Umkreis von Paris ? +Wie viele Orte zum Geldwechseln gibt es im Norden von Paris ? +Gibt es irgendwelche Parks in Paris und wenn ja , wo sind diese ? +Kannst du mir den Namen des nächsten Restaurants oder der nächsten Bar von dem Kino Vue in Edinburgh nennen ? +Gibt es ein Krankenhaus namens Kurpfalzkrankenhaus in Heidelberg ? +Bitte , kannst du mir die Straßen in denen sich die Theater von Edinburgh befinden nennen ? +Wo ist der nächste Bio Supermarkt von der Lothian Road in Edinburgh ? +Führt die A5 nach Heidelberg ? +Wer betreibt die Notfalltelefone Baden-Württembergs ? +Welche Kultstätten gibt es in Paris ? +Wo gibt es Ruinen in Heidelberg und wie heißen diese ? +Gibt es ein Krankenhaus namens Hôpital Marmottan in Paris ? +Wie viele KFC gibt es im Osten von Edinburgh ? +Wie heißen die abgelegenen Inseln auf Englisch ? +Wo gibt es Restaurants im Norden von Edinburgh ? +Wo ist der nächste Bio Supermarkt von der Avenue des Ternes in Paris ? +Wie heißt die nächste Kirche von der Rue Lauriston in Paris und wo ist sie ? +Wie viele Stolpersteine lassen sich im Norden von Heidelberg finden ? +Kannst du mir mögliche Parkgelegenheiten in Heidelberg nennen ? +Wie viele Restaurants gibt es im Westen von Paris ? +Wo sind die Friedhöfe im Süden von Heidelberg ? +Wo sind Hydranten in Brietlingen ? +Wo sind überall Schneider in Edinburgh ? +Wie viele Stolpersteine findet man östlich von Heidelberg ? +Wo sind die Bergwerke im Süden von Heidelberg ? +Wie viele Quellen gibt es im Osten von Nîmes ? +Befindet sich der Eiffelturm in Paris ? +Gibt es Bio Supermärkte in Edinburgh ? +Bitte , kannst du mir die Namen von Theatern in Heidelberg nennen , die mein Mann , der im Rollstuhl sitzt , besuchen kann ? +Wo in Edinburgh gibt es Postämter ? +Bitte sag mir wo es Tankstellen in Paris gibt , die Diesel verkaufen ? +Wo kann ich Trinkwasser in Heidelberg finden ? +Wie viele Friedhöfe befinden sich im Osten von Heidelberg ? +Gibt es ein Planetarium in Paris ? +Wo ist das nächste indische oder asiatische Restaurant vom Kino Vue in Edinburgh ? +Gibt es eine Quelle im Osten von Edinburgh ? +Wo warten Taxis in Paris ? +In welcher Straße ist der nächste Autohändler von Wieblingen in Heidelberg aus ? +Wo sollte ich nach einem Zahnarzt in Heidelberg schauen ? +Wie lauten die Namen und , falls vorhanden , die Öffnungszeiten von Brauereien in der Bretagne ? +Welches ist das nächste Fast Food Restaurant vom Edinburgh Waverley aus ? +Wo ist die nächste öffentliche Toilette vom Gare du Nord in Paris ? +Wo im Norden von Edinburgh gibt es Tankstellen ? +Wie viele Messegelände sind verzeichnet ? +Wo im Süden von Paris gibt es Werbesäulen ? +Wo in Heidelberg kann ich unterirdisch mein Auto parken ? +Wo in Heidelberg kann ich mein Auto parken ? +Kann man 10 oder mehr Hotels in Edinburgh finden ? +Wie viele Hotels liegen in dem Bezirk der Stadt Edinburgh ? +Gibt mir alle Stolpersteine in Osnabrück . +Würdest du mir verraten wie die griechischen Restaurants in Paris heißen ? +Welche historische Stätte ist dem Gare du Nord in Paris am nächsten ? +Wie viele Friedhöfe befinden sich im Süden von Edinburgh ? +Was sind die maximalen Geschwindigkeiten , die für die Maaßstraße in Heidelberg aufgeführt sind ? +Kann man vom Heidelberger Schloss an einen Wasserbrunnen laufen ? +Gibt es ein Kulturzentrum , das man vom Edinburgh Waverley zu Fuß erreichen kann ? +Wenn ich in Heidelberg wäre , aus wie vielen Restaurants kann ich wählen ? +Gibt es irgendwelche Attraktionen in Paris , die mit dem Rollstuhl zugänglich sind ? +Wie viele Kunstwerke gibt es von den berlin bears ? +Wo ist die nächste Jet Tankstelle von INF 325 Heidelberg ? +Wo gibt es Banken im Norden von Paris ? +Wo gibt es Kindergärten in Heidelberg ? +Welche Städte befinden sich im Süden von Heidelberg ? +Wie viele Schulen gibt es im Osten von Edinburgh ? +Wie viele Kindergärten gibt es in Edinburgh ? +Könntest du alle Aussichtspunkte Heidelbergs auflisten ? +Welche christlichen Kirchen gibt es in Paris ? +Wo in Heidelberg gibt es Springbrunnen und wie viele gibt es ? +Welche Schulen in Paris haben eine Bushaltestelle weniger als 200 Meter entfernt ? +Wie viele verschiedene Kunstwerke könnte ich mir in Edinburgh anschauen ? +Wo befindet sich der Kelso ROC Post und um welche Art von historischer Stätte handelt es sich ? +Wo kann ich archäologischen Stätten in Paris finden ? +Wie werden die Bergspitzen im Norden von Languedoc-Roussillon genannt und wie hoch sind sie ? +Wenn ich in Paris wäre , in wie vielen Läden könnte ich einkaufen ? +Gibt es mehr als eine Burg in Heidelberg ? +Wie viele 3 Sterne Hotels gibt es im Osten von Paris ? +Wo gibt es Banken im Westen von Heidelberg ? +Gibt es mehrere Tennisplätze in Paris ? +Wie viele Brücken gibt es im Norden von Edinburgh und wo sind diese ? +Wie viele Restaurants gibt es im Norden von Heidelberg ? +Welche Küche gibt es bei Da Mario in Heidelberg ? +Wie viele Kulturzentren gibt es im Osten von Paris ? +Wie viele Bushaltestellen kann man in Heidelberg finden ? +Wie viele der Hydranten in Lüneburg sind unterirdisch ? +Gibt es Moscheen im Norden von Edinburgh ? +Wie viele Campingplätze gibt es in Heidelberg ? +Wo in Paris gibt es Glas Recycling Stellen ? +Gibt es Kulturzentren in Heidelberg und wenn ja , wie viele ? +Wo gibt es 4 Sterne Hotels im Osten von Paris ? +Wie viele Orte zum Geldwechseln gibt es im Westen von Paris ? +Wie viele protestantische Kirchen gibt es in Paris ? +Gibt es ein Kulturzentrum , das man vom Heidelberger Hauptbahnhof zu Fuß erreichen kann ? +Wie heißen die Höhlen Osterodes und wo sind diese ? +Wo sollte ich nach einem Zahnarzt in Edinburgh schauen ? +Vom Gare du Nord in Paris aus , wo ist die nächste Gelegenheit Geld zu wechseln ? +Welche gibt es Attraktivitäten in der Nähe des Bahnhofs Heidelberg-Altstadt ? +Kannst du mir die Orte von Polizeiwachen in Heidelberg sagen ? +Wo sind die Friedhöfe im Westen von Paris ? +Wie viele Campingplätze gibt es in Paris ? +Wo im Süden von Heidelberg gibt es Werbesäulen ? +Wie viele Planetarien gibt es im Umkreis von Edinburgh ? +Was ist die Anzahl an Polizeiwachen in Edinburgh ? +Wie viele Grabmale gibt es im Norden von Paris ? +Wie viele Second Hand Läden gibt es im Süden von Paris ? +Gibt es irgendwelche Rastplätze in Heidelberg ? +Wo gibt es Wanderkartenin Heidelberg , die in der Nähe eines Parkplatz sind ? +Gibt es irgendwo in Edinburgh Tescos ? +Wo gibt es Wandgemälde in Deutschland ? +Kannst du mir bitte alle Hotels mit 3 Sternen in Edinburgh sagen ? +Wie viele Restaurants gibt es im Westen von Edinburgh ? +Wie viele Quellen gibt es im Norden von Nîmes ? +Gibt es Moscheen südlich von Paris ? +Welche Kinos in Heidelberg kann man mit einem Rollstuhl befahren ? +Kannst du mir die Anzahl der Schule in Paris nennen ? +Wo ist das nächste Hotel vom Hawes Pier in Edinburgh ? +Wie viele Metzger und Bäcker gibt es in Heidelberg ? +Vom Palais de l’Élysée in Paris aus , wo ist die nächste Bank mit Geldautomat und wer betreibt sie ? +An wie viel verschiedenen Orten kann man in Edinburgh schwimmen gehen ? +Wo ist die nächste Kirche vom Palais de l’Élysée in Paris aus ? +Gibt es irgendwelche Rastplätze in Paris ? +Wie viele Bahnhöfe kann man im Süden von Paris finden ? +Wie lautet die Wikipedia Seite der Talbot Rice Gallery in Edinburgh ? +Würdest du mir bitte den Standpunkt eines Schuhmachers in Edinburgh geben ? +Wie viele Fernmeldetürme betreibt O2 in Edinburgh ? +Kann man irgendwo in Paris Minigolf spielen und wenn ja , wo ? +Wie viele Kirchen gibt es im Osten von Heidelberg ? +Gibt es mehrere Orten zum Fußballspielen in Paris ? +Wie viele Fast Food Restaurants gibt es im Norden von Edinburgh ? +Gibt es Moscheen im Norden von Paris ? +Wo kann ich in Paris ein Hotel finden ? +Wie viele Wassertürme gibt es in Vendée ? +Kannst du mir die Namen der Theater in Heidelberg nennen ? +Gibt es Helikopterlandeplätze im Süden von Edinburgh ? +Wo ist der nächste Ort vom Campus INF 325 in Heidelberg an dem man grillen kann ? +Was ist die Anzahl an Polizeiwachen in Heidelberg ? +Wie lauten die Namen aller asiatischen Restaurants in Heidelberg ? +Wie viele Restaurants gibt es im Norden von Berlin ? +Wo gibt es Banken mit Geldautomaten in Heidelberg ? +Gibt es einen Kindergarten im 14 . Arrondissement ? +Wie viele Stolpersteine lassen sich im Osten von Heidelberg finden ? +Wie viele Mienenfelder gibt es auf der Erde ? +Wie heißt das nächste Restaurant von An der Neckarspitze in Heidelberg ? +Wie weit sind der Palais de l’Élysée in Paris und der Gare du Nord in Paris von einander entfernt ? +Wo gibt es Stolpersteine im Westen von Delmenhorst ? +Wo sind Fahrradparkplätze in Paris ? +Gibt es Moscheen südlich von Edinburgh ? +Würdest du mir die Telefonnummer von L'Encrier in Paris nennen ? +Wie weit ist das nächste griechische Restaurant vom Berliner Hauptbahnhof entfernt ? +Wo in Heidelberg gibt es REWE Supermärkte ? +Gibt es im Moment in Edinburgh irgendwelche Baustellen ? +Gibt es mehrere Quellen in Edinburgh ? +Wie viele Bergwerke gibt es im Norden von Edinburgh ? +Wie viele KFC gibt es im Westen von Edinburgh ? +Was ist die Homepage der Pizzeria The Crafters Barn in Edinburgh ? +Wie viele christliche Kirchen kann man in der Stadt Paris finden ? +Gibt es einen Supermarkt in der Nähe des Campus INF 325 in Heidelberg ? +Wo in der Nähe von Heidelberg kann ich hingehen um American Football zu spielen ? +Wie lauten die Telefonnummern und Namen von Museen die höchstens 5km vom Eiffelturm in Paris entfernt sind ? +Gibt es Moscheen im Westen von Paris ? +Wo kann ich Kunstwerke der berlin bears finden ? +Kannst du mir die Adressen von Banken in Paris geben ? +Wie weit sind der Palace of Holyroodhouse und der Edinburgh Waverley von einander entfernt ? +Wie lautet der Name des nächsten Museum oder Kulturzentrum vom Eiffelturm in Paris ? +Wie viele Quellen gibt es im Umkreis von Paris ? +Gibt es mehr als eine Apotheke in Heidelberg ? +Was ist das nächste Denkmal von Calton Hill in Edinburgh und wo ist es ? +Bitte gib mir alle Orte an denen es Monumente gibt im Norden von Pays de la Loire ! +Wo ist der nächste Bio Supermarkt vom Campus INF 325 in Heidelberg ? +Wo gibt es öffentliche Bücheregale ? +Wie viele historische Stätten gibt es im Süden von Nantes ? +Wie heißt das nächste Geschäft von Quai de Béthune in Paris bei dem man ein Handy kaufen kann ? +Wo in Edinburgh gibt es Grabmale ? +Wie viele Denkmäler gibt es in Paris ? +Wie viele Bahnhöfe gibt es in Edinburgh ? +Kann ich irgendwo in Edinburgh afrikanisch essen ? +Gibt es die Sternstraße in Bonn ? +Bitte gib mir alle Orte an denen es Monumente gibt im Westen von Pays de la Loire ! +Gibt es ein Lokal in Paris in dem Sandwich serviert werden ? +Wie viele Apotheken gibt es in Paris ? +Gibt es Aufladestationen für elektrische Autos in Heidelberg und falls ja , wie viele ? +Welches Kulturzentrum ist Notre Dame in Paris am nächsten ? +Wie viele Grabmale gibt es im Westen von Edinburgh ? +Wo gibt es geplante Gebäude ? +Welche christlichen Kirchen gibt es in Heidelberg ? +Wie viele Hotels befinden sich in Edinburgh ? +Gibt es mehr als ein Kunstwerk von den berlin bears ? +In wie vielen Geschäften in Paris kann ich Schreibwaren kaufen ? +Kann man den Palace of Holyroodhouse von Edinburgh Waverley aus zu Fuß erreichen ? +Welche Art von Straße ist die Avenue du Général Lemonnier in Paris ? +Gibt es mehrere Orte zum Tischtennisspielen in Paris ? +Kannst du mir den Standpunkt eines Sainsbury's in Edinburgh mitteilen ? +Würdest du mir die Namen aller italienischen Restaurants in Edinburgh geben ? +Gibt es Burgen in Heidelberg ? +Kann man Wandgemälde in Deutschland finden ? +Wie viele Fahrradverleihe gibt es im Norden von Paris ? +Wie weit weg ist die nächste Schule von der Rue des Cloys in Paris ? +In welcher Straße in Edinburgh liegt das Holiday Inn Express ? +Welche protestantischen Kirchen gibt es in Paris ? +Wo in Paris kann ich rudern gehen ? +Gibt es einen Wasserbrunnen innerhalb von 2km um den Palace of Holyroodhouse in Edinburgh ? +Wie viele historische Stätten gibt es im Norden von Nantes ? +Wie werden die Bergspitzen im Osten von Languedoc-Roussillon genannt und wie hoch sind sie ? +Welche gibt es Attraktivitäten in der Nähe des Bahnhof Bastille in Paris ? +Wie viele Friedhöfe befinden sich im Westen von Paris ? +Kann ich irgendwo in Heidelberg Meeresfrüchte kaufen ? +Wo gibt es Starbucks in Paris ? +Gibt es Stolpersteine in Heidelberg ? +Wo in Paris gibt es Recycling Stellen für Kleidung ? +Wie viele Kontrollstationen für Fahrräder sind verzeichnet ? +Wo in Heidelberg gibt es Friedhöfe ? +Wenn ich in Edinburgh wäre , wie viele Museen könnte ich mir anschauen ? +Bitte gib mir die Orte aller Zoos , die man als Tagesausflug von Edinburgh aus besuchen kann . +Wie viele Bürger leben in Heidelberg ? +Laut des Stolpersteins von Simon Hochherr in Heidelberg , wann wurde er geboren ? +Kann ich irgendwo in Edinburgh Meeresfrüchte kaufen ? +Welche Museen gibt es in Edinburgh ? +Wie weit sind das Heidelberger Schloss und der Heidelberg Hauptbahnhof von einander entfernt ? +Wie viele Bushaltestellen in Heidelberg können mit einem Rollstuhl benutzt werden ? +Wo gibt es Bushaltestellen in Heidelberg ? +Wie viele Bahnhöfe kann man im Westen von Heidelberg finden ? +Wie viele Grabmale gibt es im Osten von Edinburgh ? +Welche Städte befinden sich im Norden von Edinburgh ? +Gibt es mehr als 2 Orte mit Trinkwasser in Paris ? +Wie viele Campingplätze gibt es im Westen von Heidelberg ? +Würdest du mir bitte den Namen eines Hotels mit 4 Sternen in Paris sagen ? +Wie viele Tennisplätze hat Heidelberg ? +Gibt es 5 oder mehr Hotels in Paris ? +Wenn ich die McDonald's Restaurants Paris' zählen würde , welche Zahl würde ich bekommen ? +Wo gibt es in Paris Blitzer ? +Kann ich irgendwo in Paris afrikanisch essen ? +Wie viele Marks & Spencer Food gibt es ? +Wo kann ich einen Zahnarzt in Paris finden ? +Bitte gib mir Kinos in Paris , die einen Parkplatz in der Nähe haben . +Wie heißen die Kunstwerke der berlin bears ? +Wie viele Piere gibt es in Edinburgh ? +Kannst du mich über die Standpunkte von Büchereien in Edinburgh informieren ? +Bitte gib mir die Orte aller Zoos in Paris . +Gibt es mehr als 1 Bücherei in Edinburgh ? +Wo sind die Friedhöfe im Osten von Edinburgh ? +Welche Bäckereien hat Edinburgh ? +Wie viele Orte für Minigolf gibt es im Süden von Edinburgh ? +Kannst du mir eine Apotheke in Edinburgh nennen ? +Gibt es einen Golfplatz in Edinburgh ? +Welches historische Herrschaftshaus ist das nächste von Heidelberg aus ? +Wo gibt es Banken im Westen von Paris ? +Wie viele Restaurants existieren in Paris , die asiatisches Essen servieren ? +Wie viele Windräder gibt es in Sachsen ? +In welcher Straße ist der nächste Autohändler vom 7 . Arrondissement in Paris ? +An wie vielen Ort könnte ich ein Taxi finden in Edinburgh ? +Wo in Heidelberg gibt es Theater ? +Kann man irgendwo in Edinburgh Minigolf spielen und wenn ja , wo ? +Wo in der Nähe von Edinburgh kann ich hingehen um American Football zu spielen ? +Wie heißt Edinburgh auf Französisch ? +Wie heißt die nächste protestantische Kirche von der Fischergasse in Heidelberg und wo ist sie ? +Wie viele Bergwerke gibt es in Edinburgh ? +Wie viele Orte gibt es um Tennis zu spielen im Süden von Montpellier ? +Gibt es im Moment in Heidelberg irgendwelche Baustellen ? +Gibt es irgendwo in Heidelberg Edekas ? +Gibt es Helikopterlandeplätze im Osten von Heidelberg ? +Würdest du mir den Ort eines Rugbyplatzes in Edinburgh nennen ? +Gibt es ein Kulturzentrum in der Nähe des Eiffelturms in Paris ? +Kann man eine Apotheke von dem Kino Die Kamera in Heidelberg aus zu Fuß erreichen ? +Wo gibt es Gewächshäuser im Osten von Dresden ? +Wo in Nîmes kann man Quellen finden ? +Wo ist die nächste Jet Tankstelle von Lothian Road Edinburgh ? +Wie heißt die nächste Kirche von Castlehill in Edinburgh aus und wo ist sie ? +Wo in Edinburgh gibt es Burgen ? +Gibt es Kathedralen in Edinburgh und falls ja , wie heißen diese ? +Kannst du mir eine Apotheke in Paris nennen ? +Ist Notre Dame eine Kathedrale in Paris ? +Gibt es einen Ort in der Nähe von Heidelberg , wo man tauchen gehen kann ? +Gibt es eine Straße namens Rue d'Amboise im 5 . Arrondissement ? +Wo in Heidelberg gibt es Burgen ? +Gibt es Weinreben im Norden von Paris ? +Wo gibt es Restaurants im Norden von Heidelberg ? +Welche Moscheen findet man in Heidelberg ? +Existieren griechische Restaurants in Edinburgh ? +Was ist die Anzahl an Polizeiwachen in Paris ? +In welchen Städten gibt es Gebäude , die in Planung sind ? +Wie heißt Paris auf Japanisch ? +Wo sind die Krankenhäuser Heidelbergs ? +An wie vielen Ort könnte ich ein Taxi finden in Heidelberg ? +Wo in Paris gibt es Kathedralen und wie heißen diese ? +Wie viele Postämter gibt es in Edinburgh ? +Welches ist das nächste italienische oder indische Restaurant vom Heidelberger Hauptbahnhof aus ? +Wie heißt das Restaurant am nächsten am Palais de l’Élysée in Paris ? +Wo im Westen von Heidelberg gibt es Werbesäulen ? +Wie heißt Heidelberg auf Japanisch ? +Welche Art von Unterständen gibt es in Paris ? +Welches ist der nächste internationale Flughafen von Heidelberg ? +Gibt es Helikopterlandeplätze im Osten von Edinburgh ? +Wo gibt es 4 Sterne Hotels im Osten von Edinburgh ? +An wie vielen Orten in Heidelberg kann ich mein Tischtennis verbessern ? +Gibt es ein Tierheim in Edinburgh ? +Wie viele Brücken gibt es im Westen von Eure-et-Loir ? +Wo im Westen von Edinburgh gibt es Tankstellen ? +Wie viele Bahnhöfe kann man im Norden von Heidelberg finden ? +Wie viele Bergwerke gibt es in Heidelberg ? +Wo in Paris kann ich Monumente finden ? +Wie viele Fernmeldetürme gibt es in Edinburgh ? +Gibt es mehr als eine Apotheke in Edinburgh ? +Wie viele Spielstraßen gibt es in Edinburgh ? +Falls es in Edinburgh Mitfahrzentralen gibt , kannst du mir sagen wo ? +Wo in Edinburgh gibt es Sainsbury's Supermärkte ? +Wo in Edinburgh kann ich Burgers essen ? +Wo sind die Hotels Heidelbergs , in denen man WLAN hat ? +Wo in Edinburgh gibt es Fernmeldetürme von O2 ? +Gibt es einen Kindergarten in Edinburgh ? +Gibt es ein afrikanisches Restaurant in der Nähe der High Street in Edinburgh , das man zu Fuß erreichen kann ? +Wie heißen die Metzgereien Heidelbergs ? +Wo kann ich in Heidelberg ein Hotel finden ? +Kann man in Heidelberg schwimmen gehen ? +Gibt es Wandgemälde in Lyon und wenn ja , wie viele ? +Gibt es Helikopterlandeplätze im Westen von Paris ? +Wo im Süden von Edinburgh gibt es Tankstellen ? +Welches ist das nächste italienische oder indische Restaurant vom Edinburgh Waverley aus ? +Welche Art von Unterständen gibt es in Heidelberg ? +Wie heißen Kinos , die man vom Bismarckplatz in Heidelberg zu Fuß erreichen kann ? +Wo gibt es Piere in Paris ? +Wie viele Orte für Minigolf gibt es im Westen von Edinburgh ? +Gibt es in der Nähe von Paris einen internationalen Flughafen ? +Gibt es mehr als eine Apotheke in Paris ? +Wo ist die nächste Schule von der Avenue des Ternes in Paris ? +Wie viele Kulturzentren liegen um dem Heidelberger Hauptbahnhof ? +Gibt es 13 oder mehr Grabmale in Paris ? +Wo gibt es Stolpersteine im Westen von Heidelberg ? +Wie viele Bergspitzen gibt es im Norden von Languedoc-Roussillon ? +Gibt es eine Straße namens Boulevard de Sébastopol im 2 . Arrondissement ? +Wie viele Hotels in Edinburgh haben 3 Sterne ? +Wie viele Second Hand Läden gibt es in Heidelberg ? +Wo in Edinburgh befinden sich Banken ? +Wie viele Grabmale gibt es im Norden von Edinburgh ? +Kannst du mir sagen wo ich in Paris eine Bäckerei finde ? +Ist die Plöck in der Altstadt ? +Wo und wie viele Grenzsteine gibt es in Hummelsbüttel ? +Gibt es Kindergärten in Paris ? +Wo ist die nächste Bank mit Geldautomaten von dem Palace of Holyroodhouse in Edinburgh und wer betreibt diese ? +Falls es Wikipedia Seiten der Bergspitzen im Norden von Languedoc-Roussillon , nenne sie mir bitte . +Könntest du alle Aussichtspunkte Edinburghs auflisten ? +Aus welchem Material ist die Straße der Plöck in Heidelberg ? +Wo befinden sich die Berge Heidelbergs ? +Wo im Osten von Heidelberg gibt es Werbesäulen ? +Wo gibt es öffentliche Bücheregale in Deutschland ? +Gibt es mehrere Polizeiwachen in der Stadt Paris ? +Wie heißen die Trinkwasserstellen in Heidelberg ? +Wie viele Friedhöfe befinden sich im Norden von Edinburgh ? +Wenn ich in Edinburgh wäre , wie viele Bibliotheken könnte ich besuchen ? +Ist die Plöck in Neuenheim ? +Kannst du mir die Orte von Polizeiwachen in Edinburgh sagen ? +Wo sind die Kindergärten Edinburghs ? +Bitt gib mir die Namen und Webseiten von allen Kulturzentren in Edinburgh ! +Kannst du mir sagen wo in Heidelberg es Bars gibt ? +Wie viele Schulen gibt es im Westen von Paris ? +Was ist der Name eines Hotels in Paris , das man mit einem Rollstuhl befahren kann ? +Wie viele Theater gibt es in Edinburgh ? +Kann ich von der Newhaven Road aus in Edinburgh zur nächsten Kirche laufen ? +Welche Beschaffenheit hat die Maaßstraße in Heidelberg ? +Gibt es Briefkästen im Umkreis von Alaise ? +Wie viele Spuren hat die Place de la République in Paris ? +Wo ist die nächste katholische Kirche vom Edinburgh Waverley aus ? +Gibt es Weinreben im Westen von Paris ? +Wo im Osten von Heidelberg gibt es Trinkwasser ? +Wo gibt es einen Rastplatz in Heidelberg ? +Gibt es ein Schwimmbad im Norden von Heidelberg ? +Wie viele Bergspitzen gibt es im Osten von Languedoc-Roussillon ? +Welche Krankenhäuser existieren in Heidelberg ? +Welche archäologischen Stätten existieren im Süden von Paris ? +Wo und wie viele Spielplätze gibt es im Westen von York ? +Wo gibt es Hotels in Heidelberg und wie heißen diese ? +An wie vielen Ort könnte ich ein Taxi finden in Paris ? +Wie viele Bergwerke gibt es im Osten von Edinburgh ? +Wo gibt es Restaurants im Osten von Edinburgh ? +Was ist der Name eines Hotels in Heidelberg bei dem ich auch parken kann ? +Welche Fahrschule ist Quai de Béthune in Paris am nächsten und wo ist sie ? +Kannst du mir sagen wo in Paris es Bars gibt ? +Wo gibt es Aufladestationen in Paris ? +Wo ist das nächste Rathaus vom 14 . Arrondissement , Paris ? +An wie vielen Orten in Montpellier kann man Tennis spielen ? +Wo gibt es Feuerwehren in Edinburgh ? +Wie viele Brauereien gibt es in der Bretagne und wo sind diese ? +Wo gibt es Starbucks in Edinburgh ? +Wie viele Kreisel hat Dresden und wie nennt man diese ? +Wie viele Bahnhöfe kann man im Osten von Paris finden ? +Gib mir die Webseiten der Museen in Paris . +Wie heißen die Trinkwasserstellen in Paris ? +Wie lauten die internationalen Referenznamen für die Autobahnen in Heidelberg ? +Gibt es Weinreben im Süden von Paris ? +Wie viele Moscheen gibt es in Edinburgh ? +Wo gibt es in Edinburgh Blitzer ? +Wie weit muss ich vom Heidelberger Hauptbahnhof aus fahren um eine Aufladestation zu finden ? +Gibt es in der Pizzeria Venezia in Paris Internetzugang ? +Wie viele Fast Food Restaurants gibt es im Westen von Paris ? +Wie viele Planetarien gibt es im Umkreis von Paris ? +Bei wie vielen Bergspitzen in Heidelberg gibt es eine Wanderkarte , die man zu Fuß erreichen kann ? +Wie heißen die Bademöglichkeiten in Paris ? +Wie viele Campingplätze gibt es im Westen von Paris ? +Wo gibt es Stolpersteine im Norden von Delmenhorst ? +Was ist die Einwohnerzahl von Paris ? +Wie viele Quellen gibt es in Edinburgh ? +Würdest du mir die Namen aller italienischen Restaurants in Heidelberg geben ? +Wo in Heidelberg gibt es Glas Recycling Stellen ? +Wo ist der nächste Mercedes Händler von Heidelberg aus ? +Wo ist der nächste Springbrunnen vom Kino Vue in Edinburgh ? +Wie lauten die Straßennamen von Neuler ? +Wo sind die Friedhöfe im Süden von Paris ? +Wie lautet die Website des Kinos Die Kamera in Heidelberg ? +Wo im Osten von Paris gibt es Trinkwasser ? +Wer betreibt die Brücken von Edinburgh ? +Würdest du mir bitte den Namen eines Hotels in Edinburgh sagen ? +Kannst du mir den Namen des nächsten Restaurants oder der nächsten Bar vom Palais de l’Élysée in Paris aus nennen ? +Wie viele Defibrillatoren hat Paris ? +Gibt es Bio Supermärkte im Süden von Heidelberg ? +Wie viele Schulen gibt es im Norden von Heidelberg ? +Bitte sag mir , wo von der High Street in Edinburgh aus die nächste öffentliche Toilette ist . +Wie lautet die Internetseite des Hôtel Victoria Châtelet in Paris ? +Wo gibt es Denkmäler im Norden von Bayern ? +Wo gibt es Restaurants im Westen von Edinburgh ? +Wie viele Elektriker gibt es in Edinburgh ? +Kannst du mir die Namen und Telefonnummern von Fahrschulen im Süden von Heidelberg nennen ? +Wo auf der Welt gibt es Wandgemälde ? +Gibt es Friedhöfe für Haustiere in Deutschland ? +Welche Städte befinden sich im Norden von Heidelberg ? +Wie weit sind Chapelle Saint-Bernard und Chapelle Sainte-Marie in Paris von einander entfernt ? +Wie viele Denkmäler gibt es im Osten von Edinburgh ? +Gibt es einen Ort in Heidelberg wo man sich zum Rudern trifft ? +Wie viele Schulen gibt es in der Nähe vom 14 . Arrondissement ? +Wie viele Second Hand Läden gibt es im Westen von Paris ? +Wo in Paris ist es möglich Skateboard zu fahren ? +Wenn ich in Paris wäre , aus wie vielen Bars könnte ich wählen ? +Wo finde ich ein wartendes Taxi in Paris ? +Existiert eine Straße , die Maaßstraße heißt in Wieblingen ? +Bitte sag mir , wo es nördlich vom Bismarckplatz in Heidelberg öffentliche Toiletten gibt . +Gibt es Messegelände in Deutschland ? +Kannst du mir alle Rastplätze in Heidelberg nennen ? +Wenn ich die Universitäten Paris' zählen würde , welche Zahl würde ich bekommen ? +Bitte gib mir die Orte aller Zoos , die man als Tagesausflug von Heidelberg aus besuchen kann . +Kannst du mir die Webseiten von Fahrradverleihen in Heidelberg nennen ? +Wie viele Bio Supermärkte sind nicht weiter als 5km von der Avenue des Ternes in Paris entfernt ? +Wo gibt es Banken im Osten von Heidelberg ? +Wo gibt es Restaurants im Westen von Paris ? +Gibt es japanische Restaurants in Paris ? +Würdest du mir bitte alle archäologisch Stätten in Heidelberg auflisten ? +Wie heißen die Grabmale von Edinburgh und wie lauten deren Wikipedia Seiten ? +Wie viele Orte für Minigolf gibt es im Osten von Paris ? +Wie viele Bio Supermärkte sind nicht weiter als 5km vom Campus INF 325 in Heidelberg entfernt ? +Welche gibt es Attraktivitäten in der Nähe des Bahnhofs Haymarket in Edinburgh ? +Wo und wie viele Spielplätze gibt es im Süden von York ? +Wie viele Bürger leben in Edinburgh ? +Wo in Paris kann ich Fußball spielen ? +Wie viele Campingplätze gibt es im Süden von Edinburgh ? +Gibt es mehrere Tennisplätze in Heidelberg ? +Wie viele Moscheen gibt es in Heidelberg ? +Wie viele Schulen befinden sich in Edinburgh ? +Kann man den nächsten Ort zum Klippenspringen von Paris aus als Tagesausflug besuchen ? +Wie viele Schulen gibt es in der Nähe von Restalrig ? +Wie viele christliche Kirchen kann man in der Stadt Heidelberg finden ? +Würdest du bitte alle Bäckereien in Edinburgh auflisten ? +Wo kann ich Trinkwasser in Paris finden ? +Gibt es Bergwerke im Norden von Edinburgh ? +Gibt es einen Andachtsort für Buddhisten in Paris ? +Wo in Edinburgh gibt es Springbrunnen und wie viele gibt es ? +Welche Art von Landbenutzungen sind in Heidelberg verzeichnet ? +Wie weit sind das Heidelberger Schloss und Don Robert voneinander entfernt ? +Gibt es Mitfahrzentralen in Heidelberg ? +In welcher Straße in Heidelberg ist der Italiener Roseto ? +Könntest du mir sagen aus wie vielen Rastplätzen man in Heidelberg auswählen kann ? +Gibt es archäologisch Stätten in Edinburgh ? +Wie heißen die Campingplätze in Paris ? +Kannst du mir die Telefonnummern von Kulturzentren in Paris geben ? +Gibt es Wanderkarten in Heidelberg ? +Kannst du mir die verfügbaren Wikipedia Seiten der archäologischen Stätten von Heidelberg sagen ? +Wie weit sind der Palais de l’Élysée in Paris und der Bahnhof Bastille von einander entfernt ? +Wie viele Tesco Märkte gibt es in Edinburgh ? +Wie viele Fahrradparkplätze gibt es in Heidelberg ? +Könntest du mir bitte alle Bademöglichkeiten Edinburghs nennen ? +Wie viele Kirchen gibt es im Westen von Heidelberg ? +Wie viele Berge gibt es in Edinburgh ? +Wie viele Orte für Minigolf gibt es im Süden von Paris ? +Welches ist die nächste Apotheke vom Palais de l’Élysée in Paris ? +Wie viele Hotels kann man vom Palais de l’Élysée in Paris zu Fuß erreichen ? +Wer betreibt den Fernsehturm in Heidelberg ? +Bitte gib mir eine Liste von öffentlichen Toiletten sowie Spielplätze in Stuttgart . +Kannst du mir die Namen aller Ruinen in Heidelberg geben und die entsprechenden Wikipedia Seiten , falls vorhanden . +Wie viele Kinos gibt es in Heidelberg ? +Welche Küchen werden in Heidelberg angeboten ? +Vom Heidelberger Schloss aus , wo ist die nächste Bank mit Geldautomat und wer betreibt sie ? +Gibt es Kulturzentren in Paris und wenn ja , wie viele ? +Gibt es U-Bahn Stationen in Île-de-France , die man mit einem Rollstuhl benutzen kann ? +In welcher Stadt ist das nächste Planetarium von Heidelberg aus ? +Gibt es Schuhmacher in Edinburgh ? +Wie viele Bergwerke gibt es im Osten von Heidelberg ? +Wer betreibt die Briefkästen rund um Alaise ? +Wie viele Menschen leben in Paris ? +Gibt es Feuerwehren in Paris ? +Welche Supermärkte gibt es in Heidelberg ? +Gibt es ein Planetarium in Edinburgh ? +Kannst du mir die Orte von Polizeiwachen in Paris sagen ? +Gibt es ein Restaurant in der Nähe des Campus INF 325 in Heidelberg ? +Gibt es mehr als ein Fahrradparkplatz in Edinburgh ? +Wie viele Orte für Minigolf gibt es im Osten von Edinburgh ? +Wo gibt es Denkmäler im Süden von Bayern ? +Kann man in Edinburgh schwimmen gehen ? +Wie viele Second Hand Läden gibt es in Paris ? +Wo ist der nächste Kindergarten von der Princes Street in Edinburgh und wie heißt er ? +Gibt es mehrere Tierheime in Edinburgh ? +Welche Städte befinden sich im Süden von Edinburgh ? +Wie viele Museen befinden sich in Heidelberg ? +Wo gibt es Gipfel in Heidelberg ? +Wo im Westen von Heidelberg gibt es Tankstellen ? +Wo gibt es Feuerwehren in Paris ? +Falls es archäologische Stätten in Paris gibt , wie viele sind es ? +Wo im Norden von Heidelberg gibt es Trinkwasser ? +Wie viele Restaurants gibt es im Osten von Edinburgh ? +Gibt es Helikopterlandeplätze in Heidelberg ? +Welche Art Geschäfte gibt es in der Sternstraße von Bonn ? +Wie viele Kirchen gibt es im Westen von Edinburgh ? +Wo gibt es Hotels in Edinburgh und wie heißen diese ? +Führt die M8 nach Edinburgh ? +Kannst du alle Orte aufzählen , an denen es überdachte Fahrradparkplätze mit Schließfächern in Edinburgh gibt ? +Gibt es mehr als eine Feuerwehr in Heidelberg ? +Wo sollte ich nach einem Zahnarzt in Paris schauen ? +Wie viele Planetarien gibt es im Umkreis von Heidelberg ? +Wo in Heidelberg befinden sich Quellen ? +Welche Museen gibt es in Heidelberg ? +Wie viele Hotels in Edinburgh werden von Apex Hotels geleitet ? +Wenn ich die McDonald's Restaurants Heidelbergs zählen würde , welche Zahl würde ich bekommen ? +Kann das Restaurant Zizzi in Edinburgh mit einem Rollstuhl befahren werden ? +Wie viele Grabmäler lassen sich in Paris finden ? +Wie viele Ampeln hat Paris ? +Wo in gibt es Edinburgh Benzin und wer betreibt die Tankstelle ? +Gibt es ein Schwimmbad im Osten von Paris ? +Bitte sag mir , wo es nördlich von der High Street in Edinburgh öffentliche Toiletten gibt . +Wo gibt es Spielplätze in York ? +Wenn ich in Paris wäre , aus wie vielen Restaurants kann ich wählen ? +Wie lauten die Öffnungszeiten des Sainsbury's Local der am nächsten am Edinburgh Waverley ist ? +Wo ist das nächste Rathaus von Restalrig , Edinburgh ? +Wo in gibt es Paris Benzin und wer betreibt die Tankstelle ? +Würdest du mir bitte den Ort eines Postamtes in Heidelberg nennen , das man mit einem Rollstuhl erreichen kann ? +Kannst du mir die Standpunkte aller Defibrillatoren in Paris auflisten ? +Kannst du mir sagen , wo es Flughäfen gibt , die maximal 50km von Heidelberg entfernt sind ? +Wo gibt es Banken im Süden von Heidelberg ? +An welchen Orten in Paris kann man Autos unterirdisch parken ? +Wo gibt es italienische Restaurants in Edinburgh ? +Welche Städte befinden sich im Süden von Paris ? +Kann ich irgendwo in Heidelberg Meeresfrüchte essen ? +Wie viele Bürger leben in Paris ? +Falls es archäologische Stätten in Heidelberg gibt , wie viele sind es ? +Wie viele Campingplätze gibt es im Süden von Heidelberg ? +Welche Gipfel gibt es in Heidelberg ? +Wie viele Friedhöfe befinden sich im Westen von Heidelberg ? +Wie viele Restaurants in Heidelberg würden mir griechisches Essen servieren ? +Gibt es Bio Supermärkte im Osten von Paris ? +Gibt es mehr als 30 Bushaltestellen in San Francisco ? +Kannst du mir die Webseiten und Telefonnummern von Fahrradverleihen in Heidelberg nennen ? +Kannst du mir die Namen der Theater in Edinburgh nennen ? +Kannst du mir die Bücherläden von Edinburgh nennen ? +Gibt es 5 oder mehr Rastplätze in Paris ? +Gibt es Kathedralen in Paris und falls ja , wie heißen diese ? +Wie viele der Hydranten in Adendorf sind unterirdisch ? +Gibt es ein Schwimmbad im Süden von Heidelberg ? +Welche archäologischen Stätten existieren im Norden von Heidelberg ? +Wo gibt es Bars in Edinburgh mit einer Bushaltestelle maximal 400 Meter entfernt ist ? +Kannst du mir die Namen der Theater in Paris nennen ? +Wie viele Schwimmbäder gibt es in Edinburgh ? +Wie viele Fernmeldetürme gibt es in Heidelberg ? +Wie viele archäologische Stätten gibt es in Paris ? +In welcher Straße in Heidelberg liegt das Hotel Schönberger Hof ? +Wo in Paris kann ich Tischtennis spielen ? +Wo im Norden von Lyon gibt es Wandgemälde und wie heißen diese ? +Wie viele Fish and Chips Läden gibt es im Westen von Edinburgh ? +Welche historische Stätte ist dem Edinburgh Waverley am nächsten ? +Gibt es mehrere Orte zum Tischtennisspielen in Heidelberg ? +Wie viele Feuerwehren befinden sich in Heidelberg ? +Würdest du mir bitte den Namen eines Hotels , welches mit einem Rollstuhl befahren werden kann , in Edinburgh sagen ? +Wie viele Fahrradverleihe gibt es im Süden von Paris ? +Gibt es ein Kindergarten namens The Edinburgh Nursery in Edinburgh ? +Wie viele Kathedralen gibt es im Osten von Edinburgh ? +Würdest du mir bitte den Ort eines Aussichtspunktes in Edinburgh nennen , den man mit dem Rollstuhl besichtigen kann ? +Gibt es Notfalltelefone in Paris ? +Wie viele Aussichtspunkte hat Paris ? +Gibt es Moscheen nördlich von Edinburgh ? +Wie viele Kulturzentren gibt es im Norden von Paris ? +Wer sind die Architekten des Eiffelturms in Paris ? +Was ist das nächste Denkmal von der Rue Fragonard in Paris und wo ist es ? +Wie lauten die Webseiten von Brennereien ? +Gibt es Bio Supermärkte in Heidelberg ? +Wo in Heidelberg kann ich Apartments finden ? +Kann man 10 oder mehr Hotels in Heidelberg finden ? +Wie viele Fahrradverleihe gibt es im Osten von Heidelberg ? +An wie vielen Orten in Paris kann ich mein Tischtennis verbessern ? +Welche Art von Handwerk gibt es in Edinburgh ? +Kann man ein historisches Herrschaftshaus als Tagesausflug von Heidelberg aus besuchen ? +Wie viele Restaurants gibt es in Heidelberg ? +Wie heißen die Campingplätze in Edinburgh ? +Wo gibt es in Heidelberg Blitzer ? +Gibt mir die Wikipedia Seiten von abgelegenen Inseln . +Wie viele Botschaften gibt es in Edinburgh ? +Wie viele Friedhöfe befinden sich im Westen von Edinburgh ? +Wie viele Banken befinden sich in Heidelberg ? +Wo gibt es Metzger und Bäcker in Paris ? +Wo gibt es Campingplätze in Heidelberg ? +Wie heißen die Krankenhäuser von Paris ? +Kann ich irgendwo in Edinburgh BMX fahren ? +Bitte , kannst du mir die Namen von Theatern in Heidelberg nennen , die meine Mutter , die im Rollstuhl sitzt , besuchen kann ? +Gibt es Naturschutzgebiet im Hohenlohekreis ? +Welche Art von archäologischen Stätten kann ich in Edinburgh finden ? +Wie viele Grabmale gibt es im Osten von Paris ? +Wie viele Restaurants gibt es im Osten von Berlin ? +Wie heißen die Naturschutzgebiet des Hohenlohekreises und wo befinden sich diese ? +Welche Berge befinden sich in Edinburgh ? +Wo ist der nächste überdachte Fahrradparkplatz von der Fischergasse in Heidelberg ? +Gibt es Ruinen in Heidelberg ? +Gibt es mehr als ein Fahrradparkplatz in Heidelberg ? +Wie weit sind die St . Laurentius und Kirche Jesu Christi in Heidelberg von einander entfernt ? +Welches Restaurant in Heidelberg biete Burgers an ? +Wie viele Friedhöfe befinden sich im Süden von Heidelberg ? +Wenn ich in Edinburgh wäre , in wie vielen Läden könnte ich einkaufen ? +Wie viele Bergspitzen gibt es im Süden von Languedoc-Roussillon ? +Welches historische Herrschaftshaus ist das nächste von Edinburgh aus ? +Wo kann ich eine Tankstelle in Edinburgh finden ? +Sollte ich von der High Street in Edinburgh aus das Auto nehmen , um zum nächsten Bio Supermarkt zu kommen ? +Bei wie vielen Hotels in Heidelberg kann man auch parken ? +Welche christlichen Kirchen gibt es in Edinburgh ? +Wo ist die nächste Jet Tankstelle von Avenue des Ternes Paris ? +Kann man 10 oder mehr Hotels in Paris finden ? +Wie viele Fahrradparkplätze gibt es in Paris ? +Wie viele Baustellen gibt es im Moment in Edinburgh ? +Kannst du mir den Standpunkt eines Monoprix in Paris mitteilen ? +Gibt es irgendwelche Universitäten in Heidelberg ? +Wo ist der nächste Helikopterlandeplatz von Mary King's Close in Edinburgh ? +Welche Art von Attraktivitäten gibt es in der Nähe des Bahnhofs Haymarket in Edinburgh ? +Wo gibt es U-Bahn Stationen im Westen von Île-de-France ? +Welche archäologischen Stätten kann ich in Heidelberg finden ? +Wie viele Fast Food Restaurants gibt es im Osten von Paris ? +Wo ist der nächste Fahrradparkplatz von der Princes Street in Edinburgh ? +Wie viele Schwimmbäder gibt es im Osten von Heidelberg ? +Wie viele Hotels kann man vom Heidelberger Schloss aus zu Fuß erreichen ? +Wie viele Berge gibt es in Paris ? +Wie viele Stolpersteine sind in der Nähe des Heidelberger Schlosses ? +Welche Farbe hat das Dach des Sacre Coeurs in Paris ? +Wie viele Apotheken gibt es in Heidelberg ? +Wie viele Sterne hat das Le Robinet d'Or in Paris ? +Wo gibt es Bergwerke in Edinburgh ? +Wie viele Kathedralen gibt es im Norden von Edinburgh ? +Wo gibt es Banken in Heidelberg , die man mit Rollstuhl befahren kann ? +Wo in Edinburgh finde ich Attraktionen ? +Wie viele Ort in Paris sind zum Skateboard fahren da ? +Wie viele verschiedene Kunstwerke könnte ich mir in Heidelberg anschauen ? +Wie viele Quellen gibt es im Süden von Nîmes ? +Wo ist die nächste Migratenunterkunft vom Hauptbahnhof in Witten ? +Was ist die Telefonnummer des Hôtel Victoria Châtelet in Paris ? +Wie viele Brücken gibt es im Westen von Edinburgh und wo sind diese ? +Gibt es Bergwerke im Westen von Edinburgh ? +Gibt es eine Quelle im Norden von Heidelberg ? +Wo gibt es im Süden von Paris Museen ? +Gibt es im Heidelberg Marriott Hotel ein Restaurant ? diff --git a/smtsemparsecpp/data/nlmaps.train.en b/smtsemparsecpp/data/nlmaps.train.en new file mode 100644 index 000000000..3c3b7746a --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.train.en @@ -0,0 +1,1500 @@ +How many Japanese restaurants are there in Paris ? +What are the kindergartens of Edinburgh called ? +How many hospitals are there in Heidelberg ? +How many butchers and bakeries are in Paris ? +How many second hand only stores are there in the south of Edinburgh ? +Can you give me the location of libraries in Heidelberg ? +What archaeological sites exist in the east of Heidelberg ? +Are there more than 20 bus stops in Heidelberg ? +Where are Stolpersteine in the south of Heidelberg ? +Which cuisines are in Heidelberg ? +Where are bars with a bus stop close by in Edinburgh ? +Where are kindergartens in Hamburg ? +Where would I find a memorial in the city Edinburgh ? +Does Edinburgh have any key cutters ? +Is there a street called Blumenstraße in Lampertheim ? +Please , can you tell me the locations of monuments in Paris ? +How many catholic churches are there in Edinburgh ? +At how many places in the south of Edinburgh can I exchange money ? +How many remote islands are there ? +Is there a water well within walking distance of the Palace of Holyroodhouse in Edinburgh ? +Where are kindergartens in the south of Edinburgh ? +Can you give me the websites of bike rentals in Paris ? +How many memorials can be found in Edinburgh ? +How many 3 star hotels are in the north of Heidelberg ? +Can you give me the locations of all picnic sites in Paris ? +Which towns are around Heidelberg ? +How many car sharing points are there in Edinburgh ? +Are there any quarries in the east of Heidelberg ? +How many places to tread water are there in Germany ? +Please list the locations of all Stolpersteine that can be accessed with a wheelchair in the north of Heidelberg ! +Is an African restaurant in the walking distance from the Place de la République in Paris ? +Where in Paris are theatres ? +How many McDonalds are there in Edinburgh ? +How many cemeteries are there in the north of Paris ? +Is it possible to walk to the closest gym from Rue Lauriston in Paris ? +Can you give me the websites of arts centres in Paris ? +Is there a historic manor in day trip distance from Edinburgh ? +How many theatres are in Heidelberg ? +How many caravan sites are in the south of Paris ? +Please , can you tell me the names of all attractions in Edinburgh ? +Where are Monoprix supermarkets in Paris ? +How many cemeteries are there in the south of Paris ? +How many prisons does Edinburgh count ? +What are the conference centre’s names ? +How many kilometres are between Edinburgh and Glasgow ? +Where in Paris are organic supermarkets ? +Which restaurants in Paris serve burgers ? +Are there any vineyards in the south of Edinburgh ? +Which catholic churches are there in Heidelberg ? +How many libraries lie in the city Edinburgh ? +Are there any organic supermarkets in the north of Edinburgh ? +How many locations are in the north of Paris where you can play miniature golf ? +Is there more than one university in Edinburgh ? +How many Greek restaurants are there in Paris and where ? +In how many places could I go shopping in Edinburgh ? +Is there a pharmacy in walking distance from Le Cinaxe in Paris ? +Where are cemeteries in the north of Edinburgh ? +At how many places in the east of Paris can I exchange money ? +Would you tell me the location of all speed cameras in Paris ? +What are the names of springs in the vicinity of Heidelberg ? +Where are churches close to Palace of Holyroodhouse in Edinburgh ? +Where are quarries in Heidelberg ? +Where is the closest glass recycling facility from Mannheimer Straße in Heidelberg ? +Would you please tell me a name of a hotel in Paris that is operated by Accor ? +If I was in Heidelberg , how many museums could I visit ? +How far apart are the Heidelberg Castle and the Heidelberg-Altstadt train station ? +What is the number of memorials in Heidelberg ? +What is the closest restaurant from King Street in Edinburgh ? +What is the number of memorials in Paris ? +Which types of historic sites are there in Paris ? +What is the number of bars in Paris ? +Where are springs in the north of Edinburgh ? +How many hotels are within walking distance of the Palace of Holyroodhouse in Edinburgh ? +Which types of amenities are there in Paris ? +Is there an animal shelter in Heidelberg ? +What is the homepage of the cinema Cinéma Chaplin in Paris ? +Where are exhibition centres ? +How far away is the nearest petrol station from the Plöck in Heidelberg ? +Are there more than 20 ruins in Heidelberg ? +How many schools are there in Heidelberg ? +Which mosques are there in the city of Edinburgh ? +Are there any helipads in the east of Paris ? +How many kilometres are between Heidelberg and Stuttgart ? +Is there a kindergarten in the Wördenmoorweg street in Hamburg ? +Where are hiking maps in Edinburgh ? +How many churches are there in the west of Paris ? +Where are bars were smoking is allowed and have a bus stop no further than 400m away in Heidelberg ? +Give me the websites of car sharing places in Heidelberg . +Which cinemas are there in Paris ? +How many second hand only stores are there in the west of Heidelberg ? +What is the name of the closest theme park from Paris ? +Can I go skateboarding somewhere in Heidelberg ? +Where in Heidelberg are town halls ? +How many schools are in the south of Heidelberg ? +Would you please tell me where the location of an attraction in Paris is that can be accessed with a wheelchair ? +Who are the operators for charging stations in Paris ? +Can I walk from the Palace of Holyroodhouse to Edinburgh Waverley ? +Where is the closest playground from Ainsty Grove in York ? +How many railway stations are there in Paris ? +Please , can you give me all names of hotels in Paris that have 3 stars ? +Please tell me where bathrooms are south of the Place de la République in Paris . +What are the ambulance stations of Heidelberg called ? +Is there a bus stop at the Hôpital des Enfants Malades , Paris ? +Can you tell me a cinema that has a bar no further than 500m away in Heidelberg ? +How many catholic churches are there in Paris ? +What's the phone number of the La Garrigue in Edinburgh ? +Would you tell me the phone number of Cesarino in Heidelberg ? +What are the names of kindergartens in Paris ? +How many hotels lie in the city district of Heidelberg ? +What types of activities are there in Heidelberg for tourists ? +How many memorials are in Bavaria ? +Is smoking allowed inside the Taj Mahal in Heidelberg ? +What cuisines are available in Paris ? +Where is it possible to skateboard in Heidelberg ? +Where in Edinburgh can I get ice cream ? +Is there a planetarium in the vicinity of Edinburgh ? +How many breweries can I visit in Edinburgh ? +How many tombs are in the west of Paris ? +Where in the north of Paris are drinking water locations ? +Is there a planetarium in Heidelberg ? +Would you give me a location in Heidelberg where I can play table tennis ? +How many prisons does Paris count ? +Can I find more than I book store in Paris ? +Are there any mosques south of Heidelberg ? +How many car sharing points are there in Heidelberg ? +Where are the peaks in Edinburgh that have hiking maps in walking distance ? +Give me cafes in Paris that have a car park close by . +Please list all location of petrol stations in Heidelberg that sell Diesel . +Where can I find a dentist in Edinburgh ? +Is there a swimming pool in the east of Heidelberg ? +How high is the Eiffel Tower in Paris ? +Are there any greenhouses in Dresden and if so how many and where are they ? +Can I access the Hotel Schönberger Hof in Heidelberg with a wheelchair ? +How many schools in Heidelberg have a bus stop less than 200 meters away ? +How many places to play tennis are there in the west of Montpellier ? +Which shops are within the vicinity of the Altstadt in Heidelberg ? +Are there any helipads in the west of Edinburgh ? +Where are bike parking areas are there in Edinburgh ? +How many cemeteries are there in the north of Heidelberg ? +Where is the closest catholic church from the Heidelberg Hauptbahnhof ? +Where in Edinburgh can I barbecue in public ? +Where are piers in Heidelberg ? +Are there 2 or more options to go climbing in Edinburgh ? +Which cinemas in Paris can I access with a wheelchair ? +What are the names of the Prisons in Edinburgh ? +Where in Stuttgart are public bathrooms ? +How many 3 star hotels are in the west of Edinburgh ? +How many bike rental places are in the east of Paris ? +How many Japanese restaurants are there in Edinburgh ? +Please tell me the names of theatres in Paris that my mother who sits in a wheelchair can visit ? +Is it possible to walk from Palais de l’Élysée to the train station Bastille in Paris ? +Where in Edinburgh can I recycle glass ? +Please , could you give me all possible swimming locations in Heidelberg ? +Is there a swimming pool in the south of Edinburgh ? +Which cinemas are there in Edinburgh ? +Can I walk from Musee du Louvre to Arc de Triomphe in Paris ? +How many kilometres are between Paris and Lyon ? +Where are bakeries in Edinburgh ? +Where is the closest kindergarten from the Avenue René Coty in Paris and what is it called ? +How many bridges are there in Edinburgh and what are they called ? +Where are kindergartens in the west of Edinburgh ? +Is there a golf course in Heidelberg ? +If I was in Edinburgh how from how many hotels could I choose to stay in ? +Would you give me the location of a nice viewpoint in Heidelberg ? +How many cathedrals are there in the south of Edinburgh ? +Where are hiking maps in Heidelberg ? +How many Stolpersteine can be found in Heidelberg ? +How many apartments can I choose from in Paris ? +What are the international reference names for the motorways in Paris ? +Are there any fire hydrants in Heidelberg ? +Please , would you give me the location of a post office in Paris that can be accessed with a wheelchair ? +Please , can you give me all names of hotels that have 3 stars in Heidelberg ? +Where are Stolpersteine in the south of Delmenhorst ? +How many locations are in the north of Edinburgh where you can play miniature golf ? +Where can I find drinking water in Edinburgh ? +How many conference centres are there ? +Is there a town hall within walking distance from the Fischergasse in Heidelberg ? +Can you please tell me the websites of all hotels in Heidelberg ? +Are there any organic supermarkets in the north of Heidelberg ? +Which types of leisure activities are there in Edinburgh ? +How many caravan sites are in the west of Edinburgh ? +Where are Italian restaurants in Paris ? +How many road constructions are ongoing in Paris at the moment ? +Are there any helipads in the north of Edinburgh ? +How far do I have to drive for the closest charging station location from Paris Gare du Nord ? +Can you give me the location of a butcher in Paris that can be accessed with a wheelchair ? +Which schools exist in Heidelberg ? +How many spots exist for playing cricket in Edinburgh ? +Where in Paris are town halls ? +Can you please tell me the email address of a hotel in Paris ? +What is the number of miles between Aberdeen and Edinburgh ? +What are the hospitals of Heidelberg called ? +Do any archaeological sites exist in Paris ? +Are there fire brigades in Heidelberg ? +Are there any viewpoints that can be accessed with a wheelchair in Heidelberg ? +What is the closest pharmacy from the Palace of Holyroodhouse in Edinburgh ? +If I was in Paris , how many libraries could I visit ? +There are libraries in Edinburgh ? +When did the abandoned theme parks close ? +Is there a swimming pool in the west of Edinburgh ? +Are there any locations in which rugby can be played in Edinburgh ? +Where in the west Lyon are murals and what are they called ? +How many bridges are in the area of Eure-et-Loir and where are they ? +How many people live in Heidelberg ? +Can I walk to the closest church from Mannheimer Straße in Heidelberg ? +Where is the closest charging station from Lothian Road in Edinburgh ? +Can you give me the location of a butcher in Heidelberg ? +Can I eat vegetarian anywhere in Paris ? +What are the locations of all bakeries of Edinburgh ? +Where is the closest bathroom from Rührbrunnen in Stuttgart ? +Which towns are west of Paris ? +Are there any vineyards in the north of Heidelberg ? +Is there a motorway called A5 that leads to Heidelberg ? +Are there any universities in Paris ? +Where are 4 star hotels in the west of Heidelberg ? +What mountains are in Heidelberg ? +Where in Paris is the Sacre Coeur ? +Where is the closest butcher and bakery from the Quai de Béthune in Paris ? +How many Stolpersteine can be found in Magdeburg and Netphen ? +Where are bike parking areas are there in Heidelberg ? +How many springs are in the west of Nîmes ? +How far apart are the Eiffel Tower and Notre Dame in Paris ? +Where are post boxes south of Schriesheim ? +Can I walk to the closest arts centre from Gare du Nord in Paris ? +What is the name of the closest theme park from Heidelberg ? +Who is the operator of the bus stop Mairie du XV in Paris ? +Does Heidelberg have any publicly available defibrillators ? +Where are butchers and bakeries in Edinburgh ? +Can you give me the websites and phone numbers of bike rentals in Paris ? +Are there any vineyards in the west of Heidelberg ? +What archaeological sites exist in the north of Paris ? +Are there 5 or more picnic locations in Edinburgh ? +How many different works of art can I look at in Paris ? +At how many places in the east of Edinburgh can I exchange money ? +What types of land uses are recorded in Edinburgh ? +What are the names of all Asian restaurants in Edinburgh ? +Is St Mary's Episcopal Cathedral a cathedral in Edinburgh ? +How many memorials are there in the south of Heidelberg ? +Which places of worship are there in Heidelberg ? +How many swimming pools are in the south of Edinburgh ? +Can you give me all locations of key cutters in Edinburgh ? +In which cities are conference centres ? +Are there 13 or more tombs in Edinburgh ? +How many camp sites are there in Edinburgh ? +What is the closest hotel from the Edinburgh castle and where is it ? +How many 3 star hotels are in the west of Heidelberg ? +Are there any castles in Edinburgh ? +How many peaks in Edinburgh have hiking maps in walking distance ? +Can you please tell me the websites of all hotels in Edinburgh ? +Is there a street called Marktstraße in Neuenheim ? +How close is the closest kindergarten from Ulster Drive in Edinburgh ? +Which companies are the operators of car sharing places in Paris ? +How many lanes does the Maaßstraße in Heidelberg have ? +In how many different locations can I go swimming in Heidelberg ? +What type of art do the berlin bears create ? +Give me the Wikipedia pages of subway stations in Île-de-France ! +How far are Pilrig St Paul's and True Jesus Church in Edinburgh apart ? +Is there more than one university in Paris ? +Give me the name and location of all tourist related activities that can be accessed with a wheelchair in Edinburgh ! +What is the closest memorial from the Königstuhl in Heidelberg and where is it ? +Where is a picnic site in Paris ? +How many memorials can be found in Heidelberg ? +Where are roundabouts in the east of Dresden ? +How many historic manors are in day trip distance of Edinburgh ? +Where are hospitals in Paris ? +Where in Edinburgh may I find a brewery ? +How many kindergartens are in Paris ? +How many emergency phones are there in Heidelberg ? +Where are 4 star hotels in the south of Paris ? +Are there any golf courses in the vicinity of Heidelberg ? +Can you tell me a cinema that has a restaurant in walking distance in Paris ? +Where is the closest clothes recycling facility from Rue Lauriston in Paris ? +Could you list all locations of viewpoints in Paris ? +Are there any mosques in the south of Edinburgh ? +How many emergency phones are there in Paris ? +What are the denominations of the cathedrals in Paris ? +Which cinemas are there in Heidelberg ? +What is the closest airport from Edinburgh ? +Where are butchers and bakeries in Heidelberg ? +How many advertising columns are there in Paris ? +Can you play badminton or tennis in Heidelberg ? +Can you give me possible parking locations in Edinburgh ? +Please give me the names of the motorways in Heidelberg ? +How many opportunities are there to play table tennis in Paris ? +Are there any organic supermarkets in the east of Edinburgh ? +Where can I find archaeological sites in Edinburgh ? +How many restaurants are in the east of Paris ? +How many second hand only stores are there in the east of Paris ? +Can you list the location of all bike parking areas that are covered in Edinburgh ? +Can I find 3 or more viewpoints in Heidelberg ? +In how many spots can I go climbing in Paris ? +Please , would you give me the number of traffic signals in Edinburgh ? +What is the Wikipedia page of the Königstuhl in Heidelberg ? +Would you tell me the number of hotels in Paris that one can access with a wheelchair ? +Is there anywhere in Paris where I can buy seafood ? +How many water wells are there in Edinburgh ? +How many places to play tennis are there in the north of Montpellier ? +Where in Edinburgh can I buy stationary ? +Can you tell me a pharmacy in Heidelberg ? +What archaeological sites exist in the west of Paris ? +Is there a bank in the 7th Arrondissement , Paris ? +Please tell me the names of theatres in Paris that my husband who sits in a wheelchair can visit ? +Where is the closest butcher and bakery from the Mannheimer Straße in Heidelberg ? +Where are schools in the south of Bielefeld ? +Can you list the location of all bike parking areas that are covered in Heidelberg ? +How many subways are in Heidelberg ? +How many memorials are there in the west of Edinburgh ? +In what location in Edinburgh can a car be parked underground ? +How high are the peaks in Heidelberg ? +Are there any organic supermarkets in the west of Paris ? +How many Greek restaurants are there in Heidelberg and where ? +Is there a street called Starenweg in Lampertheim ? +How many bike parking areas are there in Edinburgh ? +How many McDonalds are there in Heidelberg ? +Which cinemas in Edinburgh can I access with a wheelchair ? +Can you give me the names and telephone numbers of driving schools in the west of Paris ? +How far away is the Cat Stane megalith from the Edinburgh airport ? +What is the number of miles between Frankfurt and Heidelberg ? +How many restaurants exist in Paris that would serve me Greek food ? +Where in Paris are restaurants in which smoking is allowed ? +Would you please tell me a name of a hotel in Edinburgh that has 4 stars ? +Does Paris have any Burger Kings ? +Can you tell me the amount of police stations Heidelberg has ? +Where are 4 star hotels in the west of Edinburgh ? +Where in Paris can I buy ice cream ? +Are bicycles allowed on the Avenue du Général Lemonnier in Paris ? +How many schools are there in Paris ? +How many tennis courts are there in Paris ? +Who are the artists of murals in Lyon ? +Where is the closest bus stop from Librairie Galignani in Paris ? +How many cemeteries are there in the east of Edinburgh ? +How many Stolpersteine can be found in the vicinity of Heidelberg ? +How far do I have to drive for the closest charging station location from Edinburgh Waverley ? +Is Sacre Coeur classed as a cathedral in Paris ? +What are the camp sites in Heidelberg called ? +Where is the closest bike parking area from Avenue René Coty in Paris ? +How many train stations can be found in the north of Edinburgh ? +Please list all the birth dates of the people that have a Stolperstein in Heidelberg . +Can you tell me where airports are that are at most 50km away from Edinburgh ? +What is the closest money exchange from the Edinburgh Castle ? +What is the closest kindergarten from the Wördenmoorweg street in Hamburg called and where is it ? +Are there any African restaurants in Edinburgh ? +Please list the locations of all Stolpersteine that can be accessed with a wheelchair in the south of Heidelberg ! +Are there any mosques north of Paris ? +Where are restaurants in the west of Heidelberg ? +How many piers are in Paris ? +How many living streets are there in Paris ? +Where is the closest church from the Palace of Holyroodhouse in Edinburgh ? +How far apart are the Palace of Holyroodhouse and the Calton Hill in Edinburgh ? +How many bridges can be found in the south of Edinburgh and where are they ? +Is there a supermarket close to the Avenue des Ternes in Paris ? +Are there any mosques in the west of Edinburgh ? +Are there any airports around Edinburgh ? +Can the Sacre Coeur in Paris be accessed with a wheelchair ? +How many swimming pools are there in Heidelberg ? +Where in Edinburgh can I practice my climbing ? +What's the closest restaurant from the Sacre Coeur in Paris and where is it ? +Are there any mosques in the north of Heidelberg ? +How many miles are Heidelberg and Mannheim apart ? +How many 3 star hotels are in the south of Paris ? +Are there any helipads in the south of Heidelberg ? +What is the closest restaurant from Heidelberg castle ? +How many piers are in Heidelberg ? +Where are cemeteries in Paris ? +How many breweries are there in Bretagne and what are they called ? +Where in Paris are castles ? +Can you tell me where I can find a post office in Heidelberg ? +How high are the peaks in Edinburgh ? +Are there any locations in which tennis can be played in Paris ? +Can I find car sharing places in Edinburgh ? +What is the number of memorials in Edinburgh ? +How many town halls are there in Paris ? +Are there any historic sites within walking distance from the Gare du Nord in Paris ? +Which kindergartens exist in Edinburgh ? +Where are conference centres ? +Is there a place for rowing in Paris ? +Can I find 3 or more viewpoints in Paris ? +If I was in Paris from how many restaurants that serve French food could I choose from ? +At how many places can I rent a bike in Heidelberg ? +How many memorials are there in the north of Edinburgh ? +How many historic sites are in the west of Nantes ? +How many second hand only stores are there in the north of Edinburgh ? +What is the number of miles between Marseille and Paris ? +Would you tell me what the Greek restaurants in Edinburgh are called ? +Are there any helipads in Paris ? +Which leisure activities are there at the Heidelberg Marriott Hotel ? +Is there anywhere near Edinburgh where I can go scuba diving ? +How many fast food restaurants sites are in the east of Edinburgh ? +Where are banks in Heidelberg ? +Are there 5 or more water wells in Edinburgh ? +How many Greek or Italian restaurants are there in Heidelberg ? +How many opportunities are there to play table tennis in Heidelberg ? +Can you give me possible parking locations in Paris ? +What kind of amenities are close to Heidelberg-Altstadt train station ? +Give me cafes in Heidelberg that have a car park close by . +How many playgrounds can be found in York ? +Can you give me the available Wikipedia pages of archaeological sites in Paris ? +Where are museums in Paris ? +Are there any vineyards in the east of Paris ? +What is the closest advertising column from Le Cinaxe in Paris ? +Which towns are north of Paris ? +Which shops are around the Hard Rock Cafe in Heidelberg ? +Can you give me the location of book stores in Heidelberg ? +How many living streets are there in Heidelberg ? +Where are post boxes in the south of Schriesheim ? +How many castles does Heidelberg have ? +How many nature reserves are there in the Hohenlohekreis ? +Where are the prisons of Paris located ? +How many 4 star hotels are in Edinburgh and where are they ? +Please give me the names of the motorways in Edinburgh ? +How many arts centres are around the Edinburgh Waverley ? +Can you give me the street name of a bakery in Edinburgh ? +What are the opening times of the Tesco that is closest to the Deaconess Garden in Edinburgh ? +How many subways are in Edinburgh ? +What is the closest shop to buy a mobile phone from Mannheimer Straße in Heidelberg ? +Where are the mountains of Edinburgh located ? +What is the closest international airport from Paris ? +What is the name of a hotel in Edinburgh at which you are not allowed to smoke ? +Where are memorials in the west of Bavaria ? +Where are banks that can be accessed with a wheelchair in Paris ? +Are there any planned buildings ? +What is the Wikipedia page of the William Chambers Statue in Edinburgh ? +How many swimming pools are in the west of Heidelberg ? +How many universities are there in Edinburgh ? +Where are places in which taxis wait in Edinburgh ? +Who are the operators for charging stations in Edinburgh ? +Which airports are within day trip driving distance of Edinburgh ? +Are there any abandoned theme parks ? +Can you give me the phone number of a bakery in Paris ? +How many memorials are there in the south of Paris ? +Are there any historic sites within walking distance from the Waverley in Edinburgh ? +How many swimming pools are in the south of Paris ? +Where in Paris can I practice my martial arts ? +Please give me the name and websites of all arts centres in Paris ! +What is the number of bars in Heidelberg ? +How many churches of Scotland are there in Edinburgh ? +Are there any springs in the west of Paris ? +How many emergency sirens are there in Witten ? +Where is the closest drinking water location from the Heidelberg Hauptbahnhof ? +Which bike rental places are there in Heidelberg ? +Would you tell me what the Greek restaurants in Heidelberg are called ? +Where are supermarkets in Paris ? +What is a location in Heidelberg where I can row ? +Can I access the hotel Malmaison in Edinburgh with a wheelchair ? +How many Edekas are there in Heidelberg ? +Is there a place that serves sandwiches in Edinburgh ? +How many churches are there in the east of Edinburgh ? +Which mosques are there in the city of Paris ? +How many ruins are there in Heidelberg ? +Are there any vineyards in the east of Heidelberg ? +Can I go skateboarding somewhere in Paris ? +Which buses stop at Peterskirche in Heidelberg ? +Are there any murals in Germany ? +How many fire brigades can be found in Paris ? +How many book stores does Heidelberg have ? +Is the Avenue du Général Lemonnier in Paris a one way street ? +Is there a kindergarten in Neuenheim ? +Would you please list all names of bakeries in Heidelberg ? +Is there a restaurant called La Garrigue in Edinburgh ? +Would you tell me the number of picnic sites I can choose from in Edinburgh ? +Please , could you give me all possible swimming locations in Paris ? +How many locations are in the west of Heidelberg where you can play miniature golf ? +Where are supermarkets in Edinburgh ? +Is there any bike rental in Heidelberg ? +Is it possible to play football somewhere in Heidelberg ? +Can I buy scuba diving equipment anywhere in the vicinity of Heidelberg ? +Where do taxis wait in Edinburgh ? +Are there 5 or more cathedrals in Paris ? +At how many different locations could I have a picnic in Paris ? +How many pharmacies are there in Edinburgh ? +How many second hand only stores are there in Edinburgh ? +Can you give me the location of a restaurant in Heidelberg that can be accessed with a wheelchair ? +How many churches are there in the south of Paris ? +Are there any springs in the east of Paris ? +How many tombs are in the south of Paris ? +Is there more than 1 fire brigade in Edinburgh ? +Is there a town hall within walking distance from the Rue Vercingétorix in Paris ? +Who built the Eiffel Tower in Paris ? +How many train stations can be found in the east of Heidelberg ? +Where are zip lines ? +Can you tell me the name of the closest bar or restaurant from Heidelberg castle ? +Where are kindergartens in Paris ? +How many springs are in the vicinity of Heidelberg ? +Do any archaeological sites exist in Edinburgh ? +Are there any helipads in the south of Paris ? +Are there any Greek restaurants in Heidelberg ? +Where are schools in Bielefeld ? +Where can I eat burgers in Paris ? +Which catholic churches are there in Edinburgh ? +Can you give me the location of all archaeological sites in Paris ? +There are police stations in Heidelberg ? +Give me cinemas in Edinburgh that have a car park close by . +Is it possible to walk to the closest gym from Wieblinger Weg in Heidelberg ? +What kind of amenities are close to Bastille train station in Paris ? +Where are bus stops in San Francisco ? +How many swimming pools are there in Paris ? +Where are playgrounds in Stuttgart that can be accessed with wheelchairs ? +Where in Baden-Baden are emergency sirens ? +If I was in Edinburgh from how many restaurants that serve British food could I choose from ? +How many memorials or way side crosses can be found in Nantes ? +Are there 5 or more cathedrals in Edinburgh ? +Where are bus stops in Paris ? +How many churches are there in the north of Heidelberg ? +What types of activities are there in Paris for tourists ? +Where are the hotels in Paris operated by Accor ? +Where are schools in the west of Bielefeld ? +Where in Heidelberg can I barbecue in public ? +What is the closest fast food restaurant from the main station in Heidelberg ? +How many cathedrals are there in the north of Paris ? +Where in the north of Edinburgh can I exchange money ? +Which types of amenities are there in Heidelberg ? +If I was in Edinburgh , from how many restaurants could I choose ? +At how many different locations could I have a picnic in Edinburgh ? +Can you please tell me the location of a hotel in Heidelberg ? +For which people are there Stolpersteine in Bielefeld ? +Give me cinemas in Heidelberg that have a car park close by . +Can I play American football somewhere close to Paris ? +What are the capacities of the different bicycle parking areas in Edinburgh ? +What is the Japanese name for the Eiffel Tower in Paris ? +Are there any petrol stations that are open 24/7 in Heidelberg ? +How many caravan sites are in the north of Heidelberg ? +Where are subway stations in Île-de-France ? +At how many different places can I play football in Heidelberg ? +How many 3 star hotels are in the north of Edinburgh ? +How many kindergartens are there in Hamburg ? +How many schools are there in Bielefeld ? +Are there several rugby pitches in Edinburgh ? +How far away is the nearest petrol station from the Avenue de Ségur in Paris ? +How many butchers in Edinburgh can be accessed with a wheelchair ? +Is there anywhere in Paris where I can eat seafood ? +Can I eat vegetarian anywhere in Edinburgh ? +Where can I go swimming in Edinburgh ? +How many embassies are there in Paris ? +Which cuisines can I choose from in Heidelberg ? +How many entities with the name Driving Test Centre are there and where are they ? +How many schools are in the north of Paris ? +If I was in Paris how from how many hotels could I choose to stay in ? +Can you give me bars in Edinburgh in which free wifi exists ? +Is the closest cliff diving location within day trip distance of Edinburgh ? +What types of historic sites can be found in Marseille ? +Is there a golf course in Paris ? +Should I take car to the closest bakery from Mary King's Close in Edinburgh ? +How many fast food restaurants sites are in the east of Heidelberg ? +Where are springs in the south of Heidelberg ? +Are there any nice viewpoints in Edinburgh ? +Which types of leisure activities are there in Paris ? +What are the names of cinemas that are within walking distance from the Place de la République in Paris ? +Can you give me the names and telephone numbers of driving schools in the south of Paris ? +How many of the living streets in Paris are one way streets ? +Is there a supermarket close to Lothian Road in Edinburgh ? +Where can I find archaeological sites in Paris and what are they called ? +Could you give me all locations for skateboarding in Heidelberg ? +Where in Baden-Württemberg are emergency phones ? +Where is the closest restaurant or bar from the pier Neckarsonne Ausflugsschiff in Heidelberg ? +Can you give me the phone numbers of bike rentals in Paris ? +What is the closest money exchange from the Eiffel Tower in Paris ? +Where can I tread water ? +How many schools are in Neuenheim ? +Is there a place that serves sandwiches in Heidelberg ? +Is there a street called Rue Poliveau in the 5th Arrondissement ? +What are the organic supermarkets of Paris called ? +Are there any memorials that are springs in Heidelberg ? +Are there any organic supermarkets within walking distance from Lothian Road in Edinburgh ? +How many helipads are there in Edinburgh ? +Can I walk from the Heidelberg castle to the main station ? +How many lanes does the Whitehouse Loan in Edinburgh have ? +Can you tell me where I can find a post office in Edinburgh ? +Is there any camp site in Heidelberg ? +How many ambulance stations does Heidelberg have ? +What archaeological sites exist in the south of Edinburgh ? +Where in Edinburgh can I park my car ? +Are there quarries in Paris ? +In how many locations of Edinburgh can I practice my basketball technique ? +Which churches of Scotland are there in Edinburgh ? +Which places of worship are there in Edinburgh ? +How many swimming pools are in the north of Edinburgh ? +Is there a swimming pool in the east of Edinburgh ? +Which airports are within day trip driving distance of Heidelberg ? +What are the websites and names of the museums or art centres in walking distance of the Eiffel Tower in Paris ? +Where are advertising columns in the north of Heidelberg ? +How far apart are the Musee du Louvre and the Arc de Triomphe in Paris ? +How many railway stations are there in Heidelberg ? +Is there a restaurant close to the Avenue des Ternes in Paris ? +How many restaurants are in the south of Heidelberg ? +What are the opening times of the McDonalds closest to the Hauptbahnhof in Heidelberg ? +Where is the closest arts centre from the Musee du Louvre in Paris and what is it called ? +Are there any tourist attractions in Paris ? +How many quarries are there in Paris ? +How many cinemas are there in Edinburgh ? +Where are cemeteries in Edinburgh ? +Can you tell me where bars in Edinburgh are ? +What is the website of the Buffalo Grill in Edinburgh ? +How many quarries are there in the south of Heidelberg ? +What is a location in Edinburgh where I can play cricket ? +Where in the west of Paris can I exchange money ? +Can you please tell me the email address of a hotel in Heidelberg ? +Is there a water well within 2km of the Heidelberg castle ? +How many key cutters does Edinburgh have ? +Which cuisines can I choose from in Edinburgh ? +How many fish and chips places are in the east of Edinburgh ? +What is the Wikipedia page of the city Edinburgh ? +Where are bus stops in the west of San Francisco ? +Are there any charging stations for electrical cars in Paris and if so how many ? +How many bakeries are there in Heidelberg ? +Where is the closest Renault dealer ship from Paris ? +Can the restaurant Cesarino in Heidelberg be accessed with a wheelchair ? +What is the phone number of The Salisbury hotel in Edinburgh ? +How far apart are the Palace of Holyroodhouse and Camera Obscura in Edinburgh ? +Where in Edinburgh are springs ? +Can you tell me the names of swimming pools that are at most 30km away from Edinburgh ? +Give me the location of car sharing places in Heidelberg that are open all the time . +What are the denominations of the cathedrals in Edinburgh ? +Are there any organic supermarkets in the north of Paris ? +How many bike rental places are in the north of Heidelberg ? +Where are the closest bank and the closest pharmacy from the Yorckstraße in Heidelberg ? +Where are schools in Bielefeld that can be accessed with a wheelchair ? +How many Greek or Italian restaurants are there in Paris ? +What are the maximum speeds listed for the Whitehouse Loan in Edinburgh ? +Can I play tennis anywhere in Heidelberg ? +Can I walk to the closest church from Quai de Béthune in Paris ? +How many fast food restaurants sites are in the south of Heidelberg ? +What is the closest parking area for cars from Librairie Galignani in Paris ? +How many harbours are in Edinburgh ? +Are there any boundary stones in Nantes ? +How many swimming pools are in the south of Heidelberg ? +How far away is the nearest petrol station from Cambridge Gardens in Edinburgh ? +Where are the prisons of Edinburgh located ? +When is the post collected from the post boxes in Alaise ? +What is the number of museums in Paris ? +Are the any road constructions in Paris at the moment ? +What are the names of the rugby locations in Edinburgh ? +Is there a harbour in Edinburgh ? +Where is the closest hotel from the pier Neckarsonne Ausflugsschiff in Heidelberg ? +Is there a restaurant called Taj Mahal in Heidelberg ? +Can you please tell me the homepage of hotels in Paris ? +Are there any petrol stations that are open 24/7 in Paris ? +Where is the closest clothes recycling facility from Mary King's Close in Edinburgh ? +Where in the south of Paris are drinking water locations ? +Can you give me the location of a butcher in Paris ? +Where can the ambulance stations of Heidelberg be found ? +Are there any springs in the south of Paris ? +Is the closest cliff diving location within day trip distance of Heidelberg ? +Can I walk to the closest fountain from the Palais de l’Élysée in Paris ? +Are there any Stolpersteine in Ludwigshafen am Rhein ? +What kind of historic site is the closest one from the Gare du Nord in Paris ? +Where in Heidelberg can I play table tennis ? +How many hotels are there in Heidelberg ? +Where are places in which taxis wait in Paris ? +Is there a restaurant called Ristorante Pellicano in Paris ? +How many bakeries are there in Edinburgh ? +Is there a street called Amselgasse in Handschuhsheim ? +Where are churches close to Heidelberg castle ? +Where are mine fields on Earth ? +Are there more than 2 spots with drinking water in Edinburgh ? +What is the website of the cinema Cinéma Chaplin in Paris ? +How many Stolpersteine can be found in the south of Heidelberg ? +Are there several springs in Heidelberg ? +Where can I go swimming in Paris ? +How many car sharing facilities are there in Heidelberg ? +What are the names of springs in the vicinity of Paris ? +Can I walk from the Palais de l’Élysée to Gare du Nord in Paris ? +Where are water towers in Vendée ? +How many peaks in Edinburgh have car parks close by ? +What's the phone number of the Taj Mahal in Heidelberg ? +Where are supermarkets in Heidelberg ? +Which shops are around the Hard Rock Café in Paris ? +How many book stores does Edinburgh have ? +Where are schools in the east of Bielefeld ? +Can I walk to the closest fountain from the Palace of Holyroodhouse in Edinburgh ? +Please give me the location the of Edinburgh Castle . +Please list the names of the embassies in Paris . +Which museums in Paris have wlan ? +How many post offices can be found in Paris ? +How many archaeological sites can I find in Heidelberg ? +Which types of historic sites are there in Edinburgh ? +How many arts centres are around Gare du Nord in Paris ? +Would you tell me the number of hotels in Edinburgh in which smoking is not allowed ? +Are there any megalith in Edinburgh and if so , where ? +Which museum is closest to the Gare du Nord in Paris ? +How many zip lines are there ? +How many restaurants exist in Edinburgh that would serve me Greek food ? +Do memorials exist in Edinburgh ? +Are there any Greek restaurants in Paris ? +How many restaurants are there in Paris ? +Do car sharing places exist in Paris ? +Are there more than one bike parking areas in Paris ? +How many churches are there in the north of Paris ? +Where are museums in the north of Paris ? +Are there any mosques in the west of Heidelberg ? +Please tell me where bathrooms are north of the Place de la République in Paris . +Are there any Japanese restaurants in Edinburgh ? +What is the number of bars in Edinburgh ? +How many town halls are there in Heidelberg ? +Where are peaks in Edinburgh ? +What kind of shops are shops called Cash Converters ? +Are there any helipads in the north of Paris ? +Which schools in Edinburgh have a bus stop less than 200 meters away ? +How many bridges are in the north of Eure-et-Loir ? +Where in Edinburgh are theatres ? +In how many places could I go shopping in Paris ? +Where in Heidelberg are organic supermarkets ? +Where do taxis wait in Heidelberg ? +Is there a fountain within 2km of the Palais de l’Élysée in Paris ? +How many speed cameras exist in Paris ? +Which catholic churches are there in Paris ? +How many Christian churches can be found in the city Edinburgh ? +What is the closest fast food restaurant from Gare du Nord in Paris ? +Where is the closest helipad from Yorckstraße in Heidelberg ? +What are the names of the Prisons in Paris and their Wikipedia pages ? +What are the shops in the Sternstraße in Bonn called ? +Can you tell me what number of supermarkets Heidelberg has ? +What are the tombs in Paris called and what are their Wikipedia pages ? +Which bike rental places are there in Paris ? +How many second hand only stores are there in the north of Paris ? +Give me the websites of bicycle monitoring stations ! +There are libraries in Paris ? +How many charging stations are there in Munich and where are they ? +How many cemeteries are there in Edinburgh ? +How many restaurants are there in Berlin ? +Please list the location of all monuments in the east of Pays de la Loire ! +How many shops called Cash Converters are there ? +Can you give me the names of all archaeological sites in Paris ? +Where in the east of Edinburgh can I exchange money ? +How many kindergartens are in Heidelberg ? +Please , can you tell me the locations of monuments in Edinburgh ? +How many cathedrals are there in the west of Paris ? +If there are any car sharing places in Paris , can you tell me where ? +How many drinking water spots can be reached with a wheelchair in Heidelberg ? +Are there several locations in Heidelberg where one can play football ? +Does O2 have a communication tower in Edinburgh ? +When were the now abandoned theme parks first opened ? +At how many places in the south of Paris can I exchange money ? +How many viewpoints does Edinburgh have ? +If I counted Heidelberg's universities , what number would I get ? +Where and how many playgrounds are there in the north of York ? +Are there any parks in Heidelberg and if so where are they ? +Are there any castles in Paris ? +Where are restaurants in the east of Paris ? +Can you give me the websites of kindergartens in Hamburg ? +Can you tell me the location of a work of art in Paris ? +At how many different locations could I have a picnic in Heidelberg ? +What is the surface of the road Whitehouse Loan in Edinburgh ? +Would you give me a location in Edinburgh where I can play basketball ? +Where in Edinburgh are second hand only stores and what are their opening times ? +Give me the phone numbers of distilleries ! +Which arts centres are there in Paris ? +Does a street called Whitehouse Loan exist in Morningside ? +How many fast food restaurants sites are in the west of Heidelberg ? +Is there a fountain within walking distance of the Palais de l’Élysée in Paris ? +How many opportunities are there to play basketball in Edinburgh ? +Where is the closest drinking water location from the Edinburgh Waverley ? +Where are post boxes east of Schriesheim ? +Which schools in Heidelberg have a bus stop less than 200 meters away ? +Does the Südwestrundfunk have a communication tower in Heidelberg ? +Where in Edinburgh are viaducts ? +Can you please tell me the name of a hotel in Edinburgh ? +Can you tell me where I can find a post office in Paris ? +How many advertising columns are there in Edinburgh ? +Where are restaurants in the east of Heidelberg ? +What archaeological sites exist in the east of Paris ? +Where are banks that can be accessed with a wheelchair in Edinburgh ? +Where can I find a waiting taxi in Heidelberg ? +Would you please tell me a name of a hotel in Paris ? +How many facilities for migrants are there in Witten ? +Is there a bus stop in Lothian Road , Edinburgh ? +Can you give me the names and telephone numbers of driving schools in the west of Heidelberg ? +Are any of the ruins in Heidelberg temples ? +How many fast food restaurants sites are in the south of Paris ? +Which companies are the operators of car sharing places in Heidelberg ? +Where in the north of Paris can I exchange money ? +Are there 5 or more hotels in Edinburgh ? +How many castles does Paris have ? +How far away from Heidelberg is the closest planetarium ? +Give me the name and location of all tourist related activities that can be accessed with a wheelchair in Paris ! +Can you give me the names and telephone numbers of driving schools in the north of Heidelberg ? +In Nantes , what are the historic sites with inscriptions called and what is the inscription ? +Does Edinburgh have any Burger Kings ? +Can you give me the street name in Edinburgh ? +How many subways are in Paris ? +Who are the manufacturers of wind generators in Saxony ? +If I was in Edinburgh , from how many bars could I choose ? +Where are roundabouts in the north of Dresden ? +What's the closest restaurant from the Brandenburger Tor in Berlin ? +Who operates the bus stop Pasteur - Lycée Buffon in Paris ? +Can I eat vegetarian anywhere in Heidelberg ? +Is there a railway station called Pont Cardinet in Paris ? +What types of land uses are recorded in Paris ? +How many theatres are in Paris ? +How many caravan sites are in the east of Paris ? +How many bike rental places are in the west of Paris ? +How many 3 star hotels are in the south of Edinburgh ? +Where are banks in Paris ? +How many abandoned theme parks are there ? +Can I find 3 or more viewpoints in Edinburgh ? +If any of the peaks in the west of Languedoc-Roussillon have a Wikipedia pages , please list it . +How many bicycle parking areas are there in Edinburgh ? +How many Japanese restaurants are there in Heidelberg ? +How many second hand only stores are there in the south of Heidelberg ? +Which ruin is closest to the Heidelberg Hauptbahnhof ? +How many ambulance stations does Paris have ? +How many banks can be found in Paris ? +Would you please list all names of bakeries in Paris ? +What are the names of the swimming locations in Heidelberg ? +How many arts centres are in the west of Paris ? +Would you please tell me a name of a hotel in Heidelberg that has 4 stars ? +How many bridges are in the south of Eure-et-Loir ? +Would you tell me the location of all speed cameras in Heidelberg ? +Would you give me the location of a tennis court in Paris please ? +What are the names of copy shops in Edinburgh and where can I find them ? +Where are advertising columns in the west of Paris ? +How far is the closest bathroom from the Rührbrunnen in Stuttgart away ? +What are the distilleries called ? +Can the restaurant L'Encrier in Paris be accessed with a wheelchair ? +How far apart are the Heidelberg castle and the Sume-Brunnen ? +How many kilometres are Paris and Rennes apart ? +Are there any planetariums in the vicinity of Edinburgh ? +If any of the peaks in the east of Languedoc-Roussillon have a Wikipedia pages , please list it . +How far apart are the Palace of Holyroodhouse and the Haymarket train station in Edinburgh ? +Which hospitals exist in Paris ? +Can you tell me the location of a work of art in Heidelberg ? +Where and how many playgrounds are there in the east of York ? +Can you give me the book stores in Paris ? +What are the peaks in the west of Languedoc-Roussillon called and how high are they ? +Where in the world are pet cemeteries ? +Is there a swimming pool in the west of Paris ? +How many mobile phone communication towers are there in Heidelberg ? +Would you please tell me a name of a hotel in Heidelberg that has wlan ? +How many places to play tennis are there in the east of Montpellier ? +Can you tell me what number of supermarkets Paris has ? +Which archaeological sites can I find in Edinburgh ? +How many rooms does the Hotel Schönberger Hof in Heidelberg have ? +Where are bus stops in the east of San Francisco ? +What is the telephone number of the Piatto Verde in Edinburgh ? +Where can I eat burgers in Heidelberg ? +What is the closest restaurant from Camera Obscura in Edinburgh ? +What is the website of the restaurant Zum Seppl in Heidelberg ? +Does Paris have more than one castle ? +How many springs exist in Paris ? +Are there any conference centres in Germany ? +Are there any memorials that are springs in Edinburgh ? +How many schools are in the west of Heidelberg ? +What is the closest bank with ATM's from the Heidelberg castle ? +Where in the west of Paris are drinking water locations ? +Where in Heidelberg can I recycle clothes ? +Where are 4 star hotels in the vicinity of Paris ? +At how many places in the north of Paris can I exchange money ? +Are there any parks in Paris and if so where are they ? +Can you tell me the name of the closest bar or restaurant from the cinema Vue in Edinburgh ? +Is there a hospital called Kurpfalzkrankenhaus in Heidelberg ? +Please tell me the streets in which theatres of Edinburgh are located in ? +Where is the closest organic supermarket from Lothian Road in Edinburgh ? +Does the A5 lead to Heidelberg ? +Who are the operators of emergency phones in Baden-Württemberg ? +Which places of worship are there in Paris ? +Where are ruins in Heidelberg and what are they called ? +Is there a hospital called Hôpital Marmottan in Paris ? +How many KFC are there in the east of Edinburgh ? +What are the names of the remote islands in English ? +Where are restaurants in the north of Edinburgh ? +Where is the closest organic supermarket from the Avenue des Ternes in Paris ? +What is the closest church from Rue Lauriston in Paris and where is it ? +How many Stolpersteine can be found in the north of Heidelberg ? +Can you give me possible parking locations in Heidelberg ? +How many restaurants are in the west of Paris ? +Where are cemeteries in the south of Heidelberg ? +Where are fire hydrants in Brietlingen ? +What are all the locations of tailors in Edinburgh ? +How many Stolpersteine can be found east of Heidelberg ? +Are there any quarries in the south of Heidelberg ? +How many springs are in the east of Nîmes ? +Is the Eiffel Tower in Paris ? +Are there any organic supermarkets in Edinburgh ? +Please tell me the names of theatres in Heidelberg that my husband who sits in a wheelchair can visit ? +Where are post offices in Edinburgh ? +Please list all location of petrol stations in Paris that sell Diesel . +Where can I find drinking water in Heidelberg ? +How many cemeteries are there in the east of Heidelberg ? +Is there a planetarium in Paris ? +Where is the closest Indian or Asian restaurant from the cinema Vue in Edinburgh ? +Where are springs in the east of Edinburgh ? +Where do taxis wait in Paris ? +In which street is the closest car dealer from Wieblingen in Heidelberg ? +Where should I look for a dentist in Heidelberg ? +What are the names and if available the opening times of breweries in Bretagne ? +What is the closest fast food restaurant from the Edinburgh Waverley ? +Where are the closest public bathrooms from Gare du Nord in Paris ? +Where are petrol stations in the north of Edinburgh ? +How many exhibition centres are listed ? +Where are advertising columns in the south of Paris ? +Where in Heidelberg can I park my car underground ? +Where in Heidelberg can I park my car ? +Can I find 10 or more hotels in Edinburgh ? +How many hotels lie in the city district of Edinburgh ? +List all Stolpersteine found in Osnabrück . +Would you tell me what the Greek restaurants in Paris are called ? +What is the closest historic site from the Gare du Nord in Paris ? +How many cemeteries are there in the south of Edinburgh ? +What are the maximum speeds listed for the Maaßstraße in Heidelberg ? +Is there a water well within walking distance of the Heidelberg castle ? +Is there an arts centre within walking distance from the Edinburgh Waverley ? +If I was in Heidelberg , from how many restaurants could I choose ? +Are there any attractions in Paris that can be accessed with a wheelchair ? +How many pieces of artwork are there from the berlin bears ? +Where is the closest Jet petrol station from INF 325 in Heidelberg ? +Where are banks in the north of Paris ? +Where are kindergartens in Heidelberg ? +Which towns are south of Heidelberg ? +How many schools are in the east of Edinburgh ? +How many kindergartens are there in Edinburgh ? +Could you list all locations of viewpoints in Heidelberg ? +Which Christian churches are in Paris ? +Where are fountains in Heidelberg and how many are there ? +Which schools in Paris have a bus stop less than 200 meters away ? +How many different works of art can I look at in Edinburgh ? +Where is the Kelso ROC Post and what kind of historic site is it ? +Where can I find archaeological sites in Paris ? +What are the peaks in the north of Languedoc-Roussillon called and how high are they ? +If I was in Paris how many shops could I go shopping in ? +Does Heidelberg have more than one castle ? +How many 3 star hotels are in the east of Paris ? +Where are banks in the west of Heidelberg ? +Are there several tennis courts in Paris ? +How many bridges can be found in the north of Edinburgh and where are they ? +How many restaurants are in the north of Heidelberg ? +What kind of cuisine is served at Da Mario in Heidelberg ? +How many arts centres are in the east of Paris ? +How many bus stops can be found in Heidelberg ? +How many of the fire hydrants in Lüneburg are underground ? +Are there any mosques in the north of Edinburgh ? +How many camp sites are there in Heidelberg ? +Where in Paris can I recycle glass ? +Are there any arts centres in Heidelberg and if so how many and where are they ? +Where are 4 star hotels in the east of Paris ? +At how many places in the west of Paris can I exchange money ? +How many protestant churches are there in Paris ? +Is there an arts centre within walking distance from the Heidelberg Hauptbahnhof ? +What are the caves in Osterode called and where are they ? +Where should I look for a dentist in Edinburgh ? +What is the closest money exchange from Gare du Nord in Paris ? +Where are amenities close to Heidelberg-Altstadt train station ? +Can you tell me where police stations are in Heidelberg ? +Where are cemeteries in the west of Paris ? +How many camp sites are there in Paris ? +Where are advertising columns in the south of Heidelberg ? +How many planetariums are in the vicinity of Edinburgh ? +What is the number of police stations in Edinburgh ? +How many tombs are in the north of Paris ? +How many second hand only stores are there in the south of Paris ? +Are there any picnic sites in the city of Heidelberg ? +Where are hiking maps in Heidelberg close to a car park ? +Are there any Tescos in Edinburgh ? +Where are murals in Germany ? +Please , can you give me all names of hotels in Edinburgh that have 3 stars ? +How many restaurants are in the west of Edinburgh ? +How many springs are in the north of Nîmes ? +Are there any mosques south of Paris ? +Which cinemas in Heidelberg can I access with a wheelchair ? +Can you give me the number of schools in Paris ? +Where is the closest hotel from the Hawes Pier in Edinburgh ? +How many butchers and bakeries are in Heidelberg ? +Where is the closest bank with ATM's from the Palais de l’Élysée in Paris and who operates it ? +In how many different locations can I go swimming in Edinburgh ? +Where is the closest church from the Palais de l’Élysée in Paris ? +Are there any picnic sites in the city of Paris ? +How many train stations can be found in the south of Paris ? +What is the Wikipedia page of the Talbot Rice Gallery in Edinburgh ? +Please , would you give me the location of a shoemaker in Edinburgh ? +How many communication towers does O2 have in Edinburgh ? +Is there any miniature golf in Paris and if so where ? +How many churches are there in the east of Heidelberg ? +Are there several locations in Paris where one can play football ? +How many fast food restaurants sites are in the north of Edinburgh ? +Are there any mosques in the north of Paris ? +Where can I find a hotel in Paris ? +How many water towers are there in Vendée ? +Can you tell me the names of theatres in Heidelberg ? +Are there any helipads in the south of Edinburgh ? +Where is the closest spot to barbecue from the campus INF 325 in Heidelberg ? +What is the number of police stations in Heidelberg ? +What are the names of all Asian restaurants in Heidelberg ? +How many restaurants are there in the north of Berlin ? +Where are banks with ATM's in Heidelberg ? +Is there a kindergarten in the 14th Arrondissement ? +How many Stolpersteine can be found in the east of Heidelberg ? +How many mine fields are there on Earth ? +What is the closest restaurant from An der Neckarspitze in Heidelberg ? +How far apart are the Palais de l’Élysée and Gare du Nord in Paris ? +Where are Stolpersteine in the west of Delmenhorst ? +Where are bike parking areas are there in Paris ? +Are there any mosques south of Edinburgh ? +Would you tell me the phone number of L'Encrier in Paris ? +How far away is the closest Greek restaurant from Berlin Hauptbahnhof ? +Where are REWE supermarkets in Heidelberg ? +Are the any road constructions in Edinburgh at the moment ? +Are there several springs in Edinburgh ? +How many quarries are there in the north of Edinburgh ? +How many KFC are there in the west of Edinburgh ? +What is the website of the pizzeria The Crafters Barn in Edinburgh ? +How many Christian churches can be found in the city Paris ? +Is there a supermarket close to the campus INF 325 in Heidelberg ? +Where can I go to play American football in the vicinity of Heidelberg ? +What are the phone numbers and names of the museums at most 5km away from the Eiffel Tower in Paris ? +Are there any mosques in the west of Paris ? +Where can I find artwork from the berlin bears ? +Can you give me the addresses of banks in Paris ? +How far apart are the Palace of Holyroodhouse and Edinburgh Waverley ? +What is the name of the closest museum or art centre from the Eiffel Tower in Paris ? +How many springs are in the vicinity of Paris ? +Is there more than one pharmacy in Heidelberg ? +What is the closest memorial from the Calton Hill in Edinburgh and where is it ? +Please list the location of all monuments in the north of Pays de la Loire ! +Where is the closest organic supermarket from the campus INF 325 in Heidelberg ? +Where are public bookcases ? +How many historic sites are in the south of Nantes ? +What is the closest shop to buy a mobile phone from Quai de Béthune in Paris ? +Where are tombs in Edinburgh ? +How many memorials can be found in Paris ? +How many railway stations are there in Edinburgh ? +Can I eat African somewhere in Edinburgh ? +Is there a Sternstraße in Bonn ? +Please list the location of all monuments in the west of Pays de la Loire ! +Is there a place that serves sandwiches in Paris ? +How many pharmacies are there in Paris ? +Are there any charging stations for electrical cars in Heidelberg and if so how many ? +Which is the closest arts centre from Notre Dame in Paris ? +How many tombs are in the west of Edinburgh ? +Where are planned buildings ? +Which Christian churches are in Heidelberg ? +How many hotels are there in Edinburgh ? +Do the berlin bears have more than one piece of artwork ? +At how many places can I buy stationary in Paris ? +Are the Palace of Holyroodhouse and the Edinburgh Waverley within walking distance of each other ? +What type of highway is the Avenue du Général Lemonnier in Paris ? +Are there several spots in Paris in which table tennis can be played ? +Can you tell me the location of a Sainsbury's in Edinburgh ? +Would you give me the names of all Italian restaurants in Edinburgh ? +Are there any castles in Heidelberg ? +Are there any murals to be found in Germany ? +How many bike rental places are in the north of Paris ? +How far away is the next school from Rue des Cloys in Paris ? +In which street is the Holiday Inn Express in Edinburgh ? +Which protestant churches are there in Paris ? +What is a location in Paris where I can row ? +Is there a water well within 2km of the Palace of Holyroodhouse in Edinburgh ? +How many historic sites are in the north of Nantes ? +What are the peaks in the east of Languedoc-Roussillon called and how high are they ? +Where are amenities close to Bastille train station in Paris ? +How many cemeteries are there in the west of Paris ? +Is there anywhere in Heidelberg where I can buy seafood ? +Where are Starbucks in Paris ? +Are there any Stolpersteine in Heidelberg ? +Where in Paris can I recycle clothes ? +How many bicycle monitoring stations are recorded ? +Where are cemeteries in Heidelberg ? +If I was in Edinburgh , how many museums could I visit ? +Please give me the location of all zoos within day trip driving distance of Edinburgh . +How many citizens live in Heidelberg ? +According to the Stolperstein of Simon Hochherrr in Heidelberg , when was he born ? +Is there anywhere in Edinburgh where I can buy seafood ? +Which museums are in Edinburgh ? +How far apart are the Heidelberg Castle and the Heidelberg main station ? +How many bus stops in Heidelberg can be accessed with a wheelchair ? +Where are bus stops in Heidelberg ? +How many train stations can be found in the west of Heidelberg ? +How many tombs are in the east of Edinburgh ? +Which towns are north of Edinburgh ? +Are there more than 2 spots with drinking water in Paris ? +How many caravan sites are in the west of Heidelberg ? +Would you please tell me a name of a hotel in Paris that has 4 stars ? +How many tennis courts are there in Heidelberg ? +Are there 5 or more hotels in Paris ? +If I counted Paris's McDonald's , what number would I get ? +Where in Paris are speed cameras ? +Can I eat African somewhere in Paris ? +How many Marks & Spencer Food are there ? +Where can I find a dentist in Paris ? +Give me cinemas in Paris that have a car park close by . +What are the pieces of art from the berlin bears called ? +How many piers are in Edinburgh ? +Can you give me the location of libraries in Edinburgh ? +Please give me the location of all zoos in Paris . +Is there more than 1 library in Edinburgh ? +Where are cemeteries in the east of Edinburgh ? +Which bakeries are in Edinburgh ? +How many locations are in the south of Edinburgh where you can play miniature golf ? +Can you tell me a pharmacy in Edinburgh ? +Is there a golf course in Edinburgh ? +What is the closest historic manor from Heidelberg ? +Where are banks in the west of Paris ? +How many restaurants exist in Paris that serve Asian food ? +How many wind generators does Saxony have ? +In which street is the closest car dealer from the 7th Arrondissement in Paris ? +At how many places could I find taxis in Edinburgh ? +Where in Heidelberg are theatres ? +Is there any miniature golf in Edinburgh and if so where ? +Where can I go to play American football in the vicinity of Edinburgh ? +What is the name for Edinburgh in French ? +What is the closest protestant church from Fischergasse in Heidelberg and where is it ? +How many quarries are there in Edinburgh ? +How many places to play tennis are there in the south of Montpellier ? +Are the any road constructions in Heidelberg at the moment ? +Are there any Edekas in Heidelberg ? +Are there any helipads in the east of Heidelberg ? +Would you give me the location of a rugby pitch in Edinburgh please ? +Is there an arts centre close to the Eiffel Tower in Paris ? +Is there a pharmacy in walking distance from Die Kamera in Heidelberg ? +Where are greenhouses in the east of Dresden ? +Where in Nîmes can springs be found ? +Where is the closest Jet petrol station from Lothian Road in Edinburgh ? +What is the closest church from Castlehill in Edinburgh and where is it ? +Where in Edinburgh are castles ? +Are there any cathedrals in Edinburgh and if so what are they called ? +Can you tell me a pharmacy in Paris ? +Is Notre Dame a cathedral in Paris ? +Is there anywhere near Heidelberg where I can go scuba diving ? +Is there a street called Rue d'Amboise in the 5th Arrondissement ? +Where in Heidelberg are castles ? +Are there any vineyards in the north of Paris ? +Where are restaurants in the north of Heidelberg ? +Which mosques are there in the city of Heidelberg ? +Are there any Greek restaurants in Edinburgh ? +What is the number of police stations in Paris ? +In which cities are planned buildings ? +What is Paris called in Japanese ? +Where are hospitals in Heidelberg ? +At how many places could I find taxis in Heidelberg ? +Where are cathedrals in Paris and what are they called ? +How many post offices can be found in Edinburgh ? +What is the closest Italian or Indian restaurant from the main station in Heidelberg ? +What is the closest restaurant from Palais de l’Élysée in Paris ? +Where are advertising columns in the west of Heidelberg ? +What is Heidelberg called in Japanese ? +What kind of shelters are there in Paris ? +What is the closest international airport from Heidelberg ? +Are there any helipads in the east of Edinburgh ? +Where are 4 star hotels in the east of Edinburgh ? +In how many locations of Heidelberg can I practice my table tennis technique ? +Is there a animal shelter in Edinburgh ? +How many bridges are in the west of Eure-et-Loir ? +Where are petrol stations in the west of Edinburgh ? +How many train stations can be found in the north of Heidelberg ? +How many quarries are there in Heidelberg ? +Where in Paris can I find a monument ? +How many communication towers are there in Edinburgh ? +Is there more than one pharmacy in Edinburgh ? +How many living streets are there in Edinburgh ? +If there are any car sharing places in Edinburgh , can you tell me where ? +Where are Sainsbury's supermarkets in Edinburgh ? +Where can I eat burgers in Edinburgh ? +Where are the hotels in Heidelberg where you have wlan ? +Where are the communication towers from O2 Edinburgh ? +Is there a kindergarten in Edinburgh ? +Is an African restaurant in the walking distance from High Street in Edinburgh ? +What are the names of butchers in Heidelberg ? +Where can I find a hotel in Heidelberg ? +Is it possible to go swimming in Heidelberg ? +Are there any murals in Lyon and if so how many ? +Are there any helipads in the west of Paris ? +Where are petrol stations in the south of Edinburgh ? +What is the closest Italian or Indian restaurant from the Edinburgh Waverley ? +What kind of shelters are there in Heidelberg ? +What are the names of cinemas that are within walking distance from the Bismarckplatz in Heidelberg ? +Where are piers in Paris ? +How many locations are in the west of Edinburgh where you can play miniature golf ? +Are there any international airports around Paris ? +Is there more than one pharmacy in Paris ? +Where is the closest school from the Avenue des Ternes in Paris ? +How many arts centres are around the Heidelberg Hauptbahnhof ? +Are there 13 or more tombs in Paris ? +Where are Stolpersteine in the west of Heidelberg ? +How many peaks are there in the north of Languedoc-Roussillon ? +Is there a street called Boulevard de Sébastopol in the 2nd Arrondissement ? +How many hotels in Edinburgh have 3 stars ? +How many second hand only stores are there in Heidelberg ? +Where are banks in Edinburgh ? +How many tombs are in the north of Edinburgh ? +Can you tell me where a bakery is in Paris ? +Is the Plöck in the Altstadt ? +Where and how many boundary stones are there in Hummelsbüttel ? +Are there kindergartens in Paris ? +Where is the closest bank with ATM's from the Palace of Holyroodhouse in Edinburgh and who operates it ? +If any of the peaks in the north of Languedoc-Roussillon have a Wikipedia pages , please list it . +Could you list all locations of viewpoints in Edinburgh ? +What is the surface of the road Plöck in Heidelberg ? +Where are the mountains of Heidelberg located ? +Where are advertising columns in the east of Heidelberg ? +Where are public bookcases in the Germany ? +Are there several police stations in the city of Paris ? +What are the names of the drinking water locations in Heidelberg ? +How many cemeteries are there in the north of Edinburgh ? +If I was in Edinburgh , how many libraries could I visit ? +Is the Plöck in Neuenheim ? +Can you tell me where police stations are in Edinburgh ? +Where are kindergartens in Edinburgh ? +Please give me the name and websites of all arts centres in Edinburgh ! +Can you tell me where bars in Heidelberg are ? +How many schools are in the west of Paris ? +What is the name of a hotel in Paris that can be accessed with a wheelchair ? +How many theatres are in Edinburgh ? +Can I walk to the closest church from Newhaven Road in Edinburgh ? +What is the surface of the road Maaßstraße in Heidelberg ? +Is there a post box around Alaise ? +How many lanes does the Place de la République in Paris have ? +Where is the closest catholic church from the Edinburgh Waverley ? +Are there any vineyards in the west of Paris ? +Where in the east of Heidelberg are drinking water locations ? +Where is a picnic site in Heidelberg ? +Is there a swimming pool in the north of Heidelberg ? +How many peaks are there in the east of Languedoc-Roussillon ? +Which hospitals exist in Heidelberg ? +What archaeological sites exist in the south of Paris ? +Where and how many playgrounds are there in the west of York ? +Where are hotels in Heidelberg and what are their names ? +At how many places could I find taxis in Paris ? +How many quarries are there in the east of Edinburgh ? +Where are restaurants in the east of Edinburgh ? +What is the name of a hotel at which I can also park my car in Heidelberg ? +Which driving school is closest to Quai de Béthune in Paris and where is it ? +Can you tell me where bars in Paris are ? +Where are charging stations in Paris ? +Where is the closest town hall from the 14th Arrondissement , Paris ? +How many places to play tennis are there in Montpellier ? +Where are fire brigades in Edinburgh ? +How many breweries are there in Bretagne and where are they ? +Where are Starbucks in Edinburgh ? +How many roundabouts does Dresden have and what are they called ? +How many train stations can be found in the east of Paris ? +Give me the websites of museums in Paris . +What are the names of the drinking water locations in Paris ? +What are the international reference names for the motorways in Heidelberg ? +Are there any vineyards in the south of Paris ? +How many mosques are there in Edinburgh ? +Where in Edinburgh are speed cameras ? +How far do I have to drive for the closest charging station location from Heidelberg Hauptbahnhof ? +Does the Pizzeria Venezia in Paris offer internet access ? +How many fast food restaurants sites are in the west of Paris ? +How many planetariums are in the vicinity of Paris ? +How many peaks in Heidelberg have hiking maps in walking distance ? +What are the names of the swimming locations in Paris ? +How many caravan sites are in the west of Paris ? +Where are Stolpersteine in the north of Delmenhorst ? +What is the number of citizens Paris has ? +How many springs exist in Edinburgh ? +Would you give me the names of all Italian restaurants in Heidelberg ? +Where in Heidelberg can I recycle glass ? +Where is the closest Mercedes dealer ship from Heidelberg ? +Where is the closest fountain from Vue in Edinburgh ? +What are the street names of Neuler ? +Where are cemeteries in the south of Paris ? +What is the website of the cinema Die Kamera in Heidelberg ? +Where in the east of Paris are drinking water locations ? +Who operates the bridges of Edinburgh ? +Would you please tell me a name of a hotel in Edinburgh ? +Can you tell me the name of the closest bar or restaurant from Palais de l’Élysée in Paris ? +How many defibrillators does Paris have ? +Are there any organic supermarkets in the south of Heidelberg ? +How many schools are in the north of Heidelberg ? +Please tell me where the closest bathroom is from High Street in Edinburgh . +Can you tell me the website of the Hôtel Victoria Châtelet in Paris ? +Where are memorials in the north of Bavaria ? +Where are restaurants in the west of Edinburgh ? +How many electricians does Edinburgh have ? +Can you give me the names and telephone numbers of driving schools in the south of Heidelberg ? +Where in the world are murals ? +Are there any pet cemeteries in Germany ? +Which towns are north of Heidelberg ? +How far are Chapelle Saint-Bernard and Chapelle Sainte-Marie in Paris apart ? +How many memorials are there in the east of Edinburgh ? +Is there a place for rowing in Heidelberg ? +How many schools are close to the 14th Arrondissement ? +How many second hand only stores are there in the west of Paris ? +Where is it possible to skateboard in Paris ? +If I was in Paris , from how many bars could I choose ? +Where can I find a waiting taxi in Paris ? +Does a street called Maaßstraße exist in Wieblingen ? +Please tell me where bathrooms are north of the Bismarckplatz in Heidelberg . +Are there any exhibition centres in Germany ? +Can you give me the locations of all picnic sites in Heidelberg ? +If I counted Paris's universities , what number would I get ? +Please give me the location of all zoos within day trip driving distance of Heidelberg . +Can you give me the websites of bike rentals in Heidelberg ? +How many organic supermarkets are closer than 5km from the Avenue des Ternes in Paris ? +Where are banks in the east of Heidelberg ? +Where are restaurants in the west of Paris ? +Are there any Japanese restaurants in Paris ? +Would you please list all archaeological sites in Heidelberg ? +What are the tombs in Edinburgh called and what are their Wikipedia pages ? +How many locations are in the east of Paris where you can play miniature golf ? +How many organic supermarkets are closer than 5km from the campus INF 325 in Heidelberg ? +Where are amenities close to Haymarket train station in Edinburgh ? +Where and how many playgrounds are there in the south of York ? +How many citizens live in Edinburgh ? +Where in Paris can I practice football ? +How many caravan sites are in the south of Edinburgh ? +Are there several tennis courts in Heidelberg ? +How many mosques are there in Heidelberg ? +How many schools are there in Edinburgh ? +Is the closest cliff diving location within day trip distance of Paris ? +How many schools are close to Restalrig ? +How many Christian churches can be found in the city Heidelberg ? +Would you please list all names of bakeries in Edinburgh ? +Where can I find drinking water in Paris ? +Are there any quarries in the north of Edinburgh ? +Are there any places of worship for Buddhists in Paris ? +Where are fountains in Edinburgh and how many are there ? +What types of land uses are recorded in Heidelberg ? +How far apart are the Heidelberg castle and Don Robert ? +Do car sharing places exist in Heidelberg ? +In which street in Heidelberg is the Italian restaurant Roseto ? +Would you tell me the number of picnic sites I can choose from in Heidelberg ? +Are there any archaeological sites in Edinburgh ? +What are the camp sites in Paris called ? +Can you give me the phone numbers of arts centres in Paris ? +Are there any hiking maps in Heidelberg ? +Can you give me the available Wikipedia pages of archaeological sites in Heidelberg ? +How far apart are the Palais de l’Élysée and the Bastille train station in Paris ? +How many Tescos are there in Edinburgh ? +How many bike parking areas are there in Heidelberg ? +Please , could you give me all possible swimming locations in Edinburgh ? +How many churches are there in the west of Heidelberg ? +How many mountains are there in Edinburgh ? +How many locations are in the south of Paris where you can play miniature golf ? +What is the closest pharmacy from the Palais de l’Élysée in Paris ? +How many hotels are within walking distance of the Palais de l’Élysée in Paris ? +Who operates the Fernsehturm Heidelberg ? +Please list all locations of public bathrooms and playgrounds in Stuttgart . +Can you give me the names of all ruins in Heidelberg and the Wikipedia pages when available ? +How many cinemas are there in Heidelberg ? +What cuisines are available in Heidelberg ? +Where is the closest bank with ATM's from the Heidelberg castle and who operates it ? +Are there any arts centres in Paris and if so how many and where are they ? +Are there any subway stations in Île-de-France that can be accessed with a wheelchair ? +In which city is the closest planetarium from Heidelberg ? +Do shoemakers exist in Edinburgh ? +How many quarries are there in the east of Heidelberg ? +Who operates the post boxes around Alaise ? +How many people live in Paris ? +Are there fire brigades in Paris ? +Which supermarkets are in Heidelberg ? +Is there a planetarium in Edinburgh ? +Can you tell me where police stations are in Paris ? +Is there a restaurant close to the campus INF 325 in Heidelberg ? +Is there more than one bike parking areas in Edinburgh ? +How many locations are in the east of Edinburgh where you can play miniature golf ? +Where are memorials in the south of Bavaria ? +Is it possible to go swimming in Edinburgh ? +How many second hand only stores are there in Paris ? +Where is the closest kindergarten from the Princes Street in Edinburgh and what is it called ? +Are there several animal shelters in Edinburgh ? +Which towns are south of Edinburgh ? +What is the number of museums in Heidelberg ? +Where are peaks in Heidelberg ? +Where are petrol stations in the west of Heidelberg ? +Where are fire brigades in Paris ? +If there are any archaeological sites in Paris , how many are there ? +Where in the north of Heidelberg are drinking water locations ? +How many restaurants are in the east of Edinburgh ? +Are there any helipads in Heidelberg ? +Which kind of shops are in the Sternstraße in Bonn ? +How many churches are there in the west of Edinburgh ? +Where are hotels in Edinburgh and what are their names ? +Does the M8 lead to Edinburgh ? +Can you list the location of all bike parking areas that are covered and have lockers in Edinburgh ? +Is there more than 1 fire brigade in Heidelberg ? +Where should I look for a dentist in Paris ? +How many planetariums are in the vicinity of Heidelberg ? +Where in Heidelberg are springs ? +Which museums are in Heidelberg ? +How many hotels of Edinburgh are operated by Apex Hotels ? +If I counted Heidelberg's McDonald's , what number would I get ? +Can the restaurant Zizzi in Edinburgh be accessed with a wheelchair ? +How many tombs can be found in Paris ? +How many traffic signals does Paris have ? +Where can I get petrol in Edinburgh and which brands are there ? +Is there a swimming pool in the east of Paris ? +Please tell me where bathrooms are north of High Street in Edinburgh . +Where are playgrounds in York ? +If I was in Paris , from how many restaurants could I choose ? +What are the opening times of the Sainsbury's Local closest to the Edinburgh Waverley in Edinburgh ? +Where is the closest town hall from Restalrig , Edinburgh ? +Where can I get petrol in Paris and which brands are there ? +Please , would you give me the location of a post office in Heidelberg that can be accessed with a wheelchair ? +Can you give me all locations of defibrillators in Paris ? +Can you tell me where airports are that are at most 50km away from Heidelberg ? +Where are banks in the south of Heidelberg ? +In what location in Paris can a car be parked underground ? +Where are Italian restaurants in Edinburgh ? +Which towns are south of Paris ? +Is there anywhere in Heidelberg where I can eat seafood ? +How many citizens live in Paris ? +If there are any archaeological sites in Heidelberg , how many are there ? +How many caravan sites are in the south of Heidelberg ? +What peaks are in Heidelberg ? +How many cemeteries are there in the west of Heidelberg ? +How many restaurants exist in Heidelberg that would serve me Greek food ? +Are there any organic supermarkets in the east of Paris ? +Are there more than 30 bus stops in San Francisco ? +Can you give me the websites and phone numbers of bike rentals in Heidelberg ? +Can you tell me the names of theatres in Edinburgh ? +Can you give me the book stores in Edinburgh ? +Are there 5 or more picnic locations in Paris ? +Are there any cathedrals in Paris and if so what are they called ? +How many of the fire hydrants in Adendorf are underground ? +Is there a swimming pool in the south of Heidelberg ? +What archaeological sites exist in the north of Heidelberg ? +Where are bars with a bus stop no further than 400m away in Edinburgh ? +Can you tell me the names of theatres in Paris ? +How many swimming pools are there in Edinburgh ? +How many communication towers are there in Heidelberg ? +How many archaeological sites exist in Paris ? +In which street is the Hotel Schönberger Hof in Heidelberg ? +Where in Paris can I play table tennis ? +Where in the north Lyon are murals and what are they called ? +How many fish and chips places are in the west of Edinburgh ? +What is the closest historic site from the Waverley in Edinburgh ? +Are there several spots in Heidelberg in which table tennis can be played ? +How many fire brigades can be found in Heidelberg ? +Would you please tell me a name of a hotel in Edinburgh that I can access with a wheelchair ? +How many bike rental places are in the south of Paris ? +Is there a kindergarten called The Edinburgh Nursery in Edinburgh ? +How many cathedrals are there in the east of Edinburgh ? +Would you please tell me where the location of a viewpoint in Edinburgh is that can be accessed with a wheelchair ? +Do emergency phones exist in Paris ? +How many viewpoints does Paris have ? +Are there any mosques north of Edinburgh ? +How many arts centres are in the north of Paris ? +Who were the architects of the Eiffel Tower in Paris ? +What is the closest memorial from the Rue Fragonard in Paris and where is it ? +What are the websites of distilleries ? +Are there any organic supermarkets in Heidelberg ? +Where in Heidelberg may I find apartments ? +Can I find 10 or more hotels in Heidelberg ? +How many bike rental places are in the east of Heidelberg ? +In how many locations of Paris can I practice my table tennis technique ? +Which types of crafts are there in Edinburgh ? +Is there a historic manor in day trip distance from Heidelberg ? +How many restaurants are there in Heidelberg ? +What are the camp sites in Edinburgh called ? +Where in Heidelberg are speed cameras ? +Give me the Wikipedia pages of remote islands . +How many embassies are there in Edinburgh ? +How many cemeteries are there in the west of Edinburgh ? +How many banks can be found in Heidelberg ? +Where are butchers and bakeries in Paris ? +Where are camp sites in Heidelberg ? +What are the hospitals of Paris called ? +Can I go BMX racing somewhere in Edinburgh ? +Please tell me the names of theatres in Heidelberg that my mother who sits in a wheelchair can visit ? +Are there any nature reserves in the Hohenlohekreis ? +What kind of archaeological sites exist in Edinburgh ? +How many tombs are in the east of Paris ? +How many restaurants are there in the east of Berlin ? +What are the nature reserves in the Hohenlohekreis called and where are they ? +What mountains are in Edinburgh ? +Where is the closest bike parking area that is covered from Fischergasse in Heidelberg ? +Are there any ruins in Heidelberg ? +Are there more than one bike parking areas in Heidelberg ? +How far are St. Laurentius and Kirche Jesu Christi in Heidelberg apart ? +Which restaurants in Heidelberg serve burgers ? +How many cemeteries are there in the south of Heidelberg ? +If I was in Edinburgh how many shops could I go shopping in ? +How many peaks are there in the south of Languedoc-Roussillon ? +What is the closest historic manor from Edinburgh ? +Where can I find petrol stations in Edinburgh ? +Should I take car to reach the next organic supermarket from High Street in Edinburgh ? +Would you tell me the number of hotels that have car parking available in Heidelberg ? +Which Christian churches are in Edinburgh ? +Where is the closest Esso petrol station from Avenue des Ternes in Paris ? +Can I find 10 or more hotels in Paris ? +How many bike parking areas are there in Paris ? +How many road constructions are ongoing in Edinburgh at the moment ? +Can you tell me the location of a Monoprix in Paris ? +Are there any universities in Heidelberg ? +Where is the closest helipad from Mary King's Close in Edinburgh ? +What kind of amenities are close to Haymarket train station in Edinburgh ? +Where are subway stations in the west of Île-de-France ? +Which archaeological sites can I find in Heidelberg ? +How many fast food restaurants sites are in the east of Paris ? +Where is the closest bike parking area from Princes Street in Edinburgh ? +How many swimming pools are in the east of Heidelberg ? +How many hotels are within walking distance of the Heidelberg castle ? +How many mountains are there in Paris ? +How many Stolpersteine are close to the Heidelberg castle ? +What colour does the roof of the Sacre Coeur in Paris have ? +How many pharmacies are there in Heidelberg ? +How many stars does the Le Robinet d'Or in Paris have ? +Where are quarries in Edinburgh ? +How many cathedrals are there in the north of Edinburgh ? +Where are banks that can be accessed with a wheelchair in Heidelberg ? +Where in Edinburgh can I find attractions ? +How many places are reserved for skateboarding in Paris ? +How many different works of art can I look at in Heidelberg ? +How many springs are in the south of Nîmes ? +Where is the closest migrant facility to the Witten Hauptbahnhof ? +What is the phone number of the Hôtel Victoria Châtelet in Paris ? +How many bridges can be found in the west of Edinburgh and where are they ? +Are there any quarries in the west of Edinburgh ? +Where are springs in the north of Heidelberg ? +Where are museums in the south of Paris ? +Is there a restaurant at the Heidelberg Marriott Hotel ? diff --git a/smtsemparsecpp/data/nlmaps.train.gold b/smtsemparsecpp/data/nlmaps.train.gold new file mode 100644 index 000000000..0bad10529 --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.train.gold @@ -0,0 +1,1500 @@ +247 +Hope Cottage Nursery School, Little Monkeys Nursery, Colinton Private Nursery, Rainbow Kindergarten, Molly's Nursery, Heriot Hill Nursery, Strawberry Hill Nursery, Bruntsfield Nursery, Busy Bees Nursery, Childcair @ Quartermile, The Edinburgh Nursery, Annandale Nursery, The Edinburgh Nursery, St. Leonards Nursery School, High School Yards Nursery, Melville Street Nursery, Jigsaw Childcare, Pinocchio's, Cherrytrees Children's Nursrey, Busy Bees Day Nursery, Grange Loan Nursery, Mr. Squirrel's Nursery, Suffolk House Nursery, Stanwell Nursery, Bruntsfield House Nursery, Carrick Knowe Primary, Baby Rainbow, Childsplay, Playdays, Chapter One Childcare, Forbes Childrens Nursery, Greenhill Montessori Nursery, Grassmarket Nursery, Kidzcare, Cameron House Nursery School, Priestfield Road Nursery, Kirkliston Nursery, Mother Goose Nursery, Arcadia +40 +712 and 204 +0 +49.4176655 8.6680194, 49.4119860 8.6544036, 49.3799788 8.6295221, 49.4105445 8.7052085, 49.4141061 8.6511331, 49.4296174 8.6819785, 49.4100046 8.6951917, 49.4179937 8.7574277, 49.4184811 8.6699057, 49.4067223 8.6865145, 49.4099343 8.7058477, 49.4198183 8.6845408 +Heidenloch, Römischer Tempel, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall +yes +49.3826654 8.6703241, 49.4005745 8.6876324, 49.4013101 8.6912413, 49.4018281 8.6889374, 49.4018800 8.6877769, 49.4018302 8.6889341, 49.4013102 8.6912409, 49.4013098 8.6912411, 49.4005742 8.6876324, 49.4005743 8.6876329, 49.4013099 8.6912408, 49.4018301 8.6889373, 49.4005745 8.6876329, 49.4018280 8.6889343, 49.4034414 8.6858831, 49.4033425 8.6920344, 49.4034077 8.6864942, 49.4053236 8.6938605, 49.4033423 8.6920342, 49.4034078 8.6864940, 49.4034077 8.6864940, 49.4034078 8.6864942, 49.4033423 8.6920344, 49.3795039 8.6788777, 49.3994731 8.6498961, 49.3832632 8.6902896, 49.3795039 8.6788791, 49.3795039 8.6788799, 49.3832635 8.6902896, 49.3795039 8.6788784, 49.3795039 8.6788807 +indian, italian, regional, chinese, thai, german, french, vegetarian, greek, spanish, mediterranean, japanese, malaysian, eritrean, international, persian, asian, moroccan, burger, vietnamese, turkish, african, cuban, korean, vegan, Flammkuchen +55.9398773 -3.2212237, 55.9563398 -3.1384528, 55.9583672 -3.1380034, 55.9586133 -3.1379125, 55.9333191 -3.2042555, 55.9401171 -3.2189968, 55.9309707 -3.1902664, 55.9470233 -3.2136778, 55.9047280 -3.2373593, 55.9040043 -3.2313244, 55.9040174 -3.2248441, 55.9044388 -3.2231298, 55.9055392 -3.2245241, 55.9070009 -3.2266338, 55.9085623 -3.2295466, 55.9095589 -3.2332257, 55.9102457 -3.2355353, 55.9310002 -3.2195807, 55.9314292 -3.2179935, 55.9337225 -3.2114222, 55.9397575 -3.2256219, 55.9414410 -3.2232711, 55.9435081 -3.2199229, 55.9454900 -3.2173512, 55.9457795 -3.2288522, 55.9460094 -3.2229027, 55.9459397 -3.2196471, 55.9467297 -3.2160853, 55.9468911 -3.2157329, 55.9495730 -3.2096804, 55.9498456 -3.2090591, 55.9470251 -3.2128783, 55.9466831 -3.2111062, 55.9457511 -3.2083497, 55.9407674 -3.2171557, 55.9414929 -3.2189566, 55.9420067 -3.2142265, 55.9429862 -3.2105745, 55.9435721 -3.2079032, 55.9452599 -3.2068906, 55.9458494 -3.2043614, 55.9463849 -3.2002560, 55.9473655 -3.1962398, 55.9476701 -3.1928242, 55.9476671 -3.2034432, 55.9476364 -3.2015298, 55.9486521 -3.1951042, 55.9486914 -3.1982744, 55.9493803 -3.1935304, 55.9819242 -3.3908551, 55.9825780 -3.3942285, 55.9895768 -3.4098735, 55.9899607 -3.4056361, 55.9846372 -3.3964826, 55.9867620 -3.3969118, 55.9890911 -3.3975569, 55.9909234 -3.3992102, 55.9871450 -3.3956272, 55.9875380 -3.3902711, 55.9873152 -3.3869128, 55.9868637 -3.3823120, 55.9903465 -3.3854493, 55.9905394 -3.3854731, 55.9876179 -3.4043614, 55.9525057 -3.2266066, 55.9522993 -3.2247346, 55.9517980 -3.2257601, 55.9509222 -3.2222408, 55.9500692 -3.2194594, 55.9500952 -3.2159210, 55.9514349 -3.2130963, 55.9549100 -3.2260503, 55.9581693 -3.2284212, 55.9601435 -3.2283783, 55.9580206 -3.2254421, 55.9563691 -3.2233567, 55.9552380 -3.2192535, 55.9577146 -3.2175590, 55.9544860 -3.2153379, 55.9558088 -3.2163084, 55.9574409 -3.2136525, 55.9577176 -3.2110983, 55.9587670 -3.2249388, 55.9592419 -3.2214458, 55.9594385 -3.2162145, 55.9591627 -3.2129430, 55.9587082 -3.2097806, 55.9582498 -3.2083579, 55.9601149 -3.2048779, 55.9605028 -3.2019585, 55.9661868 -3.2040897, 55.9648275 -3.2026212, 55.9625463 -3.1985152, 55.9623519 -3.1999659, 55.9612708 -3.1979256, 55.9590746 -3.2001052, 55.9574525 -3.1992269, 55.9576308 -3.2078827, 55.9571589 -3.2057631, 55.9570635 -3.2040021, 55.9579700 -3.1990768, 55.9589149 -3.1952296, 55.9516292 -3.2116129, 55.9505151 -3.2088197, 55.9516840 -3.2088535, 55.9565296 -3.2022609, 55.9551067 -3.2015189, 55.9026109 -3.2208010, 55.9022133 -3.2164859, 55.9021871 -3.2127583, 55.9021851 -3.2083916, 55.9067134 -3.2084524, 55.9090267 -3.2098842, 55.9104665 -3.2114969, 55.9128718 -3.2136198, 55.9079326 -3.2251115, 55.9091271 -3.2224615, 55.9102950 -3.2206745, 55.9115037 -3.2193046, 55.9137133 -3.2175820, 55.9332773 -3.1804495, 55.9314124 -3.1865714, 55.9315635 -3.1867361, 55.9327292 -3.1841946, 55.9335945 -3.1857897, 55.9298810 -3.1906863, 55.9322050 -3.1928865, 55.9304941 -3.1923377, 55.9281335 -3.2095336, 55.9303294 -3.2098783, 55.9325309 -3.2101524, 55.9312888 -3.1882004, 55.9321908 -3.2093061, 55.9333100 -3.2046099, 55.9337875 -3.2001867, 55.9342178 -3.1974967, 55.9309516 -3.2025800, 55.9352614 -3.1942899, 55.9360447 -3.1944235, 55.9385819 -3.1950517, 55.9398783 -3.1952903, 55.9366483 -3.1940225, 55.9381677 -3.1922430, 55.9397207 -3.1863782, 55.9396831 -3.1901910, 55.9415623 -3.2000095, 55.9432237 -3.2023940, 55.9346560 -3.2102493, 55.9360542 -3.2094587, 55.9371071 -3.2072084, 55.9398797 -3.2045183, 55.9413443 -3.2035998, 55.9428297 -3.2037418, 55.9340812 -3.2232566, 55.9363884 -3.2200155, 55.9372212 -3.2174708, 55.9385605 -3.2146951, 55.9399009 -3.2118071, 55.9409026 -3.2095928, 55.9418569 -3.2046167, 55.9451034 -3.2054205, 55.9464821 -3.2059437, 55.9479806 -3.2093194, 55.9480111 -3.2070831, 55.9492390 -3.2069040, 55.9415413 -3.1997466, 55.9397680 -3.1895210, 55.9398950 -3.1857881, 55.9443353 -3.2022970, 55.9449518 -3.1965229, 55.9507141 -3.2047476, 55.9508345 -3.2040132, 55.9509544 -3.2033403, 55.9512832 -3.2014235, 55.9513658 -3.2009238, 55.9534513 -3.1984184, 55.9545267 -3.1976404, 55.9530617 -3.1968880, 55.9525579 -3.1966188, 55.9514556 -3.1965060, 55.9502363 -3.1950715, 55.9515098 -3.1917476, 55.9518015 -3.1918652, 55.9523041 -3.1921025, 55.9487161 -3.1921254, 55.9473980 -3.1913002, 55.9475336 -3.1896852, 55.9461587 -3.1899395, 55.9461484 -3.1857678, 55.9446725 -3.1868648, 55.9426946 -3.1843831, 55.9415201 -3.1833659, 55.9523582 -3.1952481, 55.9524140 -3.1949299, 55.9530238 -3.1937098, 55.9548982 -3.1930798, 55.9531749 -3.1905850, 55.9561036 -3.1918150, 55.9566140 -3.1887839, 55.9619191 -3.1954207, 55.9597614 -3.1911416, 55.9587469 -3.1900917, 55.9574145 -3.1883681, 55.9540301 -3.1883045, 55.9542782 -3.1877994, 55.9553364 -3.1870704, 55.9555140 -3.1882376, 55.9607383 -3.1852653, 55.9588728 -3.1841437, 55.9619623 -3.1801852, 55.9633092 -3.1784891, 55.9631120 -3.1956917, 55.9641164 -3.1934996, 55.9659262 -3.1894058, 55.9647774 -3.1864708, 55.9623731 -3.1823283, 55.9676984 -3.1873293, 55.9736920 -3.1887826, 55.9727435 -3.1878363, 55.9700983 -3.1863293, 55.9686812 -3.1841284, 55.9672532 -3.1822368, 55.9655560 -3.1802465, 55.9791442 -3.1838015, 55.9773724 -3.1798230, 55.9740475 -3.1882178, 55.9745333 -3.1848625, 55.9749728 -3.1821357, 55.9692348 -3.1839771, 55.9706590 -3.1803378, 55.9722461 -3.1760338, 55.9719668 -3.1730260, 55.9760045 -3.1700682, 55.9801664 -3.1773603, 55.9800397 -3.1776022, 55.9799062 -3.1778409, 55.9788191 -3.1802177, 55.9780301 -3.1791039, 55.9771964 -3.1743509, 55.9771466 -3.1737565, 55.9765391 -3.1705490, 55.9759268 -3.1678383, 55.9755202 -3.1648177, 55.9721151 -3.1537189, 55.9641711 -3.1775450, 55.9664640 -3.1754998, 55.9681128 -3.1740918, 55.9696714 -3.1727130, 55.9711134 -3.1726962, 55.9713906 -3.1702867, 55.9729980 -3.1685221, 55.9504910 -3.1854886, 55.9510338 -3.1816628, 55.9515984 -3.1790606, 55.9524685 -3.1756629, 55.9501355 -3.1837930, 55.9500542 -3.1787108, 55.9507088 -3.1770555, 55.9507849 -3.1747798, 55.9539076 -3.1739661, 55.9537308 -3.1871585, 55.9538854 -3.1830563, 55.9534691 -3.1798335, 55.9559116 -3.1730017, 55.9561660 -3.1727051, 55.9568104 -3.1728667, 55.9579461 -3.1831271, 55.9579339 -3.1826673, 55.9578767 -3.1789396, 55.9578185 -3.1765672, 55.9577142 -3.1730479, 55.9581423 -3.1720186, 55.9605915 -3.1714539, 55.9629055 -3.1709645, 55.9641540 -3.1706475, 55.9660986 -3.1701035, 55.9680651 -3.1686162, 55.9696734 -3.1682011, 55.9733850 -3.1663395, 55.9719455 -3.1622063, 55.9649390 -3.1745777, 55.9645748 -3.1721004, 55.9644946 -3.1699298, 55.9682171 -3.1659398, 55.9660539 -3.1637920, 55.9617629 -3.1585851, 55.9597776 -3.1556585, 55.9613297 -3.1539907, 55.9691573 -3.1661209, 55.9694518 -3.1635218, 55.9630141 -3.1573889, 55.9695434 -3.1596508, 55.9634291 -3.1466359, 55.9635847 -3.1540418, 55.9622804 -3.1561015, 55.9574085 -3.1686582, 55.9573428 -3.1680155, 55.9570980 -3.1653973, 55.9573086 -3.1630811, 55.9587596 -3.1568936, 55.9592305 -3.1555460, 55.9594930 -3.1515012, 55.9699420 -3.1593102, 55.9700232 -3.1573578, 55.9617219 -3.1524164, 55.9606175 -3.1513584, 55.9573263 -3.1468079, 55.9571410 -3.1435348, 55.9566243 -3.1391790, 55.9737969 -3.1583519, 55.9622638 -3.1521121, 55.9624755 -3.1486902, 55.9626125 -3.1455545, 55.9612620 -3.1429355, 55.9600832 -3.1420268, 55.9588210 -3.1435684, 55.9573206 -3.1406410, 55.9591989 -3.1435154, 55.9601857 -3.1399160, 55.9602178 -3.1373142, 55.9582972 -3.1380268, 55.9568904 -3.1638169, 55.9561712 -3.1598115, 55.9557947 -3.1568532, 55.9551375 -3.1512278, 55.9551965 -3.1477860, 55.9552066 -3.1457361, 55.9554578 -3.1419156, 55.9558481 -3.1395406, 55.9561914 -3.1374044, 55.9545671 -3.1400955, 55.9529070 -3.1379006, 55.9541352 -3.1478987, 55.9518317 -3.1434104, 55.9501708 -3.1403347, 55.9492291 -3.1391700, 55.9524812 -3.1884943, 55.9517665 -3.1881346, 55.9512784 -3.1879129, 55.9489276 -3.1868532, 55.9484886 -3.1866438, 55.9457222 -3.1847309, 55.9454420 -3.1844541, 55.9459249 -3.1824225, 55.9431937 -3.1796005, 55.9415447 -3.1780319, 55.9406915 -3.1765923, 55.9430769 -3.1830456, 55.9428271 -3.1828112, 55.9413427 -3.1812830, 55.9399611 -3.1824940, 55.9375604 -3.1807719, 55.9405823 -3.1806167, 55.9393125 -3.1783897, 55.9349560 -3.1933400, 55.9364318 -3.1841475, 55.9355213 -3.1900428, 55.9359617 -3.1872388, 55.9362963 -3.1842234, 55.9369103 -3.1811043, 55.9369174 -3.1773439, 55.9348651 -3.1752487, 55.9326016 -3.1729391, 55.9307156 -3.1710012, 55.9346850 -3.1788915, 55.9328299 -3.1774425, 55.9403137 -3.1729254, 55.9383803 -3.1730161, 55.9368395 -3.1706322, 55.9341108 -3.1674764, 55.9325696 -3.1651250, 55.9335259 -3.1647215, 55.9336500 -3.1610915, 55.9322565 -3.1611619, 55.9322142 -3.1627933, 55.9333600 -3.1647608, 55.9334320 -3.1603807, 55.9335825 -3.1625302, 55.9335171 -3.1665942, 55.9352278 -3.1690789, 55.9362943 -3.1703276, 55.9380056 -3.1727326, 55.9324076 -3.1774297, 55.9349862 -3.1793489, 55.9365575 -3.1804052, 55.9308016 -3.1713795, 55.9333761 -3.1740032, 55.9345443 -3.1751968, 55.9359412 -3.1766219, 55.9378596 -3.1785699, 55.9371680 -3.1785827, 55.9364376 -3.1835393, 55.9361605 -3.1852598, 55.9350575 -3.1868910, 55.9334041 -3.1850316, 55.9327512 -3.1837791, 55.9316014 -3.1856008, 55.9357290 -3.1880801, 55.9352794 -3.1908999, 55.9347514 -3.1934610, 55.9392124 -3.1781004, 55.9403904 -3.1806688, 55.9380758 -3.1813799, 55.9406842 -3.1776524, 55.9417310 -3.1818531, 55.9432691 -3.1832993, 55.9401121 -3.1759873, 55.9416881 -3.1786246, 55.9430330 -3.1796430, 55.9442893 -3.1810875, 55.9456619 -3.1831172, 55.9457698 -3.1849764, 55.9488929 -3.1870504, 55.9492763 -3.1872419, 55.9513723 -3.1882358, 55.9521151 -3.1886009, 55.9495818 -3.1399010, 55.9506764 -3.1410542, 55.9529056 -3.1458123, 55.9536640 -3.1473562, 55.9507527 -3.1366844, 55.9527612 -3.1381206, 55.9550194 -3.1407335, 55.9562689 -3.1348439, 55.9566744 -3.1386198, 55.9585592 -3.1378743, 55.9601011 -3.1372948, 55.9600487 -3.1400484, 55.9564001 -3.1391243, 55.9573867 -3.1412676, 55.9587207 -3.1437256, 55.9586697 -3.1434197, 55.9592475 -3.1440935, 55.9606921 -3.1423741, 55.9622214 -3.1450944, 55.9623357 -3.1492308, 55.9611520 -3.1537771, 55.9617355 -3.1586323, 55.9598518 -3.1573266, 55.9616167 -3.1588370, 55.9700124 -3.1556431, 55.9558380 -3.1386914, 55.9550460 -3.1447760, 55.9550213 -3.1476460, 55.9550728 -3.1523790, 55.9548118 -3.1629421, 55.9555903 -3.1566068, 55.9563198 -3.1613807, 55.9566895 -3.1639274, 55.9611674 -3.1521276, 55.9593457 -3.1509202, 55.9591348 -3.1552068, 55.9579853 -3.1583596, 55.9574531 -3.1601382, 55.9572537 -3.1679186, 55.9620617 -3.1535479, 55.9621329 -3.1564976, 55.9625914 -3.1535957, 55.9678849 -3.1582874, 55.9636025 -3.1550195, 55.9627401 -3.1578613, 55.9697011 -3.1609259, 55.9692382 -3.1643280, 55.9664000 -3.1642510, 55.9684815 -3.1664925, 55.9643722 -3.1699129, 55.9644808 -3.1717362, 55.9649261 -3.1753058, 55.9702256 -3.1606806, 55.9721901 -3.1629507, 55.9734772 -3.1676223, 55.9730686 -3.1650762, 55.9694878 -3.1680589, 55.9692232 -3.1683674, 55.9700545 -3.1702250, 55.9680366 -3.1683145, 55.9662435 -3.1698675, 55.9641358 -3.1704804, 55.9611738 -3.1711284, 55.9586476 -3.1715948, 55.9575346 -3.1733551, 55.9576423 -3.1767165, 55.9577127 -3.1801199, 55.9577689 -3.1829548, 55.9564976 -3.1718502, 55.9560238 -3.1725406, 55.9598986 -3.1836144, 55.9533445 -3.1792984, 55.9538702 -3.1838294, 55.9538082 -3.1860623, 55.9537460 -3.1864288, 55.9536090 -3.1872578, 55.9570795 -3.1725344, 55.9560575 -3.1718369, 55.9542177 -3.1734790, 55.9505239 -3.1770528, 55.9471148 -3.1782693, 55.9486335 -3.1780633, 55.9498991 -3.1788399, 55.9488002 -3.1790809, 55.9492792 -3.1822951, 55.9501804 -3.1839664, 55.9512348 -3.1865851, 55.9510428 -3.1899310, 55.9517661 -3.1736932, 55.9521941 -3.1764060, 55.9513995 -3.1796348, 55.9508278 -3.1825636, 55.9503437 -3.1858623, 55.9739384 -3.1675454, 55.9716823 -3.1695986, 55.9710945 -3.1729414, 55.9696926 -3.1723772, 55.9675371 -3.1742485, 55.9652851 -3.1761642, 55.9753350 -3.1670805, 55.9767364 -3.1725205, 55.9772973 -3.1758604, 55.9779032 -3.1792122, 55.9750843 -3.1712339, 55.9738978 -3.1727490, 55.9719290 -3.1728798, 55.9722046 -3.1746804, 55.9721384 -3.1759763, 55.9697936 -3.1815612, 55.9747119 -3.1831053, 55.9743289 -3.1855614, 55.9787681 -3.1799116, 55.9803325 -3.1776103, 55.9802536 -3.1818535, 55.9807529 -3.1767871, 55.9784516 -3.1820015, 55.9657942 -3.1807024, 55.9675800 -3.1828235, 55.9684568 -3.1840135, 55.9716943 -3.1876119, 55.9725807 -3.1879435, 55.9687365 -3.1849738, 55.9675923 -3.1871498, 55.9659016 -3.1891647, 55.9642904 -3.1922393, 55.9635860 -3.1943270, 55.9622037 -3.1793755, 55.9627392 -3.1787031, 55.9618397 -3.1798451, 55.9622890 -3.1826621, 55.9645359 -3.1863513, 55.9587684 -3.1837830, 55.9585718 -3.1839897, 55.9556859 -3.1866515, 55.9540735 -3.1877177, 55.9572218 -3.1884308, 55.9597602 -3.1915275, 55.9606648 -3.1931837, 55.9618206 -3.1955056, 55.9620775 -3.1961605, 55.9564422 -3.1886008, 55.9516360 -3.1915621, 55.9511728 -3.1894775, 55.9513768 -3.1853034, 55.9530038 -3.1904535, 55.9529734 -3.1906361, 55.9550011 -3.1944896, 55.9523721 -3.1941529, 55.9522306 -3.1949546, 55.9521243 -3.1955713, 55.9413619 -3.1834545, 55.9439756 -3.1855145, 55.9457447 -3.1858708, 55.9459185 -3.1889928, 55.9462149 -3.1911216, 55.9474608 -3.1915894, 55.9483990 -3.1921221, 55.9491051 -3.1925562, 55.9499555 -3.1941302, 55.9513921 -3.1967362, 55.9563095 -3.1988813, 55.9543603 -3.1978922, 55.9530372 -3.1971862, 55.9518480 -3.1998550, 55.9512810 -3.2003210, 55.9511317 -3.2011985, 55.9510603 -3.2016272, 55.9507178 -3.2036019, 55.9505841 -3.2043884, 55.9451215 -3.1923158, 55.9448465 -3.1948923, 55.9448398 -3.1982337, 55.9495373 -3.2067189, 55.9492326 -3.2066015, 55.9483042 -3.2035260, 55.9477777 -3.2074310, 55.9470945 -3.2058026, 55.9462523 -3.2055522, 55.9451884 -3.2051208, 55.9428068 -3.2035039, 55.9425641 -3.2034299, 55.9417455 -3.2046015, 55.9407315 -3.2096840, 55.9393435 -3.2127503, 55.9381500 -3.2153226, 55.9368830 -3.2180525, 55.9360677 -3.2206086, 55.9338713 -3.2232572, 55.9413134 -3.2033814, 55.9391987 -3.2046868, 55.9364506 -3.2080648, 55.9348230 -3.2100408, 55.9431515 -3.2018817, 55.9380639 -3.1919459, 55.9368177 -3.1935085, 55.9393298 -3.1949761, 55.9378804 -3.1946691, 55.9368007 -3.1944119, 55.9352311 -3.1940360, 55.9308908 -3.2069640, 55.9343964 -3.1957873, 55.9338607 -3.1991324, 55.9332178 -3.2042350, 55.9316658 -3.2098633, 55.9343401 -3.1937110, 55.9324314 -3.1928183, 55.9307981 -3.1906344, 55.9131617 -3.2179327, 55.9117618 -3.2186153, 55.9105601 -3.2202188, 55.9089266 -3.2227432, 55.9076164 -3.2261893, 55.9128108 -3.2134259, 55.9111623 -3.2120145, 55.9091712 -3.2098087, 55.9068224 -3.2083279, 55.9020682 -3.2084040, 55.9020822 -3.2133788, 55.9020983 -3.2181138, 55.9024927 -3.2209412, 55.9538170 -3.2010786, 55.9557714 -3.2021464, 55.9519898 -3.2056255, 55.9506446 -3.2093738, 55.9504970 -3.2090293, 55.9515635 -3.2119466, 55.9590112 -3.1954889, 55.9578837 -3.1987058, 55.9569531 -3.2042594, 55.9573600 -3.2073453, 55.9581370 -3.1998753, 55.9595344 -3.2006164, 55.9611948 -3.1982635, 55.9612444 -3.2015410, 55.9622843 -3.2005526, 55.9634933 -3.2012181, 55.9646539 -3.2129972, 55.9654477 -3.2035216, 55.9669436 -3.2050472, 55.9602477 -3.2031604, 55.9599422 -3.2050807, 55.9584545 -3.2079471, 55.9589660 -3.2114386, 55.9592891 -3.2157462, 55.9577015 -3.2172967, 55.9592592 -3.2207431, 55.9587913 -3.2241128, 55.9573790 -3.2117285, 55.9566490 -3.2146849, 55.9557623 -3.2162108, 55.9543230 -3.2154609, 55.9551079 -3.2193216, 55.9577741 -3.2253880, 55.9599993 -3.2284217, 55.9578389 -3.2295517, 55.9548640 -3.2243511, 55.9509150 -3.2138808, 55.9498016 -3.2162253, 55.9493877 -3.2175003, 55.9495686 -3.2189589, 55.9505731 -3.2230145, 55.9514713 -3.2255762, 55.9876225 -3.4053402, 55.9867144 -3.3820021, 55.9871401 -3.3873073, 55.9874589 -3.3909095, 55.9870411 -3.3960723, 55.9907091 -3.3983046, 55.9901075 -3.4037978, 55.9900975 -3.3975611, 55.9863873 -3.3966739, 55.9843886 -3.3962171, 55.9891253 -3.4109545, 55.9827390 -3.3942984, 55.9821321 -3.3899489, 55.9492297 -3.1934848, 55.9485101 -3.1950625, 55.9466052 -3.2025367, 55.9483763 -3.1903144, 55.9458867 -3.2015396, 55.9450777 -3.2041637, 55.9434137 -3.2080661, 55.9424851 -3.2120231, 55.9411818 -3.2158659, 55.9413277 -3.2188601, 55.9456681 -3.2081800, 55.9460697 -3.2125273, 55.9496579 -3.2091165, 55.9491712 -3.2102205, 55.9478015 -3.2132758, 55.9458699 -3.2215692, 55.9458558 -3.2248034, 55.9457052 -3.2281933, 55.9455773 -3.2302069, 55.9456796 -3.2170439, 55.9455214 -3.2171400, 55.9425730 -3.2214556, 55.9413678 -3.2230988, 55.9386491 -3.2239035, 55.9334398 -3.2118455, 55.9314723 -3.2172745, 55.9308274 -3.2197833, 55.9100844 -3.2345862, 55.9085928 -3.2291957, 55.9064805 -3.2256576, 55.9059136 -3.2239281, 55.9055130 -3.2235475, 55.9051874 -3.2237612, 55.9042466 -3.2225799, 55.9012188 -3.2216370, 55.9009964 -3.2259325, 55.9011654 -3.2224830, 55.9038972 -3.2233847, 55.9038681 -3.2263110, 55.9038755 -3.2309659, 55.9044653 -3.2366791, 55.9781461 -3.1735303, 55.9508673 -3.1752354, 55.9553235 -3.1920547, 55.9553332 -3.1919926, 55.9553429 -3.1919304, 55.9553525 -3.1918683, 55.9553622 -3.1918061, 55.9553719 -3.1917440, 55.9553816 -3.1916819, 55.9553913 -3.1916197, 55.9554010 -3.1915576, 55.9554107 -3.1914955, 55.9554204 -3.1914333, 55.9554301 -3.1913712, 55.9554398 -3.1913091, 55.9554495 -3.1912469, 55.9554592 -3.1911848, 55.9554688 -3.1911227, 55.9554785 -3.1910605, 55.9554882 -3.1909984, 55.9837906 -3.4014050, 55.9838562 -3.4011669, 55.9472325 -3.1901311, 55.9323871 -3.2055924, 55.9766740 -3.1797325, 55.9438324 -3.2142584, 55.9434037 -3.2147753, 55.9602002 -3.2007101, 55.9562981 -3.1986248, 55.9475607 -3.1861653, 55.9536715 -3.1868832, 55.9525909 -3.2000321, 55.9476032 -3.2085057, 55.9464631 -3.1990798, 55.9699159 -3.1695202, 55.9514733 -3.2002938, 55.9525341 -3.1942530, 55.9539398 -3.1954762, 55.9458721 -3.1870265, 55.9452545 -3.1868374, 55.9439698 -3.1852609, 55.9288032 -3.2094222, 55.9700600 -3.1864505, 55.9493416 -3.2102159, 55.9458574 -3.2195136, 55.9458637 -3.2199619, 55.9493651 -3.2098050, 55.9522213 -3.1920622, 55.9345077 -3.1677307, 55.9525355 -3.2025587, 55.9897500 -3.4060327, 55.9507195 -3.1921655, 55.9532131 -3.1997985, 55.9541367 -3.1918691, 55.9547528 -3.1939230, 55.9387978 -3.1791123, 55.9606525 -3.2004675, 55.9708849 -3.1791326 +53.5648493 9.9571466, 53.5757390 9.9623022, 53.4478281 9.9731688, 53.4241410 9.9800344, 53.5868035 9.8487128, 53.5574782 10.0164580, 53.7036757 10.1066618, 53.5946206 9.9441011, 53.5504041 9.9292219, 53.5988521 9.8601452, 53.5979982 9.8618241, 53.5362195 10.1373498, 53.5800425 9.7628059, 53.5754846 10.0235455, 53.5842259 10.0410976, 53.5795706 10.0222479, 53.4866287 10.1801253, 53.5557491 10.0103773, 53.4943874 9.9279743, 53.5728805 9.9843530, 53.5715017 9.9967626, 53.5045816 10.0148080, 53.5974378 9.8816993, 53.5701392 9.9786185, 53.5743453 9.9482315, 53.5640048 9.9461511, 53.5630404 10.0228408, 53.5809725 10.0545826, 53.5660778 10.0565622, 53.5816612 9.9780119, 53.5830376 10.0339576, 53.6197154 9.9463900, 53.5729809 9.9756610, 53.5813460 9.9698313, 53.6668169 9.9946587, 53.5840150 10.0219556, 53.5800530 9.9473048, 53.5869083 10.0264249, 53.5747332 10.0142651, 53.5542870 10.0496687, 53.5602091 10.0370058, 53.6096597 10.0103872, 53.5500773 9.9973724, 53.5809484 10.0252152, 53.5895058 9.9324827, 53.5677115 10.0625756, 53.5174482 10.1690785, 53.5561014 10.0556424, 53.5561412 10.0544692, 53.6247840 10.0916228, 53.5686976 9.9558204, 53.5628077 9.9674043, 53.5669868 9.9580363, 53.6311799 9.9511649, 53.6194767 10.0322772, 53.6015500 9.9549870, 53.5542251 10.0889923, 53.5674850 10.0439091, 53.6447936 9.9164983, 53.5773229 10.0428155, 53.5807381 10.0484485, 53.5542168 9.9666700, 53.5738581 10.0399958, 53.5811380 9.7541561, 53.6060933 9.8932685, 53.6183964 10.0276208, 53.6059322 10.1685769, 53.6024754 10.1547768, 53.6753711 10.0238860, 53.5860440 10.0226601, 53.5766857 9.8236618, 53.5585280 10.0447842, 53.5629417 9.7805941, 53.6198695 10.0901172, 53.5724608 9.8687564, 53.5546506 10.0208023, 53.6097557 10.1183252, 53.5482112 10.0569090, 53.5684023 9.9566271, 53.5687880 9.9564530, 53.6178838 9.8953858, 53.6149308 9.8993340, 53.6411028 9.9458858, 53.6379418 9.9454221, 53.6013692 9.9887406, 53.5915688 10.0407190, 53.4435640 9.9711938, 53.6029378 9.9557507, 53.5617430 9.8231546, 53.5634075 9.8262423, 53.5790256 9.7977862, 53.5546820 9.9124716, 53.5469455 10.0851528, 53.6147748 10.0092354, 53.6077853 9.9771788, 53.6151120 10.1166782, 53.6334667 10.1298099, 53.5529468 9.9545297, 53.5539969 9.9545913, 53.5706178 10.0891020, 53.4531063 9.9849358, 53.6174556 10.1473906, 53.6186361 10.1439762, 53.6066728 10.1220546, 53.6346461 9.9490774, 53.6074830 9.9098088, 53.4520565 9.9735991, 53.5721093 10.0466748, 53.6338702 10.0194194, 53.6433447 10.0140776, 53.5806909 9.8133015, 53.5789501 9.8098096, 53.5819058 9.8158496, 53.5829902 9.8151657, 53.5143464 9.9921687, 53.5610058 10.0321295, 53.5614777 10.0607155, 53.5548337 10.0664021, 53.5532507 9.9802911, 53.5564240 9.9479050, 53.5751775 9.8472851, 53.5609837 9.9254949, 53.5630682 10.0219707, 53.6152223 10.0634072, 53.5472618 9.9825835, 53.6060866 10.0228818, 53.5683814 10.1172974, 53.5470857 10.1061830, 53.5466156 10.0986719, 53.5565249 10.0785219, 53.4658779 9.9864891, 53.4704085 9.8593881, 53.5475072 10.0269339, 53.5759587 9.9465147, 53.5552542 9.9455711, 53.6399093 10.1194892, 53.6393687 10.1183574, 53.5616187 9.9132034, 53.5915075 9.9335137, 53.5284044 10.1468008, 53.5591532 10.1045831, 53.4659592 9.9576958, 53.5608856 9.8334521, 53.5686912 9.9000462, 53.5697077 9.9809689, 53.5540337 9.9304947, 53.5711708 9.9458290, 53.5424234 10.1107211, 53.4863882 10.2147871, 53.6184477 9.9493506, 53.5722752 9.9504800, 53.5671706 9.9561016, 53.5671972 9.9562668, 53.5550517 10.0181309, 53.5719823 9.9465598, 53.4939873 10.1230402, 53.5790460 9.9450032, 53.5337129 9.8657440, 53.5468919 10.0904914, 53.5420778 10.0990092, 53.5764637 10.0467208, 53.5938591 9.9999513, 53.6007186 9.9635127, 53.5952455 10.1496092, 53.4689190 9.9855114, 53.4961615 10.0036740, 53.5803679 9.9335661, 53.5817318 9.9330043, 53.5154238 9.9855314, 53.5124068 10.1604720, 53.5263607 10.1457239, 53.5420247 10.1278528, 53.5326461 10.1452836, 53.4999659 10.0160421, 53.5986069 10.0563390, 53.4882292 10.1532531, 53.6131153 10.0491230, 53.4390397 9.9623219, 53.4848037 10.1603460, 53.4712869 9.8158703, 53.5442103 10.0212283, 53.5820798 9.9495554, 53.5108594 10.2105557, 53.5503430 9.9335330, 53.4889537 10.1584727, 53.4290609 10.2700716, 53.5601301 10.1063032, 53.4489249 10.2283906, 53.4647614 9.9879610, 53.4739035 10.2385213, 53.5830082 9.9547261, 53.5814188 9.9510853, 53.5821632 9.9479091, 53.4442351 10.1735106, 53.5727271 9.9575311, 53.5718352 9.9534917, 53.5722652 9.9554872, 53.5694622 9.9005496, 53.5754593 9.9511070, 53.5240341 9.7790678, 53.5249059 9.7792650, 53.4395592 9.9920196, 53.4556133 9.9830560, 53.5589010 9.9022794, 53.4959150 9.9943778, 53.5665853 9.8746497, 53.5574363 9.9487362, 53.5689324 10.0439162, 53.5829783 9.9703584, 53.5619334 9.9542404, 53.6052275 10.1203539, 53.4808377 10.2198387, 53.6724564 9.9968610, 53.6528255 10.0087003, 53.5509871 10.1014724, 53.6200735 10.0820561, 53.5510325 9.9245995, 53.6204408 9.9502524, 53.6169406 9.9503498, 53.6177036 9.9488506, 53.5988680 9.9965082, 53.6108955 10.0635592, 53.5823045 9.9393060, 53.5817877 9.9439314, 53.4862207 10.1526023, 53.5442757 10.0290400, 53.5437247 10.0295578, 53.6041569 10.0393731, 53.6171783 9.9990535, 53.6018539 9.8730458, 53.5924355 9.8498164, 53.5903377 9.8533148, 53.5872321 10.0826981, 53.5821095 10.0580397, 53.5740092 9.8570303, 53.5725169 9.8561748, 53.4906161 10.1808277, 53.5344116 10.0449839, 53.5459965 10.0535184, 53.5736196 9.9661922, 53.6085387 10.1553237, 53.6004999 10.1569674, 53.5844323 9.8552679, 53.5887470 9.9518300, 53.5968617 10.1518271, 53.6971569 10.1346200, 53.5674942 9.9466439, 53.5666345 9.9486063, 53.5672204 10.1394125, 53.5724165 9.8015472, 53.6719835 10.1275486, 53.5653901 9.9861784, 53.6419963 10.0386792, 53.5554105 10.0946402, 53.5761835 9.9467663, 53.5779111 9.9503040, 53.5775822 9.9506948, 53.5768665 9.9630942, 53.6639188 10.1482954, 53.5563998 9.9085964, 53.5722647 9.9554930, 53.5718430 9.9534719, 53.5687950 9.9839197, 53.5722902 9.9868962, 53.5971723 9.8848788, 53.5653957 9.9797513, 53.5999365 9.8847723, 53.5697967 9.9769465, 53.5672010 9.9744872, 53.5667297 9.9752260, 53.4816691 10.1676819, 53.5689654 9.9912234, 53.5637332 9.9912534, 53.5893228 10.0398723, 53.5864236 10.0632236, 53.6523164 10.0043861, 53.5774660 10.0452921, 53.5750442 9.9724739, 53.5761693 9.9822188, 53.6551651 10.1597482, 53.6023540 9.8759347, 53.6038357 10.0790019, 53.6636578 10.1099496, 53.6505529 10.0728615, 53.6374569 10.0983026, 53.6747140 10.1218506, 53.6713121 10.1316749, 53.6716075 10.1335260, 53.5071373 9.9901540, 53.5586295 10.0107194, 53.6428117 10.0766030, 53.5558813 10.0104520, 53.5579063 10.0135290, 53.6878350 10.1063010, 53.6397460 10.0862961, 53.6374902 10.0783047, 53.6549573 10.0988986, 53.5517731 9.9788838, 53.5712546 9.9935904, 53.6404903 10.1552233, 53.6342757 10.1472157, 53.6293389 10.1414836, 53.6169824 10.1232846, 53.6007919 10.1080690, 53.4742875 9.8298557, 53.6427071 10.0990075, 53.5757089 9.8861751, 53.6447608 10.1052108, 53.6062004 10.0450520, 53.5668085 9.9485600, 53.5991663 10.0357429, 53.5949991 10.0910251, 53.6545407 10.0890603, 53.6606656 10.0824612, 53.5826900 10.0959048, 53.6097560 10.1183922, 53.6000094 10.1835267, 53.5999852 10.1781996, 53.6016724 10.1773433, 53.5816515 10.0546417, 53.5675609 9.9654223, 53.5712576 10.1208121, 53.4851496 10.0129507, 53.5582509 9.9821634, 53.4851424 10.0131772, 53.4863448 10.0162228, 53.6542093 10.1087681, 53.5708128 10.0841822, 53.5711829 10.0839887, 53.5658903 10.0994100, 53.6016299 10.0432031, 53.6031843 10.0456141, 53.6490428 10.0639378, 53.6204169 10.0937352, 53.4886827 10.1667177, 53.5773847 10.0252286, 53.5818446 10.1434064, 53.5939907 10.0561464, 53.5598002 9.9734131, 53.5944920 10.0926202, 53.5988397 10.0940359, 53.5776185 10.1269729, 53.6106441 10.1746063, 53.5819613 9.9705097, 53.5269841 10.1534505, 53.5719989 10.0241320, 53.5666255 9.9588524, 53.5878037 10.0139591, 53.5858867 10.0276045, 53.6104664 10.0221556, 53.6417586 10.0849258, 53.6520169 10.0747593, 53.6308886 10.0488668, 53.6340815 10.0560375, 53.5917439 10.0074020, 53.5910360 10.0205432, 53.5513511 9.9567965, 53.6062490 10.1676008, 53.5935495 10.0051509, 53.6101324 10.1459396, 53.5998669 10.0815492, 53.6162839 9.9861605, 53.6264688 10.1131146, 53.6308649 10.1086300, 53.6074655 10.1116363, 53.5935823 9.9916927, 53.6248126 10.0301074, 53.6340375 10.0692436, 53.6546904 10.1133808, 53.6093914 10.0738097, 53.6170146 10.1533799, 53.5686640 9.9462489, 53.5612623 9.8235766, 53.6288857 10.1671304, 53.5976525 10.0612883, 53.6429257 10.0766828, 53.5767096 9.8236686, 53.5545328 10.0276303, 53.5897357 9.7639327, 53.5896020 9.7645001, 53.5895979 9.7642243, 53.5676357 9.8261974, 53.5812747 10.0967914, 53.6522339 10.1645460, 53.6507475 10.1610407, 53.6531724 10.1719943, 53.6571083 10.1848261, 53.5799834 9.9315020, 53.5677109 10.0626111, 53.5319093 10.1077197, 53.6443028 10.0163814, 53.6217934 10.1268314, 53.6150849 10.0728462, 53.5133432 9.9898254, 53.5649315 10.0555591, 53.5980608 9.9602518, 53.6659851 10.0928091, 53.6450124 9.9167772, 53.5593187 9.8529953, 53.5589116 9.9448924, 53.4604791 9.8888932, 53.4756100 9.8855971, 53.5144426 9.9922739, 53.6560283 10.0207226, 53.6523957 10.0042471, 53.5908722 10.0519389, 53.6590836 10.0863318, 53.6588233 10.0842697, 53.6411577 10.0234225, 53.5802907 9.8177796, 53.6137759 10.0560152, 53.6850900 10.1449458, 53.4802492 9.8906421, 53.5937045 10.0792588, 53.6587278 10.1280028, 53.6079885 10.0495860, 53.5690490 9.8920281, 53.4674499 9.9649093, 53.4574751 9.9530602, 53.5586301 9.9136384, 53.5579211 10.0330903, 53.6057361 10.0381315, 53.5883147 10.0234673, 53.6162980 10.1064242, 53.4662531 9.9638920, 53.4514159 9.9436095, 53.6233125 9.9154534, 53.6281027 10.1250385, 53.5585274 9.9064721, 53.4553266 9.9723017, 53.6409066 10.0815605, 53.6187996 10.0098203, 53.5680534 10.0329630, 53.6707536 10.1493769, 53.5984064 9.9835106, 53.5592429 9.9552147, 53.5470437 9.9386861, 53.6032843 9.9553857, 53.4723036 9.8815436, 53.4773851 9.8658396, 53.5893018 9.9843554, 53.5935110 9.9823309, 53.5933429 9.9824896, 53.5821565 9.9683390, 53.5779184 9.9575592, 53.6380167 9.9227158, 53.5585331 9.9605569, 53.5545353 9.9578740, 53.5550210 9.9537699, 53.5949439 9.9894040, 53.6001296 9.9835665, 53.6466731 10.0391711, 53.6465998 10.0409977, 53.4760066 9.8550033, 53.5308751 10.1283097, 53.5255598 10.0180812, 53.4876472 10.2274341, 53.5784544 10.0223629, 53.4814325 10.1859448, 53.5792513 10.0277324, 53.5710254 10.0841337, 53.6504440 10.1873183, 53.5987646 10.1489055, 53.4850106 10.1658544, 53.4826920 10.1771589, 53.4544592 9.9793436, 53.4467279 9.9873252, 53.4845363 10.1966825, 53.4731500 10.2632296, 53.5847649 9.8961429, 53.4824351 10.2249182, 53.5794744 10.0636619, 53.4795650 9.8736726, 53.6802416 9.9989321, 53.5605772 9.9208250, 53.4795457 9.8623289, 53.6312415 9.9165669, 53.6316997 9.9134583, 53.6307796 9.9210107, 53.6416610 10.0374818, 53.4704298 9.8598827, 53.5891948 10.0739459, 53.6282062 10.0178674, 53.6358019 10.0122241, 53.6063582 10.0027670, 53.5078910 10.2174542, 53.5018849 10.2101558, 53.5264889 10.1487643, 53.5307973 10.1469289, 53.4321517 9.9876490, 53.4437995 9.9490204, 53.5037832 9.9912267, 53.5838395 9.9523289, 53.7055718 10.1120841, 53.7050584 10.1193380, 53.6116709 9.9719268, 53.6523507 9.9951908, 53.5499130 10.0970944, 53.6385836 10.1441495, 53.5563676 9.9236569, 53.6169827 10.0130760, 53.5824312 10.1447231, 53.4854463 10.2345545, 53.4441491 10.2198393, 53.4917493 10.1926567, 53.4919314 10.2173341, 53.4915746 10.2174752, 53.4921580 10.2170817, 53.4920947 10.2170994, 53.4921840 10.2173046, 53.4919255 10.2178061, 53.5519602 9.8998194, 53.4859030 10.2189479, 53.4832283 10.1779047, 53.4464930 10.1306644, 53.6753778 10.0235992, 53.5305983 10.1469222, 53.5078102 10.1868414, 53.4060351 10.1596277, 53.4016206 10.1674030, 53.4963415 10.0223428, 53.5998681 10.1833609, 53.4196540 10.1996815, 53.4098285 10.1910530, 53.4624797 10.1983099, 53.5727685 9.8810451, 53.6046214 9.9261190, 53.4862236 10.1520893, 53.4743132 10.0823914, 53.4806939 10.2200698, 53.6193795 9.8975937, 53.6504154 10.1872887, 53.6036375 10.1260514, 53.6388060 10.1531361, 53.4392829 9.9705714, 53.5808447 9.9432403, 53.5619095 10.1212465, 53.5327514 10.1103038, 53.4757485 10.2359557, 53.5790553 10.1051423, 53.5704502 10.1310105, 53.5724039 10.1399244, 53.4508399 9.9283897, 53.5800516 9.9406540, 53.4433431 9.9549231, 53.5316537 10.1494570, 53.6520471 10.0748078 +55.9515659 -3.1793762 +yes +yes +48.8505273 2.3858439, 48.8494965 2.3428666, 48.8500236 2.2797012, 48.8492181 2.3413228, 48.8650266 2.3105711, 48.8650092 2.3105788, 48.8440185 2.3635704, 48.8433068 2.3562446, 48.8435426 2.2928813, 48.8874535 2.3383526, 48.8543168 2.3338886, 48.8339014 2.4451712, 48.8753281 2.3200142, 48.8726676 2.2426542, 48.8645868 2.2374495, 48.8909988 2.3141293, 48.8837520 2.3845730, 48.8648255 2.3226987, 48.8534161 2.2893971, 48.8467685 2.2498518, 48.8741975 2.3697748, 48.8461888 2.3460786, 48.8562206 2.3646909, 48.8549842 2.3647206, 48.8548590 2.3649732, 48.8548113 2.3656603, 48.8548856 2.3654763, 48.8548332 2.3658969, 48.8546351 2.3638127, 48.8548713 2.3664799, 48.8554879 2.3644340, 48.8553493 2.3640907, 48.8550883 2.3644485, 48.8551698 2.3641641, 48.8556856 2.3644472, 48.8560220 2.3644996, 48.8559036 2.3643358, 48.8555066 2.3667457, 48.8549527 2.3652795, 48.8550198 2.3664293, 48.8551214 2.3667794, 48.8553095 2.3668811, 48.8556406 2.3667799, 48.8557690 2.3667700, 48.8558971 2.3668467, 48.8562354 2.3667263, 48.8562783 2.3659702, 48.8563271 2.3664082, 48.8565360 2.3650308, 48.8563985 2.3653168, 48.8563156 2.3655409, 48.8606366 2.3480234, 48.8674727 2.3294381, 48.8644344 2.3216608, 48.8642324 2.3212469, 48.8651027 2.3195628, 48.8647640 2.3195784, 48.8665184 2.3205992, 48.8658523 2.3226990, 48.8661902 2.3226784, 48.8667202 2.3210126, 48.8691399 2.3413669, 48.8546361 2.3664076, 48.8555425 2.3353926, 48.8813641 2.3738849, 48.8775023 2.4070003, 48.8754445 2.3194466, 48.8835208 2.3274294, 48.8765636 2.3181311, 48.8637028 2.3311319, 48.8633534 2.3265362, 48.8635759 2.3314977, 48.8654765 2.3211306, 48.8644685 2.3118742, 48.8670898 2.3143918, 48.8652987 2.3139595, 48.8674908 2.3136006, 48.8876533 2.3362970, 48.8488716 2.3782200, 48.8389393 2.3641414, 48.8344800 2.3365253, 48.8343320 2.3324661, 48.8206863 2.3381782, 48.8736766 2.2898597, 48.8665643 2.2388266, 48.8440190 2.3635661, 48.8425333 2.3577807, 48.8439651 2.3575775, 48.8822161 2.3112864, 48.8830250 2.3095111, 48.8821512 2.3106830, 48.8381305 2.3363290, 48.8646043 2.3182703, 48.8643210 2.3049352, 48.8644161 2.3098209, 48.8641849 2.3008761, 48.8637875 2.3235856, 48.8644663 2.3025378, 48.8439930 2.3562932, 48.8435606 2.3640026, 48.8629412 2.3261255, 48.8638801 2.3321834, 48.8343590 2.3314482, 48.8236718 2.3363883, 48.8483851 2.3959218, 48.8827099 2.3108336, 48.8652022 2.3106561, 48.8413918 2.2993591, 48.8394489 2.3300541, 48.8487690 2.3420958, 48.8492526 2.3467601, 48.8737782 2.2950354, 48.8617276 2.3329082, 48.8531662 2.3691387, 48.8636002 2.3370683, 48.8874000 2.3371053, 48.8733461 2.3668894, 48.8592670 2.3424349 +14 +0 +50 +no +55.9058039 -3.2543852, 55.9016895 -3.1650816 +velib.paris.fr, velib.paris.fr, www.Velib.fr, www.parisbiketour.net, http://en.velib.paris.fr/Stations-in-Paris/Find-a-station +68 +28 +48.8503523 2.3771322, 48.8448880 2.2932360, 48.8878186 2.3658425, 48.8433351 2.3504547, 48.8736480 2.2508289, 48.8491173 2.3580497, 48.8480441 2.4046718, 48.8480637 2.4043807, 48.8325184 2.4169483, 48.8307196 2.4193991, 48.8968098 2.3784792, 48.8971684 2.3817629 +Viernheim, Wiesloch, Schifferstadt, Walldorf, Sinsheim, Hemsbach, Speyer, Bad Schönborn, Philippsburg, Eppelheim, Leimen, Hirschhorn (Neckar), Weinheim, Eberbach, Waghäusel, Sandhausen, Östringen, Neuhofen, Neckargemünd, Edingen-Neckarhausen, Dossenheim, Hockenheim, Schriesheim, Schwetzingen, Ladenburg, Waibstadt +96 +no +329 +49.4135514 8.6842391, 49.4146501 8.6879184, 49.4168731 8.6919549, 49.4171484 8.6930088, 49.4208847 8.6912002, 49.4123719 8.7105227, 49.4121119 8.7079345, 49.4133176 8.6889779, 49.4133176 8.6889788, 49.4133176 8.6889785, 49.4133177 8.6889782, 49.4133176 8.6889782, 49.4133174 8.6889784, 49.4133177 8.6889788, 49.4208843 8.6912004, 49.4208840 8.6912006, 49.4168738 8.6919549, 49.4168732 8.6919560, 49.4208839 8.6912002, 49.4171481 8.6930091, 49.4168744 8.6919560, 49.4168739 8.6919560, 49.4208843 8.6911999, 49.4208846 8.6911997, 49.4168740 8.6919569, 49.4123720 8.7105234, 49.4115404 8.7048862, 49.4146502 8.6879184, 49.4115403 8.7048862, 49.4059416 8.6926646, 49.4059413 8.6926655, 49.4059418 8.6926647, 49.4059416 8.6926652, 49.4059414 8.6926650, 49.4196480 8.6881884, 49.4158083 8.7151936, 49.4087123 8.7054683, 49.4076130 8.7082748, 49.4076136 8.7082749, 49.4087126 8.7054655, 49.4076135 8.7082758, 49.4076129 8.7082756 +yes +48.8702443 2.3283595, 48.8633384 2.3675429, 48.8840787 2.3324082, 48.8691369 2.3682501, 48.8823390 2.3402606, 48.8355757 2.4487703, 48.8674891 2.3754429, 48.8522803 2.3779953, 48.8191551 2.3383937, 48.8308115 2.3001985, 48.8743779 2.3850894, 48.8839948 2.3588579, 48.8558275 2.3755799, 48.8431185 2.3716816, 48.8706517 2.3426340, 48.8705772 2.3552836, 48.8693146 2.3347338, 48.8685956 2.3322485, 48.8824587 2.3401820, 48.8553861 2.3625173, 48.8662147 2.3645043, 48.8618044 2.3781115, 48.8767367 2.4093454, 48.8662871 2.3578056, 48.8707153 2.3567140, 48.8626783 2.2885551, 48.8741222 2.3448869, 48.8448858 2.3578698, 48.8733204 2.3254505, 48.8658174 2.3029039, 48.8657369 2.3033357, 48.8708908 2.3743059, 48.8630516 2.3705475, 48.8587145 2.3573966, 48.8951815 2.3483062, 48.8421262 2.3534706, 48.8897504 2.3908138, 48.8733076 2.3256182, 48.8714072 2.3293794, 48.8719199 2.3288943, 48.8659605 2.3017221, 48.8770119 2.3010998, 48.8460948 2.3709948, 48.8520072 2.3570804, 48.8479782 2.3529858, 48.8685677 2.3920616, 48.8519252 2.2791325, 48.8735064 2.3141502, 48.8707525 2.3240257, 48.8858230 2.3749446, 48.8558868 2.4042383, 48.8371387 2.2888095, 48.8500456 2.3533390, 48.8566373 2.3809209, 48.8847666 2.3373500, 48.8887917 2.3829835, 48.8876043 2.3372648, 48.8399992 2.3240094, 48.8597779 2.3530954, 48.8697908 2.3549967, 48.8394650 2.3235600, 48.8702624 2.3461888, 48.8829861 2.3333274, 48.8392531 2.3231864, 48.8837701 2.3265034, 48.8597455 2.3531991, 48.8692693 2.3318524, 48.8597303 2.3459285, 48.8295361 2.3515265, 48.8794685 2.3296284, 48.8530200 2.3453773, 48.8828282 2.3366019, 48.8810211 2.3348222, 48.8840055 2.3266609, 48.8442922 2.3305405, 48.8275676 2.3774556, 48.8622030 2.3518225, 48.8723016 2.3429996, 48.8545409 2.2776862, 48.8785619 2.3313946, 48.8415099 2.3244398, 48.8843397 2.3320078, 48.8436363 2.3254799, 48.8254299 2.3098043, 48.8721414 2.3433983, 48.8577976 2.3569319, 48.8407733 2.3243516, 48.8713709 2.3448748, 48.8734883 2.3453635, 48.8288148 2.3446816, 48.8678179 2.3891525, 48.8601015 2.3815463, 48.8788666 2.3193694, 48.8701073 2.3787698, 48.8714333 2.3421383, 48.8436131 2.3220274, 48.8366211 2.3097495, 48.8504877 2.2966335, 48.8681380 2.3453696, 48.8907562 2.3403810, 48.8682866 2.3661153, 48.8750284 2.3815228, 48.8841589 2.3322157, 48.8937040 2.3443030, 48.8824430 2.3395146, 48.8954044 2.3511534, 48.8728991 2.3470277, 48.8445218 2.3487080, 48.8422145 2.3455341, 48.8434841 2.3451307, 48.8440394 2.3252776, 48.8350857 2.4497868, 48.8366738 2.4497928, 48.8351605 2.4502388, 48.8363526 2.4499634, 48.8834581 2.3344321, 48.8628332 2.3825028, 48.8956054 2.3330161, 48.8398650 2.3230690, 48.8552492 2.3391068, 48.8430973 2.3830716, 48.8680913 2.3978796, 48.8576869 2.3888826, 48.8394773 2.3242229, 48.8521921 2.3771906, 48.8331033 2.3705524, 48.8797258 2.3725494, 48.8751345 2.3951275, 48.8521193 2.3364208, 48.8792668 2.3856534, 48.8859368 2.3931939, 48.8413123 2.4117612, 48.8586001 2.4078519, 48.8587238 2.4076570, 48.8567853 2.4014546, 48.8530850 2.3312320, 48.8383465 2.4465372, 48.8743904 2.3720383, 48.8721600 2.3725531, 48.8583217 2.4080504, 48.8745019 2.3273404, 48.8609892 2.3675162, 48.8514912 2.3706641, 48.8495037 2.3387231, 48.8955599 2.3923240, 48.8577970 2.3462635, 48.8572971 2.3480529, 48.8635375 2.3361930, 48.8661384 2.3376341, 48.8683542 2.3354770, 48.8711116 2.3378434, 48.8720314 2.3317296, 48.8677538 2.3619057, 48.8422077 2.3499509, 48.8363386 2.4489730, 48.8472258 2.3389643, 48.8462040 2.3345315, 48.8709159 2.3488390, 48.8690687 2.3568989, 48.8690852 2.3564359, 48.8715401 2.3682094, 48.8898926 2.3938223, 48.8922574 2.3897916, 48.8673922 2.3186960, 48.8687177 2.3137578, 48.8695579 2.3118828, 48.8708055 2.3203157, 48.8753730 2.3307359, 48.8810211 2.3277299, 48.8784480 2.3305067, 48.8788350 2.3363565, 48.8781775 2.3370777, 48.8706464 2.4029603, 48.8700069 2.3917127, 48.8680271 2.3944885, 48.8644181 2.3973216, 48.8886235 2.3400506, 48.8831627 2.3434328, 48.8843322 2.3316646, 48.8834404 2.3424447, 48.8830878 2.3430268, 48.8887487 2.3533400, 48.8280160 2.2937656, 48.8777838 2.2607285, 48.8579466 2.2700178, 48.8774175 2.2965116, 48.8821604 2.3189011, 48.8824285 2.3187962, 48.8677573 2.3108853, 48.8866946 2.3663960, 48.8355982 2.4502568, 48.8914330 2.3583288, 48.8914295 2.2985567 +11 +10 +yes +http://www.musee-en-herbe.com/, www.labellevilloise.com/, http://www.mep-fr.org, http://equipement.paris.fr/conservatoire-municipal-claude-debussy-site-la-jonquiere-3976, http://www.paris.fr/politiques/conservation-restauration/atelier-de-restauration-et-de-conservation-des-photographies-de-la-ville-de-paris/p7672#, http://crl10.net/, http://www.fgo-barbara.fr, http://lagenerale.fr/, http://crl10.net/, http://www.labellevilloise.com, http://shakirail.blogspot.fr, http://equipement.paris.fr/conservatoire-municipal-w-a-mozart-1595, http://www.cwb.fr/, http://www.gaite-lyrique.net/, http://www.crl10.net/, http://www.zenith-paris.com/, http://www.villette.com/fr/villette-pratique/acces/la-grande-halle.htm, http://www.coursflorent.fr, equipement.paris.fr/Conservatoire Municipal Nadia et Lili Boulanger, http://www.le-bal.fr/, http://equipement.paris.fr/centre-d-animation-les-abbesses-1154, www.si.se/Paris/, http://www.104.fr/ +yes +7 +0 +Five Ways, Greyfriars Bobby Statue, Hutton's Section, Camera Obscura, Sustrans milepost, Gilmerton Cove, The Buckstane, Mons Meg, One O'Clock Gun, Grotto, Grotto, Heart of Midlothian, The Bow Well, Edinburgh Farmers' Market, Ice House, The Quarry, Clermiston Tower, Meerkat Plaza, Lemur Walk-Through, Chilean Flamingo, Painted Hunting Dog, Penguin Enclosure, Grevy's Zebra, Porcupine, Greater One Horned Rhinoceros, Stanley Crane, Darwin's Rhea, Visayan Warty Pig, Asiatic Lion, Siberian Musk Deer, Great Grey Owl, Squirrel/Capuchin Monkeys, Nicobar Pigeon, Koala Bear, Eurasian Tundra Reindeer, White-faced Saki Monkey, Magic Forest, Pygmy Marmoset, Rock Hyrax, Malayan Sun Bears, Southern Cassowary, Common Raven, Scottish wildcat, Red Titi Monkey, Asiatic golden cat, Swamp Wallaby, Pigmy Hippo, European Souslik, Gelada Baboon, Red River Hog, Lesser Bush Baby, Diana Monkey, Pallas Cat, Amur Leopard, Sumatran Tiger, Pallas Cat, Amur Leopard, Eastern Bongo, Asiatic short-clawed Otter, Red-bellied Lemur, Evolution Garden, Ring-tailed Lemur, Giant Pandas, Malayan Tapir, Warthog, Drill, Thick Billed Parrots, Penguin Enclosure, Bush dog, Pelicans, Sea Eagle, Crested Pigeon, Victoria Crowned Pigeon, Jaguar, Nyala, Lesser Kudu, Kuhl's hog deer, Cross, John Muir Grove, Scottish Heath Garden, Chinese Hillside, Rock Garden, Queen Mothers Memorial Garden, Herbaceous Border and Beech Hedge, Fossil Garden, Cryptogamic Garden, Native Woodland, Demonstration Garden, Alpine Garden, Mary King's Close, Greyfriars Bobby's Grave, Memorial to Archibald Constable, Tombstone of David Allan, Vault of Dr Robert Candlish & James Candlish, Vault of Robert Burn, Vault of William Blackwood, Georgian House, The Scotch Whisky Experience, Museum of Childhood, The Edinburgh Dungeon, Mad Max Adventures, Camera Obscura, Edinburgh Castle, Fettes College, The folly, Nelson Monument, Our Dynamic Earth, Surgeons Hall Museum, The Edinburgh Tapestry Company, Gracemount Walled Garden, Scott Monument, Royal Scots Museum, New Barracks, National War Museum, Hospital, Cartsheds, Governors House, Argyle Tower, Military Prison, Gatehouse, Holyrood Abbey, St. Giles' Cathedral, Gladstone's Land, Craigmillar Castle, Saint Cuthbert, Ross Fountain, Maned wolf, Animal Antics, White-lipped deer, Vicuna, Heck cattle, Fruitmarket Gallery, Tollbooth Tavern, St Andrew's and St George's West, Dugald Stewart Monument, Kinloch Anderson, Trinity House, HMY Britannia, Ingleby Gallery, Relief Map, Edinburgh Labyrinth, Old Calton Cemetery, Old Calton Cemetery, St Mary's Episcopal Cathedral, Malleny Garden, Mausoleum of David Hume, Political Martyrs' Monument, St Anthony's Chapel, The Scottish Parliament, Saint Stephen's Church, Greyfriars Church, John Knox House, Livingston Model Aircraft Club, Military Prison, Royal Scots Museum, Jupiter Artland, Scottish Parliament, Palace of Holyroodhouse, Old College, Lauriston Castle, Holyrood Abbey, Church of St John, National War Memorial, Queen Ann Building, Royal Palace +48.8660881 2.3521709, 48.8302437 2.3285915, 48.8534094 2.3325318, 48.8293046 2.3221365, 48.8702035 2.3720916, 48.8860129 2.3833794, 48.8820706 2.3158281, 48.8377043 2.4014006, 48.8299585 2.3776878, 48.8283835 2.3440786, 48.8567374 2.3795945, 48.8386023 2.3899562, 48.8744523 2.3285538, 48.8742351 2.3197867, 48.8707106 2.3061618, 48.8379964 2.3514064, 48.8377365 2.3515865, 48.8478014 2.2647346, 48.8489245 2.2975729, 48.8740981 2.3550319, 48.8481890 2.2839192, 48.8715470 2.3362608, 48.8242182 2.3584769, 48.8933957 2.3335323, 48.8414253 2.2875706, 48.8664526 2.3338680, 48.8332559 2.3312348, 48.8940080 2.3420130, 48.8776783 2.3950607, 48.8868122 2.3256852, 48.8834537 2.3328703, 48.8938940 2.3337117, 48.8496859 2.3992762, 48.8822580 2.3711604, 48.8690700 2.3538506, 48.8688039 2.4016891, 48.8888155 2.3602548, 48.8913760 2.3771659, 48.8916332 2.3759113, 48.8385663 2.3603627, 48.8782200 2.2952250, 48.8820372 2.3716846, 48.8817780 2.3151710, 48.8291811 2.3237504, 48.8509533 2.3424752, 48.8751193 2.3884843, 48.8516085 2.3760189, 48.8412949 2.3226720, 48.8323589 2.3156645, 48.8838545 2.2978583 +12 +3 +Barnett Hill Conference Centre, Launde Abbey, Conference Center, Mount Victoria Eltham Park Recreation and Conference Centre, Ekudeni, The Moon & Sixpence, Hakunamatata, Intundla, iZapa Lodge, Alrewas Hayes, The Venue, Brightlife, High Trenhouse, Whispering Oaks Terrace, Point Conference Centre, Brackenhurst, Conference Centre, MRC Wales, VVCH Conference Hall, London Art House, Salons Mauduit, Shokran, The Emerald Suite, Viparis, Suractivo, Vulindlela The village of Coega, El Rancho Centro Eventos, The Metropolitan Conference Centre, The Palace, Renaissance Convention Hall, ศูนย์ศึกษาการพัฒนาห้วยฮ่องไคร้ฯ, GTRI Conference Center, Espace Reuilly, Auditorium du Musée Fabre, 北京实创西山科技培训中心, Le Chorus, Mahsuri International Exhibition Centre, Talaris Conference Center, Office Factory GmbH, イイノホール, 松江オープンソースラボ, Pfalzakademie, Mission Bay Conference Center at UCSF, Les Foréziales, Illinois Conference Center, The Venue, Glow, Business Center, ไทยพาณิชย์ ศูนย์ฝึกอบรมเชียงใหม่, Salem Conference Centre, Cleaves Conference Centre, Salle Hubert Curien, Amphithéâtre 6, Amphithéâtre 1, Amphithéâtre 2, Amphithéâtre 3, Amphithéâtre 4, Amphithéâtre 5, El Laurel, Arena Sauípe, Sauipe Centro de Convenções, Camp Au Sable, Camp CoBeAc, Camp Wa Wa Sum, Kerschensteiner Kolleg, Ecostudio Fellini, Centro de Convenções e Eventos do Parque Tecnológico, Centre de Conférence, Kurfürstliches Schloss, ZEISS Forum, Das Wormser, The Clerkenwell Centre, Julius Nyerere International Convention Centre, 幕張メッセ 国際会議場, Europa Convention Centre, Education & Research Center, 求真廳, Eurogress, ExCeL, Kongresszentrum (Westfalenhallen), San Jose McEnery Convention Center, South Hall, Nell-Breuning Haus, Swissôtel Rheinpark Congress Centrum, John McIntyre Conference Centre, Santa Clara Convention Center, MAGMA Art & Congress Center, William A. Egan Civic & Contention Center, Trent Vineyard Conference Centre, Monona Terrace Convention Center, Gerry Weber Event & Convention Center, Villa Sell, Tucson Convention Center, Parc des Expositions, Buena Vista (estate), Wiston House, Château Royal, Espace Chevreul, Espace CAP 15, The Derby Conference Centre, Cobb Galleria Centre, Bingemans Conference Centre, The Glen Ivy Center, Mackillop House and Conference Centre, Centro de Convenciones ATLAPA, Schloss Marbach, New Bingley Hall, Maxima Forum, Las Cruces Convention Center, ABG Tagungszentrum, Lufthansa Training & Conference Center, Espace Tête d'Or, Hermes, Calgary TELUS Convention Centre, قصر المؤتمرات, Arlington Convention Center, Jolie Ville International Congress Center, ศูนย์ประชุมนานาชาติฉลองสิริราชสมบัติครบ ๖๐ ปี, The Ammerdown Centre, Centre de Congrès Pierre Baudis, Centre de congrès Le Manège, Le Manège, Margate Conference Centre, Saint John's Mill, Akademie Berlin-Schmöckwitz, Salle de Prince, ICC London, Burwell House, Tagungszentrum Haus Hessenkopf, Edmonton Exposition & Conference Centre, McLean Estate, Palais des Congrès de Marrakech, Blackbrook House, Schloss Marbach, Villa Vera, Centro de Convenções de Curitiba, Ruidoso Convention Center, Gutsbetrieb Rehhütte, Qatar National Convention Center, Agora, Kloster Banz, Vaughan Estate, Agropolis International, The Abbey, Singapore Expo, Changi Exhibition Centre, Bahrain International Exhibition Centre, Genting International Convention Centre, Evangelische Akademie Loccum, Wartenberg OVAL, New Dock Hall, Geelong Conference Centre, International Convention and Exhibition Center, Convention Centre, 金光會展 Cotai Expo, National Metalforming Centre, ศูนย์ฝึกอบรมงานอภิบาล บ้านผู้หว่าน, Croydon Conference Centre, High Country Conference Center, Nicholas J. Pirro Convention Center, Caniçal Conference Room, Caniçal Conference Room, Persada International Convention Center, UIC Forum, Auditório Elis Regina, Palácio das Convenções, Team Talk Conference Venue, Centro de Convenções Ribeirão Preto, Expo Vale Sul, UCLA Lake Arrowhead Conference Center, Kalyana Mantapa, Saratoga Springs City Center, Campus "Schloss Gracht" der European School of Management and Technology (ESMT), TD Convention Center, Centro de Convenções Pereira Alvim, Cherwell Centre, Haus Haard, Koʻolau Ballrooms & Conference Center, McCracken Park, Tradex, Folha Verde, Forum Gesundheit, Strelley Hall, River Lodge Conference Center, Shared Visions Retreat Center, The Chateau, Complexo Expoville, BayKomm, The Devonshire, Wallace Space, Kiah Ridge Christian Conference Centre, Domaine des Fontaines, Kursaal Bad Cannstatt, Elbehof, Regent Centre, Centre de Congrès Prouvé, Pivot Point Conference Center, Green Lake Conference Center, Westwood Conference Center, RioCentro, Talaris Conference Center, Centre International de Conférences Mohamed VI, מרכז הירידים, Auditório Brasílio Itiberê, Gala Convenciones, Palais des Congrès - CICP, Greenville Convention Center, Victoria Conference Centre, Haus der bayerischen Landwirtschaft, Kosmos, Le Chorus, Skelton Conference Center, Centre de Conférence +61.850904020313429 +48.8740289 2.3897101, 48.8646989 2.3689158, 48.8855550 2.3755636, 48.8447404 2.3092568, 48.8468100 2.3418230, 48.8621754 2.4002743, 48.8429214 2.3381927, 48.8754781 2.3565478, 48.8385482 2.2902657, 48.8483679 2.3757997, 48.8515538 2.2912722, 48.8678917 2.3455591, 48.8818036 2.3371365, 48.8816458 2.3735588, 48.8770752 2.3509789, 48.8395423 2.2779531, 48.8462660 2.3758720, 48.8459472 2.3821633, 48.8522672 2.3651848, 48.8781276 2.3695316, 48.8796085 2.3717349, 48.8617906 2.3644522, 48.8637388 2.3717218, 48.8524891 2.3411126, 48.8829303 2.3343538 +McDonald's, KFC, Quick, Joe Allen, American Bistrot, Club des 5, Burger King, IT Rocks, Danny Hills, Le Déli Parisien, McDonald´s, Le Petit Marcel, HD Diner, Royal food, Pépé Santana, L'Escale des Gobelins, Imime, Blend burger, Latin Food, Bioburger, Hamler's, VG, Pdg Rive Gauche, New-York à Paris, Petit Gaston, Burgers Bar Manin, Burgerim, Tata Burger, Hank, Blend, Mamie Burger, Maison Burger, East Side Burgers, Breakfast in America, bioburger +no +St. Laurentius, St. Michael, St. Vitus, St. Bonifatius, St. Johannes, Jesuitenkirche, Sankt Anna, St. Teresa Kirche, St. Marien, St. Laurentius, Sankt Peter +35 +no +1 +yes +17 and 48.8348588 2.3273891, 48.8452357 2.3490360, 48.8418339 2.3497835, 48.8752025 2.3376055, 48.8446176 2.3491298, 48.8529435 2.3456985, 48.8528864 2.3462159, 48.8531271 2.3452514, 48.8530349 2.3453279, 48.8531460 2.3451752, 48.8528383 2.3461107, 48.8528174 2.3454656, 48.8526936 2.3454400, 48.8526255 2.3453560, 48.8770340 2.3271360, 48.8765381 2.3785538, 48.8785190 2.2893290 +95 +yes +55.9676146 -3.1851220, 55.9389438 -3.1762512, 55.9342812 -3.1910903, 55.9468366 -3.1927193, 55.9242044 -3.2136831, 55.9267237 -3.2541012, 55.9399653 -3.2243647, 55.9530161 -3.2227017, 55.9543705 -3.2231752, 55.9545272 -3.4038139, 55.9848485 -3.4000740, 55.9895563 -3.3951093, 55.9138101 -3.1625880, 55.9139003 -3.1561271, 55.9311802 -3.1650916, 55.9494846 -3.2921322, 55.9535325 -3.1763565, 55.9591815 -3.2287132, 55.9369373 -3.2288584, 55.9293858 -3.1242296, 55.9546952 -3.1369685, 55.9449273 -3.0904981, 55.9265280 -3.1510008, 55.9684639 -3.1977758, 55.9668042 -3.1974105, 55.9263848 -3.3788125, 55.9776182 -3.2998389, 55.9696978 -3.1493775, 55.9540571 -3.1860764, 55.9719475 -3.1703032, 55.9456846 -3.1922146, 55.9631536 -3.1680074, 55.9534939 -3.1859938, 55.9242973 -3.3802986, 55.9535098 -3.1860262 +9 +48.8210997 2.3589704, 48.8791473 2.3474694, 48.8645853 2.3050980, 48.8367928 2.3780749, 48.8188321 2.4576115, 48.8323659 2.2806907, 48.8608636 2.4139162, 48.8857931 2.2880907, 48.8964346 2.3097184, 48.8899579 2.3961548, 48.8235298 2.3100220, 48.8543067 2.2543634, 48.8219825 2.3796095, 48.8537201 2.3564387, 48.8658546 2.3540003, 48.8664342 2.2684904, 48.8260164 2.2988457, 48.8976500 2.3315770, 48.8374241 2.3354339 +Forstquelle, Turnerbrunnen, Drei Eichen Brunnen, Schneeberg, Kalkbrunnen, Römerbrunnen, Schellwiesenbrunnen, Brunnen, Lindenbrunnen, Kolonialbrunnen, Brunnen, Brunnen, Silberbrunnen, Kühbrunnen, Brunnen, Brunnen, Brunnen am Forsthausweg, Hurenbrunnen, Todtenbronnen, Märzenbrunnen, Zollstockbrunnen, Vögele Brunnen, Michaelsbrunnen, Finkenbach-Quelle, Buchbrunnen, Hesselbrunnen, Friedrichsfeld 9, Lustbrunnen, Brunnen, Brunnenberg, Münchelbrunnen, Quelle beim Hasselbacherhof, Siegfriedsbrunnen Odenheim, Trinkwasserbrunnen, Brunnen, Heiligenbrunnen, Bittersbrunnen, Strangwasenbrunnen, Hellenbachbrunnen, Felsenquelle, Waldquelle, Sachswegbrunnen, Lambertus Quelle, Dorfbrunnen Schwanheim, Kerles Brünnela, Gundelsbrunnen, Dorfbrunnen Igelsbach, Igelsbach, Friedrichsfeld 3, Friedrichsfeld 4, Friedrichsfeld 5, Friedrichsfeld 6, Friedrichsfeld 8, Friedrichsfeld 7, Rehberger-Brunnen, Friedrichsfeld 1, Himmelreichbrunnen, unterer Homrichsbrunnen, oberer Homrichsbrunnen, Katzenbuckel, Matzenbrunnen, Krämersbrunnen, Benzbrunnen, Klemmertsbrunnen, Aalsbrunnen, Toten-Brunnen, Steingrundquelle, Fieberbrunnen, Leonhardsbrunnen, Raubacher Höhe, Dorfbrunnen Falken-Gesäß, Berndsbrunnen?, Dorfbrunnen Affolterbach, Tromm, Rumpels-Brunnen, Der kalte Brunnen, Hirschquelle, Günther-Fischer-Brunnen, Quellgebiet, Braun-Quelle, Wildschweinsuhle, Brunnen (Wasser fraglich), Birken-Brunnen, Queckbrunnen, Mausbach-Quelle, Bergbrunnen, Burgbrunnen, Simonsbrunnen, Erlbrunnen, Hirtenbrunnen, Unterdorfbrunnen, Hirschquelle, Krösselbachbrunnen, Römerbrunnen, Quelle Kreiswald, Schwarzbach, Quellgrotte, Stockbrunnen, Schmidt'sche Quelle, Felsenmeerquelle, Moselbrunnen, Siegfriedquelle +55.9599432 -3.2183810, 55.9602435 -3.2197972, 55.9589756 -3.1545086, 55.9606004 -3.1352700, 55.9528642 -3.2264190, 55.9345768 -3.2003903, 55.9638228 -3.1780594, 55.9518244 -3.1155121, 55.9699868 -3.1737761, 55.9701973 -3.1739279, 55.9388322 -3.2261760, 55.9524435 -3.1135567, 55.9717406 -3.1741296, 55.9693966 -3.1688854, 55.9510966 -3.1085710, 55.9437881 -3.2070159, 55.9300110 -3.2100136, 55.9438531 -3.2042371, 55.9420724 -3.1830370, 55.9471624 -3.1824118, 55.9518191 -3.1796232, 55.9321048 -3.1417445, 55.9313181 -3.1303585, 55.9352154 -3.1201411, 55.9328975 -3.1293020, 55.9321318 -3.1290498, 55.9406530 -3.1200541, 55.9411807 -3.1490609, 55.9502631 -3.1026251, 55.9154139 -3.1309189, 55.9454192 -3.1860553, 55.9405307 -3.2034601, 55.9365416 -3.2274826, 55.9339873 -3.2236723, 55.9602512 -3.1936038, 55.9402144 -3.2252877, 55.9486925 -3.2000899, 55.9455169 -3.1830207, 55.9441448 -3.1847026, 55.9421481 -3.1863693, 55.9456704 -3.1811256, 55.9494705 -3.1908525, 55.9720506 -3.1705546, 55.9476459 -3.1911817, 55.9487698 -3.1941172, 55.9634913 -3.1955890, 55.9306269 -3.2393487, 55.9390955 -3.2281220, 55.9582182 -3.2036684, 55.9727731 -3.1780368, 55.9264995 -3.1847934, 55.9409940 -3.2083656, 55.9590395 -3.2250691, 55.9782443 -3.2238463, 55.9759267 -3.2278467, 55.9762144 -3.2241714, 55.9758198 -3.2323187, 55.9755242 -3.2379423, 55.9713618 -3.2381377, 55.9342034 -3.1931303, 55.9460352 -3.2404177, 55.9381173 -3.2348593, 55.9379531 -3.2328868, 55.9472990 -3.2368673, 55.9494623 -3.2105484, 55.9133249 -3.1612586, 55.9142971 -3.1556634, 55.9171791 -3.1532719, 55.9496531 -3.2051547, 55.9408827 -3.1764274, 55.9330632 -3.1771455, 55.9507312 -3.1855926, 55.9307377 -3.1718855, 55.9626750 -3.1983267, 55.9603211 -3.2068531, 55.9540545 -3.1958519, 55.9705136 -3.2090520, 55.9704118 -3.2140175, 55.9536168 -3.2152726, 55.9686272 -3.1672689, 55.9718431 -3.1725925, 55.9798298 -3.1971422, 55.9191510 -3.2123681, 55.9606718 -3.1730123, 55.9788677 -3.2108480, 55.9650977 -3.2490516, 55.9397056 -3.2127147, 55.9732423 -3.2016374, 55.9760054 -3.1829902, 55.9754079 -3.1820516, 55.9511827 -3.2055031, 55.9613846 -3.1948052, 55.9345857 -3.2096226, 55.9660731 -3.1740541, 55.9357478 -3.1903059, 55.9547210 -3.2212015, 55.9473796 -3.2162168, 55.9352870 -3.1783681, 55.9731449 -3.1689705, 55.9450514 -3.2016119, 55.9650430 -3.1970342, 55.9243327 -3.2086992, 55.9543261 -3.2217641, 55.9486145 -3.2162817, 55.9582618 -3.2523094, 55.9432361 -3.1906794, 55.9376675 -3.1916760, 55.9488571 -3.1936393, 55.9560907 -3.1878581, 55.9304008 -3.2059444, 55.9366569 -3.1786654, 55.9345092 -3.2106395, 55.9482972 -3.1955031, 55.9381406 -3.2071920, 55.9585641 -3.2034909, 55.9363884 -3.1696824, 55.9601264 -3.1937826, 55.9567662 -3.1885665, 55.9432298 -3.2014873, 55.9466336 -3.1922732, 55.9222605 -3.1522385, 55.9578836 -3.1723330, 55.9580966 -3.1722775, 55.9496587 -3.1844840, 55.9510003 -3.1870928, 55.9608626 -3.1709376, 55.9618365 -3.1669617, 55.9617695 -3.1672858, 55.9617360 -3.1670315, 55.9617015 -3.1669427, 55.9405277 -3.1801470, 55.9400777 -3.1787980, 55.9335152 -3.2105421, 55.9646922 -3.1748195, 55.9659516 -3.1739827, 55.9432327 -3.1903850, 55.9433218 -3.1904284, 55.9718215 -3.2052420, 55.9500762 -3.2064723 +49.3882490 8.6574483 +49.4311045 8.6454842 +Ibis +12 +0.65777548492132099 +130 +Plumed Horse +75 +castle, monument, tomb, yes, memorial, boundary stone, wayside shrine, monastery, archaeological site, tree, wayside cross, ruins, battlefield, stone, building, statue, ship, citywalls, palace, church, city gate +562 +55.9509120 -3.1684417, 55.9505684 -3.1636997, 55.9409571 -3.1518694, 55.9414904 -3.1501988, 55.9414101 -3.1510969, 55.9304112 -3.2001421 +24 +fuel, post office, library, bicycle rental, school, restaurant, fire station, parking, post box, police, place of worship, toilets, bank, cinema, courthouse, fountain, parking entrance, hospital, bar, cafe, nightclub, fast food, pub, pharmacy, theatre, wine bar, internet cafe, yoga studio, marketplace, bus station, motorcycle parking, telephone, vending machine, public building, swimming pool, arts centre, drinking water, bicycle parking, atm, recycling, doctors, taxi, car sharing, veterinary, bench, community centre, car rental, kindergarten, photo lab, bureau de change, videoclub, nursery, childcare, clock, waste basket, embassy, social facility, ice cream, townhall, university, ferry terminal, billboard, car wash, gallery, parking exit, college, creche, job centre, consulate, medical centre, clinic, driving school, conference centre, mode, association, auctioneer, administration, studio, shelter, shower, dentist, luggage locker, public office, dancing school, podologist, laboratory, gym, storage, youth centre, money transfer, coworking space, oil, food court, nurse, logopedia, kinesiotherapy, parking space, publisher, teahouse, social centre, orthopedic, podiatrist, psychiatrist, couture, bbq, sports club, spa, hammam, nursing home, jobcentre, healthcare, charging station, shooting stand, congress, music school, hotel, yes, physiotherapy, vehicle inspection, vehicle impound, nusery, personal service, photo booth, training, boat rental, fitness center, fablab, medical laboratory, dojo, animal welfare, piano lessons, shisha, cash machine, shisha bar, validateur, lift, photobooth, table, animal boarding, mall, exhibition center, events venue, authority, hospice, small parking, monastery, basin, convention center, retirement home, prison, waste disposal, bandstand, sports centre, zen zone +yes +chaplin.cine.allocine.fr/ +52.5015724 13.2685629, 51.4965481 7.4577849, 51.0688308 13.7167046, 48.9726998 2.5171305, 51.3966619 12.4034569, 48.1366443 11.6981849, 46.2344033 6.1191983, 48.9806259 8.3301712, 48.8322928 2.2842123, 50.9458456 6.9797172, 49.2322742 6.9573496, 52.3242704 9.8053349, 48.8292714 2.2907137, 48.8291099 2.2915902, 51.2880121 9.4957078, 48.8306608 2.2863809, 54.4963914 9.0897023, 48.3408121 10.8913607, 52.1349571 11.6706710, 51.4962294 -0.2105575, 53.5624399 9.9743285, 52.4537558 -1.7192418, 48.7051963 9.0385171, 48.4138609 10.0132263, 54.1391615 12.0731310, 50.1100075 8.7559897, 48.8311661 2.2904065, 48.8294546 2.2891932, 48.6940952 9.1881545, 51.4884447 -0.1984272, -0.0331119 -78.4526172, 52.3846820 13.1179605, 49.4684281 8.5239438, 33.4271992 36.3930966, 47.6777131 9.5091736, 48.8287686 2.2884204, 51.4526614 12.0261900, 45.7307650 4.9503203, 50.0767699 8.2443175, 49.4189613 11.1166070, 50.9599579 10.9924795, 51.2598139 6.7406748, 52.0528499 8.7568799, 51.4282939 6.9952367, 53.1472071 8.2273515, 48.9711809 2.5213419, 53.0880486 8.8143284, 50.8178367 12.8815144, -1.6693364 -78.6675059, 50.8635529 9.3470816, 50.1115181 8.6445877, 51.2836698 12.3898146, 51.9465307 7.6376545 +2.0405257198361264 +no +58 +Idara Taleem ul Quran, Edinburgh Central Mosque, IQRA Academy, Mohuiddin Jamia Masjid, Anwar-E-Madina +yes +78.543913850010583 +yes +55.9566271 -3.2720552, 55.9418294 -3.1502506, 55.9201209 -3.2500686, 55.9232770 -3.2473521, 55.9256887 -3.2299616, 55.9216082 -3.1959071, 55.9190764 -3.1843258 +155 +49.4068403 8.6904933, 49.4152724 8.7089320, 49.4152263 8.7091544, 49.4136480 8.7107879, 49.4137160 8.7131886, 49.4043662 8.6769558, 49.4042794 8.6767159, 49.4043928 8.6767032, 49.4040938 8.6777606, 49.4041378 8.6780055, 49.4041963 8.6783706, 49.4078625 8.6803507, 49.4079068 8.6803518, 49.4079150 8.6852124, 49.4079624 8.6851808, 49.4084050 8.6884254, 49.4084670 8.6883986, 49.4111209 8.7057655, 49.4129809 8.7053485, 49.4132415 8.7055842, 49.4133149 8.7054986, 49.4055633 8.6828676, 49.4049949 8.6822918, 49.4129282 8.7027762, 49.4090720 8.7054522, 49.4069337 8.6900774, 49.4088905 8.7053904, 49.4092125 8.7080457, 49.4095401 8.7091480, 49.4133887 8.7086161, 49.4124611 8.7128500, 49.4114089 8.7119309, 49.4112562 8.7115057, 49.4005092 8.6783953, 49.4016334 8.6747771, 49.3998313 8.6768307, 49.4064011 8.6905312, 49.4042522 8.6786859, 49.4038577 8.6765425, 49.4047148 8.6787123, 49.4050422 8.6812130 +www.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, http://rhein-neckar.stadtmobil.de/, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, http://rhein-neckar.stadtmobil.de/, https://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de/, https://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de/, http://www.stadtmobil.de +Gaumont Aquaboulevard, Gaumont Parnasse, UGC Rotonde, UGC Montparnasse, Les Montparnos, Gaumont Miramar, Le Bretagne, Cinéma Chaplin, Gaumont Convention, Sept Parnassiens, Le Champo, Reflet Médicis, UGC Gobelins, Gaumont Gobelins, MK2 Odéon, MK2 Nation, MK2 Beaubourg, L'Escurial, La Clef, La Filmothèque du Quartier Latin, UGC Ciné-cité Bercy, L'entrepôt, UGC Lyon Bastille, Cinéma la Bastille, Majestic Bastille, Le Panthéon, Accattone, Cinéma des cinéastes, Studio Galande, Le Nouveau Latina, Gaumont Opéra Premier, Le Grand Rex, Studio des Ursulines, Le Saint-Germain des Prés, L'Arlequin, Cinéma Gaumont Champs-Elysées Marignan, Cinéma Gaumont Champs-Elysées Ambassade, Le Lincoln, UGC Odéon, UGC Danton, Cinéma Louis Lumière, Gaumont Opéra Français, Studio 28, Le Desperado, Le Grand Action, L'Épée de Bois, Espace Saint-Michel, Le Beverley, Nouvel Odéon, Cinéma Saint-André des Arts, Les 3 Luxembourg, Action Christine, Mk2 Parnasse, Saint-Lazare Pasquier, 5 Caumartin, Max Linder Panorama, UGC George-V, Le Balzac, Publicis Cinémas, UGC Normandie, Le brady, MK2 Bastille, L'Archipel, UGC Maillot, Cinéma Le Denfert, Cinema Mac Mahon, Majestic Passy, Pathé Wepler, Gaumont Alésia, UGC Ciné-Cité Les Halles, Pathé Beaugrenelle, Pathé Wepler, UGC Opéra, Mk2 Hautefeuille, MK2 Bibliothèque, Le Louxor, MK2 Quai de Loire, MK2 Quai de Seine, Le Cinaxe, Géode, La Pagode, Gaumont Opéra Capucines, MK2 Gambetta, Pathé Wepler, Fondation Jérôme Seydoux-Pathé, Etoile Lilas, UGC Ciné Cité Paris 19, Forum des Images +0 +Gulli Parc, Jardin d'Acclimatation +yes +49.4122875 8.7109014, 49.4274974 8.6861291, 49.4086321 8.6989216, 49.4255146 8.6476417 +24 +48.8318676 2.2884097 +Autolib, Autolib +no +53.9441501 -1.1072575 +297 +Hôtel Louvre Bon Enfants, Hôtel Paris Rivoli, Tryp Hôtel Paris François, Hôtel Val Girard, Hôtel Cluny Square, Relais du Pré, Hôtel du Pré, Résidence du Pré, Au Manoir Saint-Germain des Prés, Hôtel Prince Albert, Ibis, Hôtel Kyriad, Hôtel Plaza Élysées, Terminus - Lyon, Hôtel Alexandrie, Hôtel Dacia, Hôtel Victoria Châtelet, Hôtel Britannique, Hôtel Louvre Saint-Anne, Hôtel France d'Antin, Folkestone Opéra, Sydney Opéra, Hôtel du Plat d'Étain, Hôtel de la Paix République, Austin's Arts et Métiers Hôtel, Hôtel du Rond-Point des Champs-Élysées, Timhotel Élysée, Hôtel Berne Opéra, Hôtel de la Flèche d'Or, Grand Hôtel du Havre, Hôtel du Panthéon, Hôtel Plaza La Fayette, Hôtel Acte V, Villa des ambassadeurs, Hôtel Résidence Foch, Hôtel Elysa-Luxembourg, Queen's Hôtel, Jules Cesar, Hôtel Notre-Dame, Hôtel Moderne Saint-Germain, Hôtel Sully Saint-Germain, Hôtel Ronceray, Les Relais de Paris, William's Opera, Élysée, Grand Hotel Haussmann, Hôtel Helder Opera, Hôtel Opera Vivaldi, Baudelaire, Alison, Opéra D'Antin, Plaza Opera Hotel, Villa Lamartine Opéra, Hôtel Impérial, Hôtel des Arènes, Hôtel de Sévigné, Hôtel Terminus Montparnasse, Hôtel des Arts, Palma Hotel, Windsor Opera, Ideal Hotel, Porte de Versailles Hotel, Hôtel Median Paris Porte de Versailles, Hôtel Virginia, Quality Suites, Cordelia, Jardin de Villiers, Pavillon Villiers Étoile, Europe - St Séverin, Hôtel Saint-Charles, Hôtel de la Paix, Hôtel de France, Hôtel de l'Alma, Fertel Maillot, Hôtel CÉ, Grand Hôtel de Normandie, Hôtel du Calvados, Austin's Saint-Lazare, Austin's Saint-Lazare, Hôtel Villa Garibaldi, Academie Hotel, Le Richemont, Hôtel du Triangle d'Or, Hôtel Noir, Hôtel Amiral Fondary, Pavillon Porte de Versailles, Timhotel Palais Royal, Paix Madeleine, Hôtel Cervantes Paris, Axel Opéra, Hôtel Royal-Bergère, Hôtel Touring, Hôtelp Chateaudun Opéra, Monterosa, Hôtel Touraine Opera, Super Hotel, Ibis Gare De Lyon Diderot, Hôtel Claret, Hôtel Ambre, Hôtel Ibis Italie Tolbiac, Ibis Styles Tolbiac Bibliothèque, Royal Fromentin, Hôtel Mercure Paris XV, Hôtel Acropole, Hôtel Balmoral, Hôtel Belfast, Hôtel La Régence, Hôtel Stella Etoile +48.8316492 2.2999377, 48.8633521 2.3710595, 48.8633741 2.3663922, 48.8615468 2.3727192, 48.8648587 2.3516262, 48.8659826 2.3540443, 48.8658957 2.3524620, 48.8630663 2.3527335, 48.8256825 2.3151865, 48.8250160 2.3112381, 48.8279762 2.3057040, 48.8282568 2.3034035, 48.8636772 2.3510372, 48.8658631 2.3695102, 48.8610722 2.3670951, 48.8655959 2.3652444, 48.8655288 2.3523437, 48.8613680 2.3530523, 48.8626723 2.3594550, 48.8600851 2.3608850, 48.8650242 2.3602350, 48.8648944 2.3762643, 48.8252648 2.3158680, 48.8262191 2.3053681, 48.8320219 2.3028314, 48.8255813 2.3041840, 48.8582183 2.3633569, 48.8227669 2.3087009, 48.8215858 2.3017380, 48.8279457 2.3056505 +DRK Bereitschaft Heidelberg Stadt-Mitte +yes +Cafe Bar Piro +185 +(0131) 557 3032 +06221-434441 +École maternelle, École maternelle, Crèche collective Philippe de Girard, Halte-garderie, Crèche collective Clisson, École maternelle, Crèche de l'Étoile, École maternelle, École maternelle Charles Hermite, AJEFA jardin d'enfants franco-allemand, École maternelle privée Le Petit cours du Rocher, École maternelle, École maternelle Hôpital Saint-Louis F, École maternelle, Crèche, Crèche Collective Hutinel, Crèche Georgette Agutte, Crèche Bernard Dimey, École maternelle Réunion, Crèche La Fée Tiphaine, Crèche Collective, Crèche municipale, Halte garderie, Crèche collective, École maternelle Télégraphe, Crèche de la Plaine, Halte Garderie Municipale, Crèche Collective, Crèche de la Croix Rouge, Crèche collective, Crèche Charlemagne, Crèche collective municipale, École Maternelle des Renaudes, Crèche collective, Crèche collective Delessert, Crèche Collective, Crèche au gazouilli du val, Crèche collective et halte garderie, Crèche Lobineau, Creche collective Les Petits Gailhard, École maternelle Émélie, Creche Grenadine et Menthe a l'eau, Creche collective, Crèche Collective, Crèche collective, Crèche Pelée, Crèche collective, Crèche CNAVTS, École maternelle du Clos, École maternelle Chardon-Lagache, Crèche Collective Municipale Monceau, École maternelle 68 Vitruve, Crèche collective, École maternelle Écluses Saint-Martin, École Maternelle Boy Zelinski, Crèche Municipale, Crèche Collective, École privée catholique Blanche de Castille, École Maternelle et Crèche, Crèche, École Maternelle Lyonnais, École Maternelle Lachambeaudie, Crèche, École maternelle Piat, École maternelle, Crèche, École maternelle Pierre Budin, École maternelle Marcadet, École maternelle, École maternelle, Crèche collective, Crèche Municipale, École Maternelle Lahire, Halte-Garderie, École maternelle du Département, École maternelle Pommard, École maternelle Jourdain, École maternelle du Département, École maternelle Georges Thill, École maternelle Pelleport, École maternelle Bois, École maternelle 61 Vitruve, École maternelle 9 Lesseps +79 +viewpoint, hotel, museum, attraction, picnic site, information, artwork, chalet, guest house, hostel, zoo, gallery, camp site, theme park, citytour +3056 +no +french, indian, vegetarian, mexican, pasta, chinese, thai, regional, vietnamese, japanese, couscous, grill, belgian, italian, arab, international, Vietnamese, pizza, New-french, libre, Corse, american, sichuan, Lanzhou, lebanese, peruvian, sushi-yakitori, turkish, crepe, Lebanon, sushi, asian, kebab, Sushi-yakitori, shandong, traditional, Sardaigne, steak house, Persan (Iranien), Vietnamien, mediteranean, japonais, seafood, korean, latin american, Lao, spanish, burger, corsican, moroccan, algerian, Bistrot gastronome, sandwich, gastronomic, jewish, corean, bagel, polish, argentinian, belgium, tibetan, marocan, vietnamien-cambodgien, tapas, see food, vietnam, Lebanese, brunch, senegalese, kosher, Hangzhou, smart traditional, fish, marocain, brasilian, berber, greek, ivoirian, libanese, polonese, african, chineses (Teochew) - 中国潮州, Océan indien, latino, fondue, Cambodgien, basque, crêpe, local, maltese, chinese - Fondue pékinoise, ethiopian, Sud-Ouest France, creole, mediterranean, brasserie, crepes, coffee shop, coréen, breton, magreb, malaysian, indonesian, thai fruit juces, bistro, brazilian, cocktails, crèpes, morrocan, Indian, iranian, traiteur japonais, Coréen, Grec, ramen, brazil, American, Lyonnaise, Amérique du Sud - Argentine, Japanese, pâtisserie sans gluten, mongol, Cap Vert, portuguese, ukrainian, meat, française, pizza bio, lao, cambodgian, mauritian, Kebab, salad, caribbean, Oriental Couscous, oriental, Jiangxi, international (Francaise, sud americaine), berbere, oriental couscous, colombian, marocaine, classique, paella, Française, african caribbean, new york pizza, north african, indian pakistanese, Chinese, Sichuan, Burger, Armenian, ouïghour, irak, cuisine nissarde, salade, bio, cake, gluten free, Thai, seasonal, Kazakh, Russe, Italiano, huoguo, bento, maroc, crèpe, mediterean, mediterrneen, russian, Sandwich, organic, régional, vegan, salon de thé, restaurant +49.3905924 8.6739719, 49.4115364 8.6766566, 49.3905596 8.6743412, 49.3960051 8.6864746, 49.3960694 8.6860163, 49.4123557 8.7728324 +55.9358156 -3.2103653 +no +2 +4 +48.8672033 2.3175552, 48.8794780 2.2911520, 48.8684023 2.3502078, 48.8662853 2.3197532, 48.8659622 2.3186038, 48.8679910 2.3372848, 48.8844724 2.3214773, 48.8848286 2.2981665, 48.8815112 2.2955182, 48.8637584 2.2404391, 48.8684582 2.2651973, 48.8652473 2.2754857, 48.8724857 2.2964468, 48.8645482 2.2749436, 48.8798361 2.2946562, 48.8867832 2.3174727, 48.8834250 2.3133443, 48.8832839 2.3261502, 48.8620110 2.2617158, 48.8590276 2.2701439, 48.8621864 2.2858577, 48.8627962 2.2854972, 48.8620791 2.2848191, 48.8844757 2.3382719, 48.8859435 2.3414431, 48.8777755 2.4052173, 48.8805089 2.3247630, 48.8795193 2.3372522, 48.8860003 2.3379474, 48.8871034 2.3395432, 48.8872913 2.3493292, 48.8849270 2.3525804, 48.8994594 2.3456310, 48.8925222 2.3614454, 48.8881990 2.3259122, 48.8670855 2.3530694, 48.8647563 2.3632147, 48.8775035 2.3271975, 48.8674231 2.3585861, 48.8718710 2.3683060, 48.8699280 2.3499165, 48.8787743 2.4087695, 48.8790383 2.4084495, 48.8782046 2.4088226, 48.8793770 2.4082476, 48.8785854 2.4080833, 48.8640823 2.3242375, 48.8649222 2.3994933, 48.8706300 2.2979200, 48.8628604 2.3719559, 48.8677797 2.3773892, 48.8954660 2.3118560, 48.9006880 2.3443120, 48.8726523 2.2991152, 48.8880790 2.3433440, 48.8606880 2.2465600, 48.8817158 2.3974038, 48.8630654 2.2649414, 48.8635021 2.2620126, 48.8597630 2.3718080, 48.8963810 2.3139000, 48.8852454 2.3310516, 48.8612160 2.3941080, 48.8893940 2.3388820, 48.8954560 2.3210460, 48.8674870 2.3165830, 48.8778330 2.3934820, 48.8898960 2.2981300, 48.8871960 2.3058630, 48.8998070 2.3740820, 48.8599920 2.3625150, 48.8623280 2.3486460, 48.8855390 2.3268800, 48.8691890 2.2731280, 48.8898369 2.3739136, 48.8951024 2.3643279, 48.8654640 2.3863600, 48.8702780 2.3853090, 48.8684460 2.3844060, 48.8743960 2.3620000, 48.8590555 2.3853281, 48.8909945 2.3180223, 48.8708487 2.3842762, 48.8808400 2.3880660, 48.8789680 2.3090890, 48.8861910 2.3437000, 48.8782185 2.2703461, 48.8649444 2.4051523, 48.8711656 2.3608619, 48.8683392 2.3860944, 48.8617560 2.2470009, 48.8876610 2.2899050, 48.8957085 2.3611060, 48.8736560 2.2651653, 48.8634236 2.2498140, 48.8715892 2.2642560, 48.8670116 2.2393588, 48.8589309 2.2291849, 48.8593085 2.2283998, 48.8683594 2.2629205, 48.8728525 2.2727107, 48.8827393 2.3748215, 48.8649924 2.3911518, 48.8992390 2.3401270, 48.8814860 2.3253960, 48.8890670 2.3382500, 48.8713595 2.3858455, 48.8756264 2.3549455, 48.8940100 2.3515980, 48.8606179 2.4048647, 48.8832242 2.3300482, 48.8921127 2.3319234, 48.8783392 2.3518796, 48.8672620 2.3546160, 48.8929520 2.3468380, 48.8876110 2.3980200, 48.9001410 2.3907160, 48.8937910 2.3254410, 48.8878070 2.3168387, 48.8701720 2.3941990, 48.8954540 2.3265480, 48.8760549 2.4066379, 48.8646712 2.2945788, 48.8648810 2.3598580, 48.8785620 2.3603690, 48.8656244 2.4005700, 48.8976745 2.3255573, 48.8678880 2.4110180, 48.8782870 2.3930910, 48.8687996 2.3670827, 48.8675640 2.3439900, 48.8940810 2.3257310, 48.8847495 2.3583714, 48.8680920 2.3674820, 48.8749920 2.3693880, 48.8691100 2.3880580, 48.8927720 2.3393440, 48.8847394 2.3599665, 48.8708650 2.3267180, 48.8851070 2.3774500, 48.8759177 2.3199403, 48.8985920 2.3386760, 48.8618850 2.3795690, 48.8766520 2.3471580, 48.8973940 2.3352610, 48.8863250 2.3533990, 48.8892960 2.3080360, 48.8937263 2.3632365, 48.8866720 2.3745570, 48.8735686 2.3764151, 48.8829640 2.2906840, 48.8862884 2.3363224, 48.8997980 2.3671430, 48.8940029 2.3839514, 48.8990940 2.3343970, 48.8737600 2.4116660, 48.8608430 2.4112060, 48.8729910 2.3967970, 48.8991980 2.3373340, 48.8670820 2.3921970, 48.8650341 2.4104986, 48.8939970 2.3494640, 48.8765790 2.3317425, 48.8861355 2.3561753, 48.8866310 2.2931960, 48.8780460 2.3546040, 48.8885760 2.3372580, 48.8682815 2.2937862, 48.8691909 2.3123689, 48.8678242 2.3628446, 48.8686720 2.3127647, 48.8671021 2.3110061, 48.8933245 2.3887800, 48.8941743 2.3916574, 48.8912248 2.3930476, 48.8946014 2.3912450, 48.8608218 2.3464552, 48.8685507 2.2728757, 48.8724483 2.2489997, 48.8687857 2.2448905, 48.8735492 2.2502871, 48.8706241 2.2491259, 48.8705077 2.2469076, 48.8729282 2.2477712, 48.8734222 2.2509255, 48.8670602 2.2431900, 48.8688615 2.2471136, 48.8668000 2.3495673, 48.8600249 2.4009571, 48.8589058 2.3989762, 48.8902559 2.3155823, 48.8895081 2.3152790, 48.8909868 2.3143418, 48.8916562 2.3142685, 48.8819047 2.3985349, 48.8590759 2.4003273, 48.8644583 2.3274519, 48.8879169 2.3153097, 48.8879452 2.3155854, 48.8914702 2.3147632, 48.8697228 2.2704730, 48.8895806 2.3929015, 48.8847068 2.3794407, 48.8643128 2.3266632, 48.8632906 2.3969375, 48.8597103 2.3998209, 48.8930154 2.3876090, 48.8815514 2.4001315, 48.8612225 2.3119810, 48.8625039 2.3009824, 48.8880273 2.3373781, 48.8725766 2.3640561, 48.8668462 2.3528123, 48.8658864 2.3524475, 48.8764030 2.3793479, 48.8888874 2.3790640, 48.8786186 2.4075133, 48.8869922 2.3168829, 48.8629574 2.3670436, 48.8705355 2.3858494, 48.8771612 2.3641684, 48.8662716 2.4063088, 48.8774505 2.3685222, 48.8897483 2.3636170, 48.8893152 2.3632428, 48.8895729 2.3670765, 48.8950748 2.3539271, 48.8737508 2.2552546, 48.8770432 2.3607309, 48.8928183 2.3927190, 48.8854184 2.3809339, 48.8847022 2.3794239, 48.8647970 2.3376815, 48.8769296 2.3805462, 48.8663182 2.3718556, 48.8736147 2.3633962, 48.8708335 2.3864170, 48.8594153 2.4063574, 48.8759892 2.3685271, 48.8640746 2.3609523, 48.8602693 2.3889177, 48.8593740 2.3653569, 48.8620888 2.3721843 +no +49.3739107 8.6909097 +2 +yes +yes +51 +55.9534686 -3.2733947, 55.9441043 -3.1618477, 55.9229465 -3.1946655, 55.9429880 -3.1595009, 55.9455214 -3.1515881, 55.9215151 -3.2311690, 55.9174462 -3.2363371, 55.9145086 -3.1951990, 55.9425607 -3.1620707 +Le Comptoir Paris-Marrakech, Café Marly, Café des Arts et Métiers, Les Enfants Rouge, Andy Wahloo, Café Noir, Le Loir dans la Théière, Mariage Frères, Café des Phares, Café Le Lutètia, Au Petit Fer à Cheval, La Chaise au Plafond, Les Etages, Stolly's, Les Deux Magots, Café de Flore, Ba-ta-clan, Le café populaire, Le Général Beuret, L'Angle, Les artisans, L'Institut, Le Cristal, Le Babylone, Café du Passage, Pouchla, Taverne Karlsbrau, Cafe République, Le Murger, La Forge, Café des Dames, Le Dauphin, Les Frangins, M'Café, Café Français, Comptoir d'Issy, Les Colonnes, Sans Gêne, Le Kloog, Cafezoïde, Brasserie Tabac Saint Germain, Le Diplomate, Café Convention, Dupont café, Les Étages, Le Godet d'Or, Relais Odéon, Café Conti, Le Buci, Bar du Marché, Café Mabillon, Pub Gay-Lussac, Le Panthéon, Le Reflet, Le Pick Clops, Café du Trésor, Café Panis, Caféothèque de Paris, Le Basile, Les Philosophes, L'Etoile Manquante, Le Pause Café, Café des 2 Moulins, Café de la Musique, La Contrescarpe, Bomby's Cafe, Le Fumaillon, Chez Dudule, O'Jules, Le Calumet, La Grille, Le Crozatier, Le Penty, Le Stone, Bistrot du coin, La Liberté, Au Métro, Le Microsillon, Le Bistrologue, Le Globe Diderot, En attendant l'or, Baroudeur, Les Caves du Petit Thouars, Café Crème, Le Blanc Cassis, La Mère Pouchet, La Halte des Taxis, Café Indiana, Scossa, Le Duc, Le Marigny, Le Petit Village, Felix café, Edelweiss, Bercy café, Café Chambertin, La Source, Moka, Café Plaisance, Le bouquet, Le 7ème Art, Les Cent Kilos, Le relais Diderot, Au Moka, Rotana café, Les deux Savoies, Café Delmas, La consigne, Le Rossli, Le Gévaudan, L'Express de Lyon, Station Café, Le Killy-Jen, Le petit Rollin, Brasserie de l'Aubrac, Le Restaurant du Boulanger, Le Terminus, Caviste, Les Jardins d'Issoire, Le Canon, Le Coche, Les associés, Le Cépage Montmartrois, Cafe Français, Corso, Starbucks, Le Bar Do, Les Crocs de l'Ogre, Bistrot du Monde, La terrasse, Le Tourville, Comptoir du Sept, Colombus, Le Zinc, Starbucks, Le Seven, Starbucks Coffee, Le Monte Carlo, Le Cactus, Les Marronniers, Le Carrefour, La Chope, Le Championnet, L'Entracte, Le Bloc, Les Cigognes, Pomme de Pain, Saint-Claude, La Java, La Place, L'Alliance, Domremy, Au Reveil Du XVème, Le Marigny, L'Hélicon Café, Chez Alphonse, Le Bistro de Paris, Le Puits des Arts, Le Royal Beaubourg, Tabac du Châtelet, Le Baltard, Le petit opportun, Les Deux Palais, Aux Tours de Notre-Dame, Le Quasimodo, Café vigouroux, Sunside, Le Baiser Salé, Au Coeur Couronne, Au P'tit Boulevard, Café Rive Droite, La Promenade de Venus, Taverne Karlsbräu, Café Ruc, Louise Café, Aux Trois Maillets, Le Centre Halles Café, Le Saint-Martin's, L'Imprimerie, Brasserie de la Bourse, Café de la Comédie, Café Palais Royal, Le Zinc d'Honoré, Razowski's, Le Florentin, Les Trois Quartiers, Le Ventadour, La Côte d'Azur, Au Fil de l'Eau, Le Regent, Café Gramont, Virtuose Café, Le Cardinal, Le Petit Vendôme, Café du Cadran, Dédé la frite, Montmartre Café, Le Sentier, Starbucks Coffee, L'Empire Bar, Lézard Café, Café du Centre, Le Cerceau, Les Boulevards, Bistrot Marguerite, Le Cavalier Bleu, L'Excelsior, Au Métro, Le Bouquet des Archives, La Belle Ferronnière, Le Sarah-Bernhardt, Majesty, Le Paradis, Bistrot Beaubourg, Le Relais de l'Hôtel de Ville, Le Rallye, Le Vélocipède, L'Escurial, Double Fond, L'Arsenal, Le Sully, Fontaine Sully, Café Réveil Bastille, Le Djurdjura, L'Art Brut Bistrot, AntiCafé, La Comédie, Le Tabac des Arts, Café Léonard, Brioche Doree, La Chope Nazareth, Le Temple, Le Week-end, La Favorite, L'Attirail, Le Bouledogue, Le Sancerre, La Tour du Temple, Le barbouille, Le Progrès, Le Saint-Gervais, La Perle, Odette, La fontaine, Chez Prune, Columbus Café, Le Rostand, Le Mistral, Le Gribouille, Le Bizuth, Bistrot Lafayette, Cristal Bar, Le Jaurès, Salon de Thé de La Mosquée de Paris, Starbucks Coffee, Le Nesle, Café des Beaux-Arts, Le Bonaparte, Starbucks Coffee, Bistrot Au Petit Suisse, Le Luxembourg, Café du Nord, Le Télégraphe, News Café, Le Bistrot Landais, Le Week-End, Café Saint-Placide, Au Chai de l'Abbaye, Le Montaigne, Le Rond-Point, Le Faubourg, Le Saint-Laurent, Le Mirasol, L'Idéal Bar, Le Miro, Le Mesnil, L'Escale, Le Derby, Le Carré, La Pépinière, Sunset Café, Le Bourbon, Le Carrefour Café, Le Week-end, Le Greffulhe, Le Préfet, La Cour de Rome, Starbucks Coffee, L'Arcade Haussmann, Au Départ, L'Équipage, Terrasse Saint-Lazare, Le Royal Europe, Le Florence, Au Petit Poucet, Le Jardin de Rome, Le Select Monceau, Le Malesherbes, Café Percier, Riva, Le Frieland, Aux Ministères, Le Vigny, Le Madrigal, Le Fronton, Les Arcades, Le Marceau, Bert's, Au Troquet, L'Étoile 1903, Do Ré Mi, La Flamme, A Verse Toujours, café Ziem, Starbucks Coffee, Starbucks, Biclowne Cafe, La Rame, Le Cyclone, Ptit Bono, La Trizacoise, No Stress Café, Midoré, Starbucks, Dupont Café, Indiana Club, Fish and Food Café, LG W|Café, Café Bibliothèque, Bistrôt du Canal, Le Café Prud'h, L'Est Parisien, Le Château Landon, Le 79, Le Chiquito, L'Alouette, Café Galliera, Le Newton, Comptoir de l'Arc, Café Brassac, Pub Kléber, L’Ancien Trocadéro, Le Coq, Corso, Globe Café, Café Kléber, Le Malakoff, Café du Trocadéro, Le Poincaré, Bistrot XVI, Café Victor Hugo, Le XVI, Le Touring, Sei'z Café, Le Relais de l'Étoile, Le Lamartine, Les Sablons, Château de la Tour, Café le moderne, Le Termidor Brasserie Tabac, Folie café, Café A la Fontaine, Le Dôme, La Sortie du Métro, Le Relais de la Place, Le Jardin, Le Havane, Le Capétien, Le Relais des Sablons, Le Caféier, Le Louis Blanc, Le Bastringue, Le Narval, Lou pintou, La Marquise, Chin Chin, Le Mozart, Royal Village, Royal VI Nation, Au Canon de la Nation, Milk, Le Départ Saint-Michel, Le Chat Bossu, L'Escale, Le Balto, Le Notre-Dame, Les Fontaines, Les Tramway de l'Est, Le Dorian, L'Avenue, Le Préaumur, Le Bac Saint-Michel, L'Île de France, Le Gay-Lussac, Le Royal, Café aux Marsouins, Le Taiyo, Le Café Saint-Médard, Au Rendez-Vous du Marché, La Montagne, Le Descartes, Dans les Landes, Le Commerce, Le Montmartre, Café Léa, Le Mastroquet, Richelieu, Mollien, Mucha Café, Le Chiquito, Le Café Bonal, Le BlaBla, Le Remontalou, Le Michelet, Le Royal Cambronne, Le Bistrot, Le Ségur, Café Blanc, Petit Ségur, Paris Duquesne, Le metro, Le Café Lilas, Chez Jeanette, Moshimoshi, Les Temps Modernes, Chez Fabien, Café Les Muses, Le Quesniau, O' Café, Starbucks, Italian Style Café, À La Tour de Nesle, Le Miami, Edony Café, Le Jardin du Petit Palais, Starbucks Cafe, Starbucks Coffee, Le Café Truc, Le Rey, Starbucks, Berthillon, Café de la Porte des Sablons, Bert's, L'Aiglon, Contre-Allée, Café des officiers, La Ville de Lyon, Les quais, A la Tour Eiffel, Cafe Elgi, Les Dunes, Au Roi du café, K'fe, Le Bidule, La Boutique à Boire et à Manger, Arni acquiatan, Café Victor, Les Cakes de Bertrand, Café Seize, Delaville, Le Montespan, Presto Caffe, Dis Vin Gaulois, La Rotonde, Deli's Cafe, La Croissanterie, La Porte Montmartre, O'Sullivans café bar, Virage Café, Cafe de la Poste, Café Royal, Capuccino, Le Prevoyant, La Pointe La Fayette, Le Cadran Bleu, Le Conservatoire, Le Florent, Café Lazar, Siva's Lunch Coffee, Au Petit Palais, Capucine, Madeleine, Le Diamant, Le Bellerive, Ambroise Pare, Au baroudeur patient, Le Saint-Régis, Cafe Louis Philippe, Saint-Victor, L'Authentik, L'Olivier, Starbuck's, Auto Passion, L'escale de Lyon, Huafu Café, Le Mathis, Comptoir de l'Europe, Le Prétexte, La Calèche, A La Ville de Saint Flour, Café Tabac Jeanne d'Arc, La Nouvelle Gare, Le Taylor, Le café Pierre, Le Grand Café Capucines, Vegan Folies, La Terrasse de Pomone, Le Brébant, Café Reale, Café Diane, Méo 7, Angelina, Maison des Trois Thés, Dominique Saibron, Le Royal d'Alleray, Le Saint-Jean, Le Vrai Paris, Le Petit Montmartre, Alberto, La Consigne, La Ruche, Colombus Café, Chez Justin, espressamente illy, La terrasse, Le Mail, Café Launi, Royal Trinité, Zen Café, Café Grévin, Starbucks Coffee, La Palette, Art Bistrot, Bistrot des 2 Théâtres, Brasserie du Théâtre, Café Salé, Le Béguin, Le déjeuner sur l'herbe, Gioia Mia, Café Noisette, Au p'tit creux du faubourg, Café M, Le Ferryville, Le Lutèce, Lina's, Café Le Troquet, Palace Café, Café Francoeur, Bar-Tabac, La bande à bonne eau, La Poste, Le Dauphin, Le Week-End, Le Café Chappe, Salon de Thé, Au petit bar, Le Comptoir du Panthéon, Bistro Dupleix, La Gitane, Sugarplum, L'abribus café, Rotana Gourmet, Thé Glacés, Nespresso, Au Pays de Vannes, Chouchou, Hall 1900, Le Marigny, Fleurus Café, L'Etoile Vénitienne, Le Copernic, Le Corona Impérial, Le Rallye Etoile, Le Savenay Café, Paris montparnasse, Relais plaza, Falafel Café, Le Bar des Aiglons, Le Brelan, Le Celtic, Sebastos, Beirut Café, Café Etienne, Café Marcel, L'Amazonial, Le Vieux Léon, Starbucks, Le Narval, Le Bourgoin, L'Arobase, Café Le Château, Café Victoria, Le Papillon, Le Saint-Malo, Le Royal, Le Marengo, Starbucks Coffee, Péninsule, Le Zinc des Caviste, Deli's Café, Chocolat Rouge, La Comète, Le Président, Café Beaubourg, Café Paris Beaubourg, Findi, Augustin, Starbucks Coffee, Le Bobillot, L'Excuse, Le Casse, Café Pelleport, Chéri-Chérie, La Chope Saint-Fargeau, Larson News, Le Bistrot du Manoir, Le Clairon, Le Saint-Fargeau, Le Cantal, Le Réveil Matin, Le Zodiac, Bar du Métro, Chantefable, Charlotte, Edelweiss, Le Houblon du Vin ème, Café'In, Le Chat Noir, Le Corentin, Paris éclair, Paris Brune, Le Capitole, Le Select, Le Fontania, Crêperie Suzette, Le Paris Sud, Le Maryland, Les aviateurs, Bar de l'aviation, Le 15ième boulevard, Le tramway, Bistrot Montsouris, Le XIVème, Le Paul Fort, Le Penalty, Le St Laurent, Le numide, Le Mirabeau, Le petit voisin, Le Café Livre, Jolis Momes, Odette & Aimé, La Rotonde, Caffè Corto, Au Passage des Artistes, La Cantine de Gaston, Le Disque Bleu, Cafet' Théâtre, La Succursale, Le Beaucour, Salon de Thé, O'Soleil, Soui Food, Sandwich Café, Le Royal Parmentier, Le Pain Quotidien, Le Rallye, Café de l'Opéra, Cest Of Café, Le va et vient du Nord, Coutume, Café du Temple, Le Siempre, La Plage, Les Deux Musées, Viaduc Café, Breizh Café, Starbucks, Maine Café, Le préau, Café des Mousquétaires, Le Voltigeur, Craft, Breizh Café, Café Lyon, Indiana Cafe, Caffè Cosy, Le Commerce, Le Maryland, Café Tournon, Café des petits frères, Le Café Parisien, Le génie, Le Danton, Le meilleur des mondes, Le Brazza, Au Sauvignon, Starbucks, Le Relais Charbon, Caffé créole, Lutetia, Café 99, Le Disque Bleu, Le Père Tranquille, La Ville d'Arras, Habanos, Les Anges, Corso, Les Papillons, Le Mouffetard, Margeride, Coolin, Néo Café, Tennessee, Café de France, Le Napoléon III, Le Marigny, Le Wilson, Arthur et Juliette, Au Bélier d'Argent, L'Armandie, Le Celtic, Le Val Girard, Le Saint-Michel, Pret A Manger, Abribus café, Le Jasmin Café, Le Pt'it Lecourbe, Le Zig zag, Le Camélia, Amorino, Albe Café, Häagen Dazs, Esmeralda, Starbuck's, Tabac de la Fontaine, Le Germinal, Le Baron, Le Relais, Le Bistro'K, Le Triomphe, Drôle d'endroit Montorgueil, Starbucks, Milk, Cyber Cube, Le Cassini, Café Fleurus, Le Molière, Costa Coffee, Le Reinitas, Café Rozier, Chez Mezig, Le Buron, Le Relais Tronchet, Colibri, Starbucks, Starbucks, Dandy's, Café L'Imprévu, Bubbolitas, La Comédie, Gosip Café, Blackburn, Starbucks, Café Père et Fils, L'Indiana, Le Tabac des Folies, Les Chimères, Le Peit Saint-Paul, Au Compas d'Or, Céfé Frappé, Les Têtes Brûlées, Vélocivette, La Terrasse de Villiers, Le Chavignol, La Chope Champerret, L'Espace St-Cyr, Malongo, Pains à la ligne, Sud Ouest Café, La Poterne, L'Evidence, Dada, Lacombe, L'Orée des Champs, Espace Détente, Starbucks, La Fontaine, Café du Marché, Le Nemours, Tabac des Ternes, Ten Belles, Bat Royal, Le Village, Le Verre à Pied, Tourn'bride, Dose - Dealer de café, Café des Arts, Les Sabias, Papyrus, Le Franc-Tireur, Au Village des Ternes, La Pointe Drouot, Bar Edith Piaf, Liberté, Café des Vapoteurs, Le Ricaux, Guest, Sip Babylone, Café Fusain, 11ème avenue, Le Saint-Mandé, Le Royal Jussieu, Le Valmozzola, Café Smögås, O'Soleil, Yuman, Café du Commerce, Le Rond-Point, Les Racines, Le Printanier, Café Le Saint-Lazare, Brulerie Caumartin, Ducale Café, Les Négociants, Tabac de la Sorbonne, Le Hibou, AntiCafé, Le Bistro d'Aligre, La goudale, Le Philos Off, Chez Félicien, Le Café du Trone, Au Ptit clin d'oeil, Dido Cafe, Le Solférino, Le Sorbon, Chez Xavier, Café du Marché, Afandina afe, Thanush netc@fe, Odette et Charlus Café, Cafe Les Favorites, Chez Hamid, Le Rempart, Le Chaumontois, L'estive cafe, Aroma, Le P'tit Muscadet, Le P'tit Muscadet, Le Hollywood, L'Étincelle, La Passerelle, Le Cardinal Saint-Germain, Pavillon des canaux, Franklin' Cafe, Paradise Cafe, Le mistral, Le Débonnaire, Berko, Le Café sur l'herbe, Cafe Laumiere, Cafe Pont de Seine, Cafe Pont de Seine, Le Palais, Bar Tabac de la Mutualité, Le Sèvres Raspail, Gladines, Café de Luna, Café des Dames, Le Chaptal, Le Zinc, Le Monceau, Le Bistro de Bel Air, Le Village, Bistrot de l'Arcade, Amélie et Aurélie, Les bancs publics, Canaletto caffè, L'Aubrac, L'evasion, Le Nantes, Le cadre noir, La Casa di Sergio, Enoteca, Da Aldo, Häagen-Dazs, Pancake Sisters, Le Marijan, Le barricou, Café Latéral, Le Washington, Café Craft, Le tabloïd, BistroZ, Le petit Bistrot Café Brasserie, Le P'tit Bistrot, Le Petit Bainville, Le Demours, Bob's Bake Shop, Le Roi de Pique, Betjeman and Barton, Jet-lag, L'Aveyronnais, Le week-end, Comptoir Turenne, La bohème, Le Sévigné, Le Mayol, Le Lutèce, Cafe Loto tabac, Café du Musée, Le Pierrot, Le Montana, Folie café, Le Café du Musée, Indiana café, Autour du Moulin, Mon Café, Le Tabac, Puerto Cacoa, Casa, Le Naja, Café Premier, Jolis Mômes, Hôtel du Commerce, Bar de l'Eure, Le Tambour, Le XII ème, Saint-Marcel, Pain à la Ligne, Starbucks Coffee, Cafe Suedois +49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4042825 8.6824570, 49.3956207 8.6692054, 49.4172010 8.6768150 +55.9507953 -3.3038276 +yes +324 m +yes and 229 and 51.0844645 13.6487103, 51.0273756 13.7474285, 51.0823918 13.7335753, 51.0824545 13.7336039, 51.0825170 13.7336323, 51.0829896 13.7332707, 51.0828616 13.7332262, 51.0827595 13.7331813, 51.0826580 13.7331399, 51.0825999 13.7331126, 51.0825362 13.7330866, 51.0827583 13.7327555, 51.0832603 13.7324804, 51.0831002 13.7336158, 51.0795251 13.6564388, 51.0803520 13.6560575, 51.0797631 13.6570269, 51.0805189 13.6559334, 51.0798370 13.6570887, 51.0801264 13.6570556, 51.0798991 13.6571398, 51.0798900 13.6567596, 51.0800585 13.6558509, 51.0795075 13.6568246, 51.0800106 13.6572306, 51.0802644 13.6565229, 51.0801590 13.6559327, 51.0796771 13.6569580, 51.0801474 13.6574467, 51.0795919 13.6568858, 51.0799591 13.6557717, 51.0806719 13.6547946, 51.0844031 13.6492495, 51.0844377 13.6491173, 51.0845865 13.6492686, 51.0848005 13.6481637, 51.0560319 13.6534353, 51.1129021 13.7134784, 51.0870850 13.7344070, 51.0879019 13.7346740, 51.0872746 13.7345070, 51.0400501 13.6372683, 51.0400368 13.6376398, 51.0397949 13.6376750, 51.0398668 13.6372683, 51.0396860 13.6366848, 51.0395593 13.6369259, 51.0392180 13.6369677, 51.0396431 13.6373610, 51.0396199 13.6371140, 51.0392895 13.6367341, 51.1523082 13.7957194, 51.1532344 13.7957454, 51.1521680 13.7957598, 51.1520584 13.7957188, 51.1536728 13.7955165, 51.1520531 13.7963601, 51.1522370 13.7957382, 51.0847930 13.6490593, 51.0849131 13.6491394, 51.0845156 13.6488769, 51.0847316 13.6490137, 51.0849792 13.6491835, 51.0844573 13.6488382, 51.0848531 13.6490969, 51.0685627 13.6241474, 51.0695246 13.6253081, 51.0699998 13.6237618, 51.0683859 13.6251032, 51.0701737 13.6247207, 51.0683173 13.6249097, 51.0694974 13.6255021, 51.0679836 13.6227283, 51.0698285 13.6245618, 51.0682702 13.6249019, 51.0700321 13.6235780, 51.0699302 13.6241295, 51.0706362 13.6240940, 51.0699677 13.6239464, 51.0699803 13.6233425, 51.0698958 13.6243490, 51.0683476 13.6228519, 51.0703047 13.6239192, 51.0681631 13.6226829, 51.0681586 13.6222257, 51.0705447 13.6245614, 51.0704860 13.6238946, 51.1190382 13.7795044, 51.0400538 13.6374139, 51.0422774 13.6356744, 51.0419915 13.6350658, 51.0422431 13.6350551, 51.0423833 13.6350452, 51.0422138 13.6356743, 51.0424026 13.6345030, 51.0424536 13.6356798, 51.0419222 13.6347316, 51.0425869 13.6359640, 51.0424255 13.6347004, 51.0423683 13.6356861, 51.0419113 13.6345174, 51.0423088 13.6353555, 51.0432389 13.7577645, 51.0436111 13.7590246, 51.1521334 13.7973645, 51.1521117 13.7971177, 51.1520977 13.7967766, 51.1526180 13.7960916, 51.1531397 13.7962202, 51.1521522 13.7975794, 51.0542981 13.6500944, 51.0444714 13.6375970, 51.0445916 13.6380352, 51.0452089 13.6382144, 51.0448329 13.6384755, 51.0420013 13.6356697, 51.0419801 13.6353571, 51.0449595 13.6381873, 51.0450957 13.6377784, 51.0451578 13.6382089, 51.0451645 13.6385095, 51.0445991 13.6376131, 51.0447789 13.6380437, 51.0449673 13.6384880, 51.0451001 13.6385027, 51.0450315 13.6384948, 51.0450594 13.6382009, 51.0416818 13.6350996, 51.0450879 13.6379787, 51.0454522 13.6334655, 51.0444342 13.6335000, 51.0444346 13.6335829, 51.0453155 13.6342072, 51.0453139 13.6338984, 51.0446628 13.6337701, 51.0446591 13.6334707, 51.0453174 13.6340041, 51.0453155 13.6341049, 51.0451033 13.6335278, 51.0444341 13.6336615, 51.0288807 13.7029059, 51.0288738 13.7030353, 51.0644000 13.6702199, 51.0645429 13.6701187, 51.0634300 13.6708257, 51.0629448 13.6704116, 51.0631020 13.6703333, 51.0643496 13.6698018, 51.0644680 13.6697240, 51.0644477 13.6701873, 51.0636715 13.6706991, 51.0634927 13.6708243, 51.0635567 13.6707778, 51.0643411 13.6702497, 51.0644908 13.6701611, 51.0644102 13.6697624, 51.0630231 13.6703734, 51.0641429 13.6701305, 51.0634263 13.6702687, 51.0639096 13.6702519, 51.0091874 13.7517437, 51.0791960 13.7360348, 51.0794212 13.7358213, 51.0870710 13.7344832, 51.0142964 13.7502569, 51.0640528 13.6635614, 51.0638879 13.6639550, 51.0641915 13.6639163, 51.0641879 13.6640152, 51.0638942 13.6637425, 51.0641939 13.6638145, 51.0639733 13.6633695, 51.0638080 13.6677778, 51.0632291 13.6683586, 51.0629009 13.6680561, 51.0636169 13.6676692, 51.0631196 13.6683612, 51.0628342 13.6680588, 51.0636968 13.6679241, 51.0545652 13.6571661, 51.0544809 13.6571568, 51.0545984 13.6575051, 51.0565349 13.6490424, 51.0580882 13.6488216, 51.0546570 13.6508731, 51.0571567 13.6545872, 51.0556063 13.6475528, 51.0569011 13.6540618, 51.0561655 13.6542541, 51.0546351 13.6507613, 51.0559429 13.6545543, 51.0571677 13.6557061, 51.0545624 13.6504539, 51.0568417 13.6544648, 51.0569245 13.6550228, 51.0568989 13.6556656, 51.0570603 13.6550313, 51.0567548 13.6539175, 51.0569839 13.6545736, 51.0570223 13.6555839, 51.0563415 13.6551338, 51.0557576 13.6480748, 51.0560964 13.6490288, 51.0556641 13.6496888, 51.0559435 13.6495665, 51.0561604 13.6490052, 51.0559214 13.6494670, 51.0561791 13.6494340, 51.0557350 13.6491827, 51.0562316 13.6494131, 51.0561324 13.6494525, 51.0562531 13.6489722, 51.0414360 13.6346991, 51.0537377 13.6809286, 51.0869121 13.6263809, 51.0864569 13.6264478, 51.0868109 13.6272543, 51.0865604 13.6261106, 51.0868648 13.6272874, 51.0863500 13.6267865, 51.0863754 13.6267068, 51.0864006 13.6266273, 51.0865935 13.6259527, 51.0865248 13.6262863, 51.0869641 13.6261298, 51.0869379 13.6262564, 51.0864323 13.6265290, 51.0687005 13.7630620, 51.0645983 13.6700479 +no +42 +327 +Südstadtbäckerei, Kornblume Neckargemünd, Fair & Quer, NahKauf, Video Express, Hünnerkopf, Bäckerei Riegler, Rudis Radladen, Riegler, Edeka, Bäckerei Rühle, Stieg, ARLT, Two Wheels, Kiosk & Kaffee, Edeka Bauer, Heidel-bike, Buchhandlung Schmitt & Hahn, Cafe Frisch, Tee-Fachgeschäft Tea Time, Mahlzahn, Buchhandlung Sturm und Drang, 2-Rad Otto, Optik Volz, Netto, Mantei, altavelo, Penny, K&U Bäckerei, Gärtnerei Hoffmann, REWE, Netto, Bäckerei Riegler, .. nah und gut - Brodthuhn, Landbäckerei Banschbach, Der Haarflüsterer, CHIPNIX COMPUTER, Seppl's Backstube, Bäckerei Tschakert, Buchhandlung Staiger, Café am Rathaus, …nah und gut Keller, Nelson, Copy FIX, Autohaus Neckarhelle, Unishop, Wittmann, NKD, Goldkorn, Konditorei Wiegand, Riegler, Backhaus Siegel, Riegler, Paris, ALDI SÜD, Thalia, Mantei, Damen und Herrensalon Hans-Peter Bähr, Billigladen, Bäckerei Bernauer, Bäckerei Mantei, Bike'n Style, Kamps, Der Kleine Gundel, denn's Biomarkt, Bäckerei Rodemer, Bäcker Tschakert, Bäckerei Riegler, Lidl, Brücke – Eine Welt Laden Dossenheim, Spielebetrieb Heidelberg, Das kleine Radhaus, Fahrrad Scheuber, Der Holzwurm (Antike), Möbelum, Rud. Entenmann GmbH, weltladen una tierra, Fair & Quer, City-Markt Rüdinger, Stefansbäck, Apollo Optik, Bäckerei Grimm, Lichtblick, Buchhandlung Worring, Tally Weil, Vodafone, FOSSIL, SP: Deytronic, Müller, Apropos, Jokers, C&A, Claire's, Radhaus Gerger, Weltladen effata regional & fair, Grimminger, Modellbahn Schuhmann, Schaltwerk, Claudia Ruda, Freudenhaus, Arcor, Telekom, Netto, Penny, Autoservice Südstadt, Zehra Ergin Hair Expert, S-Bahnhof Kiosk, Mantei, Mahlzahn Vollkornbäckerei, Netto, Seip, Stefanie Knorr, Nollenberger, Markus Fritz Raumausstattung, Getränkeland, Rohrmann's, Appel un' Ei, Crazy Diamond, Sportart, La Flamm, WMF, GameStop, Holzofenbäckerei Emert, Zuckerladen, Tom's Tierwelt, Buchhandlung Schmitt, Rossmann, Wurzelpassage, Bäckerei Sommer, noowing's, nah und gut Weismehl, Blumen Kamm, Cafè Frisch, Basic Hairshop, New Point, Divino, Cocoon, Different fashion, Oska, Modern Classic, Metzgerei Lanzendorf, Bäckerei Tschakert, Reisebüro Bechtel, Zweirad Erni, Feinkost Sahin, Waschsalon Rosie, Weststadt-Optik Sigmund, eldoRADo, Eichendorff, Bosch Car Service, Jäger, Herbig Coiffeur, Grimminger, Joncker, Apropos Buch, Souvenirs und Fotokarten, Toyota Heiler, Blumen selbst schneiden, Apropos Buch, DB Service Store, Eppelheimer Buchladen, Bücherpunkt am Rathaus, ABM Autovermietung, Mahlzahn Vollkornbäckerei, Textil Schmitt, Schneiderei Leyla, Takko, dm, kik, mantei, Expert Esch, dm, Rutz, Autohaus Dechent, Backpacker Climb, Audi Zentrum Heidelberg, Jack Wolfskin Store, VW Zentrum Heidelberg, Kaede Running Sushi Bar, Rechtsanwaltskanzlei do§ch - Sebastian Dosch, Bridi, Masala, Apfel und Korn, Heil's Feinschmeckerladen, Tchibo, Durance, Salon Michelle, Conditorei Zimmermann, Mantei, Kopfkultur, Hair Away, Fahrrad Service, Eberle, Grimminger, Der Barbier, dm, Betten Opel, Centerapotheke, Gärtnerei Lenz, Shopette, Barber Shop, Dieter Bauer Autotechnik, Reisebüro Bauder, Metzgerei Anselmann, Hochstein Musikhaus, Bäckerei Tschakert, Deichmann, Kaufland, Riegler, Caravaning Schneider, Radhof, REWE City, HAIRCUT, Saturn, Rossmann, Dritte-Welt-Laden, H&M, Görtz, Butt Asien Shop, Tiger and Dragon's Food Store, REWE city, Rühle, The Rock Shop e.K., Runner's Point, S'Oliver, Penny, Moments, Kamps, Schuh und Leder, Basic Hairshop, Anouk, Vodafone, Thomas Cook, Hallhuber, E-Plus, TeeGschwendner, fielmann, Gravis, L'Epicerie, Käthe Wohlfahrt, Theile, I Am - Designmanufaktur, Madame Vélo, Blumenladen Löwenzahn, Allmann Friseursalon, Dossenheimer Schokoladen, Konrads Wäschezenter, Metzgerei Schäfer, Christa's Haarstudio, Die gute Lage - Weingeschäft, GROSS 1866, Mondtaler Kinderkleidung, Radhaus Gerger, Salon Kanapee, Schuh Karcher, La Casa Verde, Schneider, Blumen Weber, Buchbinderei Dyroff, Globetrotter, TELCO & MORE, Alnatura, effata Weltladen, Quadrad, Buchhandlung Himmelheber, Reisebuchladen-Heidelberg.de, Friseur Kirsch, Herrenfrisör Doll, Toys'R'us, Val Verde, Gartencentrum Scheid, Can Markt, BIKEAGE, Friseur U. Hell, Optik Frank, Weine & Genuss, Kosmetikinstitut Beauty-Cosmic, Anne's Blumenecke, Beauty Lounge, Feinkost Schäfer, Georg Storch, Intercoiffeur Kress, Kaufmann Augenoptik & Hörakustik, Bäckerei Grab, Auto Schmitt am Kalkbrunnen, Die Brille, Vellisimo, Frisör Karin Bolz, Göbes Sophie, Knoblauch Schreibwaren, höllwerk - Schmuck & Design, flowerstation, hairCUT 11, Altstadt Friseur, Buchladen - artes liberales, Josef Seibel, Frisurenkeller Fischer, Salon Birgit, Imkerei - Thaler, Eva's Lädchen, Reformhaus Escher (Vita Nova), Lebe Gesund, Dansk Möbler, Metzgerei Unger, Pazar, Zum Bauernmarkt, höllwerk - Schmuck & Design, SARAH's STYLES HAARVERLÄNGERUNGEN, Geflügelhof Ehrler, Reit- und Spargelhof Rehm BIOLAND, QueerBeet Hofladen Sauter, Schlicksupp Hofladen, Schlierbacher Schiff, Riesenstein, YORMA'S, Mantei, Riegler, Feine Weine, Alnatura, Gemüsebau Schlicksupp, Mahlzahn Vollkornbäckerei, Rühle Bäckerei, Riegler, Biker's paradise, Optik Meister GmbH, Metzgerei Stieg, QUICK SCHUH, Takko Fashion, Dussinger, Rhein-Neckar-Akustik, Auto-Franke, Weingut Seeger Vinothek, Stern, Volvo, GTS Automobile, Claus Stier Kraftfahrzeuge, Douglas, Promod, Markushof, K&U, Danys Blumenparadies, KFZ-Werkstatt Karnahl, Bier Schaaff, Tamara Lederwaren, Serpa Markt, Löffelhardt Fliesen, Getränkeabholmarkt, Rückemanns Zoo Insel, Niebel, Augenstein Metallbau GmbH, Maisch Orthopädie Technik Zentrum, Oswald Friseurbedarf und Kosmetik, Glocken Bäckerei, Weingut Clauer, Wäscherei Meuter, BioBasis, Fotostudio Hauck, Elly's Beautystudio, Auto City, Die Brillenmacher Ritzmann Werner & Nalik, Kopierladen E. Müller, Hansi Flick, Coiffeur Leila, Many Market, Nativo, Videotaxi Media Store, Autohaus Nieder, Analog-Audio-Arts.de, studio visuell photography, Beauty Lounge, Beautyful Nails, Die Friseure, Fiebing, Foto Kühnel, Goldenes Dreieck, HF-Computer, Reisebüro Specht, Sofa 3, Sunshine Sonnenstudio, Telecafé, Waschtrommel, Reisebüro Mayer, KirchGessner, Das Optikhaus, KIND Hörgeräte, Weinladen am Markt, DAS KUNSTHAUS ESSERS, Leist, Ingrids Blumenladen, point S Reifenservice, Metzgerei Müller, Getränke Ziegler, H.M. Automobile, EXAKT Bürobedarf, Fromm, Die Autolackierer Eppelheim, premio Auto- und Reifenservice, Wiener Feinbäckerei Heberer, Toker Obst und Gemüse, Nahkauf, Benetton, Bücherstube an der Tiefburg, Haarlass, Fleischerei Friedl Rolf, LE CROBAG, Barbarino, blumen fee, SIX, Anatolia Markt, Chiquita fruitBAR, Reisebüro im Bahnhof, Konradi's Wäschecenter, Elektro-Fontius, Raumausstattung Rehberger, Änderungsschneiderei Flore, MBK Roller Shop E. Schemenauer, Dentallabor Volk, Metzgerei Schlechter, Der Frisörladen, Kosmetik- u.Nagelstudio Relax, Salon K&C, Farben Boy Creatives Wohnen, Maren Kohlmann Massage, Purzelzwergs Lädchen, Ursula's BlumenOase, Wolle und Teeladen, Wolle und Teeladen, Bäckerei Mantei, Hörwelt Heeg, Schreib- und Spielwaren Faludy, Kiosk Stauch, ULMA GmbH, Wäscherei Dobrovsky, Backpacker Footwear, Helin Backwaren, Kim Nails, Pfisterer, FRIWA Küchen, s' Lädele, Hair und Nails, Die Olive Feinkostgeschäft und Snackbar, Juana Kosmetikstudio, Bäckerei Frick, DeluxxCut, Friseur Toker, Haarstudio Edith, Reformhaus J. Budjan, Salon Norbert, Salon Sybille, Schedwill, Vitamin Haus, Vivir, Partyservice Vogel, tipico sportwetten, Zur schönen Linde, RNV-Kundenzentrum Heidelberg, Barber Shop, Hassbeckers Galerie & Buchhandlung, Chocolaterie Knösel, Just B - Tattoos and Bodyart, Blumen Kücherer, Wahl G. Frisierstube, Mirus Raumkonzepte, noowing's, Friseursalon Wagner, Backpacker Travel, Gscheidle, Bäckerei Riegler, Otto Macho, hairclub10, Hair we are, Mode-Börse, Becker-Chedor Anette Chemische Reinigung, PANICZONE TATTOOS, Quetin Reiseservice, nahkauf, FOTOCONTROL, Schmitts Lädl, Optik Nähring, Sonneninsel, Kosmetikstudio Riegler, Textilpflege Egly, Kamelien Thai-Massage, Metzgerei Maier, Night Magic, Winkler Radio- und Fernsehtechnik, Cfashion, Jamaicare, Juwelier Bowe, Phoenix Nagelstudio & Fußpflege, Schreibwaren Müller, Wiegand Optik, Wolle und mehr, Kraus, Curalia Cosmetics, Josef Fritsch, Pereo Schuhmoden, Pompinello, Salon Brenner, allFrisch, Viola's Blumen, Gerhard Zahn, Auto May, Bestattungen Bauer, Neckar Bau, TeleMedia, Grundig, Jutta's Nagelstudio, Buch-Markt, Textstudio Gross, Drogeriemarkt Richter, Reisebüro RIZ, Hemdenfix, Grimminger, Schneiderei Sen, Mantei, Zupp, Pfänder, Hells Kitchen, capcorner, City-Markt Rüdinger, TK Maxx, Geers, Joel, KIND, Nolze, Roland Curth, Antiquariat Hatry, Swatch, mod's hair BASIC, alldrink, Metzgerei Stieg, mantei, Elektro Scheurer, Timeout, Gieser, Mantei, KIND Hörgeräte, Stefansbäck, Barber Shop, Beauty Club, Riegler, Metzgerei Sommer, AUS-Zeit Reisebüro, Admin-24, Ambergs Die Blumenstation, Andreas Ullmer, Blumen Susanne Silbernagel, Glückskind, Optik Masing, Salon Wengerek, Schönheitssalon Venus & Denis, Piccadilly English Shop Heidelberg, Frick, Donuts, Barbier & Capelli, Citroen Spiegelhalder, Werle, Fröhner, Fröhner, Butlers, McPaper, Harmonien und Blüten, Patisserie La Flamm, Aura, Grimminger, Unger, hollenbach, Backshop, pitstop, Antiquariat Friedrich Welz, Hairlich, friedrich, faire und feine Mode, Avant-Garde, Jacques’ Wein-Depot, Friseursalon Nouveau, Lecker Bäcker, Breitenstein Bäckerei, Scheck-In-Center, mod's hair, Rad Kirch, Uli Rohde Musikladen, K&U, TopHair, Abele Optik, Brax, Bären Company, Christ, Diller, Eyes + More, Pandora, Planet Sports, Roland, Schmitt & Hahn, Telekom, DerBüroeinrichter, Anouk, dielmann, Max & Co, Marc O' Polo, Optik Rehm, Optik Madle, Backwaren, Carat, tilly de lux, Getränke Becker, Bäckerei Mantei, Kiosk Würfel, Holzofenbäckerei Emert, Yadi Tatoo, Bäckerei Wacker, Hair and Beauty, Futon-Haus, Radio Kroll, Reinigung Eckenweiler, Bäckerei & Konditorei Stahl, Optik Pfaff, SaiNet GmbH, B-Moden, Haarstudio Margarete, Fruchtmarkt Lehnert, Blumen Merkel, Gertruds Frisierstube, Antikscheuer Heidelberg, Fachschneiderei, Frisier Domus, Netto, Bäckerei Siegel, Hamilton Leder + Synthetics, Wieblinger Buchladen, Massagepraxis ImLo, Brunis Lädle, Absinthladen "Galerie Grüner Engel" Lager, Farbenreich, Der Friseur Markus Bähr, Wuschel - Express, Kathrin Laudenklos Nageldesin, Tatiya Thai Massage, The iPhone Doc, Adviva SanitätsCenter, Metzgerei Benig, Café Frisch, Goldkorn, Görtz, Änderungs-Schneiderei, Friseur Stern, MeineZeit, victor&linchen, Martinas Schreibshop, Ronnefeldt Teeladen, The Flame, Weingut Bauer, Görtz, Laib & Leben, Viani's Friseure, Kinderwagen Risch, First Reisebüro, Aktiv-Reha-Center, E-Mobility.Center, Rewe, Kaufland, BAUHAUS, Edeka, denn's Biomarkt, Lidl, DM Drogeriemarkt, Aldi, Rewe, Lidl, Das Carré, Kiosk Ziegler, Norma, dm, REWE, Aldi Süd, Fressnapf, OBI, REWE, denn's Biomarkt, Aldi Süd, Dehner Gartencenter, BAUHAUS, Möbelparadies, Penny, ...nah und gut Arlt, Profi-Markt, REWE Getränkemarkt, ALDI SÜD, REWE, Blumen Bethge, Penny, Metzgerei Krauss, Foto Stetzelberger, Der Buchladen, Pafümerie Werner, Müller, Steininger Textilpflege, Betten Knoll, Breitwieser, Nah und gut, Bike-n-Wild, Galeria Kaufhof, Darmstädter Hof Centrum, Holz Oberfeld, Famila Center, Galeria Kaufhof, Wohnland Breitwieser, Toom Getränkemarkt, Metzgerei Wickenhäuser, Rewe, Kreativ-Werkstatt, Penny, Edeka, Esso, Kaufland, Media-Markt, Bäckerei Marcus Maier, TonArt Musikalien, RiverStylz, Büro Systeme Bammental, Autohaus Bernhardt, Autohaus Krauth, Mini Krauth, Näher Baustoffe GmbH, Schürle, Apfel Land, Blumen Werkstatt, Vinothek Laibach & Seeger, Boris Ehinger - Hof Patisserie, Friede Bestattungen, Salon Haarkiste, Klaus Buddensiek, Damm Fahrzeuge GmbH, Aldi Süd, Müllers Grüner Garten, Lidl, Bioland-Gärtnerei Wiesenäcker, EDEKA, Pfisterer, Autohaus Schweikardt, Hofladen, aquaristikstudio starfish, Gemüsebau Schlicksupp, Gärtnerei Lenz, Obst und Gemüse, Gärtnerei Reinhard, Husaren Destillerie, Aldi Süd, Mix-Markt, Kiosk am Bismarckplatz, Auto-Stern GmbH, DM, Wacker+Döbler, Lidl, Netto Marken-Discount, Eisenwaren Michel, Schuh Weishaar, Tamara Lederwaren, Miros Hair-Point, REWE, Schuhmacherei Kalischko, Radsport Haritz, Marina Tours, Auto Jocker, Lidl, PSS, Walter Fell Elektronik, Weingut Adam Müller, Beauty Lounge, Hairteam Genial, Stather, Autohaus Bernhardt, Blumen Schilling GbR, Pfeiffer & May, A.T.U, auto+technik Gassert GmbH, Autohaus Peuker, Getränke Kern, Metzgerei Kailer, Bilgro Getränkemarkt, Hornbach, Weber, PC Ambulanz, Leimener Buchhandlung, Blumenladen, Röll GmbH, Motorrad Hester GmbH, Zoo-Shop, Mohr Baustoffe GmbH, Fahrrad Schmidt, Rebmann, Weirich Schlüsseldienst, Prodotti Italiani, Weinhaus Ott, Riegler, Raab Karcher, Autohaus Treiber, Autolackiererei Beck, Möbel-Kirsch, Aldi, Andreas Münkel & Frisöre, Kücherer's Käse Ecke, Lieblingsladen, Aldi, Mantei, Haardesign, Weizel, Bäckerei Bernauer, Schmuckatelier Mämecke & Rauen, Opel Zimmermann, Augenoptik Daniel Knapp, Jakobi, REWE Center, dm-drogerie markt, ALDI Süd, Bolz, Auto Plech, Hegehof, Aldi Süd, Kohlmann, dm-drogerie markt, Jelinek Automobile, Autohaus Peter Bollack, Avia +yes +55.9406104 -3.2945168, 55.9579671 -3.2416031, 55.9099988 -3.3187446, 55.9335740 -3.2140903, 55.9452785 -3.1910772, 55.9432977 -3.1864231, 55.9274173 -3.3075858, 55.9455180 -3.2068971, 55.9558479 -3.1868996, 55.9385133 -3.1977770, 55.9364081 -3.4051737, 55.9387724 -3.3554816, 55.9411930 -3.2700299, 55.9326592 -3.3137139, 55.9581549 -3.4146320, 55.9259159 -3.2475077, 55.9340106 -3.3057008, 55.9532891 -3.1942347, 55.9528215 -3.1966476, 55.9577481 -3.1745891, 55.9523152 -3.1996825, 55.9512080 -3.2029850, 55.9505306 -3.2060289, 55.9360698 -3.1801396, 55.9431462 -3.2098500, 55.9424957 -3.2178326, 55.9430404 -3.2209823, 55.9431450 -3.1777930, 55.9473014 -3.2066559, 55.9382479 -3.2288358, 55.9493199 -3.2107221, 55.9371375 -3.2021480, 55.9416831 -3.1813332, 55.9399477 -3.1799875, 55.9400554 -3.1800410, 55.9383873 -3.1947438, 55.9381286 -3.1934756, 55.9532580 -3.2007176, 55.9574289 -3.1707713, 55.9498239 -3.1879473, 55.9457420 -3.2062080, 55.9361540 -3.2091272, 55.9367921 -3.2080082, 55.9519655 -3.2019557, 55.9456455 -3.2052495, 55.9420725 -3.2685561, 55.9526727 -3.1905474, 55.9499553 -3.1886925, 55.9483500 -3.1918487, 55.9534890 -3.1892336, 55.9564328 -3.1863322, 55.9462158 -3.1854968, 55.9448431 -3.2048049, 55.9426898 -3.2037234, 55.9472487 -3.1909778, 55.9475118 -3.1893161, 55.9479802 -3.1868691, 55.9462178 -3.1884860, 55.9445944 -3.1837358, 55.9447090 -3.1838238, 55.9390205 -3.1796146, 55.9391727 -3.1798248, 55.9901108 -3.3958456, 55.9382045 -3.1790187, 55.9393085 -3.1795319, 55.9299097 -3.2092576, 55.9362743 -3.1942603, 55.9364425 -3.1941118, 55.9364298 -3.1945475, 55.9381921 -3.1929355, 55.9380470 -3.1915010, 55.9447005 -3.1877270, 55.9428356 -3.1884222, 55.9454993 -3.1874399, 55.9780196 -3.1734148, 55.9341605 -3.2104863, 55.9454998 -3.1881337, 55.9450783 -3.1887212, 55.9480103 -3.1837600, 55.9486091 -3.1831054, 55.9381703 -3.1892079, 55.9382556 -3.1704864, 55.9404236 -3.1696109, 55.9517036 -3.1735044, 55.9444953 -3.1872925, 55.9457242 -3.1982021, 55.9357656 -3.2102949, 55.9634754 -3.1970678, 55.9608923 -3.1970860, 55.9571867 -3.1639997, 55.9594665 -3.1504625, 55.9754036 -3.1792572, 55.9780588 -3.1803331, 55.9781026 -3.1779536, 55.9779864 -3.1732444, 55.9779219 -3.1732147, 55.9779507 -3.1735468, 55.9780888 -3.1742385, 55.9781653 -3.1742810, 55.9781945 -3.1744492, 55.9781519 -3.1745615, 55.9657634 -3.1762911, 55.9648030 -3.1769642, 55.9618573 -3.1797874, 55.9614066 -3.1810341, 55.9282699 -3.1971794, 55.9300538 -3.2006041, 55.9291787 -3.1994540, 55.9288531 -3.2399727, 55.9444072 -3.1838777, 55.9432514 -3.2138686, 55.9434340 -3.2137230, 55.9382190 -3.1871150, 55.9453045 -3.2316341, 55.9163168 -3.3178016, 55.9342480 -3.2099670, 55.9250348 -3.2099016, 55.9556996 -3.1881309, 55.9288850 -3.2096120, 55.9268034 -3.2091405, 55.9599520 -3.1873930, 55.9511210 -3.2277490, 55.9369030 -3.3008559, 55.9760995 -3.1730677, 55.9690233 -3.1728199, 55.9473560 -3.1862560, 55.9472450 -3.1859400, 55.9471464 -3.1859252, 55.9532957 -3.1984157, 55.9727023 -3.1754426, 55.9447520 -3.1840600, 55.9645394 -3.2127643, 55.9360200 -3.2090070, 55.9425943 -3.2128320, 55.9429739 -3.2134360, 55.9425021 -3.1970043, 55.9173034 -3.2149399, 55.9371649 -3.2025037, 55.9363800 -3.1997880, 55.9368530 -3.2004540, 55.9191956 -3.2130499, 55.8967480 -3.3189972, 55.9459933 -3.2231784, 55.9366703 -3.2079324, 55.9536450 -3.1936151, 55.9471310 -3.1906350, 55.9433250 -3.2363632, 55.9436340 -3.1927890, 55.9131941 -3.3215704, 55.9267768 -3.2325501, 55.9265880 -3.2362930, 55.9479871 -3.1862306, 55.9478974 -3.1862047, 55.9670709 -3.1749630, 55.9455865 -3.2342233, 55.9455978 -3.2346741, 55.9372962 -3.2491878, 55.9372632 -3.2492416, 55.9399014 -3.1712062, 55.9275895 -3.1645483, 55.9241128 -3.1723545, 55.9321255 -3.1800006, 55.9334491 -3.1664892, 55.9819333 -3.3968976, 55.9824701 -3.3972270, 55.9517351 -3.1896593, 55.9526200 -3.1872149, 55.9514550 -3.1958932, 55.9113288 -3.3221174, 55.9379636 -3.2403672, 55.9371924 -3.2382206, 55.9772777 -3.2461729, 55.9005835 -3.3187680, 55.9504487 -3.1855770, 55.9481787 -3.1818614, 55.9469357 -3.2061870, 55.9468336 -3.2067128, 55.9510529 -3.1895716, 55.9474405 -3.2025897, 55.9469842 -3.2055924, 55.9484546 -3.2033792, 55.9477666 -3.2049354, 55.9519571 -3.1962325, 55.9475027 -3.1864955, 55.9450666 -3.1879264, 55.9173837 -3.3145666, 55.9650759 -3.2031617, 55.9807357 -3.1771531, 55.9801105 -3.1784204, 55.9803382 -3.1778904, 55.9509532 -3.1703030, 55.9449293 -3.1531235, 55.9426622 -3.1700360, 55.9536680 -3.1591788, 55.9510831 -3.1696039, 55.9471411 -3.1970342, 55.9472696 -3.1965989, 55.9476455 -3.1953503, 55.9470721 -3.1972816, 55.9444791 -3.1881383, 55.9441090 -3.1902632, 55.9441665 -3.1899295, 55.9431021 -3.1885851, 55.9442010 -3.1896725, 55.9442375 -3.1894117, 55.9434877 -3.1870683, 55.9411521 -3.2175600, 55.9416473 -3.2167635, 55.9417417 -3.2166027, 55.9412822 -3.2173787, 55.9414839 -3.2157963, 55.9533340 -3.1882867, 55.9535985 -3.1880495, 55.9540940 -3.1883181, 55.9647669 -3.1742071, 55.9550392 -3.1900725, 55.9551557 -3.1901442, 55.9626030 -3.2336790, 55.9718556 -3.1742189, 55.9598707 -3.1836010, 55.9596341 -3.1834611, 55.9632066 -3.1785776, 55.9606353 -3.1818678, 55.9571142 -3.1859300, 55.9583267 -3.1846366, 55.9591802 -3.1838027, 55.9615406 -3.1806868, 55.9702777 -3.1722352, 55.9714725 -3.1735772, 55.9649663 -3.1768207, 55.9645028 -3.1902250, 55.9585203 -3.1837638, 55.9589264 -3.1833589, 55.9658761 -3.1755965, 55.9758546 -3.1700490, 55.9698878 -3.1717364, 55.9698710 -3.1719035, 55.9673457 -3.1743716, 55.9608269 -3.1809491, 55.9626007 -3.1788719, 55.9456193 -3.2178696, 55.9666564 -3.2048348, 55.9896602 -3.3989461, 55.9897226 -3.3892617, 55.9904018 -3.3860921, 55.9316272 -3.2648845, 55.9459387 -3.2172281, 55.9261122 -3.1387785, 55.9535442 -3.2058828, 55.9468426 -3.2042839, 55.9122985 -3.3155498, 55.9418064 -3.1502056, 55.9366240 -3.1802622, 55.9259084 -3.1931834, 55.9234603 -3.2480989, 55.9111503 -3.3240497, 55.9386253 -3.2265154, 55.9311720 -3.2951988, 55.9014700 -3.2230460, 55.9635314 -3.2337201, 55.9623235 -3.2362031, 55.9400736 -3.1717606, 55.9808127 -3.2595224, 55.9514755 -3.1782823, 55.9511672 -3.1780596, 55.9509125 -3.1777434, 55.9486026 -3.1924520, 55.9426281 -3.2128809, 55.9430915 -3.2136268, 55.9480325 -3.1815054, 55.9480039 -3.1817137, 55.9089361 -3.3201414, 55.9094368 -3.3204754, 55.9092872 -3.3205265, 55.9085739 -3.3187295, 55.9117444 -3.3246249, 55.9114205 -3.3241848, 55.9691533 -3.2784692, 55.9163294 -3.3174640, 55.9437913 -3.2075720, 55.9438322 -3.2058300, 55.9439569 -3.2059882, 55.9141250 -3.3250705, 55.9140139 -3.3251617, 55.9414930 -3.1764095, 55.9501068 -3.1901274, 55.9502048 -3.1904658, 55.9502374 -3.1901476, 55.9777985 -3.2431662, 55.9341031 -3.3103280, 55.9338808 -3.3104461, 55.9505032 -3.1770192, 55.9644079 -3.2126470, 55.9509705 -3.1758549, 55.9353260 -3.1974910, 55.9359590 -3.1944058, 55.8843050 -3.3391037, 55.9439543 -3.2071456, 55.9319254 -3.2512353, 55.9173812 -3.3147110, 55.9482625 -3.1920719, 55.9122188 -3.3171913, 55.9228018 -3.1364902, 55.9552280 -3.1478679, 55.9549996 -3.1445229, 55.9355007 -3.1026548, 55.9135725 -3.3140139, 55.9167553 -3.3178746, 55.9218026 -3.1745330, 55.9220250 -3.1740037, 55.9222596 -3.1746208, 55.9451505 -3.1872267, 55.9426518 -3.1008380, 55.9338262 -3.0919845, 55.9338797 -3.0920141, 55.9189185 -3.2647989, 55.9214872 -3.3034840, 55.9344336 -3.1226594, 55.9503499 -3.1810630, 55.9516064 -3.1841709, 55.9237248 -3.2366306, 55.9833943 -3.2415959, 55.9347829 -3.1798219, 55.9122663 -3.3242829, 55.9154236 -3.3172381, 55.9676214 -3.1664619, 55.9247393 -3.2762275, 55.9834316 -3.2423890, 55.9836698 -3.2462331, 55.9836844 -3.2504406, 55.9837405 -3.2490698, 55.9265395 -3.2441561, 55.9358853 -3.2101222, 55.9495537 -3.1836402, 55.9229086 -3.3978162, 55.9095509 -3.2288170, 55.9086019 -3.2094913, 55.9503720 -3.1813833, 55.9504108 -3.1802868, 55.9507721 -3.1811578, 55.9658637 -3.1761995, 55.9527684 -3.2488426, 55.9812296 -3.1751262, 55.9812432 -3.1752913, 55.9614848 -3.1812115, 55.9503954 -3.3029550, 55.9395842 -3.2047515, 55.9395958 -3.2047474, 55.9376968 -3.2030817, 55.9089416 -3.3164123, 55.9308207 -3.2096951, 55.9743623 -3.1997016, 55.9330618 -3.1065999, 55.9335680 -3.1067948, 55.9375488 -3.3118506, 55.9728634 -3.3514884, 55.9429037 -3.2078542, 55.9475883 -3.3646294, 55.9459800 -3.2223160, 55.9593810 -3.2409668, 55.9561231 -3.1987844, 55.9463571 -3.2082808, 55.9231651 -3.2343395, 55.9561721 -3.1565201, 55.9378482 -3.3327076, 55.9445564 -3.2071394, 55.9524023 -3.1867211, 55.9525000 -3.1872298, 55.9423834 -3.1891736, 55.9396025 -3.1913584, 55.9383523 -3.2265410, 55.9350508 -3.1940011, 55.9585188 -3.1644249, 55.9517703 -3.2028837, 55.9395810 -3.1916680, 55.9457233 -3.1826212, 55.9625044 -3.2362710, 55.9627903 -3.2341275, 55.9414710 -3.2036216, 55.9295687 -3.1756519, 55.9242094 -3.1728587, 55.9239552 -3.1723571, 55.9240756 -3.1746808, 55.9241838 -3.1735301, 55.9230650 -3.1714407, 55.9232656 -3.1716767, 55.9519102 -3.2244910, 55.9386901 -3.3172128, 55.9387953 -3.3165959, 55.9268426 -3.1666054, 55.9413339 -3.2710077, 55.9413445 -3.2708146, 55.9443702 -3.1853406, 55.9409652 -3.1851060, 55.9411294 -3.1853959, 55.9548088 -3.1927863, 55.9273713 -3.1874512, 55.9441079 -3.1919941, 55.9265863 -3.2092898, 55.9509401 -3.1790287, 55.9632358 -3.1796142, 55.9274324 -3.1996630, 55.9303417 -3.2637536, 55.9303636 -3.2638502, 55.9305298 -3.2635743, 55.9308144 -3.2639192, 55.9583318 -3.1187044, 55.9140621 -3.2840381, 55.9532656 -3.1152143, 55.9533715 -3.1154926, 55.9536925 -3.1156095, 55.9523964 -3.1125548, 55.9531590 -3.1065611, 55.9569152 -3.1168216, 55.9545977 -3.1418305, 55.9374032 -3.1711512, 55.9392787 -3.1786578, 55.9392916 -3.1784800, 55.9410201 -3.1806656, 55.9409384 -3.1805218, 55.9435127 -3.1836307, 55.9446441 -3.1839145, 55.9353259 -3.1974274, 55.9356823 -3.2014008, 55.9372592 -3.2021206, 55.9429165 -3.1831794, 55.9121573 -3.3216925, 55.9312185 -3.1718146, 55.9274598 -3.3076072, 55.9276450 -3.3080783, 55.9276631 -3.3081360, 55.9239739 -3.2513488, 55.9340161 -3.1746636, 55.9258469 -3.1648168, 55.9539972 -3.1945597, 55.9230518 -3.1726728, 55.9233383 -3.1720153, 55.9624754 -3.2326403, 55.9551794 -3.4015311, 55.9383407 -3.3187573, 55.9310730 -3.3145350, 55.9311471 -3.3142171, 55.9157480 -3.2864086, 55.9159814 -3.2865221, 55.9484210 -3.1872643, 55.9503683 -3.2078227, 55.9305617 -3.1761991, 55.9192762 -3.1670567, 55.9448310 -3.1949994, 55.9446376 -3.1965778, 55.9445589 -3.1947495, 55.9444142 -3.1965059, 55.9258509 -3.1647719, 55.9447377 -3.1971839, 55.9442766 -3.1978649, 55.9324266 -3.1585275, 55.9417129 -3.1849464, 55.9417884 -3.1851916, 55.9418282 -3.1853346, 55.9418526 -3.1852528, 55.9418744 -3.1849589, 55.9418899 -3.1847817, 55.9418905 -3.1855192, 55.9419227 -3.1854387, 55.9420262 -3.1854659, 55.9421747 -3.1855648, 55.9412750 -3.1446800, 55.9330745 -3.2607364, 55.9207513 -3.1600951, 55.9520027 -3.2062005, 55.9523984 -3.2038646, 55.9530497 -3.2000438, 55.9534470 -3.1976948, 55.9535975 -3.1968237, 55.9331086 -3.1362248, 55.9328125 -3.1366963, 55.9221224 -3.1339138, 55.9223185 -3.1339297, 55.9225101 -3.1339536, 55.9230177 -3.3792156, 55.9447090 -3.1977550, 55.9354932 -3.2368783, 55.9811288 -3.1900190, 55.9687011 -3.1415142, 55.9611799 -3.1900622, 55.9443966 -3.1836641, 55.9389888 -3.1717191, 55.9390958 -3.1739542, 55.9396811 -3.1731682, 55.9400456 -3.1761228, 55.9408960 -3.1768412, 55.9044458 -3.1561935, 55.9369677 -3.2108383, 55.9219280 -3.1788973, 55.9551528 -3.1962671, 55.9332627 -3.2293915, 55.9217192 -3.1545460, 55.9220531 -3.1536922, 55.9538687 -3.1922380, 55.9773393 -3.1724494, 55.9789535 -3.2110248, 55.9449763 -3.1994667, 55.9440570 -3.0985717, 55.9308970 -3.2761417, 55.9308699 -3.2764985, 55.9449994 -3.1905191, 55.9450146 -3.1904231, 55.9450298 -3.1903272, 55.9450449 -3.1902313, 55.9451338 -3.1906532, 55.9471706 -3.1875904, 55.9472333 -3.1877797, 55.9473065 -3.1867806, 55.9474310 -3.1878868, 55.9475351 -3.1877754, 55.9476704 -3.1869573, 55.9466232 -3.1903104, 55.9227217 -3.1743920, 55.9228810 -3.1754273, 55.9231124 -3.1754193, 55.9229249 -3.1782458, 55.9499694 -3.1797507, 55.9499757 -3.1798160, 55.9500637 -3.1794660, 55.9500938 -3.1794485, 55.9229601 -3.1790391, 55.9234202 -3.1790544, 55.9496737 -3.1953225, 55.9496093 -3.1936827, 55.9324201 -3.2283154, 55.9332542 -3.2297846, 55.9540835 -3.1946291, 55.9538883 -3.1945191, 55.9332338 -3.3059686, 55.9461074 -3.1908473, 55.9219330 -3.1748598, 55.9218016 -3.1748987, 55.9219960 -3.1749734, 55.9744239 -3.1691820, 55.9728088 -3.1726327, 55.9357218 -3.3185706, 55.9415743 -3.1747965, 55.9415635 -3.1757823, 55.9116844 -3.3222899, 55.9119672 -3.3224414, 55.9239634 -3.1724671, 55.9220936 -3.1720186 +11 +49.4039055 8.6875262 +55.9067239 -3.3259177 +49.4136008 8.7082611, 49.4112441 8.6903587, 49.4113237 8.6908643, 49.4110063 8.6891664, 49.4110500 8.6895186, 49.4108794 8.6883101, 49.4114098 8.6912991, 49.4111290 8.6899184, 49.4108382 8.6876904, 49.4108769 8.6888215, 49.4174692 8.7409450, 49.4174373 8.7409306, 49.4160829 8.7535172, 49.4161808 8.7538213, 49.4162711 8.7543843, 49.4161118 8.7531970, 49.4161148 8.7535052, 49.4161008 8.7532182, 49.4161967 8.7538178, 49.4163492 8.7543908, 49.4161886 8.7531881, 49.4162603 8.7544111, 49.4162703 8.7537989, 49.4096864 8.6726720, 49.4127535 8.6919848, 49.4129719 8.7021700, 49.4110222 8.6895550, 49.4110351 8.6877461, 49.4171759 8.7213230, 49.4110610 8.6883331, 49.4111755 8.6894519, 49.4111501 8.6899020, 49.4111830 8.6903927, 49.4108661 8.6877402, 49.4110485 8.6891464, 49.4113717 8.6902930, 49.4112504 8.6898546, 49.4112035 8.6898762, 49.4110984 8.6899270, 49.4112430 8.6903482, 49.4108892 8.6883359, 49.4111039 8.6891143, 49.4171375 8.7213480, 49.4110736 8.6894975, 49.4114116 8.6912936, 49.4108083 8.6883827, 49.4109282 8.6892056, 49.4109717 8.6887717, 49.4108567 8.6888332, 49.4112902 8.6908759, 49.4111257 8.6894742, 49.4113048 8.6903187, 49.4109698 8.6883042, 49.4111619 8.6890938, 49.4114203 8.6908213, 49.4109153 8.6887997, 49.4114811 8.6912678, 49.4113505 8.6908441, 49.4109887 8.6891763, 49.4109440 8.6877038, 49.4107928 8.6877659, 49.4100250 8.6811799, 49.4110496 8.6899485, 49.4100683 8.6817742, 49.4109674 8.6895199, 49.4129423 8.6936139, 49.4147216 8.7059968 +yes +Gaumont Parnasse, Gaumont Miramar, UGC Gobelins, Gaumont Gobelins, UGC Ciné-cité Bercy, Cinéma Louis Lumière, Pathé Beaugrenelle, MK2 Bibliothèque, Géode +Saughton Prison, Military Prison, Military Prison +48.8275543 9.1735007, 48.8317303 9.1734075, 48.7617346 9.1602369, 48.7789392 9.1250259, 48.7596919 9.2545814, 48.7755956 9.2787713, 48.7822418 9.1959176, 48.7297433 9.1126553, 48.7404705 9.2193208, 48.7701954 9.1501963, 48.8038663 9.2046417, 48.7817024 9.1785053, 48.7738605 9.1653114, 48.7745628 9.1768249, 48.7755661 9.1822665, 48.8075764 9.2215905, 48.7748791 9.2033224, 48.7855023 9.2078250, 48.7728984 9.2422225, 48.7603190 9.1527564, 48.8099398 9.1822005, 48.7835213 9.1904669, 48.7777675 9.1786644, 48.7836164 9.1815941, 48.8051636 9.2143167, 48.8075633 9.2031061, 48.8056941 9.2052973, 48.8046584 9.2081441, 48.7733571 9.1814780, 48.7935947 9.1983330, 48.8302021 9.2116521, 48.8031501 9.2176920, 48.7482479 9.1675385, 48.7803811 9.2504393, 48.8062716 9.1978670, 48.8137095 9.1121176, 48.7459605 9.1628840, 48.8142557 9.1680503, 48.7637176 9.1680843, 48.7829026 9.1869980, 48.7314704 9.1097357, 48.7803731 9.1800642, 48.7790681 9.1778545, 48.7789470 9.1790715, 48.8029161 9.0920608, 48.7103495 9.2034577, 48.8040371 9.2077185, 48.8299794 9.1677017, 48.8066438 9.2064316, 48.7625523 9.2679330, 48.7714772 9.1787823, 48.7739785 9.1452043, 48.7743064 9.1728145, 48.7607878 9.0913690, 48.8367097 9.2219462, 48.8053640 9.1717932, 48.8047872 9.1737641, 48.8071042 9.1709399, 48.7454315 9.2048052, 48.7750049 9.1779775, 48.7865061 9.0839294, 48.8347151 9.2143326, 48.8016329 9.2177209, 48.7813410 9.2686106, 48.7836705 9.1815229, 48.8414941 9.2304961, 48.7764847 9.1755588, 48.8076517 9.1765509, 48.8280349 9.1541290, 48.7735308 9.1564212, 48.8022186 9.2108011, 48.7173535 9.1056474, 48.8228892 9.2406244 +0 +471 +10 +Folies Bergère, Théâtre des Champs-Elysées, Salle Pleyel, La Maroquinerie, Bouffon théâtre, Opéra Bastille, Le Cabaret Sauvage, Théâtre National de l'Opéra Comique, Cité de la Musique +no +55.9383859 -3.2394291, 55.9455830 -3.1876260, 55.9100645 -3.3226374, 55.9361114 -3.1942444, 55.9164420 -3.3136067, 55.9814339 -3.1885738, 55.9821090 -3.1943241, 55.9743443 -3.1729943, 55.9690950 -3.1689790, 55.9881090 -3.4095046, 55.9881478 -3.4092417, 55.9360525 -3.2265524, 55.9710850 -3.2302781, 55.9574260 -3.1873226, 55.9629073 -3.2208615, 55.9472459 -3.1969515, 55.9278249 -3.1233349, 55.9018528 -3.2249445, 55.9194696 -3.2656157, 55.9200972 -3.2944514, 55.9183885 -3.2959833, 55.9636382 -3.1754565, 55.9739316 -3.1698802, 55.9416987 -3.1760841, 55.9412183 -3.1743024 +49.4107966 8.6943951, 49.4238658 8.7430940, 49.4121051 8.6860030, 49.4223501 8.6599302, 49.4223222 8.6598873, 49.4215332 8.6575985, 49.4210068 8.6578764, 49.4208003 8.6576284, 49.4224924 8.6561789, 49.3766836 8.6787719, 49.4236184 8.7425460, 49.4093716 8.6801667, 49.4092201 8.6801589, 49.4093634 8.6798229, 49.4096538 8.6804663, 49.4122205 8.6532679 +no +Cameo Picturehouse, Odeon, Filmhouse, Cineworld, Vue Cinema, Vue, Odeon, Dominion Cinema +no +392.00202441680125 +55.9456427 -3.1913637, 55.9330234 -3.2354551, 55.9257928 -3.2095594, 55.9687971 -3.1730857, 55.9801960 -3.1982556, 55.9605889 -3.1427782, 55.9788896 -3.2317323, 55.9588767 -3.2113228, 55.9614993 -3.3058797, 55.9334573 -3.1781344, 55.9057929 -3.2224600, 55.9360076 -3.2097027, 55.9654290 -3.1759121, 55.9460215 -3.2123225, 55.9466560 -3.2163830, 55.9448614 -3.2174899, 55.9424827 -3.2816610, 55.9713551 -3.2524770, 55.9504108 -3.2089957, 55.9505271 -3.1874272, 55.9529055 -3.1966423, 55.9530315 -3.1960873, 55.9399803 -3.2118878, 55.9398206 -3.2115635, 55.9422231 -3.2036959, 55.9427696 -3.2813759, 55.9600977 -3.2957282, 55.9592529 -3.2133182, 55.9453652 -3.1842234, 55.9268573 -3.2094072, 55.9807322 -3.1775607, 55.9591293 -3.1715337, 55.9592043 -3.1715261, 55.9575707 -3.2076016, 55.9262302 -3.1859988, 55.9148390 -3.1652277, 55.9376474 -3.1780108, 55.9414683 -3.1812245, 55.9331816 -3.2608758, 55.9415944 -3.1818222, 55.9416532 -3.1818741, 55.9484509 -3.1864893, 55.9603970 -3.2016509, 55.9325122 -3.1401027, 55.9641019 -3.1771391, 55.9414706 -3.2032792, 55.9174745 -3.1579689, 55.9542022 -3.2014648, 55.9626976 -3.1781014, 55.9699822 -3.1694976, 55.9330456 -3.2353604, 55.9714788 -3.1731260, 55.9298458 -3.2993946, 55.9655520 -3.2738904 +48.8305422 2.3206552 +812 and North Bridge, George IV Bridge, City of Edinburgh Bypass, Dean Bridge, Echline Roundabout, Forth Bridge, Yeamen Place, West Approach Road, Grove Street, Roseburn Path, Roseburn Path, Harrison Road, Scott Russell Aqueduct (Union Canal), Wester Hailes Road, Slateford Aquaduct, Clovenstone Road, Ravelrig Road, Union Canal Towpath, Lanark Road, Edinburgh to Glasgow via Shotts, Baberton Mains Hill, Gogar Station Road, Union Canal, Long Dalmahoy Road, Long Dalmahoy Road, Meadow Place Road, Dumbryden Road, The Forth Road Bridge, The Forth Road Bridge, Union Canal Towpath, Hermiston House Road, Hermiston House Road, Bridge Road, Water of Leith Walkway, Curriehill Road, Gogar Station Road, Gogar Station Road, Hailesland Park, Riccarton Mains Road, Boundary Road East, Water of Leith Walkway, Wester Hailes Road, Wester Hailes Road, Wester Hailes Road, Union Canal Towpath, Baird Road, Murrayburn Road, Kingsknowe Road North, Water of Leith Walkway, South Bridge, Ferry Road, Telford Path, Great Junction Street, Forth Road Bridge (Cycleway), Forth Road Bridge (Cycleway), Ferry Road, Falshaw Bridge, South Gyle Road, Blinkbonny Road, South Fort Street, Bonaly Road, Kirkgate, Turnhouse Road, St Mark's Path, Warriston Road, Newhaven Road, Silverknowes Road, Craighall Road, Craighall Road, Pilton Drive, Telford Road, Waterloo Place, Queensferry Road, Union Canal Towpath, Union Canal, Canonmills Bridge, Cemetery Road, Seafield Road, Broomhouse Road, Union Canal, Union Canal Towpath, Lanark Road, Nether Craigour, Old Dalkeith Road, Gilmerton Road, Clovenstone Road, Dreghorn Link, North Meggetland, Ravelston Dykes, Glasgow Road, Glasgow Road, Crewe Road Gardens, Braid Avenue, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, City of Edinburgh Bypass, City of Edinburgh Bypass, City of Edinburgh Bypass, City of Edinburgh Bypass, Edinburgh to Glasgow via Shotts, Water of Leith Walkway, Water of Leith Walkway, West Approach Road, East Coast Main Line, Lochend Road, Restalrig Railway Path, Restalrig Railway Path, Restalrig Railway Path, Ocean Drive, Ocean Drive, Newhaven Road, Blackford Avenue, Craigmillar Park, Little France Crescent, Milton Road East, Commercial Street, City of Edinburgh Bypass, City of Edinburgh Bypass, Torphin Road, South Trinity Road, Clark Road, Water of Leith Walkway, Deanhaugh Street, Fillyside Road, St Mark's Bridge, Water of Leith Walkway, City of Edinburgh Bypass, City of Edinburgh Bypass, City of Edinburgh Bypass, City of Edinburgh Bypass, Water of Leith Walkway, Swanston Road, Harrison Road, Slateford Road, West Approach Road, West Footbridge, Telford Path, North Ramp, Humbie, Humbie, Easter Road, Duddingston Road West, Duddingston Road West, Comiston Road, Belford Road, Milton Road East, Johnston Terrace, Slateford Road, Water of Leith Walkway, Water of Leith Walkway, Dumbryden Grove, Water of Leith Walkway, Walker's Wynd, Middle Footbridge, Crawford Bridge, Restalrig Road, Marrionville Road, Fillyside Road, West Approach Road, Lochside Avenue, Edinburgh Road, Roddinglaw Road, Water of Leith Walkway, Fife Circle Line, Queensferry Road, Balgreen Road, Boswall Drive, Shandon Place, Biggar Road, Bridge Road, City of Edinburgh Bypass, City of Edinburgh Bypass, Bonaly Road, Redford Bridge, The Innocent Railway, Forken Ford, Waverley Bridge, Coltbridge Avenue, Hope Lane, Granton Road, Wardie Road, Telford Road, Peffermill Road, Ferry Road, Portobello Road, Scout Bridge, City of Edinburgh Bypass, Gogar Roundabout, Biggar Road, Myreside Road, Brunstane Burn Walkway, Bridge Street, Fife Circle Line, Newcraighall Road, Gogarmuir Road, Newbridge Roundabout, Newbridge Roundabout, Ashley Terrace, Anderson Place, West Bowling Green Street, Station Road, Water of Leith Walkway, Clifton Road, Meggetland Bridge, Sandport Place, Mountcastle Drive North, Warriston Path, Corstophine Branch Railway Route, Chapelhill Road, Redhall Bank Road, Water of Leith Walkway, Calder Road, Calder Road, East Coast Main Line, East Coast Main Line, East Coast Main Line, Tron Square, Fishwives Causeway, East Coast Main Line, Sir Harry Lauder Road, East Coast Main Line, Lennox Row, Edinburgh Park Bridge, Edinburgh Park Bridge, Bothwell Street, Water of Leith Walkway, Poet's Glen, Oswald Road, Howe Dean Path, Dundee Street, Seafield Road, Water of Leith Walkway, Water of Leith Walkway, Newhaven Road, The Salvesen Bridge, Milton Road East, Portobello Road, London Road, South Ramp, Broughton Road, Echline Roundabout, Dell Road, Water of Leith Walkway, Water of Leith Walkway, Firrhill Drive, Adelphi Place, Corstophine Branch Railway Route, Sir Harry Lauder Road, Sir Harry Lauder Road, East Coast Main Line, Boathouse Bridge, Edinburgh Road, Ferry Road Path, Brunstane Road South, East Coast Main Line, Water of Leith Walkway, Hallyards Road, Blinkbonny Road, Oxgangs Road North, New Liston Road, Lochend Road, North Fort Street, Mayfield Road, The Loan, Haughhead Road, Water of Leith Walkway, Warriston Path, Bavelaw Gardens, Harlaw Road, Private Road, Private Road, Water of Leith Walkway, Water of Leith Walkway, Blinkbonny Road, Private Road, Harlaw Road, Glenbrook Road, Glasgow Road, Mid Liberton, Chesser Avenue, Lochend Butterfly Way, Water of Leith Walkway, Viewforth, Poet's Glen, Milton Farm Road, Myreton Drive, Queensferry Crossing, Queensferry Crossing, Dalmeny, Dalmeny, Gilmerton Dykes Street, Drum Street, Ferry Road, Leamington Lift Bridge, The Walk, Milton Farm Road, Milton Farm Road, Saint Bernards Bridge, Greendykes Road, Hermiston House Road, East Coast Main Line, East Coast Main Line, East Coast Main Line, East Coast Main Line, East Coast Main Line, Abbeyhill Turnback, Little France Drive, Brunstane Burn Walkway, Gogar Roundabout, Edinburgh to Glasgow via Shotts, Gowanhill Farm Road, Lanark Road, Howe Dean Path, Howe Dean Path, Water of Leith Walkway, Water of Leith Walkway, Old Burdiehouse Road, Union Canal Towpath, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Gracemount Drive, Brunstane Road, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Harvesters Way, Hopetoun Road, East Coast Main Line, East Coast Main Line, Forth Bridge, Water of Leith Walkway +55.9126235 -3.3200599, 55.9328025 -3.3133858, 55.9379190 -3.2748726, 55.9492741 -3.4056494 +yes +165 +49.4151455 8.7001711 +0 +49.4592060 8.7521809, 49.4031563 8.7288155, 49.4032526 8.7289874, 49.3732501 8.7471415, 49.4010156 8.7133745, 49.4012714 8.7099451, 49.4035347 8.7270885, 49.3798053 8.7238859, 49.3924119 8.7403556, 49.4353405 8.6845100, 49.4386622 8.6819436, 49.4198190 8.7257180, 49.4318454 8.7057299, 49.3784315 8.6932171, 49.4588749 8.7510057, 49.4085824 8.7204400 +83 +313 +E 50, E 05 +yes +48.8456181 2.3051375 +Hotel Schönberger Hof, Hotel Tannhäuser, Hotel Bayrischer Hof, Hotel Hackteufel, Hotel Perkeo, Hotel The Dubliner, Hotel Regina, Neckartal, Goldener Falke, Hotel Zur Alten Brücke, Hotel Central, Denner Hotel, Hotel Acor, Hotel Monpti, Hotel Goldene Rose, Hotel Nassauer Hof, Hotel am Rathaus, Hotel am Schloss, Hotel Kulturbrauerei Heidelberg, Hotel Villa Marstall, Hotel Goldener Hecht, Hotel Holländer Hof, Hotel Schnookeloch, Hotel Weisser Bock, Hotel Backmulde, Altstadt Hotel, Hotel Krokodil, Hiphotel Blume, Hotel Classic Inn, Hotel Diana, Gaestehaus der SRH, Exzellenz Hotel, Hotel Boarding House, Hotel Panorama, Hotel Schmitt, Hotel Heidelberg, Hotel Rose, Cafe Hotel Frisch +53.0289027 8.6383844, 53.0479116 8.6346100, 53.0289689 8.6384139, 53.0478728 8.6346395, 53.0478342 8.6346610 +1 +55.9524898 -3.1736491, 55.9525959 -3.1925077 +229 +yes +http://www.hotel-etab.de, http://www.marriott.de, http://www.auerstein.de/, http://www.hotels-in-heidelberg.de, http://www.gaestehaus-endrich.de, http://www.parkhotelatlantic.de, www.leonardo-hotels.com, www.bayrischer-hof-heidelberg.com, www.hackteufel.de, http://www.hotels-in-heidelberg.de, www.dublinerheidelberg.com, www.ibis-hotel.de, http://hotelneckartal.de, www.goldener-falke-heidelberg.de, www.ritter-heidelberg.de, www.europaeischerhof.com, http://www.hotel-elite-heidelberg.de, http://qube-hotel-heidelberg.de/, www.hotel-central-heidelberg.de, http://www.denner-hotel.de, www.hotel-acor.de, www.hotel-monpti.de, http://www.hotelamkornmarkt.de, http://www.nh-hotels.de/nh/de/hotels/deutschland/heidelberg.html, www.hotel-goldene-rose.de, www.hotel-nassauer-hof.de, http://www.hotels-in-heidelberg.de, http://www.hotels-in-heidelberg.de, http://www.heidelberger-kulturbrauerei.de/, www.villamarstall.de, www.hotel-goldener-hecht.de, www.hollaender-hof.de, http://www.schnookeloch.de, www.arthotel.de, www.weisserbock.de, http://www.gasthaus-backmulde-hotel.de, www.hip-hotel.de, www.hd-altstadt-hotel.de, www.krokodil-heidelberg.de, www.blume-hotel.de, www.hotel-classic-inn.de, www.garnihoteldiana.de, http://www.bergheim41.de, http://www.hotel-kranich-heidelberg.de, http://www.ihg.com/holidayinnexpress/hotels/de/de/heidelberg/hdbex/hoteldetail, http://www.molkenkur.de, www.gaestehaus.srh.de/, www.heidelbergsuites.com, www.lamm-heidelberg.de, http://www.heidelberg-astoria.de/, www.hirschgasse.de, http://www.crowneplaza-heidelberg.de/, http://www.exzellenzhotel.de, www.boardinghouse-hd.de, http://www.hotel-anlage.de, www.panorama-heidelberg.de, http://www.leonardo-hotels.de/deutschland-hotels/hotel-heidelberg/leonardo-heidelberg-hotel, www.hotel-schmitt-heidelberg.de, http://www.goldenerose-hd.de, http://www.hotelheidelberg.com, www.hotel-rose-heidelberg.com, http://www.hotel-neu-heidelberg.de, https://hotelo-heidelberg.de, http://www.hotel-ambiente-heidelberg.de, http://www.cafe-frisch.de, http://www.hoteldenriko-hd.de/, http://www.adler-heidelberg.de, http://www.zum-waldhorn.de, http://www.hotelbb.de/de/heidelberg +yes +marina, skate park, nature reserve, park, sports centre, playground, slipway, track, pitch, bingo, yes, picnic table, garden, swimming pool, hackerspace, dance, fitness centre, sauna, stadium, recreation ground, common, golf course, playing fields, walled garden, bicycle, miniature golf, club +0 +48.8718241 2.3676242, 48.8385750 2.3962263, 48.8367172 2.3924117, 48.8478582 2.3735429, 48.8483197 2.3742134, 48.8471402 2.3725177, 48.8342552 2.3021401, 48.8847020 2.3249240, 48.8555382 2.3054236, 48.8576438 2.3546760, 48.8343459 2.3060180, 48.8321878 2.3587424, 48.8604674 2.3454225, 48.8631582 2.3498973, 48.8633690 2.3462612, 48.8634242 2.3462790, 48.8527730 2.3537103, 48.8555040 2.3574259, 48.8402209 2.3517797, 48.8556266 2.3621786, 48.8550149 2.3631694, 48.8552064 2.3625817, 48.8537619 2.3675235, 48.8661285 2.3594408, 48.8521687 2.3444775, 48.8628432 2.3600037, 48.8638993 2.3606178, 48.8649528 2.3628140, 48.8820420 2.3678327, 48.8760311 2.3700774, 48.8551090 2.3306870, 48.8530169 2.3313456, 48.8521220 2.3374608, 48.8724761 2.3240966, 48.8801220 2.3241052, 48.8694700 2.3034453, 48.8517830 2.3177917, 48.8802074 2.3638169, 48.8495519 2.2685978, 48.8402456 2.2655127, 48.8764826 2.2833917, 48.8449589 2.3493182, 48.8449041 2.3498515, 48.8507370 2.3741124, 48.8830873 2.3292402, 48.8468451 2.3046139, 48.8775262 2.2949459, 48.8437516 2.3150319, 48.8608995 2.3677192, 48.8633817 2.3689965, 48.8639261 2.3703310, 48.8644002 2.3730285, 48.8515963 2.3430149, 48.8351935 2.3203079, 48.8716176 2.3411379, 48.8809546 2.3510669, 48.8238612 2.3234793, 48.8403734 2.3690860, 48.8908275 2.3460063, 48.8851558 2.3360026, 48.8943730 2.3432450, 48.8726535 2.3631861, 48.8570910 2.3727607, 48.8410914 2.3489485, 48.8446979 2.3491285, 48.8644111 2.3256564, 48.8406254 2.3514242, 48.8684086 2.3268250, 48.8864168 2.3442029, 48.8615684 2.3783425, 48.8485015 2.3421189, 48.8334129 2.3092754, 48.8914883 2.3506742, 48.8742191 2.3339210, 48.8743601 2.3329097, 48.8336139 2.2900906, 48.8332825 2.2894710, 48.8680574 2.3417881, 48.8260954 2.3467344, 48.8974737 2.3312683, 48.8884483 2.3329205, 48.8480831 2.4040261, 48.8335658 2.2868046, 48.8685514 2.3683075, 48.8846868 2.3416679, 48.8501155 2.2920291, 48.8625297 2.3799298, 48.8514439 2.3380763, 48.8648559 2.3969632, 48.8654719 2.2892837, 48.8452414 2.3792066, 48.8732268 2.3624203, 48.8579931 2.4032941, 48.8494723 2.2914581, 48.8848153 2.3229754, 48.8412254 2.3738186, 48.8752221 2.3038262, 48.8515203 2.3696022, 48.8254502 2.3502147, 48.8264077 2.3428246, 48.8279313 2.3307106, 48.8675264 2.4005840, 48.8219312 2.3422877, 48.8216005 2.3337522, 48.8256612 2.3136542, 48.8409791 2.2776487, 48.8333911 2.2872190, 48.8426051 2.2779253, 48.8235152 2.3304799, 48.8250198 2.3200783, 48.8717135 2.3253034, 48.8288129 2.3816584, 48.8450981 2.4030570, 48.8469580 2.4075011, 48.8641592 2.3663881, 48.8199882 2.3571489, 48.8516756 2.3382308, 48.8576256 2.3683245, 48.8688148 2.3556948, 48.8744006 2.3588789, 48.8598506 2.3506084, 48.8761280 2.3384291, 48.8437191 2.2967019, 48.8528548 2.3460331, 48.8529227 2.3457849, 48.8526334 2.3445601, 48.8525154 2.3452198, 48.8526532 2.3453925, 48.8961469 2.3382720, 48.8378379 2.3473550, 48.8280793 2.3157863, 48.8910108 2.3616762, 48.8813094 2.2861348, 48.8845891 2.2945570, 48.8850188 2.2939952, 48.8816270 2.2921775, 48.8489944 2.3476761, 48.8875090 2.2976290, 48.8853110 2.2955510, 48.8468258 2.4090233, 48.8397572 2.3497147, 48.8445679 2.3496772, 48.8776900 2.2917270, 48.8604075 2.3556155, 48.8796560 2.2864960, 48.8804350 2.2856120, 48.8806940 2.2861620, 48.8805790 2.2866490, 48.8412345 2.3039106, 48.8879180 2.3067900, 48.8753410 2.2939710, 48.8310217 2.3759342, 48.8311417 2.3739163, 48.8394477 2.3924756, 48.8770440 2.2917940, 48.8653444 2.2836290, 48.8495553 2.3786800, 48.8500160 2.3788251, 48.8465400 2.3811858, 48.8503285 2.3781973, 48.8481689 2.3925595, 48.8469569 2.3847760, 48.8789083 2.3856186, 48.8816483 2.3644514, 48.8777223 2.3322319, 48.8409660 2.3058020, 48.8446976 2.3221192, 48.8466518 2.3051464, 48.8799610 2.3291770, 48.8439032 2.3546898, 48.8847791 2.3925318, 48.8754373 2.3874893, 48.8537312 2.3325450, 48.8842800 2.3047290, 48.8804060 2.3026459, 48.8325941 2.3183175, 48.8595048 2.3686879, 48.8684376 2.3706209, 48.8795140 2.2896410, 48.8425076 2.3118940, 48.8490626 2.3191414, 48.8501266 2.3186024, 48.8831840 2.2988520, 48.8615576 2.3705429, 48.8660288 2.3652774, 48.8623144 2.3663745, 48.8708703 2.3415985, 48.8578247 2.3662529, 48.8666855 2.3458176, 48.8659951 2.3472997, 48.8408375 2.3874300, 48.8311227 2.3287719 +50 +yes +1.6159361655341584 +48.8360490 2.3873173 +Geschwister-Scholl-Schule, Kurpfalzschule, Willy-Hellpach-Schule, Pestalozzi-Schule, Julius-Springer-Schule, Julius-Springer-Schule, Johannes-Kepler-Realschule, Mönchhof-Grundschule, Freie Christliche Schule, Friedrich-Ebert-Grundschule, Hölderlin-Gymnasium, Musik- und Singschule, Geschwister-Scholl Grund- und Hauptschule, aula Sprachen, Ballettschule Lack, Elisabeth von Thadden-Schule, Waldorfschule Heidelberg, Bunsen-Gymnasium, Neckarschule, Heidelberg College, St. Raphael-Schulen, Internationale Gesamtschule Heidelberg, Primarstufe, Stauffenberg-Schule, Englisches Institut Heidelberg, Schwesternhaus, St. Raphael-Realschule, Theodor-Heuss-Realschule, Landhausschule Heidelberg, Heiligenbergschule, Eichendorff-Grundschule, Helmholtz-Gymnasium, Technikzentrum, Carl-Bosch-Schule, Emmertsgrundschule, Lehr- und Versuchsanstalt für Gartenbau, Graf von Galen-Schule, Fröbelschule, Marie-Baum-Schule, Waldparkschule, Gregor-Mendel-Realschule, Käthe-Kollwitz-Förderschule, Wilckensschule, Kurfürst-Friedrich-Gymnasium, Städtische Kita Hüttenbühl, Internationale Gesamtschule Heidelberg, Tiefburgschule, Heiligenbergschule, Grundschule der Elisabeth-von-Thadden-Schule, Grundschule Schlierbach, Steinbachschule, Johannes-Gutenberg-Schule, Ecole Pierre & Marie Curie Heidelberg, Heidelberg International School +13 +48.8507596 2.3670235, 48.8446948 2.3803356, 48.8330778 2.3268974, 48.8413460 2.3002445, 48.8920793 2.3444293, 48.8600412 2.3413119, 48.8667351 2.3405908, 48.8561321 2.3560085, 48.8460037 2.3443315, 48.8638757 2.3617724, 48.8506119 2.3322896, 48.8718061 2.3577803, 48.8830027 2.3819053, 48.8587211 2.3792589, 48.8774812 2.3175782, 48.8724832 2.3412640, 48.8653099 2.3994450, 48.8845147 2.3220414, 48.8325517 2.3555391, 48.8636568 2.2764260, 48.8573407 2.3204463, 48.8408215 2.3882583, 48.8564265 2.3525270 +reservation@hotelfolkestoneopera.com, reservation@hotelsydneyopera.com, info@pershinghall.com, front.ronceray@guichard.fr, resa@avalonparis.com, reservation@plazaopera.com, mod@hlparis.com, chariotdor@wanadoo.fr, contact@cordelia-paris-hotel.com, hotel@jardindevilliers.com, monceau@leshotelsdeparis.com, hotelroyalsaintmichel@wanadoo.fr, info@hotelchopin.fr, contact@hotelparispaix.com, reservation@hotel-istria-paris.com, labourdonnais@inwood-hotels.com, hotel@fertelmaillot.com, hotelacademie@gmail.com, info@hoteldutriangledor.com, contact@hoteldevenise.fr, hotel-diana@wanadoo.fr, hoteldesenlis@wanadoo.fr, hotel.rotary@free.fr, H0934@accor.com +96.220773587726725 +Thoraxklinik, Orthopädische Klinik, Medizinische Psychologie, Psychosomatische Ambulanz, Psychiatrische Klinik, Klinik für Kinder- und Jugendpsychiatrie, Psychiatrische Ambulanz, Kurpfalzkrankenhaus, Klinik für Allgemeine Innere Medizin und Psychosomatik, Physiotherapie Kathrin Kittelmann, Blutspendezentrale Heidelberg IKTZ, Kinderklinik, HIT, Zentrum für Schmerztherapie und Palliativmedizin - Überregionales Schmerzzentrum Heidelberg-Mannheim, Nierenzentrum, Chirurgische Klinik, NCT Heidelberg, Krankenhaus St. Vincentius, Institut für Medizinische Psychologie, Klinik für Kinder- und Jugendpsychiatrie - Tageszentrum für Jugendliche, St. Elisabeth, St. Elisabeth, Kliniken Schmieder Heidelberg, Salem, ATOS Klinik, Unfallchirurgie - Atos, Institut für Psychosomatische Kooperationsforschung und Familientherapie, Tropenmedizinische Ambulanz, Krehl-Klinik, Hautklinik, Frauenklinik und Hautklinik, Frauenklinik, Gemeinschaftspraxis Wittmann, St. Josefskrankenhaus, Bethanien-Krankenhaus, Kopfklinik, Kinderklinik, Kinderklinik, Krehl-Klinik, Rehabilitationsklinik Heidelberg-Königstuhl +yes +yes +yes +Dears Pharmacy +98 +yes +1998, 1989 +yes +yes +Le mur des Canuts, Lyon et sa région, terre de l’humanisme, Lyon et sa région, terre de l’humanisme, Fresque de Gerland, Fresque "Mur Démo", Camionnette Disques Wem, Mur de la Cour des Loges, Fresque "La renaissance", La fresque des Lyonnais, La Bibliotheque de la Cité "des écrivains en Rhône-Alpes", Boulevard de la B.D., Boulevard de la B.D., Boulevard de la B.D., Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Mayoud Honda, Fresque "Oullins Centre-ville", Fresque "Du Pont d'Oullins", Mur peint, Fresque, Fresque "La Route de la Soie", La "Fresque Végétale Lumière", Fresque des Vourlois", Fresque du Gymnase, Tag 16m2, Fresque "Les basiliques de Saint-Just", Fresque "La cité KAPS" and 45.7858145 4.8075880, 45.7779285 4.8279690, 45.7698700 4.7879340, 45.7698985 4.7880655, 45.7245886 4.8263897, 45.7196057 4.8008161, 45.7756330 4.7951910, 45.7649855 4.8287925, 45.7165371 4.8098566, 45.7681064 4.8280574, 45.7659207 4.8312600, 45.7759090 4.8015510, 45.7760780 4.7952180, 45.7764025 4.7984375, 45.7617643 4.8152072, 45.7621030 4.8160960, 45.7618195 4.8162683, 45.8437735 4.7340205, 45.7150814 4.8078204, 45.7175164 4.8098900, 45.7690470 4.7998735, 45.5828000 4.6317350, 45.7083270 4.8272787, 45.7723084 4.8215466, 45.7696009 4.8272315, 45.6584498 4.7736478, 45.7081288 4.7481631, 45.7677299 4.8312641, 45.8764848 4.8346205, 45.7559238 4.8169452, 45.7179757 4.8174971, 45.7180962 4.8187223 +782 and 48.0843405 1.8516661, 48.0842975 1.8516532, 48.3634720 1.4444762, 48.3633107 1.4440969, 48.3090898 0.8101983, 48.4391987 1.4310492, 48.4438257 1.2435743, 48.4551854 1.5391428, 48.4550506 1.5390148, 48.2034817 1.3965458, 48.7450953 1.3465073, 48.7450288 1.3465364, 48.2041014 1.8493980, 48.2999243 1.2898661, 48.2856652 1.2503363, 48.2806148 1.2225198, 48.2800124 1.6183789, 48.0715557 1.3225880, 48.1293202 1.8532335, 48.2693592 1.1573085, 48.3892052 1.4934020, 48.3895541 1.4932054, 48.4271283 1.5158383, 48.4272198 1.5156725, 48.1637493 1.2648026, 48.3576867 1.4338803, 48.2544911 1.5705116, 48.0964603 1.8517115, 48.4156457 1.4892388, 48.4162429 1.5034164, 48.4143664 1.5057059, 48.1825735 1.3757520, 48.2632013 1.5930746, 48.3532908 1.4265631, 48.1806158 1.3747250, 48.0675193 1.2906117, 48.2069451 1.8485104, 48.4781262 1.4607501, 48.4535767 1.2953431, 48.7640966 1.3132549, 48.2832224 1.6280084, 48.4383314 1.5246435, 48.4468667 1.4788401, 48.3902446 1.7298333, 48.1105340 1.3319487, 48.4632188 1.4998341, 48.4659463 1.5066438, 48.3785954 1.4828822, 48.4161166 1.4771368, 48.0740104 1.3616631, 48.4568587 1.4826879, 48.2469000 1.5444200, 48.4513703 1.4448174, 48.2401186 1.5169750, 48.4492426 1.4904726, 48.2486754 1.1179446, 48.2331152 1.4901573, 48.3203704 0.8052871, 48.4458166 1.2350335, 48.4433598 1.2420607, 48.4391932 1.4309164, 48.4570303 1.4509779, 48.1904387 1.3353826, 48.3223013 1.8632060, 48.2543249 1.5705688, 48.2757180 1.6234395, 48.1775018 1.3793555, 48.2040697 1.8494049, 48.3348687 0.8176667, 48.1872713 1.3202539, 48.2168785 1.4325393, 48.1962959 1.0911905, 48.1794824 1.2987246, 48.2106265 1.1624752, 48.2084923 1.1591442, 48.3218713 1.6682497, 48.4731048 1.6040268, 48.4894113 1.5380927, 48.1963001 1.0981460, 48.1968889 1.0975920, 48.1947865 1.0689477, 48.1935748 1.0698455, 48.1871866 1.0458453, 48.1871223 1.0509226, 48.1900625 1.0581630, 48.2106023 1.1100587, 48.1995584 1.1160835, 48.2004834 1.1155760, 48.2010401 1.1152619, 48.2059666 1.1275207, 48.2078779 1.1355348, 48.2084109 1.1207323, 48.2103535 1.1013451, 48.2100796 1.1121090, 48.2096161 1.1402341, 48.2120405 1.1473697, 48.2121332 1.1532022, 48.2125462 1.1593680, 48.2098871 1.0867530, 48.2334847 1.0399341, 48.2333927 1.0401108, 48.2322909 1.0341270, 48.1862854 1.0086807, 48.1727366 0.9992126, 48.1724930 0.9979646, 48.1729260 1.0214302, 48.1842903 1.0479504, 48.1871074 1.0206582, 48.1868218 1.0387459, 48.2287753 1.4736893, 48.3294431 1.3825318, 48.5275940 1.0273486, 48.4645219 1.4828255, 48.4691914 1.5145482, 48.4615172 1.4943654, 48.4374840 1.4150964, 48.4520187 1.4458254, 48.4460522 1.4725078, 48.4465773 1.4671375, 48.4460603 1.4673988, 48.4439314 1.4657609, 48.4542788 1.4483370, 48.4614819 1.4553185, 48.4381387 1.4532784, 48.4424128 1.4516460, 48.2988415 1.8615469, 48.3288402 0.7988397, 48.3346487 0.8179752, 48.8598809 1.4038341, 48.4465792 1.5307528, 48.4521257 1.4838056, 48.4584810 1.4876866, 48.4330586 1.4924879, 48.1806344 1.3817390, 48.1833120 1.3838413, 48.4454252 1.4926736, 48.4469583 1.4918402, 48.4469302 1.4936845, 48.4469151 1.4933052, 48.4546304 1.4839991, 48.4624190 1.4819697, 48.4640214 1.4831040, 48.4631220 1.4841448, 48.4592278 1.4898047, 48.4588196 1.4907004, 48.4529511 1.4903462, 48.5498237 1.0300964, 48.1935903 1.3917793, 48.2257416 1.1758624, 48.1964900 1.3716225, 48.1931395 1.3528577, 48.1577871 1.2501317, 48.2082347 1.1898048, 48.2214721 1.4461878, 48.1943683 1.3608186, 48.2087707 1.1646492, 48.2731424 1.6079429, 48.4424555 1.4942771, 48.1720956 1.0168141, 48.1830829 0.9645850, 48.1859763 0.9810924, 48.1862491 0.9967439, 48.1823985 0.9559790, 48.1780392 1.8542274, 48.4393078 1.5002210, 48.4419654 1.4987456, 48.4436044 1.4961478, 48.3618146 1.1357971, 48.9173361 1.4926155, 48.7150723 1.3677673, 48.1903936 0.9341271, 48.1909690 0.9328489, 48.1718135 0.9804996, 48.1718313 0.9720534, 48.1722624 0.9651040, 48.1720555 0.9492426, 48.1735595 0.9562174, 48.2206300 0.9624339, 48.2093787 0.9308883, 48.1980415 1.8512274, 48.1895642 1.8532898, 48.1093173 1.3374097, 48.2318147 1.8488774, 48.7395328 1.3689272, 48.7418660 1.3757489, 48.8201457 1.3593555, 48.8612797 1.4229397, 48.4543906 1.4904051, 48.4537794 1.4911526, 48.4538725 1.4910121, 48.1807804 1.3891995, 48.1820987 1.3888362, 48.1798285 1.3871839, 48.1798161 1.3890830, 48.2136652 1.2309553, 48.2105588 1.2490264, 48.2153970 1.0554300, 48.2132553 1.0632878, 48.2176213 1.0391332, 48.2171034 1.0130321, 48.2308790 1.0204333, 48.2241358 0.9796079, 48.1961479 1.0898435, 48.2031035 0.8932700, 48.1672194 0.9358151, 48.3384590 1.8674987, 48.4281982 1.7642604, 48.4486735 1.7908682, 48.4508879 1.7860990, 48.2394174 1.0726545, 48.1851974 1.0426517, 48.7601426 1.5150503, 48.2095275 1.1638064, 48.2086614 1.1654995, 48.2087279 1.1647970, 48.4708045 1.4931683, 48.2057211 1.1797547, 48.2080503 1.1698283, 48.2086619 1.1660235, 48.4438562 1.4656888, 48.3983559 1.4872365, 48.4914849 1.5904823, 48.4934615 1.6778847, 48.5115889 1.7632885, 48.6004922 1.6755514, 48.4656778 1.5717267, 48.4866511 1.6594969, 48.7374396 1.4154121, 48.5682771 1.5933435, 48.7212106 1.4179156, 48.7019630 1.3445490, 48.7082444 1.4239005, 48.2802436 1.8585158, 48.2654306 1.8528604, 48.5620146 1.0299899, 48.1423995 1.9132167, 48.0792039 1.1332806, 48.0769466 1.1403842, 48.0760918 1.1413983, 48.0886169 1.1227140, 48.0887950 1.1232395, 48.0770609 1.1248878, 48.0690723 1.1303498, 48.0879298 1.1206693, 48.0878998 1.1207246, 48.0861427 1.1228627, 48.0861026 1.1228238, 48.0911631 1.1217791, 48.0969602 1.1259293, 48.0957659 1.1434943, 48.0810642 1.3318138, 48.0840192 1.3389711, 48.0359084 1.2736162, 48.0878308 1.3301961, 48.0739971 1.3213741, 48.0601380 1.3451955, 48.0865275 1.3528589, 48.0677895 1.2950501, 48.0954226 1.3365682, 48.4516192 1.4901383, 48.4499351 1.4902463, 48.4509817 1.4916513, 48.4482826 1.4911159, 48.4445900 1.4937793, 48.4438310 1.4959260, 48.4448610 1.4955440, 48.4500930 1.4913781, 48.4336756 1.4929244, 48.4585193 1.4909708, 48.4616415 1.4832882, 48.4607283 1.4839313, 48.4624299 1.4819197, 48.5071496 1.4635719, 48.4555452 1.7960234, 48.4539982 1.7981341, 48.4619596 1.8122235, 48.6307434 1.4126334, 48.2632102 1.7617362, 48.3573699 1.6104690, 48.2400520 1.0829658, 48.4290111 1.9028543, 48.1358374 0.9775138, 48.1363663 0.9815642, 48.7427023 1.5888652, 48.7727834 1.5546424, 48.7830689 1.5755487, 48.7829459 1.5755817, 48.1377511 0.9875665, 48.6744694 1.3835015, 48.7508848 1.4455038, 48.7507738 1.4455127, 48.7621381 1.4131696, 48.7540891 1.4568896, 48.4987577 1.6903064, 47.9906514 1.2545075, 47.9962698 1.2597897, 47.9861315 1.2470133, 48.2483407 1.8515642, 48.2485162 1.8513487, 48.2133566 1.8471773, 48.2400078 1.8507771, 48.8349270 1.3651623, 48.3617964 1.8792363, 48.4073062 1.8953031, 48.3532037 1.8740723, 48.4143368 1.8974174, 48.4451318 1.7437038, 48.3761868 1.7140004, 48.3288262 1.6733771, 48.3559260 1.6932028, 48.6433866 1.4033215, 48.7170492 1.3771616, 48.8436645 1.3810541, 48.7317495 1.3627510, 48.7347146 1.3628805, 48.4794759 1.4610359, 48.4795088 1.4608291, 47.9871247 1.2489563, 48.2006359 0.8817417, 48.3903413 1.7296169, 48.4383703 1.7739517, 48.4357387 1.7264684, 48.6044852 1.6764659, 48.6047343 1.6776367, 48.6056601 1.6786023, 48.6076342 1.6811250, 48.6094321 1.7073012, 48.7895005 1.5760710, 48.7368700 1.3836098, 48.8616552 1.4175168, 48.8658673 1.4291425, 48.8431789 1.3815951, 48.8627873 1.4400855, 48.7644535 1.3137446, 48.1436327 1.0479263, 48.1446398 1.0438524, 48.3784586 1.8879329, 48.5327602 1.4551824, 48.5964679 1.6344924, 48.2943438 1.2784344, 48.1238755 1.1830063, 48.1203418 1.1789078, 48.2646069 1.1464120, 48.4665860 0.9721291, 48.4680964 0.9833235, 48.4692749 0.9917513, 48.9178051 1.5163564, 48.7687669 1.4010983, 48.4432797 1.4586460, 48.4263803 1.4345241, 48.4263450 1.4343908, 48.2783751 1.2038212, 48.2785049 1.2038943, 48.2859335 1.2109996, 48.3028844 1.2394689, 48.3028596 1.2394869, 48.2330824 1.1841121, 48.3909110 1.2074193, 48.8165842 1.5626415, 48.8227708 1.5562821, 48.8230971 1.5568726, 48.5892604 1.5785545, 48.5860031 1.5774820, 48.1499364 1.3998178, 48.1511375 1.4008810, 48.1283145 1.1895873, 48.2687237 1.7554738, 48.2687963 1.7555788, 48.7607313 1.3283222, 48.1200348 1.5164207, 48.7571201 1.0593963, 48.7630168 1.2330016, 48.7619868 1.2307431, 48.7697041 1.1973535, 48.7594087 1.2197692, 48.7690072 1.1998653, 48.7633865 1.2243158, 48.7568745 1.4817572, 48.2758000 1.6233580, 48.2758830 1.6233161, 48.2757436 1.6234125, 48.2757673 1.6233850, 48.8413849 1.4922311, 48.7618946 1.1344644, 48.6035213 1.6962877, 48.6038889 1.6958545, 48.7492012 1.4084464, 48.7508203 1.4157200, 48.7492740 1.4083049, 48.7509154 1.4156900, 48.7459726 1.3960136, 48.7456448 1.3952102, 48.0758120 1.1250113, 48.0759294 1.1249783, 48.4420751 1.4989362, 48.4556997 1.4915385, 48.4706119 1.4894945, 48.5962086 1.6154260, 48.9189505 1.4642931, 48.5800278 1.5814336, 48.5883483 1.5791331, 48.5850681 1.5781057, 48.5817149 1.5806846, 48.5828744 1.5864487, 48.5846561 1.5791234, 48.5852779 1.5783029, 48.5857035 1.5781314, 48.5845146 1.5783536, 48.5785051 1.5814940, 48.5781910 1.5842706, 48.5855768 1.5840847, 48.5891156 1.5937111, 48.5796458 1.5936179, 48.5887061 1.5730446, 48.6303549 1.5123061, 48.4858586 1.5268474, 48.7387647 1.3344359, 48.5612943 1.5099262, 48.5562795 1.5088278, 48.5417197 1.4933979, 48.5629140 1.5082652, 48.5686432 1.5014794, 48.3402518 1.3474079, 48.3193902 1.3433670, 48.3144491 1.3216928, 48.3330130 1.3910728, 48.6458105 1.5425043, 48.6500512 1.5445534, 47.9960173 1.2330143, 48.0110352 1.2352850, 48.4783101 1.6303488, 48.4678695 1.5800519, 48.5098261 1.7453193, 48.3484299 1.6877878, 48.0663212 1.3379550, 48.0663284 1.3379163, 48.0866822 1.3250947, 48.1932315 0.8532599, 48.4860872 1.0589912, 48.4766655 1.1449504, 48.4516866 1.2313903, 48.4157788 1.4872052, 48.4156604 1.4871839, 48.4161089 1.4788356, 48.4159687 1.4788327, 48.4158166 1.4827704, 48.4159441 1.4828103, 48.4237280 1.4843067, 48.4350351 1.4850487, 48.3693543 1.2313848, 48.3777903 1.2321079, 48.4242698 1.2319935, 48.4264831 1.2401531, 48.4270678 1.2534320, 48.4292906 1.2736696, 48.4517014 1.4862557, 48.4495182 1.4936334, 48.4832358 1.0361872, 48.5042208 1.0253641, 48.4794856 1.0191569, 48.4791294 1.0197163, 48.4640670 1.1943546, 48.4654472 1.1961144, 48.4522688 1.4910912, 48.1385666 1.2067109, 48.2898283 1.2665462, 48.0755319 1.0697377, 48.4492264 1.2905124, 48.5081392 1.0206523, 48.4433783 1.2104106, 48.4798510 1.1597339, 48.4459606 1.2314837, 48.6762682 1.4636271, 48.6769680 1.4741718, 48.5153087 0.9895117, 48.4737212 1.1610821, 48.4918766 1.5327846, 48.6446760 0.9342008, 48.4478748 1.3303765, 48.6683749 1.4977366, 48.3115381 0.8206080, 48.3244094 0.8089485, 48.3168358 0.7971910, 48.3178707 0.7961281, 48.1027073 1.8514071, 48.7422926 1.3190808, 48.7422202 1.3192275, 48.1723267 1.2834454, 48.4436345 1.9087713, 48.3688085 1.4580360, 48.3734994 1.4701515, 48.4110738 1.7493703, 48.4458999 1.7865767, 48.5031177 1.6190068, 48.4997925 1.6114044, 48.5141816 1.6446348, 48.5962346 1.4239362, 48.1994847 1.3819149, 48.7512742 1.4156030, 48.7528348 1.4506420, 48.7467213 1.4173998, 48.7494643 1.4300620, 48.7517949 1.4184551, 48.7512294 1.4156355, 48.7517671 1.4184670, 48.7317079 1.4184431, 48.7335716 1.4179845, 48.7297375 1.3668655, 48.7297739 1.3668588, 48.7298138 1.3668454, 48.2692940 1.2680420, 48.2579330 1.2720985, 48.2687176 1.2673716, 48.2623531 1.2806883, 48.2789350 1.2539336, 48.2586986 1.2748530, 48.2743759 1.2567214, 48.2901657 1.3180781, 48.2761530 1.2744818, 48.7148629 1.4327769, 48.7279706 1.3889336, 48.7368287 1.3836394, 48.7367890 1.3836644, 48.7453826 1.3949182, 48.6353577 1.5607061, 48.7745640 1.3465635, 48.3148678 0.7992779, 48.5170758 0.9794413, 48.7676694 1.2452570, 48.7675029 1.2442214, 48.7666867 1.2454401, 48.7465105 1.3828935, 48.7465709 1.3830411, 48.7460069 1.3895928, 48.7156463 1.3528618, 48.7156000 1.3527496, 48.7426978 1.3459456, 48.7342605 1.3866265, 48.0942882 1.5129314, 48.1345344 0.9722245, 48.5922934 0.9086983, 48.3875106 1.1212244, 48.1923446 1.9394272, 48.1525637 1.5978859, 48.1208939 1.5450524, 48.1090935 1.4823789, 48.1099283 1.5068616, 48.1298953 1.5697194, 48.1156238 1.4399875, 48.1101000 1.4290050, 48.1497723 1.6558110, 48.1540567 1.6317286, 48.6547891 1.2565297, 48.6506087 1.2157617, 48.7029078 1.3434978, 48.6780679 1.3176014, 48.6347988 0.9888437, 48.6503313 1.0131508, 48.3470506 1.6269478, 48.4468210 1.4789483, 48.4661452 1.4851003, 48.4506123 1.4902125, 48.4438475 1.4944572, 48.4430415 1.4980146, 48.4437026 1.4969840, 48.4438425 1.4973813, 48.4431599 1.4974032, 48.4435666 1.4962377, 48.2846129 1.6271386, 48.2350735 1.4972417, 48.4301542 1.5048448, 48.4308430 1.5009460, 48.7378384 1.3688163, 48.7392265 1.3684309, 48.6078989 1.6842001, 48.6072486 1.6864655, 48.6079177 1.6841421, 48.6013821 1.7031632, 47.9830400 1.2822379, 47.9856150 1.3046469, 47.9778729 1.2582126, 47.9763162 1.3275978, 48.7605248 1.5700487, 48.7597408 1.5660632, 48.2078487 1.3291624, 48.1950572 1.3644793, 48.1920857 1.3709906, 48.2067039 1.2896780, 48.2069438 1.3077202, 48.2105979 1.2932806, 48.2071428 1.2858757, 48.2063321 1.2877849, 48.2835395 1.1526792, 48.4223116 1.2140030, 48.5056070 1.3493083, 48.4871113 1.0118267, 48.4939038 1.0189164, 48.4951571 1.0185534, 48.5259370 1.6932314, 48.5244027 1.6915195, 48.5241091 1.6857225, 48.5273462 1.6732396, 48.5240703 1.6856085, 48.4470362 1.4960230, 48.2835308 1.2394677, 48.6864403 1.0667075, 48.6951770 1.0795658, 48.7108230 1.0904478, 48.4364319 1.4796590, 48.4382006 1.4730734, 48.4356740 1.4825941, 48.4864109 1.7406431, 48.4899994 1.7323690, 48.4345946 1.4946684, 48.5211991 1.7449406, 48.5217091 1.7446465, 48.5218901 1.7482961, 48.5176104 1.7101297, 48.5179251 1.6992604, 48.4456719 1.4947115, 48.3288874 1.6516814, 48.4640366 1.4830712, 48.4519148 1.4837828, 48.4521306 1.4837572, 48.4521410 1.4836582, 48.5762793 1.5041534, 48.3855704 1.2336704, 48.3962604 1.2154725, 48.4975346 1.0581854, 48.6032959 1.6731815, 48.3861744 1.4775925, 48.7156819 0.8768385, 48.7744560 1.3466811, 48.7663261 1.1583551, 48.7613934 1.2297404, 48.4896866 1.5836171, 47.9764661 1.2539912, 47.9865523 1.2477317, 47.9967724 1.2406049, 48.4656554 0.9647699, 48.4644066 0.9558621, 48.4684584 0.9854847, 48.7628494 1.2379548, 48.3506384 0.8488761, 48.6705305 0.8481390, 48.6726304 0.8494744, 48.6826076 0.8796183, 48.6789010 0.8649456, 48.6816088 0.8754314, 48.5190320 1.6822693, 48.1973693 1.0909382, 48.6517761 1.5264590, 48.6486478 1.5432671, 48.6506818 1.5361150, 48.2845737 1.6271678, 48.2867483 1.6317388, 48.2867953 1.6317369, 48.4991412 1.0150051, 48.2844343 1.2444990, 48.2845456 1.2443652, 48.8482297 1.4642728, 48.1838759 1.9348874, 48.4335596 1.4928141, 48.5925868 1.5964286, 48.4681980 1.4830354, 48.4679911 1.4837896, 48.4452476 1.4839687, 48.4453889 1.4841059, 48.6065464 1.4208198, 48.4621636 1.4853747, 48.5023629 1.1954425, 48.4801501 1.1295117, 48.0273443 1.2560778, 48.4544846 1.2967169, 48.4569679 1.2921342, 48.6518352 1.2078313, 48.4791682 1.5045178, 48.4791482 1.5045576, 48.4165775 1.3554040, 48.1802252 1.3840426, 48.5202181 1.7651459, 48.2168699 1.3818879, 48.2923823 0.8237943, 48.5489066 1.4929922, 48.5452650 1.4735723, 48.5260206 1.4884351, 48.6979977 0.9481873, 48.2080683 1.4122761, 48.1435030 1.4020243, 48.1456024 1.2171474, 48.1073837 1.1664543, 48.1521740 1.2310816, 48.2057749 1.2041528, 48.3018738 1.0823795, 48.1302205 1.0827274, 48.7356230 1.3421397, 48.7344321 1.3446478, 48.7355864 1.3422558, 47.9923659 1.2324185, 48.1820644 1.3847079, 48.1827878 1.3874679, 48.1808744 1.3857293, 48.1831851 1.3862120, 48.1818889 1.3785094, 48.3918449 1.1738434, 48.3925420 1.1776216, 48.3922627 1.1758879, 48.3935885 1.1826232, 48.3033115 1.2413287, 48.3033413 1.2413118, 48.2996998 1.2392848, 48.2971299 1.2450944, 48.2969691 1.2433349, 48.2929930 1.2440721, 48.2508997 1.3145256, 48.2096402 1.3464606, 48.2089588 1.3462590, 48.3948106 1.2056395, 48.3228600 1.2242280, 48.3843620 1.2192812, 48.3967433 1.2191649, 48.3571979 1.2290984, 48.3459692 1.2343988, 48.3507879 1.2307415, 48.0581930 1.6146145, 48.3398197 1.1533005, 48.3426300 1.1767847, 48.3430034 1.1830786, 48.3162632 1.1975847, 48.3141275 1.2138854, 48.3111882 1.2177123, 48.3405978 1.1148765, 48.3190842 1.1455771, 48.3298151 1.1265662, 48.3159454 1.1490037, 48.3236823 1.1050243, 48.3234195 1.1077313, 48.3143590 1.1320817, 48.3077813 1.1464594, 48.2969161 1.0635728, 48.2949570 1.0980591, 48.2493747 1.3214720, 48.4453734 1.2417600, 48.4466196 1.2421721, 48.3274753 1.0502716, 48.3394223 1.0562486, 48.3260051 1.0650136, 48.3094305 1.0935407, 48.2975177 1.0961476, 48.2958931 1.0981971, 48.2852393 1.2102351, 48.2637294 1.0964816, 48.2629211 1.0989440, 48.2633169 1.1138636, 48.2531858 1.1912039, 48.2583755 1.2154481, 48.2283113 1.3639843, 48.2295675 1.3697276, 48.2316442 1.3657649, 48.2209826 1.3762353, 48.3323300 1.3288791, 48.4621308 1.1909610, 48.1963451 1.3821766, 48.7445525 1.0461831, 48.7317320 1.0190795, 48.7646261 1.1483258, 48.6481986 1.5304508, 48.6526936 1.5255837, 48.6538123 1.5210418, 48.6008347 1.6649601, 48.5995716 1.6763886, 48.6010618 1.6647018, 48.3271155 0.8171662, 48.0842385 1.3611118, 48.0943510 1.3474342, 48.0598249 1.3375592, 48.1103175 1.3384734, 48.1122911 1.3416004, 48.1071474 1.3360773, 48.1108405 1.3301120, 48.1785145 1.3862871, 48.5837204 1.4286469 +142889 +no +55.9482698 -3.1839334 +49.4183639 8.7570400 +yes +55.9456427 -3.1913637, 55.9330234 -3.2354551, 55.9257928 -3.2095594, 55.9687971 -3.1730857, 55.9801960 -3.1982556, 55.9605889 -3.1427782, 55.9788896 -3.2317323, 55.9588767 -3.2113228, 55.9614993 -3.3058797, 55.9334573 -3.1781344, 55.9057929 -3.2224600, 55.9360076 -3.2097027, 55.9654290 -3.1759121, 55.9460215 -3.2123225, 55.9466560 -3.2163830, 55.9448614 -3.2174899, 55.9424827 -3.2816610, 55.9713551 -3.2524770, 55.9504108 -3.2089957, 55.9505271 -3.1874272, 55.9529055 -3.1966423, 55.9530315 -3.1960873, 55.9399803 -3.2118878, 55.9398206 -3.2115635, 55.9422231 -3.2036959, 55.9427696 -3.2813759, 55.9600977 -3.2957282, 55.9592529 -3.2133182, 55.9453652 -3.1842234, 55.9268573 -3.2094072, 55.9807322 -3.1775607, 55.9591293 -3.1715337, 55.9592043 -3.1715261, 55.9575707 -3.2076016, 55.9262302 -3.1859988, 55.9148390 -3.1652277, 55.9376474 -3.1780108, 55.9414683 -3.1812245, 55.9331816 -3.2608758, 55.9415944 -3.1818222, 55.9416532 -3.1818741, 55.9484509 -3.1864893, 55.9603970 -3.2016509, 55.9325122 -3.1401027, 55.9641019 -3.1771391, 55.9414706 -3.2032792, 55.9174745 -3.1579689, 55.9542022 -3.2014648, 55.9626976 -3.1781014, 55.9699822 -3.1694976, 55.9330456 -3.2353604, 55.9714788 -3.1731260, 55.9298458 -3.2993946, 55.9655520 -3.2738904 +48.7755956 9.2787713 +Boulogne-Billancourt, Arcueil, Montmagny, Le Chesnay, Chatou, Gentilly, Palaiseau, Antony, Viroflay, Franconville, Garches, Clichy, Verrières-le-Buisson, Le Plessis-Robinson, Vélizy-Villacoublay, Saint-Leu-la-Forêt, Savigny-sur-Orge, Le Vésinet, Enghien-les-Bains, Nanterre, Épinay-sur-Seine, Morangis, Deuil-la-Barre, Montesson, Bois-Colombes, La Garenne-Colombes, Montmorency, Châtillon, Sannois, Neuilly-sur-Seine, Meudon, Bourg-la-Reine, La Celle-Saint-Cloud, Malakoff, Massy, Houilles, Courbevoie, Gennevilliers, Sceaux, Suresnes, Montigny-lès-Cormeilles, L'Haÿ-les-Roses, Chaville, Saint-Gratien, Argenteuil, Sartrouville, Cormeilles-en-Parisis, Issy-les-Moulineaux, Longjumeau, Rueil-Malmaison, Fresnes, Saint-Cloud, Châtenay-Malabry, Domont, Soisy-sous-Montmorency, Marly-le-Roi, Ermont, Cachan, Bezons, Carrières-sur-Seine, Fontenay-aux-Roses, Villetaneuse, Vanves, Versailles, Maisons-Laffitte, Ville-d'Avray, Bagneux, Levallois-Perret, Chilly-Mazarin, Eaubonne, Montrouge, Colombes, Sèvres, Villeneuve-la-Garenne, Villebon-sur-Yvette, Paris, Paris, Paris, Paris, Paris, Cynthiana, Saint-Germain-en-Laye, Le Pecq, Asnières-sur-Seine, Puteaux, Saint-Ouen, Clamart, Denning, Subiaco, Morrison Bluff, Caulksville, Blue Mountain, Detroit, Universal, Goss, Henry, Cottage Grove, Big Sandy +yes +yes +yes +49.4091649 8.6726851, 49.4073921 8.6825502 +Königstuhl, Heidenknörzel, Kammerstein, Lammerskopf, Gaisberg, Michaelsberg, Heiligenberg, Auerhahnenkopf, Apfelskopf, Dossenheimer Kopf, Ameisenbuckel, Karlslust +48.8867960 2.3430272 +48.8550035 2.3609057 and 48.8522577 2.3568176 +29 and 6 +49.4171401 8.7614553, 49.4094471 8.6926160, 49.4124142 8.7039688, 49.3850068 8.7105357, 49.4189919 8.6724909, 49.4163242 8.6709589, 49.4184386 8.6731024, 49.4168333 8.6710769, 49.4176281 8.6686596, 49.4160594 8.6702239, 49.4179870 8.6685214, 49.4190025 8.6711938, 49.4190342 8.6719873, 49.4095987 8.7061446, 49.3982405 8.6891686, 49.4154939 8.6674299, 49.4182906 8.7276732, 49.3984918 8.6889404, 49.4226030 8.6895511, 49.4244226 8.6879745, 49.4185216 8.6704497, 49.4197235 8.6766060, 49.4181936 8.6739962, 49.4224691 8.6894885, 49.4347006 8.6819337, 49.4225331 8.6895176, 49.4223934 8.6894683, 49.4275117 8.6831905, 49.4196417 8.6694271, 49.4189698 8.6760286, 49.4222653 8.6894258, 49.4249703 8.6863835, 49.4219203 8.6893430, 49.4221212 8.6893922, 49.4177747 8.6690561, 49.4163577 8.6686492, 49.4174980 8.6687653, 49.4179060 8.6686309, 49.4180660 8.6682820, 49.4157661 8.6686751, 49.4174626 8.6687152, 49.4150725 8.6664167, 49.4139804 8.6668520, 49.4136878 8.6671227, 49.4155211 8.6676755, 49.4136571 8.6671084, 49.4155891 8.6676755, 49.4146634 8.6664310, 49.4140866 8.6673605, 49.4128509 8.6667672, 49.4130842 8.6668825, 49.4128068 8.6670431, 49.4157404 8.6712736, 49.4131056 8.6680418, 49.4126825 8.6678074, 49.4173371 8.6738318, 49.4170607 8.6768911, 49.4126952 8.6699440, 49.4134424 8.6679610, 49.4165443 8.6709680, 49.4134657 8.6678164, 49.4169024 8.6778674, 49.4171297 8.6738951, 49.4145377 8.6712997, 49.4142973 8.6712224, 49.4162063 8.6713780, 49.4171308 8.6741457, 49.4126713 8.6675754, 49.4146104 8.6715231, 49.4129993 8.6676842, 49.4125591 8.6685224, 49.4038678 8.6826012, 49.4080959 8.6940082, 49.4132083 8.7150483, 49.4098495 8.7063675, 49.4092833 8.6937547, 49.4136521 8.7166234, 49.4086730 8.6937919, 49.4147825 8.7194810, 49.4146757 8.7188519, 49.4099904 8.6934756, 49.4137247 8.7168421, 49.4114575 8.7112332, 49.4117561 8.7110802, 49.4130935 8.7055063, 49.4085662 8.6938769, 49.4082925 8.6939399, 49.4049071 8.6846843, 49.4050950 8.6832018, 49.4046753 8.6751003, 49.4049813 8.6825344, 49.4047830 8.6748233, 49.4079701 8.6806978, 49.4081724 8.6765377, 49.3800680 8.6869647, 49.3803092 8.6877522, 49.3800398 8.6875371, 49.4133013 8.6913417, 49.3991167 8.6880237, 49.4003093 8.6865238, 49.3994136 8.6901411, 49.4125736 8.6667755, 49.4156475 8.7425316, 49.3942172 8.6898680, 49.4001704 8.6873707, 49.4008461 8.6862974, 49.4015034 8.6855723, 49.4018481 8.6853596, 49.4140326 8.6921865, 49.4147881 8.6920796, 49.4161519 8.6920141, 49.4164194 8.6920050, 49.3736369 8.6882014, 49.3771070 8.6871386, 49.3805777 8.6884357, 49.3956314 8.6891619, 49.4064459 8.6893600, 49.4076652 8.6925139, 49.4146958 8.6922296, 49.4126385 8.6691299, 49.4175773 8.6740734, 49.4106683 8.6974887, 49.4111306 8.6979715, 49.4127554 8.6742068, 49.4187340 8.6766656, 49.4113889 8.7076937, 49.4105563 8.7059593, 49.4101441 8.7052242, 49.4112034 8.7047612, 49.4089283 8.6982133, 49.4089648 8.6986876, 49.4093783 8.7008163, 49.4094359 8.7023071, 49.4089641 8.6955780, 49.4093310 8.6934805, 49.4096811 8.6934485, 49.4107724 8.7039613, 49.4097754 8.7076634, 49.4100334 8.7081249, 49.4094319 8.6910307, 49.4095376 8.6908723, 49.4096347 8.6903912, 49.4098329 8.6894963, 49.4098809 8.6909403, 49.4099807 8.6890051, 49.4101452 8.6899150, 49.4102122 8.6904965, 49.4103847 8.6887271, 49.4105137 8.6896038, 49.4105215 8.6905059, 49.4106282 8.6901065, 49.4126702 8.6805338, 49.4159805 8.6920165, 49.4164705 8.6920883, 49.4172314 8.6911451, 49.4173345 8.6841594, 49.4090210 8.6862339, 49.4091822 8.6858735, 49.4095605 8.6872645, 49.4088652 8.6800974, 49.4098279 8.6817194, 49.4083809 8.6789361, 49.4056745 8.6881477, 49.4061925 8.6915180, 49.4063357 8.6898884, 49.4072240 8.6872972, 49.4075178 8.6824857, 49.4075631 8.6890160, 49.4079188 8.6902159, 49.4088250 8.6844653, 49.4092552 8.6744026, 49.4111078 8.7122962, 49.4039935 8.7273740, 49.3976409 8.6521041, 49.4229888 8.6430964, 49.4187340 8.6766656, 49.4032317 8.6471408, 49.4027493 8.6441103, 49.4121441 8.6411840, 49.4121197 8.6413318, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349, 49.4151012 8.6731211, 49.4158568 8.6728207, 49.4035624 8.6765204, 49.4279707 8.6838908, 49.4111900 8.7704641, 49.4101378 8.7039303, 49.4161640 8.6686617, 49.4138118 8.6719647, 49.4108048 8.6946155, 49.4157085 8.7420436, 49.4161193 8.6695151, 49.4059837 8.6870296, 49.4014465 8.6714876, 49.4016021 8.6707184, 49.4017318 8.6700873, 49.4019718 8.6690844, 49.4201274 8.6592504, 49.4194061 8.6615040, 49.4175471 8.6615820, 49.4133488 8.6736185, 49.4149163 8.6654747, 49.3787958 8.6752564, 49.3787513 8.6752582, 49.4168939 8.6715527, 49.4182453 8.6691484, 49.4083411 8.6839428, 49.4045486 8.6762865, 49.4176645 8.6590769, 49.4150320 8.7620828, 49.3892845 8.6883551, 49.4176061 8.6615500, 49.4159754 8.6729830, 49.4158552 8.6727509, 49.4032152 8.6746268, 49.4071473 8.6720042, 49.3999783 8.6914430, 49.3659380 8.6888680, 49.4019576 8.6811178, 49.4019323 8.6807736, 49.4019771 8.6810189, 49.4019064 8.6809317, 49.4045857 8.6750253, 49.3870086 8.6664502, 49.4209713 8.6746499, 49.4061766 8.6754688, 49.4103125 8.7748332, 49.4235022 8.6459331, 49.4048709 8.6753023 +0 +4.0706060818091068 +49.4116697 8.9271085, 49.3779472 8.6930196, 49.3791086 8.6917106, 49.3738873 8.6885987, 49.4091892 8.6985480, 49.2941943 8.6972230, 49.2959309 8.7014509, 49.3883245 9.0081746, 49.3761590 8.5674826, 49.3191887 8.5595067, 49.2919399 8.7027015, 49.3726645 8.5718770, 49.3785813 8.5766583, 49.4109553 8.9356774, 49.3417457 8.6549932, 49.3761026 8.8885302, 49.3378610 8.6613039, 49.3481526 8.6539714, 49.3445704 8.6640475, 49.3839393 8.5721238, 49.3265417 8.5563625, 49.3191315 8.5470156, 49.3147158 8.5519038, 49.4295856 8.6906085, 49.4242374 8.6490409, 49.4347876 8.6782371, 49.4426103 8.6658751, 49.3138326 8.5606145, 49.3884820 8.8036758, 49.3927830 8.5980107, 49.3923799 8.5946401, 49.3868016 8.8070952, 49.4046422 8.6758721, 49.4188030 8.6627721, 49.4215394 8.6751324, 49.3948331 8.7964522, 49.4230903 8.6848004, 49.4423017 8.5790531, 49.4300762 8.6800795, 49.3864018 8.8001781, 49.4722315 8.4693491, 49.4378301 8.7519879, 49.3945090 8.6898249, 49.4178001 8.7608053, 49.4036423 8.6351457, 49.4303419 8.6447639, 49.4199824 8.6516327, 49.3597431 8.8120515, 49.4641062 8.6650466, 49.4280459 8.7495006, 49.4333074 8.7472561, 49.4280490 8.7464328, 49.4220544 8.7604986, 49.3359654 8.7908694, 49.4160940 8.7161473, 49.3872630 8.7975398, 49.4471459 8.6743543, 49.4428444 8.6214405, 49.4707059 8.6520153, 49.4039244 8.6201112, 49.3976600 8.6462271, 49.3835628 8.6905633, 49.4016060 8.6295678, 49.3993345 8.6272386, 49.3931195 8.6279937, 49.4751871 8.6837099, 49.3957980 8.8231207, 49.4102743 8.6522076, 49.3186598 8.5512647, 49.3973451 8.7978476, 49.4536423 8.6751502, 49.4519728 8.6778784, 49.4065263 8.6402454, 49.4077957 8.6403731, 49.4132108 8.7429246, 49.3950783 8.6433081, 49.3774319 8.6987045, 49.4536254 8.3815384, 49.4056159 8.6307388, 49.3973715 8.6486924, 49.4024942 8.6473792, 49.4229184 8.6449762, 49.4085533 8.6680811, 49.4077532 8.6729299, 49.4083422 8.6884456, 49.4096328 8.6933428, 49.4001133 8.6852761, 49.4444884 8.6271478, 49.3785544 8.6593079, 49.2999064 8.5654315, 49.2905479 8.5632348, 49.3263000 8.5468316, 49.3594020 8.8046809, 49.3605252 8.8038440, 49.3166684 8.5493592, 49.3182722 8.5439702, 49.4714810 8.6083963, 49.3574669 8.7787048, 49.3930158 8.7827624, 49.3084609 8.6351584, 49.3811510 8.8033879, 49.3914947 8.7854488, 49.2950357 8.5641504, 49.3225437 8.5335892, 49.3736487 8.5775117, 49.3896002 8.5660555, 49.4021057 8.8481051, 49.2961664 8.5700349, 49.4118979 8.8312113, 49.4038331 8.8435805, 49.4062892 8.8436208, 49.4144602 8.7186269, 49.4152010 8.7617225, 49.3946293 8.7926321, 49.3933559 8.7992739, 49.3841017 8.8059323, 49.4113731 8.7119281, 49.3640254 8.7056751, 49.4105298 8.6976589, 49.3045372 8.6466441, 49.3687498 8.5800586, 49.3726561 8.5798363, 49.4002513 8.6905301, 49.3575085 8.6891721, 49.4426247 8.8954326, 49.4460345 8.8970944, 49.4079380 8.6845118, 49.4079623 8.6804555, 49.4016967 8.6842645, 49.4149595 8.6974870, 49.4152930 8.6919888, 49.3753209 8.5842061, 49.2956896 8.5694190, 49.4141843 8.7705509, 49.4435052 8.6332139, 49.4287124 8.6962608, 49.4701324 8.7543477, 49.4371781 8.8098188, 49.3177272 8.7571254, 49.4175155 8.6749548, 49.4280288 8.6874096, 49.4226519 8.6906789, 49.4237741 8.3796665, 49.4243637 8.3901006, 49.4198160 8.3955221, 49.3291477 8.5397666, 49.3413286 8.6690896, 49.4654862 8.5630507, 49.4503171 8.5233143, 49.4309897 8.4978410, 49.4282986 8.4891901, 49.4313129 8.4959077, 49.3504070 8.6321551, 49.4541025 8.5375578, 49.3978519 8.5349890, 49.4036804 8.5358143, 49.4014645 8.7791091, 49.4706173 8.4699685, 49.3960032 8.5914393, 49.4210265 8.4208975, 49.4213716 8.4206943, 49.3796214 8.6698422, 49.3021886 8.6429316, 49.4642584 8.4844414, 49.4631679 8.4950194, 49.4622735 8.4845749, 49.3750123 8.4535196, 49.4708285 8.6603546, 49.3904944 8.6883092, 49.3915993 8.6903930, 49.3739972 8.7036051, 49.4680044 8.4830290, 49.4542685 8.4945230, 49.2944361 8.6843096, 49.4636413 8.4884577, 49.4531341 8.7233872, 49.4743659 8.4653835, 49.4471734 8.5061272, 49.3937049 8.5661427, 49.3099035 8.5447741, 49.4213023 8.6891575, 49.4621470 8.4065063, 49.3766430 8.7660668, 49.3724852 8.7711188, 49.4309258 8.4206618, 49.4409798 8.4175989, 49.4437479 8.4140917, 49.3947439 8.7943731, 49.3038290 8.6957242, 49.2995474 8.7000158, 49.4205029 8.6846704, 49.4174372 8.6854637, 49.4399326 8.4449762, 49.4425602 8.4277767, 49.4693839 8.4558664, 49.4268458 8.4233321, 49.4454678 8.4182004, 49.4717141 8.6047118, 49.4131348 8.5458560, 49.4245561 8.6872574, 49.4186207 8.6905302, 49.4659574 8.7606949, 49.4129911 8.6528439, 49.4554171 8.3842872, 49.4723798 8.4402139, 49.4666324 8.7723805, 49.4331943 8.5277059, 49.4308480 8.5291667, 49.4565194 8.8077226, 49.3386748 8.5339113, 49.4038073 8.6922073, 49.4719917 8.7590827, 49.4737806 8.7562742, 49.4609471 8.7703480, 49.4205644 8.3883875, 49.3197938 8.8658341, 49.2984869 8.8269633, 49.2966768 8.8256330, 49.3219820 8.8193599, 49.3871024 8.8383024, 49.3935723 8.8416570, 49.3383714 8.7389507, 49.3413963 8.7549260, 49.3873851 8.7356455, 49.3414114 8.6467625, 49.3234400 8.6954224, 49.3189808 8.8881137, 49.3159750 8.8865005, 49.3201069 8.8909232, 49.4601440 8.9882590, 49.3993575 8.5843395, 49.4546515 8.4766580, 49.3613242 8.7824149, 49.3945103 8.9294461, 49.4066139 8.5537714, 49.3128737 8.5545772, 49.4622543 8.9867661, 49.4658163 8.9915752, 49.4646725 8.9846014, 49.4352605 8.8040578, 49.3994611 8.8459544, 49.4052607 8.6659933, 49.4055766 8.6654953, 49.3204781 8.5682552, 49.3375623 8.9113070, 49.3394809 8.9087893, 49.3714420 8.5346515, 49.3784076 8.5391735, 49.4560487 8.3748093, 49.3173043 8.5376593, 49.3116456 8.5379711, 49.2921862 8.6910743, 49.4506689 8.9797021, 49.4558022 8.9786024, 49.3712535 8.5910730, 49.4416867 8.6147618, 49.4404471 8.5201007, 49.4376888 8.5274582, 49.4252292 8.4170772, 49.3482256 8.5307489, 49.4070710 8.4073373, 49.4541296 8.4822180, 49.4307088 8.6826152, 49.3260347 8.6879653, 49.3234377 8.6867731, 49.4157065 8.7287628, 49.3033175 8.7047451, 49.3661785 8.7507929, 49.3982142 8.4388742, 49.4487633 8.6041107, 49.3787048 8.6764500, 49.4543736 8.6291869, 49.4475131 8.4261958, 49.4481810 8.4188422, 49.4619449 8.7690156, 49.3970452 8.6830144, 49.4260082 8.9560462, 49.4671705 8.5629531, 49.4736174 8.9865378, 49.3507170 8.6892282, 49.4226763 8.4281591, 49.3452242 8.6743498, 49.4445636 8.5816251, 49.4459377 8.5730972, 49.4639703 8.5662392, 49.4755522 8.5060354, 49.4136791 8.7136022, 49.3684471 8.7452563, 49.4509911 8.6718847, 49.4687302 8.5596994, 49.4668508 8.5541279, 49.4720637 8.5678457, 49.3935169 8.4374510, 49.2817542 8.7809947, 49.4535628 8.4905741, 49.4564320 8.4890877, 49.4543568 8.4824181, 49.4469008 8.8982283, 49.4741811 8.4824969, 49.3925682 9.0026920, 49.4648656 8.5102909, 49.4620122 8.4741993, 49.4574234 8.4851237, 49.4593083 8.4706277, 49.4460279 8.5227546, 49.4428953 8.5184434, 49.4554270 8.5697767, 49.3520218 8.7810118, 49.4603642 8.5698463, 49.4650782 8.4660830, 49.3804529 8.6874252, 49.4054299 8.6767260, 49.4054501 8.6767490, 49.4423442 8.5141178, 49.3390847 8.6564963, 49.3610799 8.5359529, 49.4740411 8.6173826, 49.4279082 8.6839585, 49.3929187 8.5615782, 49.4127839 8.6732119, 49.4182810 8.6660747, 49.4167698 8.6778109, 49.2913518 8.6644581, 49.4140135 8.6829496, 49.3734559 8.6824541, 49.3734280 8.6804585, 49.3745737 8.6766391, 49.4133863 8.7084302, 49.3795300 8.6822909, 49.3843561 8.6673425, 49.4156948 8.6877018, 49.4186333 8.6903397, 49.3816846 8.6868958, 49.4089964 8.7017641, 49.4102662 8.7019427, 49.4112926 8.7027584, 49.3778358 8.6889772, 49.4085432 8.6937616, 49.4085582 8.6937574, 49.4096346 8.6933512, 49.4026410 8.6888163, 49.4047864 8.6845518, 49.4044472 8.6883811, 49.4062695 8.6913666, 49.4062653 8.6913679, 49.4085166 8.6926281, 49.4015292 8.6757972, 49.4751215 8.4447538, 49.4753090 8.4439781, 49.4723115 8.4446306, 49.4316305 8.5715242, 49.3519718 8.8684674, 49.4722987 8.4498631, 49.4694596 8.4459163, 49.4684341 8.4346313, 49.4655353 8.4193218, 49.4113476 8.7118706, 49.4119316 8.6969837, 49.4717681 8.4043309, 49.3994162 8.6880161, 49.3827614 8.6820305, 49.3687133 8.5309255, 49.4512831 8.5851445, 49.4415950 8.5774993, 49.4484967 8.8940967, 49.4179179 8.5341440, 49.3511417 8.7028368, 49.4191927 8.5147809, 49.4273374 8.5318674, 49.4186575 8.5259343, 49.4630647 8.9967854, 49.4120750 8.5220648, 49.4088197 8.5218682, 49.4062567 8.5209778, 49.3855700 8.5712429, 49.3305410 8.6722973, 49.3845397 8.5737947, 49.3841541 8.5774672, 49.4675791 8.6133121, 49.4721189 8.5496779, 49.4642559 8.5572445, 49.3930705 8.9242735, 49.4693227 8.4691927, 49.4183221 8.7563527, 49.4744092 8.4860415, 49.4548446 8.4036445, 49.3967764 8.5349193, 49.3947340 8.5341881, 49.4441798 8.5316600, 49.4498003 8.4787972, 49.4316207 8.5715985, 49.4015439 8.5564859, 49.4156725 8.7421792, 49.4641295 8.6024278, 49.3452536 8.6991775, 49.3975439 8.8370531, 49.3568753 8.4479584, 49.4180049 8.4304703, 49.3793989 8.8384026, 49.3882338 8.8576904, 49.3501718 8.7751677, 49.4146742 8.8811104, 49.3639583 8.7048484, 49.3923418 8.5869300, 49.3897621 8.5866301, 49.3900106 8.5951082, 49.4703095 8.6676207, 49.3454195 8.6833029, 49.2805051 8.6730134, 49.4417734 8.4209918, 49.4438650 8.6097575, 49.4635895 8.9900415, 49.4644476 8.9848049, 49.4652335 8.9747254, 49.4689588 8.9843908, 49.4701629 8.9950777, 49.4049630 8.8411931, 49.4180547 8.8517835, 49.4136635 8.7632703, 49.3840294 8.5818336, 49.3869098 8.5828680, 49.4006673 8.6308209, 49.3945750 8.7947057, 49.4223460 8.7539976, 49.3651468 8.6848614, 49.3748990 8.6769370, 49.3638609 8.8379309, 49.3230182 8.8180605, 49.3406676 8.7984974, 49.4173960 8.7485433, 49.4533307 8.3761199, 49.4616961 8.4823765, 49.4542475 8.4825095, 49.4609738 8.5695179, 49.3794228 8.6676503, 49.4646409 8.4719323, 49.4464192 8.6113850, 49.4453340 8.5709402, 49.3751050 8.5886594, 49.4459998 8.6035076, 49.3442868 8.6897159, 49.3470840 8.6884135, 49.3425441 8.6599382, 49.4750609 8.6692928, 49.3205042 8.6940169, 49.3111150 8.6481530, 49.3539619 8.7231541, 49.4491677 8.4946723, 49.4100342 8.7062078 +no +Fun Forest, Lehrpfad - Infotafel, Lehrpfad - Infotafel, Abenteuerwald, Barfußpfad, Modelleisenbahn, Freizeitzentrum Heidesee Forst, Husky Ranch, Hundeakademie Kimbaland, Minigolfplatz Berghausen, Oranienpark, Minigolfplatz, Roseninsel, Kurpark, Schlosspark, Nachtigallenweg, Freizeitgelände Kuhberg, Klettergarten, Arboretum, Kraichgau Märchenwald, ESV Großbahn, Ravensburger Spielewelt, Kahler Vita-Parcours, Übung 05, Kahler Vita-Parcours, Übung 06, Kahler Vita-Parcours, Übung 07, Kahler Vita-Parcours, Übung 08, Kahler Vita-Parcours, Übung 09, Kahler Vita-Parcours, Übung 10, Kahler Vita-Parcours, Übung 01, Kahler Vita-Parcours, Übung 02, Kahler Vita-Parcours, Übung 03, Kahler Vita-Parcours, Übung 03, Kahler Vita-Parcours, Übung 04, Geburtsbäume, Wetterpark, Tripsdrill, Eisenbahn-Freunde Bad-Schönborn e.V., Holiday-Park, Didiland, Wiesen-Weg (Glücksweg), Sommerrodelbahn, Sensapolis, Kurpfalzpark, Croco Island, Klabauterland, Waldklettergarten Stuttgart-Zuffenhausen, JumpInn, Buntsandstein Erlebnis: "Hören", Waldkletterpark Weinsberg, Bibelgarten, Tiggolino Spielparadies, Sensadrom, Märchenparadies Königstuhl +RATP +yes +55.9456427 -3.1913637, 55.9330234 -3.2354551, 55.9257928 -3.2095594, 55.9687971 -3.1730857, 55.9801960 -3.1982556, 55.9605889 -3.1427782, 55.9788896 -3.2317323, 55.9588767 -3.2113228, 55.9614993 -3.3058797, 55.9334573 -3.1781344, 55.9057929 -3.2224600, 55.9360076 -3.2097027, 55.9654290 -3.1759121, 55.9460215 -3.2123225, 55.9466560 -3.2163830, 55.9448614 -3.2174899, 55.9424827 -3.2816610, 55.9713551 -3.2524770, 55.9504108 -3.2089957, 55.9505271 -3.1874272, 55.9529055 -3.1966423, 55.9530315 -3.1960873, 55.9399803 -3.2118878, 55.9398206 -3.2115635, 55.9422231 -3.2036959, 55.9427696 -3.2813759, 55.9600977 -3.2957282, 55.9592529 -3.2133182, 55.9453652 -3.1842234, 55.9268573 -3.2094072, 55.9807322 -3.1775607, 55.9591293 -3.1715337, 55.9592043 -3.1715261, 55.9575707 -3.2076016, 55.9262302 -3.1859988, 55.9148390 -3.1652277, 55.9376474 -3.1780108, 55.9414683 -3.1812245, 55.9331816 -3.2608758, 55.9415944 -3.1818222, 55.9416532 -3.1818741, 55.9484509 -3.1864893, 55.9603970 -3.2016509, 55.9325122 -3.1401027, 55.9641019 -3.1771391, 55.9414706 -3.2032792, 55.9174745 -3.1579689, 55.9542022 -3.2014648, 55.9626976 -3.1781014, 55.9699822 -3.1694976, 55.9330456 -3.2353604, 55.9714788 -3.1731260, 55.9298458 -3.2993946, 55.9655520 -3.2738904 and 55.9424798 -3.2815897, 55.9360885 -3.2791322, 55.9462332 -3.1856460, 55.9333118 -3.1780220, 55.9360951 -3.2094688, 55.9590449 -3.2133693, 55.9586606 -3.1898701, 55.9447381 -3.2502675, 55.8973064 -3.3042792, 55.9373697 -3.2349222, 55.9700633 -3.1697434, 55.9425272 -3.1823052, 55.9513417 -3.1082720, 55.9587362 -3.2229689, 55.9409843 -3.2032930, 55.9626831 -3.1778163 +0130797930 and velib.paris.fr, 0130797930 and velib.paris.fr, www.Velib.fr, www.parisbiketour.net, http://en.velib.paris.fr/Stations-in-Paris/Find-a-station +no +Regard de la Roquette +yes +408 +5 +quarry, recreation ground, allotments, construction, retail, cemetery, commercial, reservoir, industrial, residential, brownfield, farm, grass, sports centre, meadow, farmyard, forest, military, landfill, railway, field, farmland, allotment (disused), basin, paved area, common, cage, graveyard, orchard, garages, community food growing, road, garden, leisure, nursery bed, chicken run, water cistern, tree nursery, harbour, village green +Lian Pu, Cosmo +yes +47 +Königreichssaal, St. Laurentius, Versöhnungsgemeinde, Kapelle, Kapelle, Yavuz Sultan Selim Camii, Kirche am Markt, Angehörigen Kapelle, Erlöserkirche, Freie evangelische Gemeinde, Buddhistisches Zentrum, Christliche Baptistengemeinde, Evangelische Friedenskirche, Synagoge, Kapelle, Peterskirche, Heiliggeistkirche, St. Michael, St. Vitus, St. Albert, Sankt Paul, St. Raphael, Neuapostolische Kirche, Jakobuskirche, Johanneskirche, Adventgemeinde Heidelberg, Markushaus, St. Bonifatius, Evangelisches Gemeindezentrum, Hoffnungskirche, St. Johannes, Jesuitenkirche, Providenzkirche, Lutherkirche, Chapel, Neuapostolische Kirche, St. Bartholomäus, Kreuzkirche, Christuskirche, Alte Kirche - St. Bartholomäus, Bergkirche, Gutleuthofkapelle, Emmaus-Gemeinde, Lukaskirche, Sankt Anna, Evangelische Studierendengemeinde (Karl-Jaspers-Haus), Die ARCHE - Evangelische Wichern-Gemeinde, St. Thomas, Abteikirche Stift Neuburg, St. Laurentius, St. Teresa Kirche, Melanchthonkirche, St. Marien, St. Johann der Täufer, St. Laurentius, Sankt Peter, Peterskirche, St. Peter, Kirche Jesu Christi +0 +55.9456490 -3.2342957, 55.9365604 -3.2082863, 55.9511444 -3.2100787, 55.9554154 -3.1888958, 55.9588600 -3.2111164, 55.9453976 -3.2049974, 55.9650478 -3.2741085, 55.9450756 -3.1838725, 55.9279029 -3.2091805, 55.9272762 -3.1643514, 55.9519134 -3.2015815 +San Diego, Marikina, Paris, San Francisco, Grayling, Prudenville, Aachen, Neuss, Anchorage, Allestree, , Atlanta, Corona, Sindlesham, Wokingham, Ciudad de Panama, Öhningen, Beilngries, Seeheim-Jugenheim, Berlin, Les Orres, Curitiba, Angersbach, Flagstaff, Lake Arrowhead, Saratoga Springs, Erftstadt, Oxford, Oer-Erkenschwick, Durham, Joinville, London, Tahmoor, Stuttgart, Green Lake, תל אביב-יפו, Resistencia, Herrsching, Berlin +no +4 +Apex Edinburgh International and 55.9470365 -3.1966624 +6 +yes +7 +http://lemondehotel.co.uk/, http://www.placeshilton.com/edinburgh-city-centre, http://www.hot-el-apartments.com/edinburgh-waterfront-apartments/, http://www.jurysinns.com/hotels/edinburgh, http://www.apexhotels.co.uk/hotels/edinburgh-waterloo-place/?source=adwords mis1&gclid=CPyo uiJiqQCFVf-2AodJ02fJQ, http://www.travelodge.co.uk/search and book/hotel overview.php?hotel id=428, http://www.radissonblu.co.uk/hotel-edinburgh?facilitator=BIGMOUTHMEDIAREZIDOR&csref=g en sk brand 3 ediza, http://www.macdonaldhotels.co.uk/holyrood/, http://www.thistle.com/en/hotels/united kingdom/edinburgh/the king james/index.html, http://www.oceanservicedapts.com/index.php?gclid=COTK4ISGzKUCFYIe4QodBwiXjg, http://www.sandaigguesthouse.co.uk/, http://www.theglasshousehotel.co.uk/, http://www.oldwaverley.co.uk/, http://www.royalbritishhotel.com/, http://edinburgh.frasershospitality.com, http://niracaledonia.com/en/, http://www.hotelceilidh-donia.co.uk/, http://www.edinburghthistlehotel.com/, http://www.chester-residence.com/, http://www.thegrassmarkethotel.co.uk/, http://www.ibis.com/gb/hotel-2039-ibis-edinburgh-centre-royal-mile/index.shtml, http://www.thescotsmanhotel.co.uk/, http://www.thenorthumberlandhotel.co.uk, http://www.edinburghmintohotel.co.uk, http://www.kildonanlodgehotel.co.uk, http://www.cairnedinburgh.com/, http://www.rosehallhotel.co.uk, www.motel-one.com/en/hotels/edinburgh/edinburgh-princes, www.parliamenthouse-hotel.co.uk, www.royalmilemansions.com/, http://www.royalscotsclub.com/, http://www.travelodge.co.uk/hotels/353/Edinburgh-Haymarket-hotel, http://www.fountaincourtapartments.com/eq2.html, http://www.edinburghcityhotel.com/, http://www.townhousecompany.com/theedinburghresidence/, www.tunehotels.com/our-hotels/haymarket-edinburgh, http://www.rockvillehotel.co.uk, http://www.channings.co.uk, http://www.robertburnshotel.com, http://www.ibis.com, http://www.thegeorgehoteledinburgh.co.uk/ +no +1.3561148859980778 +Caisse Commune, Autolib', Bolloré +1, 1 +16 +sculpture +fr:Châtillon - Montrouge (métro de Paris), fr:Malakoff - Rue Étienne Dolet (métro de Paris), fr:Les Sablons (métro de Paris), fr:Argentine (métro de Paris), fr:George V (métro de Paris), fr:Franklin D. Roosevelt (métro de Paris), fr:Concorde (métro de Paris), fr:Tuileries (métro de Paris), fr:Palais Royal - Musée du Louvre (métro de Paris), fr:Louvre - Rivoli (métro de Paris), fr:Châtelet (métro de Paris), fr:Hôtel de Ville (métro de Paris), fr:Saint-Paul (métro de Paris), fr:Bastille (métro de Paris), fr:Gare de Lyon (métro de Paris), fr:Reuilly - Diderot (métro de Paris), fr:Porte de Vincennes (métro de Paris), fr:Marcel Sembat (métro de Paris), fr:La Motte-Picquet - Grenelle (métro de Paris), fr:Cambronne (métro de Paris), fr:Dupleix (métro de Paris), fr:Orly-Ouest (Orlyval), fr:Mairie d'Issy (métro de Paris), fr:Corentin Celton (métro de Paris), fr:Porte de Versailles (métro de Paris), fr:Convention (métro de Paris), fr:La Défense (métro de Paris), fr:Porte d'Orléans (métro de Paris), fr:Alésia (métro de Paris), fr:Mouton-Duvernet (métro de Paris), fr:Denfert-Rochereau (métro de Paris), fr:Raspail (métro de Paris), fr:Saint-Jacques (métro de Paris), fr:Glacière (métro de Paris), fr:Corvisart (métro de Paris), fr:Place d'Italie (métro de Paris), fr:Nationale (métro de Paris), fr:Chevaleret (métro de Paris), fr:Quai de la Gare (métro de Paris), fr:Stalingrad (métro de Paris), fr:Nation (métro de Paris), fr:Château de Vincennes (métro de Paris), fr:Bérault (métro de Paris), fr:Buttes Chaumont (métro de Paris), fr:Bolivar (métro de Paris), fr:Buzenval (métro de Paris), fr:Saint-Mandé (métro de Paris), fr:Avron (métro de Paris), fr:Ménilmontant (métro de Paris), fr:Père Lachaise (métro de Paris), fr:Philippe Auguste (métro de Paris), fr:Alexandre Dumas (métro de Paris), fr:Belleville (métro de Paris), fr:Couronnes (métro de Paris), fr:Colonel Fabien (métro de Paris), fr:Anvers (métro de Paris), fr:Pigalle (métro de Paris), fr:Blanche (métro de Paris), fr:Place de Clichy (métro de Paris), fr:Rome (métro de Paris), fr:Villiers (métro de Paris), fr:Monceau (métro de Paris), fr:Charles de Gaulle - Étoile (métro de Paris), fr:Victor Hugo (métro de Paris), fr:Porte Dauphine (métro de Paris), fr:Gallieni (métro de Paris), fr:Porte de Bagnolet (métro de Paris), fr:Gambetta (métro de Paris), fr:Rue Saint-Maur (métro de Paris), fr:Parmentier (métro de Paris), fr:Temple (métro de Paris), fr:Arts et Métiers (métro de Paris), fr:Réaumur - Sébastopol (métro de Paris), fr:Sentier (métro de Paris), fr:Bourse (métro de Paris), fr:Quatre-Septembre (métro de Paris), fr:Opéra (métro de Paris), fr:Havre - Caumartin (métro de Paris), fr:Saint-Lazare (métro de Paris), fr:Malesherbes (métro de Paris), fr:Wagram (métro de Paris), fr:Pereire (métro de Paris), fr:Porte de Champerret (métro de Paris), fr:Vaugirard (métro de Paris), fr:Volontaires (métro de Paris), fr:Falguière (métro de Paris), fr:Duroc (métro de Paris), fr:Saint-François-Xavier (métro de Paris), fr:Varenne (métro de Paris), fr:Bel-Air (métro de Paris), fr:Marx Dormoy (métro de Paris), fr:Gabriel Péri (métro de Paris), fr:Jacques Bonsergent (métro de Paris), fr:Anatole France (métro de Paris), fr:Croix de Chavaux (métro de Paris), fr:Mairie de Montreuil (métro de Paris), fr:Pont de Levallois - Bécon (métro de Paris), fr:Louise Michel (métro de Paris), fr:Maraîchers (métro de Paris), fr:Porte de Montreuil (métro de Paris), fr:Robespierre (métro de Paris), fr:Rue des Boulets (métro de Paris), fr:Charonne (métro de Paris), fr:Voltaire (métro de Paris), fr:Saint-Ambroise (métro de Paris), fr:Oberkampf (métro de Paris), fr:Strasbourg - Saint-Denis (métro de Paris), fr:Bonne-Nouvelle (métro de Paris), fr:Grands Boulevards (métro de Paris), fr:Richelieu - Drouot (métro de Paris), fr:Chaussée d'Antin - La Fayette (métro de Paris), fr:Saint-Augustin (métro de Paris), fr:Quai de la Rapée (métro de Paris), fr:Gare d'Austerlitz (métro de Paris), fr:Jussieu (métro de Paris), fr:Cardinal Lemoine (métro de Paris), fr:Maubert - Mutualité (métro de Paris), fr:Cluny - La Sorbonne (métro de Paris), fr:Odéon (métro de Paris), fr:Mabillon (métro de Paris), fr:Balard (métro de Paris), fr:Lourmel (métro de Paris), fr:Boucicaut (métro de Paris), fr:Félix Faure (métro de Paris), fr:Dugommier (métro de Paris), fr:Daumesnil (métro de Paris), fr:Bercy (métro de Paris), fr:Edgar Quinet (métro de Paris), fr:Pasteur (métro de Paris), fr:Kléber (métro de Paris), fr:Boissière (métro de Paris), fr:Trocadéro (métro de Paris), fr:Passy (métro de Paris), fr:Iéna (métro de Paris), fr:Rue de la Pompe (métro de Paris), fr:La Muette (métro de Paris), fr:Ranelagh (métro de Paris), fr:Jasmin (métro de Paris), fr:Michel-Ange - Auteuil (métro de Paris), fr:Michel-Ange - Molitor (métro de Paris), fr:Exelmans (métro de Paris), fr:Porte de Saint-Cloud (métro de Paris), fr:Alma - Marceau (métro de Paris), fr:/Saint-Philippe du Roule (métro de Paris), fr:Miromesnil (métro de Paris), fr:Sèvres - Babylone (métro de Paris), fr:Mairie de Clichy (métro de Paris), fr:Porte de Clichy (métro de Paris), fr:Brochant (métro de Paris), fr:La Fourche (métro de Paris), fr:Ségur (métro de Paris), fr:Avenue Émile Zola (métro de Paris), fr:Assemblée nationale (métro de Paris), fr:Solférino (métro de Paris), fr:Rennes (métro de Paris), fr:Notre-Dame-des-Champs (métro de Paris), fr:Concorde (métro de Paris), fr:Madeleine (métro de Paris), fr:Commerce (métro de Paris), fr:École Militaire (métro de Paris), fr:La Tour-Maubourg (métro de Paris), fr:Invalides (métro de Paris), fr:Filles du Calvaire (métro de Paris), fr:Saint-Sébastien - Froissart (métro de Paris), fr:Chemin Vert (métro de Paris), fr:Bastille (métro de Paris), fr:Ledru-Rollin (métro de Paris), fr:Faidherbe - Chaligny (métro de Paris), fr:Montgallet (métro de Paris), fr:Michel Bizot (métro de Paris), fr:Liberté (métro de Paris), fr:Porte Dorée (métro de Paris), fr:Picpus (métro de Paris), fr:Cour Saint-Émilion (métro de Paris), fr:Olympiades (métro de Paris), fr:Porte de Charenton (métro de Paris), fr:Pyramides (métro de Paris), fr:Trinité - d'Estienne d'Orves (métro de Paris), fr:Notre-Dame-de-Lorette (métro de Paris), fr:Rue du Bac (métro de Paris), fr:Saint-Georges (métro de Paris), fr:Abbesses (métro de Paris), fr:Lamarck - Caulaincourt (métro de Paris), fr:Jules Joffrin (métro de Paris), fr:Porte de la Chapelle (métro de Paris), fr:Simplon (métro de Paris), fr:Château Rouge (métro de Paris), fr:Gare du Nord (métro de Paris), fr:Gare de l'Est (métro de Paris), fr:Étienne Marcel (métro de Paris), fr:Château d'Eau (métro de Paris), fr:Les Halles (métro de Paris), fr:Cité (métro de Paris), fr:Saint-Michel (métro de Paris), fr:Saint-Germain-des-Prés (métro de Paris), fr:Saint-Placide (métro de Paris), fr:Vavin (métro de Paris), fr:Charles Michels (métro de Paris), fr:Javel - André Citroën (métro de Paris), fr:Église d'Auteuil (métro de Paris), fr:Porte d'Auteuil (métro de Paris), fr:Chardon-Lagache (métro de Paris), fr:Mirabeau (métro de Paris), fr:Boulogne - Jean Jaurès (métro de Paris), fr:Boulogne - Pont de Saint-Cloud (métro de Paris), fr:Goncourt (métro de Paris), fr:Rambuteau (métro de Paris), fr:Télégraphe (métro de Paris), fr:Pyrénées (métro de Paris), fr:Jourdain (métro de Paris), fr:Gaîté (métro de Paris), fr:Plaisance (métro de Paris), fr:Pernety (métro de Paris), fr:Malakoff - Plateau de Vanves (métro de Paris), fr:Bréguet - Sabin (métro de Paris), fr:Richard-Lenoir (métro de Paris), fr:Laumière (métro de Paris), fr:Ourcq (métro de Paris), fr:Porte de Pantin (métro de Paris), fr:Louis Blanc (métro de Paris), fr:Poissonnière (métro de Paris), fr:Riquet (métro de Paris), fr:Crimée (métro de Paris), fr:Corentin Cariou (métro de Paris), fr:Porte de la Villette (métro de Paris), fr:Le Peletier (métro de Paris), fr:Cadet (métro de Paris), fr:Pont Neuf (métro de Paris), fr:Sully - Morland (métro de Paris), fr:Pont Marie (métro de Paris), fr:Place Monge (métro de Paris), fr:Censier - Daubenton (métro de Paris), fr:Les Gobelins (métro de Paris), fr:Pré Saint-Gervais (métro de Paris), fr:Danube (métro de Paris), fr:Mairie des Lilas (métro de Paris), fr:Saint-Fargeau (métro de Paris), fr:Pelleport (métro de Paris), fr:Saint-Marcel (métro de Paris), fr:Campo-Formio (métro de Paris), fr:Guy Môquet (métro de Paris), fr:Porte de Saint-Ouen (métro de Paris), fr:Garibaldi (métro de Paris), fr:Tolbiac (métro de Paris), fr:Maison Blanche (métro de Paris), fr:Porte d'Italie (métro de Paris), fr:Les Agnettes (métro de Paris), fr:Asnières - Gennevilliers - Les Courtilles (métro de Paris), fr:Fort d'Aubervilliers (métro de Paris), fr:Aubervilliers - Pantin - Quatre Chemins (métro de Paris), fr:La Courneuve - 8 Mai 1945 (métro de Paris), fr:Champs-Élysées - Clemenceau (métro de Paris), fr:Créteil - L'Échat (métro de Paris), fr:Créteil - Université (métro de Paris), fr:Créteil - Préfecture (métro de Paris), fr:Maisons-Alfort - Les Juilliottes (métro de Paris), fr:Maisons-Alfort - Stade (métro de Paris), fr:École vétérinaire de Maisons-Alfort (métro de Paris), fr:Charenton - Écoles (métro de Paris), fr:Mairie de Saint-Ouen (métro de Paris), fr:Carrefour Pleyel (métro de Paris), fr:Villejuif - Léo Lagrange (métro de Paris), fr:Villejuif - Louis Aragon (métro de Paris), fr:Villejuif - Paul Vaillant-Couturier (métro de Paris), fr:Le Kremlin-Bicêtre (métro de Paris), fr:Saint-Sulpice (métro de Paris), fr:Montparnasse - Bienvenüe (métro de Paris), fr:Château-Landon (métro de Paris), fr:La Chapelle (métro de Paris), fr:Église de Pantin (métro de Paris), fr:Liège (métro de Paris), fr:Saint-Denis - Porte de Paris (métro de Paris), fr:Basilique de Saint-Denis (métro de Paris), fr:Saint-Denis - Université (métro de Paris), fr:Bir-Hakeim (métro de Paris), fr:Billancourt (métro de Paris), fr:Pont de Sèvres (métro de Paris), fr:Porte de Choisy (métro de Paris), fr:Porte d'Ivry (métro de Paris), fr:Pierre et Marie Curie (métro de Paris), fr:Mairie d'Ivry (métro de Paris), fr:Vaneau (métro de Paris), fr:Saint-Lazare (métro de Paris), fr:Saint-Lazare (métro de Paris), fr:Ternes (métro de Paris), fr:Pointe du Lac (métro de Paris), fr:Barbès - Rochechouart (métro de Paris), fr:Marcadet - Poissonniers (métro de Paris), fr:Concorde (métro de Paris), fr:Invalides (métro de Paris), fr:Bastille (métro de Paris), fr:Gare de Lyon (métro de Paris), fr:Sèvres - Lecourbe (métro de Paris), fr:Porte de Clignancourt (métro de Paris), fr:Montparnasse - Bienvenüe (métro de Paris), fr:Orly-Sud (Orlyval), fr:Porte des Lilas (métro de Paris), fr:Botzaris (métro de Paris), fr:Jaurès (métro de Paris), fr:Gare de la Bibliothèque François Mitterrand, fr:Place des Fêtes (métro de Paris), fr:Courcelles (métro de Paris), fr:Front Populaire (métro de Paris), fr:Bobigny - Pantin - Raymond Queneau (métro de Paris), fr:Porte Maillot (métro de Paris), fr:Philippe Auguste (métro de Paris), fr:Esplanade de La Défense (métro de Paris), fr:Pont de Neuilly (métro de Paris), fr:Châtelet (métro de Paris), fr:Châtelet (métro de Paris), fr:Châtelet (métro de Paris), fr:Châtelet (métro de Paris), fr:République (métro de Paris) +2.4383054683065648 +yes +Hilton Edinburgh Airport Hotel, Greyfriars Bobby Statue, Talbot Rice Gallery, Malmaison, DoubleTree by Hilton Hotel Edinburgh City Centre, Radisson Blu Hotel, Fraser Suites Edinburgh, Motel One, National Museum of Scotland, National Museum of Scotland, St. Giles' Cathedral, Waldorf Astoria Edinburgh - The Caledonian, Edinburgh Labyrinth, Hilton Edinburgh Grosvenor, Old College and 55.9439031 -3.3598911, 55.9469224 -3.1913043, 55.9470669 -3.1877715, 55.9778438 -3.1685794, 55.9457041 -3.2034796, 55.9500801 -3.1867539, 55.9523925 -3.1039168, 55.9500000 -3.1919145, 55.9507105 -3.1915001, 55.9470702 -3.1891400, 55.9468444 -3.1904431, 55.9494705 -3.1908525, 55.9495596 -3.2075043, 55.9438550 -3.1895180, 55.9469876 -3.2170926, 55.9474254 -3.1872595 +Völkerschlacht bei Leipzig and 49.4036412 8.7279490 +48.8503523 2.3771322 +130 +51.0314650 13.7060792, 50.9984910 13.8180107, 51.0477367 13.7924112, 51.0813022 13.6914169, 51.0761832 13.6854700, 51.0531342 13.7070918, 51.0301256 13.7603362, 51.0157764 13.7682166, 51.0484348 13.7907288, 51.0026862 13.7951099, 51.0129678 13.7811896, 51.0133169 13.7545602, 51.0298689 13.6478846, 51.0742642 13.6986054, 51.0739544 13.7586196, 51.0306245 13.7016945, 51.0117598 13.7985344, 50.9917185 13.7973870, 50.9917062 13.7974603, 51.0473259 13.8090954, 51.0308817 13.7016925, 51.0306353 13.7016025, 51.0307674 13.7015445, 51.0029038 13.8026801, 51.0301067 13.7605035, 51.0306483 13.7017773, 51.0307733 13.7018143, 51.0477367 13.7924112, 51.0301131 13.7604231 +1 +48.8389743 2.3594500, 48.8660888 2.3735141, 48.8833481 2.3657221, 48.8435512 2.3549103, 48.8415381 2.3513578, 48.8604665 2.2777715, 48.8426449 2.3435197, 48.8440817 2.3394081, 48.8781498 2.2912675, 48.8520717 2.3832753, 48.8619692 2.3675752, 48.8608788 2.3675481, 48.8746407 2.3851288, 48.8377080 2.2928200, 48.8577103 2.3716555, 48.8757138 2.3237237, 48.8531755 2.2897323, 48.8369247 2.3655074, 48.8370392 2.3656876, 48.8366117 2.3660108, 48.8856585 2.3878153, 48.8235768 2.3528601, 48.8747235 2.4028142, 48.8463900 2.2689236, 48.8663636 2.4020052, 48.8284834 2.3390838, 48.8782451 2.3776203, 48.8395681 2.3430437, 48.8370175 2.3399282, 48.8381233 2.3381623, 48.8377272 2.3337065, 48.8503229 2.3719619, 48.8371308 2.3201049, 48.8294209 2.3117338, 48.8282417 2.3124366, 48.8318593 2.3321176, 48.8227046 2.3325473, 48.8389582 2.2736102, 48.8233729 2.3520348, 48.8408530 2.3097088, 48.8406966 2.3089635, 48.8419046 2.4066858, 48.8829020 2.3533116, 48.8344290 2.2940843, 48.8351372 2.2970883, 48.8815039 2.3596777, 48.8343403 2.3469900, 48.8738281 2.3676232, 48.8799231 2.4029140, 48.8217673 2.4286891, 48.8990145 2.3317580, 48.8463859 2.2898152, 48.8402142 2.2586544, 48.8424746 2.2663692, 48.8465172 2.2647803, 48.8271977 2.3186334, 48.8445554 2.3918219, 48.8546261 2.3488485, 48.8368581 2.2933245, 48.8536180 2.3593838, 48.8804816 2.3601906, 48.8785401 2.3503089, 48.8875554 2.3932245, 48.8766581 2.3845776, 48.8772899 2.4044967, 48.8415376 2.3358192, 48.8707470 2.3890101, 48.8429738 2.4063211, 48.8428482 2.4072159, 48.8369808 2.3616318, 48.8352545 2.3669997, 48.8342311 2.3345129, 48.8324596 2.3065068, 48.8712344 2.2910205, 48.8477963 2.2711682, 48.8449828 2.2686932, 48.8538919 2.4083840, 48.8494123 2.3176366, 48.8452225 2.3155627, 48.8485322 2.3824733, 48.8433630 2.3993165, 48.8190962 2.4289009, 48.8929782 2.3244634, 48.8775846 2.3766713, 48.8383829 2.3526435, 48.8900253 2.3304354, 48.8383195 2.3374280, 48.8385002 2.3585546, 48.8377337 2.3652831, 48.8742587 2.3804890, 48.8333356 2.2808431 +55.9526570 -3.1776209, 55.9355981 -3.2312935 +104 +21 +48.8376960 2.3062844, 48.8481953 2.3419715, 48.8467471 2.3717077, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8278753 2.3796701, 48.8330539 2.2881095, 48.8234693 2.3306543, 48.8562375 2.3660049, 48.8516696 2.2978180, 48.8528343 2.3441184, 48.8504483 2.2926945, 48.8518053 2.3448347, 48.8549752 2.3046163, 48.8487972 2.3410105, 48.8495763 2.3798752, 48.8238179 2.3241127, 48.8542680 2.3078406 +yes +Eau des Lys +48.8649810 2.2947036 +48.8715303 2.3852468, 48.8786948 2.3802940, 48.8810910 2.3830096, 48.8414246 2.2740245, 48.8772975 2.3756258, 48.8192800 2.4461614, 48.8431371 2.3559220, 48.8816331 2.3989854, 48.8276787 2.4357466, 48.8737978 2.3851825, 48.8495352 2.3602521, 48.8861105 2.3431223, 48.8619948 2.2887325, 48.8797763 2.3836622, 48.8300350 2.4157042, 48.8737846 2.2950252, 48.8826564 2.3973634, 48.8218882 2.3397494, 48.8733612 2.3315473, 48.8616753 2.3454571, 48.8333332 2.4191292, 48.8582683 2.2945016, 48.8684965 2.2469852, 48.8582613 2.2944982 +no +65 +catholic +Schloss Filmtheater, Die Kamera, Movie Theatre, Gloria & Gloriette, Karlstorkino +Edinburgh Airport +49.3999791 8.6903579, 49.4183136 8.7570658, 49.4128139 8.6783720, 49.4145117 8.6907695, 49.4077612 8.6774779, 49.4072855 8.6846071, 49.4071494 8.6862981, 49.4085419 8.6884195, 49.4114880 8.7036708, 49.4112467 8.7056121, 49.3803180 8.6917254, 49.3789548 8.6920168, 49.3789551 8.6697358, 49.4118400 8.7103033, 49.4101180 8.6997470, 49.3932913 8.6898491, 49.3999572 8.6849703, 49.4055340 8.6909414, 49.4284757 8.6833956, 49.4298020 8.6813390, 49.3813862 8.6715525, 49.3801053 8.6879890, 49.4055840 8.6658584, 49.3805484 8.6587871, 49.4019559 8.6916056, 49.4035568 8.6918554, 49.4089227 8.6927850, 49.3788705 8.6685559, 49.3821598 8.6632293, 49.4076785 8.6917122, 49.4211891 8.6800261, 49.3746688 8.7035666, 49.4103729 8.6964923, 49.3744114 8.6827527, 49.3734828 8.6803866, 49.4089710 8.6939315, 49.4152187 8.7476376, 49.4122637 8.7077964, 49.4034041 8.6828344, 49.4283328 8.6876890, 49.4297175 8.6854401, 49.4294006 8.6822101, 49.4045550 8.6757234, 49.4042051 8.6757454, 49.4055602 8.6759168, 49.3773301 8.6643950, 49.4247182 8.6873975, 49.4254190 8.6871690, 49.4211737 8.7557530, 49.4152481 8.6922641, 49.3804318 8.6878275, 49.3803620 8.6881463, 49.4145068 8.6907391, 49.4148749 8.6923202, 49.4090710 8.6596269, 49.3797613 8.6848437, 49.4230594 8.6488328, 49.4059598 8.6868733, 49.3772126 8.6700382, 49.3782446 8.6730115, 49.4270878 8.6470653, 49.4278529 8.6465726, 49.4188086 8.6517772, 49.3974830 8.6464426, 49.3976777 8.6479965, 49.4073819 8.6570319, 49.4014703 8.6683127, 49.4023052 8.6665425, 49.4081778 8.6881317, 49.4179480 8.7596452, 49.4146130 8.6710105 and 49.4183639 8.7570400, 49.4142159 8.6881484, 49.4283917 8.6821286, 49.4038218 8.6846352, 49.4302090 8.6826535, 49.4215525 8.7554923, 49.3811013 8.6713612, 49.3794165 8.6912333, 49.4148351 8.6923482, 49.3972488 8.6465060, 49.4270902 8.6483857, 49.3801809 8.6865918, 49.3787351 8.6688216 +12 +yes +55.9427756 -3.2095329, 55.9449491 -3.2071792, 55.9261403 -3.1387050, 55.9021076 -3.2215942, 55.9077375 -3.2604776, 55.9744871 -3.3050579, 55.9605521 -3.2145819, 55.9914354 -3.3985059, 55.9546221 -3.1877189, 55.9551815 -3.1828752, 55.9905515 -3.3832043, 55.9898776 -3.3947910, 55.9532515 -3.2795094, 55.8753891 -3.3099775, 55.9388513 -3.1691562, 55.9501390 -3.1751181, 55.9297109 -3.2086926, 55.9489520 -3.1813494, 55.9210967 -3.2266715, 55.9487114 -3.2851366, 55.9487753 -3.2841900, 55.9487321 -3.2833922, 55.9482056 -3.2747143, 55.9605737 -3.1931385, 55.9349799 -3.1318268, 55.9319057 -3.1277488, 55.9331970 -3.1413489, 55.9031553 -3.1637932, 55.9099567 -3.1298528, 55.9083931 -3.1302476, 55.9087443 -3.1294580, 55.9539250 -3.1094167, 55.9383367 -3.4074644, 55.9560188 -3.3189391, 55.9005379 -3.1766131, 55.9233331 -3.3622103, 55.9234774 -3.3610087, 55.9670463 -3.3162635, 55.9684981 -3.1418750, 55.9145289 -3.2879909, 55.9270985 -3.2345448, 55.9262193 -3.2367397, 55.9257251 -3.2379807, 55.9536926 -3.2888163, 55.9705235 -3.2271545, 55.9461803 -3.2070135, 55.9760698 -3.1951310, 55.9202135 -3.2126749, 55.9225657 -3.2301524, 55.9228577 -3.2291352, 55.9232283 -3.2269378, 55.9914682 -3.3984225, 55.9226414 -3.2544133, 55.9272283 -3.2938863, 55.9503380 -3.2726676, 55.9559652 -3.1503593, 55.9435000 -3.2324052, 55.9591543 -3.2259572, 55.9590419 -3.2244693, 55.9345452 -3.2208560, 55.9588991 -3.2258357, 55.9859605 -3.1898881, 55.9864916 -3.1885470, 55.9330884 -3.3083607, 55.9848085 -3.3865992, 55.9171931 -3.1941869, 55.9281635 -3.2479491, 55.9278540 -3.2486519, 55.9683895 -3.3221102, 55.9520661 -3.2796118, 55.9555602 -3.3906816, 55.9555053 -3.1853840, 55.9466587 -3.2084167, 55.9444914 -3.2039187, 55.9437264 -3.1923238, 55.9849796 -3.1929699, 55.9450154 -3.1980120, 55.9416959 -3.1484162, 55.9625359 -3.4034070, 55.9425986 -3.2065382, 55.9407899 -3.1790526, 55.9390017 -3.1784821, 55.9461084 -3.1836449, 55.9528247 -3.2065333, 55.9529149 -3.2065700, 55.9533425 -3.2047904, 55.9075949 -3.4202463, 55.9509478 -3.2066848, 55.9526988 -3.2085257, 55.9527795 -3.2080212, 55.9529409 -3.2077810, 55.9543888 -3.1989928, 55.9548130 -3.1959084, 55.9531961 -3.2032873, 55.9527862 -3.1991610, 55.9528048 -3.1990557, 55.9550493 -3.1952197, 55.9556549 -3.1915634, 55.9411313 -3.2167882, 55.9858052 -3.3817066, 55.9393998 -3.1735716, 55.9319915 -3.1798966, 55.9479359 -3.2033290, 55.9148155 -3.2846120, 55.9068623 -3.1327381, 55.9336793 -3.0927075, 55.9166066 -3.3142805, 55.9475115 -3.1893474, 55.9478706 -3.1875187, 55.9367307 -3.4053592, 55.9404588 -3.2944172, 55.9362574 -3.2996459, 55.9696237 -3.2312974, 55.9384602 -3.3173394, 55.9371432 -3.3120553, 55.9358957 -3.3194951, 55.9338970 -3.3122513, 55.9189243 -3.3018114, 55.9253578 -3.2483932, 55.9401130 -3.3149747, 55.9397190 -3.3120155, 55.9016607 -3.2241566, 55.9412989 -3.1015035, 55.9262359 -3.1654883, 55.9578808 -3.1647965, 55.9544793 -3.1426073, 55.9800643 -3.1795555, 55.9821786 -3.1756498, 55.9435294 -3.2654687, 55.9436259 -3.2619723, 55.9690220 -3.1695919, 55.9453813 -3.1852436, 55.9834910 -3.4001615, 55.9323465 -3.1280922, 55.9325021 -3.1355675, 55.9281227 -3.1237925, 55.9272234 -3.1239396, 55.9207911 -3.1380624, 55.9225739 -3.1333840, 55.9234297 -3.1370906, 55.9079002 -3.3236956, 55.9314453 -3.2359598, 55.9234755 -3.2477828, 55.9523306 -3.2247264, 55.9506405 -3.2280071, 55.9388492 -3.3562316, 55.9282702 -3.2905058, 55.9328331 -3.3144308, 55.9241296 -3.3794972, 55.9384423 -3.2403707, 55.9895200 -3.3960731, 55.9226662 -3.2254126, 55.9559159 -3.1551037, 55.9396348 -3.1719819, 55.9418632 -3.1505954, 55.9486154 -3.1834112, 55.9471658 -3.1800476, 55.9510411 -3.1708174, 55.9629115 -3.1702968, 55.9391574 -3.3048858, 55.9212062 -3.1411443, 55.9151416 -3.3259472, 55.9125478 -3.3210336, 55.9127727 -3.3230057, 55.9121770 -3.3242353, 55.9168756 -3.3182175, 55.9030839 -3.3120674, 55.9323493 -3.1390569, 55.9315981 -3.1166385, 55.9280748 -3.1214990, 55.9351070 -3.1380033, 55.9317521 -3.1361908, 55.9318779 -3.1350817, 55.9324368 -3.1361552, 55.9323067 -3.1467718, 55.9221929 -3.1873317, 55.9029473 -3.2042927, 55.9042182 -3.1508526, 55.9187139 -3.1384285, 55.9347851 -3.1178195, 55.9327327 -3.1371609, 55.9310415 -3.1291255, 55.9312532 -3.1311471, 55.9356181 -3.1431581, 55.9366082 -3.1592634, 55.9346063 -3.1287373, 55.9585488 -3.1224989, 55.9390965 -3.1155072, 55.9372934 -3.1427896, 55.9395153 -3.1374061, 55.9391745 -3.1365070, 55.9326082 -3.1048464, 55.9673151 -3.1353973, 55.9167088 -3.3165996, 55.9323197 -3.1071045, 55.9339501 -3.1058170, 55.9338900 -3.1047414, 55.9350584 -3.1023983, 55.9289228 -3.1324182, 55.9094988 -3.1543668, 55.9097229 -3.1417837, 55.9248212 -3.2647912, 55.9773633 -3.2471160, 55.9558627 -3.1173143, 55.9092890 -3.3163751, 55.9275619 -3.2972009, 55.9021546 -3.1682556, 55.9061546 -3.3220260, 55.9116089 -3.3255603, 55.9134088 -3.3215983, 55.9109708 -3.3144538, 55.9109175 -3.3264046, 55.9280288 -3.2881415, 55.9235713 -3.3999101, 55.9893024 -3.3981851, 55.9116987 -3.3152719, 55.9096737 -3.3169570, 55.9156152 -3.3159619, 55.9497651 -3.1780477, 55.9360803 -3.2260420, 55.9162763 -3.2910976, 55.9414217 -3.2221759, 55.9422143 -3.1843904, 55.9447507 -3.1796881, 55.9430744 -3.1777261, 55.9446561 -3.1803403, 55.9494277 -3.1775329, 55.9487518 -3.1780877, 55.9485518 -3.1781362, 55.9491775 -3.1780460, 55.9466674 -3.1799160, 55.9467039 -3.1783594, 55.9520666 -3.1782554, 55.9442077 -3.1850195, 55.9611696 -3.2316847, 55.9609929 -3.2342787, 55.9607831 -3.2371118, 55.9615933 -3.2374124, 55.9619320 -3.2374854, 55.9631141 -3.2367935, 55.9634777 -3.2359757, 55.9496410 -3.1840791, 55.9518134 -3.1865125, 55.9244139 -3.2658901, 55.9160232 -3.3163210, 55.9156359 -3.3182752, 55.9160984 -3.3183497, 55.9827482 -3.1947966, 55.9820923 -3.1881161, 55.9709946 -3.2069888, 55.9663575 -3.1958162, 55.9713037 -3.2306913, 55.9211529 -3.1991584, 55.9272521 -3.2235895, 55.9282852 -3.2235581, 55.9226879 -3.2251365, 55.9868679 -3.4037150, 55.9870985 -3.4031390, 55.9453143 -3.3555656, 55.9465415 -3.3624684, 55.9475491 -3.3620873, 55.9539144 -3.1587511, 55.8968564 -3.3184286, 55.9600239 -3.1973819, 55.9679394 -3.1728771, 55.9729929 -3.1628209, 55.9239749 -3.1779212, 55.9246612 -3.1815724, 55.9260122 -3.1931603, 55.9276896 -3.1509176, 55.9274521 -3.1503413, 55.9275727 -3.1506409, 55.9254765 -3.1644984, 55.9263987 -3.1628516, 55.9280015 -3.1625220, 55.9283909 -3.2930391, 55.9276860 -3.2951771, 55.9488232 -3.2332997, 55.9264933 -3.3012131, 55.9447684 -3.1528732, 55.9383947 -3.2562456, 55.9821203 -3.3972503, 55.9006763 -3.3190467, 55.8607477 -3.3326422, 55.9312615 -3.2941807, 55.8941662 -3.2624173, 55.9334103 -3.2358080, 55.9090922 -3.2239505, 55.9547187 -3.1893018, 55.9519010 -3.2481568, 55.9523635 -3.2486330, 55.9523251 -3.2541631, 55.9556720 -3.1896134, 55.9430835 -3.2219817, 55.9587913 -3.2420040, 55.9573940 -3.2424916, 55.9588441 -3.2305299, 55.9590153 -3.2322733, 55.9371887 -3.3211797, 55.9381046 -3.3208512, 55.9611769 -3.2425780, 55.9615806 -3.2409418, 55.9613606 -3.2419902, 55.9619750 -3.2400369, 55.9351660 -3.1204578, 55.9355230 -3.1204690, 55.9467379 -3.1966389, 55.9596219 -3.2030610, 55.9776230 -3.2433010, 55.9771738 -3.2430088, 55.9704477 -3.1958250, 55.9703493 -3.1961174, 55.9704547 -3.1964895, 55.9418085 -3.2938103, 55.9409118 -3.2928528, 55.9563797 -3.2090019, 55.9567298 -3.2082704, 55.9556731 -3.1599309, 55.9561167 -3.1678741, 55.9382223 -3.1043918, 55.9402035 -3.1010776, 55.9392618 -3.1041020, 55.9326805 -3.0980239, 55.9332952 -3.0991933, 55.9345875 -3.0954263, 55.9352737 -3.0966452, 55.9347395 -3.0943083, 55.9349364 -3.0950506, 55.9640969 -3.1974516, 55.9338797 -3.4074558, 55.9828725 -3.2257526, 55.9786282 -3.1784319, 55.9394393 -3.2936438, 55.9393840 -3.2949198, 55.9596625 -3.2024027, 55.9669928 -3.1677035, 55.9305761 -3.1559101, 55.9311166 -3.1557491, 55.9333643 -3.3185667, 55.9341121 -3.3187777, 55.9310843 -3.3172397, 55.9324950 -3.3181693, 55.9346695 -3.3189829, 55.9319082 -3.3177126, 55.9359437 -3.2382687, 55.9360694 -3.2391515, 55.9390399 -3.3614272, 55.9457034 -3.3727735, 55.9448037 -3.3753259, 55.9805959 -3.1832658, 55.9809475 -3.1748973, 55.9434320 -3.3600575, 55.9437471 -3.3581099, 55.9453066 -3.3603147, 55.9415413 -3.1765387, 55.9370826 -3.1361439, 55.9586835 -3.1836675, 55.9611856 -3.1865315, 55.9901392 -3.3873481, 55.9454748 -3.2133562, 55.9660452 -3.2748349, 55.9664497 -3.2729235, 55.9293562 -3.3014052, 55.9410215 -3.2404052, 55.9437556 -3.2442061, 55.9367525 -3.2236850, 55.9381980 -3.2233304, 55.9411163 -3.2946751, 55.9816356 -3.1755155, 55.9598506 -3.2240155, 55.9817826 -3.1942506, 55.9810266 -3.1939926, 55.9811977 -3.1933980, 55.9813243 -3.1938987, 55.9811060 -3.1942189, 55.9811219 -3.1927295, 55.9812872 -3.1942703, 55.9810235 -3.1943227, 55.9810882 -3.1928819, 55.9810439 -3.1926011, 55.9811933 -3.1929701, 55.9809849 -3.1928242, 55.9813860 -3.1941338, 55.9809438 -3.1941571, 55.9812539 -3.1931285, 55.9810905 -3.1933833, 55.9741923 -3.2061226, 55.9109047 -3.2387736, 55.9747440 -3.2136660, 55.9231850 -3.2486394, 55.9374125 -3.4072197, 55.9371945 -3.4058237, 55.9374045 -3.4044434, 55.9637505 -3.2335268, 55.9428585 -3.1864559, 55.9846458 -3.1940711, 55.9221429 -3.1752023, 55.9223399 -3.1759213, 55.9670991 -3.2534481, 55.9718838 -3.2534179, 55.9810691 -3.2383577, 55.8984479 -3.3160297, 55.8985757 -3.3165711, 55.8953678 -3.3130989, 55.9298336 -3.3106553, 55.9382569 -3.1735978, 55.9158853 -3.3230009, 55.9162950 -3.3213724, 55.9364542 -3.2790390, 55.9125969 -3.2367843, 55.9184722 -3.3001516, 55.9257870 -3.2656567, 55.9797213 -3.2996678, 55.9783116 -3.2972235, 55.9122709 -3.3154115, 55.9799121 -3.2416420, 55.9268127 -3.3119797, 55.9345568 -3.1028170, 55.9337360 -3.1016259, 55.9403513 -3.3138800, 55.9306972 -3.3125459, 55.9313178 -3.3099344, 55.9320037 -3.3111775, 55.9326177 -3.3104501, 55.9332898 -3.3118087, 55.9475381 -3.3620106, 55.9319865 -3.3124215, 55.9318662 -3.3137738, 55.9181587 -3.2705015, 55.9342211 -3.1778645, 55.9514241 -3.2207842, 55.9724670 -3.2012980, 55.9778933 -3.1745058, 55.9784170 -3.1773402, 55.9780971 -3.1753475, 55.9783089 -3.1763226, 55.9777459 -3.1734796, 55.9789813 -3.1763388, 55.9051373 -3.2232377, 55.9365959 -3.3331143, 55.9362007 -3.3351286, 55.9360359 -3.3397002, 55.9363751 -3.3340583, 55.9694092 -3.2702934, 55.9416964 -3.1483778, 55.9582905 -3.2794012, 55.9767945 -3.1754739, 55.9766864 -3.1738715, 55.9777295 -3.1642417, 55.9713517 -3.2751363, 55.9716217 -3.2748645, 55.9509109 -3.3040405, 55.9505011 -3.3028322, 55.9517277 -3.3043967, 55.9508168 -3.3035767, 55.9561104 -3.2932448, 55.9489783 -3.2074982, 55.9771152 -3.2561088, 55.9775665 -3.1730962, 55.9767627 -3.1685149, 55.9759609 -3.1666596, 55.9775601 -3.1677040, 55.9384344 -3.2383937, 55.9400215 -3.2835991, 55.9722626 -3.1718229, 55.9724369 -3.1737659, 55.9725956 -3.1724850, 55.9735295 -3.1719581, 55.9422361 -3.2854972, 55.9426182 -3.2848408, 55.9424261 -3.2853919, 55.9397418 -3.2866275, 55.9602875 -3.2957399, 55.9004908 -3.2325152, 55.9425974 -3.2817995, 55.9427324 -3.2894308, 55.9428132 -3.2886637, 55.9428834 -3.2895145, 55.9430576 -3.2887151, 55.9429003 -3.2891706, 55.9421047 -3.2806000, 55.9421878 -3.2816836, 55.9418910 -3.2811010, 55.9382573 -3.1889080, 55.9433390 -3.1786743, 55.9352274 -3.1798948, 55.9354661 -3.1805170, 55.9370598 -3.1807869, 55.9375196 -3.1796111, 55.9372843 -3.1802503, 55.9565957 -3.1172742, 55.9416412 -3.1759641, 55.9411089 -3.1758742, 55.9419221 -3.1751737, 55.9413694 -3.1751296, 55.9421224 -3.1755399, 55.9420435 -3.1759728, 55.9417717 -3.1760016, 55.9412937 -3.1748715, 55.9419213 -3.1762309, 55.9417190 -3.1758050, 55.9416370 -3.1757316, 55.9421785 -3.1756667, 55.9411631 -3.1744380, 55.9420584 -3.1756683, 55.9419621 -3.1753235, 55.9421292 -3.1750657, 55.9415161 -3.1750333, 55.9414662 -3.2429306, 55.9380788 -3.2164911, 55.9740721 -3.2549433, 55.9422906 -3.1878107, 55.9424910 -3.1860227, 55.9322321 -3.2172464, 55.9825623 -3.4007445, 55.9820233 -3.4001705, 55.9828150 -3.4009621, 55.9198429 -3.1330027, 55.9726414 -3.3515240, 55.9235247 -3.1313815, 55.9302056 -3.3085109, 55.9324769 -3.3071758, 55.9305686 -3.3131161, 55.9308765 -3.3117228, 55.9399461 -3.2681429, 55.9554624 -3.2241042, 55.9419112 -3.2188990, 55.9483346 -3.2942197, 55.9421466 -3.2052971, 55.9229540 -3.3790829, 55.9287806 -3.2587079, 55.8990520 -3.2377797, 55.9109797 -3.2089126, 55.9419464 -3.1773362, 55.9794270 -3.2989393, 55.9173932 -3.1379231, 55.9764201 -3.1763322, 55.9142301 -3.1341304, 55.9710130 -3.1805984, 55.9134751 -3.1337551, 55.9182561 -3.1989900, 55.9132484 -3.1780898, 55.9646733 -3.1376419, 55.9655572 -3.3178364, 55.8994825 -3.2677948, 55.8998835 -3.2694845, 55.9754348 -3.1685187, 55.9819343 -3.1951000, 55.9405416 -3.2928536, 55.9193644 -3.2228522, 55.9191174 -3.2378985, 55.9192124 -3.2367725, 55.8930871 -3.2026884, 55.8907970 -3.2014067, 55.9642544 -3.1552869, 55.8941813 -3.2179019, 55.8935768 -3.2164997, 55.9761891 -3.1670909, 55.9758400 -3.1668709, 55.9431663 -3.2838745, 55.9433798 -3.2860859, 55.9433113 -3.2870890, 55.9190084 -3.1475665, 55.9191946 -3.1484908, 55.9178453 -3.1484828, 55.9806315 -3.1941324, 55.8993059 -3.2676601, 55.9768676 -3.1714974, 55.9150424 -3.1487433, 55.9308539 -3.2761099, 55.9460256 -3.1970185, 55.9224134 -3.2358339, 55.9232515 -3.2341430, 55.9506991 -3.1804199, 55.9228372 -3.1787829, 55.9651311 -3.3167567, 55.9339081 -3.2001289, 55.9381722 -3.1723579, 55.9391719 -3.1689528, 55.9405990 -3.1722908, 55.9216273 -3.1782748, 55.9241930 -3.1744106, 55.9212881 -3.1716104, 55.9649792 -3.3131166, 55.9451443 -3.1904604, 55.9416788 -3.1843079, 55.9226382 -3.1721985, 55.9036926 -3.1570111, 55.9382369 -3.2291610, 55.9828789 -3.2415813, 55.9706810 -3.3766476, 55.9635638 -3.2312763, 55.9044775 -3.2067494, 55.9331889 -3.2150781, 55.9227690 -3.3421555, 55.8831023 -3.3393159, 55.8838260 -3.3396672, 55.9336416 -3.2375159, 55.9235691 -3.2868011, 55.9310562 -3.2789944, 55.9077899 -3.3207300, 55.9082800 -3.3196678, 55.9378551 -3.2430479, 55.9342259 -3.2112430, 55.9260946 -3.2833643, 55.9400371 -3.2200755, 55.9556763 -3.1879855, 55.9364788 -3.1804752, 55.9365673 -3.1810320, 55.9337994 -3.2511195, 55.9251847 -3.2668441, 55.9281220 -3.1676809, 55.9131088 -3.1600256, 55.9032628 -3.1558019, 55.9031108 -3.1551269, 55.9351736 -3.2474351, 55.9303474 -3.1688301, 55.9231711 -3.1630255, 55.9251682 -3.2504770, 55.9553468 -3.2876097, 55.9554662 -3.2864616, 55.9340775 -3.2344416, 55.9186700 -3.2386355, 55.9194000 -3.2392334, 55.9181062 -3.2402690, 55.9190442 -3.2405398, 55.9186959 -3.2407877, 55.9325805 -3.2889506, 55.9541504 -3.3018100, 55.9063907 -3.2862198, 55.9390667 -3.2357495, 55.9291158 -3.1990147, 55.9220415 -3.3064155, 55.9238629 -3.3045205, 55.9232078 -3.3078531, 55.9222113 -3.3051267, 55.9583463 -3.1189991, 55.9777348 -3.2983203, 55.9463372 -3.2009161, 55.9347843 -3.1777102, 55.9310132 -3.1730716, 55.8957251 -3.3137161, 55.8961364 -3.3124683, 55.9282756 -3.3087719, 55.8961608 -3.3078477, 55.8697544 -3.3340369, 55.9464077 -3.0792269, 55.9487089 -3.0877156, 55.9472371 -3.3582172, 55.9466989 -3.2004459, 55.9609398 -3.2353282, 55.9611023 -3.2337205, 55.9615648 -3.2337688, 55.9897791 -3.3942172, 55.9548736 -3.4013671, 55.9550518 -3.4014531, 55.9499454 -3.3347136, 55.9332555 -3.1585963, 55.9615076 -3.1962176, 55.9617797 -3.1967210, 55.9618418 -3.1964188, 55.9171133 -3.1693870, 55.9499151 -3.1945526, 55.9337107 -3.2143913, 55.9384227 -3.2096374, 55.9673672 -3.2023565, 55.9331209 -3.2609346, 55.9414121 -3.1461173, 55.9584013 -3.2102800, 55.9415712 -3.1423967, 55.9372219 -3.1675591, 55.9376359 -3.1437325, 55.9582727 -3.2142012, 55.9578400 -3.2137240, 55.9580057 -3.2137170, 55.9583384 -3.2143374, 55.9578384 -3.2135045, 55.9586941 -3.2142670, 55.9579707 -3.2133574, 55.9561334 -3.1325493, 55.9557004 -3.4018948, 55.9461251 -3.1413986, 55.9522035 -3.2050327, 55.9532532 -3.1988728, 55.9527412 -3.2019245, 55.9537795 -3.1957406, 55.9588705 -3.2081707, 55.9208169 -3.1598554, 55.9578355 -3.2056417, 55.9576157 -3.2060293, 55.9576413 -3.2059278, 55.9580732 -3.2011430, 55.9579644 -3.2017381, 55.9580494 -3.2012821, 55.9579410 -3.2018748, 55.9584126 -3.2005043, 55.9582239 -3.2009160, 55.9332968 -3.1356104, 55.9587356 -3.2012076, 55.9229466 -3.2475426, 55.9569863 -3.2004490, 55.9571215 -3.2003372, 55.9569959 -3.2010702, 55.9570258 -3.1998342, 55.9568113 -3.2014707, 55.9568346 -3.2013336, 55.9567905 -3.2018529, 55.9571440 -3.1998405, 55.9569850 -3.2000388, 55.9563224 -3.2001027, 55.9562856 -3.2003225, 55.9563043 -3.2002104, 55.9563423 -3.1999840, 55.9563645 -3.1998513, 55.9558901 -3.2012614, 55.9563424 -3.1994368, 55.9262637 -3.2243126, 55.9197901 -3.4326481, 55.9254217 -3.2108083, 55.9633397 -3.1866387, 55.9317876 -3.2353092, 55.9571314 -3.1945091, 55.9570903 -3.1942658, 55.9571062 -3.1948163, 55.9570078 -3.1956389, 55.9574245 -3.1945101, 55.9570801 -3.1952413, 55.9593471 -3.1962794, 55.9588288 -3.1994335, 55.9583111 -3.1990412, 55.9585624 -3.1980766, 55.9583421 -3.1992286, 55.9586095 -3.1976521, 55.9584283 -3.1986380, 55.9585084 -3.1979077, 55.9575802 -3.1968697, 55.9566931 -3.1981359, 55.9567965 -3.1968319, 55.9566552 -3.1982909, 55.9568562 -3.1972327, 55.9568774 -3.1971123, 55.9156397 -3.3249979, 55.9156923 -3.3238425, 55.9153453 -3.3247946, 55.9153595 -3.3236574, 55.9150128 -3.3243232, 55.9151025 -3.3234941, 55.9305554 -3.2379452, 55.9566534 -3.1920437, 55.9568104 -3.1898625, 55.9566771 -3.1918966, 55.9565541 -3.1926150, 55.9570880 -3.1893684, 55.9567192 -3.1908266, 55.9565429 -3.1914874, 55.9565039 -3.1916747, 55.9581431 -3.1932114, 55.9580069 -3.1929658, 55.9560597 -3.2073932, 55.9426363 -3.2453765, 55.9539415 -3.2061599, 55.9538842 -3.2068469, 55.9541878 -3.2062819, 55.9538990 -3.2065724, 55.9516793 -3.2103388, 55.9087093 -3.1294683, 55.9083658 -3.1302627, 55.9098947 -3.1298365, 55.9086482 -3.1320997, 55.9082094 -3.1281800, 55.9075358 -3.1316654, 55.9067683 -3.1280724, 55.9074133 -3.1295842, 55.9130531 -3.1377878, 55.9579855 -3.4144584, 55.9611738 -3.2007261, 55.9612899 -3.2007540, 55.9610369 -3.2004541, 55.9610414 -3.2006404, 55.9614051 -3.2007464, 55.9620034 -3.1995271, 55.9086030 -3.1535038, 55.9085760 -3.1545047, 55.9109349 -3.1528529, 55.9080474 -3.1628940, 55.9318731 -3.2975150, 55.9315469 -3.2965080, 55.9313921 -3.2957951, 55.9295984 -3.3000022, 55.9502297 -3.1939281, 55.9606540 -3.1948258, 55.9595489 -3.1922083, 55.9583753 -3.1909823, 55.9578621 -3.1897878, 55.9574569 -3.1920171, 55.9575620 -3.1916915, 55.9575374 -3.1909923, 55.9576308 -3.1912457, 55.9575648 -3.1913957, 55.9577829 -3.1897123, 55.9576959 -3.1905223, 55.9577544 -3.1902024, 55.9494095 -3.1864626, 55.9415305 -3.2096039, 55.9477482 -3.1983184, 55.9482088 -3.1927240, 55.9480798 -3.1929875, 55.9476449 -3.1962205, 55.9467112 -3.1954578, 55.9475963 -3.1940675, 55.9395772 -3.2053724, 55.9399587 -3.2058503, 55.9401754 -3.2051474, 55.9459124 -3.1915662, 55.9477804 -3.1928983, 55.9402430 -3.1727693, 55.9460773 -3.1915078, 55.9460762 -3.1916340, 55.9372942 -3.2112450, 55.9386346 -3.2107489, 55.9409866 -3.2107158, 55.9407779 -3.2120796, 55.9410206 -3.2114030, 55.9050910 -3.1343770, 55.9028429 -3.1648741, 55.9402022 -3.2097896, 55.9498358 -3.1944874, 55.9490749 -3.1954965, 55.9035412 -3.1821096, 55.9278308 -3.2029884, 55.9509187 -3.1896338, 55.9549766 -3.1940333, 55.9289340 -3.3850956, 55.9220620 -3.1790686, 55.9484660 -3.1908405, 55.9491359 -3.1879889, 55.9322908 -3.3840708, 55.9328840 -3.3853114, 55.9332462 -3.3859725, 55.9493593 -3.1850273, 55.9498809 -3.1852975, 55.9497910 -3.1868298, 55.9494266 -3.1860127, 55.9544711 -3.1956283, 55.9500589 -3.1853856, 55.9500722 -3.1849837, 55.9510336 -3.1857059, 55.9513675 -3.1810136, 55.9515036 -3.1804098, 55.9105025 -3.3235645, 55.9499184 -3.2133490, 55.9507199 -3.2116484, 55.9492178 -3.2148611, 55.9501657 -3.2128195, 55.9434309 -3.1997040, 55.9254395 -3.3071736, 55.9594881 -3.1871746, 55.9193931 -3.2787375, 55.9181911 -3.2782631, 55.9188677 -3.2805660, 55.9196291 -3.2799665, 55.9204553 -3.2780930, 55.9201801 -3.2782104, 55.9199010 -3.2768654, 55.9183106 -3.2760785, 55.9178305 -3.2802163, 55.9192966 -3.2811296, 55.9190402 -3.2822249, 55.9181350 -3.2823908, 55.9589084 -3.1973993, 55.9524851 -3.1785482, 55.9527783 -3.1777107, 55.9525789 -3.1786026, 55.9526096 -3.1778455, 55.9401136 -3.2035933, 55.9525625 -3.1763202, 55.9525134 -3.1760443, 55.9510367 -3.1792500, 55.9509261 -3.1791989, 55.9266569 -3.2906587, 55.9259672 -3.2906739, 55.9509562 -3.1793029, 55.9715612 -3.1511891, 55.9716128 -3.1531798, 55.9471723 -3.2950498, 55.9502335 -3.1832343, 55.9069836 -3.2745258, 55.9502544 -3.1792709, 55.9799828 -3.2336228, 55.9515884 -3.1767930, 55.9510805 -3.1774572, 55.9233418 -3.1754307, 55.9557050 -3.1593134, 55.9831173 -3.3982598, 55.9831412 -3.3990486, 55.9333835 -3.3060603, 55.9330851 -3.3055704, 55.9330382 -3.3063701, 55.9328514 -3.3048776, 55.9119048 -3.3162745, 55.9124396 -3.3164891, 55.9133755 -3.3158141, 55.9136037 -3.3151038, 55.9135778 -3.3145334, 55.9133853 -3.3144838, 55.9132252 -3.3140003, 55.9139806 -3.3144355, 55.9456742 -3.3672489, 55.9731731 -3.1669137, 55.9237564 -3.2987464, 55.9238278 -3.2979670, 55.9236823 -3.2992800, 55.9236244 -3.2983415, 55.9756413 -3.1693138, 55.9758911 -3.1692936, 55.9758604 -3.1697211, 55.9753361 -3.1696582, 55.9147293 -3.1511366, 55.9721048 -3.1685421, 55.9721151 -3.1680154, 55.9717652 -3.1690738, 55.9732515 -3.1673385, 55.9715681 -3.1606383, 55.9692273 -3.1671765, 55.9730053 -3.1675964, 55.9756256 -3.1775110, 55.9713870 -3.1706865, 55.9729528 -3.1695492, 55.9751541 -3.1650251, 55.9751577 -3.1653774, 55.9763527 -3.1666992, 55.9766234 -3.1668946, 55.9770520 -3.1688358, 55.9763420 -3.1688202, 55.9768312 -3.1689243, 55.9769477 -3.1679184, 55.9764831 -3.1675618, 55.9766276 -3.1674364, 55.9767630 -3.1679004, 55.9763615 -3.1673944, 55.9762132 -3.1674013, 55.9764423 -3.1672457, 55.9736969 -3.1671845, 55.9743212 -3.1625378, 55.9740795 -3.1632105, 55.9740620 -3.1630357, 55.9742799 -3.1619687, 55.9742593 -3.1633249, 55.9742318 -3.1635897, 55.9752231 -3.1690512, 55.9746912 -3.1702181, 55.9750377 -3.1689925, 55.9746574 -3.1700411, 55.9749450 -3.1691192, 55.9749017 -3.1700282, 55.9720281 -3.1737035, 55.9727889 -3.1744380, 55.9727346 -3.1745843, 55.9721351 -3.1736643, 55.9741171 -3.1730714, 55.9735318 -3.1745179, 55.9740812 -3.1745082, 55.9739348 -3.1746700, 55.9742013 -3.1746074, 55.9744262 -3.1756289, 55.9743317 -3.1760719, 55.9738875 -3.1759382, 55.9743689 -3.1762422, 55.9741727 -3.1757146, 55.9741963 -3.1758890, 55.9740011 -3.1760644, 55.9740555 -3.1757628, 55.9253013 -3.2894404, 55.9241260 -3.2892037, 55.9235279 -3.2886413, 55.9220176 -3.2971855, 55.9737812 -3.1727710, 55.9739374 -3.1725951, 55.9739122 -3.1731923, 55.9747248 -3.1723013, 55.9746745 -3.1725116, 55.9730956 -3.1719611, 55.9737461 -3.1722015, 55.9735419 -3.1722524, 55.9737264 -3.1720461, 55.9734307 -3.1722581, 55.9733652 -3.1721379, 55.9733894 -3.1719573, 55.9732022 -3.1719596, 55.9732758 -3.1714536, 55.9725117 -3.1719833, 55.9716033 -3.1728525, 55.9716849 -3.1726165, 55.9719508 -3.1722289, 55.9718987 -3.1720621, 55.9737219 -3.1688570, 55.9753470 -3.1700225, 55.9746740 -3.1690745, 55.9745309 -3.1710571, 55.9744986 -3.1695250, 55.9745046 -3.1693685, 55.9746944 -3.1711617, 55.9296471 -3.1268952, 55.9759337 -3.1724595, 55.9759996 -3.1723194, 55.9758148 -3.1719840, 55.9760071 -3.1718126, 55.9759678 -3.1720731, 55.9756249 -3.1743429, 55.9756742 -3.1728919, 55.9436134 -3.2678368, 55.9789651 -3.2338860, 55.9718369 -3.3043977, 55.9672312 -3.2394326, 55.9745116 -3.2044948, 55.9740769 -3.2060525, 55.9744149 -3.2047233, 55.9748045 -3.2066664, 55.9691367 -3.2785220, 55.9452261 -3.3675496 +A 5, A 656, B 37 +44 +no +55.9387357 -3.3996538, 55.9380963 -3.4051984, 55.9385221 -3.4040472, 55.9386848 -3.4052874, 55.9333966 -3.3543268, 55.9024677 -3.2131994, 55.9579939 -3.3233291, 55.9028966 -3.1642422, 55.9122291 -3.3948137, 55.8798835 -3.3439577, 55.9226836 -3.2094162, 55.9101467 -3.2093552, 55.9546676 -3.3637002, 55.9222410 -3.1492085, 55.9710480 -3.1879850, 55.9387885 -3.2890803, 55.8869268 -3.2813599, 55.9691744 -3.1898383, 55.9045439 -3.3952157, 55.9729762 -3.1721306 +1730 +1 +55.9259159 -3.2475077, 55.9454993 -3.1874399, 55.9282699 -3.1971794, 55.9163168 -3.3178016, 55.9526200 -3.1872149, 55.9456193 -3.2178696, 55.9311720 -3.2951988, 55.9089361 -3.3201414, 55.9085739 -3.3187295, 55.9117444 -3.3246249, 55.9114205 -3.3241848, 55.9438322 -3.2058300, 55.9502048 -3.1904658, 55.9502374 -3.1901476, 55.9319254 -3.2512353, 55.9173812 -3.3147110, 55.9122188 -3.3171913, 55.9220250 -3.1740037, 55.9222596 -3.1746208, 55.9214872 -3.3034840, 55.9122663 -3.3242829, 55.9095509 -3.2288170, 55.9375488 -3.3118506, 55.9463571 -3.2082808, 55.9524023 -3.1867211, 55.9525000 -3.1872298, 55.9274324 -3.1996630, 55.9140621 -3.2840381, 55.9274598 -3.3076072, 55.9276450 -3.3080783, 55.9239739 -3.2513488, 55.9258469 -3.1648168, 55.9446376 -3.1965778, 55.9444142 -3.1965059, 55.9258509 -3.1647719, 55.9421747 -3.1855648, 55.9412750 -3.1446800, 55.9331086 -3.1362248, 55.9221224 -3.1339138, 55.9223185 -3.1339297, 55.9225101 -3.1339536, 55.9443966 -3.1836641, 55.9219280 -3.1788973, 55.9440570 -3.0985717, 55.9466232 -3.1903104, 55.9116844 -3.3222899, 55.9119672 -3.3224414, 55.9239634 -3.1724671, 55.9220936 -3.1720186 +yes +1 +406 +de:Königstuhl (Odenwald) +37 +yes +2 +360 +55.9813666 -3.1776197, 55.9372632 -3.2070698, 55.9555027 -3.1887801, 55.9589676 -3.2124402, 55.9589390 -3.2120876, 55.9410478 -3.1808355, 55.9469052 -3.1861162, 55.9261476 -3.3062378 +49.4113938 8.7045200 +Thermes de Cluny +yes +Folies Bergère, Théâtre des Champs-Elysées, Salle Pleyel, La Maroquinerie, Bouffon théâtre, Opéra Bastille, Le Cabaret Sauvage, Théâtre National de l'Opéra Comique, Cité de la Musique +49.4270902 8.6483857 and 49.4278529 8.6465726 +51.9789909 8.5077870, 51.9839158 8.5145830, 52.0148098 8.5415843, 51.9930698 8.6117053, 51.9530548 8.6019656, 52.0051281 8.5264278, 51.9719056 8.4584900, 51.9862274 8.6330968, 51.9832360 8.5011688, 51.9489161 8.5784781, 52.0005000 8.5830563, 51.9922699 8.5821902, 51.9986701 8.5845091, 52.0111171 8.6060838, 52.0110252 8.6075822, 51.9526831 8.5894518, 51.9914877 8.4790051, 51.9478258 8.5866769, 51.9845111 8.5016418, 52.0137803 8.5492099, 51.9847361 8.4854709, 51.9859050 8.4877428, 51.9971967 8.5057650, 51.9934233 8.5091802, 52.0119814 8.5542137, 51.9475967 8.5920756, 51.9289095 8.5529507, 52.0113082 8.5270214, 52.0107287 8.5202197, 52.0094113 8.5265262, 52.0037833 8.5215969, 52.0065591 8.5759589, 51.9891284 8.5001010, 51.9846427 8.5287592, 51.9854958 8.5280680, 51.9843934 8.5268438, 51.9417125 8.5793602, 51.9423426 8.5802746, 51.9600857 8.5281274, 52.0045344 8.5226673, 51.9609763 8.5280751, 52.0048839 8.5221348, 52.0147217 8.5248646, 51.9499358 8.5003082, 51.9568591 8.5479920, 52.0024451 8.5653246, 51.9406388 8.5114804, 52.0017368 8.5684745, 52.0018299 8.5675837, 52.0020334 8.5669169, 51.9906984 8.5078615, 51.9570094 8.5337027, 51.9681157 8.5499373, 52.0005457 8.5605587, 51.9963039 8.4716935, 51.9888194 8.5112622, 51.9568731 8.5465415, 51.9333689 8.5654391, 52.0112149 8.5297888, 52.0013439 8.5671531, 52.0008115 8.5610395, 52.0104876 8.6080033, 52.0065198 8.5259435, 51.9839295 8.5004598, 51.9932321 8.6110621, 51.9567876 8.5472991, 51.9837555 8.5001033, 52.0111837 8.5268995, 52.0106909 8.5203429, 51.9621571 8.4624693, 51.9527696 8.6018036, 51.9528793 8.5894680, 51.9717369 8.4582094, 51.9484298 8.5873772, 51.9487421 8.5784654, 51.9923885 8.5822520, 51.9863326 8.6322964, 52.0010481 8.5831553, 51.9990577 8.5845337, 52.0137807 8.5496365, 51.9847954 8.4859472, 51.9861104 8.4873591, 51.9972310 8.5062078, 51.9931065 8.5094547, 52.0114804 8.5539410, 51.9914510 8.4802500, 51.9415032 8.5795671, 52.0051550 8.5262181, 52.0039093 8.5212500, 51.9898013 8.5008912, 51.9847292 8.5279845, 51.9842005 8.5139759, 51.9789415 8.5070326, 51.9525819 8.5921145, 51.9285763 8.5528956, 52.0047086 8.5224081, 51.9603119 8.5285761, 51.9475733 8.5919114, 51.9502642 8.5005356, 51.9568818 8.5332831, 51.9402691 8.5119328, 51.9960941 8.4716263, 51.9884382 8.5106798, 51.9487080 8.5862850, 51.9493095 8.5874506, 51.9483907 8.5883941, 51.9478782 8.5876688, 51.9478908 8.5859766, 51.9482758 8.5858662, 51.9474419 8.5860889, 51.9475824 8.5870706, 52.0104310 8.6074498, 51.9680412 8.5506318, 51.9862135 8.6337019 +49.4163242 8.6709589, 49.3982405 8.6891686, 49.4154939 8.6674299, 49.3984918 8.6889404, 49.4197235 8.6766060, 49.4347006 8.6819337, 49.4275117 8.6831905, 49.4189698 8.6760286, 49.4163577 8.6686492, 49.4179060 8.6686309, 49.4157661 8.6686751, 49.4174626 8.6687152, 49.4136878 8.6671227, 49.4136571 8.6671084, 49.4140866 8.6673605, 49.4128068 8.6670431, 49.4157404 8.6712736, 49.4134424 8.6679610, 49.4165443 8.6709680, 49.4134657 8.6678164, 49.4125591 8.6685224, 49.4147825 8.7194810, 49.4047830 8.6748233, 49.4081724 8.6765377, 49.3736369 8.6882014, 49.4105563 8.7059593, 49.4107724 8.7039613, 49.4072240 8.6872972, 49.4075178 8.6824857, 49.4111078 8.7122962, 49.4229888 8.6430964, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349, 49.4035624 8.6765204, 49.4161640 8.6686617, 49.4149163 8.6654747, 49.4150320 8.7620828, 49.3999783 8.6914430, 49.3659380 8.6888680, 49.4045857 8.6750253, 49.4061766 8.6754688, 49.4103125 8.7748332, 49.4235022 8.6459331 +2 +7 +55.9849796 -3.1929699 +567.8, 446, 481, 480, 376, 375.5, 439.9, 486.9, 449, 539, 296, 258 +yes +10 and 49.4112725 8.7119074, 49.4257744 8.6577657, 49.4131782 8.7072377, 49.4007776 8.6911061, 49.3738871 8.7039058, 49.3744103 8.7047986, 49.3699337 8.6542672, 49.4252823 8.6480351, 49.4190959 8.6518895, 49.3780880 8.6666402 +yes +547 +4 +Cameo Picturehouse, Filmhouse, Cineworld, Vue Cinema +École de conduite Lamartine, ECF, ECF Trinité, Cluny - Saint-Germain and 01.43.26.42.42, C.E.R. Brancion and 01.48.28.03.78, Permis Malin, Auto école Place de Rungis, Auto Moto École Alésia, Caser formations, École de conduite Saint-Charles, Auto-École, ecf, La Réussite, Tour Eiffel Permis +0.75472968250310635 +48.460916044007355 +17 +48.8407193 2.3049672, 48.8400915 2.3026528 +The Salisbury +yes +8 +55.9821414 -3.4001668 +48.8517205 2.3567051, 48.8435991 2.3495369, 48.8443095 2.3492103, 48.8530106 2.3457721, 48.8532232 2.3449207, 48.8396212 2.3497285, 48.8543470 2.3717003, 48.8692308 2.2856346 +no, no, no +828 +342 +CitéCréation, Association du Demi-Millenaire - Les elephants heureux, Guillaume Bottazzi, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation & François Schuiten, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, Mur'Art, CitéCréation, CitéCréation, CitéCréation, Mur'Art, CitéCréation, CitéCréation, CitéCréation, Association du Demi-Millenaire - Les elephants heureux, Association du Demi-Millenaire - Les elephants heureux, Association du Demi-Millenaire - Les elephants heureux, Association du Demi-Millenaire - Les elephants heureux, Association du Demi-Millenaire - Les elephants heureux, CitéCréation, CitéCréation, Franck Margerin/Mur'Art, Mur'Art, Loustal/Mur'Art, Mur'Art, 7e-sens, Gérard Gasquet, CitéCréation, CitéCréation, CitéCréation, CitéCréation, 7e-sens, CitéCréation, CitéCréation, 7e-sens, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, Daniel Tomassi, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, 7e-sens, Guillaume Bottazzi, CitéCréation, CitéCréation, CitéCréation, Kaley Begal, Kaley Begal, CitéCréation, 7e-sens, Tepito Arte Acà, CitéCréation +48.8639483 2.3316516 +32 +86 +0.52731944704845524 +no +Camping Heidelberg +48.8330200 2.3329456 +13 +1899, 1884, 1887, 1877, 1879, 1872, 1873, 1893, 1882, 1880, 1883, 1881, 1897, 1875, 1908, 1920, 1904, 1912, 1910, 1897, 1873, 1882, 1906, 1929, 1864, 1893, 1870, 1886, 1910, 1919, 1919, 1920, 1911, 1916, 1914, 1939, 1877, 1920, 1884, 1923, 1926, 1925, 1868, 1895, 1885, 1877, 1887, 1893, 1863, 1927, 1910, 1900, 1924, 1894, 1871, 1873, 1868, 1863, 1907, 1920, 1899, 1909, 1884, 1913, 1907, 1911, 1867, 1877, 1903, 1872, 1868, 1925, 1926, 1903, 1922, 1923, 1880, 1868, 1908, 1903, 1905, 1924, 1923 +55.9500318 -3.3725551, 56.4397000 -3.3723000, 56.1852392 -3.2168273, 56.0008488 -2.7353237, 56.3678531 -3.8722739, 55.6798776 -4.1134367, 56.2691557 -2.7508106, 55.5400331 -2.7427099, 55.7075978 -2.3785037, 55.8754852 -3.4026956, 55.9743079 -3.9759388, 55.6773034 -2.6087495, 56.1752435 -3.1298042 +55.9501318 -3.1886125 +Kita Tangstedter Landstraße and 53.6560283 10.0207226 +yes +49.3826654 8.6703241, 49.4018281 8.6889374, 49.4018800 8.6877769, 49.4018302 8.6889341, 49.4013098 8.6912411, 49.4013099 8.6912408, 49.4018301 8.6889373, 49.4018280 8.6889343, 49.4034414 8.6858831, 49.4033425 8.6920344, 49.4034077 8.6864942, 49.4053236 8.6938605, 49.4033423 8.6920342, 49.4034078 8.6864940, 49.4034077 8.6864940, 49.4034078 8.6864942, 49.4033423 8.6920344, 49.3795039 8.6788777, 49.3994731 8.6498961, 49.3832632 8.6902896, 49.3795039 8.6788791, 49.3795039 8.6788799, 49.3832635 8.6902896, 49.3795039 8.6788784, 49.3795039 8.6788807 +yes +49.4081527 8.6735594, 49.4176558 8.6587085, 49.4165055 8.6594547, 49.4148711 8.6635210, 49.4045856 8.6498671, 49.4042890 8.6482626, 49.4005255 8.6416909, 49.4077166 8.6770507, 49.4076619 8.6829409, 49.4091366 8.6592347, 49.3876769 8.6645282, 49.3915440 8.6790012, 49.3793134 8.6732898, 49.4258813 8.6617121, 49.4306151 8.6467040, 49.3864285 8.6696286, 49.3773672 8.6667238, 49.3834643 8.6624283, 49.4257744 8.6577657, 49.3974698 8.6477849, 49.4076691 8.6751190, 49.3791702 8.6320031, 49.4131305 8.6546204, 49.4140289 8.6610942, 49.4178759 8.6766696, 49.4213757 8.6586938, 49.4081055 8.6756660, 49.4038715 8.6762894, 49.4054553 8.6752473, 49.4382046 8.6794526, 49.4373909 8.6752550, 49.3975120 8.6522670, 49.4084511 8.6746131, 49.4061961 8.6789422, 49.4278664 8.6462916, 49.4068117 8.6707739, 49.4066118 8.6751595, 49.3699337 8.6542672, 49.4252823 8.6480351, 49.4190959 8.6518895, 49.4234431 8.6469231, 49.4177824 8.6425471, 49.4227696 8.6727444, 49.4156100 8.6707017, 49.4162463 8.6598488, 49.4071975 8.6762084, 49.3931903 8.6817010, 49.3801022 8.6812091, 49.3759036 8.6766890, 49.4096282 8.6811489, 49.4147851 8.6501119, 49.4016680 8.6740567, 49.3632402 8.6222259, 49.3772275 8.6672364, 49.3799233 8.6752091, 49.4317284 8.6827286, 49.3930474 8.6832081, 49.3998558 8.6384200, 49.3780880 8.6666402, 49.3791746 8.6705116, 49.4141167 8.6710146 +22 +224 +55.9518191 -3.1796232 +0.72396396008536001 +129 and 55.8940463 -3.3482149, 55.9067356 -3.2765428, 55.9112129 -3.2971404, 55.8921896 -3.3904545, 55.8928744 -3.3831777, 55.9075397 -3.2601949, 55.9012534 -3.3172353, 55.9052885 -3.3120708, 55.8956436 -3.3085216, 55.8966106 -3.3015427, 55.9064620 -3.2745346, 55.8990943 -3.2945157, 55.9030149 -3.2833882, 55.8985834 -3.2593352, 55.8958844 -3.3085762, 55.8889910 -3.2764883, 55.8905325 -3.2746290, 55.8994919 -3.2311487, 55.9100179 -3.2804925, 55.9101035 -3.2803751, 55.9057184 -3.2756582, 55.9057613 -3.2755133, 55.9062552 -3.2686221, 55.9060912 -3.2635206, 55.9033690 -3.2736040, 55.9034122 -3.2734109, 55.9003911 -3.2685569, 55.8897636 -3.1620915, 55.8898633 -3.1619972, 55.8928258 -3.1331472, 55.8929168 -3.1332421, 55.8984427 -3.2164902, 55.9073595 -3.2601185, 55.9003110 -3.2920130, 55.8916943 -3.3211093, 55.8957908 -3.2027523, 55.8860732 -3.3399261, 55.9027043 -3.2317298, 55.9048951 -3.2401465, 55.8983131 -3.2529409, 55.8982152 -3.2529759, 55.8967785 -3.2616868, 55.8927797 -3.2635293, 55.8657294 -3.3178967, 55.8561715 -3.3367531, 55.9004339 -3.3188436, 55.8988106 -3.1122530, 55.8957287 -3.2025538, 55.8771374 -3.3287515, 55.8866544 -3.3374530, 55.8858646 -3.3375740, 55.9091868 -3.3220855, 55.9082024 -3.1450986, 55.8985472 -3.2526169, 55.8936687 -3.1341152, 55.9062132 -3.1443033, 55.8918723 -3.2994420, 55.9081994 -3.2566236, 55.8948439 -3.2697613, 55.9038948 -3.2819499, 55.9003484 -3.3188428, 55.9004475 -3.3189882, 55.9028769 -3.1704602, 55.8943845 -3.1612267, 55.8964053 -3.3181888, 55.8996433 -3.2948470, 55.8986117 -3.2963244, 55.9093972 -3.2356124, 55.9024688 -3.2478207, 55.9010141 -3.3189125, 55.8986285 -3.2991643, 55.8584472 -3.4177884, 55.8702054 -3.3876295, 55.8969285 -3.3180149, 55.8832955 -3.3373489, 55.8818349 -3.3087404, 55.8896276 -3.3196792, 55.8919785 -3.3134755, 55.8968552 -3.3020135, 55.8927414 -3.3143917, 55.8947508 -3.3012201, 55.8841696 -3.3364601, 55.8807381 -3.3368118, 55.8774138 -3.3755830, 55.9054895 -3.3795410, 55.9018295 -3.3897743, 55.9082028 -3.1062073, 55.9064191 -3.2363051, 55.9089283 -3.2357059, 55.9026053 -3.2453772, 55.8840219 -3.3327174, 55.8909456 -3.2977491, 55.8722326 -3.3121904, 55.9044032 -3.1455205, 55.8975112 -3.2712979, 55.8974642 -3.2720985, 55.8956840 -3.2110087, 55.8948418 -3.2158308, 55.8946710 -3.2156575, 55.8949531 -3.2113167, 55.8939386 -3.2155602, 55.8951467 -3.2161873, 55.8948458 -3.2116936, 55.8951646 -3.2111469, 55.8906180 -3.2303624, 55.8924010 -3.2267274, 55.8934535 -3.2249209, 55.8904695 -3.2299954, 55.9025541 -3.1224669, 55.9013948 -3.1244584, 55.8988473 -3.1283552, 55.8895017 -3.2960696, 55.9103957 -3.3006028, 55.8939577 -3.3715831, 55.8976952 -3.3414516, 55.9008399 -3.3235718, 55.9021342 -3.2501766, 55.8943042 -3.1626305, 55.9038648 -3.1462199, 55.8923325 -3.3903179, 55.8924135 -3.3902631, 55.9074964 -3.1559715, 55.9071592 -3.1590133, 55.8988194 -3.1121826, 55.9025795 -3.1224539, 55.8923592 -3.3903273, 55.9104224 -3.3006131, 55.9112386 -3.2971527, 55.8677512 -3.3773434 +yes +no +yes +no +10 +55.9441247 -3.1693385, 55.9234303 -3.3976554, 55.9805573 -3.1963582, 55.9721507 -3.1841393 +Babalou and 48.8864168 2.3442029 +no +11.629471910596305 +47 +yes +Backstube +67 +48.8379931 2.3270595, 48.8184662 2.3501586, 48.8224797 2.3195383, 48.8611385 2.3941583, 48.8875758 2.3303180, 48.8413274 2.2797801, 48.8384087 2.2847485, 48.8370749 2.4110506, 48.8749189 2.4002158, 48.8979156 2.3166483, 48.8890374 2.3392764, 48.8327412 2.3975487, 48.8256492 2.4145211, 48.8607252 2.4037124, 48.8624937 2.2850289, 48.8410409 2.2593377, 48.8866268 2.3732545, 48.8439975 2.4003952, 48.8301712 2.3992796, 48.8868716 2.3419216, 48.8192381 2.4359906, 48.8848404 2.3887566 +3 and Le B.H.V., Les Brassins de Saint-Malo, Brasserie Artisanale "D'istribilh" +48.8643016 2.3480523, 48.8559492 2.3460263, 48.8427637 2.4358888, 48.8535257 2.3588770, 48.8717374 2.2472517, 48.8189926 2.4540521, 48.8485531 2.3371422, 48.8614768 2.3351679 +49.4236325 8.6489134 +250.5, 164, 493, 118, 103, 82 +yes +yes +68 +23 +yes +Hope Cottage Nursery School, Little Monkeys Nursery, Colinton Private Nursery, Rainbow Kindergarten, Molly's Nursery, Heriot Hill Nursery, Strawberry Hill Nursery, Bruntsfield Nursery, Busy Bees Nursery, Childcair @ Quartermile, The Edinburgh Nursery, Annandale Nursery, The Edinburgh Nursery, St. Leonards Nursery School, High School Yards Nursery, Melville Street Nursery, Jigsaw Childcare, Pinocchio's, Cherrytrees Children's Nursrey, Busy Bees Day Nursery, Grange Loan Nursery, Mr. Squirrel's Nursery, Suffolk House Nursery, Stanwell Nursery, Bruntsfield House Nursery, Carrick Knowe Primary, Baby Rainbow, Childsplay, Playdays, Chapter One Childcare, Forbes Childrens Nursery, Greenhill Montessori Nursery, Grassmarket Nursery, Kidzcare, Cameron House Nursery School, Priestfield Road Nursery, Kirkliston Nursery, Mother Goose Nursery, Arcadia +51.1988497 -0.5342359, 52.6311727 -0.8233218, 41.3108319 -95.9575181, -33.5824431 150.2445219, -25.9698346 27.8650808, -25.9736400 27.8652600, -26.0372900 27.8920900, -25.5044540 28.4463922, -25.5217903 28.4282069, 52.7297337 -1.7987491, 52.3921109 0.6447294, 54.3574707 -4.4222233, 40.3445325 -74.7166957, 54.0949262 -2.1869584, 33.4292336 -117.0890142, 55.9456989 -3.2041882, -1.1207050 36.6765400, 53.4243480 -1.2369997, 52.2416377 -3.3837185, 13.0223265 77.6505234, 51.5377627 -0.0987235, 47.2125030 -1.5695400, -25.8882350 28.4032087, 36.6189649 -121.9377447, 51.6272318 -0.1526823, 48.8612999 2.3312271, 22.4872923 113.9063327, 0.4348980 9.4542956, 0.4332887 9.4532657, -36.7922877 -73.0723960, -33.8241390 25.6422760, -36.8076314 -72.9744860, 51.0492654 -114.0687164, 53.4644562 -113.4849704, 14.6322596 121.0847721, 18.8780929 99.2179229, 33.7856197 -84.3950197, 48.8425065 2.3895916, 43.6116062 3.8801404, 40.1051475 116.0943249, 47.6363317 -2.7652420, 6.3385520 99.7286933, 47.6596572 -122.2851098, 50.5486622 9.6723437, 35.6709511 139.7528418, 35.4639657 133.0622134, 49.3696904 8.0805295, 37.7681571 -122.3929293, 45.6425730 4.2317607, 40.0937331 -88.2370639, -26.1332248 28.0684748, 51.4370173 0.2709137, 47.5997379 7.5311477, 18.7635409 98.8693716, 1.1384088 34.1500964, 52.9514453 -1.1497301, 48.1048971 -1.6752098, 42.6843773 2.8987538, 42.6830084 2.8989583, 42.6831750 2.8991283, 42.6833867 2.8997987, 42.6838436 2.8996083, 42.6839755 2.8981637, 12.0428761 -86.2572275, -12.4374871 -37.9198476, -12.4394027 -37.9212898, 44.6493046 -84.6872466, 44.2651700 -84.6999401, 44.6702932 -84.6078029, 48.1311730 11.5848875, -28.1036427 153.3228934, -23.1571671 -45.7923618, 48.7277620 0.8407551, 50.0068548 8.2698130, 48.7832568 10.1007160, 49.6310598 8.3559793, 51.5268630 -0.0974463, 45.1687263 -79.6411279, -6.8109685 39.2922165, 35.6467344 140.0366765, 43.6855190 -79.6652268, 41.5882626 -93.6359001, 24.1775046 120.5988287, 50.7820762 6.0918977, 51.5081277 0.0287502, 51.4958705 7.4569459, 37.3289376 -121.8887761, 37.3285060 -121.8872828, 50.8644871 6.0929143, 51.2010221 6.7234794, 55.9399107 -3.1697157, 37.4043670 -121.9750903, 28.0695883 -16.7269207, 61.2178485 -149.8925293, 52.9425202 -1.1732481, 43.0717386 -89.3802453, 52.0638062 8.3471023, 48.1658968 12.8300894, 32.2186003 -110.9749173, 48.6632649 6.1906747, 39.6341635 -75.6368097, 50.8997921 -0.3589563, 45.5504406 -73.7472946, 48.8914355 2.2131393, 48.8540260 2.2884911, 52.9039840 -1.4481166, 33.8839367 -84.4662439, 43.4748447 -80.4527762, 33.7572706 -117.4963818, 51.4219396 -0.8883544, -35.2441015 149.1214930, 8.9896160 -79.4999696, 47.6698833 8.9503766, 52.4951997 -1.9179209, 51.8933398 -2.0872818, 32.2824371 -106.7624578, 51.5173536 -0.1539529, 49.0259294 11.5030293, 49.7602434 8.6521710, 45.7772376 4.8598436, 43.2865250 5.6038585, 51.0455374 -114.0614342, 36.8059219 10.1867723, 32.7553947 -97.0818262, 27.9449035 34.3631156, 7.0017821 100.5051788, 51.2729873 -2.4153227, 43.6112641 1.4343458, -36.7924028 -73.0719899, 45.5641207 5.9268421, 45.5638661 5.9266919, -27.2417820 153.1084825, 30.1819664 120.1451672, 54.2083565 -4.6326482, 52.3728617 13.6961740, 44.5142170 6.5500875, 51.5081090 0.0330947, 52.2836497 0.3255828, 51.8929438 10.3972253, 53.5687015 -113.4573109, 43.7241247 -79.3706596, 31.6246498 -8.0136591, 53.0274565 -1.5043101, 47.6696320 8.9510280, 51.3854950 7.3948392, -25.4336167 -49.2682105, 33.3540583 -105.6626733, 49.4076875 8.4075426, 25.3223401 51.4373732, 43.2866114 5.6031736, 50.1330205 11.0008211, 43.7249000 -79.3737811, 43.6463210 3.8691283, 51.6425345 -1.2749190, 1.3352999 103.9602027, 1.3637320 104.0236166, 26.2302635 50.5422308, 3.4249809 101.7939076, 52.4515563 9.1553374, 50.6264398 9.4519501, 53.7909661 -1.5314127, 43.5712110 -89.7689597, -38.1514784 144.3839566, 52.1018237 -2.3168913, 18.8272680 98.9612888, 53.7709250 -2.6270264, 22.1464654 113.5589694, 22.1450671 113.5589572, 52.5122561 -1.9793860, 13.7219070 100.2610199, 51.3721520 -0.1011530, 35.1944610 -111.6538618, 43.0435928 -76.1482253, 32.7428228 -16.7094796, 32.7426376 -16.7098594, 1.4617810 103.7616537, 41.8667630 -87.6458041, -23.5156239 -46.6388650, -23.5159274 -46.6404327, 53.7980540 -1.5276318, -21.1845921 -47.8087384, -23.2193312 -45.8953871, 34.2656905 -117.1869748, 12.9998011 77.6863474, 43.0848995 -73.7832565, 50.8119935 6.8142145, 34.8522920 -82.3542251, -21.2087821 -47.7908708, 51.7634647 -1.2574415, 51.6726747 7.2062735, 21.3742698 -157.7938111, 55.0228629 -1.6195178, 49.0240602 -122.3813390, -25.9346710 32.4385640, 50.3215404 11.9102409, 52.9741827 -1.2465491, 40.5768937 -124.1540170, 36.0289211 -79.0148043, 41.9161023 -74.0140519, -26.2995283 -48.8810522, 51.0123707 6.9812695, 53.4091285 -2.9409488, 51.5270192 -0.1287757, -34.2428550 150.5713381, 45.2656060 5.8758270, 48.8083557 9.2235469, 52.9818949 11.6823931, 52.2734023 -2.1295646, 48.6877060 6.1769675, 32.7267318 -114.6204317, 43.8256935 -89.0148705, 44.9726382 -89.6592015, -22.9777399 -43.4109664, 47.6596737 -122.2852483, 33.8662733 -7.0574761, 32.1054217 34.8085617, 29.6671607 -98.4024525, -25.4298028 -49.2740275, -27.4480918 -59.0217650, 31.6861230 -7.9721599, 35.5729538 -77.3911220, 25.0689108 -77.3996323, 25.0695302 -77.3994748, 48.4215912 -123.3667972, 48.0044602 11.1518218, 52.5170902 13.4499544, 47.6366210 -2.7653027, 37.2296151 -80.4294715, 35.7274104 -0.5901176 +yes +yes +631 +2 +66 +133 +2 +410.44638329019904 +My Big Fat Greek Kitchen +yes +swimming pool +yes +327 +49.4296874 8.6826637, 49.4279757 8.6835849, 49.4147764 8.6710359, 49.4278053 8.7495282, 49.4178891 8.7605933, 49.3974030 8.6486853, 49.3977437 8.6485764, 49.4045638 8.6759283, 49.4075919 8.6845735, 49.4092177 8.6922359, 49.4084542 8.6927289, 49.4078943 8.6929172, 49.4083041 8.6927592, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4015990 8.6856698, 49.4158218 8.6922416, 49.4072954 8.6910173, 49.4082595 8.6914326, 49.4082829 8.6916558, 49.4076226 8.6923209, 49.3808049 8.6889505, 49.3746833 8.6826514, 49.3656861 8.7051775, 49.3741444 8.7033717, 49.3742583 8.7034051, 49.3741763 8.7034993, 49.4103158 8.6974936, 49.4165191 8.6921856, 49.3790412 8.6689354, 49.3792964 8.6699345, 49.4048779 8.6827341, 49.4120923 8.7117858, 49.4151725 8.6902594, 49.4071068 8.6898761, 49.4172306 8.6824331, 49.4108200 8.6918918, 49.4227158 8.6483350, 49.3840770 8.6710133, 49.4160126 8.6922256, 49.4278746 8.6871277, 49.4277708 8.6843289, 49.3809325 8.6701888, 49.3795766 8.6901652, 49.4077632 8.6922107, 49.4101101 8.6935285, 49.4080641 8.6904292, 49.4168755 8.6790034, 49.3992315 8.6710140, 49.4283321 8.6836841, 49.3804723 8.6884268, 49.3807734 8.6884609, 49.4228152 8.6504004, 49.4082494 8.6913249, 49.4278253 8.6839436, 49.4278064 8.7495089 +no +45 +9 +48.8758196 2.3557131, 48.8510838 2.3409320, 48.8730354 2.3533915, 48.8569549 2.3497208, 48.8562998 2.3535246, 48.8414636 2.2996634, 48.8514966 2.3009053, 48.8542089 2.3049026, 48.8539589 2.3040725, 48.8494772 2.3513322, 48.8521302 2.3358217, 48.8553332 2.3464366, 48.8528715 2.3435491, 48.8614418 2.2990188, 48.8513763 2.3250565, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8327885 2.2772902, 48.8375553 2.3201124, 48.8391922 2.3168608, 48.8453963 2.3255943, 48.8405754 2.3213430, 48.8445885 2.3722564, 48.8439502 2.3728916, 48.8310773 2.2770656, 48.8616525 2.3535093, 48.8541427 2.3314320, 48.8501755 2.3620809, 48.8566284 2.3271644, 48.8406788 2.3548958, 48.8661306 2.2897626, 48.8813252 2.3220105, 48.8610917 2.3414339, 48.8706262 2.3242484, 48.8722447 2.3050374, 48.8820013 2.3330275, 48.8450073 2.3757975, 48.8442783 2.3769332, 48.8466279 2.2560360, 48.8351429 2.3731146, 48.8413725 2.3310575, 48.8694555 2.3406786, 48.8388399 2.2765067, 48.8398137 2.3124499, 48.8176870 2.3444409, 48.8398451 2.2739161, 48.8539232 2.3938833, 48.8742514 2.3675121, 48.8470632 2.3766059, 48.8566083 2.3533348, 48.8895985 2.3191714, 48.8632334 2.3399229, 48.8493535 2.3714981, 48.8651992 2.3333992, 48.8565989 2.4064934, 48.8584702 2.3501538, 48.8585293 2.3496680, 48.8534880 2.3040058, 48.8411654 2.3324666, 48.8463168 2.3872077, 48.8594652 2.3441791, 48.8596955 2.3406333, 48.8620104 2.3390904, 48.8611512 2.3495492, 48.8661000 2.3337438, 48.8652752 2.3332993, 48.8677297 2.3303206, 48.8670418 2.3496240, 48.8613539 2.3526643, 48.8563329 2.3553132, 48.8657000 2.3535311, 48.8652453 2.3533870, 48.8443992 2.3820174, 48.8691076 2.3112127, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8729875 2.3210140, 48.8726568 2.3215983, 48.8776040 2.3524312, 48.8741556 2.3274201, 48.8758310 2.3206114, 48.8819076 2.3140835, 48.8751556 2.3094294, 48.8749212 2.3089779, 48.8720777 2.3056372, 48.8715518 2.3062553, 48.8688688 2.3012670, 48.8720769 2.2997667, 48.8721868 2.3033146, 48.8707626 2.3051595, 48.8701277 2.3044062, 48.8674712 2.3054788, 48.8667016 2.3011326, 48.8655118 2.3015698, 48.8713039 2.2970137, 48.8741074 2.2994150, 48.8744570 2.3007315, 48.8763620 2.3015161, 48.8767241 2.3018198, 48.8782249 2.2965872, 48.8888115 2.3939896, 48.8972935 2.3883460, 48.8971965 2.3887591, 48.8952805 2.3850234, 48.8599671 2.3250425, 48.8705380 2.3685763, 48.8293967 2.3790084, 48.8401996 2.3509062, 48.8403358 2.3506549, 48.8725027 2.2851552, 48.8736890 2.2914977, 48.8768968 2.2823678, 48.8722856 2.2840680, 48.8693205 2.2843750, 48.8677158 2.2805552, 48.8581528 2.2756131, 48.8537034 2.3664740, 48.8749075 2.3418631, 48.8770209 2.3458704, 48.8837184 2.2879868, 48.8394916 2.2533681, 48.8396031 2.2624046, 48.8471492 2.3421620, 48.8925549 2.3269370, 48.8507465 2.3484894, 48.8470699 2.3417135, 48.8613479 2.3294517, 48.8420353 2.3432522, 48.8170906 2.3594427, 48.8623669 2.3098112, 48.8593696 2.3144127, 48.8414784 2.2515179, 48.8734234 2.3305255, 48.8715078 2.3339896, 48.8459424 2.3060603, 48.8707314 2.3497989, 48.8800493 2.3536899, 48.8820806 2.3518696, 48.8644441 2.3741599, 48.8539335 2.3775047, 48.8507314 2.3754330, 48.8540777 2.3579438, 48.8466539 2.3999463, 48.8319830 2.3768014, 48.8720026 2.3359899, 48.8543455 2.3561847, 48.8472625 2.3418020, 48.8703752 2.3029557, 48.8738314 2.3297043, 48.8240781 2.3667729, 48.8790223 2.2930687, 48.8246116 2.3235303, 48.8207875 2.3249534, 48.8824856 2.3440987, 48.8558178 2.3536690, 48.8647821 2.3501454, 48.8815254 2.3543330, 48.8313000 2.3882082, 48.8424224 2.3451614, 48.8632587 2.2533252, 48.8660712 2.2550204, 48.8634010 2.3478656, 48.8580953 2.3988158, 48.8353252 2.3805436, 48.8823708 2.3546777, 48.8671989 2.3667020, 48.8410399 2.3210471, 48.8429112 2.3235502, 48.8423484 2.3212962, 48.8320324 2.3866588, 48.8336457 2.2895795, 48.8539543 2.3320945, 48.8764091 2.3236995, 48.8476756 2.3411763, 48.8305332 2.3138423, 48.8763053 2.2944546, 48.8763219 2.2947532, 48.8788573 2.2928071, 48.8761984 2.2930848, 48.8760963 2.2927992, 48.8532277 2.3589001, 48.8817162 2.3010162, 48.8336788 2.3331356, 48.8863474 2.2875098, 48.8740366 2.4050675, 48.8780164 2.4108510, 48.8260635 2.3616139, 48.8239032 2.3657211, 48.8937054 2.3492738, 48.8893918 2.3447704, 48.8706840 2.3716682, 48.8832655 2.3157338, 48.8295968 2.3493740, 48.8892294 2.3935497, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8962268 2.3624023, 48.8381765 2.3815493, 48.8537886 2.3474561, 48.8731938 2.3290960, 48.8212980 2.3643164, 48.8549966 2.4012505, 48.8550533 2.3731077, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8292317 2.3084985, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8840501 2.3678392, 48.8465587 2.2612329, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8868617 2.3693195, 48.8698031 2.3099017, 48.8804349 2.3673901, 48.8343023 2.3639410, 48.8457219 2.3091127, 48.8852759 2.3287719, 48.8853098 2.3300207, 48.8411155 2.2644568, 48.8399853 2.4354878, 48.8720076 2.3153410, 48.8970228 2.3778045, 48.8335588 2.3347973, 48.8743552 2.4101245, 48.8459148 2.3453004, 48.8467486 2.3457052, 48.8464858 2.3468868, 48.8373806 2.3847107, 48.8949298 2.3437869, 48.8529015 2.2772159, 48.8641419 2.3059394, 48.8171104 2.3592722, 48.8706191 2.3164188, 48.8702691 2.3171729, 48.8812617 2.3221621, 48.8784814 2.3330760, 48.8456516 2.3465029, 48.8997033 2.3290489, 48.8413908 2.3722764, 48.8256327 2.3320576, 48.8655047 2.2723194, 48.8708239 2.3060540, 48.8441230 2.3564135, 48.8558123 2.3528997, 48.8562804 2.3531597, 48.8362151 2.2568329, 48.8388419 2.4599061, 48.8695357 2.3416876, 48.8694697 2.3420289, 48.8696274 2.3412758, 48.8626465 2.3146531, 48.8465734 2.3127269, 48.8565840 2.2986464, 48.8460758 2.3058827, 48.8204134 2.4518397, 48.8477097 2.3117779, 48.8477196 2.3115767, 48.8784451 2.2852017, 48.8624814 2.3328854, 48.8543462 2.3467503, 48.8252592 2.4120396, 48.8614367 2.2958080, 48.8605025 2.2943088, 48.8351030 2.4463930, 48.8632541 2.2402764, 48.8618634 2.4100811, 48.8361491 2.2692910, 48.8358166 2.2686689, 48.8222263 2.4483812, 48.8227496 2.4495152, 48.8662682 2.3974540, 48.8381010 2.3148758, 48.8374220 2.3149466, 48.8366275 2.4409423, 48.8999909 2.3448173, 48.9000149 2.3394792, 48.8410576 2.3578991, 48.8379027 2.3622168, 48.8351429 2.4475725, 48.8220818 2.3406030, 48.8531376 2.3591975, 48.8534868 2.3580109, 48.8633082 2.2839525, 48.8171862 2.3326710, 48.8435052 2.3798226, 48.8364120 2.2686709, 48.8764119 2.3969357, 48.8298857 2.3251080, 48.8341531 2.3029351, 48.8341115 2.3027113, 48.8773569 2.4091134, 48.8625518 2.2289847, 48.8686047 2.3172472, 48.8400598 2.2883156, 48.8299997 2.3587358, 48.8299341 2.3586911, 48.8464288 2.2486197, 48.8480791 2.2445917, 48.8947243 2.3931498, 48.8291320 2.4574737, 48.8236788 2.4563722, 48.8705811 2.3031146, 48.8387116 2.3423289, 48.8293120 2.2902026, 48.8321851 2.2870636, 48.8285252 2.2905906, 48.8281768 2.2910589, 48.8301724 2.2903291, 48.8284840 2.2907616, 48.8285477 2.2904442, 48.8294272 2.2900019, 48.8284711 2.2909813, 48.8302673 2.2901359, 48.8322580 2.2868131, 48.8516565 2.2795993, 48.8762399 2.3589688, 48.8640413 2.2547307, 48.8688683 2.2484552, 48.8522560 2.2872933, 48.8505461 2.2881984, 48.8507146 2.2878412, 48.8592142 2.2272202, 48.8944990 2.3592670, 48.8964589 2.3589627, 48.8526051 2.2917373, 48.8527475 2.2917705, 48.8524256 2.2914147, 48.8520645 2.2878286, 48.8530231 2.2902364, 48.8521480 2.2910880, 48.8461602 2.2777848, 48.8315682 2.3419531, 48.8844978 2.3727600, 48.8214447 2.3591422, 48.8210623 2.3592593, 48.8296129 2.3926750, 48.8953032 2.3950120, 48.8385749 2.3187258, 48.8621437 2.4083353, 48.8625288 2.4074996, 48.8622745 2.4082713, 48.8467200 2.3470841, 48.8594021 2.3997394, 48.9014459 2.3845889 +fuel, drinking water, recycling, post box, fire station, pharmacy, restaurant, atm, townhall, shelter, fast food, parking, college, telephone, taxi, toilets, post office, car rental, bank, kindergarten, wifi, biergarten, police, vending machine, car sharing, bench, grave yard, public building, place of worship, cafe, hospital, pub, nightclub, clock, library, grit bin, bar, cinema, fountain, hunting stand, artwork, waste, waste basket, bicycle parking, school, veterinary, heikopter, repair, dentist, shop, bicycle rental, theatre, doctors, social facility, video games, solarium, locker, swimming pool, car wash, university, food court, dancing school, parking entrance, marketplace, motorcycle parking, ferry terminal, youth centre, tradeoff, fire hydrant, ice cream, driving school, childcare, club, waste disposal, art gallery, animal shelter, charging station, science park, community centre, arts centre, boat rental, nursing home, brothel, parking space, bbq, bus parking, fraternity, monastery, hotel, smoking area, courthouse +ku17, Eiscafe Capri, Merlin, Cafe Wema, Cappuccino, Café Blank, Zum Schwarzen Walfisch, Florian Steiner - Kaffee und Wein, Nectar, Jules, Bar Centrale, Cafe Florian, Internet City², Frollein Bent, Strohauer's Cafe Alt Heidelberg, Gundel, Riegler, Moro Caffé & Thé, Café Rossi, St. Anna No 1 Chocolaterie, Schiller, Greystones, Literaturcafé, Eisdiele Roma, Chocolaterie YilliY, Café Burkardt, Hörnchen, Café Knösel, EuroTreff, Café Riegler, Hemingway's, Cafe Fresko, Medòcs, Coffee Inn, Göbes, InternetCafé, Tchibo, Heidelberger Internetcafé, Villa Lounge, Riegler, Mildner's, Molkenkur Café, Mildner's, La Flamm-Pâtisserie, Starbucks Coffee, Wiener Feinbäckerei, Kamps, Petit Paris, Extrablatt, Schmelzpunkt, Lavazza, Regie, emma Café-Bar, Starbucks, Cafe Romantic, Extrablatt, Café Gegendruck, Marstallcafé, Casa del Caffé, Café PUR, Keplers (Café Alte PH), Cafe Bar Vivo, La Bohème, Café Moro, La Fée Bar Café, Bergheim 41, Bio: Eismanufaktur Heidelberg, Riegler, Coffee Cream, coffee nerd, Zeitreise Café & Laden, Princess Cupcakes, Pannonica, friedrich, Amorino, Eispalast, Gelati, Pilgrim, Kaffeezimmer², Macaronnerie, Schafheutle, Café Molkenkur +168 +fr:Regard de la Roquette, fr:Thermes de Cluny, fr:Enceinte de Philippe Auguste, fr:Arènes de Lutèce +48.8560795 2.3115715, 48.8507240 2.3518758, 48.8631692 2.3329513, 48.8660977 2.3554138, 48.8643016 2.3480523, 48.8779237 2.3345515, 48.8626245 2.3025393, 48.8662844 2.3817490, 48.8403827 2.3113658, 48.8864800 2.3399022, 48.8957518 2.3879761, 48.8547934 2.3662431, 48.8651191 2.3417893, 48.8551205 2.3589562, 48.8695018 2.3546892, 48.8957352 2.3886935, 48.8616153 2.3542965, 48.8339752 2.3324559, 48.8836865 2.3338083, 48.8660456 2.3145051, 48.8602845 2.3247488, 48.8559492 2.3460263, 48.8575222 2.2845690, 48.8414574 2.3172246, 48.8677629 2.2935696, 48.8625016 2.3453019, 48.8403652 2.3414281, 48.8705899 2.3500828, 48.8629386 2.2890051, 48.8618163 2.2873421, 48.8749151 2.3431481, 48.8411575 2.3473052, 48.8565109 2.3263842, 48.8519070 2.2652250, 48.8703234 2.2765175, 48.8716440 2.2881063, 48.8327663 2.3893382, 48.8302877 2.3141843, 48.8557584 2.3320096, 48.8716204 2.2814131, 48.8513494 2.3555880, 48.8483211 2.3294718, 48.8677268 2.3223990, 48.8591945 2.2851420, 48.8522269 2.3350050, 48.8506815 2.3410772, 48.8476741 2.3140391, 48.8830345 2.3077236, 48.8513629 2.3410046, 48.8547304 2.3248616, 48.8554427 2.3276941, 48.8434645 2.3207843, 48.8456499 2.3395974, 48.8434624 2.3362665, 48.8536113 2.3476422, 48.8718820 2.3312120, 48.8656784 2.3307909, 48.8495079 2.3483856, 48.8585526 2.3597161, 48.8533658 2.3493036, 48.8526313 2.3500601, 48.8404563 2.3198526, 48.8607161 2.3525007, 48.8672999 2.3221942, 48.8960350 2.3884154, 48.8405179 2.3703276, 48.8465117 2.3551571, 48.8367685 2.3218491, 48.8678618 2.3225499, 48.8530966 2.3611794, 48.8762675 2.3826909, 48.8640279 2.3450171, 48.8435231 2.3731854, 48.8340000 2.3323000, 48.8573239 2.3286291, 48.8609823 2.2977973, 48.8418109 2.3577568, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8474726 2.3606473, 48.8848436 2.3445206, 48.8546351 2.3638127, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8614029 2.3519903, 48.8590015 2.3547571, 48.8442282 2.3447813, 48.8661515 2.3122667, 48.8505164 2.3621847, 48.8506605 2.3437398, 48.8612342 2.3554751, 48.8602237 2.3588061, 48.8590543 2.3618044, 48.8598775 2.3620895, 48.8581216 2.3616628, 48.8545855 2.3356172, 48.8352761 2.4093810, 48.8483248 2.3344265, 48.8599188 2.3265259, 48.8586563 2.3821295, 48.8473326 2.3227159, 48.8613305 2.3197359, 48.8433913 2.2512835, 48.8707890 2.3259075, 48.8791676 2.3124361, 48.8794667 2.3125380, 48.8553042 2.3158566, 48.8755169 2.3105465, 48.8370020 2.3826461, 48.8655978 2.2993165, 48.8643054 2.2977930, 48.8641085 2.2964123, 48.8373190 2.3319319, 48.8653887 2.2935591, 48.8260871 2.3327019, 48.8432079 2.3186583, 48.8715060 2.2814214, 48.8594040 2.2672517, 48.8421181 2.3562419, 48.8812030 2.3335190, 48.8551953 2.2808684, 48.8463579 2.2732198, 48.8548859 2.3560679, 48.8547299 2.2897642, 48.8428133 2.3337722, 48.8880654 2.3406347, 48.8612559 2.3587824, 48.8344502 2.3520875, 48.8485953 2.3340184, 48.8662091 2.3108575, 48.8582260 2.3619639, 48.8530932 2.3611938, 48.8766546 2.2633259, 48.8563449 2.3387717, 48.8657061 2.2966614, 48.8576820 2.3627148, 48.8614768 2.3351679, 48.8553966 2.3450136 +yes +48.8882750 2.3740777 +Gonesse, Montmagny, Villepinte, Chatou, Neuilly-Plaisance, Neuilly-sur-Marne, Aubervilliers, Franconville, Stains, Clichy, Le Blanc-Mesnil, Chelles, Saint-Leu-la-Forêt, Le Vésinet, Enghien-les-Bains, Aulnay-sous-Bois, Nanterre, Épinay-sur-Seine, Villiers-le-Bel, Les Lilas, Deuil-la-Barre, Villemomble, Montesson, Les Pavillons-sous-Bois, Bois-Colombes, La Garenne-Colombes, Montmorency, Rosny-sous-Bois, Sannois, Saint-Brice-sous-Forêt, Neuilly-sur-Seine, Le Bourget, Houilles, Courbevoie, Livry-Gargan, Gennevilliers, La Courneuve, Le Pré-Saint-Gervais, Suresnes, Montigny-lès-Cormeilles, Saint-Gratien, Montfermeil, Argenteuil, Sartrouville, Cormeilles-en-Parisis, Rueil-Malmaison, Noisy-le-Sec, Bobigny, Domont, Soisy-sous-Montmorency, Marly-le-Roi, Sevran, Garges-lès-Gonesse, Ermont, Bagnolet, Bezons, Carrières-sur-Seine, Le Raincy, Montreuil, Arnouville, Pierrefitte-sur-Seine, Villetaneuse, Sarcelles, Romainville, Saint-Denis, Gagny, Maisons-Laffitte, Levallois-Perret, Eaubonne, Colombes, Drancy, Villeneuve-la-Garenne, Bondy, Saint-Germain-en-Laye, Le Pecq, Asnières-sur-Seine, Puteaux, Pantin, Saint-Ouen, Clichy-sous-Bois +ARLT, Thalia, Kamps, Der Kleine Gundel, City-Markt Rüdinger, Stefansbäck, Apollo Optik, Bäckerei Grimm, Lichtblick, Tally Weil, Vodafone, FOSSIL, Jokers, C&A, Claire's, Freudenhaus, WMF, GameStop, Zuckerladen, Souvenirs und Fotokarten, Expert Esch, dm, Apfel und Korn, Tchibo, Deichmann, Saturn, Dritte-Welt-Laden, H&M, Runner's Point, S'Oliver, Penny, Moments, Kamps, Schuh und Leder, Basic Hairshop, Anouk, Vodafone, Thomas Cook, Hallhuber, E-Plus, TeeGschwendner, fielmann, Gravis, L'Epicerie, Käthe Wohlfahrt, Theile, I Am - Designmanufaktur, Globetrotter, Buchhandlung Himmelheber, Reisebuchladen-Heidelberg.de, Göbes Sophie, Knoblauch Schreibwaren, Buchladen - artes liberales, Josef Seibel, Reformhaus Escher (Vita Nova), Lebe Gesund, höllwerk - Schmuck & Design, Mantei, Douglas, Promod, Many Market, Nativo, Benetton, Der Frisörladen, Barber Shop, Hassbeckers Galerie & Buchhandlung, Chocolaterie Knösel, Just B - Tattoos and Bodyart, Kraus, capcorner, City-Markt Rüdinger, TK Maxx, Antiquariat Hatry, Swatch, mod's hair BASIC, Piccadilly English Shop Heidelberg, Butlers, McPaper, hollenbach, Antiquariat Friedrich Welz, friedrich, faire und feine Mode, Rad Kirch, Uli Rohde Musikladen, Abele Optik, Brax, Bären Company, Christ, Diller, Eyes + More, Pandora, Planet Sports, Roland, Schmitt & Hahn, Telekom, Anouk, dielmann, Max & Co, Marc O' Polo, Carat, tilly de lux, Fruchtmarkt Lehnert, Farbenreich, The iPhone Doc, Ronnefeldt Teeladen, The Flame, Galeria Kaufhof, Darmstädter Hof Centrum, Schmuckatelier Mämecke & Rauen +49.4139877 8.6924247, 49.4109186 8.7008914, 49.4106826 8.6994355, 49.4040505 8.6756301, 49.3829241 8.6902846, 49.4039976 8.6856096, 49.4097177 8.7040465, 49.4114134 8.7086707, 49.4119689 8.7118856, 49.4281123 8.6871978, 49.4126726 8.7089452, 49.4178625 8.7592553, 49.4126347 8.7117604, 49.4099566 8.6945913, 49.4239696 8.6485990 +254 +49.4641062 8.6650466, 49.4707059 8.6520153, 49.4751871 8.6837099, 49.4760467 8.6993112, 49.4708285 8.6603546, 49.4703095 8.6676207, 49.4750609 8.6692928 +4 +10 +2 and 48.8189926 2.4540521, 48.8338878 2.3397983 +7 and 55.9378000 -3.1771354, 55.9539470 -3.1868320, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9543521 -3.1879033, 55.9285894 -3.1685115, 55.9821414 -3.4001668 +M8, M9, M90 +8 +Forrest Road +Mo-Su 07:00-23:00 +17 +Vodafone, Vodafone, E-Plus, Handy Shop XXL, Telekom, Kabel BW Shop +55.9534686 -3.2733947, 55.9441043 -3.1618477, 55.9229465 -3.1946655, 55.8825188 -3.2371629, 55.9510042 -3.1642474, 55.9429880 -3.1595009, 55.9455214 -3.1515881, 55.9215151 -3.2311690, 55.8810613 -3.2505433, 55.8919644 -3.2565320, 55.8910980 -3.2702735, 55.9174462 -3.2363371, 55.9127712 -3.2038639, 55.9145086 -3.1951990, 55.8191953 -3.3924956, 55.8830619 -3.2214017, 55.9509656 -3.1565911, 55.9919155 -3.3568399, 55.8933347 -3.2822591, 55.9556726 -3.1824089, 55.9458711 -3.1740706, 55.9425607 -3.1620707, 55.8878252 -3.3839342, 55.9836455 -3.3447505, 55.9900950 -3.3422624 +Aéroport de Paris - Orly +Hilton Edinburgh Airport Hotel +47.5645037 9.6756220, 48.1917560 11.2604606, 49.3608074 11.0505849, 49.4836508 10.9835475, 50.0042360 9.0624526, 49.9124639 10.8920010, 50.0012000 9.0683238, 49.9766936 9.1566232, 49.9845565 9.1639906, 49.1891725 11.1874594, 49.3687740 11.3057878, 50.0452138 10.2340424, 50.2598647 10.9666557, 50.2583057 10.9646137, 47.8174163 10.5345680, 49.7502077 9.1790325, 49.7922309 10.0258144, 48.3830181 10.4715717, 49.3013427 10.5817647, 49.3053748 10.5718491, 50.1264898 9.1161746, 50.2753812 10.9496791, 49.9769664 9.0630892, 49.8037322 10.1655094, 49.6668795 10.1406107, 50.0652139 9.6733677, 50.3707482 9.9786124, 49.4279782 11.1963294, 48.6831112 10.8195081, 50.2743347 10.9487550, 50.2137895 10.2353350, 48.7077119 10.7968484, 48.3552389 10.9787058, 48.6793602 10.8398813, 48.6721648 10.8601728, 48.4303767 10.6017105, 49.9958129 10.1809319, 49.8793240 9.1557405, 48.7156858 10.7825564, 49.3028718 10.5524844, 49.8400694 9.1484987, 49.9843990 9.1243968, 49.9843771 9.1237845, 49.9761625 9.1464150, 47.3109958 10.2208189, 49.3155280 10.5816018, 48.5732476 10.8367687, 49.3017966 10.5709171, 48.5764989 10.8567173, 50.1940569 10.0700854, 47.6606856 10.3497681, 49.7971702 9.9451436, 50.1363929 10.0063977, 48.4393971 10.4521982, 49.9762960 11.0354409, 49.7951466 9.9470589, 48.4034482 10.4623921, 48.1529504 11.2588493, 50.0480580 9.0084119, 47.7145411 10.3070947, 47.9066812 11.2801198, 48.4985997 10.4042132, 47.4419272 11.2615129, 49.6214957 10.1161508, 48.6364406 10.8242648, 49.1588258 11.1729362, 48.6624403 10.5210395, 49.4555015 10.7961629, 49.7258203 10.2733316, 49.7255798 10.2739995, 47.9136232 11.2885710, 47.9129446 11.2857099, 49.7306394 10.2306925, 47.9081793 11.2773451, 47.9111525 10.5746665, 47.5549764 10.3203858, 49.6659633 10.0619433, 47.9477750 11.2973595, 48.0026541 11.3213801, 48.0029713 11.3200625, 47.9431822 11.2570840, 49.7164805 10.2729330, 49.6100055 10.9988801, 50.1997379 10.9686029, 49.7981681 10.2394993, 49.7998357 10.2304975, 49.9147722 9.2009359, 47.9410010 11.3016771, 47.9488326 11.3073731, 49.8596561 10.4283018, 49.7178240 10.2789839, 49.4563268 11.0759138, 50.2588834 10.9676799, 50.0162735 9.7428022, 49.3793293 11.2078031, 50.2594742 10.9696824, 50.2596861 10.9742321, 49.3029794 10.5717125, 49.9629473 11.1017275, 48.0392695 11.1435565, 49.5612829 11.3326991, 49.9117025 9.0621792, 49.7987170 9.9438007, 48.8732355 11.3304000, 49.7970854 9.9309045, 49.6214272 10.8281375, 49.3732280 11.2134993, 49.3028074 10.5770004, 49.3022738 10.5773653, 48.1804331 11.2800013, 49.8044695 9.9274491, 49.7966414 9.9259417, 50.0952309 9.7217054, 48.1907849 11.2798642, 47.9032628 11.2772693, 47.9003514 11.2741039, 49.6993172 10.0079515, 49.7795207 11.1831885, 50.1098191 9.8196676, 48.1792348 11.3734128, 49.3561733 11.0994230, 49.3475346 11.1144511, 48.3834205 10.4714165, 49.4556965 11.0803640, 49.8559541 9.9555809, 49.9983539 9.1085923, 49.9680252 9.5605615, 49.2380981 11.1638554, 49.1507114 11.3923191, 49.9318443 10.9552363, 49.7757531 9.9302996, 48.9243720 10.5417636, 49.9479898 9.1547196, 49.8947803 10.7258987, 48.0738927 11.3926369, 49.8480148 10.0638963, 49.4532944 11.0807305, 47.4676949 11.2491918, 49.7278952 10.2465747, 49.3013933 10.5813723, 49.9580652 9.5624478, 50.1899940 10.9244425, 49.8990567 10.3483512, 50.4616412 10.0202973, 49.0143666 10.9906645, 50.3251895 9.7798956, 49.9708810 9.3061199, 49.8669231 10.2242417, 49.8036251 10.2536001, 48.2738619 10.2290878, 49.4697674 11.1687149, 49.9782548 10.1735166, 49.9719514 10.1713027, 49.9714489 10.1701613, 49.9749985 10.1717629, 49.9739756 10.1742360, 50.0821249 9.4629424, 49.1886050 11.0154692, 49.6369793 10.8503152, 48.1043551 11.2253453, 48.1707150 11.2528747, 50.2493996 11.0489650, 49.3486879 11.0697906, 49.7938977 9.9417177, 50.1240570 9.6186063, 49.7951151 9.9244810, 48.2872819 10.2192824, 49.7060651 10.0246300, 50.0940130 11.0140999, 50.0938638 11.0222558, 49.7274911 10.3164065, 47.9724108 10.1739626, 48.7865388 10.6881358, 47.4336111 11.2579089, 50.0114295 10.4639672, 49.7277244 10.2429385, 47.6066818 11.3147285, 47.7480474 10.6074388, 48.0017408 11.2701528, 49.0175769 11.0081340, 47.6295533 10.1893894, 47.9132392 11.2862167, 49.4492001 11.0791133, 49.7719018 9.2454886, 50.3861394 9.9329049, 49.5400470 10.7102900, 47.6268703 11.2381280, 50.1319979 10.8134964, 49.4725779 11.0358474, 50.0941321 11.0243351, 50.0939697 11.0248649, 49.9233047 10.2362144, 48.4431330 10.7802592, 49.4518375 11.1548748, 48.8044464 10.4946908, 49.3760667 10.1646476, 48.0017688 10.5957050, 48.3788752 10.7774869, 47.9798977 10.3083041, 49.8209353 9.7999591, 48.4080801 10.6837646, 49.8073007 11.1705527, 49.8239347 11.1477475, 49.8462447 10.0556889, 48.2015987 10.1362656, 49.5849742 11.0541747, 49.5846415 11.0658824, 49.5855024 11.0604600, 49.5887762 11.0703214, 49.5887954 11.0736693, 49.5771080 11.0872537, 49.5783210 11.1007853, 49.5829777 11.1038052, 49.6283830 10.5413943, 49.8220062 9.9402939, 49.8203829 9.9301434, 49.8140956 9.9396143, 48.7073907 10.6685039, 49.7398938 9.2446445, 49.7355434 9.2405658, 49.5797883 11.1318384, 49.5800402 11.1324198, 49.5719765 11.0830531, 49.5677990 11.0849588, 49.5609001 11.0924246, 49.5681364 11.0689140, 49.5708790 11.0680247, 47.8189913 11.3224155, 49.7244775 9.2299795, 49.7248770 9.2293711, 48.4686468 11.1766687, 49.9589117 10.8087491, 49.8871153 9.1178803, 48.0340516 11.2124902, 50.0571508 11.0729935, 50.0514811 10.2419621, 48.5779716 10.4885527, 49.7135651 10.1330925, 48.6886965 10.9194547, 47.6855301 10.1332724, 50.0201111 10.2162916, 48.2558722 11.0933001, 49.7865362 9.3648841, 49.4242659 11.1773818, 47.5859700 11.0639976, 47.5433790 10.4274455, 47.5964215 11.0654629, 49.7721400 10.6860600, 48.3843367 10.8229418, 49.6055564 11.0142816, 48.1888895 11.2264458, 49.0097753 10.8440491, 50.2736630 10.9490065, 49.8415675 11.2064513, 48.0367037 11.1887722, 47.9699197 10.9587540, 47.9727825 10.9565821, 47.5869550 10.6152976, 47.6663871 10.7409189, 50.1163113 9.8925864, 48.0669364 10.9956216, 50.1583224 10.5557718, 49.7743609 9.9823905, 50.1503594 10.1029654, 49.5837217 11.0347448, 49.5835680 11.0381075, 49.5779627 11.0366973, 49.5323221 11.0949302, 50.0383957 10.1050053, 50.0414034 10.1165266, 49.4719068 10.9952115, 49.4728549 10.9963617, 49.5102362 10.0432970, 49.4791364 10.9858762, 49.4717518 10.9960697, 50.1003879 10.5878290, 50.0501235 10.1422209, 48.1910596 11.3134435, 50.0586195 8.9998085, 48.1716866 11.2891123, 49.9617054 10.0518851, 49.7426624 9.7182264, 49.3274576 11.3453758, 50.0222269 11.2001046, 50.1078612 9.9327703, 49.4536913 11.0800086, 49.6199523 11.0187751, 47.5548126 10.7321880, 50.0394083 9.0653132, 50.4840139 10.1832475, 49.5426210 11.3374210, 47.7364685 10.7761580, 49.5959178 10.9480422, 49.4554430 11.0700439, 48.0426344 10.2945479, 48.6126614 10.9500893, 48.0814807 10.8544651, 48.1623524 10.8066057, 48.1465398 10.8191243, 50.4968425 10.1786164, 49.6103445 10.9654205, 48.3676250 10.8969115, 49.3605749 11.3519976, 50.5010842 10.1143538, 49.4463529 10.3036488, 49.9754844 9.1779534, 47.6097785 9.9042077, 50.2544516 10.9647986, 49.0460002 11.3538095, 49.5978172 11.0040967, 49.5984193 11.0080342, 49.6007476 11.0144054, 49.9097705 10.8319451, 49.6886843 9.4155824, 50.0451147 10.2256217, 50.0188478 9.3635115, 48.6986345 10.9775657, 49.9996359 9.0602127, 48.4362093 10.1872509, 50.0922889 9.6522458, 49.4483665 11.0863447, 50.5106076 10.1023834, 50.5132156 10.1048660, 50.2125278 10.9380856, 49.8114903 10.0129581, 47.7270982 10.3387905, 50.0194156 9.2635056, 49.9663879 9.1856672, 49.9686216 9.2033126, 47.9424984 11.3431273, 50.0471266 9.0803453, 50.2010526 10.9527322, 48.2445643 10.3686453, 50.0252099 9.2972011, 49.6154988 10.3092219, 50.1394576 9.8749448, 48.1278863 11.3497181, 47.7633885 10.2960897, 49.9126111 10.1379856, 49.7203673 11.0601324, 49.5785264 10.8406085, 48.1303964 10.2218735, 49.8820339 11.1300099, 49.9949273 9.2766082, 49.9997614 9.2804789, 49.9774224 9.1458993, 50.0497968 10.5720106, 50.1121897 9.8800006, 48.3573921 10.8798938, 48.3575354 10.8799292, 50.0894585 10.2128221, 50.0952367 10.2099885, 49.9279182 10.7537020, 47.5564464 9.6592698, 50.1476870 9.8734272, 49.9800710 10.8546688, 48.3997027 10.8527239, 47.7200990 10.3177561, 49.9766425 9.1393224, 49.7715003 9.5474320, 49.9722482 9.1426877, 50.0080661 9.2025804, 50.2435965 10.5186225, 48.1374225 11.3642089, 47.6319208 10.8479840, 50.1116490 9.6486984, 48.0371732 10.3385081, 47.7010787 10.2943220, 47.7012335 10.2961026, 50.0388313 9.0612891, 47.7514802 10.2469871, 47.7269398 10.3115748, 50.0245932 9.6911894, 49.4948272 10.8065266, 48.3755745 10.8916871, 47.7209713 10.2750525, 50.0932927 9.6671570, 50.0643165 9.1620037, 49.8361603 9.8687822, 49.6896465 11.0099568, 48.0653013 10.2404773, 48.0764092 10.2250972, 48.0741438 10.1991626, 47.8474883 10.6340669, 49.7192490 11.0421798, 49.9472089 10.6129673, 48.9777730 10.8863175, 49.7941658 9.9317878, 49.0253061 11.0055020, 49.5420981 11.3604985, 48.3887190 10.0749717, 50.0232563 9.7965866, 49.7928585 9.9424740, 50.0235275 9.3731392, 48.4911642 11.1847507, 48.0027874 10.2193812, 49.4415884 10.2865204, 49.2190762 10.6676897, 49.2040901 10.7017360, 49.9967356 9.1120639, 48.3838616 11.0471515, 49.5502166 11.0447091, 47.8835529 10.6135457, 47.8866331 10.6122228, 47.7286487 10.3072214, 49.4860333 10.5672499, 50.0027595 9.1002640, 50.0508054 10.2135347, 49.3452344 10.5098414, 49.9939430 9.5826016, 47.7666534 10.2992963, 50.2218379 10.9028994, 50.2042367 10.9286580, 48.6743210 10.8205105, 47.7220243 10.2723610, 47.6003867 9.8854237, 49.9228189 10.7769457, 49.6777552 9.2316082, 49.3970486 11.1262502, 49.5696464 11.3112755, 50.0807288 9.1119339, 48.8432843 10.6049178, 50.1840124 10.3599152, 50.0445931 9.0224418, 49.6180199 10.6306271, 49.3855010 11.2133431, 49.4653009 11.2455613, 50.2738698 10.9460111, 50.2740126 10.9465172, 50.2736933 10.9464107, 50.3009356 11.0212587, 49.8828192 10.8963667, 50.0177947 11.3252030, 48.9255859 10.5001108, 48.1587358 10.8316505, 48.1523379 10.8592314, 49.5168691 10.5187847, 49.7832351 9.8172359, 49.6093000 10.2743000, 49.5545131 11.0786710, 47.5539683 10.0209528, 49.7933694 9.9239401, 50.0989052 10.1794705, 49.5697539 11.3399346, 48.7652337 11.3044727, 47.5983532 11.1855142, 47.5561583 9.9641943, 50.0853057 9.9448500, 50.0481066 10.3334860, 49.5661346 11.0160944, 49.6926339 10.9976604, 47.9178138 11.2048534, 50.3240837 10.2164507, 48.1191023 11.1316690, 49.9511533 9.6731332, 47.7361150 10.3078127, 50.1068714 10.2236964, 50.0444236 10.1297437, 47.9564047 11.3632268, 47.3149196 10.2665696, 50.0600050 9.2357066, 49.6568842 11.0583057, 49.7210233 11.0552324, 49.7855645 9.5196414, 49.6377725 11.0697594, 49.7182173 11.0660421, 49.8898746 10.1576760, 49.6823210 11.0692847, 49.9326046 10.3652365, 49.8001754 9.9359286, 49.8001754 9.9359410, 50.0785634 9.1938671, 49.3190811 10.4766577, 47.7006458 10.3100172, 49.6668139 11.0697145, 47.3090259 10.2945389, 49.1672629 10.3546860, 50.0610078 9.0126947, 50.1124977 10.1788871, 49.7907406 9.7543083, 50.0835399 11.3315150, 50.1316444 10.8172494, 50.1306654 10.8134916, 47.9450697 11.1834532, 47.5529805 10.0247259, 49.7671397 11.0796935, 48.2245720 10.3729953, 49.7399321 10.1621791, 48.0613572 11.2266624, 49.7228699 11.0658476, 47.4559350 11.2758423, 47.8748319 10.5326390, 49.7587008 9.9798297, 48.0744642 11.2630791, 50.2073315 10.0917382, 47.6967777 10.3451365, 49.8464216 11.0367188, 49.3662294 11.3096085, 48.0749573 11.2580368, 47.6847222 10.4126955, 47.7438297 10.2245692, 49.5202124 11.1286750, 49.7992164 9.9420775, 48.1405264 11.0193437, 50.0038463 9.2022640, 50.0033674 9.2024593, 50.0033156 9.2023493, 49.5474904 11.3311641, 47.7800823 11.1272811, 47.5822042 9.8499454, 49.6504742 9.9412032, 49.4284487 11.0856285, 48.1200435 11.3643107, 49.4080404 11.0945211, 49.6704405 10.9295047, 49.7773560 9.1903451, 49.1875381 11.0258093, 49.5573571 11.3376876, 49.9997940 9.2157125, 47.5023951 10.3301636, 48.3080477 10.8951232, 48.6790671 10.8204961, 49.7603667 10.1693043, 47.7716047 11.3153159, 47.7740347 11.3283659, 49.7911340 9.9347407, 48.3488417 10.5851900, 49.1314094 10.3905568, 49.6786902 10.0657015, 50.1506416 10.2052209, 50.0554302 10.2249170, 48.6693239 10.5122669, 47.3707494 10.3584031, 48.3582039 10.5952767, 48.3558373 10.5896427, 48.0302908 10.8525179, 49.2153402 11.1430235, 49.5419494 11.3432673, 48.5941545 10.5418061, 49.5290954 11.3210636, 49.7025130 10.3167934, 49.9233224 9.1575897, 49.6892285 9.3729957, 49.4728015 10.9918927, 47.9483644 11.2978052, 49.1868686 11.1976287, 50.0612784 9.1505055, 49.7306848 10.2298315, 47.6258509 9.9781993, 47.8049408 11.1960620, 49.7874912 9.9360832, 49.7884396 9.9365530, 47.4458890 10.2753054, 47.6138892 10.5938423, 47.6146175 10.5964515, 49.7199662 11.0576030, 49.6968431 9.2904653, 49.8907183 9.7520487, 49.8661914 9.7805145, 48.9931521 11.3673226, 49.3700693 11.1852992, 49.4153205 11.0253169, 47.6889758 11.1840864, 47.7219398 11.2945828, 49.4503794 11.2104533, 50.0548172 10.0107407, 49.7830009 9.4544131, 48.1897158 10.8269885, 49.4493131 11.1490114, 49.6833604 9.3650835, 49.6321395 10.9234401, 49.7235776 9.7385532, 49.7919770 9.2677067, 49.8011523 10.1625284, 48.0840599 10.8580061, 48.0506355 10.8773806, 49.5315196 11.0047675, 49.4568640 10.5930690, 48.3969018 9.9999972, 49.7099827 10.0226918, 49.6906276 10.0575946, 49.9978054 9.1814089, 49.4061558 11.2850594, 49.6745103 10.0204639, 48.0967228 10.9185587, 48.2814995 10.4848715, 49.4486914 10.6347427, 49.0586716 11.3190942, 49.0672116 11.3132756, 49.7459368 9.9928879, 48.5979327 11.2976076, 49.5922516 11.0522246, 49.6906096 11.1008071, 47.9556546 10.8697326, 47.9673121 10.9183741, 48.6556535 10.2793136, 47.9632050 10.8787058, 49.6502619 11.2472294, 49.8124528 9.8288392, 47.6446179 10.7295722, 50.0487739 10.4111525, 49.6093876 11.0005095, 50.2478755 11.3297769, 49.4544927 11.0480158, 49.9540225 9.1169443, 49.8813207 10.8680894, 49.8907921 10.8829169, 49.8858747 11.3346866, 47.9410297 11.3016252, 49.8935679 10.8779344, 50.0015859 10.1991002, 50.0019106 10.1995409, 49.2990096 10.4097309, 48.9222054 11.1980123, 47.6543967 10.2580417, 47.6256276 10.6899881, 50.2329225 10.7273277, 48.0496911 10.7834808, 47.6452968 10.4412319, 50.2834211 11.0269897, 49.8684456 9.0912272, 49.8664885 9.0801663, 49.4857054 10.9490790, 49.8588983 9.0844705, 47.5464361 10.2806561, 47.9353129 11.0794910, 48.4194543 11.0959927, 48.7191192 11.1036130, 49.0779854 10.6278093, 49.6527115 9.9460333, 49.4050315 11.2926985, 47.4381358 11.0495098, 49.5779343 11.1683618, 48.0496211 10.8715988, 48.0460830 10.8749417, 49.8823055 9.5946429, 50.3261561 10.1942060, 49.0096436 10.5004746, 50.0218969 10.2104849, 49.9975724 10.2051489, 49.6486918 11.0055125, 49.6396102 11.0018464, 47.7706974 11.3175793, 49.2971394 10.4224499, 49.9043847 10.1925310, 49.2991739 10.4129817, 49.0263084 10.5697255, 49.0229720 10.5678961, 49.4567316 11.0810079, 49.7969352 10.0326571, 49.4519331 11.0756381, 49.0603052 10.2922231, 49.6885963 10.2005582, 50.0463262 9.2106036, 49.9758962 9.4013618, 49.4651000 11.0933450, 50.0371178 10.6203680, 49.5696911 11.3111204, 48.6534476 10.4951067, 49.4521167 11.0522513, 49.3783037 10.1804272, 50.0044733 9.4174121, 49.3765250 10.1742094, 48.0638021 11.2036139, 49.4271207 11.0462448, 49.2942609 10.4159890, 49.6075148 10.9690880, 49.4406952 11.1143875, 49.2301097 11.1002383, 49.2030593 11.0503672, 49.8393342 10.0303396, 49.8450631 10.0188812, 49.8374383 10.0363478, 49.4519991 11.0892892, 49.8331266 9.1351218, 49.4541507 11.0730452, 49.3824822 11.0376624, 47.5779644 9.8409547, 49.9461964 10.5660012, 49.0691833 10.3196646, 49.8813681 10.8709591, 49.8813104 10.8704349, 48.6792146 10.8199705, 49.3880327 11.3025418, 50.0989308 10.2009066, 48.3594388 10.8985692, 50.0691374 9.1647686, 50.0829706 9.1744757, 47.7242821 10.3141892, 47.7285579 10.3103498, 47.7221323 10.3118430, 47.7262186 10.3160945, 47.7251108 10.3069304, 47.7262768 10.3160850, 47.7204451 10.3137190, 47.7251096 10.3069306, 47.7309546 10.3094793, 47.7266756 10.3143688, 47.7262180 10.3160963, 47.7266754 10.3143710, 47.7221327 10.3118425, 47.7253575 10.3158079, 47.7221319 10.3118433, 47.7266744 10.3143693, 47.7275054 10.3127716, 47.7309538 10.3094786, 47.7222724 10.3151809, 47.7262179 10.3160983, 47.7205801 10.3113422, 47.7284022 10.3065761, 49.6663115 9.2174563, 50.0618440 9.1613757, 48.2069586 11.3270236, 50.2010281 10.0796309, 50.2010221 10.0796052, 48.8496834 10.4857345, 48.8482751 10.4858320, 49.7999154 10.0325942, 50.2010192 10.0795865, 50.2010431 10.0796589, 50.1967193 10.0810149, 48.8493967 10.4852209, 48.8517100 10.4934753, 48.8537545 10.4922091, 48.8536370 10.4910977, 48.8537334 10.4921703, 48.8542772 10.4938004, 48.8507618 10.4919803, 48.8532499 10.4925690, 48.8542877 10.4937795, 48.8532700 10.4925383, 48.8542646 10.4938180, 48.8536497 10.4910542, 48.8507841 10.4919674, 50.0179173 10.7019968, 48.6410373 10.5313159, 49.8821023 10.9042255, 48.8178925 11.0809786, 48.8245525 11.0724318, 50.0117430 10.7006733, 50.0090888 10.6946217, 50.0127154 10.6848692, 50.0147562 10.6980013, 50.0265449 10.7009359, 50.0230313 10.6984522, 50.0185988 10.7020142, 50.0191858 10.7030163, 50.0258687 10.7346556, 50.0234700 10.6789837, 50.0110610 10.6749711, 50.0099854 10.7365010, 50.0140379 10.7367517, 49.9936057 10.6936812, 49.9954107 10.6881365, 49.9991832 10.7065311, 50.0515127 10.6825199, 50.0415119 10.7259111, 50.0203839 10.7509132, 50.0221701 10.7110301, 50.3040141 10.4778811, 50.3042160 10.4780918, 47.6190551 11.3475254, 49.7197325 11.1517517, 49.8045771 9.9985236, 48.8920941 11.1840999, 48.3989347 11.1712240, 49.4354020 10.4140882, 47.6602222 10.3510584, 47.6572599 10.3508058, 49.7931062 9.7625034, 49.7994913 9.7519600, 49.7600378 9.7167061, 49.7897273 9.7536498, 49.7911878 9.7544082, 48.8991372 11.1878472, 48.8512301 10.4888424, 48.8523275 10.4919721, 48.8451876 10.4939668, 48.8541292 10.4916755, 48.8539854 10.4880578, 48.8496775 10.4925785, 48.8505244 10.4879424, 48.8523182 10.4919848, 48.8512395 10.4888313, 48.8541017 10.4916755, 48.8477268 10.4932959, 48.8496839 10.4925741, 48.2257460 10.6578602, 49.2505113 10.8274746, 48.1906255 11.3715878, 48.2398447 10.6666094, 48.2331131 10.6222457, 48.2280822 10.7614312, 49.3705840 11.3317226, 50.2964998 10.1773597, 48.1962042 11.3731773, 49.3732915 11.2109773, 48.8830526 11.1923901, 48.0691848 11.3773647, 50.0028821 10.8639429, 48.3644252 10.8768637, 48.0248220 10.2582044, 47.9100035 10.5742540, 47.9100050 10.5742518, 47.9100031 10.5742513, 49.7695834 11.2501592, 49.7667641 11.3365491, 49.7667629 11.3371417, 48.3684478 10.8903656, 49.2994881 10.4152111, 49.2988060 10.4146451, 50.0384874 9.1829561, 49.9649565 9.2033405, 50.3208914 10.2288371, 48.8976919 11.1537933, 48.0544354 10.8784777, 48.0544586 10.8784699, 50.1339740 10.9997596, 47.6957621 10.2378885, 49.6719429 10.1092270, 48.8522201 10.4931751, 48.8498220 10.4903906, 48.8502970 10.4922689, 48.8498471 10.4904059, 48.8522059 10.4931953, 48.8532785 10.4928130, 48.8496601 10.4856974, 48.8496708 10.4857163, 48.8496477 10.4856799, 48.8521881 10.4932048, 48.8532905 10.4928264, 48.8534004 10.4892605, 48.8533934 10.4892679, 48.8533030 10.4928402, 48.8482940 10.4858635, 48.8502801 10.4922763, 48.8532666 10.4928045, 48.8531124 10.4912383, 48.8516841 10.4897454, 48.8514823 10.4924972, 48.8531284 10.4912472, 48.8531497 10.4912610, 48.8514908 10.4925360, 48.8517014 10.4897391, 48.8517157 10.4897351, 49.2834623 11.1245195, 48.6991076 10.4888000, 49.6695593 10.4735573, 49.9769946 9.1519363, 49.9750834 9.1465191, 49.9788040 9.1492982, 49.9780571 9.1469089, 49.9769598 9.1483522, 49.9769575 9.1483487, 49.9788030 9.1492978, 49.9788085 9.1459478, 49.9761670 9.1475691, 49.9761691 9.1475708, 49.9777357 9.1470002, 49.9771118 9.1463000, 49.9780562 9.1469097, 49.9771124 9.1462986, 49.9758163 9.1473677, 49.9787300 9.1460637, 49.9761690 9.1475695, 49.9750841 9.1465179, 49.9788033 9.1492993, 49.9761677 9.1475697, 49.9788078 9.1459490, 49.9787293 9.1460649, 49.9761677 9.1475684, 49.9756861 9.1455040, 49.9769575 9.1483509, 49.9769951 9.1519377, 49.7431992 10.3143552, 49.7332682 10.2910088, 49.7331557 10.2909352, 49.7320459 10.2893973, 49.7971708 9.9181959, 47.6782491 11.1981707, 49.5807360 10.9930423, 49.4781588 10.9815611, 50.0710288 9.3453874, 49.5880202 11.0348171, 47.7182352 11.0417325, 48.3078447 10.9012213, 48.3074280 10.9007914, 47.7665712 10.4012543, 48.3578768 10.8608426, 48.3418069 10.9886881, 48.1026468 10.8452603, 48.3688473 10.8987725, 49.8396607 9.4499388, 49.5976027 11.0106106, 49.5767614 10.9846288, 50.0536602 10.5881133, 49.9758512 9.1489083, 49.9753342 9.1484946, 49.9725262 9.1520096, 49.9734825 9.1574246, 49.9758505 9.1489071, 49.9721775 9.1427265, 49.9752614 9.1500359, 49.9758903 9.1478404, 49.9758497 9.1489083, 49.9753686 9.1562911, 49.9758906 9.1478427, 49.9752873 9.1484977, 49.9727283 9.1509584, 49.9753357 9.1484953, 49.9859727 9.1375629, 49.9707705 9.1548378, 49.9753679 9.1562926, 49.9721820 9.1427261, 49.9758912 9.1478414, 49.9727276 9.1509624, 49.9758897 9.1478418, 49.9758243 9.1479574, 49.9758925 9.1478414, 49.9753347 9.1484961, 49.9721737 9.1427298, 49.9753690 9.1562929, 49.9758520 9.1489071, 49.9758251 9.1479562, 49.9753352 9.1484938, 49.5520120 10.0648801, 49.5528638 10.0662568, 49.5525157 10.0635550, 49.5517965 10.0635343, 49.5525797 10.0635125, 49.5528648 10.0662560, 49.5517981 10.0635366, 49.5528633 10.0662553, 49.5520142 10.0648834, 49.5517973 10.0635354, 49.5528642 10.0662524, 49.5522235 10.0652652, 49.5522739 10.0660112, 49.5520112 10.0648789, 49.5522242 10.0652665, 49.5525147 10.0635556, 49.5522749 10.0660104, 49.5520149 10.0648846, 49.5520123 10.0648784, 49.5528643 10.0662545, 49.7492292 11.2476398, 50.0077507 9.0697798, 49.9904785 10.5903260, 49.7932175 9.9300690, 49.7932157 9.9300660, 49.2907084 10.2654545, 49.9459834 9.2137807, 50.2947661 10.0964550, 47.5734512 9.8406759, 50.2853904 10.0977305, 50.2863806 10.1002136, 49.2326998 10.4977047, 48.0167267 10.9114811, 47.4418761 11.2582606, 49.9397941 10.6765837, 49.7637415 11.0302848, 50.0068525 9.2035019, 49.9674144 9.3973865, 49.2965371 10.4370565, 49.8335959 9.8463313, 49.3754615 10.1723479, 49.3757566 10.1729165, 50.1307235 10.0261636, 50.0100085 10.7388904, 49.9755613 11.3360106, 49.4881221 11.1056632, 49.2751769 11.3032585, 48.8914645 11.1745881, 49.8244119 9.2195855, 49.3500534 10.2008191, 49.4683097 11.0018808, 47.8748390 10.2216490, 49.5952508 11.0283102, 49.7628101 9.7103322, 47.5690462 10.6816003, 49.7377834 10.7343469, 49.7485218 10.7514389, 50.1266242 10.9322564, 48.0446423 10.8756748, 47.4485214 11.3739173, 49.3237343 11.3634148, 50.0399899 10.2563410, 49.6557652 9.1356940, 49.1755022 10.8293237, 49.8916234 10.8922621, 49.3700364 10.3326346, 49.9689726 9.1406710, 50.1461039 9.8787634, 49.6459023 10.6960875, 49.6190605 10.6550751, 49.3267742 11.3290333, 49.9506568 9.2425169, 47.5425352 9.6817195, 50.3603618 10.0183521, 50.2603176 10.1625667, 50.5294158 10.1365952, 48.1796129 11.2551298, 49.7690804 10.5270426, 49.7440739 10.3678749, 49.6013550 11.0040634, 49.6004854 11.0101482, 49.6031869 11.0142698, 49.5983557 11.0157815, 49.5963195 11.0110567, 49.5964441 11.0047821, 49.5954984 11.0051944, 49.5946707 11.0051020, 49.5908949 11.0066095, 49.5977584 11.0068971, 49.8545526 9.9567436, 48.8747287 11.1645790, 48.4840860 10.3676764, 48.0583724 10.8675451, 48.1917310 11.2652696, 48.1962886 11.2705080, 48.1961081 11.2696309, 48.1967606 11.2704517, 48.1967499 11.2707065, 48.1951533 11.2660877, 48.3007715 11.3808588, 49.6391565 10.9970110, 48.1942938 11.2697727, 48.1941755 11.2706956, 48.1940936 11.2704915, 48.1940575 11.2702662, 48.1942220 11.2708888, 48.1946872 11.2695367, 48.1959364 11.2671284, 48.2685891 10.8306042, 49.3040254 10.5718175, 48.2684512 10.8307732, 48.8506121 10.4971452, 50.0326497 9.4312794, 49.9835532 10.0788877, 49.3815362 10.1702658, 49.5999179 11.0029460, 49.5999184 11.0029346, 49.5999207 11.0029411, 49.5947349 11.0049181, 49.5947890 11.0049002, 49.5947348 11.0049148, 49.5947365 11.0049179, 49.5947357 11.0049180, 49.5947364 11.0049146, 49.5947880 11.0049003, 49.5947356 11.0049147, 49.8916123 10.8934082, 49.2940718 10.4071127, 48.4805144 10.3621024, 49.3021051 10.5757277, 47.4125642 10.9782774, 49.3625693 10.1920107, 48.0163156 10.9179297, 48.7750094 11.3772950, 48.7764712 11.3740040, 49.3760472 10.1740553, 49.5841546 11.1376266, 49.8366567 11.3502874, 48.3072145 11.3329276, 49.9619007 9.7687548, 49.7925294 9.9300247, 49.7925284 9.9300253, 49.7925270 9.9300242, 49.7925280 9.9300237, 49.7925304 9.9300241, 49.7925290 9.9300231, 49.7925300 9.9300225, 49.5967084 11.0363646, 48.4215809 11.0664908, 49.9634476 9.7630263, 47.5649294 10.0293330, 47.7832209 11.1427052, 49.5914363 11.0057192, 49.5915983 11.0279183, 50.2681384 11.3609612, 48.4592157 11.1286345, 49.5321619 11.0340201, 48.4196679 10.0708906, 50.0127842 9.2598896, 49.4198255 11.1952648, 49.8007861 9.9500409, 49.8042227 9.9401073, 49.8016833 9.9521581, 49.8008487 9.9495065, 49.8023538 9.9484639, 49.8039340 9.9462076, 49.8016832 9.9521600, 49.8040711 9.9415613, 49.8017616 9.9429421, 49.8022170 9.9424916, 49.8033057 9.9423584, 49.8031096 9.9453756, 47.8752939 10.4026098, 47.8633560 10.4122926, 49.7986567 10.2312619, 50.0680003 10.8822450, 49.5503024 11.2688007, 49.4782605 11.0208604, 50.1507631 10.8945447, 48.0424196 10.8369763, 49.8607443 10.3813672, 49.9434533 9.8565390, 49.5417838 10.5613637, 49.9585470 9.7663805, 49.9595391 9.7650959, 49.3786586 10.1793133, 49.3767932 10.1758881, 49.3767932 10.1758781, 49.3767932 10.1758848, 49.3755384 10.1827213, 49.3762093 10.1795702, 49.3767932 10.1758815, 49.3786586 10.1793103, 49.3755376 10.1827181, 49.3772183 10.1774557, 47.8563407 10.1296254, 47.8569040 10.1353766, 47.8564406 10.1303072, 50.3608095 10.3546411, 50.3703190 10.3585862, 50.3791048 10.3732742, 49.6020631 11.0009575, 49.6006180 11.0054816, 49.5988014 11.0020055, 49.5971402 11.0046461, 49.5968877 11.0046365, 49.5967905 11.0047592, 50.0185855 9.3106506, 50.2699881 11.3611322, 49.7956968 9.1574279, 49.7946620 9.9417414, 49.2360159 10.9442065, 50.0412319 11.2518353, 49.1257675 11.2687419, 49.0515267 10.9673498, 48.4724441 11.1555816, 50.0076854 10.5983304, 47.5620371 10.6940910, 47.5622933 10.6947643, 48.7362449 11.1813297, 47.7842673 10.0891458, 48.1917267 11.3744581, 49.5929601 10.9994155, 49.4506724 11.0895491, 47.5027371 11.3009433, 47.4815259 11.3571177, 47.5945458 10.0720192, 48.3825938 11.1185478, 50.0837449 9.0707465, 50.0030759 9.4208477, 50.0532552 9.0105856, 49.2366324 10.4923511, 48.3109723 10.1580109, 49.6933701 9.2896788, 49.7031080 9.3017167, 49.6924824 9.1730686, 47.4926387 11.0868270, 49.6820227 9.2096023, 50.0166247 10.7766176, 50.0112161 10.8035765, 47.4940720 11.1051383, 50.1640464 10.9623428, 47.4473011 10.2391801, 47.6696072 11.1928075, 49.5615772 11.0869061, 49.6361333 10.1434699, 49.7954103 9.9404940, 49.7954095 9.9404929, 49.7954100 9.9404913, 49.7954108 9.9404925, 47.7215596 10.5566826, 49.7863466 9.9361498, 49.7855176 9.9367566, 49.7855179 9.9367582, 49.7863509 9.9361479, 49.7863477 9.9361497, 49.7855189 9.9367578, 49.7863499 9.9361496, 49.7863509 9.9361495, 49.7855179 9.9367547, 49.7863504 9.9361512, 49.7855187 9.9367562, 49.6722786 11.1781259, 49.5147535 11.0599168, 49.5149154 11.0598238, 49.5150009 11.0602343, 49.5150581 11.0599041, 49.7867513 9.9365291, 49.7871642 9.9375666, 49.7859343 9.9388582, 49.7867503 9.9365280, 49.7867521 9.9376445, 49.7862145 9.9391909, 49.7862387 9.9375395, 49.7862153 9.9391920, 49.7867497 9.9365293, 49.7871600 9.9375648, 49.7867531 9.9376450, 49.7871631 9.9375664, 49.7867495 9.9365311, 49.7871609 9.9375667, 49.7867517 9.9376461, 49.7871598 9.9375665, 49.7871610 9.9375650, 49.7867527 9.9376466, 49.7862169 9.9391942, 49.7867506 9.9365304, 48.1050505 11.3065439, 49.7907691 9.9344337, 49.7898028 9.9354473, 49.7878385 9.9379272, 49.7907695 9.9344322, 49.7907687 9.9344352, 49.7906708 9.9343376, 49.7908044 9.9343457, 49.7907265 9.9348801, 49.7907265 9.9348823, 49.7907250 9.9348800, 49.7907258 9.9348812, 49.7888553 9.9280158, 49.7888525 9.9280146, 49.7888578 9.9280136, 49.7888627 9.9280144, 49.7888669 9.9280136, 49.7888659 9.9280138, 49.7882443 9.9325119, 49.7888585 9.9280152, 49.7893070 9.9302257, 49.7888606 9.9280148, 49.7886188 9.9283324, 49.7888631 9.9280126, 49.7888532 9.9280162, 49.7886196 9.9283311, 49.7886200 9.9283327, 49.7888663 9.9280120, 49.7888596 9.9280150, 49.7888638 9.9280142, 49.7888521 9.9280164, 49.7888574 9.9280154, 49.7888563 9.9280156, 49.7923864 9.9285144, 49.7925589 9.9280484, 49.7901921 9.9287343, 49.7923858 9.9285161, 49.7912924 9.9303975, 49.7924914 9.9334357, 49.7901910 9.9287350, 49.7925590 9.9280500, 49.7900984 9.9292869, 49.7925346 9.9308533, 49.7920112 9.9292930, 49.7935785 9.9296478, 49.7912936 9.9303974, 49.7925600 9.9280484, 49.7932061 9.9346117, 49.7923876 9.9285145, 49.7925567 9.9280500, 49.7923881 9.9285161, 49.7920122 9.9292921, 49.7925557 9.9280499, 49.7924923 9.9334366, 49.7901911 9.9287333, 49.7925567 9.9280483, 49.7912928 9.9303960, 49.7923870 9.9285161, 49.7935747 9.9296483, 49.7920103 9.9292939, 49.7925343 9.9308500, 49.7925344 9.9308516, 49.7925579 9.9280500, 49.7923772 9.9285195, 49.7932050 9.9346115, 49.7900980 9.9292852, 49.7925333 9.9308511, 49.7900973 9.9292864, 49.7925335 9.9308527, 49.7925579 9.9280483, 48.4071582 10.7242874, 49.5952579 11.0039749, 48.1759606 10.1872537, 48.3516035 11.1773410, 49.9960359 10.5460702, 49.6494931 10.4272512, 49.1311132 11.2126115, 49.7307051 9.3184515, 49.6955708 9.3096830, 49.7995986 9.9397919, 49.7995986 9.9397920, 49.2989766 10.5787231, 48.3152361 10.9105676, 50.2495248 10.1962480, 49.0680644 10.3198579, 49.0689606 10.3152672, 49.0689613 10.3152651, 49.0689599 10.3152641, 49.0680623 10.3198569, 49.0680634 10.3198574, 49.0689616 10.3152666, 49.0689602 10.3152657, 49.0680641 10.3198594, 49.0689609 10.3152636, 49.0674064 10.3202774, 49.0680691 10.3198774, 48.4601209 10.9659842, 49.1180031 10.7540594, 48.1633205 10.1201881, 49.7922637 9.9483254, 49.7930089 9.9489359, 49.7922627 9.9483265, 49.7930099 9.9489368, 49.7930080 9.9489351, 49.7922647 9.9483244, 49.7922637 9.9483236, 49.7922637 9.9483273, 49.7928082 9.9487755, 49.7898532 9.9433227, 49.7892789 9.9440666, 49.7892796 9.9440680, 49.7897006 9.9433279, 49.7897016 9.9433278, 49.7913883 9.9475148, 49.7898522 9.9433228, 49.7966267 9.9394975, 49.7967915 9.9393942, 49.7966280 9.9395002, 49.7961026 9.9401177, 49.7958722 9.9397294, 49.7967900 9.9393940, 49.7914631 9.9441426, 49.7958708 9.9397269, 49.7966260 9.9394961, 49.7914629 9.9441409, 49.7966299 9.9395043, 49.7958715 9.9397282, 49.7966292 9.9395029, 49.7914618 9.9441413, 49.7914621 9.9441430, 49.7966247 9.9394934, 49.7966241 9.9394920, 49.7967895 9.9393957, 49.7967907 9.9393953, 49.7967909 9.9393930, 49.7962096 9.9386493, 49.7963427 9.9388767, 49.7962090 9.9386480, 48.4463681 11.1109072, 48.4462480 11.1110447, 49.8018736 10.1512931, 49.7978227 9.9385033, 49.7976682 9.9393560, 49.7988824 9.9402123, 49.7976681 9.9393507, 49.7976685 9.9393523, 49.7978221 9.9385048, 49.7973862 9.9392221, 49.7978217 9.9385004, 49.7978233 9.9385047, 49.7976671 9.9393513, 49.7988816 9.9402111, 49.7976692 9.9393555, 49.7977416 9.9418692, 49.7976678 9.9393544, 49.7980834 9.9405811, 49.7976688 9.9393539, 49.7976674 9.9393528, 49.7980845 9.9405813, 49.7926160 9.9465886, 49.7926148 9.9465885, 49.7924154 9.9448690, 49.7926315 9.9478039, 49.7926154 9.9465868, 49.7935570 9.9466037, 49.7943517 9.9466373, 49.7926164 9.9465903, 49.7924149 9.9448704, 49.7926316 9.9478023, 49.7926153 9.9465902, 49.7932395 9.9460028, 49.7924142 9.9448689, 49.7932392 9.9460043, 49.7935581 9.9466035, 49.7943507 9.9466375, 49.7926142 9.9465901, 48.5449365 10.8512596, 48.5449379 10.8512573, 48.5449372 10.8512585, 48.5448166 10.8512625, 47.6978718 10.3244047, 49.8213947 11.3136234, 49.3983962 10.5127273, 49.3990800 10.5131906, 49.7797573 9.8779032, 49.7797971 9.8778845, 49.7797835 9.8778902, 49.7797695 9.8778967, 49.7797941 9.8781370, 49.7848704 9.8816363, 49.7848715 9.8816359, 47.7705856 11.3174944, 48.4422191 10.9365381, 48.4455951 10.9653992, 48.4548947 11.0057076, 49.5959844 11.0033360, 50.0896982 10.5675728, 49.5847486 11.0087016, 49.5838431 11.0094163, 50.3542407 10.5183849, 50.2793921 10.4262507, 48.2005479 11.3085417, 47.9862377 10.1803043, 50.1003243 9.2700884, 48.5839393 11.0900128, 49.4364865 10.9746967, 49.5579890 11.3411660, 49.5579971 11.3411597, 49.5572334 11.3415166, 49.5572321 11.3415180, 49.5582233 11.3409457, 49.5594751 11.3408029, 49.5604712 11.3407820, 49.5589938 11.3404077, 49.5583436 11.3404497, 49.5577582 11.3399783, 49.5585840 11.3406609, 49.5584189 11.3405005, 49.5584259 11.3405053, 49.5594771 11.3407944, 49.5604659 11.3407875, 49.5604708 11.3407872, 49.5604663 11.3407817, 50.2571790 10.0620673, 48.2126195 11.3374382, 48.8403993 10.4941533, 48.8417958 10.4918787, 49.6446348 9.8766831, 47.9842362 10.1778101, 48.8457640 10.4830272, 47.4793650 11.0207555, 49.4503458 11.0625646, 49.4503311 11.0626034, 49.4564236 11.0939156, 49.4564073 11.0939222, 49.4666635 11.0960817, 49.4564158 11.0939191, 49.4666480 11.0961021, 49.4531051 11.0889258, 49.4531169 11.0890098, 49.4515650 11.0737476, 49.4451835 11.0701178, 49.4531034 11.0889267, 49.4531047 11.0889332, 49.4531054 11.0889272, 49.4531059 11.0889298, 49.4531062 11.0889312, 49.4531203 11.0890155, 49.4531200 11.0890149, 49.4531180 11.0890119, 49.4531184 11.0890125, 49.4531192 11.0890136, 49.4531207 11.0890161, 49.4531196 11.0890142, 49.4531177 11.0890112, 49.4531173 11.0890105, 49.4531188 11.0890130, 47.5807355 10.5575467, 48.4061678 10.0436362, 50.4578393 10.2328439, 49.5402175 11.0439096, 47.5702330 10.5947204, 47.5040513 11.2786897, 47.5538725 10.7902108, 49.4534629 11.0604342, 49.4534632 11.0604329, 49.4534638 11.0604303, 49.4534638 11.0604346, 49.4534641 11.0604290, 49.4534653 11.0604325, 49.4534659 11.0604299, 49.4534662 11.0604286, 49.4535567 11.0605329, 49.4535572 11.0605302, 49.4535587 11.0605323, 49.4535590 11.0605310, 47.8774590 11.0274014, 48.3823871 11.3496783, 49.3756375 11.2127250, 47.4376224 11.2612534, 49.3811301 11.2026228, 49.7606167 9.9772922, 49.7848282 9.9380024, 49.7848733 9.9380623, 49.7916590 9.9457111, 49.7865810 9.9384816, 49.7865828 9.9384844, 49.7879758 9.9398772, 49.9873489 9.2780503, 49.7318034 9.9202857, 49.7318921 9.9202117, 49.7319749 9.9203380, 47.7143850 11.4039809, 50.1398487 11.0918818, 47.7064576 11.3975548, 48.6114773 10.5668229, 48.6111031 10.5659055, 48.7160743 10.7775891, 49.8494694 9.4069936, 48.9567005 10.9079175, 48.7331262 11.1759620, 48.7389356 11.1886864, 48.7331262 11.1759620, 48.7385744 11.1815885, 48.3507189 10.9354257, 49.7910101 9.9334762, 49.7910066 9.9334875, 49.7985360 9.9266653, 49.9455720 11.1648235, 49.9495296 9.8874687, 49.6755114 10.1517058, 49.4277234 11.0439324, 47.9837290 11.0930118, 48.4584489 10.9817953, 49.5501746 10.8786893, 48.3482984 10.9104624, 48.9677056 10.9237975, 48.9774526 10.9561557, 48.9602673 10.9498042, 48.4585333 11.1335081, 49.9020566 10.3449565, 50.4025312 10.0065915, 50.4005600 10.0107167, 50.4051246 10.0055267, 48.0044368 10.5885381, 49.4495822 11.0617262, 48.4024034 11.0551394, 48.9886198 11.2887496, 48.9850995 11.0831851, 48.9820014 11.0891933, 48.9834097 11.0900086, 49.7844007 9.9375790, 49.7844180 9.9374878, 49.7838096 9.9396762, 49.7385288 10.7390450, 50.0999797 9.8392708, 49.7383173 11.0597508, 49.7256094 11.0584419, 49.9745379 9.1831466, 47.9916650 10.7829274, 49.7010799 10.0000174, 48.4487679 11.0832494, 48.2178130 11.0196429, 49.4042504 10.4761430, 49.4515646 11.0737472, 49.4531042 11.0889304, 49.4584844 11.0955008, 49.4401820 11.0693832, 49.4524574 11.0663503, 49.4524577 11.0663502, 49.4524575 11.0663504, 49.4524573 11.0663505, 49.4401816 11.0693824, 49.4584792 11.0954932, 49.4493192 11.0630722, 49.4489438 11.0869699, 49.4493243 11.0630823, 49.4489505 11.0869784, 49.4442885 11.0906328, 49.4584813 11.0955080, 49.4584751 11.0955004, 47.5088882 10.2795297, 48.0976185 10.5417693, 48.3445324 10.9353458, 48.3718037 10.8963094, 48.3718041 10.8963083, 49.9773664 9.1516409, 49.9773665 9.1516401, 49.9773668 9.1516416, 49.9773669 9.1516408, 49.9773673 9.1516416, 49.9777012 9.1523025, 49.9777018 9.1523036, 49.5406982 11.1029197, 49.5830074 11.0720065, 49.5806680 11.0408936, 49.5669690 11.0434983, 49.6641607 10.4608530, 49.6640174 10.4609621, 49.2873631 10.2624581, 49.2904965 10.2630052, 47.9253148 10.2440388, 49.3143601 10.2962603, 49.8558808 9.3997297, 47.8047485 10.2133142, 49.0248904 11.0046911, 49.6009390 11.0027339, 49.6009409 11.0027339, 48.0715754 11.0005879, 48.7892575 10.6710487, 50.3053524 10.0213184, 49.9748497 9.1456239, 49.9761683 9.1475690, 49.9748492 9.1456249, 49.9761684 9.1475702, 49.9748468 9.1456262, 49.9748473 9.1456251, 48.4284030 10.8789123, 49.9769927 9.1484309, 49.9786284 9.1435443, 49.9743789 9.1488575, 49.9763387 9.1472780, 49.9769931 9.1484317, 49.9743817 9.1494905, 49.9743790 9.1488557, 49.9763385 9.1472795, 49.9769935 9.1484325, 50.2324713 9.7972070, 50.2274987 9.8015171, 50.2125796 9.8078351, 48.0292035 11.3673827, 47.5983444 10.9056374, 50.0609693 10.1301670, 49.7956233 9.9339097, 49.7943732 9.9355099, 49.7893753 9.9303739, 47.8013284 10.3537356, 48.7435414 11.2146671, 48.3609968 10.0706280, 49.9732320 9.1562722, 49.9725473 9.1460345, 49.9725481 9.1460355, 49.7811895 9.8754454, 50.0463306 10.2422178, 50.1262114 10.1323272, 50.1260980 10.1320650, 48.0456871 10.4243348, 49.9599944 9.1674078, 49.9790176 9.1378227, 49.9785802 9.1497577, 49.9785782 9.1497577, 49.9790183 9.1378214, 49.9767006 9.1434450, 49.9790189 9.1378227, 49.9785791 9.1497594, 49.9785792 9.1497560, 49.7878831 9.1558386, 47.4803785 11.2396359, 50.1823681 10.8135295, 48.1134041 11.3410235, 49.7965388 9.9259564, 48.6382488 10.6026814, 48.6364553 10.6022821, 47.8459739 11.0299188, 48.9024263 11.0894232, 49.9183578 10.9061724, 50.0927176 10.2708298, 49.3664352 11.2626077, 48.9299739 10.9695181, 49.6439302 11.1185170, 49.7288907 10.5445346, 50.0431869 10.2304967, 48.3731122 11.0959923, 48.1948518 11.2632927, 49.4710348 11.0172151, 49.4482963 11.0654784, 49.6449426 9.2199396, 49.4019599 10.7243349, 48.3884186 11.0874478, 49.6443425 9.2223859, 48.9995875 11.1062950, 49.5075741 11.2794565, 49.5075692 11.2794307, 49.9040712 10.0964998, 49.8906463 10.8815396, 49.8999822 10.3506192, 49.7067822 11.2546397, 48.8755548 11.0741983, 49.8989204 10.3485227, 50.0438223 10.7182321, 49.9710536 10.6694916, 49.9927820 10.2724251, 50.3199349 9.8181952, 49.6775007 9.2831816, 49.2258187 10.7269246, 47.6764419 11.2029616, 47.8976158 10.1161598, 47.5433929 11.2602180, 47.5456150 11.1901578, 48.3629733 11.3766216, 48.0332314 10.8505875, 48.0504475 10.8407146, 48.0512785 10.8382489, 49.0317249 10.9702087, 49.0288485 10.9765390, 49.2530850 10.2873176, 48.3660798 10.5426582, 49.0672016 10.3182782, 48.2819649 10.4691847, 48.0397151 10.6712233, 48.0397779 10.6716756, 48.0376793 10.6702097, 48.2080415 11.3280417, 50.2723903 10.4116010, 47.7771843 10.1273307, 48.0056471 10.3563100, 49.7653436 9.5229885, 48.1969376 10.6769089, 48.3575820 10.8800179, 49.9040764 11.0311000, 47.7155084 10.3234417, 49.4390879 11.1394627, 49.8829364 9.5814255, 48.3869392 10.8665406, 48.4441900 11.1327054, 48.1026976 10.8452652, 47.6613522 11.2092731, 48.0263618 10.8448247, 48.8870984 10.4688551, 49.6695229 10.1503714, 47.6766571 11.2022534, 49.6097897 10.7076412, 47.9107077 10.5744731, 48.0261191 10.8449821, 50.5222310 10.0713603, 50.2544924 10.0620117, 50.3707322 9.9786099, 49.4023947 11.1359481, 49.8978821 10.2241692, 48.0817897 10.8647284, 49.4496586 10.3195263, 50.0041308 9.8215312, 49.3007818 11.1215015, 49.1178053 10.7597381, 48.2453585 10.8031322, 49.8271514 9.4032808, 47.9097955 11.2828365, 50.3469859 11.2885524, 50.1624704 10.0762669 +48.8649321 2.2883111, 48.8538346 2.3644665, 48.8420145 2.3302544, 48.8296558 2.3789838, 48.8687291 2.3014159, 48.8698436 2.3061758, 48.8411414 2.3136506, 48.8450445 2.3104567, 48.8474933 2.3107909, 48.8431492 2.3040014, 48.8431097 2.3128917, 48.8592377 2.3714158, 48.8749086 2.3407659, 48.8442816 2.3244689, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8701182 2.3328493, 48.8337153 2.3863338, 48.8650286 2.3978764, 48.8853087 2.2914432, 48.8326928 2.3011680, 48.8367477 2.3065081, 48.8896590 2.3042630, 48.8841050 2.3049810, 48.8835710 2.3045840, 48.8485190 2.3493440, 48.8778905 2.3549883, 48.8359858 2.3961013 +yes +en:William Chambers (publisher) +4 +22 +55.9575618 -3.1847902, 55.9491314 -3.1876537, 55.9757878 -3.2301721, 55.9621811 -3.2003284, 55.9526181 -3.1750774, 55.9471770 -3.1904575, 55.9254145 -3.2090883, 55.9764403 -3.1701500, 55.9504129 -3.2949801, 55.9601603 -3.2006854, 55.9299490 -3.2096090, 55.9592433 -3.2230171, 55.9481079 -3.1917724, 55.9034567 -3.1574061, 55.9808227 -3.2245927, 55.9479318 -3.1942157, 55.9166326 -3.2276420, 55.9467615 -3.2168254, 55.9524553 -3.1968363, 55.9501797 -3.1870275, 55.9428645 -3.2037697, 55.9484729 -3.1956543, 55.9478512 -3.2019348, 55.9452311 -3.1921670, 55.9449743 -3.1941250, 55.9701331 -3.1723584, 55.9411858 -3.2034013, 55.9558388 -3.1571446, 55.9250843 -3.2616025, 55.9473220 -3.2061120, 55.9382464 -3.1945920, 55.9356972 -3.2104575, 55.9457633 -3.2087758, 55.9458777 -3.2095906, 55.9466672 -3.2371272, 55.9308474 -3.2091419, 55.9461542 -3.1854391, 55.9057145 -3.2240658, 55.9618487 -3.1523081, 55.9499509 -3.2074622, 55.9379652 -3.1900697, 55.9487732 -3.1929905, 55.9164262 -3.2851068, 55.9724535 -3.2516505, 55.9626190 -3.2334642, 55.9477849 -3.3610098, 55.9486801 -3.3621149, 55.9459285 -3.2185692, 55.9523009 -3.1919415, 55.9491345 -3.1940862, 55.9512470 -3.1890625, 55.9527128 -3.2015822, 55.9282591 -3.2096099, 55.9518891 -3.1996221, 55.9520193 -3.2031623, 55.9509410 -3.2098198 +Tesla Motors Inc. +Glasgow International Airport, Edinburgh Airport, Perth Airport, Fife Airport, RM Condor, East Fortune airfield, Glasgow Heliport, Winfield Aerodrome (RAF Winfield/Horndean), East Lochlane Farm, Strathaven, Kingsmuir, Midlem, Charterhall Airfield (RAF Charterhall), Kirknewton, Dundee Airport, Cumbernauld Airport, Nether Huntlywood Airfield +yes +01.45.42.59.19 +30 +yes +11 +48.8536740 2.4053556, 48.8394601 2.3890683 +Musée en Herbe and http://www.musee-en-herbe.com/, Musée en Herbe, Môm'artre, La Bellevilloise and www.labellevilloise.com/, Studio des Islettes, Maison Européenne de la Photographie and http://www.mep-fr.org, Centre d'animation Reuilly, Conservatoire municipal Claude Debussy - Site de la Jonquière and http://equipement.paris.fr/conservatoire-municipal-claude-debussy-site-la-jonquiere-3976, Atelier de Restauration et de Conservation des Photographies de la Ville de Paris and http://www.paris.fr/politiques/conservation-restauration/atelier-de-restauration-et-de-conservation-des-photographies-de-la-ville-de-paris/p7672#, Le Local, Espace Château Landon and http://crl10.net/, Barbara Fleury and http://www.fgo-barbara.fr, ADAC, Le Lucernaire, La Générale Nord-Est and http://lagenerale.fr/, Le 100, Le Chantier, Le Plateau, Centre d’animation La grange aux Belles and http://crl10.net/, La Bellevilloise and http://www.labellevilloise.com, Centre culturel italien, Centre Culturel la Jonquière, Shakirail and http://shakirail.blogspot.fr, La Péniche cinéma, Au Bonheur du Jour, cité des arts, La Métisse, Conservatoire municipal Jean-Philippe Rameau, Antenne FRAC Île-de-France, FRAC Antenne culturelle, Centre culturel franlasie, Conservatoire libre du cinema francais, Centre culturel Pouya, Auditorium, Collège des Bernardins, Conservatoire du Centre and http://equipement.paris.fr/conservatoire-municipal-w-a-mozart-1595, Centre Pompidou, Centre Wallonie-Bruxelles and http://www.cwb.fr/, Espace des Blancs-Manteaux, La Gaîté lyrique and http://www.gaite-lyrique.net/, Espace Jemmapes and http://www.crl10.net/, Conservatoire Hector Berlioz, Institut hongrois, Galerie J. Kugel, Le Zénith and http://www.zenith-paris.com/, Grande Halle de la Villette and http://www.villette.com/fr/villette-pratique/acces/la-grande-halle.htm, Cours Florent and http://www.coursflorent.fr, Espace Fondation EDF, Conservatoire Municipal Nadia et Lili Boulanger and equipement.paris.fr/Conservatoire Municipal Nadia et Lili Boulanger, Conservatoire municipal Georges Bizet, Pavillon Carré de Baudouin, Le BAL and http://www.le-bal.fr/, Centre d'Animation "Les Abbesses" and http://equipement.paris.fr/centre-d-animation-les-abbesses-1154, Maison des ensembles, La Maison des Cinq Sens, Conservatoire Francis Poulenc, Point - Afrique, Centre Culturel Suédois and www.si.se/Paris/, Ancien Conservatoire Maurice Ravel, Le Cent Quatre and http://www.104.fr/, Maison des Métallos +23 +49 +no +3 +49.4095083 8.7002566 +eldoRADo, Call a Bike +Griechische Taverne, Goldener Stern, Poseidon, Delphi, Sirtaki, Gasthaus zur Krone, Olympia, Goldener Hirsch +48.8242374 2.3651653, 48.8435771 2.3052604, 48.8359056 2.2906833, 48.8430494 2.2981600, 48.8422227 2.3021215, 48.8461616 2.3241905, 48.8660551 2.3469571, 48.8668672 2.3470957, 48.8379645 2.2582370, 48.8693380 2.3551298, 48.8703138 2.3531191, 48.8578111 2.3009135, 48.8660881 2.3521709, 48.8729563 2.3536136, 48.8573257 2.4029932, 48.8561996 2.4042235, 48.8550047 2.4015490, 48.8533252 2.4057615, 48.8632178 2.3862480, 48.8785823 2.3740899, 48.8785709 2.3707401, 48.8435833 2.3907880, 48.8739444 2.3578943, 48.8391900 2.3005803, 48.8366855 2.2949206, 48.8364090 2.2951587, 48.8457189 2.2873474, 48.8302437 2.3285915, 48.8534094 2.3325318, 48.8640484 2.3781979, 48.8618833 2.3805698, 48.8635050 2.3812718, 48.8408293 2.3232300, 48.8400818 2.3221697, 48.8584026 2.3805695, 48.8506007 2.3901866, 48.8710687 2.3598052, 48.8519157 2.4010889, 48.8515486 2.4016481, 48.8293046 2.3221365, 48.8520153 2.4060609, 48.8671786 2.3728849, 48.8688236 2.3748271, 48.8697228 2.3737877, 48.8726943 2.3713664, 48.8751312 2.3709212, 48.8764145 2.3684703, 48.8703436 2.3710041, 48.8712192 2.3743429, 48.8702035 2.3720916, 48.8685036 2.3689877, 48.8668428 2.3671981, 48.8662696 2.3794340, 48.8321341 2.3623851, 48.8485694 2.3787232, 48.8482707 2.3787963, 48.8479031 2.3773962, 48.8860129 2.3833794, 48.8864748 2.3822447, 48.8690474 2.3715118, 48.8740289 2.3897101, 48.8366300 2.2819160, 48.8833914 2.3203401, 48.8862586 2.3189581, 48.8820706 2.3158281, 48.8284320 2.2732128, 48.8336263 2.3216697, 48.8410303 2.3944134, 48.8377043 2.4014006, 48.8351529 2.3027945, 48.8357133 2.4054545, 48.8357197 2.3963937, 48.8343203 2.3972498, 48.8771503 2.4022052, 48.8763846 2.4060939, 48.8299585 2.3776878, 48.8269249 2.3424698, 48.8268200 2.3384839, 48.8283835 2.3440786, 48.8395966 2.4017107, 48.8520958 2.4021108, 48.8262033 2.3651094, 48.8313155 2.3153662, 48.8550706 2.3730736, 48.8646989 2.3689158, 48.8595538 2.3756962, 48.8567374 2.3795945, 48.8386023 2.3899562, 48.8512672 2.3756832, 48.8462858 2.3789688, 48.8470868 2.3861179, 48.8462086 2.3834450, 48.8490537 2.3788229, 48.8461979 2.3881729, 48.8513978 2.3785907, 48.8437369 2.3894678, 48.8736510 2.3850793, 48.8377411 2.3194828, 48.8462369 2.3724753, 48.8467907 2.3759445, 48.8511138 2.3765244, 48.8490575 2.3729688, 48.8233963 2.3660652, 48.8461821 2.3751034, 48.8744523 2.3285538, 48.8199911 2.3437577, 48.8220297 2.3464764, 48.8548362 2.3059829, 48.8222882 2.3417753, 48.8471183 2.3177609, 48.8926447 2.3164475, 48.8893428 2.3196669, 48.8893257 2.3220647, 48.8940309 2.3284232, 48.8935528 2.3274406, 48.8834040 2.2884410, 48.8848994 2.2911875, 48.8337371 2.3998182, 48.8351017 2.3851690, 48.8270785 2.3688229, 48.8951731 2.3400219, 48.8332618 2.3645563, 48.8927822 2.3303046, 48.8850861 2.3471124, 48.8855550 2.3755636, 48.8364139 2.3105400, 48.8645238 2.4053843, 48.8662090 2.4059200, 48.8646750 2.4061565, 48.8640693 2.4084076, 48.8534793 2.3370935, 48.8447404 2.3092568, 48.8763021 2.3355074, 48.8649249 2.3544512, 48.8738710 2.3754889, 48.8700969 2.3945662, 48.8722766 2.3763389, 48.8727941 2.3789472, 48.8723774 2.3784509, 48.8618006 2.3438339, 48.8663061 2.3318256, 48.8422494 2.2900049, 48.8759245 2.3823198, 48.8783630 2.3696321, 48.8689441 2.3434176, 48.8612250 2.3505102, 48.8552497 2.3597644, 48.8656221 2.3559687, 48.8634375 2.3612775, 48.8783342 2.3857466, 48.8468100 2.3418230, 48.8389117 2.3208264, 48.8717130 2.3682830, 48.8620636 2.3849490, 48.8815464 2.3661885, 48.8798290 2.3723974, 48.8405772 2.3392592, 48.8337841 2.3146240, 48.8325723 2.3127820, 48.8855543 2.3653665, 48.8636364 2.3997071, 48.8615472 2.4000826, 48.8621754 2.4002743, 48.8672187 2.3572664, 48.8661266 2.3578351, 48.8704507 2.3578003, 48.8777945 2.3400334, 48.8742543 2.3635929, 48.8416628 2.3323403, 48.8371033 2.3917926, 48.8943889 2.3145247, 48.8429214 2.3381927, 48.8742351 2.3197867, 48.8759098 2.3235560, 48.8772158 2.3147005, 48.8229259 2.3277884, 48.8707106 2.3061618, 48.8548574 2.3992583, 48.8373218 2.3543022, 48.8239530 2.3266592, 48.8883400 2.3921657, 48.8217929 2.3436401, 48.8416145 2.3175566, 48.8408856 2.2974421, 48.8701333 2.3495998, 48.8754781 2.3565478, 48.8499722 2.3232975, 48.8497758 2.3813180, 48.8334864 2.3445710, 48.8385482 2.2902657, 48.8483679 2.3757997, 48.8401874 2.3127630, 48.8496593 2.2729682, 48.8763190 2.4041304, 48.8263277 2.3267355, 48.8525562 2.2684402, 48.8233144 2.3271600, 48.8264267 2.3119759, 48.8458418 2.2556708, 48.8303958 2.3431605, 48.8478014 2.2647346, 48.8559854 2.2707171, 48.8607422 2.3534344, 48.8260056 2.3515668, 48.8379482 2.2960836, 48.8515538 2.2912722, 48.8193588 2.3600138, 48.8730992 2.3177685, 48.8848656 2.3798975, 48.8269011 2.3681963, 48.8266216 2.3691514, 48.8749701 2.2864190, 48.8755077 2.2840744, 48.8489245 2.2975729, 48.8435721 2.3826812, 48.8518072 2.2773674, 48.8384314 2.2895621, 48.8568548 2.3944791, 48.8575572 2.3931327, 48.8475297 2.3898249, 48.8808138 2.3286022, 48.8816087 2.3314603, 48.8740981 2.3550319, 48.8544407 2.3918923, 48.8413002 2.3893199, 48.8366273 2.4025423, 48.8445942 2.3097624, 48.8448480 2.3098318, 48.8818286 2.3399461, 48.8644748 2.3724246, 48.8782573 2.3539987, 48.8759426 2.3938847, 48.8457306 2.3127227, 48.8386983 2.2904723, 48.8647366 2.3858705, 48.8550011 2.3728622, 48.8228387 2.3589304, 48.8481890 2.2839192, 48.8730539 2.3622468, 48.8460628 2.3516351, 48.8935894 2.3802035, 48.8939632 2.3834919, 48.8571945 2.3694425, 48.8535594 2.3882434, 48.8715470 2.3362608, 48.8453338 2.2971759, 48.8832160 2.2880960, 48.8242182 2.3584769, 48.8300211 2.3348369, 48.8444692 2.2876673, 48.8847157 2.3871100, 48.8839815 2.2936123, 48.8797902 2.2912630, 48.8483965 2.3521999, 48.8442494 2.3838139, 48.8465937 2.4012442, 48.8470404 2.4068547, 48.8392119 2.3946987, 48.8469029 2.4084295, 48.8711992 2.3244204, 48.8622321 2.2761349, 48.8933957 2.3335323, 48.8446458 2.3838568, 48.8377768 2.3074246, 48.8654991 2.3352993, 48.8710326 2.3446806, 48.8745823 2.3546682, 48.8792964 2.3574736, 48.8844429 2.3757783, 48.8827316 2.3716320, 48.8678917 2.3455591, 48.8710189 2.3207761, 48.8414253 2.2875706, 48.8367077 2.3729356, 48.8529778 2.4083287, 48.8664526 2.3338680, 48.8602942 2.4091403, 48.8454463 2.3809679, 48.8332559 2.3312348, 48.8413560 2.3264560, 48.8686611 2.3679433, 48.8393830 2.2575770, 48.8307032 2.3180543, 48.8271015 2.3092145, 48.8945974 2.3446122, 48.8940080 2.3420130, 48.8937610 2.3481560, 48.8935420 2.3422190, 48.8249519 2.3198800, 48.8688189 2.3633322, 48.8678673 2.3841136, 48.8421866 2.3495998, 48.8564343 2.3736941, 48.8913020 2.3518900, 48.8328413 2.2890914, 48.8791372 2.3927158, 48.8693363 2.3369419, 48.8292969 2.3577990, 48.8527618 2.4068816, 48.8553598 2.3883247, 48.8576634 2.3902679, 48.8570019 2.3907682, 48.8391613 2.2999088, 48.8579949 2.3996680, 48.8846545 2.3473544, 48.8358959 2.4026305, 48.8418462 2.2668066, 48.8818036 2.3371365, 48.8773306 2.3392579, 48.8654195 2.3683698, 48.8692686 2.3627671, 48.8792242 2.3541252, 48.8709994 2.3527672, 48.8711421 2.3527095, 48.8764602 2.3265551, 48.8726855 2.3544641, 48.8279376 2.3215185, 48.8479415 2.2739662, 48.8479031 2.2725737, 48.8502929 2.2705326, 48.8758146 2.3429249, 48.8776783 2.3950607, 48.8421280 2.3629650, 48.8861169 2.3918493, 48.8879982 2.3487210, 48.8887877 2.3498107, 48.8868122 2.3256852, 48.8834537 2.3328703, 48.8856796 2.3259878, 48.8830525 2.3262040, 48.8873350 2.3234292, 48.8939964 2.3323680, 48.8938940 2.3337117, 48.8906510 2.3342133, 48.8966079 2.3382044, 48.8970628 2.3379630, 48.8975027 2.3345968, 48.8961374 2.3461866, 48.8943367 2.3365602, 48.8931394 2.3284963, 48.8837616 2.3334044, 48.8309452 2.3126819, 48.8525068 2.2903630, 48.8426742 2.2822406, 48.8414115 2.2808276, 48.8577342 2.4078256, 48.8568635 2.4080009, 48.8838368 2.3847889, 48.8496859 2.3992762, 48.8589932 2.2764394, 48.8611261 2.2842369, 48.8639428 2.4084587, 48.8671597 2.4041162, 48.8628559 2.3527373, 48.8610518 2.3542343, 48.8629767 2.3535612, 48.8633052 2.3497219, 48.8353511 2.3925763, 48.8475854 2.3972560, 48.8382852 2.3968325, 48.8395273 2.3323394, 48.8426034 2.3845997, 48.8880141 2.3922962, 48.8519521 2.3848662, 48.8534279 2.3834438, 48.8439220 2.3510401, 48.8681249 2.3601102, 48.8816458 2.3735588, 48.8807758 2.3737178, 48.8225454 2.3602368, 48.8288446 2.3012353, 48.8693983 2.3558970, 48.8950310 2.3452340, 48.8809509 2.3730867, 48.8824653 2.3706816, 48.8822580 2.3711604, 48.8731763 2.3440636, 48.8892660 2.3163868, 48.8405768 2.2636739, 48.8323274 2.3357206, 48.8562883 2.4037662, 48.8578307 2.4038842, 48.8720218 2.3430269, 48.8489155 2.2943202, 48.8612237 2.3512988, 48.8763837 2.3483776, 48.8392265 2.3811340, 48.8656025 2.3468798, 48.8759926 2.3239404, 48.8690700 2.3538506, 48.8770752 2.3509789, 48.8768811 2.3522807, 48.8671912 2.3992585, 48.8688039 2.4016891, 48.8724825 2.4048479, 48.8707468 2.3986424, 48.8332008 2.3374165, 48.8899534 2.3615002, 48.8285764 2.3033016, 48.8905323 2.3596305, 48.8888155 2.3602548, 48.8395423 2.2779531, 48.8260077 2.3741386, 48.8560173 2.3760876, 48.8581120 2.3721314, 48.8567897 2.3722474, 48.8431435 2.2776490, 48.8396006 2.2614514, 48.8385727 2.2600917, 48.8445018 2.2969910, 48.8485986 2.2903852, 48.8507401 2.3475146, 48.8755440 2.3956906, 48.8802530 2.3964916, 48.8900121 2.3262557, 48.8462660 2.3758720, 48.8459472 2.3821633, 48.8281746 2.3563344, 48.8510897 2.3308156, 48.8729559 2.3908410, 48.8913760 2.3771659, 48.8615915 2.3335029, 48.8917389 2.3616331, 48.8522672 2.3651848, 48.8892317 2.3356930, 48.8864482 2.3599362, 48.8617073 2.3677371, 48.8288145 2.3655213, 48.8553200 2.3741655, 48.8673506 2.3480275, 48.8596235 2.3682702, 48.8770063 2.3823746, 48.8756399 2.3925198, 48.8916332 2.3759113, 48.8850102 2.2910619, 48.8413337 2.4090408, 48.8516856 2.3636713, 48.8416155 2.3282978, 48.8463560 2.2850476, 48.8646148 2.3562397, 48.8463401 2.2843476, 48.8550524 2.3607242, 48.8891219 2.3742700, 48.8790703 2.3296531, 48.8642779 2.3695879, 48.8661594 2.3444128, 48.8419436 2.3983227, 48.8862706 2.3258112, 48.8258431 2.3570589, 48.8759129 2.3303286, 48.8844216 2.3798109, 48.8436411 2.2944053, 48.8335094 2.3079080, 48.8375593 2.3075878, 48.8329866 2.2943809, 48.8848532 2.3116016, 48.8550088 2.3858779, 48.8540035 2.3861535, 48.8641274 2.3426217, 48.8438574 2.3072079, 48.8468848 2.3064614, 48.8515318 2.3438019, 48.8530679 2.2905561, 48.8881502 2.3762604, 48.8389330 2.3892470, 48.8246925 2.3645687, 48.8428012 2.4050359, 48.8267406 2.3574342, 48.8503295 2.2931941, 48.8853514 2.3263695, 48.8489948 2.2828977, 48.8275294 2.3456790, 48.8234736 2.3658963, 48.8360213 2.3957852, 48.8481035 2.3308491, 48.8475416 2.3309131, 48.8599847 2.3450161, 48.8385663 2.3603627, 48.8781276 2.3695316, 48.8694045 2.3556402, 48.8879662 2.3862902, 48.8580138 2.3821494, 48.8593003 2.3492109, 48.8585959 2.3511475, 48.8589586 2.3486959, 48.8585183 2.3513205, 48.8264650 2.3255446, 48.8564592 2.3031593, 48.8643029 2.3504958, 48.8790449 2.2970432, 48.8791444 2.2972971, 48.8851647 2.3598483, 48.8567290 2.3065898, 48.8678000 2.3864912, 48.8740888 2.3846048, 48.8415632 2.3749443, 48.8215623 2.3662137, 48.8819090 2.2862180, 48.8823940 2.2912340, 48.8400648 2.3497188, 48.8402671 2.3498166, 48.8402671 2.3498166, 48.8415554 2.3495472, 48.8796450 2.2803000, 48.8625842 2.4031454, 48.8792280 2.2828900, 48.8857080 2.2899680, 48.8898260 2.3029100, 48.8498405 2.3852603, 48.8796085 2.3717349, 48.8747850 2.2947390, 48.8757924 2.3723838, 48.8339085 2.3295711, 48.8732544 2.3760882, 48.8794340 2.3871915, 48.8794279 2.3867275, 48.8649421 2.2829335, 48.8748144 2.3790580, 48.8820372 2.3716846, 48.8251894 2.3262850, 48.8772141 2.3546832, 48.8336434 2.3876800, 48.8742619 2.3833629, 48.8403986 2.3037271, 48.8406980 2.3055166, 48.8444454 2.3229017, 48.8831918 2.3761167, 48.8850982 2.3804702, 48.8593397 2.3236648, 48.8799177 2.3757765, 48.8832708 2.3873093, 48.8495360 2.3557600, 48.8529353 2.3445112, 48.8278676 2.3694900, 48.8687382 2.3816808, 48.8679237 2.3828320, 48.8842760 2.3914938, 48.8845436 2.3914120, 48.8799246 2.3748736, 48.8606251 2.3073994, 48.8845082 2.3658573, 48.8725158 2.3779152, 48.8801006 2.3353373, 48.8838889 2.3802753, 48.8755696 2.3936253, 48.8784016 2.3448577, 48.8669892 2.3478869, 48.8753373 2.3903971, 48.8817780 2.3151710, 48.8853880 2.3213970, 48.8398928 2.3566591, 48.8622810 2.3416967, 48.8646878 2.3557933, 48.8627226 2.3724972, 48.8587427 2.3835886, 48.8451912 2.3544808, 48.8709179 2.3661321, 48.8476677 2.2992150, 48.8902933 2.3789075, 48.8424130 2.2816821, 48.8377560 2.2806689, 48.8892161 2.3493454, 48.8789570 2.2904640, 48.8669877 2.3970781, 48.8669101 2.3971237, 48.8470969 2.4154996, 48.8694573 2.4052299, 48.8609250 2.3777382, 48.8617906 2.3644522, 48.8701241 2.3549870, 48.8353148 2.3089601, 48.8474073 2.3179659, 48.8564343 2.3767139, 48.8617306 2.3717459, 48.8637388 2.3717218, 48.8480109 2.3305182, 48.8616060 2.3573874, 48.8750992 2.2920641, 48.8602579 2.3671466, 48.8579948 2.3660380, 48.8580835 2.3656152, 48.8524891 2.3411126, 48.8837276 2.3605607, 48.8275086 2.3693276, 48.8291811 2.3237504, 48.8509533 2.3424752, 48.8640454 2.3428169, 48.8751193 2.3884843, 48.8774525 2.4020416, 48.8535573 2.3854311, 48.8508908 2.3950527, 48.8516085 2.3760189, 48.8534997 2.3831443, 48.8709988 2.3069747, 48.8728273 2.3433945, 48.8562232 2.4037355, 48.8430876 2.3029217, 48.8886357 2.3346957, 48.8484935 2.3707044, 48.8366376 2.3599049, 48.8302591 2.3642127, 48.8829303 2.3343538, 48.8412949 2.3226720, 48.8323589 2.3156645, 48.8425836 2.3031667, 48.8838545 2.2978583, 48.8922801 2.2985255, 48.8356812 2.3870588, 48.8457134 2.2873370 +49.4135676 8.6942734 +yes +1 +yes +157 +Mosquée 'Ali Ibn Al Khattab, Mosquée Al-Fatih, Mosquée de Paris 15ème, Association Culturelle des Musulmans, Abdoulmajid, Mosquée A Daawa, Grande Mosquée de Paris, Centre Culturel Islamique, Association Culturelle Islamique Kurdes, Association Foi et Pratique - Mosquée OMAR, Mosquée Abou Baker Assiddiq, Khalid Ibn Walid, Institut des Cultures d'Islam +2 +yes +yes +30, 31, 32, 33, 30, 31, 32, 33 +yes +25 +15 +yes, yes, yes +yes +Riegler, Bäckerei Rühle, Cafe Frisch, Mahlzahn, Mantei, Riegler, Paris, Mantei, Kamps, Der Kleine Gundel, Bäckerei Rodemer, Bäcker Tschakert, Bäckerei Riegler, Stefansbäck, Bäckerei Grimm, Grimminger, Mantei, Seip, Cafè Frisch, Bäckerei Tschakert, Grimminger, Mahlzahn Vollkornbäckerei, mantei, Bridi, Conditorei Zimmermann, Mantei, Grimminger, Bäckerei Tschakert, Riegler, Görtz, Rühle, Kamps, Göbes Sophie, Schlierbacher Schiff, Mantei, Riegler, Mahlzahn Vollkornbäckerei, Rühle Bäckerei, Riegler, Wiener Feinbäckerei Heberer, LE CROBAG, Helin Backwaren, Grimminger, Mantei, Pfänder, mantei, Mantei, Stefansbäck, Riegler, Patisserie La Flamm, Grimminger, Backshop, Lecker Bäcker, Breitenstein Bäckerei, K&U, Backwaren, Bäckerei Mantei, Bäckerei Wacker, Bäckerei & Konditorei Stahl, Bäckerei Siegel, Café Frisch, Goldkorn, Görtz, Görtz, Laib & Leben, Riegler, Bäckerei Bernauer, Kohlmann +yes +52 +48.8431940 2.3077472, 48.8672770 2.2716529, 48.8626015 2.3440440, 48.8712727 2.3788213, 48.8591328 2.3525765, 48.8833055 2.3634273, 48.8246156 2.3095480, 48.8557538 2.2906075, 48.8316444 2.3266871, 48.8276269 2.2935826, 48.8604886 2.3704044, 48.8820577 2.3422422, 48.8945576 2.3189168, 48.8716471 2.3695539, 48.8907179 2.3749478, 48.8763624 2.3058713, 48.8519343 2.3358691, 48.8313124 2.2750309, 48.8641166 2.2565095, 48.8641719 2.2560642, 48.8490634 2.3517317, 48.8845953 2.3994143, 48.8805352 2.3776953, 48.8824472 2.3896512, 48.8714538 2.3790422, 48.8754975 2.4067088, 48.8943495 2.3510361, 48.8306882 2.3630641, 48.8725599 2.2603094, 48.8569428 2.2604862, 48.8451052 2.2533915, 48.8487410 2.2847647, 48.8472686 2.2819731, 48.8269156 2.3528936, 48.8361129 2.3760717, 48.8447360 2.3478715, 48.8416334 2.4125661, 48.8271261 2.3526169, 48.8268674 2.3526069, 48.8886571 2.2954478, 48.8330815 2.3668374, 48.8451517 2.2531130 +0 +55.9456620 -3.2061210, 55.9443537 -3.2048002, 55.9374112 -3.2346906, 55.9426407 -3.2821897, 55.8956823 -3.3127216, 55.9415461 -3.2037701, 55.9452350 -3.2055760, 55.9447948 -3.1836736, 55.9341803 -3.2107330, 55.9386101 -3.1916219, 55.9360196 -3.1802824, 55.9475772 -3.1860219, 55.9459203 -3.2010630, 55.9587892 -3.1643659, 55.9451748 -3.1864323, 55.9744689 -3.1844184, 55.9246254 -3.2764823, 55.9752473 -3.2384345, 55.9088082 -3.2286678, 55.9589541 -3.2073114, 55.9503203 -3.1782658, 55.9269783 -3.1633004, 55.9569888 -3.1872260, 55.9430591 -3.2094228, 55.9518428 -3.3045734, 55.9453098 -3.1841497, 55.9424929 -3.2818576, 55.9496102 -3.2090585, 55.9497489 -3.2095479, 55.9460372 -3.2224539, 55.9493968 -3.2095231, 55.9359530 -3.2090040, 55.9024661 -3.2880581, 55.9713423 -3.1717866, 55.9439948 -3.2043346, 55.9455833 -3.1843657, 55.9249456 -3.2543275, 55.9522822 -3.1120224, 55.9579450 -3.1718043, 55.9593295 -3.1714717, 55.9486293 -3.1870283, 55.9352201 -3.1141054, 55.9145806 -3.1649266, 55.9625807 -3.1887300, 55.9407885 -3.1806196, 55.9196790 -3.2957655, 55.9624261 -3.1763251, 55.9718675 -3.1714527, 55.9444644 -3.2041891, 55.9090090 -3.1426712, 55.9065326 -3.1333497, 55.9114939 -3.2386783, 55.9405331 -3.2951496, 55.9701290 -3.2319995, 55.9332311 -3.0984278, 55.9591494 -3.2239360, 55.9135516 -3.1356294, 55.9833614 -3.4014836, 55.9296883 -3.2089047, 55.9316500 -3.1357732, 55.9697807 -3.1703478, 55.9364146 -3.2384039, 55.9386968 -3.1031078, 55.9815687 -3.1896732, 55.9633012 -3.1963113, 55.9893631 -3.3990010, 55.9413807 -3.2215371, 55.9240787 -3.2508970, 55.9574632 -3.2408274, 55.9431581 -3.2213233, 55.9280614 -3.2099315, 55.9782397 -3.2432999, 55.9376323 -3.2393738, 55.9016566 -3.2223165, 55.9542878 -3.1417872, 55.9551856 -3.1412308, 55.9661707 -3.2741296, 55.9393608 -3.2517719, 55.9592774 -3.2115003, 55.9447164 -3.2058450, 55.9512626 -3.2957653, 55.9273693 -3.2095452, 55.9266793 -3.2094341, 55.8841015 -3.3394756, 55.9548045 -3.2860448, 55.9024634 -3.1549153, 55.9601182 -3.2953587, 55.9614249 -3.3057303, 55.9617874 -3.3058634, 55.9259926 -3.2464831, 55.9536280 -3.1142869, 55.9246988 -3.3054939, 55.9393031 -3.3165946, 55.9789068 -3.2346781, 55.9790076 -3.2340741 +yes +yes +yes +55.9575618 -3.1847902, 55.9491314 -3.1876537, 55.9757878 -3.2301721, 55.9621811 -3.2003284, 55.9526181 -3.1750774, 55.9471770 -3.1904575, 55.9254145 -3.2090883, 55.9764403 -3.1701500, 55.9504129 -3.2949801, 55.9601603 -3.2006854, 55.9299490 -3.2096090, 55.9592433 -3.2230171, 55.9481079 -3.1917724, 55.9034567 -3.1574061, 55.9808227 -3.2245927, 55.9479318 -3.1942157, 55.9166326 -3.2276420, 55.9467615 -3.2168254, 55.9524553 -3.1968363, 55.9501797 -3.1870275, 55.9428645 -3.2037697, 55.9484729 -3.1956543, 55.9478512 -3.2019348, 55.9452311 -3.1921670, 55.9449743 -3.1941250, 55.9701331 -3.1723584, 55.9411858 -3.2034013, 55.9558388 -3.1571446, 55.9250843 -3.2616025, 55.9473220 -3.2061120, 55.9382464 -3.1945920, 55.9356972 -3.2104575, 55.9457633 -3.2087758, 55.9458777 -3.2095906, 55.9466672 -3.2371272, 55.9308474 -3.2091419, 55.9461542 -3.1854391, 55.9057145 -3.2240658, 55.9618487 -3.1523081, 55.9499509 -3.2074622, 55.9379652 -3.1900697, 55.9487732 -3.1929905, 55.9164262 -3.2851068, 55.9724535 -3.2516505, 55.9626190 -3.2334642, 55.9477849 -3.3610098, 55.9486801 -3.3621149, 55.9459285 -3.2185692, 55.9523009 -3.1919415, 55.9491345 -3.1940862, 55.9512470 -3.1890625, 55.9527128 -3.2015822, 55.9282591 -3.2096099, 55.9518891 -3.1996221, 55.9520193 -3.2031623, 55.9509410 -3.2098198 +no +12 +98 +2 +49.4129429 8.7045098 +138 +no +31 +yes +no +Stephen Sauvestre, Gustave Eiffel, Maurice Koechlin, Émile Nouguier +2 +-34.0444465 19.0099972, 54.3099722 10.2070146, 48.7990140 -88.6180719, 34.3728951 -83.7002886, 34.3730368 -83.7008465, 34.3734548 -83.7016172, 34.3677949 -83.6997959, 34.3716461 -83.7011773, 34.3682200 -83.7002921, 34.3721033 -83.6988826, 34.3721353 -83.6988692, 34.3739219 -83.7015876, 34.3729655 -83.7014039, 34.3735068 -83.7016896, 34.3685267 -83.6993601, 34.3696989 -83.6984950, 1.2557527 103.8127577, 53.6619116 88.8913237, 43.4426729 -86.1786413, 43.4426214 -86.1789629, 39.4028619 -84.1005450, 35.3569792 -120.5765286, 35.3568034 -120.5778855, 35.3572368 -120.5786752, -49.3888520 -73.0614750, 40.2458790 -84.1890776, -37.4954318 145.8788734, -35.9757617 -70.5583996, 53.1639523 -4.0642217, 53.1677564 -4.0604698, 56.1620200 -4.0410972, 43.5378268 -71.3652913, 43.5293962 -71.3712131, 43.5431504 -71.3680647, 43.5431352 -71.3680860, 10.4031662 123.9600115, 43.5263353 -71.3775383, 44.0573739 -71.6321162, 28.6141577 -106.1281698, 14.5490121 121.1308302, -38.6505275 143.4986568, -38.6489894 143.4982376, 35.3593136 -120.5780556, 11.8387258 -85.9966746, 11.8385230 -85.9937576, 11.8385995 -85.9953371, 11.8384134 -85.9960662, 11.8382731 -85.9965158, 11.8386783 -85.9957858, 12.8346642 120.7614297, 40.6012387 -86.7596381, 40.6044820 -86.7674194, 40.6044492 -86.7674255, 19.7875447 -72.2434426, 47.8657201 8.8918371, 47.8659324 8.8916601, 47.8657031 8.8918435, 47.8659153 8.8916614, 19.5231070 -96.9240349, 45.2002358 5.7248284, 60.6041743 -135.0634835, 60.6098319 -135.0625352, 60.6122247 -135.0589421, 14.6983653 101.0636146, 14.6983965 101.0636696, 31.3122133 119.4243546, 22.8469120 -82.9429862, 27.3985735 85.4564097, 27.3793020 85.5277948, 27.4148767 85.5526604, 27.4189786 85.5587896, 36.3171080 -86.4624982, -27.2826326 -52.6862282, 27.9401094 -107.6460602, 40.6788393 -111.5776742, 40.6809542 -111.5771865, 39.7130073 -105.2114983, 39.7129994 -105.2115157 +Backstube +48.8372431 2.4025512, 48.8436827 2.4056942, 48.8476475 2.3732272, 48.8956591 2.3766927, 48.8344171 2.3656055, 48.8819609 2.3610276, 48.8832881 2.3655987, 48.8308432 2.3659695, 48.8703845 2.3744929, 48.8720541 2.2973594, 48.8805098 2.2890182, 48.8305422 2.3206552, 48.9000051 2.3699002, 48.8549413 2.4087999, 48.8785513 2.3191831, 48.8387570 2.2799587, 48.8989533 2.3212671, 48.8714989 2.3580961, 48.8754478 2.3646548, 48.8810188 2.3786602, 48.8521937 2.2751728, 48.8825596 2.3779677, 48.8539100 2.2904495, 48.8315453 2.3647312, 48.8953268 2.3329893, 48.8971290 2.3313799, 48.8564313 2.4002327, 48.8624608 2.3528454, 48.8489432 2.2958380, 48.8446028 2.3805301, 48.8397850 2.3575188, 48.8400031 2.3575222, 48.8442166 2.3890513, 48.8226912 2.3495447, 48.8735753 2.3990719, 48.8767145 2.4045468, 48.8297834 2.2950029, 48.8878961 2.3705889, 48.8593870 2.3702037, 48.8593028 2.3689081, 48.8930174 2.3209663, 48.8576608 2.3609703, 48.8540002 2.3615994, 48.8597150 2.3615075, 48.8211392 2.3471688, 48.8389963 2.3074140, 48.8807050 2.2976303, 48.8786911 2.3684186, 48.8788154 2.3656788, 48.8310119 2.3691821, 48.8305746 2.3590826, 48.8520777 2.3364208, 48.8519979 2.3358911, 48.8782248 2.3818123, 48.8899352 2.3788791, 48.8749997 2.3784035, 48.8801389 2.3744304, 48.8527039 2.3856412, 48.8492131 2.4119154, 48.8874433 2.3939300, 48.8728138 2.3937426, 48.8730441 2.3935237, 48.8599956 2.3704874, 48.8919633 2.3816291, 48.8899568 2.3800977, 48.8572542 2.4071947, 48.8424244 2.2640145, 48.8420921 2.2830474, 48.8755752 2.3071841, 48.8591060 2.4071931, 48.8886602 2.3207587, 48.8774278 2.3664806, 48.8769307 2.3675682, 48.8346716 2.3947154, 48.8204187 2.3630912, 48.8318908 2.3024692, 48.8872133 2.3667612, 48.8824435 2.2894638, 48.8542281 2.2678111, 48.8866121 2.3008785, 48.8437371 2.3505713, 48.8382268 2.3465518, 48.8353795 2.3867511, 48.8297241 2.3607269, 48.8721688 2.3856239, 48.8370947 2.3950913, 48.8574467 2.3768468, 48.8896006 2.3518695, 48.8900462 2.3528052, 48.8889906 2.3376891, 48.8365860 2.4088069, 48.8900265 2.2995953, 48.8373216 2.3574246, 48.8293819 2.3669467, 48.8654608 2.3452436, 48.8864169 2.3618208, 48.8362418 2.3837098, 48.8745907 2.3898579, 48.8882215 2.3616899, 48.8868864 2.3886278, 48.8701494 2.3991414, 48.8775210 2.3961862, 48.8596786 2.4069798, 48.8584409 2.3999616 +194 +yes +yes +yes +52.0455273 8.4506902, 52.0583801 8.5520281, 52.0441674 8.5341281, 52.0579438 8.4922378, 51.9789909 8.5077870, 51.9839158 8.5145830, 52.0148098 8.5415843, 51.9930698 8.6117053, 51.9530548 8.6019656, 52.0929733 8.5326795, 52.0238436 8.5234911, 52.0555549 8.5378820, 52.0051281 8.5264278, 51.9719056 8.4584900, 52.0498292 8.5592441, 51.9862274 8.6330968, 52.0292398 8.6021218, 52.0292227 8.6009951, 52.0272514 8.5957092, 52.0306293 8.6106186, 52.0321219 8.6054609, 52.0473461 8.5908186, 52.0469513 8.5887087, 51.9832360 8.5011688, 52.0231198 8.6053870, 52.0580464 8.6142089, 51.9489161 8.5784781, 52.0005000 8.5830563, 52.0205860 8.5678184, 52.0581150 8.4919573, 52.0312632 8.5407538, 52.0319234 8.5420151, 51.9922699 8.5821902, 52.0462690 8.6409561, 52.0191448 8.5779535, 52.0184508 8.5657079, 51.9986701 8.5845091, 52.0743431 8.6025251, 52.0111171 8.6060838, 52.0754057 8.4694042, 52.0110252 8.6075822, 52.0386901 8.5655696, 52.0318962 8.5656184, 51.9526831 8.5894518, 51.9914877 8.4790051, 51.9478258 8.5866769, 52.0273349 8.5382436, 51.9845111 8.5016418, 52.0542712 8.5439409, 52.0181631 8.5466796, 52.0980842 8.5181968, 52.0949444 8.5198350, 52.0522750 8.5245659, 52.0456077 8.5212121, 52.0419948 8.5160247, 52.0292851 8.5181917, 52.0418895 8.5307595, 52.0327138 8.5227649, 52.0314754 8.5141184, 52.0295337 8.5150115, 52.0157211 8.5484732, 52.0137803 8.5492099, 51.9847361 8.4854709, 51.9859050 8.4877428, 52.0306430 8.5117068, 51.9971967 8.5057650, 51.9934233 8.5091802, 52.0226396 8.5511428, 52.0223364 8.5495579, 52.0233884 8.5519795, 52.0234840 8.5536985, 52.0119814 8.5542137, 52.0265557 8.5458287, 52.0185875 8.5275250, 52.0186597 8.5289951, 51.9475967 8.5920756, 51.9289095 8.5529507, 52.0209783 8.5457695, 52.0294891 8.5129716, 52.0267434 8.4659864, 52.0459901 8.5425345, 52.0682897 8.5224152, 52.0719588 8.5498716, 52.0442328 8.5433584, 52.0113082 8.5270214, 52.0107287 8.5202197, 52.0563214 8.5500007, 52.0094113 8.5265262, 52.0037833 8.5215969, 52.0065591 8.5759589, 51.9891284 8.5001010, 51.9846427 8.5287592, 51.9854958 8.5280680, 51.9843934 8.5268438, 51.9417125 8.5793602, 51.9423426 8.5802746, 51.9600857 8.5281274, 52.0045344 8.5226673, 51.9609763 8.5280751, 52.0048839 8.5221348, 52.0147217 8.5248646, 51.9499358 8.5003082, 51.9568591 8.5479920, 52.0024451 8.5653246, 51.9406388 8.5114804, 52.0017368 8.5684745, 52.0018299 8.5675837, 52.0020334 8.5669169, 51.9906984 8.5078615, 51.9570094 8.5337027, 51.9681157 8.5499373, 52.0005457 8.5605587, 51.9963039 8.4716935, 51.9888194 8.5112622, 52.0205357 8.5287442, 51.9568731 8.5465415, 51.9333689 8.5654391, 52.0112149 8.5297888, 52.0013439 8.5671531, 52.0008115 8.5610395, 52.0926733 8.5329308, 52.0981428 8.5181712, 52.0359476 8.4981338, 52.0104876 8.6080033, 52.0065198 8.5259435, 52.0327367 8.5222372, 52.0719981 8.5498472, 52.0184308 8.5473987, 51.9839295 8.5004598, 51.9932321 8.6110621, 52.0208455 8.5454983, 52.0385624 8.4870408, 52.0946122 8.5195110, 52.0586804 8.5511665, 52.0230297 8.5524206, 52.0307135 8.5117101, 52.0267458 8.4660597, 52.0459428 8.5203701, 52.0207097 8.5292682, 51.9567876 8.5472991, 51.9837555 8.5001033, 52.0111837 8.5268995, 52.0261594 8.5241168, 52.0312156 8.5405749, 52.0272333 8.5379784, 52.0315830 8.5423173, 52.0526516 8.5253445, 52.0106909 8.5203429, 51.9621571 8.4624693, 52.0468920 8.5467931, 52.0186691 8.5656539, 52.0472610 8.5893105, 52.0391035 8.5656780, 52.0315635 8.5657826, 51.9527696 8.6018036, 51.9528793 8.5894680, 51.9717369 8.4582094, 51.9484298 8.5873772, 52.0543651 8.5447212, 51.9487421 8.5784654, 51.9923885 8.5822520, 51.9863326 8.6322964, 52.0010481 8.5831553, 51.9990577 8.5845337, 52.0462874 8.6407281, 52.0579586 8.6142140, 52.0742793 8.6022273, 52.0293357 8.5180617, 52.0206603 8.5676185, 52.0425290 8.5168560, 52.0270594 8.5966793, 52.0323486 8.6056893, 52.0307766 8.6106210, 52.0230896 8.6059771, 52.0500810 8.5586981, 52.0580908 8.4924175, 52.0455684 8.4510738, 52.0421599 8.5307527, 52.0294960 8.5152776, 52.0314045 8.5141317, 52.0586095 8.5515568, 52.0156406 8.5480803, 52.0137807 8.5496365, 52.0556849 8.5374131, 51.9847954 8.4859472, 51.9861104 8.4873591, 52.0308117 8.5117948, 51.9972310 8.5062078, 51.9931065 8.5094547, 52.0114804 8.5539410, 52.0262032 8.6392966, 52.0265579 8.5454510, 52.0150885 8.5416301, 52.0184126 8.5282924, 51.9914510 8.4802500, 51.9415032 8.5795671, 52.0459863 8.5425744, 52.0754750 8.4692456, 52.0679871 8.5225050, 52.0691401 8.4845397, 52.0051550 8.5262181, 52.0039093 8.5212500, 51.9898013 8.5008912, 51.9847292 8.5279845, 51.9842005 8.5139759, 51.9789415 8.5070326, 51.9525819 8.5921145, 51.9285763 8.5528956, 52.0047086 8.5224081, 52.0191169 8.5773881, 51.9603119 8.5285761, 51.9475733 8.5919114, 51.9502642 8.5005356, 51.9568818 8.5332831, 51.9402691 8.5119328, 51.9960941 8.4716263, 51.9884382 8.5106798, 51.9487080 8.5862850, 51.9493095 8.5874506, 51.9483907 8.5883941, 51.9478782 8.5876688, 51.9478908 8.5859766, 51.9482758 8.5858662, 51.9474419 8.5860889, 51.9475824 8.5870706, 52.0104310 8.6074498, 51.9680412 8.5506318, 52.0297068 8.6015894, 51.9862135 8.6337019, 52.0261594 8.5241168, 52.0363421 8.4985163 +48.8382429 2.2578195, 48.8709590 2.3477192, 48.8822577 2.3705521, 48.8469061 2.2850171, 48.8579325 2.3515044, 48.8307271 2.3566617, 48.8676022 2.3623822, 48.8677049 2.3622367, 48.8677682 2.3620989, 48.8654797 2.3747464, 48.8670092 2.3824038, 48.8445017 2.3247331, 48.8259948 2.3570144, 48.8366376 2.3507046, 48.8332031 2.3317979, 48.8738274 2.3848673, 48.8374673 2.2956006, 48.8354775 2.4060799, 48.8206897 2.3639393, 48.8269269 2.3666605, 48.8752761 2.3255792, 48.8756940 2.3269533, 48.8835297 2.3282798, 48.8873012 2.3255264, 48.8593562 2.3461342, 48.8609975 2.3482090, 48.8635373 2.3490562, 48.8514200 2.3437555, 48.8471180 2.3410080, 48.8474500 2.3412160, 48.8430777 2.3636948, 48.8940785 2.3137523, 48.8755989 2.2960624, 48.8728596 2.2990380, 48.8885223 2.3927021, 48.8763139 2.3563480, 48.8833010 2.3854417, 48.8854450 2.2920818, 48.8477882 2.3978367, 48.8656690 2.3706000, 48.8488396 2.2977794, 48.8859856 2.3190545, 48.8471787 2.3866836, 48.8966206 2.3871195, 48.8713129 2.3350843, 48.8760825 2.3441472, 48.8678398 2.2813384, 48.8798267 2.3542435, 48.8799837 2.3538854, 48.8533426 2.4103453, 48.8284080 2.3276636, 48.8290544 2.3276046, 48.8689587 2.3676791, 48.8743099 2.3348778, 48.8789434 2.3780844, 48.8752613 2.3705179, 48.8721385 2.3402693, 48.8977223 2.3441858, 48.8972709 2.3446847, 48.8958920 2.3466158, 48.8825100 2.3378415, 48.8693235 2.3602586, 48.8600406 2.3484986, 48.8272520 2.3064254, 48.8647426 2.3979362, 48.8286719 2.3018801, 48.8370765 2.3521704, 48.8351646 2.3976296, 48.8599854 2.3672407, 48.8710277 2.3356624, 48.8754564 2.3283800, 48.8526719 2.3446864, 48.8751006 2.3400657, 48.8762511 2.3264503, 48.8474749 2.4107917, 48.8490077 2.3495940, 48.8770585 2.3479815, 48.8536307 2.3312600, 48.8816790 2.2888680, 48.8445191 2.3496762, 48.8612245 2.3480050, 48.8602996 2.3436624, 48.8830274 2.3870424, 48.8832752 2.3888891, 48.8589855 2.3540028, 48.8613499 2.3582846, 48.8950228 2.3876904, 48.8612115 2.3668968, 48.8704953 2.3458276, 48.8534957 2.3378664, 48.8618200 2.3730192, 48.8477461 2.3511419, 48.8679678 2.3355626 +St Paul's RC Church, St Ninians, St Andrews Catholic Church, St Margaret and Mary, Saint Margaret's and Saint Leonard's, St Mark's, Holy Cross RC Church, St Margaret's Catholic Church, Church of the Sacred Heart of Jesus, St Columba's, The Parish of St Gregory the Great, Our Lady of Pochaiv and Saint Andrew, St Albert's Catholic Chaplaincy, St Albert's Catholic Chaplaincy +48.8707489 2.3907280, 48.8506016 2.3432743, 48.8459665 2.3500377, 48.8535359 2.3481924, 48.8450745 2.3528309 +yes +Edinburgh Quay, Semple Street, St John's Hill, Edinburgh City Delivery Office, Greenside Place, Sheraton, Princes Exchange, Quartermile, Fountain Park, Castle Terrace, Red Car Park, Blue Car Park, Surgeon's Square, Lochend Close, Waverley Station, Asda Leith Parking, St James Centre, Overflow Car Park - Ocean Terminal, Cruise Liner Terminal, Premier Inn, Car Park E, Car Park B, Car Park D, Car Park C, Car Park F, Car Park A, The Caledonian, John Lewis, Blackfriars Street, Thistle Court, Catalyst Trade Park +no +fuel, post office, bicycle rental, school, restaurant, fire station, parking, post box, police, place of worship, toilets, bank, fountain, parking entrance, hospital, bar, cafe, nightclub, fast food, pub, library, pharmacy, theatre, wine bar, internet cafe, marketplace, bus station, motorcycle parking, cinema, telephone, vending machine, recycling, public building, arts centre, atm, bicycle parking, nursery, swimming pool, doctors, drinking water, taxi, car sharing, veterinary, bench, community centre, car rental, kindergarten, photo lab, bureau de change, videoclub, childcare, clock, waste basket, embassy, social facility, ice cream, townhall, university, ferry terminal, billboard, gallery, college, creche, job centre, driving school, conference centre, mode, association, administration, medical centre, studio, shelter, shower, luggage locker, public office, dancing school, podologist, laboratory, gym, storage, youth centre, money transfer, coworking space, oil, car wash, clinic, food court, parking space, publisher, teahouse, social centre, orthopedic, podiatrist, couture, sports club, radiology, spa, job center, hammam, dentist, nursing home, jobcentre, healthcare, charging station, vehicle inspection, shooting stand, hotel, music school, physiotherapy, vehicle impound, nusery, personal service, courthouse, fitness center, photo booth, fablab, medical laboratory, shisha, cash machine, shisha bar, yes, validateur, lift, photobooth, table, animal boarding, mall, training, authority, hospice, small parking, monastery, basin, convention center, waste disposal, bandstand, prison, retirement home, sports centre, events venue, wall, zen zone +37.7500651 -122.4340964, 37.7494950 -122.4338475, 37.7481784 -122.4318047, 37.7482870 -122.4317704, 37.7879001 -122.4032530, 37.7879882 -122.4037767, 37.7876404 -122.4065068, 37.7873775 -122.4085239, 37.7869825 -122.4117339, 37.7868400 -122.4132360, 37.7867454 -122.4133988, 37.7865280 -122.4151500, 37.7863839 -122.4147044, 37.8074857 -122.4122331, 37.8065738 -122.4141681, 37.7858381 -122.4208295, 37.7860823 -122.4213101, 37.7858443 -122.4215600, 37.8058156 -122.4201928, 37.8061825 -122.4173877, 37.8050741 -122.4248113, 37.8049424 -122.4251017, 37.8047238 -122.4253684, 37.8049272 -122.4254027, 37.8053138 -122.4240294, 37.8024234 -122.4249055, 37.8002533 -122.4244764, 37.7986934 -122.4241845, 37.7964948 -122.4237345, 37.7949360 -122.4234292, 37.7914294 -122.4227083, 37.7873203 -122.4218983, 37.7872205 -122.4163915, 37.7873494 -122.4149152, 37.7874377 -122.4147865, 37.7878071 -122.4133072, 37.7876377 -122.4131357, 37.7878614 -122.4114361, 37.7883158 -122.4080030, 37.7885668 -122.4059259, 37.7894553 -122.4072305, 37.7892383 -122.4089471, 37.7890348 -122.4105779, 37.7888245 -122.4122344, 37.7887296 -122.4136334, 37.7886349 -122.4137618, 37.7882480 -122.4150753, 37.7884387 -122.4153902, 37.7882006 -122.4170495, 37.7936864 -122.4231765, 37.7895224 -122.4223268, 37.8077705 -122.4105938, 37.7858278 -122.4058393, 37.7866147 -122.4049381, 37.7864654 -122.4047321, 37.7874083 -122.4036077, 37.7879204 -122.4029268, 37.7885919 -122.4024548, 37.7884698 -122.4023003, 37.7894632 -122.4012427, 37.7904738 -122.3996977, 37.7909147 -122.3992085, 37.7912199 -122.3990282, 37.7915447 -122.3981096, 37.7919524 -122.3981442, 37.7926895 -122.3975313, 37.7925538 -122.3970849, 37.7942766 -122.3948018, 37.7920324 -122.3977043, 37.7944131 -122.3950607, 37.8075184 -122.4123666, 37.8065215 -122.4134910, 37.8059994 -122.4172590, 37.8056529 -122.4205190, 37.8054155 -122.4221927, 37.8052527 -122.4234200, 37.8051442 -122.4236947, 37.8044396 -122.4250053, 37.8025001 -122.4246362, 37.8006419 -122.4242586, 37.7984038 -122.4237608, 37.7960775 -122.4233316, 37.7940496 -122.4227651, 37.7942082 -122.4229370, 37.7923946 -122.4225591, 37.7913958 -122.4222349, 37.8056122 -122.4218837, 37.7992825 -122.4189061, 37.7991130 -122.4192065, 37.7955320 -122.4181508, 37.7945850 -122.4183350, 37.7946664 -122.4163695, 37.7938050 -122.4096919, 37.7930318 -122.4092112, 37.7853492 -122.4055185, 37.7843469 -122.4045150, 37.7846454 -122.4039142, 37.7847539 -122.4037597, 37.7842316 -122.4041030, 37.7835261 -122.4025151, 37.7829902 -122.4025495, 37.7821627 -122.4008414, 37.7818193 -122.4010039, 37.7806363 -122.3999660, 37.7784384 -122.3966529, 37.7781331 -122.3964297, 37.7771698 -122.3952195, 37.7769255 -122.3950736, 37.7772943 -122.3949229, 37.7772672 -122.3946225, 37.7777963 -122.3939702, 37.7768533 -122.3945023, 37.7755323 -122.3971419, 37.7764838 -122.3985209, 37.7761242 -122.4022631, 37.7779104 -122.4000014, 37.7793078 -122.4020012, 37.7789483 -122.4020957, 37.7771439 -122.4044132, 37.7757191 -122.4064044, 37.7754274 -122.4065417, 37.7739280 -122.4084815, 37.7724490 -122.4103612, 37.7708168 -122.4125663, 37.7703632 -122.4123180, 37.7716591 -122.4138973, 37.7719508 -122.4138029, 37.7721001 -122.4141720, 37.7729006 -122.4154423, 37.7733145 -122.4156912, 37.7741303 -122.4169989, 37.7741981 -122.4173765, 37.7752700 -122.4184494, 37.7754464 -122.4183893, 37.7757381 -122.4191960, 37.7754939 -122.4189385, 37.7736011 -122.4186209, 37.7782225 -122.4194551, 37.7786688 -122.4197882, 37.7798628 -122.4200286, 37.7799849 -122.4198998, 37.7821995 -122.4204866, 37.7828778 -122.4204179, 37.7830062 -122.4205011, 37.7830848 -122.4206947, 37.7849708 -122.4210499, 37.7889845 -122.4026340, 37.7901947 -122.4014023, 37.7896588 -122.4037282, 37.7897402 -122.4049985, 37.7863305 -122.4167890, 37.7861298 -122.4184176, 37.7855735 -122.4228551, 37.7854718 -122.4252669, 37.7851733 -122.4278504, 37.7847663 -122.4281594, 37.7843186 -122.4315412, 37.7848206 -122.4309318, 37.7844196 -122.4328463, 37.7843178 -122.4330266, 37.7845281 -122.4332841, 37.7840872 -122.4333871, 37.7835504 -122.4375282, 37.7839167 -122.4376655, 37.7834826 -122.4392963, 37.7836386 -122.4394164, 37.7831231 -122.4396482, 37.7829535 -122.4395280, 37.7828042 -122.4423433, 37.7829874 -122.4431329, 37.7827913 -122.4458030, 37.7827599 -122.4459811, 37.7823299 -122.4459653, 37.7825329 -122.4467635, 37.7820784 -122.4472957, 37.7820558 -122.4476543, 37.7821802 -122.4476390, 37.7820053 -122.4498532, 37.7822868 -122.4499499, 37.7818988 -122.4530106, 37.7815563 -122.4534053, 37.7798354 -122.4931351, 37.7799168 -122.4934183, 37.7794962 -122.4932037, 37.7794826 -122.4933926, 37.7798191 -122.4936557, 37.7795573 -122.4935814, 37.7799507 -122.4932381, 37.7796794 -122.4963537, 37.7794148 -122.4967056, 37.7792724 -122.4998814, 37.7796794 -122.5028254, 37.7791570 -122.5025164, 37.7798610 -122.5049869, 37.7797389 -122.5052873, 37.7800577 -122.5076563, 37.7798949 -122.5074503, 37.7799221 -122.5099050, 37.7797796 -122.5096304, 37.7791216 -122.5094930, 37.7756617 -122.5003177, 37.7754785 -122.5007383, 37.7754989 -122.5035793, 37.7753293 -122.5039398, 37.7751597 -122.5057852, 37.7750986 -122.5059311, 37.7891981 -122.4152653, 37.7893134 -122.4150078, 37.7910097 -122.4156423, 37.7922029 -122.4157974, 37.7924132 -122.4141495, 37.7927048 -122.4118492, 37.7934544 -122.4078526, 37.7932474 -122.4075663, 37.7934120 -122.4063181, 37.7936086 -122.4047989, 37.7938053 -122.4031510, 37.8070654 -122.4103449, 37.8068551 -122.4106453, 37.8066448 -122.4120271, 37.8065364 -122.4122160, 37.8050377 -122.4118813, 37.8047668 -122.4116465, 37.8027867 -122.4114233, 37.8006774 -122.4105478, 37.8004101 -122.4099889, 37.8002162 -122.4105649, 37.8004332 -122.4105306, 37.7991379 -122.4088569, 37.7992532 -122.4090286, 37.7991922 -122.4087624, 37.7993480 -122.4086509, 37.7971439 -122.4085909, 37.7967709 -122.4082646, 37.7962894 -122.4082732, 37.7953670 -122.4082476, 37.7937799 -122.4077582, 37.8063855 -122.4232325, 37.8036726 -122.4232484, 37.8035574 -122.4233771, 37.8016788 -122.4230252, 37.8014415 -122.4228020, 37.7989229 -122.4224728, 37.7987940 -122.4226445, 37.7986719 -122.4225157, 37.7990178 -122.4223012, 37.7977224 -122.4220351, 37.7970239 -122.4220608, 37.7962210 -122.4217512, 37.7957734 -122.4218285, 37.7952240 -122.4215366, 37.7951087 -122.4214336, 37.7949934 -122.4212963, 37.7942338 -122.4212620, 37.7934741 -122.4211933, 37.7931961 -122.4213478, 37.7923618 -122.4206697, 37.7919217 -122.4210500, 37.7915343 -122.4211418, 37.7908357 -122.4206440, 37.7907543 -122.4207813, 37.7894452 -122.4205410, 37.7895062 -122.4203951, 37.7877969 -122.4203780, 37.7878987 -122.4202148, 37.7879258 -122.4200518, 37.7865827 -122.4199745, 37.7867116 -122.4198114, 37.7868068 -122.4194985, 37.7850972 -122.4196741, 37.8073496 -122.4079591, 37.8072682 -122.4075728, 37.8022905 -122.4029208, 37.8014157 -122.4027320, 37.7996185 -122.4023972, 37.7977263 -122.4020024, 37.7947114 -122.4015355, 37.7951558 -122.4014788, 37.7946810 -122.4013501, 37.7926335 -122.3958328, 37.7943350 -122.3945488, 37.7932952 -122.3934198, 37.7924067 -122.3943554, 37.7919997 -122.3948618, 37.7910162 -122.3961063, 37.7901209 -122.3969646, 37.7899445 -122.3975054, 37.7878245 -122.4001786, 37.7878381 -122.3998524, 37.7864031 -122.4017275, 37.7861318 -122.4023197, 37.7829558 -122.4066225, 37.7827998 -122.4067084, 37.7825217 -122.4068886, 37.7825488 -122.4065625, 37.7823996 -122.4070345, 37.7811378 -122.4083649, 37.7808122 -122.4090258, 37.7793876 -122.4105793, 37.7790281 -122.4113003, 37.7775322 -122.4128952, 37.7771862 -122.4129896, 37.7773219 -122.4134703, 37.7764060 -122.4143114, 37.7761075 -122.4150066, 37.7727900 -122.4191952, 37.7731428 -122.4182596, 37.7703747 -122.4197788, 37.7707614 -122.4203453, 37.7680204 -122.4200621, 37.7670705 -122.4197531, 37.7663920 -122.4198732, 37.7653010 -122.4195354, 37.7651503 -122.4193840, 37.7649400 -122.4199505, 37.7648246 -122.4197531, 37.7618662 -122.4197445, 37.7620562 -122.4192896, 37.7616287 -122.4194612, 37.7605363 -122.4191351, 37.7600545 -122.4193153, 37.7584056 -122.4191522, 37.7589009 -122.4189892, 37.7573130 -122.4188433, 37.7568991 -122.4189892, 37.7557658 -122.4186802, 37.7551890 -122.4188518, 37.7541440 -122.4185343, 37.7535875 -122.4186630, 37.7524610 -122.4183540, 37.7523117 -122.4181566, 37.7521692 -122.4186716, 37.7520334 -122.4185343, 37.7494003 -122.4180794, 37.7490202 -122.4178648, 37.7488845 -122.4182253, 37.7482533 -122.4186802, 37.7468756 -122.4191608, 37.7469774 -122.4188862, 37.7452468 -122.4202165, 37.7702405 -122.4456788, 37.7815477 -122.4557681, 37.7812324 -122.4564824, 37.7814265 -122.4586356, 37.7811374 -122.4585605, 37.7810466 -122.4587536, 37.7815096 -122.4590144, 37.7813234 -122.4609038, 37.7810177 -122.4612687, 37.7811823 -122.4641071, 37.7807956 -122.4641973, 37.7807845 -122.4643617, 37.7808764 -122.4644255, 37.7807541 -122.4671566, 37.7809983 -122.4678003, 37.7808931 -122.4704703, 37.7805778 -122.4708931, 37.7810594 -122.4721634, 37.7803132 -122.4724209, 37.7804958 -122.4725340, 37.7807715 -122.4726936, 37.7806388 -122.4759657, 37.7803132 -122.4764378, 37.7804922 -122.4791912, 37.7801791 -122.4795855, 37.7800298 -122.4827784, 37.7798738 -122.4845980, 37.7803080 -122.4848555, 37.7802469 -122.4845465, 37.7799349 -122.4849328, 37.7801045 -122.4877394, 37.7797924 -122.4881085, 37.7800027 -122.4899024, 37.7796974 -122.4902800, 37.7795957 -122.4919966, 37.7799552 -122.4923228, 37.7850328 -122.4240337, 37.7846530 -122.4214931, 37.7845512 -122.4213300, 37.7850919 -122.4181325, 37.7850396 -122.4177938, 37.7853788 -122.4158712, 37.7854466 -122.4144979, 37.7855823 -122.4142146, 37.7858650 -122.4121391, 37.7860368 -122.4097600, 37.7863556 -122.4081893, 37.7866812 -122.4056144, 37.7870169 -122.4179793, 37.7866235 -122.4210522, 37.7861695 -122.4245155, 37.7859114 -122.4264595, 37.7857487 -122.4278070, 37.7867524 -122.4285794, 37.7866167 -122.4285538, 37.7864675 -122.4297640, 37.7865965 -122.4297039, 37.7861826 -122.4330771, 37.7860469 -122.4330340, 37.7859385 -122.4331370, 37.7858910 -122.4333344, 37.7859723 -122.4346907, 37.7857893 -122.4350941, 37.7855452 -122.4380551, 37.7853687 -122.4384070, 37.7852332 -122.4395228, 37.7852534 -122.4393683, 37.7853485 -122.4396517, 37.7854773 -122.4398147, 37.7850228 -122.4399262, 37.7849142 -122.4430247, 37.7847380 -122.4433766, 37.7844192 -122.4458487, 37.7841884 -122.4463035, 37.7846498 -122.4461747, 37.7864066 -122.4400121, 37.7826267 -122.4209352, 37.7821927 -122.4192077, 37.7831831 -122.4189845, 37.7830542 -122.4189502, 37.7833323 -122.4177486, 37.7831356 -122.4174224, 37.7832848 -122.4172336, 37.7834951 -122.4156457, 37.7837190 -122.4139463, 37.7839225 -122.4123155, 37.7333439 -122.4341146, 37.7336018 -122.4339773, 37.7333778 -122.4337627, 37.7306904 -122.4313129, 37.7285513 -122.4313423, 37.7286056 -122.4315569, 37.7287414 -122.4310075, 37.7285928 -122.4310211, 37.7164063 -122.4407726, 37.7162841 -122.4412790, 37.7147304 -122.4426465, 37.7296110 -122.4331926, 37.7261179 -122.4335362, 37.7725629 -122.4271208, 37.7724886 -122.4271971, 37.7727613 -122.4255587, 37.7728240 -122.4254941, 37.7750096 -122.4193518, 37.7752830 -122.4191695, 37.7237397 -122.4527763, 37.8026615 -122.4058342, 37.7602500 -122.4381220, 37.8000731 -122.4427175, 37.8000773 -122.4429777, 37.8002766 -122.4410592, 37.8001123 -122.4413201, 37.7998569 -122.4443992, 37.7991938 -122.4517479, 37.7982490 -122.4474040, 37.7938960 -122.3962630, 37.7350442 -122.4750296, 37.7348192 -122.4745190, 37.7348959 -122.4718603, 37.7826712 -122.4715165, 37.7900779 -122.3973324, 37.8063946 -122.4755980, 37.8066743 -122.4754598, 37.8073122 -122.4750992, 37.8077451 -122.4747013, 37.7985742 -122.4470382, 37.8003316 -122.4468364, 37.8015284 -122.4299080, 37.8163406 -122.3719841, 37.8159189 -122.3712035, 37.8198117 -122.3663991, 37.8240897 -122.3725534, 37.8217995 -122.3675153, 37.8251277 -122.3701037, 37.8251958 -122.3698336, 37.8282634 -122.3718811, 37.8298005 -122.3733581, 37.7698835 -122.4483879, 37.7696842 -122.4487848, 37.7734369 -122.4495198, 37.7736095 -122.4491588, 37.7759209 -122.4462621, 37.7754086 -122.4499596, 37.7753704 -122.4494447, 37.7750352 -122.4531023, 37.7749600 -122.4525772, 37.7744927 -122.4582852, 37.7742595 -122.4580599, 37.7743273 -122.4587090, 37.7752263 -122.4651517, 37.7770368 -122.4639232, 37.8051033 -122.4322388, 37.8070241 -122.4071695, 37.7268052 -122.4756978, 37.7270758 -122.4757595, 37.7273213 -122.4751556, 37.7767196 -122.4262286, 37.7877082 -122.4066920, 37.7877749 -122.4435048, 37.7875969 -122.4435646, 37.7853936 -122.4093312, 37.7621911 -122.4352428, 37.7623119 -122.4350524, 37.7624107 -122.4359472, 37.7623663 -122.4355805, 37.7624148 -122.4374826, 37.7628952 -122.4350231, 37.7638864 -122.4332716, 37.7639457 -122.4336524, 37.7677871 -122.4291506, 37.7676579 -122.4291238, 37.7672427 -122.4291913, 37.7678942 -122.4291010, 37.7672911 -122.4288313, 37.7678572 -122.4287240, 37.7882810 -122.4034650, 37.7920316 -122.4158514, 37.7890998 -122.4166329, 37.7929197 -122.4160112, 37.7956283 -122.4167948, 37.7623781 -122.3973643, 37.7659491 -122.4499203, 37.7777491 -122.4166993, 37.7784932 -122.4145772, 37.7996086 -122.4360904, 37.7997022 -122.4362285, 37.7995695 -122.4391803, 37.8004874 -122.4475303, 37.7990605 -122.4430620, 37.7999719 -122.4359078, 37.7988819 -122.4428431, 37.8006033 -122.4309704, 37.7993017 -122.4395074, 37.7920664 -122.4230774, 37.7939521 -122.4233809, 37.7984888 -122.4242871, 37.7228751 -122.4492993, 37.7843417 -122.4083799, 37.7732193 -122.5094719, 37.7730526 -122.5100823, 37.7713376 -122.5094780, 37.7730623 -122.5099524, 37.7736359 -122.5098469, 37.7510820 -122.4365124, 37.7902660 -122.4225849, 37.7809200 -122.4207186, 37.7734715 -122.4716467, 37.7732222 -122.4720004, 37.7767410 -122.4722999, 37.7845288 -122.4729578, 37.7730544 -122.4719870, 37.7769513 -122.4723886, 37.7765902 -122.4721548, 37.7843461 -122.4727748, 37.7733124 -122.4719545, 37.7824738 -122.4731577, 37.7772126 -122.4718860, 37.7846952 -122.4724611, 37.7842309 -122.4726881, 37.7653711 -122.4768439, 37.7637253 -122.4773406, 37.7651265 -122.4774410, 37.7651763 -122.4771473, 37.7655195 -122.4775619, 37.7981369 -122.4040437, 37.7984038 -122.4019150, 37.7864698 -122.3980058, 37.7898678 -122.4007776, 37.7846489 -122.4070405, 37.7841266 -122.4084047, 37.7559775 -122.4764013, 37.7601283 -122.4767065, 37.7483732 -122.4761739, 37.7599874 -122.4769846, 37.7526487 -122.4761825, 37.7487336 -122.4758329, 37.7562359 -122.4767119, 37.7503718 -122.4760331, 37.7451990 -122.4756672, 37.7464646 -122.4760287, 37.7540793 -122.4765228, 37.7502718 -122.4762798, 37.7485093 -122.4758701, 37.7485547 -122.4762718, 37.7521106 -122.4764229, 37.7577989 -122.4768064, 37.7450879 -122.4759346, 37.7466328 -122.4757654, 37.7578031 -122.4765444, 37.7540943 -122.4762690, 37.7373068 -122.4751533, 37.7271849 -122.4746491, 37.7413368 -122.4756969, 37.7414759 -122.4754270, 37.7391897 -122.4752419, 37.7309279 -122.4747158, 37.7433289 -122.4758221, 37.7263033 -122.4752117, 37.7433139 -122.4754986, 37.7391607 -122.4755616, 37.7376007 -122.4754212, 37.7311504 -122.4746276, 37.7310304 -122.4745228, 37.7312595 -122.4750192, 37.7216548 -122.4754813, 37.7173134 -122.4730047, 37.7645489 -122.4431699, 37.7774736 -122.4588050, 37.7769033 -122.4586521, 37.7771471 -122.4583141, 37.7693989 -122.4293944, 37.7934341 -122.3952982, 37.7860637 -122.4568864, 37.7875574 -122.4467799, 37.7875773 -122.4469696, 37.7865288 -122.4532785, 37.7879454 -122.4407257, 37.7862633 -122.4553541, 37.7863128 -122.4536142, 37.7846320 -122.4644747, 37.7869618 -122.4499244, 37.7871212 -122.4472522, 37.7856633 -122.4588196, 37.7881142 -122.4408796, 37.7508325 -122.4439701, 37.7511656 -122.4385830, 37.7471736 -122.4441832, 37.7704174 -122.4452853, 37.7741217 -122.4463069, 37.7757135 -122.4466914, 37.7669041 -122.4479460, 37.7700367 -122.4454051, 37.7673187 -122.4464799, 37.7739565 -122.4465032, 37.7702021 -122.4449433, 37.7788494 -122.4469825, 37.7672489 -122.4466451, 37.7718076 -122.4457938, 37.7719176 -122.4456066, 37.7756581 -122.4463390, 37.7785087 -122.4472714, 37.7671329 -122.4465199, 37.7786914 -122.4474453, 37.7774219 -122.4469247, 37.7670424 -122.4462687, 37.7670868 -122.4479048, 37.7739120 -122.4458712, 37.7675684 -122.4448406, 37.7787954 -122.4472048, 37.7673422 -122.4448799, 37.7146481 -122.4719381, 37.7244830 -122.4024083, 37.7169648 -122.3891600, 37.8014600 -122.4315507, 37.8015624 -122.4313898, 37.7352745 -122.5045674, 37.7351796 -122.5004996, 37.7352755 -122.5026037, 37.7098977 -122.3930198, 37.7167597 -122.4413933, 37.7165622 -122.4408255, 37.7324082 -122.4059021, 37.7293737 -122.4150047, 37.7692570 -122.4291174, 37.7291475 -122.4193716, 37.7339634 -122.3907499, 37.7343056 -122.3907340, 37.8269448 -122.3774052, 37.8219781 -122.3678899, 37.8183698 -122.3702624, 37.8299019 -122.3752682, 37.8283168 -122.3771872, 37.7900667 -122.3942010, 37.7904673 -122.3932275, 37.7885774 -122.3909566, 37.7899382 -122.3923940, 37.7892706 -122.3935798, 37.8199566 -122.3664933, 37.8231753 -122.3748357, 37.8241714 -122.3754505, 37.7485022 -122.4589160, 37.7467379 -122.4583284, 37.7689281 -122.4356947, 37.7721358 -122.4307953, 37.7720055 -122.4303556, 37.7722134 -122.4305711, 37.7720894 -122.4301052, 37.7920140 -122.4815698, 37.7378001 -122.4514647, 37.7377651 -122.4517551, 37.7716459 -122.5036197, 37.7535905 -122.4954095, 37.7532925 -122.4955658, 37.7607702 -122.4960244, 37.7844955 -122.3952726, 37.7628573 -122.3908626, 37.7877434 -122.4216333, 37.7587055 -122.4631292, 37.7585995 -122.4640519, 37.7584595 -122.4639124, 37.7582899 -122.4638427, 37.7605076 -122.4406247, 8.5077722 125.9789017, 37.7240697 -122.4522341, 37.7259918 -122.4522582, 37.7240485 -122.4524859, 37.7254488 -122.4525023, 37.7208496 -122.4474323, 37.7211045 -122.4473020, 37.7345842 -122.4719275, 37.7675843 -122.4355739, 37.7730240 -122.4528432, 37.7732066 -122.4524004, 37.8056765 -122.4371753, 37.7791532 -122.5129411, 37.7653828 -122.4156514, 37.7655458 -122.4128777, 37.7758058 -122.4971516, 37.7770300 -122.4640939, 37.7771635 -122.4636541, 37.7773038 -122.4642640, 37.7811799 -122.4122670, 37.7901405 -122.3932844, 37.7897441 -122.3935526, 37.7900769 -122.3938342, 37.7900303 -122.3929249, 37.7898479 -122.3929436, 37.7900153 -122.3936678, 37.7902698 -122.3932093, 37.7897844 -122.3938369, 37.7896339 -122.3928472, 37.7895788 -122.3933326, 37.7902549 -122.3935874, 37.7896742 -122.3936921, 37.7899687 -122.3930777, 37.7898459 -122.3936974, 37.7901977 -122.3934346, 37.7895215 -122.3929732, 37.7645161 -122.4327886, 37.7774211 -122.4160269, 37.7646988 -122.4244233, 37.7517598 -122.4254173, 37.7518770 -122.4255434, 37.7518932 -122.4231645, 37.7520190 -122.4226923, 37.7520780 -122.4202115, 37.7521821 -122.4204097, 37.7846325 -122.4668493, 37.7848927 -122.4647404, 37.7847936 -122.4669432, 37.7848461 -122.4651260, 37.7850597 -122.4648309, 37.7687493 -122.4030378, 37.7661987 -122.4028340, 37.7698985 -122.4034375, 37.7664574 -122.4026543, 37.7674763 -122.4028943, 37.7685627 -122.4028608, 37.7672368 -122.4026933, 37.7697585 -122.4032336, 37.7933155 -122.4011185, 37.7940361 -122.4014297, 37.7948174 -122.4012457, 37.7937309 -122.4011453, 37.7941718 -122.4012902, 37.7953841 -122.3969718, 37.7945999 -122.4030014, 37.7951679 -122.3989406, 37.7946423 -122.4047127, 37.7943922 -122.4045947, 37.7945109 -122.3977014, 37.7957783 -122.4035808, 37.7932052 -122.4012151, 37.7941845 -122.4002602, 37.7409957 -122.4661951, 37.7412300 -122.4662434, 37.7420207 -122.4942784, 37.7423984 -122.4946065, 37.7481450 -122.4139340, 37.7485740 -122.4136090, 37.7483690 -122.4140740, 37.7470478 -122.4135113, 37.8015930 -122.4295070, 37.7693241 -122.4529187, 37.7691502 -122.4531333, 37.7779590 -122.4382840, 37.7486563 -122.4707231, 37.7779013 -122.4381208, 37.7488826 -122.4686623, 37.7490207 -122.4684000, 37.7764755 -122.4261860, 37.7624054 -122.4149348, 37.7985693 -122.4243300, 37.7452070 -122.4133817, 37.7988554 -122.4523659, 8.5070910 125.9786762, 37.7229652 -122.4525001, 37.7237354 -122.4562527, 37.7479625 -122.4589779, 37.7316164 -122.4533024, 37.7236887 -122.4560891, 37.7585862 -122.4660394, 37.7583654 -122.4701243, 37.7340666 -122.4990233, 37.7339718 -122.4968714, 37.7368504 -122.4537673, 37.7729932 -122.4769430, 37.7728380 -122.4764588, 37.7748147 -122.4548948, 37.7767640 -122.4757735, 37.7766315 -122.4760914, 37.7655815 -122.4152362, 37.7650043 -122.4193576, 37.7652037 -122.4161172, 37.7618958 -122.4151034, 37.7650786 -122.4153876, 37.7337604 -122.4934171, 37.7339214 -122.4896757, 37.7338345 -122.4917168, 37.7869084 -122.4565151, 37.7529699 -122.4341555, 37.7316291 -122.4513250, 37.7299803 -122.4512285, 37.7314275 -122.4532403, 37.8082789 -122.4141009, 37.7693980 -122.4521124, 37.7734254 -122.4663049, 37.8005296 -122.4475648, 37.7997086 -122.4362667, 37.8008427 -122.4276089, 37.7881551 -122.4090877, 37.7904499 -122.4055375, 37.7927644 -122.3927085, 37.8084123 -122.4100480, 37.8071167 -122.4156479, 37.8004525 -122.4105821, 37.7950657 -122.3999088, 37.7874729 -122.4078678, 37.7857365 -122.4096385, 37.7800009 -122.4167733, 37.8167937 -122.3722982, 37.7761697 -122.4215410, 37.7745791 -122.4341180, 37.7936998 -122.4213961, 37.7707344 -122.4660864, 37.8020728 -122.4125753, 37.7902111 -122.4076489, 37.7899758 -122.4071611, 21.4076261 -77.8795289, 37.7763563 -122.3958020, 37.7844521 -122.4711623, 37.7846142 -122.4708404, 37.7818385 -122.4923290, 37.7834186 -122.4924440, 37.7836006 -122.4901440, 37.7836650 -122.4884266, 37.7839554 -122.4820021, 37.7837954 -122.4853763, 37.7840959 -122.4787941, 37.7929233 -122.4178901, 37.7814696 -122.4933616, 37.7834210 -122.4925857, 37.7837098 -122.4905627, 37.7838163 -122.4880702, 37.7839687 -122.4848702, 37.7841139 -122.4816301, 37.7818213 -122.4924756, 37.7815116 -122.4935222, 37.7716631 -122.4016977, 37.7980264 -122.4502029 +27 +48.7701846 9.1396353, 48.7276835 9.1087426, 48.7294246 9.1656576, 48.7809227 9.1806028, 48.7273902 9.1117501, 48.7645889 9.1733372, 48.8176857 9.2487742, 48.8334775 9.1794198, 48.7276867 9.1024524, 48.7829242 9.2062334, 48.7646171 9.1434123, 48.7312314 9.1274441, 48.7363026 9.1093466, 48.8154007 9.1200702, 48.8045414 9.1778666, 48.7223376 9.1573845, 48.7240693 9.1930107, 48.7005838 9.2090522, 48.8297902 9.1944334, 48.7381037 9.1020154, 48.7443115 9.1090715 +48.7156317 8.2268140, 48.7913607 8.1911997, 48.7290336 8.1554927, 48.7522067 8.2485351, 48.7535173 8.2447141, 48.7677441 8.2305067, 48.7769422 8.2549352, 48.7464556 8.2066346, 48.7981271 8.1679392, 48.7074798 8.3199480, 48.7386713 8.2896820, 48.7778355 8.1869501, 48.7074212 8.2330668, 48.7784092 8.1874412 +1 +133 +no +48.8489454 2.2753957, 48.8631204 2.2959928, 48.8295614 2.3220688, 48.8290722 2.3230781, 48.8423298 2.3028026, 48.8407876 2.3040494, 48.8451549 2.3019755, 48.8471891 2.3015558, 48.8429709 2.3024401, 48.8285206 2.2733738, 48.8424752 2.3019568, 48.8418283 2.2998841, 48.8439154 2.3068381, 48.8446620 2.3093235, 48.8465947 2.3160230, 48.8404472 2.3046245, 48.8416066 2.3084716, 48.8430491 2.3131144, 48.8432489 2.3126660, 48.8407276 2.3213414, 48.8447967 2.3246227, 48.8521941 2.3306860, 48.8516434 2.3277444, 48.8517487 2.3307914, 48.8453875 2.3686867, 48.8453126 2.3695255, 48.8456772 2.3714536, 48.8446991 2.3642693, 48.8460901 2.3720874, 48.8522029 2.3264371, 48.8421458 2.2990380, 48.8513250 2.3334375, 48.8517725 2.3274517, 48.8614952 2.3146148, 48.8598983 2.3144020, 48.8627959 2.3145027, 48.8514038 2.3013568, 48.8508889 2.3003799, 48.8515520 2.3004186, 48.8308078 2.3185643, 48.8306269 2.3187317, 48.8782918 2.3708065, 48.8397144 2.3019191, 48.8375382 2.2971355, 48.8375549 2.2958212, 48.8277556 2.3350602, 48.8342302 2.3084216, 48.8337381 2.3083597, 48.8577162 2.2801463, 48.8692186 2.3380768, 48.8951906 2.3716079, 48.8488965 2.3721895, 48.8400074 2.3043626, 48.8387638 2.3500744, 48.8514130 2.2915579, 48.8421476 2.3380942, 48.8371927 2.3352257, 48.8436151 2.3388947, 48.8334455 2.3333666, 48.8302224 2.3558903, 48.8311270 2.3568429, 48.8317798 2.3548457, 48.8276307 2.3705268, 48.8280051 2.3709464, 48.8278600 2.3718371, 48.8274045 2.3716705, 48.8292814 2.3691462, 48.8290293 2.3692466, 48.8216733 2.3728996, 48.8214437 2.3696601, 48.8220079 2.3692237, 48.8518092 2.2901250, 48.8417779 2.3558325, 48.8408784 2.3559403, 48.8218716 2.3246518, 48.8376901 2.2820340, 48.8391393 2.2823450, 48.8387215 2.2787139, 48.8364152 2.2781531, 48.8345348 2.3055831, 48.8533525 2.2619231, 48.8475302 2.2576087, 48.8370719 2.2967038, 48.8428790 2.2982280, 48.8764756 2.4075759, 48.8266663 2.3642727, 48.8268069 2.3643956, 48.8267306 2.3419868, 48.8264737 2.3412334, 48.8264236 2.3423158, 48.8536250 2.3437819, 48.8588770 2.4023128, 48.8396998 2.4034172, 48.8598079 2.3768859, 48.8612952 2.3744128, 48.8620613 2.3731116, 48.8636493 2.3704713, 48.8654096 2.3675445, 48.8663455 2.3659468, 48.8196069 2.3594300, 48.8461522 2.3546060, 48.8458450 2.3736979, 48.8457039 2.3733492, 48.8895461 2.3352459, 48.8894531 2.3359432, 48.8273904 2.3050421, 48.8567324 2.3043552, 48.8584379 2.3035340, 48.8548691 2.3054827, 48.8454773 2.2554465, 48.8223316 2.3419720, 48.8775617 2.3941614, 48.8761654 2.3933417, 48.8779414 2.3962154, 48.8756031 2.3951576, 48.8755800 2.3949365, 48.8440426 2.3549543, 48.8438530 2.3548289, 48.8464037 2.3543532, 48.8361988 2.3588368, 48.8361684 2.3591102, 48.8387053 2.3570294, 48.8381693 2.3564318, 48.8929485 2.3159296, 48.8929197 2.3162667, 48.8909941 2.3193302, 48.8911749 2.3179130, 48.8894313 2.3163369, 48.8876223 2.3144223, 48.8874986 2.3253262, 48.8834896 2.3279960, 48.8873787 2.3179072, 48.8862910 2.3187654, 48.8887699 2.3158511, 48.8912420 2.3182656, 48.8918862 2.3180604, 48.8904358 2.3205767, 48.8893469 2.3224626, 48.8893845 2.3221190, 48.8878021 2.3255557, 48.8952747 2.3124246, 48.8948740 2.3126337, 48.8871083 2.3136568, 48.8858524 2.3094045, 48.8849003 2.3065213, 48.8838357 2.3042691, 48.8813537 2.3003856, 48.8775401 2.2986435, 48.8748487 2.2973688, 48.8704345 2.3060391, 48.8366185 2.3104474, 48.8577397 2.3545629, 48.8929348 2.3267686, 48.8931223 2.3281296, 48.8974905 2.3299074, 48.8974156 2.3252188, 48.8922272 2.3240507, 48.8921486 2.3230976, 48.8780205 2.2838377, 48.8781429 2.2805112, 48.8805065 2.2838154, 48.8794920 2.2845803, 48.8815848 2.2853027, 48.8834211 2.2877660, 48.8835995 2.2885119, 48.8859228 2.2916718, 48.8856895 2.2924723, 48.8859435 2.2927942, 48.8863363 2.2929571, 48.8874458 2.2942814, 48.8870051 2.2950089, 48.8865481 2.2962193, 48.8875347 2.2989191, 48.8896933 2.3035707, 48.8896203 2.3026023, 48.8854063 2.2988360, 48.8904213 2.3050920, 48.8944575 2.3142796, 48.8355970 2.3973223, 48.8334019 2.3950589, 48.8342917 2.4003980, 48.8322566 2.3976172, 48.8356048 2.3860649, 48.8390275 2.3886414, 48.8384800 2.3884593, 48.8350607 2.3928884, 48.8511521 2.3437828, 48.8348982 2.3047212, 48.8349768 2.3054600, 48.8325038 2.3563901, 48.8373899 2.3453840, 48.8374797 2.3456195, 48.8379605 2.3456162, 48.8368846 2.3522809, 48.8341040 2.3538359, 48.8280231 2.2728182, 48.8372917 2.3516257, 48.8406075 2.3453776, 48.8415971 2.3434977, 48.8441863 2.3421945, 48.8464783 2.3410545, 48.8500927 2.3434240, 48.8505941 2.3460792, 48.8319357 2.3595832, 48.8372433 2.3905356, 48.8531563 2.2797589, 48.8978630 2.3451130, 48.8973821 2.3234126, 48.8978263 2.3330372, 48.8497208 2.3421402, 48.8498845 2.3425106, 48.8649583 2.3025212, 48.8612284 2.2843342, 48.8612363 2.2837982, 48.8525670 2.3435715, 48.8540489 2.3472499, 48.8651536 2.3438914, 48.8648972 2.3444013, 48.8659762 2.3403632, 48.8700786 2.3390402, 48.8686963 2.3407757, 48.8711062 2.3324548, 48.8655300 2.3432955, 48.8277565 2.3319745, 48.8375896 2.3909693, 48.8647311 2.3455877, 48.8665372 2.3507814, 48.8502691 2.3592646, 48.8580480 2.3480557, 48.8583004 2.3481974, 48.8536627 2.3572222, 48.8561685 2.3573966, 48.8577280 2.3480747, 48.8792548 2.3897570, 48.8601321 2.3565738, 48.8574275 2.3991286, 48.8618401 2.4002194, 48.8614260 2.4001621, 48.8654069 2.3981526, 48.8644101 2.3987377, 48.8529164 2.4061182, 48.8522508 2.4060578, 48.8481835 2.4065736, 48.8480869 2.4062423, 48.8577419 2.3994826, 48.8595686 2.4017103, 48.8592406 2.4024195, 48.8594221 2.4024764, 48.8565434 2.4048103, 48.8559169 2.4049577, 48.8598233 2.3566791, 48.8588131 2.3584686, 48.8552188 2.3613773, 48.8563513 2.3645998, 48.8538981 2.3652524, 48.8534024 2.3684609, 48.8512417 2.3630436, 48.8515266 2.3620585, 48.8522576 2.3663930, 48.8524324 2.3663947, 48.8631921 2.3515058, 48.8628413 2.3530497, 48.8629125 2.3542573, 48.8666488 2.3610364, 48.8652056 2.3568722, 48.8567580 2.3644946, 48.8418157 2.3208197, 48.8421032 2.3593721, 48.8442022 2.4403364, 48.8316687 2.3144509, 48.8319547 2.3138177, 48.8330154 2.3109762, 48.8325273 2.3118658, 48.8307202 2.3195057, 48.8387309 2.3170445, 48.8378977 2.3189435, 48.8323668 2.3205507, 48.8342061 2.3218334, 48.8364800 2.3227216, 48.8380166 2.3228744, 48.8409450 2.3216884, 48.8429348 2.3240148, 48.8430021 2.3236957, 48.8435373 2.3236944, 48.8436885 2.3245680, 48.8422437 2.3289484, 48.8384348 2.3221998, 48.8358029 2.3237262, 48.8365711 2.3231310, 48.8534432 2.3343769, 48.8532439 2.3325237, 48.8493704 2.3375128, 48.8475201 2.3400808, 48.8441246 2.3385444, 48.8509422 2.3268033, 48.8510630 2.3263437, 48.8437235 2.3301587, 48.8451806 2.3320051, 48.8435853 2.3386214, 48.8415167 2.3298708, 48.8415819 2.3295984, 48.8473053 2.3164904, 48.8656756 2.3523315, 48.8814037 2.3577012, 48.8817615 2.3578713, 48.8639328 2.3513569, 48.8811334 2.3575727, 48.8714947 2.3556284, 48.8806709 2.3573534, 48.8808660 2.3574489, 48.8674622 2.3533343, 48.8818055 2.3575890, 48.8610207 2.3497198, 48.8687565 2.3554770, 48.8745399 2.3585970, 48.8657321 2.3545236, 48.8718609 2.3572612, 48.8594617 2.3524229, 48.8574683 2.3506207, 48.8763129 2.3567488, 48.8271528 2.3263805, 48.8237365 2.3272509, 48.8292835 2.3279543, 48.8316710 2.3300535, 48.8722799 2.3214671, 48.8723489 2.3218115, 48.8224556 2.3250401, 48.8320389 2.3253141, 48.8339441 2.3244793, 48.8744183 2.3203899, 48.8742683 2.3200662, 48.8746146 2.3213634, 48.8746827 2.3251473, 48.8754131 2.3259821, 48.8740995 2.3251548, 48.8774036 2.3230566, 48.8770740 2.3232337, 48.8786425 2.3231734, 48.8773191 2.3268758, 48.8828444 2.3270934, 48.8829922 2.3266892, 48.8827827 2.3246677, 48.8828082 2.3263774, 48.8836424 2.3269176, 48.8841578 2.3284710, 48.8843540 2.3287817, 48.8832223 2.3238278, 48.8791123 2.3219277, 48.8791163 2.3221422, 48.8823224 2.3205491, 48.8748626 2.3183567, 48.8749808 2.3105016, 48.8748908 2.3082017, 48.8732638 2.3118620, 48.8734259 2.3101215, 48.8576274 2.3483969, 48.8370231 2.3348031, 48.8349600 2.3328023, 48.8558534 2.3461144, 48.8339844 2.3319418, 48.8400156 2.3364375, 48.8421064 2.3378086, 48.8463611 2.3401536, 48.8681151 2.3102843, 48.8619731 2.3104599, 48.8540110 2.3062926, 48.8724176 2.3147131, 48.8747135 2.3144761, 48.8695776 2.3114383, 48.8543818 2.3060906, 48.8510149 2.3113318, 48.8511473 2.3067123, 48.8603560 2.3102953, 48.8655890 2.3103848, 48.8458299 2.3188069, 48.8568059 2.3093976, 48.8465829 2.3155696, 48.8524922 2.3081057, 48.8546863 2.3062774, 48.8756587 2.3231876, 48.8530184 2.3082152, 48.8443457 2.3227793, 48.8747073 2.3206783, 48.8740382 2.3161279, 48.8743831 2.3230682, 48.8684708 2.3100440, 48.8743575 2.3232911, 48.8694027 2.3099679, 48.8755046 2.3236261, 48.8739179 2.3367122, 48.8807173 2.3570822, 48.8781339 2.3527959, 48.8699225 2.3284051, 48.8683675 2.3095340, 48.8722111 2.3328610, 48.8786035 2.3545591, 48.8704439 2.3315732, 48.8745220 2.3390067, 48.8768811 2.3480086, 48.8694447 2.3257548, 48.8804185 2.3095834, 48.8803381 2.3082693, 48.8791330 2.3036063, 48.8803502 2.3515910, 48.8688506 2.3233456, 48.8704061 2.3238110, 48.8702320 2.3236793, 48.8705097 2.3263591, 48.8725997 2.3308400, 48.8702668 2.3294666, 48.8728818 2.3342641, 48.8721223 2.3306080, 48.8726697 2.3384369, 48.8781343 2.3444339, 48.8766373 2.3413239, 48.8796328 2.3492037, 48.8668906 2.3058767, 48.8683270 2.3090072, 48.8661975 2.3193706, 48.8670618 2.3210303, 48.8681996 2.3130438, 48.8670039 2.3212252, 48.8687132 2.3095178, 48.8666885 2.3204566, 48.8596836 2.3100205, 48.8571033 2.3096039, 48.8651594 2.3102159, 48.8556204 2.3073399, 48.8619770 2.3102113, 48.8442457 2.3223611, 48.8510607 2.3073810, 48.8455842 2.3187473, 48.8508710 2.3112286, 48.8470473 2.3110481, 48.8471541 2.3162252, 48.8325599 2.3247796, 48.8332241 2.3245306, 48.8284741 2.3264674, 48.8273986 2.3268247, 48.8308768 2.3296100, 48.8325965 2.3311370, 48.8349016 2.3330741, 48.8460230 2.3402198, 48.8392162 2.3368280, 48.8394568 2.3371394, 48.8557611 2.3463229, 48.8530751 2.3440672, 48.8677159 2.2995676, 48.8649545 2.3007316, 48.8678007 2.2992453, 48.8726619 2.2959120, 48.8731597 2.2965177, 48.8746311 2.3024124, 48.8738619 2.2969385, 48.8762550 2.3007388, 48.8786860 2.2987411, 48.8780675 2.2972769, 48.8781435 2.2989719, 48.8783783 2.2989441, 48.8869716 2.3323289, 48.8837731 2.3593434, 48.8797404 2.3583417, 48.8805789 2.3615619, 48.8808347 2.3579388, 48.8818122 2.3584802, 48.8810529 2.3579435, 48.8654199 2.3135631, 48.8734879 2.2963998, 48.8652505 2.3135377, 48.8739596 2.2963637, 48.8730816 2.2958401, 48.8734383 2.2965675, 48.8746130 2.2954618, 48.8808680 2.3632201, 48.8808018 2.3646698, 48.8820400 2.3664133, 48.8318269 2.3657386, 48.8314535 2.3659857, 48.8319065 2.3591614, 48.8335312 2.3339521, 48.8653317 2.2948667, 48.8641551 2.2934048, 48.8640141 2.2929862, 48.8640715 2.3010513, 48.8634829 2.2966080, 48.8670224 2.2902399, 48.8666049 2.2896888, 48.8406277 2.3516012, 48.8406796 2.3519557, 48.8386026 2.3501015, 48.8638512 2.2879382, 48.8602887 2.2859058, 48.8280021 2.2979663, 48.8637773 2.2876366, 48.8632498 2.2859288, 48.8726715 2.2940864, 48.8732129 2.2934594, 48.8731760 2.2938072, 48.8726221 2.2943066, 48.8692074 2.2859874, 48.8714154 2.2892192, 48.8717477 2.2846883, 48.8719757 2.2848303, 48.8746030 2.2841611, 48.8743635 2.2840186, 48.8769335 2.2846374, 48.8763467 2.2821327, 48.8639110 2.2913488, 48.8753652 2.2795664, 48.8684369 2.2729766, 48.8683754 2.2732348, 48.8643826 2.2733115, 48.8640077 2.2727886, 48.8636582 2.2771280, 48.8635567 2.2768833, 48.8658220 2.2796478, 48.8657966 2.2794544, 48.8610434 2.2753874, 48.8634542 2.2690299, 48.8766631 2.2836355, 48.8578608 2.2777002, 48.8394041 2.3097189, 48.8411046 2.3138036, 48.8389838 2.3118312, 48.8405805 2.3157055, 48.8400276 2.3147291, 48.8395301 2.3370603, 48.8421574 2.3289683, 48.8396598 2.3612235, 48.8396827 2.3609897, 48.8408283 2.3332010, 48.8431157 2.3641956, 48.8388776 2.3391993, 48.8425206 2.3638998, 48.8404210 2.3341998, 48.8486934 2.3709664, 48.8381830 2.3562021, 48.8521834 2.3696810, 48.8522667 2.3690906, 48.8386517 2.3400077, 48.8434131 2.3641764, 48.8369425 2.3527355, 48.8387033 2.3140244, 48.8386871 2.3167167, 48.8420777 2.3198691, 48.8420412 2.3210967, 48.8410408 2.3163136, 48.8448126 2.3248961, 48.8447160 2.3248023, 48.8419877 2.3208487, 48.8418600 2.3204213, 48.8419832 2.2989207, 48.8372796 2.3192193, 48.8373937 2.3193036, 48.8232096 2.3308259, 48.8262657 2.3045622, 48.8628797 2.3114175, 48.8629640 2.3144329, 48.8760465 2.3442570, 48.8487534 2.3283755, 48.8464655 2.3262412, 48.8526089 2.3335342, 48.8512874 2.3309516, 48.8483289 2.3275562, 48.8523154 2.3313835, 48.8492896 2.3291229, 48.8466349 2.3266773, 48.8512586 2.3306941, 48.8380672 2.3081245, 48.8272119 2.3007929, 48.8369864 2.3070893, 48.8343962 2.3047706, 48.8416848 2.3123439, 48.8288874 2.3013461, 48.8400384 2.3101622, 48.8318739 2.3027278, 48.8390417 2.3002200, 48.8371284 2.3025788, 48.8376950 2.3058614, 48.8370279 2.3060674, 48.8285614 2.3036420, 48.8314345 2.3057638, 48.8557169 2.3311016, 48.8578807 2.3329161, 48.8562652 2.3345020, 48.8583260 2.3336914, 48.8543731 2.3336691, 48.8642974 2.3351767, 48.8641001 2.3349408, 48.8608207 2.3339436, 48.8608081 2.3335569, 48.8921211 2.3353653, 48.8918649 2.3336335, 48.8723241 2.3294239, 48.8699160 2.3327613, 48.8964443 2.3381818, 48.8957201 2.3379375, 48.8723213 2.3297859, 48.8983232 2.3370882, 48.8993452 2.3360266, 48.8972690 2.3380342, 48.8938929 2.3366312, 48.8712151 2.3314439, 48.8950123 2.3372895, 48.8905722 2.3338767, 48.8696870 2.3325395, 48.8908674 2.3318979, 48.8711264 2.3315999, 48.8933179 2.3360748, 48.8732183 2.3278379, 48.8868241 2.3325865, 48.8669825 2.3340214, 48.8850309 2.3302866, 48.8803346 2.3245245, 48.8785356 2.3228814, 48.8713168 2.3312724, 48.8909507 2.3312150, 48.8669605 2.3337144, 48.8981006 2.3370689, 48.8572986 2.2651050, 48.8559722 2.2748659, 48.8523372 2.2763466, 48.8509120 2.2788151, 48.8512031 2.2788694, 48.8752158 2.3247654, 48.8751393 2.3248777, 48.8748983 2.3207146, 48.8750101 2.3266014, 48.8733946 2.3267106, 48.8733100 2.3269826, 48.8753428 2.3254477, 48.8742637 2.3241155, 48.8745153 2.3190057, 48.8744039 2.3267612, 48.8754880 2.3247457, 48.8749427 2.3211954, 48.8737331 2.3279649, 48.8739545 2.3263050, 48.8213104 2.3255367, 48.8500186 2.2725403, 48.8498676 2.2719130, 48.8203251 2.3563923, 48.8205673 2.3510636, 48.8184619 2.3597195, 48.8206776 2.3511207, 48.8201876 2.3561558, 48.8510516 2.2719805, 48.8303062 2.3545891, 48.8325638 2.3549019, 48.8310557 2.3569540, 48.8314583 2.3546834, 48.8315991 2.3564164, 48.8317238 2.3562329, 48.8276673 2.3566761, 48.8259359 2.3572159, 48.8265940 2.3572132, 48.8262338 2.3578419, 48.8280844 2.3567559, 48.8260907 2.3565715, 48.8273996 2.3588259, 48.8275576 2.3589422, 48.8262038 2.3607487, 48.8263012 2.3606389, 48.8277796 2.3279189, 48.8278937 2.3276801, 48.8282540 2.3257415, 48.8279552 2.3261551, 48.8332550 2.3328564, 48.8352162 2.3319409, 48.8337885 2.3314390, 48.8350966 2.3323296, 48.8341579 2.3307400, 48.8362123 2.3272536, 48.8334502 2.3323448, 48.8376639 2.3218418, 48.8361574 2.3270104, 48.8346438 2.3316567, 48.8375281 2.3219176, 48.8304341 2.3336670, 48.8245522 2.3362436, 48.8273064 2.3355232, 48.8243777 2.3359140, 48.8273875 2.3358241, 48.8330280 2.3330639, 48.8214945 2.3342678, 48.8305165 2.3340095, 48.8271553 2.3348523, 48.8491979 2.2878280, 48.8416721 2.2812868, 48.8436980 2.2823501, 48.8470256 2.2859489, 48.8479821 2.2899763, 48.8397005 2.2732897, 48.8435845 2.2822729, 48.8363400 2.2810850, 48.8393595 2.2752352, 48.8492676 2.2911136, 48.8435788 2.2829261, 48.8372963 2.2774666, 48.8407269 2.2962412, 48.8394391 2.2746624, 48.8384288 2.2886314, 48.8399325 2.2724353, 48.8379475 2.2753696, 48.8454419 2.2877545, 48.8391704 2.2913188, 48.8369975 2.2780771, 48.8397939 2.2723995, 48.8342786 2.2908972, 48.8358098 2.2893082, 48.8353597 2.2857456, 48.8385404 2.2990285, 48.8346549 2.2844230, 48.8449576 2.3113153, 48.8355718 2.2930303, 48.8330496 2.2890202, 48.8521144 2.2680241, 48.8389334 2.3507501, 48.8388926 2.3509388, 48.8461796 2.3486258, 48.8462815 2.3510000, 48.8476493 2.3404322, 48.8490884 2.3558926, 48.8462477 2.3487961, 48.8466442 2.3436544, 48.8466940 2.3442107, 48.8467333 2.3519297, 48.8433636 2.3657267, 48.8493095 2.3573406, 48.8444660 2.3637892, 48.8492477 2.3370265, 48.8474868 2.3282896, 48.8435758 2.3654179, 48.8471966 2.3602656, 48.8292321 2.3777240, 48.8405415 2.3696002, 48.8485184 2.3583158, 48.8343173 2.3733707, 48.8485716 2.3320351, 48.8447711 2.3192081, 48.8487637 2.3333068, 48.8339679 2.3731806, 48.8311781 2.3763473, 48.8474523 2.3285202, 48.8405405 2.3699246, 48.8438522 2.3641187, 48.8462495 2.3263016, 48.8301599 2.2956527, 48.8333403 2.2984482, 48.8280306 2.2932205, 48.8300606 2.3768844, 48.8331877 2.2993210, 48.8352328 2.3027334, 48.8352344 2.3031152, 48.8281384 2.2929988, 48.8301319 2.2959205, 48.8322989 2.3024216, 48.8357176 2.3018620, 48.8802511 2.3667774, 48.8489701 2.2751304, 48.8904347 2.3761934, 48.8429219 2.2776049, 48.8460811 2.2778714, 48.8425254 2.2772241, 48.8463741 2.2812307, 48.8400351 2.2781590, 48.8463249 2.2861893, 48.8463476 2.2865098, 48.8449695 2.2898049, 48.8471518 2.2851521, 48.8462601 2.2813813, 48.8433659 2.2937169, 48.8534190 2.2768609, 48.8463939 2.2772344, 48.8437381 2.2980571, 48.8406969 2.2778770, 48.8447996 2.2899924, 48.8490194 2.2819830, 48.8493302 2.2818801, 48.8435904 2.2940483, 48.8549721 2.2958121, 48.8572690 2.3000188, 48.8588607 2.2983780, 48.8574346 2.2994944, 48.8603298 2.2957775, 48.8624334 2.3006635, 48.8627932 2.3020220, 48.8550134 2.2967165, 48.8519760 2.2920058, 48.8530439 2.2933186, 48.8528607 2.2929220, 48.8589615 2.2979188, 48.8425407 2.2858049, 48.8604705 2.2958692, 48.8488093 2.2638756, 48.8565279 2.3020157, 48.8489724 2.3151968, 48.8517297 2.3238113, 48.8558459 2.3027766, 48.8517335 2.3186611, 48.8521091 2.3268205, 48.8496603 2.3227545, 48.8516468 2.3140535, 48.8486274 2.3210606, 48.8524080 2.3088388, 48.8515252 2.3108244, 48.8518368 2.3152799, 48.8512275 2.3262711, 48.8495330 2.3228364, 48.8482503 2.2591719, 48.8845509 2.3603185, 48.8477108 2.2577586, 48.8480143 2.2697472, 48.8476567 2.2729042, 48.8455383 2.2719509, 48.8598612 2.3525854, 48.8780132 2.3711683, 48.8784230 2.3737799, 48.8784006 2.3746677, 48.8787762 2.3780372, 48.8788918 2.3779824, 48.8787848 2.3743924, 48.8786876 2.3742462, 48.8858628 2.2922220, 48.8450647 2.2711737, 48.8434133 2.2604555, 48.8448777 2.2574386, 48.8421412 2.2558818, 48.8421354 2.2561542, 48.8394476 2.2619627, 48.8387775 2.2623653, 48.8399328 2.2627890, 48.8404894 2.2643470, 48.8431143 2.2692014, 48.8358949 2.3858274, 48.8868781 2.3613097, 48.8898844 2.3634601, 48.8633742 2.4097586, 48.8574854 2.3489236, 48.8380099 2.2561218, 48.8382652 2.2581065, 48.8375152 2.2564004, 48.8372504 2.2588300, 48.8255859 2.3018853, 48.8525109 2.3463681, 48.8763078 2.3580926, 48.8758789 2.3579712, 48.8760364 2.3579845, 48.8761843 2.3586622, 48.8622556 2.3254741, 48.8226432 2.3472363, 48.8493215 2.3553775, 48.8493863 2.3538113, 48.8438142 2.3421649, 48.8468550 2.2580592, 48.8450296 2.2572265, 48.8471550 2.2582168, 48.8470125 2.2585617, 48.8482929 2.2600704, 48.8569785 2.3044705, 48.8242957 2.3399434, 48.8615529 2.3148677, 48.8620416 2.3343608, 48.8602936 2.3272306, 48.8711059 2.3322241, 48.8712950 2.3325295, 48.8441144 2.4416221, 48.8656246 2.3201947, 48.8728489 2.3318466, 48.8838676 2.3225552, 48.8810552 2.3243998, 48.8757854 2.3237081, 48.8844911 2.3217337, 48.8882678 2.3160185, 48.8867550 2.3170374, 48.8846941 2.3192435, 48.8945700 2.3209462, 48.8957805 2.3227289, 48.8971979 2.3245076, 48.8992344 2.3214018, 48.8472291 2.3863740, 48.8474932 2.3873542, 48.8483088 2.3945473, 48.8481859 2.3947143, 48.8462890 2.3780990, 48.8467598 2.3810401, 48.8506910 2.3783087, 48.8990495 2.3212985, 48.8967767 2.3225340, 48.8940147 2.3203574, 48.8486840 2.3968021, 48.8477832 2.3911928, 48.8467571 2.3822165, 48.8518573 2.4008515, 48.8524046 2.4010916, 48.8511975 2.3974494, 48.8681803 2.3623804, 48.8680902 2.3639328, 48.8313075 2.3982891, 48.8322157 2.3891306, 48.8317240 2.3877563, 48.8315393 2.3983178, 48.8177557 2.4597142, 48.8338167 2.4550750, 48.8276017 2.4641428, 48.8356934 2.4525728, 48.8346621 2.4489644, 48.8401025 2.4383747, 48.8296702 2.4613315, 48.8363543 2.4417575, 48.8410158 2.4388289, 48.8345020 2.4545488, 48.8278514 2.4636174, 48.8347936 2.4498580, 48.8371516 2.4408984, 48.8354560 2.4533620, 48.8718417 2.3332868, 48.8827868 2.3443205, 48.8834085 2.3462374, 48.8832199 2.3465158, 48.8822953 2.3405605, 48.8829739 2.3440228, 48.8819819 2.3401989, 48.8822704 2.3374453, 48.8521527 2.2734766, 48.8450476 2.3717769, 48.8448979 2.3716168, 48.8447402 2.3718129, 48.8435992 2.3738341, 48.8441086 2.3729451, 48.8701555 2.3331174, 48.8837939 2.3329962, 48.8835150 2.3330746, 48.8478278 2.3903629, 48.8367358 2.4030677, 48.8398410 2.3943255, 48.8369788 2.4029173, 48.8382147 2.3990423, 48.8433132 2.3836866, 48.8400154 2.3942912, 48.8382948 2.3993409, 48.8480895 2.3949758, 48.8430366 2.3839344, 48.8391042 2.3965498, 48.8416747 2.3873401, 48.8486471 2.3946702, 48.8411428 2.3884744, 48.8406463 2.3907075, 48.8445304 2.3812481, 48.8392771 2.3966612, 48.8357969 2.4061420, 48.8446160 2.3806775, 48.8345268 2.4442929, 48.8344774 2.4442169, 48.8354784 2.4074292, 48.8343511 2.4116845, 48.8351079 2.4071091, 48.8679551 2.3442419, 48.8674499 2.3465726, 48.8371501 2.3908184, 48.8441215 2.4405058, 48.8440722 2.4406777, 48.8440544 2.4409292, 48.8440308 2.4412257, 48.8440012 2.4415491, 48.8440831 2.4418537, 48.8441372 2.4412257, 48.8299861 2.3923363, 48.8387219 2.4610743, 48.8389146 2.4608927, 48.8809872 2.3249011, 48.8649283 2.3600564, 48.8661356 2.3612500, 48.8666781 2.3642229, 48.8515768 2.3137932, 48.8606025 2.3784879, 48.8440168 2.3905783, 48.8498040 2.3849378, 48.8673556 2.3730783, 48.8393396 2.4294885, 48.8554308 2.3810628, 48.8646338 2.3748521, 48.8495946 2.3848569, 48.8600036 2.3787340, 48.8470697 2.3870806, 48.8476942 2.3863883, 48.8734359 2.3700594, 48.8764703 2.3606172, 48.8697465 2.3711032, 48.8648377 2.3749652, 48.8622337 2.3766437, 48.8412228 2.3937600, 48.8757278 2.3703753, 48.8560465 2.3813951, 48.8414255 2.3937514, 48.8703200 2.3708846, 48.8622354 2.3768772, 48.8678166 2.3725286, 48.8445961 2.3896940, 48.8394189 2.4303769, 48.8770384 2.3660406, 48.8757128 2.3687003, 48.8717094 2.3696240, 48.8764187 2.3608744, 48.8677540 2.3774503, 48.8956350 2.3166909, 48.8958594 2.3179696, 48.8671524 2.3067325, 48.8483695 2.3978300, 48.8480553 2.3970747, 48.8581127 2.3797697, 48.8582240 2.3802866, 48.8577899 2.3809996, 48.8579546 2.3806509, 48.8304773 2.3438587, 48.8309647 2.3443094, 48.8288392 2.3423160, 48.8716579 2.3326787, 48.8718086 2.3327448, 48.8258805 2.3410294, 48.8531959 2.3776876, 48.8858712 2.3164829, 48.8854432 2.3171770, 48.8824475 2.3199667, 48.8820235 2.3209613, 48.8817777 2.3207315, 48.8687875 2.3019902, 48.8364006 2.3942065, 48.8400397 2.3814476, 48.8401096 2.3818762, 48.8410628 2.3783033, 48.8407150 2.3783893, 48.8432202 2.3741663, 48.8514120 2.3630325, 48.8526880 2.3689507, 48.8501976 2.3595725, 48.8444350 2.4055551, 48.8450880 2.4058828, 48.8389131 2.3938184, 48.8390440 2.3937869, 48.8394970 2.3969576, 48.8397088 2.3966435, 48.8649773 2.3999903, 48.8422861 2.4051224, 48.8424685 2.4050114, 48.8501775 2.4062934, 48.8507018 2.4064450, 48.8398005 2.4040117, 48.8270329 2.3669933, 48.8395540 2.3993780, 48.8397110 2.3993892, 48.8296159 2.3751210, 48.8296959 2.3750390, 48.8355605 2.3857259, 48.8339034 2.3829597, 48.8340237 2.3828656, 48.8319172 2.3790316, 48.8319210 2.3793578, 48.8272269 2.3675332, 48.8647865 2.3655310, 48.8649235 2.3657927, 48.8621889 2.3667904, 48.8619845 2.3671289, 48.8897139 2.3394367, 48.8638603 2.3206045, 48.8388610 2.3611486, 48.8390433 2.3609520, 48.8648409 2.2341295, 48.8646980 2.2348832, 48.8654514 2.2339766, 48.8188531 2.3442844, 48.8506399 2.3792121, 48.8393980 2.3205908, 48.9006354 2.3209397, 48.9009850 2.3292194, 48.8468289 2.4118902, 48.8471299 2.4117895, 48.8491714 2.4125984, 48.8770504 2.4094309, 48.8585739 2.2749254, 48.8375739 2.4083194, 48.8764567 2.3370539, 48.8760287 2.3366785, 48.8762066 2.3360072, 48.8614476 2.2755091, 48.8642416 2.2770207, 48.8674365 2.2806449, 48.8473883 2.2580363, 48.8680878 2.2817635, 48.8706577 2.3428415, 48.8530131 2.3698153, 48.8502500 2.3825079, 48.8503771 2.3824789, 48.8530591 2.3707818, 48.8513798 2.3754838, 48.8529695 2.3706763, 48.8520725 2.3732723, 48.8566143 2.3643097, 48.8530507 2.3682971, 48.8487387 2.3929660, 48.8489778 2.3924236, 48.8281405 2.3891647, 48.8714182 2.3361457, 48.8798182 2.3592216, 48.8817621 2.3666052, 48.8828578 2.3708170, 48.8494437 2.2985474, 48.8345773 2.4201923, 48.8289147 2.4196154, 48.8277447 2.4194543, 48.8602770 2.3403556, 48.8649634 2.3094689, 48.8303773 2.3819394, 48.8307973 2.3773521, 48.8284712 2.3842686, 48.8308646 2.3816088, 48.8291915 2.3837155, 48.8897318 2.3833349, 48.8904053 2.3823863, 48.8781963 2.3378153, 48.8787176 2.3371055, 48.8564583 2.3250707, 48.8472368 2.4072689, 48.8579370 2.4047277, 48.8563970 2.3255540, 48.8565275 2.3253806, 48.8555489 2.3254720, 48.8558531 2.3260472, 48.8561914 2.3262556, 48.8577783 2.3235579, 48.8581009 2.3233340, 48.8583253 2.3231317, 48.8584864 2.3232947, 48.8588911 2.3229260, 48.8537471 2.3263447, 48.8537841 2.3259820, 48.8591256 2.3290453, 48.8546818 2.3293290, 48.8675867 2.3437920, 48.8790340 2.2945201, 48.8790567 2.2942853, 48.8518528 2.4016439, 48.8510709 2.3973798, 48.8526364 2.4054371, 48.8547712 2.3858839, 48.8543518 2.3857021, 48.8543260 2.3861381, 48.8546530 2.3849282, 48.8587884 2.3848896, 48.8498688 2.3855808, 48.8322356 2.2781024, 48.8356758 2.2781754, 48.8597982 2.3444831, 48.8597454 2.3446459, 48.8595575 2.3452259, 48.8605224 2.3310090, 48.8534422 2.4099675, 48.8533556 2.4100827, 48.8650127 2.3979287, 48.8632147 2.4042183, 48.8633962 2.4041437, 48.8659357 2.4004992, 48.8620785 2.4061547, 48.8705641 2.3992800, 48.8620353 2.4059012, 48.8729894 2.3979406, 48.8680459 2.4010667, 48.8689014 2.4009778, 48.8647077 2.4119384, 48.8712170 2.3989347, 48.8726069 2.3977984, 48.8642878 2.4018417, 48.8603235 2.4095533, 48.8602867 2.4092069, 48.8562693 2.3933176, 48.8561851 2.3934136, 48.8557465 2.3908208, 48.8556539 2.3909708, 48.8522965 2.3895725, 48.8495384 2.3937307, 48.8496872 2.3939109, 48.8519359 2.3733433, 48.8525451 2.4055439, 48.8693540 2.3084450, 48.8701814 2.3058463, 48.8448277 2.4029841, 48.8453984 2.4020122, 48.8445403 2.4064052, 48.8451043 2.4013784, 48.8441650 2.4108287, 48.8447803 2.4052300, 48.8442921 2.4109375, 48.8493174 2.3285389, 48.8632747 2.3421251, 48.8632959 2.3419124, 48.8613141 2.3411077, 48.8647635 2.3426706, 48.8699915 2.3516342, 48.8168023 2.3342690, 48.8164222 2.3405387, 48.8495417 2.3887046, 48.8492264 2.3897711, 48.8484573 2.3278663, 48.8389034 2.2566465, 48.8389549 2.2569048, 48.8390178 2.2576472, 48.8410070 2.2585979, 48.8904689 2.3454601, 48.8911905 2.3487094, 48.8910566 2.3495078, 48.8912368 2.3497072, 48.8913695 2.3502570, 48.8625408 2.3026654, 48.8415408 2.3679418, 48.8311371 2.3240098, 48.8404277 2.2646117, 48.8413631 2.2660364, 48.8698995 2.2844641, 48.8699289 2.2861384, 48.8702388 2.2852708, 48.8515992 2.3401247, 48.8521327 2.3397250, 48.8522361 2.3391031, 48.8522703 2.3392048, 48.8775306 2.4066025, 48.8599592 2.3464575, 48.8529260 2.3472349, 48.8278790 2.3318860, 48.8532394 2.4119583, 48.8622954 2.2681905, 48.8608867 2.2670598, 48.8608209 2.2667223, 48.8324853 2.4033357, 48.8483822 2.4076890, 48.8489761 2.4042789, 48.8872453 2.3133637, 48.8512796 2.3764602, 48.8514561 2.3756984, 48.8509337 2.3755804, 48.8517401 2.3764776, 48.8214988 2.3409777, 48.8519065 2.2791681, 48.8509240 2.2779719, 48.8715165 2.3434427, 48.8718185 2.3415958, 48.8708978 2.3472731, 48.8700491 2.3513952, 48.8758612 2.3392890, 48.8763673 2.3398734, 48.8476843 2.2741123, 48.8655197 2.3418184, 48.8498570 2.3555877, 48.8536283 2.3450445, 48.8511027 2.3515716, 48.8465004 2.3408141, 48.8461780 2.3407172, 48.8416298 2.3432384, 48.8557910 2.2707104, 48.8534877 2.2704880, 48.8940940 2.3319275, 48.8940074 2.3332141, 48.8977687 2.3447250, 48.8934301 2.3373685, 48.8880881 2.3398100, 48.8977942 2.3296684, 48.8978914 2.3360445, 48.8977999 2.3407221, 48.8928612 2.3274828, 48.8989059 2.3287642, 48.8960801 2.3285984, 48.8336722 2.2867372, 48.8354046 2.2893217, 48.8192098 2.3587466, 48.8255239 2.3572990, 48.8195050 2.3591982, 48.8316066 2.3137780, 48.8588051 2.4057136, 48.8752706 2.3574586, 48.8216892 2.3245975, 48.8686664 2.3014767, 48.8515033 2.4117685, 48.8721246 2.3006722, 48.8601726 2.2805542, 48.8603004 2.2814845, 48.8578135 2.2739656, 48.8594111 2.2780225, 48.8594915 2.2778705, 48.8625162 2.2865767, 48.8719166 2.2935880, 48.8691576 2.2917845, 48.8694005 2.2917131, 48.8639459 2.2877623, 48.8629572 2.2857745, 48.8642184 2.2879895, 48.8676367 2.2906843, 48.8766898 2.4062518, 48.8761364 2.3315289, 48.8541362 2.3436693, 48.8544747 2.3444214, 48.8882842 2.3735245, 48.8275820 2.3931098, 48.8315505 2.3875281, 48.8318906 2.3879451, 48.8317653 2.3883392, 48.8345471 2.3880444, 48.8346204 2.3881531, 48.8457440 2.3737031, 48.8460468 2.3776983, 48.8479042 2.4029626, 48.8588784 2.3795116, 48.8543561 2.3686751, 48.8573717 2.3679538, 48.8812786 2.3006155, 48.8791872 2.3027025, 48.8794083 2.3027209, 48.8819758 2.3003937, 48.8820031 2.3001172, 48.8484788 2.3730624, 48.8778271 2.3054861, 48.8789229 2.3036705, 48.8623160 2.3385135, 48.8626609 2.3357043, 48.8611349 2.3404586, 48.8590838 2.3384912, 48.8598916 2.3339354, 48.8620310 2.3348363, 48.8588289 2.3317912, 48.8564980 2.3415954, 48.8585988 2.3414634, 48.8188883 2.3606299, 48.8217293 2.3258407, 48.8219700 2.3725276, 48.8222817 2.3241254, 48.8224593 2.3723095, 48.8225264 2.3585391, 48.8225913 2.3306285, 48.8225940 2.3582362, 48.8232021 2.3686118, 48.8233926 2.3231571, 48.8233479 2.3530784, 48.8237781 2.3181009, 48.8252882 2.3108074, 48.8250348 2.3042523, 48.8254999 2.3499245, 48.8258025 2.3510041, 48.8258039 2.3456727, 48.8258513 2.3498413, 48.8259133 2.3460385, 48.8259576 2.3540756, 48.8260280 2.3531254, 48.8260418 2.3506964, 48.8262853 2.3130723, 48.8272808 2.3626881, 48.8278486 2.3621965, 48.8278716 2.3523358, 48.8287890 2.3431611, 48.8337818 2.3570497, 48.8374470 2.2575115, 48.8377427 2.3450152, 48.8377076 2.3821990, 48.8384173 2.3307973, 48.8384981 2.3815117, 48.8391211 2.3307962, 48.8395047 2.2915304, 48.8399751 2.4090846, 48.8400001 2.4087346, 48.8408584 2.2882668, 48.8408974 2.2885092, 48.8422736 2.3286256, 48.8423956 2.2851745, 48.8428956 2.2692665, 48.8437793 2.4103825, 48.8443082 2.3333005, 48.8446025 2.4102047, 48.8449478 2.3285312, 48.8453799 2.3322324, 48.8454392 2.3958901, 48.8456324 2.2780576, 48.8457048 2.2776103, 48.8461676 2.4106793, 48.8469869 2.3514296, 48.8477426 2.4114259, 48.8483240 2.2704664, 48.8486237 2.4111120, 48.8488905 2.3728095, 48.8490964 2.3327998, 48.8492183 2.3959570, 48.8497311 2.3151171, 48.8502916 2.2602441, 48.8502919 2.2599552, 48.8510239 2.2747254, 48.8518696 2.3480042, 48.8529623 2.3771900, 48.8530204 2.3769987, 48.8530400 2.2814658, 48.8530986 2.2812592, 48.8532293 2.4108476, 48.8540268 2.3048864, 48.8540932 2.3060103, 48.8541586 2.2829735, 48.8542833 2.3777285, 48.8553229 2.3785588, 48.8553729 2.3684131, 48.8558631 2.3754123, 48.8561605 2.3788113, 48.8564257 2.2858321, 48.8570765 2.3504182, 48.8571225 2.2917330, 48.8571518 2.2913806, 48.8572227 2.3682716, 48.8579053 2.3797322, 48.8579503 2.3712271, 48.8583775 2.3488602, 48.8589049 2.3039173, 48.8590496 2.3467839, 48.8591398 2.3747820, 48.8597060 2.3645885, 48.8597616 2.3676826, 48.8598036 2.3217290, 48.8598827 2.3673320, 48.8601423 2.3604402, 48.8605570 2.3213330, 48.8608305 2.3240713, 48.8616874 2.3202712, 48.8624213 2.3066950, 48.8625533 2.3111795, 48.8625638 2.3057642, 48.8633404 2.2823367, 48.8633709 2.4097739, 48.8635600 2.3506005, 48.8637772 2.2811131, 48.8638504 2.4085072, 48.8639401 2.3483911, 48.8639673 2.4088487, 48.8640405 2.3485216, 48.8641242 2.3606162, 48.8649714 2.2949717, 48.8650233 2.3022637, 48.8650414 2.3130143, 48.8657210 2.3990752, 48.8660184 2.2920260, 48.8662425 2.2714116, 48.8663266 2.2711738, 48.8666223 2.2899479, 48.8670025 2.2992498, 48.8670219 2.2985380, 48.8671173 2.3966221, 48.8673290 2.3831063, 48.8673789 2.4091033, 48.8676591 2.3963732, 48.8684997 2.3891241, 48.8698610 2.3123404, 48.8699435 2.3706856, 48.8700027 2.3289894, 48.8701446 2.4086615, 48.8701843 2.3707528, 48.8711933 2.3604700, 48.8712232 2.2891794, 48.8713636 2.4041582, 48.8723522 2.4045164, 48.8724186 2.3698205, 48.8725325 2.3330532, 48.8735639 2.3586128, 48.8740231 2.3847596, 48.8740378 2.2937279, 48.8744306 2.2934465, 48.8747144 2.4056516, 48.8748526 2.2959835, 48.8750248 2.2793312, 48.8755928 2.3151234, 48.8762926 2.3762339, 48.8764612 2.3765230, 48.8772186 2.3109203, 48.8772382 2.4074063, 48.8775245 2.3168188, 48.8775385 2.3163589, 48.8777526 2.3564376, 48.8779032 2.3056888, 48.8792830 2.3557138, 48.8803251 2.3794038, 48.8804221 2.3797161, 48.8805113 2.3127266, 48.8806515 2.3129992, 48.8806707 2.3738633, 48.8807343 2.2846959, 48.8808339 2.3130195, 48.8808347 2.3117674, 48.8809373 2.2848091, 48.8810591 2.2952646, 48.8814763 2.3649726, 48.8815089 2.2957771, 48.8818748 2.3931313, 48.8819392 2.3936848, 48.8824779 2.3860372, 48.8829037 2.3278232, 48.8830794 2.3885185, 48.8831418 2.3277143, 48.8836857 2.3949045, 48.8840202 2.3052632, 48.8841743 2.2968720, 48.8842536 2.2971683, 48.8842675 2.3496004, 48.8843157 2.3493326, 48.8844710 2.3800345, 48.8845032 2.3798230, 48.8847651 2.3075876, 48.8848759 2.3376000, 48.8850832 2.3591833, 48.8851035 2.2953074, 48.8851929 2.3305415, 48.8852037 2.2959187, 48.8853525 2.2977731, 48.8855368 2.3265690, 48.8857429 2.2935118, 48.8859108 2.2939790, 48.8859849 2.3261631, 48.8861542 2.3564939, 48.8863058 2.3980186, 48.8863435 2.3982367, 48.8865882 2.3414475, 48.8866623 2.2960418, 48.8869250 2.3393207, 48.8873104 2.3596117, 48.8874485 2.3050999, 48.8877988 2.3248672, 48.8878289 2.3064904, 48.8878345 2.3250858, 48.8878907 2.2990642, 48.8878917 2.3496722, 48.8881459 2.3258858, 48.8893697 2.2927080, 48.8898370 2.3597516, 48.8904800 2.3550192, 48.8905941 2.3550830, 48.8925967 2.3271643, 48.8925992 2.3273940, 48.8927291 2.3598166, 48.8927047 2.3444938, 48.8929178 2.3410633, 48.8932317 2.3397366, 48.8942606 2.3656734, 48.8943375 2.3661626, 48.8948852 2.3594730, 48.8975939 2.3222245, 48.8979766 2.3288871, 48.8980146 2.3446274, 48.8980432 2.3293039, 48.8981891 2.3527913, 48.8993072 2.3701049, 48.9001130 2.3701001, 48.8399283 2.3458676, 48.8573732 2.3462893, 48.8346350 2.3448741, 48.8352856 2.3450944, 48.8314340 2.3442457, 48.8326883 2.3444784, 48.8328577 2.3446665, 48.8714194 2.3313889, 48.8244919 2.3416195, 48.8681937 2.3335030, 48.8196924 2.3433020, 48.8759868 2.3238202, 48.8534607 2.2756452, 48.8743682 2.3018878, 48.8747342 2.3056450, 48.8499128 2.2683127, 48.8374817 2.2562098, 48.8409521 2.2656183, 48.8447054 2.2711200, 48.8510222 2.2746770, 48.8479636 2.2695060, 48.8623216 2.3203905, 48.8471209 2.3607000, 48.8698462 2.3252156, 48.8497078 2.3497045, 48.8613841 2.3234865, 48.8558899 2.3408768, 48.8576653 2.3376606, 48.8441286 2.3722011, 48.8761561 2.3801802, 48.8761767 2.3807442, 48.8756779 2.3423365, 48.8760012 2.3393251, 48.8788354 2.3542871, 48.8757056 2.3273669, 48.8799324 2.3551370, 48.8737046 2.3891048, 48.8735653 2.3898443, 48.8720431 2.3916937, 48.8718700 2.3920985, 48.8805417 2.3741402, 48.8476241 2.4028943, 48.8738483 2.3857544, 48.8696238 2.3946915, 48.8702673 2.3942139, 48.8340184 2.3536310, 48.8401039 2.3462745, 48.8363735 2.3520217, 48.8233149 2.3752168, 48.8329533 2.3626062, 48.8329546 2.3623275, 48.8254541 2.3748917, 48.8259161 2.3739896, 48.8231378 2.3775987, 48.8245614 2.3762562, 48.8248101 2.3756732, 48.8238740 2.3767541, 48.8500679 2.3425522, 48.8285493 2.3267243, 48.8471902 2.3122623, 48.8611784 2.3583595, 48.8543408 2.3689864, 48.8664943 2.3381181, 48.8610785 2.3537894, 48.8465740 2.3770203, 48.8406221 2.3915014, 48.8455583 2.3960876, 48.8628065 2.3537583, 48.8420222 2.4114914, 48.8673756 2.3405965, 48.8561666 2.3685267, 48.8571606 2.3619544, 48.8410468 2.4120861, 48.8577155 2.3674565, 48.8582705 2.3640599, 48.8500945 2.3851031, 48.8824312 2.3234086, 48.8493467 2.3460222, 48.8489025 2.3553600, 48.8489963 2.3554918, 48.8490831 2.3556308, 48.8484027 2.3495585, 48.8501648 2.3477828, 48.8527013 2.3373975, 48.8436232 2.3235331, 48.8475660 2.4067111, 48.8550944 2.2968674, 48.8552351 2.2962519, 48.8582746 2.3473914, 48.8992535 2.3294726, 48.8630099 2.3882032, 48.8631921 2.3883261, 48.8570981 2.3685897, 48.8544422 2.3718604, 48.8599893 2.3775333, 48.8619690 2.3853169, 48.8646505 2.3981284, 48.8647824 2.3989803, 48.8648443 2.3954637, 48.8648256 2.3948594, 48.8639853 2.3919450, 48.8642602 2.3926462, 48.8569232 2.3783647, 48.8599284 2.3864520, 48.8602320 2.3889291, 48.8589132 2.3848029, 48.8573976 2.3502067, 48.8572921 2.3526534, 48.8584495 2.3474391, 48.8441611 2.3641067, 48.8775262 2.3091500, 48.8616313 2.3200432, 48.8752076 2.3150771, 48.8855913 2.2965112, 48.8843226 2.2977914, 48.8844118 2.2979342, 48.8507447 2.3329353, 48.8509334 2.3327398, 48.8748201 2.3065249, 48.8750218 2.3054628, 48.8474354 2.3298335, 48.8301245 2.3593917, 48.8365554 2.3515202, 48.8421531 2.3349227, 48.8428630 2.3343922, 48.8413366 2.3358881, 48.8231294 2.3709733, 48.8468546 2.3305434, 48.8349137 2.3455215, 48.8447005 2.3326195, 48.8736071 2.3136449, 48.8364468 2.3505122, 48.8354325 2.3478250, 48.8354957 2.3474881, 48.8529056 2.3365859, 48.8950538 2.3463649, 48.8884547 2.3466792, 48.8793765 2.3432244, 48.8926779 2.3450799, 48.8867411 2.3475484, 48.8744366 2.3407290, 48.8721921 2.3400794, 48.8830125 2.3464904, 48.8813226 2.3442929, 48.9010962 2.3439734, 48.8971162 2.3448745, 48.8972030 2.3451540, 48.8810811 2.3465233, 48.8788550 2.3454642, 48.8870603 2.3477790, 48.8737499 2.3427652, 48.8738946 2.3426116, 48.8838003 2.3470916, 48.8686330 2.3434700, 48.8976741 2.3369954, 48.8976025 2.3326157, 48.8952997 2.3459628, 48.8892307 2.3482522, 48.8922647 2.3454090, 48.8924937 2.3446033, 48.8997831 2.3442708, 48.8568004 2.3483967, 48.8569048 2.3480232, 48.8562005 2.3501648, 48.8558845 2.3552826, 48.8540793 2.3554730, 48.8239288 2.3773172, 48.8427970 2.2645686, 48.8669738 2.3831048, 48.8563255 2.3825318, 48.8565266 2.3825157, 48.8792856 2.3479839, 48.8575141 2.3477631, 48.8758736 2.3576344, 48.8749438 2.2940813, 48.8872676 2.3134247, 48.8870184 2.3011195, 48.8900072 2.2966294, 48.8603566 2.3408487, 48.8645931 2.3404308, 48.8744710 2.3254698, 48.8687529 2.4018580, 48.8747072 2.4054809, 48.8722439 2.4046513, 48.8767561 2.4064590, 48.8706985 2.3986586, 48.8786754 2.4089244, 48.8789125 2.4089647, 48.8708652 2.3996564, 48.8755355 2.3994387, 48.8651789 2.3984930, 48.8656078 2.3991453, 48.8646241 2.3984974, 48.8648636 2.3976678, 48.8568549 2.3482069, 48.8571655 2.3501233, 48.8575860 2.3485830, 48.8567388 2.3485737, 48.8577759 2.3507769, 48.8692099 2.3201082, 48.8834236 2.3497662, 48.8903375 2.3590926, 48.8906554 2.3600336, 48.8871139 2.3597906, 48.8262091 2.3536051, 48.8266462 2.3051647, 48.8999916 2.3711721, 48.8881927 2.3621096, 48.8914236 2.3611829, 48.8917257 2.3614702, 48.8479250 2.2519051, 48.8480478 2.2521359, 48.8845262 2.3643914, 48.8846958 2.3614362, 48.8929850 2.3631201, 48.8934228 2.3640253, 48.8955904 2.3706365, 48.8956114 2.3711627, 48.8956593 2.3591193, 48.8928035 2.3595578, 48.8984062 2.3574740, 48.8983976 2.3571253, 48.8984451 2.3583759, 48.8987458 2.3583078, 48.8987291 2.3578334, 48.8987716 2.3597234, 48.8985110 2.3600650, 48.8981225 2.3595285, 48.8974513 2.3596053, 48.8979532 2.3595285, 48.8975583 2.3593354, 48.8979626 2.3589508, 48.8976217 2.3590994, 48.8826526 2.3588127, 48.8741422 2.3313585, 48.8862829 2.3566228, 48.8895695 2.3714685, 48.8672878 2.3649621, 48.8680385 2.3640309, 48.8662798 2.3657054, 48.8594758 2.3774484, 48.8444943 2.4419274, 48.8445323 2.4414766, 48.8445097 2.4417319, 48.8417078 2.4497336, 48.8424935 2.4488325, 48.8610025 2.3249115, 48.8289740 2.3784430, 48.8303989 2.3770851, 48.8442261 2.4406747, 48.8382746 2.2703649, 48.8386349 2.2702074, 48.8549982 2.3620916, 48.8620514 2.3149638, 48.8936160 2.3368475, 48.8479777 2.3979993, 48.8515341 2.4159031, 48.8511806 2.4158162, 48.8585104 2.4146101, 48.8539244 2.4152653, 48.8537684 2.4155113, 48.8831351 2.3875773, 48.8838485 2.3946602, 48.8861264 2.3942560, 48.8868055 2.3944143, 48.8282056 2.2676145, 48.8898250 2.3559271, 48.8983265 2.3703883, 48.8888757 2.3560908, 48.8537887 2.3650689, 48.8915373 2.3724185, 48.8896765 2.3677521, 48.8871205 2.3669275, 48.8926811 2.3694349, 48.8898422 2.3681388, 48.8981307 2.3711455, 48.8960339 2.3709216, 48.8961681 2.3712644, 48.8709372 2.3609634, 48.8431719 2.3742563, 48.8753464 2.3578419, 48.8756205 2.3580547, 48.8915108 2.3502537, 48.9004027 2.3344708, 48.9005060 2.3349504, 48.8762554 2.3322208, 48.8762622 2.3313884, 48.8763683 2.3320907, 48.8311845 2.3539944, 48.8276163 2.3004583, 48.8318087 2.3062340, 48.8301984 2.3046073, 48.8387250 2.3066903, 48.8373618 2.2986439, 48.8424385 2.2910352, 48.8406475 2.3006615, 48.8373187 2.3013607, 48.8371088 2.3061772, 48.8365313 2.3054812, 48.8425686 2.2954928, 48.8418437 2.2979508, 48.8408205 2.2915520, 48.8360210 2.2970749, 48.8386408 2.2944000, 48.8327624 2.2939220, 48.8343868 2.2955119, 48.8316054 2.2928591, 48.8290094 2.2957084, 48.8231636 2.3248439, 48.8210965 2.3214270, 48.8660109 2.3651191, 48.8831088 2.3245043, 48.8706392 2.2750468, 48.8223059 2.3255106, 48.8225238 2.3255513, 48.8211767 2.3245177, 48.8756477 2.3575641, 48.8757782 2.3578427, 48.8757972 2.3581878, 48.8760146 2.3579188, 48.8761387 2.3589148, 48.8761693 2.3575858, 48.8251240 2.3185199, 48.8251289 2.3185313, 48.8264859 2.3803189, 48.8288314 2.3781017, 48.8818235 2.3316486, 48.8797557 2.3313620, 48.8246479 2.3257671, 48.8831293 2.3321584, 48.8744341 2.3326082, 48.8760903 2.3318791, 48.8443937 2.3244660, 48.8273636 2.3799346, 48.8446876 2.3289317, 48.8209076 2.3257609, 48.8214526 2.3256634, 48.8470719 2.3307396, 48.8484012 2.3324664, 48.8373110 2.2846337, 48.8981802 2.3449608, 48.8984921 2.3519898, 48.8847923 2.3692626, 48.8847923 2.3692626, 48.8698199 2.3940657, 48.8698866 2.3940078, 48.8678992 2.3130122, 48.8296992 2.3597326, 48.8249028 2.3698615, 48.8406034 2.3364178, 48.8498446 2.3280436, 48.8730041 2.3099688, 48.8255852 2.3673189, 48.8390055 2.3390755, 48.8751397 2.3084629, 48.8506212 2.3140974, 48.8236455 2.3258148, 48.8689372 2.3563959, 48.8682979 2.3629829, 48.8546575 2.2839258, 48.8559555 2.2855493, 48.8609423 2.2920296, 48.8617137 2.3588159, 48.8645636 2.3107915, 48.8646320 2.3144479, 48.8620955 2.3020640, 48.8859328 2.2902595, 48.8831391 2.3096871, 48.8831823 2.3097789, 48.8835981 2.3042344, 48.8957911 2.3114788, 48.8578051 2.3062945, 48.8665714 2.3230270, 48.8304638 2.3931881, 48.8639483 2.3316516, 48.8536624 2.3468093, 48.8381747 2.2892269, 48.8299272 2.3527600, 48.8857690 2.2899810, 48.8986597 2.3695773, 48.8987838 2.3695670, 48.8985694 2.3648411, 48.8986959 2.3650911, 48.8237933 2.3179955, 48.8976856 2.3251805, 48.8400853 2.3369561, 48.8754968 2.3248192, 48.8759355 2.3261765, 48.8659009 2.3577539, 48.8769948 2.4057951, 48.8436272 2.3223946, 48.8714976 2.3016926, 48.8532579 2.3679520, 48.8695579 2.3084966, 48.9007333 2.3351829, 48.9008816 2.3353907, 48.9002974 2.3325230, 48.8994357 2.3362588, 48.8645709 2.4096203, 48.8647510 2.4094343, 48.8651115 2.4111112, 48.8721384 2.3306302, 48.8241510 2.3534715, 48.8671308 2.3359975, 48.8405453 2.3687821, 48.8404129 2.3686132, 48.8367833 2.3709520, 48.8368645 2.3710540, 48.8793714 2.3898544, 48.8561033 2.4049251, 48.8962803 2.3381398, 48.8822910 2.3396804, 48.8883829 2.3560631, 48.8222926 2.3250337, 48.8870151 2.3130952, 48.8843179 2.3388482 +40 +viewpoint, museum, attraction, hotel, bed and breakfast, hostel, yes, artwork, information, picnic site, 65t, guest house, 14t, gallery, aquarium, apartment, aparment, theme park, zoo, camp site +Ibis +52.0455273 8.4506902, 52.0579438 8.4922378, 51.9789909 8.5077870, 51.9839158 8.5145830, 51.9719056 8.4584900, 51.9832360 8.5011688, 52.0581150 8.4919573, 52.0754057 8.4694042, 51.9914877 8.4790051, 51.9845111 8.5016418, 52.0980842 8.5181968, 52.0949444 8.5198350, 52.0419948 8.5160247, 52.0292851 8.5181917, 52.0314754 8.5141184, 52.0295337 8.5150115, 51.9847361 8.4854709, 51.9859050 8.4877428, 52.0306430 8.5117068, 51.9971967 8.5057650, 51.9934233 8.5091802, 52.0294891 8.5129716, 52.0267434 8.4659864, 52.0107287 8.5202197, 51.9891284 8.5001010, 51.9499358 8.5003082, 51.9406388 8.5114804, 51.9906984 8.5078615, 51.9963039 8.4716935, 51.9888194 8.5112622, 52.0981428 8.5181712, 52.0359476 8.4981338, 51.9839295 8.5004598, 52.0385624 8.4870408, 52.0946122 8.5195110, 52.0307135 8.5117101, 52.0267458 8.4660597, 52.0459428 8.5203701, 51.9837555 8.5001033, 52.0106909 8.5203429, 51.9621571 8.4624693, 51.9717369 8.4582094, 52.0293357 8.5180617, 52.0425290 8.5168560, 52.0580908 8.4924175, 52.0455684 8.4510738, 52.0294960 8.5152776, 52.0314045 8.5141317, 51.9847954 8.4859472, 51.9861104 8.4873591, 52.0308117 8.5117948, 51.9972310 8.5062078, 51.9931065 8.5094547, 51.9914510 8.4802500, 52.0754750 8.4692456, 52.0691401 8.4845397, 51.9898013 8.5008912, 51.9842005 8.5139759, 51.9789415 8.5070326, 51.9502642 8.5005356, 51.9402691 8.5119328, 51.9960941 8.4716263, 51.9884382 8.5106798, 52.0363421 8.4985163 +49.4126021 8.6894511, 49.4124594 8.6881444 +McDonald's +0 +55.9351932 -3.1010341, 55.9501318 -3.1886125, 55.9623636 -3.1790432, 55.9713786 -3.1713983, 55.9708769 -3.1716878 +fuel, drinking water, recycling, post box, telephone, fire station, pharmacy, restaurant, atm, townhall, shelter, fast food, college, taxi, post office, toilets, parking, car rental, bank, kindergarten, wifi, place of worship, biergarten, police, vending machine, car sharing, bench, grave yard, public building, cafe, hospital, pub, nightclub, clock, library, grit bin, bar, cinema, school, artwork, fountain, hunting stand, waste, waste basket, bicycle parking, veterinary, doctors, heikopter, repair, university, dentist, shop, bicycle rental, theatre, social facility, video games, solarium, charging station, locker, swimming pool, car wash, food court, driving school, dancing school, parking entrance, marketplace, motorcycle parking, ferry terminal, youth centre, brothel, tradeoff, fire hydrant, stables, ice cream, advertising, craft, childcare, club, waste disposal, art gallery, animal shelter, science park, community centre, arts centre, boat rental, nursing home, retirement home, parking space, bbq, bus parking, emergency service, fraternity, monastery, hotel, smoking area, courthouse +514 +52 +49.4300711 8.6823444 +Albert Gödde, Friedrich Wolgast, Otto Appelfelder, Rudolf Sauer, Erich Wemhöner, Hermann Kleinewächter, Lina Feldheim geb. Katzenstein, Alfred Feldheim, Ruth Feldheim, Eva Feldheim, Christian Vogel, Otto Giesselmann, Ernst Brune, Richard Otto Senkel, Toni Lieber, Dora Senkel geb. Salomon, Thekla Lieber geb. Heine, Heinrich Schwarze, Margot Grünewald, Paul Brockmann, Robert Hegemann, Selma Grünewald geb. Wolff, Oskar Grube, Eduard Gaus, Leo Grünewald, Bernhard Putjenter, Rosa Heymann geb. Wolff, Gustav Höcker, Friede Laarmann, Gustav Koch, Fritz Bockhorst, Hugo Schweitzer, Wilhelm Hünerhoff, Fritz Beckstätte, Herrmann Wörmann, Gustav Milse, Wilhelm Ebert, Heinrich Homann, Frieda Homann geb. Reinecke, Gustav Horstbrink, August Beckmann, Mathilde Wisbrun geb. Tuteur, Frieda Horstbrink geb. Plauel, Moritz Wisbrun, Lina Beckmann geb. Sprick, Gustav Doerth, Adolf Schmidtpott, Wilma Auguste Kötter, Johanne Horstmann, Adolf Kampmeier, Dr. Julius Kamp, Bärbel Gottschalk, Samuel Meyerson, Walli Gottschalk, Josefa Metz, Ursula Gottschalk, Alfred Gottschalk, Hans Metz, Hedwig Meyerson, Lotte Windmüller, Wilhelm Kappe, Hermann Federmann, Kurt Simon, Margot Hermine Reuter, Heinrich Heibrock, Dr.med. Bernhard Mosberg, Dr.med. Gertrud Mosberg, Rosalie Mosberg, Ferdinand Willeke, Emil Möller, Fritz Katzenstein, Jenni Hesse, Julius Hesse, Konrad Griefingholt, Erich Klever, Dr. Gustav Meyer, Dr. Moritz Willi Katzenstein, Grete Blank, Hildegard Blank, Josef Meyer, Josef Meyer, Marianne Adelheid Katzenstein verh. Bern, Eva Susanne Katzenstein, Mathilde Juhl, Hanna Juhl, Salli Blank, Selma Katzenstein geb. Zehden, Therese Meyer geb. Melchior +Crowne Plaza, Nordbrückenkopf, Europäischer Hof, Stadtbücherei, Woolworth, Kaufhof, Juristisches Seminar, Darmstädter Hof, Universitätsbibliothek, Karlsplatz/Rathaus, ATOS Klinik, Bauhaus, P8 Kongresshaus, Schlosshotel, Darmstädter Hof, Kraus, P+M, Heiligenberg, Poststraße, Parkhaus am Theater, Friedrich-Ebert-Anlage 2, Kornmarkt/Schloss, Unter der Boschwiese +yes +10, 8, 24, 10, 8, 2, 16, 6, 8, 20, 14, 16, 4, 4, 8, 6, 4, 6, 8, 56, 4, 4, 4, 2, 8, 10, 14, 4, 8, 6, 16, 2, 6, 10, 10, 14, 10, 2, 4, 4, 10, 4, 4, 8, 8, 4, 6, 24, 12, 100, 14, 8, 36, 16, 82, 4, 2, 6, 2, 6, 4, 4, 4, 16, 14, 24, 24, 24, 12, 14, 24, 6, 4, 4, 4, 1, 4, 4, 40, 2, 15, 6, 4, 4, 4, 14, 6, 4, 8, 4, 4, 6, 2, 10, 10, 40, 8, 4, 4, 30, 2, 4, 10, 34, 4, 20, 2, 2, 4, 12, 10, 26, 6, 2, 8, 8, 36, 16, 8, 8, 160, 12, 4, 12, 10, 20, 4, 4, 12, 4, 4, 10, 8, 12, 14, 20, 40, 28, 40, 6, 6, 8, 6, 4, 6, 6, 6, 8, 6, 34, 8, 12, 16, 16, 18, 14, 16, 14, 20, 16, 4, 4, 6, 16, 14, 10, 16, 2, 4, 2, 4, 4, 2, 6, 2, 4, 2, 2, 6, 12, 4, 4, 2, 2, 12, 6, 2, 4, 2, 24, 8, 16, 6, 4, 8, 2, 6, 6, 14, 8, 16, 4, 4, 10, 12, 40, 8, 16, 20, 4, 2, 6, 4, 4, 10, 4, 4, 8, 6, 7, 7, 3, 20, 8, 8, 8, 6, 12, 8, 6, 20, 6, 8, 12, 12, 4, 4, 12, 6, 20, 10, 6, 10, 6, 16, 14, 12, 30, 4, 2, 8, 4, 2, 36, 44, 48, 10, 10, 46, 10, 10, 12, 8, 30, 4, 4, 16, 20, 3, 6, 4, 4, 4, 4, 10, 6, 4, 6, 4, 10, 20, 2, 6, 20, 4, 4, 2, 2, 2, 10, 4, 8, 6, 3, 32, 6, 8, 2, 4, 10, 6, 34, 20, 14, 4, 2, 6, 8, 4, 20, 10, 4, 4, 26, 16, 20, 72, 10, 10, 10, 8, 8, 3, 8, 8, 16, 2, 10, 2, 4, 6, 4, 4, 10, 16, 6, 32, 6, 4, 4, 4, 10, 10, 20, 16, 6, 6, 2, 4, 4, 2, 8, 4, 4, 6, 4, 4, 10, 20, 60, 4, 12, 6, 2, 16, 4, 6, 6, 6, 8, 8, 8, 2, 4, 6, 4, 14, 10, 10, 12, 6, 4, 4, 4, 4, 4, 4, 4, 8, 8, 4, 4, 80, 6, 6, 6, 6, 6, 6, 20, 2, 8, 8, 8, 15, 10, 6, 36, 10, 10, 30, 40, 40, 14, 10, 8, 10, 4, 4, 2, 4, 16, 10, 122, 4, 8, 8, 8, 8, 10, 10, 10, 10, 10, 10, 42, 64, 50, 32, 6, 6, 6, 4, 4, 2, 2, 6, 8, 10, 22, 10, 18, 40, 40 +エッフェル塔 +yes +0 +48.8108150 2.3016518, 48.8153367 2.2970255, 48.8812535 2.2714648, 48.8756694 2.2890915, 48.8719944 2.3006392, 48.8689763 2.3101131, 48.8664075 2.3221380, 48.8643585 2.3298436, 48.8623829 2.3361468, 48.8607697 2.3409358, 48.8587782 2.3474106, 48.8575436 2.3515947, 48.8552140 2.3606657, 48.8520122 2.3686542, 48.8457111 2.3727163, 48.8472696 2.3866995, 48.8475165 2.4063260, 48.8339081 2.2438908, 48.8487832 2.2988351, 48.8475338 2.3029524, 48.8504212 2.2936685, 48.7296445 2.3600059, 48.8242325 2.2730847, 48.8270162 2.2794048, 48.8326135 2.2884024, 48.8373212 2.2966299, 48.8919677 2.2377691, 48.8228800 2.3256282, 48.8280605 2.3269249, 48.8313954 2.3301258, 48.8340204 2.3325902, 48.8389018 2.3308032, 48.8330168 2.3366295, 48.8311288 2.3434842, 48.8297785 2.3504704, 48.8314217 2.3555589, 48.8331986 2.3628553, 48.8349549 2.3680817, 48.8370762 2.3729066, 48.8842870 2.3659442, 48.8480576 2.3960523, 48.8444696 2.4398829, 48.8454354 2.4293269, 48.8782117 2.3816608, 48.8808997 2.3738860, 48.8518166 2.4013757, 48.8463309 2.4190317, 48.8514736 2.3982446, 48.8664900 2.3833323, 48.8629761 2.3873271, 48.8582563 2.3901666, 48.8562640 2.3945621, 48.8720463 2.3769849, 48.8690586 2.3804560, 48.8774398 2.3708174, 48.8829026 2.3443344, 48.8823612 2.3373703, 48.8836162 2.3330841, 48.8835165 2.3274515, 48.8824462 2.3221220, 48.8812626 2.3155318, 48.8805420 2.3094230, 48.8737784 2.2950482, 48.8698038 2.2854485, 48.8714638 2.2768954, 48.8652545 2.4166605, 48.8645515 2.4088118, 48.8649326 2.3984802, 48.8643020 2.3794597, 48.8652193 2.3747542, 48.8666345 2.3614233, 48.8654878 2.3563464, 48.8663020 2.3524557, 48.8676419 2.3463248, 48.8686692 2.3412605, 48.8695654 2.3367072, 48.8707693 2.3322643, 48.8736019 2.3276269, 48.8754212 2.3255796, 48.8825292 2.3110507, 48.8839908 2.3042907, 48.8847948 2.2982623, 48.8856871 2.2926417, 48.8395785 2.3012923, 48.8415118 2.3080120, 48.8443954 2.3175634, 48.8468543 2.3166512, 48.8514000 2.3143901, 48.8568058 2.3151577, 48.8413343 2.4008998, 48.8905035 2.3598783, 48.9162246 2.2948689, 48.8707855 2.3611531, 48.8921077 2.2852229, 48.8579460 2.4357587, 48.8625988 2.4415690, 48.8971408 2.2803973, 48.8887892 2.2878755, 48.8526992 2.4061094, 48.8534759 2.4105242, 48.8558145 2.4237108, 48.8525808 2.3887914, 48.8547441 2.3853565, 48.8581580 2.3798044, 48.8610516 2.3747956, 48.8641314 2.3695694, 48.8694199 2.3544678, 48.8706004 2.3487793, 48.8715206 2.3432861, 48.8720176 2.3395091, 48.8730612 2.3333207, 48.8747030 2.3197963, 48.8464740 2.3659107, 48.8422880 2.3653598, 48.8460116 2.3549579, 48.8465082 2.3517283, 48.8499051 2.3487460, 48.8508926 2.3454617, 48.8521785 2.3394266, 48.8529427 2.3357457, 48.8363894 2.2784000, 48.8387450 2.2821427, 48.8410837 2.2879218, 48.8426906 2.2917758, 48.8389924 2.3896778, 48.8395253 2.3958919, 48.8401067 2.3799581, 48.8410654 2.3249923, 48.8429457 2.3126019, 48.8716770 2.2935098, 48.8669099 2.2902715, 48.8630266 2.2870524, 48.8573825 2.2859234, 48.8646725 2.2937783, 48.8640063 2.2780859, 48.8580816 2.2741958, 48.8555764 2.2702166, 48.8525598 2.2681802, 48.8480038 2.2641872, 48.8452505 2.2618802, 48.8430044 2.2600472, 48.8377707 2.2565741, 48.8649686 2.3006256, 48.8723362 2.3100827, 48.8736768 2.3145456, 48.8514587 2.3267159, 48.9038952 2.3053664, 48.8939640 2.3144204, 48.8905170 2.3201235, 48.8874127 2.3256961, 48.8470802 2.3076354, 48.8470463 2.2953101, 48.8606970 2.3210551, 48.8586775 2.3231168, 48.8481026 2.3277965, 48.8452766 2.3286613, 48.8656361 2.3227452, 48.8700644 2.3251637, 48.8446967 2.2937668, 48.8546428 2.3061015, 48.8575837 2.3102891, 48.8611770 2.3148333, 48.8633194 2.3666124, 48.8610965 2.3672267, 48.8575371 2.3679970, 48.8531361 2.3686313, 48.8511945 2.3759944, 48.8500259 2.3842705, 48.8444003 2.3899525, 48.8371074 2.4024837, 48.8266498 2.4057278, 48.8354584 2.4063451, 48.8450642 2.4010776, 48.8333461 2.3863163, 48.8269184 2.3662163, 48.8322556 2.3989811, 48.8656737 2.3344599, 48.8763705 2.3326310, 48.8760654 2.3385532, 48.8557241 2.3256659, 48.8784508 2.3374732, 48.8844760 2.3384377, 48.8898183 2.3386296, 48.8925606 2.3447103, 48.8977084 2.3592969, 48.8937935 2.3477372, 48.8873214 2.3497042, 48.8795577 2.3571375, 48.8762027 2.3579127, 48.8638408 2.3487041, 48.8723097 2.3558518, 48.8627762 2.3461709, 48.8551566 2.3471977, 48.8535657 2.3443622, 48.8536264 2.3333280, 48.8470711 2.3270822, 48.8421852 2.3289966, 48.8466102 2.2859257, 48.8461920 2.2786319, 48.8473202 2.2686743, 48.8477655 2.2583922, 48.8452670 2.2672606, 48.8470891 2.2728475, 48.8420002 2.2387333, 48.8406690 2.2287175, 48.8700162 2.3710617, 48.8612740 2.3535761, 48.8771276 2.4066804, 48.8754657 2.3990396, 48.8738469 2.3852526, 48.8750969 2.3893345, 48.8385876 2.3222085, 48.8317799 2.3140252, 48.8339551 2.3180764, 48.8225032 2.2984833, 48.8566177 2.3705298, 48.8602039 2.3721323, 48.8850187 2.3795672, 48.8869632 2.3867135, 48.8885434 2.3927045, 48.8911980 2.4025577, 48.8814188 2.3654808, 48.8772835 2.3492720, 48.8885069 2.3740693, 48.8908770 2.3772148, 48.8947998 2.3823744, 48.8974296 2.3854377, 48.8749537 2.3402103, 48.8759682 2.3441565, 48.8585901 2.3424101, 48.8512630 2.3622044, 48.8535245 2.3570872, 48.8429311 2.3521239, 48.8406731 2.3517801, 48.8356703 2.3525980, 48.8799166 2.3990372, 48.8819551 2.3933641, 48.8798096 2.4170873, 48.8715218 2.4043104, 48.8680997 2.4013152, 48.8382823 2.3608293, 48.8356584 2.3588519, 48.8927063 2.3274728, 48.8973715 2.3289008, 48.9061915 2.3320476, 48.8261434 2.3573719, 48.8225268 2.3585049, 48.8191302 2.3595477, 48.9231172 2.2862019, 48.9305465 2.2836436, 48.9142830 2.4036539, 48.9036536 2.3920966, 48.9207844 2.4106144, 48.8677590 2.3139517, 48.7963514 2.4492350, 48.7899066 2.4504803, 48.7797556 2.4594504, 48.8024711 2.4466949, 48.8090371 2.4347211, 48.8150770 2.4217740, 48.8214689 2.4136458, 48.9118944 2.3339725, 48.9196049 2.3429933, 48.8051317 2.3637903, 48.7869402 2.3673857, 48.7960877 2.3683672, 48.8103280 2.3622359, 48.8514725 2.3311829, 48.8439710 2.3243262, 48.8789208 2.3623079, 48.8844216 2.3602786, 48.8932382 2.4133209, 48.8795976 2.3270787, 48.9301278 2.3563841, 48.9368260 2.3590959, 48.9459311 2.3641518, 48.8538982 2.2893959, 48.8319438 2.2381100, 48.8296613 2.2308732, 48.8201086 2.3647992, 48.8216697 2.3693224, 48.8159011 2.3773455, 48.8109896 2.3839963, 48.8491398 2.3218984, 48.8756733 2.3273522, 48.8755336 2.3242020, 48.8780508 2.2982339, 48.7687211 2.4643844, 48.8837592 2.3495338, 48.8915769 2.3496679, 48.8663302 2.3215942, 48.8603937 2.3146892, 48.8537409 2.3693210, 48.8433310 2.3737787, 48.8456163 2.3095848, 48.9064052 2.4491919, 48.8975167 2.3446663, 48.8419339 2.3211592, 48.7290137 2.3699140, 48.8787548 2.3223081, 48.8767276 2.4064297, 48.8795817 2.3886032, 48.8825949 2.3703263, 48.8295791 2.3768615, 48.8767737 2.3935636, 48.8792625 2.3035538, 48.9068701 2.3657737, 48.8183938 2.3193550, 48.8956037 2.4251032, 48.8779888 2.2817745, 48.8582563 2.3901666, 48.8882249 2.2495172, 48.8849431 2.2599157, 48.8571078 2.3473222, 48.8596411 2.3468404, 48.8576652 2.3478702, 48.8589166 2.3467871, 48.8673076 2.3641562 +67 +5 +547 +231 +yes +4.2793779848203322 +0 +yes +yes +55.9519428 -3.2160716, 55.9609898 -3.2094322, 55.9383701 -3.3043514 +126 +indian, italian, regional, chinese, thai, german, french, vegetarian, greek, spanish, mediterranean, japanese, malaysian, eritrean, international, persian, asian, moroccan, burger, vietnamese, turkish, african, cuban, korean, vegan, Flammkuchen +9 and 55.5921994 -4.4879264, 55.8607863 -4.1124939, 51.5502086 -0.3308623, 51.5258455 -0.3653582, 54.7465190 -1.6099826, 51.5702298 -2.9701770, 51.0562801 -1.3227899, 53.3793873 -3.0985322, 53.7603866 -2.7517739 +388 +793 +55.9779143 -3.1684989, 55.9454499 -3.2050290 +no +monument, wayside cross, memorial, castle, monument, ruins, memorial, memorial, memorial, monument, memorial, wayside cross, monument, monument, memorial, memorial, memorial, memorial, memorial, memorial, memorial, ruins, castle, mine, monument, archaeological site, archaeological site, wayside shrine, memorial, memorial, memorial, memorial, archaeological site, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, monument, monument, memorial, castle, memorial, monument, memorial, wayside cross, fort, yes, fort, castle, fort, archaeological site, yes, memorial, attraction, fort, monument, monument, memorial, manor, manor, manor, building, church, church, church, fort, fort, memorial, memorial, castle, wayside shrine, memorial, monument, ruins, archaeological site, wayside shrine, castle, abbey, chapel, yes, mine shaft, memorial, castle, castle, castle, castle, castle, ruins, ruins, ruins, ruins, chapel, ruins, archaeological site, ruins, ruins, ruins, bunker, bunker, manor, ruins, bunker, fort, ruins, ruins, manor, ruins, fort, building, bunker, bunker, bunker, bunker, fort, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, fort, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, battery, fort, bunker, bunker, fort, bunker, memorial, ruins, ruins, ruins, castle, archaeological site, ruins, castle +yes +no +47 +49.3819891 8.7064791, 49.3903727 8.7038688, 49.3716601 8.7156918, 49.3882437 8.7497467, 49.3795036 8.7459449, 49.3921408 8.7451114, 49.3950715 8.7223322, 49.3736364 8.7471636 +yes +playground, garden, sports centre, swimming pool, marina, park, pitch, cinema, dance, table tennis, slipway, hackerspace, table, pool, swings, sauna, carousel, amusement arcade, dancing school, fitness centre, stadium, chess, water park, common, track, arts centre, recreation ground, bandstand, horse riding, golf course, miniature golf, picnic table, caroussel, nature reserve +Cinéma Marcel Pagnol, Le brady, L'Archipel +01.43.41.09.70, ab conduite, ECF, Cluny - Saint-Germain and 01.43.26.42.42, C.E.R. Brancion and 01.48.28.03.78, Permis Malin, Alkris, Auto école Place de Rungis, Auto Moto École Alésia, Caser formations, École de conduite Saint-Charles, Tour Eiffel Permis +172 +yes +yes and 5 +49.3905924 8.6739719, 49.4115364 8.6766566, 49.3905596 8.6743412, 49.3960051 8.6864746, 49.3960694 8.6860163, 49.4123557 8.7728324 +47.8931595 7.9220044, 47.6706257 9.6099451, 48.8409034 9.1608485, 49.5114392 8.6601812, 48.6525503 9.3971910, 49.7635857 9.6215330, 49.7711879 9.5730596, 49.7592849 9.5493504, 48.8085947 9.1086907, 48.8084453 9.1083882, 48.7672340 9.1634636, 48.7646487 9.1455060, 48.8517845 9.1905506, 47.7572746 9.4550989, 48.8048250 9.1776074, 48.7975239 9.1823227, 48.7764455 9.2484665, 49.7438132 9.5591926, 48.5441691 10.0649595, 48.5481307 10.0299806, 48.0859164 8.6731360, 48.0941243 8.6558902, 48.1009818 8.7502162, 48.3855242 8.4343050, 48.4254364 8.9771979, 48.7896840 9.2403361, 48.7898028 9.2401816, 48.7987295 9.2671029, 48.7877576 9.2251651, 48.7720412 9.1018571, 48.7714189 9.1039857, 48.7548168 9.1609347, 48.7393742 9.1043352, 48.7331011 9.0916034, 48.7294036 9.0792362, 48.7127340 9.0963494, 48.7061888 9.1632435, 48.6921724 9.3046368, 48.6844604 9.3243976, 48.6197323 9.4551205, 48.4917874 9.4829183, 48.4313237 9.4652398, 48.4024099 9.4114303, 48.4766686 9.8814611, 48.2380029 8.1766286, 48.7850407 9.1860670, 48.8431211 9.6562274, 48.6307794 9.4154575, 48.0319228 8.4105207, 48.0468749 8.4196097, 47.8638812 9.1743006, 48.4226168 8.9110413, 48.7841199 9.0904498, 48.0698826 8.3504215, 48.8047324 9.1919671, 49.3929098 8.7766872, 48.7219890 9.0756901, 48.7093678 9.1402100, 48.7063494 9.1632880, 48.6935525 9.2233254, 48.6938888 9.2230679, 48.6956216 9.2628339, 48.6944266 9.2857314, 48.6948056 9.2857019, 48.6586541 9.3789196, 48.6529244 9.3974295, 48.6306373 9.4582064, 48.6310225 9.4580187, 48.6296852 9.4774326, 48.6300159 9.4774419, 48.6288271 9.4974811, 48.6286715 9.5206816, 48.6316019 9.5381045, 48.6319392 9.5378497, 48.6333417 9.5538473, 48.6185241 9.5910600, 48.5837682 9.6626361, 48.5774390 9.6630037, 48.5654624 9.6356449, 48.5467301 9.6424113, 48.5336488 9.6575403, 48.5324382 9.6697929, 48.5275597 9.7174851, 48.5185011 9.7592517, 48.5182325 9.7572384, 48.5181465 9.7821863, 48.5183786 9.7822118, 48.5174461 9.8169719, 48.5108829 9.8343256, 48.5110458 9.8346520, 48.4773580 9.8789721, 48.4719735 9.8971941, 48.6614547 8.9975223, 48.4654321 9.9177765, 48.4568656 9.9471097, 48.4566115 9.9731268, 48.4575723 9.9853023, 48.4575380 10.0128756, 48.4578922 10.0113024, 48.4566193 10.0241328, 48.1830256 9.7816113, 48.4569309 10.0238267, 48.4568614 9.9728885, 48.4571568 9.9473354, 48.4775320 9.8792836, 48.5176649 9.8171648, 48.5199916 9.8076880, 48.5228113 9.7372686, 48.5275062 9.7199164, 48.5311230 9.6960245, 48.5333133 9.6642932, 48.5466820 9.6483292, 48.5636428 9.6740108, 48.5770570 9.6749696, 48.5840802 9.6628951, 48.6143628 9.6120035, 48.6186112 9.5926055, 48.6336256 9.5515051, 48.6287221 9.5185340, 48.6291371 9.4980277, 48.6402661 9.4329496, 48.6532481 9.3976460, 48.6589208 9.3792326, 48.6665530 9.3662042, 48.6754390 9.3458767, 48.6846579 9.3248490, 48.6925264 9.3047185, 48.6957928 9.2643366, 48.7024660 9.1783020, 48.7068672 9.1631451, 48.7069591 9.1634389, 48.7099095 9.1403554, 48.8871970 9.0451463, 48.8776217 9.0839978, 48.1612777 9.7900051, 48.6283215 9.5740630, 48.9168298 8.9430269, 48.4120306 8.4067443, 48.7156317 8.2268140, 48.0783822 8.4461271, 48.9607189 9.2194538, 48.9606145 9.2187767, 49.1769947 9.9318229, 48.7783246 9.5110956, 48.4587660 9.9811761, 48.6623908 9.2255884, 48.6218504 9.2494700, 48.5949915 9.2530806, 48.8361387 8.5909962, 47.8659661 7.7484426, 48.6208580 9.4555416, 49.4738271 9.7966510, 48.8164045 8.5799195, 48.6355511 9.2927221, 48.9546798 9.2502443, 48.7913607 8.1911997, 48.7290336 8.1554927, 48.6648842 9.2107380, 48.5758515 9.2289882, 48.6997566 9.4094867, 48.6938675 9.1999755, 48.5478154 9.2643058, 48.5806508 9.1736055, 48.5586863 9.1737419, 48.5435954 9.1493859, 49.5618613 9.6229111, 49.5614784 9.6227222, 49.5585167 9.6153308, 49.5404830 9.5884578, 49.5323399 9.5784239, 49.5323111 9.5778313, 49.5372729 9.5834493, 49.4242922 9.4869280, 49.4246245 9.4865582, 48.9800359 9.2295550, 48.9690446 9.2262070, 48.5415003 8.8029163, 48.7522067 8.2485351, 48.7535173 8.2447141, 48.7677441 8.2305067, 48.5339160 9.2339354, 49.0641753 9.8706185, 48.6971369 9.2439721, 48.6975218 9.2437986, 48.6751085 9.3456470, 48.6934507 9.2025498, 48.6930968 9.2025100, 48.6765698 9.3688639, 48.6763806 9.3691866, 48.7024629 9.4396321, 48.7038033 9.4501905, 48.7071589 9.4739798, 48.7068984 9.4739726, 48.7160960 9.5495317, 48.7030443 9.6013973, 48.7114471 9.5003428, 48.4005596 9.3164813, 48.4013004 9.3400954, 48.8219767 8.8342570, 49.0835719 9.8669593, 48.6119127 8.8048547, 48.8379781 8.6962629, 48.8664890 8.6819781, 49.0280176 9.8739938, 48.6160097 9.2200212, 48.6157890 9.2201356, 48.5787567 9.1741510, 48.5587099 9.1732797, 48.5341206 9.1897357, 49.0518476 9.8853764, 49.4534124 8.7619617, 49.0104277 8.4145748, 49.0683492 9.8995733, 48.4284117 8.6254017, 48.3301529 8.3967477, 48.9446845 8.4982423, 48.9420376 8.5063840, 48.9416725 8.5063002, 48.9248065 8.5977004, 48.9127357 8.6194374, 48.9086000 8.6501571, 48.8953199 8.7844283, 48.8803882 8.7880004, 48.8650961 9.2405642, 48.7089158 9.1148538, 48.8282641 8.8712993, 48.7644963 9.0315801, 48.8459831 8.4682949, 49.0294081 9.8404404, 48.5135967 9.7471919, 48.8381885 8.7479090, 48.7472998 9.0342151, 48.7421470 9.0351020, 48.7334551 9.0451019, 48.7290626 9.0800494, 48.6983948 9.6468413, 48.6992687 9.6445523, 48.6507051 8.2149644, 48.9704136 9.8727094, 48.6482872 9.4175625, 48.6479386 9.4174626, 48.6401517 9.4323574, 48.6107285 9.5013356, 48.6755332 9.5140860, 48.8797804 8.7885918, 48.8285183 8.8716562, 48.8107839 8.9226049, 48.7284217 9.0564560, 49.4964212 9.8159753, 49.5643411 9.8957718, 48.7509336 9.7392346, 48.7654033 9.7760138, 48.7092477 9.1149016, 48.7127753 9.0976601, 48.7224250 9.0759774, 48.7288647 9.0561891, 48.7337038 9.0454766, 48.7423208 9.0355761, 48.7473445 9.0346415, 48.7645813 9.0322451, 48.7844212 9.0003039, 48.8106073 8.9221678, 48.8955466 8.7849848, 48.9090368 8.6494218, 48.9464307 8.4929472, 48.9251683 8.5976789, 48.9155805 8.6166065, 48.9126798 8.6288162, 48.8955930 8.6334932, 48.1738882 9.9243238, 48.7359768 9.9564593, 49.5271869 9.4744451, 48.6341570 10.0297153, 47.7067101 8.9539274, 48.7406791 9.0358330, 47.9861753 9.9541146, 48.7097609 9.1403874, 48.7204349 9.0570947, 48.7048575 9.0466886, 48.7026191 9.0310935, 48.6956734 9.0150770, 48.6954821 9.0154086, 49.0826807 9.9068846, 48.5820337 9.5361343, 48.5712605 9.5309834, 48.6286557 9.5742425, 48.6140017 9.6120933, 48.6022552 9.7936233, 48.7511871 8.0194252, 48.7114985 9.5118429, 48.7122053 9.5620039, 48.7030671 9.6118484, 48.6989434 9.6444299, 48.6993800 9.6425167, 48.5459412 9.6258707, 48.3089635 9.2492758, 48.5153202 9.0859236, 48.5170905 9.0891957, 48.8348623 8.1815513, 47.6235849 9.5546946, 48.8386810 9.9568035, 48.4287133 9.6526070, 48.5798562 9.4316519, 48.0406218 8.5867569, 49.2734493 8.6948297, 48.0472287 8.5367557, 48.0868626 8.5904310, 48.0964731 8.5900449, 48.0962888 8.5896869, 48.1271981 8.5738132, 48.1273707 8.5741961, 48.2063358 8.6250931, 48.2056876 8.6226666, 48.2166201 8.6418668, 48.2167189 8.6414624, 48.2289745 8.6503769, 48.2289399 8.6499782, 48.2430476 8.6475682, 48.2431946 8.6479274, 48.2530209 8.6435126, 48.2531765 8.6438750, 48.2644203 8.6389933, 48.2645575 8.6393495, 48.2813956 8.6412975, 48.2813341 8.6408543, 48.2977146 8.6351507, 48.2972932 8.6347804, 48.3242880 8.6472160, 48.3243877 8.6476748, 48.3373584 8.6487786, 48.3373826 8.6483555, 48.3442700 8.6558343, 48.3469514 8.6618212, 48.3520586 8.6725316, 48.3522059 8.6721901, 48.3618750 8.6853301, 48.3619453 8.6849173, 48.3713676 8.6946796, 48.3714747 8.6942675, 48.3771842 8.7089372, 48.3774259 8.7087457, 48.4015796 8.7280541, 48.4011997 8.7277379, 48.4099417 8.7261467, 48.4099143 8.7265573, 48.4189313 8.7323191, 48.4189389 8.7328924, 48.4322851 8.7485039, 48.4288649 8.7451607, 48.4438641 8.7598648, 48.4440497 8.7595431, 48.4559934 8.7754291, 48.4717159 8.7892318, 48.4718223 8.7889048, 48.4561276 8.7750251, 48.4826991 8.8074012, 48.4829142 8.8071597, 48.4900488 8.8276497, 48.4900638 8.8270884, 48.5042436 8.8447640, 48.5037320 8.8430924, 48.5144951 8.8663899, 48.5147165 8.8661081, 48.5246719 8.8856662, 48.5255121 8.8869187, 48.5793415 8.8991287, 48.5792420 8.8996092, 48.5897158 8.8973723, 48.5898831 8.8977661, 48.6007304 8.8955808, 48.6008778 8.8962924, 48.6077084 8.8980109, 48.6079663 8.8972585, 48.6154948 8.9060911, 48.6151912 8.9052045, 48.6258039 8.9133937, 48.6258196 8.9129671, 48.6416668 8.9325258, 48.6424929 8.9331792, 48.6463972 8.9402165, 48.6475180 8.9443391, 48.6544979 8.9553375, 48.6546364 8.9549938, 48.6660811 8.9634531, 48.6642502 8.9625290, 48.6859489 8.9803457, 48.6861202 8.9800142, 48.7052895 9.0487083, 48.9563601 8.4816797, 48.9628669 8.4705850, 48.9720450 8.4492261, 48.9800139 8.4373000, 48.9918759 8.4366585, 49.0226256 8.4738843, 49.0395003 8.4872545, 49.0579562 8.5001354, 49.0715988 8.5098925, 49.1278148 8.5510693, 49.1616098 8.5690687, 49.1619321 8.5685770, 49.1730981 8.5754146, 49.1863209 8.5834869, 49.1990464 8.5921852, 49.1981135 8.5909866, 49.2128827 8.6012971, 49.2246552 8.6038684, 49.2362134 8.6022889, 49.2481139 8.6006746, 49.2662926 8.6102057, 49.2712965 8.6143221, 48.9062510 9.1542529, 48.9060983 9.1547569, 48.8583446 9.1257738, 48.8584252 9.1252132, 48.8046855 9.0395252, 48.8044203 9.0399424, 48.9524256 9.2073550, 48.9522036 9.2076234, 49.2743678 8.7629605, 49.2717609 8.6653623, 49.2727646 8.6477288, 49.2895781 8.6241046, 48.6937396 8.9998316, 48.6934591 9.0005857, 49.3127537 8.6293798, 49.3227278 8.6300450, 49.3238313 8.6296606, 49.3493381 8.6314983, 49.3506615 8.6310836, 49.3624388 8.6321377, 49.3777679 8.6340671, 49.3996042 8.6379323, 49.3995595 8.6374762, 49.4242619 8.6344464, 49.4415225 8.6440635, 49.4478965 8.6458733, 49.4497988 8.6467003, 49.4629951 8.6455334, 49.4767567 8.6402530, 49.4791177 8.6400463, 49.4935411 8.6393382, 49.4935774 8.6389413, 49.5081718 8.6398428, 49.5097612 8.6392983, 49.5313281 8.6336119, 49.5312920 8.6331428, 49.5525637 8.6279741, 49.5628605 8.6308686, 49.5629636 8.6305028, 49.5736837 8.6351574, 49.5737159 8.6346703, 49.5849793 8.6344711, 49.5927035 8.6319637, 49.6087826 8.6293910, 49.3087695 8.5838082, 49.3089156 8.5844077, 49.3148038 8.5766768, 49.3148851 8.5773384, 49.3265942 8.5634383, 49.3401364 8.5565264, 49.3499012 8.5518260, 49.3500649 8.5521838, 49.3669972 8.5452572, 49.3671253 8.5456554, 49.4035912 8.5452834, 49.4340209 8.5404260, 49.4340541 8.5408405, 49.4447718 8.5409303, 49.4447281 8.5413334, 48.5221209 9.2518579, 48.7138577 8.0381166, 48.5074260 9.1044855, 48.4966756 9.1647104, 48.7065484 9.1643826, 48.6529830 10.0549964, 48.6617309 7.9371316, 48.4604679 10.1730350, 48.7707679 9.2502478, 49.4983798 8.7221746, 48.5770937 10.1564522, 49.1356288 10.1460742, 49.6508039 9.5817874, 48.9688930 10.0421164, 48.4176102 8.6975529, 48.4510454 8.7024623, 48.5000283 9.2685370, 48.7443551 8.0688245, 48.7293246 8.0869285, 48.6394888 8.0724431, 48.6565743 8.0901528, 48.1245036 9.9555176, 48.5961319 10.1848887, 48.6980717 9.2484000, 48.1584954 9.8273206, 49.3726175 8.6154781, 49.3728712 8.6138114, 48.0740864 9.9161494, 47.6370345 9.6797608, 48.9159563 8.3440876, 48.8526869 8.2665743, 48.8301365 8.2749044, 48.8539086 8.2653152, 49.5396049 9.8644960, 49.5218245 9.8353583, 48.6992588 7.9806463, 47.7914795 8.9797220, 47.7515920 9.0963188, 47.6884901 9.1207814, 47.8182309 9.0258793, 47.7715126 8.9829763, 48.3505082 9.4001775, 48.3121609 8.6420209, 48.3122837 8.6416456, 48.3863838 8.7265175, 48.3864661 8.7260545, 48.5603672 8.8930171, 48.5605008 8.8925417, 48.5431572 8.8902599, 48.5431163 8.8898269, 48.6759155 8.9637953, 48.7855955 9.0161288, 48.7860187 9.0156133, 49.2685960 8.7808264, 49.2752513 8.7415830, 49.2807376 8.7212441, 49.2805216 8.7210148, 49.2784436 8.7067962, 49.2782043 8.7070247, 49.2761940 8.6961312, 49.2753863 8.6915806, 49.2720878 8.6653395, 49.2735130 8.6454921, 49.2772630 8.6311618, 49.2770465 8.6306095, 49.2724834 8.6147195, 49.2851444 8.6114523, 49.2896916 8.6235466, 49.3027549 8.6271841, 49.3028738 8.6268039, 49.2925232 8.6002521, 49.2925827 8.6009328, 49.2988050 8.5936118, 49.2990364 8.5939962, 49.3365839 8.6307588, 49.3366657 8.6303464, 49.3897310 8.6391038, 49.3897229 8.6386760, 49.4090665 8.6360177, 49.4090472 8.6355624, 49.3786252 8.6340635, 49.4678475 8.6434689, 49.5201575 8.6377645, 49.5201414 8.6373810, 49.5848404 8.6341265, 49.6087473 8.6288107, 49.3319505 8.5414892, 49.3322094 8.5412671, 49.3308082 8.5193728, 49.3310823 8.5183610, 49.3310769 8.5049699, 49.3315658 8.5013626, 49.3339319 8.4868857, 49.3339040 8.4859031, 49.3391146 8.4759931, 49.3392965 8.4763715, 49.0083118 8.4586493, 49.0084147 8.4581585, 49.0479857 8.4924290, 49.0479541 8.4929699, 49.1031294 8.5411948, 49.1041106 8.5425407, 49.1383259 8.5543833, 49.1384063 8.5539051, 49.2290781 8.6026935, 48.0844287 8.5950728, 48.0842978 8.5946580, 48.0707959 8.6062199, 48.0729727 8.6031045, 48.0616780 8.6172924, 48.0614729 8.6169757, 48.0467958 8.6243721, 48.0467018 8.6239468, 48.0341264 8.6201920, 48.0308426 8.6174004, 48.1119121 8.5822120, 48.1117959 8.5818045, 48.7390909 9.1046003, 48.7399694 9.1089399, 48.4015433 9.0154681, 48.3690922 8.9823530, 48.6050833 9.7626886, 48.8298430 8.2749761, 48.8899782 8.1857857, 48.7640789 8.9877233, 47.8328952 8.7686961, 48.3570794 8.4941471, 48.7769422 8.2549352, 48.1391265 9.5711715, 48.5790648 9.6732660, 48.7612090 9.0913193, 47.8748989 8.3130633, 48.3236105 8.9161333, 48.3234236 8.9166417, 48.3354920 8.9500999, 48.7933136 8.3221746, 47.6551491 8.2488428, 47.6976799 9.6153172, 48.7866683 9.4272710, 47.6209896 8.2562141, 47.7163607 9.4892661, 47.8086752 9.3139623, 47.7784875 9.3563684, 47.7679769 9.0454226, 47.7090187 9.0968096, 47.7299238 9.0291139, 49.6866841 9.7590894, 48.8168471 9.3139413, 48.3610944 8.5627862, 48.3509823 8.8958946, 48.7814979 8.0742777, 49.5483312 8.6217587, 49.5480505 8.6219075, 49.5530900 8.6271975, 49.4551559 8.5414923, 49.4535171 8.5424121, 49.4544949 8.5572809, 49.4547252 8.5574877, 49.4576280 8.5488333, 49.4578834 8.5490444, 49.4502084 8.5687290, 49.4495578 8.5714117, 49.4960783 8.5568899, 49.4959437 8.5573374, 49.4351626 8.6037261, 49.4353535 8.6040008, 49.4400482 8.5951900, 49.4402646 8.5954224, 49.4233651 8.6243011, 49.4235630 8.6246347, 49.3715952 8.5445479, 49.3716150 8.5449583, 49.3797900 8.5437786, 49.3798146 8.5441885, 49.4147544 8.5477856, 49.4147652 8.5481923, 49.4234904 8.5447593, 49.4235969 8.5451401, 48.9378783 9.1912896, 48.9378316 9.1918418, 49.3216434 8.5680879, 48.4123305 8.6398138, 48.4354246 8.7298101, 48.6880144 9.1785474, 48.6858077 9.1789465, 48.0595559 9.8025082, 48.3514994 8.6437519, 48.8875682 9.4009667, 48.8876980 9.4006577, 47.6362371 8.3136248, 47.6779532 8.3787909, 47.6936388 8.3971377, 47.7387708 8.4432421, 48.8785766 8.2176171, 47.7197129 8.3478040, 47.7511295 8.3431455, 47.7672706 8.3721662, 47.8617756 8.4449749, 48.5969608 8.3495784, 48.7023715 9.0313312, 48.3062437 8.8763154, 48.3058874 8.8764285, 48.3357611 8.9499201, 47.8004338 9.1706255, 48.3681478 8.4801354, 48.0196978 9.4665935, 48.6857923 9.1793283, 48.6880227 9.1789153, 48.6069853 8.1926563, 48.8593992 9.3241072, 48.8715005 8.2321744, 48.3423742 8.4719118, 49.7679754 9.5956223, 49.7769359 9.5730416, 48.8786367 8.1735131, 48.0713702 9.0372714, 48.6848670 7.9775150, 49.3798953 8.7244355, 47.7798874 9.1801891, 47.7467856 9.2219730, 47.7024077 9.2711721, 49.7787336 9.5717771, 49.7663206 9.5991074, 49.7695219 9.5838183, 48.8166940 9.3150476, 48.8151457 9.4065628, 48.7916196 9.5897736, 47.8910671 9.9026842, 48.8655865 8.6613281, 47.7246597 9.0581343, 48.5364785 8.8432038, 47.8361535 9.8150148, 47.9351250 9.8898565, 48.7893036 9.5560934, 49.1923091 9.8718353, 47.7169755 9.5804184, 48.4227649 9.9594069, 48.7359443 9.1642299, 48.7640362 8.1301721, 48.6633238 8.8019223, 48.7393241 8.7097934, 48.7345657 8.7897901, 48.7441012 8.8062343, 48.7482361 8.8816313, 48.7581302 8.9422327, 48.7612316 8.8240758, 49.7716334 9.3622440, 49.7717798 9.4016861, 49.7804454 9.4381406, 48.6158224 9.5925440, 48.7139662 9.1632623, 48.7143277 9.1636349, 48.4872370 7.8598603, 48.8046022 9.2898469, 48.8138342 9.3497442, 48.8154088 9.4066499, 48.8102775 9.4322703, 48.8074826 9.4751998, 48.8069459 9.4770765, 48.8078174 9.5037961, 48.8080541 9.5036458, 48.8198273 9.5426560, 48.8200502 9.5428065, 48.8030326 9.2877111, 48.7798546 9.1993849, 48.8133527 8.3020104, 48.7560825 9.0917547, 48.8170882 9.0553505, 48.4071384 8.5365533, 48.8154144 9.5168585, 48.8188802 9.5202568, 48.7478672 9.6172670, 48.5344168 9.6558410, 48.5453878 9.6446335, 48.5531535 9.6323297, 48.5596589 9.6304432, 48.5716398 9.6511007, 48.5308763 9.6959963, 48.5224429 9.7375540, 48.4114429 9.9732844, 48.4958713 9.8455097, 48.4386013 9.9754436, 48.4386526 9.9758951, 48.3704027 8.5354285, 48.8178799 9.5186817, 48.3900820 8.4765948, 47.8296456 8.9962185, 47.8856489 9.1505352, 47.9060756 9.1734514, 49.7230466 9.6337778, 48.3185342 9.2959345, 48.5436491 9.1502839, 48.5360389 9.1360139, 49.6974530 9.6271813, 48.7665879 9.1834710, 48.3728210 8.9367987, 47.6825444 9.7853268, 47.6954449 9.7932976, 47.7061333 9.8028095, 47.7104232 9.8141411, 47.7171469 9.8406117, 47.7261390 9.8725292, 47.7424942 9.8953725, 47.7525942 9.9067703, 47.6210810 9.7381655, 47.6385438 9.7433628, 47.6475323 9.7532081, 47.6568329 9.7692078, 47.6674698 9.7801294, 47.7114584 9.8215361, 47.7197408 9.8576128, 47.7627504 9.9179727, 47.7729395 9.9331797, 47.7777565 9.9484506, 47.7899664 9.9658080, 47.7989986 9.9798027, 47.8161444 9.9911528, 47.8245186 9.9917204, 47.8336756 9.9914879, 47.8489069 9.9923148, 47.8610368 10.0079398, 47.8713224 10.0266884, 47.8850040 10.0408657, 47.8969530 10.0537807, 47.9094051 10.0669827, 47.9222606 10.0801768, 47.9332030 10.0958824, 49.4982324 8.7655658, 48.0320171 8.5433056, 48.6587332 10.2204576, 48.7344923 10.1593282, 48.6338300 9.9951868, 48.7117384 8.8171859, 48.8654161 8.5566606, 48.3724339 9.8123755, 48.7673126 8.1710003, 48.7033738 8.1232844, 48.4322357 9.1288781, 48.7937419 9.1615616, 49.2282577 9.1394988, 48.6797333 10.1041771, 49.0804342 8.5200945, 49.4349711 8.5675363, 47.9211739 8.6720702, 47.9243660 8.5951144, 47.9270881 8.5763973, 47.9206487 8.5048201, 47.9272378 8.5397640, 47.9119552 8.4726552, 47.9111741 8.4713726, 47.8954235 8.4400780, 47.8955227 8.4242315, 47.8895667 8.4055618, 47.8992706 8.3120095, 47.9029212 8.2574463, 47.9050432 8.2222440, 47.9062746 8.1362588, 47.9146743 8.0818462, 48.7355711 9.3524087, 48.7115328 10.0939877, 48.7240254 10.0934189, 48.6479161 9.9618928, 48.8195893 10.1185590, 48.7591062 10.1036537, 48.8029141 10.1254094, 48.6719594 8.9984651, 48.7749207 9.9383719, 48.7263455 10.0235930, 48.4135032 8.2449603, 47.9995301 9.9695933, 49.2854470 8.6116948, 49.3219743 8.5683836, 47.8096201 8.9909358, 49.7068665 9.7781075, 48.5513494 8.2504632, 47.8586463 9.3550964, 47.8762025 9.3450098, 48.8078487 10.2116028, 48.5917876 10.1317650, 48.5999880 10.0683864, 48.5347143 7.9226115, 48.5669403 7.8349143, 48.6581973 7.9520294, 48.3447143 9.1625738, 49.3269369 8.4562714, 48.4986374 9.8430141, 48.6414710 9.5955141, 48.7240485 8.3586705, 48.6565200 9.9340273, 48.7006808 9.9077288, 48.5056851 8.9313235, 49.4374384 8.6412289, 49.4582684 8.6461975, 49.4243132 8.6340120, 49.3624164 8.6317186, 49.3124170 8.6289601, 49.2130203 8.6008043, 49.2478377 8.6002076, 49.2565956 8.6018218, 49.2565096 8.6023342, 49.2360633 8.6017869, 49.1863754 8.5829504, 49.1729647 8.5747696, 48.7660277 9.1108881, 49.0773701 9.3926672, 48.4583916 8.3744317, 48.4623649 8.3486391, 49.4590109 8.5776135, 48.7980930 9.2139999, 48.7903192 9.2227408, 48.4496976 9.7983302, 48.5186599 10.1712401, 48.4762236 9.5948157, 49.2977817 9.4018022, 49.3589734 9.4688627, 49.3809781 9.4973151, 49.3335547 8.5103395, 48.7019319 8.9166915, 48.0281381 9.8411581, 48.6699273 8.7897063, 47.7074751 7.5255506, 47.6679584 9.3399687, 48.5064684 9.1076580, 49.4635962 9.7770129, 48.7722188 9.1412022, 48.7803603 9.1769220, 48.7769014 9.1818398, 48.8359049 9.2179531, 48.8375798 9.2206119, 48.8375330 9.2234945, 48.7721996 9.1414944, 49.0373756 8.3121690, 47.8666461 8.1705984, 48.6953283 10.1734823, 48.7986667 9.2046281, 49.3737643 9.8712252, 48.6929518 9.2193656, 48.6938357 9.2206004, 49.0120022 8.4077454, 49.0178024 8.4036805, 48.9510439 8.8779408, 48.5111315 8.5279242, 48.7807176 9.1831154, 49.2359955 9.2145358, 49.2511272 9.2157990, 48.8270615 9.2104735, 48.8063951 9.2133695, 48.8328169 9.2156668, 48.8270900 9.2162522, 48.7895293 9.1912731, 48.7926529 9.1960124, 48.8024262 9.2102505, 48.8096017 9.2181716, 48.6176296 10.1490073, 48.6783345 9.1273774, 49.4089845 9.4328833, 48.1098046 10.0812923, 49.6071719 9.8174005, 49.2683049 9.1484001, 49.0379898 8.9165667, 48.5406115 8.6982202, 49.0134413 8.4161836, 49.0151348 8.4164330, 48.6037512 8.7366987, 48.5692403 8.7178066, 48.5893646 8.7315048, 48.9629464 8.4696573, 49.3041861 8.5654006, 49.3084940 8.4882688, 49.3063579 8.5279449, 49.0335897 8.3768366, 49.2764479 9.2287816, 48.5083302 8.1360071, 48.5716165 10.1546193, 48.5234036 10.0829835, 48.5644946 10.1405713, 48.6006926 10.1930766, 48.4950310 10.0867089, 48.5585352 10.1276554, 48.4802340 10.1035539, 48.5499229 10.1089296, 48.5094281 10.0809424, 48.4913880 10.0897599, 48.5793227 10.1694371, 48.5370883 10.0921411, 48.6523282 10.2286344, 48.6777857 10.2184380, 48.6672503 10.2279878, 48.6370427 10.2166432, 48.6242549 10.2192783, 48.6120766 10.2056884, 48.6920895 10.2143262, 48.7030136 10.2146742, 48.8618705 10.1932426, 48.8332632 10.2076457, 48.8827238 10.1645929, 48.9421283 10.1919918, 49.0364808 10.1865475, 49.0173985 10.1969915, 48.7571167 10.2018021, 48.7402931 10.1962372, 48.8042748 10.2100402, 48.8476048 10.1970857, 48.8970654 10.1761638, 48.7897010 10.2109234, 48.8686720 10.1739204, 48.9261748 10.1945281, 48.9533976 10.1868556, 49.0011869 10.1934122, 49.0225740 10.1963081, 49.0924030 10.2095399, 49.0609686 10.1808684, 49.0760021 10.1991841, 49.0492076 10.1772995, 49.2125333 9.2753125, 49.2268390 8.9484307, 48.6013920 8.0919220, 48.5679097 8.1432529, 48.8001812 9.7973925, 49.2577216 8.5048208, 49.2294132 8.4964924, 49.2824056 8.5244084, 48.7464556 8.2066346, 49.4651669 8.5271434, 49.3780540 8.6486849, 49.4648287 8.5270186, 48.3098676 7.8350464, 47.9924895 8.6077700, 47.9923293 8.6073623, 48.7543049 9.1449896, 48.7765896 9.0222248, 47.7074526 9.8044526, 47.7110714 9.8186784, 47.7326922 9.8808486, 47.6811660 9.7846265, 47.6957684 9.7929756, 47.7112098 9.8198943, 47.7248431 9.8701879, 47.7109077 9.8173971, 47.7173970 9.8403679, 47.7426976 9.8951877, 47.7199073 9.8575529, 47.8245155 9.9914569, 47.7779873 9.9483692, 47.8149009 9.9906548, 47.7899731 9.9654247, 47.7731043 9.9330387, 47.8007641 9.9821144, 47.8346465 9.9910330, 47.7630499 9.9179319, 47.8489307 9.9919631, 47.9223871 10.0797186, 47.9095392 10.0665796, 47.8715057 10.0263294, 47.9324346 10.0945636, 47.8972148 10.0536202, 47.8611937 10.0076449, 47.6212371 9.7377938, 49.2427738 8.6584711, 49.2277019 8.6549049, 47.7251277 9.7136677, 48.2882830 10.0373949, 48.3678389 8.9810088, 47.6983756 9.6703430, 48.5345073 8.5657906, 47.8354774 9.1733536, 47.7196201 9.2434980, 48.4688382 8.5243138, 48.4462792 8.4404912, 48.4651360 8.3226158, 48.4798743 8.2756820, 48.5509660 8.2160283, 48.5282910 8.2156177, 47.8583352 8.0527659, 48.6233742 9.6474853, 47.8421728 9.2591347, 47.8963299 9.2766958, 49.0024709 8.4620661, 48.4617734 9.1534473, 48.7463828 9.1631837, 48.7464742 9.1635807, 48.4295834 9.1753342, 48.6560469 7.9614999, 48.6067013 7.9957688, 48.5935738 7.9814908, 48.5290189 7.9282942, 48.4305716 7.9656859, 48.4476505 7.9377941, 48.3742224 8.0253808, 48.2895888 8.0689839, 49.2283026 8.8731254, 48.0080734 8.9166012, 47.9412086 9.2958515, 47.8780689 8.7556860, 47.9683465 9.1545316, 48.0887124 8.9262412, 48.1419177 8.8203361, 48.9560784 8.4813376, 49.0906732 8.5312604, 49.3402268 8.5570096, 49.3267720 8.5639613, 47.8834738 8.7282837, 48.3602149 9.1986196, 48.6482603 7.9925410, 48.5905388 8.1221704, 48.5816658 8.2219592, 48.8149369 8.9153444, 48.8146940 8.9150211, 48.7110459 10.0443640, 48.2291935 9.0734132, 49.1810203 9.3405836, 49.6376906 9.7310949, 48.6725457 9.0031015, 47.9824197 10.0071204, 47.9633804 9.7640640, 47.9377464 9.7580317, 47.8005130 9.6082012, 47.7827675 9.5985322, 47.8642151 9.6775028, 47.9102931 9.7647206, 47.8468824 9.6380335, 47.8288333 9.6165700, 47.8644105 9.6772479, 47.7976959 9.6066726, 47.7798501 9.5963029, 47.8269115 9.6166384, 47.9110831 9.7457007, 48.0417478 9.7901424, 48.0076356 9.7742830, 49.0398224 9.7392156, 48.8145665 8.1477899, 48.8700451 8.2330963, 49.4401569 8.6267606, 49.4827502 8.9652469, 49.2261440 8.4015394, 49.2270042 8.3930670, 49.2146867 8.4245865, 48.7852067 9.6873710, 49.3110545 9.1469762, 49.3257362 9.1127483, 49.3338501 9.1019193, 49.3837384 9.0786578, 49.4005395 9.0671825, 49.4398923 8.9044925, 48.4629531 10.1380779, 48.8047207 9.1776674, 48.4439448 8.8366702, 48.8318003 9.2086867, 48.8342680 9.2098271, 48.8363275 9.2136031, 48.6069355 9.6317726, 48.8023955 9.2082550, 48.8123036 9.2196914, 48.8169866 9.2258518, 48.8242368 9.2224948, 48.8259297 9.2110930, 48.8343231 9.2081932, 49.0629251 9.1970198, 49.3918443 8.7985821, 49.3926349 8.8038177, 48.8128038 9.2216738, 48.5246441 9.3443560, 48.1387764 9.7690366, 48.5423680 9.4008658, 49.2809102 9.3551891, 49.2809335 9.3557682, 49.4141841 8.6552752, 49.2978779 9.3767644, 49.3795727 9.4593926, 49.3797955 9.4604041, 49.3927454 9.4696114, 49.4062626 9.4721040, 49.4101237 9.4741552, 48.8002789 9.0640069, 49.0011181 8.7173021, 49.0226343 8.7042723, 48.3425352 8.5795308, 48.8257307 9.3013261, 49.0006795 8.7705306, 48.7170600 8.5425541, 47.9418017 9.0439966, 48.0005307 9.1181165, 48.0452735 9.2370497, 48.6921929 9.6652387, 48.8150939 9.0241163, 48.7171935 10.2085770, 48.7281783 10.2004541, 48.7730993 10.2108669, 48.9290165 8.6489728, 48.9371276 8.7215122, 49.4940290 9.2614381, 48.9147442 8.7639662, 48.9149020 8.7645148, 48.9242325 8.7483836, 48.9189948 8.8492099, 47.7993589 9.7259098, 47.8117916 9.7614954, 48.7548994 9.1746002, 49.7078295 9.8039152, 49.6375662 9.7305937, 49.6611667 9.7566617, 49.6719607 9.7713529, 49.7006601 9.7954395, 49.6060244 9.6866807, 49.6510182 9.7397939, 49.6903001 9.7878873, 49.4769864 9.5641676, 49.5712029 9.6403884, 49.4710234 9.5601560, 49.5847956 9.6616762, 49.5158134 9.5684642, 49.5802327 9.6475074, 49.5027455 9.5624713, 49.3204388 9.4125836, 49.3135309 9.4057155, 49.2256498 9.3508030, 49.1781679 9.3380479, 49.2066141 9.3436718, 49.1616635 9.3004576, 49.1810215 9.3400832, 49.2163030 9.3470828, 49.2136669 9.5260814, 49.5927143 9.7364883, 49.5549584 8.5103589, 49.5504868 8.4235355, 49.5540665 8.4673540, 49.5546737 8.4894870, 49.5534822 8.4431096, 49.5552322 8.5100715, 49.5530546 8.4434530, 49.5507729 8.4234367, 49.5544057 8.4894966, 49.0563897 8.8749520, 49.1142373 8.5502969, 49.1143832 8.5498328, 49.0228039 8.4734539, 49.0388576 8.4862787, 48.2640265 9.4987664, 49.0135739 8.4202992, 48.9331986 8.8054530, 48.9174229 9.2198333, 48.5609982 8.4262796, 49.5721278 9.4133089, 49.0695697 8.5077440, 49.0905926 8.5317581, 48.7949712 9.2020362, 49.3058042 8.5323283, 49.1618568 9.2788309, 48.5579834 9.8178047, 48.1753593 8.6009101, 48.1432037 8.5710423, 48.1432443 8.5706427, 48.1598980 8.5730541, 48.1598046 8.5726511, 49.1721181 9.3296726, 49.1724302 9.3294218, 49.2162912 9.3475840, 48.9000520 9.0220794, 49.1847108 10.0900827, 49.1848252 10.0891598, 49.1896587 10.1082909, 49.1898348 10.1079377, 49.1986441 10.1270995, 49.1988046 10.1266370, 48.1912071 8.5866264, 48.1913427 8.5862720, 48.1999009 8.6040224, 48.1996877 8.6042934, 48.1761727 8.5742583, 48.1761942 8.5738077, 49.1832002 9.2198007, 49.1835335 9.2196862, 49.1887589 9.1831723, 49.1890446 9.1832209, 49.1696319 9.2528172, 48.8542751 8.8988339, 49.2504081 9.0980374, 47.9439493 7.7362338, 49.2428488 9.1540163, 49.5941383 8.6311749, 47.9391928 7.8716401, 49.1676442 9.2597076, 49.1206387 9.3002491, 49.1863674 9.1970883, 49.1867235 9.1971601, 49.3930439 8.5437518, 49.3930296 8.5441632, 48.0198623 8.0751576, 47.9907295 8.1179395, 47.9809321 8.1427470, 49.0240512 8.3759973, 49.1316010 9.3015276, 49.1353274 9.3040368, 49.1354048 9.3046888, 49.1509022 9.3021184, 49.0723846 9.2819012, 49.0771419 9.3096681, 49.0837516 9.2903086, 49.0837076 9.2896928, 49.0923412 9.2925464, 49.0923485 9.2920329, 49.1060069 9.3021985, 49.1062536 9.3017889, 49.1871870 9.1416283, 49.1875135 9.1416704, 48.9089526 8.6896657, 48.9093271 8.6896039, 48.9167507 8.7200161, 48.9169880 8.7193856, 49.1881041 9.1586514, 49.1885956 9.1193045, 49.1887531 9.1663317, 49.1889471 9.1654843, 49.1935880 9.1069908, 49.1941353 9.1064907, 49.1962800 9.0992722, 49.1965765 9.0994330, 49.2036084 9.0845099, 49.2036611 9.0837736, 49.2114728 9.0729929, 49.2118116 9.0713709, 49.2133993 9.0307116, 49.2142990 9.0467238, 49.2147927 9.0477382, 49.2155578 9.0111665, 49.2159065 9.0112163, 49.2185724 8.9937861, 49.2189155 8.9938342, 49.2218636 8.9761899, 49.2219514 8.9712138, 49.2248674 8.9472710, 49.2251454 8.9475697, 49.2266030 8.9376576, 49.2269236 8.9219300, 49.2273008 8.9222375, 49.2317164 8.9040974, 49.2317859 8.9044922, 49.2401385 8.8905193, 49.2429873 8.8802683, 49.2495696 8.8542327, 49.2497135 8.8548752, 49.2539483 8.8424593, 49.2541812 8.8428710, 49.2568309 8.8327005, 49.2583625 8.8204228, 49.2587335 8.8197907, 49.2611840 8.8071279, 49.2637538 8.8014070, 49.2659403 8.7934976, 49.2723335 8.7690189, 49.4170428 9.9859917, 49.3322519 9.4113637, 49.3323330 9.4117828, 47.8987210 8.2902797, 49.2067543 9.3440942, 49.2256829 9.3512941, 49.2346814 9.3494335, 49.2350284 9.3488643, 49.2607647 9.3531930, 49.2721106 9.3520496, 49.2721130 9.3515930, 49.2545234 9.3523889, 49.2547890 9.3530127, 47.9248891 7.7105768, 47.8995226 7.6787759, 47.8816479 7.7126377, 49.3051714 9.3924690, 49.3052611 9.3918019, 49.3132850 9.4061184, 49.3203389 9.4131413, 49.3255112 9.4136580, 49.3429653 9.4064294, 49.3435612 9.4069728, 49.1933219 9.3504312, 49.1950681 9.3511910, 49.1969154 9.3501739, 49.2428822 9.3487869, 49.2429988 9.3482992, 49.2885484 9.3674880, 49.2888492 9.3671594, 49.2958364 9.3767718, 49.2959616 9.3776113, 49.1780806 9.3385165, 49.1870030 9.3458296, 49.1876263 9.3456559, 49.4020579 9.9426631, 49.0045901 9.2376857, 49.0062638 9.2386840, 49.0142088 9.2460114, 49.0515765 9.1483214, 47.9039911 7.7383012, 49.1616461 9.3009935, 49.1694306 9.3107204, 49.1704268 9.3162466, 47.9727362 7.9445677, 47.9606923 7.9897254, 49.6055676 9.6868114, 49.3911061 10.1211012, 49.4380783 10.0161634, 48.9743928 8.7957421, 49.0561625 9.2688179, 49.0594630 9.2693759, 47.8617298 7.6974840, 49.2142768 9.0230381, 47.9824084 7.8543163, 47.9789931 7.9111705, 47.9795406 7.9099467, 48.1429371 8.6384638, 48.1320146 8.6355665, 48.1499024 8.6152193, 49.0304599 9.2531977, 49.5015800 10.0350131, 49.4759747 9.9397946, 49.4375193 9.9653786, 49.4656731 9.9274158, 49.4845684 9.8958289, 49.4532351 9.9581528, 49.3578060 9.4179989, 49.3580375 9.4176915, 49.3822707 9.9380177, 49.3640239 9.9013334, 49.4317944 9.5039781, 49.4317696 9.5032233, 49.4407047 9.5144379, 49.4409211 9.5138979, 49.4469098 9.5186981, 49.4471603 9.5184619, 48.8725770 8.6904871, 48.7752034 9.0254208, 48.7754392 9.0239267, 48.7761735 9.0236883, 48.7762929 9.0238041, 48.7763222 9.0224710, 48.9740454 9.2647035, 48.9900450 9.2318387, 48.9918045 9.2329174, 49.0141796 9.2465322, 49.0456156 9.2645516, 48.9219152 9.0236911, 48.9260777 9.0680844, 48.0441698 7.9757164, 48.0505716 8.0496292, 48.6003226 9.1902861, 48.6005238 9.1901062, 49.1563088 9.3072238, 49.1570966 9.3161343, 49.2701869 9.6254730, 49.3627346 9.4259543, 49.3628020 9.4269527, 49.3688240 9.4397699, 49.3690412 9.4393949, 49.3752319 9.4523197, 49.3753066 9.4533315, 48.9217824 8.9317455, 48.8343987 8.8560836, 48.8353603 8.8553140, 48.8521225 8.8002086, 48.8525235 8.8006640, 48.8672672 8.7912439, 48.8675228 8.7920279, 48.8755213 8.7939155, 47.9162923 8.0705453, 47.9169414 8.0695102, 47.9335625 8.0303327, 49.1985853 9.5675230, 49.2036230 9.4713725, 49.2038764 9.4709519, 49.2057822 9.4822418, 49.2066521 9.4849493, 49.3178826 9.6893395, 49.3413300 9.7360884, 49.2804805 9.7398425, 49.2152324 9.5901564, 49.2155556 9.5901928, 49.1826470 9.7457752, 49.1829911 9.7455545, 49.2014502 9.6852944, 49.2062055 9.6383435, 48.8556122 9.1240650, 48.8595120 9.1069904, 48.9239379 9.1534561, 48.9241264 9.1537921, 49.1743390 9.8670407, 49.2954225 9.7786234, 49.3266174 9.8116523, 49.3832252 9.8481597, 49.3925185 9.8606230, 49.4104072 9.8827154, 49.4173592 9.8680119, 49.4126354 9.8073800, 49.4217191 9.8163356, 48.8957794 9.1514907, 48.8958618 9.1510115, 48.8840902 9.1453702, 48.8839518 9.1447028, 48.8723227 9.1366426, 48.8723919 9.1361233, 48.8444490 9.1145130, 48.8379323 9.1003275, 48.8381889 9.0999711, 48.8311361 9.0867367, 48.8313792 9.0863760, 48.8219855 9.0834900, 48.8219651 9.0781112, 48.8213163 9.0768080, 48.8143349 9.0649853, 48.8147418 9.0645765, 48.8081518 9.0478713, 48.8084962 9.0476868, 48.7824919 9.0079472, 48.7828894 9.0081705, 49.3462673 9.7652536, 49.3322744 9.9286728, 49.1835852 10.0756758, 49.1833333 10.0696043, 49.4620731 9.8465217, 49.4311530 9.8374961, 49.4588393 9.8921111, 49.4733774 9.8731179, 49.4779904 9.8366968, 47.7860281 9.1194209, 48.8471779 8.9618798, 49.5398575 9.1061778, 49.5514779 9.1200926, 48.9213373 9.1585809, 48.9274840 9.1694800, 48.9277300 9.1691057, 49.1774172 9.9585539, 49.1777132 9.9580959, 49.1833611 10.0480406, 49.1836647 10.0482720, 49.3928222 9.4691860, 49.4174596 9.4780929, 49.4178835 9.4789911, 48.9895024 9.6120129, 48.8960794 9.1960948, 49.0333941 9.9294090, 49.4544367 9.5315328, 49.4560320 9.5330608, 49.4620658 9.5447052, 49.4621953 9.5441557, 49.4683691 9.5576946, 49.4696743 9.5539390, 49.4772960 9.5647733, 49.4889725 9.5650150, 49.4895315 9.5653540, 49.5027792 9.5628991, 49.1735411 9.9956779, 49.1738282 9.9957325, 49.1774935 10.0296026, 48.8462333 9.1297668, 48.8452915 9.1309330, 49.5403467 9.5889109, 49.5504165 9.6068297, 49.5505889 9.6064863, 49.5585365 9.6146243, 49.5712189 9.6408172, 49.5800040 9.6478395, 49.5846226 9.6621280, 49.5911156 9.6691373, 49.5927203 9.6700680, 49.5993920 9.6809044, 48.7406938 8.6474860, 49.5994571 9.6992900, 48.8267253 9.3001515, 49.6283044 9.7298560, 49.6126629 9.7161207, 49.6222826 9.7288373, 49.6609192 9.7570507, 49.6509129 9.7402683, 49.6720702 9.7719881, 49.6805457 9.7792678, 49.6902760 9.7883448, 49.6804068 9.7796570, 49.7005867 9.7958626, 49.4475495 8.9708096, 48.7613425 9.2144219, 49.0965990 9.4469764, 49.0927050 9.3961852, 49.0851274 9.2259822, 48.7546412 9.1453708, 47.7031193 9.9355243, 49.3688113 8.7873065, 48.0024684 9.3886804, 48.9139897 8.8754916, 48.7540293 9.1406651, 48.7542703 9.1411930, 48.7547015 9.1445888, 48.7581785 9.1286783, 48.7811028 9.1943466, 48.4595988 10.1711934, 48.4645404 10.1223774, 48.4802017 10.1041631, 48.4914513 10.0901495, 48.4951764 10.0871437, 48.5097340 10.0813635, 48.5366930 10.0923397, 48.5495692 10.1089249, 48.5640570 10.1405415, 48.6002192 10.1932351, 48.6143248 10.2091203, 48.6237947 10.2194702, 48.6370975 10.2170778, 48.6518587 10.2288665, 48.6672443 10.2286901, 48.6777252 10.2191011, 48.6918304 10.2147888, 48.7030388 10.2151575, 48.7411557 10.1966712, 48.7566988 10.2022541, 48.7725633 10.2111265, 48.7895482 10.2114348, 48.8216854 10.2168276, 48.8334224 10.2081744, 48.8474543 10.1975819, 48.8620769 10.1936834, 48.8691565 10.1741861, 48.8750477 10.1666259, 48.8751128 10.1673993, 48.8863019 10.1658808, 48.8966666 10.1763137, 48.9102131 10.1899836, 48.9104742 10.1896634, 48.9258950 10.1949601, 48.9420077 10.1925203, 48.9558196 10.1862163, 48.9689245 10.1865525, 48.9692640 10.1862417, 49.0009182 10.1938674, 49.0170502 10.1975981, 49.0224299 10.1969381, 49.0363577 10.1873324, 49.0493389 10.1776823, 49.0605574 10.1810565, 49.0758780 10.1995729, 49.0923405 10.2099712, 48.8218705 10.2163375, 48.5732709 10.1585590, 49.7621113 9.6294051, 49.3683330 9.9579141, 49.4195134 10.0535016, 49.2882383 9.9406478, 48.5580685 10.1277207, 48.5788457 10.1693436, 48.7170747 10.2080523, 48.7282666 10.2009034, 49.3350076 8.7983923, 49.3459639 8.7931740, 47.5611045 8.0321768, 49.0171260 9.1534397, 49.0958167 9.1828417, 49.1095965 9.1848677, 48.9183760 9.1563179, 48.9193212 9.1562973, 48.9447724 9.1977190, 48.9449139 9.1972527, 48.9689682 9.2267241, 48.9800924 9.2300574, 49.0304309 9.2538320, 49.1210630 9.3007708, 49.1566653 9.3071655, 49.1573678 9.3160744, 49.1601842 9.3549323, 49.1603741 9.3548775, 49.1616105 9.3397381, 49.1627015 9.3701449, 49.1629358 9.3698809, 49.1725530 9.3817719, 49.1727033 9.8237784, 49.1727925 10.0129405, 49.1729493 9.8236024, 49.1742106 9.8457741, 49.1744759 9.8456315, 49.1744599 9.8623803, 49.1755740 9.9774230, 49.1758547 9.9772793, 49.1759763 9.4001758, 49.1762700 9.8859732, 49.1765088 9.8857580, 49.1770020 9.9345641, 49.1772620 9.9342406, 49.1775887 9.9105015, 49.1777734 10.0294788, 49.1778655 9.9103748, 49.1793399 9.7775155, 49.1796070 9.7775911, 49.1807457 9.4136814, 49.1810781 9.7598064, 49.1813474 9.7612968, 49.1848157 9.7374138, 49.1863246 9.7340659, 49.1896744 9.4186012, 49.1915830 9.7190278, 49.1918286 9.7192538, 49.1949465 9.4295459, 49.1960968 9.7038567, 49.1963928 9.7037561, 49.1971836 9.4521348, 49.1974572 9.4517932, 49.2011210 9.6877344, 49.2043366 9.6644362, 49.2048790 9.6585922, 49.2107745 9.5010542, 49.2110505 9.5008148, 49.2114338 9.5359667, 49.2114729 9.5317012, 49.2118076 9.5173316, 49.2120967 9.5172403, 49.2124341 9.6151901, 49.2127552 9.6151143, 49.2170647 9.5622814, 49.2173850 9.5621363, 49.1245726 9.1305009, 47.6079887 9.5842570, 47.7033469 9.4328489, 49.2890193 8.6051647, 49.4686864 8.5404084, 49.4852171 8.5477194, 48.6966848 9.1426214, 48.7551328 9.1535306, 48.7566070 9.1640406, 48.7557780 9.1601913, 48.7547113 9.1489665, 48.7625416 9.1696775, 48.7558700 9.1592528, 48.7550764 9.1515350, 48.7554018 9.1551614, 48.7585917 9.1675048, 48.7554795 9.1597211, 48.7554336 9.1568834, 48.7612657 9.1695819, 48.7561338 9.1617274, 48.7573150 9.1654353, 48.7546558 9.1464774, 48.4514506 8.6433457, 48.4521970 8.6763233, 48.0200383 8.9369411, 49.5696414 9.3640897, 49.5231654 9.3393124, 49.4802730 9.3690583, 48.2306681 8.4106254, 49.4495458 9.4257146, 49.5010683 9.3497671, 48.9581869 8.4301067, 48.9588630 8.4053268, 49.5938778 9.4109944, 49.6063091 9.4370118, 49.6365504 9.4846227, 49.6602377 9.4805080, 49.1311984 9.6338251, 48.7608842 9.4910508, 49.0202769 8.4154626, 49.0937207 8.4121225, 49.3247506 8.5396272, 49.3449164 8.5491365, 49.3476699 8.5480496, 49.4952879 9.2130894, 49.5031612 9.2386569, 49.5219997 9.1700767, 48.4753733 8.4047423, 47.7684484 8.2821018, 48.3226704 9.6087540, 49.5377487 9.3431212, 48.7770772 9.2446719, 49.3255788 8.8127019, 49.7696553 9.5847553, 48.4906185 9.4512150, 49.3701568 9.1999841, 47.9013964 9.0132227, 47.9153307 9.0468785, 47.9169175 9.0522260, 47.9620341 9.0454807, 47.9754874 9.0793087, 47.9906752 9.0789811, 48.0136013 9.2302443, 48.0821258 9.4500636, 48.1845139 9.4862038, 47.7042046 8.3034213, 49.4012435 9.2089612, 49.4319311 9.2375567, 48.6662152 9.3659699, 48.7024144 9.1774889, 48.7875950 8.9827448, 48.7876052 8.9815757, 48.8007249 8.9412573, 48.8234792 8.8884679, 48.8398485 8.8382949, 48.8437503 8.8159339, 48.9716348 8.4471469, 48.9718087 8.4470090, 48.9800714 8.4366231, 48.9927379 8.4365284, 49.0067440 8.4559670, 48.5196274 9.8080095, 49.2271886 9.5357194, 49.2520286 9.5232629, 49.4119380 10.0303080, 47.8002754 8.1987104, 47.8190174 8.3196830, 49.5074139 9.3070533, 48.6021740 10.0615431, 49.3016282 9.2526462, 49.3705341 9.1559288, 47.7798199 8.3268191, 48.7264018 9.2107797, 48.7307799 9.1669412, 48.7433433 9.2683902, 48.9658830 8.8832406, 48.9738816 8.8559312, 48.7113232 9.1645404, 48.7184698 9.1629256, 48.5406158 10.2588419, 49.5254765 9.2865999, 48.5231648 10.0833983, 49.1749304 9.7974010, 49.2061965 9.6407316, 49.1898162 9.4180403, 48.7855603 9.1803280, 49.1808888 9.4132057, 49.1505384 9.3016113, 48.8446461 9.1140852, 47.8627536 8.7857416, 47.8630151 8.7860010, 47.8535430 8.8002637, 47.8552075 8.7980343, 47.7654182 8.8041796, 47.7657572 8.8037537, 47.7705586 8.8141093, 47.7706044 8.8134856, 47.7617045 8.7965771, 47.7628714 8.7979748, 47.7551290 8.7854432, 47.7553585 8.7852332, 47.7469775 8.7566261, 47.7473369 8.7564457, 47.7403603 8.7455512, 47.7404180 8.7453253, 48.8239442 8.8879073, 48.7799018 9.1991603, 48.5594412 9.6644104, 48.7313314 9.1307290, 48.3687987 8.1200636, 49.4132111 9.3294052, 49.4189386 9.2924573, 48.7996329 9.3537647, 48.4579439 9.9875507, 48.5509131 9.6345880, 48.5946710 9.6469612, 48.5992368 9.6429459, 48.7955218 8.9596138, 48.7956324 8.9603226, 48.8010415 8.9413894, 48.8400889 8.8396024, 48.8444913 8.8147692, 49.0063430 8.4560599, 49.0579894 8.4995784, 49.0805123 8.5195564, 49.1278057 8.5505712, 49.2664691 8.6097473, 49.4372590 8.6415845, 49.4421019 8.6438758, 49.4678506 8.6439180, 49.2190424 9.2112957, 49.5718373 8.6650002, 48.8093665 9.1834320, 48.8095623 9.1831335, 48.8095078 9.1830372, 48.8096179 9.1832193, 48.8283942 9.2316547, 48.8095137 9.1829682, 48.4316518 9.7505267, 49.1205878 10.1522484, 49.3220845 8.4655350, 48.8188915 9.2372072, 48.7994543 9.1709984, 48.0863844 7.6920940, 49.5923356 9.3604914, 49.4679710 9.1246953, 48.8303778 9.1746521, 49.4848966 8.5480070, 49.5081710 8.5609162, 49.4469737 9.2106562, 48.7743937 9.1727386, 48.7745047 9.1728634, 48.7754257 9.1720375, 48.8313151 9.2122250, 48.8350574 9.2149805, 48.8322297 9.1705414, 47.6269148 8.5717357, 48.9787489 9.3717375, 48.2185403 8.2568051, 47.8600876 8.1797615, 48.9013819 9.0541283, 48.9512077 9.4128480, 48.8834077 9.3881405, 48.8835815 9.3877978, 47.8227987 8.1685497, 48.4982390 8.8442656, 48.7025036 9.4527857, 47.7560737 8.1820547, 47.7707507 8.1831101, 47.7790395 8.1062076, 47.7866778 8.1801994, 47.7916734 8.0821287, 47.8504829 8.2620373, 48.7684830 9.3231418, 49.1891606 9.1171652, 49.2233552 8.9533636, 47.9911663 8.1651822, 48.9270875 9.6214201, 48.0170829 9.3136142, 47.8569573 8.1100911, 48.7122492 9.9138169, 49.1729576 9.7848150, 49.6197048 9.6044235, 48.9656310 9.5806902, 48.7678116 9.1836149, 48.9014012 8.3087881, 49.0962224 9.0919870, 49.7715202 9.4676383, 49.3158418 9.0749821, 48.1377280 9.5979167, 49.5340464 9.2539952, 49.1736873 10.0258466, 49.1967104 9.0903943, 49.3193613 9.1170267, 49.3291232 9.0554272, 47.9784290 8.9641589, 47.9839356 9.0405854, 47.9880187 8.9974481, 47.9918093 8.7739738, 47.9933461 8.7241803, 48.0204120 8.6493049, 49.1782893 9.3731611, 47.7349571 9.2397100, 47.7754898 9.1749163, 49.5431360 9.8876914, 47.6849697 8.0154772, 47.7621595 7.9758828, 47.8079054 7.9357172, 49.2749828 8.7411568, 48.9123330 8.3510166, 48.9123902 8.3504577, 48.9271462 8.3570549, 48.9559673 8.3820776, 48.9608511 8.4084866, 48.9612460 8.4083461, 48.9738379 8.4364444, 48.9757448 8.4369507, 48.8648202 8.2474782, 48.8790378 8.2632960, 48.8793274 8.2629787, 48.8885040 8.2890322, 48.8888477 8.2888475, 48.8942425 8.3105677, 48.8946078 8.3105747, 48.9003187 8.3333080, 48.9006232 8.3329890, 48.9687147 8.4298277, 49.1673363 9.2596599, 49.1822425 9.2236902, 49.1825846 9.2237977, 49.2685258 8.7797727, 49.2745175 8.6394890, 47.8957752 8.4241928, 48.6409446 8.9308115, 48.0228909 8.6121741, 48.0229438 8.6117576, 48.0055377 8.6048873, 48.0055973 8.6052895, 47.9752433 8.6184455, 47.9753906 8.6187932, 47.9849016 8.6118658, 47.9850938 8.6121629, 47.9552172 8.6194757, 47.9552291 8.6198897, 47.9646618 8.6210187, 47.9647513 8.6214154, 47.9116196 8.6845772, 47.9119042 8.6847225, 47.9259038 8.6546660, 47.9261670 8.6547362, 47.9455845 8.6191598, 47.9456945 8.6195331, 47.8917868 8.7230715, 47.8921007 8.7230347, 47.8714101 8.7775596, 47.8714406 8.7780359, 47.8805881 8.7757992, 47.8806648 8.7762586, 47.8875369 8.7383252, 47.8878393 8.7382397, 47.8901856 8.7700635, 47.8902294 8.7506918, 47.8903428 8.7689517, 47.8904407 8.7503382, 47.8166959 8.8469901, 47.8170162 8.8472903, 47.8245464 8.8337926, 47.8250767 8.8336072, 47.8448826 8.8115167, 47.8450907 8.8118378, 47.8068358 8.8542626, 47.8068588 8.8547291, 47.7867976 8.8232352, 47.7868863 8.8228929, 47.7967813 8.8360776, 47.7970006 8.8357483, 47.7495150 8.7631515, 47.7397150 8.7380011, 47.7397150 8.7380011, 48.0790498 9.6790386, 48.0970763 9.7026062, 47.7399867 8.7345273, 47.8004997 8.8485013, 47.8007334 8.8482334, 47.8008476 8.8480453, 47.8351310 8.8196960, 47.8353577 8.8200357, 47.8944095 8.7072382, 47.8958979 8.7055108, 47.9054261 8.6967782, 47.9056734 8.6970585, 47.9202794 8.6741869, 47.9205383 8.6743676, 47.9322153 8.6301805, 47.9323560 8.6305783, 48.0151141 8.6076181, 48.0151259 8.6071821, 48.6389999 8.9275089, 48.6723269 8.9637019, 48.7474451 9.0594116, 48.8207273 9.2270474, 49.3135359 8.6418842, 48.2094871 7.7785810, 49.1590946 9.2905858, 49.1786306 9.2350337, 49.0220898 8.6269575, 49.0222804 8.5892203, 49.0809449 8.7838851, 49.0954448 8.8068286, 49.1134678 8.8290440, 49.1227203 8.8550260, 49.1481199 8.9186301, 49.2129006 8.6719161, 47.7325414 9.8811144, 47.7557211 8.9496434, 47.7789662 9.1536377, 47.5711618 7.7613910, 48.8601439 9.3228828, 48.7981271 8.1679392, 48.4481460 7.9010627, 48.6273204 9.3396348, 47.7837255 8.9321885, 47.6884934 9.2990145, 48.4625038 10.1391752, 48.8146124 9.3537610, 48.8253583 9.2125643, 48.7795491 9.1745436, 48.7060514 9.1629651, 48.8698641 10.2833974, 49.0008013 8.3719610, 48.9295711 9.8767384, 48.9205756 8.2058607, 49.2944589 9.4709116, 48.9080374 9.3417376, 48.7121894 9.1604107, 48.7602096 9.1689168, 48.7804469 9.1766071, 48.8221293 9.2045896, 49.6084586 9.3445733, 48.1847953 7.7655600, 49.3783297 8.5626284, 48.9551893 9.2496743, 48.9563878 9.2482053, 48.9547502 9.2555397, 48.9559081 9.2587417, 48.0006677 8.4180724, 48.9899167 9.2772816, 48.9911975 9.2808639, 49.0039164 9.2719079, 48.7074798 8.3199480, 48.7386713 8.2896820, 48.7778355 8.1869501, 48.6456999 9.4144185, 48.8844951 8.2680861, 48.9590094 8.4066839, 49.1381543 9.6093247, 48.6491481 8.3326042, 48.6554113 8.2894004, 48.6879563 8.2301900, 48.7074212 8.2330668, 48.7132068 8.1470490, 48.7784092 8.1874412, 48.8734243 8.1508880, 47.7724018 8.0207021, 48.3743563 8.0257583, 48.5343596 7.9223391, 49.0370746 8.3124966, 48.7583042 9.1234566, 48.7468811 8.3019773, 49.0722747 9.2823707, 49.1585703 9.2916476, 47.6086108 9.5882404, 47.8505591 9.6398559, 49.2409505 8.8896780, 49.5458579 8.6284759, 48.4985741 9.1585090, 48.0811778 9.4497598, 48.2142025 9.0999390, 48.5469927 9.6418125, 48.4569517 7.9109849, 48.4999920 7.9558778, 48.5327154 7.9556963, 48.0592054 10.1387419, 48.0592098 10.1391537, 48.0702593 10.1387506, 48.0702882 10.1391449, 48.6148651 8.9415072, 48.0969837 10.1331788, 48.0970453 10.1335784, 48.1066856 10.1273087, 48.1084077 10.1248434, 48.6805662 8.7748231, 48.7984089 9.2595177, 47.7610670 8.8037000, 48.5016195 8.8470383, 48.5113291 10.0836131, 48.6613430 8.9970074, 48.6805662 8.7748231, 48.7984089 9.2595177, 48.8681111 9.1392799, 49.0585670 10.1757670, 49.2094830 9.6368000, 49.2147031 9.6143039, 49.2733589 8.6666298, 49.3763680 8.5460170, 49.3912580 9.4722350, 49.5086670 8.6555330, 49.5389680 9.5818630, 47.9940879 8.5899209, 47.9956209 8.5645447, 47.9959086 8.5645447, 47.9939755 8.5399688, 47.9587454 8.5182969, 47.9228405 8.5057249, 48.8005963 9.2049961, 47.9977403 8.5298491, 47.9937431 8.5402147, 47.9938303 8.5900723, 48.9818800 9.5718630, 48.5460870 7.8906230, 48.5478963 7.8841324, 48.5584850 7.8601509, 48.5617709 7.9504028, 48.5629237 7.8546515, 48.5722846 8.2255376, 48.5760022 7.8292923, 48.5927521 7.8515502, 48.6055000 8.0325500, 48.6548090 8.0662569, 48.6606900 8.3591362, 48.6858580 8.1097150, 48.6916995 8.3591663, 48.7078830 8.3305170, 48.7093170 8.3642330, 48.7340793 8.3748358, 48.7537300 7.9730480, 48.7670670 8.3636330, 48.8069304 8.5273814, 48.8249429 8.1271170, 48.8328153 8.3659850, 48.9489909 8.3702649, 48.9574500 8.2972500, 48.9589170 8.2985830, 48.9791637 8.3244037, 48.9832531 8.3288457, 49.0187170 8.3479000, 49.0191830 8.3479500, 48.6402538 8.9301926, 48.9374320 8.3952437, 48.7308046 9.0893561, 48.2398830 7.7793830, 48.2579830 7.7931000, 48.2705952 7.8125847, 48.3110330 7.7605830, 48.3346474 7.8428322, 48.3554371 7.8002445, 48.3574902 7.8512044, 48.3734330 7.7886830, 48.3947330 7.8102000, 48.4001330 7.8933830, 48.4114480 7.7933680, 48.4274830 7.9020330, 48.4379830 7.9272000, 48.4479820 7.8659680, 48.4517717 7.8168926, 48.4725400 7.9013520, 48.4765210 7.8142310, 48.4938289 7.8211029, 48.4999694 7.9558417, 48.5229170 8.0998830, 48.5310170 7.9861170, 48.5326830 7.9557170, 48.5409774 8.0240442, 48.5472980 8.0623920 +49.4132139 8.7078103 +0130797930, 0130797930 +48.8728847 2.2989591 +50.7845493 12.9693390, 47.5014106 10.3741398, 48.7738247 8.3968670, 48.6777285 10.3724619, 49.2155957 13.0701918, 50.1022911 11.5063264, 50.9741582 13.5289074, 50.0617279 10.1762545, 49.5025175 11.1364960, 51.7063821 10.4261757, 50.7255348 12.9291071, 47.9843646 10.1173876, 48.6182669 10.1734458, 48.0084774 10.1365721, 47.8895031 10.1163910, 51.3238984 9.4283577, 48.8940562 11.2651928, 50.4215999 7.8020867, 49.9913460 11.2941704, 48.1654874 7.7998083, 50.5065572 12.6609539, 47.6935262 11.9678034, 48.7996661 8.7327044, 51.0153548 14.2040604, 50.6830850 13.4929995, 51.2828194 9.9512860, 51.3337172 7.8836731, 49.5616303 6.8014011, 47.9361359 12.7373579, 49.4785048 7.6526559, 47.9390764 12.7478297, 50.7046860 13.4311840, 50.1313993 11.9188380, 50.9109968 14.1854926, 48.8948383 11.1815356, 48.1470329 11.3080465, 50.8638101 13.1142074, 49.3827436 7.6390706, 47.9326526 10.0774744, 48.4982011 10.5580156, 48.9013892 9.4771220, 50.6281873 10.8680941, 50.7485080 8.5010679, 50.7464796 8.5333874, 48.1978722 11.4560850, 50.7695140 10.7276872, 48.9244455 13.3518732, 50.7495526 8.5009546, 48.4132680 9.7999930, 48.9093094 13.1829338, 49.5588204 6.7532986, 50.8582546 14.6539415, 48.8815639 12.5434759, 48.1146834 7.8250671, 48.0147180 8.0995966, 48.9355345 10.9744644, 47.5754164 10.5541228, 47.9327191 10.0773907, 48.4084760 10.7695766, 48.5340871 8.3981222, 53.3375572 13.4321907, 53.3374732 13.4321916, 50.6501128 12.6794381, 47.9490249 10.1165528, 50.6162780 12.8357120, 50.6367720 12.9419800, 48.2897211 10.4993810, 50.1034685 8.9104107, 49.5525820 6.7379253, 47.6434887 11.7478323, 47.5518326 9.6884708, 49.5209824 6.8678898, 48.5900573 8.3722639, 51.2733284 8.1415692, 49.2997595 10.4045006, 47.9055899 12.5202426, 48.8827526 12.5396264, 48.7451306 11.3852209, 48.8972257 11.6516306, 51.2762262 9.9796499, 49.9773566 11.3046498, 48.8729843 11.0221664, 49.7698416 11.4286815, 48.0557707 10.4964146, 50.7335877 12.9491720, 49.2585379 7.2490504, 51.9412963 8.7431682, 49.7035932 11.2603417, 50.8294849 14.7602853, 50.8410802 14.7451889, 47.7532324 12.6599970, 51.9129197 10.3223963, 49.2712181 7.2773807, 47.5742295 10.2926153, 51.9280554 9.6060190, 51.2779470 7.9861149, 47.4961166 11.1149296, 51.9621858 7.6250374, 48.1639390 9.4691256, 50.9719990 8.1179471, 48.0086763 10.1367496, 51.3724914 8.1569980, 51.8514030 10.3372339, 51.0785726 9.5379794, 50.0219170 9.3914105, 47.7264860 12.8809342, 51.1933369 8.4044653, 50.9719784 8.1178500, 49.1494001 7.7844355, 47.3985637 10.2756390, 48.0154289 8.0924791, 51.0003960 8.5312576, 50.8842938 14.1955888, 51.5254665 8.6653175, 51.2804445 9.9551987, 51.2598746 9.9675615, 48.1903954 7.9447028, 48.1585160 8.1982855, 48.6198021 10.1541726, 49.2551795 9.0827995, 48.1422074 8.4140207, 48.0367178 10.4871515, 48.0421392 10.4935961, 50.8601436 9.6836478, 47.5832475 9.8504383, 50.0816062 8.4627128, 47.4806399 10.4082724, 49.4950862 9.9380833, 51.1871486 8.4322962, 51.0964808 9.2227357, 47.6634606 12.0163617, 51.7290818 10.6044900, 50.1947448 10.0761756, 48.4927768 8.4923581, 51.1062606 9.2311987, 50.6275620 10.8729953, 49.3926070 9.6447908, 49.4265355 9.7017327, 48.4152294 10.1376339, 51.4968839 7.4813753, 51.8228615 10.2712538, 49.5809079 9.5715529, 49.5693872 8.1561620, 49.5164097 7.9353798, 48.4991094 10.1238754, 50.6255228 10.8529629, 48.1379424 8.4143296, 48.1403910 8.4180601, 51.1948310 8.5266259, 48.0041086 10.5985786, 50.5411908 12.5872448, 50.4036131 12.5057073, 50.6919809 12.8485188, 49.1852416 8.0114114, 51.2417795 8.5670214, 51.4903611 9.0992247, 47.5718418 11.1002167, 50.5036193 12.6255466, 50.9258130 8.7699814, 51.1921907 8.5145493, 51.1964705 8.5338380, 51.3566538 8.4190028, 47.7883546 7.8867113, 47.8192543 7.9372416, 47.4061593 10.2740108, 47.8625352 12.6473214, 51.8959097 8.9840585, 51.3052080 7.9497210, 47.6799496 12.4690938, 49.5128279 7.9827533, 47.4371922 11.2551267, 51.8341169 9.4556354, 50.0078438 11.9511471, 51.1158397 8.6785436, 51.2288212 8.3944131, 50.7722414 8.5720168, 50.2439086 9.4786147, 51.4043203 9.1383433, 47.7476987 8.1436704, 51.3253162 9.2089124, 50.8987462 11.2884196, 47.8761823 12.6415474, 47.6882992 11.9856565, 51.2861235 8.6220473, 51.2945992 7.9920187, 48.6740294 10.8726810, 48.3927200 10.6761798, 48.6160031 8.1873011, 47.8381408 11.1488347, 49.5761014 10.6045885, 50.1137811 9.2831880, 50.5320778 12.6234349, 50.1035730 8.1602882, 50.5938166 8.5861484, 47.7223242 10.3299100, 48.6671826 8.7536465, 48.6157273 12.3486004, 50.6324906 10.8634830, 48.9350269 9.4746764, 47.7316514 12.0925641, 49.2933247 11.4630304, 49.0694997 12.8655791, 49.1128004 13.0219746, 47.8577727 12.3610113, 48.1200706 11.5077312, 51.2966302 11.7802673, 53.6272058 10.6948250, 49.9394584 11.4790695, 51.0159756 13.7479054, 50.9715673 13.5551396, 48.9593956 12.9189736, 51.2958579 8.1734603, 51.2958030 8.1735814, 51.8620917 10.3322967, 50.7244498 13.0333163, 50.6452897 12.9880457, 50.5970041 12.7328914, 48.2566442 9.2101645, 51.8129191 10.2289297, 51.0749629 8.3902719, 48.7406361 9.7833664, 48.0475948 11.5156035, 49.7941344 7.1332843, 48.9968181 12.8846620, 47.7702800 12.2182663, 47.4455992 10.2423754, 47.5746718 10.4535435, 53.6585617 7.7209148, 51.5396866 8.9095090, 52.3177208 11.3413670, 50.1095970 11.6223331, 48.9105220 9.2147235, 48.7739425 9.1135726, 49.2384346 9.0966096, 51.0014715 9.0973997, 52.5692049 14.0738589, 48.3302539 9.8728164, 50.7295412 13.5575861, 47.8174088 9.3128808, 48.8433766 13.1319319, 49.8175788 6.8868082, 48.0557630 10.4964252, 51.3194751 8.6387163, 48.7451788 11.3852025, 48.8020281 13.5408359, 50.5375612 12.9453332, 48.0457597 8.9650957, 50.5375780 12.5736557, 53.7803634 11.0512447, 49.9917489 11.8061110, 49.9946392 11.8339901, 49.9722981 11.8176959, 49.9873221 11.7899755, 49.0425203 10.5176304, 51.2620073 8.5392983, 51.2621737 8.5395416, 51.2621484 8.5397150, 49.9635353 11.8438723, 51.4827555 9.0942141, 47.5769672 10.6270444, 51.1949866 8.0571679, 51.7263609 9.4052651, 47.4934675 11.0622534, 51.3443157 7.4183754, 51.5238945 8.5123372, 50.8502957 14.6865355, 50.7100147 10.8197691, 50.0583431 7.5748002, 47.6454969 10.6632008, 50.0510513 7.6093093, 47.9932351 10.1808993, 50.2311962 9.1464971, 51.9198554 8.8321440, 51.8294386 9.8878994, 49.4981118 7.7797175, 51.6288247 10.4732544, 51.7767623 7.9191788, 48.9883891 9.4308441, 51.6861747 8.5654357, 50.5664935 11.1227796, 49.5810077 9.5713195, 49.5241340 6.7181635, 47.9828817 10.1920921, 51.1751283 8.4279202, 51.1751575 8.4278612, 51.1754737 9.0470681, 47.7900486 8.0446410, 52.6222125 10.0855847, 50.7897183 10.6333297, 49.1299618 13.0521460, 49.3386521 10.3154384, 49.0253526 9.3474607, 50.7550956 8.5095608, 48.8108495 13.5439386, 50.7520705 8.4961832, 50.7523693 8.4608571, 50.7679860 8.4982126, 50.7455495 8.4709159, 51.9472667 8.6888898, 49.8971837 6.9397113, 48.9013255 13.4243197, 47.7760589 12.0079629, 49.8368723 8.9755670, 48.0203082 10.2442504, 49.7700216 11.4289960, 49.6097391 8.1801402, 50.0443000 11.8231837, 49.9802703 11.9221474, 49.9955169 11.7800846, 50.0519478 11.6775574, 49.8667470 11.1646519, 50.1072817 11.8790663, 49.7830793 11.3334409, 49.6007161 9.3435208, 48.8152128 13.7652089, 48.0190807 10.1726097, 47.9856751 10.2040927, 49.0963089 11.8094655, 49.2443279 7.1434729, 49.2447426 7.3948252, 51.6299762 10.4748973, 49.3538986 6.7232282, 49.2340896 9.1566463, 48.7379075 10.1133835, 47.6943014 10.0402150, 48.9564130 9.2641724, 49.2564635 9.1221015, 50.0066389 11.7734050, 51.2938812 8.0514986, 48.8072496 9.3950203 +11 +yes +yes +Naturalia, Naturalia Crussol, Canal Bio, Bio C' Bon, Biocoop Le retour à la Terre - Rive Gauche, Naturalia, Les Nouveaux Robinson, Naturalia, Bio c'Bon, Pimlico, Biocoop Grenelle, Bio c'Bon, Bio c' Bon, Naturalia, Bio Génération, Bio c' Bon, Carrefour bio, Naturalia, Bio c bon, La Vie claire, Bio c Bon, Bio c' bon, Naturalia, Holy Planet, Naturalia +yes +no +55.9245632 -3.1361606 +no +2 +55.9370725 -3.1787027 +yes +1 +Caiy Stane, Balm Well, Stone, The Buckstane, Fort, Hatton House +55.9427756 -3.2095329, 55.9449491 -3.2071792, 55.9261403 -3.1387050, 55.9021076 -3.2215942, 55.9077375 -3.2604776, 55.9744871 -3.3050579, 55.9605521 -3.2145819, 55.9914354 -3.3985059, 55.9546221 -3.1877189, 55.9551815 -3.1828752, 55.9905515 -3.3832043, 55.9898776 -3.3947910, 55.9532515 -3.2795094, 55.8753891 -3.3099775, 55.9388513 -3.1691562, 55.9501390 -3.1751181, 55.9297109 -3.2086926, 55.9489520 -3.1813494, 55.9210967 -3.2266715, 55.9487114 -3.2851366, 55.9487753 -3.2841900, 55.9487321 -3.2833922, 55.9482056 -3.2747143, 55.9605737 -3.1931385, 55.9349799 -3.1318268, 55.9319057 -3.1277488, 55.9331970 -3.1413489, 55.9031553 -3.1637932, 55.9099567 -3.1298528, 55.9083931 -3.1302476, 55.9087443 -3.1294580, 55.9539250 -3.1094167, 55.9383367 -3.4074644, 55.9560188 -3.3189391, 55.9005379 -3.1766131, 55.9233331 -3.3622103, 55.9234774 -3.3610087, 55.9670463 -3.3162635, 55.9684981 -3.1418750, 55.9145289 -3.2879909, 55.9270985 -3.2345448, 55.9262193 -3.2367397, 55.9257251 -3.2379807, 55.9536926 -3.2888163, 55.9705235 -3.2271545, 55.9461803 -3.2070135, 55.9760698 -3.1951310, 55.9202135 -3.2126749, 55.9225657 -3.2301524, 55.9228577 -3.2291352, 55.9232283 -3.2269378, 55.9914682 -3.3984225, 55.9226414 -3.2544133, 55.9272283 -3.2938863, 55.9503380 -3.2726676, 55.9559652 -3.1503593, 55.9435000 -3.2324052, 55.9591543 -3.2259572, 55.9590419 -3.2244693, 55.9345452 -3.2208560, 55.9588991 -3.2258357, 55.9859605 -3.1898881, 55.9864916 -3.1885470, 55.9330884 -3.3083607, 55.9848085 -3.3865992, 55.9171931 -3.1941869, 55.9281635 -3.2479491, 55.9278540 -3.2486519, 55.9683895 -3.3221102, 55.9520661 -3.2796118, 55.9555602 -3.3906816, 55.9555053 -3.1853840, 55.9466587 -3.2084167, 55.9444914 -3.2039187, 55.9437264 -3.1923238, 55.9849796 -3.1929699, 55.9450154 -3.1980120, 55.9416959 -3.1484162, 55.9625359 -3.4034070, 55.9425986 -3.2065382, 55.9407899 -3.1790526, 55.9390017 -3.1784821, 55.9461084 -3.1836449, 55.9528247 -3.2065333, 55.9529149 -3.2065700, 55.9533425 -3.2047904, 55.9075949 -3.4202463, 55.9509478 -3.2066848, 55.9526988 -3.2085257, 55.9527795 -3.2080212, 55.9529409 -3.2077810, 55.9543888 -3.1989928, 55.9548130 -3.1959084, 55.9531961 -3.2032873, 55.9527862 -3.1991610, 55.9528048 -3.1990557, 55.9550493 -3.1952197, 55.9556549 -3.1915634, 55.9411313 -3.2167882, 55.9858052 -3.3817066, 55.9393998 -3.1735716, 55.9319915 -3.1798966, 55.9479359 -3.2033290, 55.9148155 -3.2846120, 55.9068623 -3.1327381, 55.9336793 -3.0927075, 55.9166066 -3.3142805, 55.9475115 -3.1893474, 55.9478706 -3.1875187, 55.9367307 -3.4053592, 55.9404588 -3.2944172, 55.9362574 -3.2996459, 55.9696237 -3.2312974, 55.9384602 -3.3173394, 55.9371432 -3.3120553, 55.9358957 -3.3194951, 55.9338970 -3.3122513, 55.9189243 -3.3018114, 55.9253578 -3.2483932, 55.9401130 -3.3149747, 55.9397190 -3.3120155, 55.9016607 -3.2241566, 55.9412989 -3.1015035, 55.9262359 -3.1654883, 55.9578808 -3.1647965, 55.9544793 -3.1426073, 55.9800643 -3.1795555, 55.9821786 -3.1756498, 55.9435294 -3.2654687, 55.9436259 -3.2619723, 55.9690220 -3.1695919, 55.9453813 -3.1852436, 55.9834910 -3.4001615, 55.9323465 -3.1280922, 55.9325021 -3.1355675, 55.9281227 -3.1237925, 55.9272234 -3.1239396, 55.9207911 -3.1380624, 55.9225739 -3.1333840, 55.9234297 -3.1370906, 55.9079002 -3.3236956, 55.9314453 -3.2359598, 55.9234755 -3.2477828, 55.9523306 -3.2247264, 55.9506405 -3.2280071, 55.9388492 -3.3562316, 55.9282702 -3.2905058, 55.9328331 -3.3144308, 55.9241296 -3.3794972, 55.9384423 -3.2403707, 55.9895200 -3.3960731, 55.9226662 -3.2254126, 55.9559159 -3.1551037, 55.9396348 -3.1719819, 55.9418632 -3.1505954, 55.9486154 -3.1834112, 55.9471658 -3.1800476, 55.9510411 -3.1708174, 55.9629115 -3.1702968, 55.9391574 -3.3048858, 55.9212062 -3.1411443, 55.9151416 -3.3259472, 55.9125478 -3.3210336, 55.9127727 -3.3230057, 55.9121770 -3.3242353, 55.9168756 -3.3182175, 55.9030839 -3.3120674, 55.9323493 -3.1390569, 55.9315981 -3.1166385, 55.9280748 -3.1214990, 55.9351070 -3.1380033, 55.9317521 -3.1361908, 55.9318779 -3.1350817, 55.9324368 -3.1361552, 55.9323067 -3.1467718, 55.9221929 -3.1873317, 55.9029473 -3.2042927, 55.9042182 -3.1508526, 55.9187139 -3.1384285, 55.9347851 -3.1178195, 55.9327327 -3.1371609, 55.9310415 -3.1291255, 55.9312532 -3.1311471, 55.9356181 -3.1431581, 55.9366082 -3.1592634, 55.9346063 -3.1287373, 55.9585488 -3.1224989, 55.9390965 -3.1155072, 55.9372934 -3.1427896, 55.9395153 -3.1374061, 55.9391745 -3.1365070, 55.9326082 -3.1048464, 55.9673151 -3.1353973, 55.9167088 -3.3165996, 55.9323197 -3.1071045, 55.9339501 -3.1058170, 55.9338900 -3.1047414, 55.9350584 -3.1023983, 55.9289228 -3.1324182, 55.9094988 -3.1543668, 55.9097229 -3.1417837, 55.9248212 -3.2647912, 55.9773633 -3.2471160, 55.9558627 -3.1173143, 55.9092890 -3.3163751, 55.9275619 -3.2972009, 55.9021546 -3.1682556, 55.9061546 -3.3220260, 55.9116089 -3.3255603, 55.9134088 -3.3215983, 55.9109708 -3.3144538, 55.9109175 -3.3264046, 55.9280288 -3.2881415, 55.9235713 -3.3999101, 55.9893024 -3.3981851, 55.9116987 -3.3152719, 55.9096737 -3.3169570, 55.9156152 -3.3159619, 55.9497651 -3.1780477, 55.9360803 -3.2260420, 55.9162763 -3.2910976, 55.9414217 -3.2221759, 55.9422143 -3.1843904, 55.9447507 -3.1796881, 55.9430744 -3.1777261, 55.9446561 -3.1803403, 55.9494277 -3.1775329, 55.9487518 -3.1780877, 55.9485518 -3.1781362, 55.9491775 -3.1780460, 55.9466674 -3.1799160, 55.9467039 -3.1783594, 55.9520666 -3.1782554, 55.9442077 -3.1850195, 55.9611696 -3.2316847, 55.9609929 -3.2342787, 55.9607831 -3.2371118, 55.9615933 -3.2374124, 55.9619320 -3.2374854, 55.9631141 -3.2367935, 55.9634777 -3.2359757, 55.9496410 -3.1840791, 55.9518134 -3.1865125, 55.9244139 -3.2658901, 55.9160232 -3.3163210, 55.9156359 -3.3182752, 55.9160984 -3.3183497, 55.9827482 -3.1947966, 55.9820923 -3.1881161, 55.9709946 -3.2069888, 55.9663575 -3.1958162, 55.9713037 -3.2306913, 55.9211529 -3.1991584, 55.9272521 -3.2235895, 55.9282852 -3.2235581, 55.9226879 -3.2251365, 55.9868679 -3.4037150, 55.9870985 -3.4031390, 55.9453143 -3.3555656, 55.9465415 -3.3624684, 55.9475491 -3.3620873, 55.9539144 -3.1587511, 55.8968564 -3.3184286, 55.9600239 -3.1973819, 55.9679394 -3.1728771, 55.9729929 -3.1628209, 55.9239749 -3.1779212, 55.9246612 -3.1815724, 55.9260122 -3.1931603, 55.9276896 -3.1509176, 55.9274521 -3.1503413, 55.9275727 -3.1506409, 55.9254765 -3.1644984, 55.9263987 -3.1628516, 55.9280015 -3.1625220, 55.9283909 -3.2930391, 55.9276860 -3.2951771, 55.9488232 -3.2332997, 55.9264933 -3.3012131, 55.9447684 -3.1528732, 55.9383947 -3.2562456, 55.9821203 -3.3972503, 55.9006763 -3.3190467, 55.8607477 -3.3326422, 55.9312615 -3.2941807, 55.8941662 -3.2624173, 55.9334103 -3.2358080, 55.9090922 -3.2239505, 55.9547187 -3.1893018, 55.9519010 -3.2481568, 55.9523635 -3.2486330, 55.9523251 -3.2541631, 55.9556720 -3.1896134, 55.9430835 -3.2219817, 55.9587913 -3.2420040, 55.9573940 -3.2424916, 55.9588441 -3.2305299, 55.9590153 -3.2322733, 55.9371887 -3.3211797, 55.9381046 -3.3208512, 55.9611769 -3.2425780, 55.9615806 -3.2409418, 55.9613606 -3.2419902, 55.9619750 -3.2400369, 55.9351660 -3.1204578, 55.9355230 -3.1204690, 55.9467379 -3.1966389, 55.9596219 -3.2030610, 55.9776230 -3.2433010, 55.9771738 -3.2430088, 55.9704477 -3.1958250, 55.9703493 -3.1961174, 55.9704547 -3.1964895, 55.9418085 -3.2938103, 55.9409118 -3.2928528, 55.9563797 -3.2090019, 55.9567298 -3.2082704, 55.9556731 -3.1599309, 55.9561167 -3.1678741, 55.9382223 -3.1043918, 55.9402035 -3.1010776, 55.9392618 -3.1041020, 55.9326805 -3.0980239, 55.9332952 -3.0991933, 55.9345875 -3.0954263, 55.9352737 -3.0966452, 55.9347395 -3.0943083, 55.9349364 -3.0950506, 55.9640969 -3.1974516, 55.9338797 -3.4074558, 55.9828725 -3.2257526, 55.9786282 -3.1784319, 55.9394393 -3.2936438, 55.9393840 -3.2949198, 55.9596625 -3.2024027, 55.9669928 -3.1677035, 55.9305761 -3.1559101, 55.9311166 -3.1557491, 55.9333643 -3.3185667, 55.9341121 -3.3187777, 55.9310843 -3.3172397, 55.9324950 -3.3181693, 55.9346695 -3.3189829, 55.9319082 -3.3177126, 55.9359437 -3.2382687, 55.9360694 -3.2391515, 55.9390399 -3.3614272, 55.9457034 -3.3727735, 55.9448037 -3.3753259, 55.9805959 -3.1832658, 55.9809475 -3.1748973, 55.9434320 -3.3600575, 55.9437471 -3.3581099, 55.9453066 -3.3603147, 55.9415413 -3.1765387, 55.9370826 -3.1361439, 55.9586835 -3.1836675, 55.9611856 -3.1865315, 55.9901392 -3.3873481, 55.9454748 -3.2133562, 55.9660452 -3.2748349, 55.9664497 -3.2729235, 55.9293562 -3.3014052, 55.9410215 -3.2404052, 55.9437556 -3.2442061, 55.9367525 -3.2236850, 55.9381980 -3.2233304, 55.9411163 -3.2946751, 55.9816356 -3.1755155, 55.9598506 -3.2240155, 55.9817826 -3.1942506, 55.9810266 -3.1939926, 55.9811977 -3.1933980, 55.9813243 -3.1938987, 55.9811060 -3.1942189, 55.9811219 -3.1927295, 55.9812872 -3.1942703, 55.9810235 -3.1943227, 55.9810882 -3.1928819, 55.9810439 -3.1926011, 55.9811933 -3.1929701, 55.9809849 -3.1928242, 55.9813860 -3.1941338, 55.9809438 -3.1941571, 55.9812539 -3.1931285, 55.9810905 -3.1933833, 55.9741923 -3.2061226, 55.9109047 -3.2387736, 55.9747440 -3.2136660, 55.9231850 -3.2486394, 55.9374125 -3.4072197, 55.9371945 -3.4058237, 55.9374045 -3.4044434, 55.9637505 -3.2335268, 55.9428585 -3.1864559, 55.9846458 -3.1940711, 55.9221429 -3.1752023, 55.9223399 -3.1759213, 55.9670991 -3.2534481, 55.9718838 -3.2534179, 55.9810691 -3.2383577, 55.8984479 -3.3160297, 55.8985757 -3.3165711, 55.8953678 -3.3130989, 55.9298336 -3.3106553, 55.9382569 -3.1735978, 55.9158853 -3.3230009, 55.9162950 -3.3213724, 55.9364542 -3.2790390, 55.9125969 -3.2367843, 55.9184722 -3.3001516, 55.9257870 -3.2656567, 55.9797213 -3.2996678, 55.9783116 -3.2972235, 55.9122709 -3.3154115, 55.9799121 -3.2416420, 55.9268127 -3.3119797, 55.9345568 -3.1028170, 55.9337360 -3.1016259, 55.9403513 -3.3138800, 55.9306972 -3.3125459, 55.9313178 -3.3099344, 55.9320037 -3.3111775, 55.9326177 -3.3104501, 55.9332898 -3.3118087, 55.9475381 -3.3620106, 55.9319865 -3.3124215, 55.9318662 -3.3137738, 55.9181587 -3.2705015, 55.9342211 -3.1778645, 55.9514241 -3.2207842, 55.9724670 -3.2012980, 55.9778933 -3.1745058, 55.9784170 -3.1773402, 55.9780971 -3.1753475, 55.9783089 -3.1763226, 55.9777459 -3.1734796, 55.9789813 -3.1763388, 55.9051373 -3.2232377, 55.9365959 -3.3331143, 55.9362007 -3.3351286, 55.9360359 -3.3397002, 55.9363751 -3.3340583, 55.9694092 -3.2702934, 55.9416964 -3.1483778, 55.9582905 -3.2794012, 55.9767945 -3.1754739, 55.9766864 -3.1738715, 55.9777295 -3.1642417, 55.9713517 -3.2751363, 55.9716217 -3.2748645, 55.9509109 -3.3040405, 55.9505011 -3.3028322, 55.9517277 -3.3043967, 55.9508168 -3.3035767, 55.9561104 -3.2932448, 55.9489783 -3.2074982, 55.9771152 -3.2561088, 55.9775665 -3.1730962, 55.9767627 -3.1685149, 55.9759609 -3.1666596, 55.9775601 -3.1677040, 55.9384344 -3.2383937, 55.9400215 -3.2835991, 55.9722626 -3.1718229, 55.9724369 -3.1737659, 55.9725956 -3.1724850, 55.9735295 -3.1719581, 55.9422361 -3.2854972, 55.9426182 -3.2848408, 55.9424261 -3.2853919, 55.9397418 -3.2866275, 55.9602875 -3.2957399, 55.9004908 -3.2325152, 55.9425974 -3.2817995, 55.9427324 -3.2894308, 55.9428132 -3.2886637, 55.9428834 -3.2895145, 55.9430576 -3.2887151, 55.9429003 -3.2891706, 55.9421047 -3.2806000, 55.9421878 -3.2816836, 55.9418910 -3.2811010, 55.9382573 -3.1889080, 55.9433390 -3.1786743, 55.9352274 -3.1798948, 55.9354661 -3.1805170, 55.9370598 -3.1807869, 55.9375196 -3.1796111, 55.9372843 -3.1802503, 55.9565957 -3.1172742, 55.9416412 -3.1759641, 55.9411089 -3.1758742, 55.9419221 -3.1751737, 55.9413694 -3.1751296, 55.9421224 -3.1755399, 55.9420435 -3.1759728, 55.9417717 -3.1760016, 55.9412937 -3.1748715, 55.9419213 -3.1762309, 55.9417190 -3.1758050, 55.9416370 -3.1757316, 55.9421785 -3.1756667, 55.9411631 -3.1744380, 55.9420584 -3.1756683, 55.9419621 -3.1753235, 55.9421292 -3.1750657, 55.9415161 -3.1750333, 55.9414662 -3.2429306, 55.9380788 -3.2164911, 55.9740721 -3.2549433, 55.9422906 -3.1878107, 55.9424910 -3.1860227, 55.9322321 -3.2172464, 55.9825623 -3.4007445, 55.9820233 -3.4001705, 55.9828150 -3.4009621, 55.9198429 -3.1330027, 55.9726414 -3.3515240, 55.9235247 -3.1313815, 55.9302056 -3.3085109, 55.9324769 -3.3071758, 55.9305686 -3.3131161, 55.9308765 -3.3117228, 55.9399461 -3.2681429, 55.9554624 -3.2241042, 55.9419112 -3.2188990, 55.9483346 -3.2942197, 55.9421466 -3.2052971, 55.9229540 -3.3790829, 55.9287806 -3.2587079, 55.8990520 -3.2377797, 55.9109797 -3.2089126, 55.9419464 -3.1773362, 55.9794270 -3.2989393, 55.9173932 -3.1379231, 55.9764201 -3.1763322, 55.9142301 -3.1341304, 55.9710130 -3.1805984, 55.9134751 -3.1337551, 55.9182561 -3.1989900, 55.9132484 -3.1780898, 55.9646733 -3.1376419, 55.9655572 -3.3178364, 55.8994825 -3.2677948, 55.8998835 -3.2694845, 55.9754348 -3.1685187, 55.9819343 -3.1951000, 55.9405416 -3.2928536, 55.9193644 -3.2228522, 55.9191174 -3.2378985, 55.9192124 -3.2367725, 55.8930871 -3.2026884, 55.8907970 -3.2014067, 55.9642544 -3.1552869, 55.8941813 -3.2179019, 55.8935768 -3.2164997, 55.9761891 -3.1670909, 55.9758400 -3.1668709, 55.9431663 -3.2838745, 55.9433798 -3.2860859, 55.9433113 -3.2870890, 55.9190084 -3.1475665, 55.9191946 -3.1484908, 55.9178453 -3.1484828, 55.9806315 -3.1941324, 55.8993059 -3.2676601, 55.9768676 -3.1714974, 55.9150424 -3.1487433, 55.9308539 -3.2761099, 55.9460256 -3.1970185, 55.9224134 -3.2358339, 55.9232515 -3.2341430, 55.9506991 -3.1804199, 55.9228372 -3.1787829, 55.9651311 -3.3167567, 55.9339081 -3.2001289, 55.9381722 -3.1723579, 55.9391719 -3.1689528, 55.9405990 -3.1722908, 55.9216273 -3.1782748, 55.9241930 -3.1744106, 55.9212881 -3.1716104, 55.9649792 -3.3131166, 55.9451443 -3.1904604, 55.9416788 -3.1843079, 55.9226382 -3.1721985, 55.9036926 -3.1570111, 55.9382369 -3.2291610, 55.9828789 -3.2415813, 55.9706810 -3.3766476, 55.9635638 -3.2312763, 55.9044775 -3.2067494, 55.9331889 -3.2150781, 55.9227690 -3.3421555, 55.8831023 -3.3393159, 55.8838260 -3.3396672, 55.9336416 -3.2375159, 55.9235691 -3.2868011, 55.9310562 -3.2789944, 55.9077899 -3.3207300, 55.9082800 -3.3196678, 55.9378551 -3.2430479, 55.9342259 -3.2112430, 55.9260946 -3.2833643, 55.9400371 -3.2200755, 55.9556763 -3.1879855, 55.9364788 -3.1804752, 55.9365673 -3.1810320, 55.9337994 -3.2511195, 55.9251847 -3.2668441, 55.9281220 -3.1676809, 55.9131088 -3.1600256, 55.9032628 -3.1558019, 55.9031108 -3.1551269, 55.9351736 -3.2474351, 55.9303474 -3.1688301, 55.9231711 -3.1630255, 55.9251682 -3.2504770, 55.9553468 -3.2876097, 55.9554662 -3.2864616, 55.9340775 -3.2344416, 55.9186700 -3.2386355, 55.9194000 -3.2392334, 55.9181062 -3.2402690, 55.9190442 -3.2405398, 55.9186959 -3.2407877, 55.9325805 -3.2889506, 55.9541504 -3.3018100, 55.9063907 -3.2862198, 55.9390667 -3.2357495, 55.9291158 -3.1990147, 55.9220415 -3.3064155, 55.9238629 -3.3045205, 55.9232078 -3.3078531, 55.9222113 -3.3051267, 55.9583463 -3.1189991, 55.9777348 -3.2983203, 55.9463372 -3.2009161, 55.9347843 -3.1777102, 55.9310132 -3.1730716, 55.8957251 -3.3137161, 55.8961364 -3.3124683, 55.9282756 -3.3087719, 55.8961608 -3.3078477, 55.8697544 -3.3340369, 55.9464077 -3.0792269, 55.9487089 -3.0877156, 55.9472371 -3.3582172, 55.9466989 -3.2004459, 55.9609398 -3.2353282, 55.9611023 -3.2337205, 55.9615648 -3.2337688, 55.9897791 -3.3942172, 55.9548736 -3.4013671, 55.9550518 -3.4014531, 55.9499454 -3.3347136, 55.9332555 -3.1585963, 55.9615076 -3.1962176, 55.9617797 -3.1967210, 55.9618418 -3.1964188, 55.9171133 -3.1693870, 55.9499151 -3.1945526, 55.9337107 -3.2143913, 55.9384227 -3.2096374, 55.9673672 -3.2023565, 55.9331209 -3.2609346, 55.9414121 -3.1461173, 55.9584013 -3.2102800, 55.9415712 -3.1423967, 55.9372219 -3.1675591, 55.9376359 -3.1437325, 55.9582727 -3.2142012, 55.9578400 -3.2137240, 55.9580057 -3.2137170, 55.9583384 -3.2143374, 55.9578384 -3.2135045, 55.9586941 -3.2142670, 55.9579707 -3.2133574, 55.9561334 -3.1325493, 55.9557004 -3.4018948, 55.9461251 -3.1413986, 55.9522035 -3.2050327, 55.9532532 -3.1988728, 55.9527412 -3.2019245, 55.9537795 -3.1957406, 55.9588705 -3.2081707, 55.9208169 -3.1598554, 55.9578355 -3.2056417, 55.9576157 -3.2060293, 55.9576413 -3.2059278, 55.9580732 -3.2011430, 55.9579644 -3.2017381, 55.9580494 -3.2012821, 55.9579410 -3.2018748, 55.9584126 -3.2005043, 55.9582239 -3.2009160, 55.9332968 -3.1356104, 55.9587356 -3.2012076, 55.9229466 -3.2475426, 55.9569863 -3.2004490, 55.9571215 -3.2003372, 55.9569959 -3.2010702, 55.9570258 -3.1998342, 55.9568113 -3.2014707, 55.9568346 -3.2013336, 55.9567905 -3.2018529, 55.9571440 -3.1998405, 55.9569850 -3.2000388, 55.9563224 -3.2001027, 55.9562856 -3.2003225, 55.9563043 -3.2002104, 55.9563423 -3.1999840, 55.9563645 -3.1998513, 55.9558901 -3.2012614, 55.9563424 -3.1994368, 55.9262637 -3.2243126, 55.9197901 -3.4326481, 55.9254217 -3.2108083, 55.9633397 -3.1866387, 55.9317876 -3.2353092, 55.9571314 -3.1945091, 55.9570903 -3.1942658, 55.9571062 -3.1948163, 55.9570078 -3.1956389, 55.9574245 -3.1945101, 55.9570801 -3.1952413, 55.9593471 -3.1962794, 55.9588288 -3.1994335, 55.9583111 -3.1990412, 55.9585624 -3.1980766, 55.9583421 -3.1992286, 55.9586095 -3.1976521, 55.9584283 -3.1986380, 55.9585084 -3.1979077, 55.9575802 -3.1968697, 55.9566931 -3.1981359, 55.9567965 -3.1968319, 55.9566552 -3.1982909, 55.9568562 -3.1972327, 55.9568774 -3.1971123, 55.9156397 -3.3249979, 55.9156923 -3.3238425, 55.9153453 -3.3247946, 55.9153595 -3.3236574, 55.9150128 -3.3243232, 55.9151025 -3.3234941, 55.9305554 -3.2379452, 55.9566534 -3.1920437, 55.9568104 -3.1898625, 55.9566771 -3.1918966, 55.9565541 -3.1926150, 55.9570880 -3.1893684, 55.9567192 -3.1908266, 55.9565429 -3.1914874, 55.9565039 -3.1916747, 55.9581431 -3.1932114, 55.9580069 -3.1929658, 55.9560597 -3.2073932, 55.9426363 -3.2453765, 55.9539415 -3.2061599, 55.9538842 -3.2068469, 55.9541878 -3.2062819, 55.9538990 -3.2065724, 55.9516793 -3.2103388, 55.9087093 -3.1294683, 55.9083658 -3.1302627, 55.9098947 -3.1298365, 55.9086482 -3.1320997, 55.9082094 -3.1281800, 55.9075358 -3.1316654, 55.9067683 -3.1280724, 55.9074133 -3.1295842, 55.9130531 -3.1377878, 55.9579855 -3.4144584, 55.9611738 -3.2007261, 55.9612899 -3.2007540, 55.9610369 -3.2004541, 55.9610414 -3.2006404, 55.9614051 -3.2007464, 55.9620034 -3.1995271, 55.9086030 -3.1535038, 55.9085760 -3.1545047, 55.9109349 -3.1528529, 55.9080474 -3.1628940, 55.9318731 -3.2975150, 55.9315469 -3.2965080, 55.9313921 -3.2957951, 55.9295984 -3.3000022, 55.9502297 -3.1939281, 55.9606540 -3.1948258, 55.9595489 -3.1922083, 55.9583753 -3.1909823, 55.9578621 -3.1897878, 55.9574569 -3.1920171, 55.9575620 -3.1916915, 55.9575374 -3.1909923, 55.9576308 -3.1912457, 55.9575648 -3.1913957, 55.9577829 -3.1897123, 55.9576959 -3.1905223, 55.9577544 -3.1902024, 55.9494095 -3.1864626, 55.9415305 -3.2096039, 55.9477482 -3.1983184, 55.9482088 -3.1927240, 55.9480798 -3.1929875, 55.9476449 -3.1962205, 55.9467112 -3.1954578, 55.9475963 -3.1940675, 55.9395772 -3.2053724, 55.9399587 -3.2058503, 55.9401754 -3.2051474, 55.9459124 -3.1915662, 55.9477804 -3.1928983, 55.9402430 -3.1727693, 55.9460773 -3.1915078, 55.9460762 -3.1916340, 55.9372942 -3.2112450, 55.9386346 -3.2107489, 55.9409866 -3.2107158, 55.9407779 -3.2120796, 55.9410206 -3.2114030, 55.9050910 -3.1343770, 55.9028429 -3.1648741, 55.9402022 -3.2097896, 55.9498358 -3.1944874, 55.9490749 -3.1954965, 55.9035412 -3.1821096, 55.9278308 -3.2029884, 55.9509187 -3.1896338, 55.9549766 -3.1940333, 55.9289340 -3.3850956, 55.9220620 -3.1790686, 55.9484660 -3.1908405, 55.9491359 -3.1879889, 55.9322908 -3.3840708, 55.9328840 -3.3853114, 55.9332462 -3.3859725, 55.9493593 -3.1850273, 55.9498809 -3.1852975, 55.9497910 -3.1868298, 55.9494266 -3.1860127, 55.9544711 -3.1956283, 55.9500589 -3.1853856, 55.9500722 -3.1849837, 55.9510336 -3.1857059, 55.9513675 -3.1810136, 55.9515036 -3.1804098, 55.9105025 -3.3235645, 55.9499184 -3.2133490, 55.9507199 -3.2116484, 55.9492178 -3.2148611, 55.9501657 -3.2128195, 55.9434309 -3.1997040, 55.9254395 -3.3071736, 55.9594881 -3.1871746, 55.9193931 -3.2787375, 55.9181911 -3.2782631, 55.9188677 -3.2805660, 55.9196291 -3.2799665, 55.9204553 -3.2780930, 55.9201801 -3.2782104, 55.9199010 -3.2768654, 55.9183106 -3.2760785, 55.9178305 -3.2802163, 55.9192966 -3.2811296, 55.9190402 -3.2822249, 55.9181350 -3.2823908, 55.9589084 -3.1973993, 55.9524851 -3.1785482, 55.9527783 -3.1777107, 55.9525789 -3.1786026, 55.9526096 -3.1778455, 55.9401136 -3.2035933, 55.9525625 -3.1763202, 55.9525134 -3.1760443, 55.9510367 -3.1792500, 55.9509261 -3.1791989, 55.9266569 -3.2906587, 55.9259672 -3.2906739, 55.9509562 -3.1793029, 55.9715612 -3.1511891, 55.9716128 -3.1531798, 55.9471723 -3.2950498, 55.9502335 -3.1832343, 55.9069836 -3.2745258, 55.9502544 -3.1792709, 55.9799828 -3.2336228, 55.9515884 -3.1767930, 55.9510805 -3.1774572, 55.9233418 -3.1754307, 55.9557050 -3.1593134, 55.9831173 -3.3982598, 55.9831412 -3.3990486, 55.9333835 -3.3060603, 55.9330851 -3.3055704, 55.9330382 -3.3063701, 55.9328514 -3.3048776, 55.9119048 -3.3162745, 55.9124396 -3.3164891, 55.9133755 -3.3158141, 55.9136037 -3.3151038, 55.9135778 -3.3145334, 55.9133853 -3.3144838, 55.9132252 -3.3140003, 55.9139806 -3.3144355, 55.9456742 -3.3672489, 55.9731731 -3.1669137, 55.9237564 -3.2987464, 55.9238278 -3.2979670, 55.9236823 -3.2992800, 55.9236244 -3.2983415, 55.9756413 -3.1693138, 55.9758911 -3.1692936, 55.9758604 -3.1697211, 55.9753361 -3.1696582, 55.9147293 -3.1511366, 55.9721048 -3.1685421, 55.9721151 -3.1680154, 55.9717652 -3.1690738, 55.9732515 -3.1673385, 55.9715681 -3.1606383, 55.9692273 -3.1671765, 55.9730053 -3.1675964, 55.9756256 -3.1775110, 55.9713870 -3.1706865, 55.9729528 -3.1695492, 55.9751541 -3.1650251, 55.9751577 -3.1653774, 55.9763527 -3.1666992, 55.9766234 -3.1668946, 55.9770520 -3.1688358, 55.9763420 -3.1688202, 55.9768312 -3.1689243, 55.9769477 -3.1679184, 55.9764831 -3.1675618, 55.9766276 -3.1674364, 55.9767630 -3.1679004, 55.9763615 -3.1673944, 55.9762132 -3.1674013, 55.9764423 -3.1672457, 55.9736969 -3.1671845, 55.9743212 -3.1625378, 55.9740795 -3.1632105, 55.9740620 -3.1630357, 55.9742799 -3.1619687, 55.9742593 -3.1633249, 55.9742318 -3.1635897, 55.9752231 -3.1690512, 55.9746912 -3.1702181, 55.9750377 -3.1689925, 55.9746574 -3.1700411, 55.9749450 -3.1691192, 55.9749017 -3.1700282, 55.9720281 -3.1737035, 55.9727889 -3.1744380, 55.9727346 -3.1745843, 55.9721351 -3.1736643, 55.9741171 -3.1730714, 55.9735318 -3.1745179, 55.9740812 -3.1745082, 55.9739348 -3.1746700, 55.9742013 -3.1746074, 55.9744262 -3.1756289, 55.9743317 -3.1760719, 55.9738875 -3.1759382, 55.9743689 -3.1762422, 55.9741727 -3.1757146, 55.9741963 -3.1758890, 55.9740011 -3.1760644, 55.9740555 -3.1757628, 55.9253013 -3.2894404, 55.9241260 -3.2892037, 55.9235279 -3.2886413, 55.9220176 -3.2971855, 55.9737812 -3.1727710, 55.9739374 -3.1725951, 55.9739122 -3.1731923, 55.9747248 -3.1723013, 55.9746745 -3.1725116, 55.9730956 -3.1719611, 55.9737461 -3.1722015, 55.9735419 -3.1722524, 55.9737264 -3.1720461, 55.9734307 -3.1722581, 55.9733652 -3.1721379, 55.9733894 -3.1719573, 55.9732022 -3.1719596, 55.9732758 -3.1714536, 55.9725117 -3.1719833, 55.9716033 -3.1728525, 55.9716849 -3.1726165, 55.9719508 -3.1722289, 55.9718987 -3.1720621, 55.9737219 -3.1688570, 55.9753470 -3.1700225, 55.9746740 -3.1690745, 55.9745309 -3.1710571, 55.9744986 -3.1695250, 55.9745046 -3.1693685, 55.9746944 -3.1711617, 55.9296471 -3.1268952, 55.9759337 -3.1724595, 55.9759996 -3.1723194, 55.9758148 -3.1719840, 55.9760071 -3.1718126, 55.9759678 -3.1720731, 55.9756249 -3.1743429, 55.9756742 -3.1728919, 55.9436134 -3.2678368, 55.9789651 -3.2338860, 55.9718369 -3.3043977, 55.9672312 -3.2394326, 55.9745116 -3.2044948, 55.9740769 -3.2060525, 55.9744149 -3.2047233, 55.9748045 -3.2066664, 55.9691367 -3.2785220, 55.9452261 -3.3675496 +no +13 +Dalmeny Parish Church, St Stephens Comely Bank, Craiglockhart Parish Church, Queensferry Parish Church, St. Anne's Church, Old Kirk of Edinburgh, St. Ninian's Church, St Christopher's, Pilrig St Paul's, Leith Free Church, Craigsbank Parish Church, Corstorphine Old Parish Church, Saint Annes Church, Cramond Kirk, St Michael's Parish church, Broughton St. Mary's, Kirk O'Field, St. Giles' Cathedral, South Leith Parish Church, Reid Memorial Church, Granton Parish Church, Marchmont St Giles Parish Church, Murrayfield Parish church, Gorgie Dalry Parish Church, Saint Cuthbert, Colinton Parish Church, Mayfield Salisbury Parish Church, St John's, Colinton Mains Parish Church, Stockbridge Parish Church, St Andrew's and St George's West, Inverleith Parish Church, Leith St Andrew's, South Leith Parish Church, Newhaven Church, Wardie Parish Church, Muirhouse St Andrews, Drylaw Parish Church, North Leith Parish Church, Dean Parish Church, Juniper Green Parish Church, Blackhall St. Columba's Church, Kirkliston Parish Church of Scotland, Greyfriars Church, London Road Parish Church, London Road Parish Church, St Serf's Parish Church +Dalmeny Parish Church, St Stephens Comely Bank, True Jesus Church (St Lukes), Craiglockhart Parish Church, Queensferry Parish Church, St. Anne's Church, Muirhouse Kingdom Hall, Old Kirk of Edinburgh, St Paul's RC Church, St. Ninian's Church, St Ninians, St Christopher's, St Andrews Catholic Church, St Catherine of Alexandria, Pilrig St Paul's, Idara Taleem ul Quran, St Johns, Leith Free Church, South Leith Baptist Church, Ardmillan Hall, Guru Nanak Gurdawara Singh Sabha, Craigsbank Parish Church, Chaplaincy, Kirkliston Parish Church, Wilson Memorial United Free Church, Corstorphine Old Parish Church, Methodist Central Hall, Duke Street United Reformed Church, Saint Mark's, Capital City Church International (3Ci), Old Schoolhouse Christian Fellowship, St Cuthbert's, Greenside Parish Church, Davidson's Mains Parish Church, Saint Annes Church, Ferniehill Evangelical Church, All Nations Christian Fellowship, Methodist Central Hall, Baha'i Centre for Scotland, The Chaplaincy, True Jesus Church, East Adam Street, Canongate Kirk, Bristo Memorial Church, The Robin Chapel, Niddrie Community Church, Richmond Craigmillar Church, Catholic Church of St Teresa, St Mary Magdalene, Duddingston Kirk, St Philips Joppa Parish Church, Tron Kirk, St Barnabas, Edinburgh Central Mosque, Cramond Kirk, Mortonhall Chapel, Barclay Viewforth Parish Church, St Michael's Parish church, Polwarth Church, Broughton St. Mary's, The Hive, Saint Martin of Tours Episcopal Church, St Margaret's Chapel, Life church, Buccleuch and Greyfriars, Orthodox Church of St Andrew, Kirk O'Field, St. Giles' Cathedral, South Leith Parish Church, Augustine United Church, St Columba's, St Philip's Church, Kingdom Hall, Saint Cuthberts Church, Destiny Church, St Vincent's Chapel, Ebeneezer, Reid Memorial Church, Gilmore Place Free Presbyterian Church of Scotland, St Ninians Episcopal Church, East Craigs Church Centre, Granton Salvation Army Hall, Seventh-day Adventist Church, Granton Parish Church, St Margaret and Mary, St Davids, Granton Baptist Church, Marchmont St Giles Parish Church, Murrayfield Parish church, Gorgie Mission, Gorgie Dalry Parish Church, Chruch of the Good Shepherd, Liberton Northfield Parish Church, Saint Cuthbert, Carrick Knowe Parish Church, Wester Hailes Baptist Church, Colinton Parish Church, Saint Margaret's and Saint Leonard's, Mayfield Salisbury Parish Church, Carrubbers Christian Centre, St Salvidor's Episcopal Church, IQRA Academy, Craigmillar Park Church, Fairmilehead Parish Church, St Mark's, St John's, Colinton Mains Parish Church, Canonmills Baptist Church, Stockbridge Parish Church, St Andrew's and St George's West, St. James Goldenacre, Inverleith Parish Church, Rhema Church, Chapel of Remembrance, Pentland Chapel, The Edinburgh Hebrew Congregation, Leith St Andrew's, Mohuiddin Jamia Masjid, South Leith Parish Church, Newhaven Church, Anwar-E-Madina, Greenbank Church, Abbeyhill Baptist Church, St Fillan, Wardie Parish Church, The Chaplaincy, Muirhouse St Andrews, Drylaw Parish Church, King's Church Edinburgh, Holy Cross RC Church, North Leith Parish Church, Leith Baptist Church, Charlotte Baptist Chapel, Bellevue Chapel, Morningside United Church, Ratho Parish Church, St Margaret's Catholic Church, World Conqueror Christian Centre, Saint Catherine's Argyle, Bristo Baptist Church, Palmerston Place Church, Duncan Street Batptist Church, St Mary's Star of the Sea, Church of the Sacred Heart of Jesus, Morningside Parish Church, Dean Parish Church, Juniper Green Parish Church, St Mary's Episcopal Cathedral, Blackhall St. Columba's Church, Chapel of St. Albert the Great, German Church, Holy Cross Church, Balerno Parish Church, Quaker Meeting House, St Mary's Metropolitan Cathedral (RC), St. Davids Broomhouse Church, St Peter's Catholic Church, St Columba's, Christ Church (Morningside), Saint Columba's by the Castle, Bruntsfield Evangelical Church, St Nicholas Parish Church, Kirkliston Parish Church of Scotland, Saint Stephen's Church, Priestfield Parish Church, St Paul's & St George's, St Michael and All Saints, Greyfriars Church, The Parish of St Gregory the Great, London Road Parish Church, London Road Parish Church, St. Patrick's, Old Saint Paul's, St Margaret's Episcopal Church, Community Church Edinburgh, Saint Peter's Church, Elim Edinburgh, Our Lady of Pochaiv and Saint Andrew, World Conqueror Christian Centre, St Albert's Catholic Chaplaincy, St Albert's Catholic Chaplaincy, St Serf's Parish Church, Church of St John +3 +yes +Flughafen Karlsruhe/Baden-Baden, Flughafen Frankfurt am Main, Flugplatz Frankfurt-Egelsbach, Sonderlandeplatz Linkenheim, Verkehrslandeplatz Lohrbach, Pattonville, Flugplatz Weinheim, Coleman AAF, Ultraleichtflieger Bürstadt (PPR), Segelflugplatz Heppenheim, Flugplatz Schwäbisch Hall-Weckrieden, Aero Club Esslingen Sportfluggelände, Segelflugplatz, Flugplatz Altfeld, Adolf Würth Airport, Walldürn Landepiste, Ingelfingen-Bühlhof Airport, Sonderlandeplatz Baden-Oos, Ramstein Air Base, Landau-Ebenberg, Segelflugplatz Weinheim, Segelfluggelände Hermuthausen, Sportflugplatz Langenlonsheim, EDGU Unterschuepf, Segelflugplatz Schreckhof, Fluggelände Hausäcker, Adolf Würth Airport, Auchtweid, Segelfluggelände Heilbronn-Böckingen, August Euler Flugplatz, Aeroclub Schweighofen Wissembourg, ehem. Heidelberg Army Air Field, Sonderlandeplatz Pattonville, Herrenteich, Segelflugplatz, Adolf Würth Airport, Segelflugplatz FSC Mühlacker, Flugplatz Worms, Segelflugplatz Grünstadt Quirnheim, Flugplatz Bruchsal, Segelfluggelände Dannstadt, Flugplatz, Flugplatz Lilienthal, Segelflugsportverein Haßloch/Pfalz e. V., Flugplatz Backnang-Heiningen, Flugplatz Völkleshofen-Lichtenberg, Flugplatz Bad Dürkheim, UL Sonderlandeplatz Dörzbach-Hohebach, Wissembourg ULM, Segelfluggelände Rheinstetten, Verkehrslandeplatz Mainbullau, Segelfluggelände Möckmühl, Flugplatz Mainz-Finthen, Segelflugplatz Im Weitfeld, Flugplatz Bundenthal-Rumbach, Flugsportvereinigung Pleidelsheim, Speyer, Babenhausen Airport, Flugplatz Domberg, Bad Sobernheim, Segelfluggelände Hermuthausen, Flugplatz Pirmasens-Pottschütthöhe, Aschaffenburg, Flugplatz Oppenheim, Flugplatz Michelstadt, City-Airport Mannheim, Sportflugplatz Walldorf, Segelfluggelände Reinheim, Imsweiler-Donnersberg, Flugplatz Langenlonsheim, Segelfluggelände Degmarn, Segelfluggelände Baumerlenbach, Flugplatz Schlierstadt +Musée de l'Armée and http://www.musee-armee.fr/, Conservatoire Niedermeyer, Musée de l'Assistance Publique Hôpitaux de Paris and www.aphp.fr/, Musée des Arts Décoratifs - Musée de la Publicité and http://www.lesartsdecoratifs.fr/francais/arts-decoratifs/, Musée national des Arts et Métiers and http://www.arts-et-metiers.net/, Tour de Jean-sans-Peur and http://www.tourjeansanspeur.com/, Musée Gustave Moreau and www.musee-moreau.fr, Les Égouts de Paris and http://www.paris.fr/loisirs/musees-expos/musee-des-egouts/visite-publique-des-egouts-de-paris/rub 9691 stand 5943 port 23931, Musée Pasteur and http://www.pasteur.fr/ip/easysite/pasteur/fr/institut-pasteur/musees/musee-pasteur, Espace Dali and www.daliparis.com/, Musée de la carte à Jouer, Musée en Herbe and http://www.musee-en-herbe.com/, Musée en Herbe, Môm'artre, Studio des Islettes, Maison Européenne de la Photographie and http://www.mep-fr.org, Musée de l'Eventail and www.annehoguet.fr/musee.htm, Musée de la Poupée and http://www.museedelapoupeeparis.com/, Espace Icare and http://www.espace-icare.net/, Catacombes de Paris and catacombes.paris.fr/, Conservatoire municipal Claude Debussy - Site de la Jonquière and http://equipement.paris.fr/conservatoire-municipal-claude-debussy-site-la-jonquiere-3976, Musée de l'Erotisme and www.musee-erotisme.com, Atelier de Restauration et de Conservation des Photographies de la Ville de Paris and http://www.paris.fr/politiques/conservation-restauration/atelier-de-restauration-et-de-conservation-des-photographies-de-la-ville-de-paris/p7672#, Musée des années 30, Musée du Petit Palais and http://www.petitpalais.paris.fr/, Musée de la Légion d'Honneur et des Ordres de Chevalerie and http://www.musee-legiondhonneur.fr/, Conciergerie and http://conciergerie.monuments-nationaux.fr/, Musée du Vin and www.museeduvinparis.com, Musée de la Poste and http://www.ladressemuseedelaposte.com/, galerie-musée Baccarat and http://www.baccarat.fr/fr/univers-baccarat/musees/gallery-opening-hours.htm, Salle des collections and http://forumdesimages.fr/, Barbara Fleury and http://www.fgo-barbara.fr, Soundfactor, Musée du Service de Santé des Armées, Choco-Story - Le musée gourmand du chocolat and www.museeduchocolat.fr, Musée-Jardin Paul Landowski, Le Lucernaire, Cité de l'architecture et du patrimoine and http://www.citechaillot.fr/fr/, Musée de la Marine and www.musee-marine.fr, Musée de la franc-maçonnerie and http://www.museefm.org/, Centre culturel L'Escale, Espace des Sciences Pierre-Gilles de Gennes, Deyrolle, Fondation Le Corbusier and www.fondationlecorbusier.asso.fr, Musée de la Contrefaçon and http://musee-contrefacon.com/, Musée Dapper and www.dapper.com.fr, Musée Adzak - Espace d'Art International, Musée d'Anatomie Delmas-Orfila-Rouvière and www.mairie6.paris.fr, Musée Arménien de France and www.le-maf.com/, Musée Boleslas Biegas - Musée Adam Mickiewicz and www.bibliotheque-polonaise-paris-shlp.fr, Musée Bible et Terre Sainte and www.icp.fr, Musée Bouilhet-Christofle - Musée d'Orfèvrerie and http://www.christofle.com/, Musée Clemenceau and www.musee-clemenceau.fr/, Musée-Librairie du Compagnonnage and www.compagnons.org/, Musée d'Anatomie Pathologique Dupuytren and www.upmc.fr/, Musée Valentin Haüy and www.avh.asso.fr/, Musée Henner and www.musee-henner.fr/, Musée d'histoire de la Médecine and www.bium.univ-paris5.fr/musee/, Musée Maillol and www.museemaillol.com/, Musée des Lettres et Manuscrits and http://www.museedeslettres.fr/, Musée du Montparnasse and www.museedumontparnasse.net/, Musée de Minéralogie and http://www.mines-paristech.fr/, Musée Moissan and www.paris.fr/, Crypte Archéologique du Parvis Notre-Dame and crypte.paris.fr/, Bibliothèque-Musée de l'Opéra and www.bnf.fr/, Musée Pierre Marly - Lunettes et Lorgnettes, Musée de la Préfecture de Police and prefecturedepolice.interieur.gouv.fr, Musiques Tangentes, Centre Culturel Suisse, Tour de la Cathédrale, Maison de la Pêche et de la Nature, Le trésor de Notre-Dame de Paris, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin and http://www.paris.fr/loisirs/musees-expos/memorial-leclerc-et-de-la-liberation-de-paris-musee-jean-moulin/p6923, Espace Albert Gazier, Musée national d'art moderne and http://www.centrepompidou.fr/cpv/ressource.action?param.id=FR R-89fd49e847165bc78d564f6dbeb6777¶m.idSource=FR E-2ab598d3369ad7a58ead7e6be32ba7b, Maxim's Art Nouveau "Collection 1900" and http://www.maxims-musee-artnouveau.com/, Collection des minéraux - Jussieu, Centre culturel italien, Centre Culturel la Jonquière, Fondation Henri Cartier-Bresson and http://www.henricartierbresson.org, Galerie Royale, Académie de la Magie, Au Bonheur du Jour, cité des arts, La Métisse, Conservatoire municipal Jean-Philippe Rameau, Musée du Barreau and http://www.avocatparis.org/home/presentation-et-missions/histoire-du-barreau-de-paris/musee-virtuel.html, Katakomben von Paris, Auditorium, Institut des Lettres et Manuscrits, Musée du quai Branly and http://www.quaibranly.fr/, Galerie de Minéralogie et de Géologie and http://www.museum-mineral.fr/, Institut du Monde Arabe and www.imarabe.org/, Jardin Tino Rossi - Musée de la Sculpture en Plein Air and equipement.paris.fr/JARDIN TINO ROSSI, Collège des Bernardins, Halle Saint-Pierre and www.hallesaintpierre.org, Hôtel de Sully, Conservatoire du Centre and http://equipement.paris.fr/conservatoire-municipal-w-a-mozart-1595, Jeu de Paume and www.jeudepaume.org, Musée de l'Orangerie and www.musee-orangerie.fr/, Centre Pompidou, Atelier Brancusi, Centre Wallonie-Bruxelles and http://www.cwb.fr/, Futur Fondation Galeries Lafayette, Espace des Blancs-Manteaux, Musée Curie and www.curie.fr/, Grand Palais and www.grandpalais.fr/, Pavillon de l'Arsenal and http://www.pavillon-arsenal.com/, La Gaîté lyrique and http://www.gaite-lyrique.net/, Musée National du Moyen Âge and www.musee-moyenage.fr/, Musée d'Art et d'Histoire du Judaïsme and www.mahj.org, Archives Nationales and http://www.archivesnationales.culture.gouv.fr/, Musée de la Serrure, Musée Picasso and http://www.museepicassoparis.fr/, Musée Cognacq-Jay and http://www.paris.fr/loisirs/musees-expos/musee-cognacq-jay/p6466, Musée national Eugène Delacroix and www.musee-delacroix.fr, Orangerie du Sénat, Musée d'Orsay and http://www.musee-orsay.fr, Conservatoire Hector Berlioz, Institut hongrois, Galerie J. Kugel, Musée national Ernest-Hébert, Espace Fondation EDF, Institut Néerlandais and www.institutneerlandais.com/, Immeuble Molitor, Pinacothèque de Paris and www.pinacotheque.com/, Musée Nissim de Camondo and www.lesartsdecoratifs.fr/, Musée Cernuschi and http://cernuschi.paris.fr/, Musée Rodin and www.musee-rodin.fr/, Musée Jacquemart-André and http://www.musee-jacquemart-andre.com/, Musée De Dion-Bouton, Conservatoire Municipal Nadia et Lili Boulanger and equipement.paris.fr/Conservatoire Municipal Nadia et Lili Boulanger, Musée Renault and https://www.sites.google.com/site/histoiregrouperenault/expos/expo-musee, Pavillon de Vendôme and http://www.ville-clichy.fr/382-le-pavillon-vendome-centre-d-art-contemporain.htm, Conservatoire Léo Delibes, Les Studios de Boulogne Musique, Le BAL and http://www.le-bal.fr/, Musée Paul-Belmondo and http://www.boulognebillancourt.com/previous/museepaulbelmondo/index.html, Centre d'Animation "Les Abbesses" and http://equipement.paris.fr/centre-d-animation-les-abbesses-1154, Fondation Pierre Bergé Yves Saint-Laurent and http://www.fondation-pb-ysl.net, Musée d'Art Moderne de la Ville de Paris and www.mam.paris.fr/, Palais de Tokyo and www.palaisdetokyo.com/, Fondation Cartier and fondation.cartier.com/, Musée Guimet and www.guimet.fr/, Maison Chana Orloff, Musée Bourdelle and paris.fr/loisirs/musees-expos/musee-bourdelle/p6408, Musée d'Ennery and http://www.guimet.fr/fr/musee-dennery/informations-pratiques, Centre Culturel Louis de Broglie and mjcneuilly92.com, Musée Roybet Fould, Musée Marmottan and www.marmottan.com, Grande Galerie de l'Évolution, Conservatoire Francis Poulenc, Musée de la Vie Romantique and http://vie-romantique.paris.fr, Maison de Balzac and http://balzac.paris.fr, Pavillon de l'eau and http://eaudeparis.fr/lespace-culture/pavillon-de-leau/, Mémorial de la Shoah and http://www.memorialdelashoah.org/, Maison de la Culture du Japon and http://www.mcjp.fr/, Musée Zadkine and http://zadkine.paris.fr, Musée de Montmartre and www.museedemontmartre.fr/, Musée de la chasse et de la nature and www.chassenature.org, Manufacture des Gobelins and http://www.mobiliernational.culture.gouv.fr/, Musée du Luxembourg and www.museeduluxembourg.fr/, Point - Afrique, Palais de la Découverte and http://www.palais-decouverte.fr/, Centre Culturel Suédois and www.si.se/Paris/, Musée de la magie, Fondation Louis Vuitton and http://www.fondationlouisvuitton.fr/, Hôtel des Monnaies and http://www.monnaiedeparis.fr/, Musée Galliera and http://palaisgalliera.paris.fr/, Musée Carnavalet and http://carnavalet.paris.fr/, Le Louvre and http://www.louvre.fr/, Sainte-Chapelle and http://sainte-chapelle.monuments-nationaux.fr/ +49.4073193 8.7078225, 49.4143210 8.7642858 +3.1898615003168422 +5 +yes +59 +Mo-Th 06:00-01:00, Fr-Sa 06:00-04:00, Su, Ph 06:00-01:00 +Musée en Herbe and 48.8651191 2.3417893 +yes +0 +8 +55.9676146 -3.1851220, 55.9389438 -3.1762512, 55.9342812 -3.1910903, 55.9468366 -3.1927193, 55.9242044 -3.2136831, 55.9267237 -3.2541012, 55.9399653 -3.2243647, 55.9530161 -3.2227017, 55.9543705 -3.2231752, 55.9545272 -3.4038139, 55.9848485 -3.4000740, 55.9895563 -3.3951093, 55.9138101 -3.1625880, 55.9139003 -3.1561271, 55.9021949 -3.1741206, 55.9311802 -3.1650916, 55.9494846 -3.2921322, 55.9535325 -3.1763565, 55.9591815 -3.2287132, 55.9369373 -3.2288584, 55.9293858 -3.1242296, 55.9546952 -3.1369685, 55.9449273 -3.0904981, 55.9265280 -3.1510008, 55.9684639 -3.1977758, 55.9668042 -3.1974105, 55.9263848 -3.3788125, 55.9087627 -3.3266637, 55.9776182 -3.2998389, 55.9696978 -3.1493775, 55.9540571 -3.1860764, 55.9719475 -3.1703032, 55.9456846 -3.1922146, 55.9093414 -3.2564463, 55.9087839 -3.2561638, 55.9085715 -3.2558102, 55.9631536 -3.1680074, 55.9534939 -3.1859938, 55.9242973 -3.3802986, 55.9535098 -3.1860262 +55.9515016 -3.2049952, 55.9440818 -3.1852249, 55.9358639 -3.2091972, 55.9581960 -3.2080531, 55.9457050 -3.2037107, 55.9456972 -3.2040704, 55.9382217 -3.2058349, 55.9504119 -3.1888113, 55.9512937 -3.2112702, 55.9057072 -3.2230862, 55.9747341 -3.1674332, 55.9573347 -3.1870575, 55.9537621 -3.1970655, 55.9551635 -3.1504704, 55.9568932 -3.1877875, 55.9573876 -3.1882337, 55.9570085 -3.1883445, 55.9541444 -3.1874139, 55.9500005 -3.2077642, 55.9570940 -3.1852268, 55.9779143 -3.1684989, 55.9484747 -3.1864289, 55.9506787 -3.2078124, 55.9551490 -3.1957714, 55.9462645 -3.1891555, 55.9512987 -3.2096416, 55.9599112 -3.1822027, 55.9489030 -3.2106596, 55.9483828 -3.2061195, 55.9474318 -3.2069644, 55.9576011 -3.1846430, 55.9584582 -3.1901573, 55.9499100 -3.2084201, 55.9537219 -3.1906118, 55.9468703 -3.2158788, 55.9514905 -3.2100788, 55.9513702 -3.2115575, 55.9426900 -3.2041310, 55.9562845 -3.2025675, 55.9545246 -3.1975013, 55.9540721 -3.1972479, 55.9534114 -3.1989539, 55.9526918 -3.2040299, 55.9523166 -3.2057181, 55.9507080 -3.2063304, 55.9498027 -3.2080511, 55.9498942 -3.1936994, 55.9539653 -3.2006949, 55.9544427 -3.1980662, 55.9538261 -3.1967340, 55.9564993 -3.1858115, 55.9515458 -3.2098937, 55.9511224 -3.2096268, 55.9521342 -3.1995774, 55.9509356 -3.1902406, 55.9902692 -3.3964391, 55.9454499 -3.2050290, 55.9497597 -3.2074169, 55.9396572 -3.1699848, 55.9486923 -3.1882174, 55.9569349 -3.1875427, 55.9486091 -3.1930739, 55.9481394 -3.1916619, 55.9570070 -3.1853290, 55.9487847 -3.1860065, 55.9485463 -3.1864684, 55.9480207 -3.1915820, 55.9509189 -3.1904398, 55.9496956 -3.1870785, 55.9577513 -3.2066055, 55.9539831 -3.1996939, 55.9586760 -3.1904335, 55.9525280 -3.2044479, 55.9382960 -3.1915943, 55.9581259 -3.1898042, 55.9462480 -3.2126362, 55.9736032 -3.1729794, 55.9463053 -3.1838351, 55.9541892 -3.2015393, 55.9593280 -3.2143392, 55.9428529 -3.2085302, 55.9492302 -3.1861131, 55.9570806 -3.1866874, 55.9457070 -3.2036262, 55.9511467 -3.1887459, 55.9563641 -3.1858503, 55.9530844 -3.1892765, 55.9500057 -3.2078391, 55.9532061 -3.1907837, 55.9489093 -3.1872526, 55.9496224 -3.1870411, 55.9505002 -3.1861418, 55.9499058 -3.1934663, 55.9395588 -3.1795881, 55.9518140 -3.2061799, 55.9524600 -3.1964337, 55.9528853 -3.1966329, 55.9481456 -3.1868202, 55.9483629 -3.1876394, 55.9481205 -3.1869530 +http://buffalogrill.co.uk +1 +55.9311721 -3.1891931 +48.8503975 2.3429508, 48.8628907 2.3351275, 48.8699382 2.3403209, 48.8728847 2.2989591, 48.8732083 2.2979398, 48.8728311 2.3429546, 48.8516699 2.3435357, 48.8530171 2.3437086, 48.8759449 2.3241482, 48.8612868 2.3461069, 48.8738880 2.3330270 +info@hotel-etab.de, info@ritter-heidelberg.de, info@molkenkur.de, info@hoteldenriko-hd.de +yes +11 +steak house, italian, chinese, sudanese, curry, indian, thai, spanish, japanese, regional, cantonese, pie, american, seafood, pizza, lebanese, french, vegetarian, Cantonese, mexican, mediterranean, mongolian, chargrill, kurdish, Lebanese, middle eastern, noodle, asian, turkish, korean, Malaysian, greek, brazilian, fish, international, sushi, arab, vietnamese, burger, latin american, caribbean, chicken, tapas, malaysian, Scotish, Punjabi, spanish tapas, british, portuguese, african, soup, Mediterranean, phillipino, Middle Eastern, fish and chips, nepali, sandwich, kebab +32 +en:Edinburgh +8.5077722 125.9789017, 8.5070910 125.9786762 +yes and 3 +71 +48.8622200 2.3675608 +no ++44 (0)131 667 1264 +1.5214474225480654 +55.9509120 -3.1684417, 55.9505684 -3.1636997, 55.9409571 -3.1518694, 55.9414904 -3.1501988, 55.9414101 -3.1510969, 55.9304112 -3.2001421 +Drumsheugh Baths Club, Glenogle Swim Centre, Dollar Academy Swimming Pool, Peebles Swimming Pool +49.4220712 8.6747880, 49.4338914 8.6803397, 49.4248554 8.6842438, 49.4181588 8.6814978, 49.4183470 8.6872741, 49.4197789 8.6871221, 49.4207750 8.6845900, 49.4220217 8.6830623, 49.4248833 8.6877871, 49.4283894 8.6851615, 49.4312787 8.6910498, 49.4329833 8.6806293, 49.4143251 8.7187531, 49.4277498 8.6794326, 49.4376060 8.6778079, 49.4151221 8.7620371 +episcopal, roman catholic +yes +0 +49.4045638 8.6759283 and 49.4081513 8.6723497 +52.0583801 8.5520281, 52.0929733 8.5326795, 52.0051281 8.5264278, 52.0107287 8.5202197, 51.9568591 8.5479920, 52.0112149 8.5297888 +192 +20 mph, 20 mph, 20 mph, 20mph +yes +no +28 +Vendôme +1 +no +1 +10.474594310144349 +3 and 55.9276315 -3.2611513, 55.9481163 -3.2005051, 55.9480729 -3.2006300 +Mo-Sa 9:00 +138 +yes +Broughton Rugby Club, Currie RFC +yes +49.4129122 8.7088486 +yes +http://www.carondebeaumarchais.com/, http://www.paris-hotel-lion.com, http://edenhotel-montmartre.com, http://www.solmelia.com, http://www.accorhotels.com/fr/hotel-1400-ibis-paris-tour-eiffel-cambronne-15eme/index.shtml, http://www.citadines.com, http://www.hotelbelorangerparis.com/, http://www.hovicha.com, hallehotel.fr, http://www.bestwestern-folkestoneopera.com/, http://www.hotelsydneyopera.com/, http://lewaltparis.com/fr, http://www.pershinghall.com, http://hotelmonnalisa.com/fr, http://www.hotel-faubourg-216-214-paris.federal-hotel.com/, http://hotel-montana-lafayette.com, http://www.marcianohotel-garedunord.com, http://www.paris-hotel-americain.com/, http://www.hotelgeorgette.com, http://www.raphael-hotel.com/, http://www.colordesign-hotel-paris.com, http://www.foch-paris-hotel.com/, http://www.hotel-studio.com/, http://hotelderbyalma.com/fr, http://www.astotel.com/hotel-acadia-opera-paris.php, http://www.hotelroncerayopera.fr, http://www.hoteldamiens.com/, http://www.hotel-delos-vaugirard-paris.com/, avalonparis.com, www.paris-saint-honore.com, http://www.hipotel.info/fr/hipotel-paris-nation, hotel-11.html, www.parishotellittleregina.com/, http://www.plaza-opera-paris.com/, http://www.villaoperalamartineparis.com/, http://www.hotel-montmartre-duperre.com, http://www.hotel-splendid-paris.com, http://www.novotel.com/fr/hotel-1834-novotel-paris-porte-d-orleans, http://www.shangri-la.com/paris, http://www.alesia-paris-hotel.com, http://www.61-paris-nation-hotel.com, http://www.amhotelitalie.com, http://hotelarian.com, http://www.hotel-meridional-paris.com/, http://www.pvhotel.com, http://www.clarisse-paris-hotel.com, http://parisportedeversailles.medianhotels.com, http://www.villa-royale-montsouris-paris.com, http://www.hotelvirgina.com, http://www.parishotelmontsouris.com, http://www.cecil-hotel-montparnasse.com, http://www.parc-hotel-paris.com, http://www.hotelduparcstcharles.com, http://www.sourcehotel.fr, http://www.hotelbellevue75.com, http:/http://www.hotel-turenne.com, http://www.hotel-petit-belloy-saint-germain.com/, http://www.hotel-paris-belloy.com/, http://www.cordelia-paris-hotel.com/, http://www.astotel.com/hotel-bergere-opera-paris.php, http://www.jardindevilliers.com, http://www.pavillon-monceau-etoile.com, http://www.leshotelsdeparis.com/fr/nos-hotels/fiche/20/pavillon-villiers-etoile.html, www.beausejour-montmartre.com, http://lemarquisparis.com/fr, http://www.hotelroyalsaintmichel.com/, http://www.hotelchopin.fr/, www.hotelparispaix.com, http://www.perreyve-hotel-paris-luxembourg.com, http://www.hoteldelavenir.com/fr/, http://www.hotel-istria-paris.com/, http://www.paris-hotel-lavallee.com, http://hotellabourdonnais.fr/, http://www.villa-montparnasse.com/, http://www.accorhotels.com/de/hotel-8465-ibis-styles-paris-pigalle-montmartre/index.shtml, http://www.accorhotels.com/de/hotel-8465-ibis-styles-paris-pigalle-montmartre/index.shtml, www.hotelfertel.com, http://www.hotelnovanox.com/, http://www.radissonblu.com/dokhanhotel-paristrocadero, www.academiehotel.com, http://www.hoteldutriangledor.com/, http://www.hoteldesers-paris.com, http://www.hotelbelami-paris.com, http://www.hoteledouard7-paris.com, http://paris.peninsula.com, http://www.amadeus-hotel-paris.com/, http://www.amadeus-hotel-paris.com/, http://www.pinkhotel.fr/en, hotelajiel.com, http://lerobinetdor.com, http://www.hoteldevenise.fr/, http://www.splendid-hotel-paris.com/, novotelparis.com, http://www.timhotel.com/, http://www.hotel-diana-paris.com/, http://www.hotel-bastille-speria.com/, http://www.paris-hotel-senlis.com/, http://www.ibishotel.com/gb/hotel-1399-ibis-paris-bastille-opera-11eme/index.shtml, http://www.choicehotels.fr/fr/comfort-hotel-fr260, http://www.ibishotel.com/fr/hotel-1401-ibis-paris-la-villette-cite-des-sciences-19eme/location.shtml, http://www.hoteloperamarignyparis.com, http://www.hotelducollectionneur.com/, http://www.hotel-rotary.fr/, http://www.hotel-touring.fr/, www.hotel-monterosa-opera.com, http://www.hotelvernet.com/, http://www.lilas-gambetta.com/, http://www.mercure.com/fr/hotel-0934-mercure-paris-austerlitz-bibliotheque/index.shtml, hotelroyalfromentin.com, http://www.solarhotel.fr/, http://www.paris-orleans-hotel.com, http://www.acropole-paris-hotel.com/, http://www.accorhotels.com/fr/hotel-3546-novotel-paris-tour-eiffel/, http://www.accorhotels.com/fr/hotel-6790-adagio-paris-tour-eiffel/, http://www.hotel-lilas-blanc-paris.fr/, http://www.paris-hotel-tourville.com/fr +yes +55.9455830 -3.1876260 +48.8373758 2.2723483, 48.8479197 2.3992555, 48.8480669 2.2646701, 48.8444572 2.3762234, 48.8336197 2.4448135, 48.8374741 2.2964370, 48.8426769 2.2964541, 48.8447051 2.3110485, 48.8418578 2.3031404, 48.8356667 2.3025546, 48.8418917 2.2973124, 48.8375362 2.2963597, 48.8371698 2.2968218, 48.8411351 2.2996815, 48.8513851 2.3427515, 48.8267972 2.3644166, 48.8266959 2.3418366, 48.8313237 2.3160082, 48.8276961 2.3323037, 48.8526158 2.3471643, 48.8536884 2.3438503, 48.8465209 2.3169152, 48.8223603 2.3376975, 48.8333496 2.3122320, 48.8468908 2.3696558, 48.8422395 2.3861184, 48.8463028 2.3793259, 48.8399294 2.4045970, 48.8448378 2.4051177, 48.8474520 2.4048594, 48.8473395 2.4060719, 48.8350796 2.4339399, 48.8354938 2.4305358, 48.8375477 2.4255552, 48.8346793 2.4193483, 48.8554435 2.3595073, 48.8529019 2.3430541, 48.8502442 2.3485713, 48.8410791 2.3878034, 48.8364073 2.3595567, 48.8325568 2.3113862, 48.8326306 2.3560783, 48.8397407 2.3618144, 48.8430681 2.3643136, 48.8548336 2.3455606, 48.8552512 2.3476157, 48.8553803 2.3476867, 48.8554064 2.3475533, 48.8552816 2.3474675, 48.8316089 2.3555656, 48.8578487 2.2776036, 48.8561596 2.2803320, 48.8587309 2.2850498, 48.8503867 2.2499063, 48.8474160 2.2734653, 48.8578293 2.2627189, 48.8522460 2.2310858, 48.8561113 2.3406430, 48.8359176 2.2934497, 48.8415640 2.2914435, 48.8321096 2.3027626, 48.8488952 2.2875621, 48.8450063 2.2934495, 48.8428146 2.3128644, 48.8584946 2.2687106, 48.8582201 2.2684874, 48.8580507 2.2679638, 48.8477318 2.3279086, 48.8587970 2.2574756, 48.8462050 2.3548474, 48.8445578 2.3478015, 48.8397766 2.3563951, 48.8439889 2.3550231, 48.8400361 2.3581380, 48.8403571 2.3507117, 48.8374935 2.3535342, 48.8379182 2.3556557, 48.8392719 2.3386499, 48.8382351 2.3417326, 48.8501724 2.3668483, 48.8551549 2.3558324, 48.8535530 2.3577268, 48.8554797 2.2377372, 48.8509506 2.2377234, 48.8554112 2.4000945, 48.8276950 2.3526554, 48.8480846 2.3334838, 48.8451543 2.3325456, 48.8474672 2.3379586, 48.8474379 2.3363959, 48.8503580 2.3831342, 48.8570290 2.3204791, 48.8321351 2.3486444, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8293608 2.3803043, 48.8299075 2.3795677, 48.8188018 2.3371410, 48.8185040 2.3384113, 48.8181578 2.3401279, 48.8370007 2.3812275, 48.8204882 2.3602086, 48.8203447 2.3628121, 48.8199857 2.3627088, 48.8339810 2.3847461, 48.8353141 2.3838347, 48.8352990 2.3814978, 48.8418885 2.2735712, 48.8428738 2.2978005, 48.8243977 2.3360819, 48.8297310 2.3179488, 48.8516782 2.3146314, 48.8365930 2.3046690, 48.8363767 2.4236251, 48.8295071 2.4201091, 48.8212233 2.4336070, 48.8300361 2.4231832, 48.8295708 2.4234828, 48.8384857 2.3139931, 48.8425610 2.3055230, 48.8291280 2.4377720, 48.8488720 2.3128820, 48.8345717 2.3321583, 48.8350776 2.4353579, 48.8517060 2.3188780, 48.8430906 2.4215578, 48.8322990 2.3969380, 48.8397680 2.3287550, 48.8374610 2.2851470, 48.8562087 2.3767474, 48.8556820 2.3852020, 48.8238387 2.3531949, 48.8315645 2.4109263, 48.8312210 2.4129893, 48.8532780 2.2711410, 48.8311370 2.3128840, 48.8555310 2.3895370, 48.8417190 2.3204800, 48.8551080 2.3942800, 48.8459400 2.2689590, 48.8270122 2.3540304, 48.8424551 2.3888122, 48.8569870 2.2983049, 48.8501704 2.3439958, 48.8399030 2.2904890, 48.8585128 2.2948820, 48.8525988 2.4088082, 48.8307590 2.3592040, 48.8526713 2.3815527, 48.8417000 2.3374070, 48.8210197 2.3568688, 48.8523510 2.2944030, 48.8383280 2.2782440, 48.8433760 2.3364170, 48.8504870 2.3502540, 48.8289169 2.3068462, 48.8530930 2.2487630, 48.8483008 2.3594250, 48.8510180 2.2721570, 48.8417750 2.2766630, 48.8581770 2.2475410, 48.8559797 2.2830925, 48.8304600 2.4499760, 48.8366079 2.4625007, 48.8185772 2.3545050, 48.8221640 2.3407800, 48.8229962 2.3483008, 48.8548880 2.3860580, 48.8334140 2.3198533, 48.8342986 2.3307561, 48.8512040 2.3336860, 48.8519135 2.2527965, 48.8211700 2.3525560, 48.8412050 2.4011810, 48.8325969 2.4424252, 48.8280471 2.4193059, 48.8341687 2.4613030, 48.8521115 2.2541524, 48.8319760 2.4160891, 48.8322537 2.4156461, 48.8385501 2.4606113, 48.8237496 2.4396773, 48.8234381 2.4570355, 48.8302710 2.4501255, 48.8515696 2.2338766, 48.8272306 2.4306540, 48.8308745 2.4295234, 48.8404327 2.4302364, 48.8351339 2.4507573, 48.8355228 2.4555897, 48.8270280 2.4256131, 48.8523056 2.3854632, 48.8283394 2.3695038, 48.8316594 2.3202088, 48.8515687 2.3455917, 48.8221234 2.3755099, 48.8501856 2.3598181, 48.8543340 2.3134030, 48.8479841 2.3021348, 48.8381900 2.2706380, 48.8373130 2.3123540, 48.8319794 2.3254293, 48.8285390 2.2936320, 48.8581731 2.4063523, 48.8581782 2.3488219, 48.8579930 2.3811530, 48.8252925 2.3693389, 48.8528480 2.3236680, 48.8366880 2.3168190, 48.8311305 2.3217527, 48.8281910 2.2975610, 48.8224115 2.3234656, 48.8563720 2.3423640, 48.8488580 2.3354220, 48.8323838 2.3266258, 48.8302050 2.3165310, 48.8578985 2.3627922, 48.8338684 2.3623631, 48.8186719 2.3602335, 48.8311679 2.3698529, 48.8353270 2.3472350, 48.8512390 2.2749420, 48.8389116 2.2802003, 48.8435250 2.3852390, 48.8239822 2.3186264, 48.8268397 2.3045308, 48.8582469 2.3636013, 48.8411853 2.3632232, 48.8432899 2.3273991, 48.8501986 2.3439620, 48.8295130 2.2974440, 48.8505319 2.3140947, 48.8513900 2.2954500, 48.8519585 2.3815373, 48.8486812 2.4047540, 48.8186727 2.3590770, 48.8422355 2.3539722, 48.8509163 2.4000959, 48.8399790 2.2978655, 48.8569010 2.3829850, 48.8394056 2.4219004, 48.8491125 2.4034753, 48.8387600 2.3533490, 48.8570984 2.3707315, 48.8446043 2.3875639, 48.8544710 2.3306000, 48.8444200 2.2902970, 48.8482791 2.3738928, 48.8541916 2.4013975, 48.8477459 2.4005894, 48.8401440 2.3004225, 48.8315105 2.3698744, 48.8377715 2.3234750, 48.8451934 2.3802706, 48.8437212 2.3551124, 48.8313290 2.3203574, 48.8450099 2.3109341, 48.8243378 2.3638857, 48.8412410 2.2855118, 48.8219932 2.3234435, 48.8211670 2.3407757, 48.8536514 2.3489902, 48.8408330 2.4201155, 48.8337204 2.3201626, 48.8338246 2.3197979, 48.8548000 2.3455200, 48.8468000 2.3358800, 48.8527000 2.3492200, 48.8518000 2.3475300, 48.8242821 2.4231989, 48.8387842 2.4064887, 48.8321456 2.3262397, 48.8449387 2.4418585, 48.8563416 2.2955451, 48.8516633 2.4098056, 48.8559569 2.4014635, 48.8264004 2.4327560, 48.8189971 2.3575128, 48.8323795 2.3620094, 48.8520536 2.4091515, 48.8198844 2.3619743, 48.8195477 2.3338738, 48.8569678 2.3519723, 48.8499865 2.3481714, 48.8420092 2.4240851, 48.8232610 2.3543235, 48.8232751 2.3542283, 48.8359580 2.3022176, 48.8237907 2.3314831, 48.8303825 2.3751684, 48.8296315 2.3814341, 48.8300792 2.4152641, 48.8419664 2.3871201, 48.8283467 2.3766535, 48.8238319 2.3396086, 48.8441811 2.3576296, 48.8310454 2.3779874, 48.8226090 2.3400474, 48.8239560 2.3366723, 48.8527614 2.3515044, 48.8577082 2.3492535, 48.8564552 2.3511205, 48.8421923 2.2737321, 48.8386247 2.2767307, 48.8276674 2.3600431, 48.8279422 2.3594556, 48.8281550 2.3775324, 48.8585066 2.2446643, 48.8316089 2.3555656, 48.8316089 2.3555656, 48.8459784 2.3603720, 48.8243136 2.4192238, 48.8365007 2.3061630, 48.8408118 2.2763450, 48.8487971 2.2855992, 48.8305375 2.3580300, 48.8527458 2.3514040, 48.8340933 2.3218873, 48.8342849 2.3425292, 48.8361094 2.3872805, 48.8563876 2.4098516, 48.8479507 2.3346295, 48.8531320 2.3882360, 48.8548595 2.4101096, 48.8572052 2.2975105, 48.8287672 2.3790174, 48.8290058 2.3792428, 48.8324901 2.4167426, 48.8325371 2.4171377, 48.8528020 2.4110674, 48.8220651 2.3497136, 48.8402419 2.2911223, 48.8556477 2.3481362, 48.8379924 2.3573249, 48.8506007 2.3684957, 48.8279269 2.3606649, 48.8281328 2.3608761, 48.8284210 2.3605021, 48.8290169 2.3599418, 48.8313949 2.3614586, 48.8502691 2.3768309, 48.8514077 2.3619724, 48.8557425 2.3657180, 48.8557863 2.3654533, 48.8405076 2.4080728, 48.8407300 2.4111999, 48.8420117 2.4099305, 48.8435586 2.3837116, 48.8463579 2.4045679, 48.8467508 2.4047042, 48.8481084 2.4046457, 48.8358697 2.3734634, 48.8362808 2.3737861, 48.8444058 2.3789793, 48.8307541 2.4193421, 48.8209696 2.4454995, 48.8453348 2.3532344, 48.8223127 2.4420635, 48.8279008 2.3224596, 48.8416104 2.3878997 +48.8816147 2.3662734 +49.4281511 8.6459692 +no +no +yes +yes +wayside shrine +49.3739107 8.6909097, 49.3713743 8.7028026, 49.3850544 8.7330464, 49.4222073 8.6781335, 49.3764832 8.7075953, 49.3891416 8.6884199, 49.3891062 8.6883661, 49.3891536 8.6883629, 49.4174902 8.7604367 +79 +48.8484038 2.3977491, 48.8512856 2.2781094, 48.8467839 2.2854077, 48.8332389 2.3329284, 48.8526288 2.3385336, 48.8925057 2.3450965, 48.8536039 2.3444118, 48.8515050 2.3430786, 48.8473294 2.3412516, 48.8312038 2.3565530, 48.8806072 2.3538936, 48.8347711 2.3321841, 48.8278860 2.3709325, 48.8695890 2.2848365, 48.8581077 2.3801470, 48.8317286 2.3137879, 48.8668650 2.2788566, 48.8697674 2.2857979, 48.8424148 2.4052197, 48.8448799 2.3727316, 48.8815590 2.3150046, 48.8903495 2.3201315, 48.8941941 2.3135794, 48.8704998 2.3049572, 48.8854539 2.2915179, 48.8898626 2.3035373, 48.8774012 2.4069914, 48.8980267 2.3289128, 48.8844761 2.2976487, 48.8584436 2.3037809, 48.8795960 2.3896580, 48.8827367 2.3814655, 48.8420110 2.3206428, 48.8615010 2.3537550, 48.8645112 2.3981788, 48.8798173 2.3215782, 48.8747412 2.3049062, 48.8700986 2.3070512, 48.8687272 2.2986811, 48.8764317 2.3015489, 48.8748073 2.2956078, 48.8679763 2.2954876, 48.8666447 2.2899845, 48.8714962 2.2934996, 48.8659060 2.2863973, 48.8634029 2.2863046, 48.8617450 2.2859062, 48.8586868 2.2849457, 48.8482990 2.2647021, 48.8776228 2.3708847, 48.8780030 2.3781296, 48.8873966 2.3492159, 48.8831639 2.3275572, 48.8374622 2.2575596, 48.8527859 2.4060423, 48.8764243 2.3592623, 48.8663059 2.3244457, 48.8579055 2.3100803, 48.8655795 2.3559318, 48.8473587 2.3122933, 48.8766198 2.3392717, 48.8832546 2.3471915, 48.8460393 2.3780826, 48.8383701 2.3607602, 48.8320548 2.3861467, 48.8432250 2.4013484, 48.8226361 2.3257162, 48.8429514 2.3751858, 48.8597360 2.3466694, 48.8606298 2.3466023, 48.8445008 2.4411062, 48.8502906 2.3928948, 48.8713571 2.3432580, 48.8721397 2.3393564, 48.8538475 2.3325263, 48.8975838 2.3287233, 48.8937759 2.3363457, 48.8391806 2.3825585, 48.8672161 2.3065357, 48.8652369 2.3013632, 48.8616106 2.3019528, 48.8622551 2.3149819, 48.8538751 2.3124512, 48.8650500 2.3013405, 48.8696527 2.3111802, 48.8541706 2.3068705, 48.8699915 2.3014172, 48.8713160 2.3009696, 48.8756033 2.3260400, 48.8630530 2.3526294, 48.8462434 2.3767506, 48.8793033 2.3034301, 48.8682598 2.4015540, 48.8567698 2.3537979, 48.8257810 2.3469176, 48.8600781 2.3465254, 48.8325620 2.3618635, 48.8284670 2.3264398, 48.8666879 2.3641696, 48.8679052 2.3646802, 48.8679443 2.3620076, 48.8606611 2.3260607, 48.8307809 2.3768658, 48.8494789 2.3371871, 48.8521348 2.3393496, 48.8772711 2.3269492, 48.8764858 2.3319975, 48.8846924 2.3795882, 48.8306144 2.2924114, 48.8767391 2.3608267, 48.8643491 2.2725788, 48.8982278 2.3591507, 48.8607328 2.3456697, 48.8236433 2.3530302, 48.8643981 2.3303564, 48.8891585 2.3938039, 48.8577770 2.3473733, 48.8634279 2.3351782, 48.8680916 2.3299623, 48.8691985 2.3546294, 48.8705443 2.3327006, 48.8659300 2.3408572, 48.8662586 2.3612125, 48.8553209 2.3603751, 48.8369707 2.3521360, 48.8500790 2.3487204, 48.8432193 2.3520318, 48.8498446 2.3551829, 48.8434713 2.3236014, 48.8530282 2.3354092, 48.8402189 2.3365313, 48.8505206 2.3272579, 48.8512092 2.3331634, 48.8390765 2.3825241 +yes +54 +yes +49.4233403 8.7520040, 49.4240137 8.7518802, 49.4093101 8.6901583, 49.4143869 8.6899597, 49.4139013 8.6749258, 49.4093049 8.7016279, 49.4248386 8.6500213, 49.4288946 8.6862100, 49.4093409 8.7060374, 49.4327974 8.6870571, 49.4120976 8.7096738, 49.3881468 8.6882271, 49.4265924 8.6873755, 49.4085805 8.6761541, 49.3735956 8.7030427, 49.4184415 8.6866326, 49.4137573 8.6875431, 49.4153849 8.6793794, 49.4179555 8.6907278, 49.3742423 8.6884112, 49.3708773 8.7046622, 49.3900974 8.6883942, 49.4039055 8.6875262, 49.3802640 8.6848463, 49.3939262 8.6891470, 49.3808161 8.6905517, 49.4107678 8.7077166, 49.4109456 8.7019862, 49.4085345 8.6820596, 49.4221852 8.6481987, 49.4021663 8.6853834, 49.4241320 8.6487812, 49.4135832 8.7467488, 49.4150755 8.7624400, 49.4009918 8.6487321, 49.4179683 8.6470075, 49.4086991 8.6956172, 49.4094426 8.7049844, 49.3847829 8.6684390, 49.3741112 8.6828543, 49.4187468 8.7410394, 49.4190608 8.6828828, 49.4215697 8.7459451, 49.4178193 8.7615639, 49.4231838 8.7514439, 49.3772124 8.6950909, 49.3996303 8.6483178, 49.4148094 8.6905503, 49.4147513 8.7446806, 49.4507187 8.6805587, 49.4123406 8.7658191, 49.3806294 8.6690978, 49.3774636 8.6689696, 49.4425561 8.7519092, 49.4089016 8.6607853, 49.3945251 8.6755375 +21.3360353 -16.9459997, 20.9492813 15.9726608, 21.8492245 16.8967277, 20.9750733 17.7334272, 20.9094174 16.8685063, 20.4523631 16.1290912, 22.4530928 15.4363980, 21.7754508 18.1805126, 21.3743204 18.4383005, 22.1296163 17.8504124, 22.1904408 15.5147673, 21.4505738 15.6305549, 22.6133280 17.6370485, 22.3151509 17.4188694, 21.3686150 15.9276802, 20.1854999 16.2879988, 21.3599348 -14.9204289, 21.3650445 -14.8973307, 21.3668635 -14.8744984, 21.3635091 -14.8571239, 21.3636398 -14.8389932, 21.3707952 -14.8205624, 21.3853801 -14.8028273, 21.4013151 -14.7870649 +yes +chaplin.cine.allocine.fr/ +31 +yes +48.8431940 2.3077472, 48.8833055 2.3634273, 48.8778547 2.3450664, 48.8945576 2.3189168, 48.8663395 2.3827900, 48.8519343 2.3358691, 48.8590336 2.4068235, 48.8641166 2.2565095, 48.8641719 2.2560642, 48.8845953 2.3994143, 48.8824472 2.3896512, 48.8754975 2.4067088, 48.8271228 2.3523768, 48.8306882 2.3630641, 48.8662977 2.2354791, 48.8663590 2.2353455, 48.8725599 2.2603094, 48.8941767 2.3635473, 48.8451052 2.2533915, 48.8269156 2.3528936, 48.8361129 2.3760717, 48.8416334 2.4125661, 48.8268674 2.3526069, 48.8996348 2.3424245, 48.8311542 2.2750813, 48.8886571 2.2954478, 48.8451517 2.2531130 +51 +Source qui soudre en forêt +no +47.0113110 -2.2691251, 46.7888250 -2.0576251, 46.9063870 -1.9950580, 46.7024790 -1.9759189, 46.6867850 -1.9285797, 46.6966810 -1.9273174, 46.8035650 -1.8961811, 46.8405360 -1.8726865, 46.6938800 -1.8117144, 46.7558570 -1.7355998, 46.5149670 -1.6891804, 46.9304349 -1.5206185, 46.4262130 -1.5082338, 46.5657450 -1.4701344, 46.6910210 -1.4334116, 46.4132690 -1.3877876, 46.4601690 -1.3413189, 46.5127790 -1.1751825, 46.9978370 -1.1655148, 46.5520070 -1.1342267, 46.6453850 -1.0722638, 46.9952790 -1.0430830, 46.6295260 -1.0412963, 46.9037440 -0.9942434, 46.6402830 -0.9598096, 47.0003470 -0.9492418, 46.7958500 -0.9316523, 46.6135270 -0.9203828, 46.4864950 -0.9105599, 46.5563530 -0.8909747, 46.9667010 -0.8904510, 46.6332960 -0.8687770, 46.4770990 -0.8109751, 46.6951950 -0.7588256, 46.4960120 -0.7610636, 46.6519810 -0.7403554, 46.6399960 -0.6698064, 46.7509880 -0.8158071, 46.6549032 -1.7890389, 46.6483446 -1.7984566, 46.6635776 -0.6478515, 46.5620795 -1.2928868, 46.6784703 -0.8898247, 46.7393647 -0.9469686, 47.0113178 -2.2691592, 46.9078487 -2.1592365, 46.3891348 -0.5715320, 46.3689327 -0.6006326, 46.8405362 -1.8726852, 46.9667151 -0.8904418, 46.9063629 -1.9950999, 46.6910145 -1.4334220, 46.6651720 -1.4082438, 46.7475420 -2.0092790, 46.7888235 -2.0576175, 46.6867835 -1.9285740, 46.4655970 -0.7764925, 46.7558193 -1.7355336, 46.3435185 -1.3964455, 46.3561397 -1.4181112, 46.4601624 -1.3413233, 46.9304308 -1.5206087, 46.7210217 -2.3581710, 46.6454360 -1.0723820, 46.6452995 -1.0722905, 46.6454225 -1.0721615, 46.6446631 -1.0091057, 46.6713375 -0.8225665, 46.9978405 -1.1655045, 46.5149635 -1.6891766, 46.7042785 -1.3097150, 46.5657750 -1.4701450, 46.5090285 -1.3892430, 46.6135448 -0.9204642, 46.6332970 -0.8687770, 46.7958487 -0.9316362 +220 ++49-6221-166461 +49.4250029 8.6441990, 49.4212764 8.6802434, 49.4178839 8.7566479, 49.3953931 8.6437984, 49.4060444 8.6915160, 49.4074324 8.6892711, 49.4055350 8.6883159, 49.3773316 8.6645506, 49.4250839 8.6878203, 49.4118508 8.7104220, 49.3733365 8.6800097, 49.3795453 8.6902879, 49.4004194 8.6918112, 49.4015196 8.6910446, 49.3992479 8.6881724, 49.4045272 8.6456516, 49.4050807 8.6859162, 49.4098378 8.6999335, 49.4059641 8.6906715, 49.3800398 8.6280684, 49.3709902 8.6282587, 49.3673207 8.6856127, 49.4075160 8.6918700, 49.4141377 8.6856530, 49.4089906 8.6954114, 49.4017125 8.6915435, 49.4106324 8.6935186, 49.4117347 8.7086375, 49.4078980 8.6887347, 49.4056236 8.6605012, 49.3640095 8.7046525, 49.4114125 8.7047336, 49.4059449 8.6866169, 49.4188039 8.6517483, 49.3851547 8.6741428, 49.4041949 8.6461395, 49.4359593 8.6807111, 49.4370376 8.6794523, 49.4365028 8.6798184, 49.4366380 8.6786346, 49.3798699 8.6783416, 49.4288530 8.6831190, 49.3839783 8.6664023, 49.4249970 8.6423683, 49.4045725 8.6815467, 49.4137654 8.7752617, 49.4165905 8.6918076, 49.4044754 8.6679758, 49.4262037 8.6391801, 49.3786588 8.6643603, 49.3838340 8.6784060, 49.3829832 8.6783801 +Galerie Vivienne, passages des Princes, Brentano's, Marché U, Marché U, Brentano's, Carrefour City, Franprix, Vélo Electro, Monoprix, passage des Panoramas, Franprix, Fiat, Franprix, Déco Relief, Franprix, Dubail, Aux Délices de Sèvres, Coiffure Auffray Jérôme, Dia, Sajou, Mona Lisait, Franprix, Naturalia, Carrefour City, Jossé, Optic 2000, Chocolatier Pierre Marcolini, Point Soleil, Arnaud DELMONTEL, La Maubeugeoise, JouéClub, Papeterie Perjac, Moisan, Daily Monop', Picard, Detrad, Monoprix, Del Duca, H&M, Dynamic Sports, Jean Louis David, Le Prestige, Talents - Gallerie d'art, Librairie Gourmande, Au Levain des Martyrs, Droguerie des Martyrs, Frank Provost, Sergent Major, Qee, En Selle Marcel, optigal, Aki boulanger, K-mart, Digixo, Centre Faguet Optique, Liz & lorens, Charly Coup'Hair, Divini Kreol, Jean-Claude Biguine, Les Opticiens Mutualistes, Meubles & Atmosphère, PA Design, Pharmacie Sebag-Meimoun, Retoucherie, Optique Job, Antony, Crystal Optical, Dharma Sangh, Jean Louis David, L'Ouvre-Boîte, Levi's Store, Marché Franprix, Motus, Optical'in, designOptic, espace SFR, Bocoray, Cordonnier, Naturalia, Bio c'Bon, Ace Mart, Copy-Top, Nicolas, Opera Market, Shop, Basler, Monoprix Gourmet Lafayette, Daily Monop, H&M, Mango, Minelli, Juji Ya, Kioko, Monoprix, Home Hair, AppleStore, Burma, Lancel, Mango, Promod, Zara, Stohrer, Legrand Filles et Fils, Kiosque à journaux, Village JouéClub, CKAB -- hackable:Devices, De Fursac, A la Mère de Famille, A la mère de Famille, Franck Provost, Aux Tenailles d'Or, Devialet, Monop', Monop', Carrefour City, La Cure Gourmande, N.Y.P. Supermarche, DIA, J.C.K. Beauty, Yilpa Telecom, Ting Supermarché Chinois, Appear Coiffure, Du Vin et des Bulles, Garden Optique, Institut Trinité, Jardin de Trinité, La Bonbonnière, Pronuptia, Royal Coiffure, Smart Store, Tapis d'Orient, cylia l., Atmosp'Hair, Châteaudun Reprographie, Agences Vaneau, Planitour, i ♥ optic, Le Nouveau Calumet, Boutique SNCF, La Grande Récré, Orange, Le Boulevard du Scooter, AJC, André, Arnaud Dalens, Aux Merveilles de Paris, Boutique SNCF, Carré Soleil, Citadium, Citron Vert, Degrif des Stocks, Délices de Fleurs, Image de France, Itinéraires Lointains, L'Atelier du Sourcil, Mika & Elle, Cadoceur, Cours des Halles, Laverie Éclat, Laverie, Mademoiselle Bio, Majuscule, Monceau Fleurs, Na Na, Nana, New Star, Optical Service, Pampilles, Paris-France Immobilier, Slim Price, À Fleurs et à Mesure, 5 à Sec, Franprix, Uniqlo, Âme et esprit du vin, DLM Paris, E. Dehillerin, Jardin du Louvre, Au Cœur Immaculé de Marie, Librairie Saint-Paul, Miss Papillon, Monop, DIA, Zazou, Le Fournil de Paris, Carrefour City, Minelli, Copilote, L'Orée de Montmartre, Junkudo, librairie japonaise, Naturalia, Franprix, Naturalia, Paul, Daily Monop', Paul, Monoprix, Bio Génération, Chabrol Pressing, G20, Paris Mixte, Jacadi, Van Cleef & Arpels, Gant store, Midoré, Franprix, Macway, vacant, Antoine & Lili, Bel Air, Berenice, COS, Carréblanc, Coccinelle, Cocoon, Colin Régis, Cotélac, Dans le noir, Free Lance, Fleurs de Rhum, Foie Gras Luxe, HO+X, Istella forest, JONAK, Laforêt, Lola Keim, MAX & Co., Marithé François GIRBAUD, Optic 2000, REDSKINS, REPLAY, Richard Gampel, Un amour de Lingerie, Wine Sitting, Yaya-Store, Zadig & Voltaire, a. simon, a. simon, minelli, 50m., Vapostore, Vapostore, Cigartex, Acuitis, Eram, Foncia, Gabor, Gentleman Gallery, Gigi, Générale d'Optique, Hong Lien, Isambert, Jacqueline Riu, La Vaissellerie, Princesse Tam-Tam, Un Jour Ailleurs, marché franprix, Coton Doux, 1001 Piles, Josy Coiffure, Laverie Trevisse, Book-Off, Le Panier Gourmet - Franprix, Le Boudoir de Joséphine, Librairie J.N. Santon, M&G Segas, Nicolas, Le Grenier à Pain, Frank L., Magma, Léopold Coiffure, Van Hoods & Sons, Le Boulanger de Monge, Anne Sémonin, Cyrillus, Le Moulin de la Vierge, Maison Bleue, Orchi Déiste, Polo, Scott & Fox, Yuka, Chic Life, Micromania, Biguine, Carnaval des Affaires, Celianthe Medus, Conversons, Telecom, Timbres Monnaies, Un deux trois, Edelweiss, Etam, Parashop, Madlyne, Tab, Orchestra, Sergent Major, eclop, René Coudari, Bréal, Caprices d'Antin, Stradivarius, Gigi, Catherine Gérard, Optic 2000, Morgan, Eurodif, Calzedonia, La Chausseria, Yves Rocher, Empire du Mariage, Sinéquanone, Carys, Shirley, Lola Jones, Maracamicie, Copy Self, Valege, Antonelle, Narda, Me, Optic d'Antin, Du pareil au même, Sephora, C ma vision, Nicolas, Miss Bolsos, Tradition des Vosges, Jeff de Bruges, Shangaï, Reality Pear, Optic 2000, Boutique Debauve et Gallais, Carrefour Market, A2pas, Terra Corsa, Lindt, Claudie Pierlot, Eric Kayser, Le Mille Pâtes, Le Pain Quotidien, Archiduchesse, XO, Agnès B, Marie sixtine, Jones + Jones, Antoine et Lili, Sail bags, Anne Élisabeth, Princesse tam-tam, Manoush, Les petites, Le coq sportif, Aux Stocks Permanents, Le Mayol, Nicolas, Franck provoqt, Camille albane, Le Panier Gourmet - Franprix, Marché Saint-Honoré, R Canelle, Monop, La Halle, Galeries Lafayette, Printemps, Printemps, L'Oeuf Chaussures, L'Oeuf, Orange, Séphora, Crèmerie Rochechouart, Comptoir des Abbayes, Optic 2000, Nicolas, Eva Koshka, Fruits Legumes Fleurs, Joker, La carte Chance, Rôtisserie Dufrenoy, Self Bazar, JT 26, OopsHome, Bazar, Kiosque, Printemps +36 +52.0583801 8.5520281, 52.0441674 8.5341281, 52.0148098 8.5415843, 51.9930698 8.6117053, 51.9530548 8.6019656, 52.0929733 8.5326795, 52.0238436 8.5234911, 52.0555549 8.5378820, 52.0051281 8.5264278, 52.0498292 8.5592441, 51.9862274 8.6330968, 52.0292398 8.6021218, 52.0292227 8.6009951, 52.0272514 8.5957092, 52.0306293 8.6106186, 52.0321219 8.6054609, 52.0473461 8.5908186, 52.0469513 8.5887087, 52.0231198 8.6053870, 52.0580464 8.6142089, 51.9489161 8.5784781, 52.0005000 8.5830563, 52.0205860 8.5678184, 52.0312632 8.5407538, 52.0319234 8.5420151, 51.9922699 8.5821902, 52.0462690 8.6409561, 52.0191448 8.5779535, 52.0184508 8.5657079, 51.9986701 8.5845091, 52.0743431 8.6025251, 52.0111171 8.6060838, 52.0110252 8.6075822, 52.0386901 8.5655696, 52.0318962 8.5656184, 51.9526831 8.5894518, 51.9478258 8.5866769, 52.0273349 8.5382436, 52.0542712 8.5439409, 52.0181631 8.5466796, 52.0522750 8.5245659, 52.0456077 8.5212121, 52.0418895 8.5307595, 52.0327138 8.5227649, 52.0157211 8.5484732, 52.0137803 8.5492099, 52.0226396 8.5511428, 52.0223364 8.5495579, 52.0233884 8.5519795, 52.0234840 8.5536985, 52.0119814 8.5542137, 52.0265557 8.5458287, 52.0185875 8.5275250, 52.0186597 8.5289951, 51.9475967 8.5920756, 51.9289095 8.5529507, 52.0209783 8.5457695, 52.0459901 8.5425345, 52.0682897 8.5224152, 52.0719588 8.5498716, 52.0442328 8.5433584, 52.0113082 8.5270214, 52.0563214 8.5500007, 52.0094113 8.5265262, 52.0037833 8.5215969, 52.0065591 8.5759589, 51.9846427 8.5287592, 51.9854958 8.5280680, 51.9843934 8.5268438, 51.9417125 8.5793602, 51.9423426 8.5802746, 51.9600857 8.5281274, 52.0045344 8.5226673, 51.9609763 8.5280751, 52.0048839 8.5221348, 52.0147217 8.5248646, 51.9568591 8.5479920, 52.0024451 8.5653246, 52.0017368 8.5684745, 52.0018299 8.5675837, 52.0020334 8.5669169, 51.9570094 8.5337027, 51.9681157 8.5499373, 52.0005457 8.5605587, 52.0205357 8.5287442, 51.9568731 8.5465415, 51.9333689 8.5654391, 52.0112149 8.5297888, 52.0013439 8.5671531, 52.0008115 8.5610395, 52.0926733 8.5329308, 52.0104876 8.6080033, 52.0065198 8.5259435, 52.0327367 8.5222372, 52.0719981 8.5498472, 52.0184308 8.5473987, 51.9932321 8.6110621, 52.0208455 8.5454983, 52.0586804 8.5511665, 52.0230297 8.5524206, 52.0207097 8.5292682, 51.9567876 8.5472991, 52.0111837 8.5268995, 52.0261594 8.5241168, 52.0312156 8.5405749, 52.0272333 8.5379784, 52.0315830 8.5423173, 52.0526516 8.5253445, 52.0468920 8.5467931, 52.0186691 8.5656539, 52.0472610 8.5893105, 52.0391035 8.5656780, 52.0315635 8.5657826, 51.9527696 8.6018036, 51.9528793 8.5894680, 51.9484298 8.5873772, 52.0543651 8.5447212, 51.9487421 8.5784654, 51.9923885 8.5822520, 51.9863326 8.6322964, 52.0010481 8.5831553, 51.9990577 8.5845337, 52.0462874 8.6407281, 52.0579586 8.6142140, 52.0742793 8.6022273, 52.0206603 8.5676185, 52.0270594 8.5966793, 52.0323486 8.6056893, 52.0307766 8.6106210, 52.0230896 8.6059771, 52.0500810 8.5586981, 52.0421599 8.5307527, 52.0586095 8.5515568, 52.0156406 8.5480803, 52.0137807 8.5496365, 52.0556849 8.5374131, 52.0114804 8.5539410, 52.0262032 8.6392966, 52.0265579 8.5454510, 52.0150885 8.5416301, 52.0184126 8.5282924, 51.9415032 8.5795671, 52.0459863 8.5425744, 52.0679871 8.5225050, 52.0051550 8.5262181, 52.0039093 8.5212500, 51.9847292 8.5279845, 51.9525819 8.5921145, 51.9285763 8.5528956, 52.0047086 8.5224081, 52.0191169 8.5773881, 51.9603119 8.5285761, 51.9475733 8.5919114, 51.9568818 8.5332831, 51.9487080 8.5862850, 51.9493095 8.5874506, 51.9483907 8.5883941, 51.9478782 8.5876688, 51.9478908 8.5859766, 51.9482758 8.5858662, 51.9474419 8.5860889, 51.9475824 8.5870706, 52.0104310 8.6074498, 51.9680412 8.5506318, 52.0297068 8.6015894, 51.9862135 8.6337019, 52.0261594 8.5241168 +no +55.9486773 -3.2003994 +Ambassade de l'Union du Myanmar, Ambassade de Tanzanie, Service VISA de l'ambassade de la République Populaire de Chine, Consulat de Colombie, Ambassade d'Ouzbékistan, Consulat de Grande-Bretagne, Ambassade du Qatar, Ambassade de Suède, Consulat général du Mali, Ambassade de la République de Serbie, Ambassade de Chine - Service consulaire, Ambassade de l'Île Maurice, Annexe ambassade de Tunisie, Residence du senegal, Ambassade du Népal, Embassade de la Serbie, Ambassade de Géorgie, Ambassade du Paraguay, Ambassade d'Australie, Ambassade du Burundi, Ambassade de Suisse, Ambassade de la République de Pologne, Ambassade d'Israël, Ambassade de Colombie, Ambassade des États-Unis d'Amérique, Ambassade de Belgique, Ambassade du Sri Lanka, Ambassade de Guinée Equatoriale, Ambassade de l'Équateur, Ambassade de Corée du Sud, Ambassade de Syrie, Ambassade d’Italie, Ambassade d'Algérie, Ambassade de Singapour, Ambassade du Burkina Faso, Ambassade d'Ukraine, Ambassade d'Ethiopie, Ambassade de Finlande, Ambassade d'Afrique du sud, Ambassade d'Autriche, Ambassade du Luxembourg, Ambassade de Bulgarie, Ambassade du Canada, Ambassade d'Allemagne, Ambassade du Brésil, Ambassade de Chine, Ambassade d'Espagne, Ambassade de Roumanie, Ambassade du Pakistan, Ambassade du Saint-Siège, Ambassade de la République Islamique d'Iran, Ambassade d'Égypte, Ambassade du Yémen, Ambassade du Sultanat d'Oman, Ambassade du Danemark, Ambassade de la République Démocratique de Somalie, Ambassade de Chypre, Ambassade de Grèce, Ambassade d'Uruguay, Ambassade de l'État du Barhein, Ambassade du Koweit, Ambassade d'Argentine, Ambassade du Vénézuéla, Ambassade du Mexique, Ambassade du Kenya, Ambassade du Bénin, Ambassade du Liban, Ambassade du Pérou, Ambassade du Laos, Ambassade de Nouvelle-Zélande, Ambassade de Côte d'Ivoire, Ambassade d'Angola, Ambassade d'Irlande, Ambassade de la République du Congo, Ambassade des Comores, Ambassade d'Allemagne, Embassy of Latvia in France, Délégation Générale du Québec, Ambassade du Ghana, Ambassade de Hongrie, Ambassade du Tchad, Ambassade de Libye, Ambassade de Djibouti, Ambassade d'Albanie, Ambassade du Portugal, Ambassade du Pakistan, Ambassade du Maroc, Chancellerie de l'Ambassade de Malaisie, Ambassade du Niger, Ambassade de Guinée, Ambassade de Mauritanie, Ambassade du Nigéria, Ambassade d'Ouganda, Ambassade d'Indonésie, Ambassade du Cambodge, Ambassade de la Fédération de Russie, Ambassade de l'Inde, Ambassade de Madagascar, Ambassade d'Afghanistan, Ambassade de Monaco, Ambassade de Slovaquie, Ambassade des Philippines, Ambassade des Seychelles, Ambassade du Maroc, Ambassade de Turquie, Ambassade de Belgique, Ambassade de la République Togolaise, Ambassade de la République d'Arménie, Ambassade du Zimbabwé, Délégation de la Russie auprès de l'Unesco, Ambassade du Liberia, Ambassade de Lituanie, Ambassade du Portugal, Ambassade du Cameroun, Ambassade d'Algérie, Ambassade du Vietnam, Ambassade du Chili, Ambassade d'Afrique du Sud, Ambassade du Sénégal, Ambassade de Tunisie, Ambassade des Pays-Bas, Ambassade de Norvège, Ambassade de Grande Bretagne, Ambassade du Mali, Ambassade du Rwanda +Maison de Victor Hugo, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin, Musée Cernuschi, Musée d'Art Moderne de la Ville de Paris, Musée Bourdelle, Maison de Balzac, Musée Carnavalet +193 +35 +monument, memorial, castle, ruins, battlefield, archaeological site, cannon, police box, boundary stone, tomb, Brewary, brewrey, citywalls, house, ship, building, One time A listed, yes, tower house +60 +3 +yes and 55.9546676 -3.3637002, 55.9222410 -3.1492085 +Halle Saint-Pierre +78 +1 +yes +yes +3398 +yes +yes +126 +48.8631692 2.3329513, 48.8660977 2.3554138, 48.8643016 2.3480523, 48.8779237 2.3345515, 48.8626245 2.3025393, 48.8662844 2.3817490, 48.8864800 2.3399022, 48.8957518 2.3879761, 48.8651191 2.3417893, 48.8695018 2.3546892, 48.8957352 2.3886935, 48.8616153 2.3542965, 48.8836865 2.3338083, 48.8660456 2.3145051, 48.8602845 2.3247488, 48.8677629 2.2935696, 48.8625016 2.3453019, 48.8705899 2.3500828, 48.8629386 2.2890051, 48.8618163 2.2873421, 48.8749151 2.3431481, 48.8703234 2.2765175, 48.8716440 2.2881063, 48.8716204 2.2814131, 48.8677268 2.3223990, 48.8591945 2.2851420, 48.8830345 2.3077236, 48.8718820 2.3312120, 48.8656784 2.3307909, 48.8607161 2.3525007, 48.8672999 2.3221942, 48.8960350 2.3884154, 48.8678618 2.3225499, 48.8762675 2.3826909, 48.8640279 2.3450171, 48.8609823 2.2977973, 48.8848436 2.3445206, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8614029 2.3519903, 48.8590015 2.3547571, 48.8661515 2.3122667, 48.8612342 2.3554751, 48.8602237 2.3588061, 48.8590543 2.3618044, 48.8598775 2.3620895, 48.8599188 2.3265259, 48.8613305 2.3197359, 48.8707890 2.3259075, 48.8791676 2.3124361, 48.8794667 2.3125380, 48.8755169 2.3105465, 48.8655978 2.2993165, 48.8643054 2.2977930, 48.8641085 2.2964123, 48.8653887 2.2935591, 48.8715060 2.2814214, 48.8594040 2.2672517, 48.8812030 2.3335190, 48.8880654 2.3406347, 48.8612559 2.3587824, 48.8662091 2.3108575, 48.8766546 2.2633259, 48.8657061 2.2966614, 48.8614768 2.3351679 +yes +48.8761391 2.3683073, 48.8722806 2.3695753, 48.8681927 2.3630580, 48.8748801 2.3637951, 48.8710381 2.3610667, 48.8757902 2.3561915, 48.8667885 2.3495539, 48.8683427 2.3501494, 48.8770173 2.3640220, 48.8717450 2.3763419, 48.8757565 2.3604345, 48.8680319 2.3652462, 48.8668874 2.3528247, 48.8669313 2.3543718, 48.8763445 2.3614950, 48.8684955 2.3674002, 48.8700553 2.3666721, 48.8725652 2.3640736, 48.8738041 2.3703747, 48.8705409 2.3514636, 48.8707624 2.3546578, 48.8690350 2.3562439, 48.8735031 2.3753876, 48.8722991 2.3766565, 48.8683870 2.3633979, 48.8745891 2.3627432, 48.8754929 2.3615609, 48.8769804 2.3588987, 48.8668278 2.3572924 +yes +100 +4 +55.9534686 -3.2733947, 55.9441043 -3.1618477, 55.9229465 -3.1946655, 55.8825188 -3.2371629, 55.9510042 -3.1642474, 55.9429880 -3.1595009, 55.9455214 -3.1515881, 55.9215151 -3.2311690, 55.8810613 -3.2505433, 55.8919644 -3.2565320, 55.8910980 -3.2702735, 55.9174462 -3.2363371, 55.9127712 -3.2038639, 55.9145086 -3.1951990, 55.8191953 -3.3924956, 55.8830619 -3.2214017, 55.9509656 -3.1565911, 55.9919155 -3.3568399, 55.8933347 -3.2822591, 55.9556726 -3.1824089, 55.9458711 -3.1740706, 55.9425607 -3.1620707, 55.8878252 -3.3839342, 55.9836455 -3.3447505, 55.9900950 -3.3422624 +pawnbroker, pawn, finance, second hand, yes, electronics, cash, variety store, money lender, ?, pawn shop, supermarket +yes +Dalmeny Primary School, Rudolf Steiner School, Little City Nursery, City Nursery, Pirniehall Primary School, Pilrig Park School, Haywired, Bun-sgoil Taobh na Pairce, Blackhall Primary School, St David's RC Primary School, Kirkliston Nursery School, Mannafields Christian School, Dalmeny Nursery School, Currie Community High School, Queensferry High School, EDETA Training Services, Craigour Park Primary School, Liberton Primary School, St Thomas of Aquins, James Gillespie's High School, George Watson's College, South Morningside Primary School, Granton Primary School, Fettes College, Murrayburn Primary School, Westburn Primary School (Closed July 2009), Flora Stevenson's Primary School, Firrhill High School, Craigroyston Community High School, George Heriot's School, Niddrie Mill Primary School (Closed), Hermitage Park Primary School, Leith Academy, Lorne Primary School, Drummond Community High School, Stewart's Melville College, Craigentinny Primary School, St Ninians RC Primary School, Bruntsfield Primary School, George Watson's College Primary, Currie Primary School, Tynecastle High School, St Peter's Primary School, Gracemount High School, Liberton High School, Lismore Primary School‎ (Closed July 2009), Fox Covert Primary School and RC Primary School, Greengables Nursery, Leith Primary School, Craigmillar Childrens Centre, Prestonfield Primary School, St Francis and Niddrie Mills Primary schools Campus, Holy Rood High School, Brunstane Primary School, Royal High Primary School, Newcraighall Primary School, Merchiston Castle School, The Mary Erskine School, Ratho Primary School, Colinton Primary, Hillwood Primary School, The Yard, Sighthill Primary School, Royal Blind School, Royal Blind School, Duddingston Primary School, East Craigs Primary, Royal Mile Primary School, Edinburgh School of English, Panmure St Anne's, Trinity Academy, Gorgie Mills School, Craiglockhart Primary, Sciennes Primary School, Victoria Primary School, Broughton High School, Trinity Academy, The Royal High School, Clermiston Primary School, Westerlea School, Fort Primary School (Closed July 2010), Longston Primary School, Edinburgh Academy, Stockbridge Primary School, Broughton Primary School, Rowanfield School, Tollcross Primary School, Prospect Bank School, St Mary's RC Primary School, Leith Walk Primary School, St Johns RC Primary School, Portobello High School, Balgreen Primary School, Preston Street Primary School, Davidson's Mains Primary School, Dalry Primary School, Ferryhill Primary School, Wardie Primary School, School, Abbeyhill Primary School, Oaklands School, Craigroyston Primary School, Arbor Green Nursery, St Augustines High School, Forrester High School, Broomhouse Primary School, Edinburgh Academy Junior School, Corstorphine Primary, St. John Vianney Roman Catholic Primary, Darroch Annex, Cargilfield School, Juniper Green Primary, Kaimes School, Stenhouse Primary, Balerno High School, Bonaly Primary School, Dean Park Primary School Annexe, Gylemuir Primary School, Boroughmuir High School, Trinity Primary school, Fort Primary, Cramond Primary School, Holy Cross Primary School, Wardie Primary School +318 +55.9352993 -3.1317667, 55.9476467 -3.2048254, 55.9482540 -3.2061050, 55.9312295 -3.1720873, 55.9557737 -3.1922262, 55.9474180 -3.1841339, 55.9605039 -3.1694895, 55.9567295 -3.1849346, 55.9465675 -3.1864711, 55.9419520 -3.2027917, 55.9411994 -3.1818116, 55.9462373 -3.1906430, 55.9470070 -3.2042875, 55.9326296 -3.2093529, 55.9757314 -3.1804855, 55.9472630 -3.2049020 +609 +49.4055350 8.6883159, 49.4250839 8.6878203, 49.4004194 8.6918112, 49.4050807 8.6859162, 49.4098378 8.6999335, 49.4059641 8.6906715, 49.4017125 8.6915435, 49.4106324 8.6935186, 49.4117347 8.7086375, 49.4078980 8.6887347, 49.4359593 8.6807111 +49.4276763 8.6857958, 49.4038333 8.6771587, 49.4171595 8.6617457, 49.4147558 8.6660779, 49.4134202 8.6738393, 49.4192295 8.7567625, 49.4082107 8.6921228, 49.4091698 8.6936091, 49.4041276 8.6763300, 49.4172710 8.6921830, 49.4124311 8.7120085, 49.3804963 8.6875192, 49.4031182 8.6470339, 49.3989298 8.6889417, 49.4107889 8.7060227, 49.4065233 8.6910827, 49.4013623 8.6726870, 49.4089481 8.7124297, 49.4121807 8.6993722, 49.3656248 8.6889494 +yes +19 +Chapelle Saint-Vincent de Paul, Chapelle de l'Agneau de Dieu, Chapelle Saint-Bernard, Aumônerie des Grands Moulins, Chapelle Saint-Martin de Porrès, Chapelle des Franciscaines, Centre Saint-Paul, Chapelle Notre-Dame de la Confiance, Chapelle Sainte-Marie, Église Sainte-Colette des Buttes-Chaumont, Chapelle, Chapelle Saint-André, Chapelle Saint-Louis, Crypte du Martyrium de Saint-Denis, Chapelle, Chapelle, Église Saint-Lambert de Vaugirard, Église Saint-Léon, Église Saint-Sulpice, Église Saint-Pierre de Montrouge, Église Saint-Séverin, Église Saint-Julien-le-Pauvre, Basilique du Sacré-Cœur, Église Saint-Jean-Baptiste de Grenelle, Église Saint-Pierre de Montmartre, Église Notre-Dame de l'Arche d'Alliance, Église Saint-Ignace, Église Saint-Médard, Église Notre-Dame-de-Lorette, Église Notre-Dame de Clignancourt, Église Saint-Roch, Chapelle Notre-Dame-de-la-Compassion, Église Sainte-Hélène, Église de la Sainte-Trinité, Église Saint-Eugène Sainte-Cécile, Chapelle Ozanam, Église luthérienne de la Résurrection, Église Saint-Christophe de Javel, Église Saint-Eustache, Église Saint-Germain l'Auxerrois, Église Saint-Leu - Saint-Gilles, Chapelle Notre-Dame de Grâce, Église Polonaise Notre-Dame de l'Assomption, Église de la Madeleine, Basilique Notre-Dame-des-Victoires, Église Notre-Dame-de-Bonne-Nouvelle, Église Saint-Louis-en-l'Île, Église Saint-Étienne-du-Mont, Église Saint-Éphrem-le-Syriaque, Église Saint-Gervais, Église Saint-Merry, Église Notre-Dame-des-Blancs-Manteaux, Église Saint-Paul - Saint-Louis, Église Saint-Nicolas des Champs, Ancienne Église Saint-Martin des Champs, Église Sainte-Élisabeth, Chapelle de la congrégation du Saint-Esprit, Cathédrale Arménienne Sainte-Croix, Église Saint-Denis du Saint-Sacrement, Église du Val-de-Grâce, Église Saint-Jacques-du-Haut-Pas, Église Saint-Germain des Prés, Chapelle Notre-Dame de la Sagesse, Église Saint-Vincent-de-Paul, Église Saint-Laurent, Chapelle de l'hôpital Saint-Louis, Église Saint-Martin des Champs, Église Saint-Joseph-Artisan, Église Saint-Jean-Baptiste de Belleville, Église Notre-Dame-de-l'Assomption des Buttes-Chaumont, Église Notre-Dame-de-Fatima, Église Saint-François-d'Assise, Église Sainte-Claire d'Assise, Église Saint-Georges de la Villette, Église Saint-Joseph des Carmes, Église Saint-Thomas d'Aquin, Église Saint-Ambroise, Chapelle Notre-Dame-Réconciliatrice de la Salette, Basilique Notre-Dame du Perpétuel Secours, Église Notre-Dame d'Espérance, Église Saint-Jacques Saint-Christophe, Église Notre-Dame des Foyers, Église Notre-Dame des Champs, Basilique Sainte-Clothilde, Cathédrale Saint-Louis des Invalides, Chapelle de Jésus-Enfant, Église Saint-Augustin, Chapelle Expiatoire, Église Saint-André de l'Europe, Église Saint-Philippe du Roule, Chapelle Baltard, Église Saint-François-Xavier, Chapelle Notre-Dame de l'Annonciation, Église Saint-Pierre du Gros Caillou, Église Saint-Louis-d'Antin, Chapelle Notre-Dame de Consolation, Église Notre-Dame-des-Otages, Église Notre-Dame-de-la-Croix, Église du Cœur Eucharistique de Jésus, Église Saint-Germain-de-Charonne, Église Saint-Gabriel, Église Saint-Cyrille et Saint-Méthode, Chapelle du Corpus-Christi, Saint-Joseph's Church (mission anglophone), Église Saint-Jospeh des Épinettes, Église Saint-Michel des Batignolles, Église Sainte-Marie des Batignolles, Église de l'Immaculée Conception, Église Sainte-Geneviève des Grandes-Carrières, Église Saint-Jean de Montmartre, Église Saint-Bernard de La Chapelle, Chapelle Notre-Dame de la Paix, Église Saint-Éloi, Église Notre-Dame du Bon Conseil, Église Notre-Dame de Bercy, Église Saint-Albert le Grand, Église Sainte-Anne de la Maison Blanche, Chapelle Saint-Louis de la Salpêtrière, Église Notre-Dame de Chine, Église Notre-Dame de la Gare, Église Saint-Hippolyte, Église Saint-Pierre de Chaillot, Église Saint-Dominique, Église Notre-Dame-du-Rosaire, Église de Saint-Antoine de Padoue, Église Notre-Dame-Réconciliatrice, Chapelle Notre-Dame-du-Lys, Église Saint-Jean-Baptiste-de-La-Salle, Église Saint-Honoré d'Eylau, Mission Catholique Espagnole - Iglesia Española, Église Notre-Dame-de-l'Assomption de Passy, Église Notre-Dame de Grâce de Passy, Église Saint-Denys de la Chapelle, Chapelle Sainte-Thérèse, Église Saint-François-de-Sales (ancienne église), Église Sainte-Odile, Église Saint-Charles-de-Monceau, Église Saint-Ferdinand des Ternes, Église Saint-François-de-Sales (nouvelle église), Église Notre-Dame d'Auteuil, Chapelle Sainte-Bernadette, Église Saint-François de Molitor, Église Polonaise Sainte-Geneviève, Église Sainte-Jeanne-de-Chantal, Chapelle de la Visitation, Église Saint-Antoine des Quinze-Vingts, Chapelle Sainte-Ursule, Chapelle de l'Épiphanie, Église Notre-Dame-de-Grâce de Passy, Chapelle Laennec, Église Notre-Dame-de-Nazareth, Église nouvelle Saint-Honoré d'Eylau, Chapelle Saint-François d'Assise, Chapelle Sainte-Rita, Basilique Sainte-Jeanne-d’Arc, Église du dôme, Chapelle Notre-Dame-du-Saint-Sacrement, Église Notre-Dame-de-Lourdes, Église Saint-Joseph des Nations, Église Sainte-Marguerite, Église Sainte-Marguerite, Chapelle Sainte-Jeanne-d'Arc, Église du Saint-Esprit, Chapelle, Prieuré Saint-Benoît, Chapelle de la clinique Blomet, Église du Bon Pasteur, Église Saint-Jean des Deux Moulins, Chapelle, Chapelle, Chapelle Saint-Yves, Chapelle, Chapelle, Chapelle du Sacré-Cœur-de-Jésus-Roi-de-France, Cathédrale Notre-Dame de Paris, Chapelle Saint-Charles, Chapelle, Église Saint-Luc, Église Notre-Dame-de-La-Salette, Sainte-Chapelle +180 +Quick +49.4211082 8.6694686 +Centre de rétention administrative Paris 1 and fr:Redoute de Gravelle, Maison d'Arrêt de la Santé and fr:Prison de la Santé +Bonner Pfeiffen- & Cigarrenhaus, Rossmann, Vodafone, Juwelier Vassiliou, chocolat, Nokia, Vollmar, Kultuhr, Douglas, E-Plus, Mobilcom Debitel, Close Up, Hörsch Reformhaus, O2, Claire's, Geox, Leonardo, Netcologne, Zwo, ht.goldkauf, eterna, Close up Shop, dm, Yves Rocher, L'OCCITANE, WMF +52 +Casimir Perier and fr:Casimir Perier, René Mouchotte and fr:René Mouchotte, Augustin Fresnel and fr:Augustin Fresnel, Amedeo Modigliani and fr:Amedeo Modigliani, Auguste Comte and fr:Auguste Comte, Camille Pissarro and fr:Camille Pissarro, Édith Piaf and fr:Édith Piaf, Eugène Delacroix and fr:Eugène Delacroix, Frédéric Chopin and fr:Frédéric Chopin, Ferdinand de Lesseps and fr:Ferdinand de Lesseps, Georges Bizet and fr:Georges Bizet, Georges Cuvier and fr:Georges Cuvier, Georges Seurat, Gilbert Bécaud and fr:Gilbert Bécaud, Guillaume Apollinaire and fr:Guillaume Apollinaire, Honoré de Balzac and fr:Honoré de Balzac, Isadora Duncan and fr:Isadora Duncan, Joseph Fourier, Jean-François Champollion and fr:Jean-François Champollion, Jim Morrison and fr:Jim Morrison, Marcel Proust and fr:Marcel Proust, Max Ernst and fr:Max Ernst, Miguel Ángel Asturias and fr:Miguel Ángel Asturias, Oscar Wilde and fr:Oscar Wilde, Dominique Vivant Denon and fr:Vivant Denon, Léon Gaumont and fr:Léon Gaumont, Louis Verneuil and fr:Louis Verneuil, Elvire Popesco and fr:Elvire Popesco, Fulgence Bienvenüe and fr:Fulgence Bienvenüe, Sadegh Hedayat and fr:Sadegh Hedayat, Léon Jouhaux, Marie Laurencin and fr:Marie Laurencin, Georges Courteline and fr:Georges Courteline, Jean Nohain and fr:Jean Nohain, Jean-Antoine Chaptal and fr:Jean-Antoine Chaptal, Victor Noir and fr:Victor Noir, Achille Zavatta, Pierre Dac, Max Ophüls, Jules Guesde, Stéphane Grappelli, Silvia Monfort and fr:Silvia Monfort, Zénobe Gramme and fr:Zénobe Gramme, Bonne Maman, Piero Gobetti, Gertrude Stein and fr:Gertrude Stein, Andranik Ozanian and fr:Andranik Ozanian, Alain and fr:Alain (philosophe), Paul Vaillant-Couturier and fr:Paul Vaillant-Couturier, Paul Éluard and fr:Paul Éluard, Maurice Thorez and fr:Maurice Thorez, Marcel Cachin and fr:Marcel Cachin, Jacques Duclos and en:Jacques Duclos, Georges Marchais and fr:Georges Marchais, Pierre Georges and fr:Pierre Georges, Christian Pineau and fr:Christian Pineau, Henri Salvador and fr:Henri Salvador, Bruno Coquatrix and fr:Bruno Coquatrix, Henri Barbusse and fr:Henri Barbusse, Adolphe Chérioux and fr:Adolphe Chérioux, Henri de Lubac, Jean Daniélou, Henri de Lubac, Jean Daniélou, Jean Langlais, Frédéric Cournet and fr:Frédéric Cournet, André Gill and fr:André Gill, Jules Joffrin, Auguste Blanqui and fr:Auguste Blanqui, Sarah Bernhardt, Jean-Louis Baudelocque, Ticky Holgado and fr:Ticky Holgado, Sophie Daumier, Daniel Toscan du Plantier, Marie Trintignant, Jacques Plante, Yves Montand et Simone Signoret, Henry de Triqueti, Marcel Mouloudji, Téo Hernandez, Alphonse Lavallée and fr:Alphonse Lavallée, Jean-Henry-Louis Greffulhe and fr:Jean-Henry-Louis Greffulhe, Eugène Scribe and fr:Eugène Scribe, Nadar, René Panhard and fr:René Panhard, Jean-Adolphe Beaucé and fr:Jean-Adolphe Beaucé, Gérard de Nerval and fr:Gérard de Nerval, Charles Crozatier and fr:Charles Crozatier, Annie Girardot and fr:Annie Girardot, Jules Michelet and fr:Jules Michelet, Maurice Merleau-Ponty and fr:Maurice Merleau-Ponty, Cino Del Duca, Pierre Cartellier, Gustave Caillebotte, Édouard Daladier and fr:Édouard Daladier, Georges Méliès and fr:Georges Méliès, Georges Enesco, Jacques-Louis David and fr:Jacques-Louis David, Jean-Charles Alphand, Jules Vallès, Louis Blanc, Pierre Brasseur, Jules Romains, François Arago, Alexandre Ledru-Rollin, Thomas Couture, Félix Faure, Alexandre Falguière, Georges Eugène Haussmann, Alfred de Musset, Gioachino Rossini, Louis Visconti, Colette, Ignace Hoff, Victor Schœlcher and fr:Victor Schœlcher, Théodore Géricault, Jean-Auguste-Dominique Ingres, Philippe Khorsand, Jean-Baptiste Camille Corot, Honoré Daumier and fr:Honoré Daumier, James Pradier and fr:James Pradier, Louis Pierre Quentin de Champcenetz, Famille d'Aboville and fr:Famille d'Aboville, Jean de La Fontaine and fr:Jean de La Fontaine, Molière and fr:Molière, Antoine Parmentier and fr:Antoine Parmentier, Jean-Jacques-Régis de Cambacérès and fr:Jean-Jacques-Régis de Cambacérès, Joachim Murat and fr:Joachim Murat, Louis-Gabriel Suchet and fr:Louis-Gabriel Suchet, Christophe-Philippe Oberkampf and fr:Christophe-Philippe Oberkampf, Jacques Nicolas Gobert and fr:Jacques Nicolas Gobert, Jean-Pierre-Louis de Fontanes, Charles-Étienne-François Ruty, Guillaume Dupuytren and fr:Guillaume Dupuytren, Malik Oussekine and fr:Affaire Malik Oussekine, Jean-François Lyotard and fr:Jean-François Lyotard, Francis Poulenc and fr:Francis Poulenc, Charles-François Lebrun and fr:Charles-François Lebrun, Étienne-Gaspard Robert and fr:Étienne-Gaspard Robert, James de Rothschild and fr:James de Rothschild, Rachel Félix and en:Rachel Félix, David Sintzheim and fr:David Sintzheim, Jacob Roblès, Pierre et Hélène Lazareff, François d'Astier de La Vigerie and fr:François d'Astier de La Vigerie, Édouard Branly and fr:Édouard Branly, Mano Solo and fr:Mano Solo, Pierre Desproges and fr:Pierre Desproges, Ignace Joseph Pleyel and fr:Ignace Joseph Pleyel, Vincenzo Bellini and fr:Vincenzo Bellini, Alexandre Brongniart and fr:Alexandre Brongniart, Jacques-Henri Bernardin de Saint-Pierre and fr:Jacques-Henri Bernardin de Saint-Pierre, Michel Petrucciani, Luigi Cherubini and fr:Luigi Cherubini, Alain Bashung, Claude Bernard and fr:Claude Bernard, Gaspard Monge, François-Vincent Raspail, François Étienne Kellermann and fr:François Étienne Kellermann, Emmanuel-Joseph Sieyès, Alphonse Daudet and fr:Alphonse Daudet, Louis Joseph Gay-Lussac and fr:Louis Joseph Gay-Lussac, Martin Michel Charles Gaudin and fr:Martin Michel Charles Gaudin, Joseph Léopold Sigisbert Hugo and fr:Joseph Léopold Sigisbert Hugo, Gaston Tissandier and fr:Gaston Tissandier, Samuel Hahnemann and fr:Samuel Hahnemann, Louis-Antoine Garnier-Pagès and fr:Louis-Antoine Garnier-Pagès, Georges Guët and fr:Monument funéraire de Georges Guët, Étienne Geoffroy Saint-Hilaire and fr:Étienne Geoffroy Saint-Hilaire, Yves du Manoir, Claude Chappe, Benjamin Constant, Michel Ney and fr:Michel Ney, Tombe du Dragon, Maximilien Sébastien Foy, Jean Anthelme Brillat-Savarin and fr:Jean Anthelme Brillat-Savarin, Claude-Henri de Rouvroy, comte de Saint-Simon and fr:Claude Henri de Rouvroy, comte de Saint Simon, André Masséna and fr:André Masséna, Louis Nicolas Davout, Madame Sans-Gêne and fr:Madame Sans-Gêne, Pierre-Augustin Caron de Beaumarchais and fr:Pierre-Augustin Caron de Beaumarchais, Anna de Noailles and fr:Anna de Noailles, Paul Barras and fr:Paul Barras, François-Antoine de Boissy d'Anglas and fr:François-Antoine de Boissy d'Anglas, Richard Wallace and fr:Richard Wallace, Juliette Dodu and fr:Juliette Dodu, Vania Vilers and fr:Vania Vilers, Aubert Lemeland and fr:Aubert Lemeland, Claude Brosset and fr:Claude Brosset, Claude Chabrol and fr:Claude Chabrol, Édith Lefel and fr:Édith Lefel, France Clidat and fr:France Clidat, Frank Alamo, Jack Vanarsky and fr:Jack Vanarsky, Karel Appel and fr:Karel Appel, Lucas Dolega, Marcel Marceau and fr:Marcel Marceau, Olivier Raoux and fr:Olivier Raoux, Patrice Chéreau and fr:Patrice Chéreau, Pierre Bourdieu and fr:Pierre Bourdieu, Roger Planchon and fr:Roger Planchon, Ugür Hüküm, Willy Rizzo and fr:Willy Rizzo, Adolphe Itasse and fr:Adolphe Itasse, Anne-François-Charles Trelliard and fr:Anne-François-Charles Trelliard, Antoine Balthazar Joseph d'André and fr:Antoine Balthazar Joseph d'André, Antoine-Marie Peyre and fr:Antoine-Marie Peyre, Charles-Joseph Panckoucke and fr:Charles-Joseph Panckoucke, Claude-Victor Perrin and fr:Claude-Victor Perrin, Désiré Dalloz and fr:Désiré Dalloz, Julien Vallou de Villeneuve and fr:Julien Vallou de Villeneuve, Laurent de Gouvion-Saint-Cyr and fr:Laurent de Gouvion-Saint-Cyr, Louis Hersent and fr:Louis Hersent, Étienne-Hippolyte Godde and fr:Étienne-Hippolyte Godde, Étienne-Jacques-Joseph Macdonald and fr:Étienne-Jacques-Joseph Macdonald, Antoine Marie Chamans de Lavalette and fr:Antoine Marie Chamans de Lavalette, Horace Say and fr:Horace Say, Jean Melchior Dabadie de Bernet and fr:Jean Melchior Dabadie de Bernet, Julien Bessières and fr:Julien Bessières, Nicolas Ponce and fr:Nicolas Ponce, Tony Noël and fr:Tony Noël, Henri Krasucki and fr:Henri Krasucki, Célestine Galli-Marié and fr:Célestine Galli-Marié, Emmanuel de Grouchy and fr:Emmanuel de Grouchy, Jean Topart and fr:Jean Topart, Vincent Ansquer and fr:Vincent Ansquer, Caroline Miolan-Carvalho and fr:Caroline Miolan-Carvalho, Charles André Pozzo di Borgo and fr:Charles André Pozzo di Borgo, Christian Fechner and fr:Christian Fechner, Ange-Marie d'Eymar and fr:Ange-Marie d'Eymar, Félix Galipaux and fr:Félix Galipaux, Georges Deherme and fr:Georges Deherme, Bazar de la Charité and fr:Bazar de la Charité, Charles Degeorge and fr:Charles Degeorge, Frédéric Soulié and fr:Frédéric Soulié, Jules Cornély and fr:Jules Cornély, Pierre Lachambeaudie and fr:Pierre Lachambeaudie, Pierre Marinovitch and fr:Pierre Marinovitch, Tony Aubin and fr:Tony Aubin, Émile Souvestre and fr:Émile Souvestre, Étienne Lamy and fr:Étienne Lamy, Vol 604 Flash Airlines and fr:Vol 604 Flash Airlines, Raymond de Sèze and fr:Raymond Desèze, Octave de Béhague and fr:Octave de Béhague, Albert Rapilly, Favard du Bourg de Bozas, Alexandre Moline de Saint-Yon, Antoine Louis Boissière and fr:Antoine Louis Boissière, Ponsat, Dubel et Guillard, Barry, Adolphe Thiers and fr:Adolphe Thiers, Élisabeth Alexandrovna Stroganoff, Allan Kardec et Amélie Gabrielle Boudet and fr:Allan Kardec, Félix de Beaujour and fr:Félix de Beaujour, René Panhard and fr:René Panhard, Héloïse et Abélard and fr:Monument funéraire d'Héloïse et Abélard +Sebastopol Grenata - 12 Rue Grenata - 75002 Paris, Plantes-Moulin Vert, Repos - 41, rue du Repos 75020 Paris, Bourdon - Boulevard Bourdon -75004 Paris, Bastille - 11 Rue de la Bastille 75004 Paris, Beaumarchais, Gaité Lyrique, Bassin de l'Arsenal, Quai de la Rapée - Face 98 Quai de la rapée - 75012 Paris, Diderot Bercy, Chabrol, Saint-Ambroise - 2 Rue Lacharrière - 75011 Paris, Montorgueil Rue Montmartre version 2, Réaumur Montorgueil, Boulainvilliers, Rue François Ponsard, Helie - 4, 6 rue Faustin Helie - 75016 Paris, Rue de Siam, Avenue Henri Martin, Abbé carton, Henri Martin, Aboukir, La Fayette Provence, Lafitte Rossini, Allée Pierre Lazareff, Conservatoire - 57 Rue des Petites Écuries - 75010 Paris, Italiens Laffite, Quatre Septembre, Petites Écuries, Gare de l'Est Saint-Laurent, Taitbout Châteaudun, Chapelle Louis Blanc, André Malraux Musée du Louvre, Bonne Nouvelle – Saint-Fiacre, Rougemont - 3 Rue Rougemont - 75009 Paris, Bonne nouvelle prop2, Cirque d'hiver, Chemin Vert Beaumarchais, Bourse, Charonne Saint-Antoine, Groult, Théatre - 60 Rue du Théâtre - 75015 Paris, Linois, Fontaine Raynouard, Porte de Passy, Bois de Boulogne / Porte de La Muette 2, Ternes Courcelles, Wagram Courcelles, Houssaye, Washington, Avia, Argentine, Friedland - Place Georges Guillaumin - 75008 Paris, Place Pigalle, Pigalle Germain Pillon, Monceau, Place de Levis, Millet - Jean de la Fontaine, Plaisance Alesia, Place Adolphe Cherioux, Convention, Rennequin pereire, Porte de Champeret, Berthier Stuart Merril, Alfred roll, Porte de Saint-Cloud, Avenue de la Porte d'Asnières, Place de Wagram, Pereire levallois, Malesherbes, Jasmin, Georges Sand, Métro Rome, Pont Cardinet, Saussure, Pereire Saussure, Legendre, Ranelagh, Octave Feuillet, Dupleix, Grenelle Violet (prop3), Molitor - Michel-Ange, Porte Molitor, Stade Français, Michel Ange, Église d'Auteuil, Galilée Kléber - 1 Rue Galilée - 75016 Paris, Chernovitz - 1 Rue Chernovitz - 75016 Paris, Sèvres Babylone - Bvd Raspail - 75007 Paris, Raspail Varenne - Boulevard Raspail - 75007 Paris, Saint-Augustin - 18 Place Henri Bergson - 75008 Paris, Rocher - 14 Rue Rocher - 75008 Paris, Messine - 2 Avenue Messine - 75008 Paris, Narvick - 54 Rue de la Bienfaisance - 75008, Malsherbes Monceau - 75 Rue de Monceau - 75008 Paris, Dublin - 1 Rue Clapeyron - 75008 Paris, Danton, Square Bela Bartok - Quai Grenelle - 75015 Paris, Emeriau - 27 Rue Emeriau - 75015 Paris, Violet, Place Etienne Pernet, Commerce, Zola, Mairie du 15ème, Rivoli Musée du Louvre, Saint-Philippe du Roule, Matignon, Square Louis XVI, Roquepine, Van Dyck, Haussmann Courcelles, Boétie Ponthieu, Colisée, Humbert, Javel, Porte Maillot, Vélib' station, Stade Charléty, Rond-Point des Champs-Élysées, 18 Boulevard d'Aurelle de Paladines - 75017 Paris, Auriol Quai de la Gare, Weiss, Chevaleret Tolbiac, Monclar, J. Dupré, Parc de Belleville, Porte des Lilas, Etienne Dolet - 29 Rue Etienne Dolet - 75020 Paris, Thorel, Bluets République - 20 Rue Guillaume Bertrand - 75011 Paris, Chemin Vert Saint-Maur - 105 Rue du Chemin Vert - 75011 Paris, Hôpital Beaujon (2), Dunant, Place Dunant, Porte de Vincennes bis, Porte de Vincennes, Porte de Saint-Mandé, Hector Malot, Gare de Lyon Châlon, Charenton Prague - 89ter rue de Charenton - 75012 Paris, Diderot, Gare de Lyon Van Gogh, Porte d'Arcueil, Saint-Germain Dante, Château de Vincennes, Ségur Estrées, Censier, Censier Buffon, Saint-Antoine Gonnet, Rue des Boulets, Pyramide Artillerie, Pyramide Entrée Parc Floral, Ivry Bruneseau, Desault - Porte de Vitry, Romain Rolland, Plaine, Saint-Jacques - Ferrus, Saint-Jacques - Tombe Issoire, Denfert-Rochereau, Cimetière de Gentilly, Mazagrand-Coubertin, Rennes Sabot, Saint-Sulpice, Saint-Germain Copeau, Malakoff-Pinard, André Maurois, Sablons Maillot, Muette Neuilly, Boucicaut Faure, Mondrian, Square des Cévennes, Citroën, Hôpital Georges Pompidou (Prop 2), Place Robert Guillemard, Vasco de Gama, Desnouettes, Rollet, Chandon, Lecourbe, Blanc, Boulevard Victor, Charonne Frot, Charonne Valles, Faidherbe Chaligny - 223 Rue du Faubourg Saint-Antoine - 75011 Paris, Nation Voltaire - 5 Place de la Nation - 75011 Paris, Ledru Rollin Basfroi, Square Nordling, Berthier Porte de Clichy, Porche Pouchet, Bodin Avenue de Clichy, Joncquière, Guy Môquet, Liège, Place de Budapest (2), Place d'Estienne d'Orves, Trinité, Place de Budapest, Saint-Lazare RER, Haussmann Rome, Victoire Chaussée d'Antin, Faubourg Saint-Honoré Anjou, Madeleine, François 1er, Alma, François 1er Lincoln, Champs-Élysées Lincoln, Place du Canada, Petit Palais, 39 rue de Bassano - 75016 Paris, Bassano, Auber, Havre Caumartin, Mathurins, Amette, Suffren Tour Eiffel, Maraichers, Maraichers, Pyrénées Vitruve, Réunion, Charonne Avron, Alexandre Dumas, Denfert-Rochereau - Cassini, Port Royal, Place Trefouel, Vaugirard - Pasteur, Saint-Maur Oberkampf - 80 rue Oberkampf 75011 Paris, Metallos - 81 bis Rue Jean-Pierre Timbaud - 75011 Paris, Saint-Maur Avenue de la République - 87 Rue Saint-Maur - 75011 Paris, Buisson Saint-Louis - 2 Rue du Buisson Saint-Louis - 75010 Paris, Sambre et Meuse - 37 Rue Sambre et Meuse - 75010 Paris, Colonel Fabien - 69 Rue de la Grange Aux Belles - 75010 Paris, Louis Blanc Prop 2 - 10 Rue Louis Blanc - 75010 Paris, Écluses Saint-Martin - 148 Quai de Jemmapes - 75010 Paris, Dodu - 1, 3 Rue des Ecluses Saint-Martin - 75010 Paris, Hôpital Saint-Louis - 12 bis Rue de la Grange Aux Belles - 75010 Paris, Jemmapes, Saint-Louis - 2 Rue Alibert - 75010 Paris, Parmentier Louvel-Tessier - 151 Avenue Parmentier - 75011 Paris, Herschel, Boulard-Daguerre, Croix Nivert, Nationale, Place d'Italie - Auriol, Italie-Rosalie, Bobillot Mery, Bobillot Verlaine, Gérando - Rochechouard, Dunkerque - Trudaine, Dunkerque - Rocroy, Place de Roubaix - Gare du Nord, Place de Roubaix - Saint-Vincent de Paul, Station Vélib' numéro 19037 / 304 Rue de Belleville, Porte des lilas, Télégraphe - 265 Rue de Belleville - 75019 Paris, Pré Saint-Gervais Version 2 - 109 Bvd Serurier - 75019 Paris, Alexander Fleming, Pré Saint-Gervais - 27 Rue du Pré Saint-Gervais - 75019 Paris, Noisy Le Sec, Léon Frapie, Conservation, Cardinal Lavigerie, Avenue de Paris - Gravelle (Charenton), Porte de Charenton, Dom Pérignon - Gravelle, Quai de la Loire - 4 Quai de la Loire - 75019 Paris, Moselle Jaurès - 6 Passage de Melun - 75019 Paris, Place de Catalogne, Beaubourg Rambuteau, Etienne Marcel - 2 Rue Turbigo - 75001 Paris, Française - 6 Rue Française - 75001 Paris, Mouchotte, Les Halles Berger - 29 Rue Berger - 75001 Paris, Les Halles Sébastopol - Rue de la Cossonnerie 75001 Paris, Les Halles Pierre Lescot - 91 Rue Rambuteau - 75001 Paris, Marguerite de Navarre, Rivoli Saint-Denis, Beaubourg Saint-Merri, Place de l'Hôtel de Ville, Lobau - 3 Rue Lobau - 75004 Paris, Turbigo - 55 Rue Turbigo - 75003 Paris, Turbigot Sainte-Elisabeth - 7 Rue Saint-Elisabeth - 75003 Paris, Jules Ferry Faubourg du Temple - Face au 28 Rue Jules Ferry - 75011 Paris, République Ferry - Face au 140 Boulevard Richard Lenoir - 75011 Paris, Jules Ferry République - Face au 141 Boulevard Richard Lenoir - 75011 Paris, Richard Lenoir Voltaire Nord, Face au 86 Boulevard Richard Lenoir - 75011 Paris, Richard Lenoir - 21 Rue Pelée - 75011 Paris, Breguet Sabin - Face au 23 Boulevard Richar Lenoir - 75011 Paris, Bastille Richard Lenoir - Face au 2 Bvd Richar Lenoir - 75011 Paris, République Pierre Levée - 1 Rue de la Pierre Levée - 75011 Paris, Parmentier - 1 Rue Jacquard - 75011 Paris, Père Lachaise - 25 Boulevard Ménilmontant - 75020 Paris, Ménilmontant Oberkampf - 137 Bvd Ménilmontant - 75011 Paris, Couronnes - 44 Bvd de Belleville - 75020 Paris, Belleville - 116 Bvd de Belleville - 75020 Paris, Belleville - 8 Bvd de la Villette - 75010 Paris, Parc de Belleville - 30 Rue Piat - 75020 Paris, Square de menilmontant, Pelleport - 121 Avenue Gambetta - 75020 Paris, Mairie du XXème - 44 Avenue Gambetta - 75020, Gambetta Père Lachaise - 11 Rue Malte Brun - 75020, Gambetta Gâtines - 13 Rue des Gâtines - 75020 Paris, Gambetta Martin Nadeau - 2 Rue Orfila - 75020 Paris, Amandiers - 55 Rue des Cendriers - 75020 Paris, Duris - 33 Rue Duris - 75020 Paris, Pyrénées - 262 Rue des Pyrénées - 75020 Paris, L'Isle Adam Pyrenées - 60 Rue Villiers de l'Isle Adam - 75020 Paris, Saint-Fargeau - 177 Avenue Gambetta - 75020 Paris, Pixérécourt - 65 Rue Pixérécourt - 75020 Paris, Belleville Pré Saint-Gervais - 195 Rue de Belleville - 75019 Paris, Jourdain - 9 Rue Lassus - 75019 Paris, Jourdain - 3 Rue Jourdain - 75020 Paris, Place des Fêtes - 17 Rue Des Fêtes - 75019 Paris, Pyrénées Version 2 - 101 Rue de Belleville - 75019 Paris, Square Bolivard, Manin Simon Bolivar - 1 Rue Manin - 75019 Paris, Buttes Chaumont - 28 Rue Botzaris - 75019 Paris, Botzaris Version 2 - Face 80 Rue Botzaris - 75019 Paris, Alouettes - 20 Rue Carducci - 75019 Paris, Danube - 53 Rue Michel Hidalgo - 75019 Paris, Manin Secretan - 31 Rue Manin - 75019 Paris, Pailleron - 6 Rue Edouard Pailleron - 75019 Paris, Bolivar - 53 Rue de Meaux - 75019 Paris, Lally Tollendal - 5 Rue Lally Tollendal - 75019 Paris, Laumière & Laumière bis - 8 Rue Petit - 75019 Paris, Euryale Dehaynin - 22 Rue Euryale Dehaynin - 75019 Paris, Lorraine - 28 Rue de Lorraine - 75019 Paris, Thionville - 24 Rue de Thionville - 75019 Paris, Bolivar Burnouf - 82 Avenue Simon de Bolivard - 75019 Paris, Belleville Rampal - 4 Rue de Rampal - 75019 Paris, République Parmentier - 82 Avenue Parmentier - 75011 Paris, Saint-Ambroise Parmentier - 17 Rue Saint-Ambroise - 75011 Paris, Boulevard Voltaire - 82 Rue Sedaine - 75011 Paris, Léon Blum Roquette - 142 Rue de la Roquette 75011 Paris, Froment Breguet - 9 Rue Froment - 75011 Paris, Rue du Commerce - 20 Rue du Commerce - 75015 Paris, Montorgueil Etienne Marcel - 32 Rue Etienne Marcel - 75002 Paris, Louvre Coq Héron - 20 Rue Coquillère - 75001 Paris, Francs-Bourgeois - 50 Rue Vieille du Temple - 75004 Paris, Mairie du 3e, Archives Pastourelle - 67 Rue des Archives -75003 Paris, Temple 113 - 76 Rue du Temple - 75003 Paris, Turenne Bretagne - 4 Rue des Filles du Calvaire - 75003 Paris, Rivoli Sebastopol - 1 Rue Saint-Bon, Archives Blancs Manteaux, Bourse du Travail - 3 Rue du Château d'Eau - 75010 Paris, Johann Strauss - 50 Rue René Boulanger - 75001 Paris, Boulevard Montmartre - 21 Rue d'Uzès - 75002 Paris, Bleue - 5 Rue Bleue - 75009 Paris, Bachaumont, Château d'Eau - 57 Rue du Château d'Eau - 75010 Paris, Saint-Sébastien Froissard - 12 Bvd des Filles du Calvaire - 75011 Paris, Temple Jean Pierre Timbaud - 18 Bvd du Temple - 75011 Paris, Temple République - 44 Bvd du Temple - 75011 Paris, Oberkampf - 1 Rue du Grand Prieuré - 75011 Paris, Parmentier Fontaine au Roi - 124 Avenue Parmentier - 75011 Paris, Goncourt - 144 Avenue Parmentier - 75011 Paris, Dodu - 12-14 Rue Claude Vellefaux - 75010 Paris, Recollets - 46 Rue Lucien Sampaix - 75010 Paris, Jacques Bonsergent, Villemin, Gare de l'Est, Verdun, Chabrol Saint-Quentin - 124 Rue du Faubourg Saint-Denis - 75010 Paris, Alban Satragne - 110 Rue du Faubourg Saint-Denis - 75010 Paris, Hittorf - Rue Hittorf - 75010 Paris, Porte Saint-Martin - 62 Rue Meslay - 75003 Paris, Strasbourg - 3 Bvd de Strasbourg - 75010 Paris, Beaubourg - 46 Rue Beaubourg - 75003 Paris, Grenier Saint-Lazare - 34 Rue Grenier Saint-Lazare - 75003 Paris, Hôtel de Ville - 1 Rue des Archives, Perle - 22 Rue de la Perle - 75003 Paris, Saint-Gilles - 26 Rue Saint-Gilles - 75003 Paris, Écouffes Rivoli, Place Monge, Dunkerque, Gare du Nord 1, Sorbonne, Saint-Jacques, Lamenais Washington, velib, velib, Palais des Sports, Porte d'Orléans, Vavin, Michelet Assas, Assas Luxembourg, Paul Doumer La Tour - 53 avenue Paul Doumer 75016 Paris, Decaen-Canebière, Lamé, Saint-Émilion, Pirogues de Bercy, Decaen, Wattignies, Reuilly, Michel Bizot, Porte de Bagnolet - 1 rue Géo Chavez 75020 Paris, Porte de Bagnolet - 102 rue Louis Lumière 75020 Paris, Fourche, Rue Louis Lumière - 68 rue Louis Lumière 75020 Paris, Hospice Debrousse - 142 rue de Bagnolet 75020 Paris, Prairie L'Indre - 2 rue de l'Indre 75020 Paris, Palais Omnisports, Baron Leroy Truffaut, Parc de Bercy, Saint-Jacques - Val de Grâce, Saint-Jacques Soufflot, Port Royal-Cochin, Saint-Marcel, Place Charles Vallin, Charles Vallin, Odessa, Raspail Schoelcher, Arago 2, Bercy, Bibliothèque François Mitterrand, Parc de Bercy - Deuxième partie, Charenton Jardinier, Station mobile 7, Île de la Cité Pont Neuf, Groult (2), Tolbiac Nationale, Saint-Michel Danton, Saint-Séverin, Sablons, Belles Feuilles, Avenue des Portugais, Montgallet Charenton, Maison de Radio France, Rue Jean Bologne, Buzenval, Place de Passy, Mirabeau, Lacuee - 17, rue Lacuée - 75012 Paris, Traversière - 76, rue Traversière - 75012 Paris, Godard, Victor Hugo Rue de la Pompe, Traktir, Poincaré Victor Hugo, Clichy, Square Roquette - 176, rue de la Roquette 75011 Paris, Philippe Auguste 20e Arr. - 212, bd de Charonne 75020 Paris, Madagascar, Dugommier, Quai François Mauriac - Tolbiac, Blanche, L'Isly, Montaigne, Bois de Boulogne / Porte de La Muette 1, Porte Dorée, Porte d'Italie, Boulevard de Denain - Lafayette, Boulevard de Denain - Gare du Nord, Place des Abbesses, Damrémont - Caulaincourt, Virage Lepic, Flandrin, Boulevard Dirderot, Crozatier, Tombe-Issoire, Porte de Choisy, Morland, Sully Morland, Village Saint-Paul, Barbès - Rochechouard, Goutte d'Or, Clignancourt - Sofia, Square Viviani, Boulevard Port Royal, Sevigné, Saint-Paul, Boulevard de l'Hopital, Nation Trône, Place de la Nation, Rue montgallet, Rue Pau Casals, Maryse Bastié, Porte de Versailles, Hôpital Bichat, Porte de Saint-Ouen, Rue Moncey, 13 Place Balard, Italie Tolbiac, Parc de Choisy, Gare d'Austerlitz 2, Choisy Vistule, Choisy Point d'Ivry, Dareau, Charenton, renan, Matignon, Italie Maison Blanche, 28 RUE J.B.PIGALLE, FACE 112 BOULEVARD DE ROCHECHOUART, Stade Georges Carpentier, Place du Docteur Yersin, Porte d'Ivry, Italie, Ternes pereire, Vélib': 112 av Felix Faure, 75015, Rue Chabanais, Metz - 7 Rue de Metz - 75010 Paris, Orteaux, Davout Vitruve, Saint-Germain Harpe, Saint-Michel Sarrazin, Marché Saint-Germain - Mabillon, Odéon Quatre Vents, Quai Malaqais, Gare de Lyon - Parvis, Rue du Cherche-Midi, Guynemer luxembourg, Montparnasse Chevreuse, Gare d'Austerlitz, Cléry, Jourdan le Brix et Mesnin, Courcelles, Jourdan Tombe d’Issoire, Rivoli - Mairie du 1er, Temple de l'Oratoire, Rue Notre-Dame des Champs, Gare de Paris-Bercy, Louis Blanc, Aqueduc, Rue de Richelieu, Mouffetard Saint-Médard, Gide, Charles Hermite, Chapelle Marx Dormoy, Rue Thérese, Rue Daniel Casanova, Herbert, Rue de la Chapelle, Carpeaux, Clignancourt Marcadet, Evangile, Poissonniers Ordener, Binet, Station Velib' Simplon, Francis de Croisset, Tardieu, Feliz Ziem, Doudeauville Stephenson, Ruisseau Ordener, Station Velib' Moskowa, Square Léon, Rond-Point de la Chapelle, Ganneron, Doudeauville Leon, Ruisseau, Porte Montmartre, Joseph de Maistre - Lepic, Marx Dormoy, Station Velib' Championnet, Pecqueur, Saint-Ouen Lamarck, Chartres, Barbès Marcadet, Lepic Veron, Station Velib' Poteau, Département, Montcalm, Mairie du 18e (Velib), Riquet Pajol, Porte de Clignancourt, Station Velib' Albert Kahn, Amiraux, Marché Saint-Pierre, Château Rouge, Damrémont Ordener, Leibniz, Lépine, Eole, Francoeur Caulaincourt, Béliard Poissonniers, Custine, Marcadet - Ramey, Vauvenargues, Orteaux Mouraud, Notre-Dame - 75004 Paris, 1 quai aux Fleurs - 75004 Paris, Belfort, rue de Bercy, Rue Henri Barboux, Rue Sarette, Alleray, Dutot, Rue Lamartine, Léon Frot - Alexandre Dumas, Vélib' bicycle rental, Porte de Villiers, Avenue de ternes, Vélib' station, Place du Bataillon Français de l'ONU, Chatelet - 14 AVENUE VICTORIA, Boulevard Jourdan, Avenue Rene Coty, Velib Rue Pierre Demours, Rue Choron, Tour d'Auvergne, velib, Glacière, Italie - Tolbiac, Marchand Santé, 9104 - CAUMARTIN PROVENCE, Boussingault - Tolbiac, Tolbiac - Wurtz, Faubourg Saint-Jacques - Cassini, Porte d'Italie, Rue de la Fonataine a Mulard, Rue Brillat Savarin, Rue Bobillot, Rue de la Butte aux Cailles, Rue du Docteur Leray et Landouzy, Boulevard Auguste Blanqui, Rue de Croulebarbe, Avenue des Gobelins, Rue Saint-Séverin, Place Louis Lépine, Rue Saint-Honoré, Place André Malraux, Rue de la Banque, Rue d'Aboukir, Rue Liard, Avenue de la Sibelle, Rue d'Assas, Rue Gouthière, Rue Taitbout, Rue de Provence, Rue Louis Le Grand, Rue d'Assas, Rue de la Convention, Rue de la Convention, Boulevard Garibaldi, Rue de l'Ouest, Rue Mouton Duvernet, Rue de Cordelières, Rue Le Brun, Rue Bruant, Rue Leredde, Rue du Regard, 84 Rue de la Fédération, 42 allée Vivaldi, Château landon, Vinaigriers - 58 Rue des Vinaigriers - 75010 Paris, Gaité, Station Mobile 6, Rue Lauriston, 2 rue Lacépède, Roland Barthes, Saint-Fargeau, Hauteville - Bonne Nouvelle, Boutroux -Porte de Vitry, Stade Didot, Rue de Londres, Guy Môquet, Vivienne, Clichy Parme, Manin hautpoul, Velib', Station Velib, Pyrenees ermitage, Legrendre - Rome, Procession, 19011, Vélib-19008, 19011, avenue Marceau, Télégraphe - 265 Rue de Belleville - 75019 Paris, Velib', Vercingetorix, Jacques Callot, Pont de Lodi, rue Saint-Benoit, Saint-pères, velib-19033, Menilmontant Boyer, Vélib Station n°15026, station Velib 5012, Aubervilliers, 89 Boulevard de l'Hôpital, République - Faubourg du Temple, République - Rue du Temple, Hôpital Georges Pompidou, 9 Rue Coquillère, Mendes France, Paris Bike Tour, Station n° 17024, Dauphine, Porte de la Chapelle, Hôpital Saint-Louis - 12 bis Rue de la Grange Aux Belles - 75010 Paris, Alexandre Charpentier, Chapelle, Courteline, Beaugrenelle, 55 Bd Arago, La Pitié-Salpetrière, Favart, Drouot - Grange Batelière, Station no. 15048 PLACE AMEDEE GIORDANI, Daumesnil, Gare saint lazare - cour du havre, Frodevaux, INSEP, Rio, V'lib, Barruel - Vaugirard, Volontaires, Caire Dussoubs, 12 rue cité Riverin / angle rue du Château d'Eau, Montempoivre, Sahel, 2 rue Haxo - 75020 Paris, 1 rue Vidal de la Blache / Angle 78 boulevard Mortier - 75020 PARIS, Philippe Auguste, Batignolles, Beaubourg-Place Michelet, Bel Air, Bizot, Bourdelle, Brancion, Brune, Champt de Mars - Suffren, Chaptal, Desaix, Espace Champerret, Falguière Lebrun, Gare d'Austerlitz, Gare du Montparnasse, Mac Mahon, Mahatma Gandhi, Mairie du 4ème, Mazet - Saint-André des Arts, Mutualité, Mézières Rennes, Nicaragua, Place Fernad Mourlot, Place de la Réunion, Quai Maurica - Pont de Bercy, Raspail Quinet, Saint-Placide - Cherche Midi, Square Berlioz, Trudain - Martyrs, Vaillant Couturier, Vaugirard - Desgoffe, Vaugirard, Wagram, Écoles Carmes, Sèvres Lecourbe, Alésia-Gergovie, Vaillant-Couturier, Raymond Losserand, Raymond Losserand, Beaubourg place michelet, Sébastopol Rambuteau +1 +http://ottawa-laurier.visio-tools.com/, http://laurier.montreal.visio-tools.com/, http://portagebridge.ottawa.visio-tools.com/, http://www.eco-public.com/public2/?id=100117730, http://legacytrail.canmore.visio-tools.com/, http://contador-ciclista-reforma-222-ciudad-de-mexico.visio-tools.com/, http://www.eco-public.com/public2/?id=100117729, http://madison-monroe.visio-tools.com/, http://portagebridge.ottawa.visio-tools.com/, http://eco-public.com/public2/?id=100005630, http://www.eco-public.com/public2/?id=100117683, http://totem-eb-market.sanfrancisco.visio-tools.com/, http://ucla-strathmore-bike-counter.visio-tools.com/, http://boulder13th.visio-tools.com/, http://www.eco-public.com/public2/?id=100117726, http://portland-hawthorne-bridge.visio-tools.com/ +yes +22 and 48.1280556 11.6085449, 48.1638085 11.4878310, 48.1330014 11.6896930, 48.1369439 11.6212658, 48.1326620 11.5460069, 48.1532363 11.5375666, 48.1333644 11.5280883, 48.1563136 11.5749819, 48.1446564 11.5577649, 48.1560591 11.5549218, 48.1875182 11.5531779, 48.1857331 11.5728826, 48.0883280 11.5050421, 48.1890971 11.5738285, 48.1893184 11.5703479, 48.1594532 11.5568430, 48.1859274 11.5581572, 48.1769117 11.5574620, 48.1732462 11.5324016, 48.1326162 11.5725116, 48.1243551 11.5828982, 48.1175192 11.6018298 +40 +3291 +46.3554455 -0.6680522, 46.3458003 -0.6849917, 48.0169900 0.1529468, 48.1846137 0.6536841, 48.1857639 0.6528687, 48.1853805 0.6538558, 48.1877586 0.6535933, 47.2661765 -0.5769410, 47.0326315 -0.6067364, 46.9193815 -0.8487945, 47.8885629 -0.2360682, 47.9936287 0.1902660, 47.2001295 -0.0915538, 47.1129029 -0.6325854, 48.2195485 0.6367839, 47.5306968 -0.1184749, 48.0660784 -0.1560527, 48.2411687 -0.6198366, 46.3702547 -0.7025105, 46.5229325 -0.7565522, 46.4677815 -0.7739333, 48.4390727 -0.1176280, 48.1829382 -0.3020747, 48.3582544 -0.1919164, 47.4710760 -0.5444181, 48.0411951 -0.0567503, 47.2661676 -0.5769699, 47.3873095 0.0786502, 48.0991378 0.7992432, 48.0238361 0.2048137, 47.2451626 -0.7699908 +63 +Regard de la Roquette, Thermes de Cluny, L'enceinte de Philippe Auguste, Cavea des Arènes de Lutèce +55.9351932 -3.1010341, 55.9501318 -3.1886125, 55.9623636 -3.1790432, 55.9713786 -3.1713983, 55.9708769 -3.1716878 +79 +55.9517532 -3.2076351, 55.9496628 -3.2139285, 55.9552766 -3.2114803, 55.9554958 -3.1128963, 55.9460715 -3.1853558, 55.9544334 -3.1796645, 55.9229935 -3.1644934, 55.9475112 -3.1927420, 55.9439779 -3.2072434, 55.9747267 -3.1909731, 55.9519777 -3.1041094, 55.9228448 -3.1879796, 55.9046953 -3.2387239, 55.9420318 -3.2003269, 55.9472228 -3.1971414, 55.9822842 -3.1767544, 55.9250719 -3.2093337, 55.9488817 -3.1964228, 55.9308499 -3.2092267, 55.9400832 -3.2183795, 55.9534279 -3.1783218, 55.9325864 -3.1383719, 55.9509906 -3.2723561, 55.9571047 -3.1371623, 55.9523683 -3.1932627, 55.9533745 -3.1858363, 55.9109094 -3.2176755, 55.9613185 -3.1710995, 55.9382728 -3.1931630, 55.9371945 -3.2067011, 55.9350483 -3.2011995, 55.9531736 -3.2075942, 55.9529685 -3.1955978, 55.9542067 -3.1931470 +0 +48.8613883 2.3754494, 48.8509963 2.3562136, 48.8427294 2.2921898, 48.8478611 2.4055458, 48.8591224 2.3472049, 48.8579572 2.3466352, 48.8446646 2.2770880, 48.8205827 2.3643748, 48.8232673 2.3541002, 48.8821978 2.3665612, 48.8548653 2.3258711, 48.8266940 2.3666020, 48.8525740 2.3134937, 48.8329552 2.3629170, 48.8347564 2.3296964, 48.8328155 2.3261603, 48.8303096 2.3567278, 48.8318948 2.3202576, 48.8388247 2.3221905 +49.4052183 8.7807063, 49.4109969 8.7018271 +yes +yes +1952, 1978 +7 +23 +129 +44 and 53.9900182 -1.1048507, 54.0109332 -1.0814973, 53.9695593 -1.1044687, 53.9783035 -1.1064726, 53.9659202 -1.1066465, 53.9852880 -1.1561727, 54.0307341 -1.0382265, 53.9755492 -1.0707896, 54.0107556 -1.0814518, 53.9863055 -1.1105767, 54.0146884 -1.0718957, 53.9877014 -1.1050782, 53.9871551 -1.0474167, 53.9859898 -1.0651562, 53.9990117 -1.1284252, 54.0411661 -1.0300613, 54.0118558 -1.0595910, 53.9793720 -1.0633348, 53.9673959 -1.0714738, 53.9874393 -1.1204313, 53.9868873 -1.1220633, 53.9776740 -1.0644274, 53.9731081 -1.0720236, 53.9728750 -1.0718855, 53.9891412 -1.0750065, 53.9697935 -1.0788931, 54.0031479 -1.0620491, 53.9761008 -1.0866567, 54.0086708 -1.0590792, 53.9771511 -1.1335660, 53.9679082 -1.0462940, 53.9787147 -1.0614117, 53.9675172 -1.0774716, 54.0175617 -1.0838151, 53.9955927 -1.0554353, 53.9872557 -1.1137428, 53.9773826 -1.0941901, 53.9781054 -1.0952493, 53.9719535 -1.0928503, 53.9799100 -1.0663846, 53.9735958 -1.2046224, 53.9663972 -1.1227394, 53.9838702 -1.1222527, 53.9889063 -1.1110964 +yes and 49.4318310 8.6836270, 49.4121450 8.6987768, 49.4124170 8.7010302, 49.4128441 8.7033505, 49.4269801 8.6859008, 49.4105855 8.7141628, 49.4220959 8.6571134, 49.4121181 8.6777333, 49.3881014 8.6984145, 49.4073511 8.6950858, 49.4067775 8.6875474, 49.4072453 8.6935383, 49.3832213 8.6907187, 49.4111661 8.7179791, 49.4093634 8.6798229, 49.4097101 8.7003135, 49.3894911 8.6886503, 49.4210818 8.6584912, 49.4153769 8.7011671, 49.3990263 8.6893550, 49.4047822 8.6792564, 49.4053466 8.6826194, 49.4039594 8.6787735, 49.4043672 8.6800807, 49.3879387 8.7393372, 49.4141047 8.7179330, 49.4107561 8.6925391, 49.4255204 8.6463717, 49.4279410 8.6825955, 49.3766255 8.7047203, 49.4087768 8.6688678, 49.4085477 8.6698841, 49.4093244 8.6714826, 49.3863330 8.6986191, 49.4061925 8.7091454, 49.4137983 8.6515848, 49.4285005 8.6860866, 49.4240113 8.6489002, 49.4117904 8.7026026, 49.4022061 8.6448435, 49.4119136 8.6685624, 49.4270098 8.6876362, 49.3725953 8.6872497, 49.4099780 8.7146811, 49.4263576 8.6874187, 49.3739094 8.6903811 +yes +48.8660027 2.3646613, 48.8573191 2.3660431, 48.8580708 2.3643313, 48.8577996 2.3607146, 48.8483622 2.3739893, 48.8648222 2.3475072, 48.8609918 2.3544137, 48.8557612 2.3561274, 48.8533876 2.3620076, 48.8575825 2.3562566, 48.8577181 2.3586116, 48.8555902 2.3628384, 48.8437435 2.3544856, 48.8498300 2.3549148, 48.8446680 2.3483159, 48.8705409 2.3532213, 48.8711564 2.3649322, 48.8755778 2.3590863, 48.8759060 2.3588881, 48.8727960 2.3635124, 48.8635832 2.3671683, 48.8660128 2.3794462, 48.8638332 2.3670685, 48.8679153 2.3737355, 48.8656744 2.3707975, 48.8683924 2.3793396, 48.8645151 2.3730525, 48.8679409 2.3754781, 48.8554631 2.3741053, 48.8533962 2.3787654, 48.8554359 2.3744522, 48.8533316 2.3759759, 48.8561021 2.3751898, 48.8667776 2.3826288, 48.8450730 2.3795209, 48.8263535 2.3601541, 48.8264524 2.3594353, 48.8346687 2.3775990, 48.8278970 2.3505521, 48.8234665 2.3685489, 48.8596461 2.3534386, 48.8449146 2.3734371, 48.8523799 2.4036853, 48.8795968 2.3519355, 48.8544589 2.4006544, 48.8475463 2.3713427, 48.8673444 2.3739608, 48.8631427 2.3877152, 48.8570811 2.3559832, 48.8527753 2.4059315, 48.8551966 2.4016334, 48.8540343 2.4058858, 48.8693629 2.3549762, 48.8692952 2.3553367, 48.8461967 2.3783357, 48.8672098 2.3654644, 48.8667808 2.3656961, 48.8684771 2.3626799, 48.8666678 2.3662969, 48.8658039 2.3707172, 48.8657085 2.3712657, 48.8655987 2.3744866, 48.8630511 2.3852954, 48.8780431 2.3720976, 48.8360044 2.3574926, 48.8237611 2.3626525, 48.8477733 2.3484340, 48.8415272 2.3511512, 48.8718873 2.3570864, 48.8288139 2.3506397, 48.8566933 2.4002542, 48.8374507 2.3523064, 48.8334069 2.3555105, 48.8537402 2.4056302, 48.8538057 2.4056125, 48.8484568 2.3995601, 48.8478160 2.3975417, 48.8828817 2.3596543, 48.8641353 2.3676323, 48.8743115 2.3756487, 48.8882137 2.3785003, 48.8723344 2.3492288, 48.8514886 2.3986829, 48.8630061 2.3625592, 48.8628927 2.3617428, 48.8528282 2.4062488, 48.8474511 2.3483430, 48.8880361 2.3910565, 48.8518792 2.3487076, 48.8621883 2.3485126, 48.8696045 2.3711651, 48.8718241 2.3676242, 48.8719097 2.3674864, 48.8664224 2.3652804, 48.8663460 2.3644859, 48.8674473 2.3626414, 48.8675118 2.3625438, 48.8652993 2.3734818, 48.8639802 2.3867074, 48.8642946 2.3862990, 48.8662357 2.3840946, 48.8667100 2.3812708, 48.8661982 2.3800386, 48.8650645 2.3775756, 48.8657840 2.3770479, 48.8661962 2.3766789, 48.8669356 2.3763865, 48.8680369 2.3754008, 48.8676267 2.3787920, 48.8598744 2.3476273, 48.8514969 2.3476094, 48.8378680 2.3520336, 48.8491407 2.3785568, 48.8467150 2.3839386, 48.8479594 2.3771753, 48.8468326 2.3790947, 48.8509991 2.3778569, 48.8484434 2.3726021, 48.8490503 2.3712312, 48.8477004 2.3736634, 48.8500663 2.3739032, 48.8447706 2.3779554, 48.8451286 2.3836536, 48.8541173 2.3674450, 48.8622962 2.3522413, 48.8645230 2.3550690, 48.8627431 2.3531218, 48.8628573 2.3522080, 48.8613333 2.3538187, 48.8489304 2.3762840, 48.8462620 2.3786885, 48.8453283 2.3813011, 48.8446037 2.3833732, 48.8477398 2.3888781, 48.8476122 2.3930340, 48.8420168 2.3896839, 48.8367142 2.3522749, 48.8296427 2.3513003, 48.8681798 2.3714175, 48.8275755 2.3532310, 48.8748569 2.3825637, 48.8742269 2.3755468, 48.8664641 2.3722308, 48.8361883 2.4001628, 48.8361733 2.3992550, 48.8355057 2.3978609, 48.8381280 2.3966112, 48.8385750 2.3962263, 48.8644029 2.4080476, 48.8360911 2.4057236, 48.8400454 2.3808140, 48.8399906 2.3811474, 48.8347357 2.3876562, 48.8396394 2.3801031, 48.8394044 2.3805434, 48.8465303 2.3834704, 48.8463112 2.3834371, 48.8396241 2.4024373, 48.8477533 2.3981316, 48.8485668 2.3983079, 48.8514297 2.3722999, 48.8544625 2.3823250, 48.8507756 2.3816053, 48.8464081 2.3717860, 48.8367172 2.3924117, 48.8366661 2.3926576, 48.8366787 2.3933514, 48.8440901 2.3896786, 48.8432477 2.3892875, 48.8450283 2.3826090, 48.8453967 2.3826032, 48.8470342 2.3868537, 48.8469567 2.3869061, 48.8466891 2.3824558, 48.8467101 2.3827554, 48.8508333 2.3797344, 48.8494049 2.3783024, 48.8481949 2.3766544, 48.8482849 2.3767134, 48.8498295 2.3739314, 48.8456109 2.3933509, 48.8410573 2.3873134, 48.8478582 2.3735429, 48.8483197 2.3742134, 48.8462275 2.3737111, 48.8458407 2.3720988, 48.8459184 2.3726478, 48.8484256 2.3742938, 48.8491474 2.3746104, 48.8471402 2.3725177, 48.8490161 2.3747617, 48.8470772 2.3727405, 48.8475609 2.3752480, 48.8459741 2.3725698, 48.8459507 2.3730386, 48.8458244 2.3719271, 48.8464620 2.3718673, 48.8501253 2.3762844, 48.8493623 2.3902888, 48.8497475 2.3788828, 48.8468146 2.3805349, 48.8442266 2.3492264, 48.8252128 2.3624715, 48.8251313 2.3623868, 48.8248667 2.3622623, 48.8693591 2.3567215, 48.8687850 2.3594780, 48.8462167 2.3753959, 48.8460708 2.3770013, 48.8458252 2.3749543, 48.8469247 2.3730534, 48.8472565 2.3708817, 48.8471819 2.3707631, 48.8467280 2.3702882, 48.8465554 2.3692393, 48.8463534 2.3689294, 48.8456188 2.3700692, 48.8453198 2.3707747, 48.8457141 2.3704736, 48.8905909 2.3820031, 48.8920861 2.3792943, 48.8922518 2.3794780, 48.8487705 2.3484391, 48.8488367 2.3472494, 48.8759394 2.3585316, 48.8522230 2.3849242, 48.8510651 2.3842956, 48.8525445 2.3847726, 48.8452457 2.3838856, 48.8239780 2.3622896, 48.8368051 2.3525786, 48.8524629 2.4041332, 48.8576438 2.3546760, 48.8577293 2.3547383, 48.8578549 2.3549208, 48.8343850 2.3935686, 48.8331731 2.3864450, 48.8330278 2.3862477, 48.8330119 2.3635033, 48.8322800 2.3612312, 48.8331196 2.3540446, 48.8321701 2.3590298, 48.8319327 2.3582100, 48.8330825 2.3614982, 48.8332640 2.3561912, 48.8321364 2.3546768, 48.8355997 2.3589131, 48.8353091 2.3587223, 48.8534095 2.3799147, 48.8723362 2.3823271, 48.8253500 2.3613456, 48.8392195 2.3712618, 48.8321878 2.3587424, 48.8375411 2.3916661, 48.8830692 2.3825494, 48.8839003 2.3840684, 48.8590672 2.3498178, 48.8671282 2.3756094, 48.8496002 2.3981379, 48.8528829 2.3864220, 48.8530453 2.3745559, 48.8479680 2.3710745, 48.8485260 2.3720544, 48.8504050 2.3701018, 48.8517234 2.3993213, 48.8652131 2.3628703, 48.8649450 2.3550985, 48.8646517 2.3565127, 48.8646274 2.3569545, 48.8650523 2.3569392, 48.8730352 2.3796739, 48.8461025 2.3834255, 48.8878588 2.3596648, 48.8472505 2.3480517, 48.8583659 2.3474922, 48.8542020 2.3503178, 48.8599442 2.3474167, 48.8601724 2.3488956, 48.8603586 2.3484772, 48.8619643 2.3491461, 48.8625821 2.3483927, 48.8635373 2.3490562, 48.8631582 2.3498973, 48.8629810 2.3484703, 48.8744252 2.3738880, 48.8496754 2.3496176, 48.8647371 2.3502921, 48.8696741 2.3519506, 48.8703899 2.3484689, 48.8518091 2.3568234, 48.8519507 2.3561108, 48.8527730 2.3537103, 48.8555040 2.3574259, 48.8590577 2.3501929, 48.8593929 2.3493115, 48.8583173 2.3517204, 48.8595480 2.3490548, 48.8616594 2.3501884, 48.8794020 2.3884400, 48.8274198 2.3518171, 48.8572208 2.3551092, 48.8571117 2.3550358, 48.8571384 2.3549764, 48.8572463 2.3550135, 48.8568296 2.3551652, 48.8569458 2.3554337, 48.8646409 2.3536613, 48.8635758 2.3531607, 48.8636089 2.3534360, 48.8640159 2.3502075, 48.8581626 2.3561038, 48.8599753 2.3568642, 48.8579512 2.3567221, 48.8564037 2.3572215, 48.8569706 2.3578174, 48.8570944 2.3576266, 48.8573873 2.3589592, 48.8575151 2.3587307, 48.8580313 2.3580479, 48.8574097 2.3590501, 48.8422251 2.3519017, 48.8259202 2.3471664, 48.8569391 2.3587226, 48.8562824 2.3592731, 48.8562386 2.3592343, 48.8558049 2.3600410, 48.8402209 2.3517797, 48.8555549 2.3612781, 48.8559169 2.3603985, 48.8556266 2.3621786, 48.8554988 2.3630222, 48.8550149 2.3631694, 48.8556083 2.3627374, 48.8552888 2.3629682, 48.8553171 2.3630156, 48.8552064 2.3625817, 48.8557023 2.3630589, 48.8555544 2.3581927, 48.8549470 2.3612543, 48.8557611 2.3570094, 48.8556412 2.3606593, 48.8260343 2.3476244, 48.8540797 2.3659063, 48.8562566 2.3646932, 48.8539723 2.3672909, 48.8549472 2.3633131, 48.8537619 2.3675235, 48.8549776 2.3673407, 48.8540510 2.3686163, 48.8538949 2.3685489, 48.8554539 2.3579276, 48.8548402 2.3583739, 48.8551687 2.3602451, 48.8543977 2.3599670, 48.8521583 2.3613070, 48.8525480 2.3641850, 48.8532015 2.3640647, 48.8544815 2.3628958, 48.8536886 2.3643812, 48.8545334 2.3627527, 48.8539861 2.3622411, 48.8519412 2.3645366, 48.8498781 2.3644772, 48.8477690 2.3654853, 48.8626959 2.3521061, 48.8619134 2.3509953, 48.8671336 2.3577810, 48.8645093 2.3542545, 48.8644805 2.3545447, 48.8646620 2.3539239, 48.8644591 2.3546214, 48.8682730 2.3614921, 48.8674734 2.3577982, 48.8661285 2.3594408, 48.8655917 2.3595983, 48.8651109 2.3571532, 48.8649701 2.3570435, 48.8751228 2.3939970, 48.8724707 2.3776998, 48.8717657 2.3765997, 48.8714128 2.3768852, 48.8189632 2.3613966, 48.8208495 2.3637354, 48.8235845 2.3656863, 48.8262413 2.3615997, 48.8237603 2.3652263, 48.8613715 2.3542463, 48.8614471 2.3583969, 48.8628432 2.3600037, 48.8637749 2.3607964, 48.8638993 2.3606178, 48.8635375 2.3610562, 48.8649528 2.3628140, 48.8648961 2.3629259, 48.8652889 2.3632073, 48.8651842 2.3631892, 48.8647607 2.3633251, 48.8660249 2.3647181, 48.8663091 2.3639231, 48.8636551 2.3631224, 48.8636998 2.3626132, 48.8630524 2.3640855, 48.8621981 2.3629228, 48.8617499 2.3623904, 48.8622881 2.3631634, 48.8620347 2.3635571, 48.8639888 2.3639782, 48.8615020 2.3620520, 48.8449381 2.3496655, 48.8594649 2.3600214, 48.8602716 2.3621222, 48.8577749 2.3606479, 48.8590981 2.3594568, 48.8526479 2.3470482, 48.8615090 2.3660863, 48.8617960 2.3778943, 48.8624536 2.3800165, 48.8560432 2.3669557, 48.8559327 2.3681748, 48.8881390 2.3534840, 48.8636510 2.3505320, 48.8643222 2.3548396, 48.8644140 2.3547850, 48.8382008 2.3515664, 48.8651140 2.3778720, 48.8821123 2.3666359, 48.8790715 2.3649117, 48.8792180 2.3665493, 48.8820420 2.3678327, 48.8820491 2.3660464, 48.8818956 2.3658787, 48.8782055 2.3656749, 48.8788300 2.3662059, 48.8815137 2.3659229, 48.8777011 2.3652544, 48.8803699 2.3667330, 48.8808723 2.3646162, 48.8760311 2.3700774, 48.8610786 2.3535904, 48.8417641 2.3556159, 48.8429787 2.3633417, 48.8359676 2.3585104, 48.8536730 2.3797768, 48.8671314 2.3577761, 48.8668458 2.3586800, 48.8668914 2.3584627, 48.8670160 2.3581568, 48.8670538 2.3582562, 48.8668315 2.3590233, 48.8668006 2.3582106, 48.8647030 2.3567983, 48.8647921 2.3568339, 48.8643639 2.3541873, 48.8668939 2.3583012, 48.8668657 2.3585775, 48.8801119 2.3535250, 48.8487629 2.3975462, 48.8685624 2.3685743, 48.8690249 2.3683671, 48.8632239 2.3566007, 48.8685290 2.3895370, 48.8396584 2.3567615, 48.8706337 2.3954670, 48.8710202 2.3789233, 48.8788328 2.3896914, 48.8600728 2.4041262, 48.8597085 2.4049673, 48.8583918 2.4006119, 48.8390096 2.3532786, 48.8389664 2.3530576, 48.8384933 2.3512141, 48.8614760 2.3530830, 48.8885830 2.3930712, 48.8831626 2.3618001, 48.8829824 2.3614134, 48.8827589 2.3595149, 48.8835628 2.3609310, 48.8733935 2.3902484, 48.8739298 2.3893471, 48.8821165 2.3636110, 48.8787523 2.3641791, 48.8775739 2.3642408, 48.8800819 2.3647141, 48.8801565 2.3594651, 48.8827513 2.3591491, 48.8797114 2.3574553, 48.8804717 2.3578445, 48.8784279 2.3643183, 48.8826930 2.3668426, 48.8193723 2.3655267, 48.8702381 2.3689388, 48.8827554 2.3649189, 48.8296146 2.3822728, 48.8296210 2.3809399, 48.8282637 2.3802920, 48.8314453 2.3762846, 48.8802074 2.3638169, 48.8828408 2.3670033, 48.8831548 2.3679716, 48.8397936 2.3818812, 48.8799198 2.3624384, 48.8801632 2.3624358, 48.8490162 2.3701002, 48.8740698 2.3727422, 48.8498772 2.3811118, 48.8495091 2.3797387, 48.8463681 2.3733407, 48.8542991 2.3674061, 48.8538841 2.3681040, 48.8479223 2.3736079, 48.8445537 2.3572323, 48.8438344 2.3546970, 48.8951764 2.3824259, 48.8801236 2.3667122, 48.8799930 2.3669160, 48.8815607 2.3646012, 48.8286456 2.3651923, 48.8604747 2.3677991, 48.8505335 2.3887324, 48.8453467 2.3836640, 48.8369274 2.3592628, 48.8513298 2.3837511, 48.8707796 2.3732614, 48.8709201 2.3740599, 48.8710092 2.3742679, 48.8592147 2.3578986, 48.8475082 2.3756380, 48.8866286 2.3612403, 48.8463464 2.3945644, 48.8559760 2.3666852, 48.8485371 2.3779078, 48.8511475 2.3804023, 48.8515005 2.3480197, 48.8505010 2.3475831, 48.8656690 2.3706000, 48.8663775 2.3472549, 48.8485654 2.3482310, 48.8496798 2.3526713, 48.8515559 2.3496810, 48.8472106 2.3483382, 48.8471676 2.3484712, 48.8575636 2.3501179, 48.8430338 2.3494597, 48.8431709 2.3494420, 48.8428285 2.3484260, 48.8450551 2.3490236, 48.8455001 2.3492453, 48.8449589 2.3493182, 48.8452352 2.3492038, 48.8453933 2.3492411, 48.8452357 2.3490360, 48.8451938 2.3492149, 48.8449425 2.3498446, 48.8449041 2.3498515, 48.8384619 2.3563683, 48.8384169 2.3562199, 48.8387726 2.3573303, 48.8395766 2.3564711, 48.8608198 2.3503260, 48.8558414 2.3601168, 48.8580164 2.3612756, 48.8603491 2.3508475, 48.8841171 2.3650610, 48.8359122 2.3596749, 48.8507370 2.3741124, 48.8499922 2.3740320, 48.8516089 2.3778622, 48.8503505 2.3762126, 48.8465347 2.3810262, 48.8452145 2.3770818, 48.8247155 2.3622282, 48.8245453 2.3629329, 48.8217881 2.3649842, 48.8299382 2.3626544, 48.8567106 2.3947298, 48.8717034 2.3766791, 48.8516581 2.3996110, 48.8512398 2.3832978, 48.8502779 2.3906229, 48.8502002 2.3918245, 48.8507491 2.3956735, 48.8657517 2.3712388, 48.8655880 2.3691209, 48.8399742 2.3934259, 48.8366296 2.4029905, 48.8385089 2.3991495, 48.8426310 2.3854954, 48.8347163 2.4076218, 48.8390560 2.3924535, 48.8378894 2.3906889, 48.8397585 2.3884230, 48.8390438 2.3923714, 48.8470660 2.3954688, 48.8714920 2.3541352, 48.8774236 2.4101645, 48.8458069 2.3492233, 48.8791462 2.3541109, 48.8796589 2.3543864, 48.8734790 2.3750462, 48.8732283 2.3745203, 48.8605552 2.3544304, 48.8503634 2.3868517, 48.8726908 2.3752657, 48.8674203 2.3758861, 48.8682312 2.3751770, 48.8655345 2.3775152, 48.8693522 2.3713516, 48.8692142 2.3714534, 48.8694819 2.3712557, 48.8673820 2.3728092, 48.8673041 2.3731992, 48.8333957 2.3653856, 48.8678500 2.3687750, 48.8649857 2.3752785, 48.8660987 2.3722759, 48.8609387 2.3678708, 48.8633327 2.3688747, 48.8633817 2.3689965, 48.8663125 2.3723460, 48.8649676 2.3711282, 48.8661552 2.3797640, 48.8656909 2.3777859, 48.8639261 2.3703310, 48.8670939 2.3749249, 48.8639860 2.3704728, 48.8646935 2.3723809, 48.8644002 2.3730285, 48.8677794 2.3780026, 48.8646865 2.3738115, 48.8646004 2.3751995, 48.8674715 2.3750082, 48.8632185 2.3775523, 48.8637330 2.3792298, 48.8546701 2.3693933, 48.8254617 2.3652375, 48.8826774 2.3602875, 48.8555583 2.3708327, 48.8569621 2.3721314, 48.8567777 2.3726141, 48.8558410 2.3721540, 48.8545648 2.3719500, 48.8536042 2.3707268, 48.8538783 2.3707951, 48.8546993 2.3708799, 48.8345104 2.3934103, 48.8455102 2.3829497, 48.8553433 2.3747935, 48.8538434 2.3724806, 48.8418339 2.3497835, 48.8549268 2.3539661, 48.8570588 2.3798634, 48.8524031 2.3825246, 48.8958659 2.3827194, 48.8303551 2.3540212, 48.8546913 2.3857584, 48.8594440 2.3503990, 48.8594790 2.3504550, 48.8503931 2.3688912, 48.8506208 2.3689945, 48.8493300 2.3749472, 48.8224620 2.3587564, 48.8502257 2.3782954, 48.8503235 2.3783645, 48.8495013 2.3784402, 48.8850543 2.3872280, 48.8401706 2.3924398, 48.8290910 2.3744112, 48.8847919 2.3672165, 48.8283297 2.3816403, 48.8444522 2.3901640, 48.8443813 2.3902545, 48.8260323 2.3598011, 48.8226689 2.3629591, 48.8432368 2.3854870, 48.8713001 2.3766068, 48.8704762 2.3775322, 48.8704356 2.3764056, 48.8712066 2.3768241, 48.8449997 2.4059414, 48.8470725 2.4064857, 48.8391796 2.3955829, 48.8387420 2.3963264, 48.8390768 2.3942535, 48.8370556 2.3918823, 48.8372166 2.3915674, 48.8387373 2.3961225, 48.8516698 2.3805401, 48.8703131 2.3487884, 48.8731247 2.3808610, 48.8649854 2.3569095, 48.8645459 2.3566348, 48.8635544 2.3694256, 48.8634434 2.3691079, 48.8734969 2.3525798, 48.8721862 2.3501755, 48.8708723 2.3480533, 48.8704690 2.3480544, 48.8751154 2.3557100, 48.8749802 2.3559340, 48.8744702 2.3552896, 48.8773577 2.3564531, 48.8785393 2.3568626, 48.8767619 2.3563475, 48.8786854 2.3569358, 48.8779934 2.3562593, 48.8782144 2.3566970, 48.8799927 2.3591789, 48.8812174 2.3638517, 48.8796296 2.3553194, 48.8800642 2.3523843, 48.8809546 2.3510669, 48.8751334 2.3514260, 48.8277214 2.3493461, 48.8582656 2.3882446, 48.8658900 2.3506042, 48.8543675 2.3835627, 48.8658986 2.3742587, 48.8663671 2.3715603, 48.8648305 2.3731176, 48.8972266 2.3855240, 48.8796615 2.3550800, 48.8798780 2.3540920, 48.8613780 2.3495790, 48.8526640 2.3534610, 48.8530320 2.3533850, 48.8523740 2.3670920, 48.8805044 2.3746913, 48.8697793 2.3750857, 48.8537952 2.4109052, 48.8598716 2.3677862, 48.8498873 2.3503879, 48.8377658 2.3556217, 48.8752927 2.3875604, 48.8403734 2.3690860, 48.8388484 2.3702978, 48.8376057 2.3732965, 48.8365782 2.3714028, 48.8397347 2.3696009, 48.8359107 2.3720037, 48.8732552 2.3604924, 48.8731705 2.3596985, 48.8720524 2.3605992, 48.8469541 2.4077243, 48.8910970 2.3741558, 48.8911479 2.3740014, 48.8907671 2.3759930, 48.8476438 2.3479747, 48.8735546 2.3841519, 48.8495928 2.3812853, 48.8911373 2.3471492, 48.8907355 2.3482159, 48.8295186 2.3712567, 48.8420173 2.3480157, 48.8431426 2.3492259, 48.8428742 2.3485446, 48.8430296 2.3492151, 48.8430013 2.3491186, 48.8645796 2.3718543, 48.8528026 2.3743383, 48.8691880 2.3617720, 48.8694980 2.3633100, 48.8693370 2.3635590, 48.8691390 2.3634440, 48.8691820 2.3631770, 48.8697450 2.3637220, 48.8686940 2.3597770, 48.8686410 2.3599800, 48.8689770 2.3602190, 48.8690369 2.3600697, 48.8701370 2.3610220, 48.8718820 2.3623620, 48.8721550 2.3626770, 48.8724460 2.3632870, 48.8726535 2.3631861, 48.8732160 2.3629280, 48.8508024 2.3768778, 48.8502524 2.3764928, 48.8417557 2.3487402, 48.8566955 2.3731518, 48.8570910 2.3727607, 48.8410914 2.3489485, 48.8446176 2.3491298, 48.8529638 2.3701915, 48.8521273 2.3846642, 48.8724927 2.3528401, 48.8436740 2.3495038, 48.8451117 2.3493401, 48.8449670 2.3488185, 48.8448364 2.3492811, 48.8448928 2.3492758, 48.8445379 2.3489273, 48.8445159 2.3485397, 48.8434300 2.3494242, 48.8432628 2.3494718, 48.8447332 2.3491164, 48.8446591 2.3491299, 48.8437358 2.3472026, 48.8384430 2.3563154, 48.8447791 2.3492894, 48.8435770 2.3493886, 48.8377834 2.3909830, 48.8911748 2.3607925, 48.8683505 2.3748549, 48.8442707 2.3492157, 48.8412056 2.3941921, 48.8799295 2.3575665, 48.8418196 2.3905033, 48.8441758 2.3479878, 48.8445200 2.3486356, 48.8445253 2.3488180, 48.8570416 2.3726643, 48.8615684 2.3783425, 48.8475785 2.4004192, 48.8743786 2.3636125, 48.8535259 2.4120078, 48.8439446 2.3493055, 48.8438873 2.3493114, 48.8739830 2.3725892, 48.8742654 2.3727129, 48.8566315 2.4020574, 48.8476850 2.4080780, 48.8508424 2.4062247, 48.8356633 2.3751497, 48.8555899 2.3867736, 48.8560496 2.3884378, 48.8531504 2.3773721, 48.8513051 2.3765410, 48.8349006 2.3856248, 48.8795704 2.3522406, 48.8793693 2.3525786, 48.8404972 2.3950481, 48.8661411 2.3671105, 48.8914883 2.3506742, 48.8286998 2.3507416, 48.8286000 2.3506267, 48.8332740 2.3869138, 48.8736230 2.3526886, 48.8789434 2.3780844, 48.8717406 2.3715881, 48.8276701 2.3500783, 48.8733313 2.3530301, 48.8727613 2.3519183, 48.8727251 2.3521315, 48.8526377 2.4062734, 48.8817044 2.3525759, 48.8488761 2.3682264, 48.8211831 2.3635911, 48.8752613 2.3705179, 48.8509430 2.3489714, 48.8476389 2.3773813, 48.8708172 2.3482539, 48.8380973 2.3926743, 48.8395564 2.3497363, 48.8400881 2.3806431, 48.8517277 2.3664938, 48.8515069 2.4066855, 48.8304114 2.3551773, 48.8641319 2.3484339, 48.8883991 2.3510703, 48.8869141 2.3514696, 48.8635328 2.3632361, 48.8825806 2.3672397, 48.8245551 2.3763634, 48.8812525 2.3584914, 48.8830046 2.3650381, 48.8830637 2.3612591, 48.8728704 2.3813019, 48.8834736 2.3604504, 48.8902288 2.3476015, 48.8248510 2.3607452, 48.8514101 2.4052556, 48.8514486 2.4064449, 48.8491856 2.4063562, 48.8480831 2.4040261, 48.8222536 2.3618120, 48.8221935 2.3616081, 48.8221264 2.3613884, 48.8222287 2.3611417, 48.8221688 2.3609429, 48.8221335 2.3607766, 48.8221897 2.3589982, 48.8219714 2.3582637, 48.8220277 2.3582482, 48.8685514 2.3683075, 48.8234610 2.3537855, 48.8753270 2.3689900, 48.8298312 2.3567979, 48.8500822 2.3477323, 48.8471824 2.3866402, 48.8420674 2.3760001, 48.8496451 2.3534642, 48.8625297 2.3799298, 48.8570961 2.3998935, 48.8590223 2.4024858, 48.8590692 2.4058632, 48.8571003 2.4079730, 48.8793921 2.3895039, 48.8371809 2.3497368, 48.8516647 2.3719912, 48.8973173 2.3848230, 48.8972521 2.3847586, 48.8970881 2.3845721, 48.8648559 2.3969632, 48.8713070 2.3479965, 48.8448163 2.3733745, 48.8522713 2.3728858, 48.8743665 2.3618973, 48.8742228 2.3624553, 48.8727849 2.3634181, 48.8617849 2.3518205, 48.8616656 2.3513122, 48.8619390 2.3509944, 48.8595904 2.4050515, 48.8594938 2.4051634, 48.8708913 2.3580857, 48.8688368 2.3624724, 48.8691941 2.3573560, 48.8692734 2.3564413, 48.8699288 2.3950557, 48.8598245 2.3479142, 48.8592985 2.3479258, 48.8601373 2.3481716, 48.8625488 2.3540088, 48.8600406 2.3484986, 48.8600556 2.3483497, 48.8601051 2.3500266, 48.8591455 2.3478511, 48.8602833 2.3482093, 48.8611395 2.3539719, 48.8592067 2.3534078, 48.8620249 2.3537411, 48.8621035 2.3535221, 48.8634711 2.3500128, 48.8601905 2.3476020, 48.8601948 2.3475156, 48.8596378 2.3474576, 48.8629250 2.3487647, 48.8636829 2.3493064, 48.8637682 2.3499143, 48.8634421 2.3485303, 48.8633388 2.3485138, 48.8654002 2.3689374, 48.8363755 2.3920736, 48.8363401 2.3920991, 48.8476343 2.3974001, 48.8452414 2.3792066, 48.8388762 2.3961905, 48.8440274 2.3842239, 48.8614835 2.3771934, 48.8217455 2.3523997, 48.8221973 2.3554703, 48.8495790 2.3543056, 48.8310397 2.3791345, 48.8519848 2.3846342, 48.8643014 2.4002976, 48.8294447 2.3791512, 48.8288966 2.3760626, 48.8486397 2.3653776, 48.8720371 2.3481740, 48.8732358 2.3613894, 48.8732268 2.3624203, 48.8239202 2.3655030, 48.8579931 2.4032941, 48.8396713 2.3471300, 48.8610880 2.3512876, 48.8614615 2.3514586, 48.8515798 2.3992009, 48.8515911 2.3992945, 48.8720846 2.3660947, 48.8716623 2.3681061, 48.8448238 2.3691876, 48.8471374 2.3947373, 48.8416499 2.3895371, 48.8447328 2.3894590, 48.8462215 2.3870803, 48.8470847 2.3868148, 48.8603639 2.3478222, 48.8603388 2.3480663, 48.8598889 2.3522642, 48.8412254 2.3738186, 48.8878312 2.3787631, 48.8701201 2.3491659, 48.8609895 2.3473093, 48.8655913 2.3471265, 48.8238476 2.3506828, 48.8207235 2.3507707, 48.8199467 2.3483675, 48.8233348 2.3532089, 48.8480339 2.3711696, 48.8515203 2.3696022, 48.8537094 2.3705397, 48.8537227 2.3702879, 48.8534314 2.3706101, 48.8502098 2.3923579, 48.8497025 2.3932209, 48.8494363 2.3945868, 48.8385781 2.3705346, 48.8392685 2.3708042, 48.8489499 2.3541277, 48.8221895 2.3632536, 48.8223064 2.3631664, 48.8222916 2.3627648, 48.8222392 2.3628073, 48.8223782 2.3631115, 48.8223716 2.3627130, 48.8230753 2.3626307, 48.8234533 2.3618634, 48.8229485 2.3577916, 48.8229254 2.3569509, 48.8202708 2.3594105, 48.8202117 2.3594306, 48.8193606 2.3601238, 48.8506918 2.3841353, 48.8258771 2.3495257, 48.8258284 2.3486459, 48.8255453 2.3475405, 48.8771870 2.3513170, 48.8764165 2.3555503, 48.8764781 2.3553328, 48.8771434 2.3517304, 48.8764892 2.3552357, 48.8463247 2.3542973, 48.8673359 2.3991033, 48.8665408 2.3996952, 48.8675264 2.4005840, 48.8729522 2.4050353, 48.8722236 2.4047280, 48.8772063 2.4094486, 48.8769898 2.4054164, 48.8711865 2.4001138, 48.8768593 2.4057793, 48.8762568 2.4026044, 48.8692292 2.3966523, 48.8690126 2.3971718, 48.8726193 2.3990837, 48.8723933 2.3993546, 48.8758552 2.4019932, 48.8645296 2.3999995, 48.8643290 2.3977966, 48.8641688 2.3976584, 48.8642835 2.3981370, 48.8650741 2.3972853, 48.8333333 2.3556520, 48.8661899 2.3718762, 48.8226287 2.3606739, 48.8226746 2.3608366, 48.8226533 2.3607500, 48.8229131 2.3618148, 48.8231151 2.3621098, 48.8209801 2.3644246, 48.8243498 2.3621084, 48.8244278 2.3621405, 48.8244847 2.3621306, 48.8245544 2.3621635, 48.8239970 2.3618533, 48.8245778 2.3614015, 48.8250784 2.3610028, 48.8247279 2.3612848, 48.8249548 2.3611007, 48.8257664 2.3605166, 48.8257097 2.3600718, 48.8253582 2.3607812, 48.8254715 2.3606886, 48.8256982 2.3612634, 48.8255348 2.3609777, 48.8256127 2.3614328, 48.8254727 2.3611014, 48.8255281 2.3616006, 48.8254308 2.3611848, 48.8253116 2.3614221, 48.8249807 2.3620807, 48.8250256 2.3619913, 48.8387916 2.3812873, 48.8526953 2.3470942, 48.8622322 2.3573881, 48.8890315 2.3624318, 48.8909716 2.3611648, 48.8264842 2.3599429, 48.8913537 2.3623037, 48.8912306 2.3619236, 48.8913500 2.3613552, 48.8684859 2.3702604, 48.8904554 2.3613786, 48.8911316 2.3641074, 48.8911480 2.3638611, 48.8710452 2.3583430, 48.8816643 2.3664685, 48.8521711 2.3714010, 48.8901098 2.3596369, 48.8909114 2.3604949, 48.8909059 2.3606042, 48.8900400 2.3632191, 48.8281212 2.3500641, 48.8278444 2.3497300, 48.8682148 2.3979085, 48.8309399 2.3810186, 48.8339877 2.3859431, 48.8370765 2.3521704, 48.8751593 2.3701002, 48.8280428 2.3570384, 48.8300151 2.3572624, 48.8300765 2.3566608, 48.8741225 2.3893282, 48.8748365 2.3888937, 48.8511846 2.3478208, 48.8909898 2.3608038, 48.8922565 2.3879668, 48.8896721 2.3596605, 48.8890437 2.3606481, 48.8890487 2.3604033, 48.8897921 2.3604602, 48.8910188 2.3609138, 48.8897517 2.3604732, 48.8329514 2.3692712, 48.8608042 2.3799887, 48.8605689 2.3786648, 48.8762181 2.3718774, 48.8854958 2.3656011, 48.8735521 2.3649705, 48.8354567 2.3766787, 48.8288129 2.3816584, 48.8306388 2.3813576, 48.8861995 2.3567861, 48.8360293 2.3987610, 48.8901495 2.3592264, 48.8352730 2.3987266, 48.8358656 2.3983311, 48.8329971 2.3865539, 48.8798304 2.3575115, 48.8891501 2.3600864, 48.8623031 2.3667215, 48.8264604 2.3691548, 48.8867265 2.3692541, 48.8487274 2.3758510, 48.8292182 2.3745377, 48.8749302 2.3555936, 48.8936132 2.3841788, 48.8659386 2.3788507, 48.8373155 2.3746781, 48.8849455 2.3527050, 48.8850090 2.3595929, 48.8918519 2.3634768, 48.8916614 2.3634553, 48.8690083 2.3564593, 48.8615300 2.3686675, 48.8760446 2.3484651, 48.8850314 2.3781308, 48.8296037 2.3747044, 48.8678207 2.3478985, 48.8667602 2.3505401, 48.8644860 2.3502765, 48.8736385 2.3889782, 48.8739867 2.3864968, 48.8718150 2.3717657, 48.8727815 2.3712192, 48.8729660 2.3702046, 48.8617341 2.3650289, 48.8554103 2.3643002, 48.8542640 2.3651059, 48.8537965 2.3646707, 48.8563379 2.3653392, 48.8555655 2.3665858, 48.8549123 2.3654914, 48.8740700 2.3880327, 48.8599854 2.3672407, 48.8580971 2.3653667, 48.8889949 2.3583055, 48.8470631 2.3700997, 48.8471459 2.3702456, 48.8474998 2.3708712, 48.8482512 2.3721967, 48.8471795 2.3719974, 48.8874196 2.3791285, 48.8911601 2.3472858, 48.8905525 2.3481725, 48.8654434 2.3665508, 48.8614471 2.3729562, 48.8666976 2.3655874, 48.8469506 2.3967840, 48.8450981 2.4030570, 48.8445374 2.4047983, 48.8459401 2.3981714, 48.8469580 2.4075011, 48.8431170 2.4096136, 48.8181346 2.3609207, 48.8193633 2.3602971, 48.8193706 2.3607627, 48.8641592 2.3663881, 48.8472632 2.3686633, 48.8539102 2.3699317, 48.8470293 2.3690164, 48.8462686 2.3631462, 48.8624682 2.3635794, 48.8466386 2.3740238, 48.8467985 2.3747872, 48.8222822 2.3596195, 48.8510597 2.3686542, 48.8576256 2.3683245, 48.8573074 2.3684033, 48.8648741 2.3568648, 48.8647110 2.3556670, 48.8647065 2.3557113, 48.8688148 2.3556948, 48.8744006 2.3588789, 48.8598506 2.3506084, 48.8899908 2.3632081, 48.8611479 2.3689726, 48.8638679 2.3648260, 48.8890796 2.3723602, 48.8731075 2.3603509, 48.8748935 2.3811373, 48.8798222 2.3536407, 48.8689100 2.3859683, 48.8389034 2.3510109, 48.8728060 2.3646742, 48.8722199 2.3662906, 48.8493078 2.3774714, 48.8381318 2.3517955, 48.8387946 2.3486773, 48.8818730 2.3810389, 48.8528114 2.3539541, 48.8924455 2.3635357, 48.8208030 2.3633818, 48.8274435 2.3705955, 48.8205400 2.3633918, 48.8205631 2.3634931, 48.8545629 2.3851571, 48.8498132 2.3518796, 48.8926082 2.3632978, 48.8647682 2.3664782, 48.8606042 2.3677659, 48.8607123 2.3679772, 48.8845024 2.3699867, 48.8817691 2.3705494, 48.8497401 2.3508144, 48.8494708 2.3495778, 48.8243545 2.3680684, 48.8957541 2.3476530, 48.8957586 2.3475660, 48.8654497 2.3690938, 48.8709594 2.3479984, 48.8330093 2.3868281, 48.8731139 2.3807450, 48.8690065 2.3742189, 48.8437820 2.3881621, 48.8485041 2.3805544, 48.8646577 2.3697145, 48.8222398 2.3591920, 48.8444922 2.3906935, 48.8322518 2.3505076, 48.8274091 2.3702950, 48.8302211 2.3529383, 48.8490077 2.3495940, 48.8461901 2.3512999, 48.8754876 2.3480736, 48.8776068 2.3489868, 48.8235887 2.3709824, 48.8878510 2.3535887, 48.8366915 2.3872945, 48.8378379 2.3473550, 48.8678023 2.3499020, 48.8715298 2.3681493, 48.8837483 2.3717520, 48.8846076 2.3697324, 48.8846076 2.3697324, 48.8471339 2.3781711, 48.8805026 2.3961626, 48.8532271 2.3906633, 48.8532124 2.3749112, 48.8593876 2.3489534, 48.8593594 2.3494831, 48.8592324 2.3496685, 48.8591582 2.3498992, 48.8587506 2.3498885, 48.8585618 2.3501138, 48.8584400 2.3500508, 48.8582309 2.3499153, 48.8586577 2.3512239, 48.8585324 2.3516236, 48.8584636 2.3518059, 48.8589383 2.3514814, 48.8594394 2.3491586, 48.8815660 2.3478333, 48.8762025 2.3710966, 48.8295801 2.3570095, 48.8310133 2.3479849, 48.8362085 2.3507215, 48.8902734 2.3546516, 48.8277176 2.3503583, 48.8914921 2.3613348, 48.8303310 2.3543233, 48.8304313 2.3542566, 48.8301931 2.3538796, 48.8550776 2.3606106, 48.8538565 2.3611419, 48.8539037 2.3621825, 48.8493157 2.3784984, 48.8312746 2.3688607, 48.8295989 2.3477981, 48.8546823 2.3502166, 48.8802997 2.3577529, 48.8280833 2.3518785, 48.8345869 2.4046238, 48.8489944 2.3476761, 48.8339315 2.3535154, 48.8343358 2.3532328, 48.8334871 2.3538301, 48.8343901 2.3531943, 48.8968374 2.3787112, 48.8971449 2.3819951, 48.8706152 2.3532598, 48.8281734 2.3581151, 48.8281213 2.3581379, 48.8282088 2.3580869, 48.8298944 2.3567517, 48.8279789 2.3582481, 48.8306371 2.3542033, 48.8301553 2.3526298, 48.8304963 2.3537726, 48.8488823 2.3702261, 48.8468258 2.4090233, 48.8701642 2.3537129, 48.8590400 2.3622970, 48.8907611 2.3619378, 48.8458824 2.3754339, 48.8850869 2.3651538, 48.8396674 2.3497245, 48.8416725 2.3497548, 48.8417916 2.3497766, 48.8418859 2.3497875, 48.8419165 2.3497914, 48.8418378 2.3496214, 48.8420720 2.3498351, 48.8421234 2.3498351, 48.8424383 2.3496720, 48.8426011 2.3496377, 48.8427514 2.3496041, 48.8429466 2.3495606, 48.8440708 2.3494232, 48.8445679 2.3496772, 48.8445191 2.3496762, 48.8383528 2.3897390, 48.8604075 2.3556155, 48.8601740 2.3563013, 48.8571765 2.3589357, 48.8517041 2.3505648, 48.8574751 2.3504537, 48.8265827 2.3745998, 48.8375062 2.4444441, 48.8251232 2.3579151, 48.8723494 2.3607849, 48.8447679 2.3497792, 48.8311018 2.3750269, 48.8303119 2.3757398, 48.8306923 2.3753998, 48.8310217 2.3759342, 48.8471340 2.3864431, 48.8467506 2.3832061, 48.8329435 2.4149758, 48.8323315 2.4178175, 48.8312932 2.3735896, 48.8311417 2.3739163, 48.8549171 2.3551866, 48.8383546 2.3930656, 48.8394477 2.3924756, 48.8394195 2.3921135, 48.8531969 2.3783676, 48.8886086 2.3780545, 48.8862020 2.3612523, 48.8421984 2.3516249, 48.8765293 2.3766762, 48.8765381 2.3785538, 48.8831467 2.3852056, 48.8526874 2.3539909, 48.8793441 2.3856452, 48.8912644 2.3784340, 48.8481127 2.3756890, 48.8492365 2.3739525, 48.8495930 2.3774565, 48.8495553 2.3786800, 48.8500160 2.3788251, 48.8496527 2.3779307, 48.8465400 2.3811858, 48.8503285 2.3781973, 48.8481611 2.3766463, 48.8460012 2.3764202, 48.8553144 2.3878881, 48.8434604 2.4022375, 48.8496167 2.3700570, 48.8481689 2.3925595, 48.8469569 2.3847760, 48.8464179 2.3800872, 48.8753759 2.3739351, 48.8751695 2.3739029, 48.8746244 2.3809330, 48.8781141 2.3843466, 48.8779190 2.3852619, 48.8778925 2.3854242, 48.8782848 2.3854140, 48.8789083 2.3856186, 48.8789361 2.3851519, 48.8806716 2.3738195, 48.8820002 2.3711763, 48.8490915 2.3487987, 48.8899434 2.3710251, 48.8803750 2.3978486, 48.8811706 2.3719906, 48.8641699 2.4083715, 48.8567608 2.3945887, 48.8757475 2.3857007, 48.8753418 2.3815392, 48.8747347 2.3813029, 48.8752868 2.3817360, 48.8755279 2.3821599, 48.8372979 2.3511170, 48.8516564 2.3473784, 48.8590719 2.3810909, 48.8335564 2.3869198, 48.8334907 2.3868335, 48.8337569 2.3871813, 48.8329726 2.3861326, 48.8338510 2.3872594, 48.8740264 2.3839194, 48.8206809 2.3635646, 48.8207494 2.3637471, 48.8203146 2.3640270, 48.8552012 2.3739399, 48.8546611 2.3726793, 48.8746078 2.3810324, 48.8739520 2.3822179, 48.8735701 2.3830856, 48.8736839 2.3828415, 48.8787477 2.3711783, 48.8819062 2.3741667, 48.8841883 2.3779754, 48.8845623 2.3786634, 48.8851670 2.3806432, 48.8852067 2.3807525, 48.8855935 2.3818316, 48.8805386 2.3751052, 48.8806753 2.3748196, 48.8807035 2.3747471, 48.8808173 2.3744896, 48.8808967 2.3743140, 48.8830777 2.3876231, 48.8723326 2.3483178, 48.8431753 2.3523678, 48.8431753 2.3523678, 48.8337390 2.3618054, 48.8343386 2.3607778, 48.8481870 2.3541570, 48.8485630 2.3547360, 48.8486600 2.3548950, 48.8488030 2.3550960, 48.8868177 2.3744113, 48.8849000 2.3707095, 48.8883341 2.3761366, 48.8585600 2.3535180, 48.8359828 2.3592084, 48.8582564 2.3530692, 48.8579136 2.3528123, 48.8527723 2.3849647, 48.8528254 2.3852671, 48.8439032 2.3546898, 48.8859211 2.3934465, 48.8847791 2.3925318, 48.8848752 2.3926673, 48.8862192 2.3936382, 48.8754744 2.3873297, 48.8754373 2.3874893, 48.8651610 2.3726873, 48.8643341 2.3728778, 48.8630357 2.3730890, 48.8495520 2.3551790, 48.8495960 2.3546780, 48.8493090 2.3539520, 48.8470580 2.3520490, 48.8468240 2.3516360, 48.8756732 2.3873298, 48.8209363 2.3710302, 48.8712417 2.3797804, 48.8708280 2.3787238, 48.8791599 2.3910656, 48.8827997 2.3733397, 48.8830186 2.3740035, 48.8826853 2.3804864, 48.8729547 2.3799476, 48.8755208 2.3906946, 48.8619535 2.4014538, 48.8828915 2.3811913, 48.8830697 2.3810418, 48.8840675 2.3805918, 48.8758598 2.4006983, 48.8583141 2.3549137, 48.8606889 2.3547690, 48.8607780 2.3544920, 48.8579708 2.3528081, 48.8612688 2.3578488, 48.8659762 2.3835715, 48.8353583 2.4058762, 48.8460163 2.3825296, 48.8754888 2.3889719, 48.8716073 2.3573055, 48.8300151 2.3572215, 48.8589855 2.3540028, 48.8545486 2.3843630, 48.8752800 2.3929026, 48.8752271 2.3936912, 48.8751574 2.3942236, 48.8636468 2.3671522, 48.8426923 2.3634778, 48.8744920 2.3729505, 48.8741051 2.3720932, 48.8739847 2.3718055, 48.8738359 2.3717117, 48.8735359 2.3710279, 48.8741858 2.3715930, 48.8745316 2.3721362, 48.8716669 2.3719109, 48.8711993 2.3697018, 48.8736209 2.3748630, 48.8878559 2.3534540, 48.8541359 2.3719456, 48.8542108 2.3674171, 48.8544297 2.3673782, 48.8555777 2.3673888, 48.8558432 2.3674030, 48.8643515 2.3547358, 48.8612115 2.3668968, 48.8596062 2.3680483, 48.8595048 2.3686879, 48.8591538 2.3688576, 48.8416174 2.3913852, 48.8624329 2.3726841, 48.8618736 2.3728696, 48.8582325 2.3718450, 48.8620891 2.3780066, 48.8940948 2.3515003, 48.8684376 2.3706209, 48.8643358 2.3688108, 48.8612224 2.3648477, 48.8734440 2.3641694, 48.8731953 2.3643525, 48.8714362 2.3657352, 48.8567447 2.3780076, 48.8569233 2.3783614, 48.8768960 2.3534930, 48.8665545 2.3603936, 48.8926611 2.3805354, 48.8707266 2.3515964, 48.8904606 2.3790788, 48.8910196 2.3779829, 48.8907119 2.3781803, 48.8906831 2.3786293, 48.8559378 2.3789593, 48.8709792 2.3597736, 48.8711489 2.3601690, 48.8572892 2.3686817, 48.8592341 2.3681415, 48.8593853 2.3683292, 48.8584433 2.3828023, 48.8580910 2.3814281, 48.8586116 2.3834178, 48.8541661 2.3685390, 48.8557389 2.3682126, 48.8603524 2.3676426, 48.8565384 2.3685512, 48.8584554 2.3675609, 48.8389090 2.3816630, 48.8357533 2.3521704, 48.8597890 2.4027381, 48.8599301 2.4026085, 48.8593962 2.4050659, 48.8577162 2.3793963, 48.8413733 2.3746037, 48.8780937 2.3647247, 48.8681030 2.4033390, 48.8609818 2.3809160, 48.8609042 2.3814382, 48.8615076 2.3805893, 48.8592360 2.3828098, 48.8666042 2.3853196, 48.8614564 2.3780635, 48.8614752 2.3781069, 48.8610647 2.3776241, 48.8615428 2.3776813, 48.8610882 2.3812893, 48.8608398 2.3800020, 48.8611517 2.3814385, 48.8616071 2.3823364, 48.8945524 2.3527710, 48.8556266 2.3621786, 48.8556266 2.3621786, 48.8556266 2.3621786, 48.8623796 2.3727706, 48.8621341 2.3774006, 48.8626909 2.3786304, 48.8622688 2.3799159, 48.8623261 2.3800798, 48.8633812 2.3618041, 48.8488626 2.3712412, 48.8571998 2.3686785, 48.8594276 2.3683212, 48.8547937 2.3759343, 48.8995733 2.3524962, 48.8537976 2.3699213, 48.8537389 2.3700602, 48.8471804 2.3954861, 48.8642540 2.3684778, 48.8646300 2.3665505, 48.8661085 2.3669813, 48.8547424 2.3544531, 48.8549834 2.3538154, 48.8547359 2.3551293, 48.8570133 2.3782712, 48.8566264 2.3772226, 48.8563976 2.3765843, 48.8560776 2.3757039, 48.8558521 2.3750899, 48.8609420 2.3686815, 48.8590641 2.3684194, 48.8620899 2.3661777, 48.8617952 2.3647367, 48.8633340 2.3613891, 48.8623729 2.3651197, 48.8627347 2.3662302, 48.8614130 2.3705083, 48.8615747 2.3706299, 48.8647430 2.3818722, 48.8620626 2.3672580, 48.8644915 2.3656032, 48.8690385 2.3639054, 48.8679245 2.3658481, 48.8650522 2.3663679, 48.8619694 2.3673462, 48.8656106 2.3572726, 48.8626759 2.3636324, 48.8627659 2.3625185, 48.8615576 2.3705429, 48.8633878 2.3694245, 48.8611497 2.3674810, 48.8626333 2.3674542, 48.8642921 2.3657377, 48.8618200 2.3730192, 48.8617681 2.3611646, 48.8630387 2.3518815, 48.8632610 2.3511168, 48.8635550 2.3471565, 48.8587772 2.3712220, 48.8659600 2.3653216, 48.8665862 2.3667443, 48.8661620 2.3675630, 48.8666335 2.3665296, 48.8663602 2.3680223, 48.8643746 2.3685025, 48.8641963 2.3679144, 48.8646177 2.3690280, 48.8628347 2.3675662, 48.8578407 2.3769477, 48.8623144 2.3663745, 48.8620724 2.3658250, 48.8637272 2.3671164, 48.8580013 2.3652526, 48.8584347 2.3637448, 48.8614253 2.3643489, 48.8593585 2.3673596, 48.8586082 2.3675198, 48.8578247 2.3662529, 48.8578018 2.3672245, 48.8575285 2.3645936, 48.8567071 2.3672138, 48.8599776 2.3643195, 48.8581319 2.3686779, 48.8731027 2.3586476, 48.8580112 2.3685170, 48.8640444 2.3658805, 48.8641120 2.3658485, 48.8535896 2.3766260, 48.8548638 2.3756068, 48.8611118 2.3693564, 48.8440870 2.4099235, 48.8814750 2.3580850, 48.8654853 2.3686016, 48.8279596 2.3690455, 48.8279577 2.3690363, 48.8468373 2.3601741, 48.8462135 2.3676679, 48.8477461 2.3511419, 48.8659951 2.3472997, 48.8596787 2.3549361, 48.8566620 2.3563500, 48.8554458 2.3617217, 48.8408224 2.3556248, 48.8388681 2.3562783, 48.8384220 2.4593519, 48.8305866 2.4133509, 48.8201104 2.4442417, 48.8739698 2.3502828, 48.8807650 2.3809540, 48.8772540 2.3793034, 48.8768300 2.4049587, 48.8573667 2.3785302, 48.8532758 2.3834775, 48.8681170 2.3702881, 48.8582151 2.3817585, 48.8768273 2.4061935, 48.8408375 2.3874300, 48.8330343 2.3541878, 48.8280243 2.3513291, 48.8303084 2.3537927, 48.8302539 2.3536052, 48.8255087 2.3537284, 48.8289425 2.3568654, 48.8422835 2.3705897, 48.8680174 2.3629641, 48.8623556 2.3500864, 48.8367701 2.3930789, 48.8376458 2.3597357, 48.8377834 2.3597919, 48.8380568 2.3599624, 48.8527093 2.3602879, 48.8534305 2.3611806, 48.8419025 2.3689354, 48.8832336 2.3770248, 48.8645929 2.3574911, 48.8778259 2.3969489, 48.8769600 2.3706426, 48.8873550 2.3868767, 48.8565883 2.3770985, 48.8660080 2.3494045 +http://www.100blumen.de/, http://kiga-aussenmuehle.de/, http://hh-hamm.de/kinderschlupf/kinder.html, http://www.musikkindergarten-hamburg.com/, http://www.kinderhaus-fliewatuut.de/, http://www.kita-sandkamp.de/, http://www.paulaundmax.de/wandsbeker.html, www.kindergaerten-finkenau.de, http://www.elbkinder-kitas.de, www.kitas-hamburg.de/kita-hospitalstrasse, http://www.luettjenwelt.de, www.kita-ifflandstrasse.de, www.kitas-hamburg.de/kita-erich-ziegel-ring, http://www.elbkinder-kitas.de/de/kita finder/kita/140, http://www.wabe-hamburg.de, http://www.kita-glueckliche-kids.de, http://www.kita-kleinewissenschaftler.de/, http://www.sternipark.de, http://www.kita-paulus.de/, 184.eva-kita.de, http://www.falkennest.de/, http://www.wabe-hamburg.de/de/kindertagesstaetten/hamburg/allermoehe.html, http://schlossinsel.kita-hamburg-harburg.de/startseite.html, http://www.kinderzimmer-kita.de/hamburg-city-sued, http://www.frosch-kita.de, http://www.elbpiraten-kita.de/standorte/kita-hafencampus.html, http://www.kita.de/kita/20048, http://hamburger-spielhaeuser.de/spielhaeuser/harburg, http://hamburger-spielhaeuser.de/spielhaeuser/kennedyhaus/, http://www.paulaundmax.de/august-luetgens-park.html, http://www.paulaundmax.de/eilbeker.html, http://www.paulaundmax.de/hoheluft.html, http://www.paulaundmax.de/oelkersallee.html, www.elbkinder-kitas.de/de/kita finder/kita/309, http://www.xn--spielgelnde-gleiwitzer-bogen-dnc.de/kitahome.html, http://www.eva-kita.de/cmain/kitas unit.html?id=206&c, http://www.kita-marzipanfabrik.de/, http://www.elbkinder-kitas.de/de/kita finder/kita/418, www.kindergaerten-finkenau.de, www.ameisenhaufen.de, http://www.elbkinder-kitas.de/de/kita finder/kita/413, http://waki-hamburg.de, http://tigerente-hort.de/b index.html, http://www.elbkinder-kitas.de/de/kita finder/kita/223, http://www.kindergarten-volksdorf.de, www.kiga-heilig-kreuz.de, www.wabe-hamburg.de/de/kindertagesstaetten/hamburg/iserbrook.html, http://www.kindergarten-rolfincken.de, http://www.kitahimmelblau.de, http://www.elbkinder-kitas.de/de/kita finder/kita/129, http://www.elbkinder-kitas.de/de/kita finder/kita/130, http://www.pedia-bildung.de/, http://www.pedia-bildung.de/de/kita rehrstieg.php, http://www.flachsland-hamburg.de/Kita-Alstertal.137.0.html, http://www.elbkinder-kitas.de/de/kita finder/kita/105, http://www.alsterkinder.de/, www.kth-silberpappelstieg.de, http://www.elbkinder-kitas.de/de/kita finder/kita/505, http://kita-volksdorf.de, http://www.wabe-hamburg.de/de/kindertagesstaetten/hamburg/billstedt.html, http://www.drk-kiju.de/einrichtungen/wirbelwind +48.8657499 2.3411790 +51 +asphalt, asphalt +55.9451817 -3.1797665 +55.9415684 -3.1813171, 55.9412241 -3.1809783 ++44 (0) 1340 820 373, +49 482646301, +49 35024 7900, +49 7633 8320, +49 8677 6699242, +49865295360, 01540 672219, +1 (510) 769-1601, +33 0131650811, 01631 572004, (207) 865-4828 +Musée en Herbe, Musée en Herbe, Môm'artre, La Bellevilloise, Studio des Islettes, Maison Européenne de la Photographie, Centre d'animation Reuilly, Conservatoire municipal Claude Debussy - Site de la Jonquière, Atelier de Restauration et de Conservation des Photographies de la Ville de Paris, Le Local, Espace Château Landon, Barbara Fleury, ADAC, Le Lucernaire, La Générale Nord-Est, Le 100, Le Chantier, Le Plateau, Centre d’animation La grange aux Belles, La Bellevilloise, Centre culturel italien, Centre Culturel la Jonquière, Shakirail, La Péniche cinéma, Au Bonheur du Jour, cité des arts, La Métisse, Conservatoire municipal Jean-Philippe Rameau, Antenne FRAC Île-de-France, FRAC Antenne culturelle, Centre culturel franlasie, Conservatoire libre du cinema francais, Centre culturel Pouya, Auditorium, Collège des Bernardins, Conservatoire du Centre, Centre Pompidou, Centre Wallonie-Bruxelles, Espace des Blancs-Manteaux, La Gaîté lyrique, Espace Jemmapes, Conservatoire Hector Berlioz, Institut hongrois, Galerie J. Kugel, Le Zénith, Grande Halle de la Villette, Cours Florent, Espace Fondation EDF, Conservatoire Municipal Nadia et Lili Boulanger, Conservatoire municipal Georges Bizet, Pavillon Carré de Baudouin, Le BAL, Centre d'Animation "Les Abbesses", Maison des ensembles, La Maison des Cinq Sens, Conservatoire Francis Poulenc, Point - Afrique, Centre Culturel Suédois, Ancien Conservatoire Maurice Ravel, Le Cent Quatre, Maison des Métallos +yes +26 +yes +13 +55.9525959 -3.1925077 +49.6390443 8.7586809, 49.6491519 8.7786154, 49.4116697 8.9271085, 49.5273884 8.7489962, 49.4091892 8.6985480, 49.2941943 8.6972230, 49.2959309 8.7014509, 49.3883245 9.0081746, 49.2919399 8.7027015, 49.4109553 8.9356774, 49.3761026 8.8885302, 49.5299064 8.7421002, 49.5270569 8.7608652, 49.3884820 8.8036758, 49.3868016 8.8070952, 49.3948331 8.7964522, 49.3864018 8.8001781, 49.4378301 8.7519879, 49.6041485 8.7393504, 49.4178001 8.7608053, 49.3597431 8.8120515, 49.6229182 8.6958850, 49.4280459 8.7495006, 49.4333074 8.7472561, 49.4280490 8.7464328, 49.4220544 8.7604986, 49.3359654 8.7908694, 49.4160940 8.7161473, 49.3872630 8.7975398, 49.5976216 8.7371486, 49.5990671 8.7380614, 49.6233348 8.7592105, 49.6239213 8.7540220, 49.5693320 8.7183717, 49.5799659 8.7150421, 49.5836852 8.7060844, 49.5668665 8.7346098, 49.5987193 8.7329887, 49.5900011 8.7564846, 49.5824512 8.7701378, 49.5505849 8.8129790, 49.5497942 8.8086360, 49.3957980 8.8231207, 49.6147886 8.7162592, 49.3973451 8.7978476, 49.4132108 8.7429246, 49.3774319 8.6987045, 49.5819364 8.7454907, 49.5973081 8.7352102, 49.5596089 8.7845832, 49.3594020 8.8046809, 49.3605252 8.8038440, 49.3574669 8.7787048, 49.3930158 8.7827624, 49.6043110 8.7457135, 49.6044250 8.7292229, 49.3811510 8.8033879, 49.3914947 8.7854488, 49.4021057 8.8481051, 49.4118979 8.8312113, 49.4038331 8.8435805, 49.4062892 8.8436208, 49.4144602 8.7186269, 49.4152010 8.7617225, 49.3946293 8.7926321, 49.3933559 8.7992739, 49.3841017 8.8059323, 49.4113731 8.7119281, 49.3640254 8.7056751, 49.4869999 8.7367276, 49.4105298 8.6976589, 49.5660788 8.7990762, 49.4426247 8.8954326, 49.4460345 8.8970944, 49.5697702 8.7099088, 49.5637955 8.7072905, 49.4149595 8.6974870, 49.6118535 8.7753135, 49.6050755 8.7600210, 49.4943601 8.7246887, 49.6020099 8.7677160, 49.4141843 8.7705509, 49.4287124 8.6962608, 49.4701324 8.7543477, 49.4371781 8.8098188, 49.3177272 8.7571254, 49.6150231 8.9143821, 49.5455206 8.7291779, 49.4760467 8.6993112, 49.4014645 8.7791091, 49.6726030 8.7316620, 49.6759656 8.7650417, 49.6696052 8.7669330, 49.3739972 8.7036051, 49.6677528 8.7451867, 49.6562702 8.7547711, 49.4531341 8.7233872, 49.6469373 8.7735990, 49.5909727 8.7236941, 49.3766430 8.7660668, 49.3724852 8.7711188, 49.6209834 8.9451249, 49.3947439 8.7943731, 49.3038290 8.6957242, 49.2995474 8.7000158, 49.4659574 8.7606949, 49.4666324 8.7723805, 49.4982324 8.7655052, 49.4565194 8.8077226, 49.6445901 8.7362064, 49.5793143 8.7544635, 49.4719917 8.7590827, 49.4737806 8.7562742, 49.4609471 8.7703480, 49.5411759 8.6979134, 49.3197938 8.8658341, 49.2984869 8.8269633, 49.2966768 8.8256330, 49.3219820 8.8193599, 49.5150489 8.7482457, 49.3871024 8.8383024, 49.3935723 8.8416570, 49.3383714 8.7389507, 49.3413963 8.7549260, 49.3873851 8.7356455, 49.3234400 8.6954224, 49.3189808 8.8881137, 49.3159750 8.8865005, 49.3201069 8.8909232, 49.4601440 8.9882590, 49.6476051 8.7947973, 49.6429053 8.7968483, 49.3613242 8.7824149, 49.3945103 8.9294461, 49.6642107 8.7970938, 49.5208026 8.6986241, 49.4622543 8.9867661, 49.5261504 8.8636211, 49.5139200 8.8528708, 49.4658163 8.9915752, 49.4646725 8.9846014, 49.4352605 8.8040578, 49.3994611 8.8459544, 49.5464780 8.7680625, 49.6098312 8.8122662, 49.3375623 8.9113070, 49.3394809 8.9087893, 49.5862746 8.8146330, 49.6518562 8.7848309, 49.5517497 8.8515418, 49.5661178 8.7025227, 49.4506689 8.9797021, 49.4558022 8.9786024, 49.5832325 8.7940521, 49.5638706 8.7714332, 49.4768792 8.7597110, 49.5578177 8.7067432, 49.5486105 8.7553751, 49.5852926 8.7016688, 49.5785870 8.7199786, 49.4157065 8.7287628, 49.3033175 8.7047451, 49.3661785 8.7507929, 49.6669516 8.8112186, 49.6589466 8.8013252, 49.4619449 8.7690156, 49.5110988 8.7443994, 49.4260082 8.9560462, 49.4736174 8.9865378, 49.6388516 8.7691296, 49.6269184 8.7623574, 49.6592860 8.8414793, 49.5613325 9.0150075, 49.5995733 8.8345813, 49.6212544 8.7673967, 49.4136791 8.7136022, 49.3684471 8.7452563, 49.6251009 8.7584019, 49.2817542 8.7809947, 49.4469008 8.8982283, 49.3925682 9.0026920, 49.3520218 8.7810118, 49.6273416 8.7269432, 49.4133863 8.7084302, 49.4089964 8.7017641, 49.4102662 8.7019427, 49.4112926 8.7027584, 49.4085432 8.6937616, 49.4085582 8.6937574, 49.3519718 8.8684674, 49.4853591 8.7967688, 49.4113476 8.7118706, 49.4119316 8.6969837, 49.5676732 8.9734875, 49.4484967 8.8940967, 49.3511417 8.7028368, 49.4630647 8.9967854, 49.3930705 8.9242735, 49.4183221 8.7563527, 49.4156725 8.7421792, 49.3452536 8.6991775, 49.3975439 8.8370531, 49.5302210 8.8617403, 49.3793989 8.8384026, 49.3882338 8.8576904, 49.3501718 8.7751677, 49.4146742 8.8811104, 49.3639583 8.7048484, 49.4635895 8.9900415, 49.4644476 8.9848049, 49.4652335 8.9747254, 49.4689588 8.9843908, 49.4701629 8.9950777, 49.6439529 8.7235692, 49.4049630 8.8411931, 49.4180547 8.8517835, 49.4136635 8.7632703, 49.5109298 8.7312150, 49.5049826 8.7665026, 49.3945750 8.7947057, 49.4223460 8.7539976, 49.3638609 8.8379309, 49.3230182 8.8180605, 49.5933244 8.9889913, 49.3406676 8.7984974, 49.4173960 8.7485433, 49.3205042 8.6940169, 49.5901501 8.8932495, 49.3539619 8.7231541, 49.4100342 8.7062078 +Geschwister-Scholl-Schule, Pestalozzi-Schule, Julius-Springer-Schule, Julius-Springer-Schule, Johannes-Kepler-Realschule, Mönchhof-Grundschule, Freie Christliche Schule, Friedrich-Ebert-Grundschule, Hölderlin-Gymnasium, Musik- und Singschule, Geschwister-Scholl Grund- und Hauptschule, aula Sprachen, Elisabeth von Thadden-Schule, Waldorfschule Heidelberg, Bunsen-Gymnasium, Neckarschule, Heidelberg College, Internationale Gesamtschule Heidelberg, Primarstufe, Stauffenberg-Schule, Englisches Institut Heidelberg, Theodor-Heuss-Realschule, Eichendorff-Grundschule, Helmholtz-Gymnasium, Technikzentrum, Carl-Bosch-Schule, Emmertsgrundschule, Lehr- und Versuchsanstalt für Gartenbau, Fröbelschule, Marie-Baum-Schule, Waldparkschule, Gregor-Mendel-Realschule, Käthe-Kollwitz-Förderschule, Wilckensschule, Kurfürst-Friedrich-Gymnasium, Internationale Gesamtschule Heidelberg, Tiefburgschule, Grundschule der Elisabeth-von-Thadden-Schule, Grundschule Schlierbach, Steinbachschule, Johannes-Gutenberg-Schule, Ecole Pierre & Marie Curie Heidelberg, Heidelberg International School +yes +55.9554953 -3.1694437, 55.9554652 -3.1694213 +Bruntsfield Hotel, Braid Hills Hotel, Britannia Hotel Edinburgh, Hilton Edinburgh Airport Hotel, Peffermill House, Premier Inn, Prestonfield House, Premier Inn Leith, Brooks Hotel, Holiday Inn Express, Ardmillan Hotel, Links Hotel, Apex Edinburgh International, Apex Edinburgh City, Travelodge, Holiday Inn Express, Malmaison, Le Monde, DoubleTree by Hilton Hotel Edinburgh City Centre, Premier Inn, Novotel, Ten Hill Place, Hot-el Apartments, Jurys Inn, The Carlton, The Salisbury, Apex Waterloo Place Hotel, Travelodge Edinburgh Central Waterloo Place, Radisson Blu Hotel, Macdonald Holyrood Hotel, The King James, Ocean Apartments, Sandaig Guest House, Lady Nairne Premier Inn, The Glasshouse, Six Marys Place, Travelodge Rose Street, Mercure Hotel, Old Waverley Hotel, Royal British Hotel, Hotel du Vin, Travelodge Edinburgh Central Queen Street, Travelodge Edinburgh Learmonth, Fraser Suites Edinburgh, Nira Caledonia, The Bonham Hotel, G & V Royal Mile, EasyHotel Prince Street West, Premier Inn, cityroomz, Hotel Ceilidh-Donia, Cumberland Hotel, Dunstane House, Murrayfield Hotel, Hampton Hotel, Murrayfield Park Hotel, Grosvenor Gardens Hotel, Thistle Hotel, The Chester Residence, Fountain Court, Grassmarket Hotel, Motel One, Frederick House Hotel, Regent House Hotel, Hotel Indigo, The Place, York House Hotel, 28 York Place, Fountain Court, Pollock Halls, Ibis, Travelodge Princes Street, The Scotsman Hotel, Holyrood Aparthotel, Rutland Hotel, Twelve Picardy Place, Northumberland Hotel, Minto Hotel, Kildonan Lodge Hotel, Cairn Hotel, Ballantrae Hotel, Terrace Hotel, Ailsa Craig Hotel, Crowne Plaza, Abbey Hotel, The Inverleith Hotel, Merith House Hotel, Culane House Hotel, ritz, Ellwyn Hotel, Hotel Twenty, Rosehall Hotel, Seahaven Hotel, Old Town Chambers, Albany Hotel, Motel One, Parliament House Hotel, Edinburgh House Hotel, Royal Mile Mansions, The Royal Scots Club, Royal Mile Apartments, St. Giles Apartments, The Guards Hotel, Travelodge Haymarket, Ibis Style, Abbot's House Hotel, Adelphi Hotel, Northfield House Hotel, Novotel Edinburgh Park, Sheraton Hotel, Kings Manor Hotel, Dundas Castle, Norton House Hotel, Dalmahoy Hotel & Country Club, Royal Ettrick Hotel, Travelodge Edinburgh Central, Holiday Inn Express Edinburgh, Ibis Edinburgh Centre South Bridge, Stay Central, Residence Inn, Fountain Court EQ2, Holiday Inn Corstorphine, Capital Hotel, Balmoral Hotel, Premier Inn, Dakota Hotel, Holiday Inn Edinburgh City West, Princes Street Suites, Park View House Hotel, Victoria Park House Hotel, Edinburgh City Hotel, Premier Inn, Apex Hotel, Waldorf Astoria Edinburgh - The Caledonian, Edinburgh Marriott Hotel, The Edinburgh Residence, Hilton Edinburgh Grosvenor, Tune Hotel, Hotel Dunstane City, Raj Hotel, Duthus Lodge, The Murrayfield House, Toby Carvery, White Lady, Ellersly House Hotel, Rockville Hotel, Premier Travel Inn, Travelodge, Western Manor House Hotel, Travelodge Cameron Toll, Premier Inn, Premier Inn Edinburgh Park, Channings Hotel, Robert Burns Hotel, Park View House Hotel, Park View House Hotel, Ibis Budget Edinburgh Park, Angels Share Hotel, George Hotel, Crowne Plaza - The Roxburghe +48.8832844 2.3022074 +1 +49.4129429 8.7045098, 49.4185873 8.7563730, 49.4171886 8.7613146, 49.4078352 8.6858842, 49.4079762 8.6870498, 49.4061197 8.6920317, 49.4058917 8.6902904, 49.4046222 8.6868381, 49.4032452 8.6845637, 49.3783665 8.6932651, 49.4146832 8.6923348, 49.4144086 8.6920334, 49.4131784 8.7101075, 49.4074805 8.6879067, 49.4066312 8.6852959, 49.4129225 8.7239221, 49.4136373 8.6927118, 49.4112725 8.7119074, 49.4095367 8.7037082, 49.3778590 8.6930131, 49.3777697 8.6932265, 49.4169935 8.6914785, 49.4146001 8.7738410, 49.4376003 8.7518747, 49.4124368 8.7095147, 49.4127909 8.7133593, 49.4135426 8.7142038, 49.4288015 8.6872183, 49.4142986 8.6902743, 49.4136357 8.6943202, 49.4040525 8.6844956, 49.3995165 8.6879132, 49.4139051 8.6920559, 49.4162757 8.6922037, 49.4104204 8.7158634, 49.4055996 8.6889278, 49.3812968 8.6894052, 49.4139993 8.6932058, 49.4131782 8.7072377, 49.4129985 8.7075880, 49.4128971 8.7089006, 49.4121728 8.7080504, 49.4123763 8.7095125, 49.4127246 8.7091094, 49.4132139 8.7078103, 49.4079479 8.6956416, 49.4121887 8.7014037, 49.4119811 8.7001029, 49.4118690 8.6989413, 49.4130878 8.7091392, 49.4131986 8.7088233, 49.4007776 8.6911061, 49.4035568 8.6922425, 49.4058460 8.6924951, 49.4076624 8.6922255, 49.4083867 8.6927384, 49.4055314 8.6924048, 49.4014846 8.6914932, 49.4119138 8.7090833, 49.4119011 8.7089353, 49.4115665 8.7029371, 49.4115772 8.7046048, 49.4117134 8.7084690, 49.4000859 8.6904108, 49.3997565 8.6902626, 49.4091521 8.6979357, 49.3995142 8.6850002, 49.4092258 8.7140567, 49.4070439 8.6949350, 49.4117441 8.7092576, 49.3742086 8.7031163, 49.4110740 8.7008373, 49.4114705 8.7022980, 49.4115939 8.7046894, 49.4116506 8.7051386, 49.4119604 8.7038095, 49.4118295 8.7066501, 49.4116479 8.7066124, 49.4117726 8.7067669, 49.4117492 8.7058025, 49.4117230 8.7087903, 49.4122865 8.7059453, 49.4124399 8.7105960, 49.4111189 8.7110358, 49.4131432 8.7133745, 49.4062164 8.6906512, 49.4041847 8.6844762, 49.4061045 8.6919006, 49.4129103 8.7014032, 49.4106934 8.7057683, 49.4003850 8.6920257, 49.4247718 8.6874951, 49.4203724 8.7396448, 49.4087049 8.7054045, 49.4136428 8.6936066, 49.4130575 8.7096585, 49.4115837 8.7106378, 49.3738871 8.7039058, 49.4114155 8.7034039, 49.4079188 8.6896894, 49.4082939 8.6917604, 49.4179298 8.7611063, 49.4132974 8.7097572, 49.4125123 8.7110100, 49.4071802 8.6893369, 49.4078499 8.6884637, 49.4181473 8.7565975, 49.4104061 8.7157086, 49.4108151 8.7149178, 49.4094481 8.7011221, 49.3896229 8.6900545, 49.3790377 8.6919226, 49.3786163 8.6868257, 49.3810024 8.6888615, 49.3799295 8.6843446, 49.3727648 8.7034774, 49.3744103 8.7047986, 49.4118680 8.7106616, 49.4085554 8.6900358, 49.3787743 8.6924168, 49.3654480 8.6869739, 49.3865134 8.7038130, 49.3796123 8.6875344, 49.4282302 8.6874448, 49.4255887 8.6891453, 49.4254663 8.6892002, 49.4284964 8.6877953, 49.4280495 8.6869299, 49.4298363 8.6853708, 49.4235631 8.6886029, 49.4139598 8.6937014, 49.4217923 8.7056451, 49.4384096 8.6837127, 49.3887612 8.6898215, 49.4143279 8.6877116, 49.4145768 8.6900311, 49.4114477 8.7117426, 49.4179324 8.7578275, 49.4447844 8.7558449, 49.4134141 8.7156909, 49.4127437 8.7131641, 49.4278544 8.6884082 +Regard de la Roquette, L'enceinte de Philippe Auguste, Cavea des Arènes de Lutèce +55.9359156 -3.2099930 +49.4276763 8.6857958, 49.4038333 8.6771587, 49.4171595 8.6617457, 49.4147558 8.6660779, 49.4134202 8.6738393, 49.4192295 8.7567625, 49.4082107 8.6921228, 49.4091698 8.6936091, 49.4041276 8.6763300, 49.4172710 8.6921830, 49.4124311 8.7120085, 49.3804963 8.6875192, 49.4031182 8.6470339, 49.3989298 8.6889417, 49.4107889 8.7060227, 49.4065233 8.6910827, 49.4013623 8.6726870, 49.4089481 8.7124297, 49.4121807 8.6993722, 49.3656248 8.6889494 +Ibis +4 +yes +Fahrschule Formel 1 and 06221 834117, Fahrschule Lechner, Fahrschule Gölz and 0177/310 650 4, Fahrschule Jung +no +320 +stadtmobil, Stadtmobil, stadtmobil Rhein-Neckar, Stadtmobil Rhein-Neckar, Stadtmobil Rhein-Neckar AG +48.8628907 2.3351275, 48.8699382 2.3403209, 48.8697525 2.3517557, 48.8728847 2.2989591, 48.8732083 2.2979398, 48.8606768 2.3486445, 48.8728311 2.3429546, 48.8759449 2.3241482, 48.8612868 2.3461069, 48.8804310 2.3540947, 48.8801870 2.3552631, 48.8738880 2.3330270, 48.8613752 2.3532868 +yes +8 +16.431036060698442 +Musée de l'Armée, Parc des Expositions de Paris - Porte de Versailles, Hôtel Montpensier, Musée national des Arts et Métiers, Hôtel Ibis Paris Avenue d'Italie, Cité des Sciences et de l'Industrie, Le Grand Hôtel Intercontinental, Cité des Enfants, Hôtel deVillas, Citadines Place d'Italie, Hôtel Kyriad, Novotel Paris Bercy, Hôtel Ibis Styles Paris-Bercy, Mercure, Hôtel Marriott, Musée du Petit Palais, Hôtel de la Trémoille, Hôtel Le Walt, Hôtel Le Monna Lisa, Hôtel Pullman Paris Bercy, Holliday Inn, Musée de la Poste, galerie-musée Baccarat, Salle des collections, Jules Cesar, Hôtel Le Derby Alma, Choco-Story - Le musée gourmand du chocolat, Le Meurice, Musée de la Marine, Franprix, AVALON HOTEL, Hôtellerie Paris Saint-Honoré, Ibis Paris Brancion parc des expositions, Oops hostel, Hôtel ibis, Hôtel Belambra Magendie (Touring Hotel), Holliday Inn Garden Court, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin, Musée national d'art moderne, Auberge de jeunesse Yves Robert, Carrefour Numérique, Buste de Marc Seguin, Mercure et la Musique, L'Agriculture et l'Industrie, Beauséjour Montmartre, Hôtel Paris Le Marquis Eiffel, IBIS STYLES PARIS PIGALLE MONTMARTRE HOTEL, IBIS STYLES PARIS PIGALLE MONTMARTRE HOTEL, Grille du Coq, Tour Eiffel, Tour Montparnasse, Panthéon, Musée du quai Branly, Hôtel Pullman Montparnasse, Galeries de Paléontologie et d'Anatomie comparée, Institut du Monde Arabe, FIAP, Jeu de Paume, Musée de l'Orangerie, Centre Pompidou, Grand Palais, Pavillon de l'Arsenal, Musée d'Orsay, IBIS, Ibis, Musée Cernuschi, Musée Rodin, Musée Jacquemart-André, Mercure Blanqui Place d'Italie, Ibis Styles Tolbiac Bibliothèque, Fondation Cartier, Marriott Rive Gauche, Musée Bourdelle, Grande Galerie de l'Évolution, Hôtel Méridien, Manufacture des Gobelins, Cavea des Arènes de Lutèce, Cathédrale Notre-Dame de Paris, Hôtel Le Tourville, Musée Galliera, Musée Carnavalet, Le Louvre and 48.8560795 2.3115715, 48.8318676 2.2884097, 48.8643625 2.3363084, 48.8660977 2.3554138, 48.8301361 2.3564885, 48.8957518 2.3879761, 48.8706550 2.3303465, 48.8957352 2.3886935, 48.8400155 2.3612991, 48.8305203 2.3549865, 48.8351933 2.3876342, 48.8388012 2.3804572, 48.8384022 2.3811331, 48.8444405 2.3728366, 48.8710747 2.3050358, 48.8660456 2.3145051, 48.8668308 2.3028826, 48.8547458 2.3065559, 48.8715217 2.3076937, 48.8318013 2.3866661, 48.8385581 2.3228175, 48.8414574 2.3172246, 48.8677629 2.2935696, 48.8842887 2.2891352, 48.8625016 2.3453019, 48.8481468 2.3720124, 48.8604399 2.3007825, 48.8705899 2.3500828, 48.8652754 2.3282212, 48.8618163 2.2873421, 48.8300211 2.3348369, 48.8811174 2.3514426, 48.8727937 2.3157855, 48.8302782 2.3020187, 48.8340255 2.3533911, 48.8323889 2.3868172, 48.8340571 2.3460780, 48.8888344 2.3331457, 48.8404563 2.3198526, 48.8607161 2.3525007, 48.8886172 2.3628833, 48.8960350 2.3884154, 48.8463118 2.2767991, 48.8394220 2.2709855, 48.8626607 2.3011910, 48.8671200 2.3540478, 48.8670465 2.3537266, 48.8672803 2.3538862, 48.8836722 2.3257995, 48.8516696 2.2978180, 48.8813853 2.3373815, 48.8813853 2.3373815, 48.8684553 2.3152488, 48.8582609 2.2944990, 48.8421128 2.3219796, 48.8461888 2.3460786, 48.8609823 2.2977973, 48.8383845 2.3209532, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8305359 2.3382127, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8605119 2.3524278, 48.8661515 2.3122667, 48.8505164 2.3621847, 48.8599188 2.3265259, 48.8576463 2.3728295, 48.8920187 2.3847925, 48.8794667 2.3125380, 48.8553042 2.3158566, 48.8755169 2.3105465, 48.8301934 2.3530001, 48.8289227 2.3741564, 48.8373190 2.3319319, 48.8316304 2.3400175, 48.8432079 2.3186583, 48.8421181 2.3562419, 48.8795379 2.2855888, 48.8344502 2.3520875, 48.8450745 2.3528309, 48.8529376 2.3498716, 48.8542680 2.3078406, 48.8657061 2.2966614, 48.8576820 2.3627148, 48.8614768 2.3351679 +Fahrschule Formel 1 and 06221 834117, Fahrschule Gölz and 0177/310 650 4 +Ch. Lebourg Paris 1904 Fondu par Le Val d’Osne Paris and Statue équestre de Jeanne d'Arc, Jacques Cassard 1679 - 1740 and Monument à Jacques Cassard, Santa Anna Britannorum patrona nautis et navibus nostris semper faveas and Statue de Sainte-Anne, A Guépin ses concitoyens 1805-1873 and Statue d'Ange Guépin, Anne Duchesse de Bretagne Reine de France 1476-1514 1822-1896 and Statue d'Anne de Bretagne, Arthur III Connétable de France Duc de Bretagne 1393-1457 1822-1896 and Statue d'Arthur III, A Ecorchard et ses amis. 1809 - 1882. Directeur Créateur du Jardin des Plantes de Nantes and Statue du Docteur Écorchard, Jules Verne and Statue de Jules Verne, Nantes 24 Juin 1809 - Paris 7 janvier 1835 - Qu'importe un jour de pleurs L'avenir du génie est l'immortalité and Plaque à Élisa Mercoeur, Olivier de Clisson, connétable de France 1336-1407 1900 and Statue d'Olivier V de Clisson, Bertrand Du Guesclin connétable de France 1320 - 1380 1900 and Statue de Bertrand Du Guesclin, Général Philippe Leclerc de Hautecloque, Maréchal de France, 1902-1947. Jurez de ne déposer les armes que lorsque nos couleurs, nos belles couleurs, flotteront sur la cathédrale de Strasbourg and Statue du Général Leclerc de Hautecloque, Le 8 Février 1828 Jules Verne, romancier, précurseur des découvertes modernes est né dans cette maison. and Maison natale de Jules Verne, Charles de Gaulle 1890-1970 Le Général de Gaulle est venu officiellement à Nantes le 14 janvier 1945 remettre la Croix de la Libération décernée le 11 Novembre 1944 and Statue du Général Charles De Gaulle, Sequoia sempervirens Don du peuple américain au peuple français à l'occasion du bicentenaire de la Déclaration des Droits de l'Homme et du Citoyen et du Bill of Rights of the United States. 1789-1989 Témoignage de deux siècles d'amitié and Sequoia sempervirens, 1775-1785 À la mémoire des acadiens déportés du Canada par les anglais et réfugiés à Nantes attendant pour la plupart leur embarquementt pour la Louisiane, René Théophile-Hyacinthe LAËNNEC Né à Quimper le 17 Février 1781 Mort à Ploaré le 13 Aout 1826. A vécu dans cette maison au foyer de son oncle Guillaume LAËNNEC Recteur de l'Ecole de Médecine de NANTES Du 15 Mai 1788 au 24 JUIN 1793. [...] and Maison de René Laënnec, Serge Danot 1931-1990 LE MANÈGE ENCHANTÉ and Serge Danot, ARMEL DE BLOCQUEL DE CROIX Baron de WISMES 1922-2009 and Armel de Wismes, CI GIT VENERABLE PRETRE PIERRE RENE REVEILLE DE BEAUREGARD SUCCESSIVEMENT VICAIRE DE SAINT DENIS CURE DE Psse DE LIEGE DE CELLE DE Ste CROIX DE CETTE VILLE, ET ENFIN VICAIRE GENERAL DU DIOCESE. IL TERMINA SA CARRIERE PLEINE DE BONNES OEUVRES ... and Pierre-René Réveillé de Beauregard, Familles Colombel et Monnier du Pavillon and Georges et Évariste Colombel, Ange Guépin La démocratie nantaise 1874 and Ange Guépin, Alan Barvek da dad ar vro breiz ha naoned adsavet 937 1937 - Ici en 937 ALAIN BARBEORTE DÉFIT LES NORMANDS ET DÉLIVRA LA BRETAGNE and Plaque à Alain Barbetorte, La République Française en hommage aux Victimes des Persécutions Racistes et Antisémites et des Crimes contre l'Humanité commis sous l'autorité de fait dite "Gouvernement de l'État Français" 1940-1944 N'oublions jamais and Plaque aux victimes des persécutions racistes et antisémites, Au cours de l'été 1955 un dur conflit dans la métallurgie et le bâtiment engage le mouvement ouvrier nantais. Ici, le 19 AOÛT, JEAN RIGOLLET est mortellement blessé lors d'affrontements violents entre forces de l'ordre et grévistes. [...] and Plaque à Jean Rigollet, ICI DE PAR LA VOLONTE D'ANNE DUCHESSE DE BRETAGNE REINE DE FRANCE FUT EDIFIE LE PALAIS DE LA CHAMBRE DES COMPTES DE BRETAGNE and Commémoration de l'installation de la Cour des Comptes, ICI HABITAIT LE GÉNÉRAL DE DIVISION DE TORQUAT DE LA COULERIE 1873 - 1944 Grand Officier de la Légion d'Honneur (Ancien Comt du 18e Bon de Chasseurs) Fusillé par les Allemands le 30 juillet 1944 à KERFANY près QUIMPERLÉ [...] and Maison du Général de Torquat de la Coulerie, Les Anciens de la 2eme Division Blindée de Loire Atlantique A la mémoire de leur chef le Général LECLERC de HAUTECLOQUE Maréchal de France 1902 - 1947 Nantes 10.10.1987 and Plaque au Général Leclerc, ICI EXISTAIT VN JEV DE PAVME DÉTRVIT EN 1836, DANS LEQVEL J.B.POQVELIN DIT MOLIERE A JOVE LA COMEDIE EN 1648 and Plaque à Molière, 1877 - 1977 EN HOMMAGE AUX HOMMES ET AUX FEMMES QUI ONT LUTTE POUR UNE ECOLE PUBLIQUE ET LAIQUE - LA VILLE DE NANTES 26 NOVEMBRE 1977 and Plaque du centennaire de l'école, 22/10/1847 12/02/1917 and Charles Brunelière, illisible and François-Marie Bonaventure du fou, Ci-gît Legoff de Fontainegal. OTIUS MORI QUA OEDARI and Legoff de Fontainegal, 25/04/1886 - 11/04/1911 and René Cornulier-Lucinière, décédé le 3 octobre 1892 dans sa 75ème année. La démocratie nantaise. and Victor Coudrain, Ici vécut le compositeur Paul LADMIRAULT 1877-1944 Né à NANTES le 8 décembre 1877 il fit ses études musicales à NANTES puis à PARIS dans la classe de Gabriel FAURÉ où il obtint les plus hautes distinctions D'écriture classique sa musique s'inspire [...] and Maison de Paul Ladmirault, Blois 1871 - Boshof 1900 - Au colonel Villebois Mareuil né à Nantes le 22 mars 1847 mort au Champ d'honneur. À Boshof Transvaal le 5 avril 1900. and Statue de Georges de Villebois-Mareuil, Général Mellinet 1798 - 1894 Leblanc Barbedienne Fondeur Paris Marqueste 1897 and Statue du Général Mellinet, La garde meurt et ne se rend pas. A Cambronne and Statue du Général Cambronne, À D'HAVELOOSE LE BIENFAITEUR DES PAUVRES - LA BIENFAISANCE ET LA CHARITÉ LUI RENDENT HOMMAGE and Stèle d'Haveloose, À l'Armée - Honneur et Patrie and Ossuaire militaire +yes +Forrest Road +33 +REpower, Vestas, Enercon, NEG Micon, Nordex +100 +51.0314650 13.7060792, 50.9984910 13.8180107, 51.0477367 13.7924112, 51.0813022 13.6914169, 51.0761832 13.6854700, 51.0531342 13.7070918, 51.0301256 13.7603362, 51.0157764 13.7682166, 51.0484348 13.7907288, 51.0026862 13.7951099, 51.0129678 13.7811896, 51.0133169 13.7545602, 51.0298689 13.6478846, 51.0742642 13.6986054, 51.0739544 13.7586196, 51.0306245 13.7016945, 51.0117598 13.7985344, 50.9917185 13.7973870, 50.9917062 13.7974603, 51.0473259 13.8090954, 51.0308817 13.7016925, 51.0306353 13.7016025, 51.0307674 13.7015445, 51.0029038 13.8026801, 51.0301067 13.7605035, 51.0306483 13.7017773, 51.0307733 13.7018143, 51.0477367 13.7924112, 51.0301131 13.7604231 +Theodor Tucher +RATP, RATP +yes +yes +recreation ground, retail, grass, construction, cemetery, school, military, commercial, forest, village green, basin, allotments, reservoir, railway, industrial, meadow, residential, brownfield, orchard, vineyard, greenhouse horticulture, greenfield, gravel, plants, flowers, traffic island +193 +0 +507 +0 +48.8373758 2.3176784, 48.8671035 2.3471909, 48.8379602 2.2583959, 48.8410120 2.3066005, 48.8570028 2.3007925, 48.8579137 2.3005660, 48.8782645 2.3740462, 48.8774801 2.3700505, 48.8318670 2.3144693, 48.8689224 2.3335350, 48.8395609 2.3021892, 48.8375207 2.2967192, 48.8375266 2.2960585, 48.8276825 2.3271004, 48.8501002 2.3428094, 48.8327092 2.3625620, 48.8304784 2.3562767, 48.8334332 2.3545467, 48.8326050 2.3544168, 48.8530182 2.4058632, 48.8554073 2.3268543, 48.8697474 2.3709540, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8703950 2.3709651, 48.8778843 2.3510144, 48.8529470 2.3434116, 48.8535279 2.3681762, 48.8488712 2.2873446, 48.8189960 2.3382666, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8521024 2.4034631, 48.8651078 2.3744344, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8695951 2.3715600, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8653000 2.3752307, 48.8673441 2.3627982, 48.8651925 2.3758399, 48.8629074 2.3860380, 48.8668485 2.3837377, 48.8672012 2.3825153, 48.8645121 2.3683814, 48.8318807 2.3568124, 48.8722818 2.3462050, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8501765 2.3792170, 48.8507286 2.3779068, 48.8509545 2.3780414, 48.8502726 2.3811628, 48.8330519 2.3316747, 48.8732053 2.3585526, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8367776 2.2983375, 48.8357338 2.3020633, 48.8605667 2.3751425, 48.8637354 2.3705262, 48.8642296 2.2884865, 48.8644747 2.2879509, 48.8645963 2.2880351, 48.8649321 2.2883111, 48.8654525 2.2886812, 48.8667948 2.2896169, 48.8677281 2.2909720, 48.8369085 2.4021711, 48.8370521 2.4018326, 48.8396803 2.3945209, 48.8400366 2.3946968, 48.8397862 2.3968956, 48.8368227 2.4037506, 48.8368603 2.3917906, 48.8393074 2.3970077, 48.8743920 2.3574266, 48.8482696 2.3715140, 48.8470790 2.3740473, 48.8469009 2.3721664, 48.8479197 2.3716692, 48.8461048 2.3740873, 48.8477030 2.3740290, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8457782 2.3745532, 48.8574421 2.3793069, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8717354 2.3404728, 48.8344235 2.3052236, 48.8750824 2.3241658, 48.8831483 2.3273794, 48.8563547 2.3050003, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8546797 2.3051724, 48.8870858 2.3139323, 48.8896917 2.3219420, 48.8839932 2.3218563, 48.8830031 2.2877361, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8374001 2.2957684, 48.8402359 2.3617231, 48.8648840 2.4053930, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8806821 2.3741833, 48.8789432 2.3031398, 48.8815632 2.3004421, 48.8844267 2.2977130, 48.8855270 2.2969790, 48.8849249 2.2981974, 48.8846750 2.2981530, 48.8773919 2.3395256, 48.8737979 2.3160522, 48.8384262 2.2988961, 48.8840917 2.3224995, 48.8379252 2.2975063, 48.8384650 2.2984232, 48.8386614 2.2988499, 48.8388963 2.2993041, 48.8807958 2.3003045, 48.8423511 2.2814155, 48.8591202 2.3475207, 48.8529207 2.3436323, 48.8386703 2.2822723, 48.8633059 2.3340632, 48.8647135 2.3426384, 48.8648693 2.3427189, 48.8630681 2.3412176, 48.8634071 2.3418915, 48.8660175 2.3407258, 48.8673651 2.3318225, 48.8656306 2.3303026, 48.8742798 2.3760564, 48.8690399 2.3387540, 48.8697491 2.3403685, 48.8695691 2.3402609, 48.8686652 2.3421761, 48.8689050 2.3327814, 48.8674306 2.3462505, 48.8578234 2.2746494, 48.8583112 2.2754219, 48.8660916 2.3526753, 48.8645295 2.3512403, 48.8685043 2.3498910, 48.8641253 2.3698504, 48.8518531 2.3567202, 48.8612900 2.3499825, 48.8612937 2.3537009, 48.8560141 2.3571788, 48.8595500 2.3565735, 48.8549508 2.3624309, 48.8552557 2.3616146, 48.8538346 2.3644665, 48.8543409 2.3691660, 48.8650455 2.3535907, 48.8669898 2.3620443, 48.8667188 2.3611850, 48.8662353 2.3610229, 48.8518893 2.3417124, 48.8652895 2.3605043, 48.8633001 2.3620149, 48.8632099 2.3622012, 48.8626516 2.3633443, 48.8621296 2.3644112, 48.8614452 2.3647591, 48.8630803 2.3510377, 48.8421221 2.3217245, 48.8592743 2.3796462, 48.8521680 2.3314230, 48.8447287 2.3244719, 48.8428059 2.3239714, 48.8809308 2.3651881, 48.8812888 2.3651008, 48.8808303 2.3650793, 48.8883530 2.3917794, 48.8489183 2.3392705, 48.8506265 2.3304803, 48.8485082 2.3285161, 48.8508389 2.3266905, 48.8568213 2.3685042, 48.8427653 2.3300120, 48.8420145 2.3302544, 48.8904247 2.3760144, 48.8440612 2.3225950, 48.8442156 2.3244262, 48.8473522 2.3183754, 48.8296558 2.3789838, 48.8711649 2.3221410, 48.8726629 2.3106385, 48.8732419 2.3115596, 48.8744495 2.3205466, 48.8752230 2.3264851, 48.8740876 2.3267342, 48.8778017 2.3225743, 48.8797413 2.3271672, 48.8830756 2.3269207, 48.8833400 2.3254009, 48.8813674 2.3151235, 48.8810818 2.3162341, 48.8786152 2.3156839, 48.8767711 2.3179268, 48.8778569 2.3059734, 48.8794539 2.3032046, 48.8749659 2.3041948, 48.8745760 2.3048788, 48.8687291 2.3014159, 48.8664956 2.3016793, 48.8677909 2.2995151, 48.8686254 2.2992361, 48.8725861 2.3019868, 48.8784635 2.2987871, 48.8698436 2.3061758, 48.8382008 2.3505003, 48.8378958 2.3507127, 48.8377870 2.3508117, 48.8378570 2.3515198, 48.8376483 2.3516414, 48.8727273 2.3786615, 48.8284669 2.3791072, 48.8287974 2.3821578, 48.8293821 2.3782449, 48.8444634 2.4058653, 48.8806637 2.3648615, 48.8822323 2.3662711, 48.8720243 2.2934411, 48.8684366 2.2915095, 48.8714262 2.2899337, 48.8689351 2.2833107, 48.8696967 2.2845776, 48.8694565 2.2845446, 48.8700723 2.2857876, 48.8690091 2.2852941, 48.8691634 2.2851996, 48.8749903 2.2860127, 48.8759692 2.2834989, 48.8748643 2.2834193, 48.8690546 2.2835943, 48.8655496 2.2837039, 48.8657006 2.2836110, 48.8667831 2.2790363, 48.8459991 2.3734585, 48.8664481 2.2772490, 48.8659840 2.2742050, 48.8633053 2.2742098, 48.8624073 2.2760147, 48.8593999 2.2774250, 48.8583220 2.2745520, 48.8584493 2.2748476, 48.8580404 2.2776736, 48.8411414 2.3136506, 48.8533487 2.3667989, 48.8760516 2.3450644, 48.8557164 2.2701238, 48.8417733 2.3185097, 48.8559683 2.2711042, 48.8369684 2.2533009, 48.8394820 2.3097854, 48.8502874 2.2762982, 48.8949842 2.3821818, 48.8781855 2.2878593, 48.8362844 2.3061932, 48.8535026 2.2653555, 48.8846806 2.3623964, 48.8797648 2.3567638, 48.8491712 2.2665706, 48.8810016 2.3640265, 48.8233119 2.3260789, 48.8475928 2.2669653, 48.8484138 2.2647127, 48.8478601 2.2637874, 48.8485576 2.2650178, 48.8454405 2.2582420, 48.8485516 2.2751179, 48.8606979 2.3554288, 48.8605259 2.3552067, 48.8765046 2.3790929, 48.8415500 2.2669376, 48.8717642 2.3765169, 48.8399984 2.2627388, 48.8307191 2.3193023, 48.8304006 2.3192272, 48.8824125 2.3814642, 48.8758150 2.2867065, 48.8505969 2.3487384, 48.8465904 2.3434584, 48.8481836 2.3416278, 48.8504365 2.3250405, 48.8439434 2.3420437, 48.8461211 2.3404463, 48.8388735 2.3499896, 48.8430873 2.3523909, 48.8433167 2.3520295, 48.8446194 2.3521389, 48.8387237 2.3571215, 48.8480122 2.2605847, 48.8555518 2.3602965, 48.8585424 2.3554995, 48.8589930 2.3030851, 48.8661318 2.3536080, 48.8417910 2.3293787, 48.8474457 2.3180776, 48.8478498 2.3111276, 48.8685310 2.3627215, 48.8645339 2.3458426, 48.8664790 2.3612544, 48.8671863 2.3624934, 48.8452289 2.2582589, 48.8809021 2.3403319, 48.8471366 2.3867728, 48.8382469 2.3985623, 48.8356227 2.4057366, 48.8417549 2.3864187, 48.8455537 2.3108109, 48.8450445 2.3104567, 48.8474933 2.3107909, 48.8394375 2.2918836, 48.8514163 2.3135568, 48.8794747 2.3547243, 48.8426729 2.3023971, 48.8431492 2.3040014, 48.8431097 2.3128917, 48.8673662 2.3064825, 48.8592377 2.3714158, 48.8256887 2.3653770, 48.8695383 2.3950747, 48.8263809 2.3414522, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8278525 2.3262538, 48.8953387 2.3825799, 48.8388287 2.2816271, 48.8367957 2.3917944, 48.8397112 2.3025357, 48.8396385 2.3018330, 48.8234162 2.3578095, 48.8223317 2.3587958, 48.8230555 2.3585643, 48.8283319 2.3249564, 48.8500696 2.2886536, 48.8454338 2.3886185, 48.8560015 2.3425743, 48.8544203 2.3257043, 48.8503640 2.3847349, 48.8446673 2.3830913, 48.8488537 2.3789042, 48.8459220 2.4058540, 48.8588998 2.2749555, 48.8585344 2.2751198, 48.8768988 2.3387135, 48.8383753 2.3982048, 48.8620598 2.2758197, 48.8632226 2.2764809, 48.8643683 2.2780086, 48.8682336 2.2816544, 48.8683009 2.2818137, 48.8636110 2.3699568, 48.8716652 2.3369422, 48.8724813 2.3352798, 48.8768502 2.3324723, 48.8715356 2.3340932, 48.8707193 2.3495070, 48.8761304 2.3564812, 48.8754523 2.3562375, 48.8834234 2.3734013, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8751634 2.3407635, 48.8696664 2.3354448, 48.8640573 2.3358570, 48.8580367 2.3228472, 48.8570504 2.3810504, 48.8468273 2.3109956, 48.8727906 2.3327950, 48.8540420 2.4102463, 48.8631926 2.3875837, 48.8465399 2.3518782, 48.8371620 2.2788430, 48.8256754 2.3500062, 48.8260463 2.3458083, 48.8275711 2.3258960, 48.8274068 2.3262715, 48.8369096 2.3712028, 48.8312779 2.3775666, 48.8731847 2.3591245, 48.8902005 2.3757322, 48.8390681 2.2569423, 48.8706510 2.3613960, 48.8549374 2.3061290, 48.8433669 2.3494429, 48.8709866 2.3363950, 48.8570621 2.3817062, 48.8372502 2.3914765, 48.8790699 2.3540350, 48.8848997 2.3377794, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8481085 2.4036760, 48.8509779 2.2927923, 48.8550471 2.2699500, 48.8418785 2.2997087, 48.8442816 2.3244689, 48.8482530 2.4016764, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8391384 2.2822010, 48.8854990 2.3103821, 48.8276838 2.3319307, 48.8701182 2.3328493, 48.8430494 2.2949889, 48.8416006 2.3224232, 48.8337153 2.3863338, 48.8430431 2.3223965, 48.8850396 2.3205857, 48.8860872 2.3177587, 48.8468610 2.3536998, 48.8201698 2.3641255, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8804253 2.3287401, 48.8743336 2.3345374, 48.8301847 2.3456951, 48.8425418 2.2920002, 48.8340558 2.2901416, 48.8330244 2.2891177, 48.8334343 2.2890580, 48.8642191 2.3423423, 48.8638673 2.3421689, 48.8815429 2.2914706, 48.8838668 2.3274744, 48.8889565 2.3226941, 48.8937935 2.3362303, 48.8915892 2.3347229, 48.8975742 2.3374320, 48.8959308 2.3457254, 48.8906192 2.3344868, 48.8929700 2.3402831, 48.8931959 2.3273644, 48.8938006 2.3360065, 48.8928237 2.3276058, 48.8927037 2.3270855, 48.8950865 2.3279515, 48.8927798 2.3416901, 48.8357045 2.2898603, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8507185 2.3452276, 48.8506024 2.2921760, 48.8434041 2.2832488, 48.8441583 2.2814225, 48.8601040 2.2800860, 48.8525391 2.4047416, 48.8525041 2.4054710, 48.8358361 2.3959436, 48.8620103 2.3504016, 48.8555902 2.2705124, 48.8709674 2.2927276, 48.8701195 2.2926560, 48.8607663 2.2829855, 48.8742509 2.3267610, 48.8674435 2.3066185, 48.8760737 2.3314470, 48.8776629 2.3503063, 48.8607520 2.3551307, 48.8599332 2.3492544, 48.8616973 2.3497749, 48.8314530 2.3131078, 48.8366420 2.3235880, 48.8798460 2.2882480, 48.8706907 2.3018397, 48.8711468 2.3021857, 48.8442760 2.3236880, 48.8443641 2.3231615, 48.8808570 2.3744052, 48.8816465 2.3719957, 48.8810026 2.3740798, 48.8809708 2.3734937, 48.8808782 2.3736050, 48.8412683 2.3182655, 48.8750168 2.2842019, 48.8271902 2.3689921, 48.8274443 2.3054531, 48.8456435 2.3883893, 48.8467978 2.3874491, 48.8463910 2.3878730, 48.8240842 2.3636888, 48.8226659 2.3580445, 48.8642610 2.2877420, 48.8259715 2.3507845, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8260781 2.3450782, 48.8257972 2.3453018, 48.8690375 2.4018799, 48.8681245 2.4017154, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8709768 2.4035156, 48.8718932 2.4046138, 48.8711831 2.4041560, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8650286 2.3978764, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8661206 2.3993734, 48.8647416 2.4000331, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8646156 2.3980291, 48.8385802 2.3568194, 48.8575448 2.3507955, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8260853 2.3604941, 48.8265662 2.3114209, 48.8266741 2.3089333, 48.8276987 2.3717961, 48.8348018 2.2835149, 48.8898740 2.3601766, 48.8289555 2.3008177, 48.8309472 2.3666202, 48.8900866 2.3603615, 48.8425217 2.2605998, 48.8399979 2.2631418, 48.8393773 2.2626930, 48.8445716 2.2773781, 48.8457722 2.3952172, 48.8423827 2.2779816, 48.8315085 2.3570011, 48.8393433 2.2612518, 48.8382522 2.2590990, 48.8294497 2.3691497, 48.8911754 2.3596165, 48.8912089 2.3601196, 48.8556190 2.3071441, 48.8267862 2.3639559, 48.8275456 2.3565272, 48.8292086 2.3568667, 48.8895540 2.3596572, 48.8601780 2.3784708, 48.8918470 2.3497087, 48.8394408 2.3901626, 48.8634536 2.3668626, 48.8621628 2.3647719, 48.8643458 2.3599234, 48.8304530 2.3781049, 48.8561136 2.3566520, 48.8740405 2.3857795, 48.8749608 2.3892009, 48.8739345 2.3878755, 48.8794344 2.3881410, 48.8536688 2.3651544, 48.8801930 2.3906171, 48.8750094 2.3896199, 48.8755856 2.3816591, 48.8358783 2.3528351, 48.8737724 2.3861774, 48.8469948 2.3720795, 48.8741080 2.3859246, 48.8448082 2.4018695, 48.8831104 2.3242250, 48.8776217 2.3939651, 48.8776968 2.3952330, 48.8775224 2.3930979, 48.8577037 2.3677906, 48.8547650 2.3703199, 48.8522552 2.3385407, 48.8419262 2.3651705, 48.8370898 2.3512464, 48.8439360 2.3521362, 48.8466920 2.2861937, 48.8464464 2.2864898, 48.8462140 2.2863069, 48.8471256 2.2857626, 48.8467862 2.2850085, 48.8687439 2.3725567, 48.8737876 2.3254797, 48.8757911 2.3276502, 48.8853087 2.2914432, 48.8666300 2.3441053, 48.8751073 2.3063372, 48.8473180 2.3512660, 48.8761128 2.3302242, 48.8760136 2.3310108, 48.8628914 2.2767409, 48.8836091 2.3810186, 48.8326928 2.3011680, 48.8434103 2.2931530, 48.8367477 2.3065081, 48.8396815 2.2927792, 48.8364615 2.3516931, 48.8759800 2.3435799, 48.8602282 2.3444320, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8442882 2.3080071, 48.8528372 2.2900682, 48.8524061 2.2912571, 48.8529003 2.2907372, 48.8331060 2.3547764, 48.8275383 2.3571726, 48.8504014 2.2929658, 48.8781331 2.2973879, 48.8466594 2.4106749, 48.8474387 2.3948976, 48.8475088 2.4104704, 48.8293214 2.3692986, 48.8558171 2.3591925, 48.8310392 2.3425080, 48.8843398 2.3684081, 48.8295478 2.3565241, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8605440 2.3490975, 48.8235069 2.3253377, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8314166 2.3251141, 48.8747610 2.3399353, 48.8610529 2.3020976, 48.8742737 2.3172451, 48.8551235 2.3603692, 48.8788807 2.2940470, 48.8790502 2.2932877, 48.8787213 2.2930870, 48.8335336 2.4018517, 48.8344090 2.3538607, 48.8329666 2.3548590, 48.8860790 2.2927720, 48.8862920 2.2922300, 48.8860610 2.2916910, 48.8524475 2.3894597, 48.8815650 2.2950420, 48.8816640 2.2951850, 48.8698720 2.3253770, 48.8426473 2.3496219, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8767675 2.3414635, 48.8801010 2.2887410, 48.8518237 2.3263371, 48.8518410 2.3270180, 48.8520482 2.3269387, 48.8896590 2.3042630, 48.8459597 2.3544163, 48.8523174 2.3400938, 48.8370786 2.3520317, 48.8480411 2.3409988, 48.8487519 2.3414295, 48.8763180 2.3309180, 48.8260443 2.3266660, 48.8255907 2.3265438, 48.8570274 2.3983184, 48.8851905 2.3788177, 48.8694492 2.3546663, 48.8803860 2.3748678, 48.8843962 2.3388368, 48.8841050 2.3049810, 48.8840570 2.3045230, 48.8835710 2.3045840, 48.8837420 2.3043460, 48.8493470 2.3529650, 48.8747781 2.3879795, 48.8755246 2.3943562, 48.8315966 2.3304662, 48.8828185 2.3827206, 48.8753559 2.3919799, 48.8752306 2.3934592, 48.8818980 2.3374100, 48.8497330 2.3457635, 48.8491590 2.3498700, 48.8485190 2.3493440, 48.8401997 2.3954293, 48.8448871 2.2941778, 48.8452118 2.2941040, 48.8454696 2.2946866, 48.8651944 2.3554408, 48.8650138 2.3556963, 48.8895142 2.3498344, 48.8702024 2.2869885, 48.8578346 2.3793123, 48.8711617 2.3300722, 48.8403727 2.3337448, 48.8349994 2.3046409, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8313376 2.3296145, 48.8619859 2.3647571, 48.8664714 2.3673929, 48.8625029 2.3716831, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8455488 2.4110597, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8512137 2.3425994, 48.8648399 2.3394096, 48.8778905 2.3549883, 48.8488552 2.3942325, 48.8489972 2.3942887, 48.8505758 2.3948498, 48.8494165 2.3948501, 48.8726368 2.3332498, 48.8733021 2.3461422, 48.8717746 2.2995211, 48.8643045 2.3993897, 48.8449899 2.4047731, 48.8347313 2.3458453, 48.8351835 2.3533874, 48.8388397 2.3227192, 48.8791073 2.2907296, 48.8766198 2.2875734, 48.8406761 2.3933858, 48.8359858 2.3961013, 48.8680414 2.3235560 +9 +yes +fr:Pech de Bugarach, ca:Carlit, ca:Puigmal, ca:Pic d'Eina, ca:Pic de Noufonts, ca:Puigpedrós, ca:Tosseta de l'Esquella, ca:Pic de Finestrelles, ca:Puig Peric, ca:Puig de Tres Vents, ca:Pic de Bastiments, ca:Pic de la Dona, ca:Puig de Coma Ermada (Setcases), ca:Puig d'Ombriaga, ca:Pic de l'Infern, fr:Signal de Mailhebiau, ca:Comanegra, ca:Puig de la Llibertat +547 +4 +1 +Dicker Turm +7 +730 +Le Fournil de Lourmel, La Boul'Ange, La Boulenge d'Antan, Boulangerie - Pâtisserie Méri, Les Sourires de Dante, Du Pain et des Idées, La Gerbe d'Or, Boulangerie Hélène et Bernard Dorange, Les compagnons de Voltaire, Guesdon, Aux délices de Saint-Antoine, Jacques Bazin, Aux Délices de Manon, Céline et Étienne, Vitry d'Aubigny, Boulangerie Thierry Renard, Moisan, Le Grenier à Pain, Nature de pain, Le chant du pain, A. et H. Jourdan, Le Pain d'Auguste, Boulangerie Topaze, Boulanger Pâtissier Julien, Chez Paco, La baguette des Pyrenees, Aux Délices de Sèvres, Boulangerie Patisserie, Boulangerie Pâtisserie des Deux ponts, Gwen Choc, Boulangerie Julien, Boulangerie Pâtisserie Gaumer, Boulangerie Malineau, Boulangerie Kahn, Boulangerie Blin, Boulangerie Patrick et Christine, Boulanger patissier, Boulanger Patissier, Le Moulin de la Vierge, L'Univers du Pain, Bread & Roses, Au Saint-Honoré, Boulangerie "Les Caprices de Charlotte", Le Boulanger des Invalides, Boulangerie de l'Entr'acte, Le Boulanger de Monge, Maison Bichon, Aux Gamins de Ménilmontant, L'Epi d'Or, Boulangerie Yan Chantelle, Boulangerie Bonon, Maison Dault, La Grignotière, Le Badine de Martine, Bechu, Boulangerie Schou, Des Gâteaux et du Pain, Jossé, Boulangerie Saint-Louis, Le Fournil Du Village, Aux Sucreries de ma Mie, Le Quai du Pain, Huré Boulanger Patissier, Boulangerie Thevenin, Boulangerie Pascal & Sylvie Robin, Aux délices du palais, Boulangerie Gontier, Boulangerie Laurent Roperh, Les petits mitrons, Patiserie des Sultans, Autour du Fournil, La Tlemcenienne, Le Grenier de Félix, Paul, Boulangerie Patisserie, Le boulanger du parc, Les Délices Vauvenargues, Boulangerie, Boulangerie du Val de Grâce, Aux délices de Christine, Moisan, Blé sucré, Christian et Myckie, Patisserie de Choisy, Patisserie Saison, Arnaud DELMONTEL, La Maubeugeoise, Au Bec Sucré, Boulangerie Eric Kayser, Michel Deschamps, Leduc, Pains et Gourmandises, Les Saveurs de Charenton, Au Pain d'Autrefois, Landemaine, Boulangerie Maison Ellini, au naturel, Zerzour, Pichard, Dossemont, Moisan, La Truffe Noire, Le Saint-Georges, Les Gourmandises D'Eiffel, Eric Kayser, Paul Soulabaille, De Carvalho, Le Prestige, Au Coin de la Rue, Hissine, Boulangerie Patisserie de la Villette, Dominique Saibron, La fournée d'Augustine, Le Pain de Jacques, Au Plaisir du Pain, Boulangerie Feu de Bois, Au Levain des Martyrs, Paul, La Pompadour, La Ruche Gourmande, Aki boulanger, Boulangerie du Fauborg, Boulanger Patissier, Boulangerie Magnelli, La Parisienne, Maison Kayser, Boulangerie des Epinettes, Aux Epis d'Or, Boulangerie F. Comyn, Boulangerie Pâtisserie L'Escale, Boulanger Ounissi, Christophe & Muriel, Le petit creux, Cousin, Le Notre, Stohrer, Le fournil d'Andrézieux, Friends, Boulangerie Jean-Olivier Rondot, L'impérial, Boulangerie Ravignan, Coquelicot, Le 41, Boulangerie Fantasiiia, Au Levain de Pyrénées, A la baguette de Mozart, Boulangerie, Au Duc de la Chapelle, L'ami du pain, La Boulange du 12e, Le pain d'antan, Boulangerie, Sadaharu Aoki, Maison Champin, La Gourmandise, La Flûte Enchantée, Midoré, La Tranche Dorée, Artisan Boulanger, Maison Lendemaine, La Gobelinoise, Boulangerie Akiko et Philippe Bruere, Paul, Lebon, Tembely, Le Fournil de Julien, Aux armes de Niel, Le Grenier à Pains, Au pain complet de Paris, La Moulinoise, Maison Legendre, Boulangerie, Delmontel, Festival des pains, Artisan boulanger, Vaudron, Les Sept Épis, Pains et Passion, Les Délices du Fournil, francesca, Boulangerie Alsacienne Benoît Maeder, Bernard Delattre, Poilane, Rouiller, La Tradition, Le Bel Épi, La Gerbe de Blé, La boulangerie des buttes Chaumont, Atelier des Pains, Paul, Fournil de Wattignies, Huré, La Chocolatine, L'Art du Pain, Paul, By Cyril Lignac, Aux delices des Lilas, Boulangerie Benoist, Boulangerie Patisserie, Le Fournil de Paris, Le pétrin alsacien, La fournée Duhesme, Robin, Au Fournil Gaité, Au Chardon d'Argent, Boulangerie des Lombards, Zazou, Le Fournil de Paris, Millies Cookies, La Boul'Ange, Le péché des gourmets, Paul, Paul, Boulangeir Pâtisserie Kellerman, Amorino, Yv Nghy, Boulangerie Patisserie SAS Penain, L'Artisan du Pain, Boulangerie Patisserie Sainte-Anne, La Crac'ante, La Gambette à Pain, Maison Hébert, Maison Kevest, Boulangerie Patisserie Sandwicherie, Le fournil du moulin, La vicomte, Bonjour Backery, Paul, Fifty Fifty, Laurent Duchêne, La Bretagne, Boulangerie Brune 77, Boulangerie L. Paulin, Le fournil de Vanves, Maison Lefaure, Le Jardin des Pains, Boulangerie Pâtisserie Yelles, Annie & Gilles Boulangerie, Aux délices de la roquette, La tradition du pain, La saveur du pain, La Huche Normande, Square de Belleville, Les jardins de Paul'ha, Le grenier à pain, Boulangerie Saint-Charles, Boulangerie Flandrin, L'Angelus, Guillaume Delcourt, Boulangerie de Mogador, Boulangerie Patisserie, Patisserie Poncet, Eric Kayser, Boulangerie Pascal Chevret, Le Grenier à Pain, Boulangerie, Le Fournil Parmentier, Les délices de la Chapelle, Boulangerie Marceaux, Aux Péchés Normands, La Baguette Sedaine, Boulangerie, Le pain d'autrefois, Rudy Père Et Fils, Boulangerie Onfroy, Boulangerie Poilâne, La Boulangerie, Boulangerie Patisserie, Midoré, Boulangerie Patisserie au 140, Au bel arôme, Boulangerie Saint-Antoine, Bernard Telhier, La flûte Gana, Colisée Gourmet, La Boulange Ve, Sud Tunisien, Artisan Boulanger, Aux Péchés Normands BIO, La Fournée d'Augustine, Le bon Panneton, Boulangerie, La République pâtissière, Au petit Versailles du Marais, Patisserie Bonjour - 你好, Au Blé d'or, Colin Régis, Gérard Mulot, Maison Guénard, Boulangerie Metayer, Artisan boulanger pâtissier, Banette, Le blé royal, Délice Pain, Le Moulin De la vierge, Golden Bread, EVA, La Boulangerie de Papa, Ciel, Aux Délices de Manon, Foulon, Brioche Dorée, Paul, Desgranges, Paul, Paul, Le Grenier à Pain, Boulangerie Patisserie, Boulangerie Patisserie, Au Plaisir du Pain, Yves Thuriès Chocolat, Au Paradis du Gourmand, Ladurée, Boulangerie Alsacienne, Les délices de taine, Aux Gourmandises d'Arago, Boulangerie Evrard, Le Boulanger de Monge, Eric Kayser, Paul, Pou, Sara Lina, La baguette, Le Moulin de la Vierge, Asselin, Mert Pâtisserie, Joséphine Bakery, Paul, Maison Morange, Les Chants de Blé, La Panetière, Paul QUAI, Mottier, Le quartier du pain, Morieux, Au royaume du pain, Boulangerie, Le Gay Choc, Mason Pradier, Pains & Friandises, La Pyramide du prince, Le Pain Au Naturel, Maison Hardel, Boulangerie Ricquer, Thevenin, Au Petit Duc, Aux Surprises, Laurent Duchêne, La caverne aux pains, L'essentiel, Le pain du faubourg, Boulangerie Estaëlle, Contini, Gosselin, Paul, Pabois, Café Pouchkine, Eric Kayser, Boulangerie Patistory, La Truffe Noire, Maison Hilaire, Aux delices d'Oceane, La flute de Meaux, L'artisan boulanger Maison Maaned, Le Fournil de Kuss, La Croquandise, La grange aux pains, Le XXV, Boulangerie Malineau, Boulangerie Patisserie, La delicieuse, Boulangerie Patisserie, Boulangerie Patisserie, Vieille France, Boulangerie Patisserie, Le fournil de Paris, Boulangerie Patisserie, Le paradis du pain, Les Fées Pâtissières, Stanz, Pralus, Le dépot de pain de l'autre Boulange, La délicieuse, Le puits d'amour, Nicolle, Boulangerie Patisserie Gregory Desfoux, Boulangerie Patisserie, Boulangerie Patisserie, Boulangerie, Eric Kayser, Éric Kayser, Boulangerie Patisserie Chocolaterie, Sazanka, Boulangerie Patisserie, Le paradis des gourmands, Gaia, La coeur des pains, Tout chaud, Le petit poucet, Paul, Paul, Les Chants de Blé, Boulangerie Patisserie Chocolatier, Antoine Artisan Boulanger Pâtissier, Le gâteau battu, Aux Délices de Sèvres, Eric Kayser, Eric Kayser, Le Pain Quotidien, Lohezic, Au levain d'antan, Mireille, Le Damier Gourmand, R Canelle, Miss Manon, L'Épi de Blé, Boulangerie Patisserie, Paul, Boulanger Patissier, Brioche Dorée, Pain à la Ligne +Darmstädter Hof, Freizeitzentrum Köpfel, ISSW Hallenbad, Schwimmbad, Planschbecken, Hallenbad Köpfel Heidelberg, Thermalbad +19 +Heidelberg Marriott Hotel +464 +49.4058676 8.6845278, 49.3755036 8.6875476, 49.4114903 8.6527163, 49.4084682 8.7011215, 49.4282350 8.6834880, 49.4080165 8.6707602, 49.3970333 8.6721539 +48.8334063 2.2896356 +Ink Shop Printing, Hobs Repro, Pace Print, Prontaprint, Minuteman Press, Digital Print Centre, Edinburgh Copy Shop, Call Print, Green Print, Events Armoury Design and print, Crescent print LTD, Paragon Print Co., Print Sponge, Leith Print & Copy and 55.9439278 -3.2183524, 55.9462494 -3.2139894, 55.9412734 -3.1810442, 55.9561282 -3.2018779, 55.9603872 -3.1815888, 55.9514798 -3.2123746, 55.9496059 -3.1832770, 55.9470259 -3.1864063, 55.9431488 -3.1799425, 55.9452540 -3.1836161, 55.9489667 -3.1843829, 55.9645940 -3.1735181, 55.9609417 -3.1806709, 55.9754249 -3.1674641 +48.8375550 2.3183632, 48.8275755 2.3065523, 48.8506951 2.3463689 +0.32565524347099412 +Glenfiddich Distillery, Bunnahabhainn Distillery, Talisker Distillery, Glen Ord Distillery, Bowmore Distillery, Bladnoch Distillery, Arran Distillery, Bruichladdich Distillery, Kilchoman Distillery, Schöttlinger Kornbrennerei, Destillerie Gottesgabe, Caol Ila Distillery, Dalmore Distilery Visitor Centre, Erste Dresdner Spezialitätenbrennerei GmbH Augustus Rex, Destillerie "Geist von Rathen", Fa. Gert Scheithauer (Dipl.-Ing. FH) Brennereispezialitäten, Hoermann, guildive-caracol, Kornbrennerei Schilling, Painted Stave Distilling, Schladerer, Lantenhammer, Strathisla Distillery, Château Cugnac Armagnac, La Maison Ryst-Dupeyron, Callwood Distillery, Trapiche, Birgitta Rust Piekfeine Brände, Männlins Straußwirtschaft, Weingut Huck-Wagner, Brennstüberl Geistreich, Chevalier de Villarçon distillery ruins, Habitation Clement, Habitation St-Etienne, distillerie du Simon, Ye Old Grog Distillery, Michters Distillery & Tour Center, Thumb Butte Distillery, Bendistillery, Distillerie Saint James, Barrel House Distillery, Alte Brennerei, Enzianbrennerei Grassl, Altländer Brennerei, Distillerie de Bois-Roche, Linkwood Distillery, Glenmoray Distillery, Benriach-Glenlivet Distillery, Glen Elgin Distillery, Mannochmore Distillery, Glenlossie Distillery, Distillerie des Terres Rouges, Ben Nevis Distillery, Glenrothes Distillery, Glen Grant distillery, Aberlour Distillery, Benromach Distillery, Glenmorangie Distillery, Penderyn Distillery, Knockando Distillery, Tamdhu Distillery, Macallan Distilery, Glenfarclas Distillery, The Glenlivet, Blair Athol Distillery, Saint George's Distillery, Tullibardine Distillery, Clynelish Distillery, Glengoyne Distillery, Tobermory Distillery, Tomatin Distillery, Isle of Jura Distillery, Glenkinchie Distillery, Queens Arms, Aberfeldy Distillery, Sauerländer Edelbrand GmbH, Dalwhinnie Distilliery, The Glenlivet, Eversbusch, St. George Spirits, Château du Breuil, Château de Breuil, CopperMuse Distillery, Full Throttle Distillery, Abhainn Dearg Distillery, Oban Distillery, The Tormore Distillery, Ardbeg Distillery, Lagavulin Distillery, Flor de Cana, Du Nord Craft Spirits, La Mauny, 金車威士忌酒廠, Maine Distilleries - Cold River Vodka, Sallandt +limited +0.67791489450712539 +308.47384306782141 +no +fr:Roc de Peyre, fr:Moure de la Gardille, fr:Pic d'Anjeau, fr:Salasc, fr:Truc de Grèzes +2.993911286706529 +Clinique Paris V - Centre Médico Chirurgical, Clinique de Vinci (fermée), Centre de Protection Maternelle et Infantile, Clinique Geoffroy Saint-Hilaire, Centre municipal de santé, Clinique de la Muette, Institut Curie, Centre du Luxembourg (Consultations pluri-disciplinaires), Hôpital Marmottan, Maison De Santé Faidherbe, Centre de Bilan de Santé DEPSE, Laboratoire de biologie médicale, Centre de santé médical et dentaire, Hôpital Cognacq-Jay, Centre biologique chemin vert, COSEM Rome, Imagerie Médicale, Centres de dépistage anonymes et gratuits, Clinique Médicales, Médecine Physique Réadaptation, Clinique Canal de l'Ourcq, Hôpital privé des peupliers, Hôpital de jour pour enfants, Hôpital Sainte-Périne - Rossini - Chardon-Lagache, Hôpital Tenon, Hôpital Sainte-Anne, Fondation ophtalmologique Adolphe de Rothschild, Hôpital du Val de Grâce, Hôpital Cochin, Maternité Port Royal et Baudelocque, Hôpital Saint-Vincent de Paul, Hôpital des Quinze-Vingts, Hôpital Leopold Bellan, Hôpital Saint-Joseph, Hôpital Broussais, Hôpital de la Rochefoucauld, Institut Mutualiste Montsouris, Hôpital Européen Georges Pompidou, Hôpital Privé des Peupliers, Institut Pasteur, Hôpital Saint-Jacques, Hôpital Trousseau, Hôpital Lariboisière, Hopital Vaugirard, Hôpital Saint-Michel, Hôpital Fernand Widal, Hôpital Broca, Hôpital Saint-Louis, Hôpital Robert Debré, Hôpital National, Hopital Bichat, Maison médicale Jeanne Garnier, Hôpital Henri Dunant, Clinique Jouvenet, Clinique Edouard Rist, Notre-Dame de Bon Secours, Hôpital des Diaconnesses, Hôtel-Dieu, Maternité Sainte-Félicité, Centre de dépistage anonyme et gratuit, Hôpital Léopold Bellan, Les Cariatides d'Abbeville, Hôpital Jean Jaurès, Clinique des Buttes-Chaumont, Clinique Maussins-Nollet, Hôpital Tarnier, Clinique du Parc de Belleville, Hôpital Pierre Rouquès - Les Bluets, Maternité Les Bluets, Urgences, Institut de Cardiologie, Clinique Arago, Clinique Alleray Labrouste, Clinique Chirurgicale Victor Hugo, Climique Rémusat, Hôpital Sainte-Périne - Rossini - Chardon Lagache, Hôpital Croix Saint-Simon, Clinique Saint-Jean de Dieu, Hôpital Necker Enfants Malades, Hôpital Saint-Antoine, Hôpital Rothschild, Hôpital Esquirol, Clinique de la Jonquière, Clinique Rémy de Gourmont, Hôpital La Collégiale, Hôpital Bretonneau, Maternité Port Royal et Baudelocque, Hôpital des Gardiens de la Paix, Hôpital de la Pitié Salpétrière, Hôpital Maison-Blanche, Hopîtal Lasserre +49.4048641 8.6772256 +36 and 53.9360281 -1.0702516, 54.0307341 -1.0382265, 53.9755492 -1.0707896, 53.9629477 -0.9755778, 53.9303232 -1.0689686, 53.9642135 -1.0653371, 53.9871551 -1.0474167, 53.9859898 -1.0651562, 54.0411661 -1.0300613, 54.0118558 -1.0595910, 53.9575241 -1.0493096, 53.9793720 -1.0633348, 53.9673959 -1.0714738, 53.9563077 -1.0554740, 53.9776740 -1.0644274, 53.9579066 -1.0615711, 53.9578916 -1.0384236, 53.9411226 -1.0453008, 53.9402545 -1.0628004, 53.9412901 -1.0485025, 54.0031479 -1.0620491, 54.0086708 -1.0590792, 53.9679082 -1.0462940, 53.9511412 -1.0357185, 53.9787147 -1.0614117, 53.9417894 -1.0651445, 53.9955927 -1.0554353, 53.9605571 -1.0416518, 53.8979156 -0.9664321, 53.9564001 -1.0614879, 53.9602131 -1.0579907, 53.9598297 -1.0582374, 53.9799100 -1.0663846, 53.9622142 -1.0110749, 53.9586201 -1.0293671, 53.9640155 -1.0652996 +W.H. Smith, Librairie Galignani, Shakespeare and Company, Brentano's, Brentano's, Aapoum Bapoum, Gibert Joseph, Gibert Joseph, La Terrasse de Gutenberg, Page 189, Librairie Compagnie, Gibert Jeune - Sciences Humaines, Gibert Jeune, Gibert Jeune, Equipages, L'Atelier, L’atelier d’en face, Dhouailly et Cie, Youfeng (友风书店), Fnac, Librairie La Brèche, Papéterie-librairie de l'École militaire, Librairie Nation, Lezarts, Mona Lisait, Librairie Epona, Editions Guy Trédaniel, Le monde en tique, Presses de Sciences Po, À Livr'Ouvert, Librairie des jardins, Litote en Tête, L'Invit' à-lire, Éditions Franciscaines, Librairie Fontaine Passy, Librairie des Orphelins Apprentis d'Auteuil, Longtemps..., Les Guetteurs De Vent, La Friche, Librairie Dalloz, Librairie Beaujean, Little Tokyo, L'Arbre à Lettres - Mouffetard, Les Alizés, Paul Beuscher, Livres Anciens, Editions Eyrolles, Le Monde des cartes, L'Alinéa, Librairie Forhom, Librairie de Sèvres, Librairie Ancienne du Montparnasse, L'Herbe Rouge, Papeterie librairie, Librairie journaux, Detrad, Del Duca, L'Arbre à Lettres - Bastille, Fontaine Kléber, Itinéraires, Fontaine Haussmann, Dédale, Imagigraphe, L'Arbre à Lettres - Denfert, Comme un Roman, Fontaine Villiers, BD Net, Autant en Emporte le Vent, Librairie Droit Economie Lettres, Atout Livre, L'Arbre à Lettres - République, L'Ecume des Pages, L'Arbre du Voyageur, L'Oeil Ecoute, La Plume Vagabonde, La Boucherie, La 25e Heure, L'Attrape-Coeurs, L'Œil au Vert, La Manoeuvre, Le Chat Pitre, Lamartine, Le Livre Ecarlate, Le Genre Urbain, Libralire, Librairie des Abbesses, Violette and Co, Village Voice, Voyelle, Le Phénix, Librairie Portugaise Michel Chandeigne, Librairie Gourmande, Librairie Nation, Librairie du Temple, Librairie Vigot Maloine, Les Mots à la Bouche, Librairie Nordest, Le Rideau Rouge, Palimpseste, Le Roi Livre, Les Buveurs d'Encre, Librairie Maritime et Outremer, Les Cahiers de Colette, Librairie Tropiques, Librairie des Orgues, Librairie des Arts et Métiers, Lipsy, Librairie du Globe, Librairie de l'Escalier, Le Pied de biche, BD 16, San Francisco Book Company, Librairie Fontaine, L'Ouvre-Boîte, Librairie Henri IV, Arcane Livres, Librairie-presse, L'humeur vagabonde, occasion, Bulles en tête !, Au point du jour, Librairie/Papeterie/tabac, Le Monte en l’Air, Point Presse, Librairie des Editeurs associés, Le Merle Moqueur, L'Usage du Monde, Boulinier Jourdan, Graphi Dessin, Climats, Un Temps Pour Tout, Au Cœur Immaculé de Marie, Librairie de Paris, La nef des fous, Culture et bibliothèques pour tous, Librairie Saint-Paul, Légis France, A. Pedone Éditeur, Jacques Gabay, Album, Le Temps Retrouvé, Librairie EYROLLES, Librairie philosophique J. Vrin, Page à page, Le Comptoir des Mots, Essalam, Marissal Bücher, Design Librairie, L'humeur vagabonde (jeunesse), ESPERANTO - langue internationale, Gibert Joseph, Librairie Jonas, Junkudo, librairie japonaise, Centre Wallonie-Bruxelles, Le XXe Siècle & ses Sources, Librairie Emmanuel Lhermitte, Librairie - Papeterie, Librairie Ithaque, Librairie Nicole Maruani, Attica - La librairie des langues, Khai Tri, Libramoto, La Balustrade, Loisir & Culture, L'Attrape-Coeurs, Album, Mona Lisait, Terres Nouvelles, L'Atelier d'à côté, La Cabane à Presse, Publico, Maison d'Ennour, La Cartouche, Librairie Gallimard, France Loisir, Librairie Notre-Dame de France, Book-Off, Pages après pages, Boulinier, Librairie des Loisirs, BD et Compagnie, Abbey bookshop, Librairie J.N. Santon, Tome 7, Librairie Mona Lisait, Boutique des Cahiers, Art Religieux, Diane Selliers Éditeur, La Vie du Rail, Le Merle Moqueur, La bande des cinés, Pierre Brunet, Le Dilettante, I Love My Blender, Librairie Julliard, Librairie Polonaise, Fnac, Frankodech, Librairie de l'Orient, Bedi Thomas, Le Passé Composé, Librairie Relais La Procure, Livres anciens, Chine-Asie Diffusion, L'Harmattan, Librairie Fontaine, Pop Culture, Librairie - Caisses, Librairie du Compagnonage, Librairie Michèle Ignazi, Delamain, Appel, L'enfant lyre, Jean Maisonneuve, L'ivre d'Antan, La Procure, Librairie Cler, Marché du Livre ancien et d'occasion de Paris, Librairie Flammarion Centre +1231 and Pech de Bugarach, 2921 and Pic Carlit, 1211 and Pic de Nore, 2909.94 and Puigmal d'Err, 1663.38 and Montfalgars, 2784.66 and Pic du Canigou, 2572 and Puig Farinós, 2414.8 and Roca de Colom, 2692.4 and Puig Pedró de la Tossa, 1091 and Le Caroux, 2412 and Pic du Bernard Sauvage, 845, 2292 and Puig d'Escoutou, 2362 and Pic Joffre, 1778 and Puig de l'Estelle, 1581.3, Mourral Blanc, 685 and Roc de l'Aigle, Mont Cayroux, 925 and Mont Sarrat, Roc du Couillou, 773 and Pic de la Matalena, 646 and Moun Camp, 682 and Moun Simel, 585 and Roc d'Agnel, Mont Péril, Pic de San Marti, Pic de Rey, Roc du Tonnerre, Mont Redon, 978 and Serre d'Alaric, 2786 and Pic d’Eyne, 2861 and Pic de les Nou Fonts, 2651 and Pic des Sept Hommes, 2714 and Puig del Roc Negre, 2266 and Pic de Cincreus, 2507 and Roca Colom, 2690 and Petit Péric, 2818 and Pic d'Engorgs, 2915 and Puigpedrós, 2504.1 and Puig de la Llosa, 1640.9 and Puig de l'Artiga del Rei, 1640.7 and Puig Pedrissa, 1654.4 and Puig de la Clapa, 2863 and Tosseta de l'Esquella, Roc Sant Julia, 2039 and Roc des Trépassats, 2880.4, 1126 and Pic de la Falguerosa, 1062 and Pic de la Pena, Puig d'En Carol, 2827 and Pic de Finestrelles, 1009 and Pic de l'Alzina, Roc Rouge, 2469.4 and Pic de Madrès, 1430.4 and Roc du Casteldos, 1843.5 and Pic Dourmidou, 1555.93 and Serre de Caillong, 2027.4 and Picaucel, 707.28 and Montolier de Perellos, 433.46 and Caja, 685.83 and Roc de Nabant, 298.55 and Plan du Pal, 589.96 and Serre de Quintillan, 1220.7 and Le Karimal, 1595.4 and Montagne de Crabixa, 843.03 and Roque de Méric, 1494.8 and Pic d'Estable, 1143.2 and Tuc de Gaubeille, 1342 and Pech dels Escarabatets, 57, 878.85 and Montagne de Tauch, 916.52 and Pech de Fraysse, 702.71, 104 and Puech de Grange, 55.4 and L'Esquino de Camel, 764.94, 623.2, 788.03, 764.06, 564 and Pic de Brau, 1014.63 and Pic Saint-Christophe, 1234.63 and Roc Saint-Sauveur, 2810.2 and Pic Péric, 2325.5 and Roc d'Aude, 2376 and Mont Llaret, 2804.3 and Pic Oriental de Coll Roig, 2671 and Puig de la Grava, 583.95 and Serre de Vergès, 532.8 and Roc Rodon, 982.5 and Pic de Sailfort, 1279.72 and Pilon de Belmatx, 1706.4 and Serrat dels Cabanats, 1995.2 and Serra de Clavera, 714.6 and Puig de la Calma, 322.5 and Martal, 130.52 and Puig de les Redoleres, 395.93 and Pic Haut, 377.37 and Pic Estelle, 695.46 and Puig de Boc, 774.67 and Mont Héléna, 345.98 and Serrat d'En Bougader, 265.98 and Serrat de la Devesa, 1024.72 and Pic de Bau, 1626.7 and Serrat del Cortal, 633.41 and Le Néret, 323.46 and Peyro d'Arquo, 540.52 and Pic Aubeill, 2112.6 and Pic de Dona Pa, 718.25 and Roc de l'Hirondelle, 903.7 and Tuc d'En Guinxe, 674.54 and Pic de la Garsa, 1333.31 and Pic de les Salines, 1092.64 and Pic de Fontfrède, 725.17 and Pic Mirailles, 247.11 and Puig Oriol, 291.56 and Montou, 794.1 and Serrat d'En Parrot, 930.08 and Puig de Sant Miquel, 2288.31 and Pic de Mollet, 339.45 and Pedra Blanca, 2581.1 and El Punxo, 1773.28 and Pic de Bena, 2349.83 and La Tossa d’Err, 2098.8 and Tres Esteles, 100.86 and Serrat de la Devesa, 1211.2 and Puig des Moros, 1159.9 and L'Estanyol, 2831 and La Tour d’Eyne, 2711.45 and Cambre d’Aze, 573.8 and Pic Lazerou, 1105.4 and Roc d'En Peillofo, 2726.79 and Pic Moneliet, 2624.11 and Pic du Gallinas, 2412.4 and Serra de Mauri, 2470.12 and Puig del Pam, 2061.72 and Roc de les Perxes Blanques, 814.04 and Puig Forcat, 925.85 and Puig de les Feixes, 2172.2 and Mont Coronat, 500.57 and Roch de Lansac, 424.5 and Sarrat del Coude, 2662.83 and Pic de la Serre Gallinière, 2456.61 and Cime de Pomarole, 2042.3 and El Dormidor, 2093.31 and Pic Bastard, 507.17 and Força Réal, 437.55 and Puig Pedrous, 448.31 and Roc del Mut, 1632.3 and Pic del Torn, 1723.8 and Serra d'Escales, 1376.8 and Serrat de Mirailles, 1313.9 and Pic du Roussillon, 200.16 and Roc Calbeil, 2345.4 and Pic de la Rouquette, 1797.8 and Pic de Portepas, 1451.2 and Pic de la Moscatosa, 2204.1 and Roc de la Calma, 424.41 and Mont Plat, 2051.9 and La Llabanère, 1655.9 and Lloumet, 673.5 and Pic de la Pouge, 2309.47 and Serrat de l'Escaldat, 2736.56 and Pic de Font Freda, 2876.87 and Pics de Font Negra, 1687 and Cim de Portavella, 1766.02 and Puig Caga Llops, 2403.29 and Puig de la Collada Verde, 1642.09 and Puig Sec, 1830.31 and Puig dels Sarraïs, 1313.85 and Puig Ferreol, 1147.06 and Puig Fabre, 770.6 and Roc del Nissol, 899.57 and Roc Paradet, 2134.8 and Serrat de la Mente, 1356.4 and Roc des Quarante Croix, 2006.46 and Puig d'Esquena d'Ase, 1450.26 and Roc de Frausa ou Roc de France (1409m), 1030.09 and Peyre Basse, 687.73 and Puig del Coll del Teixo, 530.25 and La Cougoulère, 823.33 and La Redoute, 1211.88 and Serre de la Garsa, 1194.41 and Mont Capell, 2059.74 and Pic d'Estaques, 597.5 and Le Devès, 566.43 and Serre de l'Artigue del Baurien, 2369.7 and Pic de la Pelade, 2034.18 and Pic de la Tossa, 1790.2 and La Tartera, 1425.26 and Mont Nègre (1425m), 871.97 and Serra del Bouchet, 1256.31 and Pic Néoulous, 794 and Garrabet, 2137.69 and Pic dels Moros, 2044.2 and La Soucarrade, 225.08 and Montrodon, 2731 and Puig dels Tres Vents, 1383.1, 800.63 and Sarrat d'Espinets, 1730.9 and Puig dels Bessis, 2461.4 and Pic Gallinasse, 2060.5 and Roc des Bassouses, 194.37 and Puig Janer, 454.95 and Mont d'Espira, 1309.9 and Sarrat Naout, 2108, Pic de Tantajo, 1901 and Roc Mosquit, 2006 and Pic de la Socarrada, 582 and Pioch de Briandes, 677 and Cap Nègre, 685 and Le Moulières, 786 and Mont Méguillou, 738 and La Fréguière, 521 and Pioch Lintil, Coll de la Fareille, 701 and Puech Caubel, 670 and Madeloc, 2881.3 and Puig de Bastiments, Roc de Journac, 2683 and Pic de la Mina, Roc de Jocavell, 2702 and Pic de la Dona, Roc de Salimanes, Roc Punchut, 2547 and Pic Mercader, Roc du Maure, 2495.7 and Puig de Coma Ermada, Puig dels Pruners, Roc de la Campana, Roc de la Sentinella, Puig del Torn, 2532 and Puig de Terrers, 2597.1 and Pic de la Portella, 2333 and Roc de Nou Fonts, Roc Mary, Roc Campagna, 2673 and Tossal Colomer, 2450 and Roc Negre, Salt del Burro, Pic de la Fajolle, 60 and Mour, Roc de l'Aigle, El Roc Gros, 1073 and Roc du Nouret, 1060 and Roquo d'Astié, 2691 and Pic de Bacivers, 2638 and Puig d'Ombriaga, 2869.5 and Pic de l'Infern, 207 and Le Pech, 180 and La Roche Trouée, 125 and Pech Tenarel, 250 and Mont Grand, 155 and Pech Aigu, 225 and Saint-Jacques, Pech de l'Auzine, Pech des Combarelles, 65 and Pech Na Redorte, 200 and Plo de Maurou, Pech Tignoux, La Buissonière, 500 and Le Castelas, 430 and Roque Fumade, La Pique, Pech d'Aragnou, Pech Sarda, Pech de Brens, 1098.01 and Plo des Brus, 1123.5 and Sommet de l'Espinouse, 703.53 and Quiocs, 2013, Redoun, 500 and Roc de l'Aigle, 1918 and Pic de l'Orry, 1936 and Pic des Agrellons, Le Roc Troué, Sarrat de Labade, 2206 and Pic de la Calma, 1271 and Puech Saint-Geniez, La Capsole, Coste Rouge, Plateau de Lacamp, 396 and Roc de la Vella (de l'abeille), 1469 and Signal de Mailhebiau, pech de laure, 300, 1034 and Roc du Caroux, Roc de l'Escriban, Pech Counille, Pech Ginestié, Roc Rouge, La Cioutat, Milobre de Massac, Roc de Matefagine, Rocher de Béraud, La Clape, L'Aïrole, Pech Berles, Pech Lagardie, Pech de Bourrel, La Pique, Pech de Gouache, 793 and Massane, Truc du Coucut, 2826 and Pic Inferior de la Vaca, Pech Cardou, 1081 and La Pique Grosse, Roc d'En Benoit, Roc Serret, 576 and La Serre, 356, 520, Pic du Porteil du Bech d'Ourteil, Roc de la Couillade del Peyroulet, Roc du Taillat del Bossut, Serrat du Roc Mary, Pic du Pla de Bernard, Pic de la Rouquette, Courtalets, Pic Barbet, Pic Bas del Canigo, Collet des Bessis, Roc Roig, Roc de Cardenius, Mont Courounat, Pic de la Créou, Roc Rodon, Roc Cante Lloups, Roc del Barry d'en Naudy, Roc del Soula de Mollere, Roc del Soula del Mix, Roc dit la Soucaillousse, Roc du Coll Diagre, Roc du Mont Courounat, Puig de Passadong, Roc dals Clots del Gourg, Couillade de la Rabadane, Roc des Cimbeils, Pic del Signor, Roc de la Roquette, Roc del Cim des Cums, Roc dels Lladres, 2040 and Pic de l'Orry, Crête des Sept Hommes, 2637 and Pic de Bassibès, Pic de Soule de Ramounet, Pic de la Solane de l'Ours, Pic des Gourgs, Pic du Bois de la Ville, Pic du Quazemi, Puig Sec, Roc de Mariailles, Roc de Terrellou, Roc de l'Aigle, 2724 and Pic Rougeat, Pic de Coumeille, Pic de Gallinasse, Pic de Serre Bernet, Puig Coulomb, Puig de las Coubynes, Roc Pointu de Coll Roig, Roc de la Cabane en Ribe, Pic Pastous, Roque Coucoulière, Pic de Pel de Ca, Pilon du Pla de la Pilote, Puig d'el Boulet, Roc Redou, Sarrat de Font Frede, Puig del Traucadou, Roc de la Roquette, Roc de Calamiche, Rocher du Palet de Rouland, 1168 and Le Truc de Viala, Pech en Barthe, Montpeyrous, Au Mont Cal, Au Mont Long, 1557.7 and Coma Negra, 1289.4 and Puig de la Llibertat, Pech de la Vigne, Pech de l'Homme, Pech del Bousquet, Pech du Seigneur, Pech de Mont-Carretou, Roque Vacquière, Pech de Rie, 147, 187, 690 and Pic de la Coquillade, 2801 and Puigmal de Llo, 772 and Pic de la Caumette, 2663, 520 and Roc Traucat, 1276 and Places Hautes, 1324, 1268 and Le Barthas, 1629 and Castell Vidre, 2596 and Les Abelletes, 2714 and Pic dels Pedrons, 1015, 1182 and Pic des Sarrasis, 1179 and Pic du Midi, 1453, 670, 283, 590 and Signal d'Alaric, 504, 455, 280, quiersboutou +53.2967577 -4.5897852, 39.8578782 -76.7805271, 40.7597792 -82.6121178, 41.0217641 -73.7967995, 43.5736936 -70.4517181, 39.1234420 -76.6780235, 32.9570996 -82.0687302, -33.8002702 121.8020587, 51.5117840 -0.1726756, 30.3791301 -84.6864394, 55.7233076 -4.8798956, 51.7963909 0.4625999, 40.6869120 -73.5127167, 57.4023967 -2.2184401, 41.5399140 -81.4721388, 33.8117856 -117.9222594, 39.7989671 -85.9259915, 43.0600771 -77.3991473 +yes +1 +Heidelberg Marriott Hotel +308 +609 +Standing Stone, Caiy Stane, Standing Stone, Balm Well, Cup and Ring Marked Rocks, Stone, Hanging Stanes, The Buckstane, Cat Stane, Bonnington Mill Waterwheel (remains), Physic Well, Fort, Bonnington Weir, Hatton House +18 +37.7500651 -122.4340964, 37.7494950 -122.4338475, 37.7481784 -122.4318047, 37.7482870 -122.4317704, 37.7879001 -122.4032530, 37.7879882 -122.4037767, 37.7876404 -122.4065068, 37.7873775 -122.4085239, 37.7869825 -122.4117339, 37.7868400 -122.4132360, 37.7867454 -122.4133988, 37.7865280 -122.4151500, 37.7863839 -122.4147044, 37.8074857 -122.4122331, 37.8065738 -122.4141681, 37.7858381 -122.4208295, 37.7860823 -122.4213101, 37.7858443 -122.4215600, 37.8058156 -122.4201928, 37.8061825 -122.4173877, 37.8050741 -122.4248113, 37.8049424 -122.4251017, 37.8047238 -122.4253684, 37.8049272 -122.4254027, 37.8053138 -122.4240294, 37.8024234 -122.4249055, 37.8002533 -122.4244764, 37.7986934 -122.4241845, 37.7964948 -122.4237345, 37.7949360 -122.4234292, 37.7914294 -122.4227083, 37.7873203 -122.4218983, 37.7872205 -122.4163915, 37.7873494 -122.4149152, 37.7874377 -122.4147865, 37.7878071 -122.4133072, 37.7876377 -122.4131357, 37.7878614 -122.4114361, 37.7883158 -122.4080030, 37.7885668 -122.4059259, 37.7894553 -122.4072305, 37.7892383 -122.4089471, 37.7890348 -122.4105779, 37.7888245 -122.4122344, 37.7887296 -122.4136334, 37.7886349 -122.4137618, 37.7882480 -122.4150753, 37.7884387 -122.4153902, 37.7882006 -122.4170495, 37.7936864 -122.4231765, 37.7895224 -122.4223268, 37.8077705 -122.4105938, 37.7858278 -122.4058393, 37.7866147 -122.4049381, 37.7864654 -122.4047321, 37.7874083 -122.4036077, 37.7879204 -122.4029268, 37.7885919 -122.4024548, 37.7884698 -122.4023003, 37.7894632 -122.4012427, 37.7904738 -122.3996977, 37.7909147 -122.3992085, 37.7912199 -122.3990282, 37.7915447 -122.3981096, 37.7919524 -122.3981442, 37.7926895 -122.3975313, 37.7925538 -122.3970849, 37.7942766 -122.3948018, 37.7920324 -122.3977043, 37.7944131 -122.3950607, 37.8075184 -122.4123666, 37.8065215 -122.4134910, 37.8059994 -122.4172590, 37.8056529 -122.4205190, 37.8054155 -122.4221927, 37.8052527 -122.4234200, 37.8051442 -122.4236947, 37.8044396 -122.4250053, 37.8025001 -122.4246362, 37.8006419 -122.4242586, 37.7984038 -122.4237608, 37.7960775 -122.4233316, 37.7940496 -122.4227651, 37.7942082 -122.4229370, 37.7923946 -122.4225591, 37.7913958 -122.4222349, 37.8056122 -122.4218837, 37.7992825 -122.4189061, 37.7991130 -122.4192065, 37.7955320 -122.4181508, 37.7945850 -122.4183350, 37.7946664 -122.4163695, 37.7938050 -122.4096919, 37.7930318 -122.4092112, 37.7853492 -122.4055185, 37.7843469 -122.4045150, 37.7846454 -122.4039142, 37.7847539 -122.4037597, 37.7842316 -122.4041030, 37.7835261 -122.4025151, 37.7829902 -122.4025495, 37.7821627 -122.4008414, 37.7818193 -122.4010039, 37.7806363 -122.3999660, 37.7784384 -122.3966529, 37.7781331 -122.3964297, 37.7771698 -122.3952195, 37.7769255 -122.3950736, 37.7772943 -122.3949229, 37.7772672 -122.3946225, 37.7777963 -122.3939702, 37.7768533 -122.3945023, 37.7755323 -122.3971419, 37.7764838 -122.3985209, 37.7761242 -122.4022631, 37.7779104 -122.4000014, 37.7793078 -122.4020012, 37.7789483 -122.4020957, 37.7771439 -122.4044132, 37.7757191 -122.4064044, 37.7754274 -122.4065417, 37.7739280 -122.4084815, 37.7724490 -122.4103612, 37.7708168 -122.4125663, 37.7703632 -122.4123180, 37.7716591 -122.4138973, 37.7719508 -122.4138029, 37.7721001 -122.4141720, 37.7729006 -122.4154423, 37.7733145 -122.4156912, 37.7741303 -122.4169989, 37.7741981 -122.4173765, 37.7752700 -122.4184494, 37.7754464 -122.4183893, 37.7757381 -122.4191960, 37.7754939 -122.4189385, 37.7736011 -122.4186209, 37.7782225 -122.4194551, 37.7786688 -122.4197882, 37.7798628 -122.4200286, 37.7799849 -122.4198998, 37.7821995 -122.4204866, 37.7828778 -122.4204179, 37.7830062 -122.4205011, 37.7830848 -122.4206947, 37.7849708 -122.4210499, 37.7889845 -122.4026340, 37.7901947 -122.4014023, 37.7896588 -122.4037282, 37.7897402 -122.4049985, 37.7863305 -122.4167890, 37.7861298 -122.4184176, 37.7855735 -122.4228551, 37.7854718 -122.4252669, 37.7851733 -122.4278504, 37.7847663 -122.4281594, 37.7843186 -122.4315412, 37.7848206 -122.4309318, 37.7844196 -122.4328463, 37.7843178 -122.4330266, 37.7845281 -122.4332841, 37.7840872 -122.4333871, 37.7835504 -122.4375282, 37.7839167 -122.4376655, 37.7834826 -122.4392963, 37.7836386 -122.4394164, 37.7831231 -122.4396482, 37.7829535 -122.4395280, 37.7828042 -122.4423433, 37.7829874 -122.4431329, 37.7827913 -122.4458030, 37.7827599 -122.4459811, 37.7823299 -122.4459653, 37.7825329 -122.4467635, 37.7820784 -122.4472957, 37.7820558 -122.4476543, 37.7821802 -122.4476390, 37.7820053 -122.4498532, 37.7822868 -122.4499499, 37.7818988 -122.4530106, 37.7815563 -122.4534053, 37.7798354 -122.4931351, 37.7799168 -122.4934183, 37.7794962 -122.4932037, 37.7794826 -122.4933926, 37.7798191 -122.4936557, 37.7795573 -122.4935814, 37.7799507 -122.4932381, 37.7796794 -122.4963537, 37.7794148 -122.4967056, 37.7792724 -122.4998814, 37.7796794 -122.5028254, 37.7791570 -122.5025164, 37.7798610 -122.5049869, 37.7797389 -122.5052873, 37.7800577 -122.5076563, 37.7798949 -122.5074503, 37.7799221 -122.5099050, 37.7797796 -122.5096304, 37.7791216 -122.5094930, 37.7756617 -122.5003177, 37.7754785 -122.5007383, 37.7754989 -122.5035793, 37.7753293 -122.5039398, 37.7751597 -122.5057852, 37.7750986 -122.5059311, 37.7891981 -122.4152653, 37.7893134 -122.4150078, 37.7910097 -122.4156423, 37.7922029 -122.4157974, 37.7924132 -122.4141495, 37.7927048 -122.4118492, 37.7934544 -122.4078526, 37.7932474 -122.4075663, 37.7934120 -122.4063181, 37.7936086 -122.4047989, 37.7938053 -122.4031510, 37.8070654 -122.4103449, 37.8068551 -122.4106453, 37.8066448 -122.4120271, 37.8065364 -122.4122160, 37.8050377 -122.4118813, 37.8047668 -122.4116465, 37.8027867 -122.4114233, 37.8006774 -122.4105478, 37.8004101 -122.4099889, 37.8002162 -122.4105649, 37.8004332 -122.4105306, 37.7991379 -122.4088569, 37.7992532 -122.4090286, 37.7991922 -122.4087624, 37.7993480 -122.4086509, 37.7971439 -122.4085909, 37.7967709 -122.4082646, 37.7962894 -122.4082732, 37.7953670 -122.4082476, 37.7937799 -122.4077582, 37.8063855 -122.4232325, 37.8036726 -122.4232484, 37.8035574 -122.4233771, 37.8016788 -122.4230252, 37.8014415 -122.4228020, 37.7989229 -122.4224728, 37.7987940 -122.4226445, 37.7986719 -122.4225157, 37.7990178 -122.4223012, 37.7977224 -122.4220351, 37.7970239 -122.4220608, 37.7962210 -122.4217512, 37.7957734 -122.4218285, 37.7952240 -122.4215366, 37.7951087 -122.4214336, 37.7949934 -122.4212963, 37.7942338 -122.4212620, 37.7934741 -122.4211933, 37.7931961 -122.4213478, 37.7923618 -122.4206697, 37.7919217 -122.4210500, 37.7915343 -122.4211418, 37.7908357 -122.4206440, 37.7907543 -122.4207813, 37.7894452 -122.4205410, 37.7895062 -122.4203951, 37.7877969 -122.4203780, 37.7878987 -122.4202148, 37.7879258 -122.4200518, 37.7865827 -122.4199745, 37.7867116 -122.4198114, 37.7868068 -122.4194985, 37.7850972 -122.4196741, 37.8073496 -122.4079591, 37.8072682 -122.4075728, 37.8022905 -122.4029208, 37.8014157 -122.4027320, 37.7996185 -122.4023972, 37.7977263 -122.4020024, 37.7947114 -122.4015355, 37.7951558 -122.4014788, 37.7946810 -122.4013501, 37.7926335 -122.3958328, 37.7943350 -122.3945488, 37.7932952 -122.3934198, 37.7924067 -122.3943554, 37.7919997 -122.3948618, 37.7910162 -122.3961063, 37.7901209 -122.3969646, 37.7899445 -122.3975054, 37.7878245 -122.4001786, 37.7878381 -122.3998524, 37.7864031 -122.4017275, 37.7861318 -122.4023197, 37.7829558 -122.4066225, 37.7827998 -122.4067084, 37.7825217 -122.4068886, 37.7825488 -122.4065625, 37.7823996 -122.4070345, 37.7811378 -122.4083649, 37.7808122 -122.4090258, 37.7793876 -122.4105793, 37.7790281 -122.4113003, 37.7775322 -122.4128952, 37.7771862 -122.4129896, 37.7773219 -122.4134703, 37.7764060 -122.4143114, 37.7761075 -122.4150066, 37.7727900 -122.4191952, 37.7731428 -122.4182596, 37.7703747 -122.4197788, 37.7707614 -122.4203453, 37.7680204 -122.4200621, 37.7670705 -122.4197531, 37.7663920 -122.4198732, 37.7653010 -122.4195354, 37.7651503 -122.4193840, 37.7649400 -122.4199505, 37.7648246 -122.4197531, 37.7618662 -122.4197445, 37.7620562 -122.4192896, 37.7616287 -122.4194612, 37.7605363 -122.4191351, 37.7600545 -122.4193153, 37.7584056 -122.4191522, 37.7589009 -122.4189892, 37.7573130 -122.4188433, 37.7568991 -122.4189892, 37.7557658 -122.4186802, 37.7551890 -122.4188518, 37.7541440 -122.4185343, 37.7535875 -122.4186630, 37.7524610 -122.4183540, 37.7523117 -122.4181566, 37.7521692 -122.4186716, 37.7520334 -122.4185343, 37.7494003 -122.4180794, 37.7490202 -122.4178648, 37.7488845 -122.4182253, 37.7482533 -122.4186802, 37.7468756 -122.4191608, 37.7469774 -122.4188862, 37.7452468 -122.4202165, 37.7702405 -122.4456788, 37.7815477 -122.4557681, 37.7812324 -122.4564824, 37.7814265 -122.4586356, 37.7811374 -122.4585605, 37.7810466 -122.4587536, 37.7815096 -122.4590144, 37.7813234 -122.4609038, 37.7810177 -122.4612687, 37.7811823 -122.4641071, 37.7807956 -122.4641973, 37.7807845 -122.4643617, 37.7808764 -122.4644255, 37.7807541 -122.4671566, 37.7809983 -122.4678003, 37.7808931 -122.4704703, 37.7805778 -122.4708931, 37.7810594 -122.4721634, 37.7803132 -122.4724209, 37.7804958 -122.4725340, 37.7807715 -122.4726936, 37.7806388 -122.4759657, 37.7803132 -122.4764378, 37.7804922 -122.4791912, 37.7801791 -122.4795855, 37.7800298 -122.4827784, 37.7798738 -122.4845980, 37.7803080 -122.4848555, 37.7802469 -122.4845465, 37.7799349 -122.4849328, 37.7801045 -122.4877394, 37.7797924 -122.4881085, 37.7800027 -122.4899024, 37.7796974 -122.4902800, 37.7795957 -122.4919966, 37.7799552 -122.4923228, 37.7850328 -122.4240337, 37.7846530 -122.4214931, 37.7845512 -122.4213300, 37.7850919 -122.4181325, 37.7850396 -122.4177938, 37.7853788 -122.4158712, 37.7854466 -122.4144979, 37.7855823 -122.4142146, 37.7858650 -122.4121391, 37.7860368 -122.4097600, 37.7863556 -122.4081893, 37.7866812 -122.4056144, 37.7870169 -122.4179793, 37.7866235 -122.4210522, 37.7861695 -122.4245155, 37.7859114 -122.4264595, 37.7857487 -122.4278070, 37.7867524 -122.4285794, 37.7866167 -122.4285538, 37.7864675 -122.4297640, 37.7865965 -122.4297039, 37.7861826 -122.4330771, 37.7860469 -122.4330340, 37.7859385 -122.4331370, 37.7858910 -122.4333344, 37.7859723 -122.4346907, 37.7857893 -122.4350941, 37.7855452 -122.4380551, 37.7853687 -122.4384070, 37.7852332 -122.4395228, 37.7852534 -122.4393683, 37.7853485 -122.4396517, 37.7854773 -122.4398147, 37.7850228 -122.4399262, 37.7849142 -122.4430247, 37.7847380 -122.4433766, 37.7844192 -122.4458487, 37.7841884 -122.4463035, 37.7846498 -122.4461747, 37.7864066 -122.4400121, 37.7826267 -122.4209352, 37.7821927 -122.4192077, 37.7831831 -122.4189845, 37.7830542 -122.4189502, 37.7833323 -122.4177486, 37.7831356 -122.4174224, 37.7832848 -122.4172336, 37.7834951 -122.4156457, 37.7837190 -122.4139463, 37.7839225 -122.4123155, 37.7333439 -122.4341146, 37.7336018 -122.4339773, 37.7333778 -122.4337627, 37.7306904 -122.4313129, 37.7285513 -122.4313423, 37.7286056 -122.4315569, 37.7287414 -122.4310075, 37.7285928 -122.4310211, 37.7164063 -122.4407726, 37.7162841 -122.4412790, 37.7147304 -122.4426465, 37.7296110 -122.4331926, 37.7261179 -122.4335362, 37.7725629 -122.4271208, 37.7724886 -122.4271971, 37.7727613 -122.4255587, 37.7728240 -122.4254941, 37.7750096 -122.4193518, 37.7752830 -122.4191695, 37.7237397 -122.4527763, 37.8026615 -122.4058342, 37.7602500 -122.4381220, 37.8000731 -122.4427175, 37.8000773 -122.4429777, 37.8002766 -122.4410592, 37.8001123 -122.4413201, 37.7998569 -122.4443992, 37.7991938 -122.4517479, 37.7982490 -122.4474040, 37.7938960 -122.3962630, 37.7350442 -122.4750296, 37.7348192 -122.4745190, 37.7348959 -122.4718603, 37.7826712 -122.4715165, 37.7900779 -122.3973324, 37.8063946 -122.4755980, 37.8066743 -122.4754598, 37.8073122 -122.4750992, 37.8077451 -122.4747013, 37.7985742 -122.4470382, 37.8003316 -122.4468364, 37.8015284 -122.4299080, 37.8163406 -122.3719841, 37.8159189 -122.3712035, 37.8198117 -122.3663991, 37.8240897 -122.3725534, 37.8217995 -122.3675153, 37.8251277 -122.3701037, 37.8251958 -122.3698336, 37.8282634 -122.3718811, 37.8298005 -122.3733581, 37.7698835 -122.4483879, 37.7696842 -122.4487848, 37.7734369 -122.4495198, 37.7736095 -122.4491588, 37.7759209 -122.4462621, 37.7754086 -122.4499596, 37.7753704 -122.4494447, 37.7750352 -122.4531023, 37.7749600 -122.4525772, 37.7744927 -122.4582852, 37.7742595 -122.4580599, 37.7743273 -122.4587090, 37.7752263 -122.4651517, 37.7770368 -122.4639232, 37.8051033 -122.4322388, 37.8070241 -122.4071695, 37.7268052 -122.4756978, 37.7270758 -122.4757595, 37.7273213 -122.4751556, 37.7767196 -122.4262286, 37.7877082 -122.4066920, 37.7877749 -122.4435048, 37.7875969 -122.4435646, 37.7853936 -122.4093312, 37.7621911 -122.4352428, 37.7623119 -122.4350524, 37.7624107 -122.4359472, 37.7623663 -122.4355805, 37.7624148 -122.4374826, 37.7628952 -122.4350231, 37.7638864 -122.4332716, 37.7639457 -122.4336524, 37.7677871 -122.4291506, 37.7676579 -122.4291238, 37.7672427 -122.4291913, 37.7678942 -122.4291010, 37.7672911 -122.4288313, 37.7678572 -122.4287240, 37.7882810 -122.4034650, 37.7920316 -122.4158514, 37.7890998 -122.4166329, 37.7929197 -122.4160112, 37.7956283 -122.4167948, 37.7623781 -122.3973643, 37.7659491 -122.4499203, 37.7777491 -122.4166993, 37.7784932 -122.4145772, 37.7996086 -122.4360904, 37.7997022 -122.4362285, 37.7995695 -122.4391803, 37.8004874 -122.4475303, 37.7990605 -122.4430620, 37.7999719 -122.4359078, 37.7988819 -122.4428431, 37.8006033 -122.4309704, 37.7993017 -122.4395074, 37.7920664 -122.4230774, 37.7939521 -122.4233809, 37.7984888 -122.4242871, 37.7228751 -122.4492993, 37.7843417 -122.4083799, 37.7732193 -122.5094719, 37.7730526 -122.5100823, 37.7713376 -122.5094780, 37.7730623 -122.5099524, 37.7736359 -122.5098469, 37.7510820 -122.4365124, 37.7902660 -122.4225849, 37.7809200 -122.4207186, 37.7734715 -122.4716467, 37.7732222 -122.4720004, 37.7767410 -122.4722999, 37.7845288 -122.4729578, 37.7730544 -122.4719870, 37.7769513 -122.4723886, 37.7765902 -122.4721548, 37.7843461 -122.4727748, 37.7733124 -122.4719545, 37.7824738 -122.4731577, 37.7772126 -122.4718860, 37.7846952 -122.4724611, 37.7842309 -122.4726881, 37.7653711 -122.4768439, 37.7637253 -122.4773406, 37.7651265 -122.4774410, 37.7651763 -122.4771473, 37.7655195 -122.4775619, 37.7981369 -122.4040437, 37.7984038 -122.4019150, 37.7864698 -122.3980058, 37.7898678 -122.4007776, 37.7846489 -122.4070405, 37.7841266 -122.4084047, 37.7559775 -122.4764013, 37.7601283 -122.4767065, 37.7483732 -122.4761739, 37.7599874 -122.4769846, 37.7526487 -122.4761825, 37.7487336 -122.4758329, 37.7562359 -122.4767119, 37.7503718 -122.4760331, 37.7451990 -122.4756672, 37.7464646 -122.4760287, 37.7540793 -122.4765228, 37.7502718 -122.4762798, 37.7485093 -122.4758701, 37.7485547 -122.4762718, 37.7521106 -122.4764229, 37.7577989 -122.4768064, 37.7450879 -122.4759346, 37.7466328 -122.4757654, 37.7578031 -122.4765444, 37.7540943 -122.4762690, 37.7373068 -122.4751533, 37.7271849 -122.4746491, 37.7413368 -122.4756969, 37.7414759 -122.4754270, 37.7391897 -122.4752419, 37.7309279 -122.4747158, 37.7433289 -122.4758221, 37.7263033 -122.4752117, 37.7433139 -122.4754986, 37.7391607 -122.4755616, 37.7376007 -122.4754212, 37.7311504 -122.4746276, 37.7310304 -122.4745228, 37.7312595 -122.4750192, 37.7216548 -122.4754813, 37.7173134 -122.4730047, 37.7645489 -122.4431699, 37.7774736 -122.4588050, 37.7769033 -122.4586521, 37.7771471 -122.4583141, 37.7693989 -122.4293944, 37.7934341 -122.3952982, 37.7860637 -122.4568864, 37.7875574 -122.4467799, 37.7875773 -122.4469696, 37.7865288 -122.4532785, 37.7879454 -122.4407257, 37.7862633 -122.4553541, 37.7863128 -122.4536142, 37.7846320 -122.4644747, 37.7869618 -122.4499244, 37.7871212 -122.4472522, 37.7856633 -122.4588196, 37.7881142 -122.4408796, 37.7508325 -122.4439701, 37.7511656 -122.4385830, 37.7471736 -122.4441832, 37.7704174 -122.4452853, 37.7741217 -122.4463069, 37.7757135 -122.4466914, 37.7669041 -122.4479460, 37.7700367 -122.4454051, 37.7673187 -122.4464799, 37.7739565 -122.4465032, 37.7702021 -122.4449433, 37.7788494 -122.4469825, 37.7672489 -122.4466451, 37.7718076 -122.4457938, 37.7719176 -122.4456066, 37.7756581 -122.4463390, 37.7785087 -122.4472714, 37.7671329 -122.4465199, 37.7786914 -122.4474453, 37.7774219 -122.4469247, 37.7670424 -122.4462687, 37.7670868 -122.4479048, 37.7739120 -122.4458712, 37.7675684 -122.4448406, 37.7787954 -122.4472048, 37.7673422 -122.4448799, 37.7146481 -122.4719381, 37.7244830 -122.4024083, 37.7169648 -122.3891600, 37.8014600 -122.4315507, 37.8015624 -122.4313898, 37.7352745 -122.5045674, 37.7351796 -122.5004996, 37.7352755 -122.5026037, 37.7098977 -122.3930198, 37.7167597 -122.4413933, 37.7165622 -122.4408255, 37.7324082 -122.4059021, 37.7293737 -122.4150047, 37.7692570 -122.4291174, 37.7291475 -122.4193716, 37.7339634 -122.3907499, 37.7343056 -122.3907340, 37.8269448 -122.3774052, 37.8219781 -122.3678899, 37.8183698 -122.3702624, 37.8299019 -122.3752682, 37.8283168 -122.3771872, 37.7900667 -122.3942010, 37.7904673 -122.3932275, 37.7885774 -122.3909566, 37.7899382 -122.3923940, 37.7892706 -122.3935798, 37.8199566 -122.3664933, 37.8231753 -122.3748357, 37.8241714 -122.3754505, 37.7485022 -122.4589160, 37.7467379 -122.4583284, 37.7689281 -122.4356947, 37.7721358 -122.4307953, 37.7720055 -122.4303556, 37.7722134 -122.4305711, 37.7720894 -122.4301052, 37.7920140 -122.4815698, 37.7378001 -122.4514647, 37.7377651 -122.4517551, 37.7716459 -122.5036197, 37.7535905 -122.4954095, 37.7532925 -122.4955658, 37.7607702 -122.4960244, 37.7844955 -122.3952726, 37.7628573 -122.3908626, 37.7877434 -122.4216333, 37.7587055 -122.4631292, 37.7585995 -122.4640519, 37.7584595 -122.4639124, 37.7582899 -122.4638427, 37.7605076 -122.4406247, 37.7240697 -122.4522341, 37.7259918 -122.4522582, 37.7240485 -122.4524859, 37.7254488 -122.4525023, 37.7208496 -122.4474323, 37.7211045 -122.4473020, 37.7345842 -122.4719275, 37.7675843 -122.4355739, 37.7730240 -122.4528432, 37.7732066 -122.4524004, 37.8056765 -122.4371753, 37.7791532 -122.5129411, 37.7653828 -122.4156514, 37.7655458 -122.4128777, 37.7758058 -122.4971516, 37.7770300 -122.4640939, 37.7771635 -122.4636541, 37.7773038 -122.4642640, 37.7811799 -122.4122670, 37.7901405 -122.3932844, 37.7897441 -122.3935526, 37.7900769 -122.3938342, 37.7900303 -122.3929249, 37.7898479 -122.3929436, 37.7900153 -122.3936678, 37.7902698 -122.3932093, 37.7897844 -122.3938369, 37.7896339 -122.3928472, 37.7895788 -122.3933326, 37.7902549 -122.3935874, 37.7896742 -122.3936921, 37.7899687 -122.3930777, 37.7898459 -122.3936974, 37.7901977 -122.3934346, 37.7895215 -122.3929732, 37.7645161 -122.4327886, 37.7774211 -122.4160269, 37.7646988 -122.4244233, 37.7517598 -122.4254173, 37.7518770 -122.4255434, 37.7518932 -122.4231645, 37.7520190 -122.4226923, 37.7520780 -122.4202115, 37.7521821 -122.4204097, 37.7846325 -122.4668493, 37.7848927 -122.4647404, 37.7847936 -122.4669432, 37.7848461 -122.4651260, 37.7850597 -122.4648309, 37.7687493 -122.4030378, 37.7661987 -122.4028340, 37.7698985 -122.4034375, 37.7664574 -122.4026543, 37.7674763 -122.4028943, 37.7685627 -122.4028608, 37.7672368 -122.4026933, 37.7697585 -122.4032336, 37.7933155 -122.4011185, 37.7940361 -122.4014297, 37.7948174 -122.4012457, 37.7937309 -122.4011453, 37.7941718 -122.4012902, 37.7953841 -122.3969718, 37.7945999 -122.4030014, 37.7951679 -122.3989406, 37.7946423 -122.4047127, 37.7943922 -122.4045947, 37.7945109 -122.3977014, 37.7957783 -122.4035808, 37.7932052 -122.4012151, 37.7941845 -122.4002602, 37.7409957 -122.4661951, 37.7412300 -122.4662434, 37.7420207 -122.4942784, 37.7423984 -122.4946065, 37.7481450 -122.4139340, 37.7485740 -122.4136090, 37.7483690 -122.4140740, 37.7470478 -122.4135113, 37.8015930 -122.4295070, 37.7693241 -122.4529187, 37.7691502 -122.4531333, 37.7779590 -122.4382840, 37.7486563 -122.4707231, 37.7779013 -122.4381208, 37.7488826 -122.4686623, 37.7490207 -122.4684000, 37.7764755 -122.4261860, 37.7624054 -122.4149348, 37.7985693 -122.4243300, 37.7452070 -122.4133817, 37.7988554 -122.4523659, 37.7229652 -122.4525001, 37.7237354 -122.4562527, 37.7479625 -122.4589779, 37.7316164 -122.4533024, 37.7236887 -122.4560891, 37.7585862 -122.4660394, 37.7583654 -122.4701243, 37.7340666 -122.4990233, 37.7339718 -122.4968714, 37.7368504 -122.4537673, 37.7729932 -122.4769430, 37.7728380 -122.4764588, 37.7748147 -122.4548948, 37.7767640 -122.4757735, 37.7766315 -122.4760914, 37.7655815 -122.4152362, 37.7650043 -122.4193576, 37.7652037 -122.4161172, 37.7618958 -122.4151034, 37.7650786 -122.4153876, 37.7337604 -122.4934171, 37.7339214 -122.4896757, 37.7338345 -122.4917168, 37.7869084 -122.4565151, 37.7529699 -122.4341555, 37.7316291 -122.4513250, 37.7299803 -122.4512285, 37.7314275 -122.4532403, 37.8082789 -122.4141009, 37.7693980 -122.4521124, 37.7734254 -122.4663049, 37.8005296 -122.4475648, 37.7997086 -122.4362667, 37.8008427 -122.4276089, 37.7881551 -122.4090877, 37.7904499 -122.4055375, 37.7927644 -122.3927085, 37.8084123 -122.4100480, 37.8071167 -122.4156479, 37.8004525 -122.4105821, 37.7950657 -122.3999088, 37.7874729 -122.4078678, 37.7857365 -122.4096385, 37.7800009 -122.4167733, 37.8167937 -122.3722982, 37.7761697 -122.4215410, 37.7745791 -122.4341180, 37.7936998 -122.4213961, 37.7707344 -122.4660864, 37.8020728 -122.4125753, 37.7902111 -122.4076489, 37.7899758 -122.4071611, 21.4076261 -77.8795289, 37.7763563 -122.3958020, 37.7844521 -122.4711623, 37.7846142 -122.4708404, 37.7818385 -122.4923290, 37.7834186 -122.4924440, 37.7836006 -122.4901440, 37.7836650 -122.4884266, 37.7839554 -122.4820021, 37.7837954 -122.4853763, 37.7840959 -122.4787941, 37.7929233 -122.4178901, 37.7814696 -122.4933616, 37.7834210 -122.4925857, 37.7837098 -122.4905627, 37.7838163 -122.4880702, 37.7839687 -122.4848702, 37.7841139 -122.4816301, 37.7818213 -122.4924756, 37.7815116 -122.4935222, 37.7716631 -122.4016977, 37.7980264 -122.4502029 ++44 131 228 2588 +49.3974932 8.6821302, 49.4045387 8.6755501, 49.4082097 8.6927782, 49.4117492 8.7058025, 49.4037018 8.6767168, 49.3999110 8.6783652, 49.3593236 8.6883407 +The Witchery +http://www.zum-seppl.de +yes +0 +yes +no +29 +Volksbank Kurpfalz H+G Bank +48.8373758 2.2723483, 48.8480669 2.2646701, 48.8672033 2.3175552, 48.8794780 2.2911520, 48.8374741 2.2964370, 48.8426769 2.2964541, 48.8447051 2.3110485, 48.8418578 2.3031404, 48.8356667 2.3025546, 48.8418917 2.2973124, 48.8375362 2.2963597, 48.8371698 2.2968218, 48.8411351 2.2996815, 48.8513851 2.3427515, 48.8266959 2.3418366, 48.8313237 2.3160082, 48.8276961 2.3323037, 48.8536884 2.3438503, 48.8465209 2.3169152, 48.8223603 2.3376975, 48.8333496 2.3122320, 48.8662853 2.3197532, 48.8659622 2.3186038, 48.8679910 2.3372848, 48.8529019 2.3430541, 48.8844724 2.3214773, 48.8848286 2.2981665, 48.8815112 2.2955182, 48.8637584 2.2404391, 48.8684582 2.2651973, 48.8652473 2.2754857, 48.8325568 2.3113862, 48.8548336 2.3455606, 48.8724857 2.2964468, 48.8578487 2.2776036, 48.8561596 2.2803320, 48.8587309 2.2850498, 48.8503867 2.2499063, 48.8474160 2.2734653, 48.8645482 2.2749436, 48.8798361 2.2946562, 48.8867832 2.3174727, 48.8834250 2.3133443, 48.8832839 2.3261502, 48.8620110 2.2617158, 48.8578293 2.2627189, 48.8522460 2.2310858, 48.8561113 2.3406430, 48.8359176 2.2934497, 48.8415640 2.2914435, 48.8321096 2.3027626, 48.8488952 2.2875621, 48.8450063 2.2934495, 48.8428146 2.3128644, 48.8584946 2.2687106, 48.8590276 2.2701439, 48.8582201 2.2684874, 48.8580507 2.2679638, 48.8621864 2.2858577, 48.8627962 2.2854972, 48.8620791 2.2848191, 48.8477318 2.3279086, 48.8587970 2.2574756, 48.8844757 2.3382719, 48.8859435 2.3414431, 48.8392719 2.3386499, 48.8382351 2.3417326, 48.8805089 2.3247630, 48.8795193 2.3372522, 48.8860003 2.3379474, 48.8871034 2.3395432, 48.8994594 2.3456310, 48.8881990 2.3259122, 48.8775035 2.3271975, 48.8554797 2.2377372, 48.8509506 2.2377234, 48.8480846 2.3334838, 48.8451543 2.3325456, 48.8474672 2.3379586, 48.8474379 2.3363959, 48.8570290 2.3204791, 48.8188018 2.3371410, 48.8185040 2.3384113, 48.8181578 2.3401279, 48.8418885 2.2735712, 48.8640823 2.3242375, 48.8428738 2.2978005, 48.8243977 2.3360819, 48.8297310 2.3179488, 48.8516782 2.3146314, 48.8706300 2.2979200, 48.8365930 2.3046690, 48.8954660 2.3118560, 48.9006880 2.3443120, 48.8726523 2.2991152, 48.8384857 2.3139931, 48.8880790 2.3433440, 48.8425610 2.3055230, 48.8606880 2.2465600, 48.8488720 2.3128820, 48.8345717 2.3321583, 48.8517060 2.3188780, 48.8630654 2.2649414, 48.8635021 2.2620126, 48.8963810 2.3139000, 48.8852454 2.3310516, 48.8397680 2.3287550, 48.8893940 2.3388820, 48.8374610 2.2851470, 48.8954560 2.3210460, 48.8674870 2.3165830, 48.8532780 2.2711410, 48.8311370 2.3128840, 48.8898960 2.2981300, 48.8417190 2.3204800, 48.8871960 2.3058630, 48.8459400 2.2689590, 48.8855390 2.3268800, 48.8569870 2.2983049, 48.8501704 2.3439958, 48.8399030 2.2904890, 48.8585128 2.2948820, 48.8691890 2.2731280, 48.8417000 2.3374070, 48.8523510 2.2944030, 48.8383280 2.2782440, 48.8433760 2.3364170, 48.8289169 2.3068462, 48.8530930 2.2487630, 48.8510180 2.2721570, 48.8417750 2.2766630, 48.8909945 2.3180223, 48.8581770 2.2475410, 48.8559797 2.2830925, 48.8789680 2.3090890, 48.8221640 2.3407800, 48.8861910 2.3437000, 48.8334140 2.3198533, 48.8782185 2.2703461, 48.8342986 2.3307561, 48.8512040 2.3336860, 48.8519135 2.2527965, 48.8617560 2.2470009, 48.8876610 2.2899050, 48.8521115 2.2541524, 48.8736560 2.2651653, 48.8634236 2.2498140, 48.8715892 2.2642560, 48.8515696 2.2338766, 48.8670116 2.2393588, 48.8589309 2.2291849, 48.8593085 2.2283998, 48.8683594 2.2629205, 48.8728525 2.2727107, 48.8992390 2.3401270, 48.8814860 2.3253960, 48.8890670 2.3382500, 48.8316594 2.3202088, 48.8515687 2.3455917, 48.8832242 2.3300482, 48.8543340 2.3134030, 48.8479841 2.3021348, 48.8381900 2.2706380, 48.8921127 2.3319234, 48.8373130 2.3123540, 48.8929520 2.3468380, 48.8319794 2.3254293, 48.8285390 2.2936320, 48.8937910 2.3254410, 48.8878070 2.3168387, 48.8528480 2.3236680, 48.8954540 2.3265480, 48.8366880 2.3168190, 48.8311305 2.3217527, 48.8281910 2.2975610, 48.8646712 2.2945788, 48.8224115 2.3234656, 48.8563720 2.3423640, 48.8976745 2.3255573, 48.8488580 2.3354220, 48.8323838 2.3266258, 48.8302050 2.3165310, 48.8512390 2.2749420, 48.8675640 2.3439900, 48.8940810 2.3257310, 48.8389116 2.2802003, 48.8239822 2.3186264, 48.8268397 2.3045308, 48.8927720 2.3393440, 48.8708650 2.3267180, 48.8759177 2.3199403, 48.8985920 2.3386760, 48.8973940 2.3352610, 48.8432899 2.3273991, 48.8501986 2.3439620, 48.8892960 2.3080360, 48.8295130 2.2974440, 48.8505319 2.3140947, 48.8513900 2.2954500, 48.8829640 2.2906840, 48.8862884 2.3363224, 48.8990940 2.3343970, 48.8991980 2.3373340, 48.8399790 2.2978655, 48.8765790 2.3317425, 48.8866310 2.2931960, 48.8885760 2.3372580, 48.8544710 2.3306000, 48.8444200 2.2902970, 48.8401440 2.3004225, 48.8682815 2.2937862, 48.8377715 2.3234750, 48.8691909 2.3123689, 48.8313290 2.3203574, 48.8686720 2.3127647, 48.8671021 2.3110061, 48.8450099 2.3109341, 48.8412410 2.2855118, 48.8219932 2.3234435, 48.8211670 2.3407757, 48.8337204 2.3201626, 48.8338246 2.3197979, 48.8548000 2.3455200, 48.8468000 2.3358800, 48.8321456 2.3262397, 48.8608218 2.3464552, 48.8685507 2.2728757, 48.8563416 2.2955451, 48.8724483 2.2489997, 48.8687857 2.2448905, 48.8735492 2.2502871, 48.8706241 2.2491259, 48.8705077 2.2469076, 48.8729282 2.2477712, 48.8734222 2.2509255, 48.8670602 2.2431900, 48.8688615 2.2471136, 48.8902559 2.3155823, 48.8895081 2.3152790, 48.8909868 2.3143418, 48.8916562 2.3142685, 48.8644583 2.3274519, 48.8879169 2.3153097, 48.8879452 2.3155854, 48.8914702 2.3147632, 48.8697228 2.2704730, 48.8195477 2.3338738, 48.8643128 2.3266632, 48.8359580 2.3022176, 48.8237907 2.3314831, 48.8238319 2.3396086, 48.8612225 2.3119810, 48.8625039 2.3009824, 48.8880273 2.3373781, 48.8226090 2.3400474, 48.8239560 2.3366723, 48.8421923 2.2737321, 48.8386247 2.2767307, 48.8585066 2.2446643, 48.8869922 2.3168829, 48.8365007 2.3061630, 48.8408118 2.2763450, 48.8487971 2.2855992, 48.8340933 2.3218873, 48.8342849 2.3425292, 48.8479507 2.3346295, 48.8737508 2.2552546, 48.8572052 2.2975105, 48.8402419 2.2911223, 48.8647970 2.3376815, 48.8279008 2.3224596 +49.4423724 8.7523675, 49.4193055 8.7566134, 49.4243544 8.7433985, 49.4107056 8.6497352, 49.4280568 8.6821889, 49.3768611 8.6887922, 49.3909523 8.6618014, 49.4348207 8.6783577, 49.4373520 8.6781032, 49.3822208 8.6838537, 49.4034192 8.6873184, 49.4338016 8.6780993, 49.3896591 8.6874142, 49.3888889 8.6875000, 49.3802134 8.6735968, 49.3804699 8.6775416, 49.4107484 8.7061452, 49.4136995 8.7142286, 49.4089621 8.7022268, 49.4079105 8.6965175, 49.3737385 8.6825043, 49.3820375 8.6822639, 49.3771878 8.6772091, 49.3794686 8.6784008, 49.3795755 8.6786005, 49.4171575 8.7606858, 49.4125678 8.7457320, 49.4004143 8.6826744, 49.4084040 8.6996182, 49.3841060 8.6837074, 49.4151366 8.7617673, 49.4151843 8.7603553, 49.3842811 8.6648356, 49.3841632 8.6715765, 49.3834567 8.6610378, 49.3822796 8.6627256, 49.4332243 8.6805482, 49.4114686 8.7705695 +48.8376960 2.3062844, 48.8831159 2.3425480, 48.8868146 2.3594625, 48.8481953 2.3419715, 48.8467471 2.3717077, 48.8668168 2.3257587, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8717742 2.2984126, 48.8668308 2.3028826, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8715217 2.3076937, 48.8884053 2.3785210, 48.8278753 2.3796701, 48.8664199 2.2892440, 48.8604399 2.3007825, 48.8710343 2.3234791, 48.8730243 2.3445449, 48.8606580 2.3469337, 48.8234693 2.3306543, 48.8562375 2.3660049, 48.8516696 2.2978180, 48.8528343 2.3441184, 48.8504483 2.2926945, 48.8518053 2.3448347, 48.8549752 2.3046163, 48.8487972 2.3410105, 48.8683305 2.3330172, 48.8609042 2.3467975, 48.8662424 2.3373468, 48.8814057 2.3282568, 48.8495763 2.3798752, 48.8238179 2.3241127, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8848968 2.3034428, 48.8542680 2.3078406 +13 +yes and 48.8351292 2.3562281, 48.8464236 2.3893031, 48.8373537 2.3964048, 48.8331488 2.4001376, 48.8330078 2.3998567, 48.8332677 2.4004089, 48.8867895 2.2885547, 48.8354139 2.3821586, 48.8432434 2.3596915, 48.8450848 2.3534295, 48.8641948 2.2519087, 48.8500540 2.3441227, 48.8616892 2.3790811, 48.8496560 2.3680272, 48.8305377 2.2720167, 48.8395514 2.3065295, 48.8420600 2.3053955, 48.8421720 2.2967815, 48.8401918 2.3006179, 48.8450282 2.2929507, 48.8398942 2.2979896, 48.8374487 2.3105347, 48.8377201 2.3133283, 48.8297062 2.3047398, 48.8440427 2.2897951, 48.8408478 2.2793259, 48.8434931 2.2758364, 48.8367393 2.2909774, 48.8359451 2.2933502, 48.8421790 2.3874461, 48.8360274 2.3050768, 48.8286953 2.2978023, 48.8285373 2.2931025, 48.8296919 2.2940863, 48.8511073 2.2855775, 48.8675167 2.3683209, 48.8638778 2.3925953, 48.8656404 2.4002693, 48.8659412 2.3694804, 48.8634040 2.3715086, 48.8622029 2.3723267, 48.8302203 2.3168888, 48.8408346 2.3236435, 48.8347191 2.3318056, 48.8512248 2.2957731, 48.8521944 2.2943621, 48.8488726 2.2860228, 48.8579130 2.3487608, 48.8523360 2.3243813, 48.8486366 2.2721669, 48.8751482 2.3618270, 48.8481127 2.3024942, 48.8484406 2.3018807, 48.8461041 2.3114817, 48.8644561 2.3607493, 48.8397962 2.3188890, 48.8763282 2.2807983, 48.8530500 2.3593937, 48.8449475 2.3114724, 48.8920708 2.3904695, 48.8942774 2.3891609, 48.8817945 2.3985077, 48.8507689 2.3440015, 48.8516815 2.3455023, 48.8523775 2.3503425, 48.8519946 2.3522409, 48.8513517 2.3618565, 48.8184362 2.3552754, 48.8362221 2.3162881, 48.8330074 2.3494626, 48.8392009 2.4064731, 48.8769805 2.3464647, 48.8422649 2.3540627, 48.8355612 2.3366126, 48.8337517 2.3624196, 48.8446471 2.3876397, 48.8367494 2.3222577, 48.8505912 2.3500301, 48.8538795 2.3578768, 48.8351969 2.3143487, 48.8335509 2.3135841, 48.8317737 2.3132112, 48.8304603 2.3134095, 48.8310322 2.3142435, 48.8311554 2.3133491, 48.8300284 2.3081849, 48.8287886 2.3067783, 48.8281837 2.3095506, 48.8336730 2.3122360, 48.8321861 2.3101270, 48.8252893 2.3049173, 48.8263485 2.3036981, 48.8296871 2.3448788, 48.8263794 2.3378841, 48.8208919 2.3574747, 48.8202295 2.3605820, 48.8767521 2.3316112, 48.8474726 2.3606473, 48.8455556 2.2766342, 48.8527840 2.3280405, 48.8493982 2.4039131, 48.8483824 2.4046099, 48.8199080 2.3560004, 48.8185108 2.3588380, 48.8577042 2.2861053, 48.8542167 2.4012607, 48.8671726 2.3537967, 48.8391938 2.2827695, 48.8313641 2.3701044, 48.8346201 2.2931327, 48.8409081 2.3633286, 48.8367295 2.3083829, 48.8358496 2.3084018, 48.8260722 2.3751067, 48.8679735 2.2942228, 48.8940527 2.3521987, 48.8440650 2.2804391, 48.8287965 2.3678309, 48.8496773 2.3806672, 48.8943660 2.3265850, 48.8372087 2.2728424, 48.8343019 2.3315561, 48.8547344 2.3532107, 48.8386825 2.2804635, 48.8679732 2.3375739, 48.8658741 2.3882235, 48.8542571 2.3339531, 48.8636469 2.3890076, 48.8780700 2.3658796, 48.8779110 2.3661939, 48.8861503 2.2900421, 48.8476565 2.2703202, 48.8918920 2.3044865, 48.8819402 2.2839212, 48.8930339 2.3465149, 48.8442493 2.3618713, 48.8904794 2.3148008, 48.8360361 2.3736338, 48.8282763 2.3772782, 48.8286996 2.3495963, 48.8707480 2.3833236, 48.8783688 2.3517697, 48.8520789 2.3911492, 48.8684326 2.3835891, 48.8861122 2.3560831, 48.8953201 2.3642267, 48.8889585 2.3791325, 48.8347523 2.3305612, 48.8705109 2.4120037, 48.8656133 2.4102352, 48.8520048 2.4096147, 48.8620098 2.4069056, 48.8999881 2.3668831, 48.8992676 2.3707231, 48.8326739 2.2880933, 48.8499068 2.3597039, 48.8280720 2.3602842, 48.8509647 2.3132006, 48.8821787 2.3443674, 48.8670362 2.3915837, 48.8654230 2.3940998, 48.8987412 2.3383160, 48.8319801 2.3615094, 48.8729141 2.4118958, 48.8922809 2.3383088, 48.8373105 2.4444105, 48.8706396 2.3966301, 48.8860689 2.3534507, 48.8260181 2.3300185, 48.8409618 2.3923863, 48.8278872 2.3662217, 48.8411562 2.3876284, 48.8591648 2.4000813, 48.8360513 2.4015270, 48.8316250 2.2997138, 48.8853618 2.3438234, 48.8941071 2.3183132, 48.8433533 2.3274434, 48.8745269 2.3581995, 48.8703285 2.2473980, 48.8564818 2.3425186, 48.8574039 2.3402068, 48.8541136 2.3514875, 48.8824872 2.2905821, 48.8842267 2.2958761, 48.8834177 2.2943884, 48.8825183 2.2927200, 48.8818635 2.2915110, 48.8813406 2.2905313, 48.8805623 2.2890302, 48.8793397 2.2868575, 48.8636611 2.3266770, 48.8632971 2.3399434, 48.8698572 2.3499616, 48.8558126 2.3521945, 48.8557456 2.3521593, 48.8556731 2.3521203, 48.8558869 2.3518948, 48.8559264 2.3517383, 48.8557424 2.3524937, 48.8557666 2.3518421, 48.8556294 2.3524211, 48.8556875 2.3524612, 48.8558175 2.3518657, 48.8536880 2.3586041, 48.8537103 2.3583919, 48.8535362 2.3584735, 48.8537763 2.3584128, 48.8535482 2.3585727, 48.8536355 2.3583397, 48.8537217 2.3584917, 48.8536284 2.3584811, 48.8536734 2.3587034, 48.8534826 2.3585509, 48.8536229 2.3586219, 48.8536260 2.3584904, 48.8535844 2.3582601, 48.8535700 2.3583598, 48.8586993 2.3580083, 48.8479245 2.3445569, 48.8541350 2.3592271, 48.8537316 2.3594219, 48.8541524 2.3597661, 48.8539572 2.3595068, 48.8541683 2.3595383, 48.8583962 2.3631190, 48.8581939 2.3626749, 48.8579686 2.3627347, 48.8583563 2.3631779, 48.8580448 2.3627882, 48.8580275 2.3627026, 48.8580806 2.3626739, 48.8582721 2.3635065, 48.8580240 2.3627498, 48.8584649 2.3632890, 48.8580033 2.3626182, 48.8786418 2.4080281, 48.8755522 2.3550917, 48.8751615 2.3544328, 48.8230919 2.3642919, 48.8569321 2.3368280, 48.8536974 2.3345069, 48.8573993 2.3362477, 48.8495279 2.3376503, 48.8732975 2.3675484, 48.8854008 2.3771779, 48.8513374 2.3255916, 48.8512468 2.3253199, 48.8512782 2.3254145, 48.8512118 2.3260711, 48.8515585 2.3257353, 48.8503130 2.3274684, 48.8512584 2.3258038, 48.8504490 2.3274370, 48.8386523 2.3889151, 48.8545907 2.3309327, 48.8652201 2.3108977, 48.8652766 2.3107272, 48.8650627 2.3106421, 48.8655629 2.3112670, 48.8650739 2.3108669, 48.8653377 2.3111403, 48.8651682 2.3114083, 48.8653829 2.3117589, 48.8651929 2.3117131, 48.8650934 2.3111686, 48.8654196 2.3110307, 48.8659593 2.3176961, 48.8678332 2.3112451, 48.8688971 2.3128023, 48.8673349 2.3172538, 48.8755008 2.3828940, 48.8739928 2.3230341, 48.8740320 2.3230629, 48.8735809 2.3233998, 48.8735779 2.3229937, 48.8739615 2.3235538, 48.8760409 2.3203279, 48.8759763 2.3201282, 48.8757691 2.3198438, 48.8759840 2.3210144, 48.8758052 2.3200540, 48.8758462 2.3206481, 48.8758771 2.3198323, 48.8765224 2.3182782, 48.8753193 2.3027355, 48.8677108 2.3125120, 48.8201105 2.3624944, 48.8220432 2.3642673, 48.8226415 2.3622255, 48.8693255 2.3668597, 48.8289643 2.3792437, 48.8449152 2.3044654, 48.8300278 2.3796568, 48.8755170 2.3694090, 48.8853450 2.3561989, 48.8471006 2.3769323, 48.8655155 2.2971441, 48.8652948 2.2971715, 48.8652823 2.2967167, 48.8654841 2.2962849, 48.8652479 2.2962681, 48.8683188 2.2930354, 48.8604525 2.2880625, 48.8605267 2.2880008, 48.8627696 2.2916697, 48.8698930 2.2899388, 48.8716220 2.2749197, 48.8690899 2.2727856, 48.8687423 2.2723416, 48.8689108 2.2741672, 48.8648971 2.2751646, 48.8998976 2.3893835, 48.8630124 2.2677048, 48.8629051 2.2680397, 48.8633140 2.2666168, 48.8636323 2.2682044, 48.8615851 2.2864292, 48.8615794 2.2867731, 48.8616911 2.2869132, 48.8588924 2.2683263, 48.8587414 2.2692019, 48.8590933 2.2688225, 48.8586749 2.2680700, 48.8588767 2.2680306, 48.8593199 2.2684054, 48.8575990 2.2677108, 48.8583571 2.2683595, 48.8581135 2.2692243, 48.8576707 2.2696195, 48.8581046 2.2675956, 48.8601343 2.2700283, 48.8596268 2.2653877, 48.8557318 2.2836801, 48.8551825 2.2807231, 48.8519099 2.2752742, 48.8529532 2.2707036, 48.8529002 2.2708132, 48.8529916 2.2706479, 48.8527792 2.2706246, 48.8530423 2.2705255, 48.8553159 2.2626202, 48.8552063 2.2625500, 48.8551894 2.2629495, 48.8550245 2.2628356, 48.8528483 2.2614326, 48.8550956 2.2624788, 48.8553828 2.2622678, 48.8531452 2.2607633, 48.8552194 2.2621567, 48.8531719 2.2611272, 48.8529486 2.2609794, 48.8530452 2.2611270, 48.8530341 2.2615476, 48.8507008 2.2599244, 48.8509619 2.2596975, 48.8508609 2.2596331, 48.8509929 2.2593792, 48.8510477 2.2596554, 48.8508195 2.2595030, 48.8509003 2.2599092, 48.8509216 2.2600752, 48.8507990 2.2598438, 48.8508207 2.2599787, 48.8493697 2.2587931, 48.8502593 2.2592782, 48.8498167 2.2590625, 48.8876549 2.3662110, 48.8474639 2.2555696, 48.8467061 2.2526391, 48.8453758 2.2661190, 48.8455852 2.2664514, 48.8974507 2.3425297, 48.8859281 2.2938410, 48.8351248 2.3367476, 48.8382466 2.2544534, 48.8373075 2.2625642, 48.8372169 2.2541442, 48.8356347 2.2548227, 48.8370038 2.2552072, 48.8368363 2.2545512, 48.8361719 2.2547833, 48.8370647 2.2544954, 48.8361382 2.2544636, 48.8362975 2.2551966, 48.8358411 2.2554380, 48.8364551 2.2542017, 48.8369437 2.2543040, 48.8374203 2.2544441, 48.8369453 2.2546760, 48.8372631 2.2543120, 48.8377362 2.2545946, 48.8370739 2.2541744, 48.8364710 2.2553514, 48.8382416 2.2532683, 48.8378409 2.2540230, 48.8372742 2.2538709, 48.8378364 2.2533430, 48.8378424 2.2533197, 48.8382456 2.2529161, 48.8378018 2.2531847, 48.8372557 2.2535240, 48.8378883 2.2534656, 48.8382541 2.2525868, 48.8382501 2.2532082, 48.8487899 2.3793188, 48.8477573 2.3803729, 48.8217424 2.4565575, 48.8463599 2.3494865, 48.8464717 2.3496513, 48.8473102 2.3497086, 48.8471272 2.3492826, 48.8470942 2.3497031, 48.8464506 2.3494656, 48.8473491 2.3493744, 48.8472362 2.3504442, 48.8463754 2.3496755, 48.8448630 2.3888016, 48.8412767 2.3446263, 48.8418986 2.3448319, 48.8430285 2.3457320, 48.8499400 2.3439999, 48.8500889 2.3439112, 48.8500543 2.3442977, 48.8501932 2.3441839, 48.8390797 2.3159696, 48.8491484 2.3459550, 48.8493382 2.3452413, 48.8489868 2.3463430, 48.8478743 2.3501785, 48.8473060 2.3509143, 48.8481166 2.3499634, 48.8475035 2.3507573, 48.8479660 2.3497343, 48.8477977 2.3505300, 48.8480530 2.3496667, 48.8474869 2.3505183, 48.8431403 2.3401946, 48.8434620 2.3397215, 48.8432351 2.3396888, 48.8433813 2.3403305, 48.8435966 2.3400886, 48.8396950 2.3506224, 48.8397466 2.3505403, 48.8595609 2.4061357, 48.8464572 2.2555444, 48.8387444 2.3536989, 48.8592098 2.3120859, 48.8577775 2.3104707, 48.8605291 2.3122248, 48.8591470 2.3139691, 48.8619290 2.3123778, 48.8604807 2.3141063, 48.8618975 2.3141498, 48.8575867 2.3107745, 48.8566572 2.3144108, 48.8503174 2.3136601, 48.8615696 2.3157605, 48.8615461 2.3162154, 48.8617384 2.3165555, 48.8588648 2.3195828, 48.8591991 2.3198386, 48.8589516 2.3199326, 48.8591104 2.3194881, 48.8590317 2.3197093, 48.8516509 2.4114806, 48.8856628 2.3274123, 48.8785098 2.3366780, 48.8831619 2.3298581, 48.8771711 2.3279603, 48.8598335 2.4007863, 48.8415680 2.3861426, 48.8341398 2.4671783, 48.8847174 2.3600292, 48.8846714 2.3586794, 48.8702970 2.3751231, 48.8492918 2.3790002, 48.8489882 2.3952688, 48.8490263 2.3964375, 48.8481054 2.3948858, 48.8486252 2.3956295, 48.8483991 2.3947937, 48.8486225 2.3969352, 48.8491077 2.3957761, 48.8485746 2.3962730, 48.8481524 2.3961969, 48.8481973 2.3955582, 48.8487629 2.3968430, 48.8476824 2.3961677, 48.8477494 2.3954067, 48.8479139 2.3967703, 48.8603366 2.3852102, 48.8596119 2.3846977, 48.8622353 2.3721828, 48.8360411 2.3173742, 48.8560581 2.3767899, 48.8521163 2.3812457, 48.8526519 2.3815603, 48.8411342 2.2856427, 48.8539515 2.3908187, 48.8503522 2.3834594, 48.8548949 2.3945985, 48.8253516 2.3692146, 48.8452398 2.3678042, 48.8504058 2.3771320, 48.8390546 2.3311733, 48.8577820 2.3204968, 48.8575323 2.3205785, 48.8575371 2.3206176, 48.8576650 2.3209936, 48.8507503 2.3582429, 48.8508750 2.3597899, 48.8508136 2.3598209, 48.8507942 2.3597182, 48.8508264 2.3598972, 48.8507417 2.3598443, 48.8472198 2.3495064, 48.8467141 2.3363649, 48.8435465 2.3852894, 48.8442970 2.4004073, 48.8441393 2.4002029, 48.8442799 2.3992758, 48.8441345 2.4008734, 48.8462482 2.4043824, 48.8449582 2.4022524, 48.8440647 2.4019207, 48.8445792 2.4021085, 48.8412134 2.4097979, 48.8420942 2.4102434, 48.8352063 2.4075103, 48.8358723 2.4081721, 48.8345779 2.4067954, 48.8509192 2.4001701, 48.8504898 2.4015516, 48.8423893 2.3858725, 48.8584020 2.4148408, 48.8277602 2.3828768, 48.8320347 2.3782213, 48.8315098 2.4346896, 48.8848595 2.3386885, 48.8412236 2.3969052, 48.8453157 2.3799237, 48.8435493 2.3837453, 48.8573837 2.3601544, 48.8575209 2.3599403, 48.8877554 2.3437578, 48.8875022 2.3418023, 48.8709905 2.3876186, 48.8712499 2.3865872, 48.8940855 2.3497583, 48.8769683 2.3932829, 48.8757964 2.3945341, 48.8658251 2.3553640, 48.8413198 2.2748064, 48.8278323 2.3521871, 48.8882224 2.3372429, 48.8292652 2.3801401, 48.8715545 2.3849798, 48.8962254 2.3430597, 48.8408464 2.4027871, 48.8410642 2.3999536, 48.8687309 2.3881340, 48.8649511 2.2530414, 48.8225778 2.3575432, 48.8628338 2.3442528, 48.8372405 2.3042256, 48.8999988 2.3452350, 48.8997261 2.3383715, 48.8419590 2.3450234, 48.8417733 2.3449103, 48.8420266 2.3447466, 48.8418461 2.3446370, 48.8419269 2.3449043, 48.8418815 2.3447553, 48.8418569 2.3448693, 48.8419534 2.3447916, 48.8607017 2.4053074, 48.8615336 2.4005433, 48.8579598 2.4061305, 48.8193306 2.3478518, 48.8211963 2.3546179, 48.8239248 2.3187110, 48.8283030 2.3054034, 48.8346932 2.2839353, 48.8863780 2.3370391, 48.8561889 2.4010520, 48.8559855 2.4016766, 48.8228204 2.3479528, 48.8795426 2.3838037, 48.8568463 2.3622093, 48.8874917 2.3163563, 48.8926891 2.3614786, 48.8514129 2.2617896, 48.8553965 2.2667281, 48.8874288 2.3249629, 48.8381941 2.2769278, 48.8761664 2.4066619, 48.8956323 2.3750100, 48.8940037 2.3842068, 48.8698167 2.3982143, 48.8850845 2.3820568, 48.8867647 2.3706778, 48.8215755 2.3231347, 48.8922801 2.2985255, 48.8277209 2.3673728, 48.8919490 2.3611955, 48.8993353 2.3751905, 48.8924402 2.3618464, 48.8250526 2.3031349, 48.8394527 2.2887713, 48.8397526 2.2892403, 48.8304951 2.3579059, 48.8439509 2.3464037, 48.8444056 2.3818903, 48.8463200 2.3778508, 48.8896291 2.3809948, 48.8562680 2.2897148, 48.8623543 2.2993705, 48.8916885 2.3316437, 48.8514171 2.2950534, 48.8521282 2.3474875, 48.8442489 2.2687302, 48.8753294 2.3995485, 48.8936357 2.3633580, 48.8734480 2.3963136, 48.8699317 2.3936039, 48.8958220 2.3610383, 48.8505098 2.2973259, 48.8184109 2.3602454, 48.8186634 2.3606140, 48.8187490 2.3602341, 48.8238391 2.3533046, 48.8277279 2.3525754, 48.8275462 2.3652745, 48.8463173 2.2778146, 48.8449428 2.3048536, 48.8363188 2.3596767, 48.8360399 2.3600461, 48.8362252 2.3599768, 48.8361032 2.3597862, 48.8361026 2.3599631, 48.8362619 2.3597483, 48.8647260 2.3907516, 48.8950355 2.3535477, 48.8602550 2.4037142, 48.8363205 2.3181423, 48.8859798 2.3610072, 48.8608375 2.4099106, 48.8716353 2.3952381, 48.8682927 2.4085101, 48.8722712 2.4129546, 48.8553708 2.4093495, 48.8344135 2.2848971, 48.8815777 2.4002187, 48.8793948 2.4006775, 48.8753046 2.3029139, 48.8826210 2.3950114, 48.8894871 2.3736631, 48.8880610 2.3986423, 48.8433823 2.4106521, 48.8399096 2.2916834, 48.8660296 2.3806446, 48.8785130 2.3934603, 48.8655220 2.3810316, 48.8739040 2.3733848, 48.8487850 2.4157805, 48.8495781 2.4138864, 48.8780150 2.3926470, 48.8571600 2.3603887, 48.8924116 2.3120541, 48.8926842 2.3110463, 48.8919306 2.3133343, 48.8922415 2.3131983, 48.8919686 2.3126774, 48.8857748 2.3927149, 48.8206218 2.3326544, 48.8558991 2.3855866, 48.8745229 2.3771319, 48.8571897 2.3956763, 48.8574471 2.3878731, 48.8338119 2.3327247, 48.7854039 2.2942040, 48.8793706 2.3088907, 48.8887726 2.3631601, 48.8428700 2.2923037, 48.8486015 2.3919565, 48.8204716 2.3351483, 48.8222361 2.3380093, 48.8617898 2.3160689, 48.8560657 2.2978323 +Ocean Kitchen Bar and Grill +yes +Mayfield Gardens, Roxburgh Place, Sunnyside, Bristo Place, Morningside Road + +yes +Björn Steiger Stiftung, Sparkasse Rhein Neckar Nord, Björn-Steiger-Stiftung, Straßenmeisterei, Deutsche Telekom AG, Rettungsstiftung Jürgen Pegler e.V., Autobahnmeisterei, Volksbank, Deutsche Telekom, T-Com, Heidenheimer Zeitung, Björn-Steiger Stiftung +Synagogue Beit Yossef, Synagogue, Ohaley Yaakov, Chapelle Saint-Vincent de Paul, Chapelle de l'Agneau de Dieu, Église Adventiste du 7e jour Paris-Sud, Amicale des Teo Chew en France, Synagogue Avoth Ouvanim, Chapelle Saint-Bernard, Mosquée 'Ali Ibn Al Khattab, Mosquée Al-Fatih, Mosquée de Paris 15ème, Association Culturelle des Musulmans, Maison Verte, Aumônerie des Grands Moulins, Union Libérale Israélite de France, Chapelle Sainte-Marie, Église Notre-Dame de Chaldée, Temple Sri Manicka Vinayakar, Chapelle Orthodoxe, Chapelle, Autel de culte du Bouddha, Centre Évangélique Philadelphia, Synagogue Saint-Lazare, synagogue Chivté Israël, Église Orthodoxe Grecque, synaguogue cadet, Adath Shalom, Église évangélique du tabernacle, Calvary Chapel, Espace Boudhiste Tibétain, Église Protestante - Paris Alésia, Chapelle Saint-Paul, Église baptiste du centre, Salle du Royaume des Témoins de Jéhovah de Paris Clichy, Chapelle Saint-Martin de Porrès, Chapelle catholique des 4 Évangélistes, Synagogue Beth-El Nevé chalom, Synagogue. Oratoire de la fondation Rothschild, Synagogue Etz Haim-Beit Hamidrach, Autel de culte du Bouddha, Chapelle des Franciscaines, Centre Saint-Paul, Chapelle Notre-Dame de la Confiance, Chapelle Sainte-Marie, Église protestante évangélique des Ternes, Église Adventiste du 7ème Jour, Église Sainte-Colette des Buttes-Chaumont, Centre Rambam, Beth Hamidrach Lamed, Foyer Culturel Myriam Zana, Abdoulmajid, Mosquée A Daawa, Église Catholique Russe, Beth Habad, Chapelle, Église Mariavite Sainte-Marie, Chapelle Saint-André, Chapelle Saint-Louis, Crypte du Martyrium de Saint-Denis, Chapelle, masjid la Villette, Chapelle, Église Saint-Lambert de Vaugirard, Église Saint-Léon, Église Saint-Sulpice, Église Saint-Pierre de Montrouge, Église Saint-Séverin, Église Saint-Julien-le-Pauvre, Basilique du Sacré-Cœur, Église Saint-Jean-Baptiste de Grenelle, Église Saint-Pierre de Montmartre, Église Notre-Dame de l'Arche d'Alliance, Église Saint-Ignace, Église Saint-Médard, Église Notre-Dame-de-Lorette, Temple de l'Oratoire du Louvre, Église Notre-Dame de Clignancourt, Église Saint-Roch, Saint-Nicolas du Chardonnet, Chapelle Notre-Dame-de-la-Compassion, Église Sainte-Hélène, Synagogue Charles Liché, Église de la Sainte-Trinité, Église Saint-Eugène Sainte-Cécile, Chapelle Ozanam, Église luthérienne de la Résurrection, Église Saint-Christophe de Javel, Église Saint-Eustache, Église Saint-Germain l'Auxerrois, Église Saint-Leu - Saint-Gilles, Chapelle Notre-Dame de Grâce, Église Polonaise Notre-Dame de l'Assomption, Église de la Madeleine, Basilique Notre-Dame-des-Victoires, Église Notre-Dame-de-Bonne-Nouvelle, Église Saint-Louis-en-l'Île, Église Saint-Étienne-du-Mont, Église Saint-Éphrem-le-Syriaque, Église Orthodoxe Roumaine des Saints Archanges, Église Saint-Gervais, Église Saint-Merry, Église luthérienne des Billettes, Grande Mosquée de Paris, Église Notre-Dame-des-Blancs-Manteaux, Synagogue, Église Saint-Paul - Saint-Louis, Chapelle, Temple Sainte-Marie, Église Saint-Nicolas des Champs, Ancienne Église Saint-Martin des Champs, Synagogue Nazareth, Église Sainte-Élisabeth, Synagogue Vauquelin, Chapelle de la congrégation du Saint-Esprit, Cathédrale Arménienne Sainte-Croix, Église Saint-Denis du Saint-Sacrement, Église du Val-de-Grâce, Église Luthérienne Saint-Marcel, Église Saint-Jacques-du-Haut-Pas, Église Saint-Germain des Prés, Cathédrale Ukrainienne Saint-Vladimir-le-Grand, Chapelle Notre-Dame de la Sagesse, Pagode de Vincennes, Église Saint-Vincent-de-Paul, Centre Culturel Islamique, Association Culturelle Islamique Kurdes, Église Saint-Laurent, Chapelle de l'hôpital Saint-Louis, Église Saint-Martin des Champs, Église Saint-Joseph-Artisan, Temple de la Rencontre, Église Saint-Jean-Baptiste de Belleville, Église Notre-Dame-de-l'Assomption des Buttes-Chaumont, Église luthérienne Saint-Pierre, Église Notre-Dame-de-Fatima, Église Saint-François-d'Assise, Église Sainte-Claire d'Assise, Temple antoiniste, Église Saint-Serge, Église Saint-Georges de la Villette, Église Saint-Joseph des Carmes, Église Saint-Thomas d'Aquin, Église Saint-Ambroise, Association Foi et Pratique - Mosquée OMAR, Chapelle Notre-Dame-Réconciliatrice de la Salette, Synagogue Don Isaac Abravanel, Basilique Notre-Dame du Perpétuel Secours, Mosquée Abou Baker Assiddiq, Église protestante chinoise de Paris, Église Notre-Dame d'Espérance, Temple protestant du Foyer de l'Âme, Église Réformée du Luxembourg, Église Saint-Jacques Saint-Christophe, Église Notre-Dame des Foyers, Église Notre-Dame des Champs, Basilique Sainte-Clothilde, Cathédrale Saint-Louis des Invalides, Chapelle de Jésus-Enfant, Église Anglicane Saint-Michel, Église Réformée du Saint-Esprit, Temple de Pentemont, Église Saint-Augustin, Chapelle Expiatoire, Église Saint-André de l'Europe, Église Saint-Philippe du Roule, Chapelle Baltard, Église Saint-François-Xavier, Chapelle Notre-Dame de l'Annonciation, Église Américaine, Église Saint-Pierre du Gros Caillou, Église Saint-Louis-d'Antin, Deutsche Evangelische Christuskirche Paris, Church of Scotland, Chapelle Notre-Dame de Consolation, Cathédrale Arménienne Saint-Jean-Baptiste, Grande Synagogue de la Victoire, Consistoire, Synagogue Buffault, Cathédrale Américaine de la Sainte-Trinité, Église Luthérienne Saint-Jean, Église Réformée chinoise de Belleville, Église Notre-Dame-des-Otages, Église Notre-Dame-de-la-Croix, Église du Cœur Eucharistique de Jésus, Synagogue, Église Saint-Germain-de-Charonne, Église Saint-Gabriel, Église Saint-Jean-Bosco, Chapelle de l'Est, Église Saint-Cyrille et Saint-Méthode, Chapelle du Corpus-Christi, Église Protestante Danoise, Cathédrale Orthodoxe Russe Saint-Alexandre Nevsky, Saint-Joseph's Church (mission anglophone), Église Saint-Jospeh des Épinettes, Temple des Batignolles, Église Saint-Michel des Batignolles, Église Sainte-Marie des Batignolles, Église de l'Immaculée Conception, Église Sainte-Geneviève des Grandes-Carrières, Église Sainte-Rita, Église Saint-Jean de Montmartre, Église Saint-Bernard de La Chapelle, Khalid Ibn Walid, Institut des Cultures d'Islam, Chapelle Notre-Dame de la Paix, Église Saint-Éloi, Église Notre-Dame du Bon Conseil, Église Serbe Saint-Sava, Église Notre-Dame de Bercy, Église Orthodoxe de France, Église réformée Port-Royal Quartier Latin, Église Sainte-Rosalie, Église Saint-Albert le Grand, Église Sainte-Anne de la Maison Blanche, Temple Antoiniste de Paris, Église Luthérienne de la Trinité, Église Saint-Marcel, Chapelle Saint-Louis de la Salpêtrière, Église Notre-Dame de Chine, Église Notre-Dame de la Gare, Église Saint-Hippolyte, Cathédrale Saint-Étienne, Église Saint-Pierre de Chaillot, Église Anglicane Saint-Georges, Église Saint-Dominique, Église Notre-Dame-du-Travail, Paroisse de Plaisance, Église Notre-Dame-du-Rosaire, Église Évangélique Libre, Église de Saint-Antoine de Padoue, Église Notre-Dame-Réconciliatrice, Chapelle Notre-Dame-du-Lys, Église Orthodoxe Saint-Séraphin de Sarov, Église Saint-Jean-Baptiste-de-La-Salle, Église Saint-Honoré d'Eylau, Église Réformée de l'Annonciation, Mission Catholique Espagnole - Iglesia Española, Église Notre-Dame-de-l'Assomption de Passy, Église Notre-Dame de Grâce de Passy, Église Saint-Denys de la Chapelle, Chapelle Sainte-Thérèse, Église Saint-François-de-Sales (ancienne église), Église Luthérienne de l'Ascension, Temple Réformé de l'Etoile, Église Sainte-Odile, Église Saint-Charles-de-Monceau, Église Saint-Ferdinand des Ternes, Église du Christ, Église Saint-François-de-Sales (nouvelle église), Église Notre-Dame d'Auteuil, Chapelle Sainte-Bernadette, Église Saint-François de Molitor, Église Polonaise Sainte-Geneviève, Église Sainte-Jeanne-de-Chantal, Chapelle de la Visitation, Église Saint-Antoine des Quinze-Vingts, Chapelle Sainte-Ursule, Église Notre-Dame-du-Liban, Chapelle de l'Épiphanie, Église Notre-Dame-de-Grâce de Passy, Chapelle Laennec, Église Notre-Dame-de-Nazareth, Église nouvelle Saint-Honoré d'Eylau, Chapelle Saint-François d'Assise, Chapelle Sainte-Rita, Basilique Sainte-Jeanne-d’Arc, Église du dôme, Chapelle Notre-Dame-du-Saint-Sacrement, Église Notre-Dame-de-Lourdes, Église Saint-Joseph des Nations, Église Sainte-Marguerite, Église Sainte-Marguerite, MJLF, Chapelle Sainte-Jeanne-d'Arc, Église du Bon Secours, Église du Saint-Esprit, Chapelle, Prieuré Saint-Benoît, Église Orthodoxe des Trois-Saints-Docteurs, Église Protestante Suéduoise, Chapelle de la clinique Blomet, Église du Bon Pasteur, Église Saint-Jean des Deux Moulins, Chapelle, Église luthérienne Saint-Paul, Chapelle, Chapelle Saint-Yves, Chapelle, Chapelle, Chapelle du Sacré-Cœur-de-Jésus-Roi-de-France, Kagyu-Dzong, Cathédrale Notre-Dame de Paris, Chapelle Saint-Charles, Chapelle, Chapelle Notre-Dame des Anges, Chapelle Notre-Dame de la Médaille Miraculeuse, Chapelle des Catéchismes, Communauté évangélique Paris Daumesnil, Église Saint-Luc, Église Notre-Dame-de-La-Salette, Sainte-Chapelle +Römischer Tempel, Dicker Turm and 49.4258222 8.7062319, 49.4107663 8.7140684 +yes +5 +Iwo Jima, Annobón Province, Cocos (Keeling) Islands, Cocos Island, Solitude Island, Tromelin Island, Clipperton Island, Bouvet Island, Saint Helena, Ascension, Atlasov Island, Rudolf Island, Howland Island, Easter Island, Robinson Crusoe Island +55.9652866 -3.3173288, 55.9474486 -3.1859655, 55.9547783 -3.1976132, 55.9512066 -3.1850870, 55.9426432 -3.2801965, 55.9426063 -3.2085087, 55.9348214 -3.0945488, 55.9366417 -3.1570870, 55.9733698 -3.1917230, 55.9446070 -3.1860121, 55.9444906 -3.1858127, 55.9450275 -3.1853002, 55.9395675 -3.2038566, 55.9355709 -3.2102528, 55.9395567 -3.2208158, 55.9395988 -3.2206602, 55.9318108 -3.2374274, 55.9282620 -3.2003920, 55.9445252 -3.1859176, 55.9480977 -3.1860003, 55.9471995 -3.1855061, 55.9468154 -3.1855780, 55.9440261 -3.1820823, 55.9406312 -3.2039275, 55.9402760 -3.2038110, 55.9434664 -3.1831055, 55.9434196 -3.1842460, 55.9425019 -3.1793852, 55.9434281 -3.1802599, 55.9774101 -3.1718543, 55.9628304 -3.1997070, 55.9630892 -3.2001803, 55.9479312 -3.1940298, 55.9488004 -3.1932865, 55.9488010 -3.1925834, 55.9619662 -3.2352523, 55.9503936 -3.1748495, 55.9500635 -3.1892496, 55.9534622 -3.1963003, 55.9810888 -3.1948604, 55.9813469 -3.1948497, 55.9775639 -3.1689368, 55.9763814 -3.1707551, 55.9610381 -3.1807131, 55.9760230 -3.1696703, 55.9770082 -3.1723631, 55.9771560 -3.1735460, 55.9771245 -3.1733636, 55.9825548 -3.1951570, 55.9770419 -3.1725751, 55.9770800 -3.1727697, 55.9757237 -3.1680744, 55.9768212 -3.1696962, 55.9696870 -3.1601851, 55.9746544 -3.1708033, 55.9754457 -3.1703672, 55.9748068 -3.1719428, 55.9764963 -3.1714060, 55.9612898 -3.1713969, 55.9734916 -3.1731211, 55.9734370 -3.1678545, 55.9766362 -3.1692569, 55.9581662 -3.2088898, 55.9584860 -3.2082072, 55.9585295 -3.2049192, 55.9561318 -3.2024897, 55.9607716 -3.1994845, 55.9771770 -3.1718400, 55.9624799 -3.1788559, 55.9721688 -3.1727029, 55.9734119 -3.1676688, 55.9545214 -3.1981041, 55.9542551 -3.1979757, 55.9356483 -3.2096691, 55.9364920 -3.2084274, 55.9453065 -3.1835012, 55.9456929 -3.2031564, 55.9450873 -3.2046445, 55.9463793 -3.2017812, 55.9468801 -3.2026112, 55.9467570 -3.2027078, 55.9460060 -3.2052924, 55.9461895 -3.1912537, 55.9642340 -3.2119376, 55.9760874 -3.1678906, 55.9736874 -3.1725679, 55.9751258 -3.1658656, 55.9460137 -3.1821143, 55.9587464 -3.2103338, 55.9455352 -3.1866707, 55.9456867 -3.1862318, 55.9445731 -3.1850966, 55.9445434 -3.1856701, 55.9478908 -3.1920045, 55.9477659 -3.1919316, 55.9442896 -3.2708207, 55.9438150 -3.2706214, 55.9827744 -3.3988810, 55.9541180 -3.1855740, 55.9807233 -3.1953798, 55.9525178 -3.1990765, 55.9527244 -3.1978512, 55.9796500 -3.3006918, 55.9458340 -3.1851287, 55.9456579 -3.1864695, 55.9506084 -3.1874617, 55.9500934 -3.1836054, 55.9498204 -3.1834215, 55.9508055 -3.1777162, 55.9527611 -3.2030077, 55.9690445 -3.1682228, 55.9567027 -3.2027842, 55.9466421 -3.1371546, 55.9565342 -3.1985297, 55.9567499 -3.1986451, 55.9811460 -3.1776490, 55.9806886 -3.1784936, 55.9809733 -3.1781568, 55.9809041 -3.1782848, 55.9820170 -3.1763600, 55.9465573 -3.2166040, 55.9805956 -3.1934566, 55.9570779 -3.1884191, 55.9480209 -3.1999685, 55.9477134 -3.1957934, 55.9436378 -3.1937085, 55.9461006 -3.2053014, 55.9492755 -3.2122776, 55.9337528 -3.2109407, 55.9334827 -3.1781544, 55.9382383 -3.1924272, 55.9506835 -3.1901263, 55.9488068 -3.1956257, 55.9436353 -3.2027965, 55.9329934 -3.3152155, 55.9777657 -3.1686490, 55.9899019 -3.3868462, 55.9425676 -3.2218450, 55.9559071 -3.2028055, 55.9368453 -3.2080850, 55.9391854 -3.2049304, 55.9403048 -3.2042415, 55.9354188 -3.2098186, 55.9517680 -3.1097590, 55.9524705 -3.1146567, 55.9519693 -3.1107353, 55.9524356 -3.1964223, 55.9454688 -3.1847519, 55.9567479 -3.1931126, 55.9434972 -3.1847056, 55.9444992 -3.1839329, 55.9462089 -3.1892186, 55.9453153 -3.1845999, 55.9449737 -3.1886697, 55.9620904 -3.1793576, 55.9537919 -3.1943636, 55.9371166 -3.1786816, 55.9435115 -3.2193949, 55.9437549 -3.2193403, 55.9453892 -3.2171020, 55.9452977 -3.2171685, 55.9462869 -3.2159227, 55.9462644 -3.2147801, 55.9460218 -3.2124627, 55.9463199 -3.2060028, 55.9465542 -3.2158573, 55.9464746 -3.2019795, 55.9464280 -3.2034977, 55.9486448 -3.2062281, 55.9485519 -3.2140339, 55.9468350 -3.2051684, 55.9469209 -3.2045658, 55.9467269 -3.2047624, 55.9485678 -3.1946201, 55.9486421 -3.1944619, 55.9489611 -3.1926806, 55.9457412 -3.2099832, 55.9495552 -3.2091699, 55.9506581 -3.2090223, 55.9505668 -3.2093105, 55.9505740 -3.2087140, 55.9582298 -3.2268150, 55.9434367 -3.2195949, 55.9459910 -3.2187750, 55.9462622 -3.2145897, 55.9586309 -3.1903764, 55.9465828 -3.2144286, 55.9458930 -3.2127420, 55.9462614 -3.2149075, 55.9469392 -3.2157459, 55.9466500 -3.2155710, 55.9489596 -3.2105228, 55.9510015 -3.2097266, 55.9460126 -3.2207351, 55.9505780 -3.2098210, 55.9508641 -3.2099881, 55.9575799 -3.2074392, 55.9580520 -3.2065578, 55.9591363 -3.2144382, 55.9582616 -3.2096030, 55.9581637 -3.2094698, 55.9580113 -3.2092624, 55.9585716 -3.1897695, 55.9578403 -3.1887677, 55.9439438 -3.2188704, 55.9436529 -3.2196006, 55.9425916 -3.2009298, 55.9427456 -3.2017142, 55.9420344 -3.2038063, 55.9418227 -3.2036511, 55.9416648 -3.2030441, 55.9460150 -3.1908920, 55.9470537 -3.1917202, 55.9473009 -3.1911302, 55.9411221 -3.2032805, 55.9392380 -3.2127613, 55.9460599 -3.2291804, 55.9460417 -3.2226604, 55.9410190 -3.2179980, 55.9579150 -3.2068124, 55.9577295 -3.2066473, 55.9573896 -3.2066141, 55.9572260 -3.2056240, 55.9537733 -3.2038799, 55.9507047 -3.1827880, 55.9510404 -3.1846922, 55.9502539 -3.1878479, 55.9475890 -3.2135160, 55.9479040 -3.2136850, 55.9578281 -3.2064585, 55.9462100 -3.2053390, 55.9569075 -3.1939006, 55.9530794 -3.2035262, 55.9486670 -3.1956973, 55.9442170 -3.2180125, 55.9546639 -3.1975541, 55.9544395 -3.1974380, 55.9542190 -3.1973239, 55.9541769 -3.1973021, 55.9540060 -3.1972137, 55.9541028 -3.1972638, 55.9541197 -3.1979103, 55.9530164 -3.2013793, 55.9525837 -3.2041424, 55.9523991 -3.2052223, 55.9522681 -3.2060091, 55.9522441 -3.2061536, 55.9499431 -3.2078244, 55.9429955 -3.2045906, 55.9430360 -3.2042420, 55.9516199 -3.2027318, 55.9518670 -3.2035606, 55.9519125 -3.2029032, 55.9536150 -3.1883633, 55.9499018 -3.1935768, 55.9498329 -3.1910920, 55.9496897 -3.1897241, 55.9500792 -3.1891087, 55.9497794 -3.1891002, 55.9498804 -3.1883969, 55.9507029 -3.1895380, 55.9510625 -3.1882551, 55.9511343 -3.1876851, 55.9504690 -3.1879562, 55.9508281 -3.1833677, 55.9499013 -3.1834760, 55.9480205 -3.1941463, 55.9475711 -3.1964625, 55.9475446 -3.1965793, 55.9474740 -3.1968911, 55.9468749 -3.2055938, 55.9465925 -3.2054865, 55.9462020 -3.2059371, 55.9459497 -3.2061088, 55.9535003 -3.2044865, 55.9535044 -3.2004011, 55.9537081 -3.2003007, 55.9540962 -3.2002450, 55.9537909 -3.1998247, 55.9538415 -3.1995340, 55.9540148 -3.1994866, 55.9526921 -3.1998924, 55.9514403 -3.2044562, 55.9513975 -3.2047070, 55.9460248 -3.2126102, 55.9440530 -3.2064880, 55.9764471 -3.1711406, 55.9803418 -3.1792151, 55.9804368 -3.1789769, 55.9435020 -3.2024352, 55.9432539 -3.2025680, 55.9518969 -3.2025598, 55.9570492 -3.1932499, 55.9466960 -3.2046149, 55.9529509 -3.1973404, 55.9524196 -3.1984036, 55.9526199 -3.1984725, 55.9522016 -3.2030725, 55.9571910 -3.2077708, 55.9446418 -3.1854453, 55.9898690 -3.3921144, 55.9901625 -3.3961304, 55.9509598 -3.2058075, 55.9579896 -3.1895662, 55.9563319 -3.1887212, 55.9581296 -3.1899414, 55.9343180 -3.1037178, 55.9650007 -3.1762651, 55.9556173 -3.1925320, 55.9540378 -3.1993360, 55.9423736 -3.2037017, 55.9407524 -3.2038350, 55.9416779 -3.2026669, 55.9265283 -3.2084003, 55.9430311 -3.2839568, 55.9426584 -3.2803285, 55.9414320 -3.2180926, 55.9391841 -3.2128654, 55.9751211 -3.1634618, 55.9233856 -3.1748328, 55.9398684 -3.2196073, 55.9400581 -3.2188980, 55.9398220 -3.2197803, 55.9582132 -3.2095372, 55.9497095 -3.2073063, 55.9514958 -3.2041313, 55.9400291 -3.1697303, 55.9413456 -3.1835248, 55.9530272 -3.1892542, 55.9477347 -3.1956994, 55.9497047 -3.1880533, 55.9534027 -3.1920297, 55.9544769 -3.1974573, 55.9539860 -3.1972034, 55.9420361 -3.2670729, 55.9459525 -3.2060165, 55.9561918 -3.1852745, 55.9478903 -3.1915085, 55.9459447 -3.1909020, 55.9485947 -3.1945597, 55.9484900 -3.1938871, 55.9457476 -3.1909342, 55.9485587 -3.1943530, 55.9483248 -3.1864306, 55.9476976 -3.1919549, 55.9494442 -3.2078565, 55.9522731 -3.2016642, 55.9530413 -3.1976567, 55.9474107 -3.1857005, 55.9388452 -3.1790659, 55.9405357 -3.2246618, 55.9506503 -3.1887550, 55.9459152 -3.2048753, 55.9544956 -3.1996255, 55.9537668 -3.1902693, 55.9248346 -3.2543275, 55.9374976 -3.1806164, 55.9389691 -3.1803219, 55.9419979 -3.1791165, 55.9578375 -3.1855691, 55.9577188 -3.1854711, 55.9570718 -3.1867391, 55.9573525 -3.1857881, 55.9573946 -3.1857377, 55.9578561 -3.1853362, 55.9572831 -3.1858711, 55.9581118 -3.1850848, 55.9574938 -3.1856190, 55.9582219 -3.1849767, 55.9576798 -3.1858665, 55.9320058 -3.2097519, 55.9244481 -3.2103373, 55.9608511 -3.1806444, 55.9514989 -3.2098689, 55.9644870 -3.1767286, 55.9456613 -3.2057187, 55.9312746 -3.1719521, 55.9338124 -3.1784664, 55.9492753 -3.1855034, 55.9473523 -3.1859232, 55.9410964 -3.1808815, 55.9375777 -3.1779460, 55.9378124 -3.1781642, 55.9354709 -3.1798259, 55.9504193 -3.1866153, 55.9490741 -3.1893997, 55.9529899 -3.1973604, 55.9567716 -3.1807817, 55.9323952 -3.2102340, 55.9321089 -3.2101997, 55.9308794 -3.2100746, 55.9500237 -3.1859641, 55.9437654 -3.2187545, 55.9504916 -3.1861886, 55.9506853 -3.1853773, 55.9710599 -3.2100066, 55.9396263 -3.1829720, 55.9596608 -3.1714218, 55.9466096 -3.2157282, 55.9489839 -3.1929807, 55.9169756 -3.2120428, 55.9488427 -3.3624818, 55.9482570 -3.3655019, 55.9469467 -3.1868746, 55.9349914 -3.1790260, 55.9501695 -3.1909428, 55.9426782 -3.2016234, 55.9459543 -3.2110196, 55.9803312 -3.1788000, 55.9702196 -3.1702168, 55.9467924 -3.1855561, 55.9438281 -3.2186053, 55.9457016 -3.1899747, 55.9453485 -3.2171316, 55.9486496 -3.1940701, 55.9224536 -3.2108475, 55.9906648 -3.3973688, 55.9579863 -3.1811608, 55.9426269 -3.1823902, 55.9429144 -3.1826352, 55.9387155 -3.1789608, 55.9416801 -3.1819013, 55.9566001 -3.1617669, 55.9497766 -3.1880920, 55.9348643 -3.1686663, 55.9382910 -3.1812348, 55.9387708 -3.1815664, 55.9418959 -3.1837485, 55.9418211 -3.1837096, 55.9511825 -3.1075687, 55.9562823 -3.1983948, 55.9418000 -3.1789399, 55.9591452 -3.2145692, 55.9501282 -3.1886800, 55.9501474 -3.1919776, 55.9597144 -3.1824451, 55.9584764 -3.1835758, 55.9563144 -3.1853375, 55.9563910 -3.1855135, 55.9560587 -3.1853594, 55.9565748 -3.1857636, 55.9542906 -3.1861464, 55.9603660 -3.1816080, 55.9539327 -3.1863517, 55.9595195 -3.1827244, 55.9607917 -3.1806186, 55.9506624 -3.1904103, 55.9492455 -3.1893451, 55.9498216 -3.1888060, 55.9580202 -3.1851749, 55.9489961 -3.1873020, 55.9498654 -3.1872300, 55.9495368 -3.1870648, 55.9503997 -3.1842260, 55.9490417 -3.1857303, 55.9498761 -3.1930603, 55.9695051 -3.1724684, 55.9489892 -3.2104514, 55.9428546 -3.2034153, 55.9410667 -3.2032847, 55.9494976 -3.1832041, 55.9570561 -3.1868309, 55.9474907 -3.1912396, 55.9473547 -3.1907578, 55.9385351 -3.1788147, 55.9420479 -3.1791611, 55.9512610 -3.1800100, 55.9512749 -3.1799374, 55.9443287 -3.1812574, 55.9520043 -3.1768950, 55.9468472 -3.1856084, 55.9473137 -3.1851136, 55.9493042 -3.1940688, 55.9466056 -3.1912464, 55.9479666 -3.1920487, 55.9522129 -3.2063407, 55.9382413 -3.1927552, 55.9514215 -3.2038997, 55.9895667 -3.3989278, 55.9645858 -3.1766158, 55.9648350 -3.1763998, 55.9545797 -3.1975105, 55.9595680 -3.1714413, 55.9733312 -3.1670719, 55.9524366 -3.1994110, 55.9720484 -3.1727281, 55.9541108 -3.2007911, 55.9462949 -3.2053703, 55.9469863 -3.2072082, 55.9727826 -3.3512226, 55.9346438 -3.2211526, 55.9487803 -3.1950974, 55.9230657 -3.2475227, 55.9439545 -3.2066510, 55.9436637 -3.2079998, 55.9534112 -3.1955067, 55.9783017 -3.1800235, 55.9508007 -3.2089750, 55.9420681 -3.2954846, 55.9428183 -3.2938163, 55.9205723 -3.1672281, 55.9379137 -3.3141798, 55.9424726 -3.2928349, 55.9475057 -3.2948807 +48.8829303 2.3343538 +Église nouvelle Saint-Honoré d'Eylau and 48.8684100 2.2864027 +52 +49.3909631 8.7016171, 49.4064728 8.6918564, 49.4089660 8.6724358, 49.4093704 8.6694528, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4037954 8.6793653, 49.3967059 8.6771597, 49.4214832 8.6754845, 49.4222429 8.6632708, 49.4140422 8.6704577, 49.4135858 8.6925458, 49.4228639 8.6764796, 49.4080031 8.6948451, 49.4068874 8.6695133, 49.4187759 8.6518124, 49.4213087 8.7559845, 49.4274296 8.7499398, 49.4064148 8.6829502, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4096879 8.6920076, 49.4092764 8.6965977, 49.3981873 8.7240534, 49.3852907 8.7099594, 49.3851124 8.7094749, 49.3850107 8.7103387, 49.3658615 8.7016650, 49.3873038 8.7530780, 49.4393137 8.6872204, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.3961482 8.6893926, 49.3812515 8.6806176, 49.3824770 8.6806146, 49.4132914 8.7081342, 49.4088903 8.6938003, 49.4126779 8.7118926, 49.4079250 8.6968388, 49.4124163 8.7017576, 49.4102465 8.6977902, 49.4186616 8.6453088, 49.4191927 8.6451544, 49.4186552 8.6479768, 49.4145019 8.7188097, 49.4160079 8.6527300, 49.3891220 8.7350663, 49.3900339 8.7371557, 49.4108612 8.6928690, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4101694 8.6916552, 49.4588121 8.7508905, 49.4062230 8.6893127, 49.4080954 8.6910116, 49.4070199 8.6810452, 49.4078155 8.6801715, 49.4081699 8.6801714, 49.4086991 8.6905430, 49.4072067 8.6789696, 49.4083342 8.6789231, 49.4088561 8.6818330, 49.4145805 8.6901438, 49.4184970 8.6911640, 49.4186633 8.6871792, 49.4035002 8.6810379, 49.4049652 8.6871845, 49.4156885 8.7217025, 49.4132004 8.6500383, 49.4122130 8.6411554, 49.4119501 8.7000203, 49.3783145 8.6641959, 49.3784881 8.6642847, 49.4132187 8.7653935, 49.4096598 8.6875604, 49.4056131 8.6868331, 49.4110119 8.7122254, 49.3834712 8.6608409, 49.3834712 8.6608409, 49.4108200 8.6949938, 49.4199403 8.6581676, 49.4263561 8.6613690, 49.4114202 8.6969720, 49.3708802 8.6232738, 49.4204769 8.7052380, 49.4221172 8.7055780, 49.4360737 8.6793655, 49.4329720 8.6805360, 49.4063251 8.6755799, 49.4372140 8.6797393, 49.4378001 8.6797566, 49.4405259 8.6652199, 49.4376306 8.6777982, 49.4376906 8.6382495, 49.4390127 8.6342324, 49.4259196 8.6392005, 49.4228908 8.6416101, 49.4287977 8.6836286, 49.4282796 8.6827973, 49.4047972 8.6739218, 49.4278804 8.6861552, 49.4082062 8.6763355, 49.4043797 8.6463186, 49.3798890 8.6777329, 49.4271018 8.6801686, 49.4098483 8.6605879, 49.4214767 8.6751246, 49.4157016 8.6528859, 49.4146237 8.6497864, 49.4188268 8.6440266, 49.4189470 8.6438987, 49.4189844 8.6459909, 49.4194808 8.6452628, 49.4204267 8.6756874, 49.4201425 8.6719237, 49.4203138 8.6703791, 49.4210841 8.6683206, 49.4200492 8.6683293, 49.4315265 8.6397474, 49.4149913 8.6535552, 49.4039134 8.6767400, 49.4058862 8.6897740, 49.4060206 8.6905342, 49.4061503 8.6912857, 49.4088332 8.6757532, 49.4034240 8.6790856, 49.4282288 8.6836632, 49.3965511 8.6771437, 49.4252379 8.6441041, 49.3935396 8.6817411, 49.3952870 8.6836845, 49.3958629 8.6832887, 49.4227238 8.6738472, 49.4162298 8.6755281, 49.4154291 8.6756221, 49.4145364 8.6757808, 49.4212459 8.6738490, 49.4210596 8.6732314, 49.4094114 8.6739566, 49.4089529 8.6602625, 49.4115623 8.6538584, 49.4132855 8.6517669, 49.4143102 8.6502249, 49.4316541 8.6450403, 49.4313242 8.6461047, 49.4234435 8.6409833, 49.4233100 8.6410792, 49.4239493 8.6417679, 49.4236187 8.6419798, 49.4167321 8.6742199, 49.4139089 8.6729704, 49.4135711 8.6685440, 49.4133710 8.6685603, 49.4229672 8.6628733, 49.4253832 8.6563505, 49.4244918 8.6574290, 49.4183168 8.6570383, 49.4129687 8.6642981, 49.4143409 8.6651836, 49.4194911 8.6655520, 49.4308516 8.6533759, 49.4306864 8.6534803, 49.4215359 8.6818834, 49.4188910 8.6769323, 49.4211075 8.6775566, 49.4211894 8.6670319, 49.4130810 8.6699968, 49.4134398 8.6714192, 49.4137439 8.6769747, 49.4155869 8.6784841, 49.4139913 8.6704329, 49.4136024 8.6776951, 49.3962000 8.7085445, 49.4234080 8.6595192, 49.4226921 8.6586119, 49.4229974 8.6608946, 49.4236303 8.6561909, 49.4240515 8.6571965, 49.4260202 8.6577463, 49.4200690 8.6616681, 49.4204248 8.6636381, 49.4194488 8.6605899, 49.4192298 8.6640734, 49.4175057 8.6611975, 49.4177856 8.6598202, 49.4162074 8.6584117, 49.4166299 8.6607801, 49.4140546 8.6667870, 49.4145234 8.6662068, 49.4337847 8.6803905, 49.4337620 8.6799996, 49.4135576 8.6745116, 49.4126377 8.6749116, 49.4063838 8.6765104, 49.4085613 8.6631372, 49.4061810 8.6696987, 49.3910080 8.6741013, 49.3913345 8.6763079, 49.3900958 8.6760409, 49.3966746 8.6792043, 49.3850197 8.6741885, 49.4188931 8.6520438, 49.4176786 8.7568038, 49.4174427 8.7569407, 49.4180751 8.7587556, 49.4192662 8.7566097, 49.4226110 8.7421281, 49.3956471 8.6433881, 49.4373949 8.6243093, 49.4122797 8.6422114, 49.4171569 8.6846986, 49.4162022 8.6847312, 49.4092092 8.6812299, 49.4081243 8.6917754, 49.4077406 8.6904605, 49.4072247 8.6518134, 49.4179566 8.6425794, 49.4208702 8.6400167, 49.4255068 8.6365369, 49.4255235 8.6391482, 49.4250577 8.6394699, 49.4247037 8.6403906, 49.4289421 8.6416397, 49.4279117 8.6424382, 49.4266397 8.6436737, 49.3978801 8.6820904, 49.3985527 8.6521355, 49.4028377 8.6472474, 49.3658723 8.6857452, 49.3768283 8.6892364, 49.3803262 8.7254433, 49.3848261 8.7330761, 49.4591437 8.7517850, 49.4242592 8.7437691, 49.3639984 8.7041768, 49.4173756 8.7606525, 49.4132295 8.7757064, 49.4137538 8.6648471, 49.4090739 8.7026883, 49.4379341 8.6355167, 49.4368769 8.6375428, 49.4378331 8.6340499, 49.4380724 8.6364145, 49.4367065 8.6380751, 49.4336146 8.6429127, 49.4337427 8.6416185, 49.4310651 8.6431859, 49.4223148 8.6746219, 49.3855445 8.7101353, 49.4254888 8.6894928, 49.4344969 8.6847782, 49.4335894 8.6853414, 49.4316276 8.7053393, 49.3762717 8.6811562, 49.3840303 8.7319662, 49.3674584 8.6818087, 49.3667510 8.6822513, 49.3912799 8.7348521, 49.3844874 8.7079169, 49.4348723 8.6798701, 49.4106260 8.7736249, 49.4084999 8.7750004, 49.4096965 8.7746403, 49.4095896 8.7745596, 49.4097963 8.7747701, 49.4081034 8.7753178, 49.4083756 8.7757148, 49.4080135 8.7726709, 49.4085119 8.7719410, 49.4096359 8.7716832, 49.4093142 8.7711512, 49.4095779 8.7715834, 49.4100279 8.7717770, 49.4075464 8.7732045, 49.4103552 8.7719708, 49.3608824 8.6865231, 49.3774963 8.6644366, 49.3783068 8.6644302, 49.3893649 8.6662793, 49.3911203 8.6725794, 49.3608549 8.6878385, 49.3779232 8.6642931, 49.3872918 8.7341917, 49.3872364 8.7346514, 49.3871999 8.7349917, 49.4121422 8.7045081, 49.4088000 8.6984868, 49.3814817 8.6779564, 49.3814977 8.6777918, 49.3783015 8.6783409, 49.3989016 8.6746355, 49.4069958 8.6573300, 49.4395485 8.6274097, 49.4038660 8.6717206, 49.4102258 8.6449740, 49.4326600 8.6805997, 49.4277051 8.6823985, 49.4070420 8.6761280, 49.4262545 8.6874841, 49.4111631 8.7120067, 49.3742388 8.6142440, 49.4186852 8.6638016, 49.4063560 8.6836519, 49.3768893 8.6944349, 49.3789415 8.6315668, 49.3795291 8.6296406, 49.3809627 8.6291268, 49.3817071 8.6338065, 49.3824332 8.6324942, 49.3803611 8.6327557, 49.3709046 8.6267823, 49.3808692 8.6779525, 49.4287155 8.6446215, 49.4135814 8.6490096, 49.4147938 8.6365486, 49.3966514 8.6718493, 49.3876649 8.6616646, 49.3890461 8.6840215, 49.4017367 8.6821163, 49.3968926 8.6802735, 49.4021904 8.6790167, 49.4237056 8.6475076, 49.4041968 8.6479391, 49.4154951 8.7332007, 49.4026134 8.6757101, 49.3764178 8.6298710, 49.3552099 8.6265645, 49.4150598 8.7727094, 49.4045783 8.6829102, 49.4096951 8.6835813, 49.3980621 8.7294523, 49.3725258 8.6835334, 49.4083878 8.6512209, 49.3920857 8.6526205, 49.3917052 8.6539344, 49.3918943 8.6540133, 49.3921200 8.6532604, 49.3917059 8.6542576, 49.4092038 8.7122223, 49.3960044 8.6709715, 49.3949788 8.6699146, 49.3960436 8.6718019, 49.3962304 8.6722292, 49.3957517 8.6718870, 49.3953878 8.6756074, 49.4097892 8.7063939, 49.4084468 8.7003941, 49.4152843 8.7204818, 49.3732176 8.7472812, 49.3813905 8.7643802, 49.3839185 8.7575944, 49.3923472 8.7466824, 49.3875208 8.7503390, 49.3894532 8.7370456, 49.3895678 8.7370642, 49.3892768 8.7345923, 49.3763693 8.6786037, 49.3743158 8.6653093, 49.4033414 8.7287167, 49.3660992 8.6836946, 49.3667671 8.6829203, 49.3967792 8.7245614, 49.3751983 8.6822853, 49.3748496 8.6823310, 49.3748601 8.6802550, 49.3740330 8.6823974, 49.4009150 8.7298557, 49.4007196 8.7297407, 49.4035389 8.7279297, 49.4026240 8.7278681, 49.4010872 8.7131843, 49.4094204 8.7462519, 49.3869006 8.6646067, 49.4026441 8.7802131, 49.3724384 8.6788819, 49.3733706 8.6798275, 49.3734520 8.6794397, 49.3734573 8.6772872, 49.3750322 8.6781318, 49.3761353 8.6779495, 49.3742557 8.6782780, 49.3748097 8.6779817, 49.3750429 8.6784800, 49.3743359 8.6792464, 49.4047494 8.6753390, 49.4010237 8.6542634, 49.4185616 8.6687042, 49.3961629 8.6968177, 49.3949506 8.7165457, 49.4056935 8.6753617, 49.3748682 8.6806324, 49.3757650 8.6783828, 49.3745216 8.6786266, 49.3804111 8.6763117, 49.3802672 8.6770459, 49.3938241 8.6885892, 49.3770953 8.6659476, 49.4218342 8.7455830, 49.3763084 8.6806674, 49.3925736 8.6762381, 49.3866268 8.6977267, 49.3870220 8.6985183, 49.4044781 8.6462736, 49.3924188 8.7407366, 49.3967229 8.7250259, 49.4247929 8.6422301, 49.4098190 8.7063061, 49.4085373 8.7758381, 49.3958169 8.6851383, 49.4132893 8.6956239, 49.4085000 8.6939571, 49.4078262 8.6941716, 49.4096788 8.7079007, 49.4096785 8.7074005, 49.4101311 8.6910837, 49.4101822 8.6884713, 49.4099175 8.6890057, 49.4169024 8.6774545, 49.4170457 8.6775259, 49.4134444 8.6918647, 49.4082046 8.6830699, 49.4088779 8.6792701, 49.4080211 8.6834601, 49.4090548 8.6852623, 49.4092900 8.6865331, 49.4086943 8.6845447, 49.4017089 8.6846814, 49.4079604 8.6841153, 49.4083191 8.6856688, 49.4080645 8.6851672, 49.4073436 8.6889011, 49.4063263 8.6908480, 49.4114775 8.7195875, 49.4090814 8.7182703, 49.4086229 8.7202663, 49.4033869 8.7279290, 49.4142260 8.7704357, 49.3894370 8.6884317, 49.3895530 8.6884195, 49.4183417 8.6445113, 49.4151056 8.6533976, 49.4000215 8.6915677, 49.4070728 8.7039593, 49.4057605 8.7102504, 49.4069654 8.7032895, 49.4051156 8.7101114, 49.3967708 8.6950821, 49.4100264 8.7102106, 49.4133774 8.7093673, 49.4104648 8.7110643, 49.4090884 8.7121174, 49.4145963 8.7424363, 49.4146285 8.7415734, 49.4158248 8.7336485, 49.4159290 8.7336568, 49.4208144 8.7400015, 49.4202707 8.7392359, 49.4195583 8.7389992, 49.3966895 8.6864231, 49.3675101 8.6831306, 49.3862241 8.7044324, 49.4089685 8.7125699, 49.3907835 8.7032534, 49.3914706 8.7026871, 49.3806555 8.7065541, 49.4157208 8.7418677, 49.4156600 8.7430138, 49.4152079 8.7442967, 49.4071432 8.7078562, 49.4088934 8.7133144, 49.4115392 8.7128522, 49.4105472 8.7780302, 49.4208463 8.6738282, 49.4171772 8.7603354, 49.4178582 8.7604307, 49.4131989 8.7239585, 49.4058690 8.6604558, 49.4048929 8.6675943, 49.4148153 8.6642766, 49.4079515 8.6376494, 49.3774547 8.7085656, 49.3762592 8.7055890, 49.4119166 8.6961489, 49.4317346 8.7061263, 49.3951217 8.6436838, 49.4322270 8.6909619, 49.4124413 8.7456969, 49.4150047 8.7453868, 49.4147956 8.7444452, 49.4143823 8.7483441, 49.4232907 8.7529822, 49.3756772 8.6859026, 49.3743793 8.6854003, 49.4181519 8.7605105, 49.4165526 8.6912073, 49.3625227 8.7053511, 49.4277972 8.6793663, 49.4186343 8.6608593, 49.3745870 8.6933185, 49.3745512 8.6931398, 49.4141951 8.6773802, 49.4256553 8.7393946, 49.4076774 8.6896431, 49.4075308 8.6897346, 49.4190729 8.6890667, 49.4187521 8.6903307, 49.4187110 8.6904478, 49.4159739 8.6732323, 49.4067994 8.6931128, 49.4067928 8.6935104, 49.4070263 8.6953186, 49.4088402 8.7022464, 49.4086281 8.7004350, 49.4083266 8.6988134, 49.4084032 8.6992511, 49.4086930 8.7008503, 49.4082856 8.6993919, 49.4400488 8.6895399, 49.4126031 8.7205963, 49.4123897 8.7201796, 49.4108875 8.7198273, 49.4121174 8.7199537, 49.3603818 8.6878989, 49.3600563 8.6882539, 49.3628080 8.6883118, 49.3631708 8.6882854, 49.3933484 8.7760935, 49.4211179 8.6800477, 49.4210927 8.6788357, 49.3822054 8.6779650, 49.4154994 8.6745757, 49.4170433 8.6458718, 49.3846497 8.6817785, 49.3846976 8.6847175, 49.3844191 8.6849082, 49.3847543 8.6816927, 49.3845422 8.6811475, 49.3844361 8.6812945, 49.3844812 8.6833063, 49.3843655 8.6831352, 49.3844693 8.6838984, 49.3847140 8.6828075, 49.3846153 8.6826858, 49.3916379 8.6832393, 49.4030467 8.6777744, 49.4081347 8.6490831, 49.4246394 8.6387347, 49.4092190 8.6404481, 49.4055522 8.6437619, 49.4094106 8.6390237, 49.4030705 8.6445930, 49.4048859 8.6407136, 49.4028534 8.6414838, 49.4054385 8.6407094, 49.4039477 8.6409153, 49.4053038 8.6446041, 49.3564840 8.7059999, 49.4104659 8.6372089, 49.4129533 8.6375987, 49.4022627 8.6383494, 49.4023560 8.6416227, 49.4279195 8.6840395, 49.4266417 8.6834045, 49.4149614 8.7627536, 49.4147153 8.7636838, 49.4148588 8.7631440, 49.4151372 8.7619776, 49.3819023 8.6610923, 49.4067406 8.6760466, 49.4209716 8.7395001, 49.4148681 8.7627574, 49.4177775 8.7408198, 49.4179019 8.7409040, 49.4210951 8.7398188, 49.4178687 8.7405082, 49.4150957 8.7621532, 49.4151231 8.7620372, 49.4150216 8.7723676, 49.4051851 8.7806376, 49.4094999 8.7187995, 49.4111767 8.7708030, 49.4112682 8.7706277, 49.4105747 8.7718871, 49.3741369 8.6601792, 49.3761611 8.6587169, 49.3759115 8.6576280, 49.3758411 8.6582433, 49.3813055 8.6605630, 49.3970019 8.6746884, 49.3670694 8.7066732, 49.3730737 8.6870049, 49.3744052 8.6641024, 49.3812274 8.6633431, 49.3835356 8.6668475, 49.3837115 8.6668223, 49.3839082 8.6668065, 49.3832557 8.6668961, 49.3834049 8.6789517, 49.3844996 8.6647503, 49.3815326 8.6607340, 49.4132859 8.6908940, 49.4155322 8.6699617, 49.4068263 8.6680762, 49.4072646 8.6691321, 49.4072916 8.6693315, 49.4049477 8.7776001, 49.4064182 8.7775809, 49.4132935 8.6911529, 49.4161156 8.6703451, 49.4159611 8.6705524, 49.4161026 8.6692956, 49.4113226 8.6592808, 49.3646411 8.7060911, 49.4132052 8.7122933, 49.4117341 8.6467543, 49.4161732 8.7555546, 49.4160191 8.6700610, 49.4161314 8.6706351, 49.4187135 8.7240892, 49.4182654 8.7234671, 49.4063399 8.6900996, 49.4063668 8.6902286, 49.4065511 8.6906922, 49.4055849 8.6876896, 49.4052408 8.6862751, 49.4056965 8.6856838, 49.3914904 8.6905020, 49.4446785 8.7641829, 49.4000181 8.6782987, 49.3931737 8.6788679, 49.4197733 8.6455869, 49.3816319 8.6588060, 49.3818822 8.6587490, 49.4198205 8.7343539, 49.4101553 8.6911774, 49.4066779 8.7141416, 49.4113423 8.7195551, 49.4110748 8.7197211, 49.3945690 8.6743519, 49.3943175 8.6754654, 49.3973820 8.6940966, 49.3935162 8.7079473, 49.3987446 8.6923402, 49.3986523 8.6924283, 49.3972671 8.6941625, 49.3799065 8.7239334, 49.4275954 8.6823123, 49.3963113 8.6748861, 49.4264733 8.7602041, 49.3916824 8.6702885, 49.4237291 8.6461040, 49.4383671 8.7404676, 49.4373853 8.7411725, 49.4014026 8.6800343, 49.4166596 8.6925736, 49.4124338 8.7117609, 49.4274540 8.6971831, 49.4278787 8.6910220, 49.4030621 8.7276422, 49.4023727 8.7276687, 49.4130005 8.6887393 +1668 +49.3967496 8.6929283, 49.3758602 8.6941971, 49.4014041 8.6551906, 49.3924724 8.6994716, 49.3743420 8.6581351 +53.3319610 10.4398412, 53.3260626 10.4620972, 53.3271011 10.4588956, 53.3273695 10.4580341, 53.3289883 10.4535116, 53.3293350 10.4543020, 53.3299844 10.4512449, 53.3304004 10.4526194, 53.3307089 10.4501576, 53.3309031 10.4515217, 53.3312507 10.4504413, 53.3315607 10.4523776, 53.3322887 10.4472060 +55.9536238 -3.2048494, 55.9555985 -3.1886730, 55.9274131 -3.2091104, 55.9538258 -3.1996835, 55.9522492 -3.2005426, 55.9519451 -3.2014048 +0 +yes +1 +yes +no +Theater im Kulturzentrum Karlstorbahnhof, Theater und Philharmonisches Orchester, Zwinger1 und Zwinger3 +55.9370725 -3.1787027, 55.9433939 -3.2029381, 55.9818728 -3.3731190, 55.8966045 -3.3087404, 55.9385614 -3.1040020, 55.9468901 -3.1364489, 55.9268506 -3.2089249, 55.9781491 -3.1930844, 55.9373031 -3.2494985, 55.9650659 -3.2695228, 55.9313511 -3.2524977, 55.9094685 -3.2331911, 55.9497063 -3.1833447, 55.9435848 -3.2191643, 55.9374270 -3.2345667, 55.9345081 -3.1227754, 55.9429898 -3.2899406, 55.9426238 -3.2800495, 55.9654174 -3.1551373, 55.9560338 -3.4034937, 55.9397279 -3.2201814, 55.9721574 -3.2632148, 55.9713670 -3.2529113, 55.9135865 -3.1358664, 55.9535517 -3.1141391, 55.9534451 -3.2962393, 55.9085287 -3.2095473, 55.9327621 -3.1376599, 55.9119230 -3.1635497, 55.9391525 -3.4055165, 55.9217741 -3.3820169, 55.8835896 -3.3387395, 55.9532918 -3.2008836, 55.9763771 -3.1661542, 55.9264851 -3.2464048, 55.9672451 -3.2455099, 55.9592253 -3.2129434, 55.9073269 -3.2574527, 55.9669733 -3.1745264, 55.9725324 -3.1754041, 55.9246368 -3.2764158, 55.9573540 -3.2494949, 55.9623670 -3.1996983, 55.9436550 -3.1175420, 55.9342032 -3.2767154, 55.9196988 -3.2952545, 55.9467290 -3.2153860, 55.9220580 -3.1538560, 55.9615113 -3.3057885, 55.9283784 -3.2791498, 55.9237183 -3.2367632, 55.9761453 -3.2491420, 55.9368144 -3.2072231, 55.9012634 -3.1566868, 55.9744305 -3.1846747, 55.9458687 -3.1913239, 55.9513520 -3.2049738, 55.9527120 -3.1911888, 55.9599216 -3.2887651, 55.9751151 -3.2193081, 55.9747107 -3.2382500, 55.9763561 -3.2451182, 55.9573948 -3.1710345, 55.9058615 -3.2220141, 55.9046398 -3.1329007, 55.9516637 -3.1122989, 55.9274691 -3.1872211 +48.9007525 2.3748724, 48.8519985 2.2908966, 48.8936152 2.3152934, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.9000199 2.3292825, 48.8997229 2.3300618 +49.3819891 8.7064791, 49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.3696607 8.7091979, 49.4157261 8.7004521, 49.4532301 8.7620686, 49.3877298 8.7446960, 49.4209333 8.7223854, 49.3946455 8.7166681, 49.4221949 8.7060036, 49.4157681 8.7006398, 49.4052183 8.7807063, 49.4390162 8.7105044, 49.4210179 8.7198036, 49.4272716 8.7035465, 49.4305777 8.6928339, 49.4497204 8.7157564, 49.4428768 8.7011414, 49.4040784 8.7535968, 49.4300341 8.7265054, 49.4040547 8.7550178, 49.3925114 8.7464235, 49.3936499 8.7467333, 49.4005231 8.7520710, 49.4095083 8.7002566, 49.4109969 8.7018271, 49.4103323 8.7353954 +10 +no +55.9783017 -3.1800235 +55.9509120 -3.1684417, 55.9505684 -3.1636997, 55.9409571 -3.1518694, 55.9414904 -3.1501988, 55.9414101 -3.1510969, 55.9304112 -3.2001421 +48.8484038 2.3977491, 48.8512856 2.2781094, 48.8467839 2.2854077, 48.8332389 2.3329284, 48.8526288 2.3385336, 48.8925057 2.3450965, 48.8536039 2.3444118, 48.8515050 2.3430786, 48.8473294 2.3412516, 48.8312038 2.3565530, 48.8806072 2.3538936, 48.8347711 2.3321841, 48.8278860 2.3709325, 48.8695890 2.2848365, 48.8581077 2.3801470, 48.8317286 2.3137879, 48.8668650 2.2788566, 48.8697674 2.2857979, 48.8424148 2.4052197, 48.8448799 2.3727316, 48.8815590 2.3150046, 48.8903495 2.3201315, 48.8941941 2.3135794, 48.8704998 2.3049572, 48.8854539 2.2915179, 48.8898626 2.3035373, 48.8774012 2.4069914, 48.8980267 2.3289128, 48.8844761 2.2976487, 48.8584436 2.3037809, 48.8795960 2.3896580, 48.8827367 2.3814655, 48.8420110 2.3206428, 48.8615010 2.3537550, 48.8645112 2.3981788, 48.8798173 2.3215782, 48.8747412 2.3049062, 48.8700986 2.3070512, 48.8687272 2.2986811, 48.8764317 2.3015489, 48.8748073 2.2956078, 48.8679763 2.2954876, 48.8666447 2.2899845, 48.8714962 2.2934996, 48.8659060 2.2863973, 48.8634029 2.2863046, 48.8617450 2.2859062, 48.8586868 2.2849457, 48.8482990 2.2647021, 48.8776228 2.3708847, 48.8780030 2.3781296, 48.8873966 2.3492159, 48.8831639 2.3275572, 48.8374622 2.2575596, 48.8527859 2.4060423, 48.8764243 2.3592623, 48.8663059 2.3244457, 48.8579055 2.3100803, 48.8655795 2.3559318, 48.8473587 2.3122933, 48.8766198 2.3392717, 48.8832546 2.3471915, 48.8460393 2.3780826, 48.8383701 2.3607602, 48.8320548 2.3861467, 48.8432250 2.4013484, 48.8226361 2.3257162, 48.8429514 2.3751858, 48.8597360 2.3466694, 48.8606298 2.3466023, 48.8445008 2.4411062, 48.8502906 2.3928948, 48.8713571 2.3432580, 48.8721397 2.3393564, 48.8538475 2.3325263, 48.8975838 2.3287233, 48.8937759 2.3363457, 48.8391806 2.3825585, 48.8672161 2.3065357, 48.8652369 2.3013632, 48.8616106 2.3019528, 48.8622551 2.3149819, 48.8538751 2.3124512, 48.8650500 2.3013405, 48.8696527 2.3111802, 48.8541706 2.3068705, 48.8699915 2.3014172, 48.8713160 2.3009696, 48.8756033 2.3260400, 48.8630530 2.3526294, 48.8462434 2.3767506, 48.8793033 2.3034301, 48.8682598 2.4015540, 48.8567698 2.3537979, 48.8257810 2.3469176, 48.8600781 2.3465254, 48.8325620 2.3618635, 48.8284670 2.3264398, 48.8666879 2.3641696, 48.8679052 2.3646802, 48.8679443 2.3620076, 48.8606611 2.3260607, 48.8307809 2.3768658, 48.8494789 2.3371871, 48.8521348 2.3393496, 48.8772711 2.3269492, 48.8764858 2.3319975, 48.8846924 2.3795882, 48.8306144 2.2924114, 48.8767391 2.3608267, 48.8643491 2.2725788, 48.8982278 2.3591507, 48.8607328 2.3456697, 48.8236433 2.3530302, 48.8643981 2.3303564, 48.8891585 2.3938039, 48.8577770 2.3473733, 48.8634279 2.3351782, 48.8680916 2.3299623, 48.8691985 2.3546294, 48.8705443 2.3327006, 48.8659300 2.3408572, 48.8662586 2.3612125, 48.8553209 2.3603751, 48.8369707 2.3521360, 48.8500790 2.3487204, 48.8432193 2.3520318, 48.8498446 2.3551829, 48.8434713 2.3236014, 48.8530282 2.3354092, 48.8402189 2.3365313, 48.8505206 2.3272579, 48.8512092 2.3331634, 48.8390765 2.3825241 +Säulenweg, Speyerer Straße, Speyerer Straße, Eppelheimer Straße, Eppelheimer Straße, Eppelheimer Straße, Traumannswald, Franz-Knauff-Straße, Blumenstraße, Langlachweg, Langlachweg, Mannheimer Straße, Carl-Benz-Straße, Carl-Benz-Straße, Am Ochsenhorn, Markircher Straße, Langlachweg, Alte Mannheimer Landstraße, In der Gabel, In der Gabel, Neckarhauser Straße, Ruhrorter Straße, Wichernstraße, Traumannswald, Mannheimer Straße, Bürgermeister-Helmling-Straße, Friedrichstraße, Bruchhäuser Straße, Rudolf-Diesel-Straße, Wieblinger Weg, Elsa-Brändström-Straße +49.4083031 8.6962179 +Le B.H.V. and Mo-Fr 08:00-20:00, Sa 10:00-20:00, Les Brassins de Saint-Malo, Brasserie Artisanale "D'istribilh" +Burger King +48.8794220 2.3546823 +55.9232575 -3.2877434, 55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9579565 -3.2439627, 55.9297115 -3.2566004, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9372727 -3.3656602, 55.9344345 -3.1791228, 55.9377502 -3.4029754, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9365550 -3.3142140, 55.9836311 -3.3989193, 55.9826346 -3.1875882, 55.9248058 -3.2496194, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9695021 -3.2293678, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9781314 -3.1744029, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9242943 -3.2525824, 55.9398424 -3.2041012, 55.9397193 -3.2934475 +53 +48.8375550 2.3183632, 48.8275755 2.3065523, 48.8358842 2.3867689, 48.8506951 2.3463689 +49.4064728 8.6918564, 49.4089660 8.6724358, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4037954 8.6793653, 49.4214832 8.6754845, 49.4140422 8.6704577, 49.4228639 8.6764796, 49.4080031 8.6948451, 49.4187759 8.6518124, 49.4064148 8.6829502, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.4124163 8.7017576, 49.4186616 8.6453088, 49.4191927 8.6451544, 49.4186552 8.6479768, 49.4108612 8.6928690, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4101694 8.6916552, 49.4119501 8.7000203, 49.4096598 8.6875604, 49.4056131 8.6868331, 49.4108200 8.6949938, 49.3962000 8.7085445, 49.4174427 8.7569407, 49.4088000 8.6984868, 49.4154951 8.7332007, 49.3748097 8.6779817, 49.4056935 8.6753617, 49.4073436 8.6889011 +49.3909631 8.7016171, 49.4064728 8.6918564, 49.4089660 8.6724358, 49.4093704 8.6694528, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4037954 8.6793653, 49.3967059 8.6771597, 49.4214832 8.6754845, 49.4222429 8.6632708, 49.4140422 8.6704577, 49.4135858 8.6925458, 49.4228639 8.6764796, 49.4080031 8.6948451, 49.4068874 8.6695133, 49.4187759 8.6518124, 49.4213087 8.7559845, 49.4274296 8.7499398, 49.4064148 8.6829502, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4096879 8.6920076, 49.4092764 8.6965977, 49.3981873 8.7240534, 49.3852907 8.7099594, 49.3851124 8.7094749, 49.3850107 8.7103387, 49.3658615 8.7016650, 49.3873038 8.7530780, 49.4393137 8.6872204, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.3961482 8.6893926, 49.3812515 8.6806176, 49.3824770 8.6806146, 49.4132914 8.7081342, 49.4088903 8.6938003, 49.4126779 8.7118926, 49.4079250 8.6968388, 49.4124163 8.7017576, 49.4102465 8.6977902, 49.4186616 8.6453088, 49.4191927 8.6451544, 49.4186552 8.6479768, 49.4145019 8.7188097, 49.4160079 8.6527300, 49.3891220 8.7350663, 49.3900339 8.7371557, 49.4108612 8.6928690, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4101694 8.6916552, 49.4588121 8.7508905, 49.4062230 8.6893127, 49.4080954 8.6910116, 49.4070199 8.6810452, 49.4078155 8.6801715, 49.4081699 8.6801714, 49.4086991 8.6905430, 49.4072067 8.6789696, 49.4083342 8.6789231, 49.4088561 8.6818330, 49.4145805 8.6901438, 49.4184970 8.6911640, 49.4186633 8.6871792, 49.4035002 8.6810379, 49.4049652 8.6871845, 49.4156885 8.7217025, 49.4132004 8.6500383, 49.4122130 8.6411554, 49.4119501 8.7000203, 49.3783145 8.6641959, 49.3784881 8.6642847, 49.4132187 8.7653935, 49.4096598 8.6875604, 49.4056131 8.6868331, 49.4110119 8.7122254, 49.3834712 8.6608409, 49.3834712 8.6608409, 49.4108200 8.6949938, 49.4199403 8.6581676, 49.4263561 8.6613690, 49.4114202 8.6969720, 49.3708802 8.6232738, 49.4204769 8.7052380, 49.4221172 8.7055780, 49.4360737 8.6793655, 49.4329720 8.6805360, 49.4063251 8.6755799, 49.4372140 8.6797393, 49.4378001 8.6797566, 49.4405259 8.6652199, 49.4376306 8.6777982, 49.4376906 8.6382495, 49.4390127 8.6342324, 49.4259196 8.6392005, 49.4228908 8.6416101, 49.4287977 8.6836286, 49.4282796 8.6827973, 49.4047972 8.6739218, 49.4278804 8.6861552, 49.4082062 8.6763355, 49.4043797 8.6463186, 49.3798890 8.6777329, 49.4271018 8.6801686, 49.4098483 8.6605879, 49.4214767 8.6751246, 49.4157016 8.6528859, 49.4146237 8.6497864, 49.4188268 8.6440266, 49.4189470 8.6438987, 49.4189844 8.6459909, 49.4194808 8.6452628, 49.4204267 8.6756874, 49.4201425 8.6719237, 49.4203138 8.6703791, 49.4210841 8.6683206, 49.4200492 8.6683293, 49.4315265 8.6397474, 49.4149913 8.6535552, 49.4039134 8.6767400, 49.4058862 8.6897740, 49.4060206 8.6905342, 49.4061503 8.6912857, 49.4088332 8.6757532, 49.4034240 8.6790856, 49.4282288 8.6836632, 49.3965511 8.6771437, 49.4252379 8.6441041, 49.3935396 8.6817411, 49.3952870 8.6836845, 49.3958629 8.6832887, 49.4227238 8.6738472, 49.4162298 8.6755281, 49.4154291 8.6756221, 49.4145364 8.6757808, 49.4212459 8.6738490, 49.4210596 8.6732314, 49.4094114 8.6739566, 49.4089529 8.6602625, 49.4115623 8.6538584, 49.4132855 8.6517669, 49.4143102 8.6502249, 49.4316541 8.6450403, 49.4313242 8.6461047, 49.4234435 8.6409833, 49.4233100 8.6410792, 49.4239493 8.6417679, 49.4236187 8.6419798, 49.4167321 8.6742199, 49.4139089 8.6729704, 49.4135711 8.6685440, 49.4133710 8.6685603, 49.4229672 8.6628733, 49.4253832 8.6563505, 49.4244918 8.6574290, 49.4183168 8.6570383, 49.4129687 8.6642981, 49.4143409 8.6651836, 49.4194911 8.6655520, 49.4308516 8.6533759, 49.4306864 8.6534803, 49.4215359 8.6818834, 49.4188910 8.6769323, 49.4211075 8.6775566, 49.4211894 8.6670319, 49.4130810 8.6699968, 49.4134398 8.6714192, 49.4137439 8.6769747, 49.4155869 8.6784841, 49.4139913 8.6704329, 49.4136024 8.6776951, 49.3962000 8.7085445, 49.4234080 8.6595192, 49.4226921 8.6586119, 49.4229974 8.6608946, 49.4236303 8.6561909, 49.4240515 8.6571965, 49.4260202 8.6577463, 49.4200690 8.6616681, 49.4204248 8.6636381, 49.4194488 8.6605899, 49.4192298 8.6640734, 49.4175057 8.6611975, 49.4177856 8.6598202, 49.4162074 8.6584117, 49.4166299 8.6607801, 49.4140546 8.6667870, 49.4145234 8.6662068, 49.4337847 8.6803905, 49.4337620 8.6799996, 49.4135576 8.6745116, 49.4126377 8.6749116, 49.4063838 8.6765104, 49.4085613 8.6631372, 49.4061810 8.6696987, 49.3910080 8.6741013, 49.3913345 8.6763079, 49.3900958 8.6760409, 49.3966746 8.6792043, 49.3850197 8.6741885, 49.4188931 8.6520438, 49.4176786 8.7568038, 49.4174427 8.7569407, 49.4180751 8.7587556, 49.4192662 8.7566097, 49.4226110 8.7421281, 49.3956471 8.6433881, 49.4373949 8.6243093, 49.4122797 8.6422114, 49.4171569 8.6846986, 49.4162022 8.6847312, 49.4092092 8.6812299, 49.4081243 8.6917754, 49.4077406 8.6904605, 49.4072247 8.6518134, 49.4179566 8.6425794, 49.4208702 8.6400167, 49.4255068 8.6365369, 49.4255235 8.6391482, 49.4250577 8.6394699, 49.4247037 8.6403906, 49.4289421 8.6416397, 49.4279117 8.6424382, 49.4266397 8.6436737, 49.3978801 8.6820904, 49.3985527 8.6521355, 49.4028377 8.6472474, 49.3658723 8.6857452, 49.3768283 8.6892364, 49.3803262 8.7254433, 49.3848261 8.7330761, 49.4591437 8.7517850, 49.4242592 8.7437691, 49.3639984 8.7041768, 49.4173756 8.7606525, 49.4132295 8.7757064, 49.4137538 8.6648471, 49.4090739 8.7026883, 49.4379341 8.6355167, 49.4368769 8.6375428, 49.4378331 8.6340499, 49.4380724 8.6364145, 49.4367065 8.6380751, 49.4336146 8.6429127, 49.4337427 8.6416185, 49.4310651 8.6431859, 49.4223148 8.6746219, 49.3855445 8.7101353, 49.4254888 8.6894928, 49.4344969 8.6847782, 49.4335894 8.6853414, 49.4316276 8.7053393, 49.3762717 8.6811562, 49.3840303 8.7319662, 49.3674584 8.6818087, 49.3667510 8.6822513, 49.3912799 8.7348521, 49.3844874 8.7079169, 49.4348723 8.6798701, 49.4106260 8.7736249, 49.4084999 8.7750004, 49.4096965 8.7746403, 49.4095896 8.7745596, 49.4097963 8.7747701, 49.4081034 8.7753178, 49.4083756 8.7757148, 49.4080135 8.7726709, 49.4085119 8.7719410, 49.4096359 8.7716832, 49.4093142 8.7711512, 49.4095779 8.7715834, 49.4100279 8.7717770, 49.4075464 8.7732045, 49.4103552 8.7719708, 49.3608824 8.6865231, 49.3774963 8.6644366, 49.3783068 8.6644302, 49.3893649 8.6662793, 49.3911203 8.6725794, 49.3608549 8.6878385, 49.3779232 8.6642931, 49.3872918 8.7341917, 49.3872364 8.7346514, 49.3871999 8.7349917, 49.4121422 8.7045081, 49.4088000 8.6984868, 49.3814817 8.6779564, 49.3814977 8.6777918, 49.3783015 8.6783409, 49.3989016 8.6746355, 49.4069958 8.6573300, 49.4395485 8.6274097, 49.4038660 8.6717206, 49.4102258 8.6449740, 49.4326600 8.6805997, 49.4277051 8.6823985, 49.4070420 8.6761280, 49.4262545 8.6874841, 49.4111631 8.7120067, 49.3742388 8.6142440, 49.4186852 8.6638016, 49.4063560 8.6836519, 49.3768893 8.6944349, 49.3789415 8.6315668, 49.3795291 8.6296406, 49.3809627 8.6291268, 49.3817071 8.6338065, 49.3824332 8.6324942, 49.3803611 8.6327557, 49.3709046 8.6267823, 49.3808692 8.6779525, 49.4287155 8.6446215, 49.4135814 8.6490096, 49.4147938 8.6365486, 49.3966514 8.6718493, 49.3876649 8.6616646, 49.3890461 8.6840215, 49.4017367 8.6821163, 49.3968926 8.6802735, 49.4021904 8.6790167, 49.4237056 8.6475076, 49.4041968 8.6479391, 49.4154951 8.7332007, 49.4026134 8.6757101, 49.3764178 8.6298710, 49.3552099 8.6265645, 49.4150598 8.7727094, 49.4045783 8.6829102, 49.4096951 8.6835813, 49.3980621 8.7294523, 49.3725258 8.6835334, 49.4083878 8.6512209, 49.3920857 8.6526205, 49.3917052 8.6539344, 49.3918943 8.6540133, 49.3921200 8.6532604, 49.3917059 8.6542576, 49.4092038 8.7122223, 49.3960044 8.6709715, 49.3949788 8.6699146, 49.3960436 8.6718019, 49.3962304 8.6722292, 49.3957517 8.6718870, 49.3953878 8.6756074, 49.4097892 8.7063939, 49.4084468 8.7003941, 49.4152843 8.7204818, 49.3732176 8.7472812, 49.3813905 8.7643802, 49.3839185 8.7575944, 49.3923472 8.7466824, 49.3875208 8.7503390, 49.3894532 8.7370456, 49.3895678 8.7370642, 49.3892768 8.7345923, 49.3763693 8.6786037, 49.3743158 8.6653093, 49.4033414 8.7287167, 49.3660992 8.6836946, 49.3667671 8.6829203, 49.3967792 8.7245614, 49.3751983 8.6822853, 49.3748496 8.6823310, 49.3748601 8.6802550, 49.3740330 8.6823974, 49.4009150 8.7298557, 49.4007196 8.7297407, 49.4035389 8.7279297, 49.4026240 8.7278681, 49.4010872 8.7131843, 49.4094204 8.7462519, 49.3869006 8.6646067, 49.4026441 8.7802131, 49.3724384 8.6788819, 49.3733706 8.6798275, 49.3734520 8.6794397, 49.3734573 8.6772872, 49.3750322 8.6781318, 49.3761353 8.6779495, 49.3742557 8.6782780, 49.3748097 8.6779817, 49.3750429 8.6784800, 49.3743359 8.6792464, 49.4047494 8.6753390, 49.4010237 8.6542634, 49.4185616 8.6687042, 49.3961629 8.6968177, 49.3949506 8.7165457, 49.4056935 8.6753617, 49.3748682 8.6806324, 49.3757650 8.6783828, 49.3745216 8.6786266, 49.3804111 8.6763117, 49.3802672 8.6770459, 49.3938241 8.6885892, 49.3770953 8.6659476, 49.4218342 8.7455830, 49.3763084 8.6806674, 49.3925736 8.6762381, 49.3866268 8.6977267, 49.3870220 8.6985183, 49.4044781 8.6462736, 49.3924188 8.7407366, 49.3967229 8.7250259, 49.4247929 8.6422301, 49.4098190 8.7063061, 49.4085373 8.7758381, 49.3958169 8.6851383, 49.4132893 8.6956239, 49.4085000 8.6939571, 49.4078262 8.6941716, 49.4096788 8.7079007, 49.4096785 8.7074005, 49.4101311 8.6910837, 49.4101822 8.6884713, 49.4099175 8.6890057, 49.4169024 8.6774545, 49.4170457 8.6775259, 49.4134444 8.6918647, 49.4082046 8.6830699, 49.4088779 8.6792701, 49.4080211 8.6834601, 49.4090548 8.6852623, 49.4092900 8.6865331, 49.4086943 8.6845447, 49.4017089 8.6846814, 49.4079604 8.6841153, 49.4083191 8.6856688, 49.4080645 8.6851672, 49.4073436 8.6889011, 49.4063263 8.6908480, 49.4114775 8.7195875, 49.4090814 8.7182703, 49.4086229 8.7202663, 49.4033869 8.7279290, 49.4142260 8.7704357, 49.3894370 8.6884317, 49.3895530 8.6884195, 49.4183417 8.6445113, 49.4151056 8.6533976, 49.4000215 8.6915677, 49.4070728 8.7039593, 49.4057605 8.7102504, 49.4069654 8.7032895, 49.4051156 8.7101114, 49.3967708 8.6950821, 49.4100264 8.7102106, 49.4133774 8.7093673, 49.4104648 8.7110643, 49.4090884 8.7121174, 49.4145963 8.7424363, 49.4146285 8.7415734, 49.4158248 8.7336485, 49.4159290 8.7336568, 49.4208144 8.7400015, 49.4202707 8.7392359, 49.4195583 8.7389992, 49.3966895 8.6864231, 49.3675101 8.6831306, 49.3862241 8.7044324, 49.4089685 8.7125699, 49.3907835 8.7032534, 49.3914706 8.7026871, 49.3806555 8.7065541, 49.4157208 8.7418677, 49.4156600 8.7430138, 49.4152079 8.7442967, 49.4071432 8.7078562, 49.4088934 8.7133144, 49.4115392 8.7128522, 49.4105472 8.7780302, 49.4208463 8.6738282, 49.4171772 8.7603354, 49.4178582 8.7604307, 49.4131989 8.7239585, 49.4058690 8.6604558, 49.4048929 8.6675943, 49.4148153 8.6642766, 49.4079515 8.6376494, 49.3774547 8.7085656, 49.3762592 8.7055890, 49.4119166 8.6961489, 49.4317346 8.7061263, 49.3951217 8.6436838, 49.4322270 8.6909619, 49.4124413 8.7456969, 49.4150047 8.7453868, 49.4147956 8.7444452, 49.4143823 8.7483441, 49.4232907 8.7529822, 49.3756772 8.6859026, 49.3743793 8.6854003, 49.4181519 8.7605105, 49.4165526 8.6912073, 49.3625227 8.7053511, 49.4277972 8.6793663, 49.4186343 8.6608593, 49.3745870 8.6933185, 49.3745512 8.6931398, 49.4141951 8.6773802, 49.4256553 8.7393946, 49.4076774 8.6896431, 49.4075308 8.6897346, 49.4190729 8.6890667, 49.4187521 8.6903307, 49.4187110 8.6904478, 49.4159739 8.6732323, 49.4067994 8.6931128, 49.4067928 8.6935104, 49.4070263 8.6953186, 49.4088402 8.7022464, 49.4086281 8.7004350, 49.4083266 8.6988134, 49.4084032 8.6992511, 49.4086930 8.7008503, 49.4082856 8.6993919, 49.4400488 8.6895399, 49.4126031 8.7205963, 49.4123897 8.7201796, 49.4108875 8.7198273, 49.4121174 8.7199537, 49.3603818 8.6878989, 49.3600563 8.6882539, 49.3628080 8.6883118, 49.3631708 8.6882854, 49.3933484 8.7760935, 49.4211179 8.6800477, 49.4210927 8.6788357, 49.3822054 8.6779650, 49.4154994 8.6745757, 49.4170433 8.6458718, 49.3846497 8.6817785, 49.3846976 8.6847175, 49.3844191 8.6849082, 49.3847543 8.6816927, 49.3845422 8.6811475, 49.3844361 8.6812945, 49.3844812 8.6833063, 49.3843655 8.6831352, 49.3844693 8.6838984, 49.3847140 8.6828075, 49.3846153 8.6826858, 49.3916379 8.6832393, 49.4030467 8.6777744, 49.4081347 8.6490831, 49.4246394 8.6387347, 49.4092190 8.6404481, 49.4055522 8.6437619, 49.4094106 8.6390237, 49.4030705 8.6445930, 49.4048859 8.6407136, 49.4028534 8.6414838, 49.4054385 8.6407094, 49.4039477 8.6409153, 49.4053038 8.6446041, 49.3564840 8.7059999, 49.4104659 8.6372089, 49.4129533 8.6375987, 49.4022627 8.6383494, 49.4023560 8.6416227, 49.4279195 8.6840395, 49.4266417 8.6834045, 49.4149614 8.7627536, 49.4147153 8.7636838, 49.4148588 8.7631440, 49.4151372 8.7619776, 49.3819023 8.6610923, 49.4067406 8.6760466, 49.4209716 8.7395001, 49.4148681 8.7627574, 49.4177775 8.7408198, 49.4179019 8.7409040, 49.4210951 8.7398188, 49.4178687 8.7405082, 49.4150957 8.7621532, 49.4151231 8.7620372, 49.4150216 8.7723676, 49.4051851 8.7806376, 49.4094999 8.7187995, 49.4111767 8.7708030, 49.4112682 8.7706277, 49.4105747 8.7718871, 49.3741369 8.6601792, 49.3761611 8.6587169, 49.3759115 8.6576280, 49.3758411 8.6582433, 49.3813055 8.6605630, 49.3970019 8.6746884, 49.3670694 8.7066732, 49.3730737 8.6870049, 49.3744052 8.6641024, 49.3812274 8.6633431, 49.3835356 8.6668475, 49.3837115 8.6668223, 49.3839082 8.6668065, 49.3832557 8.6668961, 49.3834049 8.6789517, 49.3844996 8.6647503, 49.3815326 8.6607340, 49.4132859 8.6908940, 49.4155322 8.6699617, 49.4068263 8.6680762, 49.4072646 8.6691321, 49.4072916 8.6693315, 49.4049477 8.7776001, 49.4064182 8.7775809, 49.4132935 8.6911529, 49.4161156 8.6703451, 49.4159611 8.6705524, 49.4161026 8.6692956, 49.4113226 8.6592808, 49.3646411 8.7060911, 49.4132052 8.7122933, 49.4117341 8.6467543, 49.4161732 8.7555546, 49.4160191 8.6700610, 49.4161314 8.6706351, 49.4187135 8.7240892, 49.4182654 8.7234671, 49.4063399 8.6900996, 49.4063668 8.6902286, 49.4065511 8.6906922, 49.4055849 8.6876896, 49.4052408 8.6862751, 49.4056965 8.6856838, 49.3914904 8.6905020, 49.4446785 8.7641829, 49.4000181 8.6782987, 49.3931737 8.6788679, 49.4197733 8.6455869, 49.3816319 8.6588060, 49.3818822 8.6587490, 49.4198205 8.7343539, 49.4101553 8.6911774, 49.4066779 8.7141416, 49.4113423 8.7195551, 49.4110748 8.7197211, 49.3945690 8.6743519, 49.3943175 8.6754654, 49.3973820 8.6940966, 49.3935162 8.7079473, 49.3987446 8.6923402, 49.3986523 8.6924283, 49.3972671 8.6941625, 49.3799065 8.7239334, 49.4275954 8.6823123, 49.3963113 8.6748861, 49.4264733 8.7602041, 49.3916824 8.6702885, 49.4237291 8.6461040, 49.4383671 8.7404676, 49.4373853 8.7411725, 49.4014026 8.6800343, 49.4166596 8.6925736, 49.4124338 8.7117609, 49.4274540 8.6971831, 49.4278787 8.6910220, 49.4030621 8.7276422, 49.4023727 8.7276687, 49.4130005 8.6887393 +yes +165 +Bernhard Christel Wiechmann, Dr. Ernst Jacobson, Else Jacobson, Margarete Jacobson geb. Mosheim, Rudolf Jacobson +Maison de Gyros, L'Odyssée, Les Olympiades, La Crete, Athenais, L'île de Crête, Mavrommatis, Maison de Gyros, Taverne Grecque, Le Fil d'Ariane, Le Souvlaki Athénien, Maison de Gyros, Meteora, Acropolis, Hellenis, Olympie, Extra Grec 1987, Thalassa, Le Gourmet, Mimosa, Dimitris, Alexandros, Doner King +Chapelle de l'hôpital Saint-Louis +5 +30, 30, 30, 30 +yes +yes +203 +yes +12 +49.4507074 8.6677476 +48.8671035 2.3471909, 48.8782645 2.3740462, 48.8774801 2.3700505, 48.8689224 2.3335350, 48.8697474 2.3709540, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8703950 2.3709651, 48.8778843 2.3510144, 48.8651078 2.3744344, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8695951 2.3715600, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8653000 2.3752307, 48.8673441 2.3627982, 48.8651925 2.3758399, 48.8629074 2.3860380, 48.8668485 2.3837377, 48.8672012 2.3825153, 48.8645121 2.3683814, 48.8722818 2.3462050, 48.8732053 2.3585526, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8605667 2.3751425, 48.8637354 2.3705262, 48.8642296 2.2884865, 48.8644747 2.2879509, 48.8645963 2.2880351, 48.8649321 2.2883111, 48.8654525 2.2886812, 48.8667948 2.2896169, 48.8677281 2.2909720, 48.8743920 2.3574266, 48.8717354 2.3404728, 48.8750824 2.3241658, 48.8831483 2.3273794, 48.8870858 2.3139323, 48.8896917 2.3219420, 48.8839932 2.3218563, 48.8830031 2.2877361, 48.8648840 2.4053930, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8806821 2.3741833, 48.8789432 2.3031398, 48.8815632 2.3004421, 48.8844267 2.2977130, 48.8855270 2.2969790, 48.8849249 2.2981974, 48.8846750 2.2981530, 48.8773919 2.3395256, 48.8737979 2.3160522, 48.8840917 2.3224995, 48.8807958 2.3003045, 48.8591202 2.3475207, 48.8633059 2.3340632, 48.8647135 2.3426384, 48.8648693 2.3427189, 48.8630681 2.3412176, 48.8634071 2.3418915, 48.8660175 2.3407258, 48.8673651 2.3318225, 48.8656306 2.3303026, 48.8742798 2.3760564, 48.8690399 2.3387540, 48.8697491 2.3403685, 48.8695691 2.3402609, 48.8686652 2.3421761, 48.8689050 2.3327814, 48.8674306 2.3462505, 48.8660916 2.3526753, 48.8645295 2.3512403, 48.8685043 2.3498910, 48.8641253 2.3698504, 48.8612900 2.3499825, 48.8612937 2.3537009, 48.8595500 2.3565735, 48.8650455 2.3535907, 48.8669898 2.3620443, 48.8667188 2.3611850, 48.8662353 2.3610229, 48.8652895 2.3605043, 48.8633001 2.3620149, 48.8632099 2.3622012, 48.8626516 2.3633443, 48.8621296 2.3644112, 48.8614452 2.3647591, 48.8630803 2.3510377, 48.8592743 2.3796462, 48.8809308 2.3651881, 48.8812888 2.3651008, 48.8808303 2.3650793, 48.8883530 2.3917794, 48.8904247 2.3760144, 48.8711649 2.3221410, 48.8726629 2.3106385, 48.8732419 2.3115596, 48.8744495 2.3205466, 48.8752230 2.3264851, 48.8740876 2.3267342, 48.8778017 2.3225743, 48.8797413 2.3271672, 48.8830756 2.3269207, 48.8833400 2.3254009, 48.8813674 2.3151235, 48.8810818 2.3162341, 48.8786152 2.3156839, 48.8767711 2.3179268, 48.8778569 2.3059734, 48.8794539 2.3032046, 48.8749659 2.3041948, 48.8745760 2.3048788, 48.8687291 2.3014159, 48.8664956 2.3016793, 48.8677909 2.2995151, 48.8686254 2.2992361, 48.8725861 2.3019868, 48.8784635 2.2987871, 48.8698436 2.3061758, 48.8727273 2.3786615, 48.8806637 2.3648615, 48.8822323 2.3662711, 48.8720243 2.2934411, 48.8684366 2.2915095, 48.8714262 2.2899337, 48.8689351 2.2833107, 48.8696967 2.2845776, 48.8694565 2.2845446, 48.8700723 2.2857876, 48.8690091 2.2852941, 48.8691634 2.2851996, 48.8749903 2.2860127, 48.8759692 2.2834989, 48.8748643 2.2834193, 48.8690546 2.2835943, 48.8655496 2.2837039, 48.8657006 2.2836110, 48.8667831 2.2790363, 48.8664481 2.2772490, 48.8659840 2.2742050, 48.8633053 2.2742098, 48.8624073 2.2760147, 48.8593999 2.2774250, 48.8760516 2.3450644, 48.8949842 2.3821818, 48.8781855 2.2878593, 48.8846806 2.3623964, 48.8797648 2.3567638, 48.8810016 2.3640265, 48.8606979 2.3554288, 48.8605259 2.3552067, 48.8765046 2.3790929, 48.8717642 2.3765169, 48.8824125 2.3814642, 48.8758150 2.2867065, 48.8589930 2.3030851, 48.8661318 2.3536080, 48.8685310 2.3627215, 48.8645339 2.3458426, 48.8664790 2.3612544, 48.8671863 2.3624934, 48.8809021 2.3403319, 48.8794747 2.3547243, 48.8673662 2.3064825, 48.8592377 2.3714158, 48.8695383 2.3950747, 48.8953387 2.3825799, 48.8588998 2.2749555, 48.8768988 2.3387135, 48.8620598 2.2758197, 48.8632226 2.2764809, 48.8643683 2.2780086, 48.8682336 2.2816544, 48.8683009 2.2818137, 48.8636110 2.3699568, 48.8716652 2.3369422, 48.8724813 2.3352798, 48.8768502 2.3324723, 48.8715356 2.3340932, 48.8707193 2.3495070, 48.8761304 2.3564812, 48.8754523 2.3562375, 48.8834234 2.3734013, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8751634 2.3407635, 48.8696664 2.3354448, 48.8640573 2.3358570, 48.8727906 2.3327950, 48.8631926 2.3875837, 48.8731847 2.3591245, 48.8902005 2.3757322, 48.8706510 2.3613960, 48.8709866 2.3363950, 48.8790699 2.3540350, 48.8848997 2.3377794, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8854990 2.3103821, 48.8701182 2.3328493, 48.8850396 2.3205857, 48.8860872 2.3177587, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8804253 2.3287401, 48.8743336 2.3345374, 48.8642191 2.3423423, 48.8638673 2.3421689, 48.8815429 2.2914706, 48.8838668 2.3274744, 48.8889565 2.3226941, 48.8937935 2.3362303, 48.8915892 2.3347229, 48.8975742 2.3374320, 48.8959308 2.3457254, 48.8906192 2.3344868, 48.8929700 2.3402831, 48.8931959 2.3273644, 48.8938006 2.3360065, 48.8928237 2.3276058, 48.8927037 2.3270855, 48.8950865 2.3279515, 48.8927798 2.3416901, 48.8601040 2.2800860, 48.8620103 2.3504016, 48.8709674 2.2927276, 48.8701195 2.2926560, 48.8607663 2.2829855, 48.8742509 2.3267610, 48.8674435 2.3066185, 48.8760737 2.3314470, 48.8776629 2.3503063, 48.8607520 2.3551307, 48.8599332 2.3492544, 48.8616973 2.3497749, 48.8798460 2.2882480, 48.8706907 2.3018397, 48.8711468 2.3021857, 48.8808570 2.3744052, 48.8816465 2.3719957, 48.8810026 2.3740798, 48.8809708 2.3734937, 48.8808782 2.3736050, 48.8750168 2.2842019, 48.8642610 2.2877420, 48.8690375 2.4018799, 48.8681245 2.4017154, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8709768 2.4035156, 48.8718932 2.4046138, 48.8711831 2.4041560, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8650286 2.3978764, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8661206 2.3993734, 48.8647416 2.4000331, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8646156 2.3980291, 48.8898740 2.3601766, 48.8900866 2.3603615, 48.8911754 2.3596165, 48.8912089 2.3601196, 48.8895540 2.3596572, 48.8601780 2.3784708, 48.8918470 2.3497087, 48.8634536 2.3668626, 48.8621628 2.3647719, 48.8643458 2.3599234, 48.8740405 2.3857795, 48.8749608 2.3892009, 48.8739345 2.3878755, 48.8794344 2.3881410, 48.8801930 2.3906171, 48.8750094 2.3896199, 48.8755856 2.3816591, 48.8737724 2.3861774, 48.8741080 2.3859246, 48.8831104 2.3242250, 48.8776217 2.3939651, 48.8776968 2.3952330, 48.8775224 2.3930979, 48.8687439 2.3725567, 48.8737876 2.3254797, 48.8757911 2.3276502, 48.8853087 2.2914432, 48.8666300 2.3441053, 48.8751073 2.3063372, 48.8761128 2.3302242, 48.8760136 2.3310108, 48.8628914 2.2767409, 48.8836091 2.3810186, 48.8759800 2.3435799, 48.8602282 2.3444320, 48.8781331 2.2973879, 48.8843398 2.3684081, 48.8605440 2.3490975, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8747610 2.3399353, 48.8610529 2.3020976, 48.8742737 2.3172451, 48.8788807 2.2940470, 48.8790502 2.2932877, 48.8787213 2.2930870, 48.8860790 2.2927720, 48.8862920 2.2922300, 48.8860610 2.2916910, 48.8815650 2.2950420, 48.8816640 2.2951850, 48.8698720 2.3253770, 48.8767675 2.3414635, 48.8801010 2.2887410, 48.8896590 2.3042630, 48.8763180 2.3309180, 48.8851905 2.3788177, 48.8694492 2.3546663, 48.8803860 2.3748678, 48.8843962 2.3388368, 48.8841050 2.3049810, 48.8840570 2.3045230, 48.8835710 2.3045840, 48.8837420 2.3043460, 48.8747781 2.3879795, 48.8755246 2.3943562, 48.8828185 2.3827206, 48.8753559 2.3919799, 48.8752306 2.3934592, 48.8818980 2.3374100, 48.8651944 2.3554408, 48.8650138 2.3556963, 48.8895142 2.3498344, 48.8702024 2.2869885, 48.8711617 2.3300722, 48.8619859 2.3647571, 48.8664714 2.3673929, 48.8625029 2.3716831, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8648399 2.3394096, 48.8778905 2.3549883, 48.8726368 2.3332498, 48.8733021 2.3461422, 48.8717746 2.2995211, 48.8643045 2.3993897, 48.8791073 2.2907296, 48.8766198 2.2875734, 48.8680414 2.3235560 +49.3950346 8.6818528, 49.3853408 8.6756587, 49.3929123 8.6731183, 49.4169850 8.7622264, 49.4283831 8.7619069, 49.4223928 8.6472758, 49.4171494 8.6793155, 49.4149894 8.6777848, 49.4148485 8.6775333, 49.4188910 8.6930237, 49.4177616 8.6901926, 49.4162828 8.6903739, 49.4118566 8.7016009, 49.4107725 8.7025797, 49.4195856 8.6828954, 49.4192171 8.6617263, 49.4179033 8.6815927, 49.4086544 8.6824072, 49.4074650 8.6753838, 49.4088642 8.6826038, 49.4071241 8.6769474, 49.3721462 8.6221001, 49.3829491 8.6688513, 49.3761273 8.6786897, 49.3930859 8.6886712, 49.4085032 8.6760080, 49.4140297 8.6502362, 49.4146530 8.6531618, 49.3847089 8.6685712, 49.4174588 8.7442165, 49.4177904 8.7599764, 49.4252008 8.6863559, 49.4045235 8.6882943, 49.3900486 8.6883781, 49.3881762 8.6886005, 49.4058639 8.6880015, 49.4234062 8.6494903, 49.4093727 8.7028215, 49.4197519 8.6452297, 49.4191043 8.6617726, 49.4130970 8.6671099, 49.4400347 8.6325613, 49.3761111 8.6786235, 49.3777133 8.6806931, 49.4081473 8.7729053, 49.4401607 8.6321511, 49.4340707 8.6790422, 49.4290351 8.6868546, 49.3807720 8.6782823, 49.3765839 8.6665923, 49.4261283 8.6876606, 49.4252895 8.6896450, 49.4151862 8.6795007, 49.4233025 8.6807132, 49.4131304 8.7665767, 49.3805355 8.6849044, 49.4086350 8.6786376, 49.4225854 8.6476266, 49.4007675 8.6494912, 49.3731436 8.7032594, 49.3781496 8.6583234, 49.4067775 8.7075784, 49.4113511 8.7130776, 49.4350143 8.7097094, 49.4070226 8.7014890, 49.4337050 8.6982644, 49.4386376 8.6862454, 49.4140695 8.6872232, 49.4327755 8.6997170, 49.4134479 8.7473282, 49.3777846 8.6947087, 49.4290349 8.6871594, 49.3990473 8.6713284, 49.4129097 8.7129751, 49.3753173 8.6635900, 49.4127565 8.7719234, 49.4174569 8.7484520, 49.4144394 8.6710078, 49.3982248 8.6703696 +Wiesloch, Schifferstadt, Walldorf, Sinsheim, Speyer, Bad Schönborn, Philippsburg, Eppelheim, Leimen, Waghäusel, Sandhausen, Östringen, Neckargemünd, Hockenheim, Schwetzingen, Waibstadt +137 +44 +49.4151455 8.7001711, 49.4225019 8.7339703, 49.4288900 8.7151923, 49.4195004 8.7042268, 49.4168493 8.7062479, 49.4169490 8.7088282, 49.4106369 8.7231657, 49.4072736 8.7042584, 49.4034969 8.7041978, 49.4045029 8.6964906, 49.4198220 8.7244339, 49.4173492 8.7353905, 49.4185272 8.7072229, 49.4056987 8.6995970, 49.4175623 8.7007760, 49.4167281 8.7088746, 49.4154921 8.7003039, 49.4176067 8.6981096, 49.4163249 8.7711792, 49.4140674 8.7816577, 49.4198876 8.7454600, 49.4289824 8.7668173, 49.4210240 8.7483509, 49.4059745 8.7040467, 49.3853863 8.7331303, 49.4039479 8.7271770, 49.3938637 8.6974644, 49.4211223 8.7663746, 49.4153640 8.7225444, 49.4069619 8.7115707, 49.4356320 8.7140171, 49.4228760 8.7420142, 49.4164724 8.6578375, 49.4149682 8.6593179, 49.4156567 8.6585628, 49.4155767 8.7022603, 49.3982697 8.7723650, 49.3954974 8.7713116, 49.3991247 8.7677457, 49.4145759 8.7379393, 49.3940922 8.7708327, 49.3828862 8.6974785, 49.4127706 8.7178630, 49.4192233 8.7166853, 49.4323860 8.6958344, 49.4326326 8.6907659, 49.4330634 8.6937607, 49.4354359 8.7188705, 49.4488719 8.7503142, 49.4196542 8.7232011, 49.4206449 8.7223455, 49.4214402 8.7213892, 49.4563800 8.7469357, 49.4090664 8.7817607, 49.4137378 8.7763609, 49.4151549 8.7088601, 49.4424098 8.7023993, 49.4065595 8.7317602, 49.3850144 8.7326813, 49.4081525 8.7138310, 49.4092585 8.7240169, 49.4095028 8.7172321, 49.4213028 8.7431528, 49.4331789 8.6977162, 49.4262331 8.7441437, 49.4232032 8.6974269, 49.4253948 8.6962672, 49.4070632 8.7127517, 49.4161327 8.6999750, 49.4111147 8.7149590, 49.4120872 8.7092424, 49.4258745 8.7058932 +Chapelle Saint-Vincent de Paul, Chapelle de l'Agneau de Dieu, Église Adventiste du 7e jour Paris-Sud, Chapelle Saint-Bernard, Maison Verte, Aumônerie des Grands Moulins, Chapelle Sainte-Marie, Église Notre-Dame de Chaldée, Chapelle Orthodoxe, Chapelle, Centre Évangélique Philadelphia, Église Orthodoxe Grecque, Église évangélique du tabernacle, Calvary Chapel, Église Protestante - Paris Alésia, Chapelle Saint-Paul, Salle du Royaume des Témoins de Jéhovah de Paris Clichy, Chapelle Saint-Martin de Porrès, Chapelle catholique des 4 Évangélistes, Chapelle des Franciscaines, Centre Saint-Paul, Chapelle Notre-Dame de la Confiance, Chapelle Sainte-Marie, Église protestante évangélique des Ternes, Église Adventiste du 7ème Jour, Église Sainte-Colette des Buttes-Chaumont, Église Catholique Russe, Chapelle, Église Mariavite Sainte-Marie, Chapelle Saint-André, Chapelle Saint-Louis, Crypte du Martyrium de Saint-Denis, Chapelle, Chapelle, Église Saint-Lambert de Vaugirard, Église Saint-Léon, Église Saint-Sulpice, Église Saint-Pierre de Montrouge, Église Saint-Séverin, Église Saint-Julien-le-Pauvre, Basilique du Sacré-Cœur, Église Saint-Jean-Baptiste de Grenelle, Église Saint-Pierre de Montmartre, Église Notre-Dame de l'Arche d'Alliance, Église Saint-Ignace, Église Saint-Médard, Église Notre-Dame-de-Lorette, Temple de l'Oratoire du Louvre, Église Notre-Dame de Clignancourt, Église Saint-Roch, Saint-Nicolas du Chardonnet, Chapelle Notre-Dame-de-la-Compassion, Église Sainte-Hélène, Église de la Sainte-Trinité, Église Saint-Eugène Sainte-Cécile, Chapelle Ozanam, Église luthérienne de la Résurrection, Église Saint-Christophe de Javel, Église Saint-Eustache, Église Saint-Germain l'Auxerrois, Église Saint-Leu - Saint-Gilles, Chapelle Notre-Dame de Grâce, Église Polonaise Notre-Dame de l'Assomption, Église de la Madeleine, Basilique Notre-Dame-des-Victoires, Église Notre-Dame-de-Bonne-Nouvelle, Église Saint-Louis-en-l'Île, Église Saint-Étienne-du-Mont, Église Saint-Éphrem-le-Syriaque, Église Orthodoxe Roumaine des Saints Archanges, Église Saint-Gervais, Église Saint-Merry, Église luthérienne des Billettes, Église Notre-Dame-des-Blancs-Manteaux, Église Saint-Paul - Saint-Louis, Chapelle, Temple Sainte-Marie, Église Saint-Nicolas des Champs, Ancienne Église Saint-Martin des Champs, Église Sainte-Élisabeth, Chapelle de la congrégation du Saint-Esprit, Cathédrale Arménienne Sainte-Croix, Église Saint-Denis du Saint-Sacrement, Église du Val-de-Grâce, Église Luthérienne Saint-Marcel, Église Saint-Jacques-du-Haut-Pas, Église Saint-Germain des Prés, Cathédrale Ukrainienne Saint-Vladimir-le-Grand, Chapelle Notre-Dame de la Sagesse, Église Saint-Vincent-de-Paul, Église Saint-Laurent, Chapelle de l'hôpital Saint-Louis, Église Saint-Martin des Champs, Église Saint-Joseph-Artisan, Temple de la Rencontre, Église Saint-Jean-Baptiste de Belleville, Église Notre-Dame-de-l'Assomption des Buttes-Chaumont, Église luthérienne Saint-Pierre, Église Notre-Dame-de-Fatima, Église Saint-François-d'Assise, Église Sainte-Claire d'Assise, Temple antoiniste, Église Saint-Serge, Église Saint-Georges de la Villette, Église Saint-Joseph des Carmes, Église Saint-Thomas d'Aquin, Église Saint-Ambroise, Chapelle Notre-Dame-Réconciliatrice de la Salette, Basilique Notre-Dame du Perpétuel Secours, Église protestante chinoise de Paris, Église Notre-Dame d'Espérance, Temple protestant du Foyer de l'Âme, Église Réformée du Luxembourg, Église Saint-Jacques Saint-Christophe, Église Notre-Dame des Foyers, Église Notre-Dame des Champs, Basilique Sainte-Clothilde, Cathédrale Saint-Louis des Invalides, Chapelle de Jésus-Enfant, Église Anglicane Saint-Michel, Église Réformée du Saint-Esprit, Temple de Pentemont, Église Saint-Augustin, Chapelle Expiatoire, Église Saint-André de l'Europe, Église Saint-Philippe du Roule, Chapelle Baltard, Église Saint-François-Xavier, Chapelle Notre-Dame de l'Annonciation, Église Américaine, Église Saint-Pierre du Gros Caillou, Église Saint-Louis-d'Antin, Deutsche Evangelische Christuskirche Paris, Church of Scotland, Chapelle Notre-Dame de Consolation, Cathédrale Arménienne Saint-Jean-Baptiste, Cathédrale Américaine de la Sainte-Trinité, Église Luthérienne Saint-Jean, Église Réformée chinoise de Belleville, Église Notre-Dame-des-Otages, Église Notre-Dame-de-la-Croix, Église du Cœur Eucharistique de Jésus, Église Saint-Germain-de-Charonne, Église Saint-Gabriel, Église Saint-Jean-Bosco, Chapelle de l'Est, Église Saint-Cyrille et Saint-Méthode, Chapelle du Corpus-Christi, Église Protestante Danoise, Cathédrale Orthodoxe Russe Saint-Alexandre Nevsky, Saint-Joseph's Church (mission anglophone), Église Saint-Jospeh des Épinettes, Temple des Batignolles, Église Saint-Michel des Batignolles, Église Sainte-Marie des Batignolles, Église de l'Immaculée Conception, Église Sainte-Geneviève des Grandes-Carrières, Église Sainte-Rita, Église Saint-Jean de Montmartre, Église Saint-Bernard de La Chapelle, Chapelle Notre-Dame de la Paix, Église Saint-Éloi, Église Notre-Dame du Bon Conseil, Église Serbe Saint-Sava, Église Notre-Dame de Bercy, Église Orthodoxe de France, Église réformée Port-Royal Quartier Latin, Église Sainte-Rosalie, Église Saint-Albert le Grand, Église Sainte-Anne de la Maison Blanche, Temple Antoiniste de Paris, Église Luthérienne de la Trinité, Église Saint-Marcel, Chapelle Saint-Louis de la Salpêtrière, Église Notre-Dame de Chine, Église Notre-Dame de la Gare, Église Saint-Hippolyte, Cathédrale Saint-Étienne, Église Saint-Pierre de Chaillot, Église Anglicane Saint-Georges, Église Saint-Dominique, Église Notre-Dame-du-Travail, Paroisse de Plaisance, Église Notre-Dame-du-Rosaire, Église Évangélique Libre, Église de Saint-Antoine de Padoue, Église Notre-Dame-Réconciliatrice, Chapelle Notre-Dame-du-Lys, Église Orthodoxe Saint-Séraphin de Sarov, Église Saint-Jean-Baptiste-de-La-Salle, Église Saint-Honoré d'Eylau, Église Réformée de l'Annonciation, Mission Catholique Espagnole - Iglesia Española, Église Notre-Dame-de-l'Assomption de Passy, Église Notre-Dame de Grâce de Passy, Église Saint-Denys de la Chapelle, Chapelle Sainte-Thérèse, Église Saint-François-de-Sales (ancienne église), Église Luthérienne de l'Ascension, Temple Réformé de l'Etoile, Église Sainte-Odile, Église Saint-Charles-de-Monceau, Église Saint-Ferdinand des Ternes, Église du Christ, Église Saint-François-de-Sales (nouvelle église), Église Notre-Dame d'Auteuil, Chapelle Sainte-Bernadette, Église Saint-François de Molitor, Église Polonaise Sainte-Geneviève, Église Sainte-Jeanne-de-Chantal, Chapelle de la Visitation, Église Saint-Antoine des Quinze-Vingts, Chapelle Sainte-Ursule, Église Notre-Dame-du-Liban, Chapelle de l'Épiphanie, Église Notre-Dame-de-Grâce de Passy, Chapelle Laennec, Église Notre-Dame-de-Nazareth, Église nouvelle Saint-Honoré d'Eylau, Chapelle Saint-François d'Assise, Chapelle Sainte-Rita, Basilique Sainte-Jeanne-d’Arc, Église du dôme, Chapelle Notre-Dame-du-Saint-Sacrement, Église Notre-Dame-de-Lourdes, Église Saint-Joseph des Nations, Église Sainte-Marguerite, Église Sainte-Marguerite, Chapelle Sainte-Jeanne-d'Arc, Église du Bon Secours, Église du Saint-Esprit, Chapelle, Prieuré Saint-Benoît, Église Orthodoxe des Trois-Saints-Docteurs, Église Protestante Suéduoise, Chapelle de la clinique Blomet, Église du Bon Pasteur, Église Saint-Jean des Deux Moulins, Chapelle, Église luthérienne Saint-Paul, Chapelle, Chapelle Saint-Yves, Chapelle, Chapelle, Chapelle du Sacré-Cœur-de-Jésus-Roi-de-France, Cathédrale Notre-Dame de Paris, Chapelle Saint-Charles, Chapelle, Chapelle Notre-Dame des Anges, Chapelle Notre-Dame de la Médaille Miraculeuse, Chapelle des Catéchismes, Communauté évangélique Paris Daumesnil, Église Saint-Luc, Église Notre-Dame-de-La-Salette, Sainte-Chapelle +50 and 49.3956377 8.7003866, 49.4129054 8.7286879, 49.4295755 8.7759899, 49.4071892 8.6937962, 49.4277949 8.6859759, 49.4244330 8.7116834, 49.4177407 8.7617228, 49.4105312 8.6975907, 49.4126850 8.7049420, 49.3907840 8.7281080, 49.4097481 8.7070938, 49.3735076 8.7471790, 49.4112622 8.7059705, 49.3878352 8.7614044, 49.4122224 8.7127594, 49.3893232 8.7371550, 49.4069167 8.6886211, 49.3893869 8.7367041, 49.4256538 8.6475866, 49.4072012 8.6930407, 49.4106747 8.7780519, 49.4180857 8.7571952, 49.4187291 8.7567160, 49.4093534 8.7128936, 49.4093935 8.7114074, 49.4102478 8.7191369, 49.4092653 8.7127841, 49.4156539 8.7141859, 49.4121300 8.6990129, 49.4113466 8.7459929, 49.4277478 8.7478736, 49.4179564 8.7608483, 49.4020821 8.7437959, 49.4116784 8.7028078, 49.4187580 8.7405498, 49.4221411 8.6971096, 49.3947519 8.7087503, 49.4105292 8.7152167, 49.4101555 8.6521855, 49.4105161 8.7190962, 49.4097080 8.7160380, 49.4106076 8.7156311, 49.4263861 8.7616530, 49.4103490 8.7069722, 49.4050466 8.6815538, 49.4121130 8.7104783, 49.4120223 8.7062092, 49.4102627 8.6928342, 49.4146460 8.6905719, 49.4106087 8.7156269 +Collège Privé Saint-Louis, École maternelle publique Souzy, École maternelle Charles Baudelaire, École primaire, École primaire Fernand Léger, École maternelle Le Vau, École élémentaire B, École maternelle Olivier de Serre, École primaire, École maternelle des Grands Champs, Collège Léon Gambetta, Lycée Dorian, Collège Georges Courteline, École primaire Chaptal, École maternelle, École élémentaire, École Primaire, Collège César Franck, École élémentaire Compans, École élémentaire Brunet, École maternelle Brunet, Lycée général et technologique Henri Bergson, École maternelle, LPMA, École privée Saint-Laurent, Conservatoire de musique du 14e Arrondissement, École maternelle, École élémentaire Chernoviz, École maternelle, École Polyvalente Pajol, École 56 Avenue Félix Faure, École primaire, Lycée technique Louis Armand, École Nornal Catholique Blomet, Cours Diderot, Lisaa, EIPDCE, Lycée des métiers d'art, d'architecture intérieur et du design BOULLE, École maternelle Élisa Lemonnier, École primaire, École élémentaire privée L'Immaculée-Conception, Colegio Español Frederico Garcia Lorca, École Élémentaire Hyppolite Maindron, École maternelle Maurice Ripoche, École élémentaire Beaudricourt, College Lycée Stanislas, Actif Tutor, École élémentaire de l'Évangile, École maternelle Tchaïkovski, École élémentaire Maurice Genevoix, École élémentaire de Torcy, École maternelle de Torcy, École élémentaire Doudeauville, École maternelle Marx Dormoy, École polyvalente de la Goutte d'Or, École maternelle Goutte d'Or, École polyvalente des Poissonniers, Collège Chaptal, Collège Jules Ferry, Section d'enseignement général et professionnel adapté du Collège Vincent d'Indy, École primaire A, École primaire B, École primaire, École élémentaire de la Plaine, École primaire Publique Laugier, Wall Street Institute, Collège Henri Bergson, Collège privé Lucien de Hirsch, Section d'enseignement général et professionnel adapté du Collège Edouard Pailleron, École maternelle, École primaire, École élémentaire privée Lucien de Hirsch, Cours Clapeyron, IPAG Paris, École maternelle et école élémentaire, École primaire Mathis, École primaire Tandou, Sciences Po, École maternelle Belliard, École élémentaire Belliard, Collège Hector Berlioz, École maternelle Paul Abadie, Polynotes, l'école de musiques, École primaire, École maternelle, École supérieure d'études cinématographiques, École maternelle Bruxelles, École Elémentaire Bruxelles, EFAP Paris, Lycée professionnel Suzanne Valadon, Lycée Camille Jenatzy, École maternelle, École maternelle, École maternelle, École primaire, École primaire, École élémentaire privée Eugène Napoléon, Lycée général et technologique privé Les Petits Champs, École élémentaire privée Montessori Kids, École primaire Privé École du Cerene, Collège privé Soeur Rosalie, Lycée général privé Louise de Marillac, École élémentaire privée Soeur Rosalie, Collège Victor Hugo, École primaire B, École Louise De Bettignie (Sainte-Ursule), École maternelle, École maternelle, Collège Georges Duhamel, École maternelle Volontaires, École maternelle, École élémentaire Télégraphe, École maternelle Auguste Perret, École élémentaire Auguste Perret, Section d'enseignement professionnel du Lycée polyvalent Elisa Lemonnier, École privée française d'Enseigement technique, Collège Lucie Faure, École maternelle publique Maraîchers, École primaire publique Pyrénées T, Collège privé Saint-Louis de Gonzague, École maternelle, Collège Paul Valéry, Lycée général Paul Valéry, Collège Buffon, Collège privé Saint-Jean de Passy, Lycée des métiers de l'optique FRESNEL, Lycée privé Saint-Jean de Passy, Section d'enseignement professionnel du Lycée polyvalent Louis Armand, École Active bilingue Jeannine Manuel (École élémentaire privée), Collège de Staël, Lycée général Buffon, École primaire, École maternelle Gutenberg, École maternelle Brochant, Inlingua, École Gaston Tenoudji, École élémentaire Lemercier, École élémentaire, École maternelle, École Privée Charles Peguy, École maternelle Simon Bolivar, École maternelle et primaire Henri Schili, Paris II - Panthéon Assas - Centre Vaugirard, École maternelle Eugénie Cotton, Écoles élémentaires Eugénie Cotton, École élémentaire, École maternelle Merlin, École Supérieure de Gestion, Collège Camille Sée, Lycée général Camille Sée, École maternelle, Lycée professionnel privé Marcel Lamy, Sup career, École Ganénou, Collège Honoré de Balzac, Lycée général et technologique Honoré de Balzac, Collège Maurice Ravel, Lycée général et technologique Maurice Ravel, Cours Tocqueville, Lycée Municipal d'Adultes Philippe Leclerc de Hauteclocque, École privée Bossuet, Collège Jacques Prévert, École maternelle, École primaire, Collège privé Notre-Dame de France, Lycée général privé Notre-Dame de France, École maternelle, École primaire, École élémentaire privée Notre-Dame de France, École maternelle Pierre Foncin, École maternelle Surmelin, École primaire Bretonneau, École polyvalente, Collège Victor Duruy, Collège d'Hulst (École secondaire privée ), Collège privé d'Hulst, Cours Montaigne (École secondaire privée), Cours Thérèse Chappuis (École secondaire privée), Lycée polyvalent Maximilien Vox-Art-Dessin, Lycée polyvalent privé Albert de Mun, Section d'enseignement professionnel du Lycée polyvalent Maximilien Vox, Section d'enseignement professionnel du Lycée polyvalent privé Saint-Nicolas, École maternelle, École maternelle, École primaire privée Saint-Jean Bosco, École primaire, Collège Guillaume Apollinaire, Collège Privé L'Alma, Collège privé La Rochefoucauld, Collège privé Sainte-Elisabeth, Cours Fidès (École secondaire privée), Institut Privé de l'Alma (École Secondaire Privée ), L'École (École secondaire privée), Lycée général et technologique Roger Verlomme, Lycée général privé La Rochefoucauld, Lycée général privé Sainte-Elisabeth, Section d'enseignement général et professionnel adapté du Collège Guillaume Apollinaire, Section d'enseignement professionnel du Lycée polyvalent privé Albert de Mun, École élementaire privée the lennen bilingual school, École Active Bilingue Jeannine Manuel (Collège privé), École Active Bilingue Jeannine Manuel (Lycée général privé), École du Champ de Mars (École secondaire privée), École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École primaire, École primaire, École primaire, École primaire, École primaire, École primaire, École Élémentaire Privée L'Alma, École élémentaire privée La Rochefoucauld, Lycée professionnel, École maternelle, École élémentaire, École polyvalente Bernard Buffet, École maternelle, École Maternelle Sarrette, École privée Saint-Jean-Baptiste de Belleville - Maternelle et Primaires, École Multimedia, École élementaire, École et Collège Saint-Georges (privé), École maternelle et primaire Saint-Georges (privé), École Dentaire Française, École maternelle Prévoyance, École de Boulangerie et de Pâtisserie, École maternelle Delambre, École élémentaire Delambre, École privée catholique Sainte Marguerite, Collége privé Notre-Dame de Lourdes, École primaire privée Notre-Dame de Lourdes, École privée Sainte-Marthe, Living school, Conservatoire Municipal Paul Dukas, École élémentaire du Clos, École élémentaire 14 Riblette, École élémentaire 16 Riblette, École primaire privée Montessori, Lycée technologique École Nationale Supérieure des Arts Appliqués, École Élémentaire, Lycée polyvalent privé Catherine Labouré, École et Collège Modigliani, École maternelle, École Lacordaire, Lycée général et technologique Chaptal, Collège Edouard Pailleron, Lycée général Paul Bert, École Maternelle Alain Fournier, Lycée François Villon, Collège et Lycée Stanislas, École Wurtz, École Élémentaire, École, Collège Georges Braque, École Glacière, Lycée Lazare Ponticelli, École Primaire, École primaire publique Kuss, Lycée Professionnel Tolbiac, Collège Gabriel Fauré, École primaire, École primaire, École primaire, École maternelle, Lycée Autogéré de Paris, École primaire Saint-Jean, École maternelle, Collège Saint-Exupéry, Collège George Sand, Collège Marie Curie, Collège Parmentier, Lycée Lavoisier, École élémentaire de la Victoire, Lycée professionnel Pierre Lescot, École maternelle Eupatoria, Collège Henri Matisse, Collège La Grange aux Belles, École primaire d'application, École maternelle Domrémy, École Saint-Jacques, École maternelle privée Diwan, Collège Georges Rouault, École élémentaire Cheminets, Lycée technique Diderot, Lycée polyvalent Martin Nadaud, École maternelle Fagon, Lycée professionnel Hector Guimard, Ancien lycée Jean Quarré, Collège Guillaume Budé, École maternelle, Groupe scolaire La Salle Saint-Nicolas, Collège Flora Tristan, Lycée Professionnel Maria Deraismes, Section d'enseignement professionnel du Lycée polyvalent D'Alembert, Collège Maurice Utrillo, Lycée Rabelais, École primaire d'application, Lycée Jean de La Fontaine, École maternelle, Lycée général et technologique Arago, Lycée général Fénelon, École Primaire Convention, École Jongkind, École Élémentaire d'Argenteuil, École primaire, École maternelle, École Maternelle et Élémentaire Beauregard, École Maternelle et Primaire, École primaire Saint-Louis-en-l'Île, Lycée général et technologique Sophie Germain, École élémentaire Saint-Merri, École Primaire Moussy, Groupe Scolaire Archives, École Élémentaire Hospitalière Saint-Gervais, Lycée général Louis Le Grand, Collège Charlemagne, École primaire Charlemagne, École Massillon, École élémentaire privée Massillon, École primaire, École des Francs-Bourgeois, École primaire, École Élémentaire et Collège Montgolfier, École Élémentaire, École maternelle Chapon, Annexe Lycée Professionnel Nicolas Flamel, École maternelle Paul Dubois, École Élémentaire, Lycée et Collège Henri IV, Lycée général Saint-Louis, École Primaire des Quatre Fils, École Maternelle Perle, Collège Victor Hugo - Annexe, Lycée général Victor Hugo, École primaire Turenne, École Maternelle et Élémentaire, École primaire, École maternelle Legouvé, Collège Charles Péguy, Lycée Georges Brassens, Conservatoire municipal du XIXe Jacques Ibert, École Maternelle et Primaire Madame, École élémentaire Froment, Collège et Lycée Montaigne, École Alsacienne, École maternelle Tandou, Collège Georges Méliès, École Élémentaire, École Primaire Surène, Lycée général et technologique Racine, École Élémentaire, Collège Octave Gréard, Lycée Polyvalent Racine (Annexe), École maternelle, La Rochefoucauld, Lycée étranger privé Léonard de Vinci, Lycée Jules Ferry, École Élementaire Privée The Lennen Bilingual School, École maternelle Bretonneau, École primaire Pelleport, Collège Colette Besson, Collège Jean-Baptiste Clément, Centre des Formations Industrielles, École élémentaire Alquier-Debrousse, Lycée professionnel Charles de Gaulle, École primaire Pierre Girard, École maternelle Dautancourt, École élémentaire Truffaut, École polonaise, Lycée Auguste Renoir, Lycée Technologique Bachelard, École des Récollets, Lycée technologique Jules Siegfried, Écoles maternelle et élémentaire Miollis, Institut National des Jeunes Aveugles, Lycée professionnel Gustave Ferrié, École de Sage-Femme de Saint-Antoine, Cité scolaire Rodin, Lycée Jean Lurçat, École Élémentaire Faubourg-Saint-Denis, École Sainte-Anne Sainte-Marie, École maternelle Château des Rentiers, École élémentaire avenue d'Ivry (école B), École Château des Rentiers, École Primaire, Lycée Professionnel Galilée, Collège Gustave Flaubert, École Blanche Jeanne d'Arc, Atelier beaux-arts Montparnasse, Saint-Lambert - Théodore deck, Lycée technique du Bâtiment, École primaire Prisse d'Avennes, École, École Élémentaire Porte Brancion, École Maternelle Porte Brancion, École Maternelle et Élémentaire, École Saint-Honoré d'Eylau, École Polyvalente, École Maternelle et Élémentaire, Lycée général Janson de Sailly, Collège Eugène Delacroix, Lycée et Collège Gerson, Lycée privé Saint-Louis de Gonzague, École Élémentaire, École Maternelle et Élémentaire, Collège et Lycée Molière, École maternelle Gros, École Élémentaire, Centre Interprofessionnel de Formation des Commerces de l'Alimentation, Lycée général et technologique privé Charles de Foucauld, École suédoise de Paris, École maternelle et élémentaire, Cours Sainte-Ursule, École de Paris des Métiers de la Table, École maternelle publique Bayen, École élémentaire publique Berthier, École élémentaire Vigée-Lebrun, École Léman-Belleville, École publique élémentaire, Lycée Jean-Baptiste Say, École Elementaire Simon Bolivar, École Maternelle et Élémentaire du Parc des Princes, École Lamazou, École Universelle, Lycée professionnel René Cassin, École Maternelle et Élémentaire, Institut National des Jeunes Sourds, École primaire publique Frères Voisin, École Maternelle Privée Montessori Rive Gauche, Lycée général Victor Duruy, École primaire, Lycée professionnel Gustave Eiffel, Collège Paul Gauguin, Lycée Edgar Quinet, École maternelle Cour des Noues, Section d'enseignement professionnel du Lycée polyvalent Fresnel, École Maternelle et Élémentaire Aqueduc, École Élémentaire Eugène Varlin, École Maternelle et Élémentaire Louis Blanc, Collège Georges Brassens, École Élémentaire et Maternelle des Trois Bornes, École Maternale et Élémentaire Parmentier, École Sainte-Elisabeth, Cours Hattemer (École secondaire privée), École Robert Estienne, École Saint-Pierre de Chaillot, Collège Aimé Césaire, Collège Jean Moulin, École Élémentaire Severo, Lycée professionnel Erik Satie, Collège Alphonse Daudet, Collège François Couperin, Lycée général Charlemagne, Collège Pierre Alviset, École Élémentaire Gerty-Archimède, Collège Jean François Oeben, École élémentaire privée Saint-Michel de Picpus, Groupe Scolaire Fénelon Sainte-Marie, Lycée Condorcet, Collège Vincent d'Indy, Collège des Écossais, Lycée polyvalent Elisa Lemonnier, École Primaire La Providence - Collège et Lycée La Tour, École primaire, Lycée général et technologique Passy-Saint-Honoré, Collège privé Rocroy Saint-Vincent-de-Paul, École primaire privée Saint-Vincent-de-Paul, Collège-Lycée Lamartine, École élémentaire Dussoubs, Collège Thomas Mann, École Élémentaire Belzunce, École élémentaire, Section d'enseignement professionnel du Lycée polyvalent Lucas de Nehou, École du Mont Cenis, École publique Sainte-Isaure, Collège et Lycée Jacques Decour, Collège Bossuet - Notre-Dame, Lycée Bossuet - Notre-Dame, École des Enfants du spectacle, École maternelle, École élémentaire, École primaire, École maternelle, Lycée polyvalent Jacques Monod, École maternelle, Groupe scolaire, École primaire, École primaire, Collège Raymond-Queneau, Annexe du collège Pierre-Alviset, École primaire, École maternelle, École maternelle, École élémentaire Levert, Lycée Théophile Gautier, École Notre-Dame-de-Sion, École Sainte-Marie, Annexe du lycée Maximilien-Vox, Lycée Carcado-Saisseval, Collège et Lycée Saint-Sulpice, Institut Sainte-Geneviève, École élémentaire, École maternelle, École élémentaire, École Maternelle et Élementaire Publique Vandrezanne, Groupe Scolaire Privé Saint-Vincent-de-Paul, École Élémentaire Ricaut, École Maternelle Ricaut, École nationale de chimie physique et biologie de Paris, Groupe scolaire Saint-Jean de Montmartre, École élémentaire Belleville, Collège Françoise Dolto, Collège Lycée Stéphane Mallarmé, École Primaire Pouchet, École polyvalente, Collège Boris Vian, École élémentaire Ferdinand Flocon, École élémentaire Hermel, Lycée Colbert, École élémentaire Gerbert, École primaire Primo Levi, École élémentaire Buffault, Collège Jules Verne, École Élémentaire, École élémentaire, École maternelle Roquette, École maternelle Popincourt, Lycée professionnel Marcel Deprez, École élémentaire Étienne Dolet, École maternelle, Lycée Carnot, Lycée général et technologique Voltaire, École maternelle et élémentaire Louis-Blanc, Lycée général Claude Monet, École élémentaire Cavé, École maternelle Saint-Luc, École René Binet, École et Collège Privés Saint-Germain de Charonne, École élémentaire des Pyrénées, École privée de la Providence, École polyvalente Champagne, École maternelle Richomme, Collège Georges Clemenceau, École primaire, Groupe scolaire Jeanne d'Arc, École Saint-Éloi, Collège privé Sainte-Clotilde, École Saint-Éloi, École primaire Blanche, École élémentaire, Collège Lycée Saint-Louis, Groupe scolaire Milton, École Notre-Dame de Lorette, École primaire Pommard, École élémentaire, École élémentaire, École élémentaire, Annexe du Lycée Fénelon, École maternelle Saint-André des Arts, Lycée polyvalent Lucas de Nehou, École élémentaire privée Sainte-Clotilde, Lycée privé catholique Fénelon-Sainte-Marie, Institut de Physique du Globe de Paris, École Suzanne Valadon, École primaire d'application Houdon, École Élémentaire Asseline, École élémentaire Jean-François Lépine, École maternelle Charlemagne, École élémentaire Pierre Budin, Collège École Decroly, École Élémentaire Mairie de Paris, École Varet, Collège Jules Romains, École Maternelle Saint-Dominique, École maternelle Roquepine, École Monceau, ENSCI - Les Ateliers, École primaire Tournelles, École primaire, Collège Roland Dorgelès, Institut de l'Assomption (École secondaire privée, École Primaire, École Primaire, École Active bilingue Lamartine, École Primaire, École primaire, École primaire d'application, École primaire, École élémentaire privée du Saint-Esprit, Collège Guy Flavien, École maternelle, Cité Scolaire Henri Bergson, Lycée général et technologique jacquard, Lycée polyvalent l'Initiative, École élémentaire privée Saint-Marcel, Collège André Citroën, École maternelle Ballard, École primaire Balard, École élémentaire de la Guadeloupe, Lycée polyvalent privé Saint-Nicolas, Conservatoire municipal du 13ème Maurice Ravel, Collège Condorcet, Collège Bernard Palissy, École maternelle, Écoles Grégoire-Ferrandi CCIP (École secondaire professionnelle privée), École Joseph de Maistre, Collège Antoine Coysevox, Lycée Professionnel Étienne Dolet, Lycée Turgot, École élémentaire Philippe de Girard, École Polyvalente du Moulin de la Pointe, École primaire, École maternelle Alphonse Baudin, Collège Paul Verlaine, Ateliers des beaux-arts de la ville de Paris - Centre Sévigné, École Primaire Fagon, École maternelle Vincent Auriol, École primaire, École maternelle Sarrette A, École primaire privée Saint-Joseph, Groupe scolaire Saint-Jean-Gabriel, Collège privé Thérèse Chappuis, Lycée général privé Saint-Thomas d'Aquin, Lycée professionnel Beaugrenelle, École primaire, École élémentaire privée Fidès, École Maternelle des Longues Raies, École élémentaire Belleville H, Collège Moulin des Prés, École maternelle Bobillot, Collège et Lycée Hélène Boucher, École du Soleil, École privée catholique de la Trinité, École polyvalente Olivier Métra, École élémentaire Olivier Métra, EREA Édith Piaf, École maternelle Retrait, École élémentaire Pyrénées Eb, École élémentaire Pyrénées, Collège et lycée privés Sainte-Louise, École primaire privée Sainte-Louise, École maternelle Darius Milhaud, École maternelle Manin, École élémentaire Manin Eb, École polyvalente Émile Duployé, École Saint-Paul, École maternelle 7e Art, École élémentaire Tourelles, École maternelle Championnet D, École élémentaire Championnet, École élémentaire Claude Vellefaux, École maternelle Gambetta, Lycée professionnel Théophile Gautier, École élémentaire Charenton, École élémentaire 11 Lesseps, École élémentaire 9 Lesseps, Collège Robert Doisneau, École maternelle Amandiers, École élémentaire Amandiers, Collège Alain Fournier, École maternelle Reuilly X, École élémentaire Reuilly A, École élémentaire Reuilly B, Rocroy Saint-Vincent-de-Paul, École primaire Cugnot, Collège Daniel Mayer, École Massillon, Lycée Bonaparte +37 +ruins and 55.6293002 -2.4084288 +48.8707489 2.3907280, 48.8506016 2.3432743, 48.8459665 2.3500377, 48.8535359 2.3481924, 48.8450745 2.3528309 +1565 and Mont Aigoual, 845, 1685, 1179 and Roc de Peyre, 221.79 and Dent de Marcoule, 702.71, 1067.87 and Mont Mimat, 1101.8, 1417.39 and Mont Grand, 620 and Guidon du Bouquet, 398 and Le Coutach, 470 and Leiris, 848 and Mont Saint-Baudille, 582 and Pioch de Briandes, 677 and Cap Nègre, 685 and Le Moulières, 786 and Mont Méguillou, 738 and La Fréguière, 521 and Pioch Lintil, 701 and Puech Caubel, Col de Lasclier, 1562 and Le Rocher des Laubies, 1503 and Le Moure de la Gardille, 1680 and Pic Cassini, 1247 and Mont Gargo, 1001 and Mont Milan, 752 and Roc Castel, 864 and Pic d'Anjeau, 940 and La Seranne, 1551 and Truc de Fortunio, 1366 and Saint-Guiral, 822 and Mauripe, Sauco Roundo, 1123.5 and Sommet de l'Espinouse, 703.53 and Quiocs, Gratassac, 914 and Pic de la Tourette, 1271 and Puech Saint-Geniez, 1469 and Signal de Mailhebiau, Truc du Coucut, 330 and La Pourcaresse, 1008 and Le truc de Grèzes, 325 and Le Suquet, 1168 and Le Truc de Viala, 1192 and Pic d'Usclat, 1203.8, 1174, 1211.1 and Le Tourrel, 1127.7, 1106.55 and Mont Chabrio, 1657.41 and Signal des Laubies, 1674.3, 1031.1 and La Chaumette, 1421.47 and Signal du Bouges, 662 and Pic Saint-Loup, 1421 and Montagne du Liconès, 1151 and Puech d'Alluech, 1057.6, 1699.27 and Signal de Finiels, 525 and Mont Haut, 782 and Peyre Martine, 772 and Pic de la Caumette, Puech Bartelié, 1276 and Places Hautes, 1324, 1268 and Le Barthas, 1233.2 and Esquino d'Aze, 1075.97 and Serre de Pauparelle, 1152.68, 1219.84, 1239.07, 695 and Signal de Saint Pierre, 1688, 815 and Mont Brion +609 +yes +31 +49.4296874 8.6826637, 49.4279757 8.6835849, 49.4147764 8.6710359, 49.3974030 8.6486853, 49.3977437 8.6485764, 49.4045638 8.6759283, 49.3746833 8.6826514, 49.3790412 8.6689354, 49.3792964 8.6699345, 49.4048779 8.6827341, 49.4172306 8.6824331, 49.4227158 8.6483350, 49.3840770 8.6710133, 49.3809325 8.6701888, 49.4168755 8.6790034, 49.3992315 8.6710140, 49.4228152 8.6504004 +yes +683 and 55.9340759 -3.0969078, 55.9520383 -3.1884477, 55.9479503 -3.1917952, 55.9253583 -3.4147034, 55.9245412 -3.3113504, 55.9530458 -3.2143273, 55.9838701 -3.4034761, 55.9996939 -3.3883352, 55.9478203 -3.2081650, 55.9387180 -3.2183133, 55.9400382 -3.2218792, 55.9448047 -3.2121910, 55.9455627 -3.2319955, 55.9536641 -3.2412247, 55.9794131 -3.3762107, 55.9393979 -3.2226079, 55.9879261 -3.3873321, 55.9339735 -3.2242241, 55.9812940 -3.3771341, 55.9485590 -3.1984660, 55.9215875 -3.3071576, 55.9169023 -3.2880468, 55.9233928 -3.2495641, 55.9172106 -3.2788656, 55.9203287 -3.4338967, 55.9136481 -3.2924112, 55.9222765 -3.3173383, 55.9245302 -3.4143898, 55.9342483 -3.2886138, 55.9185125 -3.2718794, 56.0005355 -3.4042125, 56.0005266 -3.4040011, 55.9115356 -3.3190780, 55.9119727 -3.3136012, 55.9169161 -3.2879655, 55.9216210 -3.3072178, 55.9187028 -3.3241409, 55.9194331 -3.3250368, 55.9201830 -3.2569089, 55.9260327 -3.3234503, 55.9201440 -3.3153742, 55.9172846 -3.2758018, 55.9127039 -3.3185766, 55.9178228 -3.2883067, 55.9177320 -3.2883616, 55.9177084 -3.2885519, 55.9168914 -3.2881838, 55.9208989 -3.3111331, 55.9235850 -3.2498898, 55.9234055 -3.2496291, 55.9234261 -3.3789665, 55.9284947 -3.3843026, 55.9347497 -3.3921486, 55.9399416 -3.4022022, 55.9424898 -3.4014836, 55.9173668 -3.2846812, 55.9290815 -3.1622154, 55.9287446 -3.1606910, 55.9191012 -3.2651146, 55.9258250 -3.2453116, 55.9195055 -3.2619115, 55.9282449 -3.2552516, 55.9383057 -3.2503683, 55.9415244 -3.1005066, 55.9487280 -3.1868685, 55.9659134 -3.2652795, 55.9681946 -3.2394189, 55.9750105 -3.1786523, 56.0005670 -3.4038864, 56.0005711 -3.4043334, 55.9386987 -3.3913489, 55.9727141 -3.1970524, 55.9264863 -3.4288285, 55.9603081 -3.2107045, 55.9363357 -3.2986518, 55.9277719 -3.3059687, 55.9162943 -3.2965876, 55.9198806 -3.3512702, 55.9625415 -3.2038104, 55.9623749 -3.2065598, 55.9736475 -3.1827669, 55.9514109 -3.3422820, 55.9675354 -3.1918069, 55.9688791 -3.1950694, 55.9725812 -3.1878462, 55.9666580 -3.2682414, 55.9764203 -3.1968704, 55.9757382 -3.1965357, 55.9709295 -3.2290845, 55.9606932 -3.2487359, 55.9536682 -3.1872515, 55.9565250 -3.2442832, 55.9559532 -3.2438904, 55.9203523 -3.3017825, 55.9245917 -3.4143875, 55.9202953 -3.4338960, 55.9689404 -3.1949893, 55.9628484 -3.2000133, 55.9696691 -3.2005994, 55.9679404 -3.1368303, 55.9338645 -3.2867061, 55.9245026 -3.2462826, 55.9245495 -3.2462640, 55.9232137 -3.2481025, 55.9303574 -3.2858444, 55.9325097 -3.2743332, 55.9192286 -3.1386957, 55.9197007 -3.1380226, 55.9137536 -3.1474495, 55.9156308 -3.2780598, 55.9272696 -3.2320395, 55.9515857 -3.2367549, 55.9430287 -3.2292834, 55.9149327 -3.2153760, 55.9126347 -3.2166853, 55.9403100 -3.3172931, 55.9402068 -3.3174470, 55.9715640 -3.2396371, 55.9253227 -3.2038994, 55.9130257 -3.2893735, 55.9119796 -3.2938532, 55.9137657 -3.2863134, 55.9409626 -3.2385035, 55.9409129 -3.2364482, 55.9614256 -3.2177089, 55.9563828 -3.1500518, 55.9567793 -3.1501599, 55.9640660 -3.1617691, 55.9711047 -3.1519140, 55.9700990 -3.1476178, 55.9699440 -3.1474063, 55.9794652 -3.1720778, 55.9791423 -3.1705469, 55.9776508 -3.1930509, 55.9271391 -3.1870984, 55.9312243 -3.1716568, 55.9217665 -3.1317079, 55.9196528 -3.1357238, 55.9452392 -3.0932492, 55.9763746 -3.1700963, 55.9727144 -3.2084850, 55.9731806 -3.2057712, 55.9458977 -3.2359608, 55.9476217 -3.2333004, 55.9890944 -3.3836060, 55.9421078 -3.2471068, 55.9892088 -3.3844692, 55.9787645 -3.1700105, 55.9447609 -3.2434052, 55.9498104 -3.2219947, 55.9579656 -3.2087925, 55.9368513 -3.2372248, 55.9659135 -3.1340343, 55.9672533 -3.1958655, 55.9519232 -3.2180493, 55.9148733 -3.2566448, 55.9889521 -3.3925230, 55.9347488 -3.3917488, 55.9357768 -3.2273343, 55.9346242 -3.2323823, 55.9412319 -3.2280853, 55.9501324 -3.2294339, 55.9494024 -3.2030628, 55.9592735 -3.2449240, 55.9637680 -3.2418855, 55.9551419 -3.4188844, 55.9303919 -3.3643927, 55.9374488 -3.3332089, 55.9792112 -3.3468255, 55.9261171 -3.4015537, 55.9260108 -3.4015503, 55.9287081 -3.4030907, 55.9520377 -3.1910636, 55.9574350 -3.4170582, 55.9574829 -3.4172555, 55.9643486 -3.4027677, 55.9644590 -3.4027248, 55.9275914 -3.3074492, 55.9614168 -3.1711787, 55.9188285 -3.2753539, 55.9124646 -3.2769931, 55.9367364 -3.1436706, 55.9352124 -3.1425254, 55.9253309 -3.2094851, 55.9509409 -3.2218060, 55.9516114 -3.2220274, 55.9443411 -3.1018614, 55.9475141 -3.2014767, 55.9523425 -3.2166808, 55.9329088 -3.2359326, 55.9316744 -3.2342577, 55.9314312 -3.2338362, 55.9197142 -3.2569063, 55.9119663 -3.2594709, 55.9178158 -3.2736164, 55.9305915 -3.2544337, 55.9172446 -3.2773680, 55.9501605 -3.1999414, 55.9607015 -3.1685085, 55.9662929 -3.1561624, 55.9547517 -3.1871067, 55.9580989 -3.1581939, 55.9663264 -3.1333091, 55.9409672 -3.2238982, 55.9344797 -3.2675638, 55.9293469 -3.2915960, 55.9287029 -3.3161849, 55.9408387 -3.4098588, 55.9275707 -3.3441434, 55.9274924 -3.2238424, 55.9600201 -3.3539411, 55.9641042 -3.3163667, 55.9355624 -3.2470808, 55.9719076 -3.2186281, 55.9336243 -3.2302100, 55.9388897 -3.2376855, 55.9389643 -3.2370370, 55.9129956 -3.2891261, 55.9396630 -3.3213183, 55.9168698 -3.2882590, 55.9340400 -3.0971256, 55.9439226 -3.3293194, 55.9505782 -3.1643798, 55.9364742 -3.1442593, 55.9364251 -3.1442736, 55.9251316 -3.4146061, 55.9254779 -3.4147399, 55.9516309 -3.1916638, 55.9182088 -3.2391527, 55.9460274 -3.2355654, 55.9415224 -3.1008781, 55.9414721 -3.1006880, 55.9485231 -3.1092860, 55.9185755 -3.2543017, 55.9381683 -3.1188638, 55.9245837 -3.2400577, 55.9529526 -3.1871425, 55.9256057 -3.2110033, 55.9676469 -3.1938769, 55.9329461 -3.2747956, 55.9383632 -3.2504469, 55.9722254 -3.2146091, 55.9724552 -3.2119012, 55.9612213 -3.2440717, 55.9308244 -3.1518837, 55.9297330 -3.1533386, 55.9316562 -3.1507078, 55.9318814 -3.1463309, 55.9277241 -3.1234427, 55.9720619 -3.2015799, 55.9466747 -3.0987444, 55.9575057 -3.1234489, 55.9197247 -3.1913944, 55.9244601 -3.3114765, 55.9252699 -3.3105658, 55.9396441 -3.3214611, 55.9241965 -3.3130785, 55.9192182 -3.3037407, 55.9198673 -3.3046957, 55.9258669 -3.2241737, 55.9413787 -3.0870066, 55.9449791 -3.0819470, 55.9455686 -3.0809735, 55.9673916 -3.4106960, 55.9334961 -3.4103614, 55.9398933 -3.4112294, 55.9659972 -3.3621260, 55.9346898 -3.4222766, 55.9638514 -3.1833342, 55.9225607 -3.4008937, 55.9377687 -3.0829248, 55.9563240 -3.1167910, 55.9553208 -3.1347976, 55.9523666 -3.1216397, 55.9212101 -3.3414649, 55.9396282 -3.4022402, 55.9387262 -3.4018519, 55.9121634 -3.2269803, 55.9793103 -3.3761870, 55.9617180 -3.4132830, 55.9617222 -3.4130523, 55.9386700 -3.2294127, 55.9408297 -3.2281101, 55.9314045 -3.2266827, 55.9374211 -3.3332788, 55.9719867 -3.1819929, 55.9729155 -3.1797103, 55.9781114 -3.2484720, 55.9776632 -3.1715933, 55.9867062 -3.3795502, 55.9129316 -3.2587696, 55.9481947 -3.1326994, 55.9496979 -3.1282542, 55.9505798 -3.1256483, 55.9315629 -3.0896016, 55.9316842 -3.0896474, 55.9524166 -3.1898362, 55.9356573 -3.0894033, 55.9357351 -3.0893738, 55.9357644 -3.0895096, 55.9614118 -3.4422153, 55.9472029 -3.4080139, 55.9470811 -3.4083701, 55.9471370 -3.4081966, 55.9219763 -3.4203941, 55.9201516 -3.3152932, 55.9222998 -3.3172749, 55.9517230 -3.1626551, 55.9195263 -3.1315612, 55.9204725 -3.1296564, 55.9271898 -3.2322404, 55.9752701 -3.1721362, 55.9369948 -3.1150582, 55.9498020 -3.1279042, 55.9335311 -3.2460168, 55.9655017 -3.1987663, 55.9414288 -3.2607445, 55.9492160 -3.2339763, 55.9492137 -3.2340282, 55.9265981 -3.3165664, 55.9401509 -3.1051771, 55.9185615 -3.2564239, 55.9182467 -3.2558059, 55.9255939 -3.2592967, 55.9212342 -3.3024056, 55.9203734 -3.3017859, 55.9204463 -3.3018734, 55.9627829 -3.3296636, 55.9621338 -3.2357562, 55.9550072 -3.1721666, 55.9554953 -3.1694437, 55.9557105 -3.1678403, 55.9198790 -3.2500668, 55.9491095 -3.1886633, 55.9261709 -3.2650765, 55.9483181 -3.1921400, 55.9147477 -3.3175730, 55.9347539 -3.0927986, 55.9390304 -3.3915516, 55.9388624 -3.3914362, 55.9475607 -3.2661403, 55.9309334 -3.3150690, 55.9331552 -3.3165436, 55.9264412 -3.2440999, 55.9545824 -3.1236067, 55.9502050 -3.1185776, 55.9503672 -3.1183641, 55.9502919 -3.1184525, 55.9514019 -3.1213054, 55.9515864 -3.1214448, 55.9337041 -3.3712199, 55.9347207 -3.2664128, 55.9384573 -3.2506124, 55.9781360 -3.2042135, 55.9384983 -3.1011659, 55.9383994 -3.1013350, 55.9360595 -3.0997430, 55.9360181 -3.0994647, 55.9352687 -3.0936685, 55.9301069 -3.2856870, 55.9277603 -3.3107484, 55.9277821 -3.3107229, 55.9604056 -3.1691746, 55.9287128 -3.3160778, 55.9385531 -3.2456125, 55.9203567 -3.2494068, 55.9523112 -3.2197346, 55.9410985 -3.2191428, 55.9800561 -3.1685204, 55.9186191 -3.2133230, 55.9197518 -3.1694474, 55.9195114 -3.1713437, 55.9189800 -3.1809284, 55.9200112 -3.1691248, 55.9201390 -3.1981185, 55.9191575 -3.2099986, 55.9203639 -3.1969606, 55.9265630 -3.1932263, 55.9188974 -3.1826016, 55.9189592 -3.1842633, 55.9202821 -3.1940116, 55.9398079 -3.2219646, 55.9784752 -3.2465952, 55.9789044 -3.2447848, 55.9679775 -3.1369332, 55.9717821 -3.1844100, 55.9717093 -3.1860244, 55.9717076 -3.1875125, 55.9681145 -3.1895803, 55.9441698 -3.2693328, 55.9465305 -3.2693949, 55.9453130 -3.2700572, 55.9441175 -3.2720063, 55.9442882 -3.1018500, 55.9399673 -3.2399943, 55.9394933 -3.2453748, 55.9559483 -3.1383567, 55.9572590 -3.1673552, 55.9374126 -3.4329432, 55.9426504 -3.4419958, 55.9516244 -3.1908922, 55.9514059 -3.1888093, 55.9150903 -3.3211208, 55.9147213 -3.3164547, 55.9670658 -3.1880808, 55.9843921 -3.4038630, 55.9733736 -3.3721666, 55.9615149 -3.4204840, 55.9566510 -3.4260417, 55.9565322 -3.4260555, 55.9151194 -3.2550825, 55.9122549 -3.2233845, 55.9364645 -3.0866076, 55.9114742 -3.3289109, 55.9622791 -3.2012126, 55.9421801 -3.2471095, 55.9354120 -3.1193612, 55.9393811 -3.2455628, 55.9383946 -3.2504900, 55.9382808 -3.2503344, 55.9303232 -3.2858247, 55.9277363 -3.3059625, 55.9293125 -3.2915775, 55.9407555 -3.1334453, 55.9536468 -3.1183721, 55.9521945 -3.1196977, 55.9523374 -3.1199969, 55.9389764 -3.2564267, 55.9343717 -3.3380326, 55.9336909 -3.3354767, 55.9403251 -3.1711216, 55.9559244 -3.1689031, 55.9457633 -3.1036022, 55.9471038 -3.1039051, 55.9501220 -3.1187317, 55.9512778 -3.1212874, 55.9506598 -3.1233359, 55.9372017 -3.1058578, 55.9553192 -3.1595172, 55.9524698 -3.3734976, 55.9650413 -3.2056001, 55.9639941 -3.2050491, 55.9640506 -3.2037879, 55.9644677 -3.2053237, 55.9768122 -3.1695301, 55.9460367 -3.0786225, 55.9641866 -3.2051688, 55.9698896 -3.2368187, 55.9414313 -3.0989766, 55.9784045 -3.1624012, 55.9436659 -3.0898885, 55.9714931 -3.1855918, 55.9644884 -3.2607345, 55.9651737 -3.3161001, 55.9528270 -3.1190826, 55.9474170 -3.4010655, 55.9531953 -3.4004826, 55.9496106 -3.2250631, 55.9360819 -3.0998763, 55.9869438 -3.3819439, 55.9116079 -3.2325243, 55.9499764 -3.4058056, 55.9495739 -3.4048963, 55.9439064 -3.4138957, 55.9254219 -3.4280602, 55.9255253 -3.4280577, 55.9793014 -3.1868073, 55.9196416 -3.2758298, 55.9175481 -3.2816550, 55.9211105 -3.4253433, 55.9206868 -3.4296551, 55.9214106 -3.3084104, 55.9185066 -3.2720477, 55.9301289 -3.1759929, 55.9171117 -3.3421022, 55.9715066 -3.2804764, 55.9714808 -3.2806451, 55.9712166 -3.2803296, 55.9888951 -3.3973524, 55.9795806 -3.3964157, 55.9340984 -3.4004483, 55.9339794 -3.4004240, 55.9523329 -3.1219744, 55.9523473 -3.1218286, 55.9237523 -3.2486106, 55.9667609 -3.1986965, 55.9629385 -3.4032441, 55.9623104 -3.4309700, 55.9612817 -3.2180808, 55.9328281 -3.2746596, 55.9328551 -3.2746954, 55.9329730 -3.2748287, 55.9394512 -3.2452451, 55.9431085 -3.2293645, 55.9430025 -3.2292568, 55.9409323 -3.2384857, 55.9430616 -3.2293168, 55.9395239 -3.2453984, 55.9393795 -3.2453481, 55.9394029 -3.2453236, 55.9323864 -3.2871966, 55.9427303 -3.4223013, 55.9819463 -3.1774723, 55.9172828 -3.2148269, 55.9733364 -3.1998767, 55.9387086 -3.4018441, 55.9347390 -3.4004629, 55.9347350 -3.4006735, 55.9408977 -3.3783402, 55.9418945 -3.3744896, 55.9370550 -3.3589671, 55.9369534 -3.3590018, 55.9226886 -3.1659385, 55.9289089 -3.2483770, 55.9254934 -3.4147419, 55.9596457 -3.1649121, 55.9518333 -3.2180730, 55.9713657 -3.3285830, 55.9139843 -3.3266712, 55.9138724 -3.3283900, 55.9138281 -3.3289507, 55.9404913 -3.2132648, 55.9563336 -3.3977999, 55.9702651 -3.3747743, 55.9793990 -3.3747495, 55.9795032 -3.3747767, 55.9402898 -3.3231801, 55.9404637 -3.3353169, 56.0028482 -3.4137500, 56.0027732 -3.4134188, 55.9575192 -3.4174461, 55.9551170 -3.4187252, 55.9412112 -3.2385524, 55.9395609 -3.2454472, 55.9433784 -3.2295944, 55.9415382 -3.3356085, 55.9761578 -3.3786363, 55.9409548 -3.4098374, 55.9206332 -3.3019882, 55.9867511 -3.3817443, 55.9867527 -3.3819155, 55.9865602 -3.3817051, 55.9203199 -3.1339112, 55.9300778 -3.2856656, 55.9434087 -3.2296013, 55.9291865 -3.2914547, 55.9324790 -3.2743161, 55.9384884 -3.2506410, 55.9291523 -3.2914405, 55.9410200 -3.2385372, 55.9395943 -3.2454714, 55.9404906 -3.3353136, 55.9412402 -3.2385785, 55.9399507 -3.2400017, 55.9409900 -3.2385210, 55.9347120 -3.2664838, 55.9410979 -3.2385587, 55.9117266 -3.2935809, 55.9173632 -3.2824005, 55.9156210 -3.2832169, 55.9565035 -3.4260650, 55.9566866 -3.4260323, 55.9330752 -3.2518749, 55.9195813 -3.1706208, 55.9352633 -3.0935375, 55.9347372 -3.0928218, 55.9171429 -3.1435645, 55.9174253 -3.1426070, 55.9509169 -3.4494853, 55.9501752 -3.1186403, 55.9502514 -3.1185072, 55.9594452 -3.3187542, 55.9389730 -3.2630427, 55.9380195 -3.2629562, 55.9386264 -3.2629284, 55.9388165 -3.2630172, 55.9734337 -3.1921970, 55.9481275 -3.2086529, 55.9486679 -3.2080093, 55.9413168 -3.2110594, 55.9128992 -3.3173628, 55.9142511 -3.3254009, 55.9562630 -3.2104579, 55.9710708 -3.3853507, 55.9712667 -3.3862514, 55.9514557 -3.1889452, 55.9527669 -3.1872478, 55.9639844 -3.2293081, 55.9431363 -3.2293927, 55.9431629 -3.2294198, 55.9432761 -3.2295356, 55.9432343 -3.2294925, 55.9431947 -3.2294521, 55.9347006 -3.2665504, 55.9563108 -3.2104273, 55.9198136 -3.1910370, 55.9198330 -3.1912323, 55.9519638 -3.1893881, 55.9513717 -3.1889027, 55.9444560 -3.2438143, 55.9276018 -3.1242863, 55.9193447 -3.3215440, 55.9401029 -3.2459404, 55.9400509 -3.2458788, 55.9144679 -3.3441278, 55.9199272 -3.3046850, 55.9212859 -3.3299990, 55.9556775 -3.1678207, 55.9549782 -3.1721413, 55.9554652 -3.1694213, 55.9550351 -3.1719805, 55.9563502 -3.1500510, 55.9552887 -3.1595205, 55.9550418 -3.1721874, 55.9231423 -3.1317251, 55.9263765 -3.1245977, 55.9320392 -3.1186143, 55.9587192 -3.3919290, 55.9230920 -3.1288480, 55.9264003 -3.1245253, 55.9238791 -3.1301288, 55.9249092 -3.1317835, 55.9574633 -3.1234478, 55.9294189 -3.4153351, 55.9279524 -3.4223584, 55.9450755 -3.0796893, 55.9442484 -3.1018255, 55.9699278 -3.1455846, 55.9881960 -3.3897624, 55.9392951 -3.3235462, 55.9392655 -3.3236898, 55.9231539 -3.2480582, 55.9164084 -3.1849654, 55.9177937 -3.1846644, 55.9240254 -3.2490676, 55.9370530 -3.1415506, 55.9517467 -3.2180959, 55.9446512 -3.0880046, 55.9121932 -3.1484610, 55.9239852 -3.3778710, 55.9148989 -3.2814860, 55.9661699 -3.3763106, 55.9469959 -3.1020369, 55.9600478 -3.3539062, 55.9660032 -3.3620577, 55.9334622 -3.4103647, 55.9340641 -3.4004428, 55.9120032 -3.2938699, 55.9137971 -3.2863402, 55.9130615 -3.2893982, 55.9149233 -3.2814984, 55.9408433 -3.2281719, 55.9195311 -3.2619429, 55.9258506 -3.2453444, 55.9386774 -3.2294745, 55.9316864 -3.2343155, 55.9236107 -3.2499213, 55.9643068 -3.3786468, 55.9513043 -3.1888663, 55.9293834 -3.4153028, 55.9264502 -3.4287984, 55.9279123 -3.4223325, 55.9339469 -3.4004134, 55.9932311 -3.4213582, 55.9851500 -3.4224768, 55.9845616 -3.4222185, 55.9794973 -3.3962181, 55.9147359 -3.2813285, 55.9506990 -3.1783969, 55.9902549 -3.4029695, 55.9513642 -3.1213511, 55.9436387 -3.0899418, 55.9776667 -3.1692630, 55.9773820 -3.1693259, 55.9772501 -3.1693673, 55.9766189 -3.1695907, 55.9777727 -3.1692450, 55.9774930 -3.1693036, 55.9996839 -3.3884053, 55.9869295 -3.3820116, 55.9256594 -3.2520596, 55.9346516 -3.4223004, 55.9522338 -3.4284125 +144 +italian +43 +413 +394 and 53.2306579 10.4274344, 53.2514965 10.3906909, 53.2381958 10.3944837, 53.2358185 10.4619107, 53.2344519 10.4427159, 53.2482281 10.4264291, 53.2376960 10.4325560, 53.2464094 10.4325320, 53.2463632 10.4288812, 53.2464306 10.4307655, 53.2466255 10.4273478, 53.2470137 10.4284433, 53.2477825 10.4302354, 53.2353691 10.4518885, 53.2353999 10.4486849, 53.2354548 10.4510422, 53.2360726 10.4487415, 53.2361414 10.4516016, 53.2364851 10.4501529, 53.2364974 10.4521568, 53.2374203 10.4521229, 53.2374681 10.4505104, 53.2324589 10.4494652, 53.2332900 10.4491819, 53.2336333 10.4480214, 53.2338477 10.4502845, 53.2339187 10.4459007, 53.2342824 10.4473529, 53.2347052 10.4496245, 53.2374793 10.4489675, 53.2071745 10.4381306, 53.2594390 10.4168953, 53.2557457 10.4265304, 53.2557575 10.4282082, 53.2557160 10.4301049, 53.2557182 10.4319373, 53.2556659 10.4336625, 53.2556725 10.4354274, 53.2555984 10.4369689, 53.2552274 10.4297702, 53.2567749 10.4250120, 53.2557886 10.4248316, 53.2547174 10.4246533, 53.2538933 10.4233900, 53.2553121 10.4238026, 53.2562437 10.4240312, 53.2404791 10.4262237, 53.2429519 10.4008019, 53.2480010 10.4868028, 53.2748772 10.4279071, 53.2760590 10.4277894, 53.2697006 10.4281536, 53.2723907 10.4272186, 53.2749561 10.4189260, 53.2812663 10.4225674, 53.2812786 10.4231167, 53.2576784 10.4677211, 53.2578471 10.4649552, 53.2580921 10.4710561, 53.2584940 10.4720382, 53.2585333 10.4636309, 53.2591360 10.4753109, 53.2593004 10.4665742, 53.2596843 10.4692332, 53.2599695 10.4748172, 53.2599982 10.4673232, 53.2600019 10.4715583, 53.2600305 10.4731543, 53.2606052 10.4703320, 53.2609464 10.4587271, 53.2611048 10.4647618, 53.2612997 10.4707444, 53.2613988 10.4599940, 53.2616182 10.4682951, 53.2617010 10.4647235, 53.2619134 10.4613162, 53.2624884 10.4602395, 53.2628284 10.4619872, 53.2632944 10.4630635, 53.2636301 10.4641984, 53.2677387 10.4671458, 53.2688701 10.4648114, 53.2476784 10.4310532, 53.2620616 10.4431441, 53.2627637 10.4434730, 53.2631120 10.4487988, 53.2466525 10.4367183, 53.2470863 10.4350133, 53.2423876 10.4420320, 53.2613938 10.4401269, 53.2569745 10.4269350, 53.2461399 10.4438514, 53.2524395 10.4301336, 53.2472738 10.4442136, 53.2507096 10.4062956, 53.2511739 10.4045475, 53.2518601 10.4079106, 53.2474685 10.4101348, 53.2476602 10.4100841, 53.2478879 10.4090087, 53.2483319 10.4089512, 53.2488889 10.4089334, 53.2491268 10.4089370, 53.2493605 10.4089617, 53.2503923 10.4098882, 53.2513612 10.4091098, 53.2519746 10.4091802, 53.2496895 10.4273813, 53.2751411 10.3914676, 53.2754405 10.3930396, 53.2753134 10.3903724, 53.2758660 10.3923041, 53.2767893 10.3927209, 53.2636307 10.4245916, 53.2646531 10.4167896, 53.2661977 10.4171066, 53.2664837 10.4159812, 53.2668560 10.4148126, 53.2674026 10.4135964, 53.2708861 10.4183448, 53.2498316 10.4454009, 53.2451127 10.4580505, 53.2447753 10.4496377, 53.2444416 10.4521675, 53.2466541 10.4481968, 53.2439985 10.4511707, 53.2433365 10.4529522, 53.2450298 10.4511910, 53.2508028 10.4320024, 53.2493169 10.4424974, 53.2484897 10.4445314, 53.2425054 10.4050319, 53.2431809 10.4118645, 53.2448429 10.4150692, 53.2434711 10.4097803, 53.2457985 10.4135773, 53.2439041 10.4080892, 53.2443070 10.4133285, 53.2334502 10.4193616, 53.2606051 10.4115429, 53.2608526 10.4090210, 53.2615042 10.4087478, 53.2617387 10.4096613, 53.2619464 10.4110216, 53.2621622 10.4084304, 53.2623548 10.4121160, 53.2629281 10.4085972, 53.2631305 10.4106459, 53.2647205 10.4091444, 53.2649416 10.4117421, 53.2662385 10.4061297, 53.2662434 10.4110725, 53.2664851 10.4092302, 53.2680052 10.4073621, 53.2709483 10.4062063, 53.2515483 10.4121280, 53.2515328 10.4109616, 53.2505232 10.4112946, 53.2477910 10.4117278, 53.2480514 10.4133703, 53.2604633 10.4017644, 53.2555883 10.3926045, 53.2614502 10.4013265, 53.2623791 10.4029792, 53.2431248 10.4511554, 53.2438666 10.4480715, 53.2592925 10.4092962, 53.2473935 10.4062501, 53.2473799 10.4075262, 53.2473916 10.4080959, 53.2474107 10.4052637, 53.2494840 10.4300953, 53.2481670 10.4346215, 53.2458125 10.4518070, 53.2439025 10.4768601, 53.2434731 10.4697735, 53.2470823 10.4613186, 53.2472460 10.4597458, 53.2482467 10.4079450, 53.2483432 10.4096472, 53.2484038 10.4101676, 53.2493813 10.4105157, 53.2467508 10.4063593, 53.2469707 10.4075598, 53.2473474 10.4079990, 53.2469673 10.4043045, 53.2500593 10.4078320, 53.2501555 10.4057429, 53.2500368 10.4082329, 53.2491048 10.4061063, 53.2504202 10.4086255, 53.2504100 10.4085736, 53.2503178 10.4082778, 53.2504601 10.4080188, 53.2500232 10.4084882, 53.2500749 10.4087996, 53.2503959 10.4087306, 53.2500906 10.4076015, 53.2501331 10.4078625, 53.2500632 10.4074607, 53.2468602 10.4400314, 53.2408081 10.4086237, 53.2384303 10.4044152, 53.2441643 10.4118430, 53.2458636 10.4067670, 53.2370206 10.4120269, 53.2388072 10.4118368, 53.2383343 10.4100362, 53.2464568 10.4091614, 53.2520457 10.4140117, 53.2463801 10.4161401, 53.2334051 10.4312145, 53.2356302 10.4249094, 53.2287405 10.4167992, 53.2343563 10.4263896, 53.2354748 10.4313973, 53.2354347 10.4262096, 53.2448327 10.4441934, 53.2470689 10.4280468, 53.2098814 10.4094226, 53.2270304 10.4055514, 53.2317482 10.4071928, 53.2259271 10.4070499, 53.2277424 10.4069142, 53.2235946 10.4057242, 53.2282035 10.4056925, 53.2368105 10.4578213, 53.2395337 10.4582663, 53.2309539 10.4419181, 53.2314967 10.4463242, 53.2308848 10.4492264, 53.2323355 10.4471542, 53.2272126 10.4439771, 53.2339035 10.4416727, 53.2306586 10.4606055, 53.2315243 10.4627457, 53.2320665 10.4588908, 53.2379440 10.4649316, 53.2338531 10.4562737, 53.2353182 10.4646314, 53.2360363 10.4647665, 53.2368752 10.4645020, 53.2338417 10.4550219, 53.2364360 10.4608447, 53.2355574 10.4632641, 53.2388126 10.4650372, 53.2375897 10.4637237, 53.2372645 10.4609571, 53.2372681 10.4666925, 53.2291945 10.4477457, 53.2300774 10.4458006, 53.2247784 10.4032230, 53.2458943 10.4092073, 53.2492415 10.4243569, 53.2495394 10.4257241, 53.2268354 10.3992910, 53.2415081 10.4414674, 53.2447042 10.4488951, 53.2591541 10.4228734, 53.2531193 10.4289225, 53.2536231 10.4312934, 53.2535919 10.4341019, 53.2530772 10.4329754, 53.2520964 10.4330445, 53.2503250 10.4439631, 53.2368841 10.3866655, 53.2377268 10.3860606, 53.2416417 10.3940583, 53.2376043 10.3810798, 53.2387823 10.3860177, 53.2367082 10.3912326, 53.2380630 10.3840673, 53.2378794 10.3826948, 53.2407555 10.4007535, 53.2404717 10.3997546, 53.2395929 10.3985328, 53.2458923 10.4400033, 53.2535244 10.4019801, 53.2633543 10.4045372, 53.2534711 10.4006830, 53.2549616 10.4062542, 53.2543851 10.4082661, 53.2543887 10.4060723, 53.2540093 10.4023440, 53.2573312 10.4009660, 53.2559564 10.4017902, 53.2533435 10.3995289, 53.2559452 10.3987908, 53.2570138 10.3927220, 53.2559204 10.3882040, 53.2561297 10.3964899, 53.2570467 10.3940277, 53.2569395 10.3955723, 53.2536801 10.3966334, 53.2531696 10.3988523, 53.2562339 10.3936391, 53.2568583 10.3913970, 53.2568318 10.3877182, 53.2684063 10.3867529, 53.2692811 10.3869036, 53.2694151 10.3814748, 53.2694886 10.3885844, 53.2695934 10.4026124, 53.2699408 10.3874623, 53.2701291 10.3838584, 53.2702473 10.4022888, 53.2703738 10.3817945, 53.2707057 10.3800640, 53.2708391 10.3853051, 53.2708483 10.3883143, 53.2711477 10.3786936, 53.2714200 10.3875657, 53.2714919 10.3866581, 53.2719613 10.3836590, 53.2720682 10.3912095, 53.2724827 10.3902882, 53.2731467 10.3941091, 53.2740632 10.3910205, 53.2741833 10.3828456, 53.2747945 10.3890874, 53.2748489 10.4015756, 53.2749890 10.3879326, 53.2753625 10.3796426, 53.2761921 10.3854859, 53.2762217 10.3814291, 53.2762904 10.3802840, 53.2775875 10.3842757, 53.2784923 10.3886185, 53.2789133 10.3858079, 53.2495203 10.3995705, 53.2493671 10.3858430, 53.2526476 10.4118866, 53.2517767 10.4001823, 53.2522463 10.3902101, 53.2500720 10.4011059, 53.2475169 10.4005259, 53.2484006 10.4021774, 53.2523889 10.4132605, 53.2469181 10.3963257, 53.2438651 10.4005927, 53.2446208 10.4024979, 53.2471780 10.3950082, 53.2467293 10.3940752, 53.2473055 10.4086941, 53.2444293 10.4038319, 53.2458461 10.4007459, 53.2472146 10.3937709, 53.2440361 10.4059309, 53.2447827 10.4016712, 53.2440611 10.4020762, 53.2832009 10.3964773, 53.2479075 10.4187359, 53.2538347 10.4354390, 53.2548627 10.4330521, 53.2570429 10.4150602, 53.2564388 10.4170875, 53.2552365 10.4159898, 53.2382359 10.3992805, 53.2390485 10.3985253, 53.2398936 10.4000290, 53.2376172 10.3929051, 53.2414340 10.4026714, 53.2312843 10.3957315, 53.2380081 10.3967438, 53.2331212 10.3964182, 53.2384392 10.3957472, 53.2354407 10.3993932, 53.2325225 10.3978456, 53.2388447 10.3997875, 53.2326260 10.3962404, 53.2560316 10.4156506, 53.2480744 10.3929536, 53.2518935 10.3930105, 53.2439921 10.3909494, 53.2436299 10.3904803, 53.2420695 10.3917720, 53.2435642 10.4066933, 53.2482778 10.3951370, 53.2265319 10.3979192, 53.2394682 10.4275377, 53.2350984 10.3864932, 53.2364395 10.3842833, 53.2336693 10.3958656, 53.2353473 10.3842978, 53.2360653 10.3868876, 53.2349954 10.3812279, 53.2350735 10.3855185, 53.2361762 10.3856308, 53.2502126 10.4025512, 53.2329777 10.3866801, 53.2367155 10.3891559, 53.2302152 10.3917581, 53.2496922 10.4032318, 53.2618812 10.4194258 +yes +1 +48.8428024 2.3024212, 48.8535124 2.3349428, 48.8496184 2.3521690, 48.8494725 2.3556898, 48.8502265 2.3482852, 48.8532985 2.3263609, 48.8542722 2.4004111, 48.8434181 2.2997690, 48.8477803 2.3019256, 48.8454862 2.3697712, 48.8504228 2.4065330, 48.8469227 2.2856922, 48.8452324 2.2978409, 48.8473002 2.3015819, 48.8455718 2.3018823, 48.8470055 2.2957760, 48.8491104 2.3034797, 48.8521565 2.3266646, 48.8515210 2.3266631, 48.8365442 2.2948691, 48.8380635 2.3056765, 48.8403553 2.3038378, 48.8523905 2.3413027, 48.8489616 2.3391032, 48.8643067 2.3348568, 48.8283951 2.3766208, 48.8921108 2.3751961, 48.8342726 2.3085148, 48.8700731 2.3844758, 48.8702594 2.3860980, 48.8715301 2.3874968, 48.8726817 2.3841494, 48.8690010 2.3856816, 48.8696528 2.3800869, 48.8725516 2.3783579, 48.8673835 2.3830489, 48.8949604 2.3648581, 48.8489374 2.3729446, 48.8482032 2.3715312, 48.8471107 2.3753997, 48.8471539 2.2962492, 48.8802934 2.3966027, 48.8406418 2.3541771, 48.8460249 2.3758514, 48.8460309 2.3745805, 48.8491257 2.3916769, 48.8505550 2.3903815, 48.8526340 2.3885654, 48.8398577 2.3474231, 48.8460504 2.3085941, 48.8525976 2.3324258, 48.8478855 2.3676795, 48.8167450 2.3551427, 48.8516101 2.2915432, 48.8513195 2.3984311, 48.8313024 2.3580825, 48.8505980 2.3756315, 48.8662217 2.3895964, 48.8369621 2.3916125, 48.8345817 2.2682119, 48.8344977 2.3055217, 48.8266395 2.3631137, 48.8265936 2.3638347, 48.8428127 2.2979483, 48.8522343 2.3401016, 48.8421330 2.3862159, 48.8412077 2.3889160, 48.8293299 2.3654239, 48.8252614 2.3574047, 48.8318943 2.3051920, 48.8419766 2.3631327, 48.8466424 2.3872245, 48.8734931 2.3899725, 48.8748438 2.3895179, 48.8857082 2.3756616, 48.8740584 2.3761419, 48.8256891 2.3501301, 48.8296848 2.3541069, 48.8278037 2.3523028, 48.8256293 2.3483441, 48.8632105 2.3998501, 48.8189768 2.3657077, 48.8234454 2.3709722, 48.8227762 2.3624835, 48.8214034 2.3722415, 48.8207003 2.3640557, 48.8260744 2.3543019, 48.8244936 2.3379891, 48.8222464 2.3552235, 48.8233563 2.3542079, 48.8246704 2.3465277, 48.8251740 2.3417242, 48.8238645 2.3485192, 48.8238988 2.3446115, 48.8761919 2.3607846, 48.8681145 2.3380654, 48.8482882 2.3806325, 48.8863319 2.3711222, 48.8890319 2.3744326, 48.8948588 2.3721971, 48.8862739 2.3595599, 48.8893604 2.3711944, 48.8872523 2.3728586, 48.8862555 2.3564214, 48.8920710 2.3616583, 48.8759981 2.2888804, 48.8422545 2.3231808, 48.8452718 2.3398200, 48.8456601 2.2559176, 48.8580164 2.3548706, 48.8449427 2.2615550, 48.8647002 2.3457111, 48.8454415 2.2585494, 48.8432331 2.3835289, 48.8475339 2.3882237, 48.8378794 2.4004320, 48.8380872 2.3994343, 48.8476871 2.3901194, 48.8471042 2.3852055, 48.8479792 2.3931721, 48.8391909 2.3969895, 48.8368962 2.4026322, 48.8359135 2.4058277, 48.8391569 2.3892705, 48.8499851 2.3083895, 48.8499808 2.3116300, 48.8453270 2.3106657, 48.8445654 2.3175610, 48.8767887 2.2836342, 48.8437701 2.2985039, 48.8356160 2.2812969, 48.8413849 2.3139125, 48.8354238 2.3118648, 48.8389372 2.3163214, 48.8370148 2.3027175, 48.8386344 2.3143780, 48.8431975 2.3125168, 48.8648963 2.3741522, 48.8491145 2.2975673, 48.8668379 2.3438017, 48.8682924 2.3433350, 48.8908797 2.3744767, 48.8910821 2.3734196, 48.8255689 2.3215157, 48.8414118 2.3440069, 48.8491151 2.3992867, 48.8434985 2.3253726, 48.8606245 2.4045354, 48.8435431 2.2957955, 48.8427332 2.2953960, 48.8395612 2.3011065, 48.8508395 2.3843514, 48.8674944 2.3533853, 48.8392213 2.3299129, 48.8705697 2.3483676, 48.8398721 2.3821834, 48.8426084 2.2922985, 48.8426958 2.2923414, 48.8233770 2.3091846, 48.8637180 2.3427315, 48.8589783 2.4022376, 48.8538143 2.3069683, 48.8379393 2.3947080, 48.8540822 2.2756588, 48.8592780 2.2771936, 48.8607801 2.2824478, 48.8632856 2.2864214, 48.8645288 2.2881993, 48.8680698 2.2907642, 48.8625131 2.3505652, 48.8626380 2.3503800, 48.8630774 2.3526152, 48.8637423 2.3492027, 48.8448439 2.3826317, 48.8505114 2.3788484, 48.8377454 2.3971411, 48.8449387 2.3800015, 48.8489499 2.3971094, 48.8359723 2.2905286, 48.8377769 2.2913038, 48.8221069 2.3505029, 48.8716148 2.4042110, 48.8673402 2.4006763, 48.8688371 2.4017940, 48.8702353 2.4031395, 48.8738942 2.4051527, 48.8707130 2.3991468, 48.8753906 2.3990200, 48.8758525 2.4010202, 48.8758784 2.4027378, 48.8763320 2.4034081, 48.8581459 2.3478668, 48.8254306 2.3745724, 48.8371917 2.3528301, 48.8374941 2.3543561, 48.8298207 2.3497671, 48.8481308 2.2902306, 48.8279668 2.3644980, 48.8282434 2.3565433, 48.8291460 2.3577224, 48.8327614 2.3622482, 48.8264163 2.3598711, 48.8301159 2.3017971, 48.8889239 2.3604830, 48.8326504 2.3120265, 48.8925714 2.3595715, 48.8342510 2.3976866, 48.8467389 2.3809082, 48.8291352 2.3608175, 48.8292488 2.3741831, 48.8903282 2.3600864, 48.8895811 2.3597672, 48.8214630 2.3588696, 48.8226985 2.3584907, 48.8445762 2.2871211, 48.8687984 2.3727205, 48.8932747 2.3631869, 48.8763654 2.3316481, 48.8311042 2.2923152, 48.8330785 2.2996031, 48.8410498 2.2912651, 48.8272993 2.3681039, 48.8711337 2.2759964, 48.8884174 2.3778947, 48.8442066 2.3901213, 48.8490587 2.2877877, 48.8666717 2.3501829, 48.8919944 2.3633128, 48.8462045 2.2779667, 48.8264147 2.3262238, 48.8613553 2.3023359, 48.8250855 2.3258682, 48.8295109 2.3563809, 48.8636448 2.3397088, 48.8933156 2.3933426, 48.8298567 2.3572407, 48.8603983 2.4043015, 48.8584497 2.3533925, 48.8495908 2.3740611, 48.8348750 2.2688001, 48.8327500 2.3614988, 48.8754439 2.4120443 +yes and 3 and 49.4146957 8.7191257, 49.4077784 8.6939263, 49.4070387 8.6723984 +48.8868146 2.3594625, 48.8467471 2.3717077, 48.8884053 2.3785210, 48.8278753 2.3796701, 48.8562375 2.3660049, 48.8495763 2.3798752 +11 +19 +yes +Jettenhöhle, Lichtenstein Höhle, Marthahöhle and 51.6842335 10.2727562, 51.7241177 10.1731033, 51.6895943 10.2692656 +55.9507953 -3.3038276 +48.8801870 2.3552631 +49.4081091 8.6783361, 49.3819891 8.7064791, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.3805076 8.6913796, 49.3779472 8.6930196, 49.3791086 8.6917106, 49.4091892 8.6985480, 49.4123589 8.7022987, 49.4113938 8.7045200, 49.4129429 8.7045098, 49.4102972 8.7060567, 49.4098890 8.7063691, 49.4122875 8.7109014, 49.4459821 8.7648025, 49.3821317 8.6823070, 49.3988716 8.6899921, 49.3974932 8.6821302, 49.4492216 8.7243852, 49.4531888 8.7235012, 49.4277884 8.6857649, 49.4274974 8.6861291, 49.4275110 8.6857082, 49.4300935 8.6879524, 49.4276763 8.6857958, 49.4276034 8.6855513, 49.4311523 8.7053142, 49.4295856 8.6906085, 49.4483906 8.6895518, 49.4479618 8.6899205, 49.4477023 8.6901845, 49.4131384 8.6917368, 49.4147215 8.6903017, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.4330929 8.6855356, 49.4117519 8.7056037, 49.4293551 8.6825053, 49.4436254 8.6706107, 49.4425555 8.6690983, 49.4463734 8.6731086, 49.4125622 8.6856608, 49.4054825 8.6765974, 49.4347876 8.6782371, 49.4366610 8.6792178, 49.4081527 8.6735594, 49.4055014 8.6766845, 49.3909631 8.7016171, 49.4042825 8.6824570, 49.4057157 8.6651962, 49.4064728 8.6918564, 49.4089660 8.6724358, 49.4093704 8.6694528, 49.4296874 8.6826637, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4038333 8.6771587, 49.4037954 8.6793653, 49.4279757 8.6835849, 49.3967059 8.6771597, 49.3950346 8.6818528, 49.4314127 8.6827484, 49.4214832 8.6754845, 49.4147764 8.6710359, 49.4222429 8.6632708, 49.4375159 8.6751635, 49.4373980 8.6752575, 49.4140422 8.6704577, 49.4212397 8.6801039, 49.4211952 8.6797713, 49.4273577 8.6827188, 49.4277404 8.6832670, 49.4227761 8.6601495, 49.4046422 8.6758721, 49.4135858 8.6925458, 49.4188030 8.6627721, 49.4192290 8.6602188, 49.4194387 8.6613408, 49.4189577 8.6619444, 49.4228639 8.6764796, 49.4215394 8.6751324, 49.4220712 8.6747880, 49.4338914 8.6803397, 49.4085411 8.6936835, 49.4080031 8.6948451, 49.4182538 8.6677103, 49.4171595 8.6617457, 49.4170463 8.6614946, 49.4176558 8.6587085, 49.4147558 8.6660779, 49.4147276 8.6656258, 49.4165055 8.6594547, 49.4149136 8.6636299, 49.4148711 8.6635210, 49.4230903 8.6848004, 49.4231948 8.6850183, 49.4134202 8.6738393, 49.4136945 8.6745160, 49.4091460 8.6764482, 49.4091105 8.6763838, 49.4090551 8.6763871, 49.4090132 8.6764515, 49.4046600 8.6759269, 49.4064743 8.6682317, 49.4079268 8.6756843, 49.4187406 8.6629762, 49.4049387 8.6756077, 49.4068874 8.6695133, 49.4054500 8.6641225, 49.4300762 8.6800795, 49.4100320 8.6641372, 49.4245331 8.6873094, 49.4236766 8.6795068, 49.4300270 8.6823902, 49.4344109 8.6821910, 49.4428552 8.7525697, 49.4423724 8.7523675, 49.4378301 8.7519879, 49.3945090 8.6898249, 49.3851489 8.6733031, 49.3853408 8.6756587, 49.3929123 8.6731183, 49.4085142 8.6937354, 49.3945410 8.6897403, 49.4116089 8.6773078, 49.4178001 8.7608053, 49.4178953 8.7603401, 49.4191809 8.7564457, 49.4192023 8.7564431, 49.4193055 8.7566134, 49.4343094 8.7486730, 49.4290349 8.7492005, 49.4280459 8.7495006, 49.4333074 8.7472561, 49.4243544 8.7433985, 49.4280490 8.7464328, 49.4177271 8.7604388, 49.4178011 8.7610141, 49.4169850 8.7622264, 49.4185873 8.7563730, 49.4203094 8.7595272, 49.4213087 8.7559845, 49.4192295 8.7567625, 49.4191345 8.7567831, 49.4182411 8.7571777, 49.4220544 8.7604986, 49.4169197 8.7613184, 49.4171886 8.7613146, 49.4191241 8.7569889, 49.4278053 8.7495282, 49.4274296 8.7499398, 49.4233403 8.7520040, 49.4240137 8.7518802, 49.4180224 8.7572019, 49.4180456 8.7418856, 49.4160940 8.7161473, 49.4178891 8.7605933, 49.4178215 8.7605565, 49.4093157 8.6860888, 49.3961047 8.6875838, 49.4471459 8.6743543, 49.4042332 8.6760102, 49.4109403 8.6922240, 49.4110870 8.6924326, 49.3804141 8.6876241, 49.3814460 8.6902772, 49.3835628 8.6905633, 49.3830248 8.6904678, 49.3827519 8.6904897, 49.3848920 8.6803000, 49.4166123 8.6762717, 49.4192248 8.6761936, 49.4279699 8.6834041, 49.4078352 8.6858842, 49.4048610 8.6759830, 49.4153134 8.6703781, 49.3779021 8.6887991, 49.4064148 8.6829502, 49.4082107 8.6921228, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4102743 8.6522076, 49.4085158 8.6613374, 49.4276366 8.6827967, 49.4045387 8.6755501, 49.4093314 8.7735071, 49.4126686 8.6862294, 49.4128139 8.6783720, 49.4125400 8.6856817, 49.4361923 8.6791675, 49.4149619 8.6902692, 49.4127956 8.6763587, 49.4135202 8.6810847, 49.4374337 8.6803411, 49.4132997 8.6919729, 49.4128517 8.6762931, 49.4127055 8.6863854, 49.4145419 8.6920206, 49.4128117 8.6763560, 49.4164261 8.6646525, 49.4504533 8.6801425, 49.4504593 8.6801215, 49.4504473 8.6800305, 49.4457554 8.6751092, 49.4248554 8.6842438, 49.4132108 8.7429246, 49.3774319 8.6987045, 49.4155076 8.6710423, 49.4134174 8.6700623, 49.4134633 8.6692638, 49.4077259 8.6716871, 49.4081513 8.6723497, 49.4077131 8.6727872, 49.4077166 8.6770507, 49.4076700 8.6845836, 49.4085533 8.6680811, 49.4045638 8.6759283, 49.4046591 8.6759088, 49.4044978 8.6767013, 49.4077532 8.6729299, 49.4081511 8.6736745, 49.4076619 8.6829409, 49.4076304 8.6840506, 49.4075919 8.6845735, 49.4077466 8.6851872, 49.4079762 8.6870498, 49.4083422 8.6884456, 49.4088113 8.6917735, 49.4092069 8.6920834, 49.4092177 8.6922359, 49.4096328 8.6933428, 49.4084542 8.6927289, 49.4078943 8.6929172, 49.4083041 8.6927592, 49.4075510 8.6929555, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4078050 8.6969103, 49.4061197 8.6920317, 49.4059932 8.6908195, 49.4058917 8.6902904, 49.4046222 8.6868381, 49.4042648 8.6869832, 49.4033250 8.6872272, 49.4032452 8.6845637, 49.4015990 8.6856698, 49.4004115 8.6865494, 49.4001133 8.6852761, 49.4208516 8.6802894, 49.4126545 8.7097240, 49.4280212 8.6833987, 49.4027640 8.6874789, 49.4028079 8.6877203, 49.3783665 8.6932651, 49.4464395 8.6740012, 49.4463084 8.6739060, 49.4460841 8.6742010, 49.4459135 8.6744348, 49.4457373 8.6747240, 49.4456252 8.6749889, 49.4460698 8.6746540, 49.4176655 8.6680194, 49.4174201 8.6867704, 49.4146832 8.6923348, 49.4144086 8.6920334, 49.4138985 8.6913696, 49.4132155 8.6897493, 49.4131959 8.6910756, 49.4132392 8.6920033, 49.4133000 8.6933906, 49.4158218 8.6922416, 49.4283831 8.7619069, 49.4247099 8.7567624, 49.4140666 8.7816898, 49.4515436 8.6904460, 49.4497186 8.6912225, 49.4113841 8.7084695, 49.4079450 8.6902090, 49.4072954 8.6910173, 49.4067868 8.6924316, 49.4080084 8.6940492, 49.4083925 8.6983336, 49.4082595 8.6914326, 49.4082829 8.6916558, 49.4076226 8.6923209, 49.4078093 8.6923599, 49.4144602 8.7186269, 49.4152107 8.7474136, 49.4152010 8.7617225, 49.4113731 8.7119281, 49.4131784 8.7101075, 49.3936659 8.6859388, 49.3808049 8.6889505, 49.3828843 8.6904877, 49.4065153 8.6711132, 49.4049730 8.6689317, 49.3967376 8.6789586, 49.3960740 8.6778734, 49.3954125 8.6771858, 49.3728927 8.7038472, 49.3741444 8.7033717, 49.3742583 8.7034051, 49.3741763 8.7034993, 49.4280568 8.6821889, 49.4074805 8.6879067, 49.4066312 8.6852959, 49.4066800 8.6851295, 49.4088385 8.6939559, 49.4100577 8.6956990, 49.4104128 8.6970288, 49.4099671 8.6973784, 49.4103158 8.6974936, 49.4105298 8.6976589, 49.4105476 8.6977333, 49.3887590 8.6996752, 49.3892618 8.7001391, 49.3895296 8.7003797, 49.3898172 8.7006269, 49.3899965 8.7007636, 49.3900865 8.7008556, 49.3902289 8.7009766, 49.3905174 8.7011989, 49.3916584 8.7085101, 49.4031962 8.7278159, 49.4001829 8.6904551, 49.4002513 8.6905301, 49.4001303 8.6911226, 49.3922296 8.6900792, 49.3899502 8.6903806, 49.3958062 8.6897645, 49.3773826 8.6871138, 49.3768379 8.6878186, 49.4079380 8.6845118, 49.4079749 8.6809749, 49.4079623 8.6804555, 49.4502280 8.6815306, 49.4501957 8.6816403, 49.4016967 8.6842645, 49.4016050 8.6845129, 49.4013428 8.6847761, 49.4541401 8.7204700, 49.4216384 8.6891687, 49.4157261 8.7004521, 49.4149595 8.6974870, 49.4152930 8.6919888, 49.4374309 8.7489034, 49.4048641 8.6772256, 49.3956377 8.7003866, 49.4015591 8.7130811, 49.4359934 8.7529364, 49.4093101 8.6901583, 49.4222140 8.7184598, 49.4316530 8.7205113, 49.4225166 8.7339927, 49.4430123 8.7521139, 49.4429378 8.6685786, 49.4435019 8.6698855, 49.4096879 8.6920076, 49.3803804 8.6888305, 49.4091366 8.6592347, 49.3877298 8.7446960, 49.4129054 8.7286879, 49.4129225 8.7239221, 49.4136373 8.6927118, 49.4165191 8.6921856, 49.4170562 8.6921340, 49.4166719 8.6922486, 49.4101353 8.6927154, 49.4102017 8.6918170, 49.4112725 8.7119074, 49.4095367 8.7037082, 49.4095406 8.7032850, 49.4065042 8.6930977, 49.4057026 8.6893745, 49.3768611 8.6887922, 49.3788109 8.6919767, 49.3778590 8.6930131, 49.3777697 8.6932265, 49.4176024 8.7064673, 49.4182087 8.7084837, 49.4188431 8.7096873, 49.4354694 8.7188860, 49.4359909 8.7141285, 49.3799268 8.6968432, 49.3815882 8.6963561, 49.3849977 8.6950043, 49.3866803 8.6945620, 49.3903214 8.6953737, 49.3908296 8.6953451, 49.3912367 8.6951518, 49.3954992 8.6978754, 49.4295755 8.7759899, 49.4141843 8.7705509, 49.4330029 8.6825757, 49.4221470 8.6890033, 49.4154766 8.6922694, 49.3964575 8.6935605, 49.4287124 8.6962608, 49.4225883 8.7018634, 49.4209333 8.7223854, 49.4206982 8.7220100, 49.3999683 8.6915979, 49.3946455 8.7166681, 49.4192213 8.7568026, 49.4222478 8.7540345, 49.4280231 8.7495057, 49.4174437 8.7631519, 49.4175155 8.6749548, 49.4488525 8.7503084, 49.4514526 8.7484218, 49.4419775 8.6682704, 49.4290781 8.6856826, 49.4071892 8.6937962, 49.4151131 8.6716059, 49.4504135 8.7017546, 49.4507535 8.7067448, 49.4051089 8.6861484, 49.4277949 8.6859759, 49.4277769 8.6859863, 49.4277687 8.6860001, 49.4280288 8.6874096, 49.4226519 8.6906789, 49.4186002 8.6906805, 49.4584045 8.7322317, 49.4579813 8.7191374, 49.4574095 8.7281316, 49.4465971 8.6839436, 49.4474992 8.6852461, 49.4477513 8.6901279, 49.4459861 8.6912063, 49.4460595 8.6869719, 49.4448045 8.6867772, 49.4092764 8.6965977, 49.4169935 8.6914785, 49.4159137 8.6902672, 49.4134716 8.7106064, 49.4221949 8.7060036, 49.4197929 8.7112154, 49.4197171 8.6977012, 49.4178197 8.7004883, 49.4177799 8.7006163, 49.4256712 8.7169706, 49.4244330 8.7116834, 49.4207953 8.7168901, 49.4260504 8.7196647, 49.4292184 8.7152661, 49.4290130 8.7153753, 49.4143869 8.6899597, 49.4060887 8.6538694, 49.4117586 8.7095162, 49.4169622 8.7088362, 49.4169662 8.7088186, 49.4155312 8.7003109, 49.4157681 8.7006398, 49.4159368 8.7004445, 49.4167407 8.7002188, 49.4176075 8.6981061, 49.4181925 8.6982743, 49.4195018 8.7041669, 49.4152829 8.7108795, 49.4153147 8.7113299, 49.4153573 8.7121233, 49.4153819 8.7125956, 49.3955045 8.7713305, 49.3981873 8.7240534, 49.4144764 8.6904813, 49.4144903 8.6905928, 49.4186611 8.7633544, 49.4172685 8.7689843, 49.4158233 8.7717567, 49.4153766 8.7742503, 49.4140292 8.7817285, 49.4052183 8.7807063, 49.4014645 8.7791091, 49.3943337 8.7784226, 49.4157971 8.7658081, 49.4171401 8.7614553, 49.4177407 8.7617228, 49.4107799 8.7058515, 49.4107798 8.7061328, 49.4179956 8.7415149, 49.4146001 8.7738410, 49.4102169 8.7892078, 49.4140696 8.7184550, 49.4264438 8.7443513, 49.4457651 8.6845350, 49.4418584 8.6979767, 49.4390162 8.7105044, 49.4376003 8.7518747, 49.4124141 8.7104910, 49.4278793 8.6839291, 49.4245929 8.6880170, 49.4275702 8.6866250, 49.4124368 8.7095147, 49.4286417 8.6857904, 49.4301309 8.6907932, 49.4297702 8.6934487, 49.4048779 8.6827341, 49.4117536 8.7090766, 49.4115311 8.7084606, 49.4115086 8.7078249, 49.4113991 8.7077798, 49.4123932 8.7103247, 49.4123736 8.7101990, 49.4124613 8.7103945, 49.4119354 8.7117634, 49.4124188 8.7130024, 49.4127909 8.7133593, 49.4126895 8.7130608, 49.4135426 8.7142038, 49.4135025 8.7139566, 49.4120923 8.7117858, 49.4114566 8.7107312, 49.4106605 8.6984657, 49.4107313 8.6985417, 49.4096542 8.7001484, 49.4288015 8.6872183, 49.3852907 8.7099594, 49.4142986 8.6902743, 49.4121585 8.7121348, 49.3851124 8.7094749, 49.3850107 8.7103387, 49.4094471 8.6926160, 49.4105312 8.6975907, 49.4151725 8.6902594, 49.4157708 8.6902546, 49.4107395 8.6927434, 49.4091698 8.6936091, 49.4044791 8.6965502, 49.4336004 8.6907661, 49.3904944 8.6883092, 49.3915440 8.6790012, 49.3915993 8.6903930, 49.4149451 8.7199680, 49.4126850 8.7049420, 49.4124142 8.7039688, 49.3739972 8.7036051, 49.4201840 8.7450745, 49.4203121 8.7448719, 49.4278654 8.7486231, 49.4315786 8.7636417, 49.4289498 8.7668446, 49.4224724 8.7728618, 49.4218746 8.7723730, 49.4208164 8.7718076, 49.4318658 8.7785141, 49.4269884 8.7777486, 49.4279723 8.7777473, 49.3869602 8.7092367, 49.4139013 8.6749258, 49.4332443 8.6805201, 49.4348207 8.6783577, 49.4373520 8.6781032, 49.4264257 8.6835404, 49.4381480 8.7005157, 49.4134671 8.6923500, 49.4210179 8.7198036, 49.4292684 8.7115908, 49.4272716 8.7035465, 49.4305777 8.6928339, 49.4331982 8.7089234, 49.4337922 8.7095528, 49.4343847 8.6975926, 49.4393283 8.7105842, 49.4398232 8.7110203, 49.4497204 8.7157564, 49.4496410 8.7157170, 49.4508572 8.6988545, 49.4271531 8.7573965, 49.4317439 8.7509117, 49.4292880 8.7510341, 49.4368079 8.7593525, 49.4531341 8.7233872, 49.4536219 8.7240940, 49.4536047 8.7240417, 49.4262156 8.6996156, 49.4247671 8.7003161, 49.4371110 8.7181849, 49.4395946 8.7219636, 49.4041276 8.6763300, 49.4306618 8.6920230, 49.4307092 8.6924155, 49.4333213 8.6941083, 49.4366751 8.6939775, 49.4428768 8.7011414, 49.4370307 8.6898816, 49.4400552 8.6984687, 49.4419967 8.6995749, 49.4414189 8.6985111, 49.4387622 8.6820017, 49.4413002 8.6846886, 49.4423182 8.6882775, 49.4448305 8.6803468, 49.4447796 8.6803708, 49.4450341 8.6802865, 49.4451393 8.6802443, 49.4446086 8.6841466, 49.4456769 8.6799985, 49.4440847 8.6831472, 49.4454846 8.6869733, 49.4483365 8.6890738, 49.4137427 8.6924811, 49.3822208 8.6838537, 49.4136357 8.6943202, 49.4040784 8.7535968, 49.3971952 8.6862592, 49.3973746 8.6876710, 49.3968650 8.6891799, 49.3978420 8.6880583, 49.4071068 8.6898761, 49.4172306 8.6824331, 49.4176070 8.6821350, 49.4172221 8.6817577, 49.4172710 8.6921830, 49.3828278 8.7123002, 49.4108200 8.6918918, 49.4124311 8.7120085, 49.4147712 8.6919997, 49.3906225 8.7063573, 49.3922709 8.7076343, 49.4597910 8.7149359, 49.4213023 8.6891575, 49.4515211 8.6902632, 49.4515491 8.6902632, 49.4574977 8.7042491, 49.4580924 8.7055097, 49.4085251 8.6921424, 49.3791896 8.6905086, 49.4510769 8.6863025, 49.4524536 8.7094050, 49.4555860 8.7112865, 49.4550185 8.7158458, 49.4554329 8.7173979, 49.4424691 8.6898697, 49.4040525 8.6844956, 49.4096400 8.6942920, 49.4316641 8.7049585, 49.4315759 8.7050063, 49.4315556 8.7050403, 49.4314361 8.7051308, 49.4314510 8.7051352, 49.4314223 8.7051172, 49.4316086 8.7052243, 49.4315615 8.7053740, 49.4317823 8.7047605, 49.4316384 8.7047890, 49.4316797 8.7049147, 49.4316279 8.7051895, 49.4317027 8.7050818, 49.4316896 8.7051301, 49.4316955 8.7051052, 49.4318072 8.7058967, 49.4378776 8.7051273, 49.4400403 8.7053776, 49.4389787 8.7112352, 49.4420379 8.7114388, 49.4440339 8.7026721, 49.4493298 8.7170664, 49.3778512 8.7581574, 49.3873038 8.7530780, 49.4126131 8.7110704, 49.4125503 8.7094986, 49.4258813 8.6617121, 49.4089504 8.6905874, 49.4096905 8.6870861, 49.4094130 8.6857745, 49.4043206 8.6907217, 49.4100169 8.6878988, 49.3804963 8.6875192, 49.4192835 8.7164572, 49.4248580 8.7374083, 49.4202654 8.7499719, 49.4059443 8.7040458, 49.3919237 8.7218634, 49.3921500 8.7220781, 49.3930507 8.7227282, 49.4044206 8.6749529, 49.4202236 8.6846109, 49.4205029 8.6846704, 49.4174372 8.6854637, 49.4175511 8.6857342, 49.4184776 8.6853453, 49.4134519 8.6731458, 49.4173344 8.6816721, 49.4173389 8.6817450, 49.3987036 8.6859892, 49.4044555 8.6967109, 49.3995165 8.6879132, 49.4171164 8.6729011, 49.4421787 8.6656329, 49.3840770 8.6710133, 49.3811656 8.7483210, 49.4393137 8.6872204, 49.3847437 8.7334252, 49.3853323 8.7330985, 49.3848201 8.7416287, 49.3850204 8.7416036, 49.3972761 8.7308772, 49.4031431 8.7287410, 49.4160126 8.6922256, 49.4139051 8.6920559, 49.4167279 8.6721344, 49.4162757 8.6922037, 49.3868980 8.7370934, 49.3869050 8.7370901, 49.3871382 8.7376463, 49.3873346 8.7390471, 49.3872538 8.7384841, 49.3873362 8.7390575, 49.3872554 8.7384907, 49.3876203 8.7421489, 49.3876068 8.7418951, 49.3876003 8.7417204, 49.3876009 8.7417105, 49.3875718 8.7411975, 49.3875006 8.7405190, 49.3874182 8.7396996, 49.3880128 8.7449026, 49.3778485 8.7581822, 49.4441500 8.7151826, 49.3850068 8.7105357, 49.4339270 8.6786101, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.4350000 8.6816364, 49.3838650 8.7092400, 49.3975792 8.6798603, 49.4104204 8.7158634, 49.4049159 8.6848567, 49.4068385 8.6866471, 49.3865894 8.7624809, 49.3909171 8.7566521, 49.3995340 8.7305709, 49.3989338 8.7327290, 49.3977932 8.7345873, 49.3975770 8.7365674, 49.3976474 8.7365747, 49.3954785 8.7463349, 49.4278746 8.6871277, 49.4245561 8.6872574, 49.4186207 8.6905302, 49.4277708 8.6843289, 49.4004100 8.6866529, 49.4129911 8.6528439, 49.4136043 8.6538078, 49.4121631 8.6534172, 49.4130105 8.6554404, 49.4119860 8.6544036, 49.4129302 8.6534040, 49.4004267 8.6871877, 49.4083031 8.6962179, 49.4093049 8.7016279, 49.4300341 8.7265054, 49.4034192 8.6873184, 49.4035344 8.6864118, 49.4022609 8.6800427, 49.4038073 8.6922073, 49.3825748 8.6819524, 49.4147206 8.7190868, 49.4055996 8.6889278, 49.4131079 8.7088562, 49.4175570 8.6865031, 49.3928959 8.7767409, 49.4040547 8.7550178, 49.3989753 8.7629392, 49.4029783 8.7509752, 49.4000042 8.7469749, 49.3883681 8.7636001, 49.4040516 8.7550941, 49.3882422 8.7638714, 49.3963741 8.7568926, 49.4041282 8.7535478, 49.4018935 8.7380088, 49.4040511 8.7533571, 49.4148114 8.7196509, 49.4040268 8.7533880, 49.4041566 8.7536140, 49.4040221 8.7537244, 49.4038420 8.7533968, 49.3882615 8.7637884, 49.4040317 8.7536908, 49.3882160 8.7639567, 49.3857554 8.7311380, 49.3906745 8.7281338, 49.3818122 8.7467986, 49.3871791 8.7350466, 49.3906767 8.7281096, 49.3818206 8.7438491, 49.3845976 8.7320662, 49.3818392 8.7437472, 49.3846318 8.7321713, 49.3873851 8.7356455, 49.3846726 8.7322609, 49.3849816 8.7416218, 49.3778528 8.7582142, 49.3907840 8.7281080, 49.3812968 8.6894052, 49.3789105 8.7606559, 49.3864285 8.6696286, 49.3961482 8.6893926, 49.3802778 8.6816667, 49.3821274 8.6823829, 49.4338016 8.6780993, 49.4133345 8.6939826, 49.3896591 8.6874142, 49.3888889 8.6875000, 49.3889397 8.6874933, 49.3796893 8.6821058, 49.4257744 8.6577657, 49.4011499 8.6909716, 49.3869606 8.7635695, 49.3956888 8.7699779, 49.3891214 8.7668533, 49.3932296 8.7696039, 49.4109497 8.7171649, 49.3737816 8.7169321, 49.3754560 8.7157067, 49.4102178 8.7150766, 49.4189919 8.6724909, 49.4163242 8.6709589, 49.4184386 8.6731024, 49.4168333 8.6710769, 49.4176281 8.6686596, 49.4160594 8.6702239, 49.4179870 8.6685214, 49.4190025 8.6711938, 49.4190342 8.6719873, 49.3845955 8.7081656, 49.4175667 8.6749443, 49.4186849 8.6679251, 49.4195133 8.6677572, 49.3952827 8.7243898, 49.3799604 8.6807464, 49.3812515 8.6806176, 49.3824770 8.6806146, 49.3827231 8.6805749, 49.3827650 8.6797160, 49.3818450 8.6782283, 49.3811106 8.6779339, 49.3818450 8.6783061, 49.3804699 8.6775416, 49.3794484 8.6789797, 49.3819205 8.6782467, 49.3818463 8.6779827, 49.3818450 8.6781558, 49.3819210 8.6783181, 49.3818539 8.6780747, 49.3819218 8.6781599, 49.4027279 8.7338848, 49.4005409 8.7372180, 49.4026498 8.7348911, 49.3894790 8.7240732, 49.4002409 8.7358193, 49.3824444 8.7505086, 49.4027874 8.7324418, 49.4005743 8.7385818, 49.3978086 8.7361369, 49.4017338 8.7382465, 49.4010116 8.7383918, 49.3977634 8.7286227, 49.3870539 8.7281754, 49.4152723 8.7238969, 49.4150119 8.7236673, 49.4153624 8.7225666, 49.3990303 8.6762703, 49.4111908 8.7189811, 49.4098495 8.7167148, 49.4098666 8.7169733, 49.4099427 8.7180130, 49.4103257 8.7193735, 49.3795766 8.6901652, 49.3797769 8.6902998, 49.4107587 8.7191644, 49.4106414 8.7191879, 49.3715548 8.7204885, 49.3772018 8.7233643, 49.3762150 8.7230185, 49.3707354 8.7163237, 49.4139993 8.6932058, 49.4031806 8.6757447, 49.4031915 8.6757146, 49.4033570 8.6759427, 49.4033783 8.6758929, 49.4052157 8.6658971, 49.4052607 8.6659933, 49.4013876 8.6762755, 49.4055766 8.6654953, 49.4061345 8.6593850, 49.4086584 8.6922629, 49.4088859 8.6920687, 49.4139940 8.6537020, 49.3936938 8.6882137, 49.3956207 8.6692054, 49.4532165 8.6852728, 49.4513839 8.6831919, 49.4485476 8.7256593, 49.4225418 8.6752439, 49.4132914 8.7081342, 49.4088903 8.6938003, 49.4126779 8.7118926, 49.4079250 8.6968388, 49.4124163 8.7017576, 49.4102465 8.6977902, 49.4116285 8.6967738, 49.4112877 8.7120306, 49.4124821 8.7116749, 49.4105746 8.7045338, 49.4088982 8.6985594, 49.4171494 8.6793155, 49.4149894 8.6777848, 49.4148485 8.6775333, 49.4131782 8.7072377, 49.4123643 8.7093621, 49.4129985 8.7075880, 49.4128971 8.7089006, 49.4125822 8.7091321, 49.4121225 8.7074329, 49.4122807 8.7082455, 49.4119959 8.7065282, 49.4121728 8.7080504, 49.4123763 8.7095125, 49.4133232 8.7072699, 49.4127246 8.7091094, 49.4131657 8.7074358, 49.4121834 8.7069263, 49.4123513 8.7089916, 49.4132139 8.7078103, 49.4111401 8.6995045, 49.4077846 8.6948300, 49.4101395 8.6935335, 49.4114505 8.6946751, 49.4078498 8.6943897, 49.4079479 8.6956416, 49.4103548 8.6934956, 49.4188910 8.6930237, 49.4177616 8.6901926, 49.4137599 8.6926714, 49.4162828 8.6903739, 49.4137947 8.6907151, 49.4092738 8.6989364, 49.4095235 8.7029839, 49.4121887 8.7014037, 49.4117856 8.6982500, 49.4092513 8.6997348, 49.4089611 8.6957225, 49.4088607 8.6969406, 49.4119811 8.7001029, 49.4104791 8.6972285, 49.4118690 8.6989413, 49.4089749 8.7019860, 49.4088528 8.6965343, 49.4163332 8.6877784, 49.4102879 8.6948503, 49.4118566 8.7016009, 49.4107725 8.7025797, 49.4195856 8.6828954, 49.4095637 8.7046228, 49.4192171 8.6617263, 49.4086321 8.6989216, 49.4109129 8.6948067, 49.4100861 8.7047725, 49.4126467 8.7116432, 49.4179033 8.6815927, 49.4082980 8.6979183, 49.4092888 8.7006167, 49.4125480 8.7059407, 49.4105744 8.6916465, 49.4062671 8.6797009, 49.4088091 8.7068231, 49.4109623 8.6909012, 49.4089627 8.6813526, 49.4109261 8.7125920, 49.4122797 8.7133174, 49.4129194 8.7022179, 49.4090650 8.6813526, 49.4136080 8.7136083, 49.4129132 8.7053546, 49.4061093 8.6758875, 49.4134315 8.7103016, 49.4146455 8.7188499, 49.4062388 8.6917406, 49.4107484 8.7061452, 49.4056528 8.6927157, 49.4136995 8.7142286, 49.4043812 8.6796436, 49.4089621 8.7022268, 49.4083809 8.6986013, 49.4080333 8.6763139, 49.4079105 8.6965175, 49.4072113 8.6916915, 49.4103365 8.7039131, 49.4086544 8.6824072, 49.4084428 8.6787563, 49.4074650 8.6753838, 49.4088642 8.6826038, 49.4071241 8.6769474, 49.4083562 8.6885086, 49.4122041 8.7090164, 49.4130878 8.7091392, 49.4131986 8.7088233, 49.4076691 8.6751190, 49.4007776 8.6911061, 49.4077632 8.6922107, 49.4043288 8.6924798, 49.4023297 8.6917804, 49.4062086 8.6922549, 49.4035568 8.6922425, 49.4080541 8.6920020, 49.4058460 8.6924951, 49.4082097 8.6927782, 49.4076624 8.6922255, 49.4028742 8.6919803, 49.4052064 8.6927545, 49.4083867 8.6927384, 49.4055314 8.6924048, 49.4014846 8.6914932, 49.4105461 8.7233169, 49.4089235 8.7239799, 49.4062755 8.7318753, 49.4115547 8.7328601, 49.4088449 8.7267716, 49.4113138 8.7328292, 49.4063230 8.7317506, 49.3989298 8.6889417, 49.4119138 8.7090833, 49.4119030 8.7090336, 49.4119011 8.7089353, 49.4118947 8.7088457, 49.4115582 8.7044459, 49.4115665 8.7029371, 49.4095460 8.7040916, 49.4115772 8.7046048, 49.4117134 8.7084690, 49.4118434 8.7082915, 49.4115371 8.7077542, 49.4118456 8.7083560, 49.4006324 8.6910529, 49.4000859 8.6904108, 49.3997565 8.6902626, 49.3998769 8.6903120, 49.4097481 8.7070938, 49.4095987 8.7061446, 49.4316640 8.6726812, 49.3828823 8.6974195, 49.3828586 8.6974227, 49.4091521 8.6979357, 49.4307088 8.6826152, 49.4076909 8.6848244, 49.4069536 8.7134033, 49.4076819 8.6846906, 49.4157065 8.7287628, 49.4168778 8.7249065, 49.4131305 8.6546204, 49.4020273 8.6710958, 49.4145019 8.7188097, 49.4160079 8.6527300, 49.4106668 8.7195394, 49.4105303 8.7195730, 49.4149039 8.6659572, 49.4152046 8.6662691, 49.4150186 8.6660022, 49.4149621 8.6659764, 49.4152043 8.6661050, 49.4151660 8.6660644, 49.4148467 8.6657599, 49.4164627 8.6646192, 49.4148865 8.6633752, 49.4144262 8.6605991, 49.4140289 8.6610942, 49.4157782 8.6615636, 49.3982405 8.6891686, 49.4150965 8.6664535, 49.4150888 8.6660280, 49.4150208 8.6663808, 49.4154939 8.6674299, 49.4152045 8.6661871, 49.4151465 8.6664909, 49.4178759 8.6766696, 49.4047754 8.6846789, 49.4175133 8.6820340, 49.4156624 8.6585755, 49.4164776 8.6578526, 49.4149739 8.6593306, 49.4032429 8.6876802, 49.4031102 8.6876641, 49.4029811 8.6876534, 49.4032429 8.6873315, 49.4029915 8.6873208, 49.4031172 8.6873261, 49.3995142 8.6850002, 49.3866972 8.7681314, 49.3906813 8.7690094, 49.3876668 8.7714570, 49.3971453 8.7695949, 49.3882343 8.7754545, 49.3970452 8.6830144, 49.4112622 8.7059705, 49.3878352 8.7614044, 49.4106423 8.7232003, 49.4072676 8.7325889, 49.4106196 8.7231813, 49.4064913 8.7386810, 49.4033073 8.7447336, 49.4117826 8.7294584, 49.4149916 8.6663630, 49.4148513 8.6651363, 49.4110738 8.7466347, 49.4109732 8.7462479, 49.4111824 8.7467386, 49.4115142 8.7468423, 49.3956607 8.7675583, 49.4109786 8.7462230, 49.4171023 8.7276310, 49.4109714 8.7462700, 49.4018588 8.7712935, 49.4110534 8.7466181, 49.4133316 8.7381491, 49.4012745 8.7715593, 49.4182906 8.7276732, 49.3991393 8.7676414, 49.4111611 8.7467273, 49.3978168 8.7676498, 49.4119786 8.7462157, 49.4172059 8.7276487, 49.4181324 8.7293243, 49.4133844 8.7468484, 49.4169905 8.7246654, 49.4043163 8.6750911, 49.4037937 8.6758118, 49.4043905 8.6758702, 49.4012431 8.7094358, 49.4018143 8.7127778, 49.4014077 8.7090021, 49.4001508 8.7098871, 49.4004203 8.7103091, 49.4005295 8.7107408, 49.4005748 8.7099398, 49.3854702 8.7517346, 49.4155782 8.6689215, 49.4237194 8.7426235, 49.4213757 8.6586938, 49.4060966 8.6847540, 49.4193326 8.6742240, 49.4188747 8.6746615, 49.3985275 8.6890932, 49.3984918 8.6889404, 49.3909283 8.7331493, 49.4092258 8.7140567, 49.3926229 8.7303800, 49.3923117 8.7307059, 49.3904128 8.7410912, 49.3892474 8.7357050, 49.3885878 8.7381138, 49.3888077 8.7391060, 49.3988684 8.7285671, 49.3901554 8.7403484, 49.3891888 8.7356179, 49.3893945 8.7352351, 49.4226030 8.6895511, 49.4244226 8.6879745, 49.4185216 8.6704497, 49.4197235 8.6766060, 49.4181936 8.6739962, 49.4224691 8.6894885, 49.4347006 8.6819337, 49.4225331 8.6895176, 49.4223934 8.6894683, 49.4275117 8.6831905, 49.4196417 8.6694271, 49.4189698 8.6760286, 49.4222653 8.6894258, 49.4249703 8.6863835, 49.4219203 8.6893430, 49.4221212 8.6893922, 49.4177747 8.6690561, 49.4163577 8.6686492, 49.4174980 8.6687653, 49.4179060 8.6686309, 49.4180660 8.6682820, 49.4157661 8.6686751, 49.4174626 8.6687152, 49.4150725 8.6664167, 49.4139804 8.6668520, 49.4136878 8.6671227, 49.4155211 8.6676755, 49.4136571 8.6671084, 49.4155891 8.6676755, 49.4146634 8.6664310, 49.4140866 8.6673605, 49.4128509 8.6667672, 49.4130842 8.6668825, 49.4128068 8.6670431, 49.4157404 8.6712736, 49.4131056 8.6680418, 49.4126825 8.6678074, 49.4173371 8.6738318, 49.4170607 8.6768911, 49.4126952 8.6699440, 49.4134424 8.6679610, 49.4165443 8.6709680, 49.4134657 8.6678164, 49.4169024 8.6778674, 49.4171297 8.6738951, 49.4145377 8.6712997, 49.4142973 8.6712224, 49.4162063 8.6713780, 49.4171308 8.6741457, 49.4126713 8.6675754, 49.4146104 8.6715231, 49.4129993 8.6676842, 49.4125591 8.6685224, 49.4038678 8.6826012, 49.4080959 8.6940082, 49.4132083 8.7150483, 49.4098495 8.7063675, 49.4092833 8.6937547, 49.4136521 8.7166234, 49.4086730 8.6937919, 49.4147825 8.7194810, 49.4146757 8.7188519, 49.4099904 8.6934756, 49.4137247 8.7168421, 49.4114575 8.7112332, 49.4117561 8.7110802, 49.4130935 8.7055063, 49.4085662 8.6938769, 49.4082925 8.6939399, 49.4049071 8.6846843, 49.4050950 8.6832018, 49.4046753 8.6751003, 49.4049813 8.6825344, 49.4047830 8.6748233, 49.4079701 8.6806978, 49.4081724 8.6765377, 49.3800680 8.6869647, 49.3803092 8.6877522, 49.3800398 8.6875371, 49.4133013 8.6913417, 49.4514996 8.7287116, 49.4090936 8.6974650, 49.4121976 8.7087022, 49.3991167 8.6880237, 49.4003093 8.6865238, 49.3994136 8.6901411, 49.4125736 8.6667755, 49.4190267 8.7248849, 49.3971048 8.6828185, 49.3997775 8.6782516, 49.3958031 8.6837214, 49.3961205 8.6812878, 49.4156475 8.7425316, 49.4144368 8.6680539, 49.4412552 8.7715331, 49.4153976 8.6683913, 49.4153546 8.6684139, 49.4155467 8.6683947, 49.4154380 8.6683671, 49.4151161 8.6685335, 49.4150659 8.6685579, 49.4154076 8.6684526, 49.4152917 8.6687763, 49.4154597 8.6686971, 49.4152602 8.6687924, 49.4154902 8.6686325, 49.4154630 8.6689975, 49.4154749 8.6685519, 49.4150922 8.6688775, 49.4151285 8.6688599, 49.4151648 8.6688408, 49.4153275 8.6691937, 49.4151774 8.6691870, 49.4154589 8.6688159, 49.4152369 8.6692466, 49.4152963 8.6692120, 49.4151981 8.6692552, 49.4151593 8.6691206, 49.4152687 8.6692283, 49.4173599 8.7570392, 49.4173659 8.7564419, 49.4173666 8.7564094, 49.4173671 8.7566484, 49.4373589 8.7518399, 49.4076180 8.6891919, 49.4173208 8.6768607, 49.4560129 8.7272698, 49.4070439 8.6949350, 49.4089916 8.6801238, 49.3950297 8.7337960, 49.3960602 8.7333909, 49.3964251 8.7434145, 49.3965680 8.7438930, 49.3942172 8.6898680, 49.4001704 8.6873707, 49.4008461 8.6862974, 49.4015034 8.6855723, 49.4018481 8.6853596, 49.4140326 8.6921865, 49.4147881 8.6920796, 49.4161519 8.6920141, 49.4164194 8.6920050, 49.3771070 8.6871386, 49.3805777 8.6884357, 49.3956314 8.6891619, 49.4064459 8.6893600, 49.4076652 8.6925139, 49.4146958 8.6922296, 49.4122224 8.7127594, 49.4117441 8.7092576, 49.4135237 8.7132879, 49.4031638 8.6920740, 49.3893232 8.7371550, 49.4181666 8.6745623, 49.4147605 8.6683021, 49.4069167 8.6886211, 49.4212512 8.6801896, 49.4201358 8.6806591, 49.4211077 8.6784794, 49.4181588 8.6814978, 49.4183470 8.6872741, 49.4197789 8.6871221, 49.4207750 8.6845900, 49.4220217 8.6830623, 49.4248833 8.6877871, 49.4283894 8.6851615, 49.4312787 8.6910498, 49.3925114 8.7464235, 49.3856352 8.7552185, 49.3856945 8.7551489, 49.3891220 8.7350663, 49.3891575 8.7362367, 49.3891834 8.7362292, 49.3899672 8.7378636, 49.3900339 8.7371557, 49.3928385 8.7310462, 49.4086409 8.7182230, 49.4109895 8.7175452, 49.4126569 8.7158654, 49.4108612 8.6928690, 49.4073649 8.6958229, 49.4210304 8.7484074, 49.4210555 8.7483630, 49.4208880 8.7281629, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4107889 8.7060227, 49.4136791 8.7136022, 49.4127227 8.7032897, 49.4127285 8.7033836, 49.4127326 8.7034813, 49.4128465 8.7032783, 49.4124235 8.7142523, 49.4126441 8.7142846, 49.3875195 8.7389174, 49.3881112 8.7384845, 49.3893869 8.7367041, 49.4167026 8.6926975, 49.4167080 8.6927532, 49.4171340 8.6924519, 49.4171426 8.6925123, 49.3744418 8.7035505, 49.3743789 8.7031911, 49.3742086 8.7031163, 49.3747282 8.7035988, 49.3745186 8.7029658, 49.4126385 8.6691299, 49.4058353 8.6807799, 49.4102246 8.6969187, 49.4106382 8.6995688, 49.4098204 8.6952928, 49.4102630 8.6956367, 49.4100675 8.6958351, 49.4102926 8.6972916, 49.4103729 8.6964923, 49.4103380 8.6945772, 49.4100274 8.6954516, 49.4095422 8.6938315, 49.4106977 8.6986329, 49.3887250 8.7490272, 49.4089553 8.6951085, 49.4110740 8.7008373, 49.4109937 8.7015191, 49.4112052 8.7019438, 49.4109936 8.7014251, 49.4106673 8.7017443, 49.4113056 8.7025839, 49.4114705 8.7022980, 49.4114651 8.7037929, 49.4108365 8.7037050, 49.4115939 8.7046894, 49.4115555 8.7043541, 49.4116506 8.7051386, 49.4119604 8.7038095, 49.4116685 8.7053140, 49.4116445 8.7062771, 49.4104788 8.7037801, 49.4103985 8.7029994, 49.4118295 8.7066501, 49.4117816 8.7062296, 49.4116271 8.7069102, 49.4116479 8.7066124, 49.4117726 8.7067669, 49.4117492 8.7058025, 49.4121327 8.7076792, 49.4122972 8.7077374, 49.4122745 8.7073258, 49.4123530 8.7087690, 49.4118146 8.7077756, 49.4118235 8.7079159, 49.4117230 8.7087903, 49.4116985 8.7082163, 49.4122865 8.7059453, 49.4124399 8.7105960, 49.4118138 8.7113092, 49.4131661 8.7104077, 49.4128557 8.7051696, 49.4095800 8.7072536, 49.4111189 8.7110358, 49.4131432 8.7133745, 49.4087106 8.6981262, 49.3843560 8.6801691, 49.4073655 8.6761401, 49.4071070 8.6765209, 49.4099529 8.7084620, 49.4101152 8.7081077, 49.4081055 8.6756660, 49.4062164 8.6906512, 49.4116879 8.7096216, 49.4076112 8.6921328, 49.4104389 8.7086905, 49.4128719 8.7286955, 49.4041847 8.6844762, 49.3999258 8.6784895, 49.4061045 8.6919006, 49.4175773 8.6740734, 49.4179402 8.6696532, 49.4180276 8.6704533, 49.4129103 8.7014032, 49.4128315 8.7094842, 49.3777902 8.7429899, 49.3820375 8.6822639, 49.4200520 8.6693809, 49.4084645 8.6841392, 49.4159348 8.6708164, 49.4202779 8.6844332, 49.4202046 8.6844657, 49.4105445 8.7052085, 49.4106934 8.7057683, 49.4112050 8.6978662, 49.4106683 8.6974887, 49.4112207 8.6981194, 49.4111306 8.6979715, 49.4072012 8.6930407, 49.4114393 8.7049112, 49.4105716 8.7092257, 49.4202669 8.6573098, 49.4142103 8.6533273, 49.4141256 8.6534735, 49.4101694 8.6916552, 49.4101101 8.6935285, 49.4037018 8.6767168, 49.4038715 8.6762894, 49.4003850 8.6920257, 49.3900090 8.6927551, 49.3900370 8.6927298, 49.3900505 8.6927189, 49.3900663 8.6927110, 49.3956537 8.7091525, 49.3969926 8.7070350, 49.4166963 8.6728921, 49.4329833 8.6806293, 49.4333509 8.6811006, 49.4333774 8.6810937, 49.4334081 8.6810857, 49.4075531 8.6947989, 49.4075470 8.6947239, 49.4072696 8.6944710, 49.4073244 8.6944681, 49.4073527 8.6944672, 49.4076185 8.6953263, 49.4075829 8.6952288, 49.4075619 8.6949094, 49.4296174 8.6819785, 49.4097773 8.6939787, 49.4100046 8.6951917, 49.4179937 8.7574277, 49.3930859 8.6886712, 49.4106747 8.7780519, 49.3804529 8.6874252, 49.4080641 8.6904292, 49.3804468 8.6879276, 49.3804897 8.6880074, 49.4054553 8.6752473, 49.4085032 8.6760080, 49.4054299 8.6767260, 49.4054501 8.6767490, 49.3783483 8.7229086, 49.4113532 8.7105806, 49.4117072 8.7120923, 49.4117728 8.7099861, 49.4109653 8.7121813, 49.4150640 8.6641072, 49.4127554 8.6742068, 49.4031950 8.6874941, 49.4089758 8.6983974, 49.4146871 8.6904760, 49.4279033 8.6862724, 49.4081811 8.6762559, 49.4293751 8.6828504, 49.3792005 8.6914759, 49.4114203 8.7578946, 49.4044470 8.6760982, 49.4044947 8.6757073, 49.4030108 8.6917822, 49.4062230 8.6893127, 49.4187340 8.6766656, 49.4113889 8.7076937, 49.4105563 8.7059593, 49.3939556 8.7738779, 49.4101441 8.7052242, 49.4112034 8.7047612, 49.4089283 8.6982133, 49.4089648 8.6986876, 49.4093783 8.7008163, 49.4094359 8.7023071, 49.4089641 8.6955780, 49.4093310 8.6934805, 49.4096811 8.6934485, 49.4107724 8.7039613, 49.4135210 8.6982920, 49.4135236 8.6983348, 49.4136532 8.6995522, 49.4136586 8.6995874, 49.4136653 8.6996273, 49.4136704 8.6996657, 49.4136784 8.6997032, 49.4147926 8.7058931, 49.4148824 8.7063419, 49.4148871 8.7065669, 49.4149309 8.7068882, 49.4149475 8.7066797, 49.4149479 8.7071687, 49.4149919 8.7071051, 49.4149927 8.7074241, 49.4150256 8.7081913, 49.4150258 8.7078285, 49.4150661 8.7002381, 49.4150903 8.7004870, 49.4150921 8.7002894, 49.4150951 8.7008826, 49.4151219 8.7003450, 49.4151264 8.7002313, 49.4151345 8.7096675, 49.4151436 8.7000359, 49.4151777 8.7100283, 49.4151780 8.7001091, 49.4152021 8.7004488, 49.4152124 8.7001791, 49.4152148 8.7006510, 49.4152225 8.7007316, 49.4152342 8.7008332, 49.4152346 8.7100630, 49.4152382 8.7009821, 49.4152388 8.7101049, 49.4152399 8.7002439, 49.4152431 8.7101480, 49.4152610 8.7003151, 49.4152767 8.7003947, 49.4152793 8.7108153, 49.4152805 8.7108510, 49.4152818 8.7109028, 49.4152835 8.7109393, 49.4152853 8.7116465, 49.4153120 8.7112655, 49.4153138 8.7113003, 49.4153150 8.7113538, 49.4153174 8.7113912, 49.4153359 8.7010405, 49.4153517 8.7120597, 49.4153529 8.7120937, 49.4153538 8.7011477, 49.4153580 8.7121489, 49.4153581 8.7121854, 49.4153767 8.7125295, 49.4153790 8.7125660, 49.4153819 8.7126204, 49.4153843 8.7126560, 49.4154931 8.7015005, 49.4155882 8.7022442, 49.4155908 8.7021984, 49.4156212 8.7022867, 49.4167778 8.7060775, 49.4168014 8.7061607, 49.4168210 8.7062291, 49.4168346 8.7062779, 49.4168538 8.7063376, 49.4168695 8.7063960, 49.4168894 8.7064668, 49.4169090 8.7065366, 49.4169314 8.7066251, 49.4169507 8.7067031, 49.4171469 8.7083456, 49.4171545 8.7083064, 49.4174329 8.7086778, 49.4174385 8.7087119, 49.4174472 8.7087500, 49.4174541 8.7087854, 49.4115434 8.6778206, 49.4115719 8.6781093, 49.4116018 8.6783728, 49.4116636 8.6788246, 49.4116683 8.6788615, 49.4116892 8.6790212, 49.4117304 8.6792756, 49.4117642 8.6794854, 49.4117809 8.6795878, 49.4118179 8.6797843, 49.4118243 8.6798157, 49.4119051 8.6802066, 49.4119175 8.6802546, 49.4120239 8.6806991, 49.4120359 8.6807451, 49.4120534 8.6808168, 49.4121483 8.6812195, 49.4121611 8.6812683, 49.4123521 8.6861916, 49.4123603 8.6861595, 49.4124038 8.6832462, 49.4124084 8.6832971, 49.4124141 8.6833654, 49.4124183 8.6834114, 49.4124235 8.6834819, 49.4124287 8.6835272, 49.4124409 8.6836716, 49.4124451 8.6837162, 49.4124512 8.6837845, 49.4124563 8.6838326, 49.4124602 8.6838968, 49.4124649 8.6839456, 49.4124752 8.6840649, 49.4124785 8.6841137, 49.4124860 8.6841841, 49.4124898 8.6842343, 49.4125014 8.6843375, 49.4125043 8.6843842, 49.4125099 8.6844533, 49.4125137 8.6844986, 49.4125203 8.6845704, 49.4125288 8.6846932, 49.4125339 8.6847406, 49.4125414 8.6848040, 49.4125438 8.6848543, 49.4125448 8.6858946, 49.4125467 8.6859301, 49.4125496 8.6859685, 49.4125517 8.6849205, 49.4125551 8.6849700, 49.4125576 8.6860815, 49.4125600 8.6861275, 49.4125659 8.6850934, 49.4125705 8.6851402, 49.4125748 8.6852113, 49.4125752 8.6866215, 49.4125790 8.6866675, 49.4125791 8.6852587, 49.4125823 8.6867073, 49.4125851 8.6867519, 49.4125867 8.6858957, 49.4125896 8.6859382, 49.4125967 8.6860457, 49.4125986 8.6860924, 49.4126490 8.6868721, 49.4126762 8.6870059, 49.4127269 8.6872338, 49.4127361 8.6872693, 49.4128419 8.6876817, 49.4129289 8.6880328, 49.4129625 8.6881728, 49.4130142 8.6884328, 49.4130359 8.6885561, 49.4130704 8.6888343, 49.4130808 8.6889780, 49.4130969 8.6892249, 49.4131000 8.6893686, 49.4131099 8.6896616, 49.4131211 8.6899148, 49.4131314 8.6901896, 49.4131457 8.6906061, 49.4131567 8.6908911, 49.4131677 8.6911593, 49.4132849 8.6932346, 49.4132985 8.6935078, 49.4081416 8.6940339, 49.4097177 8.7079709, 49.4097754 8.7076634, 49.4100334 8.7081249, 49.4094319 8.6910307, 49.4095376 8.6908723, 49.4096347 8.6903912, 49.4098329 8.6894963, 49.4098809 8.6909403, 49.4099807 8.6890051, 49.4101452 8.6899150, 49.4102122 8.6904965, 49.4103847 8.6887271, 49.4105137 8.6896038, 49.4105215 8.6905059, 49.4106282 8.6901065, 49.4126702 8.6805338, 49.4159805 8.6920165, 49.4164705 8.6920883, 49.4172314 8.6911451, 49.4173345 8.6841594, 49.4090153 8.6964726, 49.4367405 8.6791812, 49.4328280 8.6823664, 49.4279082 8.6839585, 49.4128488 8.7096980, 49.4124896 8.7107633, 49.4124906 8.7096993, 49.4125760 8.7095003, 49.4090210 8.6862339, 49.4091822 8.6858735, 49.4095605 8.6872645, 49.4088652 8.6800974, 49.4098279 8.6817194, 49.4083809 8.6789361, 49.4056745 8.6881477, 49.4061925 8.6915180, 49.4063357 8.6898884, 49.4072240 8.6872972, 49.4075178 8.6824857, 49.4075631 8.6890160, 49.4079188 8.6902159, 49.4088250 8.6844653, 49.4080954 8.6910116, 49.4092552 8.6744026, 49.4111078 8.7122962, 49.4127595 8.6732173, 49.4127839 8.6732119, 49.4182810 8.6660747, 49.4183048 8.6660724, 49.4098616 8.6939795, 49.4121786 8.7068654, 49.4167698 8.6778109, 49.4279197 8.6839271, 49.4276958 8.6865270, 49.3822707 8.6904099, 49.3825429 8.6904169, 49.4112886 8.7086779, 49.4111071 8.7086876, 49.4105656 8.7086725, 49.4139871 8.6920400, 49.4140135 8.6829496, 49.4133863 8.7084302, 49.3795300 8.6822909, 49.4306638 8.6826578, 49.4156948 8.6877018, 49.4186333 8.6903397, 49.3816846 8.6868958, 49.4094722 8.7027714, 49.4089964 8.7017641, 49.4102662 8.7019427, 49.4112926 8.7027584, 49.3778358 8.6889772, 49.3790081 8.6915773, 49.3790124 8.6916319, 49.4085307 8.6937659, 49.4079584 8.6938874, 49.4085432 8.6937616, 49.4085582 8.6937574, 49.4096346 8.6933512, 49.4026410 8.6888163, 49.4047864 8.6845518, 49.4044750 8.6884416, 49.4044472 8.6883811, 49.4062695 8.6913666, 49.4062653 8.6913679, 49.4024782 8.6846927, 49.4085166 8.6926281, 49.4054839 8.6767486, 49.4046686 8.6677777, 49.4054638 8.6767142, 49.4013548 8.6761651, 49.4015292 8.6757972, 49.3989037 8.6901330, 49.4052845 8.6757308, 49.4146829 8.7477829, 49.4070199 8.6810452, 49.4078155 8.6801715, 49.4081699 8.6801714, 49.4086991 8.6905430, 49.4072067 8.6789696, 49.4083342 8.6789231, 49.4032543 8.7276844, 49.4088561 8.6818330, 49.4145805 8.6901438, 49.4184970 8.6911640, 49.4186633 8.6871792, 49.4035002 8.6810379, 49.4049652 8.6871845, 49.4032621 8.7278132, 49.4038250 8.7271649, 49.4039352 8.7271984, 49.4039835 8.7272201, 49.4039935 8.7273740, 49.4113476 8.7118706, 49.4119316 8.6969837, 49.4060908 8.6592832, 49.4042688 8.6853422, 49.3892847 8.6884090, 49.3893235 8.6878156, 49.3893265 8.6878805, 49.3893320 8.6880301, 49.3893346 8.6880937, 49.3893986 8.6884022, 49.3894342 8.6883983, 49.3894847 8.6889392, 49.3895497 8.6883873, 49.3895536 8.6889339, 49.3895906 8.6884286, 49.3896428 8.6885709, 49.3896441 8.6886103, 49.3896495 8.6887115, 49.3896508 8.6887509, 49.4101157 8.7062582, 49.3994162 8.6880161, 49.3827614 8.6820305, 49.4146530 8.6531618, 49.4054977 8.7174647, 49.4072288 8.7090672, 49.3884593 8.6987270, 49.4095152 8.7099575, 49.4122790 8.7132837, 49.4182320 8.7110293, 49.4182836 8.7111173, 49.4183230 8.7111822, 49.4183415 8.7112183, 49.4183583 8.7109497, 49.4183664 8.7109735, 49.4183905 8.7111913, 49.4185184 8.7111579, 49.4185723 8.7111685, 49.4223249 8.7271853, 49.4063266 8.6902067, 49.4063552 8.6903884, 49.4063792 8.6900717, 49.4063892 8.6905679, 49.4064095 8.6902520, 49.4064200 8.6907397, 49.4064422 8.6904266, 49.4064468 8.6909242, 49.4064703 8.6906048, 49.4064794 8.6910996, 49.4065030 8.6907801, 49.4065233 8.6910827, 49.4065329 8.6909604, 49.4194326 8.7389868, 49.4216508 8.7398273, 49.4216690 8.7397967, 49.4232008 8.7432750, 49.4232090 8.7433909, 49.4234452 8.7433599, 49.4235418 8.7433376, 49.4235505 8.7432308, 49.4235798 8.7432908, 49.4236624 8.7430358, 49.4236620 8.7430756, 49.4236630 8.7429788, 49.4238333 8.7431001, 49.4238350 8.7430648, 49.4239065 8.7430707, 49.4239066 8.7431079, 49.4240661 8.7431297, 49.4240849 8.7431006, 49.4247718 8.6874951, 49.3763204 8.7553840, 49.3890080 8.7292327, 49.3840283 8.7386112, 49.4080460 8.6903558, 49.3935639 8.7203131, 49.3972627 8.7212433, 49.4091999 8.7130968, 49.4092020 8.7130604, 49.4021774 8.6927377, 49.4044832 8.6759837, 49.4044221 8.6760066, 49.3814251 8.7215945, 49.3815367 8.7216036, 49.3831944 8.7403011, 49.3869970 8.7195906, 49.3869974 8.7195445, 49.3870298 8.7195343, 49.3870427 8.7195770, 49.3894885 8.7102578, 49.3951713 8.7036865, 49.3954603 8.7127592, 49.4088898 8.6922599, 49.3786538 8.7295186, 49.4046408 8.7179651, 49.4047363 8.7172296, 49.4174534 8.7630975, 49.4175289 8.7506012, 49.4177338 8.7497360, 49.4179209 8.7590031, 49.4180857 8.7571952, 49.4181637 8.7572861, 49.4182397 8.7479412, 49.4234422 8.7433751, 49.4187291 8.7567160, 49.4116996 8.7081109, 49.4122929 8.7084018, 49.4203724 8.7396448, 49.4083367 8.6887571, 49.4036198 8.6878647, 49.4148759 8.6920045, 49.4148404 8.6920032, 49.4148581 8.6920035, 49.3925051 8.7465066, 49.3936499 8.7467333, 49.4093534 8.7128936, 49.4093971 8.7121991, 49.4098919 8.7173407, 49.4099678 8.7144797, 49.4099731 8.7184425, 49.4100699 8.7141070, 49.4100786 8.7194216, 49.4101316 8.7144342, 49.4101411 8.7141426, 49.4101988 8.7141381, 49.4102039 8.7193974, 49.4103050 8.7168773, 49.4103129 8.7143794, 49.4103608 8.7141258, 49.4104710 8.7168764, 49.4104859 8.7143310, 49.4106648 8.7191828, 49.4107429 8.7170959, 49.4107823 8.7191620, 49.4136457 8.7090100, 49.4112833 8.6739247, 49.4097258 8.6726725, 49.4127246 8.6919926, 49.4130025 8.7021651, 49.4080147 8.7070194, 49.4064043 8.7093237, 49.4069912 8.7081431, 49.4070106 8.7081409, 49.4084132 8.7069017, 49.4073131 8.7082381, 49.4093935 8.7114074, 49.4058518 8.7089388, 49.4058771 8.7090021, 49.4058928 8.7090643, 49.4060909 8.7094006, 49.4061921 8.7087272, 49.4062967 8.7088405, 49.4065461 8.7084278, 49.4090353 8.7089034, 49.4091540 8.7112307, 49.4091709 8.7112356, 49.4096725 8.7137353, 49.4098179 8.7137279, 49.4099150 8.7125621, 49.4099230 8.7126396, 49.4099251 8.7126625, 49.4099313 8.7127121, 49.4099549 8.7127305, 49.4100813 8.7133948, 49.4100883 8.7130583, 49.4101802 8.7111524, 49.4102297 8.7132317, 49.4102478 8.7191369, 49.4102848 8.7111824, 49.4102927 8.7111997, 49.4109655 8.7126880, 49.4109674 8.7126985, 49.4143251 8.7187531, 49.4091076 8.7127307, 49.4091485 8.7127837, 49.4091615 8.7128493, 49.4092653 8.7127841, 49.4072810 8.7116507, 49.4120895 8.7117401, 49.4095383 8.7258139, 49.4057183 8.6993035, 49.4156885 8.7217025, 49.4382046 8.6794526, 49.4373909 8.6752550, 49.4156539 8.7141859, 49.4056328 8.6759129, 49.4078209 8.6745428, 49.3794364 8.7572777, 49.4005231 8.7520710, 49.4520317 8.7210462, 49.4533642 8.7231386, 49.4539239 8.7233059, 49.4067167 8.7749002, 49.4116311 8.7072953, 49.4064506 8.7754194, 49.4071160 8.7756052, 49.4106569 8.7780589, 49.4106890 8.7780404, 49.4148010 8.6907411, 49.3715121 8.7203769, 49.3854627 8.6732681, 49.3769857 8.6847203, 49.3763424 8.6904918, 49.3806318 8.6903397, 49.3845467 8.6890952, 49.3867100 8.6889664, 49.3940819 8.6861279, 49.3995012 8.6869038, 49.4087049 8.7054045, 49.4095083 8.7002566, 49.4092054 8.6986720, 49.4095075 8.7003178, 49.4095086 8.7003605, 49.4096306 8.7001578, 49.4098521 8.7001275, 49.4135211 8.6950922, 49.4135230 8.6952172, 49.4136428 8.6936066, 49.4117690 8.6780601, 49.4117749 8.6780703, 49.4117809 8.6780806, 49.4139081 8.7008061, 49.4139258 8.7009358, 49.4139425 8.7009741, 49.4178699 8.7606013, 49.4179065 8.7609930, 49.4196081 8.6977385, 49.4387572 8.6820263, 49.4118037 8.7180807, 49.4121881 8.7183730, 49.4124287 8.7180384, 49.4124516 8.7184053, 49.4124711 8.7181158, 49.4124828 8.7183175, 49.4125484 8.7179385, 49.4126276 8.7179222, 49.4127021 8.7179082, 49.4127329 8.7179408, 49.4115944 8.7188677, 49.4059942 8.6597446, 49.3983567 8.6891918, 49.4130575 8.7096585, 49.4024228 8.6765906, 49.4115837 8.7106378, 49.3738871 8.7039058, 49.4187340 8.6766656, 49.3943330 8.6900180, 49.4114155 8.7034039, 49.4079188 8.6896894, 49.4080292 8.6761951, 49.4072190 8.7145767, 49.4052150 8.6872450, 49.4082939 8.6917604, 49.3818915 8.7204190, 49.4176657 8.7007942, 49.4192490 8.7166625, 49.4298438 8.7274314, 49.4084511 8.6746131, 49.4061961 8.6789422, 49.4039868 8.7655190, 49.4116009 8.6936854, 49.4116366 8.6939477, 49.4119847 8.6964756, 49.4120403 8.6968678, 49.4120737 8.6971143, 49.4121300 8.6990129, 49.4124654 8.6991004, 49.4125032 8.6994371, 49.4125305 8.6996150, 49.4126496 8.7004551, 49.4139587 8.7760375, 49.4152443 8.7101617, 49.4152812 8.7105934, 49.4152922 8.7117185, 49.4152947 8.7117927, 49.4153713 8.7130701, 49.4169656 8.7675928, 49.4171575 8.7606858, 49.4171606 8.7606666, 49.4171643 8.7606441, 49.4174978 8.7655448, 49.4175068 8.7655614, 49.4175156 8.7606234, 49.4183221 8.7563527, 49.4183838 8.7567672, 49.4179298 8.7611063, 49.4131467 8.7041307, 49.4132296 8.7046438, 49.4280601 8.6876310, 49.4139314 8.6860294, 49.4358192 8.7140535, 49.4061410 8.6849453, 49.4217033 8.7362487, 49.4289947 8.7222566, 49.4354328 8.7189439, 49.4185367 8.7071970, 49.4056017 8.6751788, 49.4302838 8.6879053, 49.4326149 8.6908032, 49.4326288 8.6908232, 49.4295713 8.6928758, 49.4297956 8.6933545, 49.4312402 8.7049673, 49.4313194 8.7048672, 49.4313215 8.7053386, 49.4315747 8.7012829, 49.4316086 8.7052965, 49.4317007 8.7059223, 49.4317379 8.7056901, 49.4318419 8.7053139, 49.4344754 8.6863785, 49.4347400 8.6862802, 49.4440417 8.7607029, 49.4440688 8.7606213, 49.4149008 8.6641860, 49.4149077 8.6641649, 49.4180002 8.7565605, 49.4137201 8.7475448, 49.4137332 8.7475363, 49.4137486 8.7475349, 49.4137615 8.7475448, 49.4137797 8.7474059, 49.4138029 8.7474016, 49.4148831 8.7497404, 49.4148868 8.7479978, 49.4151527 8.7563640, 49.4151832 8.7505051, 49.4155510 8.7428157, 49.4155544 8.7427972, 49.4155562 8.7428419, 49.4155982 8.7589848, 49.4156021 8.7589619, 49.4156152 8.7415910, 49.4156686 8.7426209, 49.4156725 8.7421792, 49.4156785 8.7425746, 49.4148726 8.7469187, 49.4112520 8.7462829, 49.4112724 8.7462973, 49.4113466 8.7459929, 49.4125678 8.7457320, 49.4128251 8.7456405, 49.4147095 8.7445952, 49.4151180 8.7605724, 49.4155490 8.7546778, 49.4234637 8.7522347, 49.4235281 8.7521732, 49.4248546 8.7504451, 49.4275324 8.7480598, 49.4277478 8.7478736, 49.4278819 8.7486168, 49.4321934 8.7465197, 49.4179564 8.7608483, 49.4151355 8.7622636, 49.4151544 8.7622039, 49.4151589 8.7619214, 49.4151672 8.7619353, 49.4151703 8.7621819, 49.4151716 8.7621468, 49.4151858 8.7621002, 49.4152411 8.7620209, 49.4193176 8.7611788, 49.4194443 8.7638623, 49.4211542 8.7663970, 49.4211638 8.7663807, 49.4361554 8.7473136, 49.4503971 8.7540258, 49.4505498 8.7548707, 49.4150982 8.6920129, 49.4128834 8.6763430, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349, 49.4042326 8.6765306, 49.4042591 8.6764899, 49.4042651 8.6766048, 49.4042806 8.6764879, 49.4042865 8.6766028, 49.4043021 8.6764859, 49.4043080 8.6766008, 49.4042758 8.6769736, 49.3764527 8.7503330, 49.3832310 8.7635477, 49.3850177 8.7598521, 49.3967294 8.6784456, 49.4277498 8.6794326, 49.4376060 8.6778079, 49.4109969 8.7018271, 49.4135622 8.7123456, 49.4135669 8.7123752, 49.4135720 8.7124026, 49.4138154 8.7145470, 49.4138294 8.7145607, 49.4138443 8.7145799, 49.4138789 8.7147380, 49.4138846 8.7147882, 49.4138920 8.7148371, 49.4210047 8.7197754, 49.4212544 8.7211149, 49.4214724 8.7212627, 49.4215003 8.7213772, 49.4195317 8.7042414, 49.4253449 8.7062774, 49.4274261 8.7150016, 49.4064554 8.6918633, 49.4075653 8.6902108, 49.4168755 8.6790034, 49.4174588 8.7442165, 49.4291086 8.6831848, 49.4563906 8.7469187, 49.4214385 8.7430129, 49.4216935 8.7426109, 49.4298773 8.7406510, 49.4314052 8.7205319, 49.4314637 8.7207288, 49.4314709 8.7207701, 49.4004143 8.6826744, 49.4103434 8.6975297, 49.4078085 8.6911371, 49.4224261 8.6791231, 49.3990722 8.6890995, 49.4071931 8.6946238, 49.4071949 8.6946447, 49.4071953 8.6946670, 49.4072038 8.6948346, 49.4072056 8.6948709, 49.4072063 8.6948526, 49.4072127 8.6950113, 49.4072144 8.6950309, 49.4072145 8.6950487, 49.4072403 8.6944723, 49.4073302 8.6951246, 49.4073498 8.6952644, 49.4073616 8.6951274, 49.4073796 8.6944660, 49.4073889 8.6952944, 49.4074110 8.6951213, 49.4074113 8.6953062, 49.4074376 8.6951102, 49.4076208 8.6955166, 49.4085567 8.6984721, 49.4085838 8.6986718, 49.4086914 8.6984200, 49.4087341 8.6986320, 49.4088395 8.6983628, 49.4088807 8.6985932, 49.4084040 8.6996182, 49.4084216 8.6996088, 49.4084408 8.6995987, 49.4183241 8.7109660, 49.4183534 8.7112773, 49.4185461 8.7111646, 49.4214848 8.6781702, 49.4215415 8.6781082, 49.4215513 8.6781535, 49.3992315 8.6710140, 49.4072938 8.6914379, 49.4066555 8.6904427, 49.4113362 8.6758006, 49.4128313 8.7018360, 49.4061585 8.6903063, 49.4063133 8.6910718, 49.4062193 8.6902164, 49.4062509 8.6913187, 49.4062642 8.6913883, 49.4062712 8.6914200, 49.4065256 8.6894680, 49.4221499 8.7232034, 49.4184811 8.6699057, 49.4151221 8.7620371, 49.4177261 8.7614656, 49.4087408 8.6948581, 49.4057652 8.6829089, 49.3770570 8.7037872, 49.4276918 8.6792933, 49.4221718 8.6830698, 49.4284350 8.6851029, 49.4329321 8.6806773, 49.4375579 8.6778878, 49.4248551 8.6842312, 49.4248865 8.6878012, 49.4338496 8.6803071, 49.4050779 8.6763506, 49.4145642 8.6791001, 49.4135694 8.6925166, 49.4159532 8.6836921, 49.4156740 8.6813317, 49.4218996 8.6752378, 49.4204972 8.6680274, 49.3763340 8.6903976, 49.3805945 8.6911695, 49.3769487 8.6846577, 49.3862379 8.6927467, 49.3811048 8.6780165, 49.4093291 8.6596550, 49.4162144 8.6702242, 49.4155972 8.6663847, 49.4132974 8.7097572, 49.4038060 8.7273316, 49.4040883 8.7365303, 49.3794075 8.6800350, 49.3753020 8.7105644, 49.3774350 8.7110455, 49.3841273 8.7139546, 49.4125123 8.7110100, 49.4151012 8.6731211, 49.4158568 8.6728207, 49.4000303 8.6917151, 49.4000488 8.6917225, 49.3947281 8.7165182, 49.4112569 8.7030447, 49.3718129 8.7285170, 49.3719890 8.7321161, 49.4285342 8.6860967, 49.4279736 8.6864593, 49.4280012 8.6865692, 49.4283321 8.6836841, 49.4042867 8.6760445, 49.4046185 8.6759242, 49.4020821 8.7437959, 49.4020681 8.7444081, 49.4039410 8.6759975, 49.4040475 8.6759775, 49.4041302 8.6755556, 49.4041420 8.6755374, 49.4010895 8.6737918, 49.4037999 8.6762631, 49.4048319 8.6776675, 49.4075656 8.6930731, 49.4116784 8.7028078, 49.4436332 8.6767203, 49.4045128 8.6751651, 49.4462367 8.6752509, 49.4467163 8.6741899, 49.4466446 8.6742587, 49.4071802 8.6893369, 49.4080003 8.6887809, 49.4045734 8.6760561, 49.4046470 8.6759216, 49.4360761 8.6814958, 49.4365473 8.6813729, 49.4268495 8.6858867, 49.4268685 8.6858709, 49.4268959 8.6865750, 49.4269168 8.6865652, 49.4269288 8.6853519, 49.4269485 8.6853552, 49.4269485 8.6858925, 49.4269660 8.6858873, 49.4270429 8.6858538, 49.4270484 8.6854051, 49.4270655 8.6858472, 49.4270698 8.6854222, 49.4271253 8.6864141, 49.4271441 8.6855759, 49.4271441 8.6863891, 49.4078499 8.6884637, 49.3841060 8.6837074, 49.4018418 8.6726917, 49.4013623 8.6726870, 49.4035624 8.6765204, 49.4425096 8.6694040, 49.4023324 8.6670234, 49.4127255 8.7132864, 49.4135174 8.7817164, 49.4286563 8.7824937, 49.4533762 8.7238315, 49.4148310 8.7192634, 49.4103323 8.7353954, 49.4279707 8.6838908, 49.4150560 8.7716803, 49.4150601 8.7716627, 49.4150642 8.7716451, 49.4159877 8.7643853, 49.4159965 8.7643447, 49.4048445 8.6761839, 49.4049471 8.6762314, 49.4049557 8.6756478, 49.4050321 8.6758169, 49.4030610 8.6811985, 49.4035642 8.6819831, 49.4059522 8.6852467, 49.4136635 8.7632703, 49.4122451 8.7658820, 49.4181525 8.7414701, 49.4181608 8.7414829, 49.4185349 8.7408142, 49.4187580 8.7405498, 49.4121743 8.7517032, 49.4124159 8.7495130, 49.4124293 8.7494807, 49.4125175 8.7494611, 49.4125707 8.7494540, 49.4126622 8.7498917, 49.4127069 8.7496113, 49.4127078 8.7496600, 49.4134521 8.7382933, 49.4142223 8.7555186, 49.4147744 8.7633585, 49.4149096 8.7628777, 49.4149572 8.7582791, 49.4150115 8.7622237, 49.4150702 8.7619163, 49.4054812 8.7836435, 49.4158001 8.7657818, 49.4158018 8.7655150, 49.4158079 8.7654703, 49.4160363 8.7642679, 49.4160425 8.7642396, 49.4094855 8.7182657, 49.4114591 8.7705882, 49.4111425 8.7704739, 49.4111900 8.7704641, 49.4119501 8.7000203, 49.4119964 8.6988133, 49.4120018 8.6989349, 49.4120072 8.6990566, 49.3934396 8.7806213, 49.3934443 8.7806502, 49.3934469 8.7806752, 49.4094639 8.7149578, 49.4088380 8.6918600, 49.4151366 8.7617673, 49.4181473 8.7565975, 49.4177904 8.7599764, 49.4173760 8.7603090, 49.4101378 8.7039303, 49.4180271 8.7582998, 49.4177077 8.7607905, 49.4151843 8.7603553, 49.4078640 8.6914271, 49.4138174 8.7705256, 49.4221411 8.6971096, 49.4132187 8.7653935, 49.4252154 8.6874565, 49.4252008 8.6863559, 49.3947519 8.7087503, 49.4102265 8.6939011, 49.4091216 8.7132311, 49.4113896 8.7119508, 49.4273780 8.6782001, 49.3891812 8.6768465, 49.3979127 8.6724262, 49.3981734 8.6718714, 49.3981825 8.6718508, 49.3982573 8.6716829, 49.3982938 8.6709113, 49.3983375 8.6715026, 49.3983475 8.6708983, 49.3983556 8.6707639, 49.3983559 8.6708854, 49.3983669 8.6709310, 49.3983902 8.6707765, 49.3983965 8.6713702, 49.3984099 8.6713401, 49.3984225 8.6713117, 49.3984390 8.6707561, 49.3984404 8.6706863, 49.3984425 8.6708661, 49.3984851 8.6708428, 49.3985095 8.6706982, 49.3985367 8.6709364, 49.3985499 8.6709062, 49.3985548 8.6710778, 49.3985610 8.6708811, 49.3985656 8.6710534, 49.3985692 8.6708624, 49.3985795 8.6707479, 49.3987236 8.6710256, 49.3987464 8.6709695, 49.3987552 8.6711432, 49.3987609 8.6709337, 49.3987942 8.6711331, 49.3988039 8.6711102, 49.3988048 8.6713733, 49.3988165 8.6714003, 49.3988172 8.6710791, 49.3988287 8.6714284, 49.3988333 8.6710412, 49.3988441 8.6710159, 49.3989254 8.6710285, 49.3989431 8.6710341, 49.3989669 8.6710415, 49.3991080 8.6718293, 49.3992934 8.6715103, 49.3993188 8.6714735, 49.3993395 8.6714433, 49.3993496 8.6714287, 49.3993664 8.6714043, 49.4104061 8.7157086, 49.4108151 8.7149178, 49.4105292 8.7152167, 49.3769656 8.7551097, 49.4113551 8.7116070, 49.4092130 8.6930903, 49.4045235 8.6882943, 49.4137144 8.6921269, 49.4280965 8.6875928, 49.4281382 8.6876771, 49.4281430 8.6876704, 49.3903198 8.7340553, 49.3872710 8.7354484, 49.3873929 8.7356478, 49.4223460 8.7539976, 49.4094481 8.7011221, 49.3802219 8.6868984, 49.3944379 8.6770158, 49.3904225 8.6819080, 49.4230545 8.6906504, 49.3804723 8.6884268, 49.3798268 8.6903215, 49.3900486 8.6883781, 49.3896229 8.6900545, 49.3790377 8.6919226, 49.3857287 8.6902529, 49.3788917 8.6918226, 49.3881762 8.6886005, 49.4062901 8.6603224, 49.4065445 8.6597206, 49.4068117 8.6707739, 49.3721232 8.7129859, 49.4171231 8.7603742, 49.4133991 8.6740344, 49.4135596 8.6740236, 49.4161640 8.6686617, 49.4101645 8.7749164, 49.4112870 8.7102176, 49.4138118 8.6719647, 49.4101724 8.7749101, 49.4132788 8.7650492, 49.4173960 8.7485433, 49.4148281 8.6710977, 49.3841629 8.6716409, 49.3841632 8.6715765, 49.4085491 8.6801439, 49.4182525 8.6662118, 49.4156460 8.6666103, 49.4157103 8.6706413, 49.4116946 8.6715847, 49.4038758 8.6913357, 49.4213239 8.7627154, 49.4235077 8.7668512, 49.4235470 8.7668294, 49.4239402 8.7651827, 49.4181982 8.6672239, 49.4156419 8.6661970, 49.4133739 8.6940979, 49.4108048 8.6946155, 49.4017075 8.6672838, 49.4072203 8.6719856, 49.4076501 8.6726936, 49.4077117 8.6665043, 49.4083820 8.6677978, 49.4088053 8.6626673, 49.4088194 8.6626550, 49.4101363 8.6521754, 49.4101469 8.6522088, 49.4101555 8.6521855, 49.4102538 8.6521520, 49.3991176 8.6681880, 49.4137233 8.7111570, 49.4137348 8.7113230, 49.4137449 8.7114559, 49.4137550 8.7116406, 49.4137706 8.7118503, 49.4137793 8.7119624, 49.4077695 8.6948215, 49.4077800 8.6949583, 49.4018269 8.6852302, 49.4018057 8.6852432, 49.4143283 8.7699002, 49.3839947 8.6801414, 49.4069887 8.6681549, 49.4400410 8.7054293, 49.4403610 8.6901185, 49.4427770 8.7010917, 49.4428904 8.7011248, 49.4436522 8.7046253, 49.4447313 8.7167032, 49.4493112 8.7170805, 49.4501832 8.6816365, 49.4504996 8.7105690, 49.4510659 8.7137824, 49.4512781 8.7130789, 49.4514570 8.7128576, 49.4576955 8.7024629, 49.4175256 8.6906313, 49.4133107 8.7103589, 49.3786163 8.6868257, 49.3810024 8.6888615, 49.3799295 8.6843446, 49.4157129 8.7420168, 49.4157085 8.7420436, 49.3727648 8.7034774, 49.3744103 8.7047986, 49.4070381 8.6724331, 49.3765321 8.7073134, 49.3789910 8.7062655, 49.3790486 8.7061511, 49.3813337 8.7061950, 49.3843800 8.7049644, 49.4096598 8.6875604, 49.4161193 8.6695151, 49.4192446 8.6670292, 49.4190187 8.6670533, 49.4228034 8.7562833, 49.4186267 8.7633174, 49.4110019 8.6963668, 49.4095775 8.6928963, 49.4066118 8.6751595, 49.4151780 8.7091101, 49.4130490 8.7132403, 49.4454895 8.6843415, 49.4467774 8.6821383, 49.4470349 8.6856331, 49.4457295 8.6845885, 49.4457484 8.6845653, 49.4465007 8.6867256, 49.4474791 8.6852872, 49.4475191 8.6852251, 49.4541654 8.6930399, 49.4541922 8.6931063, 49.4058639 8.6880015, 49.4055473 8.6869151, 49.4056131 8.6868331, 49.4059837 8.6870296, 49.4255601 8.7054853, 49.4459612 8.7647881, 49.4492841 8.7244927, 49.4570546 8.7373690, 49.4570654 8.7374318, 49.4073424 8.6881133, 49.4225105 8.7607521, 49.4456911 8.7252542, 49.4474507 8.6816983, 49.4476801 8.7230986, 49.4477434 8.6815891, 49.4494285 8.6858551, 49.4514906 8.6903165, 49.4118434 8.7084139, 49.4118301 8.7082274, 49.4120407 8.7101017, 49.4117760 8.7068775, 49.4117663 8.7064409, 49.4116256 8.7077404, 49.3998478 8.6788359, 49.3994491 8.6769626, 49.4200540 8.6567921, 49.4061587 8.6617527, 49.4120722 8.7104053, 49.4120974 8.7105730, 49.4121297 8.7103849, 49.4121549 8.7105527, 49.4118680 8.7106616, 49.4013072 8.6721502, 49.4014465 8.6714876, 49.4015849 8.6707968, 49.4016021 8.6707184, 49.4017318 8.6700873, 49.4013697 8.6715978, 49.3993472 8.6710771, 49.4009632 8.6658836, 49.4009959 8.6658140, 49.4011343 8.6655103, 49.4011633 8.6654446, 49.4019197 8.6692954, 49.4019718 8.6690844, 49.4135324 8.6916012, 49.3807734 8.6884609, 49.4110119 8.7122254, 49.4135955 8.7092288, 49.4085554 8.6900358, 49.4085894 8.6902323, 49.4188847 8.6767281, 49.4471590 8.6743455, 49.3820987 8.7124588, 49.4051458 8.6859422, 49.3787743 8.6924168, 49.4197888 8.6714328, 49.4056550 8.6876583, 49.4233507 8.7642696, 49.4426344 8.6927752, 49.4447928 8.6895290, 49.4118150 8.7020910, 49.4455647 8.7378006, 49.4332243 8.6805482, 49.4059012 8.7242277, 49.4052285 8.7315097, 49.4093727 8.7028215, 49.4067051 8.7142475, 49.4098558 8.7167639, 49.4098722 8.7170163, 49.4098973 8.7173837, 49.4099475 8.7180563, 49.4099786 8.7184857, 49.4099950 8.7170975, 49.4100534 8.7194225, 49.4101050 8.7187620, 49.4121627 8.7182119, 49.4121842 8.7181162, 49.4122296 8.7184488, 49.4105161 8.7190962, 49.4127360 8.7206023, 49.3854871 8.7172741, 49.3877953 8.7164964, 49.3885396 8.7164124, 49.3798101 8.7239219, 49.3889269 8.7394096, 49.3925735 8.7149710, 49.3969482 8.6948600, 49.3977254 8.7093393, 49.4010648 8.6650738, 49.4098380 8.7162564, 49.4099390 8.7165322, 49.4103299 8.7168762, 49.4103829 8.7192261, 49.4105964 8.7178042, 49.4105993 8.7195552, 49.4107456 8.7191253, 49.4107807 8.7155977, 49.4109716 8.7182381, 49.4109986 8.7147633, 49.4110079 8.7147929, 49.4111457 8.7151424, 49.4112128 8.7185068, 49.4114128 8.7181597, 49.4114288 8.7181572, 49.4097556 8.7156766, 49.4098280 8.7162338, 49.4101613 8.7153622, 49.4104752 8.7182390, 49.4104821 8.7168792, 49.4104877 8.7194657, 49.4097080 8.7160380, 49.4097217 8.7160197, 49.4099981 8.7191416, 49.4099988 8.7191803, 49.4100422 8.7153160, 49.4104064 8.7192234, 49.4104274 8.7192173, 49.4104415 8.7182486, 49.4106064 8.7173521, 49.4106076 8.7156311, 49.4106272 8.7194392, 49.4106563 8.7181095, 49.4108853 8.7156490, 49.4110515 8.7148230, 49.4110551 8.7148607, 49.4110636 8.7148870, 49.4110720 8.7149133, 49.4115566 8.7152637, 49.4116103 8.7153334, 49.4116341 8.7181133, 49.4116378 8.7153197, 49.4109333 8.7154205, 49.4109379 8.7175902, 49.4109596 8.7182382, 49.4110919 8.7149751, 49.4111004 8.7150014, 49.4111088 8.7150277, 49.4111288 8.7150897, 49.4111320 8.7182111, 49.4111372 8.7151160, 49.4116536 8.7181114, 49.4116665 8.7153655, 49.4116823 8.7184156, 49.4116844 8.7154301, 49.4187077 8.7063438, 49.3709028 8.7109422, 49.4114686 8.7705695, 49.4253133 8.7614921, 49.4186335 8.7565871, 49.4188251 8.7567040, 49.4190140 8.7566290, 49.4190352 8.7566560, 49.4185940 8.7565551, 49.4197463 8.7604605, 49.4207104 8.7596133, 49.4207411 8.7595905, 49.4219259 8.7602991, 49.4219385 8.7603183, 49.4263861 8.7616530, 49.4206435 8.7565048, 49.4204665 8.7578129, 49.4207717 8.7595677, 49.4220708 8.7603329, 49.4298831 8.7657770, 49.4283041 8.7622011, 49.4526605 8.7512185, 49.4526605 8.7512413, 49.4265953 8.7562127, 49.4191215 8.7177315, 49.4371482 8.7630409, 49.4226907 8.7555486, 49.4065083 8.6677562, 49.4065929 8.6671666, 49.4084287 8.6611769, 49.4085181 8.6612070, 49.4094265 8.6529245, 49.4095597 8.6522897, 49.4343854 8.6821967, 49.4349136 8.6820812, 49.4381532 8.7268706, 49.4230250 8.7421400, 49.4230396 8.7421350, 49.4257707 8.7387430, 49.4356381 8.7252531, 49.4379769 8.7389567, 49.4141807 8.6864884, 49.4205459 8.7466924, 49.4228858 8.7420621, 49.3935785 8.6951043, 49.4334525 8.7382891, 49.4382468 8.6952598, 49.4383218 8.6951379, 49.3961494 8.6963931, 49.4306546 8.6920133, 49.4189955 8.7248358, 49.4215246 8.7428804, 49.4242588 8.7379921, 49.4271608 8.7342548, 49.4023929 8.6649975, 49.3982281 8.6679666, 49.4082103 8.6913456, 49.4082494 8.6913249, 49.4103490 8.7069722, 49.3843618 8.6952816, 49.4083514 8.6761325, 49.4042191 8.6751648, 49.4041278 8.6759022, 49.4041286 8.6759159, 49.4043907 8.6758759, 49.4043950 8.6758700, 49.4043951 8.6758758, 49.4043994 8.6758698, 49.4043995 8.6758756, 49.4044017 8.6758726, 49.4035398 8.6753065, 49.4035524 8.6753223, 49.4036499 8.6754541, 49.4036573 8.6754602, 49.4037022 8.6754667, 49.4037371 8.6758205, 49.4038959 8.6757618, 49.4040408 8.6759780, 49.4040510 8.6758571, 49.4040942 8.6759069, 49.4040950 8.6759205, 49.4043882 8.6758732, 49.4124828 8.7148310, 49.4117022 8.7115271, 49.4117363 8.7115060, 49.4117978 8.7118760, 49.4118218 8.7118576, 49.4118443 8.7114390, 49.4118631 8.7118261, 49.4118667 8.7114251, 49.4118869 8.7118078, 49.4119117 8.7113972, 49.4119342 8.7113833, 49.4122382 8.7129316, 49.4095387 8.6933681, 49.4095499 8.6933429, 49.4095581 8.6933826, 49.4102931 8.6927198, 49.4103305 8.6929293, 49.4103421 8.6928960, 49.4102259 8.6925667, 49.4102390 8.6925587, 49.4102518 8.6925507, 49.4102120 8.6935885, 49.4109528 8.6922372, 49.4109654 8.6922504, 49.4110751 8.6923977, 49.4110810 8.6924151, 49.4123496 8.7119283, 49.4099021 8.7003337, 49.4108200 8.6949938, 49.4150291 8.7081692, 49.4040132 8.6738468, 49.4040195 8.6738532, 49.4040200 8.6738315, 49.4040263 8.6738379, 49.4040563 8.6743517, 49.4040626 8.6743580, 49.4040631 8.6743363, 49.4040694 8.6743427, 49.4041965 8.6740312, 49.4042027 8.6745027, 49.4042029 8.6740376, 49.4030063 8.6756393, 49.4035897 8.6743213, 49.4035960 8.6743276, 49.4035964 8.6743060, 49.4038725 8.6741646, 49.4038789 8.6741709, 49.4038793 8.6741493, 49.4038856 8.6741556, 49.4030126 8.6756456, 49.4030131 8.6756239, 49.4030194 8.6756303, 49.4036028 8.6743123, 49.4042033 8.6740159, 49.4042091 8.6745090, 49.4042095 8.6744874, 49.4042096 8.6740222, 49.4042158 8.6744937, 49.4043441 8.6741825, 49.4043504 8.6741889, 49.4043508 8.6741672, 49.4043572 8.6741735, 49.4050523 8.6856736, 49.4084782 8.6937498, 49.4085211 8.6937683, 49.4220320 8.6976552, 49.4232372 8.6974657, 49.4232429 8.6974457, 49.4236711 8.6964872, 49.4055449 8.6883943, 49.4016204 8.6845377, 49.4051006 8.6848847, 49.4086553 8.6936567, 49.4132994 8.6919481, 49.4234494 8.6968852, 49.4234619 8.6968588, 49.4239644 8.6962809, 49.4239766 8.6962803, 49.4244382 8.6964563, 49.4248126 8.6965047, 49.4266516 8.6900922, 49.4279337 8.6910758, 49.4233185 8.6972468, 49.4244184 8.6964491, 49.4252472 8.6964019, 49.4254448 8.6963121, 49.4256648 8.6961988, 49.4256814 8.6961886, 49.4276688 8.6971645, 49.4276844 8.6971713, 49.4277077 8.6893931, 49.4287041 8.6962502, 49.4073803 8.6919832, 49.4163008 8.6717534, 49.4170921 8.6706966, 49.4100342 8.7062078, 49.4199403 8.6581676, 49.4263561 8.6613690, 49.4114202 8.6969720, 49.3999110 8.6783652, 49.3998036 8.6780609, 49.4483155 8.6893337, 49.4204769 8.7052380, 49.4221172 8.7055780, 49.4360737 8.6793655, 49.4329720 8.6805360, 49.4434767 8.6720046, 49.4431652 8.6709311, 49.4419297 8.6688858, 49.4063251 8.6755799, 49.4372140 8.6797393, 49.4378001 8.6797566, 49.4421821 8.6650097, 49.4405259 8.6652199, 49.4376306 8.6777982, 49.4287977 8.6836286, 49.4282796 8.6827973, 49.4047972 8.6739218, 49.4278804 8.6861552, 49.4082062 8.6763355, 49.3798890 8.6777329, 49.4271018 8.6801686, 49.4098483 8.6605879, 49.4214767 8.6751246, 49.4157016 8.6528859, 49.4204267 8.6756874, 49.4201425 8.6719237, 49.4203138 8.6703791, 49.4210841 8.6683206, 49.4200492 8.6683293, 49.4149913 8.6535552, 49.4039134 8.6767400, 49.4058862 8.6897740, 49.4060206 8.6905342, 49.4061503 8.6912857, 49.4088332 8.6757532, 49.4034240 8.6790856, 49.4282288 8.6836632, 49.3965511 8.6771437, 49.3935396 8.6817411, 49.3952870 8.6836845, 49.3958629 8.6832887, 49.4202026 8.6693547, 49.4225207 8.6751194, 49.4221340 8.6753895, 49.4218537 8.6754364, 49.4227238 8.6738472, 49.4227696 8.6727444, 49.4162298 8.6755281, 49.4154291 8.6756221, 49.4145364 8.6757808, 49.4162187 8.6774400, 49.4212459 8.6738490, 49.4210596 8.6732314, 49.4094114 8.6739566, 49.4089529 8.6602625, 49.4115623 8.6538584, 49.4132855 8.6517669, 49.4167321 8.6742199, 49.4156100 8.6707017, 49.4139089 8.6729704, 49.4180755 8.6627175, 49.4135711 8.6685440, 49.4133710 8.6685603, 49.4229672 8.6628733, 49.4253832 8.6563505, 49.4244918 8.6574290, 49.4201274 8.6592504, 49.4183168 8.6570383, 49.4129687 8.6642981, 49.4143409 8.6651836, 49.4194911 8.6655520, 49.4177447 8.6641338, 49.4215359 8.6818834, 49.4188910 8.6769323, 49.4211075 8.6775566, 49.4211894 8.6670319, 49.4130779 8.6696042, 49.4130810 8.6699968, 49.4134398 8.6714192, 49.4137439 8.6769747, 49.4155869 8.6784841, 49.4139913 8.6704329, 49.4136024 8.6776951, 49.3962000 8.7085445, 49.4234080 8.6595192, 49.4226921 8.6586119, 49.4229974 8.6608946, 49.4236303 8.6561909, 49.4240515 8.6571965, 49.4260202 8.6577463, 49.4200690 8.6616681, 49.4191043 8.6617726, 49.4204248 8.6636381, 49.4194488 8.6605899, 49.4192298 8.6640734, 49.4194061 8.6615040, 49.4175471 8.6615820, 49.4175057 8.6611975, 49.4177856 8.6598202, 49.4162074 8.6584117, 49.4162463 8.6598488, 49.4166299 8.6607801, 49.4141965 8.6658413, 49.4140546 8.6667870, 49.4145234 8.6662068, 49.4130970 8.6671099, 49.4337847 8.6803905, 49.4337620 8.6799996, 49.4133488 8.6736185, 49.4135576 8.6745116, 49.4126377 8.6749116, 49.4063838 8.6765104, 49.4085613 8.6631372, 49.4061810 8.6696987, 49.4071975 8.6762084, 49.3910080 8.6741013, 49.3913345 8.6763079, 49.3900958 8.6760409, 49.3966746 8.6792043, 49.3850197 8.6741885, 49.4193992 8.6682836, 49.4188931 8.6520438, 49.4187945 8.6519285, 49.4176786 8.7568038, 49.4174427 8.7569407, 49.4180751 8.7587556, 49.4192662 8.7566097, 49.4195655 8.7564736, 49.4226110 8.7421281, 49.4129370 8.6731498, 49.4152120 8.7062933, 49.4491425 8.6751887, 49.4288946 8.6862100, 49.4171569 8.6846986, 49.4162022 8.6847312, 49.4092092 8.6812299, 49.4081243 8.6917754, 49.4077406 8.6904605, 49.4067223 8.6865145, 49.4149163 8.6654747, 49.4507236 8.6784217, 49.4446326 8.6743638, 49.4449864 8.6741832, 49.3978801 8.6820904, 49.3848739 8.7095776, 49.4458920 8.6742896, 49.4143085 8.6953118, 49.4143538 8.6955138, 49.4146629 8.6946010, 49.4147014 8.6950938, 49.4144404 8.6947195, 49.4148906 8.6954429, 49.3768283 8.6892364, 49.4200609 8.6890566, 49.3803262 8.7254433, 49.3848261 8.7330761, 49.4242592 8.7437691, 49.4173756 8.7606525, 49.4505924 8.6845900, 49.4274397 8.6858018, 49.4275397 8.6861496, 49.4429091 8.6690474, 49.4106949 8.7084283, 49.4101399 8.7080219, 49.4076637 8.6962887, 49.4132295 8.7757064, 49.4486141 8.6746777, 49.3931903 8.6817010, 49.4137538 8.6648471, 49.4124311 8.7045745, 49.4113122 8.7063997, 49.4113519 8.7065985, 49.4114521 8.7051474, 49.4109673 8.7073171, 49.4110067 8.7070225, 49.4107349 8.7073040, 49.4107600 8.7070864, 49.4108526 8.7073421, 49.4111113 8.7072658, 49.4104560 8.7072665, 49.4124626 8.7053703, 49.4122564 8.7038180, 49.4121742 8.7052011, 49.4115180 8.7040462, 49.4115601 8.7060978, 49.4113137 8.7064091, 49.4184413 8.6639178, 49.4129542 8.7044420, 49.4105287 8.7055515, 49.4101358 8.7074154, 49.4090739 8.7026883, 49.4094981 8.7015823, 49.4096566 8.7077333, 49.4098303 8.7083950, 49.4099343 8.7058477, 49.4119021 8.6975187, 49.4114288 8.6979435, 49.4110943 8.6975331, 49.4108132 8.6980126, 49.4104160 8.6980515, 49.4099354 8.6980398, 49.4096933 8.6987803, 49.4127121 8.7144583, 49.4440385 8.6717215, 49.4444804 8.6709604, 49.4089831 8.6905347, 49.4091710 8.6908634, 49.4094153 8.6906953, 49.4096495 8.6905898, 49.4093287 8.6901174, 49.4095514 8.6900022, 49.4101602 8.6906176, 49.4100739 8.6902779, 49.4104549 8.6900196, 49.4102782 8.6900360, 49.4103453 8.6892983, 49.4104983 8.6887990, 49.4105996 8.6891960, 49.4106130 8.6895218, 49.4107252 8.6902781, 49.4100323 8.6886834, 49.4099625 8.6894405, 49.4100547 8.6878543, 49.4098093 8.6887675, 49.4091109 8.6881256, 49.4092130 8.6878890, 49.4093762 8.6882149, 49.4088437 8.6878948, 49.4087076 8.6873666, 49.4088390 8.6865694, 49.4083960 8.6871399, 49.4083523 8.6868745, 49.4084158 8.6842930, 49.4085999 8.6832613, 49.4083336 8.6832826, 49.4073626 8.6961046, 49.4086236 8.7038493, 49.4105126 8.6906872, 49.4102851 8.6877832, 49.4101205 8.6868012, 49.4099328 8.6869022, 49.4096844 8.6869692, 49.4099154 8.6865061, 49.4098831 8.6861779, 49.4096071 8.6847690, 49.4096829 8.6850673, 49.4094597 8.6857537, 49.4096638 8.6856990, 49.4099122 8.6855741, 49.4094714 8.6868435, 49.4094475 8.6872459, 49.4093412 8.6870318, 49.3974193 8.7796900, 49.4130703 8.7151662, 49.4133463 8.7163552, 49.4132424 8.7160458, 49.4076995 8.6755084, 49.3996504 8.6757886, 49.4157663 8.7123712, 49.4223148 8.6746219, 49.3855445 8.7101353, 49.4177435 8.6877403, 49.4254888 8.6894928, 49.4554917 8.7108449, 49.4344969 8.6847782, 49.4335894 8.6853414, 49.4493247 8.7171619, 49.4316276 8.7053393, 49.4092373 8.6934403, 49.3840303 8.7319662, 49.4166489 8.6721031, 49.4168939 8.6715527, 49.4176915 8.6881314, 49.4182453 8.6691484, 49.4201336 8.6838883, 49.4198183 8.6845408, 49.4210994 8.6858608, 49.4044484 8.6901151, 49.4044159 8.6910526, 49.4157370 8.6714754, 49.3849958 8.7327247, 49.3912799 8.7348521, 49.3844874 8.7079169, 49.4348723 8.6798701, 49.4084708 8.7744219, 49.4106260 8.7736249, 49.4084999 8.7750004, 49.4096965 8.7746403, 49.4095896 8.7745596, 49.4097963 8.7747701, 49.4081034 8.7753178, 49.4083756 8.7757148, 49.4080135 8.7726709, 49.4081473 8.7729053, 49.4085119 8.7719410, 49.4096359 8.7716832, 49.4093142 8.7711512, 49.4095779 8.7715834, 49.4100279 8.7717770, 49.4075464 8.7732045, 49.4103552 8.7719708, 49.3893649 8.6662793, 49.3911203 8.6725794, 49.4039746 8.7551200, 49.4041196 8.7536943, 49.3883810 8.7635234, 49.3872918 8.7341917, 49.3872364 8.7346514, 49.3818065 8.7467095, 49.3871999 8.7349917, 49.4121422 8.7045081, 49.4088000 8.6984868, 49.3801022 8.6812091, 49.3814817 8.6779564, 49.3814977 8.6777918, 49.4100113 8.7016140, 49.3989016 8.6746355, 49.4069958 8.6573300, 49.4038660 8.6717206, 49.4482877 8.6822129, 49.4297095 8.6822901, 49.4340707 8.6790422, 49.4326600 8.6805997, 49.4277051 8.6823985, 49.4089070 8.7072077, 49.4093409 8.7060374, 49.4331905 8.6827771, 49.4327974 8.6870571, 49.4146957 8.7191257, 49.4120976 8.7096738, 49.4128930 8.6937401, 49.3879687 8.6879096, 49.3881468 8.6882271, 49.4070420 8.6761280, 49.4290351 8.6868546, 49.4283062 8.6867403, 49.4121386 8.7104648, 49.4265924 8.6873755, 49.4278888 8.6873471, 49.4262545 8.6874841, 49.3962619 8.6860719, 49.3807720 8.6782823, 49.4085805 8.6761541, 49.3735956 8.7030427, 49.3890846 8.6883954, 49.4184415 8.6866326, 49.4214120 8.6811424, 49.4200469 8.6888749, 49.4197919 8.6885993, 49.4211709 8.6817036, 49.4200256 8.6883327, 49.4202560 8.6883704, 49.3953953 8.7086103, 49.4130496 8.7057710, 49.4097484 8.7051515, 49.4137573 8.6875431, 49.4261283 8.6876606, 49.4255958 8.6877467, 49.4252895 8.6896450, 49.4151862 8.6795007, 49.4153849 8.6793794, 49.4039369 8.6884541, 49.4233025 8.6807132, 49.4234428 8.6840685, 49.4243891 8.6864373, 49.4239240 8.6817311, 49.4228270 8.6911230, 49.4179555 8.6907278, 49.4127689 8.7147799, 49.4111631 8.7120067, 49.4060671 8.6838346, 49.4131304 8.7665767, 49.4100029 8.6521047, 49.3900974 8.6883942, 49.3800297 8.6925810, 49.4039055 8.6875262, 49.3802640 8.6848463, 49.3805355 8.6849044, 49.3939262 8.6891470, 49.3956033 8.6884888, 49.3808161 8.6905517, 49.3807025 8.6902232, 49.4067734 8.6837136, 49.4187857 8.6768219, 49.4187809 8.6767384, 49.4186852 8.6638016, 49.4063560 8.6836519, 49.4239759 8.6793816, 49.4107678 8.7077166, 49.4109456 8.7019862, 49.4085345 8.6820596, 49.4096282 8.6811489, 49.4104424 8.6919840, 49.4103493 8.6912088, 49.4086350 8.6786376, 49.4075765 8.6864605, 49.4083411 8.6839428, 49.4108377 8.6591604, 49.4110589 8.6579553, 49.3768893 8.6944349, 49.3808692 8.6779525, 49.4429209 8.6665224, 49.4332162 8.6832690, 49.4015374 8.6731285, 49.4021663 8.6853834, 49.3966514 8.6718493, 49.3890461 8.6840215, 49.4017367 8.6821163, 49.3968926 8.6802735, 49.4021904 8.6790167, 49.4154951 8.7332007, 49.4135832 8.7467488, 49.4045486 8.6762865, 49.4026134 8.6757101, 49.3976334 8.6709378, 49.4081624 8.6806522, 49.4150598 8.7727094, 49.4006359 8.6759247, 49.3964318 8.6793231, 49.4176645 8.6590769, 49.4119567 8.6571348, 49.4050466 8.6815538, 49.4045783 8.6829102, 49.4085882 8.6941458, 49.3713386 8.7202477, 49.4096951 8.6835813, 49.4097961 8.7016387, 49.3980621 8.7294523, 49.4016680 8.6740567, 49.4150755 8.7624400, 49.4150320 8.7620828, 49.3896278 8.7352655, 49.4472384 8.6758226, 49.4470879 8.6757617, 49.4092038 8.7122223, 49.3960044 8.6709715, 49.3949788 8.6699146, 49.3950680 8.6800049, 49.3960436 8.6718019, 49.3962304 8.6722292, 49.3957517 8.6718870, 49.3953878 8.6756074, 49.4097892 8.7063939, 49.4084468 8.7003941, 49.4152843 8.7204818, 49.3813905 8.7643802, 49.3839185 8.7575944, 49.3923472 8.7466824, 49.3875208 8.7503390, 49.4449871 8.6705662, 49.4125007 8.6537640, 49.4224157 8.6786831, 49.3894532 8.7370456, 49.3895678 8.7370642, 49.3892768 8.7345923, 49.4171332 8.6926969, 49.3766447 8.7050079, 49.3731436 8.7032594, 49.3725250 8.7041745, 49.3723135 8.7032611, 49.4077784 8.6939263, 49.4082673 8.6863585, 49.4086991 8.6956172, 49.3932314 8.7507117, 49.4159017 8.6697995, 49.4250581 8.7507586, 49.4094426 8.7049844, 49.4029808 8.6788786, 49.4109590 8.7049760, 49.4040413 8.7365764, 49.3799456 8.7244856, 49.4019049 8.7713017, 49.3865134 8.7038130, 49.3888980 8.7077795, 49.4063624 8.7315995, 49.3982175 8.7723404, 49.3954989 8.7710690, 49.3975902 8.7366726, 49.3873682 8.7504612, 49.4105874 8.7233315, 49.4007958 8.7275016, 49.4421834 8.6768545, 49.3918705 8.7219432, 49.4033414 8.7287167, 49.3967792 8.7245614, 49.4111026 8.7024580, 49.4009150 8.7298557, 49.4007196 8.7297407, 49.4035389 8.7279297, 49.4026240 8.7278681, 49.4072266 8.7144207, 49.4010872 8.7131843, 49.4094204 8.7462519, 49.4026441 8.7802131, 49.4087288 8.6979862, 49.4094023 8.6982765, 49.4141463 8.6944093, 49.4148467 8.6967256, 49.4150572 8.6984209, 49.4087816 8.6852872, 49.4084892 8.6860597, 49.4086175 8.6796932, 49.4086214 8.6802758, 49.4112044 8.6940182, 49.4047494 8.6753390, 49.4185616 8.6687042, 49.3937975 8.7087043, 49.3961629 8.6968177, 49.3870196 8.7195842, 49.3949506 8.7165457, 49.4166546 8.6730099, 49.4056935 8.6753617, 49.3827794 8.6823789, 49.3829854 8.6804822, 49.4137241 8.6932149, 49.3799388 8.6863729, 49.3810973 8.6895578, 49.3809588 8.6898013, 49.3796123 8.6875344, 49.3938241 8.6885892, 49.4218342 8.7455830, 49.4194809 8.7033801, 49.3925736 8.6762381, 49.3878242 8.6663099, 49.3866268 8.6977267, 49.3870220 8.6985183, 49.4091727 8.6930892, 49.4094455 8.6930370, 49.4095417 8.6933025, 49.4094946 8.6930779, 49.4095409 8.6928955, 49.4155403 8.7434262, 49.4112854 8.7578332, 49.4032430 8.7448100, 49.3924188 8.7407366, 49.3967229 8.7250259, 49.3744080 8.7048547, 49.4126021 8.6894511, 49.4124594 8.6881444, 49.4098190 8.7063061, 49.4085373 8.7758381, 49.3919273 8.7779993, 49.3958169 8.6851383, 49.3937100 8.6855417, 49.4282302 8.6874448, 49.4132893 8.6956239, 49.4085000 8.6939571, 49.4078262 8.6941716, 49.4096788 8.7079007, 49.4096785 8.7074005, 49.4101311 8.6910837, 49.4101822 8.6884713, 49.4099175 8.6890057, 49.4169024 8.6774545, 49.4170457 8.6775259, 49.4134444 8.6918647, 49.4082046 8.6830699, 49.4088779 8.6792701, 49.4080211 8.6834601, 49.4090548 8.6852623, 49.4092900 8.6865331, 49.4086943 8.6845447, 49.4288329 8.6854251, 49.4017089 8.6846814, 49.4079604 8.6841153, 49.4083191 8.6856688, 49.4080645 8.6851672, 49.4060576 8.6902372, 49.4073436 8.6889011, 49.4063263 8.6908480, 49.4265994 8.6890159, 49.4255887 8.6891453, 49.4254663 8.6892002, 49.4284964 8.6877953, 49.4299617 8.6876137, 49.4280495 8.6869299, 49.4243518 8.6812639, 49.4427904 8.7010610, 49.4114775 8.7195875, 49.4090814 8.7182703, 49.4086229 8.7202663, 49.4298363 8.6853708, 49.4324477 8.6828324, 49.4317284 8.6827286, 49.4033869 8.7279290, 49.4141616 8.7704635, 49.4142260 8.7704357, 49.4235631 8.6886029, 49.3894370 8.6884317, 49.3892845 8.6883551, 49.3895530 8.6884195, 49.4120646 8.7134735, 49.4151056 8.6533976, 49.4000215 8.6915677, 49.4070728 8.7039593, 49.4057605 8.7102504, 49.4069654 8.7032895, 49.4051156 8.7101114, 49.4056643 8.6999181, 49.4003872 8.6990544, 49.4012936 8.7089277, 49.3912677 8.7018883, 49.3967708 8.6950821, 49.4078597 8.7085627, 49.4121130 8.7104783, 49.4100264 8.7102106, 49.4133774 8.7093673, 49.4104648 8.7110643, 49.4090884 8.7121174, 49.4158331 8.7024618, 49.4215135 8.7213252, 49.4198837 8.7110673, 49.4145963 8.7424363, 49.4146285 8.7415734, 49.4158248 8.7336485, 49.4159290 8.7336568, 49.4199542 8.7402035, 49.4187468 8.7410394, 49.4180468 8.7420026, 49.4208144 8.7400015, 49.4202707 8.7392359, 49.4195583 8.7389992, 49.3966895 8.6864231, 49.4190608 8.6828828, 49.3862997 8.7039562, 49.3862241 8.7044324, 49.4089481 8.7124297, 49.4089685 8.7125699, 49.4090107 8.7127458, 49.3899857 8.7053174, 49.3907835 8.7032534, 49.3914706 8.7026871, 49.3806555 8.7065541, 49.4122679 8.7142811, 49.4075656 8.6766123, 49.3948947 8.7018296, 49.4042490 8.7188969, 49.4215697 8.7459451, 49.4178193 8.7615639, 49.4179208 8.7599422, 49.4157208 8.7418677, 49.4156600 8.7430138, 49.4152079 8.7442967, 49.4036104 8.6814823, 49.4163470 8.6659723, 49.4071432 8.7078562, 49.4067775 8.7075784, 49.3991614 8.6713811, 49.4070645 8.7127391, 49.4113511 8.7130776, 49.4088934 8.7133144, 49.4115392 8.7128522, 49.4120223 8.7062092, 49.4231838 8.7514439, 49.4531615 8.7230749, 49.4101768 8.7066874, 49.4105472 8.7780302, 49.4045675 8.6848235, 49.4096864 8.6929826, 49.4099326 8.6928092, 49.4097527 8.6932084, 49.4096327 8.6929459, 49.4102627 8.6928342, 49.4208463 8.6738282, 49.4090781 8.7054333, 49.4088637 8.7053912, 49.4139598 8.6937014, 49.4131244 8.6897970, 49.4122418 8.6816335, 49.4171772 8.7603354, 49.4178582 8.7604307, 49.4355093 8.7254841, 49.4175872 8.7007866, 49.4350143 8.7097094, 49.4316519 8.7052478, 49.4377365 8.6957804, 49.4196545 8.6977706, 49.4290723 8.7151671, 49.4497278 8.7149660, 49.4217923 8.7056451, 49.4070226 8.7014890, 49.4384096 8.6837127, 49.4337050 8.6982644, 49.4386376 8.6862454, 49.4131989 8.7239585, 49.4497066 8.6783352, 49.4058690 8.6604558, 49.4048929 8.6675943, 49.4084589 8.6609835, 49.4064864 8.6678500, 49.4085569 8.6610137, 49.4049473 8.6755921, 49.4048677 8.6759756, 49.4066719 8.6669747, 49.4050106 8.6759322, 49.4051023 8.6755057, 49.4148153 8.6642766, 49.4163511 8.7711778, 49.3772124 8.6950909, 49.4140695 8.6872232, 49.4172010 8.6768150, 49.4187293 8.6769856, 49.3930474 8.6832081, 49.3774547 8.7085656, 49.3762592 8.7055890, 49.4328627 8.7783319, 49.4181427 8.7612103, 49.4119166 8.6961489, 49.4327755 8.6997170, 49.4317346 8.7061263, 49.4322270 8.6909619, 49.4176061 8.6615500, 49.4148094 8.6905503, 49.4146460 8.6905719, 49.4266687 8.7639549, 49.4151150 8.7494524, 49.4134479 8.7473282, 49.4147513 8.7446806, 49.4124413 8.7456969, 49.4150047 8.7453868, 49.4147956 8.7444452, 49.4143823 8.7483441, 49.4232907 8.7529822, 49.4175762 8.7619090, 49.4150603 8.7612435, 49.4181519 8.7605105, 49.4165526 8.6912073, 49.4277972 8.6793663, 49.4186343 8.6608593, 49.4121807 8.6993722, 49.4195637 8.7042135, 49.3777846 8.6947087, 49.3887612 8.6898215, 49.3745870 8.6933185, 49.3745512 8.6931398, 49.4141951 8.6773802, 49.4060071 8.6831370, 49.4256553 8.7393946, 49.4253980 8.7402529, 49.4299277 8.7407836, 49.4143279 8.6877116, 49.4145768 8.6900311, 49.4076774 8.6896431, 49.4075308 8.6897346, 49.4190729 8.6890667, 49.4187521 8.6903307, 49.4187110 8.6904478, 49.4159754 8.6729830, 49.4158552 8.6727509, 49.4159739 8.6732323, 49.4067994 8.6931128, 49.4067928 8.6935104, 49.4070263 8.6953186, 49.4088402 8.7022464, 49.4086281 8.7004350, 49.4083266 8.6988134, 49.4084032 8.6992511, 49.4086930 8.7008503, 49.4082856 8.6993919, 49.4400488 8.6895399, 49.4032152 8.6746268, 49.4071473 8.6720042, 49.4126031 8.7205963, 49.4123897 8.7201796, 49.4108875 8.7198273, 49.4121174 8.7199537, 49.3933484 8.7760935, 49.4168236 8.6627821, 49.4168236 8.6627821, 49.4168236 8.6627821, 49.4211179 8.6800477, 49.4210927 8.6788357, 49.3822054 8.6779650, 49.4154994 8.6745757, 49.4087163 8.6911997, 49.4094350 8.6528632, 49.4043967 8.6769160, 49.4076047 8.6749349, 49.3999783 8.6914430, 49.4126654 8.7038051, 49.4128948 8.7051740, 49.4290349 8.6871594, 49.4288599 8.6868212, 49.4458011 8.6752086, 49.4457825 8.6750883, 49.4070387 8.6723984, 49.4259339 8.6618748, 49.4507187 8.6805587, 49.4489035 8.6762140, 49.4267357 8.6857211, 49.3846497 8.6817785, 49.3846976 8.6847175, 49.3844191 8.6849082, 49.3847543 8.6816927, 49.3845422 8.6811475, 49.3844361 8.6812945, 49.3844812 8.6833063, 49.3843655 8.6831352, 49.3844693 8.6838984, 49.3847140 8.6828075, 49.3846153 8.6826858, 49.3916379 8.6832393, 49.3986872 8.6742906, 49.3990473 8.6713284, 49.4019576 8.6811178, 49.4019323 8.6807736, 49.4019771 8.6810189, 49.4019064 8.6809317, 49.4030467 8.6777744, 49.4403049 8.7370650, 49.4278253 8.6839436, 49.4279195 8.6840395, 49.4266417 8.6834045, 49.4149614 8.7627536, 49.4147153 8.7636838, 49.4148588 8.7631440, 49.4151372 8.7619776, 49.4074520 8.6739607, 49.4068864 8.6742272, 49.4066831 8.6742637, 49.4065288 8.6742965, 49.4074304 8.6738082, 49.4070673 8.6742200, 49.4072326 8.6739688, 49.4071113 8.6739332, 49.4071745 8.6739715, 49.4068234 8.6739182, 49.4068406 8.6742290, 49.4065740 8.6742948, 49.4067619 8.6739416, 49.4063755 8.6743398, 49.4063435 8.6743250, 49.4071878 8.6744576, 49.4064083 8.6743389, 49.4070217 8.6742218, 49.4067925 8.6739306, 49.4068540 8.6739069, 49.4067956 8.6742307, 49.4072178 8.6742893, 49.4075113 8.6739379, 49.4073401 8.6739636, 49.4074310 8.6738414, 49.4069770 8.6742236, 49.4073533 8.6740777, 49.4070461 8.6739348, 49.4075274 8.6742330, 49.4073911 8.6739622, 49.4071584 8.6742164, 49.4067497 8.6742326, 49.4074299 8.6737756, 49.4063104 8.6743095, 49.4074931 8.6738733, 49.4066188 8.6742931, 49.4069166 8.6738920, 49.4070675 8.6739342, 49.4069322 8.6742254, 49.4069478 8.6738909, 49.4074009 8.6740750, 49.4062796 8.6742939, 49.4071123 8.6742182, 49.4070894 8.6739337, 49.4074938 8.6739384, 49.4072034 8.6742480, 49.4068853 8.6738947, 49.4064567 8.6743367, 49.4073274 8.6744523, 49.4075006 8.6742374, 49.4072016 8.6742146, 49.4045857 8.6750253, 49.4035865 8.6820059, 49.4030383 8.6811813, 49.4059168 8.6855262, 49.4060029 8.6854623, 49.4067406 8.6760466, 49.4069553 8.6902031, 49.4076532 8.6926483, 49.4209716 8.7395001, 49.4148681 8.7627574, 49.4178026 8.7412411, 49.4177775 8.7408198, 49.4179019 8.7409040, 49.4210951 8.7398188, 49.4178687 8.7405082, 49.4150957 8.7621532, 49.4151231 8.7620372, 49.4150216 8.7723676, 49.4051851 8.7806376, 49.4094999 8.7187995, 49.4123406 8.7658191, 49.4111767 8.7708030, 49.4112682 8.7706277, 49.4105747 8.7718871, 49.4114477 8.7117426, 49.4179324 8.7578275, 49.4447844 8.7558449, 49.4134141 8.7156909, 49.4129097 8.7129751, 49.4127437 8.7131641, 49.3970019 8.6746884, 49.4127565 8.7719234, 49.4106087 8.7156269, 49.3834049 8.6789517, 49.4098213 8.6924212, 49.4174569 8.7484520, 49.4025655 8.6891887, 49.4036138 8.7270753, 49.4278064 8.7495089, 49.4288764 8.7498520, 49.4410069 8.6652065, 49.4422747 8.6663944, 49.4422553 8.6672498, 49.4177652 8.6880875, 49.4136740 8.6736399, 49.4085738 8.6928851, 49.4086523 8.6933648, 49.4425561 8.7519092, 49.4132859 8.6908940, 49.4155322 8.6699617, 49.3924005 8.7782292, 49.4278544 8.6884082, 49.4068263 8.6680762, 49.4072646 8.6691321, 49.4072916 8.6693315, 49.4049477 8.7776001, 49.4064182 8.7775809, 49.4172829 8.7456066, 49.3931588 8.7767282, 49.4102644 8.7748807, 49.4102824 8.7752511, 49.4161441 8.7553820, 49.4153885 8.7473120, 49.4152029 8.7091123, 49.4134479 8.6924308, 49.4144394 8.6710078, 49.4141167 8.6710146, 49.4138185 8.6710206, 49.4132935 8.6911529, 49.4131725 8.7092512, 49.4131247 8.7097212, 49.4083996 8.6921523, 49.4161156 8.6703451, 49.4159611 8.6705524, 49.4161026 8.6692956, 49.4104796 8.6607802, 49.4113226 8.6592808, 49.4145907 8.6663489, 49.4136723 8.7107377, 49.4135796 8.7138390, 49.4136153 8.7141506, 49.4137093 8.7167419, 49.4088095 8.6613580, 49.4085674 8.6625073, 49.4089016 8.6607853, 49.4132052 8.7122933, 49.4158015 8.7426821, 49.4152783 8.7629876, 49.4155726 8.7610190, 49.4576975 8.7025488, 49.4000585 8.6765799, 49.4161732 8.7555546, 49.4153272 8.7608768, 49.4152918 8.7608610, 49.4153534 8.7601741, 49.4102210 8.7748343, 49.4101629 8.7746784, 49.4094958 8.6684506, 49.4476354 8.6808109, 49.4476337 8.6811172, 49.4479946 8.6811792, 49.4160191 8.6700610, 49.4161314 8.6706351, 49.3924444 8.7782060, 49.3922131 8.7798986, 49.4187135 8.7240892, 49.4182654 8.7234671, 49.4063399 8.6900996, 49.4063668 8.6902286, 49.4065511 8.6906922, 49.4055849 8.6876896, 49.4052408 8.6862751, 49.4056965 8.6856838, 49.4209713 8.6746499, 49.3917631 8.6910070, 49.3914904 8.6905020, 49.4133894 8.7101136, 49.4446785 8.7641829, 49.4000181 8.6782987, 49.3931737 8.6788679, 49.4504867 8.6872115, 49.4198205 8.7343539, 49.4101553 8.6911774, 49.4066779 8.7141416, 49.4113423 8.7195551, 49.4110748 8.7197211, 49.3945251 8.6755375, 49.3945690 8.6743519, 49.3943175 8.6754654, 49.3973820 8.6940966, 49.3935162 8.7079473, 49.3987446 8.6923402, 49.3986523 8.6924283, 49.3972671 8.6941625, 49.3799065 8.7239334, 49.4061766 8.6754688, 49.4064397 8.6761648, 49.4275954 8.6823123, 49.3963113 8.6748861, 49.4103125 8.7748332, 49.4264733 8.7602041, 49.3916824 8.6702885, 49.4383671 8.7404676, 49.4373853 8.7411725, 49.4048709 8.6753023, 49.4014026 8.6800343, 49.3982248 8.6703696, 49.4166596 8.6925736, 49.4033925 8.6748011, 49.4036554 8.6741638, 49.4030818 8.6755033, 49.4030690 8.6754897, 49.4036681 8.6741773, 49.4033797 8.6747876, 49.4039602 8.6739790, 49.4041427 8.6741682, 49.4042899 8.6743214, 49.4124338 8.7117609, 49.4031240 8.6758606, 49.4029422 8.6757784, 49.4033073 8.6760596, 49.4029550 8.6757921, 49.4034582 8.6762131, 49.4035925 8.6763415, 49.4029835 8.6757044, 49.4274540 8.6971831, 49.4278787 8.6910220, 49.4178561 8.6661108, 49.4177188 8.6624888, 49.4138580 8.6676018, 49.4162081 8.6666428, 49.4187185 8.6769009, 49.3893705 8.7373749, 49.3810576 8.6896077, 49.4030621 8.7276422, 49.4023727 8.7276687, 49.4060475 8.6885018, 49.4203230 8.6891092, 49.4203313 8.6895228, 49.4130005 8.6887393 +49.4211952 8.6797713, 49.4247055 8.6449657, 49.4065042 8.6930977, 49.4046185 8.6759242, 49.4092373 8.6934403, 49.4089070 8.7072077, 49.4067734 8.6837136, 49.3789847 8.6763771 +48.8379931 2.3270595, 48.8224797 2.3195383, 48.8875758 2.3303180, 48.8413274 2.2797801, 48.8384087 2.2847485, 48.8979156 2.3166483, 48.8890374 2.3392764, 48.8624937 2.2850289, 48.8410409 2.2593377, 48.8868716 2.3419216 +1 +49.3811108 8.6608351, 49.3829231 8.6669185, 49.3923746 8.6760835 +0 +13 +224 +3 +yes +49.4592060 8.7521809, 49.4031563 8.7288155, 49.4032526 8.7289874, 49.4010156 8.7133745, 49.4012714 8.7099451, 49.4035347 8.7270885, 49.4198190 8.7257180, 49.4318454 8.7057299, 49.3784315 8.6932171, 49.4588749 8.7510057, 49.4085824 8.7204400 +yes +52.0291860 8.5142550, 49.2330740 6.9973444, 50.1074307 8.7650055, 50.1072273 8.7647436, 53.4593415 9.9824597, 51.1120248 13.0448680, 51.3434003 12.3777564, 53.0816826 8.7668217, 53.0785270 8.7790946, 51.3662367 12.7354244, 53.0763731 8.7814702, 53.0749711 8.7854362, 53.5870543 9.8523197, 53.0736960 8.8113880, 53.0776511 8.7744885, 53.0798099 8.7656249, 53.0749514 8.8058188, 53.0700008 8.8578411, 53.0722317 8.8027783, 53.0660402 8.8603661, 52.1492696 8.6409588, 49.4448734 7.7697663, 53.0836993 8.7681259, 52.4938477 13.3811864, 52.6401090 9.2041528, 52.6429039 9.2056691, 50.6909067 6.6458012, 53.1226519 8.7627701, 52.4859871 13.4239241, 51.1738592 11.4244641, 51.1733178 11.4239529, 51.1752559 11.4191939, 51.1770761 11.4206127, 53.0791955 8.8052958, 53.1368542 8.7413622, 51.5144694 12.1668357, 51.2675538 7.1607310, 50.6635320 11.5677944, 51.0527530 13.7389786, 49.4719088 8.4843272, 50.9602320 6.9768159, 48.5135683 9.0540270, 48.5136496 9.0546591, 48.5166244 9.0588300, 49.4711729 8.4842984, 52.6396913 9.2078891, 48.1065996 11.7222571, 52.6440907 9.2020649, 52.5449088 12.3430742, 52.5447248 12.3472627, 49.4040536 8.6759122, 52.5184534 13.4548208 +Premier Inn Leith, Mercure Hotel, Old Waverley Hotel, Royal British Hotel, Thistle Hotel +29 +1 +yes +Schloss Filmtheater, Gloria & Gloriette, Karlstorkino +828 +55.9821414 -3.4001668 +71 and 13 +BNP Paribas and 48.8737979 2.3160522 +8 +48.8700842 2.3190066 +yes +147 +en:Talbot Rice Gallery +55.9373944 -3.2348187 +2 +yes and 48.8769555 2.2661355, 48.8365051 2.4433783 +38 +yes +347 +yes +48.8403064 2.3155776 +76 +Theater im Kulturzentrum Karlstorbahnhof, Städtische Bühne, Theater und Philharmonisches Orchester, Taeter Theater, Zimmertheater, Zwinger1 und Zwinger3, Hebelhalle +yes +49.4124594 8.6881444 +8 +Dynastie, Tiger and Dragon's, bamboos, Asia Bistro, Thai Gourmet +1617 +49.4296874 8.6826637, 49.4279757 8.6835849, 49.4147764 8.6710359, 49.4278053 8.7495282, 49.4178891 8.7605933, 49.3974030 8.6486853, 49.3977437 8.6485764, 49.4045638 8.6759283, 49.4075919 8.6845735, 49.4092177 8.6922359, 49.4084542 8.6927289, 49.4078943 8.6929172, 49.4083041 8.6927592, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4015990 8.6856698, 49.4158218 8.6922416, 49.4072954 8.6910173, 49.4082595 8.6914326, 49.4082829 8.6916558, 49.4076226 8.6923209, 49.3808049 8.6889505, 49.3746833 8.6826514, 49.3656861 8.7051775, 49.3741444 8.7033717, 49.3742583 8.7034051, 49.3741763 8.7034993, 49.4103158 8.6974936, 49.4165191 8.6921856, 49.3790412 8.6689354, 49.3792964 8.6699345, 49.4048779 8.6827341, 49.4120923 8.7117858, 49.4071068 8.6898761, 49.4108200 8.6918918, 49.4227158 8.6483350, 49.3840770 8.6710133, 49.4160126 8.6922256, 49.3809325 8.6701888, 49.4168755 8.6790034, 49.3992315 8.6710140, 49.4283321 8.6836841, 49.3804723 8.6884268, 49.3807734 8.6884609, 49.4228152 8.6504004, 49.4082494 8.6913249, 49.4278253 8.6839436 +yes +76 +24 +Heinstein's +3.0024997669605269 +53.0485839 8.6313511, 53.0485936 8.6313802, 53.0486037 8.6314063, 53.0494724 8.6335621, 53.0494578 8.6335286, 53.0494852 8.6335943, 53.0494998 8.6336225, 53.0520881 8.6325667, 53.0516940 8.6297814, 53.0516682 8.6297841, 53.0516456 8.6297895, 53.0516214 8.6297922, 53.0517785 8.6077513, 53.0516366 8.6078318, 53.0518496 8.6077245, 53.0517108 8.6078050, 53.0590251 8.6234072, 53.0589009 8.6234019, 53.0589848 8.6234019, 53.0590605 8.6234046, 53.0589429 8.6233965, 53.0505000 8.6353079, 53.0289027 8.6383844, 53.0479116 8.6346100, 53.0289689 8.6384139, 53.0478728 8.6346395, 53.0478342 8.6346610, 53.0506008 8.6353450, 53.0505388 8.6353321, 53.0505678 8.6353106, 53.0505340 8.6352731, 53.0574582 8.5994310, 53.0575115 8.5993612, 53.0575002 8.5994283, 53.0574775 8.5993317, 53.0525977 8.6321456 +48.8678615 2.3515176, 48.8681982 2.3520494, 48.8742181 2.3379134, 48.8797487 2.3564752, 48.8827832 2.3594133, 48.8327554 2.3711889, 48.8294304 2.3758918, 48.8322707 2.3582796, 48.8704428 2.3883722, 48.8703637 2.3893764, 48.8695013 2.3822447, 48.8701522 2.3848448, 48.8705756 2.3882952, 48.8726648 2.3889559, 48.8692544 2.3857069, 48.8732512 2.3826034, 48.8719640 2.3809798, 48.8715124 2.3812630, 48.8707876 2.3814258, 48.8701383 2.3797607, 48.8703047 2.3816624, 48.8689756 2.3829202, 48.8674174 2.3831948, 48.8681056 2.3856641, 48.8692096 2.3486800, 48.8675048 2.3473847, 48.8674736 2.3471342, 48.8702235 2.3490322, 48.8818782 2.3342987, 48.8404563 2.3540242, 48.8457501 2.3710340, 48.8507318 2.3902220, 48.8273026 2.3137753, 48.8321419 2.3413424, 48.8330200 2.3329456, 48.8529986 2.3973185, 48.8537772 2.3960030, 48.8411229 2.3744020, 48.8713839 2.3723624, 48.8720555 2.3717928, 48.8725878 2.3713798, 48.8734747 2.3704890, 48.8741515 2.3743018, 48.8747572 2.3721336, 48.8756416 2.3688091, 48.8761685 2.3706316, 48.8767824 2.3701809, 48.8766895 2.3672800, 48.8750608 2.3672145, 48.8735860 2.3650243, 48.8718184 2.3654608, 48.8717399 2.3675792, 48.8714321 2.3669323, 48.8715550 2.3681089, 48.8696638 2.3693259, 48.8715040 2.3760459, 48.8700440 2.3716713, 48.8687232 2.3723495, 48.8683112 2.3698916, 48.8680322 2.3727849, 48.8631317 2.3869263, 48.8640310 2.3863813, 48.8665041 2.3812744, 48.8656858 2.3776485, 48.8674450 2.3750281, 48.8686005 2.3800123, 48.8681319 2.3792398, 48.8543046 2.3285742, 48.8520050 2.3739783, 48.8456295 2.4033753, 48.8663147 2.3719752, 48.8769811 2.4048559, 48.8749761 2.4031141, 48.8777348 2.3959932, 48.8758342 2.4011315, 48.8703695 2.3665503, 48.8748068 2.3638809, 48.8753882 2.3643616, 48.8831646 2.3720227, 48.8833551 2.3721300, 48.8836055 2.3731171, 48.8836902 2.3740022, 48.8840147 2.3752146, 48.8844169 2.3762767, 48.8849729 2.3784198, 48.8850377 2.3791735, 48.8851153 2.3790072, 48.8855033 2.3809706, 48.8856762 2.3815928, 48.8865051 2.3847954, 48.8873411 2.3873650, 48.8876230 2.3883824, 48.8878308 2.3891184, 48.8889239 2.3944490, 48.8827251 2.3816969, 48.8725474 2.3766326, 48.8739080 2.3960132, 48.8775377 2.3857736, 48.8831878 2.3714050, 48.8640393 2.3755646, 48.8706620 2.3611950, 48.8734580 2.3584123, 48.8732312 2.3586224, 48.8755934 2.3832701, 48.8756530 2.3832155, 48.8482774 2.3428253, 48.8784345 2.3578878, 48.8783277 2.3564922, 48.8703209 2.2825197, 48.8268477 2.3647861, 48.8541564 2.4000911, 48.8465229 2.3686904, 48.8463083 2.3680521, 48.8469932 2.3727161, 48.8467819 2.3725108, 48.8459580 2.3724556, 48.8455779 2.3697051, 48.8663510 2.3672959, 48.8658303 2.3698488, 48.8657851 2.3771616, 48.8665079 2.3800178, 48.8653617 2.3809810, 48.8760867 2.3599561, 48.8829095 2.3591741, 48.8834606 2.3606563, 48.8826329 2.3615224, 48.8854259 2.3538571, 48.8884161 2.3532369, 48.8841015 2.3597869, 48.8874152 2.3671866, 48.8853281 2.3720155, 48.8905441 2.3545731, 48.8902032 2.3626104, 48.8896626 2.3678766, 48.8830418 2.3799420, 48.8839897 2.3776750, 48.8839192 2.3777877, 48.8793674 2.3913866, 48.8642121 2.3813367, 48.8549764 2.3705401, 48.8491281 2.3756993, 48.8907340 2.3442268, 48.8482547 2.3739915, 48.8476489 2.3756562, 48.8505462 2.3785256, 48.8495764 2.3778022, 48.8488506 2.3771667, 48.8490151 2.3766595, 48.8493081 2.3747820, 48.8485986 2.3761016, 48.8466357 2.3723850, 48.8376761 2.3448921, 48.8355075 2.3583356, 48.8464369 2.3792454, 48.8584489 2.3792058, 48.8945048 2.3474462, 48.8929338 2.3489373, 48.8919373 2.3499061, 48.8943845 2.3506181, 48.8938805 2.3498536, 48.8953235 2.3467399, 48.8953754 2.3495531, 48.8995258 2.3457476, 48.8909128 2.3454738, 48.8916063 2.3445324, 48.8921962 2.3448571, 48.8923204 2.3442537, 48.8902437 2.3476818, 48.8906398 2.3495092, 48.8907675 2.3495020, 48.8923427 2.3461089, 48.8949846 2.3408277, 48.8842461 2.3613088, 48.8840672 2.3616073, 48.8841745 2.3614072, 48.8882926 2.3599384, 48.8845099 2.3646309, 48.8856332 2.3659515, 48.8920952 2.3613649, 48.8883041 2.3506540, 48.8883196 2.3501401, 48.8883144 2.3520272, 48.8883763 2.3527059, 48.8886896 2.3559132, 48.8886090 2.3548159, 48.8889395 2.3584021, 48.8890178 2.3582290, 48.8890523 2.3595116, 48.8866144 2.3504214, 48.8858198 2.3551215, 48.8863622 2.3561844, 48.8878527 2.3515748, 48.8872861 2.3561221, 48.8839769 2.3509507, 48.8850544 2.3495979, 48.8857811 2.3496248, 48.8861021 2.3496301, 48.8863490 2.3496462, 48.8876294 2.3496373, 48.8885253 2.3496748, 48.8890580 2.3496748, 48.8887476 2.3496695, 48.8889098 2.3496802, 48.8841020 2.3522661, 48.8840538 2.3519670, 48.8840388 2.3514774, 48.8892343 2.3496802, 48.8896364 2.3496856, 48.8847017 2.3493780, 48.8847898 2.3493834, 48.8848569 2.3493834, 48.8852449 2.3493834, 48.8851108 2.3493834, 48.8863243 2.3494209, 48.8860562 2.3494048, 48.8857987 2.3494048, 48.8866171 2.3494388, 48.8873464 2.3494796, 48.8876365 2.3494656, 48.8887125 2.3494781, 48.8889239 2.3494603, 48.8891003 2.3494710, 48.8884971 2.3494495, 48.8880001 2.3494761, 48.8904052 2.3495068, 48.8897932 2.3494533, 48.8892625 2.3494710, 48.8830632 2.3383743, 48.8857316 2.3349375, 48.8857096 2.3352645, 48.8854435 2.3359469, 48.8859008 2.3346803, 48.8853035 2.3363355, 48.8851642 2.3366575, 48.8843335 2.3382618, 48.8886961 2.3390540, 48.8851431 2.3383441, 48.8865032 2.3356719, 48.8885778 2.3354686, 48.8888861 2.3383196, 48.8842610 2.3413414, 48.8845571 2.3411073, 48.8847258 2.3403346, 48.8849081 2.3418344, 48.8895658 2.3377576, 48.8850086 2.3604185, 48.8907312 2.3639595, 48.8961106 2.3318024, 48.8991268 2.3345829, 48.8952517 2.3371563, 48.8962344 2.3344485, 48.8965875 2.3360980, 48.8956272 2.3391536, 48.8966215 2.3385776, 48.8983862 2.3383214, 48.8944354 2.3403228, 48.8944213 2.3442287, 48.9000243 2.3455555, 48.8996339 2.3501097, 48.8837052 2.3395939, 48.8832400 2.3421635, 48.8834792 2.3421669, 48.8839647 2.3413568, 48.8865870 2.3452064, 48.8832262 2.3499505, 48.8846010 2.3470099, 48.8881281 2.3463794, 48.8883520 2.3487355, 48.8869557 2.3324658, 48.8869663 2.3326053, 48.8890733 2.3333345, 48.8903665 2.3341127, 48.8903277 2.3330237, 48.8903732 2.3369030, 48.8916342 2.3355210, 48.8908322 2.3375902, 48.8908023 2.3394033, 48.8910048 2.3400771, 48.8912851 2.3396007, 48.8926693 2.3356185, 48.8934479 2.3366141, 48.8928829 2.3373736, 48.8929557 2.3385657, 48.8923455 2.3400044, 48.8904263 2.3404251, 48.8913682 2.3472930, 48.8603661 2.3754100, 48.8900474 2.3613408, 48.8314088 2.3488132, 48.8487505 2.3777984, 48.8503027 2.3774477, 48.8626941 2.3877054, 48.8785891 2.3856103, 48.8810145 2.3891669, 48.8321125 2.3499256, 48.8774636 2.3705618, 48.8682585 2.2932381, 48.8782580 2.3987300, 48.8832583 2.3346263, 48.8832465 2.3341658, 48.8831954 2.3348376, 48.8842151 2.3311538, 48.8830070 2.3349691, 48.8833032 2.3455032, 48.8841705 2.3313488, 48.8826156 2.3432538, 48.8834306 2.3335452, 48.8841164 2.3315750, 48.8824079 2.3419280, 48.8834666 2.3339320, 48.8831738 2.3344061, 48.8821954 2.3389929, 48.8836632 2.3332864, 48.8831695 2.3452574, 48.8824739 2.3367661, 48.8829388 2.3356827, 48.8831317 2.3458945, 48.8843696 2.3305004, 48.8842302 2.3305121, 48.8826517 2.3426287, 48.8827762 2.3362216, 48.8839947 2.3320999, 48.8842717 2.3309204, 48.8824891 2.3425994, 48.8830995 2.3449030, 48.8829578 2.3351297, 48.8832939 2.3340079, 48.8830087 2.3354500, 48.8840806 2.3311362, 48.8827159 2.3359415, 48.8828527 2.3354881, 48.8840902 2.3316931, 48.8911573 2.3437849, 48.8841548 2.3308314, 48.8839884 2.3315392, 48.8827419 2.3443694, 48.8824955 2.3419279, 48.8842291 2.3288540, 48.8840681 2.3286855, 48.8841801 2.3289398, 48.8859483 2.3285578, 48.8851713 2.3293553, 48.8576992 2.2797776, 48.8298513 2.2961748, 48.8373832 2.3826403, 48.8799725 2.3588623, 48.8800272 2.3588101, 48.8829349 2.3636381, 48.8829772 2.3594750, 48.8826392 2.3667648, 48.8770806 2.3638519, 48.8809351 2.3625812, 48.8809545 2.3624632, 48.8831311 2.3654083, 48.8830941 2.3655236, 48.8839358 2.3671407, 48.8289786 2.3807812, 48.8280552 2.3808361, 48.8292843 2.3823232, 48.8294517 2.3827405, 48.8291010 2.3833382, 48.8297120 2.3791681, 48.8809954 2.3651002, 48.8812463 2.3652224, 48.8827050 2.3670033, 48.8465800 2.3730993, 48.8839900 2.3286046, 48.8839605 2.3284938, 48.8763431 2.4041075, 48.8880685 2.3769540, 48.8888236 2.3460678, 48.8955600 2.3458430, 48.8909736 2.3451546, 48.8857875 2.3376754, 48.8856834 2.3380986, 48.8908443 2.3617886, 48.8850609 2.3402076, 48.8569556 2.3980459, 48.8564650 2.4027024, 48.8892956 2.3534520, 48.8883918 2.3276047, 48.8433038 2.3543255, 48.8418031 2.3029041, 48.8414214 2.2514890, 48.8665787 2.3687395, 48.8677539 2.3647162, 48.8672442 2.3624249, 48.8919172 2.3436860, 48.8917691 2.3440528, 48.8423698 2.3854379, 48.8469303 2.3075499, 48.8475588 2.3088840, 48.8486504 2.3085581, 48.8448872 2.3142661, 48.8446342 2.3148283, 48.8488629 2.3113707, 48.8543766 2.3286669, 48.8752295 2.2843527, 48.8531440 2.3776869, 48.8595596 2.2753644, 48.8595734 2.2750496, 48.8616150 2.2754832, 48.8659680 2.2795955, 48.8672885 2.2809372, 48.8680280 2.2809252, 48.8683971 2.2825564, 48.8473600 2.3864659, 48.8698073 2.3749191, 48.8698594 2.3755160, 48.8624876 2.3424711, 48.8650939 2.3440997, 48.8652964 2.3432812, 48.8659653 2.3433342, 48.8683868 2.3418763, 48.8671550 2.3566053, 48.8751636 2.4061686, 48.8904492 2.3770876, 48.8384989 2.2572066, 48.8396082 2.2579126, 48.8398593 2.2580096, 48.8651576 2.3510916, 48.8751432 2.3825052, 48.8750868 2.3823845, 48.8425813 2.3448154, 48.8940561 2.3541965, 48.8917696 2.3461211, 48.8918716 2.3465917, 48.8751867 2.4062512, 48.8968424 2.3818049, 48.8499326 2.3631550, 48.8688265 2.2482135, 48.8462126 2.4118560, 48.8437424 2.2986106, 48.8455688 2.3253845, 48.8459243 2.3259674, 48.8460036 2.3258028, 48.8464844 2.3265135, 48.8917516 2.3438452, 48.8911967 2.3437988, 48.8933614 2.3614463, 48.8861681 2.3474404, 48.8462352 2.3927786, 48.8935766 2.3294235, 48.8878878 2.3544913, 48.8880271 2.3560550, 48.8812030 2.3284499, 48.8742437 2.3321727, 48.8942439 2.3352879, 48.8988973 2.3399388, 48.8997428 2.3522502, 48.8921164 2.3345008, 48.8911613 2.3319378, 48.8921939 2.3316488, 48.8856755 2.3448166, 48.8930350 2.3633966, 48.8900140 2.3602197, 48.8762979 2.3397799, 48.8766916 2.3405068, 48.8933200 2.3491176, 48.8246903 2.3553751, 48.8377773 2.3494970, 48.8895988 2.3163725, 48.8825981 2.3645629, 48.8928809 2.3504734, 48.8920706 2.3346881, 48.8933750 2.3385392, 48.8413779 2.3118977, 48.8433854 2.3736074, 48.8510517 2.3092163, 48.8518484 2.3096816, 48.8369959 2.3933620, 48.8545431 2.2743043, 48.8589523 2.2771588, 48.8599813 2.3497684, 48.8968971 2.3856504, 48.8278579 2.3057957, 48.8302062 2.3335779, 48.8254086 2.3802466, 48.8984327 2.3695091, 48.8394454 2.3963015, 48.8605989 2.3512022, 48.8983279 2.3618983, 48.8983261 2.3617173, 48.8983518 2.3649038, 48.8982617 2.3563907, 48.8750935 2.3351732, 48.8436342 2.3043290, 48.8431682 2.3046133, 48.8918524 2.3632899, 48.8919900 2.3631317, 48.8756176 2.3432285, 48.8760560 2.3438036, 48.8762724 2.3440214, 48.8429539 2.4085434, 48.8443890 2.4068429, 48.8418110 2.4082929, 48.8257982 2.3468029, 48.8266018 2.3354681, 48.8272551 2.3352458, 48.8330622 2.3958487, 48.8336114 2.3861569, 48.8337322 2.3983467, 48.8337623 2.3951877, 48.8342999 2.3975412, 48.8343797 2.3963938, 48.8345191 2.3966361, 48.8348254 2.3934365, 48.8348947 2.3972942, 48.8349022 2.3933477, 48.8349654 2.3960429, 48.8358704 2.3961786, 48.8359891 2.3974455, 48.8360813 2.3872238, 48.8361353 2.3948924, 48.8361988 2.3988969, 48.8364221 2.3949270, 48.8364309 2.3988951, 48.8365523 2.3982569, 48.8366252 2.3929585, 48.8366508 2.3952223, 48.8366989 2.3943677, 48.8369456 2.4019945, 48.8370471 2.3917506, 48.8375850 2.3971765, 48.8376090 2.3907850, 48.8380876 2.3941069, 48.8382060 2.3900510, 48.8382377 2.3966077, 48.8384334 2.3930799, 48.8392532 2.4005400, 48.8393971 2.4089227, 48.8394590 2.3963160, 48.8398776 2.4385198, 48.8401062 2.4087456, 48.8403121 2.4025153, 48.8403240 2.3922740, 48.8404000 2.3925410, 48.8405290 2.3878980, 48.8406298 2.4087338, 48.8408716 2.4093998, 48.8408973 2.4043894, 48.8411011 2.3894090, 48.8411636 2.4011997, 48.8412990 2.3878120, 48.8414464 2.4049212, 48.8415076 2.4114849, 48.8415328 2.3867030, 48.8416660 2.4012796, 48.8419094 2.4012356, 48.8421054 2.4051399, 48.8422686 2.4130852, 48.8427012 2.4099683, 48.8430070 2.4049900, 48.8432746 2.4053848, 48.8435321 2.4018263, 48.8435985 2.3849459, 48.8438772 2.4055537, 48.8438822 2.4018602, 48.8441184 2.4107116, 48.8445290 2.4022130, 48.8445690 2.3838350, 48.8447684 2.4039094, 48.8450108 2.3819449, 48.8450601 2.4059175, 48.8451489 2.3992116, 48.8456490 2.4058577, 48.8458140 2.3781933, 48.8460195 2.4011318, 48.8464795 2.3973596, 48.8468250 2.3761200, 48.8469175 2.3998635, 48.8470370 2.3752130, 48.8473365 2.3968804, 48.8475637 2.3772093, 48.8476803 2.3969131, 48.8478107 2.3769587, 48.8486250 2.3761890, 48.8486464 2.3760764, 48.8486500 2.3759526, 48.8486995 2.3922091, 48.8488565 2.3718825, 48.8491107 2.3914645, 48.8491891 2.3706453, 48.8492039 2.3749537, 48.8493182 2.3945344, 48.8494100 2.3666950, 48.8495420 2.3885630, 48.8496199 2.3992270, 48.8496430 2.3879630, 48.8497090 2.3874500, 48.8499140 2.3738580, 48.8500548 2.3704157, 48.8501440 2.3736032, 48.8501956 2.3990356, 48.8507639 2.3673484, 48.8517110 2.3618880, 48.8517771 2.3894115, 48.8518450 2.3616490, 48.8521525 2.3608127, 48.8522346 2.3609020, 48.8526930 2.3593190, 48.8527195 2.3598976, 48.8527480 2.3589640, 48.8531388 2.3585705, 48.8532690 2.3582420, 48.8535826 2.3671894, 48.8536386 2.3574595, 48.8536840 2.3653980, 48.8540083 2.3867106, 48.8542800 2.3558000, 48.8543900 2.3585670, 48.8546430 2.3624970, 48.8551500 2.3611171, 48.8551661 2.3610199, 48.8553710 2.3839922, 48.8554533 2.3526702, 48.8555080 2.3530370, 48.8557740 2.3511230, 48.8557940 2.3561690, 48.8559788 2.3536549, 48.8576042 2.3453235, 48.8576673 2.3795437, 48.8578611 2.3794239, 48.8580233 2.3793056, 48.8588686 2.3399492, 48.8593222 2.3528610, 48.8597358 2.3468419, 48.8618647 2.3406148, 48.8659038 2.3352738, 48.8664823 2.3650887, 48.8680548 2.3339763, 48.8682365 2.3599800, 48.8683243 2.3611065, 48.8693195 2.3570045, 48.8692824 2.3567025, 48.8701819 2.3507724, 48.8703411 2.3499916, 48.8703632 2.3498715, 48.8704864 2.3493477, 48.8705032 2.3492529, 48.8716194 2.3500035, 48.8721225 2.3499157, 48.8721226 2.3502025, 48.8722370 2.3500383, 48.8737185 2.3504412, 48.8741816 2.3506318, 48.8747445 2.3507850, 48.8752900 2.3395820, 48.8758873 2.3483293, 48.8760619 2.3511508, 48.8762909 2.3511140, 48.8779921 2.3512114, 48.8784568 2.3428425, 48.8787058 2.3506082, 48.8792051 2.3494881, 48.8792478 2.3478686, 48.8794000 2.3508120, 48.8795410 2.3488399, 48.8798786 2.3436312, 48.8799663 2.3473845, 48.8339632 2.2872487, 48.8359881 2.2902310, 48.8372786 2.2895116, 48.8449733 2.3955604, 48.8452920 2.3209130, 48.8452821 2.3979496, 48.8463896 2.3943133, 48.8471562 2.3938782, 48.8489640 2.3916850, 48.8493880 2.3888810, 48.8496070 2.3873440, 48.8502461 2.3827334, 48.8504940 2.3815430, 48.8505009 2.3846476, 48.8513150 2.3816100, 48.8518018 2.3280805, 48.8525120 2.3807800, 48.8533500 2.3805110, 48.8537880 2.3957560, 48.8541520 2.3797770, 48.8561260 2.3783390, 48.8576484 2.3771545, 48.8584759 2.3764078, 48.8603270 2.3754070, 48.8618492 2.3647130, 48.8621758 2.3636326, 48.8622764 2.3665452, 48.8633235 2.3689417, 48.8645520 2.3597753, 48.8671223 2.3513757, 48.8700760 2.3506120, 48.8736310 2.3479604, 48.8755325 2.3482416, 48.8758100 2.3397850, 48.8760265 2.3400514, 48.8760800 2.3403660, 48.8768678 2.3487512, 48.8389060 2.3767670, 48.8390010 2.3874480, 48.8396552 2.3779295, 48.8543680 2.3547701, 48.8239017 2.3229235, 48.8242472 2.3213940, 48.8245758 2.3199505, 48.8255285 2.3158189, 48.8256468 2.3482018, 48.8258238 2.3144135, 48.8260929 2.3588377, 48.8261054 2.3131480, 48.8275286 2.3318231, 48.8290970 2.2993460, 48.8296899 2.2967192, 48.8300150 2.2961350, 48.8325027 2.2889045, 48.8366313 2.2763322, 48.8431275 2.2603574, 48.8451702 2.3983100, 48.8475546 2.3889290, 48.8478588 2.3908091, 48.8482240 2.3808030, 48.8482720 2.3787290, 48.8490260 2.3810470, 48.8492020 2.3781220, 48.8498208 2.3768806, 48.8499970 2.3791060, 48.8520364 2.3739698, 48.8540329 2.3736919, 48.8545885 2.3714719, 48.8546118 2.3729736, 48.8546280 2.3710930, 48.8550337 2.3704743, 48.8574091 2.3612872, 48.8577110 2.3608910, 48.8618100 2.3539090, 48.8627772 2.3535227, 48.8646021 2.3531390, 48.8700440 2.3507020, 48.8726232 2.2763923, 48.8737450 2.3479740, 48.8738400 2.3446450, 48.8761660 2.3441530, 48.8791390 2.3535520, 48.8798180 2.3528100, 48.8820870 2.3509300, 48.8861322 2.3494762, 48.8866800 2.3495020, 48.8876420 2.3494764, 48.8878870 2.3494964, 48.8906598 2.3495186, 48.8909454 2.3495172, 48.8989647 2.3237481, 48.8715019 2.4045081, 48.8762240 2.4062991, 48.8763811 2.4061703, 48.8769447 2.4050363, 48.8776734 2.4065084, 48.8779210 2.4059297, 48.8781032 2.4108393, 48.8782650 2.4058287, 48.8657823 2.3994721, 48.8572967 2.3515291, 48.8522308 2.3678097, 48.8242892 2.3764902, 48.8243395 2.3766423, 48.8259590 2.3538780, 48.8333535 2.3991671, 48.8378748 2.3573539, 48.8367172 2.3580385, 48.8370906 2.3578084, 48.8469222 2.3993098, 48.8490463 2.3989425, 48.8563665 2.3939744, 48.8572552 2.3854799, 48.8572776 2.3855905, 48.8576754 2.3919847, 48.8594350 2.3870127, 48.8722210 2.3643307, 48.8261039 2.3582769, 48.8468249 2.4104107, 48.8468448 2.4101919, 48.8468528 2.4101033, 48.8471654 2.4071583, 48.8472069 2.4066764, 48.8513516 2.4062448, 48.8517143 2.4071448, 48.8664981 2.3243419, 48.8941417 2.3326946, 48.8715688 2.4022351, 48.8949489 2.3601209, 48.8911550 2.3633069, 48.8394801 2.3713759, 48.8391251 2.3715959, 48.8378949 2.3555704, 48.8240305 2.3234209, 48.8275253 2.3261423, 48.8295090 2.3482501, 48.8296744 2.3329116, 48.8296889 2.3480032, 48.8300287 2.3471023, 48.8306286 2.3439710, 48.8307741 2.3363033, 48.8309276 2.3553044, 48.8309560 2.3563203, 48.8313659 2.3419868, 48.8314521 2.3413377, 48.8337067 2.3652426, 48.8343505 2.3671081, 48.8349875 2.3690185, 48.8369558 2.3731388, 48.8372547 2.3741922, 48.8389808 2.3876834, 48.8400503 2.3966865, 48.8405435 2.3976638, 48.8419125 2.3931180, 48.8425378 2.3971712, 48.8431508 2.3868501, 48.8438225 2.3907961, 48.8438547 2.3884184, 48.8441353 2.3903995, 48.8448504 2.3956453, 48.8449655 2.3825373, 48.8450610 2.3817030, 48.8455335 2.4059659, 48.8457371 2.3744755, 48.8458882 2.3745674, 48.8460421 2.3746885, 48.8461407 2.3758102, 48.8461570 2.3756299, 48.8462020 2.3762720, 48.8463517 2.4060121, 48.8463588 2.3819651, 48.8469945 2.3695400, 48.8469983 2.3840650, 48.8470022 2.3692654, 48.8485165 2.3710817, 48.8493154 2.3681094, 48.8494375 2.3698324, 48.8497678 2.3690872, 48.8499439 2.3739778, 48.8502341 2.3736347, 48.8502976 2.3687576, 48.8538513 2.4054931, 48.8636158 2.3993948, 48.8639863 2.3992574, 48.8652421 2.3951007, 48.8655085 2.3946733, 48.8677329 2.3907031, 48.8684805 2.3898741, 48.8688786 2.3895491, 48.8702670 2.3890490, 48.8704853 2.3883060, 48.8714250 2.3861474, 48.8717558 2.3890342, 48.8994665 2.3362669, 48.9005443 2.3357066, 48.8320164 2.4039323, 48.8320207 2.4038132, 48.8341445 2.4013757, 48.8351942 2.4016328, 48.8372220 2.4037368, 48.8314328 2.3873778, 48.8317821 2.3857254, 48.8320640 2.3883288, 48.8350055 2.3874833, 48.8358666 2.3847168, 48.8373190 2.3826641, 48.8374528 2.3917533, 48.8380369 2.3818677, 48.8387612 2.3810831, 48.8388667 2.3937811, 48.8389421 2.3806421, 48.8394110 2.3802556, 48.8573040 2.3514977, 48.8614181 2.3533893, 48.8616790 2.3513642, 48.8617384 2.3511100, 48.8617679 2.3509583, 48.8619491 2.3505495, 48.8620204 2.3499051, 48.8620520 2.3497369, 48.8638474 2.3430292, 48.8643157 2.3474095, 48.8648065 2.3458024, 48.8810201 2.3499806, 48.8472316 2.4033307, 48.8474060 2.3985801, 48.8475134 2.3982539, 48.8476893 2.3944332, 48.8480152 2.3982806, 48.8523912 2.3718273, 48.8678628 2.3622500, 48.8682145 2.3624441, 48.8753496 2.3569996, 48.8757151 2.3564916, 48.8759340 2.3562965, 48.8763508 2.3558909, 48.8769505 2.3553665, 48.8776793 2.3547127, 48.8779306 2.3546949, 48.8779709 2.3544608, 48.8789523 2.3541157, 48.8798131 2.3564484, 48.8287082 2.3506786, 48.8297015 2.3756891, 48.8297318 2.3756639, 48.8302556 2.3763483, 48.8302884 2.3764082, 48.8303257 2.3764732, 48.8554738 2.3844934, 48.8558003 2.3750398, 48.8563070 2.3766560, 48.8563443 2.3735148, 48.8563892 2.3736140, 48.8573040 2.3791655, 48.8575988 2.3723727, 48.8580871 2.3720646, 48.8599833 2.3751511, 48.8606643 2.3672378, 48.8612261 2.3646636, 48.8612423 2.3694822, 48.8615175 2.3633665, 48.8620657 2.3606971, 48.8625682 2.3596478, 48.8658847 2.3446913, 48.8659713 2.3446586, 48.8669646 2.3445039, 48.8486198 2.2907379, 48.8241171 2.3356096, 48.8251709 2.3747800, 48.8262226 2.3733016, 48.8265738 2.3354498, 48.8270035 2.3668285, 48.8275458 2.3738970, 48.8276171 2.3715500, 48.8279688 2.3733478, 48.8280437 2.3734448, 48.8303701 2.3343029, 48.8324259 2.3797103, 48.8328426 2.3359068, 48.8348268 2.3999659, 48.8363410 2.4027533, 48.8363547 2.4029753, 48.8367250 2.4043293, 48.8367567 2.3928042, 48.8375039 2.3386695, 48.8380611 2.4053828, 48.8381721 2.4055291, 48.8420689 2.3415277, 48.8298782 2.3572786, 48.8517163 2.4061866, 48.8523080 2.4042254, 48.8534161 2.4030439, 48.8310093 2.3571815, 48.8268348 2.3665087, 48.8272788 2.3567770, 48.8278792 2.3659999, 48.8282237 2.3563309, 48.8285149 2.3563221, 48.8291592 2.3654668, 48.8296502 2.3647788, 48.8268291 2.3641616, 48.8522322 2.3898977, 48.8524976 2.3895606, 48.8539546 2.3825521, 48.8544392 2.3816128, 48.8569327 2.3799755, 48.8585657 2.3781777, 48.8633818 2.3710966, 48.8671029 2.3655043, 48.8683370 2.3634922, 48.8699682 2.3607540, 48.8706171 2.3596295, 48.8708012 2.3598095, 48.8712575 2.3602178, 48.8713074 2.3601361, 48.8718731 2.3599327, 48.8724770 2.3594063, 48.8730997 2.3588306, 48.8734420 2.3585204, 48.8742775 2.3577777, 48.8785606 2.3557407, 48.8481543 2.3934076, 48.8542868 2.3877696, 48.8569986 2.3852716, 48.8575346 2.3847601, 48.8580303 2.3809765, 48.8581695 2.3807581, 48.8583918 2.3804386, 48.8608624 2.3805635, 48.8611746 2.3809999, 48.8452169 2.4120881, 48.8461924 2.4121067, 48.8466376 2.4114577, 48.8473580 2.4106924, 48.8473835 2.4103563, 48.8524722 2.4106454, 48.8526979 2.4111873, 48.8557704 2.4107086, 48.8574629 2.4101809, 48.8581256 2.4099841, 48.8587706 2.4100076, 48.8592004 2.4098008, 48.8608587 2.4094863, 48.8649243 2.4085167, 48.8651848 2.4086243, 48.8669825 2.4087455, 48.8681301 2.4072046, 48.8708037 2.4048775, 48.8748416 2.4030830, 48.8800875 2.3982376, 48.8801636 2.3979290, 48.8822748 2.3961932, 48.8897519 2.3898235, 48.8897859 2.3901176, 48.8900562 2.3906182, 48.8908981 2.3898028, 48.8924246 2.3879304, 48.8928662 2.3878039, 48.8931913 2.3928220, 48.8332843 2.3172595, 48.8257570 2.3480755, 48.8257663 2.3482098, 48.8276817 2.3715635, 48.8277542 2.3314326, 48.8277569 2.3294975, 48.8325094 2.3123346, 48.8338839 2.3082929, 48.8340082 2.3078231, 48.8347282 2.3054035, 48.8361022 2.3004952, 48.8362679 2.2934700, 48.8376932 2.4037117, 48.8397308 2.3978085, 48.8420906 2.3894385, 48.8425267 2.3896625, 48.8445646 2.3180923, 48.8470920 2.3268174, 48.8521103 2.3659956, 48.8555817 2.3636375, 48.8592929 2.3562507, 48.8596838 2.3565776, 48.8618200 2.3569043, 48.8746673 2.3308647, 48.8735099 2.3310689, 48.8323649 2.4042508, 48.8319766 2.3145168, 48.8325060 2.3158066, 48.8334834 2.3173462, 48.8338586 2.3183718, 48.8340668 2.3182365, 48.8341266 2.3177915, 48.8347650 2.3425150, 48.8349068 2.3452703, 48.8350373 2.3453379, 48.8350577 2.3457523, 48.8350801 2.3462140, 48.8361574 2.3222159, 48.8383431 2.2893686, 48.8389031 2.3587665, 48.8392803 2.3599626, 48.8394354 2.3604664, 48.8442862 2.2943443, 48.8444182 2.2937030, 48.8469994 2.2956834, 48.8472148 2.3034083, 48.8527070 2.3336447, 48.8228812 2.3586455, 48.8250947 2.3203976, 48.8266929 2.3240664, 48.8276403 2.3263672, 48.8366568 2.3904615, 48.8377732 2.2978996, 48.8390555 2.3541961, 48.8391729 2.3879459, 48.8393615 2.3547196, 48.8394955 2.3009500, 48.8395273 2.3563297, 48.8403152 2.3627036, 48.8403371 2.3598998, 48.8403767 2.3612985, 48.8421501 2.3099414, 48.8431512 2.3481982, 48.8442099 2.3456920, 48.8451757 2.3455730, 48.8457102 2.3460054, 48.8488355 2.3252187, 48.8506988 2.3354533, 48.8254520 2.3540117, 48.8320288 2.2933775, 48.8330901 2.2875209, 48.8338287 2.2951996, 48.8352845 2.3006101, 48.8353138 2.3004808, 48.8355333 2.3008990, 48.8375206 2.3108341, 48.8377213 2.3092594, 48.8380900 2.3040826, 48.8383431 2.3045795, 48.8384042 2.3046605, 48.8386443 2.3051222, 48.8396738 2.3028038, 48.8403607 2.4028757, 48.8406684 2.3153202, 48.8409914 2.3133930, 48.8414293 2.3136925, 48.8419801 2.3147584, 48.8471459 2.3017502, 48.8529188 2.3087416, 48.8560088 2.3152292, 48.8584188 2.3146004, 48.8664898 2.3645091, 48.8669961 2.3635905, 48.8670152 2.3630804, 48.8670361 2.3631640, 48.8674351 2.3629732, 48.8679849 2.3651178, 48.8686416 2.3633147, 48.8686663 2.3632144, 48.8488706 2.4054308, 48.8489816 2.4056570, 48.8494687 2.4051936, 48.8600707 2.3247081, 48.8297590 2.3779170, 48.8250371 2.3884441, 48.8275044 2.3763133, 48.8295479 2.3793241, 48.8312982 2.3805156, 48.8535184 2.3767685, 48.8567309 2.3731009, 48.8567919 2.3727131, 48.8596630 2.4036667, 48.8597113 2.4032404, 48.8672556 2.3729520, 48.8678310 2.3962785, 48.8712975 2.3932942, 48.8736717 2.3893707, 48.8752326 2.3699504, 48.8785201 2.3757987, 48.8785987 2.3756111, 48.8839930 2.3680663, 48.8841702 2.3653361, 48.8809813 2.3738144, 48.8813033 2.3729918, 48.8330219 2.3641260, 48.8337653 2.3094048, 48.8342723 2.3283804, 48.8354533 2.3258265, 48.8357486 2.3110952, 48.8366678 2.3127785, 48.8368862 2.3126418, 48.8408789 2.3214931, 48.8475924 2.3949477, 48.8480651 2.3944560, 48.8484606 2.3943801, 48.8489226 2.3946004, 48.8530598 2.3535567, 48.8552774 2.3345202, 48.8555651 2.3608523, 48.8570886 2.3297266, 48.8585185 2.3298224, 48.8586963 2.3287531, 48.8761034 2.3355444, 48.8762920 2.3325923, 48.8217293 2.3329753, 48.8342289 2.3218797, 48.8343205 2.2844154, 48.8348748 2.2829273, 48.8355558 2.2807022, 48.8360155 2.2791843, 48.8366129 2.3508583, 48.8372702 2.3535459, 48.8379882 2.3433930, 48.8382061 2.3565243, 48.8385318 2.3366177, 48.8396083 2.3376405, 48.8411746 2.3066119, 48.8412714 2.3397958, 48.8414201 2.3390745, 48.8452811 2.3694044, 48.8246139 2.3297884, 48.8248448 2.3309724, 48.8248677 2.3167742, 48.8249619 2.3287697, 48.8249980 2.3313844, 48.8257400 2.3120275, 48.8259545 2.3126700, 48.8260495 2.3309436, 48.8285948 2.3330627, 48.8290174 2.3328655, 48.8326036 2.3623992, 48.8334174 2.3642162, 48.8359245 2.3856627, 48.8401447 2.3704675, 48.8403742 2.3701490, 48.8409627 2.3362290, 48.8415305 2.3538584, 48.8419422 2.3357262, 48.8430208 2.3525662, 48.8432035 2.3315463, 48.8441253 2.3305131, 48.8452074 2.3522138, 48.8467725 2.3266058, 48.8484788 2.3326047, 48.8493788 2.3389951, 48.8500333 2.3399942, 48.8445302 2.3291617, 48.8496464 2.3378520, 48.8462036 2.2991334, 48.8466880 2.3668924, 48.8504922 2.3892597, 48.8506002 2.3865799, 48.8508572 2.3411144, 48.8515666 2.3400541, 48.8517508 2.3398717, 48.8521001 2.3863956, 48.8528464 2.3842636, 48.8529129 2.3851769, 48.8532221 2.3833883, 48.8545205 2.3824395, 48.8560866 2.3825736, 48.8610854 2.3101169, 48.8742389 2.3553630, 48.8744853 2.3555219, 48.8767135 2.3539984, 48.8767602 2.3536655, 48.8773020 2.3497131, 48.8780538 2.3450154, 48.8222079 2.3512623, 48.8221465 2.3506206, 48.8403122 2.2839206, 48.8421802 2.2856456, 48.8446133 2.2871390, 48.8459908 2.2882261, 48.8465650 2.3875568, 48.8481839 2.2902622, 48.8868930 2.3555588, 48.8332913 2.3012392, 48.8319028 2.3045724, 48.8763704 2.3313223, 48.8813097 2.3805063, 48.8407025 2.2998297, 48.8408105 2.3005583, 48.8428691 2.2953585, 48.8691839 2.3358994, 48.8419850 2.2935384, 48.8420971 2.3007593, 48.8432807 2.3001298, 48.8435688 2.2937775, 48.8452755 2.2974744, 48.8469016 2.2922005, 48.8469813 2.2932207, 48.8470332 2.2925959, 48.8471729 2.2924922, 48.8481405 2.2934613, 48.8488766 2.3550116, 48.8489122 2.3193174, 48.8489272 2.3523931, 48.8491216 2.3136783, 48.8491775 2.3141515, 48.8492908 2.3146445, 48.8493554 2.3527922, 48.8499990 2.3166689, 48.8508919 2.2958074, 48.8511850 2.2966292, 48.8454208 2.2917026, 48.8473674 2.2962615, 48.8475073 2.2831429, 48.8477824 2.2824011, 48.8682969 2.3657074, 48.8685578 2.3665766, 48.8351811 2.4063529, 48.8389376 2.2789040, 48.8416959 2.2795090, 48.8450469 2.2801242, 48.8454304 2.2845227, 48.8459998 2.2813073, 48.8462807 2.2851535, 48.8894150 2.3628554, 48.8850120 2.3563702, 48.8762217 2.3586964, 48.8433449 2.3251164, 48.8550540 2.3941000, 48.8560955 2.3926896, 48.8578050 2.3996283, 48.8582358 2.3823367, 48.8586186 2.3835107, 48.8592411 2.3830225, 48.8601008 2.3822123, 48.8626812 2.3797075, 48.8630453 2.3672473, 48.8633485 2.3671490, 48.8634092 2.3790356, 48.8644595 2.3839203, 48.8648530 2.3666639, 48.8657480 2.3705095, 48.8680948 2.3655417, 48.8682070 2.3654610, 48.8687325 2.3631261, 48.8740998 2.3453668, 48.8903381 2.3486643, 48.8905361 2.3482493, 48.8481499 2.3941327, 48.8277079 2.3495286, 48.8314922 2.3442625, 48.8320979 2.3443846, 48.8367757 2.3452596, 48.8548426 2.3031870, 48.8548827 2.3032421, 48.8567726 2.3001849, 48.8568344 2.3001716, 48.8569127 2.2999765, 48.8577877 2.3006194, 48.8596013 2.3072329, 48.8600760 2.3280535, 48.8612403 2.3243984, 48.8615577 2.3576761, 48.8617439 2.2982592, 48.8626940 2.3099487, 48.8627569 2.3393126, 48.8629258 2.3030795, 48.8629949 2.3080187, 48.8630650 2.3165032, 48.8635613 2.3394544, 48.8265121 2.3465625, 48.8321818 2.3392750, 48.8508705 2.3623119, 48.8512015 2.3822530, 48.8514794 2.3101353, 48.8540997 2.3239460, 48.8541902 2.3194979, 48.8550561 2.3402771, 48.8600928 2.3731117, 48.8535790 2.3638481, 48.8571030 2.3539440, 48.8571580 2.2667766, 48.8573414 2.3540716, 48.8574462 2.3575428, 48.8584854 2.2792832, 48.8597267 2.2821320, 48.8630086 2.3362399, 48.8631579 2.3415886, 48.8632373 2.3412593, 48.8653506 2.3423662, 48.8670831 2.3356438, 48.8682396 2.2933172, 48.8697732 2.2938530, 48.8744871 2.3117910, 48.8747123 2.3133715, 48.8747243 2.3027090, 48.8759626 2.2965087, 48.8308265 2.3530126, 48.8359247 2.2814968, 48.8381961 2.2812162, 48.8466206 2.4134552, 48.8530692 2.4125589, 48.8569190 2.4110486, 48.8647596 2.4089845, 48.8671280 2.4091658, 48.8673068 2.4087318, 48.8678522 2.4092408, 48.8718692 2.4084946, 48.8729156 2.4089018, 48.8730227 2.4088436, 48.8774817 2.4062578, 48.8799062 2.4010873, 48.8808314 2.4005187, 48.8827476 2.3997867, 48.8837604 2.3973570, 48.8853759 2.3967693, 48.8891501 2.3919739, 48.8921011 2.3883839, 48.8939074 2.3869648, 48.8950741 2.3853043, 48.8965893 2.3846935, 48.8974790 2.3852300, 48.8355408 2.3093378, 48.8413240 2.2886217, 48.8592270 2.3236594, 48.8624657 2.3115669, 48.8779515 2.3440896, 48.8380661 2.2876899, 48.8454913 2.3116790, 48.8455110 2.3111536, 48.8669202 2.3834926, 48.8689269 2.3715327, 48.8759321 2.3727655, 48.8984073 2.3709403, 48.8526033 2.3136415, 48.8357816 2.3023056, 48.8363872 2.3030756, 48.8365194 2.3011778, 48.8368720 2.3025022, 48.8369553 2.3024373, 48.8370310 2.3025696, 48.8388883 2.3004061, 48.8489669 2.2876751, 48.8689288 2.3715403, 48.8402950 2.3002166, 48.8404916 2.2780605, 48.8424961 2.3064436, 48.8433477 2.2798969, 48.8440160 2.3238242, 48.8471428 2.2860305, 48.8474003 2.2951465, 48.8480350 2.2869182, 48.8490968 2.2877519, 48.8249781 2.3039567, 48.8257243 2.3052770, 48.8265928 2.3048244, 48.8213106 2.3411460, 48.8239590 2.3308277, 48.8239711 2.3514442, 48.8239998 2.3510117, 48.8241733 2.3533935, 48.8244865 2.3278048, 48.8245804 2.3396886, 48.8246044 2.3382584, 48.8248799 2.3536513, 48.8256032 2.3217938, 48.8260622 2.3105582, 48.8266135 2.3534752, 48.8269262 2.3513163, 48.8281250 2.3216386, 48.8281819 2.3155262, 48.8289185 2.3222763, 48.8296026 2.3178273, 48.8322116 2.2883420, 48.8324706 2.3133021, 48.8329583 2.2774040, 48.8330016 2.2770756, 48.8330898 2.2768283, 48.8331174 2.2765291, 48.8333400 2.3145004, 48.8337099 2.3148700, 48.8337885 2.3608913, 48.8356331 2.4060202, 48.8360628 2.4058718, 48.8367584 2.3566102, 48.8368296 2.3568351, 48.8459364 2.3679712, 48.8488033 2.3687487, 48.8384611 2.3605477, 48.8671353 2.3480000, 48.8938413 2.3472931, 48.8942404 2.3460471, 48.8942255 2.3458385, 48.8466055 2.3466048, 48.8934234 2.3381216, 48.8929811 2.3381482, 48.8839216 2.3271785, 48.8839775 2.3271608, 48.8839670 2.3273081, 48.8841275 2.3270884, 48.8845343 2.3268965, 48.8846683 2.3268418, 48.8855156 2.3264429, 48.8862771 2.3262148, 48.8861526 2.3261584, 48.8865223 2.3259623, 48.8869014 2.3259253, 48.8871792 2.3257982, 48.8875030 2.3256728, 48.8874194 2.3255802, 48.8189427 2.3623110, 48.8193375 2.3442401, 48.8193930 2.3452226, 48.8200280 2.3394747, 48.8202391 2.3395613, 48.8205079 2.3556087, 48.8205508 2.3372668, 48.8205989 2.3495983, 48.8211121 2.3347051, 48.8215967 2.3323735, 48.8292229 2.3255814, 48.8292882 2.2971394, 48.8313803 2.3349575, 48.8316633 2.3221401, 48.8325886 2.3203616, 48.8357379 2.3250590, 48.8369802 2.2739149, 48.8386159 2.3222156, 48.8344865 2.4691570, 48.8357568 2.3008708, 48.8360131 2.3100586, 48.8369650 2.3090961, 48.8375624 2.3080571, 48.8385808 2.3067130, 48.8395895 2.3092578, 48.8714897 2.3427273, 48.8205058 2.3593321, 48.8505602 2.3001391, 48.8427552 2.2924068, 48.8434280 2.2929776, 48.8518541 2.2999378, 48.8526008 2.2998174, 48.8526618 2.2999032, 48.8560465 2.2944608, 48.8561074 2.2945466, 48.8566822 2.2923833, 48.8568355 2.2938443, 48.8582848 2.3558481, 48.8595125 2.3524319, 48.8608732 2.2962429, 48.8610323 2.2965408, 48.8613476 2.2971959, 48.8630993 2.3180109, 48.8348722 2.4086899, 48.8358883 2.4089442, 48.8360619 2.4087881, 48.8425612 2.3139626, 48.8475557 2.4085227, 48.8415102 2.4131166, 48.8416826 2.4130896, 48.8319771 2.3979134, 48.8323454 2.3551969, 48.8974525 2.3959552, 48.8678050 2.3496900, 48.8681841 2.3484645, 48.8682787 2.3487909, 48.8685115 2.3495915, 48.8690548 2.3514051, 48.8293654 2.3598900, 48.8312517 2.3580440, 48.8225167 2.3571540, 48.8897765 2.3719886, 48.8437894 2.2772811, 48.8441585 2.2771994, 48.8485264 2.2810711, 48.8487304 2.2813632, 48.8489564 2.2816880, 48.8512111 2.3987159, 48.8512690 2.4044346, 48.8514506 2.4058799, 48.8514709 2.3995095, 48.8515803 2.4001141, 48.8543196 2.3962849, 48.8568402 2.4046511, 48.8580682 2.3877975, 48.8600706 2.3886064, 48.8604792 2.4008059, 48.8611195 2.3880530, 48.8631905 2.3883955, 48.8650677 2.3956244, 48.8651291 2.3943708, 48.8654133 2.3895489, 48.8660045 2.3873365, 48.8662887 2.3905433, 48.8682334 2.3864308, 48.8686568 2.3866090, 48.8690384 2.3861855, 48.8704416 2.3841005, 48.8704583 2.3841770, 48.8726164 2.3842276, 48.8734281 2.3825503, 48.8735409 2.3833038, 48.8274961 2.3770388, 48.8883372 2.3743635, 48.8966561 2.3798725, 48.8301525 2.3594415, 48.8465069 2.4099879, 48.8757435 2.3262717, 48.8836814 2.3499178, 48.8201088 2.3481923, 48.8201319 2.3478823, 48.8202012 2.3481361, 48.8205445 2.3494030, 48.8233285 2.3741842, 48.8217463 2.3258742, 48.8219887 2.3306289, 48.8349501 2.4072247, 48.8351659 2.4069054, 48.8708394 2.3465254, 48.8736212 2.2769315, 48.8816472 2.3154087, 48.8824542 2.2862966, 48.8837737 2.2909262, 48.8843309 2.2884576, 48.8853037 2.2956381, 48.8892808 2.2928055, 48.8346342 2.3606245, 48.8550678 2.3246859, 48.8843190 2.3697260, 48.8849215 2.3709154, 48.8871420 2.3755550, 48.8488878 2.4063145, 48.8826421 2.3444926, 48.8618141 2.3222918, 48.8649047 2.3105605, 48.8649598 2.3105563, 48.8707207 2.3458677, 48.8710108 2.3455226, 48.8748858 2.3191940, 48.8814710 2.3009002, 48.8836868 2.2986830, 48.8845223 2.3081683, 48.8848975 2.3067652, 48.8871423 2.3009349, 48.8873797 2.3010160, 48.8688331 2.3251265, 48.8871184 2.2983257, 48.8887957 2.2976069, 48.8833935 2.3195861, 48.8845689 2.3194756, 48.8847283 2.3200247, 48.8848321 2.3192257, 48.8854073 2.2987197, 48.8862629 2.3178705, 48.8862908 2.3178312, 48.8874366 2.3136254, 48.8418848 2.2853423, 48.8507831 2.3944957, 48.8518835 2.3934531, 48.8520017 2.3935558, 48.8523499 2.3931181, 48.8617792 2.3745107, 48.8622369 2.3739210, 48.8623819 2.3639950, 48.8740920 2.3388296, 48.8754273 2.3247309, 48.8394875 2.2840062, 48.8397475 2.2846463, 48.8427503 2.2863046, 48.8468131 2.2904315, 48.8500437 2.3954755, 48.8391079 2.3390778, 48.8422773 2.3762540, 48.8391187 2.4008037, 48.8397181 2.4041355, 48.8423773 2.3977129, 48.8432024 2.3913685, 48.8449650 2.3837024, 48.8526582 2.2904698, 48.8577122 2.2791705, 48.8581675 2.2754001, 48.8516727 2.3995074, 48.8317848 2.3580564, 48.8331084 2.3230703, 48.8629913 2.4001471, 48.8332462 2.4027150, 48.8422716 2.3666416, 48.8425115 2.3664241, 48.8425602 2.3663854, 48.8432847 2.3745921, 48.8611021 2.3537247, 48.8459524 2.3314941, 48.8467856 2.2815796, 48.8473038 2.3299657, 48.8822077 2.3636469, 48.8822937 2.3628730, 48.8826834 2.3615248, 48.8842662 2.3384857, 48.8843570 2.3383511, 48.8843580 2.3554674, 48.8855628 2.3868905, 48.8973410 2.3866230, 48.8480167 2.2901082, 48.8654197 2.3615883, 48.8659969 2.3276111, 48.8453920 2.3132117, 48.8602828 2.3469501, 48.8771319 2.3510066, 48.8431362 2.3363642, 48.8778732 2.3448763 +yes ++33 (0) 144680816 +1.921881365326831 +49.4075160 8.6918700 +yes +yes +10 +1 +http://www.crafters-barn.co.uk/ +264 +yes +50.0728540 8.2223309, 50.1427837 8.8829934, 49.4538388 7.5818814, 49.4465012 7.5754817, 49.4499742 7.5668379, 49.0428181 8.6889683 +Musée de l'Armée, Musée de l'Assistance Publique Hôpitaux de Paris and 01.40.27.50.05, Musée des Arts Décoratifs - Musée de la Publicité and 01.44.55.57.50, Musée national des Arts et Métiers and +33 (0)1 53 01 82 00, Tour de Jean-sans-Peur, Musée Gustave Moreau and 01.48.74.38.50, Les Égouts de Paris and 01.53.68.27.81, Musée Pasteur and 01.45.68.82.83, Espace Dali and 01.42.64.40.10, Musée de la carte à Jouer, Musée en Herbe and 01.40.67.97.66, Maison Européenne de la Photographie and +33 1 44 78 75 00, Musée de l'Eventail and 01.42.08.90.20, Musée de la Poupée and 01.44.54.04.48, Catacombes de Paris and +33 1 43224763, Musée de l'Erotisme and 01.42.58.28.73, Musée des années 30, Musée du Petit Palais and 01.53.43.40.00, Musée de la Légion d'Honneur et des Ordres de Chevalerie and 01.40.62.84.25, Conciergerie, Musée du Vin and 01.45.25.63.26, Musée de la Poste and +33 1 42 79 24 24, galerie-musée Baccarat and +33 1 40 22 11 00, Salle des collections, Musée du Service de Santé des Armées, Choco-Story - Le musée gourmand du chocolat and 00.33.(0)1.42.29.68.60, Musée-Jardin Paul Landowski, Cité de l'architecture et du patrimoine and 01.58.51.52.00, Musée de la Marine and +33 (0)1 53 65 69 69, +33 (0)1 53 65 69 53, Musée de la franc-maçonnerie and 01.45.23.74.09, Espace des Sciences Pierre-Gilles de Gennes, Deyrolle, Fondation Le Corbusier and 01.42.88.41.53, Musée de la Contrefaçon and +33 1 56 26 14 03, Musée Dapper and 01.45.00.91.75, Musée Adzak - Espace d'Art International and 01.45.43.06.98, Musée d'Anatomie Delmas-Orfila-Rouvière and 01.42.86.20.47, Musée Arménien de France, Musée Boleslas Biegas - Musée Adam Mickiewicz and 01.43.54.35.61, Musée Bible et Terre Sainte and 01.45.44.09.55, Musée Bouilhet-Christofle - Musée d'Orfèvrerie and 01.49.22.41.15, Musée Clemenceau and 01.45.20.53.41, Musée-Librairie du Compagnonnage and 01.43.26.25.03, Musée d'Anatomie Pathologique Dupuytren and 01.42.34.68.60, Musée Valentin Haüy, Musée Henner and 01.47.63.42.73, Musée d'histoire de la Médecine, Musée Maillol and 01.42.22.59.58, Musée des Lettres et Manuscrits and +33 1 42 22 48 48, Musée du Montparnasse and +33 1 42229196, Musée de Minéralogie and 01.40.51.92.90, Musée Moissan, Crypte Archéologique du Parvis Notre-Dame and 01.55.42.50.10, Bibliothèque-Musée de l'Opéra and 01.53.79.37.47, Musée Pierre Marly - Lunettes et Lorgnettes, Musée de la Préfecture de Police and 01.44.41.52.50, Centre Culturel Suisse, Tour de la Cathédrale and 01.53.10.07.00, Maison de la Pêche et de la Nature, Le trésor de Notre-Dame de Paris, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin and 01.40.64.39.44, Musée national d'art moderne, Maxim's Art Nouveau "Collection 1900" and 01.42.65.30.47, Collection des minéraux - Jussieu, Fondation Henri Cartier-Bresson and +33156802700, Galerie Royale, Académie de la Magie, Musée du Barreau and +33 1 44 32 47 48, Katakomben von Paris, Institut des Lettres et Manuscrits, Musée du quai Branly and 01.56.61.70.00, Galerie de Minéralogie et de Géologie and 01.40.79.54.79, Institut du Monde Arabe and 01.40.51.38.38, Jardin Tino Rossi - Musée de la Sculpture en Plein Air, Halle Saint-Pierre and 01.42.58.72.89, Hôtel de Sully, Jeu de Paume and +33 1 47031250, Musée de l'Orangerie and 01.44.50.43.00, Atelier Brancusi, Futur Fondation Galeries Lafayette, Musée Curie and 01.56.24.55.33, Grand Palais, Pavillon de l'Arsenal and 01.42.76.33.97, 01.42.76.26.32, Musée National du Moyen Âge and 01.53.73.78.13, Musée d'Art et d'Histoire du Judaïsme and 01.53.01.86.53, Archives Nationales and 01.40.27.60.96, Musée de la Serrure, Musée Picasso and 01.85.56.00.36, Musée Cognacq-Jay and 01.40.27.07.21, Musée national Eugène Delacroix and 01.44.41.86.50, Orangerie du Sénat, Musée d'Orsay, Musée national Ernest-Hébert, Institut Néerlandais and 01.53.59.12.40, Immeuble Molitor, Pinacothèque de Paris and 01.42.68.02.01, Musée Nissim de Camondo and 01.44.55.57.50, Musée Cernuschi and 01.53.96.21.50, Musée Rodin and 01.44.18.61.10, Musée Jacquemart-André and 01.45.42.11.59, Musée De Dion-Bouton, Musée Renault and 01.46.05.21.58, Pavillon de Vendôme and 01 .47 .15 .31 .05, Musée Paul-Belmondo, Fondation Pierre Bergé Yves Saint-Laurent, Musée d'Art Moderne de la Ville de Paris and 01.53.67.40.00, Palais de Tokyo and 01.47.23.54.01, Fondation Cartier and 01.42.18.56.50, Musée Guimet and 01.58.52.53.00, Maison Chana Orloff, Musée Bourdelle and 01.49.54.73.73, Musée d'Ennery and +33 1 45535796, Musée Roybet Fould, Musée Marmottan and 01.44.96.50.33, Grande Galerie de l'Évolution and 01.40.79.54.79, 01.40.79.56.01, Musée de la Vie Romantique and 01.55.31.95.67, Maison de Balzac and +33 1 55744180, Pavillon de l'eau and 01.42.24.54.02, Mémorial de la Shoah and +33 1 42 77 44 72, Maison de la Culture du Japon and 01.44.37.95 .01, Musée Zadkine and 01.55.42.77.20, Musée de Montmartre and 01.49.25.89.39, Musée de la chasse et de la nature and 01.53.01.92.40, Manufacture des Gobelins, Musée du Luxembourg and 01.40.13.62.00, Palais de la Découverte, Centre Culturel Suédois and 01.44.78.80.20, Musée de la magie, Fondation Louis Vuitton and 01.40.69.96.00, Hôtel des Monnaies, Musée Galliera and 01.56.52.86.00, Musée Carnavalet and 01.44.59.58.58, Le Louvre, Sainte-Chapelle and 01.53.40.60.80 +yes +52.5154199 13.4105362, 52.5190924 13.3555706, 52.5201452 13.4091755, 52.5101563 13.3900661, 52.3882604 13.5184385, 52.4592360 13.3138055, 52.5166244 13.3871483, 52.5190463 13.4025073, 52.5197220 13.4037775, 52.5199288 13.4041583, 52.5242445 13.3468542, 48.4940023 9.2123679 +19 and Rue des Petits Carreaux, 79-81 and Avenue du Général Leclerc, 24 and Rue de la Py, 112 and Avenue de Villiers, 105 and Avenue de Villiers, Boulevard Saint-Michel, 19 and Rue du Louvre, 21 and Rue du Louvre, 134 and Rue Réaumur, 34 and Boulevard de Sébastopol, 201 and Rue du Temple, 110 and Boulevard Saint-Germain, 158b and Rue du Temple, 108 and Boulevard Jourdan, 45 and Avenue de Versailles, 47 and Rue de Sèvres, 202, 45 and Avenue de Saxe, 190 and Avenue Daumesnil, 10 and Boulevard de Denain, 41 and Avenue Montaigne, 1 and Avenue Reille, 1 and Rue de l'Amiral Mouchez, 245 and Rue de Charenton, 20 and Rue de Harlay, 71 and Avenue du Docteur Arnold Netter, Boulevard Voltaire, 90 and Avenue du Général Leclerc, 119 and Boulevard Voltaire, 1 and Boulevard de Denain, 27, 6 and Place Lachambeaudie, 2 and Place de l'Opéra, 41  and Rue de l'Ambroisie, 370 and Rue de Vaugirard, 403 bis and Rue de Vaugirard, 376 and Rue de Vaugirard, 16 and Place de Clichy, 60 and Boulevard de Grenelle, 83, 86, 43 and Avenue Montaigne, 73 and Rue Saint-Lazare, 100 and Rue La Fayette, 1 and Place de la Porte de Vanves, 227 and Rue de Tolbiac, 67 and Boulevard Brune, 2 and Square Desnouettes, 163 and Boulevard Lefebvre, 17 and Rue Balard, 19 and Rue Cauchy, 67 and Rue de Bretagne, 76 and Avenue Émile Zola, 40b and Rue des Entrepreneurs, 2 and Place Charles Michels, 40 and Rue Lecourbe, 26 and Boulevard de Grenelle, 44 and Rue La Fayette, 121 and Rue Saint-Antoine, 16 and Place de la Madeleine, 79 and Rue du Commerce, 69 and Rue du Commerce +1.034897728230403 +Musée du quai Branly +3 +yes +Playfair Monument and 55.9548066 -3.1831153 +48.0169900 0.1529468, 48.1846137 0.6536841, 48.1857639 0.6528687, 48.1853805 0.6538558, 48.1877586 0.6535933, 47.6623642 -1.9999542, 47.5178122 -2.0364437, 47.5658346 -1.6168284, 47.8885629 -0.2360682, 47.6376411 -1.0473284, 47.7331874 -1.1600826, 47.9936287 0.1902660, 47.7547948 -1.0018843, 48.2195485 0.6367839, 47.5306968 -0.1184749, 47.6084592 -1.7444525, 48.0660784 -0.1560527, 48.2411687 -0.6198366, 48.4390727 -0.1176280, 48.1829382 -0.3020747, 48.3582544 -0.1919164, 47.4710760 -0.5444181, 48.0411951 -0.0567503, 48.0991378 0.7992432, 48.0238361 0.2048137 +49.4250839 8.6878203 +33.8661283 -78.5157683, 9.9190691 -84.1043455, 43.0682876 -89.4237330, 51.2202794 6.7668908, 40.5505038 -105.0588116, 52.3092512 10.5048372, 50.9299219 7.0410660, 37.8921647 -122.2875029, 45.4833460 -122.6973901, 34.8699075 -82.4217196, 37.8309388 -122.2534367, 45.4738904 -122.6944691, 45.4689193 -122.6998986, 36.5480751 136.6768741, 47.6348285 -122.3678767, 47.6352291 -122.3611254, 47.6354371 -122.3691588, 47.6360161 -122.3632067, 47.6360563 -122.3635408, 47.6380056 -122.3597605, 47.6397472 -122.3703871, 47.6423122 -122.3596549, 47.6433235 -122.3564015, 47.6590651 -122.3309314, 47.6627918 -122.3260786, 47.6331595 -122.3557352, 47.6332355 -122.3485177, 47.6340544 -122.3497776, 47.6356366 -122.3526532, 47.6390715 -122.3556740, 47.6394988 -122.3558193, 47.6398796 -122.3039421, 47.6312368 -122.3607318, 47.6780965 -122.3654225, 47.6791839 -122.2918082, 47.6812405 -122.3658989, 47.6848247 -122.3640519, 47.6851819 -122.3663810, 47.6875899 -122.3508686, 47.6877530 -122.3513310, 47.5759861 -122.3895807, 54.2931879 12.3312166, 37.3533651 -122.0192511, 45.4714889 -122.7085161, 45.4724924 -122.7139019, 47.6793976 -122.3151326, 45.4840253 -122.6919901, 37.3696542 -122.0610695, 47.6729304 -122.3822712, 45.4909900 -122.6808017, 48.4240865 -122.3041378, 43.0837020 -89.3630813, 45.4700947 -122.7140540, 24.1365487 120.6847372, 24.1364264 120.6848012, 47.6579151 -122.3398155, 47.7068039 -122.3136815, 40.5421826 -105.0926619, 40.5881599 -105.0859558, 40.5046766 -105.0763670, 40.5402661 -105.0568005, 40.5406510 -105.1197369, 40.5510115 -105.1281838, 40.5569822 -105.1058599, 40.5613313 -105.0603891, 40.5726317 -105.1313133, 40.5949375 -105.1149659, 47.6413320 -122.3607444, -23.3354177 -69.8454819, 45.5313084 -73.5663196, 45.5205527 -73.8548441, 45.4288519 -73.6386740, 45.4296620 -73.6332480, 45.4212210 -73.6364625, 45.4837011 -73.5767996, 45.4226913 -73.6480121, 45.4213471 -73.6294566, 45.4307218 -73.5944806, 45.5249930 -73.5847874, 45.5139656 -73.5567183, 45.5686581 -73.5986567, 45.5719684 -73.6275751, 45.4678555 -73.5487821, 45.5423101 -73.6239441, 45.5747645 -73.6836766, 45.5592809 -73.6772557, 45.5360011 -73.5699325, 45.6503675 -73.5775808, -39.0344407 -67.5389173, 14.1867832 -91.3053447, 45.5101571 -73.5508775, 45.5110669 -73.5671424, 45.5137509 -73.5557592, 45.5204867 -73.5510170, 45.5110188 -73.5513353, 45.5089717 -73.5591084, 45.5069198 -73.5576086, 29.7200281 -84.7499100, 45.4782620 -122.7246306, 47.6221801 -122.3318128, 44.4563636 -73.2139044, -26.5678201 -54.7664945, 45.4850463 -122.7281510, 18.4123975 -66.3301084, 41.0529923 -83.6503835, -38.5267065 -70.3695118, -38.5572170 -58.7389424, 45.4635749 -122.6942153, 45.4796245 -122.6927696, -31.4135921 -64.1702113, 25.0164685 121.4655036, -34.7660388 -61.8921789, 39.9321249 116.4497695, 45.4660951 -122.6841482, 52.3467781 71.8793420, 52.3542375 71.8926866, 47.6649352 -122.3525860, 39.9336949 116.4562033, 39.9223560 116.4383658, 45.4641198 -122.6551186, -32.9204327 -62.4553342, -33.1328801 -64.3340832, 6.1737085 -75.6426148, -33.3830869 -64.7217634, -30.8659791 -60.9690041, -38.9360383 -68.0870831, -53.7696740 -67.7252920, -53.7868740 -67.6992357, -33.1328654 -64.3341580, -41.0423082 -62.8264077, 42.9760109 -76.3362960, -31.5355176 -68.5392717, 46.5200190 -94.2886313, 46.5214433 -94.2893446, 44.9360154 -93.0945604, 9.9177824 -84.0870274, -2.8988040 -79.0041980, -16.4987475 -68.1969586, -16.4793644 -68.1758499, -16.5575197 -68.1929803, -16.5542797 -68.1951450, 20.0756399 -103.5491219, 37.7924005 126.9868878, 39.9556451 -75.1010119, 19.3082261 -100.1429360, 18.8790023 -71.7062418, 20.1448369 -101.1839145, -35.0538221 -58.7628395, 36.5848700 2.1246054, 46.2338815 -63.1267798, 46.2338299 -63.1267879, 46.2352679 -63.1238031, 46.2360703 -63.1303618, 47.6910046 -122.2939249, 32.7186227 51.5309889, 47.6221388 -122.3120812, -35.5154506 -58.3184979, -16.4817023 -68.2198025, 43.0708859 -89.4239939, 18.8987390 -96.9979693, 43.0711964 -89.4269965, 19.2098038 -98.7559652, 37.7651411 -122.4546866, 43.0652885 -89.4197511, 9.8464846 -84.3142159, 18.4769799 -69.8995354, -33.5702568 -70.6321304, 10.0794015 -69.1300939, -37.8011791 -73.4012679, 10.9785637 -74.7819280, 4.5950418 -74.3417260, 39.1023875 -94.5848408, 11.6884695 -84.4573671, 39.9321796 116.4391677, -41.0424203 -62.8265546, -11.0197418 -68.7583579, -37.4790155 -73.3416764, 9.1203661 -79.5544695, -16.4956960 -68.2136104, -16.4906771 -68.2092927, -16.4914322 -68.2348824, -16.5655774 -68.1934277, -16.5645488 -68.1949844, -16.5305833 -68.2056835, -16.5820863 -68.1876364, -16.5557693 -68.2234231, -13.0756386 -76.3868080, 18.8790429 -71.7062606, 7.6419550 -72.2789029, 9.6534798 -83.9702206 +209 +L'Atelier SFR, The Phone House, The Phone House, espace SFR, Al Madina, Orange, Espace SFR, Orange, SFR, Yilpa Telecom, Orange, The Phone House, The phone house, Stop Phone, Kremlin Phone, Allo Phone, Phone House, Orange, Vivre Mobile, Argana, Riquet Phone, Numéricable, Allo La Place, Phone House, Comtel, Riquet Phone, Torcy House, Orange, SFR, SFR, Bouygues, Orange, SFR, Docteur iPhone, France 4G Télécom, Orange, Bouygues Telecom, SFR, Bouygues Telecom, Orange, Orange, Satelex Services, Bouygues Telecom, Orange, Orange, espace SFR, S.P.S., Mobil S, Orange, Bouygues Telecom, Numericable, Free Center, Rubinya, Orange +55.9466868 -3.1916914, 55.9536185 -3.1862787, 55.9534683 -3.1859868, 55.9533184 -3.1857689, 55.9535165 -3.1863169, 55.9536601 -3.1865378, 55.9534244 -3.1861994 +75 +15 +yes +yes +46.6167350 -1.8692222, 47.4157721 -1.8539595, 47.6623642 -1.9999542, 47.5178122 -2.0364437, 47.2053637 -2.0487648, 46.6646452 -1.7570749, 46.6625119 -1.7637588, 46.4072147 -1.4060013, 47.5658346 -1.6168284, 47.6376411 -1.0473284, 47.7331874 -1.1600826, 47.1117065 -2.1078804, 47.0386966 -1.6404113, 47.7547948 -1.0018843, 47.1027718 -1.1206474, 47.1002886 -1.1228630, 47.2606386 -1.5123732, 47.2757188 -2.4265544, 46.7916310 -2.0633590, 47.6084592 -1.7444525, 46.5333900 -1.7720741, 47.3427522 -2.4270051, 46.5890791 -1.1245053, 46.5894219 -1.1237864, 47.0319246 -1.0921844, 46.8367326 -0.8835602, 46.4906189 -1.7944913, 46.7700629 -1.5054141, 47.1854515 -1.9446521, 46.5712586 -1.8264870, 47.3639737 -1.0215598, 47.1335252 -2.2132604, 47.2194968 -1.5498408 +yes +717 +yes and 2 +Centre culturel italien +0 +49.3707442 10.9941112, 47.5736349 7.6049328, 53.8890822 10.6556899, 53.8891364 10.6556766, 53.8891893 10.6556637, 53.8890285 10.6557029, 53.8892427 10.6556507, 53.8883350 10.6561524, 53.8883942 10.6556770, 53.8886006 10.6557836, 53.8885465 10.6566485, 53.8882814 10.6561411, 53.8884683 10.6570599, 53.8883426 10.6556504, 53.8884955 10.6561862, 53.8887178 10.6553823, 53.8884154 10.6570780, 53.8885490 10.6557569, 53.8884926 10.6566510, 53.8883846 10.6566560, 53.8885491 10.6561975, 53.8884418 10.6561749, 53.8886733 10.6553304, 53.8884972 10.6557302, 53.8884385 10.6566536, 53.8883309 10.6566586, 53.8885213 10.6570418, 53.8883883 10.6561636, 53.8886286 10.6552784, 53.8884456 10.6557035, 53.8885742 10.6570237, 50.9211401 6.9441213, 54.6627618 10.0314984, 54.6627974 10.0297148, 54.6627899 10.0301479, 48.4635434 135.0843335, 48.4726508 135.0897167, 48.4721528 135.0887979, 48.5364269 135.0604026, 48.5357113 135.0609107, 48.4996820 135.1153412, 48.5012031 135.1148856, 48.5007220 135.1143628, 48.5001631 135.1158640, 48.4996742 135.1163669, 48.5007141 135.1153885 +Königreichssaal, St. Laurentius, Versöhnungsgemeinde, Kapelle, Kirche am Markt, Angehörigen Kapelle, Erlöserkirche, Freie evangelische Gemeinde, Christliche Baptistengemeinde, Evangelische Friedenskirche, Peterskirche, Heiliggeistkirche, St. Michael, St. Vitus, St. Albert, Sankt Paul, St. Raphael, Neuapostolische Kirche, Jakobuskirche, Johanneskirche, Adventgemeinde Heidelberg, Markushaus, St. Bonifatius, Evangelisches Gemeindezentrum, Hoffnungskirche, St. Johannes, Jesuitenkirche, Providenzkirche, Lutherkirche, Chapel, Neuapostolische Kirche, St. Bartholomäus, Kreuzkirche, Christuskirche, Alte Kirche - St. Bartholomäus, Bergkirche, Gutleuthofkapelle, Emmaus-Gemeinde, Lukaskirche, Sankt Anna, Evangelische Studierendengemeinde (Karl-Jaspers-Haus), Die ARCHE - Evangelische Wichern-Gemeinde, St. Thomas, Abteikirche Stift Neuburg, St. Laurentius, St. Teresa Kirche, Melanchthonkirche, St. Marien, St. Johann der Täufer, St. Laurentius, Sankt Peter, Peterskirche, St. Peter, Kirche Jesu Christi +165 +yes +24 +no +tertiary, tertiary, tertiary +yes +55.9579565 -3.2439627 +Ciao Roma, Zizzi, Cafe Arista, Osteria Del Tempo Perso, Piatto Verde, Pizza Express, Prezzo, Giuliano's, Cafe Domenico's, Vittoria, De Niro, Al Dente, Papillo, Il Castello, Anima, Valvona & Crolla, Vittoria, Frankie & Benny's, Italian Connection, Inca, Bella Italia, Origano, Amarone Pizzeria, Caffe e Cucina, Mia, Zucca, Taste of Italy, Quattero Zero, Zizzi, Caffe Centro, La Bruschetta, Gali, Vina Veritas, Locanda De Gusti, Da Riccardo, Bella Italia, La Lanterna, Strada, Al Borgo, Pizza Hut, Jamie's Italian, La Barca, Asti, Pizza Express, Gennaro, The Hispanola, The Sicilian Restaurant, Al Fresco, Mamma Roma, Giuliano's, La Favorita, Nonna's, Dantes, La Favorita, Rigatoni, Positano, Cucina, The New Bell, Zizzi, Ti Amo, Azzazzy, Jolly, Moratti, Lucano's Kitchen, Tani Modi, Fabio's +yes +yes +501 +0.3066907550557873 +Picardy Place +Maison Verte, Calvary Chapel, Temple de l'Oratoire du Louvre, Temple Sainte-Marie, Temple de la Rencontre, Église protestante chinoise de Paris, Temple protestant du Foyer de l'Âme, Église Réformée du Luxembourg, Église Réformée du Saint-Esprit, Temple de Pentemont, Deutsche Evangelische Christuskirche Paris, Église Réformée chinoise de Belleville, Église Protestante Danoise, Temple des Batignolles, Paroisse de Plaisance, Église Réformée de l'Annonciation, Église Luthérienne de l'Ascension, Temple Réformé de l'Etoile, Église Protestante Suéduoise +48.8876919 2.3789669 +yes +68 +1565 and Mont Aigoual, 1685, 1179 and Roc de Peyre, 175 and Mont Saint-Clair, 221.79 and Dent de Marcoule, 1067.87 and Mont Mimat, 1101.8, 1417.39 and Mont Grand, 620 and Guidon du Bouquet, 398 and Le Coutach, 470 and Leiris, 848 and Mont Saint-Baudille, Col de Lasclier, 1562 and Le Rocher des Laubies, 1503 and Le Moure de la Gardille, 1680 and Pic Cassini, 1247 and Mont Gargo, 185 and Mont Saint-Bauzille, 1001 and Mont Milan, 752 and Roc Castel, 481 and Pic de Vissou, 864 and Pic d'Anjeau, 940 and La Seranne, 1551 and Truc de Fortunio, 1366 and Saint-Guiral, 535 and Mont Liausson, 502 and Mont Mars, 822 and Mauripe, Sauco Roundo, Gratassac, 914 and Pic de la Tourette, 330 and La Pourcaresse, 1008 and Le truc de Grèzes, 325 and Le Suquet, 1192 and Pic d'Usclat, 1203.8, 1174, 1211.1 and Le Tourrel, 1127.7, 1106.55 and Mont Chabrio, 1657.41 and Signal des Laubies, 1674.3, 1031.1 and La Chaumette, 1421.47 and Signal du Bouges, 662 and Pic Saint-Loup, 1421 and Montagne du Liconès, 1151 and Puech d'Alluech, 1057.6, 1699.27 and Signal de Finiels, 525 and Mont Haut, 782 and Peyre Martine, Puech Bartelié, 1233.2 and Esquino d'Aze, 1075.97 and Serre de Pauparelle, 1152.68, 1219.84, 1239.07, 695 and Signal de Saint Pierre, 1688, 815 and Mont Brion, 112 and Mont Saint-Loup +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8169651 2.3597405, 48.8256612 2.4077565, 48.8801709 2.3706981, 48.8556200 2.3068506, 48.8652569 2.3516674, 48.8950280 2.3447570, 48.8315802 2.3158225, 48.8300663 2.3232285, 48.8314449 2.3165689, 48.8298344 2.3228877, 48.8311423 2.3178852, 48.8456181 2.3051375, 48.8319942 2.3245602, 48.8758196 2.3557131, 48.8304021 2.3248398, 48.8673061 2.3458878, 48.8595728 2.3896050, 48.8510838 2.3409320, 48.8730354 2.3533915, 48.8702836 2.3508959, 48.8721968 2.3539367, 48.8510673 2.3670936, 48.8569549 2.3497208, 48.8562998 2.3535246, 48.8569724 2.3588681, 48.8570939 2.3592300, 48.8706615 2.3508326, 48.8417539 2.3228265, 48.8417906 2.3194104, 48.8373758 2.3176784, 48.8494146 2.3482770, 48.8514966 2.3009053, 48.8542089 2.3049026, 48.8539589 2.3040725, 48.8534705 2.3029031, 48.8528568 2.3020177, 48.8494772 2.3513322, 48.8521302 2.3358217, 48.8525398 2.3683116, 48.8513093 2.3691996, 48.8555874 2.3684232, 48.8794107 2.3753630, 48.8553332 2.3464366, 48.8537039 2.3474380, 48.8389743 2.3594500, 48.8528715 2.3435491, 48.8513763 2.3250565, 48.8393301 2.3500747, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8688161 2.3275703, 48.8618419 2.3435168, 48.8624039 2.3374638, 48.8663165 2.3370822, 48.8672925 2.3255509, 48.8616428 2.3359304, 48.8659000 2.3372420, 48.8615254 2.3440287, 48.8585872 2.3458523, 48.8674660 2.3326727, 48.8663449 2.3382902, 48.8663903 2.3380844, 48.8660027 2.3646613, 48.8573191 2.3660431, 48.8580708 2.3643313, 48.8654622 2.3553300, 48.8577996 2.3607146, 48.8629482 2.3611507, 48.8644553 2.3543144, 48.8363545 2.3536716, 48.8522718 2.3406371, 48.8375553 2.3201124, 48.8483622 2.3739893, 48.8491606 2.4165683, 48.8391922 2.3168608, 48.8346500 2.3172863, 48.8319392 2.3309271, 48.8453963 2.3255943, 48.8445352 2.3242726, 48.8405754 2.3213430, 48.8414313 2.3069539, 48.8674536 2.3536254, 48.8648091 2.3411291, 48.8705392 2.3328697, 48.8687993 2.3373273, 48.8648222 2.3475072, 48.8689038 2.3422059, 48.8643869 2.3503038, 48.8695611 2.3317879, 48.8691942 2.3321035, 48.8663658 2.3442726, 48.8609918 2.3544137, 48.8562533 2.3609683, 48.8557612 2.3561274, 48.8533876 2.3620076, 48.8575825 2.3562566, 48.8577181 2.3586116, 48.8555902 2.3628384, 48.8577346 2.3566096, 48.8553135 2.3591057, 48.8536147 2.3682805, 48.8533255 2.3540705, 48.8573914 2.3563278, 48.8574318 2.3576301, 48.8572146 2.3577144, 48.8577212 2.3576336, 48.8563923 2.3573717, 48.8608910 2.3527350, 48.8437435 2.3544856, 48.8498300 2.3549148, 48.8446680 2.3483159, 48.8525895 2.3466883, 48.8429882 2.3495477, 48.8423393 2.3498473, 48.8474495 2.3471573, 48.8527413 2.3333559, 48.8405040 2.3347917, 48.8556694 2.3399888, 48.8555375 2.3409454, 48.8537528 2.3324105, 48.8533939 2.3394107, 48.8493501 2.3391528, 48.8546811 2.3332029, 48.8497831 2.3401650, 48.8441458 2.3298957, 48.8468341 2.3265156, 48.8550882 2.3414828, 48.8442966 2.3310034, 48.8510774 2.3385693, 48.8540787 2.3330795, 48.8541444 2.3326307, 48.8680799 2.3215688, 48.8710439 2.3094204, 48.8702443 2.3283595, 48.8732490 2.3415929, 48.8476672 2.3527426, 48.8460795 2.3742445, 48.8468043 2.3696423, 48.8438213 2.3729021, 48.8714582 2.3357136, 48.8719507 2.3429771, 48.8718710 2.3418144, 48.8705409 2.3532213, 48.8711564 2.3649322, 48.8755778 2.3590863, 48.8759060 2.3588881, 48.8727960 2.3635124, 48.8526670 2.3323656, 48.8494031 2.3370695, 48.8445885 2.3722564, 48.8439502 2.3728916, 48.8633384 2.3675429, 48.8635832 2.3671683, 48.8660128 2.3794462, 48.8638332 2.3670685, 48.8679153 2.3737355, 48.8656744 2.3707975, 48.8683924 2.3793396, 48.8645151 2.3730525, 48.8679409 2.3754781, 48.8554631 2.3741053, 48.8533962 2.3787654, 48.8554359 2.3744522, 48.8533316 2.3759759, 48.8561021 2.3751898, 48.8667776 2.3826288, 48.8656637 2.3778893, 48.8658803 2.3779414, 48.8630685 2.3709736, 48.8657344 2.3781951, 48.8655073 2.3763355, 48.8659834 2.3791601, 48.8663909 2.3810388, 48.8527123 2.3742095, 48.8567799 2.3773631, 48.8249137 2.3571341, 48.8260261 2.3459422, 48.8450730 2.3795209, 48.8473223 2.3735841, 48.8333341 2.3793218, 48.8263535 2.3601541, 48.8264524 2.3594353, 48.8346687 2.3775990, 48.8278970 2.3505521, 48.8349997 2.3270026, 48.8332286 2.3157120, 48.8234665 2.3685489, 48.8840787 2.3324082, 48.8865294 2.3408144, 48.8869322 2.3399586, 48.8847049 2.3404648, 48.8689647 2.3915789, 48.8267459 2.3664051, 48.8654581 2.3446776, 48.8615333 2.3574473, 48.8596461 2.3534386, 48.8501935 2.3250319, 48.8470403 2.3693549, 48.8452383 2.3641683, 48.8523143 2.3350471, 48.8755021 2.3103942, 48.8516415 2.3185465, 48.8482525 2.3194882, 48.8604171 2.3059560, 48.8537038 2.3235630, 48.8449146 2.3734371, 48.8421585 2.3029483, 48.8406684 2.3041928, 48.8437952 2.3734663, 48.8695170 2.4328399, 48.8523799 2.4036853, 48.8559899 2.3159343, 48.8554206 2.3183101, 48.8488472 2.3218448, 48.8514780 2.3379065, 48.8683478 2.4330037, 48.8545251 2.3212715, 48.8526298 2.3263322, 48.8521100 2.3268827, 48.8528896 2.3356791, 48.8514207 2.3433804, 48.8795968 2.3519355, 48.8522486 2.3480461, 48.8513208 2.3334888, 48.8516658 2.3278801, 48.8486899 2.3209398, 48.8474544 2.3181308, 48.8433635 2.3051384, 48.8227135 2.3260702, 48.8189756 2.3612028, 48.8469142 2.3813987, 48.8464198 2.3775114, 48.8442218 2.3811783, 48.8444155 2.3816924, 48.8469709 2.3171693, 48.8504070 2.3475208, 48.8499365 2.3494237, 48.8508359 2.3253843, 48.8522270 2.3302639, 48.8469113 2.3137238, 48.8454762 2.3120307, 48.8455138 2.3102008, 48.8413443 2.3078397, 48.8453869 2.3708665, 48.8444301 2.3181336, 48.8435094 2.3104432, 48.8459721 2.3236611, 48.8479947 2.3295614, 48.8484226 2.3426974, 48.8517684 2.3387959, 48.8507495 2.3326789, 48.8455266 2.3019080, 48.8455659 2.3086884, 48.8465149 2.3169266, 48.8496947 2.3229620, 48.8529756 2.3361563, 48.8513775 2.3427806, 48.8842024 2.3388617, 48.8475761 2.3025411, 48.8477633 2.3023462, 48.8560670 2.3097025, 48.8734018 2.3235239, 48.8712726 2.3703692, 48.8477136 2.3011375, 48.8430732 2.3244918, 48.8424588 2.3289261, 48.8434993 2.3257407, 48.8420387 2.3244015, 48.8384698 2.3158768, 48.8395778 2.3094998, 48.8430511 2.3069675, 48.8427695 2.3027722, 48.8425061 2.3025319, 48.8428313 2.3024426, 48.8416259 2.3030314, 48.8416654 2.3032066, 48.8420231 2.3029260, 48.8550776 2.3535796, 48.8568920 2.3534398, 48.8568210 2.3523008, 48.8441012 2.3081233, 48.8428872 2.3031638, 48.8473525 2.3160099, 48.8544589 2.4006544, 48.8435952 2.3057630, 48.8424518 2.3053432, 48.8425186 2.3236239, 48.8432872 2.3245561, 48.8437904 2.3249468, 48.8437882 2.3156320, 48.8616525 2.3535093, 48.8532432 2.3117287, 48.8490001 2.3033585, 48.8446716 2.3110739, 48.8532560 2.3307851, 48.8541427 2.3314320, 48.8475203 2.3650738, 48.8476495 2.3658974, 48.8459217 2.3669243, 48.8461560 2.3704219, 48.8475463 2.3713427, 48.8456772 2.3714536, 48.8480731 2.3678319, 48.8537482 2.3105482, 48.8500524 2.3076923, 48.8510323 2.3074986, 48.8536610 2.3238906, 48.8500734 2.3482448, 48.8501755 2.3620809, 48.8501676 2.3621707, 48.8579355 2.3103822, 48.8579412 2.3104681, 48.8578708 2.3103454, 48.8593908 2.3144172, 48.8585003 2.3229386, 48.8770907 2.3512337, 48.8505668 2.3455319, 48.8492048 2.3556646, 48.8452432 2.3693333, 48.8330132 2.3364634, 48.8244377 2.4128671, 48.8425359 2.3619057, 48.8446917 2.3101829, 48.8427351 2.3034933, 48.8361460 2.3103122, 48.8364203 2.3067894, 48.8374026 2.3058911, 48.8594450 2.4361085, 48.8596579 2.4367736, 48.8583758 2.4318504, 48.8582168 2.4316682, 48.8576232 2.4273765, 48.8572770 2.4234848, 48.8585303 2.4270690, 48.8585303 2.4271390, 48.8587147 2.4278326, 48.8586655 2.4271302, 48.8595368 2.4236590, 48.8617417 2.4314904, 48.8595521 2.4310009, 48.8586233 2.4359753, 48.8485711 2.3284734, 48.8506902 2.3304172, 48.8463195 2.3671559, 48.8513330 2.3624841, 48.8535846 2.3574562, 48.8452225 2.3735396, 48.8448045 2.3735389, 48.8569169 2.3216982, 48.8558498 2.3207071, 48.8543421 2.3306133, 48.8566284 2.3271644, 48.8406788 2.3548958, 48.8510369 2.3288914, 48.8500011 2.3270079, 48.8477830 2.3233449, 48.8454622 2.3188063, 48.8596007 2.4367605, 48.8595599 2.4367534, 48.8225672 2.4097572, 48.8598508 2.3183041, 48.8597204 2.3183152, 48.8457331 2.3099256, 48.8472412 2.3109555, 48.8476453 2.3135075, 48.8500676 2.3175242, 48.8540017 2.3240619, 48.8517950 2.3250816, 48.8517770 2.3252172, 48.8516223 2.3251656, 48.8427370 2.3209794, 48.8441323 2.3201211, 48.8426689 2.3210349, 48.8607606 2.3756443, 48.8299268 2.3465439, 48.8383937 2.3485348, 48.8403879 2.3515598, 48.8398105 2.3061597, 48.8586271 2.3007824, 48.8449916 2.3240393, 48.8460429 2.3238386, 48.8697560 2.3414883, 48.8690961 2.3437971, 48.8797179 2.3570269, 48.8253815 2.3947492, 48.8197981 2.4160056, 48.8649605 2.3450799, 48.8670451 2.3482613, 48.8671035 2.3471909, 48.8451704 2.3284896, 48.8691369 2.3682501, 48.8813252 2.3220105, 48.8274124 2.3148434, 48.8524729 2.3738150, 48.8673444 2.3739608, 48.8672350 2.3692879, 48.8826925 2.3828693, 48.8662404 2.3855356, 48.8631427 2.3877152, 48.8570811 2.3559832, 48.8588049 2.3266129, 48.8334988 2.3198962, 48.8276899 2.3209286, 48.8527753 2.4059315, 48.8445460 2.4150005, 48.8551966 2.4016334, 48.8540343 2.4058858, 48.8413622 2.3437999, 48.8415875 2.3505588, 48.8403969 2.3564692, 48.8521826 2.3288834, 48.8651191 2.3417893, 48.8549926 2.4194769, 48.8550176 2.4194858, 48.8547004 2.4176221, 48.8553049 2.4152098, 48.8545966 2.4174281, 48.8546120 2.4176273, 48.8526512 2.4178210, 48.8528087 2.4179553, 48.8527870 2.4179611, 48.8526158 2.4179109, 48.8525735 2.4179149, 48.8525881 2.4179488, 48.8549902 2.4154032, 48.8523892 2.4174521, 48.8530297 2.4225414, 48.8531799 2.4227035, 48.8528780 2.4238693, 48.8529118 2.4245808, 48.8536761 2.4245154, 48.8536539 2.4244823, 48.8528640 2.4239020, 48.8526561 2.4238459, 48.8528444 2.4236233, 48.8518298 2.4239552, 48.8489614 2.4262759, 48.8491888 2.4232171, 48.8506435 2.4183607, 48.8509170 2.4210877, 48.8509252 2.4212226, 48.8494689 2.4189858, 48.8492857 2.4177520, 48.8493804 2.4178251, 48.8516516 2.4182106, 48.8546953 2.4230965, 48.8686452 2.3957029, 48.8728505 2.3993800, 48.8724174 2.3980455, 48.8686944 2.3502259, 48.8709590 2.3477192, 48.8410120 2.3066005, 48.8751549 2.3379848, 48.8733432 2.3379745, 48.8297742 2.3340925, 48.8317381 2.3369416, 48.8352367 2.3263118, 48.8495920 2.3118988, 48.8652332 2.3505855, 48.8661215 2.3507823, 48.8678615 2.3515176, 48.8681982 2.3520494, 48.8739628 2.3483713, 48.8742224 2.3396921, 48.8742897 2.3390843, 48.8761301 2.3377037, 48.8488951 2.3254247, 48.8488333 2.3253506, 48.8545441 2.4229761, 48.8544631 2.4223445, 48.8542523 2.4219270, 48.8570028 2.3007925, 48.8386496 2.3228171, 48.8374062 2.4163948, 48.8647212 2.3469127, 48.8693629 2.3549762, 48.8692952 2.3553367, 48.8626015 2.3440440, 48.8535511 2.4188088, 48.8536584 2.4195641, 48.8461967 2.3783357, 48.8657442 2.3458247, 48.8658103 2.3452891, 48.8717201 2.3371530, 48.8699489 2.3360007, 48.8728819 2.3542143, 48.8745507 2.3567836, 48.8763320 2.3353305, 48.8742181 2.3379134, 48.8840331 2.3599166, 48.8797487 2.3564752, 48.8827832 2.3594133, 48.8346693 2.3672842, 48.8428024 2.3024212, 48.8337013 2.3466308, 48.8332139 2.3445199, 48.8634544 2.3348757, 48.8707881 2.3459106, 48.8713990 2.3457625, 48.8566023 2.4025142, 48.8655369 2.4143919, 48.8655234 2.4149389, 48.8448495 2.3836596, 48.8463962 2.3870738, 48.8302539 2.3458528, 48.8322987 2.3553750, 48.8588835 2.3307705, 48.8697776 2.3105917, 48.8686679 2.3066263, 48.8701667 2.3511661, 48.8626616 2.3670401, 48.8581081 2.3677623, 48.8687918 2.3397996, 48.8520874 2.3738549, 48.8582001 2.3497997, 48.8583079 2.3497964, 48.8535124 2.3349428, 48.8534242 2.3334679, 48.8496184 2.3521690, 48.8494725 2.3556898, 48.8502265 2.3482852, 48.8499990 2.3688118, 48.8622352 2.3395906, 48.8621947 2.3416613, 48.8672098 2.3654644, 48.8667808 2.3656961, 48.8666591 2.3656152, 48.8664563 2.3643496, 48.8667250 2.3639036, 48.8684771 2.3626799, 48.8666678 2.3662969, 48.8665492 2.3669492, 48.8666829 2.3679194, 48.8658039 2.3707172, 48.8657085 2.3712657, 48.8651568 2.3742225, 48.8655987 2.3744866, 48.8645531 2.3774428, 48.8637682 2.3814854, 48.8632649 2.3858206, 48.8630511 2.3852954, 48.8632411 2.3861008, 48.8633686 2.3882903, 48.8626607 2.3872306, 48.8786773 2.3755952, 48.8785775 2.3753580, 48.8782645 2.3740462, 48.8779867 2.3739646, 48.8781966 2.3734146, 48.8782398 2.3737861, 48.8774801 2.3700505, 48.8781543 2.3710006, 48.8774751 2.3738895, 48.8782178 2.3740370, 48.8741020 2.3753013, 48.8811959 2.3730150, 48.8822577 2.3705521, 48.8770967 2.3743348, 48.8784404 2.3739693, 48.8783411 2.3725952, 48.8780431 2.3720976, 48.8783247 2.3732090, 48.8838984 2.3707556, 48.8841289 2.3719174, 48.8479197 2.3992555, 48.8426264 2.3901753, 48.8484038 2.3977491, 48.8463128 2.3945522, 48.8759764 2.3707416, 48.8532985 2.3263609, 48.8420601 2.3893615, 48.8563247 2.3152562, 48.8820575 2.3366575, 48.8827175 2.3362016, 48.8798316 2.3403839, 48.8821984 2.3397918, 48.8721672 2.3266440, 48.8360044 2.3574926, 48.8237611 2.3626525, 48.8444572 2.3762234, 48.8815299 2.3159881, 48.8813511 2.3153761, 48.8317250 2.3147515, 48.8318670 2.3144693, 48.8311601 2.3117228, 48.8587218 2.4028880, 48.8521928 2.4013589, 48.8542722 2.4004111, 48.8884003 2.3790168, 48.8823672 2.3208340, 48.8822341 2.3195753, 48.8829037 2.3179094, 48.8456068 2.3428904, 48.8477733 2.3484340, 48.8415272 2.3511512, 48.8718873 2.3570864, 48.8288139 2.3506397, 48.8477803 2.3019256, 48.8477295 2.3020629, 48.8845714 2.3233053, 48.8844355 2.3243334, 48.8851560 2.3252063, 48.8867718 2.3236539, 48.8847610 2.3245933, 48.8879876 2.3341073, 48.8889479 2.3316294, 48.8689224 2.3335350, 48.8454862 2.3697712, 48.8835953 2.3233585, 48.8492934 2.3349249, 48.8504228 2.4065330, 48.8611046 2.3413657, 48.8610917 2.3414339, 48.8517156 2.3336409, 48.8858410 2.3405929, 48.8891314 2.3403708, 48.8717809 2.3937884, 48.8685166 2.3920862, 48.8678821 2.3921769, 48.8876134 2.3796187, 48.8580038 2.3999627, 48.8595367 2.4030888, 48.8600086 2.4039364, 48.8566933 2.4002542, 48.8387954 2.3034409, 48.8844316 2.3506830, 48.8491445 2.3035292, 48.8188844 2.3237502, 48.8178584 2.3299165, 48.8609633 2.3016431, 48.8609068 2.3015143, 48.8543529 2.3051441, 48.8473002 2.3015819, 48.8466733 2.3017106, 48.8457695 2.3018737, 48.8455718 2.3018823, 48.8649951 2.3377982, 48.8491104 2.3034797, 48.8475898 2.3031985, 48.8522469 2.3266487, 48.8531701 2.3263925, 48.8521565 2.3266646, 48.8515210 2.3266631, 48.8762160 2.3198347, 48.8759240 2.3229225, 48.8751239 2.3193212, 48.8752707 2.3164208, 48.8754510 2.3155141, 48.8777916 2.3180541, 48.8765765 2.3175668, 48.8766173 2.3130385, 48.8766073 2.3132319, 48.8796223 2.3145554, 48.8795914 2.3183667, 48.8806320 2.3194004, 48.8818486 2.3225844, 48.8809530 2.3244796, 48.8380635 2.3056765, 48.8403553 2.3038378, 48.8523905 2.3413027, 48.8524074 2.3414445, 48.8456039 2.3547969, 48.8453724 2.3548312, 48.8490204 2.3392177, 48.8489616 2.3391032, 48.8637261 2.3340606, 48.8639768 2.3341784, 48.8643067 2.3348568, 48.8728127 2.3145756, 48.8727422 2.3099714, 48.8727445 2.3083275, 48.8716299 2.3140084, 48.8730075 2.3164825, 48.8736476 2.3204627, 48.8736614 2.3208856, 48.8706262 2.3242484, 48.8724892 2.3267639, 48.8722561 2.3259576, 48.8732165 2.3236650, 48.8735130 2.3204415, 48.8700637 2.3230592, 48.8715224 2.3074911, 48.8704701 2.3076472, 48.8415760 2.3664732, 48.8414831 2.3661485, 48.8712783 2.3155587, 48.8605866 2.3617807, 48.8835954 2.3291657, 48.8820013 2.3330275, 48.8455384 2.3288228, 48.8536478 2.3380576, 48.8276825 2.3271004, 48.8290423 2.3331547, 48.8300247 2.3311059, 48.8519626 2.3388319, 48.8526502 2.3390840, 48.8536059 2.3382770, 48.8538386 2.3384740, 48.8539544 2.3370609, 48.8533551 2.3356842, 48.8276087 2.3346707, 48.8300409 2.3310810, 48.8332389 2.3329284, 48.8526288 2.3385336, 48.8415160 2.3436441, 48.8445750 2.3454978, 48.8450073 2.3757975, 48.8442783 2.3769332, 48.8538018 2.3337187, 48.8193344 2.3436498, 48.8697269 2.3107378, 48.8923205 2.3416630, 48.8925057 2.3450965, 48.8374507 2.3523064, 48.8364602 2.3723041, 48.8365958 2.3740207, 48.8351429 2.3731146, 48.8326142 2.3712146, 48.8327554 2.3711889, 48.8324164 2.3712490, 48.8322017 2.3717812, 48.8320209 2.3720902, 48.8303052 2.3730491, 48.8296796 2.3757017, 48.8294557 2.3759783, 48.8294304 2.3758918, 48.8287267 2.3764073, 48.8284873 2.3763340, 48.8283951 2.3766208, 48.8424152 2.3276286, 48.8413725 2.3310575, 48.8319838 2.3583000, 48.8579325 2.3515044, 48.8904568 2.3984851, 48.8874715 2.3994717, 48.8858277 2.3979326, 48.8892044 2.3949432, 48.8536039 2.3444118, 48.8535412 2.3444065, 48.8515050 2.3430786, 48.8501002 2.3428094, 48.8499611 2.3431466, 48.8497949 2.3431065, 48.8497377 2.3428278, 48.8481900 2.3416831, 48.8473294 2.3412516, 48.8461467 2.3400524, 48.8307271 2.3566617, 48.8307708 2.3567939, 48.8308701 2.3570791, 48.8327092 2.3625620, 48.8317439 2.3618766, 48.8566990 2.3570528, 48.8569081 2.3579840, 48.8329491 2.3541747, 48.8335351 2.3537862, 48.8304784 2.3562767, 48.8312038 2.3565530, 48.8333114 2.3539298, 48.8336129 2.3544305, 48.8334332 2.3545467, 48.8326050 2.3544168, 48.8322707 2.3582796, 48.8921108 2.3751961, 48.8920516 2.3752857, 48.8770457 2.4050940, 48.8770622 2.4052339, 48.8527942 2.4060014, 48.8334069 2.3555105, 48.8522066 2.3483892, 48.8524157 2.3382646, 48.8457083 2.3191961, 48.8544496 2.3557731, 48.8523526 2.3444419, 48.8568120 2.3062305, 48.8342726 2.3085148, 48.8341153 2.3087657, 48.8338554 2.3083709, 48.8537402 2.4056302, 48.8538057 2.4056125, 48.8530182 2.4058632, 48.8484568 2.3995601, 48.8478160 2.3975417, 48.8422244 2.3415804, 48.8540277 2.3358692, 48.8551205 2.3589562, 48.8390699 2.3214477, 48.8828817 2.3596543, 48.8641353 2.3676323, 48.8692451 2.3919892, 48.8554073 2.3268543, 48.8503222 2.3325549, 48.8682344 2.3721212, 48.8718838 2.3720170, 48.8336932 2.3094058, 48.8697474 2.3709540, 48.8716445 2.3921866, 48.8704428 2.3883722, 48.8729609 2.3894775, 48.8703637 2.3893764, 48.8807957 2.3680128, 48.8659081 2.3781743, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8593821 2.3790898, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8412432 2.3252996, 48.8409061 2.3218163, 48.8814427 2.3685496, 48.8743224 2.3737632, 48.8703950 2.3709651, 48.8694860 2.3821154, 48.8695013 2.3822447, 48.8700223 2.3840638, 48.8702788 2.3842745, 48.8700731 2.3844758, 48.8701522 2.3848448, 48.8702594 2.3860980, 48.8702820 2.3863469, 48.8705756 2.3882952, 48.8715131 2.3862265, 48.8715301 2.3874968, 48.8726817 2.3841494, 48.8726253 2.3842524, 48.8613883 2.3754494, 48.8726648 2.3889559, 48.8690010 2.3856816, 48.8692544 2.3857069, 48.8778843 2.3510144, 48.8782964 2.4109300, 48.8538078 2.3277103, 48.8529470 2.3434116, 48.8573363 2.3574834, 48.8575522 2.3577300, 48.8534187 2.3767493, 48.8732512 2.3826034, 48.8719640 2.3809798, 48.8715124 2.3812630, 48.8707876 2.3814258, 48.8701383 2.3797607, 48.8701219 2.3796800, 48.8696528 2.3800869, 48.8703047 2.3816624, 48.8725516 2.3783579, 48.8724783 2.3782205, 48.8689756 2.3829202, 48.8689555 2.3855043, 48.8673835 2.3830489, 48.8674174 2.3831948, 48.8680300 2.3851169, 48.8681056 2.3856641, 48.8694555 2.3406786, 48.8522503 2.3344195, 48.8743115 2.3756487, 48.8683745 2.3500412, 48.8539901 2.3267207, 48.8806072 2.3538936, 48.8692096 2.3486800, 48.8675048 2.3473847, 48.8673495 2.3470736, 48.8674736 2.3471342, 48.8702235 2.3490322, 48.8700483 2.3490020, 48.8535279 2.3681762, 48.8402491 2.3214518, 48.8404976 2.3244044, 48.8431992 2.3244536, 48.8547827 2.4053007, 48.8638253 2.3808706, 48.8611898 2.3813091, 48.8845723 2.4081565, 48.8949604 2.3648581, 48.8950049 2.3648565, 48.8948520 2.3651050, 48.8489374 2.3729446, 48.8482032 2.3715312, 48.8484200 2.3719584, 48.8482427 2.3721197, 48.8484636 2.3724140, 48.8471107 2.3753997, 48.8890111 2.3798549, 48.8455069 2.3806458, 48.8630805 2.4151688, 48.8523266 2.4155894, 48.8470542 2.4160413, 48.8470892 2.4158499, 48.8659368 2.3775981, 48.8464606 2.4154979, 48.8462106 2.4156776, 48.8439439 2.4149475, 48.8416186 2.4152244, 48.8415917 2.4151604, 48.8347493 2.4131753, 48.8467984 2.3769382, 48.8456871 2.3741212, 48.8483053 2.3759065, 48.8482055 2.3763201, 48.8462392 2.3793434, 48.8442424 2.3717797, 48.8818782 2.3342987, 48.8882137 2.3785003, 48.8723344 2.3492288, 48.8838281 2.3984467, 48.8813616 2.3964237, 48.8802934 2.3966027, 48.8842507 2.3842625, 48.8211748 2.3337795, 48.8336473 2.4129352, 48.8370031 2.4203543, 48.8446086 2.4216697, 48.8414397 2.4307042, 48.8509876 2.3461191, 48.8533987 2.4060810, 48.8570374 2.4045098, 48.8573212 2.4038990, 48.8305048 2.3677879, 48.8498852 2.3079985, 48.8510833 2.3092502, 48.8512789 2.3096976, 48.8513322 2.3097491, 48.8405382 2.3537295, 48.8404563 2.3540242, 48.8406418 2.3541771, 48.8411143 2.3555601, 48.8460249 2.3758514, 48.8459315 2.3760161, 48.8460309 2.3745805, 48.8457501 2.3710340, 48.8243871 2.4184684, 48.8491257 2.3916769, 48.8492146 2.3916803, 48.8505550 2.3903815, 48.8507318 2.3902220, 48.8518448 2.3890950, 48.8521875 2.3889688, 48.8517486 2.3881145, 48.8515667 2.3867566, 48.8523206 2.3894881, 48.8526340 2.3885654, 48.8354329 2.4314376, 48.8250001 2.3885505, 48.8211687 2.3786713, 48.8202354 2.3234198, 48.8273026 2.3137753, 48.8321419 2.3413424, 48.8314413 2.3409219, 48.8332267 2.3368964, 48.8330200 2.3329456, 48.8331702 2.3326392, 48.8398137 2.3124499, 48.8387859 2.3504803, 48.8387241 2.3502199, 48.8398577 2.3474231, 48.8182194 2.3532369, 48.8176870 2.3444409, 48.8162232 2.3442349, 48.8163362 2.3406043, 48.8460504 2.3085941, 48.8525976 2.3324258, 48.8525749 2.3316556, 48.8516359 2.3307926, 48.8533286 2.3346314, 48.8528637 2.3346429, 48.8478855 2.3676795, 48.8167450 2.3551427, 48.8212529 2.3213669, 48.8823390 2.3402606, 48.8742044 2.3259209, 48.8472243 2.3185062, 48.8841355 2.3287497, 48.8889153 2.3930360, 48.8882804 2.3908204, 48.8860526 2.3426933, 48.8826497 2.3364419, 48.8346575 2.3330609, 48.8181616 2.3296906, 48.8848341 2.3250170, 48.8514886 2.3986829, 48.8549220 2.3872314, 48.8543661 2.3848507, 48.8538830 2.3825811, 48.8504943 2.3832077, 48.8503080 2.3839716, 48.8499521 2.3844522, 48.8504791 2.3876698, 48.8492760 2.3949290, 48.8574923 2.3804674, 48.8564633 2.3790389, 48.8525384 2.3807630, 48.8796218 2.3265596, 48.8779635 2.3272883, 48.8781948 2.3299908, 48.8767294 2.3305305, 48.8765720 2.3325312, 48.8768744 2.3327773, 48.8777601 2.3273644, 48.8741098 2.3268289, 48.8747962 2.3265054, 48.8754796 2.3249611, 48.8742093 2.3255963, 48.8813849 2.3314972, 48.8751600 2.3319950, 48.8605695 2.4368663, 48.8693736 2.3204383, 48.8691297 2.3202320, 48.8698925 2.3226128, 48.8691755 2.3245526, 48.8690381 2.3244370, 48.8682809 2.3089380, 48.8675830 2.3075899, 48.8668994 2.3066488, 48.8662025 2.3081844, 48.8649899 2.3027111, 48.8652497 2.3101782, 48.8668521 2.3157882, 48.8672033 2.3175552, 48.8672307 2.3169458, 48.8189432 2.3244643, 48.8181334 2.3302614, 48.8720928 2.3297590, 48.8728662 2.3283943, 48.8729832 2.3294159, 48.8510874 2.3007761, 48.8300837 2.3230365, 48.8296810 2.3218792, 48.8296720 2.3219044, 48.8295085 2.3227327, 48.8297359 2.3228829, 48.8630061 2.3625592, 48.8628927 2.3617428, 48.8198243 2.3386394, 48.8189960 2.3382666, 48.8142814 2.3410360, 48.8528282 2.4062488, 48.8617353 2.4310729, 48.8535709 2.4057993, 48.8532189 2.4059066, 48.8570643 2.4044749, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8474511 2.3483430, 48.8572672 2.4160273, 48.8583893 2.4147064, 48.8532082 2.4034787, 48.8521024 2.4034631, 48.8522256 2.4039240, 48.8525358 2.4040103, 48.8520446 2.4018024, 48.8517989 2.4013336, 48.8513195 2.3984311, 48.8513939 2.3984124, 48.8514276 2.3983132, 48.8516489 2.3984431, 48.8529986 2.3973185, 48.8533079 2.3971045, 48.8538176 2.3967148, 48.8539232 2.3938833, 48.8537772 2.3960030, 48.8542199 2.3960813, 48.8547572 2.3940413, 48.8553405 2.3950264, 48.8672258 2.3079158, 48.8332144 2.3333365, 48.8375393 2.3360135, 48.8402279 2.3373018, 48.8838862 2.3277689, 48.8849265 2.3336510, 48.8861318 2.3340926, 48.8892891 2.3930976, 48.8880361 2.3910565, 48.8518792 2.3487076, 48.8427433 2.3125629, 48.8405803 2.3153009, 48.8411229 2.3744020, 48.8575055 2.4348839, 48.8573006 2.4349186, 48.8535844 2.4342564, 48.8547894 2.4359043, 48.8553838 2.4327661, 48.8556487 2.4310475, 48.8564412 2.4331210, 48.8541098 2.4311814, 48.8540737 2.4317427, 48.8540666 2.4317775, 48.8542034 2.4314571, 48.8529390 2.4303874, 48.8524727 2.4347296, 48.8572619 2.4331507, 48.8575091 2.4334478, 48.8530468 2.4262525, 48.8515893 2.4297267, 48.8489798 2.4265183, 48.8506149 2.4262653, 48.8540380 2.4258844, 48.8581334 2.4372472, 48.8586127 2.4371331, 48.8586961 2.4368858, 48.8584141 2.4368718, 48.8620035 2.3484170, 48.8621883 2.3485126, 48.8172559 2.3274565, 48.8651078 2.3744344, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8696045 2.3711651, 48.8697201 2.3714649, 48.8695951 2.3715600, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8663599 2.3735117, 48.8660888 2.3735141, 48.8649570 2.3752834, 48.8653000 2.3752307, 48.8653041 2.3760609, 48.8679081 2.3779048, 48.8642583 2.3781838, 48.8658521 2.3778040, 48.8658893 2.3773900, 48.8672490 2.3760970, 48.8671899 2.3758377, 48.8672858 2.3755373, 48.8398102 2.3636157, 48.8713839 2.3723624, 48.8717635 2.3722590, 48.8720555 2.3717928, 48.8725878 2.3713798, 48.8734747 2.3704890, 48.8743760 2.3738893, 48.8741515 2.3743018, 48.8747572 2.3721336, 48.8754558 2.3702131, 48.8756416 2.3688091, 48.8761391 2.3683073, 48.8750213 2.3693259, 48.8740565 2.3704295, 48.8761685 2.3706316, 48.8767824 2.3701809, 48.8775727 2.3697840, 48.8775235 2.3696933, 48.8762486 2.3684489, 48.8766895 2.3672800, 48.8793418 2.3684468, 48.8774951 2.3660254, 48.8761335 2.3680786, 48.8755898 2.3677238, 48.8750608 2.3672145, 48.8746849 2.3665197, 48.8736428 2.3646883, 48.8735860 2.3650243, 48.8734003 2.3641075, 48.8727632 2.3665793, 48.8718184 2.3654608, 48.8718713 2.3655305, 48.8717399 2.3675792, 48.8718241 2.3676242, 48.8719097 2.3674864, 48.8710868 2.3661930, 48.8714321 2.3669323, 48.8715032 2.3674435, 48.8715550 2.3681089, 48.8722806 2.3695753, 48.8700477 2.3689483, 48.8696638 2.3693259, 48.8713012 2.3699655, 48.8712614 2.3699654, 48.8710595 2.3701442, 48.8706915 2.3704032, 48.8701426 2.3706965, 48.8699145 2.3712122, 48.8698774 2.3708946, 48.8718449 2.3766037, 48.8720215 2.3765754, 48.8717641 2.3760651, 48.8715040 2.3760459, 48.8705991 2.3727035, 48.8700440 2.3716713, 48.8690397 2.3729073, 48.8686239 2.3728982, 48.8687232 2.3723495, 48.8683203 2.3721799, 48.8693186 2.3741284, 48.8683112 2.3698916, 48.8680322 2.3727849, 48.8682174 2.3737692, 48.8688510 2.3761882, 48.8679859 2.3782324, 48.8663091 2.3713917, 48.8664224 2.3652804, 48.8663460 2.3644859, 48.8673441 2.3627982, 48.8674473 2.3626414, 48.8675118 2.3625438, 48.8676022 2.3623822, 48.8677049 2.3622367, 48.8677682 2.3620989, 48.8681927 2.3630580, 48.8667141 2.3660388, 48.8667966 2.3673783, 48.8661992 2.3687088, 48.8659451 2.3700477, 48.8652993 2.3734818, 48.8654797 2.3747464, 48.8653692 2.3748561, 48.8647763 2.3762361, 48.8651925 2.3758399, 48.8648400 2.3777430, 48.8647413 2.3853844, 48.8629074 2.3860380, 48.8631317 2.3869263, 48.8641296 2.3859610, 48.8639802 2.3867074, 48.8640310 2.3863813, 48.8641439 2.3864843, 48.8642946 2.3862990, 48.8650417 2.3850337, 48.8652815 2.3850044, 48.8661032 2.3840553, 48.8661736 2.3841890, 48.8662357 2.3840946, 48.8663260 2.3839916, 48.8665492 2.3839008, 48.8668485 2.3837377, 48.8670348 2.3836519, 48.8672012 2.3825153, 48.8670092 2.3824038, 48.8666938 2.3828675, 48.8667481 2.3822535, 48.8666129 2.3816919, 48.8667100 2.3812708, 48.8665041 2.3812744, 48.8666422 2.3812622, 48.8664122 2.3800058, 48.8661582 2.3798761, 48.8661982 2.3800386, 48.8662789 2.3801569, 48.8656428 2.3768934, 48.8656858 2.3776485, 48.8656937 2.3771252, 48.8650645 2.3775756, 48.8657840 2.3770479, 48.8659421 2.3769020, 48.8661373 2.3770649, 48.8661962 2.3766789, 48.8668329 2.3764659, 48.8669356 2.3763865, 48.8177134 2.3731023, 48.8176237 2.3728869, 48.8179174 2.3755720, 48.8183576 2.3751482, 48.8177851 2.3739963, 48.8442805 2.3494077, 48.8460777 2.3542886, 48.8680369 2.3754008, 48.8681892 2.3749537, 48.8676415 2.3754429, 48.8674450 2.3750281, 48.8674891 2.3754429, 48.8689288 2.3802494, 48.8687538 2.3799490, 48.8686917 2.3798288, 48.8686005 2.3800123, 48.8681319 2.3792398, 48.8679866 2.3783803, 48.8680763 2.3782066, 48.8679182 2.3781466, 48.8676267 2.3787920, 48.8445017 2.3247331, 48.8598744 2.3476273, 48.8514969 2.3476094, 48.8463542 2.3546880, 48.8518241 2.3377078, 48.8719922 2.3643316, 48.8770310 2.3879568, 48.8680340 2.3867035, 48.8645121 2.3683814, 48.8641829 2.3687115, 48.8433627 2.3377702, 48.8343356 2.3292251, 48.8378680 2.3520336, 48.8324374 2.3619273, 48.8325468 2.3622967, 48.8315083 2.3567419, 48.8319231 2.3546881, 48.8317268 2.3568922, 48.8321515 2.3564215, 48.8318807 2.3568124, 48.8309612 2.3573410, 48.8313024 2.3580825, 48.8306130 2.3545699, 48.8302998 2.3547708, 48.8299156 2.3543416, 48.8284954 2.3531059, 48.8262955 2.3569037, 48.8259948 2.3570144, 48.8491407 2.3785568, 48.8465318 2.3790521, 48.8491774 2.3781154, 48.8455640 2.3806988, 48.8463307 2.3795208, 48.8468005 2.3839097, 48.8467150 2.3839386, 48.8454696 2.3871278, 48.8459092 2.3777264, 48.8515628 2.3840327, 48.8601187 2.3790729, 48.8483419 2.3941371, 48.8505980 2.3756315, 48.8479594 2.3771753, 48.8486594 2.3777375, 48.8480388 2.3805151, 48.8468326 2.3790947, 48.8489783 2.3772212, 48.8494401 2.3773810, 48.8494663 2.3769237, 48.8468335 2.3820503, 48.8532825 2.3792329, 48.8508436 2.3784137, 48.8509991 2.3778569, 48.8511896 2.3757690, 48.8497953 2.3742831, 48.8494366 2.3743781, 48.8484434 2.3726021, 48.8490503 2.3712312, 48.8477004 2.3736634, 48.8500663 2.3739032, 48.8447706 2.3779554, 48.8466461 2.3799067, 48.8451286 2.3836536, 48.8446020 2.3775270, 48.8460766 2.3773448, 48.8541173 2.3674450, 48.8533975 2.3591296, 48.8497380 2.3851348, 48.8500278 2.3840780, 48.8501150 2.3831061, 48.8500450 2.3839320, 48.8502585 2.3814712, 48.8482880 2.3932662, 48.8522803 2.3779953, 48.8516730 2.3781826, 48.8516520 2.3783332, 48.8504188 2.3794482, 48.8465865 2.3816584, 48.8466308 2.3820511, 48.8615762 2.3523794, 48.8622962 2.3522413, 48.8504878 2.3821280, 48.8499708 2.3841427, 48.8471042 2.3871676, 48.8471871 2.3870859, 48.8505497 2.3846148, 48.8505497 2.3842151, 48.8722818 2.3462050, 48.8739244 2.3454201, 48.8645230 2.3550690, 48.8627431 2.3531218, 48.8628573 2.3522080, 48.8613333 2.3538187, 48.8624613 2.3594619, 48.8653692 2.3620602, 48.8650045 2.3627574, 48.8651127 2.3625685, 48.8489304 2.3762840, 48.8489281 2.3761561, 48.8462285 2.3784270, 48.8462717 2.3788092, 48.8462620 2.3786885, 48.8453283 2.3813011, 48.8446037 2.3833732, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8501765 2.3792170, 48.8507286 2.3779068, 48.8509545 2.3780414, 48.8502726 2.3811628, 48.8498437 2.3844726, 48.8529864 2.3827830, 48.8492104 2.3895170, 48.8477398 2.3888781, 48.8478628 2.3928249, 48.8476122 2.3930340, 48.8441929 2.3885529, 48.8424054 2.3895404, 48.8420168 2.3896839, 48.8830400 2.3466469, 48.8826393 2.3448094, 48.8821036 2.3462700, 48.8806743 2.3516188, 48.8803621 2.3527476, 48.8808367 2.3523965, 48.8767124 2.4051857, 48.8754784 2.4059676, 48.8756268 2.3994827, 48.8805125 2.3980130, 48.8818468 2.4029049, 48.8778919 2.3959017, 48.8786295 2.4120287, 48.8787438 2.4166396, 48.8823605 2.4189638, 48.8817509 2.4206632, 48.8753427 2.4241351, 48.8738114 2.4278172, 48.8705682 2.4241651, 48.8684736 2.4178051, 48.8731764 2.4132389, 48.8733436 2.4105571, 48.8745312 2.4152731, 48.8277658 2.4184354, 48.8328402 2.4028704, 48.8294130 2.4015885, 48.8312754 2.3988833, 48.8254543 2.4099127, 48.8470593 2.4352005, 48.8464464 2.4335921, 48.8461449 2.4297430, 48.8472181 2.4311420, 48.8475005 2.4314767, 48.8475683 2.4314939, 48.8474754 2.4333566, 48.8475422 2.4332316, 48.8478620 2.4257604, 48.8461955 2.4262494, 48.8479545 2.4245283, 48.8486323 2.4231722, 48.8482037 2.4230408, 48.8480541 2.4217350, 48.8486810 2.4264213, 48.8488480 2.4263142, 48.8448592 2.4292748, 48.8438505 2.4310874, 48.8437295 2.4312317, 48.8497167 2.4355576, 48.8487565 2.4308541, 48.8487420 2.4316492, 48.8464257 2.4312063, 48.8528975 2.4241718, 48.8487774 2.3429251, 48.8543046 2.3285742, 48.8520050 2.3739783, 48.8456295 2.4033753, 48.8663147 2.3719752, 48.8769811 2.4048559, 48.8749761 2.4031141, 48.8777348 2.3959932, 48.8758342 2.4011315, 48.8703695 2.3665503, 48.8748068 2.3638809, 48.8748801 2.3637951, 48.8753882 2.3643616, 48.8466750 2.4313535, 48.8463023 2.4206617, 48.8366376 2.3507046, 48.8367310 2.3500387, 48.8367142 2.3522749, 48.8311541 2.3565888, 48.8833656 2.3710732, 48.8831646 2.3720227, 48.8833551 2.3721300, 48.8836055 2.3731171, 48.8836902 2.3740022, 48.8840147 2.3752146, 48.8844169 2.3762767, 48.8837907 2.3764722, 48.8849729 2.3784198, 48.8850377 2.3791735, 48.8851153 2.3790072, 48.8854643 2.3799694, 48.8855033 2.3809706, 48.8856762 2.3815928, 48.8865051 2.3847954, 48.8873411 2.3873650, 48.8876230 2.3883824, 48.8878308 2.3891184, 48.8889239 2.3944490, 48.8330843 2.3545682, 48.8332943 2.3549487, 48.8329033 2.3622084, 48.8330139 2.3615547, 48.8372429 2.3177892, 48.8710907 2.3582585, 48.8350396 2.3318427, 48.8347711 2.3321841, 48.8332031 2.3317979, 48.8303495 2.3339288, 48.8613834 2.3525372, 48.8635331 2.3476629, 48.8640524 2.3476114, 48.8392766 2.3208448, 48.8329640 2.3315905, 48.8330519 2.3316747, 48.8644935 2.3509011, 48.8300228 2.3559482, 48.8296427 2.3513003, 48.8318964 2.3563061, 48.8318054 2.3563929, 48.8317279 2.3564905, 48.8316149 2.3566107, 48.8314963 2.3566536, 48.8827251 2.3816969, 48.8617066 2.3445035, 48.8612681 2.3493661, 48.8624112 2.3480599, 48.8617033 2.3441258, 48.8599405 2.3466434, 48.8589421 2.3475982, 48.8588348 2.3518897, 48.8572632 2.3514945, 48.8561847 2.3532145, 48.8655904 2.3564268, 48.8661173 2.3596343, 48.8683793 2.3679055, 48.8664719 2.3693573, 48.8658257 2.3693390, 48.8634351 2.3712286, 48.8633521 2.3710595, 48.8616617 2.3727419, 48.8600810 2.3710999, 48.8569493 2.3706558, 48.8538990 2.3697241, 48.8663247 2.3710849, 48.8644965 2.3730964, 48.8632938 2.3872069, 48.8664996 2.3830714, 48.8686598 2.3815066, 48.8711417 2.3782119, 48.8727055 2.3764695, 48.8725474 2.3766326, 48.8719039 2.3850869, 48.8701140 2.3966278, 48.8700610 2.3963739, 48.8706874 2.3989838, 48.8678503 2.4009656, 48.8653208 2.3990687, 48.8643044 2.3982089, 48.8653996 2.3977973, 48.8651813 2.3944221, 48.8665630 2.3915757, 48.8666928 2.3914298, 48.8662217 2.3895964, 48.8662129 2.3890609, 48.8649496 2.3880757, 48.8656935 2.3876189, 48.8694311 2.3950347, 48.8673252 2.3964509, 48.8672461 2.3965024, 48.8673873 2.3963565, 48.8712622 2.4039026, 48.8739080 2.3960132, 48.8737273 2.3960303, 48.8753136 2.3924598, 48.8754660 2.3929490, 48.8754434 2.3890467, 48.8739926 2.3894557, 48.8764991 2.3923568, 48.8743201 2.3860568, 48.8750539 2.3826407, 48.8764595 2.3793277, 48.8761604 2.3801173, 48.8761999 2.3804521, 48.8777890 2.3812354, 48.8779272 2.3814563, 48.8778573 2.3813972, 48.8796002 2.3888045, 48.8777466 2.3856191, 48.8774643 2.3860740, 48.8775377 2.3857736, 48.8819518 2.3925799, 48.8791126 2.3785037, 48.8797928 2.3748927, 48.8814004 2.3733460, 48.8827127 2.3746701, 48.8826601 2.3752883, 48.8827392 2.3752196, 48.8847298 2.3801436, 48.8862604 2.3774382, 48.8862942 2.3825537, 48.8862880 2.3831916, 48.8862492 2.3830897, 48.8862210 2.3829609, 48.8864942 2.3848741, 48.8831878 2.3714050, 48.8891556 2.3835322, 48.8904705 2.3869396, 48.8771673 2.3743225, 48.8731252 2.3798302, 48.8638482 2.3754413, 48.8640393 2.3755646, 48.8645976 2.3751492, 48.8621139 2.3771509, 48.8588447 2.3789316, 48.8612874 2.3810745, 48.8579887 2.3818494, 48.8586573 2.3836132, 48.8586656 2.3839098, 48.8586939 2.3840128, 48.8587510 2.3841928, 48.8570456 2.3728609, 48.8645209 2.3464137, 48.8637982 2.3425857, 48.8585540 2.3586704, 48.8645325 2.3616659, 48.8625383 2.3596046, 48.8616570 2.3566882, 48.8621158 2.3649459, 48.8580787 2.3502718, 48.8594346 2.3558245, 48.8691099 2.3622572, 48.8685184 2.3599117, 48.8707796 2.3431008, 48.8758064 2.3472929, 48.8661857 2.3449657, 48.8724202 2.3554241, 48.8212165 2.3424964, 48.8191551 2.3383937, 48.8197575 2.3387369, 48.8582719 2.3677365, 48.8613324 2.3672902, 48.8644708 2.3660442, 48.8633741 2.3663922, 48.8657197 2.3652646, 48.8645282 2.3695189, 48.8678878 2.3727490, 48.8691580 2.3718028, 48.8727830 2.3700050, 48.8740363 2.3624556, 48.8716766 2.3645864, 48.8706620 2.3611950, 48.8709568 2.3611877, 48.8707002 2.3614113, 48.8734580 2.3584123, 48.8732312 2.3586224, 48.8732053 2.3585526, 48.8750670 2.3596454, 48.8756963 2.3594622, 48.8761479 2.3608784, 48.8767569 2.3560938, 48.8755329 2.3562073, 48.8720809 2.3576446, 48.8686256 2.3557047, 48.8696775 2.3543727, 48.8610006 2.3534840, 48.8631013 2.3527609, 48.8571905 2.3539864, 48.8599108 2.3609341, 48.8581811 2.3646296, 48.8557177 2.3579066, 48.8791705 2.3859215, 48.8278860 2.3709325, 48.8630582 2.3414297, 48.8146542 2.3918514, 48.8681798 2.3714175, 48.8683391 2.3714311, 48.8722393 2.3651243, 48.8783172 2.4150868, 48.8683233 2.3660938, 48.8275755 2.3532310, 48.8245681 2.3401310, 48.8411613 2.3524312, 48.8427458 2.3524509, 48.8451570 2.4339974, 48.8758235 2.3834309, 48.8748569 2.3825637, 48.8753656 2.3823741, 48.8738274 2.3848673, 48.8743779 2.3850894, 48.8755934 2.3832701, 48.8756530 2.3832155, 48.8747784 2.3848811, 48.8482774 2.3428253, 48.8793536 2.3584016, 48.8784345 2.3578878, 48.8783181 2.3578049, 48.8783277 2.3564922, 48.8795963 2.3570245, 48.8716304 2.3858800, 48.8497477 2.3435781, 48.8502811 2.3449753, 48.8489015 2.3412990, 48.8474669 2.3424422, 48.8473878 2.3433434, 48.8391823 2.3706120, 48.8685757 2.4338571, 48.8638367 2.3749471, 48.8725482 2.3581799, 48.8778514 2.3157284, 48.8657219 2.3739666, 48.8654326 2.3745496, 48.8581077 2.3801470, 48.8224407 2.4125856, 48.8200888 2.4152531, 48.8217832 2.4141390, 48.8215566 2.4133556, 48.8214215 2.4136841, 48.8239534 2.3165091, 48.8245932 2.3184383, 48.8243515 2.3193929, 48.8839948 2.3588579, 48.8708665 2.3612821, 48.8710381 2.3610667, 48.8663456 2.4118041, 48.8668186 2.4119143, 48.8673098 2.4121289, 48.8683117 2.4115585, 48.8647712 2.4045352, 48.8667000 2.4069400, 48.8643044 2.4095653, 48.8227462 2.3249989, 48.8470909 2.4366979, 48.8451391 2.4342025, 48.8627754 2.4202931, 48.8582023 2.4176462, 48.8579293 2.4178018, 48.8494965 2.3428666, 48.8369621 2.3916125, 48.8363262 2.3866379, 48.8824469 2.4148265, 48.8427362 2.3297851, 48.8425183 2.3350723, 48.8440936 2.3330640, 48.8851298 2.3208036, 48.8857055 2.3215074, 48.8839773 2.3197792, 48.8742269 2.3755468, 48.8664641 2.3722308, 48.8742514 2.3675121, 48.8914177 2.4053946, 48.8361883 2.4001628, 48.8374501 2.3974695, 48.8361733 2.3992550, 48.8375744 2.3973236, 48.8357501 2.3998388, 48.8361649 2.3976709, 48.8322048 2.3854989, 48.8365312 2.3932203, 48.8351057 2.3855326, 48.8332585 2.3858128, 48.8323315 2.3862257, 48.8361823 2.3989988, 48.8355057 2.3978609, 48.8347892 2.4008341, 48.8366987 2.3918047, 48.8375906 2.3974847, 48.8391490 2.3938241, 48.8381280 2.3966112, 48.8398751 2.3939229, 48.8403103 2.3946599, 48.8394177 2.3984809, 48.8392370 2.3959499, 48.8390556 2.3959183, 48.8385750 2.3962263, 48.8361512 2.3875057, 48.8354853 2.3854944, 48.8377492 2.3970006, 48.8375405 2.4016838, 48.8584087 2.4363958, 48.8646486 2.4083438, 48.8644029 2.4080476, 48.8463152 2.4205352, 48.8647135 2.4083257, 48.8645193 2.4105979, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8636820 2.4079099, 48.8646806 2.4060380, 48.8467254 2.4174208, 48.8879678 2.3259712, 48.8623679 2.4111234, 48.8615965 2.4057488, 48.8626997 2.4034148, 48.8350620 2.4078967, 48.8354775 2.4060799, 48.8360911 2.4057236, 48.8352503 2.3857030, 48.8400454 2.3808140, 48.8399906 2.3811474, 48.8347357 2.3876562, 48.8393156 2.3801287, 48.8398654 2.3799031, 48.8401087 2.3804879, 48.8396394 2.3801031, 48.8394044 2.3805434, 48.8393185 2.3806604, 48.8337437 2.3886482, 48.8375435 2.3824463, 48.8340292 2.3977888, 48.8374325 2.3912706, 48.8192778 2.3740096, 48.8157795 2.3678212, 48.8206897 2.3639393, 48.8420158 2.3412105, 48.8465305 2.3431266, 48.8384599 2.3406020, 48.8395192 2.3610330, 48.8798495 2.4167430, 48.8827568 2.4191077, 48.8801655 2.4233038, 48.8785177 2.4146019, 48.8447051 2.3110485, 48.8418578 2.3031404, 48.8891565 2.3974249, 48.8884623 2.4082739, 48.8853628 2.4039648, 48.8863445 2.4073385, 48.8843356 2.4082993, 48.8680246 2.4170870, 48.8697950 2.4160906, 48.8513851 2.3427515, 48.8427677 2.3244722, 48.8411388 2.3244182, 48.8394501 2.3295825, 48.8368320 2.3312845, 48.8350879 2.3415777, 48.8402870 2.3794757, 48.8350103 2.3759945, 48.8376967 2.3825388, 48.8337873 2.3947302, 48.8323342 2.4046376, 48.8570745 2.3418077, 48.8189430 2.3746452, 48.8309193 2.3795654, 48.8305362 2.3780147, 48.8269199 2.3653028, 48.8268477 2.3647861, 48.8268904 2.3650970, 48.8267972 2.3644166, 48.8268013 2.3644366, 48.8266395 2.3631137, 48.8265936 2.3638347, 48.8267042 2.3418398, 48.8266959 2.3418366, 48.8313314 2.3159690, 48.8313237 2.3160082, 48.8276961 2.3323037, 48.8492197 2.4218652, 48.8526158 2.3471643, 48.8506752 2.3329343, 48.8536884 2.3438503, 48.8465209 2.3169152, 48.8223603 2.3376975, 48.8333496 2.3122320, 48.8468908 2.3696558, 48.8422395 2.3861184, 48.8463028 2.3793259, 48.8399294 2.4045970, 48.8448378 2.4051177, 48.8474520 2.4048594, 48.8473395 2.4060719, 48.8354938 2.4305358, 48.8375477 2.4255552, 48.8346793 2.4193483, 48.8684023 2.3502078, 48.8662853 2.3197532, 48.8659622 2.3186038, 48.8679910 2.3372848, 48.8554435 2.3595073, 48.8474970 2.3970587, 48.8372431 2.4025512, 48.8372480 2.4035465, 48.8465303 2.3834704, 48.8463112 2.3834371, 48.8261455 2.3412338, 48.8257113 2.3415668, 48.8537247 2.3438855, 48.8532253 2.3431503, 48.8529019 2.3430541, 48.8528829 2.3425509, 48.8531182 2.3429777, 48.8522343 2.3401016, 48.8502442 2.3485713, 48.8519093 2.3341886, 48.8844724 2.3214773, 48.8421330 2.3862159, 48.8417493 2.3866178, 48.8426501 2.3861170, 48.8410791 2.3878034, 48.8411331 2.3881993, 48.8412077 2.3889160, 48.8510126 2.4018663, 48.8364073 2.3595567, 48.8708308 2.4178082, 48.8325651 2.3114089, 48.8325568 2.3113862, 48.8326373 2.3560872, 48.8326306 2.3560783, 48.8397551 2.3618303, 48.8397407 2.3618144, 48.8430740 2.3643198, 48.8430681 2.3643136, 48.8504321 2.3997456, 48.8504192 2.3990241, 48.8518769 2.4008958, 48.8396241 2.4024373, 48.8517859 2.4015820, 48.8477533 2.3981316, 48.8485668 2.3983079, 48.8512318 2.4017230, 48.8374817 2.3437947, 48.8309119 2.3434856, 48.8284622 2.3428564, 48.8548336 2.3455606, 48.8552512 2.3476157, 48.8553803 2.3476867, 48.8554064 2.3475533, 48.8552816 2.3474675, 48.8316089 2.3555656, 48.8319371 2.3141252, 48.8327575 2.3159370, 48.8317286 2.3137879, 48.8318327 2.3145828, 48.8315258 2.3151731, 48.8315542 2.3147243, 48.8319092 2.3145268, 48.8327180 2.3158597, 48.8327519 2.3161172, 48.8329370 2.3161042, 48.8330455 2.3162946, 48.8332491 2.3170528, 48.8332152 2.3169841, 48.8333903 2.3171214, 48.8340458 2.3163660, 48.8338366 2.3181857, 48.8798940 2.4164508, 48.8362254 2.3224012, 48.8363089 2.3225218, 48.8364089 2.3224024, 48.8324709 2.3200140, 48.8321640 2.3202607, 48.8320698 2.3204689, 48.8324257 2.3207007, 48.8324031 2.3208037, 48.8323749 2.3209067, 48.8514297 2.3722999, 48.8544625 2.3823250, 48.8507756 2.3816053, 48.8558275 2.3755799, 48.8615019 2.3742714, 48.8603556 2.3761167, 48.8611405 2.3748465, 48.8602505 2.3758377, 48.8591024 2.3760107, 48.8491930 2.3705959, 48.8507729 2.3759001, 48.8464081 2.3717860, 48.8840850 2.3374869, 48.8832613 2.3264678, 48.8833347 2.3264334, 48.8833178 2.3262875, 48.8832839 2.3261502, 48.8595820 2.3876147, 48.8592458 2.3868272, 48.8583848 2.3904386, 48.8605667 2.3751425, 48.8614987 2.3729851, 48.8615468 2.3727192, 48.8867306 2.3464815, 48.8663999 2.3328148, 48.8346976 2.3971134, 48.8388270 2.3896712, 48.8390942 2.3895101, 48.8367172 2.3924117, 48.8366661 2.3926576, 48.8366787 2.3933514, 48.8362289 2.3950798, 48.8490892 2.3707721, 48.8603910 2.3760420, 48.8611991 2.3750738, 48.8620210 2.3732276, 48.8637354 2.3705262, 48.8649181 2.3685344, 48.8327416 2.3788209, 48.8835907 2.3332827, 48.8748125 2.3251922, 48.8673311 2.3076664, 48.8390731 2.4174218, 48.8361576 2.4188383, 48.8437046 2.4178928, 48.8453202 2.4234778, 48.8227507 2.4056073, 48.8203310 2.4085683, 48.8219082 2.4130009, 48.8238413 2.4099086, 48.8371199 2.3900909, 48.8561113 2.3406430, 48.8428146 2.3128644, 48.8428238 2.3126866, 48.8687535 2.4330161, 48.8576592 2.4373995, 48.8353914 2.4079102, 48.8199090 2.3593459, 48.8296212 2.3650676, 48.8309699 2.3641295, 48.8293299 2.3654239, 48.8291983 2.3649157, 48.8844475 2.3427325, 48.8833472 2.3495749, 48.8822817 2.3504868, 48.8481405 2.4285935, 48.8285441 2.3803051, 48.8284008 2.3842784, 48.8827033 2.3434430, 48.8822885 2.3414974, 48.8820176 2.3394460, 48.8817974 2.3532647, 48.8771098 2.3551079, 48.8477369 2.3279061, 48.8477318 2.3279086, 48.8252614 2.3574047, 48.8249557 2.3571699, 48.8258127 2.3576619, 48.8217484 2.4144762, 48.8883776 2.3495011, 48.8866559 2.3493852, 48.8192641 2.3597593, 48.8214983 2.3589309, 48.8440901 2.3896786, 48.8432477 2.3892875, 48.8450283 2.3826090, 48.8453967 2.3826032, 48.8463781 2.3796937, 48.8466733 2.3823365, 48.8470342 2.3868537, 48.8469567 2.3869061, 48.8436555 2.3879252, 48.8465001 2.3808215, 48.8466891 2.3824558, 48.8467101 2.3827554, 48.8501888 2.3787984, 48.8508333 2.3797344, 48.8505704 2.3800670, 48.8506115 2.3813881, 48.8494049 2.3783024, 48.8481949 2.3766544, 48.8482849 2.3767134, 48.8502082 2.3780865, 48.8498295 2.3739314, 48.8456109 2.3933509, 48.8410573 2.3873134, 48.8922817 2.3443080, 48.8700107 2.4026455, 48.8896848 2.3792648, 48.8538990 2.3696060, 48.8757902 2.3561915, 48.8745856 2.3876774, 48.8745188 2.3863253, 48.8791100 2.3541841, 48.8791806 2.3542322, 48.8796019 2.3544582, 48.8844476 2.3388182, 48.8872379 2.3326374, 48.8875505 2.3343018, 48.8102599 2.3581802, 48.8544166 2.3926353, 48.8369085 2.4021711, 48.8370521 2.4018326, 48.8345868 2.4005135, 48.8344550 2.4007736, 48.8440435 2.4057776, 48.8436827 2.4056942, 48.8444753 2.4055101, 48.8396803 2.3945209, 48.8400366 2.3946968, 48.8424148 2.4052197, 48.8397862 2.3968956, 48.8368227 2.4037506, 48.8367633 2.4038970, 48.8411703 2.4049568, 48.8368603 2.3917906, 48.8393074 2.3970077, 48.8241006 2.3358465, 48.8843283 2.3861616, 48.8743920 2.3574266, 48.8482696 2.3715140, 48.8844757 2.3382719, 48.8859435 2.3414431, 48.8343080 2.3572209, 48.8492375 2.3711135, 48.8568075 2.3541182, 48.8503975 2.3429508, 48.8602512 2.3502694, 48.8546459 2.3450877, 48.8478582 2.3735429, 48.8483197 2.3742134, 48.8470790 2.3740473, 48.8492375 2.3751897, 48.8448799 2.3727316, 48.8506309 2.3733225, 48.8493959 2.3750250, 48.8495128 2.3751092, 48.8462275 2.3737111, 48.8466535 2.3736929, 48.8484928 2.3740738, 48.8469009 2.3721664, 48.8479197 2.3716692, 48.8461048 2.3740873, 48.8458407 2.3720988, 48.8459184 2.3726478, 48.8484256 2.3742938, 48.8491474 2.3746104, 48.8471402 2.3725177, 48.8490161 2.3747617, 48.8464256 2.3723704, 48.8460157 2.3736299, 48.8476475 2.3732272, 48.8465693 2.3723121, 48.8474806 2.3718625, 48.8470772 2.3727405, 48.8461202 2.3724487, 48.8532023 2.3707747, 48.8539688 2.3699642, 48.8475609 2.3752480, 48.8458613 2.3547220, 48.8462262 2.3548763, 48.8462050 2.3548474, 48.8447140 2.3479947, 48.8445578 2.3478015, 48.8446768 2.3494263, 48.8397766 2.3563951, 48.8439693 2.3547644, 48.8439889 2.3550231, 48.8400361 2.3581380, 48.8403571 2.3507117, 48.8469814 2.3726034, 48.8489233 2.3748786, 48.8460336 2.3725445, 48.8459741 2.3725698, 48.8459507 2.3730386, 48.8458244 2.3719271, 48.8464620 2.3718673, 48.8477030 2.3740290, 48.8473830 2.3423380, 48.8482524 2.3418405, 48.8483010 2.3417712, 48.8472783 2.3856965, 48.8516369 2.3837296, 48.8504806 2.3788351, 48.8447794 2.3825189, 48.8516180 2.4015641, 48.8539136 2.4024675, 48.8539293 2.4000508, 48.8541564 2.4000911, 48.8304077 2.3343316, 48.8478209 2.3770331, 48.8497251 2.3785877, 48.8501253 2.3762844, 48.8477171 2.3873421, 48.8493623 2.3902888, 48.8489954 2.3908138, 48.8497475 2.3788828, 48.8468146 2.3805349, 48.8511987 2.3837123, 48.8442266 2.3492264, 48.8459544 2.3720668, 48.8843315 2.3304472, 48.8310200 2.3347804, 48.8274915 2.3316869, 48.8252128 2.3624715, 48.8251313 2.3623868, 48.8248667 2.3622623, 48.8246283 2.3669508, 48.8281581 2.3663065, 48.8199327 2.3650855, 48.8693591 2.3567215, 48.8687850 2.3594780, 48.8777755 2.4052173, 48.8863208 2.3451631, 48.8864916 2.3449490, 48.8865096 2.3452428, 48.8490479 2.3745263, 48.8486432 2.3745061, 48.8471159 2.3736501, 48.8462167 2.3740567, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8462033 2.3752807, 48.8462167 2.3753959, 48.8460166 2.3767039, 48.8460708 2.3770013, 48.8458957 2.3755864, 48.8458632 2.3752950, 48.8458252 2.3749543, 48.8458024 2.3747494, 48.8457782 2.3745532, 48.8456771 2.3745689, 48.8461276 2.3743237, 48.8465674 2.3746137, 48.8467410 2.3734830, 48.8469550 2.3732669, 48.8469247 2.3730534, 48.8466746 2.3729742, 48.8466393 2.3727596, 48.8470632 2.3766059, 48.8568469 2.3792392, 48.8569719 2.3793107, 48.8574421 2.3793069, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8471014 2.3715594, 48.8472565 2.3708817, 48.8471819 2.3707631, 48.8467280 2.3702882, 48.8467932 2.3690947, 48.8465554 2.3692393, 48.8463534 2.3689294, 48.8465229 2.3686904, 48.8463589 2.3683266, 48.8463083 2.3680521, 48.8460104 2.3669740, 48.8469932 2.3727161, 48.8467819 2.3725108, 48.8459580 2.3724556, 48.8454329 2.3684999, 48.8455779 2.3697051, 48.8456188 2.3700692, 48.8453198 2.3707747, 48.8453260 2.3706140, 48.8456688 2.3707898, 48.8457759 2.3715126, 48.8458427 2.3706835, 48.8457141 2.3704736, 48.8431185 2.3716816, 48.8274146 2.3319952, 48.8269211 2.3322906, 48.8267472 2.3324515, 48.8274542 2.3356985, 48.8260575 2.3569948, 48.8263182 2.3595211, 48.8286985 2.3607276, 48.8308958 2.3768610, 48.8269269 2.3666605, 48.8840058 2.3529245, 48.8374833 2.3535202, 48.8374935 2.3535342, 48.8379005 2.3555967, 48.8379182 2.3556557, 48.8392719 2.3386499, 48.8392465 2.3387222, 48.8382197 2.3418042, 48.8382351 2.3417326, 48.8515184 2.3695612, 48.8500437 2.3697078, 48.8503770 2.3164290, 48.8896403 2.3358780, 48.8717482 2.3408661, 48.8717354 2.3404728, 48.8531236 2.3680462, 48.8529971 2.3680045, 48.8502113 2.3668644, 48.8501724 2.3668483, 48.8500136 2.3667732, 48.8499590 2.3632112, 48.8513238 2.3624304, 48.8526693 2.3608308, 48.8836715 2.3491968, 48.8852026 2.3499755, 48.8852293 2.3471969, 48.8516794 2.3474841, 48.8752261 2.3252146, 48.8768733 2.3217840, 48.8778075 2.3226060, 48.8750824 2.3241658, 48.8756710 2.3261070, 48.8755523 2.3252222, 48.8752761 2.3255792, 48.8752120 2.3251191, 48.8750862 2.3247240, 48.8771445 2.3224363, 48.8756940 2.3269533, 48.8835297 2.3282798, 48.8842985 2.3268322, 48.8838538 2.3270648, 48.8831483 2.3273794, 48.8765103 2.3232267, 48.8795372 2.3214211, 48.8670106 2.4227092, 48.8453387 2.3377568, 48.8504481 2.3735499, 48.8498111 2.3438572, 48.8376830 2.3448082, 48.8516341 2.3471068, 48.8554611 2.3836770, 48.8905909 2.3820031, 48.8566083 2.3533348, 48.8471162 2.4365305, 48.8602357 2.3722066, 48.8474704 2.3718474, 48.8666829 2.3665357, 48.8663510 2.3672959, 48.8658303 2.3698488, 48.8663441 2.3693939, 48.8657851 2.3771616, 48.8665079 2.3800178, 48.8653617 2.3809810, 48.8760867 2.3599561, 48.8829095 2.3591741, 48.8834606 2.3606563, 48.8826329 2.3615224, 48.8854259 2.3538571, 48.8884161 2.3532369, 48.8841015 2.3597869, 48.8874152 2.3671866, 48.8853281 2.3720155, 48.8905441 2.3545731, 48.8902032 2.3626104, 48.8896626 2.3678766, 48.8830418 2.3799420, 48.8839897 2.3776750, 48.8839192 2.3777877, 48.8793674 2.3913866, 48.8570613 2.4225369, 48.8642121 2.3813367, 48.8549764 2.3705401, 48.8563547 2.3050003, 48.8491281 2.3756993, 48.8907340 2.3442268, 48.8482547 2.3739915, 48.8476489 2.3756562, 48.8505462 2.3785256, 48.8495764 2.3778022, 48.8488506 2.3771667, 48.8490151 2.3766595, 48.8493081 2.3747820, 48.8485986 2.3761016, 48.8483197 2.4205769, 48.8466357 2.3723850, 48.8805089 2.3247630, 48.8920861 2.3792943, 48.8922518 2.3794780, 48.8920861 2.3791828, 48.8919041 2.3801340, 48.8906427 2.3820001, 48.8909556 2.3819203, 48.8895378 2.3833861, 48.8795193 2.3372522, 48.8860003 2.3379474, 48.8871034 2.3395432, 48.8872913 2.3493292, 48.8849270 2.3525804, 48.8925222 2.3614454, 48.8681911 2.4172149, 48.8881990 2.3259122, 48.8881036 2.3258701, 48.8551549 2.3558324, 48.8670855 2.3530694, 48.8647563 2.3632147, 48.8775035 2.3271975, 48.8674231 2.3585861, 48.8535530 2.3577268, 48.8847020 2.3249240, 48.8574215 2.3681791, 48.8862612 2.3438540, 48.8548590 2.3685707, 48.8549249 2.3685762, 48.8533482 2.3683534, 48.8531999 2.3682676, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8585847 2.3032822, 48.8570811 2.3046405, 48.8567473 2.3041925, 48.8562200 2.3044115, 48.8560475 2.3045247, 48.8555290 2.3047711, 48.8555382 2.3054236, 48.8553164 2.3055412, 48.8551046 2.3056319, 48.8549906 2.3050099, 48.8547805 2.3051304, 48.8546797 2.3051724, 48.8549635 2.3057177, 48.8547343 2.3058060, 48.8544128 2.3063400, 48.8546400 2.3064825, 48.8546463 2.3053441, 48.8487705 2.3484391, 48.8488367 2.3472494, 48.8454096 2.3428012, 48.8473867 2.3183769, 48.8451686 2.3207087, 48.8759394 2.3585316, 48.8559133 2.3670811, 48.8522230 2.3849242, 48.8525692 2.3830882, 48.8510651 2.3842956, 48.8525445 2.3847726, 48.8463782 2.3799128, 48.8452457 2.3838856, 48.8455904 2.3558120, 48.8381135 2.3571067, 48.8364909 2.3591271, 48.8363055 2.3583190, 48.8239780 2.3622896, 48.8239587 2.3634647, 48.8117115 2.3880896, 48.8368051 2.3525786, 48.8360471 2.3592963, 48.8357999 2.3591086, 48.8444030 2.3753907, 48.8833658 2.3279263, 48.8836330 2.3284520, 48.8839932 2.3218563, 48.8845426 2.3213297, 48.8635971 2.3376992, 48.8412568 2.3561020, 48.8802722 2.3675063, 48.8714048 2.3070491, 48.8346913 2.3085180, 48.8349885 2.3078024, 48.8364186 2.3103935, 48.8375167 2.3079044, 48.8369162 2.3060561, 48.8570345 2.3629840, 48.8549662 2.3612793, 48.8376761 2.3448921, 48.8355075 2.3583356, 48.8354147 2.3582479, 48.8464369 2.3792454, 48.8524629 2.4041332, 48.8475869 2.3900296, 48.8472771 2.3956036, 48.8488604 2.3968465, 48.8483749 2.3994783, 48.8443280 2.3896931, 48.8390850 2.3568747, 48.8584562 2.3550423, 48.8582859 2.3552011, 48.8577895 2.3548000, 48.8575194 2.3544616, 48.8576438 2.3546760, 48.8577293 2.3547383, 48.8578549 2.3549208, 48.8582377 2.3548214, 48.8576530 2.3575640, 48.8586846 2.3536545, 48.8589115 2.3534861, 48.8598365 2.3549664, 48.8602520 2.3534175, 48.8572292 2.3551661, 48.8873012 2.3255264, 48.8956591 2.3766927, 48.8953890 2.3744930, 48.8743118 2.3204772, 48.8138944 2.3912196, 48.8108367 2.3839381, 48.8632334 2.3399229, 48.8463269 2.4174467, 48.8576477 2.3541855, 48.8591132 2.3538810, 48.8844890 2.3447472, 48.8841058 2.3521880, 48.8142568 2.3910625, 48.8343459 2.3060180, 48.8343850 2.3935686, 48.8331731 2.3864450, 48.8330278 2.3862477, 48.8330467 2.3860133, 48.8109531 2.3911089, 48.8105994 2.3914147, 48.8146337 2.3919376, 48.8142465 2.3904242, 48.8345376 2.3968492, 48.8333803 2.3954357, 48.8463967 2.3722583, 48.8468486 2.3717970, 48.8776102 2.3938459, 48.8333091 2.3546040, 48.8493535 2.3714981, 48.8335479 2.3631531, 48.8330119 2.3635033, 48.8322800 2.3612312, 48.8331196 2.3540446, 48.8330807 2.3564517, 48.8329329 2.3563708, 48.8321701 2.3590298, 48.8829327 2.3181031, 48.8609908 2.3480933, 48.8319327 2.3582100, 48.8633934 2.3347841, 48.8651992 2.3333992, 48.8536005 2.3428569, 48.8344171 2.3656055, 48.8330825 2.3614982, 48.8542764 2.3406582, 48.8555347 2.4004378, 48.8554112 2.4000945, 48.8341628 2.3648150, 48.8333280 2.3647429, 48.8332640 2.3561912, 48.8703112 2.3424791, 48.8707741 2.3411912, 48.8705661 2.3420906, 48.8706517 2.3426340, 48.8709334 2.3427566, 48.8556682 2.4008139, 48.8648503 2.4014328, 48.8702685 2.3939738, 48.8584489 2.3792058, 48.8945048 2.3474462, 48.8929338 2.3489373, 48.8919373 2.3499061, 48.8943845 2.3506181, 48.8938805 2.3498536, 48.8953235 2.3467399, 48.8953754 2.3495531, 48.8321364 2.3546768, 48.8305388 2.3568213, 48.8505276 2.3447826, 48.8513045 2.3459712, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8332913 2.3338394, 48.8388048 2.4168757, 48.8379927 2.4176004, 48.8387275 2.4173701, 48.8371907 2.4184718, 48.8375203 2.4169158, 48.8359170 2.3591570, 48.8355997 2.3589131, 48.8353091 2.3587223, 48.8351976 2.3586346, 48.8573507 2.3496668, 48.8323948 2.3645635, 48.8324644 2.3651997, 48.8312654 2.3772757, 48.8243928 2.3770244, 48.8451544 2.3536617, 48.8534095 2.3799147, 48.8565989 2.4064934, 48.8723362 2.3823271, 48.8582851 2.4065730, 48.8257118 2.3749729, 48.8253500 2.3613456, 48.8661377 2.3353287, 48.8384805 2.3113686, 48.8584702 2.3501538, 48.8585293 2.3496680, 48.8594701 2.3526678, 48.8774012 2.4069914, 48.8909128 2.3454738, 48.8916063 2.3445324, 48.8921962 2.3448571, 48.8923204 2.3442537, 48.8902437 2.3476818, 48.8906398 2.3495092, 48.8907675 2.3495020, 48.8923427 2.3461089, 48.8872790 2.3272010, 48.8871654 2.3269257, 48.8861847 2.3270688, 48.8392195 2.3712618, 48.8321878 2.3587424, 48.8842461 2.3613088, 48.8840672 2.3616073, 48.8841745 2.3614072, 48.8882926 2.3599384, 48.8845099 2.3646309, 48.8856332 2.3659515, 48.8920952 2.3613649, 48.8705772 2.3552836, 48.8883041 2.3506540, 48.8883196 2.3501401, 48.8883144 2.3520272, 48.8883763 2.3527059, 48.8886896 2.3559132, 48.8886090 2.3548159, 48.8889395 2.3584021, 48.8890178 2.3582290, 48.8890523 2.3595116, 48.8866144 2.3504214, 48.8858198 2.3551215, 48.8863622 2.3561844, 48.8878527 2.3515748, 48.8872861 2.3561221, 48.8839769 2.3509507, 48.8850544 2.3495979, 48.8857811 2.3496248, 48.8861021 2.3496301, 48.8863490 2.3496462, 48.8876294 2.3496373, 48.8885253 2.3496748, 48.8890580 2.3496748, 48.8887476 2.3496695, 48.8889098 2.3496802, 48.8841020 2.3522661, 48.8840538 2.3519670, 48.8840388 2.3514774, 48.8892343 2.3496802, 48.8896364 2.3496856, 48.8146308 2.3939665, 48.8144158 2.3970444, 48.8121614 2.3920250, 48.8360736 2.3104263, 48.8375411 2.3916661, 48.8794653 2.4161392, 48.8437124 2.4182167, 48.8432691 2.4180076, 48.8406799 2.4177361, 48.8405998 2.4181025, 48.8407538 2.4174120, 48.8540282 2.3047490, 48.8278209 2.3706492, 48.8438654 2.3518035, 48.8847017 2.3493780, 48.8847898 2.3493834, 48.8848569 2.3493834, 48.8852449 2.3493834, 48.8851108 2.3493834, 48.8863243 2.3494209, 48.8860562 2.3494048, 48.8857987 2.3494048, 48.8866171 2.3494388, 48.8873464 2.3494796, 48.8876365 2.3494656, 48.8887125 2.3494781, 48.8889239 2.3494603, 48.8891003 2.3494710, 48.8884971 2.3494495, 48.8880001 2.3494761, 48.8904052 2.3495068, 48.8897932 2.3494533, 48.8892625 2.3494710, 48.8830632 2.3383743, 48.8857316 2.3349375, 48.8857096 2.3352645, 48.8854435 2.3359469, 48.8859008 2.3346803, 48.8853035 2.3363355, 48.8851642 2.3366575, 48.8843335 2.3382618, 48.8886961 2.3390540, 48.8851431 2.3383441, 48.8865032 2.3356719, 48.8885778 2.3354686, 48.8888861 2.3383196, 48.8842610 2.3413414, 48.8845571 2.3411073, 48.8847258 2.3403346, 48.8849081 2.3418344, 48.8895658 2.3377576, 48.8799557 2.3862343, 48.8850086 2.3604185, 48.8907312 2.3639595, 48.8826461 2.3813790, 48.8402359 2.3617231, 48.8944354 2.3403228, 48.8944213 2.3442287, 48.8538840 2.3375740, 48.8837052 2.3395939, 48.8832400 2.3421635, 48.8834792 2.3421669, 48.8839647 2.3413568, 48.8865870 2.3452064, 48.8832262 2.3499505, 48.8846010 2.3470099, 48.8881281 2.3463794, 48.8883520 2.3487355, 48.8869557 2.3324658, 48.8869663 2.3326053, 48.8890733 2.3333345, 48.8903665 2.3341127, 48.8903277 2.3330237, 48.8903732 2.3369030, 48.8916342 2.3355210, 48.8908322 2.3375902, 48.8908023 2.3394033, 48.8910048 2.3400771, 48.8912851 2.3396007, 48.8926693 2.3356185, 48.8928829 2.3373736, 48.8929557 2.3385657, 48.8923455 2.3400044, 48.8904263 2.3404251, 48.8913682 2.3472930, 48.8808823 2.3404014, 48.8804958 2.3402435, 48.8784082 2.3429043, 48.8809016 2.3336730, 48.8801859 2.3312932, 48.8188024 2.3258578, 48.8542757 2.3194575, 48.8570901 2.3152530, 48.8515609 2.3146168, 48.8648840 2.4053930, 48.8695840 2.4023587, 48.8675480 2.4092194, 48.8645440 2.4097670, 48.8678875 2.4087032, 48.8661368 2.4057912, 48.8450873 2.4015561, 48.8455770 2.3958841, 48.8468380 2.4001158, 48.8603661 2.3754100, 48.8833930 2.3812455, 48.8830692 2.3825494, 48.8839003 2.3840684, 48.8478151 2.3161845, 48.8470337 2.3212693, 48.8856788 2.3405124, 48.8534880 2.3040058, 48.8803039 2.3798878, 48.8575059 2.3526422, 48.8605714 2.3454975, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8806821 2.3741833, 48.8806125 2.3769485, 48.8825820 2.3812532, 48.8286167 2.3222750, 48.8291859 2.3226894, 48.8765664 2.4182091, 48.8590672 2.3498178, 48.8695049 2.3065969, 48.8900474 2.3613408, 48.8768016 2.3394255, 48.8768660 2.3356326, 48.8773919 2.3395256, 48.8445390 2.3211809, 48.8305262 2.3381265, 48.8411654 2.3324666, 48.8475509 2.3775378, 48.8259800 2.3574792, 48.8259306 2.3602462, 48.8233030 2.3659003, 48.8246654 2.3631367, 48.8279577 2.3586262, 48.8419264 2.3635292, 48.8236413 2.3615505, 48.8219370 2.3633250, 48.8437079 2.3657319, 48.8563005 2.3020494, 48.8564205 2.3021781, 48.8560717 2.3021776, 48.8569411 2.3035154, 48.8550972 2.3053909, 48.8560924 2.3046935, 48.8567518 2.3043714, 48.8584436 2.3037809, 48.8583176 2.3038374, 48.8586100 2.3037057, 48.8586338 2.3034705, 48.8590703 2.3034761, 48.8615949 2.3022747, 48.8615612 2.3022878, 48.8627174 2.3794641, 48.8671282 2.3756094, 48.8720047 2.3455258, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.8242173 2.3882310, 48.8306926 2.3359923, 48.8248112 2.3677360, 48.8561576 2.4045951, 48.8496002 2.3981379, 48.8541960 2.4019145, 48.8513139 2.3817099, 48.8528829 2.3864220, 48.8524264 2.3887673, 48.8493781 2.3785737, 48.8530453 2.3745559, 48.8479680 2.3710745, 48.8485260 2.3720544, 48.8504050 2.3701018, 48.8517234 2.3993213, 48.8503838 2.3895178, 48.8469782 2.3850371, 48.8652131 2.3628703, 48.8625821 2.3543114, 48.8649450 2.3550985, 48.8646517 2.3565127, 48.8647871 2.3552146, 48.8649151 2.3552894, 48.8646274 2.3569545, 48.8650523 2.3569392, 48.8623935 2.3593935, 48.8530035 2.3827478, 48.8499264 2.3748210, 48.8570725 2.3615477, 48.8239910 2.3632719, 48.8470031 2.3813757, 48.8517886 2.3889465, 48.8523104 2.4012993, 48.8276417 2.3303431, 48.8289443 2.3298857, 48.8289302 2.3293063, 48.8288878 2.3328361, 48.8319530 2.3307976, 48.8647403 2.3667122, 48.8735413 2.3799338, 48.8609931 2.4003293, 48.8719959 2.3774019, 48.8722880 2.3780140, 48.8730352 2.3796739, 48.8448840 2.3824674, 48.8737065 2.3769426, 48.8405555 2.3621060, 48.8402568 2.3634668, 48.8412107 2.3625935, 48.8420852 2.3631705, 48.8419766 2.3631327, 48.8420084 2.3635501, 48.8421166 2.3637562, 48.8431538 2.3637431, 48.8435679 2.3643122, 48.8453908 2.3674378, 48.8454429 2.3715868, 48.8519783 2.3698258, 48.8737979 2.3160522, 48.8737596 2.3158539, 48.8708265 2.3779442, 48.8466424 2.3872245, 48.8463168 2.3872077, 48.8836808 2.4033633, 48.8461025 2.3834255, 48.8485516 2.3780692, 48.8211710 2.3587038, 48.8505179 2.3931013, 48.8841470 2.3223431, 48.8840917 2.3224995, 48.8841654 2.3220842, 48.8794250 2.3337401, 48.8794405 2.3338166, 48.8821959 2.3406004, 48.8430137 2.3209354, 48.8849719 2.3794107, 48.8858346 2.3758518, 48.8734931 2.3899725, 48.8852235 2.3791945, 48.8734321 2.3900290, 48.8861026 2.3764226, 48.8857448 2.3756657, 48.8748438 2.3895179, 48.8857082 2.3756616, 48.8737442 2.3897852, 48.8812335 2.3681216, 48.8314088 2.3488132, 48.8878588 2.3596648, 48.8753301 2.3889995, 48.8204792 2.3667808, 48.8185097 2.3744183, 48.8202218 2.3721389, 48.8217969 2.3688453, 48.8291806 2.3561302, 48.8451034 2.3492462, 48.8472505 2.3480517, 48.8472832 2.3477251, 48.8470809 2.3486565, 48.8553731 2.3435125, 48.8565275 2.3420348, 48.8568716 2.3421327, 48.8563329 2.3422554, 48.8569183 2.3418674, 48.8594652 2.3441791, 48.8577895 2.3468656, 48.8582957 2.3474796, 48.8583659 2.3474922, 48.8584398 2.3475072, 48.8590591 2.3475385, 48.8592361 2.3476099, 48.8592775 2.3476294, 48.8591202 2.3475207, 48.8594544 2.3471922, 48.8595548 2.3473567, 48.8595754 2.3474694, 48.8865040 2.3276000, 48.8551784 2.3460397, 48.8552141 2.3463416, 48.8557679 2.3464388, 48.8538879 2.3474900, 48.8529207 2.3436323, 48.8536129 2.3494706, 48.8542243 2.3500208, 48.8542384 2.3498773, 48.8542020 2.3503178, 48.8600943 2.3451124, 48.8604674 2.3454225, 48.8593562 2.3461342, 48.8594808 2.3467106, 48.8595507 2.3467483, 48.8597005 2.3469841, 48.8599442 2.3474167, 48.8598564 2.3477249, 48.8598395 2.3478001, 48.8603899 2.3475800, 48.8609975 2.3482090, 48.8597051 2.3483832, 48.8599899 2.3488202, 48.8608470 2.3488026, 48.8601724 2.3488956, 48.8603586 2.3484772, 48.8600139 2.3442832, 48.8609295 2.3450073, 48.8612791 2.3423684, 48.8613359 2.3426577, 48.8612560 2.3431916, 48.8613382 2.3448649, 48.8617216 2.3432877, 48.8628456 2.3420046, 48.8639344 2.3425970, 48.8637021 2.3430520, 48.8602965 2.3418540, 48.8588694 2.3415282, 48.8588810 2.3417760, 48.8596955 2.3406333, 48.8608773 2.3423534, 48.8616909 2.3518430, 48.8617494 2.3405457, 48.8617157 2.3404593, 48.8632704 2.3339882, 48.8633059 2.3340632, 48.8628907 2.3351275, 48.8631557 2.3352468, 48.8636678 2.3350046, 48.8637726 2.3355646, 48.8626095 2.3362830, 48.8625470 2.3362555, 48.8624056 2.3372600, 48.8620104 2.3390904, 48.8622902 2.3393649, 48.8620988 2.3398606, 48.8622685 2.3398888, 48.8626050 2.3395217, 48.8620047 2.3412336, 48.8626905 2.3414763, 48.8629625 2.3415806, 48.8177880 2.3249332, 48.8196164 2.3234545, 48.8615068 2.3488951, 48.8611512 2.3495492, 48.8613828 2.3490415, 48.8616954 2.3482560, 48.8619643 2.3491461, 48.8622712 2.3492903, 48.8625411 2.3496651, 48.8625160 2.3495885, 48.8625821 2.3483927, 48.8635373 2.3490562, 48.8631582 2.3498973, 48.8629810 2.3484703, 48.8644969 2.3453886, 48.8633332 2.3460793, 48.8633690 2.3462612, 48.8634242 2.3462790, 48.8641188 2.3464674, 48.8641678 2.3467038, 48.8636473 2.3431563, 48.8640959 2.3415983, 48.8640954 2.3438023, 48.8647135 2.3426384, 48.8648693 2.3427189, 48.8648458 2.3445503, 48.8625475 2.3407883, 48.8629462 2.3411925, 48.8629792 2.3415194, 48.8630681 2.3412176, 48.8634426 2.3400377, 48.8630447 2.3413417, 48.8639239 2.3401572, 48.8634071 2.3418915, 48.8647612 2.3406523, 48.8646538 2.3408552, 48.8659486 2.3400023, 48.8644737 2.3401639, 48.8644890 2.3404697, 48.8655554 2.3403846, 48.8660175 2.3407258, 48.8660668 2.3390095, 48.8661019 2.3389239, 48.8629745 2.3357764, 48.8635380 2.3355250, 48.8650200 2.3366293, 48.8656093 2.3369261, 48.8663099 2.3374684, 48.8664907 2.3376599, 48.8627666 2.3376540, 48.8671663 2.3347590, 48.8645744 2.3350797, 48.8660066 2.3354463, 48.8669921 2.3366321, 48.8669846 2.3362939, 48.8652120 2.3344828, 48.8661000 2.3337438, 48.8660278 2.3340077, 48.8663175 2.3340111, 48.8663930 2.3354840, 48.8663406 2.3354494, 48.8666001 2.3357750, 48.8672190 2.3346698, 48.8646841 2.3338346, 48.8647572 2.3326227, 48.8652752 2.3332993, 48.8666053 2.3338903, 48.8660273 2.3312781, 48.8658325 2.3324895, 48.8658744 2.3325173, 48.8659399 2.3325614, 48.8663779 2.3317318, 48.8669595 2.3323778, 48.8671333 2.3324843, 48.8670401 2.3324272, 48.8673651 2.3318225, 48.8676684 2.3316870, 48.8673997 2.3319574, 48.8674379 2.3324048, 48.8671882 2.3325179, 48.8675087 2.3324647, 48.8676565 2.3320208, 48.8675328 2.3323476, 48.8672699 2.3325679, 48.8674795 2.3326070, 48.8656306 2.3303026, 48.8656453 2.3303694, 48.8669041 2.3315149, 48.8667074 2.3326398, 48.8678727 2.3316533, 48.8680817 2.3307073, 48.8656430 2.3278956, 48.8677297 2.3303206, 48.8676486 2.3245195, 48.8687717 2.3252969, 48.8694746 2.3247589, 48.8690559 2.3243639, 48.8480970 2.3469090, 48.8487505 2.3777984, 48.8503027 2.3774477, 48.8674009 2.3345287, 48.8687712 2.3355475, 48.8742798 2.3760564, 48.8721892 2.3775902, 48.8722280 2.3777350, 48.8722562 2.3773810, 48.8745796 2.3732477, 48.8740584 2.3761419, 48.8741651 2.3760614, 48.8763000 2.3770222, 48.8741821 2.3751159, 48.8744252 2.3738880, 48.8687898 2.3338477, 48.8689710 2.3345642, 48.8496754 2.3496176, 48.8693146 2.3347338, 48.8698110 2.3346634, 48.8696005 2.3358328, 48.8695636 2.3360181, 48.8677601 2.3371944, 48.8677062 2.3374280, 48.8773553 2.3492240, 48.8708415 2.3535560, 48.8690695 2.3343056, 48.8702877 2.3349212, 48.8781128 2.3689171, 48.8703066 2.3348742, 48.8704060 2.3348727, 48.8706992 2.3344564, 48.8706891 2.3340754, 48.8679928 2.3379544, 48.8670925 2.3387264, 48.8690399 2.3387540, 48.8690592 2.3388180, 48.8704283 2.3371521, 48.8712809 2.3371470, 48.8704581 2.3373664, 48.8705949 2.3395281, 48.8714078 2.3378085, 48.8714851 2.3377970, 48.8115398 2.3841166, 48.8121398 2.3863784, 48.8105676 2.3884401, 48.8108414 2.3911974, 48.8692036 2.3392113, 48.8690729 2.3399905, 48.8691872 2.3393294, 48.8693708 2.3397160, 48.8691071 2.3397858, 48.8692514 2.3401242, 48.8626941 2.3877054, 48.8716597 2.3407937, 48.8717230 2.3394983, 48.8716938 2.3397200, 48.8716249 2.3410422, 48.8717356 2.3405719, 48.8717946 2.3395399, 48.8696799 2.3415731, 48.8697491 2.3403685, 48.8696136 2.3403891, 48.8695691 2.3402609, 48.8688297 2.3421626, 48.8686859 2.3420376, 48.8675928 2.3409167, 48.8664997 2.3400225, 48.8686652 2.3421761, 48.8672176 2.3404674, 48.8687628 2.3297223, 48.8688935 2.3334536, 48.8704135 2.3318678, 48.8700309 2.3292678, 48.8685956 2.3322485, 48.8689537 2.3327977, 48.8689050 2.3327814, 48.8702717 2.3306225, 48.8690262 2.3325457, 48.8691969 2.3433101, 48.8698000 2.3425335, 48.8687745 2.3432434, 48.8662163 2.3412156, 48.8667156 2.3435590, 48.8671729 2.3441962, 48.8666678 2.3411775, 48.8652915 2.3440961, 48.8654099 2.3443331, 48.8707568 2.3429733, 48.8676499 2.3455667, 48.8441325 2.3546669, 48.8444395 2.3549581, 48.8448060 2.3546073, 48.8445996 2.3549442, 48.8449061 2.3551595, 48.8457867 2.3553999, 48.8705191 2.3428655, 48.8709276 2.3429934, 48.8704558 2.3474977, 48.8706525 2.3468928, 48.8674968 2.3472550, 48.8674306 2.3462505, 48.8766283 2.3394115, 48.8668920 2.3473928, 48.8645135 2.3468506, 48.8654683 2.3468972, 48.8646153 2.3468169, 48.8660916 2.3526753, 48.8657334 2.3566710, 48.8666598 2.3498307, 48.8667885 2.3495539, 48.8645295 2.3512403, 48.8647371 2.3502921, 48.8650900 2.3505466, 48.8639502 2.3511027, 48.8648587 2.3516262, 48.8644149 2.3508382, 48.8625665 2.3522237, 48.8684235 2.3536158, 48.8680177 2.3532845, 48.8677443 2.3535117, 48.8686982 2.3541762, 48.8670418 2.3496240, 48.8683427 2.3501494, 48.8685043 2.3498910, 48.8681440 2.3484373, 48.8696741 2.3519506, 48.8641253 2.3698504, 48.8127956 2.3610646, 48.8146549 2.3613384, 48.8700666 2.3501189, 48.8704497 2.3486046, 48.8701362 2.3501207, 48.8704075 2.3483529, 48.8703899 2.3484689, 48.8521023 2.3568721, 48.8518091 2.3568234, 48.8518760 2.3566725, 48.8518531 2.3567202, 48.8515139 2.3573256, 48.8520260 2.3557283, 48.8447284 2.3419203, 48.8425031 2.3446224, 48.8095766 2.3626796, 48.8519507 2.3561108, 48.8527730 2.3537103, 48.8514200 2.3437555, 48.8515128 2.3437930, 48.8529293 2.3446424, 48.8521424 2.3569051, 48.8523186 2.3568760, 48.8530396 2.3537559, 48.8558532 2.3515975, 48.8563139 2.3504798, 48.8612900 2.3499825, 48.8615937 2.3514953, 48.8595402 2.3527444, 48.8614606 2.3537904, 48.8613508 2.3533982, 48.8612937 2.3537009, 48.8613539 2.3526643, 48.8593262 2.3559033, 48.8558397 2.3555062, 48.8914586 2.3497646, 48.8276950 2.3526554, 48.8544169 2.3554757, 48.8555040 2.3574259, 48.8560190 2.3572778, 48.8560559 2.3572415, 48.8560141 2.3571788, 48.8563329 2.3553132, 48.8834373 2.3324889, 48.8590577 2.3501929, 48.8595433 2.3489177, 48.8575096 2.3479041, 48.8593929 2.3493115, 48.8583173 2.3517204, 48.8577035 2.3502326, 48.8595480 2.3490548, 48.8573638 2.3512963, 48.8590250 2.3503203, 48.8583244 2.3499582, 48.8591774 2.3488521, 48.8589164 2.3485650, 48.8592685 2.3488863, 48.8591081 2.3500160, 48.8600408 2.3499857, 48.8616594 2.3501884, 48.8617621 2.3502461, 48.8597261 2.3540740, 48.8591328 2.3525765, 48.8824587 2.3401820, 48.8794020 2.3884400, 48.8796442 2.3890696, 48.8795960 2.3896580, 48.8600862 2.3565927, 48.8605623 2.3551334, 48.8560385 2.4049110, 48.8605425 2.4091699, 48.8256891 2.3501301, 48.8296848 2.3541069, 48.8278037 2.3523028, 48.8268925 2.3513505, 48.8274198 2.3518171, 48.8533299 2.3424383, 48.8119106 2.3570184, 48.8572208 2.3551092, 48.8571117 2.3550358, 48.8571384 2.3549764, 48.8571292 2.3541619, 48.8572463 2.3550135, 48.8570142 2.3541389, 48.8568296 2.3551652, 48.8569458 2.3554337, 48.8271315 2.3323734, 48.8274828 2.3325351, 48.8638719 2.3519655, 48.8646409 2.3536613, 48.8635758 2.3531607, 48.8636089 2.3534360, 48.8640159 2.3502075, 48.8640570 2.3503760, 48.8641785 2.3510736, 48.8581626 2.3561038, 48.8599753 2.3568642, 48.8596070 2.3565697, 48.8595500 2.3565735, 48.8577487 2.3576815, 48.8579512 2.3567221, 48.8577587 2.3558712, 48.8564037 2.3572215, 48.8573858 2.3575923, 48.8569706 2.3578174, 48.8570944 2.3576266, 48.8573873 2.3589592, 48.8567788 2.3558116, 48.8575151 2.3587307, 48.8586071 2.3585283, 48.8580313 2.3580479, 48.8574097 2.3590501, 48.8422251 2.3519017, 48.8422550 2.3522128, 48.8433232 2.3528098, 48.8633842 2.3464893, 48.8256293 2.3483441, 48.8259202 2.3471664, 48.8257885 2.3477809, 48.8569391 2.3587226, 48.8562824 2.3592731, 48.8562386 2.3592343, 48.8558049 2.3600410, 48.8402209 2.3517797, 48.8555549 2.3612781, 48.8559169 2.3603985, 48.8411303 2.3546717, 48.8549508 2.3624309, 48.8556266 2.3621786, 48.8563675 2.3643268, 48.8554988 2.3630222, 48.8549153 2.3623782, 48.8550149 2.3631694, 48.8565540 2.3642255, 48.8553861 2.3625173, 48.8556083 2.3627374, 48.8553790 2.3625438, 48.8552888 2.3629682, 48.8553171 2.3630156, 48.8552064 2.3625817, 48.8552557 2.3616146, 48.8557023 2.3630589, 48.8552125 2.3615428, 48.8555544 2.3581927, 48.8549470 2.3612543, 48.8557611 2.3570094, 48.8556412 2.3606593, 48.8451155 2.4345033, 48.8260343 2.3476244, 48.8538346 2.3644665, 48.8540797 2.3659063, 48.8538463 2.3645345, 48.8540284 2.3650261, 48.8562566 2.3646932, 48.8539723 2.3672909, 48.8549472 2.3633131, 48.8537619 2.3675235, 48.8538720 2.3672376, 48.8549776 2.3673407, 48.8540510 2.3686163, 48.8538949 2.3685489, 48.8540837 2.3685677, 48.8542760 2.3691388, 48.8543409 2.3691660, 48.8416734 2.3481104, 48.8398659 2.3475405, 48.8540659 2.3616249, 48.8549238 2.3592860, 48.8554369 2.3580795, 48.8554539 2.3579276, 48.8548402 2.3583739, 48.8551687 2.3602451, 48.8543977 2.3599670, 48.8540729 2.3612004, 48.8508419 2.3621258, 48.8513526 2.3628780, 48.8521583 2.3613070, 48.8525480 2.3641850, 48.8527075 2.3633017, 48.8532015 2.3640647, 48.8544815 2.3628958, 48.8536886 2.3643812, 48.8545334 2.3627527, 48.8542200 2.3635016, 48.8542835 2.3633155, 48.8539861 2.3622411, 48.8532791 2.3664896, 48.8521321 2.3650946, 48.8519412 2.3645366, 48.8521775 2.3663665, 48.8507856 2.3671256, 48.8507596 2.3670235, 48.8498781 2.3644772, 48.8477690 2.3654853, 48.8629367 2.3522066, 48.8621665 2.3511124, 48.8626959 2.3521061, 48.8622789 2.3510860, 48.8619134 2.3509953, 48.8621524 2.3537603, 48.8659461 2.3533729, 48.8657000 2.3535311, 48.8650633 2.3535236, 48.8650455 2.3535907, 48.8652453 2.3533870, 48.8659520 2.3532863, 48.8647008 2.3554661, 48.8650917 2.3557671, 48.8671336 2.3577810, 48.8657064 2.3565852, 48.8659826 2.3540443, 48.8643855 2.3550009, 48.8645093 2.3542545, 48.8644586 2.3544256, 48.8644805 2.3545447, 48.8646620 2.3539239, 48.8644591 2.3546214, 48.8679243 2.3618751, 48.8682730 2.3614921, 48.8678851 2.3621385, 48.8674036 2.3627826, 48.8669898 2.3620443, 48.8832515 2.3879250, 48.8830654 2.3856822, 48.8517088 2.3431054, 48.8667033 2.3609857, 48.8667188 2.3611850, 48.8673544 2.3583696, 48.8674734 2.3577982, 48.8667351 2.3612430, 48.8658122 2.3570399, 48.8656157 2.3570603, 48.8609575 2.3483442, 48.8607500 2.3491700, 48.8658006 2.3578626, 48.8660231 2.3581385, 48.8664919 2.3600081, 48.8662353 2.3610229, 48.8723040 2.3535120, 48.8661285 2.3594408, 48.8655917 2.3595983, 48.8651109 2.3571532, 48.8649701 2.3570435, 48.8751228 2.3939970, 48.8777176 2.3937456, 48.8724707 2.3776998, 48.8717657 2.3765997, 48.8714128 2.3768852, 48.8189632 2.3613966, 48.8208495 2.3637354, 48.8235845 2.3656863, 48.8262413 2.3615997, 48.8232934 2.3654521, 48.8237603 2.3652263, 48.8518893 2.3417124, 48.8516010 2.3437321, 48.8511469 2.3428392, 48.8508150 2.3422269, 48.8530176 2.3445259, 48.8644851 2.3569256, 48.8521687 2.3444775, 48.8609387 2.3545725, 48.8609056 2.3546714, 48.8613715 2.3542463, 48.8614471 2.3583969, 48.8628432 2.3600037, 48.8637749 2.3607964, 48.8638993 2.3606178, 48.8636674 2.3608969, 48.8635375 2.3610562, 48.8652895 2.3605043, 48.8656120 2.3608400, 48.8649528 2.3628140, 48.8648961 2.3629259, 48.8658753 2.3611105, 48.8652889 2.3632073, 48.8665805 2.3619623, 48.8651842 2.3631892, 48.8647607 2.3633251, 48.8660249 2.3647181, 48.8664891 2.3643204, 48.8662147 2.3645043, 48.8663091 2.3639231, 48.8663722 2.3641412, 48.8636551 2.3631224, 48.8516511 2.3354386, 48.8517582 2.3381629, 48.8463274 2.3476351, 48.8533184 2.3416729, 48.8704217 2.3232384, 48.8632446 2.3614945, 48.8633001 2.3620149, 48.8632099 2.3622012, 48.8636998 2.3626132, 48.8626425 2.3632356, 48.8626516 2.3633443, 48.8625213 2.3635276, 48.8630524 2.3640855, 48.8621296 2.3644112, 48.8620957 2.3644902, 48.8621981 2.3629228, 48.8617499 2.3623904, 48.8622881 2.3631634, 48.8612625 2.3644482, 48.8620347 2.3635571, 48.8622670 2.3635372, 48.8619291 2.3641444, 48.8639888 2.3639782, 48.8645550 2.3645938, 48.8615020 2.3620520, 48.8604574 2.3618940, 48.8792700 2.3844462, 48.8785891 2.3856103, 48.8810145 2.3891669, 48.8449381 2.3496655, 48.8465258 2.3513354, 48.8594649 2.3600214, 48.8598192 2.3606888, 48.8602716 2.3621222, 48.8577749 2.3606479, 48.8590981 2.3594568, 48.8583524 2.3594541, 48.8639803 2.3651991, 48.8520518 2.3465211, 48.8516494 2.3469103, 48.8526479 2.3470482, 48.8488337 2.3480608, 48.8621350 2.3667173, 48.8615090 2.3660863, 48.8614452 2.3647591, 48.8609593 2.3669247, 48.8617960 2.3778943, 48.8624536 2.3800165, 48.8590822 2.3674570, 48.8575642 2.3677839, 48.8560432 2.3669557, 48.8840145 2.3317743, 48.8800693 2.3538016, 48.8559327 2.3681748, 48.8942160 2.3873171, 48.8658583 2.3522098, 48.8630587 2.3508787, 48.8542244 2.3561302, 48.8590889 2.3486591, 48.8605292 2.3572991, 48.8562137 2.3535054, 48.8580180 2.3499733, 48.8496476 2.3511453, 48.8494771 2.3555409, 48.8443855 2.3606510, 48.8495427 2.3537859, 48.8495364 2.3666202, 48.8544692 2.3379604, 48.8620353 2.3503145, 48.8612709 2.3498777, 48.8525082 2.3679448, 48.8552582 2.3605246, 48.8635347 2.3512387, 48.8630803 2.3510377, 48.8609783 2.3810776, 48.8542985 2.3783997, 48.8421221 2.3217245, 48.8881390 2.3534840, 48.8871861 2.3533770, 48.8476074 2.3428362, 48.8643899 2.3635207, 48.8718710 2.3683060, 48.8848656 2.3830530, 48.8827367 2.3814655, 48.8716043 2.3645626, 48.8694570 2.3635710, 48.8468855 2.3408953, 48.8636510 2.3505320, 48.8107198 2.3845021, 48.8103452 2.3853505, 48.8107593 2.3865273, 48.8105464 2.3862937, 48.8101027 2.3896175, 48.8099429 2.3893929, 48.8139661 2.3907253, 48.8592743 2.3796462, 48.8589937 2.3814395, 48.8625209 2.3796607, 48.8618044 2.3781115, 48.8470420 2.3413880, 48.8471180 2.3410080, 48.8470620 2.3413100, 48.8474500 2.3412160, 48.8513211 2.3556751, 48.8575593 2.3848465, 48.8459422 2.3434742, 48.8630735 2.3791446, 48.8629401 2.3792630, 48.8628392 2.3793646, 48.8478202 2.3402069, 48.8406646 2.3219283, 48.8409458 2.3211307, 48.8418918 2.3218739, 48.8420110 2.3206428, 48.8422162 2.3202513, 48.8438796 2.3245430, 48.8521680 2.3314230, 48.8571890 2.3477470, 48.8566870 2.3553310, 48.8447287 2.3244719, 48.8479918 2.3275469, 48.8428059 2.3239714, 48.8549793 2.3291241, 48.8427198 2.3420521, 48.8805625 2.3348575, 48.8813024 2.3361254, 48.8643222 2.3548396, 48.8644140 2.3547850, 48.8687006 2.3354843, 48.8382008 2.3515664, 48.8786073 2.3705829, 48.8796835 2.3722606, 48.8688813 2.3296955, 48.8701022 2.3301353, 48.8689120 2.3292609, 48.8644425 2.3302320, 48.8640110 2.3357070, 48.8699070 2.3321250, 48.8845820 2.3333830, 48.8855760 2.3346400, 48.8860180 2.3351210, 48.8861637 2.3381011, 48.8819220 2.3375560, 48.8651140 2.3778720, 48.8821123 2.3666359, 48.8789675 2.3644250, 48.8790715 2.3649117, 48.8792180 2.3665493, 48.8820420 2.3678327, 48.8820491 2.3660464, 48.8816895 2.3656251, 48.8818956 2.3658787, 48.8779726 2.3655032, 48.8782055 2.3656749, 48.8788300 2.3662059, 48.8809308 2.3651881, 48.8812888 2.3651008, 48.8808303 2.3650793, 48.8814582 2.3647576, 48.8812021 2.3647160, 48.8807422 2.3649558, 48.8801571 2.3666317, 48.8800594 2.3668295, 48.8815137 2.3659229, 48.8777011 2.3652544, 48.8803699 2.3667330, 48.8831690 2.3710377, 48.8817976 2.3657678, 48.8815272 2.3646569, 48.8813513 2.3657268, 48.8808723 2.3646162, 48.8811695 2.3646071, 48.8760311 2.3700774, 48.8610786 2.3535904, 48.8615010 2.3537550, 48.8394781 2.3518278, 48.8416802 2.3556271, 48.8417641 2.3556159, 48.8411075 2.3561671, 48.8411617 2.3562621, 48.8430777 2.3636948, 48.8429787 2.3633417, 48.8419172 2.3589420, 48.8359676 2.3585104, 48.8400778 2.3373997, 48.8392433 2.3391037, 48.8520344 2.3993968, 48.8803135 2.3898477, 48.8801882 2.3901266, 48.8802834 2.3902661, 48.8811978 2.3776297, 48.8420207 2.3411311, 48.8643474 2.3548457, 48.8643090 2.3532130, 48.8642700 2.3531320, 48.8413087 2.3389738, 48.8413263 2.3391080, 48.8382571 2.3458273, 48.8883530 2.3917794, 48.8864637 2.3771916, 48.8536730 2.3797768, 48.8398800 2.3609348, 48.8373167 2.3491914, 48.8480846 2.3334838, 48.8455093 2.3329557, 48.8451543 2.3325456, 48.8475334 2.3382332, 48.8474672 2.3379586, 48.8474379 2.3363959, 48.8335617 2.3141734, 48.8370268 2.3124692, 48.8336111 2.3147957, 48.8335546 2.3150800, 48.8767367 2.4093454, 48.8854169 2.3658931, 48.8852688 2.3676204, 48.8694004 2.3648970, 48.8321125 2.3499256, 48.8329194 2.3512077, 48.8238740 2.3180838, 48.8326598 2.3800230, 48.8566054 2.3397822, 48.8577157 2.3371252, 48.8632105 2.3998501, 48.8618768 2.4014860, 48.8645112 2.3981788, 48.8647595 2.3990532, 48.8627531 2.4005845, 48.8671314 2.3577761, 48.8668458 2.3586800, 48.8668914 2.3584627, 48.8670160 2.3581568, 48.8670538 2.3582562, 48.8668315 2.3590233, 48.8662871 2.3578056, 48.8668006 2.3582106, 48.8664997 2.3601015, 48.8680162 2.3548820, 48.8667335 2.3540236, 48.8647030 2.3567983, 48.8647921 2.3568339, 48.8643639 2.3541873, 48.8668939 2.3583012, 48.8668657 2.3585775, 48.8774636 2.3705618, 48.8775915 2.3706404, 48.8780661 2.3700636, 48.8543308 2.3402565, 48.8537741 2.3390379, 48.8536188 2.3393161, 48.8551444 2.3395098, 48.8782580 2.3987300, 48.8572964 2.3373427, 48.8576139 2.3354110, 48.8533950 2.3355231, 48.8533506 2.3334547, 48.8546132 2.3335075, 48.8546432 2.3327719, 48.8546484 2.3333477, 48.8533032 2.3340213, 48.8521594 2.3307743, 48.8529586 2.3360296, 48.8516089 2.3354609, 48.8516697 2.3388251, 48.8519539 2.3394857, 48.8491904 2.3391833, 48.8494085 2.3375661, 48.8494338 2.3377819, 48.8476948 2.3714376, 48.8575400 2.3362149, 48.8576071 2.3358845, 48.8480587 2.3392944, 48.8489183 2.3392705, 48.8477108 2.3407718, 48.8481339 2.3411979, 48.8801119 2.3535250, 48.8688629 2.3592316, 48.8703048 2.3508014, 48.8790233 2.3543823, 48.8796462 2.3557937, 48.8709985 2.3535865, 48.8590770 2.3279978, 48.8756316 2.3991077, 48.8455626 2.3726390, 48.8511931 2.3304049, 48.8506265 2.3304803, 48.8487297 2.3287519, 48.8485082 2.3285161, 48.8508230 2.3279333, 48.8514421 2.3272954, 48.8502811 2.3276257, 48.8508389 2.3266905, 48.8516407 2.3251860, 48.8551090 2.3306870, 48.8698923 2.3755947, 48.8487629 2.3975462, 48.8685624 2.3685743, 48.8503580 2.3831342, 48.8690249 2.3683671, 48.8568213 2.3685042, 48.8469960 2.3301669, 48.8427653 2.3300120, 48.8426139 2.3298989, 48.8439265 2.3302977, 48.8469707 2.3323837, 48.8466468 2.3323592, 48.8447355 2.3323563, 48.8406025 2.3362353, 48.8425197 2.3348793, 48.8426574 2.3347286, 48.8426551 2.3348501, 48.8416922 2.3314753, 48.8416177 2.3314774, 48.8396688 2.3373962, 48.8418958 2.3302251, 48.8419379 2.3304718, 48.8420145 2.3302544, 48.8827520 2.3817592, 48.8863301 2.3709574, 48.8904247 2.3760144, 48.8944147 2.3812747, 48.8899953 2.3754730, 48.8422661 2.3280738, 48.8424306 2.3290349, 48.8699280 2.3499165, 48.8651036 2.3570995, 48.8632239 2.3566007, 48.8440612 2.3225950, 48.8438384 2.3223092, 48.8433918 2.3244608, 48.8471137 2.3267431, 48.8442156 2.3244262, 48.8485184 2.3248051, 48.8489974 2.3252251, 48.8473682 2.3262422, 48.8460135 2.3197443, 48.8469097 2.3213077, 48.8499302 2.3238399, 48.8685290 2.3895370, 48.8709269 2.3577774, 48.8707153 2.3567140, 48.8367623 2.3463790, 48.8570290 2.3204791, 48.8391455 2.3957152, 48.8180996 2.3286545, 48.8443992 2.3820174, 48.8478715 2.3198313, 48.8477564 2.3193946, 48.8467204 2.3172126, 48.8469920 2.3172024, 48.8473522 2.3183754, 48.8816033 2.3884873, 48.8321351 2.3486444, 48.8313804 2.3480743, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8564288 2.3346389, 48.8467363 2.3268420, 48.8473592 2.3309027, 48.8530169 2.3313456, 48.8513553 2.3348681, 48.8558131 2.3388661, 48.8521220 2.3374608, 48.8555910 2.3384582, 48.8556378 2.3385568, 48.8537453 2.3365413, 48.8557427 2.3387366, 48.8534529 2.3385450, 48.8691076 2.3112127, 48.8293608 2.3803043, 48.8296767 2.3796195, 48.8299075 2.3795677, 48.8299220 2.3787029, 48.8296558 2.3789838, 48.8701795 2.3108738, 48.8701112 2.3111019, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8673734 2.3222301, 48.8643001 2.3323292, 48.8695610 2.3204803, 48.8693756 2.3206236, 48.8705692 2.3211241, 48.8701399 2.3208052, 48.8706806 2.3211802, 48.8703312 2.3232727, 48.8714664 2.3224733, 48.8711649 2.3221410, 48.8079896 2.3576969, 48.8086083 2.3629931, 48.8413457 2.3655792, 48.8712520 2.3169520, 48.8712577 2.3176917, 48.8729875 2.3210140, 48.8727654 2.3210286, 48.8731588 2.3180736, 48.8726568 2.3215983, 48.8726629 2.3106385, 48.8727071 2.3105863, 48.8703638 2.3102774, 48.8723435 2.3099599, 48.8727117 2.3106761, 48.8725939 2.3104452, 48.8723529 2.3102456, 48.8714188 2.3150011, 48.8806819 2.3876000, 48.8732419 2.3115596, 48.8737653 2.3157653, 48.8740832 2.3160181, 48.8728071 2.3158911, 48.8738587 2.3163169, 48.8729521 2.3158478, 48.8740946 2.3177657, 48.8737509 2.3196440, 48.8744903 2.3184375, 48.8744495 2.3205466, 48.8755838 2.3199456, 48.8750678 2.3201909, 48.8396584 2.3567615, 48.8397067 2.3568218, 48.8776040 2.3524312, 48.8738325 2.3224396, 48.8735529 2.3223447, 48.8736367 2.3223675, 48.8712562 2.3235785, 48.8734665 2.3242182, 48.8713058 2.3233311, 48.8732551 2.3241335, 48.8729576 2.3236844, 48.8713495 2.3232715, 48.8726217 2.3262164, 48.8722237 2.3257923, 48.8731505 2.3255205, 48.8724761 2.3240966, 48.8721839 2.3251685, 48.8719895 2.3260176, 48.8279138 2.3225247, 48.8832583 2.3346263, 48.8832465 2.3341658, 48.8831954 2.3348376, 48.8842151 2.3311538, 48.8830070 2.3349691, 48.8833032 2.3455032, 48.8841705 2.3313488, 48.8826156 2.3432538, 48.8834306 2.3335452, 48.8841164 2.3315750, 48.8824079 2.3419280, 48.8834666 2.3339320, 48.8831738 2.3344061, 48.8821954 2.3389929, 48.8836632 2.3332864, 48.8831695 2.3452574, 48.8824739 2.3367661, 48.8829388 2.3356827, 48.8831317 2.3458945, 48.8843696 2.3305004, 48.8842302 2.3305121, 48.8826517 2.3426287, 48.8827762 2.3362216, 48.8839947 2.3320999, 48.8842717 2.3309204, 48.8824891 2.3425994, 48.8830995 2.3449030, 48.8829578 2.3351297, 48.8832939 2.3340079, 48.8830087 2.3354500, 48.8840806 2.3311362, 48.8827159 2.3359415, 48.8828527 2.3354881, 48.8840902 2.3316931, 48.8911573 2.3437849, 48.8841548 2.3308314, 48.8839884 2.3315392, 48.8827419 2.3443694, 48.8824955 2.3419279, 48.8842291 2.3288540, 48.8840681 2.3286855, 48.8841801 2.3289398, 48.8859483 2.3285578, 48.8851713 2.3293553, 48.8461325 2.3412680, 48.8674254 2.3444285, 48.8744933 2.3211100, 48.8756119 2.3237102, 48.8743886 2.3211490, 48.8746980 2.3252714, 48.8750673 2.3239545, 48.8751646 2.3250295, 48.8753759 2.3236510, 48.8748826 2.3266542, 48.8752230 2.3264851, 48.8753241 2.3259291, 48.8752570 2.3254427, 48.8741256 2.3249605, 48.8740876 2.3267342, 48.8741599 2.3254911, 48.8741556 2.3274201, 48.8759721 2.3267452, 48.8741206 2.3250025, 48.8742483 2.3248090, 48.8780124 2.3180149, 48.8761914 2.3213046, 48.8754293 2.3236426, 48.8758310 2.3206114, 48.8769049 2.3214132, 48.8760259 2.3235129, 48.8765466 2.3235471, 48.8762683 2.3234720, 48.8778017 2.3225743, 48.8771550 2.3220451, 48.8869689 2.3475030, 48.8604478 2.3444956, 48.8777590 2.3228786, 48.8803557 2.3235567, 48.8801220 2.3241052, 48.8776805 2.3267977, 48.8778520 2.3265712, 48.8770026 2.3270417, 48.8796202 2.3268466, 48.8785701 2.3268262, 48.8797765 2.3268873, 48.8794888 2.3267113, 48.8766444 2.3270121, 48.8797413 2.3271672, 48.8830756 2.3269207, 48.8831176 2.3264261, 48.8820671 2.3242802, 48.8821564 2.3257619, 48.8808916 2.3244418, 48.8807077 2.3245325, 48.8835944 2.3283960, 48.8833162 2.3276704, 48.8832767 2.3277563, 48.8834770 2.3281748, 48.8837504 2.3286298, 48.8840835 2.3286332, 48.8834171 2.3280471, 48.8836441 2.3266599, 48.8833400 2.3254009, 48.8829218 2.3256282, 48.8829212 2.3254797, 48.8831342 2.3236837, 48.8830214 2.3238111, 48.8801277 2.3203119, 48.8793007 2.3221454, 48.8796822 2.3216553, 48.8799079 2.3202876, 48.8798173 2.3215782, 48.8799360 2.3212877, 48.8805205 2.3183206, 48.8813689 2.3170128, 48.8810818 2.3162341, 48.8799932 2.3179419, 48.8779762 2.3183300, 48.8786152 2.3156839, 48.8798040 2.3153072, 48.8785087 2.3157093, 48.8778652 2.3158506, 48.8223980 2.3278952, 48.8794469 2.3138767, 48.8769627 2.3148350, 48.8791820 2.3141155, 48.8766669 2.3130694, 48.8767157 2.3178938, 48.8767711 2.3179268, 48.8753406 2.3169637, 48.8749225 2.3191966, 48.8754098 2.3151509, 48.8749869 2.3172752, 48.8749238 2.3194549, 48.8752650 2.3165061, 48.8558538 2.3252896, 48.8738521 2.3147064, 48.8225465 2.3277499, 48.8751556 2.3094294, 48.8749212 2.3089779, 48.8731957 2.3115713, 48.8188018 2.3371410, 48.8733445 2.3091989, 48.8745431 2.3093666, 48.8237172 2.3265140, 48.8477369 2.3121791, 48.8496728 2.3082844, 48.8185040 2.3384113, 48.8181578 2.3401279, 48.8221841 2.3293882, 48.8729879 2.3074334, 48.8724450 2.3072214, 48.8700986 2.3070512, 48.8699553 2.3082890, 48.8707572 2.3085752, 48.8696331 2.3067786, 48.8707001 2.3083322, 48.8694349 2.3074180, 48.8703856 2.3070023, 48.8715518 2.3062553, 48.8715784 2.3063992, 48.8715219 2.3073286, 48.8713131 2.3073190, 48.8629714 2.3463765, 48.8666488 2.3440729, 48.8708475 2.3057806, 48.8674712 2.3054788, 48.8657528 2.3040463, 48.8669256 2.3076130, 48.8668818 2.3076173, 48.8672769 2.3062806, 48.8670111 2.3076126, 48.8313695 2.3205695, 48.8770626 2.3411440, 48.8229279 2.3305939, 48.8602188 2.3423098, 48.8613591 2.3400077, 48.8583933 2.3023795, 48.8723302 2.3781841, 48.8675571 2.3965533, 48.8689212 2.3954887, 48.8697942 2.3944982, 48.8711155 2.4001775, 48.8716186 2.4041500, 48.8727345 2.3796635, 48.8706337 2.3954670, 48.8713425 2.4039078, 48.8710202 2.3789233, 48.8788328 2.3896914, 48.8600728 2.4041262, 48.8526933 2.4056082, 48.8597085 2.4049673, 48.8583918 2.4006119, 48.8448202 2.3293072, 48.8433715 2.3266113, 48.8370007 2.3812275, 48.8646790 2.4054480, 48.8461742 2.4105318, 48.8465849 2.4113407, 48.8648400 2.4152310, 48.8646770 2.3992490, 48.8819322 2.3258693, 48.8159221 2.3770557, 48.8697412 2.3069468, 48.8701205 2.3072750, 48.8698436 2.3061758, 48.8694849 2.3077729, 48.8696809 2.3071292, 48.8699522 2.3058242, 48.8704110 2.3068932, 48.8384390 2.3511134, 48.8382008 2.3505003, 48.8382672 2.3505293, 48.8382699 2.3505108, 48.8378958 2.3507127, 48.8377870 2.3508117, 48.8378105 2.3508549, 48.8891960 2.3333376, 48.8893758 2.3334530, 48.8375022 2.3543890, 48.8390096 2.3532786, 48.8389834 2.3506256, 48.8386419 2.3508748, 48.8930467 2.3394449, 48.8799166 2.3359231, 48.8389664 2.3530576, 48.8384933 2.3512141, 48.8382170 2.3510056, 48.8379492 2.3512092, 48.8376898 2.3513509, 48.8378570 2.3515198, 48.8376483 2.3516414, 48.8204882 2.3602086, 48.8203447 2.3628121, 48.8199857 2.3627088, 48.8199140 2.3618618, 48.8202391 2.3951491, 48.8191259 2.3966796, 48.8339810 2.3847461, 48.8373832 2.3826403, 48.8353141 2.3838347, 48.8397720 2.3826569, 48.8352990 2.3814978, 48.8415341 2.3497282, 48.8135137 2.3767015, 48.8108413 2.3796908, 48.8158317 2.3769711, 48.8614760 2.3530830, 48.8604416 2.3503543, 48.8598478 2.3513855, 48.8139181 2.3758182, 48.8737994 2.3354968, 48.8824947 2.3773446, 48.8885223 2.3927021, 48.8884941 2.3926163, 48.8885364 2.3928738, 48.8885830 2.3930712, 48.8886258 2.3931229, 48.8888115 2.3939896, 48.8233195 2.3476283, 48.8557793 2.4084458, 48.8935929 2.3994808, 48.8189768 2.3657077, 48.8234454 2.3709722, 48.8227762 2.3624835, 48.8214034 2.3722415, 48.8207003 2.3640557, 48.8260744 2.3543019, 48.8762458 2.4177548, 48.8787743 2.4087695, 48.8790383 2.4084495, 48.8782046 2.4088226, 48.8793770 2.4082476, 48.8785854 2.4080833, 48.8244936 2.3379891, 48.8222464 2.3552235, 48.8233563 2.3542079, 48.8246704 2.3465277, 48.8251740 2.3417242, 48.8239192 2.3485650, 48.8238645 2.3485192, 48.8242035 2.3397900, 48.8244362 2.3385188, 48.8238988 2.3446115, 48.8246212 2.3416597, 48.8819609 2.3610276, 48.8831626 2.3618001, 48.8832736 2.3614499, 48.8829824 2.3614134, 48.8835841 2.3602483, 48.8839950 2.3594946, 48.8833936 2.3599667, 48.8828988 2.3592335, 48.8828405 2.3615206, 48.8827589 2.3595149, 48.8835628 2.3609310, 48.8840217 2.3614210, 48.8829252 2.3616011, 48.8829454 2.3619100, 48.8828267 2.3620896, 48.8824542 2.3621063, 48.8735147 2.3546804, 48.8725743 2.3544129, 48.8679601 2.3808000, 48.8733935 2.3902484, 48.8739298 2.3893471, 48.8821165 2.3636110, 48.8787523 2.3641791, 48.8775739 2.3642408, 48.8770173 2.3640220, 48.8800819 2.3647141, 48.8803249 2.3646120, 48.8802548 2.3643651, 48.8937287 2.3847900, 48.8952805 2.3850234, 48.8799725 2.3588623, 48.8800272 2.3588101, 48.8801565 2.3594651, 48.8806816 2.3601083, 48.8815776 2.3583327, 48.8827513 2.3591491, 48.8817822 2.3584614, 48.8829349 2.3636381, 48.8727865 2.3799743, 48.8727273 2.3786615, 48.8912148 2.3413495, 48.8517860 2.3418206, 48.8829772 2.3594750, 48.8796109 2.3574120, 48.8795879 2.3575096, 48.8796495 2.3570308, 48.8797114 2.3574553, 48.8804717 2.3578445, 48.8608729 2.3451379, 48.8482752 2.3934752, 48.8792421 2.3631885, 48.8784279 2.3643183, 48.8605186 2.3511396, 48.8607908 2.3512861, 48.8934866 2.3992947, 48.8936838 2.3993233, 48.8826930 2.3668426, 48.8826392 2.3667648, 48.8770806 2.3638519, 48.8601059 2.3247967, 48.8599671 2.3250425, 48.8601182 2.3248078, 48.8640823 2.3242375, 48.8472376 2.3539786, 48.8832324 2.3637211, 48.8820288 2.3635484, 48.8822211 2.3634868, 48.8753587 2.3261663, 48.8760417 2.3267034, 48.8549710 2.3707330, 48.8796547 2.3374136, 48.8794368 2.3375133, 48.8219547 2.3608058, 48.8193723 2.3655267, 48.8196355 2.3653170, 48.8669641 2.3142243, 48.8651920 2.3140147, 48.8670174 2.3136289, 48.8657282 2.3139318, 48.8651787 2.3134167, 48.8659279 2.3136078, 48.8763139 2.3563480, 48.8702381 2.3689388, 48.8705380 2.3685763, 48.8809351 2.3625812, 48.8809545 2.3624632, 48.8807358 2.3629915, 48.8827554 2.3649189, 48.8831311 2.3654083, 48.8830941 2.3655236, 48.8832881 2.3655987, 48.8833481 2.3657221, 48.8839354 2.3678464, 48.8838331 2.3670954, 48.8839358 2.3671407, 48.8296146 2.3822728, 48.8296210 2.3809399, 48.8289786 2.3807812, 48.8280188 2.3803469, 48.8280552 2.3808361, 48.8284669 2.3791072, 48.8292843 2.3823232, 48.8294517 2.3827405, 48.8291010 2.3833382, 48.8287974 2.3821578, 48.8286556 2.3812238, 48.8282637 2.3802920, 48.8293967 2.3790084, 48.8297120 2.3791681, 48.8299110 2.3769622, 48.8293821 2.3782449, 48.8289803 2.3785924, 48.8281932 2.3793805, 48.8283867 2.3805867, 48.8314453 2.3762846, 48.8310761 2.3766188, 48.8321522 2.3756247, 48.8332346 2.3745478, 48.8340181 2.3740832, 48.8511260 2.3460443, 48.8580602 2.3089956, 48.8517830 2.3177917, 48.8595784 2.3072201, 48.8597452 2.3084577, 48.8746858 2.3662628, 48.8425329 2.3202995, 48.8679999 2.3369853, 48.8318780 2.3674139, 48.8444634 2.4058653, 48.8903045 2.3534684, 48.8804027 2.3645128, 48.8809954 2.3651002, 48.8807643 2.3648588, 48.8808736 2.3650414, 48.8807784 2.3649259, 48.8806639 2.3647867, 48.8806637 2.3648615, 48.8809755 2.3651656, 48.8795889 2.3635682, 48.8782154 2.3621471, 48.8790673 2.3627937, 48.8775877 2.3615896, 48.8781096 2.3616482, 48.8776297 2.3614015, 48.8764602 2.3609294, 48.8765025 2.3607095, 48.8763120 2.3610528, 48.8765925 2.3611628, 48.8761919 2.3607846, 48.8762341 2.3608075, 48.8905790 2.4065144, 48.8361906 2.3922156, 48.8847598 2.3507721, 48.8846886 2.3508402, 48.8802074 2.3638169, 48.8792090 2.3625482, 48.8812463 2.3652224, 48.8806571 2.3643506, 48.8813045 2.3655093, 48.8822323 2.3662711, 48.8821920 2.3662947, 48.8828408 2.3670033, 48.8831548 2.3679716, 48.8830789 2.3673359, 48.8827050 2.3670033, 48.8475310 2.3871419, 48.8397936 2.3818812, 48.8243977 2.3360819, 48.8649222 2.3994933, 48.8297310 2.3179488, 48.8516782 2.3146314, 48.8628604 2.3719559, 48.8677797 2.3773892, 48.8365930 2.3046690, 48.8363767 2.4236251, 48.8295071 2.4201091, 48.8300361 2.4231832, 48.8295708 2.4234828, 48.8384857 2.3139931, 48.8880790 2.3433440, 48.8425610 2.3055230, 48.8488720 2.3128820, 48.8817158 2.3974038, 48.8345717 2.3321583, 48.8517060 2.3188780, 48.8430906 2.4215578, 48.8597630 2.3718080, 48.8322990 2.3969380, 48.8852454 2.3310516, 48.8612160 2.3941080, 48.8397680 2.3287550, 48.8893940 2.3388820, 48.8562087 2.3767474, 48.8556820 2.3852020, 48.8238387 2.3531949, 48.8674870 2.3165830, 48.8315645 2.4109263, 48.8312210 2.4129893, 48.8311370 2.3128840, 48.8778330 2.3934820, 48.8555310 2.3895370, 48.8417190 2.3204800, 48.8551080 2.3942800, 48.8599920 2.3625150, 48.8270122 2.3540304, 48.8424551 2.3888122, 48.8623280 2.3486460, 48.8855390 2.3268800, 48.8501704 2.3439958, 48.8525988 2.4088082, 48.8316177 2.3780517, 48.8898369 2.3739136, 48.8307590 2.3592040, 48.8526713 2.3815527, 48.8417000 2.3374070, 48.8210197 2.3568688, 48.8951024 2.3643279, 48.8433760 2.3364170, 48.8504870 2.3502540, 48.8654640 2.3863600, 48.8702780 2.3853090, 48.8684460 2.3844060, 48.8483008 2.3594250, 48.8743960 2.3620000, 48.8590555 2.3853281, 48.8708487 2.3842762, 48.8808400 2.3880660, 48.8185772 2.3545050, 48.8221640 2.3407800, 48.8861910 2.3437000, 48.8229962 2.3483008, 48.8548880 2.3860580, 48.8334140 2.3198533, 48.8342986 2.3307561, 48.8649444 2.4051523, 48.8711656 2.3608619, 48.8683392 2.3860944, 48.8512040 2.3336860, 48.8211700 2.3525560, 48.8412050 2.4011810, 48.8957085 2.3611060, 48.8280471 2.4193059, 48.8319760 2.4160891, 48.8322537 2.4156461, 48.8404327 2.4302364, 48.8523056 2.3854632, 48.8827393 2.3748215, 48.8649924 2.3911518, 48.8283394 2.3695038, 48.8814860 2.3253960, 48.8890670 2.3382500, 48.8713595 2.3858455, 48.8756264 2.3549455, 48.8316594 2.3202088, 48.8940100 2.3515980, 48.8515687 2.3455917, 48.8606179 2.4048647, 48.8221234 2.3755099, 48.8501856 2.3598181, 48.8832242 2.3300482, 48.8543340 2.3134030, 48.8479841 2.3021348, 48.8783392 2.3518796, 48.8672620 2.3546160, 48.8373130 2.3123540, 48.8929520 2.3468380, 48.8319794 2.3254293, 48.8876110 2.3980200, 48.8581731 2.4063523, 48.8581782 2.3488219, 48.8579930 2.3811530, 48.8701720 2.3941990, 48.8252925 2.3693389, 48.8528480 2.3236680, 48.8366880 2.3168190, 48.8311305 2.3217527, 48.8760549 2.4066379, 48.8224115 2.3234656, 48.8648810 2.3598580, 48.8563720 2.3423640, 48.8785620 2.3603690, 48.8656244 2.4005700, 48.8678880 2.4110180, 48.8782870 2.3930910, 48.8687996 2.3670827, 48.8488580 2.3354220, 48.8323838 2.3266258, 48.8302050 2.3165310, 48.8578985 2.3627922, 48.8338684 2.3623631, 48.8186719 2.3602335, 48.8311679 2.3698529, 48.8353270 2.3472350, 48.8675640 2.3439900, 48.8435250 2.3852390, 48.8239822 2.3186264, 48.8847495 2.3583714, 48.8680920 2.3674820, 48.8749920 2.3693880, 48.8691100 2.3880580, 48.8927720 2.3393440, 48.8582469 2.3636013, 48.8847394 2.3599665, 48.8708650 2.3267180, 48.8851070 2.3774500, 48.8759177 2.3199403, 48.8411853 2.3632232, 48.8618850 2.3795690, 48.8766520 2.3471580, 48.8432899 2.3273991, 48.8863250 2.3533990, 48.8501986 2.3439620, 48.8937263 2.3632365, 48.8505319 2.3140947, 48.8866720 2.3745570, 48.8519585 2.3815373, 48.8735686 2.3764151, 48.8486812 2.4047540, 48.8186727 2.3590770, 48.8422355 2.3539722, 48.8862884 2.3363224, 48.8940029 2.3839514, 48.8509163 2.4000959, 48.8737600 2.4116660, 48.8608430 2.4112060, 48.8729910 2.3967970, 48.8569010 2.3829850, 48.8670820 2.3921970, 48.8394056 2.4219004, 48.8491125 2.4034753, 48.8387600 2.3533490, 48.8650341 2.4104986, 48.8939970 2.3494640, 48.8765790 2.3317425, 48.8570984 2.3707315, 48.8861355 2.3561753, 48.8446043 2.3875639, 48.8780460 2.3546040, 48.8885760 2.3372580, 48.8544710 2.3306000, 48.8482791 2.3738928, 48.8541916 2.4013975, 48.8671567 2.3104167, 48.8674916 2.3104095, 48.8653971 2.3105177, 48.8678026 2.3100770, 48.8656474 2.3104264, 48.8799198 2.3624384, 48.8804191 2.3624653, 48.8801632 2.3624358, 48.8806906 2.3621407, 48.8807012 2.3618242, 48.8807735 2.3621112, 48.8477459 2.4005894, 48.8682247 2.3381270, 48.8681145 2.3380654, 48.8167343 2.3794519, 48.8365374 2.3516855, 48.8815009 2.3685984, 48.8124881 2.3760676, 48.8155517 2.3934471, 48.8319137 2.3445927, 48.8143542 2.3787887, 48.8471866 2.3534537, 48.8491388 2.3559696, 48.8406432 2.3520718, 48.8408454 2.3523400, 48.8406538 2.3514482, 48.8390129 2.3499462, 48.8315105 2.3698744, 48.8387533 2.3310982, 48.8395777 2.3302123, 48.8490162 2.3701002, 48.8523614 2.3398708, 48.8521302 2.3389535, 48.8249480 2.3573521, 48.8401996 2.3509062, 48.8403358 2.3506549, 48.8928215 2.3985124, 48.8740698 2.3727422, 48.8463451 2.3737061, 48.8498772 2.3811118, 48.8495091 2.3797387, 48.8495044 2.3793334, 48.8465065 2.3730628, 48.8463681 2.3733407, 48.8459991 2.3734585, 48.8465800 2.3730993, 48.8465204 2.3733044, 48.8433254 2.3023574, 48.8435384 2.3065535, 48.8150286 2.3456431, 48.8148511 2.3492039, 48.8366110 2.3126681, 48.8700560 2.3301669, 48.8781954 2.4224230, 48.8905420 2.3939914, 48.8953649 2.3864414, 48.8772168 2.4062867, 48.8921927 2.3896612, 48.8707204 2.3239555, 48.8705451 2.3238330, 48.8706016 2.3238683, 48.8377715 2.3234750, 48.8406208 2.3129284, 48.8411414 2.3136506, 48.8388721 2.3164471, 48.8384100 2.3116290, 48.8401231 2.3149792, 48.8542991 2.3674061, 48.8538841 2.3681040, 48.8533487 2.3667989, 48.8536236 2.3667526, 48.8537034 2.3664740, 48.8536267 2.3664311, 48.8193627 2.3266599, 48.8396268 2.3145492, 48.8404224 2.3130691, 48.8403603 2.3126619, 48.8430176 2.3242123, 48.8388336 2.3158922, 48.8408422 2.3172666, 48.8415445 2.3143815, 48.8412580 2.3079007, 48.8425738 2.3218677, 48.8410422 2.3148300, 48.8749075 2.3418631, 48.8740990 2.3471708, 48.8759825 2.3462270, 48.8739914 2.3464038, 48.8760665 2.3440322, 48.8741142 2.3446221, 48.8742352 2.3423076, 48.8752606 2.3418409, 48.8751282 2.3408094, 48.8760583 2.3441230, 48.8762130 2.3456817, 48.8757020 2.3437474, 48.8741222 2.3448869, 48.8766243 2.3463455, 48.8752057 2.3418014, 48.8737830 2.3446276, 48.8750436 2.3412323, 48.8747398 2.3467172, 48.8741144 2.3424987, 48.8738360 2.3447471, 48.8756838 2.3435083, 48.8761473 2.3456662, 48.8760516 2.3450644, 48.8770209 2.3458704, 48.8769144 2.3458107, 48.8479223 2.3736079, 48.8451934 2.3802706, 48.8362921 2.4047413, 48.8758907 2.3810965, 48.8325290 2.3252190, 48.8276699 2.3261967, 48.8326630 2.3254130, 48.8724084 2.3639647, 48.8516854 2.3468389, 48.8417733 2.3185097, 48.8411418 2.3133493, 48.8485184 2.4348611, 48.8485081 2.4353061, 48.8368728 2.3346505, 48.8482882 2.3806325, 48.8413530 2.3568801, 48.8442705 2.3560097, 48.8424181 2.3609453, 48.8447026 2.3568665, 48.8435512 2.3549103, 48.8448858 2.3578698, 48.8445537 2.3572323, 48.8460917 2.3593780, 48.8446377 2.3567328, 48.8419222 2.3590115, 48.8438344 2.3546970, 48.8437534 2.3546611, 48.8450203 2.3575273, 48.8460448 2.3594929, 48.8437555 2.3548025, 48.8439256 2.3553329, 48.8413724 2.3560171, 48.8455890 2.3583924, 48.8437212 2.3551124, 48.8429819 2.3631352, 48.8428723 2.3552404, 48.8442344 2.3557221, 48.8427689 2.3623241, 48.8419694 2.3616061, 48.8420406 2.3624430, 48.8421125 2.3625595, 48.8421654 2.3615859, 48.8394820 2.3097854, 48.8904147 2.3597111, 48.8839900 2.3286046, 48.8839605 2.3284938, 48.8949842 2.3821818, 48.8947991 2.3827102, 48.8951764 2.3824259, 48.8785492 2.3318734, 48.8911227 2.4028435, 48.8689109 2.3408822, 48.8275263 2.3351820, 48.8584723 2.4148023, 48.8899959 2.3389104, 48.8763431 2.4041075, 48.8362844 2.3061932, 48.8413551 2.3134214, 48.8406209 2.3131425, 48.8408995 2.3133856, 48.8366118 2.3066363, 48.8360758 2.3099894, 48.8377889 2.3112404, 48.8801236 2.3667122, 48.8799930 2.3669160, 48.8256117 2.3156483, 48.8846736 2.3626003, 48.8845801 2.3625895, 48.8846083 2.3626888, 48.8842378 2.3608157, 48.8833010 2.3854417, 48.8846806 2.3623964, 48.8797648 2.3567638, 48.8906387 2.3764631, 48.8867364 2.3716195, 48.8787241 2.3620455, 48.8855864 2.3701866, 48.8917841 2.3754089, 48.8910215 2.4011225, 48.8909532 2.3762481, 48.8716440 2.3678590, 48.8810608 2.3640684, 48.8810016 2.3640265, 48.8815607 2.3646012, 48.8817018 2.3639112, 48.8842012 2.3591315, 48.8842153 2.3560766, 48.8880139 2.3770318, 48.8880685 2.3769540, 48.8243361 2.3260774, 48.8240301 2.3251973, 48.8235176 2.3258353, 48.8235582 2.3253743, 48.8233119 2.3260789, 48.8225768 2.3276097, 48.8229502 2.3248811, 48.8413446 2.3177334, 48.8410150 2.3160260, 48.8412041 2.3167359, 48.8408951 2.3161732, 48.8412756 2.3177202, 48.8436874 2.3302939, 48.8888236 2.3460678, 48.8955600 2.3458430, 48.8909736 2.3451546, 48.8878856 2.3659310, 48.8733204 2.3254505, 48.8845445 2.3602834, 48.8848152 2.3606854, 48.8846300 2.3608651, 48.8664544 2.3344768, 48.8667755 2.3343748, 48.8676389 2.3332399, 48.8691704 2.3325104, 48.8315183 2.3664031, 48.8314132 2.3666206, 48.8280956 2.3585627, 48.8293080 2.3652192, 48.8271491 2.3665620, 48.8286456 2.3651923, 48.8291187 2.3655696, 48.8308432 2.3659695, 48.8173865 2.3727529, 48.8265805 2.3302230, 48.8269224 2.3285268, 48.8604747 2.3677991, 48.8505335 2.3887324, 48.8414876 2.3868742, 48.8453467 2.3836640, 48.8903952 2.3301771, 48.8369274 2.3592628, 48.8516069 2.3839844, 48.8513298 2.3837511, 48.8655911 2.3030514, 48.8657369 2.3033357, 48.8766152 2.3574727, 48.8240570 2.3358712, 48.8928637 2.3634518, 48.8962560 2.3589998, 48.8907716 2.3308685, 48.8914267 2.3486643, 48.8950968 2.3687029, 48.8912142 2.3513181, 48.8937350 2.3474870, 48.8841667 2.3418884, 48.8894575 2.3334080, 48.8888295 2.3559941, 48.8928646 2.3401075, 48.8866760 2.3532946, 48.8951369 2.3599640, 48.8866165 2.3262539, 48.8883502 2.3535905, 48.8910569 2.3398224, 48.8864478 2.3329208, 48.8901247 2.3605177, 48.8954760 2.3497870, 48.8896461 2.3382212, 48.8846860 2.3536867, 48.8904472 2.3492576, 48.8852757 2.3345602, 48.8944930 2.3415130, 48.8867353 2.3613685, 48.8918507 2.3354184, 48.8928650 2.3444840, 48.8895980 2.3628765, 48.8957920 2.3455810, 48.8944869 2.3522760, 48.8846342 2.3441510, 48.8877079 2.3504076, 48.8861209 2.3568514, 48.8870108 2.3668702, 48.8899467 2.3427294, 48.8885796 2.3472110, 48.8908959 2.3450395, 48.8708908 2.3743059, 48.8703845 2.3744929, 48.8665002 2.3708740, 48.8594585 2.3560654, 48.8606979 2.3554288, 48.8608937 2.3534909, 48.8602163 2.3530380, 48.8587314 2.3571857, 48.8605259 2.3552067, 48.8712890 2.3773958, 48.8776228 2.3708847, 48.8781735 2.3715144, 48.8784859 2.3741475, 48.8786657 2.3782387, 48.8780030 2.3781296, 48.8765046 2.3790929, 48.8790979 2.3742637, 48.8774152 2.3742123, 48.8769989 2.3740996, 48.8873966 2.3492159, 48.8875689 2.3536169, 48.8875165 2.3520499, 48.8508625 2.3961635, 48.8831639 2.3275572, 48.8609081 2.3309365, 48.8437364 2.3392987, 48.8713120 2.3736247, 48.8714742 2.3750525, 48.8713989 2.3748429, 48.8717746 2.3758883, 48.8717450 2.3763419, 48.8717642 2.3765169, 48.8719061 2.3762543, 48.8870068 2.3868037, 48.8715920 2.3753803, 48.8710718 2.3739992, 48.8701850 2.3766208, 48.8702060 2.3709819, 48.8701630 2.3708030, 48.8701560 2.3711369, 48.8705298 2.3731250, 48.8464713 2.3870797, 48.8408726 2.3875568, 48.8707796 2.3732614, 48.8857875 2.3376754, 48.8856834 2.3380986, 48.8908443 2.3617886, 48.8850609 2.3402076, 48.8707630 2.3736928, 48.8709201 2.3740599, 48.8710092 2.3742679, 48.8710893 2.3748362, 48.8562928 2.4086751, 48.8555569 2.4090964, 48.8535427 2.4096248, 48.8661570 2.3251630, 48.8648196 2.3294492, 48.8569556 2.3980459, 48.8564650 2.4027024, 48.8495059 2.3954641, 48.8484892 2.3941720, 48.8495831 2.3952770, 48.8549101 2.3613791, 48.8592147 2.3578986, 48.8591972 2.3579988, 48.8624940 2.3445634, 48.8846348 2.3590969, 48.8477882 2.3978367, 48.8949558 2.3870960, 48.8475082 2.3756380, 48.8480088 2.3759639, 48.8863319 2.3711222, 48.8932223 2.3631390, 48.8920738 2.3615515, 48.8907907 2.3766980, 48.8844341 2.3687996, 48.8933960 2.3636868, 48.8857831 2.3704180, 48.8851652 2.3594355, 48.8882670 2.3737456, 48.8890319 2.3744326, 48.8842463 2.3674355, 48.8929330 2.3634606, 48.8933928 2.3736857, 48.8896780 2.3752100, 48.8842985 2.3684154, 48.8873865 2.3724047, 48.8948588 2.3721971, 48.8862739 2.3595599, 48.8942132 2.3657813, 48.8886939 2.3740545, 48.8955459 2.3703338, 48.8862598 2.3626862, 48.8860205 2.3612559, 48.8897668 2.3683274, 48.8874695 2.3672750, 48.8873800 2.3672402, 48.8872163 2.3671561, 48.8856917 2.3661401, 48.8850074 2.3674278, 48.8843615 2.3542291, 48.8842940 2.3538553, 48.8893604 2.3711944, 48.8830609 2.3674369, 48.8909176 2.3600891, 48.8819509 2.3660462, 48.8890567 2.3712581, 48.8872523 2.3728586, 48.8833210 2.3677773, 48.8859966 2.3713041, 48.8862555 2.3564214, 48.8920710 2.3616583, 48.8837594 2.3683249, 48.8835852 2.3687084, 48.8874192 2.3730547, 48.8843277 2.3553188, 48.8865440 2.3719981, 48.8862163 2.3564628, 48.8892956 2.3534520, 48.8493037 2.3948863, 48.8883918 2.3276047, 48.8527859 2.4060423, 48.8532174 2.4087275, 48.8134004 2.3591607, 48.8467534 2.3735713, 48.8672772 2.3368959, 48.8630516 2.3705475, 48.8296616 2.3177920, 48.8283684 2.3161973, 48.8855880 2.3605114, 48.8857312 2.3605852, 48.8859173 2.3606402, 48.8866286 2.3612403, 48.8902851 2.3688154, 48.8900187 2.3629443, 48.8899798 2.3641177, 48.8899894 2.3635134, 48.8347149 2.3277467, 48.8354063 2.3258802, 48.8358672 2.3242187, 48.8355698 2.3250292, 48.8348588 2.3273891, 48.8350846 2.3267608, 48.8341036 2.3294199, 48.8324180 2.3247172, 48.8342294 2.3264332, 48.8307191 2.3193023, 48.8269809 2.3245691, 48.8304006 2.3192272, 48.8323241 2.3308583, 48.8320415 2.3248498, 48.8709233 2.3331660, 48.8712559 2.3345380, 48.8708364 2.3345554, 48.8701868 2.3794253, 48.8565125 2.3947303, 48.8564548 2.3947397, 48.8463464 2.3945644, 48.8297820 2.3470870, 48.8694854 2.4165551, 48.8320767 2.3388679, 48.8587145 2.3573966, 48.8707845 2.3750862, 48.8700714 2.3755537, 48.8565035 2.3940625, 48.8689943 2.4151668, 48.8955070 2.3483656, 48.8951815 2.3483062, 48.8465689 2.3814277, 48.8470280 2.3414730, 48.8469807 2.3416967, 48.8599466 2.3277279, 48.8470055 2.3415722, 48.8603993 2.3262152, 48.8478006 2.3440011, 48.8471492 2.3421620, 48.8535250 2.3447123, 48.8472967 2.3417837, 48.8368961 2.3177487, 48.8367758 2.3180171, 48.8375111 2.3195564, 48.8396082 2.3324972, 48.8539346 2.3493079, 48.8529322 2.3520857, 48.8559760 2.3666852, 48.8499857 2.3459367, 48.8626827 2.3523046, 48.8618932 2.3433243, 48.8182992 2.3784546, 48.8169487 2.3795873, 48.8485371 2.3779078, 48.8511475 2.3804023, 48.8510187 2.3802119, 48.8506286 2.3783987, 48.8184928 2.3783255, 48.8642832 2.3420572, 48.8824125 2.3814642, 48.8824238 2.3812690, 48.8534825 2.3444519, 48.8533661 2.3445967, 48.8527928 2.3463041, 48.8758609 2.3285927, 48.8530250 2.3465982, 48.8527336 2.3464352, 48.8525998 2.3463499, 48.8526089 2.3464638, 48.8511726 2.3459012, 48.8510655 2.3458688, 48.8510285 2.3479160, 48.8505969 2.3487384, 48.8515005 2.3480197, 48.8505010 2.3475831, 48.8507465 2.3484894, 48.8508738 2.3460187, 48.8512339 2.3482344, 48.8506193 2.3486612, 48.8515100 2.3477222, 48.8656690 2.3706000, 48.8465904 2.3434584, 48.8467134 2.3429597, 48.8482231 2.3417751, 48.8470699 2.3417135, 48.8466322 2.3434321, 48.8481836 2.3416278, 48.8467301 2.3428821, 48.8498704 2.3434646, 48.8764243 2.3592623, 48.8757565 2.3604345, 48.8757885 2.3583741, 48.8760791 2.3593001, 48.8757202 2.3603702, 48.8754673 2.3591581, 48.8422628 2.3136097, 48.8427362 2.3122657, 48.8414932 2.3132873, 48.8429440 2.3130453, 48.8426877 2.3123128, 48.8418232 2.3130030, 48.8425813 2.3133329, 48.8425822 2.3123874, 48.8420308 2.3127675, 48.8425225 2.3124389, 48.8718579 2.3184821, 48.8718922 2.3185257, 48.8719013 2.3184579, 48.8613479 2.3294517, 48.8728991 2.3179333, 48.8718323 2.3192183, 48.8659123 2.3250771, 48.8712346 2.3211809, 48.8712198 2.3210983, 48.8848552 2.3794020, 48.8850887 2.3797004, 48.8849782 2.3792829, 48.8663059 2.3244457, 48.8423192 2.3232600, 48.8433038 2.3543255, 48.8296114 2.3182270, 48.8422545 2.3231808, 48.8495867 2.3963351, 48.8691909 2.3123689, 48.8694855 2.3127606, 48.8520513 2.3398772, 48.8773360 2.3157316, 48.8504365 2.3250405, 48.8566502 2.3266740, 48.8433085 2.3563833, 48.8437841 2.3555072, 48.8437869 2.3553777, 48.8437047 2.3566102, 48.8432890 2.3553540, 48.8433150 2.3563738, 48.8432457 2.3560311, 48.8437851 2.3554321, 48.8433394 2.3563627, 48.8436728 2.3566486, 48.8437841 2.3554689, 48.8611575 2.3438966, 48.8663775 2.3472549, 48.8696963 2.3404343, 48.8696864 2.3404289, 48.8690173 2.3420166, 48.8696240 2.3403949, 48.8690828 2.3406045, 48.8692220 2.3422745, 48.8687999 2.3403122, 48.8686596 2.3417521, 48.8684512 2.3417404, 48.8712109 2.3430984, 48.8696608 2.3393758, 48.8648568 2.3224814, 48.8226335 2.3469267, 48.8488005 2.3485576, 48.8485654 2.3482310, 48.8496798 2.3526713, 48.8497262 2.3529879, 48.8452718 2.3398200, 48.8460712 2.3400150, 48.8455667 2.3397339, 48.8461975 2.3400915, 48.8441700 2.3392159, 48.8446501 2.3392294, 48.8445289 2.3394114, 48.8444122 2.3394917, 48.8446486 2.3394898, 48.8464390 2.3404727, 48.8441471 2.3389604, 48.8878847 2.3259177, 48.8506128 2.3526191, 48.8500084 2.3546558, 48.8511253 2.3510912, 48.8515559 2.3496810, 48.8509952 2.3511014, 48.8521095 2.3485408, 48.8313290 2.3203574, 48.8316539 2.3201884, 48.8472106 2.3483382, 48.8466399 2.3489993, 48.8471676 2.3484712, 48.8472384 2.3483071, 48.8471167 2.3485711, 48.8463190 2.3519261, 48.8451702 2.3458299, 48.8452340 2.3448440, 48.8414796 2.3258678, 48.8407751 2.3245796, 48.8439434 2.3420437, 48.8415876 2.3435962, 48.8420353 2.3432522, 48.8420505 2.3432527, 48.8438494 2.3420774, 48.8460312 2.3413867, 48.8431709 2.3416539, 48.8448275 2.3423892, 48.8426788 2.3414503, 48.8433479 2.3414598, 48.8575636 2.3501179, 48.8496043 2.3739078, 48.8462789 2.3405322, 48.8460866 2.3403696, 48.8463554 2.3405710, 48.8461211 2.3404463, 48.8459922 2.3409379, 48.8394458 2.3383398, 48.8389350 2.3403744, 48.8376389 2.3465515, 48.8375784 2.3462734, 48.8378226 2.3456909, 48.8388735 2.3499896, 48.8391263 2.3497984, 48.8388061 2.3500511, 48.8393158 2.3503572, 48.8414062 2.3496761, 48.8430873 2.3523909, 48.8428744 2.3519560, 48.8430338 2.3494597, 48.8433167 2.3520295, 48.8425969 2.3517238, 48.8429501 2.3517845, 48.8432657 2.3515822, 48.8431709 2.3494420, 48.8428564 2.3519895, 48.8433377 2.3523278, 48.8425907 2.3519394, 48.8415362 2.3502718, 48.8428285 2.3484260, 48.8428073 2.3483266, 48.8446194 2.3521389, 48.8445541 2.3522743, 48.8450551 2.3490236, 48.8445658 2.3524623, 48.8455001 2.3492453, 48.8449589 2.3493182, 48.8452352 2.3492038, 48.8453933 2.3492411, 48.8452357 2.3490360, 48.8451938 2.3492149, 48.8449425 2.3498446, 48.8450354 2.3496519, 48.8449041 2.3498515, 48.8448216 2.3496568, 48.8589666 2.4059365, 48.8389864 2.3510927, 48.8421262 2.3534706, 48.8384619 2.3563683, 48.8375628 2.3535312, 48.8384169 2.3562199, 48.8387726 2.3573303, 48.8387237 2.3571215, 48.8384808 2.3564239, 48.8411226 2.3622939, 48.8395766 2.3564711, 48.8403889 2.3609058, 48.8608198 2.3503260, 48.8520143 2.3467491, 48.8885709 2.3479030, 48.8388290 2.3501857, 48.8386423 2.3498590, 48.8555518 2.3602965, 48.8558414 2.3601168, 48.8580164 2.3612756, 48.8602119 2.3561984, 48.8603491 2.3508475, 48.8585424 2.3554995, 48.8578946 2.3548830, 48.8580164 2.3548706, 48.8168431 2.3604808, 48.8170906 2.3594427, 48.8371125 2.4029059, 48.8584177 2.3025456, 48.8342318 2.3319172, 48.8343455 2.3319342, 48.8344349 2.3317649, 48.8344566 2.3316949, 48.8342256 2.3318425, 48.8344078 2.3318296, 48.8343773 2.3318884, 48.8589842 2.3037923, 48.8571424 2.3046100, 48.8589692 2.3031638, 48.8559597 2.3045704, 48.8589930 2.3030851, 48.8214576 2.3411303, 48.8562829 2.3019390, 48.8597553 2.3011269, 48.8660801 2.3535484, 48.8661318 2.3536080, 48.8841171 2.3650610, 48.8546108 2.3061433, 48.8569221 2.3035938, 48.8417910 2.3293787, 48.8368456 2.3591245, 48.8359122 2.3596749, 48.8600034 2.3094820, 48.8623669 2.3098112, 48.8602874 2.3097025, 48.8624426 2.3091556, 48.8602217 2.3097138, 48.8579055 2.3100803, 48.8593696 2.3144127, 48.8595020 2.3116861, 48.8474359 2.3956182, 48.8530145 2.3117479, 48.8517091 2.3142208, 48.8616904 2.3160412, 48.8568826 2.3152071, 48.8418031 2.3029041, 48.8897504 2.3908138, 48.8501505 2.3397562, 48.8563141 2.3830600, 48.8507370 2.3741124, 48.8499922 2.3740320, 48.8516089 2.3778622, 48.8503505 2.3762126, 48.8498722 2.3743592, 48.8510250 2.3756065, 48.8464501 2.3805579, 48.8465347 2.3810262, 48.8452145 2.3770818, 48.8452780 2.3769369, 48.8456974 2.3753974, 48.8430680 2.3837014, 48.8445706 2.3835054, 48.8560410 2.3690859, 48.8896373 2.3480452, 48.8612999 2.3312271, 48.8622873 2.3343842, 48.8620274 2.3339571, 48.8610641 2.3333414, 48.8615378 2.3364753, 48.8658377 2.3554835, 48.8622606 2.3343531, 48.8619976 2.3337949, 48.8619195 2.3335781, 48.8606634 2.3346215, 48.8655795 2.3559318, 48.8621856 2.3342654, 48.8621093 2.3341739, 48.8610858 2.3333141, 48.8612130 2.3332141, 48.8608811 2.3333659, 48.8619635 2.3336827, 48.8609084 2.3333829, 48.8608024 2.3333169, 48.8622110 2.3342946, 48.8623363 2.3344445, 48.8620231 2.3339156, 48.8612415 2.3331972, 48.8621347 2.3342032, 48.8619759 2.3337185, 48.8620069 2.3338355, 48.8613711 2.3348960, 48.8611609 2.3332471, 48.8608303 2.3333339, 48.8623642 2.3344747, 48.8676735 2.3543284, 48.8619368 2.3336139, 48.8611373 2.3332669, 48.8584322 2.3229184, 48.8178358 2.3756647, 48.8160131 2.3677039, 48.8702176 2.3497792, 48.8702611 2.3495657, 48.8565160 2.3269654, 48.8439160 2.3088973, 48.8474457 2.3180776, 48.8474428 2.3181013, 48.8247155 2.3622282, 48.8231634 2.3625006, 48.8245453 2.3629329, 48.8245788 2.3669133, 48.8215997 2.3632601, 48.8245519 2.3668617, 48.8247113 2.3669079, 48.8254918 2.3663285, 48.8250539 2.3658028, 48.8245418 2.3643383, 48.8217881 2.3649842, 48.8214455 2.3651681, 48.8365061 2.3589584, 48.8494402 2.3154249, 48.8473587 2.3122933, 48.8462262 2.3142889, 48.8299382 2.3626544, 48.8597545 2.4033363, 48.8567106 2.3947298, 48.8563540 2.3948325, 48.8594767 2.3890495, 48.8468991 2.3122150, 48.8478053 2.3133841, 48.8478498 2.3111276, 48.8733076 2.3256182, 48.8714072 2.3293794, 48.8710024 2.3294337, 48.8719199 2.3288943, 48.8724460 2.3296815, 48.8515887 2.3004692, 48.8717034 2.3766791, 48.8540230 2.3997826, 48.8519846 2.4014456, 48.8538606 2.4025990, 48.8554207 2.4011828, 48.8529453 2.4006573, 48.8516581 2.3996110, 48.8513810 2.3980258, 48.8491906 2.3784376, 48.8512398 2.3832978, 48.8508003 2.3840730, 48.8505216 2.3862840, 48.8503732 2.3908375, 48.8503573 2.3914142, 48.8502779 2.3906229, 48.8503926 2.3895903, 48.8503887 2.3930028, 48.8502002 2.3918245, 48.8507491 2.3956735, 48.8664040 2.3693590, 48.8664987 2.3684919, 48.8665787 2.3687395, 48.8672613 2.3653112, 48.8676617 2.3646892, 48.8680319 2.3652462, 48.8677539 2.3647162, 48.8678242 2.3628446, 48.8645657 2.3465079, 48.8672442 2.3624249, 48.8685310 2.3627215, 48.8645339 2.3458426, 48.8682358 2.3624700, 48.8663164 2.3596590, 48.8665784 2.3618269, 48.8647002 2.3457111, 48.8665669 2.3611510, 48.8664790 2.3612544, 48.8658537 2.3525545, 48.8660852 2.3706279, 48.8671863 2.3624934, 48.8665083 2.3616710, 48.8658957 2.3524620, 48.8672351 2.3624899, 48.8670533 2.3622765, 48.8657517 2.3712388, 48.8655880 2.3691209, 48.8417044 2.3764576, 48.8418032 2.3767741, 48.8734234 2.3305255, 48.8944130 2.3404956, 48.8919172 2.3436860, 48.8917691 2.3440528, 48.8715078 2.3339896, 48.8752166 2.3329602, 48.8784002 2.3375553, 48.8759120 2.3269790, 48.8772426 2.3277376, 48.8830873 2.3292402, 48.8809872 2.3359307, 48.8812329 2.3301337, 48.8827025 2.3280076, 48.8810990 2.3316104, 48.8824281 2.3336567, 48.8831967 2.3294138, 48.8766198 2.3392717, 48.8792406 2.3346510, 48.8795478 2.3371494, 48.8796385 2.3372131, 48.8717823 2.3424721, 48.8809484 2.3370198, 48.8769401 2.3393848, 48.8770249 2.3413662, 48.8832546 2.3471915, 48.8809300 2.3404709, 48.8809021 2.3403319, 48.8808071 2.3403392, 48.8821086 2.3394912, 48.8818258 2.3395224, 48.8499483 2.4348207, 48.8651635 2.3419355, 48.8840421 2.3326829, 48.8766106 2.3457504, 48.8765185 2.3448908, 48.8739328 2.3406145, 48.8716545 2.3432165, 48.8718967 2.3415625, 48.8853691 2.3353615, 48.8857113 2.3355174, 48.8855561 2.3353079, 48.8855279 2.3354474, 48.8861381 2.3353884, 48.8480589 2.3805939, 48.8356055 2.4057969, 48.8360885 2.4045153, 48.8379895 2.3992701, 48.8373037 2.4015452, 48.8432331 2.3835289, 48.8471366 2.3867728, 48.8359385 2.4061399, 48.8381251 2.3989722, 48.8438778 2.3820130, 48.8382469 2.3985623, 48.8475339 2.3882237, 48.8472696 2.3870269, 48.8402240 2.3925825, 48.8407841 2.3912112, 48.8368349 2.4023336, 48.8469648 2.3841028, 48.8417221 2.3867120, 48.8416280 2.3866804, 48.8367677 2.4029493, 48.8399742 2.3934259, 48.8356227 2.4057366, 48.8486352 2.3946941, 48.8364138 2.4038057, 48.8371301 2.4025386, 48.8469016 2.3834720, 48.8407749 2.3897142, 48.8472885 2.3869957, 48.8349917 2.4065581, 48.8359164 2.4062185, 48.8366296 2.4029905, 48.8426339 2.3847145, 48.8406474 2.3907616, 48.8364626 2.4043651, 48.8338360 2.4107895, 48.8398239 2.3944271, 48.8378794 2.4004320, 48.8480677 2.3925076, 48.8412536 2.3886959, 48.8417549 2.3864187, 48.8484449 2.3942334, 48.8380872 2.3994343, 48.8477051 2.3885456, 48.8460393 2.3780826, 48.8371231 2.4019810, 48.8470892 2.3842101, 48.8476871 2.3901194, 48.8385089 2.3991495, 48.8400576 2.3948756, 48.8443902 2.3815803, 48.8471042 2.3852055, 48.8471787 2.3866836, 48.8426310 2.3854954, 48.8479792 2.3931721, 48.8449275 2.3804850, 48.8473748 2.3861373, 48.8391909 2.3969895, 48.8475231 2.3881137, 48.8368962 2.4026322, 48.8347163 2.4076218, 48.8359135 2.4058277, 48.8391579 2.3963790, 48.8389784 2.3959056, 48.8384252 2.3989983, 48.8423698 2.3854379, 48.8813769 2.3721944, 48.8475270 2.3021767, 48.8476742 2.3009702, 48.8479740 2.3007339, 48.8477423 2.3011339, 48.8468451 2.3046139, 48.8464494 2.3063550, 48.8455537 2.3108109, 48.8459424 2.3060603, 48.8468885 2.3042494, 48.8450445 2.3104567, 48.8479639 2.3012878, 48.8474822 2.3019418, 48.8475414 2.3012068, 48.8468990 2.3044201, 48.8467540 2.3049111, 48.8476230 2.3013276, 48.8447637 2.3102862, 48.8410891 2.3368145, 48.8473611 2.3081232, 48.8470685 2.3072875, 48.8473569 2.3077931, 48.8471976 2.3076608, 48.8470152 2.3071391, 48.8469054 2.3075203, 48.8469303 2.3075499, 48.8472092 2.3070017, 48.8218802 2.3268475, 48.8250195 2.3264168, 48.8476662 2.3078147, 48.8475588 2.3088840, 48.8474933 2.3107909, 48.8478638 2.3111059, 48.8474398 2.3107795, 48.8809105 2.3400348, 48.8377870 2.3917644, 48.8390532 2.3961644, 48.8388419 2.3895552, 48.8390560 2.3924535, 48.8378894 2.3906889, 48.8381405 2.3924690, 48.8391569 2.3892705, 48.8385292 2.3895336, 48.8397585 2.3884230, 48.8389160 2.3896782, 48.8390438 2.3923714, 48.8384650 2.3928000, 48.8392544 2.3893624, 48.8730035 2.3534809, 48.8654085 2.3767039, 48.8627451 2.3395900, 48.8484357 2.3094387, 48.8482418 2.3105178, 48.8485448 2.3086944, 48.8486504 2.3085581, 48.8512285 2.3098214, 48.8503424 2.3089610, 48.8499851 2.3083895, 48.8504098 2.3090292, 48.8505805 2.3092017, 48.8510836 2.3097113, 48.8518742 2.3103492, 48.8517546 2.3104073, 48.8773925 2.3384012, 48.8514424 2.3108980, 48.8503908 2.3115133, 48.8517685 2.3133289, 48.8513975 2.3107849, 48.8512872 2.3111153, 48.8510873 2.3111882, 48.8514163 2.3135568, 48.8498367 2.3124580, 48.8499808 2.3116300, 48.8517506 2.3131416, 48.8503624 2.3488792, 48.8503408 2.3483420, 48.8570795 2.3793482, 48.8569128 2.3780314, 48.8607706 2.3747898, 48.8527591 2.3685273, 48.8630663 2.3527335, 48.8470660 2.3954688, 48.8601693 2.3891491, 48.8599140 2.3909353, 48.8446026 2.3117965, 48.8792942 2.4149624, 48.8795658 2.4161587, 48.8792801 2.4138949, 48.8792448 2.4147210, 48.8857975 2.3651047, 48.8858404 2.3652834, 48.8707314 2.3497989, 48.8828690 2.3183304, 48.8829889 2.3183223, 48.8829466 2.3176571, 48.8710357 2.3522560, 48.8714920 2.3541352, 48.8716725 2.3535841, 48.8710551 2.3579616, 48.8799989 2.4165267, 48.8788312 2.4158401, 48.8796268 2.4148076, 48.8804360 2.4177825, 48.8774236 2.4101645, 48.8795262 2.4150247, 48.8786231 2.4180717, 48.8805352 2.4178356, 48.8805634 2.4182863, 48.8789194 2.4131901, 48.8442654 2.3304438, 48.8451205 2.3179540, 48.8787372 2.3542451, 48.8783105 2.3537689, 48.8445056 2.3203943, 48.8446279 2.3203361, 48.8845852 2.3601492, 48.8973913 2.3849076, 48.8458069 2.3492233, 48.8481138 2.3765844, 48.8503695 2.3874778, 48.8792727 2.3541794, 48.8800493 2.3536899, 48.8793095 2.3546327, 48.8794561 2.3542776, 48.8794747 2.3547243, 48.8791462 2.3541109, 48.8796589 2.3543864, 48.8788491 2.3549176, 48.8794660 2.3569589, 48.8819418 2.3521616, 48.8820806 2.3518696, 48.8368662 2.3071536, 48.8383079 2.3085101, 48.8773450 2.3706072, 48.8774219 2.3704960, 48.8774256 2.3694794, 48.8839135 2.3676289, 48.8812245 2.3639751, 48.8815039 2.3649120, 48.8734790 2.3750462, 48.8732283 2.3745203, 48.8787212 2.3698437, 48.8458629 2.3710158, 48.8605552 2.3544304, 48.8460660 2.3742687, 48.8426729 2.3023971, 48.8431492 2.3040014, 48.8503634 2.3868517, 48.8503643 2.3849720, 48.8454432 2.3124549, 48.8457318 2.3137224, 48.8615137 2.3197027, 48.8578293 2.3192199, 48.8474837 2.3126225, 48.8512536 2.3251315, 48.8556397 2.3256421, 48.8590997 2.3185547, 48.8486555 2.3203894, 48.8520795 2.3018025, 48.8569538 2.3096130, 48.8614149 2.3094414, 48.8606986 2.3148434, 48.8583091 2.3237904, 48.8566893 2.3067753, 48.8588632 2.3319175, 48.8597138 2.3258235, 48.8436549 2.3146779, 48.8438107 2.3152002, 48.8437516 2.3150319, 48.8726908 2.3752657, 48.8698134 2.3700786, 48.8678130 2.3782397, 48.8673989 2.3038079, 48.8705420 2.3773342, 48.8701060 2.3758709, 48.8757327 2.3977989, 48.8655296 2.3772848, 48.8648666 2.3774480, 48.8674203 2.3758861, 48.8682312 2.3751770, 48.8655345 2.3775152, 48.8693522 2.3713516, 48.8692142 2.3714534, 48.8694819 2.3712557, 48.8685558 2.3695906, 48.8673820 2.3728092, 48.8673041 2.3731992, 48.8690400 2.3726204, 48.8431097 2.3128917, 48.8448779 2.3106086, 48.8431692 2.3127228, 48.8333957 2.3653856, 48.8678500 2.3687750, 48.8649857 2.3752785, 48.8702549 2.3098514, 48.8673662 2.3064825, 48.8768924 2.3218191, 48.8733783 2.3097112, 48.8660987 2.3722759, 48.8626375 2.3735329, 48.8608995 2.3677192, 48.8609387 2.3678708, 48.8633327 2.3688747, 48.8633817 2.3689965, 48.8663125 2.3723460, 48.8649676 2.3711282, 48.8661552 2.3797640, 48.8656909 2.3777859, 48.8639261 2.3703310, 48.8670939 2.3749249, 48.8671390 2.3755303, 48.8639860 2.3704728, 48.8644441 2.3741599, 48.8646935 2.3723809, 48.8644002 2.3730285, 48.8677794 2.3780026, 48.8646865 2.3738115, 48.8509100 2.3440225, 48.8765188 2.3353132, 48.8767451 2.3353322, 48.8764727 2.3353018, 48.8764220 2.3352962, 48.8766354 2.3353309, 48.8765638 2.3353212, 48.8453270 2.3106657, 48.8453817 2.3105262, 48.8448328 2.3107301, 48.8448872 2.3142661, 48.8446342 2.3148283, 48.8445654 2.3175610, 48.8449195 2.3183472, 48.8446117 2.3178842, 48.8445698 2.3179499, 48.8465728 2.3168133, 48.8453227 2.3190283, 48.8455384 2.3189591, 48.8452520 2.3184602, 48.8452353 2.3184253, 48.8454872 2.3119300, 48.8760923 2.3383718, 48.8745269 2.3383294, 48.8751673 2.3379807, 48.8766241 2.3397060, 48.8751689 2.3383360, 48.8750574 2.3385110, 48.8820895 2.3193350, 48.8686720 2.3127647, 48.8671021 2.3110061, 48.8696061 2.3103371, 48.8219925 2.3300366, 48.8244091 2.3255676, 48.8314280 2.3555815, 48.8408412 2.3543039, 48.8322217 2.3293463, 48.8595500 2.3794207, 48.8646004 2.3751995, 48.8674715 2.3750082, 48.8632185 2.3775523, 48.8646245 2.3695884, 48.8637330 2.3792298, 48.8450099 2.3109341, 48.8460501 2.3109746, 48.8612759 2.3785003, 48.8771800 2.3394491, 48.8671825 2.3131358, 48.8668030 2.3107239, 48.8543533 2.3962677, 48.8668874 2.3528247, 48.8680937 2.3485890, 48.8592377 2.3714158, 48.8592072 2.3714462, 48.8602229 2.3727573, 48.8626137 2.3716303, 48.8546701 2.3693933, 48.8660252 2.3152733, 48.8366253 2.3205727, 48.8323092 2.3130666, 48.8345539 2.3173489, 48.8251368 2.3656211, 48.8254617 2.3652375, 48.8256887 2.3653770, 48.8257690 2.3653555, 48.8243378 2.3638857, 48.8826774 2.3602875, 48.8571479 2.3729822, 48.8577490 2.3740410, 48.8555583 2.3708327, 48.8569621 2.3721314, 48.8567777 2.3726141, 48.8558410 2.3721540, 48.8545648 2.3719500, 48.8536042 2.3707268, 48.8570802 2.3784715, 48.8536882 2.3708103, 48.8538783 2.3707951, 48.8546993 2.3708799, 48.8557897 2.3753324, 48.8573966 2.3799370, 48.8576277 2.3796210, 48.8545778 2.3710477, 48.8544587 2.3716617, 48.8488608 2.3113318, 48.8488629 2.3113707, 48.8480733 2.3112387, 48.8472345 2.3091715, 48.8431101 2.4168376, 48.8446622 2.3729559, 48.8933245 2.3887800, 48.8941743 2.3916574, 48.8542690 2.3799429, 48.8345104 2.3934103, 48.8455102 2.3829497, 48.8553433 2.3747935, 48.8538434 2.3724806, 48.8534383 2.3703873, 48.8418339 2.3497835, 48.8835544 2.3321896, 48.8509424 2.3779382, 48.8695383 2.3950747, 48.8517205 2.3567051, 48.8549268 2.3539661, 48.8264546 2.3410881, 48.8263809 2.3414522, 48.8260610 2.3415721, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8260540 2.3415206, 48.8263361 2.3414409, 48.8261927 2.3418257, 48.8266751 2.3420292, 48.8260655 2.3415482, 48.8250885 2.3208185, 48.8278525 2.3262538, 48.8327381 2.3245435, 48.8329043 2.3245191, 48.8575297 2.3795048, 48.8528709 2.3486106, 48.8862540 2.3333605, 48.8570588 2.3798634, 48.8576289 2.3848279, 48.8539335 2.3775047, 48.8531848 2.3778720, 48.8524031 2.3825246, 48.8565451 2.3836259, 48.8568830 2.3829069, 48.8958659 2.3827194, 48.8966206 2.3871195, 48.8953387 2.3825799, 48.8928628 2.3852622, 48.8219932 2.3234435, 48.8543766 2.3286669, 48.8506577 2.3948665, 48.8231861 2.3549946, 48.8232299 2.3543424, 48.8792690 2.3823512, 48.8211670 2.3407757, 48.8303551 2.3540212, 48.8528721 2.3890596, 48.8546913 2.3857584, 48.8555740 2.3904061, 48.8712861 2.3349203, 48.8713129 2.3350843, 48.8639822 2.3355945, 48.8963398 2.3844708, 48.8543018 2.3064024, 48.8564566 2.3025481, 48.8311615 2.3425606, 48.8314493 2.3411256, 48.8315129 2.3409781, 48.8306954 2.3438443, 48.8594440 2.3503990, 48.8594790 2.3504550, 48.8864724 2.3248425, 48.8865355 2.3247648, 48.8853340 2.3271479, 48.8865796 2.3246830, 48.8856946 2.3275147, 48.8854389 2.3273189, 48.8854208 2.3272834, 48.8865668 2.3247279, 48.8853732 2.3272103, 48.8856651 2.3275744, 48.8853573 2.3271741, 48.8865584 2.3246320, 48.8856885 2.3274765, 48.8453215 2.4289446, 48.8649900 2.3816769, 48.8472498 2.3715912, 48.8460948 2.3709948, 48.8468117 2.3696539, 48.8471469 2.3697404, 48.8473444 2.3778677, 48.8502019 2.3688037, 48.8503931 2.3688912, 48.8506208 2.3689945, 48.8367957 2.3917944, 48.8507314 2.3754330, 48.8461255 2.3694043, 48.8469826 2.3690835, 48.8493300 2.3749472, 48.8341870 2.3157058, 48.8216474 2.3653328, 48.8232565 2.3578824, 48.8230746 2.3579144, 48.8229667 2.3585907, 48.8234162 2.3578095, 48.8224620 2.3587564, 48.8225668 2.3587247, 48.8235590 2.3584151, 48.8223317 2.3587958, 48.8230555 2.3585643, 48.8230325 2.3585712, 48.8280214 2.3265442, 48.8283319 2.3249564, 48.8236808 2.3308088, 48.8520072 2.3570804, 48.8532674 2.3539562, 48.8744843 2.3304643, 48.8200408 2.3479644, 48.8212446 2.3690189, 48.8226584 2.3668672, 48.8190929 2.3443682, 48.8195872 2.3642183, 48.8407510 2.3161284, 48.8408847 2.3255233, 48.8357296 2.3158704, 48.8323111 2.3252588, 48.8289690 2.3280388, 48.8296366 2.3263748, 48.8240050 2.3260887, 48.8257339 2.3264008, 48.8256825 2.3151865, 48.8574201 2.3243023, 48.8459313 2.3090188, 48.8457977 2.3185660, 48.8505096 2.3274022, 48.8311741 2.3447143, 48.8330426 2.3312889, 48.8330416 2.3357290, 48.8305266 2.3291048, 48.8347199 2.3367751, 48.8348054 2.3320949, 48.8346868 2.3410351, 48.8376293 2.3387512, 48.8369790 2.3350851, 48.8349524 2.3463908, 48.8394809 2.3371526, 48.8417537 2.3377112, 48.8416255 2.3485536, 48.8281988 2.3566483, 48.8239378 2.3581173, 48.8340823 2.3537029, 48.8240665 2.3530961, 48.8297239 2.3690723, 48.8404168 2.3535555, 48.8520468 2.3397933, 48.8558630 2.3465049, 48.8528153 2.3347150, 48.8544526 2.3311094, 48.8580548 2.3474799, 48.8598724 2.3490644, 48.8623038 2.3502010, 48.8625013 2.3507772, 48.8636772 2.3510372, 48.8580013 2.3464643, 48.8623046 2.3423204, 48.8603000 2.3464643, 48.8636409 2.3426454, 48.8631527 2.3417623, 48.8650306 2.3407360, 48.8549469 2.3729734, 48.8477025 2.3536570, 48.8658631 2.3695102, 48.8610722 2.3670951, 48.8655959 2.3652444, 48.8655288 2.3523437, 48.8669313 2.3543718, 48.8613680 2.3530523, 48.8626723 2.3594550, 48.8600851 2.3608850, 48.8650242 2.3602350, 48.8437230 2.4019904, 48.8445383 2.3775163, 48.8405196 2.4047985, 48.8395307 2.3783327, 48.8406003 2.3922472, 48.8387954 2.3810242, 48.8537699 2.3826458, 48.8556078 2.3835929, 48.8541941 2.3777992, 48.8495092 2.3936775, 48.8521926 2.3936896, 48.8532589 2.3878909, 48.8504312 2.3841184, 48.8460954 2.3766582, 48.8455898 2.3850416, 48.8649600 2.3947898, 48.8648944 2.3762643, 48.8657274 2.3810297, 48.8575027 2.3926652, 48.8608171 2.3885376, 48.8571820 2.3811598, 48.8582893 2.3802180, 48.8622924 2.3792422, 48.8642156 2.3796666, 48.8634043 2.3873675, 48.8635967 2.3838899, 48.8662870 2.3897869, 48.8490543 2.4025492, 48.8548100 2.3960622, 48.8556270 2.4100482, 48.8544980 2.4122851, 48.8600077 2.4010312, 48.8641235 2.4090336, 48.8649012 2.4008295, 48.8649070 2.3998063, 48.8699848 2.3287478, 48.8750248 2.3145888, 48.8851026 2.3266307, 48.8853192 2.3267751, 48.8833981 2.3265291, 48.8815640 2.3207727, 48.8727102 2.3345720, 48.8707655 2.3471293, 48.8689559 2.3407457, 48.8712959 2.3437499, 48.8844160 2.3292308, 48.8835474 2.3336949, 48.8816820 2.3456299, 48.8832578 2.3459960, 48.8834110 2.3475269, 48.8837284 2.3488082, 48.8763445 2.3614950, 48.8684955 2.3674002, 48.8700553 2.3666721, 48.8762256 2.3723091, 48.8725652 2.3640736, 48.8738041 2.3703747, 48.8774841 2.3709987, 48.8705409 2.3514636, 48.8707624 2.3546578, 48.8690350 2.3562439, 48.8794220 2.3546823, 48.8850648 2.3549532, 48.8818932 2.3663627, 48.8917911 2.3353655, 48.8957759 2.3460150, 48.8891775 2.3451972, 48.8904593 2.3545937, 48.8950801 2.3589964, 48.8751448 2.3735780, 48.8683632 2.3815998, 48.8685956 2.3900339, 48.8735031 2.3753876, 48.8722991 2.3766565, 48.8703700 2.3791942, 48.8770727 2.3925548, 48.8736648 2.3896765, 48.8719517 2.3920209, 48.8891494 2.3933914, 48.8822173 2.3934544, 48.8872647 2.3758855, 48.8888297 2.3790479, 48.8829941 2.3814519, 48.8786649 2.3784063, 48.8855727 2.3811520, 48.8834799 2.3835649, 48.8863045 2.3939114, 48.8709467 2.4091775, 48.8755868 2.3978758, 48.8706206 2.3982918, 48.8759333 2.4069996, 48.8839109 2.3979467, 48.8502257 2.3782954, 48.8503235 2.3783645, 48.8495013 2.3784402, 48.8524128 2.3716564, 48.8792880 2.3773054, 48.8245289 2.3642446, 48.8515963 2.3430149, 48.8704365 2.3414021, 48.8831571 2.3884076, 48.8833528 2.3881059, 48.8850543 2.3872280, 48.8454338 2.3886185, 48.8362694 2.3592046, 48.8369033 2.3593290, 48.8376257 2.3602554, 48.8383701 2.3607602, 48.8634173 2.3547815, 48.8632423 2.3546660, 48.8501938 2.3666710, 48.8538420 2.3492906, 48.8536514 2.3489902, 48.8537524 2.3572131, 48.8540777 2.3579438, 48.8515470 2.3572626, 48.8536419 2.3531333, 48.8479782 2.3529858, 48.8416546 2.3484221, 48.8415381 2.3513578, 48.8760825 2.3441472, 48.8592087 2.3525980, 48.8560015 2.3425743, 48.8315512 2.3198720, 48.8720949 2.3323339, 48.8705731 2.3103284, 48.8580159 2.3469052, 48.8406306 2.3924750, 48.8401706 2.3924398, 48.8408330 2.4201155, 48.8290910 2.3744112, 48.8241209 2.3870877, 48.8241325 2.3878869, 48.8549579 2.3931564, 48.8846283 2.3670547, 48.8843707 2.3678261, 48.8847919 2.3672165, 48.8847056 2.3671187, 48.8845782 2.3669813, 48.8685677 2.3920616, 48.8489936 2.3797035, 48.8467974 2.3756328, 48.8494222 2.3777750, 48.8274992 2.3424210, 48.8467447 2.3755957, 48.8480172 2.3808332, 48.8481089 2.3765510, 48.8481759 2.3764337, 48.8484871 2.3802731, 48.8487838 2.3807914, 48.8570855 2.3550986, 48.8201860 2.3400152, 48.8248017 2.3362648, 48.8243806 2.3892291, 48.8735064 2.3141502, 48.8707525 2.3240257, 48.8858230 2.3749446, 48.8558868 2.4042383, 48.8500456 2.3533390, 48.8544203 2.3257043, 48.8435306 2.3879731, 48.8283297 2.3816403, 48.8274933 2.3708430, 48.8680115 2.3865009, 48.8685414 2.3894117, 48.8320548 2.3861467, 48.8348284 2.3879340, 48.8527619 2.4312139, 48.8503640 2.3847349, 48.8502152 2.3848125, 48.8503348 2.3847070, 48.8487674 2.3765835, 48.8449330 2.3838312, 48.8376243 2.3186409, 48.8351017 2.3201496, 48.8351935 2.3203079, 48.8218202 2.3423613, 48.8444522 2.3901640, 48.8443813 2.3902545, 48.8441304 2.3900727, 48.8441332 2.3900872, 48.8441406 2.3900780, 48.8443950 2.3840945, 48.8444028 2.3766004, 48.8444172 2.3902043, 48.8444988 2.3768719, 48.8828920 2.3240924, 48.8840667 2.3535149, 48.8703495 2.3238202, 48.8675028 2.3316819, 48.8691092 2.3404299, 48.8818734 2.3448089, 48.8933604 2.3480566, 48.8941850 2.3732201, 48.8894834 2.3802541, 48.8880227 2.3896758, 48.8836546 2.3973646, 48.8772808 2.3938276, 48.8750529 2.3991679, 48.8707626 2.3933673, 48.8690447 2.4092159, 48.8735092 2.3750458, 48.8260323 2.3598011, 48.8226689 2.3629591, 48.8552277 2.3952797, 48.8475537 2.4030007, 48.8655330 2.3844487, 48.8698655 2.3794311, 48.8719508 2.3687341, 48.8649647 2.3703759, 48.8576339 2.3709762, 48.8316444 2.3266871, 48.8432411 2.3236379, 48.8563765 2.3554581, 48.8473573 2.3704877, 48.8445644 2.3839569, 48.8432368 2.3854870, 48.8448130 2.3836511, 48.8446673 2.3830913, 48.8446804 2.3831393, 48.8425065 2.3895916, 48.8390807 2.3911401, 48.8459410 2.3879568, 48.8357609 2.3867807, 48.8357070 2.4058099, 48.8635536 2.3457667, 48.8315141 2.3780681, 48.8336684 2.3642546, 48.8241785 2.3576816, 48.8231239 2.3475899, 48.8295076 2.3485033, 48.8267596 2.3417744, 48.8383346 2.3427083, 48.8430603 2.3517476, 48.8403876 2.3625569, 48.8319284 2.3270407, 48.8315363 2.3171405, 48.8369539 2.3208269, 48.8414863 2.3240339, 48.8490817 2.3275344, 48.8497031 2.3273499, 48.8467518 2.3915036, 48.8566373 2.3809209, 48.8847666 2.3373500, 48.8887917 2.3829835, 48.8876043 2.3372648, 48.8399992 2.3240094, 48.8597779 2.3530954, 48.8697908 2.3549967, 48.8394650 2.3235600, 48.8702624 2.3461888, 48.8829861 2.3333274, 48.8392531 2.3231864, 48.8837701 2.3265034, 48.8597455 2.3531991, 48.8692693 2.3318524, 48.8597303 2.3459285, 48.8295361 2.3515265, 48.8794685 2.3296284, 48.8530200 2.3453773, 48.8828282 2.3366019, 48.8810211 2.3348222, 48.8840055 2.3266609, 48.8442922 2.3305405, 48.8275676 2.3774556, 48.8622030 2.3518225, 48.8723016 2.3429996, 48.8785619 2.3313946, 48.8415099 2.3244398, 48.8843397 2.3320078, 48.8436363 2.3254799, 48.8721414 2.3433983, 48.8577976 2.3569319, 48.8407733 2.3243516, 48.8713709 2.3448748, 48.8685182 2.3898030, 48.8472463 2.3959684, 48.8734883 2.3453635, 48.8288148 2.3446816, 48.8678179 2.3891525, 48.8601015 2.3815463, 48.8788666 2.3193694, 48.8701073 2.3787698, 48.8714333 2.3421383, 48.8483455 2.3489543, 48.8475212 2.3521266, 48.8412698 2.3495453, 48.8530650 2.3443173, 48.8701190 2.3487548, 48.8508083 2.3417802, 48.8533984 2.3421350, 48.8484020 2.3408453, 48.8544954 2.3401739, 48.8427727 2.3305988, 48.8747486 2.3240211, 48.8755636 2.3279594, 48.8713796 2.3448127, 48.8717708 2.3553091, 48.8545349 2.3691603, 48.8704786 2.3546023, 48.8436131 2.3220274, 48.8338418 2.3309488, 48.8531440 2.3776869, 48.8487929 2.3780969, 48.8488537 2.3789042, 48.8426136 2.3860555, 48.8462737 2.3755090, 48.8469638 2.3755868, 48.8713001 2.3766068, 48.8704762 2.3775322, 48.8712948 2.3768375, 48.8704356 2.3764056, 48.8712066 2.3768241, 48.8466539 2.3999463, 48.8465081 2.4010506, 48.8449997 2.4059414, 48.8459220 2.4058540, 48.8470725 2.4064857, 48.8426319 2.3973692, 48.8396015 2.3958093, 48.8408405 2.3894586, 48.8404388 2.3885071, 48.8391796 2.3955829, 48.8449573 2.4022523, 48.8432250 2.4013484, 48.8434535 2.4014222, 48.8423480 2.4023598, 48.8461317 2.4105193, 48.8462230 2.4111019, 48.8497121 2.3553355, 48.8476483 2.3769905, 48.8840444 2.3273785, 48.8777522 2.3178837, 48.8716241 2.3914872, 48.8319641 2.3766161, 48.8319830 2.3768014, 48.8420844 2.4108250, 48.8597885 2.3387650, 48.8598288 2.3386151, 48.8599042 2.3391076, 48.8599686 2.3379896, 48.8599978 2.3378565, 48.8600039 2.3391566, 48.8602353 2.3376837, 48.8603309 2.3377357, 48.8604134 2.3393753, 48.8605050 2.3394196, 48.8607293 2.3379406, 48.8607384 2.3392453, 48.8607716 2.3391030, 48.8608290 2.3379926, 48.8609095 2.3384821, 48.8609437 2.3383429, 48.8539886 2.4120537, 48.8776662 2.3398701, 48.8765486 2.3385813, 48.8789843 2.3413053, 48.8777824 2.3398244, 48.8791352 2.3437478, 48.8768988 2.3387135, 48.8775239 2.3395383, 48.8382747 2.4058132, 48.8382837 2.4058464, 48.8383375 2.4059297, 48.8376044 2.4083554, 48.8657387 2.3544863, 48.8383753 2.3982048, 48.8387420 2.3963264, 48.8390768 2.3942535, 48.8371288 2.3917395, 48.8370556 2.3918823, 48.8372166 2.3915674, 48.8387373 2.3961225, 48.8516698 2.3805401, 48.8764828 2.3370142, 48.8755310 2.3372367, 48.8766560 2.3371844, 48.8768851 2.3377701, 48.8766806 2.3400707, 48.8352841 2.3987932, 48.8370920 2.3937052, 48.8356474 2.3972691, 48.8706953 2.3490853, 48.8703131 2.3487884, 48.8278377 2.4034794, 48.8266511 2.4059312, 48.8277778 2.4042796, 48.8255688 2.4051308, 48.8269901 2.4055393, 48.8284062 2.4034364, 48.8266758 2.4052443, 48.8277070 2.4036725, 48.8533507 2.4016216, 48.8662293 2.3379767, 48.8686345 2.3376621, 48.8390600 2.3102329, 48.8917628 2.3346006, 48.8257108 2.3218692, 48.8594342 2.4029865, 48.8687850 2.3380000, 48.8413849 2.3139125, 48.8444671 2.3954139, 48.8491922 2.3899823, 48.8481288 2.3939309, 48.8703423 2.3428105, 48.8710339 2.3430453, 48.8703870 2.3428247, 48.8705105 2.3428082, 48.8731247 2.3808610, 48.8508939 2.3012223, 48.8305422 2.3206552, 48.8304290 2.3205552, 48.8331435 2.3229221, 48.8514993 2.3988476, 48.8500661 2.3838221, 48.8433920 2.3865369, 48.8340319 2.3194403, 48.8337840 2.3198864, 48.8337204 2.3201626, 48.8338246 2.3197979, 48.8314491 2.3414315, 48.8732343 2.3096141, 48.8691716 2.3247431, 48.8696360 2.3251272, 48.8566013 2.3030438, 48.8363741 2.3098652, 48.8447537 2.3186687, 48.8364783 2.3062501, 48.8376916 2.3077038, 48.8366211 2.3097495, 48.8365310 2.3099065, 48.8354238 2.3118648, 48.8356242 2.3114974, 48.8361292 2.3106080, 48.8362908 2.3104294, 48.8386677 2.3065876, 48.8395590 2.3060143, 48.8662137 2.3353607, 48.8660390 2.3352910, 48.8657884 2.3351488, 48.8649854 2.3569095, 48.8645459 2.3566348, 48.8667391 2.3539859, 48.8649994 2.3553511, 48.8639860 2.3693922, 48.8635748 2.3698602, 48.8634416 2.3695504, 48.8635544 2.3694256, 48.8634434 2.3691079, 48.8636313 2.3699957, 48.8637107 2.3697771, 48.8636110 2.3699568, 48.8528319 2.3709145, 48.8716652 2.3369422, 48.8719692 2.3361261, 48.8724813 2.3352798, 48.8715773 2.3365388, 48.8714095 2.3355863, 48.8713898 2.3354731, 48.8714562 2.3349266, 48.8712985 2.3353269, 48.8716006 2.3368692, 48.8716019 2.3368770, 48.8716120 2.3368171, 48.8716165 2.3368125, 48.8725191 2.3353232, 48.8752025 2.3376055, 48.8751468 2.3355442, 48.8750628 2.3386203, 48.8750364 2.3392304, 48.8766742 2.3373282, 48.8766460 2.3368602, 48.8768502 2.3324723, 48.8769295 2.3383704, 48.8769349 2.3331592, 48.8766672 2.3325273, 48.8767858 2.3369975, 48.8768033 2.3372248, 48.8766547 2.3369547, 48.8768072 2.3364970, 48.8758550 2.3388379, 48.8767868 2.3367967, 48.8767450 2.3377873, 48.8768931 2.3327041, 48.8769081 2.3380397, 48.8389372 2.3163214, 48.8156713 2.3582001, 48.8142658 2.3585488, 48.8131105 2.3575134, 48.8715356 2.3340932, 48.8710457 2.3357596, 48.8710628 2.3358464, 48.8717139 2.3340286, 48.8710277 2.3356624, 48.8708929 2.3349679, 48.8710045 2.3355038, 48.8715206 2.3340424, 48.8716898 2.3334554, 48.8720026 2.3359899, 48.8735786 2.3648071, 48.8554556 2.3256454, 48.8386344 2.3143780, 48.8305349 2.3455551, 48.8258967 2.3573107, 48.8288239 2.3418815, 48.8740909 2.3274858, 48.8431975 2.3125168, 48.8707193 2.3495070, 48.8716416 2.3409433, 48.8734969 2.3525798, 48.8711315 2.3440128, 48.8706004 2.3472072, 48.8706911 2.3467398, 48.8709873 2.3449321, 48.8707711 2.3461822, 48.8712885 2.3431427, 48.8721862 2.3501755, 48.8708723 2.3480533, 48.8706525 2.3467197, 48.8737265 2.3505928, 48.8704690 2.3480544, 48.8713484 2.3428832, 48.8716176 2.3411379, 48.8707327 2.3464923, 48.8714861 2.3419548, 48.8705588 2.3479808, 48.8715254 2.3499824, 48.8716074 2.3412011, 48.8716782 2.3500401, 48.8647153 2.3341053, 48.8751154 2.3557100, 48.8749802 2.3559340, 48.8744702 2.3552896, 48.8742779 2.3554847, 48.8784174 2.3564644, 48.8761304 2.3564812, 48.8788443 2.3570270, 48.8753708 2.3561756, 48.8769831 2.3560361, 48.8775010 2.3561316, 48.8773577 2.3564531, 48.8770495 2.3560410, 48.8759259 2.3559201, 48.8785393 2.3568626, 48.8767619 2.3563475, 48.8754523 2.3562375, 48.8786854 2.3569358, 48.8796001 2.3577149, 48.8779934 2.3562593, 48.8782144 2.3566970, 48.8759988 2.3559438, 48.8792586 2.3573016, 48.8789525 2.3570837, 48.8768603 2.3560228, 48.8761180 2.3564486, 48.8761263 2.3564411, 48.8769179 2.3560295, 48.8783334 2.3564225, 48.8261137 2.3420629, 48.8264627 2.3442784, 48.8358630 2.3380882, 48.8172529 2.3602221, 48.8799927 2.3591789, 48.8822759 2.3688196, 48.8811904 2.3637372, 48.8826836 2.3705827, 48.8828802 2.3713360, 48.8835025 2.3736534, 48.8827558 2.3708586, 48.8828255 2.3711188, 48.8812174 2.3638517, 48.8834234 2.3734013, 48.8813765 2.3652818, 48.8817998 2.3666492, 48.8827937 2.3706294, 48.8828326 2.3719171, 48.8828533 2.3714104, 48.8834463 2.3733288, 48.8900402 2.3918023, 48.8912248 2.3930476, 48.8914158 2.3933740, 48.8914454 2.3932139, 48.8946014 2.3912450, 48.8224891 2.3474392, 48.8222126 2.3504401, 48.8256278 2.3503006, 48.8275490 2.3490346, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8750088 2.3393609, 48.8757800 2.3396684, 48.8751634 2.3407635, 48.8233280 2.3543382, 48.8299328 2.3501105, 48.8311758 2.3480989, 48.8371959 2.3514837, 48.8527113 2.3442100, 48.8552739 2.3473751, 48.8624252 2.3386199, 48.8639956 2.3355407, 48.8674261 2.3406263, 48.8659581 2.3419245, 48.8664385 2.3508954, 48.8681380 2.3453696, 48.8676791 2.3454560, 48.8212269 2.3421677, 48.8266942 2.3386593, 48.8493100 2.3284272, 48.8205245 2.3513062, 48.8796296 2.3553194, 48.8800642 2.3523843, 48.8809546 2.3510669, 48.8689508 2.3362959, 48.8700724 2.3349268, 48.8662573 2.3370528, 48.8667422 2.3365735, 48.8699611 2.3351928, 48.8682398 2.3365168, 48.8696120 2.3356753, 48.8676561 2.3370904, 48.8675328 2.3370273, 48.8696664 2.3354448, 48.8698393 2.3358297, 48.8708380 2.3349612, 48.8681500 2.3362914, 48.8672079 2.3368573, 48.8688219 2.3359090, 48.8688160 2.3362566, 48.8688035 2.3365534, 48.8707797 2.3349624, 48.8666564 2.3369830, 48.8666406 2.3370669, 48.8695217 2.3356845, 48.8669153 2.3365074, 48.8702490 2.3349166, 48.8688150 2.3361103, 48.8676983 2.3366997, 48.8681903 2.3364995, 48.8682794 2.3373819, 48.8686158 2.3366832, 48.8696855 2.3354998, 48.8699075 2.3352050, 48.8678747 2.3364447, 48.8733496 2.3352682, 48.8742744 2.3329601, 48.8705692 2.3341202, 48.8482512 2.3292214, 48.8476438 2.3027692, 48.8361875 2.3193936, 48.8315372 2.3291516, 48.8354101 2.3485767, 48.8351279 2.3535099, 48.8348276 2.3668095, 48.8226784 2.3919888, 48.8290119 2.3742988, 48.8751334 2.3514260, 48.8719812 2.3356533, 48.8648963 2.3741522, 48.8626586 2.3715845, 48.8476750 2.3269685, 48.8648724 2.3746850, 48.8649185 2.3746481, 48.8640573 2.3358570, 48.8658609 2.3370619, 48.8641660 2.3361960, 48.8656996 2.3366338, 48.8651667 2.3364852, 48.8652254 2.3367395, 48.8658764 2.3368066, 48.8659797 2.3371165, 48.8640682 2.3359120, 48.8644947 2.3361361, 48.8439514 2.4312009, 48.8599096 2.3178151, 48.8698972 2.3290820, 48.8703362 2.3315753, 48.8710076 2.3200209, 48.8597079 2.3182507, 48.8666350 2.3099131, 48.8703978 2.3225405, 48.8706039 2.3262245, 48.8710247 2.3249533, 48.8702620 2.3312290, 48.8702706 2.3312786, 48.8706031 2.3221827, 48.8577488 2.3222584, 48.8580367 2.3228472, 48.8580518 2.3227826, 48.8609239 2.3145274, 48.8669596 2.3113451, 48.8703163 2.3309310, 48.8707016 2.3218346, 48.8548000 2.3455200, 48.8468000 2.3358800, 48.8527000 2.3492200, 48.8518000 2.3475300, 48.8239147 2.4001430, 48.8275825 2.3495237, 48.8275665 2.3493951, 48.8277214 2.3493461, 48.8278072 2.3494399, 48.8747866 2.3414819, 48.8582656 2.3882446, 48.8432795 2.4310714, 48.8781729 2.3383243, 48.8455210 2.3927387, 48.8570504 2.3810504, 48.8570892 2.3809592, 48.8881295 2.3773067, 48.8764332 2.3253672, 48.8468273 2.3109956, 48.8699382 2.3403209, 48.8658900 2.3506042, 48.8543675 2.3835627, 48.8658986 2.3742587, 48.8663671 2.3715603, 48.8648305 2.3731176, 48.8371729 2.3726157, 48.8972266 2.3855240, 48.8543455 2.3561847, 48.8473600 2.3864659, 48.8796615 2.3550800, 48.8798267 2.3542435, 48.8799837 2.3538854, 48.8818140 2.3525350, 48.8798780 2.3540920, 48.8798990 2.3540330, 48.8795907 2.3547699, 48.8613430 2.3487510, 48.8613780 2.3495790, 48.8575110 2.3466500, 48.8549950 2.3458720, 48.8543860 2.3452440, 48.8538530 2.3437110, 48.8526640 2.3534610, 48.8530320 2.3533850, 48.8529300 2.3536810, 48.8546430 2.3547940, 48.8523740 2.3670920, 48.8472625 2.3418020, 48.8822817 2.3707138, 48.8823434 2.3703224, 48.8801409 2.3753984, 48.8838484 2.3703052, 48.8805044 2.3746913, 48.8419411 2.3897697, 48.8361075 2.3240698, 48.8738314 2.3297043, 48.8727906 2.3327950, 48.8735301 2.3302675, 48.8533006 2.4091489, 48.8537801 2.4114641, 48.8246134 2.4085703, 48.8245079 2.4087393, 48.8263541 2.4052937, 48.8261912 2.4060202, 48.8257011 2.4068892, 48.8697793 2.3750857, 48.8694594 2.3740498, 48.8695851 2.3744330, 48.8698073 2.3749191, 48.8698594 2.3755160, 48.8702910 2.3769090, 48.8616152 2.3446790, 48.8616509 2.3443800, 48.8609430 2.3453853, 48.8624876 2.3424711, 48.8639231 2.3448506, 48.8650409 2.3443222, 48.8650939 2.3440997, 48.8652964 2.3432812, 48.8658825 2.3432946, 48.8659653 2.3433342, 48.8668379 2.3438017, 48.8673891 2.3438562, 48.8674613 2.3438214, 48.8682924 2.3433350, 48.8683330 2.3418525, 48.8683712 2.3423646, 48.8683868 2.3418763, 48.8683986 2.3428322, 48.8240781 2.3667729, 48.8537952 2.4109052, 48.8540420 2.4102463, 48.8535604 2.4103242, 48.8533426 2.4103453, 48.8260577 2.4069482, 48.8533437 2.4110062, 48.8258219 2.4066625, 48.8258786 2.4044670, 48.8530681 2.4104272, 48.8259571 2.4071178, 48.8257808 2.4073707, 48.8251812 2.4076886, 48.8220684 2.4142656, 48.8220695 2.4139829, 48.8230229 2.4110104, 48.8252959 2.4075229, 48.8261537 2.4058090, 48.8261120 2.4067185, 48.8275343 2.4045775, 48.8671550 2.3566053, 48.8598716 2.3677862, 48.8586303 2.3897622, 48.8579937 2.3897210, 48.8631926 2.3875837, 48.8631999 2.3875442, 48.8498873 2.3503879, 48.8758431 2.3240197, 48.8758446 2.3239509, 48.8758449 2.3239844, 48.8796269 2.3891937, 48.8576517 2.3848585, 48.8553399 2.3867625, 48.8792482 2.3624736, 48.8967561 2.3835805, 48.8732753 2.3592374, 48.8141320 2.3909081, 48.8150893 2.3923296, 48.8147961 2.3980803, 48.8146937 2.4024630, 48.8144872 2.3840460, 48.8169351 2.3814871, 48.8144872 2.3840460, 48.8376093 2.3551119, 48.8377658 2.3556217, 48.8484590 2.3503760, 48.8465399 2.3518782, 48.8462637 2.3522618, 48.8584947 2.3265348, 48.8640655 2.3345802, 48.8256754 2.3500062, 48.8260463 2.3458083, 48.8257509 2.3631735, 48.8707547 2.3780072, 48.8248377 2.3236483, 48.8238612 2.3234793, 48.8239653 2.3231923, 48.8243856 2.3234123, 48.8246116 2.3235303, 48.8238600 2.3236681, 48.8244668 2.3237073, 48.8242408 2.3233372, 48.8270872 2.3248231, 48.8280919 2.3264056, 48.8274776 2.3257190, 48.8277229 2.3261642, 48.8275711 2.3258960, 48.8277248 2.3271996, 48.8280761 2.3273229, 48.8284080 2.3276636, 48.8274068 2.3262715, 48.8291215 2.3276639, 48.8290544 2.3276046, 48.8291991 2.3278057, 48.8290281 2.3277415, 48.8236221 2.3247553, 48.8234694 2.3234788, 48.8234387 2.3236225, 48.8234660 2.3229699, 48.8236938 2.3240481, 48.8228519 2.3260098, 48.8207875 2.3249534, 48.8226361 2.3257162, 48.8474011 2.3777561, 48.8491890 2.3746194, 48.8752927 2.3875604, 48.8387842 2.4064887, 48.8403734 2.3690860, 48.8388484 2.3702978, 48.8369096 2.3712028, 48.8376057 2.3732965, 48.8365782 2.3714028, 48.8397347 2.3696009, 48.8359107 2.3720037, 48.8312779 2.3775666, 48.8458375 2.4227748, 48.8315850 2.3242790, 48.8314815 2.3265356, 48.8732552 2.3604924, 48.8731705 2.3596985, 48.8731847 2.3591245, 48.8720524 2.3605992, 48.8509963 2.3562136, 48.8434040 2.3889105, 48.8429335 2.3895933, 48.8425237 2.3899126, 48.8722045 2.3371834, 48.8521286 2.3374207, 48.8489464 2.3974432, 48.8450801 2.3278995, 48.8441269 2.3312094, 48.8216180 2.3421128, 48.8892175 2.3514659, 48.8891328 2.3517824, 48.8487334 2.3940682, 48.8759986 2.3816785, 48.8469541 2.4077243, 48.8469268 2.4080604, 48.8675732 2.3338667, 48.8337665 2.3191153, 48.8341125 2.3181604, 48.8901469 2.3557510, 48.8907562 2.3403810, 48.8757608 2.4266674, 48.8725873 2.4297686, 48.8726339 2.4297509, 48.8755256 2.4254652, 48.8913122 2.3504296, 48.8824856 2.3440987, 48.8558178 2.3536690, 48.8378904 2.3224575, 48.8751636 2.4061686, 48.8544686 2.3341824, 48.8830455 2.3398008, 48.8823251 2.3397496, 48.8873987 2.3561308, 48.8910970 2.3741558, 48.8907094 2.3763123, 48.8911479 2.3740014, 48.8912509 2.3733007, 48.8907671 2.3759930, 48.8912248 2.3734447, 48.8902798 2.3758317, 48.8914269 2.3723843, 48.8912652 2.3732218, 48.8907239 2.3762320, 48.8912388 2.3733672, 48.8913438 2.3727883, 48.8907416 2.3761340, 48.8904492 2.3770876, 48.8905238 2.3761696, 48.8905385 2.3761863, 48.8906015 2.3762702, 48.8906402 2.3763268, 48.8906505 2.3759000, 48.8907110 2.3761517, 48.8907565 2.3751966, 48.8908100 2.3757534, 48.8908797 2.3744767, 48.8908896 2.3744217, 48.8909033 2.3743272, 48.8909178 2.3742399, 48.8910821 2.3734196, 48.8910858 2.3739625, 48.8911318 2.3731636, 48.8915094 2.3724074, 48.8902005 2.3757322, 48.8658704 2.3983197, 48.8485558 2.3279413, 48.8763666 2.3587710, 48.8625473 2.3875787, 48.8682496 2.3663122, 48.8682866 2.3661153, 48.8689587 2.3676791, 48.8451014 2.4322443, 48.8456035 2.4284431, 48.8410700 2.4300006, 48.8532340 2.3831638, 48.8778515 2.3272456, 48.8476438 2.3479747, 48.8264889 2.3633645, 48.8647821 2.3501454, 48.8641239 2.3504617, 48.8651576 2.3510916, 48.8662221 2.3520174, 48.8786096 2.3782351, 48.8751432 2.3825052, 48.8750868 2.3823845, 48.8750284 2.3815228, 48.8780545 2.3715328, 48.8735546 2.3841519, 48.8743059 2.3351845, 48.8743099 2.3348778, 48.8436817 2.3546669, 48.8532919 2.3476372, 48.8704694 2.3212950, 48.8703892 2.3212386, 48.8495928 2.3812853, 48.8618926 2.3832643, 48.8615272 2.3827496, 48.8618255 2.3830658, 48.8617144 2.3826179, 48.8430114 2.3751952, 48.8429514 2.3751858, 48.8441122 2.3786311, 48.8446111 2.3755813, 48.8909515 2.3479396, 48.8908275 2.3460063, 48.8905461 2.3453913, 48.8911373 2.3471492, 48.8907355 2.3482159, 48.8287894 2.3699667, 48.8281729 2.3156151, 48.8295186 2.3712567, 48.8328070 2.3117312, 48.8328362 2.3117649, 48.8677158 2.3837011, 48.8851558 2.3360026, 48.8815254 2.3543330, 48.8352398 2.3696811, 48.8420173 2.3480157, 48.8431426 2.3492259, 48.8428742 2.3485446, 48.8430296 2.3492151, 48.8430013 2.3491186, 48.8428672 2.3484588, 48.8334354 2.3313239, 48.8945691 2.3441669, 48.8946670 2.3443629, 48.8949500 2.3433680, 48.8944316 2.3452559, 48.8937368 2.3473963, 48.8938461 2.3475036, 48.8645796 2.3718543, 48.8687716 2.3221560, 48.8935750 2.3428010, 48.8508859 2.3775576, 48.8528026 2.3743383, 48.8935060 2.3426870, 48.8936330 2.3428880, 48.8948080 2.3430620, 48.8652953 2.3815900, 48.8940560 2.3431940, 48.8941520 2.3429690, 48.8943730 2.3432450, 48.8951370 2.3433760, 48.8943990 2.3447720, 48.8943100 2.3457250, 48.8942700 2.3458810, 48.8941300 2.3458060, 48.8941720 2.3462340, 48.8941340 2.3463850, 48.8940340 2.3461900, 48.8939590 2.3470250, 48.8937040 2.3474530, 48.8936100 2.3477290, 48.8928950 2.3433840, 48.8930400 2.3435230, 48.8931490 2.3433290, 48.8934680 2.3423420, 48.8255689 2.3215157, 48.8256253 2.3214943, 48.8945330 2.3413180, 48.8321456 2.3262397, 48.8732230 2.3544700, 48.8712160 2.3580210, 48.8706730 2.3594270, 48.8703827 2.3595938, 48.8704589 2.3594512, 48.8703260 2.3596800, 48.8703260 2.3600480, 48.8697550 2.3610960, 48.8694260 2.3613550, 48.8694730 2.3616430, 48.8692910 2.3615800, 48.8691880 2.3617720, 48.8694980 2.3633100, 48.8693370 2.3635590, 48.8693670 2.3632040, 48.8691390 2.3634440, 48.8690220 2.3633990, 48.8688800 2.3629980, 48.8689960 2.3630690, 48.8691820 2.3631770, 48.8697450 2.3637220, 48.8686940 2.3597770, 48.8686410 2.3599800, 48.8689770 2.3602190, 48.8690369 2.3600697, 48.8694340 2.3601620, 48.8695100 2.3602240, 48.8695810 2.3602770, 48.8702570 2.3608890, 48.8701370 2.3610220, 48.8703390 2.3609580, 48.8704690 2.3610130, 48.8706510 2.3613960, 48.8709730 2.3613960, 48.8710750 2.3612300, 48.8713600 2.3621720, 48.8715680 2.3620320, 48.8718800 2.3626150, 48.8718820 2.3623620, 48.8719160 2.3626810, 48.8721550 2.3626770, 48.8722430 2.3630420, 48.8724460 2.3632870, 48.8726535 2.3631861, 48.8726860 2.3635650, 48.8732160 2.3629280, 48.8313478 2.3132516, 48.8841589 2.3322157, 48.8711140 2.3337868, 48.8300641 2.3145322, 48.8549374 2.3061290, 48.8264682 2.3299850, 48.8285724 2.3161086, 48.8546324 2.3061937, 48.8554617 2.3069499, 48.8555640 2.3069164, 48.8555848 2.3069195, 48.8722679 2.3371342, 48.8722687 2.3371875, 48.8723421 2.3369877, 48.8499500 2.3769797, 48.8508024 2.3768778, 48.8502524 2.3764928, 48.8679829 2.3864573, 48.8684217 2.3859196, 48.8681803 2.3861104, 48.8313000 2.3882082, 48.8315037 2.3662884, 48.8145900 2.3605822, 48.8417557 2.3487402, 48.8726701 2.4079021, 48.8433669 2.3494429, 48.8559235 2.3925572, 48.8722479 2.3978396, 48.8566955 2.3731518, 48.8570910 2.3727607, 48.8914670 2.3493410, 48.8943280 2.3442500, 48.8937040 2.3443030, 48.8931040 2.3440780, 48.8929850 2.3440490, 48.8927220 2.3440920, 48.8926550 2.3442290, 48.8937130 2.3451630, 48.8937300 2.3449020, 48.8939200 2.3452590, 48.8709866 2.3363950, 48.8731527 2.3385700, 48.8505156 2.3091488, 48.8433389 2.3495892, 48.8664049 2.3413812, 48.8687508 2.3345042, 48.8692412 2.3299818, 48.8468527 2.4170511, 48.8466083 2.4182804, 48.8465656 2.4185668, 48.8469632 2.4166417, 48.8470284 2.4077647, 48.8707775 2.3387098, 48.8689281 2.3302927, 48.8695802 2.3230555, 48.8533051 2.4010825, 48.8570621 2.3817062, 48.8410914 2.3489485, 48.8446979 2.3491285, 48.8446176 2.3491298, 48.8664844 2.3389311, 48.8700770 2.3223918, 48.8696595 2.3052249, 48.8662502 2.3285392, 48.8739879 2.3430920, 48.8147908 2.3897357, 48.8419574 2.3290304, 48.8529638 2.3701915, 48.8634808 2.3437738, 48.8226529 2.4101092, 48.8608218 2.3464552, 48.8111920 2.3780919, 48.8110754 2.3780355, 48.8133317 2.3888945, 48.8135916 2.3885631, 48.8136375 2.3886678, 48.8718416 2.3144851, 48.8696738 2.3309961, 48.8724435 2.3281256, 48.8628275 2.3277881, 48.8521273 2.3846642, 48.8913400 2.3514860, 48.8914220 2.3515420, 48.8915940 2.3516290, 48.8917510 2.3517290, 48.8919510 2.3518460, 48.8928400 2.3529200, 48.8933290 2.3479650, 48.8947860 2.3445300, 48.8956620 2.3457420, 48.8955250 2.3458800, 48.8957270 2.3457050, 48.8716249 2.3434418, 48.8941134 2.3651745, 48.8941408 2.3643965, 48.8942739 2.3608266, 48.8910520 2.3649118, 48.8910731 2.3646543, 48.8888458 2.3595338, 48.8885019 2.3596679, 48.8849463 2.3516964, 48.8849657 2.3509440, 48.8947641 2.3506342, 48.8969913 2.3529624, 48.8724800 2.3404835, 48.8724927 2.3528401, 48.8714038 2.3104401, 48.8644111 2.3256564, 48.8435991 2.3495369, 48.8436740 2.3495038, 48.8116214 2.3850943, 48.8715946 2.3262057, 48.8669510 2.3270370, 48.8706950 2.3313289, 48.8445643 2.3491518, 48.8451117 2.3493401, 48.8449670 2.3488185, 48.8448364 2.3492811, 48.8448928 2.3492758, 48.8447887 2.3491498, 48.8426449 2.3435197, 48.8431091 2.3419694, 48.8406254 2.3514242, 48.8406978 2.3515047, 48.8679841 2.3255481, 48.8706291 2.3297804, 48.8693141 2.3323713, 48.8414118 2.3440069, 48.8425813 2.3448154, 48.8424224 2.3451614, 48.8440817 2.3394081, 48.8424630 2.3156606, 48.8636829 2.3283540, 48.8547085 2.3620151, 48.8680526 2.3287936, 48.8684086 2.3268250, 48.8546899 2.3251122, 48.8372850 2.3106653, 48.8662803 2.3394262, 48.8710959 2.3416366, 48.8651186 2.3284372, 48.8699813 2.3246311, 48.8423313 2.3428566, 48.8445379 2.3489273, 48.8445159 2.3485397, 48.8433693 2.3513433, 48.8624680 2.3549738, 48.8279876 2.3272822, 48.8555111 2.3595266, 48.8421636 2.3432160, 48.8597985 2.4338358, 48.8596785 2.4338680, 48.8193240 2.3236972, 48.8189508 2.3234810, 48.8191333 2.3230642, 48.8597088 2.3086607, 48.8529952 2.3376020, 48.8501520 2.3419436, 48.8687853 2.3250184, 48.8443095 2.3492103, 48.8434300 2.3494242, 48.8432628 2.3494718, 48.8447332 2.3491164, 48.8446591 2.3491299, 48.8824430 2.3395146, 48.8697266 2.3414020, 48.8704552 2.3394761, 48.8437358 2.3472026, 48.8384430 2.3563154, 48.8954044 2.3511534, 48.8373350 2.3058145, 48.8372006 2.3061816, 48.8751011 2.3616070, 48.8660415 2.3361004, 48.8240127 2.3580960, 48.8240888 2.3580723, 48.8883787 2.3534523, 48.8447791 2.3492894, 48.8435770 2.3493886, 48.8629947 2.3545853, 48.8728991 2.3470277, 48.8372502 2.3914765, 48.8377834 2.3909830, 48.8940561 2.3541965, 48.8917696 2.3461211, 48.8918716 2.3465917, 48.8939174 2.3431529, 48.8911748 2.3607925, 48.8683505 2.3748549, 48.8645120 2.4161498, 48.8629399 2.4155168, 48.8437872 2.3493332, 48.8442707 2.3492157, 48.8597360 2.3466694, 48.8606298 2.3466023, 48.8634010 2.3478656, 48.8873793 2.3371742, 48.8794294 2.4156069, 48.8806999 2.4220224, 48.8240428 2.3967972, 48.8401572 2.3240577, 48.8751867 2.4062512, 48.8412056 2.3941921, 48.8799295 2.3575665, 48.8418196 2.3905033, 48.8968424 2.3818049, 48.8864168 2.3442029, 48.8866377 2.3443434, 48.8481277 2.4272151, 48.8866611 2.3713511, 48.8899236 2.3398500, 48.8865304 2.3443480, 48.8305691 2.3437858, 48.8441758 2.3479878, 48.8445200 2.3486356, 48.8445253 2.3488180, 48.8445218 2.3487080, 48.8438395 2.3493280, 48.8459828 2.3741796, 48.8477463 2.3951627, 48.8447240 2.3729528, 48.8790699 2.3540350, 48.8562896 2.3705562, 48.8570416 2.3726643, 48.8583199 2.3756060, 48.8582954 2.3754987, 48.8604886 2.3704044, 48.8939381 2.3543052, 48.8189033 2.3228824, 48.8535516 2.3746079, 48.8707816 2.3496418, 48.8499326 2.3631550, 48.8290907 2.3609632, 48.8287266 2.3577412, 48.8615684 2.3783425, 48.8857166 2.3381509, 48.8848997 2.3377794, 48.8841301 2.3388858, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8846283 2.3377325, 48.8849290 2.3370700, 48.8851813 2.3369680, 48.8846072 2.3383226, 48.8475785 2.4004192, 48.8481085 2.4036760, 48.8477834 2.4056017, 48.8478611 2.4055458, 48.8491151 2.3992867, 48.8495350 2.3991507, 48.8754340 2.3230260, 48.8272515 2.3324249, 48.8274320 2.3314214, 48.8743786 2.3636125, 48.8524138 2.4039321, 48.8526347 2.4037316, 48.8690004 2.3384279, 48.8549413 2.4087999, 48.8520184 2.4094142, 48.8535259 2.4120078, 48.8231719 2.3553444, 48.8462126 2.4118560, 48.8558395 2.3835889, 48.8608328 2.3202142, 48.8609201 2.3180354, 48.8555779 2.3258692, 48.8570577 2.3190096, 48.8796310 2.3548543, 48.8516633 2.4098056, 48.8688688 2.3293533, 48.8617696 2.3477277, 48.8439446 2.3493055, 48.8438873 2.3493114, 48.8422145 2.3455341, 48.8434841 2.3451307, 48.8419250 2.3444075, 48.8435640 2.3386465, 48.8485015 2.3421189, 48.8501669 2.3420537, 48.8455001 2.3427289, 48.8663676 2.3860046, 48.8686610 2.3900468, 48.8739830 2.3725892, 48.8742654 2.3727129, 48.8668000 2.3495673, 48.8750802 2.3235709, 48.8561278 2.3314027, 48.8491689 2.3364515, 48.8842439 2.3208990, 48.8602476 2.3525764, 48.8648255 2.3978523, 48.8933357 2.3510120, 48.8878706 2.3493757, 48.8847676 2.3506962, 48.8900150 2.3386297, 48.8722691 2.3468122, 48.8831291 2.3341159, 48.8810244 2.3451276, 48.8251672 2.3753747, 48.8410007 2.3779168, 48.8768622 2.3589369, 48.8758269 2.3554902, 48.8820340 2.3381510, 48.8337651 2.3086915, 48.8334129 2.3092754, 48.8843019 2.3905346, 48.8927700 2.3745823, 48.8839103 2.3739430, 48.8886607 2.3737892, 48.8691728 2.4085455, 48.8580953 2.3988158, 48.8464663 2.3272295, 48.8566315 2.4020574, 48.8436087 2.3253227, 48.8442816 2.3244689, 48.8436931 2.3250669, 48.8433712 2.3246895, 48.8438272 2.3247198, 48.8437155 2.3249989, 48.8439457 2.3244951, 48.8435643 2.3254572, 48.8440394 2.3252776, 48.8434985 2.3253726, 48.8435531 2.3252093, 48.8455688 2.3253845, 48.8458630 2.3256709, 48.8459243 2.3259674, 48.8459484 2.3259864, 48.8460036 2.3258028, 48.8464844 2.3265135, 48.8468167 2.3269118, 48.8828717 2.3288427, 48.8827209 2.3281869, 48.8827606 2.3283572, 48.8482530 2.4016764, 48.8484150 2.3998595, 48.8476850 2.4080780, 48.8600249 2.4009571, 48.8596732 2.4008904, 48.8596966 2.4009450, 48.8598137 2.4007026, 48.8598148 2.4006077, 48.8602450 2.4036827, 48.8602742 2.4037442, 48.8402155 2.3458349, 48.8589058 2.3989762, 48.8606245 2.4045354, 48.8353252 2.3805436, 48.8795681 2.4164781, 48.8508424 2.4062247, 48.8525397 2.4062717, 48.8790996 2.3538362, 48.8659551 2.3738289, 48.8227101 2.3777404, 48.8356633 2.3751497, 48.8489864 2.3403461, 48.8519186 2.3373763, 48.8817068 2.3196827, 48.8838814 2.3289545, 48.8785513 2.3191831, 48.8677168 2.3842251, 48.8917516 2.3438452, 48.8911967 2.3437988, 48.8933614 2.3614463, 48.8555899 2.3867736, 48.8560496 2.3884378, 48.8558032 2.4171869, 48.8425831 2.3967408, 48.8423307 2.3962500, 48.8431786 2.4118113, 48.8433516 2.3972224, 48.8448527 2.4123915, 48.8447201 2.4123031, 48.8401109 2.4071422, 48.8527026 2.3765031, 48.8531504 2.3773721, 48.8511314 2.3762510, 48.8513051 2.3765410, 48.8501042 2.3782626, 48.8352673 2.4018017, 48.8499769 2.3748764, 48.8532457 2.3759666, 48.8511667 2.3770664, 48.8349006 2.3856248, 48.8354795 2.3859524, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8235339 2.3535561, 48.8231032 2.3543307, 48.8501700 2.4001960, 48.8727210 2.3098530, 48.8583239 2.4334742, 48.8521580 2.3738714, 48.8795704 2.3522406, 48.8793693 2.3525786, 48.8861681 2.3474404, 48.8404972 2.3950481, 48.8823708 2.3546777, 48.8414282 2.3751870, 48.8762899 2.3352405, 48.8603849 2.3722146, 48.8618251 2.3720347, 48.8770700 2.3392078, 48.8462352 2.3927786, 48.8671989 2.3667020, 48.8660229 2.3666774, 48.8661411 2.3671105, 48.8276838 2.3319307, 48.8668369 2.3739208, 48.8667946 2.3743500, 48.8566794 2.3823726, 48.8701182 2.3328493, 48.8714714 2.3280397, 48.8914883 2.3506742, 48.8865819 2.3505079, 48.8867280 2.3409619, 48.8286998 2.3507416, 48.8286000 2.3506267, 48.8332718 2.3868776, 48.8332740 2.3869138, 48.8750750 2.3586783, 48.8695686 2.3540691, 48.8729261 2.3537842, 48.8736230 2.3526886, 48.8729261 2.3542213, 48.8732572 2.3529431, 48.8552626 2.4326105, 48.8570793 2.4330413, 48.8573328 2.4331297, 48.8554303 2.4324705, 48.8527467 2.4312145, 48.8528536 2.4314057, 48.8532404 2.4304022, 48.8554545 2.4329266, 48.8474225 2.4339614, 48.8743650 2.3427007, 48.8412651 2.3237285, 48.8412198 2.3236119, 48.8416006 2.3224232, 48.8417364 2.3228852, 48.8857288 2.3428801, 48.8857182 2.3428332, 48.8410399 2.3210471, 48.8476487 2.4368726, 48.8765542 2.3611207, 48.8337153 2.3863338, 48.8762330 2.3783499, 48.8359076 2.3859497, 48.8789434 2.3780844, 48.8776230 2.3777304, 48.8717406 2.3715881, 48.8772835 2.3756704, 48.8649019 2.3984981, 48.8657031 2.3995395, 48.8183068 2.3303100, 48.8276580 2.3500100, 48.8276701 2.3500783, 48.8429112 2.3235502, 48.8420581 2.3222156, 48.8420075 2.3219512, 48.8423579 2.3222342, 48.8426136 2.3217510, 48.8425995 2.3220085, 48.8424434 2.3219416, 48.8422510 2.3218934, 48.8430431 2.3223965, 48.8426424 2.3222812, 48.8423484 2.3212962, 48.8421833 2.3220777, 48.8779977 2.3266274, 48.8722395 2.3541753, 48.8733313 2.3530301, 48.8732730 2.3532176, 48.8727613 2.3519183, 48.8727251 2.3521315, 48.8508395 2.3843514, 48.8526377 2.4062734, 48.8421090 2.3213512, 48.8418212 2.3214760, 48.8850396 2.3205857, 48.8180278 2.3754108, 48.8180421 2.3753992, 48.8159720 2.3757470, 48.8878878 2.3544913, 48.8880271 2.3560550, 48.8817044 2.3525759, 48.8163844 2.3745100, 48.8732300 2.3400464, 48.8674944 2.3533853, 48.8144410 2.3858020, 48.8211226 2.3412820, 48.8196610 2.3252732, 48.8333002 2.3325229, 48.8488761 2.3682264, 48.8496205 2.4036764, 48.8282269 2.3275024, 48.8392213 2.3299129, 48.8708622 2.3349641, 48.8793707 2.3458902, 48.8557457 2.4009907, 48.8559569 2.4014635, 48.8558805 2.4016616, 48.8783213 2.4114864, 48.8487330 2.3561350, 48.8468610 2.3536998, 48.8490828 2.3559798, 48.8449764 2.3549028, 48.8813107 2.3778658, 48.8722815 2.3635605, 48.8795792 2.3764981, 48.8814690 2.3788770, 48.8552161 2.3664464, 48.8714989 2.3580961, 48.8754478 2.3646548, 48.8810188 2.3786602, 48.8745073 2.3650898, 48.8760589 2.3705573, 48.8797439 2.3761658, 48.8201698 2.3641255, 48.8211831 2.3635911, 48.8502906 2.3928948, 48.8753266 2.3704350, 48.8752613 2.3705179, 48.8509430 2.3489714, 48.8476389 2.3773813, 48.8801808 2.3373122, 48.8353533 2.3477721, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8705229 2.3425664, 48.8776130 2.3321167, 48.8767506 2.3327911, 48.8777152 2.3320765, 48.8777130 2.3318740, 48.8769692 2.3323827, 48.8761690 2.3320880, 48.8776233 2.3319343, 48.8758728 2.3354163, 48.8759973 2.3351877, 48.8762282 2.3327974, 48.8752392 2.3359440, 48.8761960 2.3332490, 48.8717348 2.3426744, 48.8717988 2.3422890, 48.8720797 2.3405228, 48.8721385 2.3402693, 48.8720485 2.3407198, 48.8717827 2.3402091, 48.8713165 2.3435900, 48.8713571 2.3432580, 48.8715029 2.3424432, 48.8715088 2.3415405, 48.8715193 2.3423495, 48.8716636 2.3427222, 48.8716892 2.3413115, 48.8717651 2.3403142, 48.8717993 2.3417088, 48.8718366 2.3403543, 48.8721397 2.3393564, 48.8719292 2.3408327, 48.8697525 2.3517557, 48.8708172 2.3482539, 48.8710210 2.3469210, 48.8710350 2.3468353, 48.8696399 2.3521119, 48.8706185 2.3473437, 48.8699131 2.3519891, 48.8701054 2.3514869, 48.8701778 2.3512504, 48.8702314 2.3510796, 48.8703308 2.3501756, 48.8704451 2.3482133, 48.8705697 2.3483676, 48.8708652 2.3474521, 48.8709038 2.3471924, 48.8710522 2.3467304, 48.8388096 2.3823806, 48.8083684 2.3630820, 48.8095183 2.3628255, 48.8092957 2.3621925, 48.8094653 2.3611223, 48.8829700 2.3205585, 48.8712019 2.3413851, 48.8553805 2.3368914, 48.8380973 2.3926743, 48.8816031 2.3282156, 48.8820557 2.3285353, 48.8810393 2.3287050, 48.8780225 2.3319547, 48.8812217 2.3283853, 48.8819163 2.3282898, 48.8815556 2.3282349, 48.8812596 2.3282561, 48.8810901 2.3284438, 48.8804253 2.3287401, 48.8801158 2.3291143, 48.8809390 2.3290257, 48.8816188 2.3284123, 48.8815002 2.3282628, 48.8802806 2.3288294, 48.8814226 2.3285073, 48.8805559 2.3289093, 48.8817375 2.3283675, 48.8812070 2.3286079, 48.8803547 2.3289832, 48.8807207 2.3286359, 48.8809958 2.3285271, 48.8812030 2.3284499, 48.8821364 2.3279588, 48.8571157 2.3684747, 48.8578918 2.3464512, 48.8743640 2.3328049, 48.8743336 2.3345374, 48.8743562 2.3331088, 48.8742801 2.3357676, 48.8741989 2.3323945, 48.8742391 2.3333145, 48.8742191 2.3339210, 48.8742326 2.3334984, 48.8742002 2.3321838, 48.8743271 2.3320123, 48.8743326 2.3322873, 48.8741996 2.3346158, 48.8743344 2.3324943, 48.8743369 2.3320794, 48.8742512 2.3330600, 48.8741848 2.3351560, 48.8743601 2.3329097, 48.8742352 2.3331688, 48.8743344 2.3324039, 48.8742439 2.3332327, 48.8742300 2.3335755, 48.8742269 2.3336382, 48.8742148 2.3347299, 48.8742437 2.3321727, 48.8742456 2.3328589, 48.8742469 2.3336448, 48.8742841 2.3351598, 48.8728885 2.3451791, 48.8921164 2.3345008, 48.8911613 2.3319378, 48.8856755 2.3448166, 48.8930350 2.3633966, 48.8900140 2.3602197, 48.8334449 2.3538589, 48.8643444 2.3274838, 48.8357356 2.3522840, 48.8301847 2.3456951, 48.8352173 2.3476295, 48.8329777 2.3472248, 48.8765391 2.3394762, 48.8763100 2.3399916, 48.8770037 2.3406740, 48.8762070 2.3400723, 48.8765114 2.3406889, 48.8766343 2.3407712, 48.8765191 2.3406058, 48.8765034 2.3395297, 48.8766574 2.3401427, 48.8763841 2.3396912, 48.8764750 2.3395753, 48.8766336 2.3408729, 48.8766574 2.3405656, 48.8762979 2.3397799, 48.8766916 2.3405068, 48.8767915 2.3372725, 48.8353690 2.3465771, 48.8933200 2.3491176, 48.8395564 2.3497363, 48.8751240 2.3369439, 48.8751258 2.3368667, 48.8761627 2.3401745, 48.8320324 2.3866588, 48.8400881 2.3806431, 48.8398677 2.3819967, 48.8398721 2.3821834, 48.8402787 2.3799233, 48.8240405 2.3250200, 48.8517277 2.3664938, 48.8359510 2.3274377, 48.8648511 2.3817815, 48.8518481 2.4241323, 48.8878086 2.3255499, 48.8445744 2.3876337, 48.8779906 2.3450959, 48.8462888 2.4207873, 48.8246903 2.3553751, 48.8200183 2.3651320, 48.8377773 2.3494970, 48.8763089 2.3364262, 48.8712127 2.3428611, 48.8702093 2.4204687, 48.8490395 2.3485570, 48.8826732 2.3757224, 48.8826652 2.3762351, 48.8826088 2.3768306, 48.8825596 2.3779677, 48.8624965 2.3439076, 48.8523973 2.3894913, 48.8642191 2.3423423, 48.8680574 2.3417881, 48.8655111 2.3426280, 48.8644270 2.3423345, 48.8698783 2.3425685, 48.8691169 2.3422291, 48.8702023 2.3421494, 48.8637180 2.3427315, 48.8637692 2.3426419, 48.8638673 2.3421689, 48.8643025 2.3423599, 48.8650391 2.3428079, 48.8655271 2.3423422, 48.8656506 2.3418330, 48.8675845 2.3413784, 48.8675929 2.3416886, 48.8699035 2.3424435, 48.8089348 2.3648472, 48.8426094 2.3977284, 48.8451294 2.4027346, 48.8515069 2.4066855, 48.8794276 2.4184801, 48.8790836 2.4178465, 48.8800418 2.4142030, 48.8351363 2.3445567, 48.8260954 2.3467344, 48.8304114 2.3551773, 48.8864203 2.3325703, 48.8854403 2.3309916, 48.8641319 2.3484339, 48.8692088 2.4085611, 48.8843107 2.3903306, 48.8863919 2.3865004, 48.8709579 2.3576608, 48.8123757 2.3619529, 48.8819047 2.3985349, 48.8590759 2.4003273, 48.8865801 2.3354932, 48.8872935 2.3361945, 48.8853856 2.3359893, 48.8873015 2.3360309, 48.8858892 2.3361945, 48.8125092 2.3618641, 48.8125171 2.3620133, 48.8095597 2.3594455, 48.8644583 2.3274519, 48.8301165 2.3261956, 48.8881851 2.3480652, 48.8884653 2.3485324, 48.8869647 2.3478228, 48.8867173 2.3477674, 48.8791144 2.3365425, 48.8883991 2.3510703, 48.8869141 2.3514696, 48.8635328 2.3632361, 48.8825806 2.3672397, 48.8541484 2.3323158, 48.8538475 2.3325263, 48.8539666 2.3321106, 48.8539543 2.3320945, 48.8920227 2.3428666, 48.8807365 2.3660941, 48.8245551 2.3763634, 48.8857577 2.3451141, 48.8857859 2.3452590, 48.8544440 2.3312616, 48.8554636 2.3337901, 48.8604940 2.3409119, 48.8702948 2.3422163, 48.8309917 2.3237944, 48.8812525 2.3584914, 48.8830672 2.3651696, 48.8825981 2.3645629, 48.8830046 2.3650381, 48.8830637 2.3612591, 48.8728704 2.3813019, 48.8101508 2.3625322, 48.8846517 2.3291078, 48.8847090 2.3292720, 48.8851897 2.3294400, 48.8834736 2.3604504, 48.8896591 2.3426912, 48.8898849 2.3426094, 48.8838668 2.3274744, 48.8857760 2.3287243, 48.8910607 2.3394636, 48.8849775 2.3295394, 48.8902288 2.3476015, 48.8465148 2.4289319, 48.8466235 2.4291176, 48.8461814 2.4288952, 48.8440277 2.3578583, 48.8440733 2.3580327, 48.8441013 2.3580010, 48.8441297 2.3579739, 48.8286085 2.3529303, 48.8429926 2.3485399, 48.8764091 2.3236995, 48.8827601 2.3372823, 48.8248510 2.3607452, 48.8416788 2.3272221, 48.8519424 2.3384522, 48.8620414 2.3297804, 48.8628867 2.3292924, 48.8631141 2.3305616, 48.8645244 2.3241300, 48.8928809 2.3504734, 48.8322708 2.3674245, 48.8556751 2.3337849, 48.8918784 2.3346478, 48.8915644 2.3350420, 48.8915892 2.3347229, 48.8919172 2.3352889, 48.8872260 2.3324699, 48.8958920 2.3466158, 48.8960577 2.3464495, 48.8956490 2.3465730, 48.8959308 2.3457254, 48.8904006 2.3349160, 48.8905328 2.3349026, 48.8906192 2.3344868, 48.8894588 2.3334837, 48.8884483 2.3329205, 48.8875488 2.3327381, 48.8917144 2.3354766, 48.8917726 2.3352969, 48.8915645 2.3352835, 48.8920706 2.3346881, 48.8933968 2.3371262, 48.8933750 2.3385392, 48.8934250 2.3386202, 48.8929700 2.3402831, 48.8088930 2.3648168, 48.8089022 2.3647604, 48.8089205 2.3649005, 48.8089311 2.3649722, 48.8089638 2.3650692, 48.8089936 2.3651590, 48.8090161 2.3650023, 48.8090210 2.3652524, 48.8091158 2.3652557, 48.8091279 2.3651391, 48.8396619 2.3229538, 48.8879853 2.3396455, 48.8090382 2.3650851, 48.8521891 2.3465789, 48.8518599 2.3446879, 48.8547555 2.3384628, 48.8527027 2.3467086, 48.8525189 2.3466440, 48.8887735 2.3938208, 48.8522608 2.4040943, 48.8514101 2.4052556, 48.8514486 2.4064449, 48.8491856 2.4063562, 48.8490772 2.4063369, 48.8479595 2.4050367, 48.8480831 2.4040261, 48.8189971 2.3575128, 48.8189926 2.3575382, 48.8192558 2.3573491, 48.8190889 2.3574967, 48.8721179 2.3385859, 48.8859512 2.3781916, 48.8909107 2.3755163, 48.8860470 2.3791509, 48.8222536 2.3618120, 48.8221935 2.3616081, 48.8221264 2.3613884, 48.8222287 2.3611417, 48.8221688 2.3609429, 48.8221335 2.3607766, 48.8315453 2.3647312, 48.8923038 2.3388466, 48.8927798 2.3416901, 48.8931361 2.3423335, 48.8323795 2.3620094, 48.8325490 2.3620175, 48.8328561 2.3610753, 48.8314449 2.3640412, 48.8577690 2.3998080, 48.8446658 2.3899217, 48.8391806 2.3825585, 48.8389227 2.3824998, 48.8383292 2.3826173, 48.8520536 2.4091515, 48.8301597 2.3816491, 48.8221897 2.3589982, 48.8334932 2.3194586, 48.8219714 2.3582637, 48.8221377 2.3582427, 48.8217964 2.3583170, 48.8220277 2.3582482, 48.8685514 2.3683075, 48.8825100 2.3378415, 48.8834581 2.3344321, 48.8234610 2.3537855, 48.8846868 2.3416679, 48.8843749 2.3411643, 48.8846003 2.3411844, 48.8841743 2.3417867, 48.8842759 2.3413619, 48.8198844 2.3619743, 48.8462350 2.4249809, 48.8463637 2.4250747, 48.8466892 2.4264442, 48.8467895 2.4265022, 48.8471582 2.4294551, 48.8195477 2.3338738, 48.8477236 2.3032589, 48.8820510 2.4101920, 48.8886357 2.3901364, 48.8413779 2.3118977, 48.8803114 2.4117221, 48.8803256 2.4120198, 48.8432413 2.3224129, 48.8438502 2.3225577, 48.8912689 2.3395224, 48.8753270 2.3689900, 48.8720517 2.3351032, 48.8304109 2.3569512, 48.8298312 2.3567979, 48.8662620 2.3356061, 48.8670216 2.3359869, 48.8569678 2.3519723, 48.8683080 2.3897771, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8505220 2.3461000, 48.8507185 2.3452276, 48.8505641 2.3458479, 48.8464932 2.3439185, 48.8484873 2.3463043, 48.8500822 2.3477323, 48.8507620 2.3449853, 48.8463607 2.3432591, 48.8505565 2.3459027, 48.8464051 2.3430548, 48.8464373 2.3431173, 48.8476756 2.3411763, 48.8499865 2.3481714, 48.8501851 2.3484297, 48.8748542 2.3087625, 48.8628332 2.3825028, 48.8302605 2.3138234, 48.8305332 2.3138423, 48.8308414 2.3123480, 48.8308711 2.3136966, 48.8311654 2.3137963, 48.8316692 2.3141635, 48.8358896 2.3152881, 48.8375785 2.3184257, 48.8376267 2.3186493, 48.8712517 2.3429020, 48.8748866 2.3088194, 48.8768246 2.3154058, 48.8444941 2.3897502, 48.8471824 2.3866402, 48.8485106 2.4350206, 48.8503916 2.4344973, 48.8376821 2.3457867, 48.8420674 2.3760001, 48.8414550 2.3765636, 48.8419010 2.3761630, 48.8420279 2.3760760, 48.8422603 2.3759362, 48.8433854 2.3736074, 48.8540831 2.3285075, 48.8672161 2.3065357, 48.8795791 2.4011974, 48.8794785 2.4002318, 48.8496451 2.3534642, 48.8453042 2.3498920, 48.8928033 2.3785257, 48.8927495 2.3785104, 48.8525880 2.4184826, 48.8528539 2.4193380, 48.8625297 2.3799298, 48.8620663 2.3803024, 48.8720302 2.3920402, 48.8536582 2.4244058, 48.8576598 2.4272461, 48.8571430 2.4229626, 48.8555424 2.4223833, 48.8562466 2.4264258, 48.8549210 2.4186865, 48.8554898 2.4013519, 48.8564313 2.4002327, 48.8567743 2.4001839, 48.8570961 2.3998935, 48.8574084 2.3993454, 48.8575637 2.3994629, 48.8579395 2.3997934, 48.8590223 2.4024858, 48.8589783 2.4022376, 48.8589383 2.4057326, 48.8590692 2.4058632, 48.8575224 2.4077895, 48.8577147 2.4074098, 48.8571003 2.4079730, 48.8573471 2.4084118, 48.8572287 2.4082747, 48.8569748 2.4079915, 48.8570206 2.4087900, 48.8518332 2.3373498, 48.8514439 2.3380763, 48.8549221 2.4119401, 48.8556888 2.4005126, 48.8539073 2.4012043, 48.8793921 2.3895039, 48.8519052 2.4236470, 48.8516079 2.4261266, 48.8526846 2.4239243, 48.8531236 2.4235386, 48.8537915 2.4244888, 48.8536991 2.4236240, 48.8522009 2.4263143, 48.8520139 2.4238385, 48.8534715 2.4234390, 48.8554053 2.4340312, 48.8571054 2.4314615, 48.8575624 2.4360669, 48.8560712 2.4256465, 48.8574266 2.4331540, 48.8577619 2.4353641, 48.8563589 2.4272504, 48.8548394 2.4175545, 48.8542026 2.4276788, 48.8552221 2.4229206, 48.8895806 2.3929015, 48.8847068 2.3794407, 48.8725254 2.3564163, 48.8720689 2.3560867, 48.8716754 2.3575262, 48.8724942 2.3562527, 48.8725036 2.3562580, 48.8725198 2.3562571, 48.8725473 2.3562826, 48.8753704 2.3575042, 48.8656739 2.3463704, 48.8371809 2.3497368, 48.8371189 2.3502507, 48.8516647 2.3719912, 48.8204649 2.3388910, 48.8443192 2.3900381, 48.8289587 2.3797130, 48.8289617 2.3797089, 48.8292373 2.3805159, 48.8294451 2.3808673, 48.8534987 2.3177448, 48.8973173 2.3848230, 48.8972521 2.3847586, 48.8970881 2.3845721, 48.8648559 2.3969632, 48.8616106 2.3019528, 48.8459096 2.3748745, 48.8622551 2.3149819, 48.8538751 2.3124512, 48.8420157 2.3726058, 48.8430720 2.3835489, 48.8472114 2.3812727, 48.8609194 2.3070577, 48.8591296 2.3194176, 48.8476062 2.3772809, 48.8580602 2.3104534, 48.8696527 2.3111802, 48.8541706 2.3068705, 48.8091546 2.3649598, 48.8969286 2.3866620, 48.8577965 2.3842350, 48.8453249 2.3924410, 48.8709110 2.3462011, 48.8526225 2.3605373, 48.8527756 2.3604759, 48.8527916 2.3608490, 48.8529200 2.3600286, 48.8530925 2.3597085, 48.8531602 2.3598156, 48.8532277 2.3589001, 48.8533913 2.3581164, 48.8534869 2.3593371, 48.8535051 2.3580579, 48.8540659 2.3610972, 48.8541003 2.3609648, 48.8731487 2.3445761, 48.8713070 2.3479965, 48.8525391 2.4047416, 48.8525041 2.4054710, 48.8505469 2.4061987, 48.8753952 2.3433018, 48.8502723 2.4063088, 48.8526949 2.3089511, 48.8510517 2.3092163, 48.8518484 2.3096816, 48.8529307 2.3090379, 48.8538143 2.3069683, 48.8541796 2.3066834, 48.8493210 2.4123278, 48.8448163 2.3733745, 48.8522713 2.3728858, 48.8743665 2.3618973, 48.8705258 2.3609598, 48.8742228 2.3624553, 48.8693235 2.3602586, 48.8727849 2.3634181, 48.8339369 2.3145520, 48.8363345 2.3104066, 48.8358696 2.3958145, 48.8358361 2.3959436, 48.8362526 2.3943323, 48.8364609 2.3940728, 48.8369959 2.3933620, 48.8379393 2.3947080, 48.8616349 2.3514454, 48.8620103 2.3504016, 48.8619070 2.3508109, 48.8617849 2.3518205, 48.8618170 2.3506485, 48.8616656 2.3513122, 48.8613154 2.3514779, 48.8618213 2.3511884, 48.8618296 2.3505926, 48.8619390 2.3509944, 48.8673541 2.3180025, 48.8689632 2.3129455, 48.8683826 2.3147872, 48.8567114 2.4103333, 48.8595904 2.4050515, 48.8594938 2.4051634, 48.8283068 2.3264318, 48.8665921 2.3829389, 48.8665427 2.3829818, 48.8585499 2.3900827, 48.8742509 2.3267610, 48.8756033 2.3260400, 48.8668276 2.3999886, 48.8708913 2.3580857, 48.8688368 2.3624724, 48.8691941 2.3573560, 48.8692734 2.3564413, 48.8699288 2.3950557, 48.8719573 2.3957786, 48.8734565 2.3909548, 48.8425042 2.4283102, 48.8420092 2.4240851, 48.8408073 2.3218471, 48.8484291 2.4369767, 48.8471758 2.4348566, 48.8464546 2.4345692, 48.8786755 2.3549221, 48.8776027 2.3270929, 48.8751640 2.3321790, 48.8660566 2.3039258, 48.8674435 2.3066185, 48.8760737 2.3314470, 48.8776629 2.3503063, 48.8882304 2.3741760, 48.8880750 2.3740150, 48.8882739 2.3742342, 48.8776378 2.3267921, 48.8933121 2.3848968, 48.8946426 2.3818500, 48.8926684 2.3791196, 48.8932861 2.3844526, 48.8349568 2.3963498, 48.8598245 2.3479142, 48.8592985 2.3479258, 48.8607520 2.3551307, 48.8601373 2.3481716, 48.8625488 2.3540088, 48.8599332 2.3492544, 48.8624420 2.3521861, 48.8600406 2.3484986, 48.8600556 2.3483497, 48.8616973 2.3497749, 48.8610832 2.3541404, 48.8630686 2.3546427, 48.8606162 2.3549537, 48.8601051 2.3500266, 48.8633570 2.3506638, 48.8591455 2.3478511, 48.8593308 2.3476821, 48.8602833 2.3482093, 48.8632590 2.3519986, 48.8611395 2.3539719, 48.8630018 2.3509388, 48.8614419 2.3528860, 48.8589924 2.3475806, 48.8591148 2.3478378, 48.8591224 2.3472049, 48.8592067 2.3534078, 48.8597459 2.3542980, 48.8597947 2.3481558, 48.8599813 2.3497684, 48.8601111 2.3484132, 48.8605147 2.3550422, 48.8607150 2.3496929, 48.8607407 2.3533231, 48.8608690 2.3535460, 48.8615861 2.3538350, 48.8619499 2.3529357, 48.8620249 2.3537411, 48.8621035 2.3535221, 48.8624608 2.3528454, 48.8625131 2.3505652, 48.8626380 2.3503800, 48.8627388 2.3544858, 48.8630130 2.3520043, 48.8630530 2.3526294, 48.8630774 2.3526152, 48.8630836 2.3506216, 48.8631431 2.3517067, 48.8634711 2.3500128, 48.8601905 2.3476020, 48.8601948 2.3475156, 48.8596378 2.3474576, 48.8604384 2.3466636, 48.8636482 2.3489320, 48.8637123 2.3501453, 48.8629250 2.3487647, 48.8600209 2.3471788, 48.8636829 2.3493064, 48.8628881 2.3488962, 48.8637682 2.3499143, 48.8620454 2.3494700, 48.8634421 2.3485303, 48.8633388 2.3485138, 48.8603324 2.3474365, 48.8606768 2.3486445, 48.8626544 2.3497602, 48.8628820 2.3480806, 48.8637288 2.3492623, 48.8637423 2.3492027, 48.8479468 2.3805001, 48.8448439 2.3826317, 48.8468721 2.3812651, 48.8505114 2.3788484, 48.8450449 2.3494549, 48.8577440 2.4279651, 48.8644061 2.3713501, 48.8288751 2.3167202, 48.8305978 2.3143161, 48.8314530 2.3131078, 48.8654002 2.3689374, 48.8414148 2.4182911, 48.8413945 2.4194391, 48.8412648 2.4178016, 48.8412533 2.4177480, 48.8356746 2.3226602, 48.8355850 2.3240208, 48.8356592 2.3240019, 48.8366420 2.3235880, 48.8364355 2.3230794, 48.8354175 2.3228183, 48.8347274 2.3935263, 48.8348557 2.3933268, 48.8350680 2.3931610, 48.8351044 2.3931231, 48.8354238 2.3929281, 48.8357428 2.3922686, 48.8968971 2.3856504, 48.8365016 2.3919794, 48.8363755 2.3920736, 48.8346667 2.3880981, 48.8363401 2.3920991, 48.8371689 2.3900453, 48.8476343 2.3974001, 48.8446991 2.3828833, 48.8452414 2.3792066, 48.8388762 2.3961905, 48.8377454 2.3971411, 48.8378158 2.3970726, 48.8385395 2.3965024, 48.8432840 2.3834396, 48.8440274 2.3842239, 48.8448269 2.3800646, 48.8449387 2.3800015, 48.8451743 2.3712064, 48.8456270 2.3785622, 48.8458965 2.3747978, 48.8462434 2.3767506, 48.8400356 2.3360672, 48.8395556 2.3365605, 48.8277105 2.3319457, 48.8814585 2.3701955, 48.8888444 2.3785107, 48.8461741 2.3758496, 48.8489499 2.3971094, 48.8456047 2.3544832, 48.8192937 2.3232019, 48.8651570 2.3627039, 48.8607749 2.3784617, 48.8614835 2.3771934, 48.8555652 2.3871679, 48.8871386 2.4099027, 48.8830788 2.3285289, 48.8832816 2.3287396, 48.8217455 2.3523997, 48.8221973 2.3554703, 48.8100432 2.3621169, 48.8206871 2.3210565, 48.8489126 2.4232463, 48.8304768 2.3747802, 48.8115606 2.3551878, 48.8116199 2.3552423, 48.8643128 2.3266632, 48.8641893 2.3299462, 48.8343920 2.3220856, 48.8822854 2.3399369, 48.8495790 2.3543056, 48.8438948 2.3207191, 48.8693740 2.3077196, 48.8310397 2.3791345, 48.8437332 2.4306786, 48.8439584 2.4314083, 48.8442360 2.3235210, 48.8442760 2.3236880, 48.8443641 2.3231615, 48.8444056 2.3230253, 48.8398650 2.3230690, 48.8398470 2.3238410, 48.8550414 2.4148541, 48.8564616 2.4267765, 48.8525035 2.3849901, 48.8519848 2.3846342, 48.8405177 2.3236190, 48.8756781 2.3992089, 48.8452447 2.4330221, 48.8485257 2.4347426, 48.8442090 2.3857064, 48.8453354 2.3850906, 48.8552492 2.3391068, 48.8643014 2.4002976, 48.8294447 2.3791512, 48.8288966 2.3760626, 48.8616234 2.4058937, 48.8486397 2.3653776, 48.8472637 2.4367867, 48.8474299 2.4344711, 48.8474332 2.4344060, 48.8474354 2.4342492, 48.8474387 2.4341425, 48.8474550 2.4338746, 48.8720371 2.3481740, 48.8582338 2.4341820, 48.8810334 2.3731370, 48.8808570 2.3744052, 48.8816465 2.3719957, 48.8818907 2.3720105, 48.8810026 2.3740798, 48.8813934 2.3725805, 48.8815725 2.3721513, 48.8809708 2.3734937, 48.8808782 2.3736050, 48.8808002 2.3729937, 48.8446470 2.4049516, 48.8816605 2.3742025, 48.8743652 2.3625584, 48.8732358 2.3613894, 48.8732268 2.3624203, 48.8733184 2.3615096, 48.8339693 2.3179784, 48.8405572 2.3224049, 48.8713202 2.3658560, 48.8944510 2.3440420, 48.8131067 2.3616397, 48.8142316 2.3612488, 48.8147716 2.3611034, 48.8153877 2.3609123, 48.8153143 2.3609359, 48.8139779 2.3613252, 48.8135895 2.3614772, 48.8149985 2.3610400, 48.8417263 2.3245973, 48.8419109 2.3245351, 48.8435173 2.3219294, 48.8407069 2.3164233, 48.8428397 2.3260649, 48.8416495 2.3246134, 48.8433410 2.3248673, 48.8409248 2.3157527, 48.8417952 2.3245691, 48.8430469 2.3258843, 48.8413133 2.3184421, 48.8419805 2.3245034, 48.8414979 2.3246397, 48.8432840 2.3249954, 48.8404349 2.3156482, 48.8429231 2.3260926, 48.8405515 2.3159715, 48.8407506 2.3165877, 48.8427732 2.3210206, 48.8405038 2.3158186, 48.8428632 2.3240193, 48.8415277 2.3195025, 48.8411641 2.3189124, 48.8404090 2.3155450, 48.8408520 2.3154700, 48.8416910 2.3246067, 48.8412683 2.3182655, 48.8415356 2.3248762, 48.8410405 2.3217676, 48.8910090 2.3460570, 48.8098910 2.3635510, 48.8100440 2.3635490, 48.8078290 2.3615060, 48.8085340 2.3587330, 48.8919620 2.3459940, 48.8371723 2.3209043, 48.8125972 2.3621933, 48.8687522 2.3154832, 48.8304137 2.3773682, 48.8341167 2.3339725, 48.8336788 2.3331356, 48.8295616 2.3691128, 48.8288832 2.3693573, 48.8274219 2.3701668, 48.8274304 2.3681740, 48.8271902 2.3689921, 48.8293003 2.3686112, 48.8304833 2.3684583, 48.8272432 2.3687533, 48.8342481 2.3734295, 48.8727890 2.3429679, 48.8728311 2.3429546, 48.8727157 2.3429899, 48.8728753 2.3429491, 48.8725590 2.3430087, 48.8726054 2.3430164, 48.8479464 2.4345472, 48.8404449 2.3243133, 48.8393146 2.3237992, 48.8394700 2.3227210, 48.8457158 2.3823706, 48.8219928 2.4027040, 48.8208255 2.4020831, 48.8207628 2.4022990, 48.8234676 2.4058718, 48.8235097 2.4055687, 48.8239202 2.3655030, 48.8231449 2.3164243, 48.8211852 2.3229555, 48.8211334 2.3227542, 48.8211175 2.3226927, 48.8211709 2.3228999, 48.8212005 2.3230152, 48.8211498 2.3228182, 48.8561348 2.4048284, 48.8561119 2.4048766, 48.8579931 2.4032941, 48.8468777 2.4086290, 48.8468470 2.4088515, 48.8479121 2.4058825, 48.8497371 2.3992735, 48.8641210 2.3809737, 48.8641572 2.3808312, 48.8647704 2.3816186, 48.8650199 2.3816335, 48.8668226 2.3830863, 48.8669144 2.3828198, 48.8719957 2.3430238, 48.8717767 2.3429926, 48.8720494 2.3430269, 48.8718412 2.3430035, 48.8719005 2.3430238, 48.8453430 2.3926730, 48.8432090 2.3887460, 48.8463490 2.4032630, 48.8502720 2.3963360, 48.8435767 2.3965557, 48.8464210 2.4032480, 48.8498670 2.3962590, 48.8489413 2.3910006, 48.8857903 2.3895902, 48.8870531 2.3881311, 48.8729655 2.3432485, 48.8717015 2.3432454, 48.8720337 2.3433324, 48.8723365 2.3433170, 48.8718705 2.3433170, 48.8718024 2.3432812, 48.8649600 2.3207507, 48.8659920 2.3215075, 48.8668835 2.3116323, 48.8686692 2.3103634, 48.8686841 2.3099161, 48.8689059 2.3096161, 48.8690546 2.3106303, 48.8692789 2.3103348, 48.8692931 2.3098862, 48.8525650 2.3914983, 48.8209712 2.3883665, 48.8628314 2.3879208, 48.8446028 2.3805301, 48.8446948 2.3803356, 48.8430973 2.3830716, 48.8193061 2.3373740, 48.8302062 2.3335779, 48.8508700 2.3332751, 48.8679715 2.3375806, 48.8390186 2.3533781, 48.8254086 2.3802466, 48.8396713 2.3471300, 48.8397850 2.3575188, 48.8400031 2.3575222, 48.8400384 2.3577299, 48.8407685 2.3562597, 48.8407848 2.3562522, 48.8408017 2.3562465, 48.8575432 2.3631867, 48.8984327 2.3695091, 48.8229131 2.3581886, 48.8230394 2.3580746, 48.8228779 2.3555122, 48.8231701 2.3580518, 48.8232575 2.3580129, 48.8222518 2.3550558, 48.8232610 2.3543235, 48.8226942 2.3582047, 48.8232707 2.3553092, 48.8232751 2.3542283, 48.8237572 2.3538368, 48.8767250 2.3307380, 48.8262224 2.3748278, 48.8103859 2.3634255, 48.8099878 2.3804322, 48.8103162 2.3796972, 48.8610880 2.3512876, 48.8615948 2.3522768, 48.8614615 2.3514586, 48.8484894 2.4372244, 48.8394454 2.3963015, 48.8394576 2.3962737, 48.8605989 2.3512022, 48.8841484 2.3227392, 48.8840708 2.3230235, 48.8495312 2.4181317, 48.8222866 2.3235525, 48.8861392 2.3337047, 48.8518241 2.3982324, 48.8515798 2.3992009, 48.8515911 2.3992945, 48.8983279 2.3618983, 48.8983261 2.3617173, 48.8983518 2.3649038, 48.8720846 2.3660947, 48.8716623 2.3681061, 48.8450849 2.3736722, 48.8450972 2.3739673, 48.8448238 2.3691876, 48.8471374 2.3947373, 48.8416499 2.3895371, 48.8573786 2.3543034, 48.8577844 2.3546061, 48.8442166 2.3890513, 48.8445865 2.3900144, 48.8446393 2.3899483, 48.8447328 2.3894590, 48.8460490 2.3883759, 48.8451775 2.3885757, 48.8455384 2.3888508, 48.8456435 2.3883893, 48.8467978 2.3874491, 48.8462215 2.3870803, 48.8463910 2.3878730, 48.8470847 2.3868148, 48.8468937 2.3869270, 48.8470414 2.3872131, 48.8603639 2.3478222, 48.8603388 2.3480663, 48.8606775 2.3486913, 48.8600805 2.3520305, 48.8598889 2.3522642, 48.8275287 2.3149795, 48.8597934 2.3508151, 48.8798447 2.3453589, 48.8600048 2.3507638, 48.8846966 2.3919640, 48.8846914 2.3902220, 48.8848153 2.3229754, 48.8714407 2.3097914, 48.8281219 2.3158457, 48.8465012 2.4195559, 48.8461616 2.4192892, 48.8463722 2.4206930, 48.8473303 2.4193760, 48.8473675 2.4193797, 48.8477269 2.4196385, 48.8485180 2.4350298, 48.8733188 2.3446580, 48.8804108 2.3562078, 48.8600106 2.3509612, 48.8735773 2.3706207, 48.8750935 2.3351732, 48.8436342 2.3043290, 48.8431682 2.3046133, 48.8412254 2.3738186, 48.8878312 2.3787631, 48.8918524 2.3632899, 48.8919900 2.3631317, 48.8701201 2.3491659, 48.8415077 2.4307920, 48.8609895 2.3473093, 48.8596119 2.3520509, 48.8568591 2.3538840, 48.8763400 2.3386612, 48.8756176 2.3432285, 48.8760560 2.3438036, 48.8762724 2.3440214, 48.8730582 2.3434334, 48.8730540 2.3435221, 48.8429539 2.4085434, 48.8443890 2.4068429, 48.8418110 2.4082929, 48.8655913 2.3471265, 48.8613396 2.3430061, 48.8603595 2.3510541, 48.8604654 2.3511118, 48.8605702 2.3511696, 48.8606843 2.3512326, 48.8121539 2.3917982, 48.8120995 2.3913637, 48.8238476 2.3506828, 48.8402963 2.3339966, 48.8207235 2.3507707, 48.8601441 2.3501434, 48.8618770 2.3502017, 48.8689535 2.3541673, 48.8341834 2.3261480, 48.8257982 2.3468029, 48.8266018 2.3354681, 48.8272551 2.3352458, 48.8330622 2.3958487, 48.8336114 2.3861569, 48.8337322 2.3983467, 48.8337623 2.3951877, 48.8342999 2.3975412, 48.8343797 2.3963938, 48.8345191 2.3966361, 48.8348254 2.3934365, 48.8348947 2.3972942, 48.8349022 2.3933477, 48.8349654 2.3960429, 48.8358704 2.3961786, 48.8359891 2.3974455, 48.8360813 2.3872238, 48.8361353 2.3948924, 48.8361988 2.3988969, 48.8364221 2.3949270, 48.8364309 2.3988951, 48.8365523 2.3982569, 48.8366252 2.3929585, 48.8366508 2.3952223, 48.8366989 2.3943677, 48.8369456 2.4019945, 48.8370471 2.3917506, 48.8375850 2.3971765, 48.8376090 2.3907850, 48.8380876 2.3941069, 48.8382060 2.3900510, 48.8382377 2.3966077, 48.8384334 2.3930799, 48.8392532 2.4005400, 48.8393971 2.4089227, 48.8394590 2.3963160, 48.8401062 2.4087456, 48.8403121 2.4025153, 48.8403240 2.3922740, 48.8404000 2.3925410, 48.8405290 2.3878980, 48.8406298 2.4087338, 48.8408716 2.4093998, 48.8408973 2.4043894, 48.8411011 2.3894090, 48.8411636 2.4011997, 48.8412990 2.3878120, 48.8414464 2.4049212, 48.8415076 2.4114849, 48.8415328 2.3867030, 48.8416660 2.4012796, 48.8419094 2.4012356, 48.8421054 2.4051399, 48.8422686 2.4130852, 48.8427012 2.4099683, 48.8430070 2.4049900, 48.8432746 2.4053848, 48.8435321 2.4018263, 48.8435985 2.3849459, 48.8438772 2.4055537, 48.8438822 2.4018602, 48.8441184 2.4107116, 48.8445290 2.4022130, 48.8445690 2.3838350, 48.8447684 2.4039094, 48.8450108 2.3819449, 48.8450601 2.4059175, 48.8451489 2.3992116, 48.8456490 2.4058577, 48.8458140 2.3781933, 48.8460195 2.4011318, 48.8464795 2.3973596, 48.8468250 2.3761200, 48.8469175 2.3998635, 48.8470370 2.3752130, 48.8473365 2.3968804, 48.8475637 2.3772093, 48.8476803 2.3969131, 48.8478107 2.3769587, 48.8486250 2.3761890, 48.8486464 2.3760764, 48.8486500 2.3759526, 48.8486995 2.3922091, 48.8488565 2.3718825, 48.8491107 2.3914645, 48.8491891 2.3706453, 48.8492039 2.3749537, 48.8493182 2.3945344, 48.8494100 2.3666950, 48.8495420 2.3885630, 48.8496199 2.3992270, 48.8496430 2.3879630, 48.8497090 2.3874500, 48.8499140 2.3738580, 48.8500548 2.3704157, 48.8501440 2.3736032, 48.8501956 2.3990356, 48.8507639 2.3673484, 48.8517110 2.3618880, 48.8517771 2.3894115, 48.8518450 2.3616490, 48.8521525 2.3608127, 48.8522346 2.3609020, 48.8526930 2.3593190, 48.8527195 2.3598976, 48.8527480 2.3589640, 48.8531388 2.3585705, 48.8532690 2.3582420, 48.8535826 2.3671894, 48.8536386 2.3574595, 48.8536840 2.3653980, 48.8540083 2.3867106, 48.8542800 2.3558000, 48.8543900 2.3585670, 48.8546430 2.3624970, 48.8551500 2.3611171, 48.8551661 2.3610199, 48.8553710 2.3839922, 48.8554533 2.3526702, 48.8555080 2.3530370, 48.8557740 2.3511230, 48.8557940 2.3561690, 48.8559788 2.3536549, 48.8576042 2.3453235, 48.8576673 2.3795437, 48.8578611 2.3794239, 48.8580233 2.3793056, 48.8588686 2.3399492, 48.8593222 2.3528610, 48.8597358 2.3468419, 48.8618647 2.3406148, 48.8659038 2.3352738, 48.8664823 2.3650887, 48.8680548 2.3339763, 48.8682365 2.3599800, 48.8683243 2.3611065, 48.8693195 2.3570045, 48.8692824 2.3567025, 48.8701819 2.3507724, 48.8703411 2.3499916, 48.8703632 2.3498715, 48.8704864 2.3493477, 48.8705032 2.3492529, 48.8716194 2.3500035, 48.8721225 2.3499157, 48.8721226 2.3502025, 48.8722370 2.3500383, 48.8737185 2.3504412, 48.8741816 2.3506318, 48.8747445 2.3507850, 48.8752900 2.3395820, 48.8758873 2.3483293, 48.8760619 2.3511508, 48.8761825 2.3510275, 48.8762909 2.3511140, 48.8779921 2.3512114, 48.8784568 2.3428425, 48.8787058 2.3506082, 48.8792051 2.3494881, 48.8792478 2.3478686, 48.8794000 2.3508120, 48.8795410 2.3488399, 48.8798786 2.3436312, 48.8799663 2.3473845, 48.8205221 2.3499531, 48.8204523 2.3498034, 48.8518337 2.3885816, 48.8676507 2.3427272, 48.8203353 2.3492312, 48.8199467 2.3483675, 48.8226912 2.3495447, 48.8233348 2.3532089, 48.8120117 2.3871686, 48.8127411 2.3857008, 48.8126050 2.3874435, 48.8119187 2.3872169, 48.8480339 2.3711696, 48.8483465 2.3710764, 48.8488787 2.3707634, 48.8515203 2.3696022, 48.8537094 2.3705397, 48.8537227 2.3702879, 48.8534314 2.3706101, 48.8826655 2.3531967, 48.8828483 2.3532440, 48.8823834 2.3531283, 48.8500168 2.3926915, 48.8502098 2.3923579, 48.8497025 2.3932209, 48.8841048 2.3216813, 48.8498626 2.3938772, 48.8840213 2.3219041, 48.8841728 2.3219390, 48.8494363 2.3945868, 48.8385781 2.3705346, 48.8392685 2.3708042, 48.8381652 2.3706674, 48.8449733 2.3955604, 48.8452920 2.3209130, 48.8452821 2.3979496, 48.8463896 2.3943133, 48.8471562 2.3938782, 48.8489640 2.3916850, 48.8493880 2.3888810, 48.8496070 2.3873440, 48.8502461 2.3827334, 48.8504940 2.3815430, 48.8505009 2.3846476, 48.8513150 2.3816100, 48.8518018 2.3280805, 48.8525120 2.3807800, 48.8533500 2.3805110, 48.8537880 2.3957560, 48.8541520 2.3797770, 48.8561260 2.3783390, 48.8576484 2.3771545, 48.8584759 2.3764078, 48.8603270 2.3754070, 48.8618492 2.3647130, 48.8621758 2.3636326, 48.8622764 2.3665452, 48.8633235 2.3689417, 48.8645520 2.3597753, 48.8671223 2.3513757, 48.8700760 2.3506120, 48.8736310 2.3479604, 48.8755325 2.3482416, 48.8758100 2.3397850, 48.8760265 2.3400514, 48.8760800 2.3403660, 48.8768678 2.3487512, 48.8489499 2.3541277, 48.8246333 2.3621995, 48.8240842 2.3636888, 48.8241109 2.3637054, 48.8240998 2.3638457, 48.8237126 2.3653208, 48.8225139 2.3638751, 48.8221895 2.3632536, 48.8223064 2.3631664, 48.8222916 2.3627648, 48.8222392 2.3628073, 48.8223782 2.3631115, 48.8223716 2.3627130, 48.8224283 2.3626633, 48.8230753 2.3626307, 48.8234533 2.3618634, 48.8232058 2.3603599, 48.8728990 2.3346516, 48.8478375 2.3535433, 48.8226659 2.3580445, 48.8229485 2.3577916, 48.8229254 2.3569509, 48.8230185 2.3566795, 48.8222859 2.3473947, 48.8210082 2.3427545, 48.8211212 2.3425439, 48.8211618 2.3417447, 48.8389060 2.3767670, 48.8390010 2.3874480, 48.8396552 2.3779295, 48.8543680 2.3547701, 48.8361400 2.3232008, 48.8221069 2.3505029, 48.8202708 2.3594105, 48.8202117 2.3594306, 48.8195166 2.3596336, 48.8194688 2.3590386, 48.8193950 2.3590616, 48.8193544 2.3597323, 48.8193606 2.3601238, 48.8414957 2.3371064, 48.8417477 2.3371307, 48.8415976 2.3371190, 48.8419834 2.3371310, 48.8418619 2.3371366, 48.8422384 2.3371968, 48.8239017 2.3229235, 48.8242472 2.3213940, 48.8245758 2.3199505, 48.8255285 2.3158189, 48.8256468 2.3482018, 48.8258238 2.3144135, 48.8260929 2.3588377, 48.8261054 2.3131480, 48.8275286 2.3318231, 48.8451702 2.3983100, 48.8475546 2.3889290, 48.8478588 2.3908091, 48.8482240 2.3808030, 48.8482720 2.3787290, 48.8490260 2.3810470, 48.8492020 2.3781220, 48.8498208 2.3768806, 48.8499970 2.3791060, 48.8520364 2.3739698, 48.8540329 2.3736919, 48.8545885 2.3714719, 48.8546118 2.3729736, 48.8546280 2.3710930, 48.8550337 2.3704743, 48.8574091 2.3612872, 48.8577110 2.3608910, 48.8618100 2.3539090, 48.8627772 2.3535227, 48.8646021 2.3531390, 48.8700440 2.3507020, 48.8737450 2.3479740, 48.8738400 2.3446450, 48.8761660 2.3441530, 48.8791390 2.3535520, 48.8798180 2.3528100, 48.8820870 2.3509300, 48.8861322 2.3494762, 48.8866800 2.3495020, 48.8876420 2.3494764, 48.8878870 2.3494964, 48.8906598 2.3495186, 48.8909454 2.3495172, 48.8506402 2.3427239, 48.8511253 2.3446769, 48.8122390 2.3613201, 48.8123520 2.3612691, 48.8123785 2.3612530, 48.8127724 2.3617251, 48.8129614 2.3610733, 48.8131168 2.3610438, 48.8133217 2.3609714, 48.8506918 2.3841353, 48.8145369 2.3614435, 48.8143161 2.3607058, 48.8144556 2.3606173, 48.8145228 2.3613147, 48.8147842 2.3605422, 48.8148230 2.3605315, 48.8151292 2.3601961, 48.8187866 2.3610099, 48.8226770 2.3469702, 48.8237890 2.3481077, 48.8229290 2.3469037, 48.8227998 2.3462308, 48.8226622 2.3461282, 48.8220105 2.3463703, 48.8253834 2.3497343, 48.8259715 2.3507845, 48.8256496 2.3504330, 48.8256632 2.3497741, 48.8258771 2.3495257, 48.8256384 2.3493057, 48.8258284 2.3486459, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8255453 2.3475405, 48.8256778 2.3462187, 48.8771870 2.3513170, 48.8257731 2.3455104, 48.8260781 2.3450782, 48.8260527 2.3450339, 48.8257972 2.3453018, 48.8258685 2.3448678, 48.8264939 2.3422757, 48.8264077 2.3428246, 48.8256413 2.3500952, 48.8764165 2.3555503, 48.8764781 2.3553328, 48.8765890 2.3553673, 48.8426583 2.3073002, 48.8272380 2.3220817, 48.8423305 2.3075420, 48.8361937 2.3095039, 48.8601247 2.4309498, 48.8771434 2.3517304, 48.8764892 2.3552357, 48.8765119 2.3549110, 48.8765499 2.3550110, 48.8768355 2.3527879, 48.8770861 2.3518933, 48.8266961 2.3392484, 48.8268524 2.3383549, 48.8276520 2.3326075, 48.8277073 2.3307027, 48.8279313 2.3307106, 48.8277124 2.3302466, 48.8277018 2.3297638, 48.8277159 2.3298764, 48.8682736 2.3412653, 48.8277088 2.3287499, 48.8277159 2.3275188, 48.8277230 2.3275992, 48.8277300 2.3277843, 48.8273186 2.3263279, 48.8365117 2.3931886, 48.8309811 2.3172117, 48.8310197 2.3171605, 48.8311173 2.3166315, 48.8463247 2.3542973, 48.8474791 2.3523484, 48.8154625 2.3638923, 48.8154122 2.3632391, 48.8647426 2.3979362, 48.8148734 2.3627498, 48.8148231 2.3622389, 48.8148743 2.3639179, 48.8098430 2.3618112, 48.8098589 2.3613470, 48.8099103 2.3607553, 48.8091161 2.3610037, 48.8091073 2.3609702, 48.8090993 2.3609380, 48.8124837 2.3871372, 48.8124426 2.3871835, 48.8123663 2.3872619, 48.8123292 2.3873129, 48.8123610 2.3868616, 48.8123190 2.3869052, 48.8122457 2.3869876, 48.8122024 2.3870319, 48.8121539 2.3880498, 48.8121207 2.3880840, 48.8126819 2.3862937, 48.8118566 2.3898327, 48.8122314 2.3870295, 48.8124561 2.3871476, 48.8117474 2.3906746, 48.8115778 2.3903715, 48.8114966 2.3902267, 48.8123444 2.3868994, 48.8123428 2.3872773, 48.8664637 2.4000823, 48.8673359 2.3991033, 48.8674669 2.3990064, 48.8715794 2.4041825, 48.8736876 2.4050632, 48.8690375 2.4018799, 48.8681245 2.4017154, 48.8684845 2.4013925, 48.8665408 2.3996952, 48.8675264 2.4005840, 48.8673402 2.4006763, 48.8679278 2.4013702, 48.8679434 2.4014755, 48.8680495 2.4014213, 48.8680507 2.4015447, 48.8682598 2.4015540, 48.8683220 2.4016258, 48.8688060 2.4017709, 48.8688371 2.4017940, 48.8690675 2.4022654, 48.8143764 2.3434872, 48.8149595 2.3483612, 48.8155173 2.3447586, 48.8144404 2.3497005, 48.8147949 2.3488666, 48.8709604 2.4036547, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8730171 2.4047378, 48.8772965 2.4093947, 48.8709768 2.4035156, 48.8729522 2.4050353, 48.8718932 2.4046138, 48.8721618 2.4043561, 48.8700499 2.4031251, 48.8748544 2.4054806, 48.8769262 2.4061080, 48.8714551 2.4043701, 48.8716275 2.4045199, 48.8711831 2.4041560, 48.8698381 2.4029325, 48.8722236 2.4047280, 48.8772063 2.4094486, 48.8702353 2.4031395, 48.8705273 2.4034029, 48.8713337 2.4042119, 48.8714440 2.4045360, 48.8715019 2.4045081, 48.8721599 2.4047025, 48.8722019 2.4044780, 48.8736783 2.4050852, 48.8738942 2.4051527, 48.8740366 2.4050675, 48.8762240 2.4062991, 48.8763811 2.4061703, 48.8769898 2.4054164, 48.8774098 2.4070114, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8756694 2.4011802, 48.8711865 2.4001138, 48.8768593 2.4057793, 48.8762568 2.4026044, 48.8680913 2.3978796, 48.8692292 2.3966523, 48.8725672 2.3992261, 48.8784629 2.4100715, 48.8701577 2.3958401, 48.8690126 2.3971718, 48.8769740 2.4053224, 48.8732754 2.3993407, 48.8780164 2.4108510, 48.8726193 2.3990837, 48.8701445 2.3959121, 48.8702568 2.3970354, 48.8707130 2.3991468, 48.8707754 2.3989361, 48.8708354 2.3989370, 48.8711097 2.4001519, 48.8711850 2.4004090, 48.8712072 2.4001549, 48.8712159 2.4002871, 48.8712217 2.4002298, 48.8723933 2.3993546, 48.8726309 2.3990147, 48.8727647 2.3994633, 48.8728768 2.3993183, 48.8728938 2.3993172, 48.8733527 2.3993062, 48.8734256 2.3990749, 48.8735753 2.3990719, 48.8742140 2.3985840, 48.8753906 2.3990200, 48.8755656 2.3996641, 48.8758525 2.4010202, 48.8758552 2.4019932, 48.8758607 2.4010867, 48.8758784 2.4027378, 48.8758866 2.4011952, 48.8759645 2.4018531, 48.8762275 2.4030379, 48.8763320 2.4034081, 48.8765048 2.4039735, 48.8767145 2.4045468, 48.8768873 2.4052913, 48.8769447 2.4050363, 48.8776734 2.4065084, 48.8777001 2.4053079, 48.8779210 2.4059297, 48.8780658 2.4109854, 48.8781032 2.4108393, 48.8781597 2.4107923, 48.8782650 2.4058287, 48.8783033 2.4112825, 48.8785981 2.4091821, 48.8786831 2.4091366, 48.8646840 2.3980595, 48.8251897 2.3469815, 48.8248691 2.3468871, 48.8250908 2.3464880, 48.8237982 2.3450583, 48.8230883 2.3447901, 48.8237048 2.3451996, 48.8219312 2.3422877, 48.8226168 2.3442269, 48.8240226 2.3413467, 48.8239465 2.3416177, 48.8247674 2.3413234, 48.8248954 2.3414221, 48.8250781 2.3413713, 48.8256029 2.3415131, 48.8645296 2.3999995, 48.8650286 2.3978764, 48.8653038 2.3983748, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8664565 2.3996388, 48.8647748 2.3993182, 48.8643290 2.3977966, 48.8661206 2.3993734, 48.8647416 2.4000331, 48.8655701 2.3988667, 48.8655819 2.3982331, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8650490 2.3975315, 48.8653472 2.3979562, 48.8646156 2.3980291, 48.8641688 2.3976584, 48.8642835 2.3981370, 48.8645686 2.3986116, 48.8646661 2.3999637, 48.8648392 2.3978485, 48.8648400 2.3978274, 48.8649034 2.3999292, 48.8649167 2.3996207, 48.8649547 2.4001524, 48.8649879 2.3978217, 48.8650741 2.3972853, 48.8651883 2.3985982, 48.8652188 2.3989491, 48.8653550 2.3980167, 48.8654901 2.3978337, 48.8655753 2.3991180, 48.8657823 2.3994721, 48.8673886 2.3988664, 48.8255787 2.3417572, 48.8245328 2.3394230, 48.8821571 2.3281764, 48.8333333 2.3556520, 48.8462947 2.4215157, 48.8456693 2.4284217, 48.8414468 2.4144659, 48.8438908 2.4240046, 48.8456718 2.4237071, 48.8456998 2.4282037, 48.8457116 2.4279991, 48.8463467 2.4286638, 48.8385555 2.3567522, 48.8385802 2.3568194, 48.8575448 2.3507955, 48.8573962 2.3495429, 48.8583089 2.3478780, 48.8567290 2.3486047, 48.8567698 2.3537979, 48.8569103 2.3479938, 48.8569413 2.3478736, 48.8570693 2.3504424, 48.8572967 2.3515291, 48.8573370 2.3494764, 48.8575122 2.3463154, 48.8576797 2.3474237, 48.8579572 2.3466352, 48.8581459 2.3478668, 48.8582478 2.3479213, 48.8582571 2.3473959, 48.8585864 2.3477527, 48.8587983 2.3475129, 48.8661899 2.3718762, 48.8135121 2.3892260, 48.8524191 2.3679142, 48.8522308 2.3678097, 48.8343361 2.3668535, 48.8319649 2.3723199, 48.8344622 2.3673602, 48.8322674 2.3703758, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8271728 2.3685245, 48.8224197 2.3593888, 48.8226287 2.3606739, 48.8227058 2.3609553, 48.8225825 2.3611738, 48.8226746 2.3608366, 48.8226533 2.3607500, 48.8227567 2.3618443, 48.8229131 2.3618148, 48.8231151 2.3621098, 48.8230552 2.3621472, 48.8214836 2.3639524, 48.8209801 2.3644246, 48.8243498 2.3621084, 48.8242991 2.3620875, 48.8244278 2.3621405, 48.8244847 2.3621306, 48.8245544 2.3621635, 48.8239970 2.3618533, 48.8245778 2.3614015, 48.8241677 2.3617205, 48.8250784 2.3610028, 48.8247279 2.3612848, 48.8249548 2.3611007, 48.8257664 2.3605166, 48.8257097 2.3600718, 48.8253582 2.3607812, 48.8254715 2.3606886, 48.8260853 2.3604941, 48.8256469 2.3607545, 48.8256982 2.3612634, 48.8255348 2.3609777, 48.8256127 2.3614328, 48.8254727 2.3611014, 48.8255281 2.3616006, 48.8254308 2.3611848, 48.8252349 2.3615748, 48.8253116 2.3614221, 48.8249807 2.3620807, 48.8247239 2.3594920, 48.8248051 2.3598326, 48.8250256 2.3619913, 48.8768078 2.4066474, 48.8213603 2.3347178, 48.8216005 2.3337522, 48.8224005 2.3283664, 48.8224332 2.3281893, 48.8232060 2.3266224, 48.8232523 2.3263756, 48.8233935 2.3258237, 48.8232142 2.3265525, 48.8233176 2.3240021, 48.8233300 2.3239779, 48.8242238 2.3224615, 48.8242464 2.3195866, 48.8247112 2.3199067, 48.8240306 2.3209791, 48.8250441 2.3183751, 48.8564210 2.3497120, 48.8147115 2.3918897, 48.8120345 2.3912341, 48.8125282 2.3767154, 48.8124576 2.3767691, 48.8134114 2.3733895, 48.8387916 2.3812873, 48.8328265 2.3361398, 48.8303448 2.3338271, 48.8295986 2.3338514, 48.8326497 2.3356190, 48.8334329 2.3320275, 48.8123443 2.3746960, 48.8664178 2.3522546, 48.8679582 2.3516149, 48.8674094 2.3516806, 48.8686121 2.3859914, 48.8292803 2.3687447, 48.8242892 2.3764902, 48.8243395 2.3766423, 48.8259590 2.3538780, 48.8333535 2.3991671, 48.8342051 2.3135017, 48.8366334 2.4095667, 48.8384694 2.4012891, 48.8177106 2.3982189, 48.8820461 2.3336672, 48.8536438 2.3402017, 48.8591372 2.3430272, 48.8526953 2.3470942, 48.8622322 2.3573881, 48.8600347 2.4024972, 48.8608921 2.3439350, 48.8581223 2.3362437, 48.8690313 2.3433548, 48.8578089 2.3606384, 48.8902743 2.3602888, 48.8890315 2.3624318, 48.8889739 2.3623979, 48.8906110 2.3613962, 48.8899355 2.3618064, 48.8911052 2.3611596, 48.8908415 2.3611676, 48.8909716 2.3611648, 48.8899801 2.3617329, 48.8104596 2.3892371, 48.8369513 2.3561959, 48.8378748 2.3573539, 48.8367172 2.3580385, 48.8370906 2.3578084, 48.8304775 2.3673228, 48.8248321 2.3174022, 48.8254202 2.3167049, 48.8252648 2.3158680, 48.8250589 2.3163847, 48.8256612 2.3136542, 48.8262642 2.3127271, 48.8264426 2.3130329, 48.8469222 2.3993098, 48.8490463 2.3989425, 48.8563665 2.3939744, 48.8572552 2.3854799, 48.8572776 2.3855905, 48.8576754 2.3919847, 48.8594350 2.3870127, 48.8722210 2.3643307, 48.8533715 2.3422551, 48.8310515 2.3425823, 48.8474853 2.3018312, 48.8474881 2.3018494, 48.8264842 2.3599429, 48.8276987 2.3717961, 48.8254306 2.3745724, 48.8260635 2.3616139, 48.8261039 2.3582769, 48.8261271 2.3589262, 48.8281835 2.3735871, 48.8508651 2.4065384, 48.8467079 2.4104905, 48.8440402 2.4107413, 48.8468249 2.4104107, 48.8468448 2.4101919, 48.8468528 2.4101033, 48.8469391 2.4103030, 48.8471654 2.4071583, 48.8472069 2.4066764, 48.8513516 2.4062448, 48.8517143 2.4071448, 48.8664981 2.3243419, 48.8509847 2.4071520, 48.8510074 2.4065270, 48.8913537 2.3623037, 48.8912306 2.3619236, 48.8913500 2.3613552, 48.8898740 2.3601766, 48.8899888 2.3601160, 48.8913687 2.3615676, 48.8781367 2.3447619, 48.8715688 2.4022351, 48.8901550 2.3611961, 48.8900693 2.3622119, 48.8900609 2.3623123, 48.8250029 2.3166081, 48.8272256 2.3831977, 48.8949489 2.3601209, 48.8911550 2.3633069, 48.8164343 2.3285923, 48.8309472 2.3666202, 48.8841496 2.3640114, 48.8684859 2.3702604, 48.8900866 2.3603615, 48.8394801 2.3713759, 48.8391251 2.3715959, 48.8369209 2.3526719, 48.8371917 2.3528301, 48.8372144 2.3529137, 48.8372738 2.3531061, 48.8372893 2.3538086, 48.8374941 2.3543561, 48.8375300 2.3539139, 48.8377816 2.3554257, 48.8378949 2.3555704, 48.8379577 2.3560229, 48.8380217 2.3560121, 48.8904554 2.3613786, 48.8457722 2.3952172, 48.8240305 2.3234209, 48.8275253 2.3261423, 48.8295090 2.3482501, 48.8296744 2.3329116, 48.8296889 2.3480032, 48.8300287 2.3471023, 48.8306286 2.3439710, 48.8307741 2.3363033, 48.8309276 2.3553044, 48.8309560 2.3563203, 48.8313659 2.3419868, 48.8314521 2.3413377, 48.8337067 2.3652426, 48.8343505 2.3671081, 48.8349875 2.3690185, 48.8369558 2.3731388, 48.8372547 2.3741922, 48.8389808 2.3876834, 48.8400503 2.3966865, 48.8405435 2.3976638, 48.8419125 2.3931180, 48.8425378 2.3971712, 48.8431508 2.3868501, 48.8438225 2.3907961, 48.8438547 2.3884184, 48.8441353 2.3903995, 48.8448504 2.3956453, 48.8449655 2.3825373, 48.8450610 2.3817030, 48.8455335 2.4059659, 48.8457371 2.3744755, 48.8458882 2.3745674, 48.8460421 2.3746885, 48.8461407 2.3758102, 48.8461570 2.3756299, 48.8462020 2.3762720, 48.8463517 2.4060121, 48.8463588 2.3819651, 48.8469945 2.3695400, 48.8469983 2.3840650, 48.8470022 2.3692654, 48.8485165 2.3710817, 48.8493154 2.3681094, 48.8494375 2.3698324, 48.8497678 2.3690872, 48.8499439 2.3739778, 48.8502341 2.3736347, 48.8502976 2.3687576, 48.8538513 2.4054931, 48.8636158 2.3993948, 48.8639863 2.3992574, 48.8652421 2.3951007, 48.8655085 2.3946733, 48.8677329 2.3907031, 48.8684805 2.3898741, 48.8688786 2.3895491, 48.8702670 2.3890490, 48.8704853 2.3883060, 48.8714250 2.3861474, 48.8717558 2.3890342, 48.8315085 2.3570011, 48.8900224 2.3626977, 48.8900145 2.3627866, 48.8913601 2.3631469, 48.8898494 2.3629189, 48.8899105 2.3620699, 48.8911316 2.3641074, 48.8911480 2.3638611, 48.8367512 2.3562703, 48.8368334 2.3563141, 48.8372824 2.3577423, 48.8277530 2.3505091, 48.8710452 2.3583430, 48.8816643 2.3664685, 48.8817430 2.3657091, 48.8585418 2.3648460, 48.8911935 2.3792213, 48.8521711 2.3714010, 48.8240504 2.3356831, 48.8240627 2.3308903, 48.8237907 2.3314831, 48.8240750 2.3283368, 48.8235152 2.3304799, 48.8241368 2.3280257, 48.8242940 2.3282027, 48.8244671 2.3310137, 48.8241951 2.3294043, 48.8245642 2.3282644, 48.8243293 2.3287472, 48.8245147 2.3285541, 48.8248609 2.3290503, 48.8245871 2.3263627, 48.8250198 2.3200783, 48.8249015 2.3203760, 48.8576869 2.3888826, 48.8901067 2.3618300, 48.8320164 2.4039323, 48.8320207 2.4038132, 48.8341445 2.4013757, 48.8351942 2.4016328, 48.8372220 2.4037368, 48.8803395 2.3738607, 48.8632906 2.3969375, 48.8636364 2.3968839, 48.8597103 2.3998209, 48.8387714 2.4093332, 48.8398694 2.4182884, 48.8490942 2.3396105, 48.8397083 2.4096056, 48.8396415 2.4181892, 48.8314328 2.3873778, 48.8317821 2.3857254, 48.8320640 2.3883288, 48.8350055 2.3874833, 48.8358666 2.3847168, 48.8373190 2.3826641, 48.8374528 2.3917533, 48.8380369 2.3818677, 48.8387612 2.3810831, 48.8388667 2.3937811, 48.8389421 2.3806421, 48.8394110 2.3802556, 48.8573040 2.3514977, 48.8614181 2.3533893, 48.8616790 2.3513642, 48.8617384 2.3511100, 48.8617679 2.3509583, 48.8619491 2.3505495, 48.8620204 2.3499051, 48.8620520 2.3497369, 48.8638474 2.3430292, 48.8643157 2.3474095, 48.8648065 2.3458024, 48.8577225 2.3496460, 48.8552405 2.3375518, 48.8552856 2.3399457, 48.8555538 2.3334871, 48.8542055 2.3303219, 48.8901377 2.3597002, 48.8901098 2.3596369, 48.8174391 2.3251637, 48.8908511 2.3602853, 48.8916443 2.3596030, 48.8904169 2.3596324, 48.8909114 2.3604949, 48.8906117 2.3602364, 48.8909059 2.3606042, 48.8432520 2.3116523, 48.8434173 2.3127954, 48.8280995 2.3190414, 48.8763474 2.3877275, 48.8709254 2.3085765, 48.8810201 2.3499806, 48.8294497 2.3691497, 48.8303825 2.3751684, 48.8303577 2.3751842, 48.8662240 2.3388110, 48.8796743 2.3454738, 48.8783418 2.3453839, 48.8322843 2.3152081, 48.8323761 2.3150659, 48.8835862 2.3696037, 48.8844373 2.3587346, 48.8959172 2.3812055, 48.8717135 2.3253034, 48.8911754 2.3596165, 48.8900400 2.3632191, 48.8907659 2.3596503, 48.8912089 2.3601196, 48.8908932 2.3596443, 48.8472316 2.4033307, 48.8474060 2.3985801, 48.8475134 2.3982539, 48.8476893 2.3944332, 48.8480152 2.3982806, 48.8523912 2.3718273, 48.8678628 2.3622500, 48.8682145 2.3624441, 48.8753496 2.3569996, 48.8757151 2.3564916, 48.8759340 2.3562965, 48.8763508 2.3558909, 48.8769505 2.3553665, 48.8776793 2.3547127, 48.8779306 2.3546949, 48.8779709 2.3544608, 48.8789523 2.3541157, 48.8798131 2.3564484, 48.8201237 2.3643148, 48.8287628 2.3508143, 48.8259411 2.3547905, 48.8281212 2.3500641, 48.8278444 2.3497300, 48.8257450 2.3500109, 48.8257808 2.3487518, 48.8257810 2.3469176, 48.8258180 2.3512599, 48.8258437 2.3479059, 48.8258499 2.3519400, 48.8259193 2.3535805, 48.8260601 2.3538016, 48.8278445 2.3496676, 48.8279309 2.3495913, 48.8287082 2.3506786, 48.8298207 2.3497671, 48.8849791 2.3863829, 48.8297015 2.3756891, 48.8297318 2.3756639, 48.8302556 2.3763483, 48.8302884 2.3764082, 48.8303257 2.3764732, 48.8554738 2.3844934, 48.8558003 2.3750398, 48.8563070 2.3766560, 48.8563443 2.3735148, 48.8563892 2.3736140, 48.8573040 2.3791655, 48.8575988 2.3723727, 48.8580871 2.3720646, 48.8599833 2.3751511, 48.8606643 2.3672378, 48.8612261 2.3646636, 48.8612423 2.3694822, 48.8615175 2.3633665, 48.8620657 2.3606971, 48.8625682 2.3596478, 48.8658847 2.3446913, 48.8659713 2.3446586, 48.8669646 2.3445039, 48.8241171 2.3356096, 48.8251709 2.3747800, 48.8262226 2.3733016, 48.8265738 2.3354498, 48.8270035 2.3668285, 48.8275458 2.3738970, 48.8276171 2.3715500, 48.8279688 2.3733478, 48.8280437 2.3734448, 48.8303701 2.3343029, 48.8324259 2.3797103, 48.8328426 2.3359068, 48.8348268 2.3999659, 48.8363410 2.4027533, 48.8363547 2.4029753, 48.8367250 2.4043293, 48.8367567 2.3928042, 48.8375039 2.3386695, 48.8380611 2.4053828, 48.8381721 2.4055291, 48.8420689 2.3415277, 48.8303346 2.3579037, 48.8303533 2.3580717, 48.8303844 2.3578871, 48.8304203 2.3580788, 48.8304421 2.3578232, 48.8305106 2.3580445, 48.8305699 2.3576824, 48.8305823 2.3579841, 48.8305979 2.3576468, 48.8306330 2.3579676, 48.8306906 2.3579250, 48.8306968 2.3577332, 48.8307140 2.3578646, 48.8307148 2.3577948, 48.8436310 2.3100919, 48.8750791 2.4237831, 48.8435379 2.3114498, 48.8110114 2.3903499, 48.8748132 2.4244291, 48.8105770 2.3898239, 48.8249295 2.3605759, 48.8298782 2.3572786, 48.8121561 2.3455277, 48.8121656 2.3454670, 48.8121922 2.3454324, 48.8121970 2.3456216, 48.8122302 2.3456151, 48.8122379 2.3454280, 48.8122621 2.3456050, 48.8126777 2.3451291, 48.8531717 2.4274580, 48.8482373 2.3469649, 48.8508540 2.3477158, 48.8689060 2.3919843, 48.8416771 2.4282177, 48.8682148 2.3979085, 48.8149242 2.3491947, 48.8141498 2.3492667, 48.8144504 2.3497618, 48.8146703 2.3477824, 48.8140762 2.3495749, 48.8149250 2.3454004, 48.8145973 2.3447291, 48.8145023 2.3445460, 48.8148358 2.3455753, 48.8146719 2.3491005, 48.8147778 2.3479413, 48.8149631 2.3480434, 48.8151173 2.3484075, 48.8301869 2.3802993, 48.8517163 2.4061866, 48.8523080 2.4042254, 48.8534161 2.4030439, 48.8196529 2.3647206, 48.8556190 2.3071441, 48.8555242 2.4213456, 48.8541163 2.3390471, 48.8426080 2.3301580, 48.8205827 2.3643748, 48.8222971 2.3590009, 48.8232673 2.3541002, 48.8309399 2.3810186, 48.8339877 2.3859431, 48.8457908 2.3539346, 48.8370765 2.3521704, 48.8478098 2.4348432, 48.8473408 2.4348372, 48.8475864 2.4357373, 48.8751593 2.3701002, 48.8585317 2.4337075, 48.8593469 2.4316636, 48.8587081 2.4325702, 48.8593963 2.4317070, 48.8600781 2.3465254, 48.8595769 2.3472174, 48.8595293 2.3467856, 48.8619711 2.3477793, 48.8841936 2.3491540, 48.8308164 2.3569249, 48.8312806 2.3593713, 48.8304836 2.3566079, 48.8306339 2.3565203, 48.8307798 2.3565461, 48.8308793 2.3564894, 48.8309449 2.3569926, 48.8309482 2.3563554, 48.8310070 2.3563176, 48.8310093 2.3571815, 48.8310613 2.3573344, 48.8310873 2.3571592, 48.8515332 2.3460413, 48.8516027 2.3460829, 48.8283426 2.3654057, 48.8314760 2.3641970, 48.8315017 2.3608865, 48.8324177 2.3616433, 48.8280428 2.3570384, 48.8271111 2.3573127, 48.8257851 2.3598664, 48.8284045 2.3568525, 48.8287545 2.3559409, 48.8262889 2.3423183, 48.8260589 2.3584625, 48.8262056 2.3584116, 48.8263443 2.3617182, 48.8263836 2.3570058, 48.8266597 2.3568935, 48.8268145 2.3634592, 48.8268348 2.3665087, 48.8269226 2.3568292, 48.8269700 2.3568093, 48.8270302 2.3639531, 48.8271184 2.3667517, 48.8272069 2.3567423, 48.8272363 2.3567348, 48.8272788 2.3567770, 48.8274640 2.3567110, 48.8275734 2.3566440, 48.8276061 2.3566713, 48.8278792 2.3659999, 48.8279455 2.3568515, 48.8279668 2.3644980, 48.8281960 2.3564573, 48.8282189 2.3564280, 48.8282237 2.3563309, 48.8282434 2.3565433, 48.8283451 2.3562431, 48.8283555 2.3562150, 48.8283601 2.3563168, 48.8283770 2.3650543, 48.8283888 2.3655621, 48.8284641 2.3562063, 48.8284729 2.3649999, 48.8284723 2.3655382, 48.8285149 2.3563221, 48.8285359 2.3654369, 48.8285623 2.3561554, 48.8285831 2.3561729, 48.8288668 2.3652562, 48.8289038 2.3651263, 48.8289131 2.3654247, 48.8289299 2.3567254, 48.8290078 2.3655668, 48.8290690 2.3648630, 48.8290950 2.3561659, 48.8291460 2.3577224, 48.8291592 2.3654668, 48.8292215 2.3649631, 48.8292354 2.3648894, 48.8294445 2.3643751, 48.8296502 2.3647788, 48.8297218 2.3646366, 48.8299425 2.3645998, 48.8300157 2.3570873, 48.8303572 2.3568440, 48.8305711 2.3641769, 48.8311201 2.3637648, 48.8312784 2.3581099, 48.8312981 2.3583557, 48.8315605 2.3635129, 48.8316683 2.3631977, 48.8317557 2.3604147, 48.8321135 2.3604370, 48.8320852 2.3603455, 48.8321944 2.3622035, 48.8324846 2.3616424, 48.8324918 2.3622519, 48.8325620 2.3618635, 48.8326137 2.3620177, 48.8327614 2.3622482, 48.8261024 2.3594483, 48.8261611 2.3604678, 48.8261735 2.3605547, 48.8261983 2.3593167, 48.8262246 2.3601836, 48.8262818 2.3599933, 48.8262849 2.3606816, 48.8263019 2.3608178, 48.8263699 2.3596644, 48.8264163 2.3598711, 48.8264875 2.3630190, 48.8265354 2.3633525, 48.8266498 2.3632069, 48.8267930 2.3654672, 48.8268029 2.3643460, 48.8268236 2.3644888, 48.8268291 2.3641616, 48.8268903 2.3662147, 48.8269089 2.3652180, 48.8267977 2.3663149, 48.8269435 2.3633896, 48.8269324 2.3638037, 48.8267862 2.3639559, 48.8268539 2.3636108, 48.8269117 2.3634246, 48.8322812 2.3623411, 48.8267971 2.3636208, 48.8272546 2.3651819, 48.8365709 2.3742554, 48.8538843 2.3710891, 48.8275456 2.3565272, 48.8280589 2.3563698, 48.8263842 2.3568786, 48.8300151 2.3572624, 48.8303208 2.3570220, 48.8292086 2.3568667, 48.8300765 2.3566608, 48.8153391 2.3448291, 48.8729593 2.3892019, 48.8741225 2.3893282, 48.8748365 2.3888937, 48.8511846 2.3478208, 48.8467824 2.3813171, 48.8411291 2.4320878, 48.8522322 2.3898977, 48.8524976 2.3895606, 48.8539546 2.3825521, 48.8544392 2.3816128, 48.8569327 2.3799755, 48.8585657 2.3781777, 48.8633818 2.3710966, 48.8671029 2.3655043, 48.8683370 2.3634922, 48.8699682 2.3607540, 48.8706171 2.3596295, 48.8708012 2.3598095, 48.8712575 2.3602178, 48.8713074 2.3601361, 48.8718731 2.3599327, 48.8724770 2.3594063, 48.8730997 2.3588306, 48.8734420 2.3585204, 48.8742775 2.3577777, 48.8785606 2.3557407, 48.8206503 2.3210333, 48.8204084 2.3209442, 48.8601919 2.4036487, 48.8900480 2.3607496, 48.8898650 2.3626449, 48.8909898 2.3608038, 48.8904400 2.3637643, 48.8901985 2.3637340, 48.8906438 2.3596534, 48.8909653 2.3596380, 48.8551489 2.3398837, 48.8469115 2.3435159, 48.8922565 2.3879668, 48.8896721 2.3596605, 48.8890437 2.3606481, 48.8895540 2.3596572, 48.8899144 2.3604238, 48.8467226 2.4102506, 48.8790165 2.3902411, 48.8821978 2.3665612, 48.8890487 2.3604033, 48.8914345 2.3596388, 48.8897921 2.3604602, 48.8910188 2.3609138, 48.8913355 2.3596375, 48.8897517 2.3604732, 48.8901098 2.3617740, 48.8893542 2.3601189, 48.8329514 2.3692712, 48.8608042 2.3799887, 48.8512675 2.3899326, 48.8605689 2.3786648, 48.8603005 2.3783793, 48.8481543 2.3934076, 48.8519310 2.3891606, 48.8542868 2.3877696, 48.8569986 2.3852716, 48.8575346 2.3847601, 48.8580303 2.3809765, 48.8581695 2.3807581, 48.8583918 2.3804386, 48.8594275 2.3791564, 48.8601780 2.3784708, 48.8604263 2.3782604, 48.8608624 2.3805635, 48.8611746 2.3809999, 48.8858062 2.3345963, 48.8096689 2.3629717, 48.8762181 2.3718774, 48.8420324 2.3637585, 48.8451325 2.3454414, 48.8458811 2.4282677, 48.8459567 2.4286014, 48.8215947 2.3230123, 48.8220619 2.3226785, 48.8210818 2.3222697, 48.8216741 2.3229683, 48.8219451 2.3232523, 48.8219542 2.3232864, 48.8215572 2.3230330, 48.8220346 2.3227025, 48.8219370 2.3232224, 48.8219619 2.3233149, 48.8868550 2.3608645, 48.8237489 2.3639942, 48.8854958 2.3656011, 48.8888984 2.3604882, 48.8889239 2.3604830, 48.8399414 2.3948970, 48.8421069 2.3896051, 48.8735521 2.3649705, 48.8445983 2.3417212, 48.8452169 2.4120881, 48.8461924 2.4121067, 48.8466376 2.4114577, 48.8473580 2.4106924, 48.8473835 2.4103563, 48.8524722 2.4106454, 48.8526979 2.4111873, 48.8557704 2.4107086, 48.8574629 2.4101809, 48.8581256 2.4099841, 48.8587706 2.4100076, 48.8592004 2.4098008, 48.8608587 2.4094863, 48.8649243 2.4085167, 48.8651848 2.4086243, 48.8669825 2.4087455, 48.8681301 2.4072046, 48.8708037 2.4048775, 48.8748416 2.4030830, 48.8800875 2.3982376, 48.8801636 2.3979290, 48.8822748 2.3961932, 48.8897519 2.3898235, 48.8897859 2.3901176, 48.8900562 2.3906182, 48.8908981 2.3898028, 48.8924246 2.3879304, 48.8928662 2.3878039, 48.8931913 2.3928220, 48.8332843 2.3172595, 48.8354567 2.3766787, 48.8930154 2.3876090, 48.8098954 2.3619830, 48.8098143 2.3626382, 48.8098588 2.3620742, 48.8090770 2.3624027, 48.8091027 2.3623940, 48.8845594 2.3650486, 48.8196569 2.3220677, 48.8338132 2.3201157, 48.8296315 2.3814341, 48.8288129 2.3816584, 48.8306388 2.3813576, 48.8843507 2.3642047, 48.8862013 2.3566961, 48.8861995 2.3567861, 48.8257570 2.3480755, 48.8257663 2.3482098, 48.8276817 2.3715635, 48.8277542 2.3314326, 48.8277569 2.3294975, 48.8325094 2.3123346, 48.8326504 2.3120265, 48.8338839 2.3082929, 48.8340082 2.3078231, 48.8376932 2.4037117, 48.8397308 2.3978085, 48.8420906 2.3894385, 48.8425267 2.3896625, 48.8445646 2.3180923, 48.8470920 2.3268174, 48.8521103 2.3659956, 48.8555817 2.3636375, 48.8592929 2.3562507, 48.8596838 2.3565776, 48.8618200 2.3569043, 48.8239032 2.3657211, 48.8461248 2.4233803, 48.8461335 2.4236914, 48.8461392 2.4232057, 48.8610209 2.3105163, 48.8610229 2.3109043, 48.8610190 2.3113026, 48.8920212 2.3617816, 48.8919648 2.3596358, 48.8925714 2.3595715, 48.8977200 2.3586590, 48.8976429 2.3589492, 48.8973798 2.3589436, 48.8284670 2.3264398, 48.8360293 2.3987610, 48.8892547 2.3782943, 48.8545111 2.3633739, 48.8901546 2.3614003, 48.8901565 2.3589941, 48.8901495 2.3592264, 48.8114906 2.3840833, 48.8342510 2.3976866, 48.8346767 2.3969733, 48.8346779 2.3969086, 48.8355574 2.3971295, 48.8355714 2.3970738, 48.8351646 2.3976296, 48.8352730 2.3987266, 48.8358656 2.3983311, 48.8347080 2.3971806, 48.8342927 2.3976622, 48.8343788 2.3972427, 48.8350123 2.3991323, 48.8747013 2.3307416, 48.8738516 2.3311552, 48.8745880 2.3309443, 48.8746180 2.3297594, 48.8736376 2.3310868, 48.8746673 2.3308647, 48.8746733 2.3307385, 48.8746753 2.3305365, 48.8747720 2.3306636, 48.8745933 2.3307016, 48.8745633 2.3314580, 48.8746973 2.3308647, 48.8745893 2.3308470, 48.8740176 2.3311821, 48.8735099 2.3310689, 48.8743253 2.3314260, 48.8746733 2.3307385, 48.8124313 2.3617541, 48.8473899 2.4102789, 48.8484564 2.4353693, 48.8323649 2.4042508, 48.8319766 2.3145168, 48.8325060 2.3158066, 48.8334834 2.3173462, 48.8335457 2.3172542, 48.8338586 2.3183718, 48.8340668 2.3182365, 48.8341266 2.3177915, 48.8347650 2.3425150, 48.8349068 2.3452703, 48.8350373 2.3453379, 48.8350577 2.3457523, 48.8350801 2.3462140, 48.8361574 2.3222159, 48.8389031 2.3587665, 48.8392803 2.3599626, 48.8394354 2.3604664, 48.8472148 2.3034083, 48.8527070 2.3336447, 48.8468848 2.4351107, 48.8470170 2.4351016, 48.8329971 2.3865539, 48.8444665 2.4240626, 48.8454138 2.3449157, 48.8820577 2.3422422, 48.8798304 2.3575115, 48.8911010 2.3515017, 48.8917130 2.3492982, 48.8918470 2.3497087, 48.8878948 2.3493748, 48.8228812 2.3586455, 48.8419273 2.3255444, 48.8419458 2.3253394, 48.8420169 2.3254159, 48.8479230 2.4347878, 48.8392807 2.3902734, 48.8394408 2.3901626, 48.8394886 2.3899208, 48.8393289 2.3907831, 48.8389122 2.3910647, 48.8859544 2.3562670, 48.8863988 2.3563957, 48.8871043 2.3599792, 48.8873089 2.3595500, 48.8875981 2.3596144, 48.8891501 2.3600864, 48.8623031 2.3667215, 48.8634536 2.3668626, 48.8292546 2.3609495, 48.8310548 2.3612243, 48.8264604 2.3691548, 48.8867265 2.3692541, 48.8842868 2.3649687, 48.8843386 2.3644627, 48.8843953 2.3649309, 48.8846074 2.3647555, 48.8857802 2.3686094, 48.8862633 2.3689061, 48.8863797 2.3693225, 48.8878961 2.3705889, 48.8880468 2.3703744, 48.8896210 2.3717466, 48.8327810 2.3359512, 48.8487274 2.3758510, 48.8467389 2.3809082, 48.8250947 2.3203976, 48.8266929 2.3240664, 48.8276403 2.3263672, 48.8366568 2.3904615, 48.8390555 2.3541961, 48.8391729 2.3879459, 48.8393615 2.3547196, 48.8395273 2.3563297, 48.8403152 2.3627036, 48.8403371 2.3598998, 48.8403767 2.3612985, 48.8421501 2.3099414, 48.8431512 2.3481982, 48.8442099 2.3456920, 48.8451757 2.3455730, 48.8457102 2.3460054, 48.8488355 2.3252187, 48.8506988 2.3354533, 48.8380011 2.3605213, 48.8531703 2.4233702, 48.8528421 2.4249527, 48.8532657 2.4245289, 48.8497187 2.3083307, 48.8498617 2.3082589, 48.8292182 2.3745377, 48.8516152 2.3183721, 48.8534062 2.3417373, 48.8750168 2.3409909, 48.8757535 2.3399225, 48.8126600 2.3618130, 48.8456711 2.3490720, 48.8452705 2.3491887, 48.8455873 2.3490693, 48.8107781 2.3625562, 48.8210556 2.3567317, 48.8749302 2.3555936, 48.8936132 2.3841788, 48.8659386 2.3788507, 48.8213142 2.3566414, 48.8212987 2.3567515, 48.8213082 2.3566973, 48.8213185 2.3565892, 48.8254520 2.3540117, 48.8375206 2.3108341, 48.8377213 2.3092594, 48.8380900 2.3040826, 48.8383431 2.3045795, 48.8384042 2.3046605, 48.8386443 2.3051222, 48.8403607 2.4028757, 48.8406684 2.3153202, 48.8409914 2.3133930, 48.8414293 2.3136925, 48.8419801 2.3147584, 48.8471459 2.3017502, 48.8529188 2.3087416, 48.8560088 2.3152292, 48.8584188 2.3146004, 48.8352427 2.3769655, 48.8369196 2.3750884, 48.8373155 2.3746781, 48.8300792 2.4152641, 48.8849455 2.3527050, 48.8849667 2.3521042, 48.8848468 2.3565674, 48.8850090 2.3595929, 48.8849808 2.3595500, 48.8448267 2.3832538, 48.8612184 2.3359626, 48.8607940 2.3357198, 48.8611505 2.3363233, 48.8609255 2.3361637, 48.8613287 2.3357359, 48.8606908 2.3360605, 48.8608125 2.3354395, 48.8920141 2.3622108, 48.8918519 2.3634768, 48.8916614 2.3634553, 48.8675820 2.3627052, 48.8681313 2.3656514, 48.8668440 2.3637026, 48.8678874 2.3648918, 48.8662370 2.3646913, 48.8664898 2.3645091, 48.8665592 2.3644087, 48.8666802 2.3641540, 48.8666879 2.3641696, 48.8667598 2.3654966, 48.8667903 2.3637908, 48.8668096 2.3646253, 48.8669108 2.3644467, 48.8669297 2.3636473, 48.8669953 2.3631776, 48.8669961 2.3635905, 48.8670152 2.3630804, 48.8670214 2.3635235, 48.8670355 2.3642267, 48.8670361 2.3631640, 48.8671087 2.3634985, 48.8671452 2.3640332, 48.8673694 2.3650795, 48.8673980 2.3650399, 48.8674058 2.3629347, 48.8674351 2.3629732, 48.8674598 2.3628272, 48.8675385 2.3647969, 48.8676126 2.3647082, 48.8676136 2.3625917, 48.8676252 2.3632445, 48.8677253 2.3630872, 48.8677894 2.3623659, 48.8678337 2.3629170, 48.8678703 2.3621859, 48.8679052 2.3646802, 48.8679322 2.3627623, 48.8679443 2.3620076, 48.8679849 2.3651178, 48.8683870 2.3633979, 48.8684727 2.3632550, 48.8686416 2.3633147, 48.8686663 2.3632144, 48.8689428 2.3628299, 48.8689874 2.3627877, 48.8690297 2.3627510, 48.8298488 2.3665110, 48.8520717 2.3832753, 48.8481687 2.4345506, 48.8480369 2.4345445, 48.8476526 2.4234794, 48.8903352 2.3587990, 48.8903987 2.3592281, 48.8419215 2.3870862, 48.8419664 2.3871201, 48.8418904 2.3870862, 48.8418677 2.3871280, 48.8418769 2.3871760, 48.8418924 2.3870718, 48.8418649 2.3871388, 48.8418108 2.3875951, 48.8417327 2.3875879, 48.8417636 2.3880006, 48.8418410 2.3880025, 48.8394773 2.3242229, 48.8563545 2.3025991, 48.8562747 2.3028390, 48.8574816 2.3802365, 48.8690083 2.3564593, 48.8160973 2.3511206, 48.8136741 2.3481541, 48.8136670 2.3480361, 48.8482693 2.4357193, 48.8137588 2.3477625, 48.8157688 2.3492591, 48.8146243 2.3477410, 48.8147833 2.3516517, 48.8167437 2.3491143, 48.8153732 2.3510991, 48.8159313 2.3500531, 48.8156381 2.3500048, 48.8155145 2.3504125, 48.8152213 2.3498012, 48.8152566 2.3498870, 48.8155498 2.3505412, 48.8150871 2.3495435, 48.8151294 2.3496561, 48.8150129 2.3494093, 48.8149528 2.3493289, 48.8165671 2.3511903, 48.8159772 2.3514586, 48.8185747 2.3602641, 48.8619692 2.3675752, 48.8615300 2.3686675, 48.8614043 2.3675596, 48.8608788 2.3675481, 48.8290841 2.3607574, 48.8291352 2.3608175, 48.8621628 2.3647719, 48.8455039 2.3750047, 48.8455237 2.3764533, 48.8760446 2.3484651, 48.8116397 2.3869564, 48.8557667 2.3453212, 48.8550679 2.3462868, 48.8741216 2.3427260, 48.8117754 2.3855022, 48.8136719 2.3895246, 48.8138417 2.3900307, 48.8593870 2.3702037, 48.8593028 2.3689081, 48.8537623 2.3817697, 48.8109074 2.3840762, 48.8739758 2.3852798, 48.8801837 2.4205403, 48.8790034 2.4238161, 48.8456597 2.3425776, 48.8772925 2.4158179, 48.8795946 2.4163042, 48.8785849 2.4122788, 48.8526175 2.3431162, 48.8784205 2.4222948, 48.8855875 2.3531342, 48.8806519 2.4004273, 48.8815514 2.4001315, 48.8924739 2.3853741, 48.8959011 2.3832799, 48.8850314 2.3781308, 48.8799452 2.3455279, 48.8488706 2.4054308, 48.8489816 2.4056570, 48.8494687 2.4051936, 48.8643458 2.3599234, 48.8295482 2.3749878, 48.8296803 2.3748515, 48.8599478 2.3246517, 48.8599472 2.3245275, 48.8599536 2.3248067, 48.8599716 2.3245504, 48.8600672 2.3244033, 48.8600707 2.3247081, 48.8600794 2.3243610, 48.8601037 2.3242800, 48.8606611 2.3260607, 48.8606849 2.3259641, 48.8666867 2.3495864, 48.8297590 2.3779170, 48.8297930 2.3779994, 48.8288321 2.3761798, 48.8292800 2.3744982, 48.8304530 2.3781049, 48.8296037 2.3747044, 48.8298860 2.3752461, 48.8291217 2.3762659, 48.8298050 2.3750908, 48.8279652 2.3768853, 48.8283295 2.3766600, 48.8283467 2.3766535, 48.8285414 2.3789971, 48.8288068 2.3787300, 48.8288361 2.3787070, 48.8290555 2.3783649, 48.8292488 2.3741831, 48.8292831 2.3742590, 48.8294602 2.3757359, 48.8301041 2.3776040, 48.8302260 2.3779065, 48.8303224 2.3771556, 48.8305203 2.3782754, 48.8305874 2.3770026, 48.8307809 2.3768658, 48.8768004 2.3899160, 48.8238319 2.3396086, 48.8103949 2.3618092, 48.8106981 2.3617361, 48.8603698 2.3266950, 48.8603951 2.3266114, 48.8604141 2.3265484, 48.8604226 2.3265204, 48.8604418 2.3266906, 48.8604458 2.3264436, 48.8604538 2.3266512, 48.8604593 2.3263987, 48.8604713 2.3265936, 48.8604920 2.3262906, 48.8605022 2.3264917, 48.8605049 2.3262481, 48.8605162 2.3262107, 48.8605165 2.3264448, 48.8605419 2.3263610, 48.8605508 2.3263318, 48.8605662 2.3262810, 48.8606040 2.3261566, 48.8606369 2.3258113, 48.8607182 2.3257806, 48.8802805 2.4173865, 48.8661563 2.3250762, 48.8683478 2.3383121, 48.8124799 2.3759776, 48.8123503 2.3767597, 48.8124991 2.3777755, 48.8126164 2.3761373, 48.8806262 2.4186147, 48.8803431 2.4217569, 48.8111035 2.3798770, 48.8128982 2.3700984, 48.8777259 2.4176779, 48.8678207 2.3478985, 48.8606339 2.3618031, 48.8660965 2.3482633, 48.8549614 2.3379207, 48.8671733 2.3471661, 48.8675818 2.3472683, 48.8667602 2.3505401, 48.8644860 2.3502765, 48.8378943 2.3222768, 48.8286016 2.3219064, 48.8612225 2.3119810, 48.8752946 2.3892538, 48.8754558 2.3899992, 48.8081536 2.3738470, 48.8122567 2.3739058, 48.8127327 2.3707897, 48.8131872 2.3706889, 48.8142377 2.3767508, 48.8146602 2.3787108, 48.8150299 2.3689536, 48.8155924 2.3685119, 48.8561136 2.3566520, 48.8530641 2.3387326, 48.8533052 2.3459080, 48.8533580 2.3457272, 48.8533695 2.3456875, 48.8535061 2.3452281, 48.8535613 2.3450411, 48.8535722 2.3450043, 48.8537320 2.3446401, 48.8537489 2.3446808, 48.8538473 2.3441717, 48.8538563 2.3441477, 48.8538673 2.3441177, 48.8538757 2.3440941, 48.8715766 2.3537539, 48.8914559 2.3448389, 48.8740405 2.3857795, 48.8749608 2.3892009, 48.8736385 2.3889782, 48.8739867 2.3864968, 48.8747724 2.3875276, 48.8739345 2.3878755, 48.8739549 2.3860921, 48.8716471 2.3695539, 48.8712919 2.3698711, 48.8718150 2.3717657, 48.8723380 2.3716377, 48.8727815 2.3712192, 48.8726878 2.3710159, 48.8730570 2.3709970, 48.8733970 2.3707413, 48.8734671 2.3704021, 48.8734037 2.3704680, 48.8733502 2.3703282, 48.8731595 2.3702542, 48.8729660 2.3702046, 48.8716620 2.3693326, 48.8633424 2.3714600, 48.8617341 2.3650289, 48.8554103 2.3643002, 48.8416283 2.3665291, 48.8416730 2.3664594, 48.8411402 2.3654371, 48.8415221 2.3661615, 48.8415620 2.3662647, 48.8415955 2.3663513, 48.8409358 2.3247136, 48.8794344 2.3881410, 48.8776787 2.3858246, 48.8542640 2.3651059, 48.8542452 2.3648816, 48.8537965 2.3646707, 48.8537744 2.3647227, 48.8536688 2.3651544, 48.8535577 2.3656033, 48.8563379 2.3653392, 48.8555655 2.3665858, 48.8549123 2.3654914, 48.8554404 2.3644187, 48.8801930 2.3906171, 48.8576608 2.3609703, 48.8750094 2.3896199, 48.8751184 2.3890182, 48.8582179 2.3593845, 48.8755856 2.3816591, 48.8616662 2.3146849, 48.8880273 2.3373781, 48.8883177 2.3371911, 48.8727883 2.3630691, 48.8725766 2.3640561, 48.8605999 2.3617816, 48.8441811 2.3576296, 48.8445790 2.3614939, 48.8849737 2.3369336, 48.8587148 2.3486171, 48.8358783 2.3528351, 48.8668462 2.3528123, 48.8658864 2.3524475, 48.8737724 2.3861774, 48.8740700 2.3880327, 48.8738683 2.3893369, 48.8785291 2.4120957, 48.8666934 2.3539857, 48.8666590 2.3541047, 48.8599854 2.3672407, 48.8725060 2.3265052, 48.8670465 2.3537266, 48.8668410 2.3533606, 48.8672803 2.3538862, 48.8572232 2.3616056, 48.8762128 2.3876684, 48.8903070 2.3600864, 48.8903282 2.3600864, 48.8580971 2.3653667, 48.8142942 2.3915517, 48.8141679 2.3916746, 48.8140287 2.3917998, 48.8540002 2.3615994, 48.8735435 2.3844995, 48.8889949 2.3583055, 48.8891642 2.3597646, 48.8893970 2.3596573, 48.8895811 2.3597672, 48.8616362 2.3492126, 48.8610370 2.3488844, 48.8618630 2.3148367, 48.8470631 2.3700997, 48.8470970 2.3701595, 48.8471459 2.3702456, 48.8472462 2.3704229, 48.8474998 2.3708712, 48.8446534 2.3728628, 48.8447152 2.3728597, 48.8475826 2.3710176, 48.8477262 2.3712711, 48.8482512 2.3721967, 48.8483965 2.3718260, 48.8471795 2.3719974, 48.8470564 2.3720521, 48.8469948 2.3720795, 48.8623921 2.3674662, 48.8787624 2.3883183, 48.8867304 2.3598075, 48.8417447 2.4330345, 48.8720387 2.3918784, 48.8741080 2.3859246, 48.8736692 2.3899840, 48.8737092 2.3898832, 48.8744280 2.3893709, 48.8886626 2.3599790, 48.8860248 2.3369308, 48.8902739 2.3358959, 48.8748174 2.3787774, 48.8764030 2.3793479, 48.8763176 2.3776123, 48.8743153 2.3863229, 48.8737855 2.3857401, 48.8125184 2.3568857, 48.8124954 2.3569680, 48.8856373 2.3263659, 48.8907179 2.3749478, 48.8931856 2.3736960, 48.8250371 2.3884441, 48.8275044 2.3763133, 48.8295479 2.3793241, 48.8312982 2.3805156, 48.8535184 2.3767685, 48.8567309 2.3731009, 48.8567919 2.3727131, 48.8596630 2.4036667, 48.8597113 2.4032404, 48.8672556 2.3729520, 48.8678310 2.3962785, 48.8712975 2.3932942, 48.8736717 2.3893707, 48.8752326 2.3699504, 48.8785201 2.3757987, 48.8785987 2.3756111, 48.8839930 2.3680663, 48.8841702 2.3653361, 48.8385177 2.3227898, 48.8484966 2.4362364, 48.8746407 2.3851288, 48.8809813 2.3738144, 48.8813033 2.3729918, 48.8779378 2.4190454, 48.8874196 2.3791285, 48.8319874 2.3777146, 48.8767665 2.3719387, 48.8310454 2.3779874, 48.8730284 2.3811633, 48.8733348 2.3779302, 48.8223529 2.3539603, 48.8199141 2.3514732, 48.8199460 2.3513904, 48.8199660 2.3514921, 48.8214630 2.3588696, 48.8226985 2.3584907, 48.8561049 2.4371952, 48.8596856 2.4328716, 48.8917305 2.3461501, 48.8906054 2.3436342, 48.8226090 2.3400474, 48.8911601 2.3472858, 48.8225527 2.3400837, 48.8225214 2.3400967, 48.8905525 2.3481725, 48.8239560 2.3366723, 48.8750217 2.3892571, 48.8198771 2.3422222, 48.8197803 2.3430846, 48.8123843 2.3623469, 48.8921867 2.3354421, 48.8654434 2.3665508, 48.8614471 2.3729562, 48.8666976 2.3655874, 48.8448082 2.4018695, 48.8447378 2.4025094, 48.8469506 2.3967840, 48.8441092 2.4022649, 48.8450981 2.4030570, 48.8453425 2.4001936, 48.8445374 2.4047983, 48.8459401 2.3981714, 48.8330219 2.3641260, 48.8337653 2.3094048, 48.8342723 2.3283804, 48.8354533 2.3258265, 48.8357486 2.3110952, 48.8366678 2.3127785, 48.8368862 2.3126418, 48.8408789 2.3214931, 48.8475924 2.3949477, 48.8480651 2.3944560, 48.8484606 2.3943801, 48.8489226 2.3946004, 48.8530598 2.3535567, 48.8552774 2.3345202, 48.8555651 2.3608523, 48.8570886 2.3297266, 48.8585185 2.3298224, 48.8586963 2.3287531, 48.8761034 2.3355444, 48.8762920 2.3325923, 48.8843206 2.3540618, 48.8431553 2.4102659, 48.8469580 2.4075011, 48.8431170 2.4096136, 48.8278448 2.3714158, 48.8576254 2.3808196, 48.8766245 2.3445219, 48.8755665 2.3990398, 48.8765230 2.4035884, 48.8494789 2.3371871, 48.8495030 2.3371323, 48.8496541 2.3374034, 48.8661825 2.3452310, 48.8184587 2.3595777, 48.8186142 2.3587533, 48.8186708 2.3587607, 48.8187191 2.3588150, 48.8187388 2.3588956, 48.8188381 2.3590916, 48.8167116 2.3578660, 48.8167195 2.3570640, 48.8167261 2.3577226, 48.8167414 2.3582707, 48.8167473 2.3578447, 48.8167831 2.3578400, 48.8167973 2.3577217, 48.8168164 2.3578793, 48.8168334 2.3579438, 48.8168587 2.3582922, 48.8169402 2.3583037, 48.8169721 2.3571088, 48.8170202 2.3583068, 48.8171700 2.3584699, 48.8172585 2.3582725, 48.8173262 2.3580419, 48.8175126 2.3583256, 48.8175756 2.3580011, 48.8175870 2.3580740, 48.8176040 2.3581574, 48.8176168 2.3582219, 48.8181346 2.3609207, 48.8178167 2.3603607, 48.8184463 2.3602441, 48.8184994 2.3603771, 48.8185793 2.3601108, 48.8186719 2.3601556, 48.8186856 2.3606232, 48.8186904 2.3602619, 48.8186981 2.3603933, 48.8187049 2.3606355, 48.8187285 2.3606540, 48.8187483 2.3604992, 48.8187500 2.3605576, 48.8187561 2.3606557, 48.8187765 2.3601229, 48.8187838 2.3601855, 48.8176532 2.3606248, 48.8193633 2.3602971, 48.8193706 2.3607627, 48.8166550 2.3605732, 48.8189433 2.3610579, 48.8831104 2.3242250, 48.8837964 2.3210243, 48.8527614 2.3515044, 48.8653670 2.4169562, 48.8652118 2.4162588, 48.8647219 2.4165307, 48.8776217 2.3939651, 48.8776968 2.3952330, 48.8764364 2.3934657, 48.8765453 2.3938412, 48.8454007 2.4352808, 48.8459620 2.4353156, 48.8450722 2.4349688, 48.8217293 2.3329753, 48.8342289 2.3218797, 48.8366129 2.3508583, 48.8372702 2.3535459, 48.8379882 2.3433930, 48.8382061 2.3565243, 48.8385318 2.3366177, 48.8396083 2.3376405, 48.8411746 2.3066119, 48.8412714 2.3397958, 48.8414201 2.3390745, 48.8452811 2.3694044, 48.8438510 2.4177648, 48.8439962 2.4177561, 48.8349953 2.3170932, 48.8530718 2.3455009, 48.8397730 2.3514917, 48.8787109 2.3950327, 48.8786894 2.3945983, 48.8604285 2.3434854, 48.8775224 2.3930979, 48.8521348 2.3393496, 48.8577082 2.3492535, 48.8608090 2.3675701, 48.8641879 2.3657984, 48.8641592 2.3663881, 48.8628632 2.3665085, 48.8594971 2.3673180, 48.8472632 2.3686633, 48.8577037 2.3677906, 48.8544371 2.3690641, 48.8539102 2.3699317, 48.8568748 2.3684913, 48.8470293 2.3690164, 48.8462686 2.3631462, 48.8465015 2.4365963, 48.8462894 2.4365111, 48.8450252 2.4362761, 48.8465650 2.4366292, 48.8451160 2.4363398, 48.8455873 2.4364340, 48.8511583 2.4295017, 48.8522846 2.4279169, 48.8517171 2.4066230, 48.8246139 2.3297884, 48.8248448 2.3309724, 48.8248677 2.3167742, 48.8249619 2.3287697, 48.8249980 2.3313844, 48.8260495 2.3309436, 48.8285948 2.3330627, 48.8290174 2.3328655, 48.8326036 2.3623992, 48.8334174 2.3642162, 48.8359245 2.3856627, 48.8401447 2.3704675, 48.8403742 2.3701490, 48.8409627 2.3362290, 48.8415305 2.3538584, 48.8419422 2.3357262, 48.8430208 2.3525662, 48.8432035 2.3315463, 48.8441253 2.3305131, 48.8452074 2.3522138, 48.8467725 2.3266058, 48.8484788 2.3326047, 48.8493788 2.3389951, 48.8500333 2.3399942, 48.8624682 2.3635794, 48.8602122 2.3858360, 48.8521732 2.3388298, 48.8854126 2.3770897, 48.8635520 2.3425906, 48.8591882 2.3451519, 48.8584285 2.3451526, 48.8588750 2.3449998, 48.8540476 2.3699964, 48.8543674 2.3701218, 48.8547650 2.3703199, 48.8597235 2.3725623, 48.8146822 2.4010226, 48.8178841 2.3973945, 48.8176898 2.3969882, 48.8177132 2.3970926, 48.8597150 2.3615075, 48.8156383 2.3936345, 48.8155145 2.3925743, 48.8156913 2.3937315, 48.8156969 2.3928952, 48.8157188 2.3929517, 48.8157650 2.3928334, 48.8157950 2.3933056, 48.8158132 2.3929094, 48.8158716 2.3940584, 48.8158899 2.3940978, 48.8159398 2.3941887, 48.8159967 2.3942966, 48.8163104 2.3947963, 48.8163873 2.3950099, 48.8165036 2.3951262, 48.8165703 2.3950594, 48.8165800 2.3953924, 48.8171706 2.3945058, 48.8172052 2.3945973, 48.8172200 2.3945253, 48.8172473 2.3945006, 48.8172696 2.3944099, 48.8173073 2.3945273, 48.8173163 2.3947834, 48.8173955 2.3947370, 48.8177359 2.3975007, 48.8173492 2.3986584, 48.8182506 2.3980068, 48.8177668 2.3985598, 48.8176337 2.3987282, 48.8179037 2.3978145, 48.8179883 2.3982972, 48.8174526 2.3985388, 48.8165654 2.3949222, 48.8174776 2.3970294, 48.8166547 2.3994601, 48.8178585 2.3980529, 48.8159059 2.3979329, 48.8165641 2.3999418, 48.8166323 2.3999400, 48.8166784 2.3998883, 48.8168960 2.3992051, 48.8169088 2.3992003, 48.8169814 2.3956959, 48.8175265 2.3984534, 48.8175533 2.3971624, 48.8175581 2.3966660, 48.8177590 2.3982629, 48.8183348 2.3978986, 48.8937054 2.3492738, 48.8893918 2.3447704, 48.8462585 2.3740519, 48.8466386 2.3740238, 48.8114693 2.3847804, 48.8445302 2.3291617, 48.8448398 2.3291657, 48.8113843 2.3846175, 48.8199882 2.3571489, 48.8215209 2.3576523, 48.8215584 2.3576426, 48.8216084 2.3576348, 48.8216425 2.3576284, 48.8461779 2.3549621, 48.8461716 2.3548935, 48.8459004 2.3547097, 48.8459537 2.3546947, 48.8459381 2.3547739, 48.8459560 2.3548600, 48.8460626 2.3546771, 48.8494488 2.3376165, 48.8496464 2.3378520, 48.8515572 2.3384274, 48.8516756 2.3382308, 48.8522552 2.3385407, 48.8523605 2.3385609, 48.8489414 2.4100282, 48.8564552 2.3511205, 48.8419262 2.3651705, 48.8522264 2.3385705, 48.8213549 2.3576983, 48.8213060 2.3577128, 48.8215751 2.3568192, 48.8215343 2.3568339, 48.8214567 2.3568620, 48.8213706 2.3568881, 48.8213312 2.3569003, 48.8212756 2.3569029, 48.8212158 2.3569268, 48.8211521 2.3569396, 48.8210879 2.3569725, 48.8209687 2.3570081, 48.8206375 2.3571097, 48.8207534 2.3570814, 48.8205136 2.3571727, 48.8208942 2.3576958, 48.8207623 2.3577442, 48.8206411 2.3577804, 48.8205039 2.3578100, 48.8203014 2.3575073, 48.8202111 2.3575247, 48.8212799 2.3568400, 48.8212131 2.3568615, 48.8211562 2.3568740, 48.8210982 2.3568935, 48.8210748 2.3565468, 48.8211205 2.3565517, 48.8211707 2.3565499, 48.8212080 2.3565523, 48.8212630 2.3565456, 48.8213291 2.3565416, 48.8213739 2.3565446, 48.8214357 2.3565482, 48.8214781 2.3565487, 48.8466880 2.3668924, 48.8504922 2.3892597, 48.8506002 2.3865799, 48.8508572 2.3411144, 48.8515666 2.3400541, 48.8517508 2.3398717, 48.8521001 2.3863956, 48.8528464 2.3842636, 48.8529129 2.3851769, 48.8532221 2.3833883, 48.8545205 2.3824395, 48.8560866 2.3825736, 48.8610854 2.3101169, 48.8742389 2.3553630, 48.8744853 2.3555219, 48.8767135 2.3539984, 48.8767602 2.3536655, 48.8773020 2.3497131, 48.8780538 2.3450154, 48.8222079 2.3512623, 48.8222079 2.3513239, 48.8220967 2.3507682, 48.8221004 2.3506702, 48.8221041 2.3505666, 48.8221465 2.3506206, 48.8211392 2.3471688, 48.8517016 2.3285488, 48.8520110 2.3284815, 48.8239919 2.3635306, 48.8240523 2.3628127, 48.8082112 2.3631348, 48.8608697 2.3679199, 48.8467985 2.3747872, 48.8370898 2.3512464, 48.8438542 2.3424632, 48.8523071 2.3446538, 48.8523579 2.3447087, 48.8439360 2.3521362, 48.8222822 2.3596195, 48.8314615 2.3664212, 48.8929579 2.3376602, 48.8930088 2.3377693, 48.8643323 2.3740909, 48.8788116 2.3448907, 48.8249366 2.3622787, 48.8396133 2.3228908, 48.8865752 2.3770595, 48.8888874 2.3790640, 48.8890273 2.3785304, 48.8492061 2.4332485, 48.8496954 2.4344420, 48.8619992 2.3644231, 48.8636991 2.3600389, 48.8510597 2.3686542, 48.8480074 2.4314069, 48.8484639 2.4321756, 48.8477360 2.4309668, 48.8634980 2.3632261, 48.8637373 2.3634903, 48.8465650 2.3875568, 48.8463716 2.4290882, 48.8458973 2.4282742, 48.8464012 2.4287314, 48.8548653 2.3258711, 48.8578709 2.3682503, 48.8576256 2.3683245, 48.8573074 2.3684033, 48.8566728 2.3031742, 48.8444534 2.3488046, 48.8648741 2.3568648, 48.8647110 2.3556670, 48.8647065 2.3557113, 48.8411112 2.3657854, 48.8788639 2.4164575, 48.8325306 2.3357618, 48.8327372 2.3358964, 48.8326973 2.3358705, 48.8786186 2.4075133, 48.8687439 2.3725567, 48.8687984 2.3727205, 48.8901801 2.3579407, 48.8921834 2.3635197, 48.8733376 2.3225100, 48.8613268 2.3701752, 48.8614009 2.3699607, 48.8273570 2.3419023, 48.8294677 2.3494266, 48.8688148 2.3556948, 48.8744006 2.3588789, 48.8598506 2.3506084, 48.8167502 2.3327484, 48.8199175 2.3212812, 48.8276674 2.3600431, 48.8279422 2.3594556, 48.8577103 2.3716555, 48.8899908 2.3632081, 48.8687323 2.3745696, 48.8691442 2.3743705, 48.8706706 2.3729576, 48.8690549 2.3744043, 48.8706840 2.3716682, 48.8611479 2.3689726, 48.8638679 2.3648260, 48.8281550 2.3775324, 48.8737876 2.3254797, 48.8738529 2.3254255, 48.8425193 2.3260648, 48.8710277 2.3356624, 48.8110348 2.3833052, 48.8891219 2.3724461, 48.8890796 2.3723602, 48.8759983 2.3280939, 48.8757911 2.3276502, 48.8756697 2.3283966, 48.8756169 2.3280376, 48.8929100 2.3599148, 48.8394722 2.3232687, 48.8395348 2.3235658, 48.8390409 2.3209288, 48.8731075 2.3603509, 48.8748935 2.3811373, 48.8868930 2.3555588, 48.8781923 2.3452434, 48.8767035 2.3442886, 48.8780982 2.3447722, 48.8782291 2.3451211, 48.8766714 2.3443634, 48.8929554 2.3636687, 48.8930915 2.3631580, 48.8929606 2.3633496, 48.8932747 2.3631869, 48.8322630 2.3676449, 48.8856144 2.3258652, 48.8389598 2.3704270, 48.8569115 2.3643067, 48.8761220 2.3317510, 48.8797579 2.3290545, 48.8798222 2.3536407, 48.8799292 2.3534275, 48.8316089 2.3555656, 48.8316089 2.3555656, 48.8569603 2.3713113, 48.8565579 2.3711226, 48.8459784 2.3603720, 48.8769985 2.3602115, 48.8771644 2.3597829, 48.8769967 2.3602263, 48.8771699 2.3597638, 48.8771867 2.3597002, 48.8243136 2.4192238, 48.8317261 2.3100042, 48.8672775 2.3441465, 48.8666300 2.3441053, 48.8661252 2.3444240, 48.8644516 2.3451744, 48.8665424 2.3444859, 48.8656756 2.3448565, 48.8664867 2.3445169, 48.8659496 2.3445011, 48.8650282 2.3451533, 48.8649842 2.3451707, 48.8653520 2.3447568, 48.8657315 2.3448468, 48.8657774 2.3445761, 48.8659315 2.3446745, 48.8660578 2.3446116, 48.8662401 2.3446245, 48.8666928 2.3441000, 48.8585753 2.3796813, 48.8467516 2.3809922, 48.8465163 2.3789989, 48.8455614 2.3805006, 48.8472631 2.3789855, 48.8565920 2.3951782, 48.8589893 2.4016192, 48.8623327 2.3527653, 48.8767283 2.4142630, 48.8629574 2.3670436, 48.8689100 2.3859683, 48.8777936 2.3651771, 48.8758559 2.3196867, 48.8812197 2.3164987, 48.8811807 2.3164846, 48.8177108 2.3246199, 48.8199006 2.3214135, 48.8329457 2.3647065, 48.8214751 2.3576631, 48.8818765 2.3453450, 48.8818977 2.3455167, 48.8809875 2.3406458, 48.8809240 2.3404741, 48.8772738 2.3263243, 48.8772711 2.3269492, 48.8761280 2.3384291, 48.8761937 2.3384548, 48.8762503 2.3384716, 48.8803605 2.3986503, 48.8521921 2.3771906, 48.8576132 2.4157021, 48.8624572 2.3776986, 48.8822051 2.3936533, 48.8796554 2.3966912, 48.8511831 2.3785314, 48.8820102 2.4200172, 48.8087038 2.3623689, 48.8753058 2.3579456, 48.8880878 2.3625470, 48.8246848 2.3401055, 48.8260534 2.3414524, 48.8772487 2.4155903, 48.8153650 2.3609320, 48.8389034 2.3510109, 48.8429170 2.3523355, 48.8507946 2.3484559, 48.8467055 2.3514623, 48.8473180 2.3512660, 48.8444716 2.3118167, 48.8728060 2.3646742, 48.8722199 2.3662906, 48.8705355 2.3858494, 48.8772018 2.3707749, 48.8493078 2.3774714, 48.8392014 2.3497085, 48.8400466 2.3498724, 48.8403852 2.3496532, 48.8405842 2.3504848, 48.8922563 2.3451633, 48.8922743 2.3450572, 48.8770064 2.3684202, 48.8771612 2.3641684, 48.8307007 2.3544853, 48.8523523 2.3354901, 48.8520540 2.3392420, 48.8517216 2.3369453, 48.8538085 2.3382792, 48.8524073 2.3397507, 48.8524893 2.3393624, 48.8523795 2.3394490, 48.8280277 2.3557522, 48.8761128 2.3302242, 48.8755958 2.3283907, 48.8760136 2.3310108, 48.8754564 2.3283800, 48.8758586 2.3298896, 48.8754384 2.3285619, 48.8758779 2.3299633, 48.8763654 2.3316481, 48.8763704 2.3313223, 48.8764858 2.3319975, 48.8509886 2.3003532, 48.8381318 2.3517955, 48.8387946 2.3486773, 48.8304045 2.3475111, 48.8820265 2.3813632, 48.8313480 2.3541827, 48.8303481 2.3510629, 48.8818730 2.3810389, 48.8822335 2.3814925, 48.8804194 2.3766425, 48.8836091 2.3810186, 48.8295968 2.3493740, 48.8298392 2.3491024, 48.8298648 2.3489985, 48.8299110 2.3492795, 48.8301553 2.3507953, 48.8303304 2.3510083, 48.8305184 2.3471025, 48.8310961 2.3541682, 48.8312123 2.3540959, 48.8313570 2.3543595, 48.8777590 2.3707497, 48.8777905 2.3707526, 48.8780028 2.3710523, 48.8787222 2.3744794, 48.8813097 2.3805063, 48.8816032 2.3808594, 48.8824847 2.3815501, 48.8827557 2.3814455, 48.8833951 2.3811772, 48.8834402 2.3811365, 48.8835118 2.3809656, 48.8846924 2.3795882, 48.8847828 2.3802243, 48.8367477 2.3065081, 48.8328697 2.3068297, 48.8342127 2.3084129, 48.8361118 2.3069082, 48.8364649 2.3061455, 48.8365007 2.3061630, 48.8365269 2.3066049, 48.8366412 2.3045647, 48.8386515 2.3086284, 48.8389963 2.3074140, 48.8758373 2.3459265, 48.8795087 2.3434753, 48.8317774 2.3387153, 48.8227114 2.3260174, 48.8228970 2.3250330, 48.8229323 2.3261674, 48.8230576 2.3243884, 48.8236717 2.3228847, 48.8237106 2.3225015, 48.8255735 2.3139108, 48.8782227 2.4227236, 48.8194422 2.3258214, 48.8528114 2.3539541, 48.8662716 2.4063088, 48.8663075 2.4062823, 48.8931864 2.3844167, 48.8917005 2.3612335, 48.8924455 2.3635357, 48.8372250 2.3524442, 48.8364615 2.3516931, 48.8469168 2.3372024, 48.8472894 2.3369695, 48.8472848 2.3371388, 48.8472825 2.3372754, 48.8472786 2.3374342, 48.8471150 2.3377021, 48.8470235 2.3376992, 48.8468998 2.3376922, 48.8467139 2.3376747, 48.8468199 2.3376864, 48.8465610 2.3369240, 48.8465595 2.3370711, 48.8465572 2.3372334, 48.8465533 2.3373735, 48.8467285 2.3366415, 48.8468584 2.3366543, 48.8469406 2.3366566, 48.8470351 2.3366718, 48.8471365 2.3366753, 48.8933622 2.3648120, 48.8225960 2.3611286, 48.8717792 2.3922236, 48.8892294 2.3935497, 48.8750371 2.3453587, 48.8767354 2.3606489, 48.8767391 2.3608267, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8486339 2.4271392, 48.8486974 2.4273900, 48.8666073 2.3928050, 48.8688670 2.3900956, 48.8689000 2.3365552, 48.8691839 2.3358994, 48.8693989 2.3358078, 48.8694678 2.3358237, 48.8695047 2.3358723, 48.8695875 2.3358342, 48.8126004 2.3703630, 48.8208030 2.3633818, 48.8289143 2.3738647, 48.8282892 2.3724696, 48.8241342 2.3887432, 48.8242585 2.3889696, 48.8348880 2.3450609, 48.8278106 2.3717446, 48.8277431 2.3716358, 48.8275512 2.3707206, 48.8274435 2.3705955, 48.8272993 2.3681039, 48.8205400 2.3633918, 48.8205631 2.3634931, 48.8224381 2.3627498, 48.8302412 2.3405881, 48.8759800 2.3435799, 48.8763927 2.3443424, 48.8646081 2.3352596, 48.8647343 2.3355750, 48.8647738 2.3356255, 48.8662103 2.3356323, 48.8759674 2.3436727, 48.8759783 2.3436839, 48.8760560 2.3436865, 48.8719299 2.3413389, 48.8602282 2.3444320, 48.8841247 2.3209960, 48.8832982 2.3234280, 48.8547918 2.3860308, 48.8547565 2.3859396, 48.8548329 2.3856345, 48.8545629 2.3851571, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8498132 2.3518796, 48.8561385 2.3685150, 48.8711280 2.3521453, 48.8498202 2.3789350, 48.8757138 2.3237237, 48.8331033 2.3705524, 48.8593988 2.3759303, 48.8926082 2.3632978, 48.8909612 2.3621700, 48.8273102 2.3225383, 48.8272887 2.3226595, 48.8790612 2.3664752, 48.8647682 2.3664782, 48.8488766 2.3550116, 48.8489122 2.3193174, 48.8489272 2.3523931, 48.8491216 2.3136783, 48.8491775 2.3141515, 48.8492908 2.3146445, 48.8493554 2.3527922, 48.8499990 2.3166689, 48.8615352 2.3424505, 48.8939441 2.3979076, 48.8953105 2.3626213, 48.8445237 2.3089198, 48.8962481 2.3594957, 48.8973562 2.3599476, 48.8947703 2.3652163, 48.8962268 2.3624023, 48.8682969 2.3657074, 48.8685578 2.3665766, 48.8949090 2.3637139, 48.8955708 2.3634069, 48.8948184 2.3632576, 48.8945415 2.3621745, 48.8948909 2.3621540, 48.8545746 2.3446665, 48.8550316 2.3449206, 48.8550827 2.3439980, 48.8444751 2.3093056, 48.8442882 2.3080071, 48.8487164 2.4345039, 48.8493257 2.4344654, 48.8486398 2.4347259, 48.8461374 2.3068822, 48.8467261 2.3064315, 48.8147588 2.3915030, 48.8143845 2.3910545, 48.8143334 2.3910129, 48.8143773 2.3910574, 48.8140452 2.3913943, 48.8140840 2.3913640, 48.8141156 2.3913433, 48.8141376 2.3913145, 48.8142048 2.3912635, 48.8142626 2.3912184, 48.8143100 2.3911776, 48.8143190 2.3908976, 48.8143645 2.3911199, 48.8144044 2.3910816, 48.8144362 2.3910490, 48.8144472 2.3910433, 48.8144561 2.3909396, 48.8144575 2.3910253, 48.8144696 2.3910258, 48.8144879 2.3910104, 48.8146441 2.3908723, 48.8147573 2.3907901, 48.8149714 2.3905584, 48.8606042 2.3677659, 48.8607123 2.3679772, 48.8515765 2.3436771, 48.8203424 2.3209032, 48.8206096 2.3214393, 48.8521735 2.3442731, 48.8520404 2.3443625, 48.8515776 2.3438599, 48.8520835 2.3444093, 48.8518887 2.3442140, 48.8524757 2.3445678, 48.8530106 2.3457721, 48.8529435 2.3456985, 48.8528864 2.3462159, 48.8100238 2.3584472, 48.8099728 2.3598708, 48.8099570 2.3600672, 48.8351811 2.4063529, 48.8893267 2.4064616, 48.8929242 2.4019279, 48.8544579 2.3112189, 48.8654584 2.3691446, 48.8260647 2.3576772, 48.8627357 2.3116723, 48.8627432 2.3119541, 48.8627462 2.3120662, 48.8627508 2.3122393, 48.8627552 2.3124077, 48.8627567 2.3124638, 48.8627612 2.3126344, 48.8627658 2.3128087, 48.8627672 2.3128611, 48.8627732 2.3130879, 48.8627754 2.3131677, 48.8627792 2.3133147, 48.8627836 2.3134772, 48.8627883 2.3136547, 48.8627913 2.3137681, 48.8628323 2.3117173, 48.8628383 2.3119441, 48.8628413 2.3120562, 48.8628473 2.3122842, 48.8628503 2.3123977, 48.8628519 2.3124576, 48.8628563 2.3126244, 48.8628593 2.3127379, 48.8628609 2.3127971, 48.8628623 2.3128511, 48.8628683 2.3130779, 48.8628706 2.3131633, 48.8628744 2.3133047, 48.8628789 2.3134747, 48.8628834 2.3136447, 48.8628848 2.3137002, 48.8628864 2.3137581, 48.8265384 2.3420357, 48.8317429 2.3726646, 48.8325421 2.3667365, 48.8647931 2.3036486, 48.8650426 2.3079320, 48.8651506 2.3100983, 48.8657054 2.3060399, 48.8659467 2.3140142, 48.8659629 2.3037630, 48.8659879 2.3136076, 48.8660568 2.3081676, 48.8660748 2.3071977, 48.8665012 2.3048814, 48.8667360 2.3095710, 48.8668599 2.3158209, 48.8670494 2.3039249, 48.8672708 2.3058045, 48.8672794 2.3077726, 48.8673372 2.3120532, 48.8673797 2.3060703, 48.8674830 2.3038290, 48.8680834 2.3099634, 48.8683760 2.3086635, 48.8693965 2.3135036, 48.8694796 2.3064771, 48.8703477 2.3129777, 48.8706268 2.3098022, 48.8707930 2.3149783, 48.8709820 2.3087502, 48.8710261 2.3085538, 48.8710988 2.3093502, 48.8713220 2.3077780, 48.8713750 2.3160591, 48.8719350 2.3116565, 48.8721008 2.3124301, 48.8723380 2.3069699, 48.8723504 2.3086540, 48.8723813 2.3072537, 48.8726918 2.3152858, 48.8727122 2.3083838, 48.8727738 2.3101160, 48.8729778 2.3099637, 48.8732492 2.3145043, 48.8732979 2.3159042, 48.8734138 2.3132235, 48.8734291 2.3158992, 48.8735169 2.3158936, 48.8736893 2.3107682, 48.8739627 2.3082106, 48.8745355 2.3117236, 48.8763389 2.3111717, 48.8765865 2.3106761, 48.8831706 2.3184525, 48.8834100 2.3191983, 48.8836822 2.3187586, 48.8122399 2.3579504, 48.8108859 2.3580359, 48.8414487 2.3662536, 48.8415133 2.3664560, 48.8197193 2.3223837, 48.8194488 2.3232831, 48.8221288 2.3258121, 48.8845071 2.3703915, 48.8803180 2.3712520, 48.8531325 2.3448283, 48.8529010 2.3458674, 48.8530831 2.3451327, 48.8530967 2.3453771, 48.8532232 2.3449207, 48.8528548 2.3460331, 48.8530912 2.3454025, 48.8529158 2.3458178, 48.8528801 2.3459362, 48.8529135 2.3460822, 48.8530593 2.3452208, 48.8531271 2.3452514, 48.8529444 2.3459453, 48.8530349 2.3453279, 48.8528985 2.3461598, 48.8531949 2.3450333, 48.8531460 2.3451752, 48.8528383 2.3461107, 48.8529227 2.3457849, 48.8531071 2.3449244, 48.8530259 2.3454331, 48.8531325 2.3389945, 48.8528398 2.3392414, 48.8534928 2.3391049, 48.8600507 2.3566528, 48.8674198 2.3346001, 48.8296326 2.3575198, 48.8305375 2.3580300, 48.8845024 2.3699867, 48.8858375 2.3725175, 48.8856874 2.3721590, 48.8867667 2.3745936, 48.8866654 2.3743630, 48.8868944 2.3745974, 48.8876631 2.3761477, 48.8884174 2.3778947, 48.8817691 2.3705494, 48.8936524 2.3592349, 48.8944651 2.3595384, 48.8971804 2.3586921, 48.8982278 2.3591507, 48.8527458 2.3514040, 48.8528590 2.3510623, 48.8525635 2.3513635, 48.8528449 2.3519488, 48.8529095 2.3515447, 48.8497401 2.3508144, 48.8494708 2.3495778, 48.8331060 2.3547764, 48.8894150 2.3628554, 48.8850120 2.3563702, 48.8968947 2.3588877, 48.8984477 2.3690228, 48.8694647 2.3205041, 48.8708297 2.3198162, 48.8708454 2.3213869, 48.8709035 2.3189060, 48.8709852 2.3206588, 48.8711890 2.3169578, 48.8712229 2.3212990, 48.8713402 2.3210564, 48.8714517 2.3217836, 48.8715619 2.3188800, 48.8726833 2.3215369, 48.8733998 2.3194017, 48.8734458 2.3215269, 48.8734490 2.3214676, 48.8737552 2.3223785, 48.8741242 2.3202099, 48.8741894 2.3226422, 48.8744426 2.3203559, 48.8744527 2.3192732, 48.8744579 2.3215681, 48.8746259 2.3170130, 48.8751010 2.3174803, 48.8752101 2.3198480, 48.8752415 2.3228642, 48.8754143 2.3163173, 48.8756152 2.3185533, 48.8757410 2.3215885, 48.8758978 2.3194344, 48.8760860 2.3210935, 48.8761481 2.3202830, 48.8764319 2.3157243, 48.8764369 2.3177417, 48.8767020 2.3196440, 48.8767878 2.3193231, 48.8767945 2.3217772, 48.8768497 2.3189942, 48.8770537 2.3138386, 48.8771501 2.3228854, 48.8774521 2.3210244, 48.8775993 2.3114707, 48.8777530 2.3175110, 48.8777553 2.3150122, 48.8779285 2.3159181, 48.8779366 2.3224574, 48.8783761 2.3196887, 48.8786780 2.3137784, 48.8786980 2.3177660, 48.8789772 2.3189266, 48.8790239 2.3230057, 48.8792000 2.3158994, 48.8793082 2.3186672, 48.8793086 2.3140602, 48.8794483 2.3216115, 48.8795869 2.3214830, 48.8798755 2.3217055, 48.8800328 2.3155796, 48.8800529 2.3240220, 48.8801269 2.3198219, 48.8806145 2.3171109, 48.8807405 2.3153253, 48.8808722 2.3232632, 48.8813966 2.3233284, 48.8815205 2.3231048, 48.8820648 2.3194902, 48.8828840 2.3231572, 48.8832221 2.3217173, 48.8832818 2.3205676, 48.8833184 2.3234782, 48.8836440 2.3205811, 48.8839513 2.3200381, 48.8844774 2.3213549, 48.8917982 2.3501197, 48.8935018 2.3509687, 48.8941706 2.3509487, 48.8948571 2.3526912, 48.8951461 2.3495186, 48.8951672 2.3479407, 48.8954733 2.3497638, 48.8958043 2.3466479, 48.8970813 2.3526284, 48.8797258 2.3725494, 48.8115975 2.3864072, 48.8746584 2.3661215, 48.8414470 2.3175240, 48.8415020 2.3174490, 48.8189028 2.3234055, 48.8837788 2.3266314, 48.8839108 2.3249205, 48.8852020 2.3241350, 48.8853682 2.3292936, 48.8856102 2.3218509, 48.8856679 2.3248815, 48.8857203 2.3261448, 48.8859996 2.3218871, 48.8862175 2.3258772, 48.8862181 2.3241641, 48.8866205 2.3278364, 48.8867531 2.3232716, 48.8876128 2.3272353, 48.8876416 2.3334008, 48.8889318 2.3333614, 48.8890747 2.3323580, 48.8890880 2.3311581, 48.8893150 2.3416436, 48.8894222 2.3383989, 48.8895728 2.3368859, 48.8896888 2.3413595, 48.8899984 2.3294374, 48.8900358 2.3312974, 48.8900668 2.3339317, 48.8901027 2.3401433, 48.8907385 2.3380919, 48.8909771 2.3442157, 48.8909903 2.3390287, 48.8910713 2.3414735, 48.8912076 2.3431058, 48.8912717 2.3412804, 48.8915159 2.3366767, 48.8916237 2.3448218, 48.8916510 2.3345360, 48.8916848 2.3444219, 48.8918050 2.3441336, 48.8922025 2.3425036, 48.8922824 2.3448656, 48.8923980 2.3442772, 48.8924156 2.3412747, 48.8924659 2.3417125, 48.8930627 2.3407026, 48.8932064 2.3396066, 48.8932281 2.3430294, 48.8933595 2.3403151, 48.8934775 2.3440514, 48.8935120 2.3374245, 48.8935711 2.3454461, 48.8935810 2.3458771, 48.8938104 2.3471913, 48.8939486 2.3457817, 48.8943770 2.3440724, 48.8946627 2.3439619, 48.8946961 2.3455850, 48.8948359 2.3447136, 48.8214977 2.3568478, 48.8900962 2.4054925, 48.8901524 2.4054918, 48.8903555 2.4067924, 48.8870925 2.4056057, 48.8275383 2.3571726, 48.8083429 2.3631293, 48.8491265 2.3038627, 48.8506165 2.3004771, 48.8290807 2.3169825, 48.8676694 2.3433379, 48.8527669 2.3446610, 48.8521288 2.3444359, 48.8526719 2.3446864, 48.8528975 2.3446411, 48.8527110 2.3446730, 48.8528195 2.3446512, 48.8529973 2.3446935, 48.8526334 2.3445601, 48.8177596 2.3252324, 48.8786911 2.3684186, 48.8788154 2.3656788, 48.8447327 2.3911137, 48.8266940 2.3666020, 48.8243545 2.3680684, 48.8539433 2.3435961, 48.8340933 2.3218873, 48.8646344 2.3327860, 48.8655969 2.3308553, 48.8657286 2.3334876, 48.8664929 2.3287391, 48.8673765 2.3262936, 48.8677722 2.3249917, 48.8680096 2.3313520, 48.8680505 2.3267260, 48.8685480 2.3303190, 48.8686100 2.3235942, 48.8687745 2.3254282, 48.8689925 2.3292440, 48.8694014 2.3319283, 48.8697270 2.3263148, 48.8706099 2.3232470, 48.8706166 2.3243388, 48.8709664 2.3234796, 48.8711366 2.3230162, 48.8712363 2.3262154, 48.8718789 2.3272815, 48.8719060 2.3281941, 48.8722322 2.3288404, 48.8723480 2.3324620, 48.8724060 2.3265853, 48.8724193 2.3238584, 48.8726193 2.3262478, 48.8726680 2.3334573, 48.8727354 2.3250721, 48.8727438 2.3329606, 48.8728787 2.3306360, 48.8729284 2.3354060, 48.8730920 2.3308914, 48.8730996 2.3275514, 48.8732548 2.3247994, 48.8736376 2.3310868, 48.8738515 2.3259516, 48.8742680 2.3333269, 48.8747386 2.3248354, 48.8749551 2.3312402, 48.8751747 2.3396132, 48.8752122 2.3357476, 48.8752165 2.3334654, 48.8752649 2.3333896, 48.8752695 2.3330619, 48.8753468 2.3370991, 48.8759733 2.3421392, 48.8762638 2.3331757, 48.8763949 2.3386268, 48.8764861 2.3412119, 48.8765118 2.3416086, 48.8765467 2.3426191, 48.8765525 2.3407254, 48.8766430 2.3274960, 48.8769196 2.3354993, 48.8770614 2.3311360, 48.8770812 2.3318997, 48.8773557 2.3355444, 48.8776934 2.3402110, 48.8778139 2.3394567, 48.8779438 2.3320302, 48.8779976 2.3279206, 48.8780089 2.3443801, 48.8780194 2.3381422, 48.8782930 2.3509068, 48.8783261 2.3299445, 48.8784130 2.3399540, 48.8784144 2.3373688, 48.8784204 2.3453814, 48.8784242 2.3410929, 48.8788021 2.3280473, 48.8788208 2.3450926, 48.8789477 2.3345873, 48.8789540 2.3497944, 48.8789817 2.3364052, 48.8790152 2.3442312, 48.8791524 2.3478308, 48.8792245 2.3364947, 48.8794328 2.3511004, 48.8795428 2.3474051, 48.8797650 2.3410166, 48.8798667 2.3435948, 48.8800118 2.3250967, 48.8801225 2.3511238, 48.8801315 2.3250307, 48.8801686 2.3312200, 48.8802061 2.3257321, 48.8802837 2.3516584, 48.8804027 2.3407672, 48.8805673 2.3491621, 48.8806093 2.3318185, 48.8806276 2.3342233, 48.8806317 2.3259723, 48.8806957 2.3516043, 48.8807210 2.3347923, 48.8807408 2.3286691, 48.8810141 2.3450431, 48.8810221 2.3415214, 48.8810991 2.3364447, 48.8812533 2.3277520, 48.8814171 2.3485814, 48.8815470 2.3244898, 48.8816086 2.3479024, 48.8817961 2.3422508, 48.8819707 2.3296270, 48.8819961 2.3237258, 48.8820155 2.3246949, 48.8820528 2.3236882, 48.8820617 2.3355547, 48.8820804 2.3337251, 48.8820947 2.3287593, 48.8821383 2.3378924, 48.8826150 2.3420785, 48.8827482 2.3396221, 48.8828033 2.3263736, 48.8829862 2.3289264, 48.8830059 2.3465855, 48.8830771 2.3312226, 48.8832673 2.3348643, 48.8832945 2.3336845, 48.8834766 2.3297369, 48.8835589 2.3423646, 48.8836138 2.3448442, 48.8836512 2.3319569, 48.8836819 2.3303465, 48.8837839 2.3439078, 48.8839960 2.3307500, 48.8840949 2.3417916, 48.8841601 2.3384809, 48.8841806 2.3395877, 48.8842271 2.3525314, 48.8844041 2.3451523, 48.8844340 2.3551288, 48.8844369 2.3439456, 48.8844672 2.3380435, 48.8845950 2.3470065, 48.8846849 2.3360733, 48.8847614 2.3484352, 48.8848492 2.3379967, 48.8849222 2.3308445, 48.8849553 2.3294255, 48.8849669 2.3542103, 48.8849687 2.3507256, 48.8850502 2.3520744, 48.8851030 2.3511582, 48.8851641 2.3340439, 48.8852210 2.3497901, 48.8855079 2.3541642, 48.8856116 2.3396011, 48.8856228 2.3498339, 48.8857035 2.3557329, 48.8857606 2.3406887, 48.8858871 2.3558589, 48.8860287 2.3397744, 48.8860550 2.3483599, 48.8861046 2.3415390, 48.8861265 2.3464882, 48.8862752 2.3341623, 48.8865084 2.3396743, 48.8865590 2.3442373, 48.8871894 2.3375292, 48.8872573 2.3513205, 48.8873945 2.3433426, 48.8875101 2.3353784, 48.8876064 2.3413781, 48.8878339 2.3486082, 48.8879339 2.3561388, 48.8882096 2.3467457, 48.8882887 2.3420340, 48.8883160 2.3513066, 48.8883534 2.3525373, 48.8885554 2.3540671, 48.8888058 2.3559584, 48.8890100 2.3531280, 48.8893492 2.3449997, 48.8896158 2.3461133, 48.8900020 2.3515230, 48.8903302 2.3535017, 48.8903480 2.3531599, 48.8904285 2.3486604, 48.8905130 2.3500905, 48.8910509 2.3516036, 48.8757681 2.3578797, 48.8758238 2.3578824, 48.8762217 2.3586964, 48.8570381 2.3480446, 48.8575762 2.3494199, 48.8579164 2.3467953, 48.8580648 2.3466748, 48.8586813 2.3485587, 48.8590149 2.3473254, 48.8593750 2.3407877, 48.8595485 2.3436063, 48.8596015 2.3467635, 48.8603309 2.3435680, 48.8609387 2.3448599, 48.8611214 2.3446695, 48.8613203 2.3431014, 48.8613826 2.3399197, 48.8615030 2.3537880, 48.8615771 2.3418562, 48.8616112 2.3441771, 48.8616280 2.3393880, 48.8618802 2.3507259, 48.8623333 2.3389057, 48.8623677 2.3520008, 48.8623818 2.3418636, 48.8626127 2.3542906, 48.8629079 2.3532453, 48.8631055 2.3358246, 48.8631800 2.3527500, 48.8633003 2.3336176, 48.8633189 2.3466557, 48.8633520 2.3337895, 48.8635365 2.3357222, 48.8636998 2.3399068, 48.8639508 2.3319640, 48.8639621 2.3420802, 48.8642335 2.3453599, 48.8645472 2.3463386, 48.8646226 2.3426480, 48.8646870 2.3406606, 48.8647941 2.3511884, 48.8648400 2.3355843, 48.8651267 2.3429107, 48.8651708 2.3405472, 48.8652931 2.3537230, 48.8653326 2.3552559, 48.8653611 2.3524876, 48.8654999 2.3423967, 48.8658039 2.3372520, 48.8661711 2.3384355, 48.8662258 2.3403557, 48.8666590 2.3541047, 48.8667309 2.3520789, 48.8668074 2.3494867, 48.8669351 2.3443363, 48.8670834 2.3358592, 48.8673540 2.3406581, 48.8675796 2.3535504, 48.8677334 2.3377298, 48.8678514 2.3362272, 48.8678705 2.3451971, 48.8679636 2.3511355, 48.8679881 2.3352776, 48.8680475 2.3479599, 48.8680796 2.3480760, 48.8681299 2.3505334, 48.8681721 2.3349800, 48.8683093 2.3371647, 48.8683443 2.3411932, 48.8683889 2.3341099, 48.8685980 2.3469430, 48.8688537 2.3494779, 48.8688643 2.3391192, 48.8688978 2.3365035, 48.8688994 2.3348917, 48.8690412 2.3516028, 48.8691748 2.3344736, 48.8692087 2.3515210, 48.8692112 2.3456861, 48.8692485 2.3385287, 48.8693074 2.3454967, 48.8695829 2.3340383, 48.8698140 2.3396216, 48.8699372 2.3487469, 48.8700523 2.3413779, 48.8705156 2.3446299, 48.8706302 2.3373159, 48.8707194 2.3472729, 48.8707212 2.3496908, 48.8707331 2.3434405, 48.8710744 2.3351823, 48.8711554 2.3357637, 48.8711662 2.3521201, 48.8712410 2.3361569, 48.8712698 2.3534684, 48.8713594 2.3457604, 48.8714836 2.3414477, 48.8715326 2.3458904, 48.8723391 2.3467595, 48.8723480 2.3370773, 48.8723487 2.3487518, 48.8723966 2.3449630, 48.8725909 2.3501335, 48.8726445 2.3501474, 48.8727987 2.3405829, 48.8729581 2.3428034, 48.8731471 2.3395601, 48.8735640 2.3406389, 48.8739829 2.3481547, 48.8740470 2.3477340, 48.8740527 2.3421136, 48.8740548 2.3433864, 48.8740592 2.3425436, 48.8741494 2.3421417, 48.8742044 2.3397071, 48.8758785 2.3461185, 48.8761600 2.3483493, 48.8769202 2.3525222, 48.8770470 2.3471076, 48.8773771 2.3538771, 48.8774205 2.3535167, 48.8775902 2.3506534, 48.8776601 2.3553429, 48.8783861 2.3554997, 48.8787287 2.3546414, 48.8791515 2.3558469, 48.8797101 2.3534886, 48.8820092 2.3523456, 48.8823077 2.3510798, 48.8830825 2.3511342, 48.8585765 2.3864186, 48.8516699 2.3435357, 48.8530171 2.3437086, 48.8527079 2.3443015, 48.8524385 2.3434434, 48.8524830 2.3434653, 48.8518891 2.3436357, 48.8528599 2.3440994, 48.8410792 2.3509139, 48.8542344 2.3429198, 48.8957541 2.3476530, 48.8957586 2.3475660, 48.8539085 2.3086472, 48.8539541 2.3074346, 48.8551010 2.3095913, 48.8551532 2.3028063, 48.8552457 2.3067057, 48.8553363 2.3049928, 48.8553675 2.3068985, 48.8553929 2.3034896, 48.8559676 2.3059142, 48.8561045 2.3013326, 48.8562930 2.3025878, 48.8563056 2.3087302, 48.8563317 2.3096037, 48.8565079 2.3059903, 48.8568139 2.3076562, 48.8568319 2.3281152, 48.8571848 2.3085841, 48.8573852 2.3049322, 48.8574009 2.3030910, 48.8575384 2.3042998, 48.8578092 2.3321558, 48.8578154 2.3085010, 48.8578522 2.3192642, 48.8579820 2.3153470, 48.8580034 2.3086802, 48.8580229 2.3057868, 48.8581278 2.3108897, 48.8582323 2.3294789, 48.8583538 2.3295573, 48.8585346 2.3026259, 48.8585840 2.3199152, 48.8587092 2.3291167, 48.8587126 2.3247215, 48.8587381 2.3315547, 48.8589269 2.3283811, 48.8590443 2.3031744, 48.8590768 2.3305368, 48.8591000 2.3261231, 48.8591132 2.3179817, 48.8591582 2.3049131, 48.8594540 2.3062761, 48.8596508 2.3074975, 48.8596523 2.3226562, 48.8596919 2.3225563, 48.8597389 2.3018836, 48.8599169 2.3108575, 48.8599536 2.3248067, 48.8599563 2.3245226, 48.8600667 2.3148082, 48.8600752 2.3243791, 48.8602078 2.3234366, 48.8604166 2.3095659, 48.8606849 2.3259641, 48.8607318 2.3179448, 48.8607741 2.3023809, 48.8608367 2.3113974, 48.8608588 2.3201641, 48.8610382 2.3054909, 48.8611677 2.3056568, 48.8613121 2.3192107, 48.8622880 2.3059787, 48.8624061 2.3113873, 48.8653840 2.3274850, 48.8540526 2.3381367, 48.8433449 2.3251164, 48.8550540 2.3941000, 48.8560955 2.3926896, 48.8578050 2.3996283, 48.8582358 2.3823367, 48.8586186 2.3835107, 48.8592411 2.3830225, 48.8601008 2.3822123, 48.8626812 2.3797075, 48.8630453 2.3672473, 48.8633485 2.3671490, 48.8634092 2.3790356, 48.8644595 2.3839203, 48.8648530 2.3666639, 48.8657480 2.3705095, 48.8680948 2.3655417, 48.8682070 2.3654610, 48.8687325 2.3631261, 48.8740998 2.3453668, 48.8822164 2.3337987, 48.8461635 2.4121025, 48.8654497 2.3690938, 48.8709594 2.3479984, 48.8660577 2.3461115, 48.8350277 2.3205989, 48.8751006 2.3400657, 48.8748884 2.3397356, 48.8757351 2.3405971, 48.8750444 2.3389313, 48.8871516 2.3511027, 48.8315787 2.3542019, 48.8336520 2.3101620, 48.8337528 2.3087365, 48.8347380 2.3111012, 48.8348521 2.3075912, 48.8351341 2.3079342, 48.8354547 2.3057014, 48.8356004 2.3111710, 48.8357565 2.3059665, 48.8358801 2.3060665, 48.8361740 2.3098463, 48.8363383 2.3097267, 48.8366412 2.3045647, 48.8374548 2.3058579, 48.8374548 2.3080728, 48.8379248 2.3111213, 48.8379890 2.3069174, 48.8384950 2.3052994, 48.8385040 2.3067669, 48.8385066 2.3122890, 48.8386486 2.3135249, 48.8386719 2.3078559, 48.8386741 2.3067215, 48.8386877 2.3035456, 48.8386971 2.3115691, 48.8387412 2.3154065, 48.8393646 2.3070353, 48.8394827 2.3080856, 48.8397488 2.3061030, 48.8404963 2.3049668, 48.8405816 2.3086616, 48.8410500 2.3026163, 48.8413523 2.3073527, 48.8415111 2.3021720, 48.8416574 2.3083906, 48.8418418 2.3033696, 48.8419435 2.3093074, 48.8423393 2.3029467, 48.8423425 2.3021226, 48.8423676 2.3065419, 48.8435213 2.3080903, 48.8436881 2.3022154, 48.8437389 2.3024471, 48.8438234 2.3069381, 48.8444024 2.3089223, 48.8457141 2.3051500, 48.8458276 2.3037371, 48.8458503 2.3041384, 48.8463648 2.3074017, 48.8465226 2.3068476, 48.8470290 2.3104710, 48.8472268 2.3092341, 48.8472459 2.3076019, 48.8476609 2.3090669, 48.8480234 2.3010758, 48.8485462 2.3085865, 48.8496156 2.3012326, 48.8499794 2.3076988, 48.8501100 2.3060241, 48.8501962 2.3016109, 48.8506514 2.3086796, 48.8507327 2.3114270, 48.8521368 2.3091381, 48.8525064 2.3091028, 48.8525170 2.3003130, 48.8714453 2.3779907, 48.8385936 2.4043447, 48.8419332 2.3977625, 48.8555664 2.3791618, 48.8101616 2.3619565, 48.8926487 2.3594311, 48.8753587 2.3704700, 48.8683317 2.3921668, 48.8794010 2.3973642, 48.8831921 2.3953289, 48.8381765 2.3815493, 48.8435530 2.3220799, 48.8345270 2.3676018, 48.8528174 2.3454656, 48.8524768 2.3451560, 48.8528047 2.3455506, 48.8522237 2.3452202, 48.8528366 2.3455838, 48.8520545 2.3450880, 48.8524991 2.3448569, 48.8523811 2.3455175, 48.8523985 2.3454156, 48.8526936 2.3454400, 48.8518297 2.3444041, 48.8524942 2.3450079, 48.8525154 2.3452198, 48.8525300 2.3444340, 48.8524984 2.3449165, 48.8523948 2.3451403, 48.8526323 2.3452414, 48.8525589 2.3451535, 48.8523556 2.3455883, 48.8527431 2.3454930, 48.8525232 2.3451020, 48.8526255 2.3453560, 48.8524246 2.3449029, 48.8526532 2.3453925, 48.8527658 2.3454086, 48.8524155 2.3453426, 48.8525696 2.3452847, 48.8527323 2.3453722, 48.8482895 2.4084728, 48.8466594 2.4106749, 48.8479317 2.4084678, 48.8443704 2.4109328, 48.8727300 2.4014992, 48.8330093 2.3868281, 48.8956082 2.3863617, 48.8963229 2.3877822, 48.8966783 2.3884868, 48.8717878 2.3638160, 48.8829241 2.3432202, 48.8453825 2.3103100, 48.8507735 2.3622964, 48.8468849 2.3100155, 48.8731139 2.3807450, 48.8903381 2.3486643, 48.8905361 2.3482493, 48.8690065 2.3742189, 48.8437820 2.3881621, 48.8437338 2.3880357, 48.8524106 2.3862003, 48.8485041 2.3805544, 48.8721796 2.3274785, 48.8715853 2.3272917, 48.8694647 2.3205041, 48.8707068 2.3177487, 48.8708297 2.3198162, 48.8708454 2.3213869, 48.8709035 2.3189060, 48.8709852 2.3206588, 48.8711890 2.3169578, 48.8712229 2.3212990, 48.8713402 2.3210564, 48.8714517 2.3217836, 48.8715619 2.3188800, 48.8726833 2.3215369, 48.8733998 2.3194017, 48.8734458 2.3215269, 48.8734490 2.3214676, 48.8737552 2.3223785, 48.8741242 2.3202099, 48.8741894 2.3226422, 48.8744426 2.3203559, 48.8744527 2.3192732, 48.8744579 2.3215681, 48.8746259 2.3170130, 48.8751010 2.3174803, 48.8752101 2.3198480, 48.8752415 2.3228642, 48.8754143 2.3163173, 48.8756152 2.3185533, 48.8757410 2.3215885, 48.8758978 2.3194344, 48.8760860 2.3210935, 48.8761481 2.3202830, 48.8764319 2.3157243, 48.8764369 2.3177417, 48.8767020 2.3196440, 48.8767878 2.3193231, 48.8767945 2.3217772, 48.8768497 2.3189942, 48.8770537 2.3138386, 48.8771501 2.3228854, 48.8774521 2.3210244, 48.8775993 2.3114707, 48.8777530 2.3175110, 48.8777553 2.3150122, 48.8779285 2.3159181, 48.8779366 2.3224574, 48.8783761 2.3196887, 48.8786780 2.3137784, 48.8786980 2.3177660, 48.8789772 2.3189266, 48.8790239 2.3230057, 48.8792000 2.3158994, 48.8793082 2.3186672, 48.8793086 2.3140602, 48.8794483 2.3216115, 48.8795869 2.3214830, 48.8798755 2.3217055, 48.8800328 2.3155796, 48.8800529 2.3240220, 48.8801269 2.3198219, 48.8806145 2.3171109, 48.8807405 2.3153253, 48.8808722 2.3232632, 48.8813966 2.3233284, 48.8815205 2.3231048, 48.8820648 2.3194902, 48.8828840 2.3231572, 48.8832221 2.3217173, 48.8832818 2.3205676, 48.8833184 2.3234782, 48.8839513 2.3200381, 48.8917982 2.3501197, 48.8935018 2.3509687, 48.8941706 2.3509487, 48.8948571 2.3526912, 48.8951461 2.3495186, 48.8951672 2.3479407, 48.8954733 2.3497638, 48.8958043 2.3466479, 48.8970813 2.3526284, 48.8646577 2.3697145, 48.8543573 2.3136915, 48.8884177 2.3743799, 48.8480006 2.4345439, 48.8243767 2.3882824, 48.8240361 2.3627306, 48.8759290 2.3241447, 48.8764290 2.3259972, 48.8764091 2.3244207, 48.8761420 2.3253990, 48.8759449 2.3241482, 48.8760338 2.3245155, 48.8765475 2.3254916, 48.8760532 2.3249007, 48.8762511 2.3264503, 48.8222398 2.3591920, 48.8474387 2.3948976, 48.8455733 2.3932777, 48.8444922 2.3906935, 48.8475003 2.3947757, 48.8438714 2.3884965, 48.8441015 2.3902675, 48.8442066 2.3901213, 48.8442986 2.3903755, 48.8455774 2.3934588, 48.8458523 2.3940231, 48.8458668 2.3928146, 48.8667163 2.3367639, 48.8476545 2.3944723, 48.8481499 2.3941327, 48.8596625 2.3487464, 48.8236296 2.3258107, 48.8183865 2.3239908, 48.8184006 2.3239280, 48.8182338 2.3244286, 48.8274032 2.3423677, 48.8277079 2.3495286, 48.8314922 2.3442625, 48.8320979 2.3443846, 48.8367757 2.3452596, 48.8155824 2.3602430, 48.8155033 2.3602627, 48.8260107 2.3418204, 48.8254379 2.3417367, 48.8275172 2.3481095, 48.8232984 2.3491235, 48.8245450 2.3642314, 48.8649652 2.3469748, 48.8548426 2.3031870, 48.8548827 2.3032421, 48.8577877 2.3006194, 48.8596013 2.3072329, 48.8600760 2.3280535, 48.8612403 2.3243984, 48.8615577 2.3576761, 48.8626940 2.3099487, 48.8627569 2.3393126, 48.8629258 2.3030795, 48.8629949 2.3080187, 48.8630650 2.3165032, 48.8635613 2.3394544, 48.8322518 2.3505076, 48.8274091 2.3702950, 48.8262624 2.3422039, 48.8170719 2.3295227, 48.8171046 2.3289082, 48.8172653 2.3269485, 48.8171141 2.3283805, 48.8172737 2.3276440, 48.8655847 2.3476269, 48.8717156 2.3724284, 48.8682865 2.3740040, 48.8557030 2.3747134, 48.8343678 2.3941240, 48.8457586 2.3270884, 48.8529574 2.3648321, 48.8210463 2.3725549, 48.8258933 2.3769015, 48.8216635 2.3641183, 48.8339084 2.3226213, 48.8394410 2.3322130, 48.8302211 2.3529383, 48.8659387 2.3929440, 48.8475088 2.4104704, 48.8474749 2.4107917, 48.8686052 2.3443989, 48.8187770 2.3236463, 48.8186881 2.3240918, 48.8186575 2.3242610, 48.8184393 2.3244621, 48.8189946 2.3236282, 48.8735457 2.3708331, 48.8265121 2.3465625, 48.8321818 2.3392750, 48.8293214 2.3692986, 48.8508705 2.3623119, 48.8512015 2.3822530, 48.8514794 2.3101353, 48.8540997 2.3239460, 48.8541902 2.3194979, 48.8550561 2.3402771, 48.8600928 2.3731117, 48.8292238 2.3439360, 48.8910518 2.3314128, 48.8907746 2.3312473, 48.8490077 2.3495940, 48.8537886 2.3474561, 48.8461806 2.3049798, 48.8454569 2.3021602, 48.8173425 2.3289478, 48.8535790 2.3638481, 48.8571030 2.3539440, 48.8573414 2.3540716, 48.8574462 2.3575428, 48.8630086 2.3362399, 48.8631579 2.3415886, 48.8632373 2.3412593, 48.8653506 2.3423662, 48.8670831 2.3356438, 48.8744871 2.3117910, 48.8747123 2.3133715, 48.8461901 2.3512999, 48.8770585 2.3479815, 48.8558171 2.3591925, 48.8155795 2.3589085, 48.8421369 2.3176494, 48.8422999 2.3174583, 48.8428342 2.3162838, 48.8429747 2.3188550, 48.8433254 2.3137596, 48.8434671 2.3141943, 48.8436537 2.3222563, 48.8444891 2.3116986, 48.8445846 2.3211161, 48.8446144 2.3243851, 48.8452204 2.3187649, 48.8455784 2.3239099, 48.8455809 2.3219769, 48.8459065 2.3118982, 48.8462631 2.3193835, 48.8463396 2.3127780, 48.8466040 2.3190709, 48.8467670 2.3127162, 48.8474660 2.3160188, 48.8474753 2.3165293, 48.8476592 2.3121381, 48.8477851 2.3195679, 48.8479950 2.3233385, 48.8478094 2.3139811, 48.8492009 2.3142460, 48.8497021 2.3197907, 48.8498155 2.3199511, 48.8499241 2.3132717, 48.8501017 2.3175896, 48.8501349 2.3249523, 48.8504140 2.3240365, 48.8503875 2.3142865, 48.8507929 2.3238718, 48.8508108 2.3194005, 48.8508134 2.3132588, 48.8509410 2.3193307, 48.8510338 2.3192879, 48.8513602 2.3137134, 48.8516479 2.3197110, 48.8516519 2.3193545, 48.8516964 2.3160855, 48.8517388 2.3252453, 48.8523746 2.3262806, 48.8524136 2.3173189, 48.8527947 2.3190850, 48.8528415 2.3291596, 48.8530951 2.3262349, 48.8532135 2.3270320, 48.8535574 2.3151657, 48.8535809 2.3141731, 48.8536440 2.3299961, 48.8541301 2.3312281, 48.8544570 2.3287727, 48.8545108 2.3146096, 48.8547795 2.3146348, 48.8550665 2.3191598, 48.8552749 2.3279053, 48.8553640 2.3179921, 48.8554022 2.3301476, 48.8556439 2.3298387, 48.8557141 2.3235223, 48.8559870 2.3271496, 48.8560628 2.3170538, 48.8563335 2.3315077, 48.8563459 2.3239987, 48.8563942 2.3210916, 48.8565349 2.3212197, 48.8566110 2.3416102, 48.8568588 2.3197826, 48.8569854 2.3383301, 48.8570093 2.3414970, 48.8570242 2.3422386, 48.8572420 2.3380131, 48.8577451 2.3350889, 48.8534312 2.3389430, 48.8581170 2.3176186, 48.8518377 2.3336366, 48.8736489 2.3149511, 48.8754876 2.3480736, 48.8466623 2.4348343, 48.8776068 2.3489868, 48.8620665 2.3838398, 48.8879018 2.3544119, 48.8912273 2.3652498, 48.8344271 2.3454806, 48.8344685 2.3455658, 48.8169918 2.3258616, 48.8235887 2.3709824, 48.8190595 2.3486008, 48.8176437 2.3260953, 48.8176444 2.3258395, 48.8173940 2.3297916, 48.8171085 2.3312786, 48.8171734 2.3308750, 48.8175189 2.3306660, 48.8429321 2.3245088, 48.8425774 2.3246010, 48.8379338 2.3451570, 48.8669596 2.3540803, 48.8342486 2.3425441, 48.8342162 2.3447405, 48.8343274 2.3449900, 48.8342849 2.3425292, 48.8813835 2.3281151, 48.8878510 2.3535887, 48.8310392 2.3425080, 48.8308265 2.3530126, 48.8275984 2.3335328, 48.8826169 2.3296364, 48.8831199 2.3303330, 48.8834005 2.3305918, 48.8453508 2.4347565, 48.8462119 2.4348196, 48.8462654 2.4348179, 48.8458099 2.4348069, 48.8617117 2.3497830, 48.8261226 2.3577385, 48.8597393 2.3087639, 48.8598677 2.3086797, 48.8366915 2.3872945, 48.8358873 2.3963035, 48.8358890 2.3866572, 48.8359297 2.3867278, 48.8359554 2.3960408, 48.8359725 2.3959740, 48.8359742 2.3867660, 48.8361094 2.3872805, 48.8362994 2.3876544, 48.8363676 2.3944462, 48.8365365 2.3936955, 48.8367867 2.3928240, 48.8367894 2.3928135, 48.8367966 2.3927857, 48.8914513 2.4007092, 48.8347265 2.3446963, 48.8910795 2.4008572, 48.8378379 2.3473550, 48.8348733 2.3446364, 48.8183932 2.3258641, 48.8180636 2.3258685, 48.8192793 2.3258826, 48.8185791 2.3258552, 48.8184872 2.3258565, 48.8191025 2.3258715, 48.8368314 2.3382202, 48.8305790 2.3195353, 48.8430784 2.3847046, 48.8434945 2.3838411, 48.8451050 2.3806444, 48.8451648 2.3805083, 48.8452255 2.3803788, 48.8466206 2.4134552, 48.8530692 2.4125589, 48.8569190 2.4110486, 48.8647596 2.4089845, 48.8671280 2.4091658, 48.8673068 2.4087318, 48.8678522 2.4092408, 48.8718692 2.4084946, 48.8729156 2.4089018, 48.8730227 2.4088436, 48.8774817 2.4062578, 48.8799062 2.4010873, 48.8808314 2.4005187, 48.8827476 2.3997867, 48.8837604 2.3973570, 48.8853759 2.3967693, 48.8891501 2.3919739, 48.8921011 2.3883839, 48.8939074 2.3869648, 48.8950741 2.3853043, 48.8965893 2.3846935, 48.8974790 2.3852300, 48.8484552 2.3315803, 48.8478188 2.3317288, 48.8475857 2.3296611, 48.8470992 2.3320504, 48.8478953 2.3316238, 48.8502142 2.3307201, 48.8661080 2.3480098, 48.8514201 2.3758635, 48.8774505 2.3685222, 48.8678023 2.3499020, 48.8678124 2.3498067, 48.8471588 2.3719205, 48.8504635 2.3752653, 48.8606025 2.3457538, 48.8444091 2.3842831, 48.8600001 2.3452392, 48.8611778 2.3447865, 48.8442555 2.3844474, 48.8601414 2.3453350, 48.8449869 2.3820879, 48.8461498 2.3724726, 48.8488509 2.3782764, 48.8489671 2.3729974, 48.8500845 2.3748802, 48.8506003 2.3754366, 48.8607328 2.3456697, 48.8612868 2.3461069, 48.8666717 2.3501829, 48.8667659 2.3491772, 48.8355408 2.3093378, 48.8592270 2.3236594, 48.8624657 2.3115669, 48.8779515 2.3440896, 48.8128540 2.3871804, 48.8454913 2.3116790, 48.8455110 2.3111536, 48.8669202 2.3834926, 48.8689269 2.3715327, 48.8759321 2.3727655, 48.8984073 2.3709403, 48.8853124 2.3253739, 48.8110214 2.3782777, 48.8525740 2.3134937, 48.8525833 2.3135404, 48.8526033 2.3136415, 48.8689288 2.3715403, 48.8424961 2.3064436, 48.8440160 2.3238242, 48.8702188 2.3108394, 48.8919944 2.3633128, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8697269 2.3949223, 48.8715298 2.3681493, 48.8372276 2.3646862, 48.8769773 2.3262750, 48.8753264 2.3590187, 48.8799626 2.3536843, 48.8445922 2.3731473, 48.8413218 2.3206480, 48.8455223 2.3425685, 48.8536307 2.3312600, 48.8213106 2.3411460, 48.8239590 2.3308277, 48.8239711 2.3514442, 48.8239998 2.3510117, 48.8241733 2.3533935, 48.8244865 2.3278048, 48.8245804 2.3396886, 48.8246044 2.3382584, 48.8248799 2.3536513, 48.8256032 2.3217938, 48.8266135 2.3534752, 48.8269262 2.3513163, 48.8281250 2.3216386, 48.8281819 2.3155262, 48.8289185 2.3222763, 48.8296026 2.3178273, 48.8324706 2.3133021, 48.8333400 2.3145004, 48.8337099 2.3148700, 48.8337885 2.3608913, 48.8356331 2.4060202, 48.8360628 2.4058718, 48.8367584 2.3566102, 48.8368296 2.3568351, 48.8459364 2.3679712, 48.8488033 2.3687487, 48.8614046 2.3531748, 48.8594247 2.3541247, 48.8594211 2.3542124, 48.8334174 2.3618852, 48.8360650 2.3596394, 48.8362427 2.3596851, 48.8366167 2.3595885, 48.8366724 2.3596246, 48.8376250 2.3599216, 48.8850419 2.3744732, 48.8838417 2.3719439, 48.8837483 2.3717520, 48.8850102 2.3744075, 48.8853557 2.3751166, 48.8384611 2.3605477, 48.8846076 2.3697324, 48.8847187 2.3693992, 48.8843398 2.3684081, 48.8846076 2.3697324, 48.8847187 2.3693992, 48.8407489 2.3325635, 48.8515711 2.3623262, 48.8650085 2.3673694, 48.8629594 2.3673222, 48.8908885 2.3778488, 48.8627650 2.3673900, 48.8671353 2.3480000, 48.8467474 2.3783883, 48.8471339 2.3781711, 48.8420534 2.3270460, 48.8712921 2.3250770, 48.8674112 2.3229787, 48.8718050 2.3260042, 48.8711680 2.3244832, 48.8705122 2.3238078, 48.8704742 2.3237783, 48.8704346 2.3237502, 48.8689760 2.3246971, 48.8699476 2.3254321, 48.8696624 2.3230123, 48.8697219 2.3226142, 48.8116113 2.3888455, 48.8121801 2.3883198, 48.8295478 2.3565241, 48.8291546 2.3568286, 48.8295252 2.3565008, 48.8424086 2.3513701, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8403450 2.3126650, 48.8938413 2.3472931, 48.8942404 2.3460471, 48.8942255 2.3458385, 48.8548397 2.3327630, 48.8550742 2.3329300, 48.8549423 2.3328154, 48.8297226 2.3219729, 48.8731938 2.3290960, 48.8325364 2.3417797, 48.8314181 2.3371743, 48.8327337 2.3418100, 48.8330472 2.3399437, 48.8339254 2.3432235, 48.8338525 2.3429060, 48.8329977 2.3417898, 48.8563876 2.4098516, 48.8466055 2.3466048, 48.8934234 2.3381216, 48.8929811 2.3381482, 48.8839216 2.3271785, 48.8839775 2.3271608, 48.8839670 2.3273081, 48.8841275 2.3270884, 48.8845343 2.3268965, 48.8846683 2.3268418, 48.8855156 2.3264429, 48.8862771 2.3262148, 48.8861526 2.3261584, 48.8865223 2.3259623, 48.8869014 2.3259253, 48.8871792 2.3257982, 48.8875030 2.3256728, 48.8874194 2.3255802, 48.8572041 2.3519819, 48.8572192 2.3519137, 48.8572350 2.3518428, 48.8572508 2.3517719, 48.8572661 2.3517033, 48.8560656 2.3513775, 48.8560820 2.3513063, 48.8560988 2.3512327, 48.8561157 2.3511592, 48.8561320 2.3510885, 48.8919499 2.3369440, 48.8594141 2.3491854, 48.8605440 2.3490975, 48.8589870 2.3482181, 48.8714017 2.3382665, 48.8732628 2.3407395, 48.8237995 2.3254184, 48.8235069 2.3253377, 48.8236544 2.3253945, 48.8529506 2.4178518, 48.8298598 2.3564266, 48.8292574 2.3564506, 48.8299806 2.3563975, 48.8433447 2.3026630, 48.8487244 2.3363303, 48.8839482 2.3865956, 48.8472293 2.4312408, 48.8832359 2.3459108, 48.8603210 2.3564177, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8146772 2.3838576, 48.8153007 2.3857780, 48.8150764 2.3854133, 48.8306620 2.3114368, 48.8309698 2.3120278, 48.8319648 2.3140431, 48.8344971 2.4006966, 48.8239744 2.3528049, 48.8236433 2.3530302, 48.8741108 2.3436798, 48.8805026 2.3961626, 48.8314166 2.3251141, 48.8321210 2.3246559, 48.8337101 2.3186360, 48.8540626 2.3612455, 48.8436106 2.3422313, 48.8747610 2.3399353, 48.8189427 2.3623110, 48.8193375 2.3442401, 48.8193930 2.3452226, 48.8200280 2.3394747, 48.8202391 2.3395613, 48.8205079 2.3556087, 48.8205508 2.3372668, 48.8205989 2.3495983, 48.8211121 2.3347051, 48.8215967 2.3323735, 48.8236280 2.3761871, 48.8292229 2.3255814, 48.8313803 2.3349575, 48.8316633 2.3221401, 48.8325886 2.3203616, 48.8357379 2.3250590, 48.8386159 2.3222156, 48.8532271 2.3906633, 48.8319258 2.3247528, 48.8718921 2.4037539, 48.8346470 2.3196240, 48.8532124 2.3749112, 48.8593876 2.3489534, 48.8591424 2.3496306, 48.8594147 2.3492122, 48.8593718 2.3493758, 48.8593594 2.3494831, 48.8594723 2.3495716, 48.8598042 2.3498100, 48.8598817 2.3498211, 48.8592624 2.3495841, 48.8592324 2.3496685, 48.8591750 2.3498375, 48.8591459 2.3499381, 48.8591582 2.3498992, 48.8587506 2.3498885, 48.8585618 2.3501138, 48.8584400 2.3500508, 48.8582309 2.3499153, 48.8586577 2.3512239, 48.8585324 2.3516236, 48.8584636 2.3518059, 48.8589383 2.3514814, 48.8594394 2.3491586, 48.8815660 2.3478333, 48.8196478 2.3446330, 48.8206209 2.3503189, 48.8565984 2.4372528, 48.8708285 2.3567888, 48.8701655 2.3796486, 48.8436699 2.3724975, 48.8761646 2.3446559, 48.8461007 2.3752397, 48.8467252 2.3767361, 48.8301909 2.3563247, 48.8394868 2.3971498, 48.8365549 2.3948731, 48.8373822 2.3914239, 48.8377537 2.3919934, 48.8393056 2.3967931, 48.8393248 2.3967327, 48.8393449 2.3966796, 48.8394296 2.3967095, 48.8394300 2.3967676, 48.8394300 2.3968352, 48.8397868 2.3974178, 48.8760697 2.3717288, 48.8762025 2.3710966, 48.8668246 2.3443795, 48.8666808 2.3456284, 48.8666058 2.3460447, 48.8665292 2.3464186, 48.8665024 2.3465774, 48.8667552 2.3451020, 48.8804479 2.3766239, 48.8295801 2.3570095, 48.8667159 2.3453933, 48.8274980 2.3718441, 48.8564317 2.3347979, 48.8720337 2.3408590, 48.8160406 2.3835571, 48.8737471 2.3451402, 48.8731623 2.3449978, 48.8719437 2.3446492, 48.8739748 2.3451867, 48.8735309 2.3450913, 48.8460079 2.4246510, 48.8555154 2.3007432, 48.8705878 2.3425842, 48.8483378 2.3594757, 48.8310133 2.3479849, 48.8359481 2.3498941, 48.8362085 2.3507215, 48.8336968 2.3465746, 48.8337957 2.3464960, 48.8348194 2.3458781, 48.8248876 2.3256746, 48.8264147 2.3262238, 48.8687270 2.3475909, 48.8610529 2.3020976, 48.8605209 2.3023944, 48.8613553 2.3023359, 48.8902655 2.3544161, 48.8902734 2.3546516, 48.8907840 2.3529231, 48.8714000 2.4083505, 48.8713019 2.4091675, 48.8570120 2.3850989, 48.8666603 2.4028543, 48.8360131 2.3100586, 48.8369650 2.3090961, 48.8375624 2.3080571, 48.8385808 2.3067130, 48.8395895 2.3092578, 48.8714897 2.3427273, 48.8279631 2.3510342, 48.8276841 2.3501384, 48.8277176 2.3503583, 48.8237415 2.3254034, 48.8234639 2.3253578, 48.8239399 2.3255661, 48.8914921 2.3613348, 48.8679628 2.4027679, 48.8677994 2.4032649, 48.8911449 2.3614088, 48.8250855 2.3258682, 48.8911611 2.3865761, 48.8233730 2.3268718, 48.8304476 2.3543290, 48.8304902 2.3544604, 48.8303310 2.3543233, 48.8304313 2.3542566, 48.8301931 2.3538796, 48.8740637 2.3160837, 48.8742737 2.3172451, 48.8742260 2.3159522, 48.8552215 2.3598904, 48.8551659 2.3601680, 48.8551235 2.3603692, 48.8551245 2.3604541, 48.8550776 2.3606106, 48.8196794 2.3595779, 48.8205058 2.3593321, 48.8208830 2.3590614, 48.8268975 2.3251827, 48.8258340 2.3245387, 48.8274224 2.3261640, 48.8274789 2.3263189, 48.8592190 2.3947920, 48.8597166 2.3945353, 48.8545231 2.3626948, 48.8544579 2.3624454, 48.8543661 2.3625621, 48.8538565 2.3611419, 48.8539037 2.3621825, 48.8624888 2.3394585, 48.8618771 2.3408195, 48.8295109 2.3563809, 48.8651631 2.3471088, 48.8679384 2.3435621, 48.8680096 2.3435345, 48.8642261 2.3500027, 48.8641600 2.3508375, 48.8639977 2.3501757, 48.8641399 2.3507425, 48.8651441 2.3467946, 48.8676664 2.3437165, 48.8679005 2.3435952, 48.8582848 2.3558481, 48.8595125 2.3524319, 48.8630993 2.3180109, 48.8917040 2.3496280, 48.8735748 2.3177002, 48.8678347 2.3438681, 48.8493157 2.3784984, 48.8701190 2.3851060, 48.8348722 2.4086899, 48.8358883 2.4089442, 48.8360619 2.4087881, 48.8425612 2.3139626, 48.8475557 2.4085227, 48.8329552 2.3629170, 48.8310119 2.3691821, 48.8305746 2.3590826, 48.8312746 2.3688607, 48.8316872 2.3724426, 48.8297680 2.3590749, 48.8300773 2.3581857, 48.8301184 2.3578787, 48.8310054 2.3586192, 48.8313599 2.3721870, 48.8314915 2.3586482, 48.8319196 2.3599107, 48.8321411 2.3674744, 48.8327423 2.3625997, 48.8331514 2.3635943, 48.8335438 2.3646054, 48.8295989 2.3477981, 48.8557761 2.3581437, 48.8630965 2.3391181, 48.8632467 2.3379664, 48.8636448 2.3397088, 48.8631247 2.3342740, 48.8643981 2.3303564, 48.8456633 2.4345253, 48.8216786 2.4131430, 48.8214371 2.4135331, 48.8285566 2.4030554, 48.8205703 2.4147500, 48.8208817 2.4147098, 48.8214129 2.4136675, 48.8231376 2.4114859, 48.8254899 2.4074193, 48.8259819 2.4065518, 48.8263554 2.4059990, 48.8320206 2.3980120, 48.8358990 2.3466845, 48.8733986 2.3215098, 48.8901851 2.3629536, 48.8888376 2.3731738, 48.8546823 2.3502166, 48.8740226 2.3337460, 48.8802997 2.3577529, 48.8804486 2.3543495, 48.8804310 2.3540947, 48.8803768 2.3546246, 48.8801870 2.3552631, 48.8801873 2.3552421, 48.8619404 2.3145726, 48.8796452 2.3570797, 48.8797199 2.3571545, 48.8804330 2.3540743, 48.8334394 2.3321755, 48.8544848 2.3300596, 48.8484830 2.3465489, 48.8516378 2.3234420, 48.8280833 2.3518785, 48.8415102 2.4131166, 48.8416826 2.4130896, 48.8463295 2.4202963, 48.8482348 2.4207871, 48.8693569 2.4230831, 48.8344693 2.4044067, 48.8348210 2.4050151, 48.8322154 2.3982746, 48.8329088 2.4001708, 48.8345869 2.4046238, 48.8319771 2.3979134, 48.8335336 2.4018517, 48.8343346 2.4041298, 48.8489944 2.3476761, 48.8903302 2.3647026, 48.8509791 2.3426696, 48.8759062 2.3683702, 48.8336080 2.3554429, 48.8558979 2.3067417, 48.8566648 2.3063442, 48.8569595 2.3061913, 48.8498557 2.3451858, 48.8631173 2.3365427, 48.8675021 2.3098437, 48.8339315 2.3535154, 48.8344090 2.3538607, 48.8343358 2.3532328, 48.8334871 2.3538301, 48.8342764 2.3539253, 48.8343901 2.3531943, 48.8337767 2.3536196, 48.8329666 2.3548590, 48.8323454 2.3551969, 48.8745891 2.3627432, 48.8754929 2.3615609, 48.8728158 2.3579631, 48.8590580 2.3986870, 48.8598370 2.3974270, 48.8604580 2.3996200, 48.8605160 2.3981120, 48.8620610 2.3984020, 48.8623120 2.3981950, 48.8483435 2.4337996, 48.8973908 2.3817659, 48.8538689 2.3274803, 48.8669154 2.3360156, 48.8843844 2.3286648, 48.8968374 2.3787112, 48.8971449 2.3819951, 48.8410900 2.3740378, 48.8706152 2.3532598, 48.8281734 2.3581151, 48.8281213 2.3581379, 48.8282088 2.3580869, 48.8298944 2.3567517, 48.8279789 2.3582481, 48.8284861 2.3582883, 48.8514668 2.3336573, 48.8876260 2.3607080, 48.8874370 2.3698420, 48.8728468 2.4296322, 48.8762168 2.4256559, 48.8306371 2.3542033, 48.8301553 2.3526298, 48.8299498 2.3520500, 48.8304537 2.3536286, 48.8304963 2.3537726, 48.8301901 2.3527078, 48.8306699 2.3543176, 48.8488823 2.3702261, 48.8951201 2.3923772, 48.8676645 2.3368980, 48.8678227 2.3369768, 48.8248631 2.3286651, 48.8691288 2.3921028, 48.8250223 2.3283919, 48.8760081 2.3682405, 48.8735347 2.3647853, 48.8678050 2.3496900, 48.8468258 2.4090233, 48.8364949 2.3523935, 48.8761265 2.4133759, 48.8588192 2.3623802, 48.8701642 2.3537129, 48.8590400 2.3622970, 48.8588424 2.3620611, 48.8586471 2.3628035, 48.8594872 2.3600407, 48.8681841 2.3484645, 48.8682787 2.3487909, 48.8685115 2.3495915, 48.8690548 2.3514051, 48.8406868 2.3703229, 48.8292095 2.3653864, 48.8293654 2.3598900, 48.8294195 2.3608937, 48.8301355 2.3619849, 48.8301467 2.3580834, 48.8301714 2.3582842, 48.8897483 2.3636170, 48.8907611 2.3619378, 48.8458824 2.3754339, 48.8283995 2.3582668, 48.8289870 2.3575962, 48.8298938 2.3573281, 48.8524475 2.3894597, 48.8527486 2.3889981, 48.8526497 2.3891013, 48.8525392 2.3892934, 48.8529257 2.3887696, 48.8526917 2.3890319, 48.8526385 2.3889177, 48.8528806 2.3888431, 48.8890079 2.3632043, 48.8893152 2.3632428, 48.8440184 2.3516159, 48.8703084 2.3528255, 48.8698720 2.3253770, 48.8471209 2.3451247, 48.8538600 2.3320680, 48.8850869 2.3651538, 48.8895729 2.3670765, 48.8541107 2.3568241, 48.8962126 2.3808930, 48.8965172 2.3798898, 48.8749003 2.3428357, 48.8840985 2.3910764, 48.8849161 2.3956341, 48.8969772 2.3790309, 48.8971217 2.3818511, 48.8423637 2.3259492, 48.8369247 2.3655074, 48.8370392 2.3656876, 48.8366117 2.3660108, 48.8526993 2.3846497, 48.8424383 2.3176561, 48.8504757 2.3251066, 48.8524079 2.3158258, 48.8535864 2.3249939, 48.8536256 2.3247887, 48.8503322 2.3249809, 48.8508952 2.3189047, 48.8526041 2.3304466, 48.8518778 2.3321617, 48.8497717 2.3196836, 48.8519794 2.3321639, 48.8466762 2.3247816, 48.8456465 2.3213787, 48.8455993 2.3212150, 48.8455338 2.3209426, 48.8436803 2.3160913, 48.8457384 2.3235400, 48.8522398 2.3252710, 48.8406073 2.3127443, 48.8457996 2.3234822, 48.8557805 2.3084038, 48.8604452 2.3020032, 48.8594707 2.3055947, 48.8507372 2.3284837, 48.8604641 2.3021394, 48.8596489 2.3055053, 48.8498294 2.3196734, 48.8579529 2.3083225, 48.8560914 2.3029731, 48.8492010 2.3314973, 48.8474620 2.3419998, 48.8489509 2.3315523, 48.8604830 2.3022520, 48.8585004 2.3057333, 48.8585754 2.3113202, 48.8396674 2.3497245, 48.8396212 2.3497285, 48.8401276 2.3498418, 48.8403006 2.3496960, 48.8402622 2.3497016, 48.8405554 2.3497762, 48.8410617 2.3495530, 48.8409500 2.3497288, 48.8416725 2.3497548, 48.8417916 2.3497766, 48.8417688 2.3496085, 48.8418859 2.3497875, 48.8419165 2.3497914, 48.8418378 2.3496214, 48.8420720 2.3498351, 48.8421234 2.3498351, 48.8421722 2.3498440, 48.8422841 2.3498549, 48.8424383 2.3496720, 48.8424242 2.3498245, 48.8424716 2.3498216, 48.8425009 2.3496614, 48.8426011 2.3496377, 48.8426473 2.3496219, 48.8427514 2.3496041, 48.8427970 2.3495932, 48.8428392 2.3495813, 48.8428906 2.3495715, 48.8429466 2.3495606, 48.8440708 2.3494232, 48.8441339 2.3494004, 48.8441847 2.3493876, 48.8445679 2.3496772, 48.8445191 2.3496762, 48.8444631 2.3496901, 48.8442543 2.3498651, 48.8237872 2.3194324, 48.8267542 2.3240551, 48.8251055 2.3204216, 48.8266797 2.3240397, 48.8274252 2.3570590, 48.8285987 2.3566668, 48.8286371 2.3566600, 48.8286832 2.3563470, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8466576 2.3407228, 48.8466860 2.3406517, 48.8470498 2.3271559, 48.8475999 2.3286529, 48.8479507 2.3346295, 48.8482683 2.3316141, 48.8212980 2.3643164, 48.8383528 2.3897390, 48.8468650 2.4280959, 48.8507437 2.3370595, 48.8604075 2.3556155, 48.8602435 2.3561333, 48.8603464 2.3558088, 48.8601740 2.3563013, 48.8571765 2.3589357, 48.8964485 2.3809715, 48.8964530 2.3810372, 48.8964631 2.3811828, 48.8964670 2.3812401, 48.8969949 2.3825220, 48.8970885 2.3824702, 48.8751345 2.3951275, 48.8364059 2.4010293, 48.8207702 2.3440653, 48.8767675 2.3414635, 48.8748701 2.3410125, 48.8747214 2.3415841, 48.8766739 2.3412606, 48.8705943 2.3429365, 48.8193733 2.3456600, 48.8194303 2.3460957, 48.8194368 2.3458501, 48.8194507 2.3458999, 48.8194644 2.3459091, 48.8194678 2.3459953, 48.8710996 2.3430459, 48.8727441 2.3433035, 48.8739857 2.3425755, 48.8746840 2.3416410, 48.8749520 2.3408054, 48.8749528 2.3407670, 48.8752190 2.3410094, 48.8763917 2.3411816, 48.8765388 2.3405739, 48.8101445 2.3854008, 48.8699102 2.3115070, 48.8683555 2.3254379, 48.8686773 2.3255335, 48.8684709 2.3254367, 48.8690272 2.3251599, 48.8700437 2.3257977, 48.8702250 2.3258823, 48.8205142 2.3592990, 48.8312517 2.3580440, 48.8506640 2.3288086, 48.8517041 2.3505648, 48.8408366 2.3037928, 48.8409327 2.3040247, 48.8647800 2.4056236, 48.8113502 2.3833591, 48.8107508 2.3843038, 48.8160826 2.3772932, 48.8531320 2.3882360, 48.8215304 2.3647909, 48.8216643 2.3646597, 48.8111988 2.3844055, 48.8106307 2.3844452, 48.8110524 2.3845517, 48.8105637 2.3850918, 48.8106069 2.3844808, 48.8108922 2.3836919, 48.8110354 2.3837224, 48.8110917 2.3839068, 48.8112555 2.3845378, 48.8105913 2.3846446, 48.8114348 2.3872609, 48.8106001 2.3850502, 48.8112811 2.3842031, 48.8618356 2.3526300, 48.8323064 2.3247729, 48.8508926 2.3468988, 48.8496394 2.3490781, 48.8548595 2.4101096, 48.8574751 2.3504537, 48.8574049 2.3502723, 48.8574529 2.3505657, 48.8735950 2.3331480, 48.8738880 2.3330270, 48.8265827 2.3745998, 48.8270960 2.3756517, 48.8229081 2.3565023, 48.8225167 2.3571540, 48.8960916 2.3807621, 48.8769049 2.3270113, 48.8757336 2.3266104, 48.8454864 2.3196693, 48.8764040 2.3270060, 48.8768180 2.3270140, 48.8770340 2.3271360, 48.8767510 2.3273100, 48.8766230 2.3273770, 48.8518237 2.3263371, 48.8518277 2.3264706, 48.8518410 2.3270180, 48.8520482 2.3269387, 48.8522732 2.3263458, 48.8520072 2.3255283, 48.8897765 2.3719886, 48.8667290 2.3403192, 48.8892768 2.3755008, 48.8898348 2.3752178, 48.8662363 2.3386378, 48.8251232 2.3579151, 48.8269879 2.3834766, 48.8562529 2.3674838, 48.8947397 2.3820270, 48.8950748 2.3539271, 48.8947706 2.3527604, 48.8951621 2.3527628, 48.8950270 2.3539258, 48.8695340 2.3049808, 48.8473882 2.3059953, 48.8338061 2.3177640, 48.8412345 2.3039106, 48.8723494 2.3607849, 48.8893068 2.3728983, 48.8896856 2.3725339, 48.8790855 2.3716088, 48.8933156 2.3933426, 48.8621462 2.3770723, 48.8618250 2.3774424, 48.8285077 2.3612348, 48.8158888 2.3726455, 48.8165177 2.3742219, 48.8169152 2.3717542, 48.8169624 2.3717153, 48.8177049 2.3712848, 48.8189427 2.3917129, 48.8198750 2.3912678, 48.8184578 2.3734558, 48.8164278 2.3757500, 48.8203920 2.3908064, 48.8161970 2.3756628, 48.8176069 2.3718190, 48.8087689 2.3775491, 48.8136467 2.3781446, 48.8101505 2.3768927, 48.8194373 2.4079977, 48.8095228 2.3859418, 48.8227792 2.3982348, 48.8152711 2.3985665, 48.8098398 2.3776725, 48.8095674 2.3771720, 48.8150663 2.3989774, 48.8117891 2.3824154, 48.8512111 2.3987159, 48.8512690 2.4044346, 48.8514506 2.4058799, 48.8514709 2.3995095, 48.8515803 2.4001141, 48.8543196 2.3962849, 48.8568402 2.4046511, 48.8580682 2.3877975, 48.8600706 2.3886064, 48.8604792 2.4008059, 48.8611195 2.3880530, 48.8631905 2.3883955, 48.8650677 2.3956244, 48.8651291 2.3943708, 48.8654133 2.3895489, 48.8660045 2.3873365, 48.8662887 2.3905433, 48.8682334 2.3864308, 48.8686568 2.3866090, 48.8690384 2.3861855, 48.8704416 2.3841005, 48.8704583 2.3841770, 48.8726164 2.3842276, 48.8734281 2.3825503, 48.8735409 2.3833038, 48.8612245 2.3480050, 48.8558516 2.3966177, 48.8559380 2.3965287, 48.8461374 2.3543608, 48.8459597 2.3544163, 48.8474070 2.3524580, 48.8458615 2.3544188, 48.8461968 2.3543595, 48.8475663 2.3529826, 48.8519343 2.3358691, 48.8521193 2.3364208, 48.8519784 2.3354942, 48.8520777 2.3364208, 48.8447679 2.3497792, 48.8681125 2.3487760, 48.8710949 2.4179817, 48.8678076 2.4259286, 48.8715766 2.4253599, 48.8547012 2.4264456, 48.8727664 2.4259058, 48.8745269 2.4247009, 48.8683783 2.4261566, 48.8713416 2.4246815, 48.8710659 2.4245418, 48.8684382 2.4254082, 48.8674203 2.4173859, 48.8550250 2.3290640, 48.8546210 2.3304540, 48.8283114 2.3769459, 48.8284449 2.3773286, 48.8280979 2.3774687, 48.8519979 2.3358911, 48.8311018 2.3750269, 48.8288363 2.3789616, 48.8290227 2.3793812, 48.8485543 2.4344492, 48.8485865 2.4337899, 48.8486571 2.4328554, 48.8485781 2.4339011, 48.8491100 2.4362178, 48.8491307 2.4361939, 48.8303119 2.3757398, 48.8307377 2.3751655, 48.8304165 2.3754516, 48.8305383 2.3753467, 48.8306923 2.3753998, 48.8309389 2.3749423, 48.8310217 2.3759342, 48.8287672 2.3790174, 48.8290058 2.3792428, 48.8290267 2.3790323, 48.8471340 2.3864431, 48.8467506 2.3832061, 48.8909348 2.3617899, 48.8815103 2.3372869, 48.8329435 2.4149758, 48.8323315 2.4178175, 48.8323359 2.4200595, 48.8322107 2.4176394, 48.8330064 2.4147766, 48.8626307 2.3439700, 48.8627212 2.3435074, 48.8629562 2.3448387, 48.8625110 2.3444549, 48.8630210 2.3437930, 48.8624489 2.3440076, 48.8695246 2.3611967, 48.8315841 2.4199815, 48.8325584 2.4173403, 48.8324901 2.4167426, 48.8325371 2.4171377, 48.8328810 2.4170763, 48.8342079 2.4196014, 48.8337431 2.4190611, 48.8931121 2.3632801, 48.8931926 2.3637398, 48.8767476 2.3606011, 48.8767563 2.3605685, 48.8767664 2.3605325, 48.8767737 2.3605042, 48.8768169 2.3603356, 48.8768247 2.3603017, 48.8768458 2.3607271, 48.8769066 2.3606489, 48.8769352 2.3605683, 48.8769653 2.3606480, 48.8769709 2.3606236, 48.8769998 2.3603143, 48.8770077 2.3606684, 48.8770137 2.3606456, 48.8770220 2.3606654, 48.8770343 2.3606738, 48.8770373 2.3607050, 48.8770408 2.3601452, 48.8770432 2.3607309, 48.8771166 2.3603817, 48.8772181 2.3594482, 48.8772350 2.3608623, 48.8767974 2.3607201, 48.8148909 2.3638254, 48.8248862 2.3754798, 48.8251423 2.3760799, 48.8274961 2.3770388, 48.8308911 2.3747716, 48.8312932 2.3735896, 48.8311417 2.3739163, 48.8519590 2.3400717, 48.8523174 2.3400938, 48.8625107 2.3109476, 48.8913564 2.3630079, 48.8906813 2.3639575, 48.8912994 2.3631087, 48.8913356 2.3626442, 48.8549171 2.3551866, 48.8383546 2.3930656, 48.8394477 2.3924756, 48.8394636 2.3926446, 48.8394195 2.3921135, 48.8531969 2.3783676, 48.8498591 2.3399092, 48.8501139 2.3385275, 48.8497474 2.3380298, 48.8335611 2.3308711, 48.8403604 2.3787511, 48.8713994 2.3446987, 48.8749826 2.3285546, 48.8928183 2.3927190, 48.8757341 2.3271813, 48.8886086 2.3780545, 48.8883372 2.3743635, 48.8752966 2.3283748, 48.8488007 2.3403871, 48.8112886 2.3853321, 48.8371681 2.3519450, 48.8370786 2.3520317, 48.8485556 2.3413174, 48.8480411 2.3409988, 48.8484401 2.3413672, 48.8478589 2.3407967, 48.8336159 2.3303783, 48.8883876 2.3902362, 48.8891585 2.3938039, 48.8862020 2.3612523, 48.8421984 2.3516249, 48.8336470 2.3315763, 48.8335273 2.3314999, 48.8474158 2.4276466, 48.8450740 2.4234208, 48.8458430 2.4237622, 48.8458464 2.4237715, 48.8460330 2.4236164, 48.8362062 2.3237133, 48.8892282 2.3628734, 48.8347564 2.3296964, 48.8349296 2.3296602, 48.8532503 2.3737978, 48.8670687 2.3793313, 48.8667388 2.3796639, 48.8672848 2.3853206, 48.8671313 2.3852348, 48.8664979 2.3850779, 48.8553007 2.3755708, 48.8357249 2.3282524, 48.8948851 2.3827807, 48.8949003 2.3826544, 48.8949465 2.3824056, 48.8966561 2.3798725, 48.8884687 2.3780615, 48.8902123 2.3593561, 48.8899019 2.3601226, 48.8899236 2.3601457, 48.8901122 2.3603976, 48.8911594 2.3596819, 48.8912365 2.3600425, 48.8487519 2.3414295, 48.8485322 2.3419738, 48.8484295 2.3424166, 48.8393457 2.3371003, 48.8888328 2.3605282, 48.8889428 2.3605049, 48.8889995 2.3625923, 48.8893812 2.3628340, 48.8528020 2.4110674, 48.8765293 2.3766762, 48.8765787 2.3774487, 48.8765381 2.3785538, 48.8760857 2.3803012, 48.8760618 2.3804326, 48.8759710 2.3808578, 48.8831467 2.3852056, 48.8526874 2.3539909, 48.8446809 2.3466783, 48.8775011 2.3813787, 48.8767337 2.3866037, 48.8765415 2.3864454, 48.8782248 2.3818123, 48.8784224 2.3821811, 48.8793441 2.3856452, 48.8792550 2.3846850, 48.8794349 2.3875791, 48.8894902 2.3806301, 48.8899352 2.3788791, 48.8798221 2.3894418, 48.8912644 2.3784340, 48.8910965 2.3782517, 48.8516574 2.3385425, 48.8301525 2.3594415, 48.8302709 2.3590981, 48.8485948 2.4261423, 48.8482999 2.4248745, 48.8336698 2.3296041, 48.8337502 2.3300015, 48.8642559 2.3362323, 48.8743681 2.3769994, 48.8749997 2.3784035, 48.8465069 2.4099879, 48.8099646 2.3877087, 48.8486443 2.3753679, 48.8481127 2.3756890, 48.8492365 2.3739525, 48.8478160 2.3772935, 48.8495930 2.3774565, 48.8495553 2.3786800, 48.8500160 2.3788251, 48.8496527 2.3779307, 48.8500419 2.3782003, 48.8465400 2.3811858, 48.8467962 2.3835368, 48.8501437 2.3788464, 48.8504944 2.3783154, 48.8503285 2.3781973, 48.8501185 2.3780311, 48.8481611 2.3766463, 48.8460012 2.3764202, 48.8467980 2.3783355, 48.8553144 2.3878881, 48.8434604 2.4022375, 48.8430061 2.3486842, 48.8497173 2.3704111, 48.8512299 2.3698210, 48.8496167 2.3700570, 48.8534945 2.3706179, 48.8535356 2.3706586, 48.8486058 2.3978799, 48.8481689 2.3925595, 48.8469569 2.3847760, 48.8469044 2.3843200, 48.8468648 2.3840074, 48.8466247 2.3789460, 48.8464179 2.3800872, 48.8467149 2.3826525, 48.8854184 2.3809339, 48.8122223 2.3712034, 48.8133489 2.3703196, 48.8673896 2.3544810, 48.8602996 2.3436624, 48.8603776 2.3434701, 48.8598410 2.3424752, 48.8958679 2.3839964, 48.8958529 2.3839302, 48.8958300 2.3838707, 48.8961624 2.3861000, 48.8961819 2.3857796, 48.8683404 2.3702309, 48.8762491 2.3755713, 48.8765120 2.3753701, 48.8780220 2.3743079, 48.8752119 2.3738600, 48.8753759 2.3739351, 48.8753782 2.3736728, 48.8751695 2.3739029, 48.8603718 2.3521816, 48.8754994 2.3737769, 48.8741587 2.3777760, 48.8742151 2.3784198, 48.8746967 2.3796965, 48.8747991 2.3806675, 48.8746244 2.3809330, 48.8765910 2.3232000, 48.8747470 2.3159270, 48.8828751 2.3764954, 48.8761320 2.3341390, 48.8764230 2.3335430, 48.8763180 2.3309180, 48.8720638 2.3998952, 48.8757435 2.3262717, 48.8785795 2.3840106, 48.8847022 2.3794239, 48.8781141 2.3843466, 48.8779190 2.3852619, 48.8778925 2.3854242, 48.8770266 2.3854523, 48.8784073 2.3854415, 48.8777463 2.3853987, 48.8782848 2.3854140, 48.8785273 2.3854630, 48.8789083 2.3856186, 48.8791522 2.3858224, 48.8792668 2.3856534, 48.8789361 2.3851519, 48.8781070 2.3860947, 48.8782913 2.3861269, 48.8800423 2.3744552, 48.8801389 2.3744304, 48.8806716 2.3738195, 48.8859368 2.3931939, 48.8864735 2.3927102, 48.8746937 2.3271509, 48.8746971 2.3271657, 48.8746989 2.3271832, 48.8747046 2.3272041, 48.8747072 2.3272184, 48.8747107 2.3272555, 48.8747115 2.3271483, 48.8747115 2.3272666, 48.8747132 2.3271622, 48.8747132 2.3271788, 48.8747164 2.3272943, 48.8747176 2.3273097, 48.8747200 2.3273362, 48.8747204 2.3273245, 48.8747222 2.3272037, 48.8747226 2.3272205, 48.8747265 2.3272604, 48.8747277 2.3272685, 48.8747285 2.3273763, 48.8747326 2.3272919, 48.8747326 2.3273917, 48.8747330 2.3273067, 48.8747350 2.3271413, 48.8747350 2.3274145, 48.8747356 2.3271561, 48.8747358 2.3273178, 48.8747358 2.3273307, 48.8747367 2.3271701, 48.8747407 2.3271962, 48.8747407 2.3274404, 48.8747436 2.3272145, 48.8747443 2.3274681, 48.8747455 2.3273769, 48.8747460 2.3272518, 48.8747468 2.3273948, 48.8747468 2.3274835, 48.8747472 2.3275026, 48.8747488 2.3274182, 48.8747496 2.3272598, 48.8747500 2.3275193, 48.8747512 2.3274367, 48.8747545 2.3271370, 48.8747548 2.3275509, 48.8747557 2.3272832, 48.8747571 2.3275761, 48.8747573 2.3271492, 48.8747573 2.3271666, 48.8747577 2.3272974, 48.8747585 2.3271919, 48.8747589 2.3273221, 48.8747593 2.3273122, 48.8747599 2.3275979, 48.8747605 2.3274792, 48.8747609 2.3274632, 48.8747609 2.3274952, 48.8747618 2.3273652, 48.8747631 2.3272110, 48.8747638 2.3272469, 48.8747638 2.3272561, 48.8747658 2.3273806, 48.8747662 2.3275137, 48.8747670 2.3272795, 48.8747679 2.3276136, 48.8747695 2.3272968, 48.8747697 2.3275509, 48.8747699 2.3273116, 48.8747708 2.3276860, 48.8747711 2.3273258, 48.8747711 2.3274145, 48.8747714 2.3275753, 48.8747714 2.3276694, 48.8747743 2.3275971, 48.8747748 2.3277086, 48.8747751 2.3274342, 48.8747772 2.3273627, 48.8747776 2.3273818, 48.8747777 2.3277252, 48.8747784 2.3274607, 48.8747788 2.3274749, 48.8747812 2.3274909, 48.8747828 2.3274170, 48.8747834 2.3276093, 48.8747836 2.3275088, 48.8747857 2.3274287, 48.8747880 2.3276650, 48.8747880 2.3276842, 48.8747880 2.3277940, 48.8747903 2.3275421, 48.8747913 2.3274743, 48.8747920 2.3277060, 48.8747920 2.3277243, 48.8747922 2.3274589, 48.8747930 2.3274909, 48.8747942 2.3275076, 48.8747943 2.3275674, 48.8747966 2.3275962, 48.8747978 2.3278672, 48.8748023 2.3275413, 48.8748023 2.3276075, 48.8748041 2.3278411, 48.8748058 2.3277879, 48.8748058 2.3278638, 48.8748069 2.3275831, 48.8748081 2.3275657, 48.8748081 2.3276624, 48.8748092 2.3276860, 48.8748109 2.3279509, 48.8748121 2.3278611, 48.8748127 2.3276023, 48.8748132 2.3277043, 48.8748144 2.3277226, 48.8748161 2.3279866, 48.8748230 2.3276825, 48.8748241 2.3277077, 48.8748241 2.3277836, 48.8748247 2.3276598, 48.8748270 2.3279387, 48.8748276 2.3277234, 48.8748310 2.3279797, 48.8748356 2.3277810, 48.8748356 2.3278489, 48.8748362 2.3278298, 48.8748407 2.3278472, 48.8748476 2.3279352, 48.8748482 2.3278454, 48.8748551 2.3279771, 48.8748625 2.3279309, 48.8748694 2.3279710, 48.8413123 2.4117612, 48.8746841 2.3270910, 48.8746927 2.3271219, 48.8747001 2.3270093, 48.8747109 2.3270107, 48.8747140 2.3270778, 48.8747261 2.3270067, 48.8747269 2.3270475, 48.8747421 2.3270732, 48.8747552 2.3276805, 48.8300301 2.3296176, 48.8817180 2.3718295, 48.8337668 2.3278330, 48.8820002 2.3711763, 48.8354148 2.3235123, 48.8328155 2.3261603, 48.8825006 2.3706159, 48.8296835 2.3597033, 48.8297392 2.3595465, 48.8298567 2.3572407, 48.8490915 2.3487987, 48.8503538 2.3905532, 48.8587751 2.4075335, 48.8586001 2.4078519, 48.8587238 2.4076570, 48.8567853 2.4014546, 48.8135907 2.3828193, 48.8529290 2.3314950, 48.8530850 2.3312320, 48.8676326 2.3499450, 48.8593290 2.3226650, 48.8498887 2.3433647, 48.8502174 2.3432764, 48.8260443 2.3266660, 48.8255907 2.3265438, 48.8921038 2.3612542, 48.8742978 2.3267750, 48.8764651 2.3325771, 48.8782984 2.3583405, 48.8666813 2.3854927, 48.8816483 2.3644514, 48.8267959 2.3271211, 48.8261320 2.3286171, 48.8260648 2.3281689, 48.8899434 2.3710251, 48.8902450 2.3708454, 48.8803750 2.3978486, 48.8528204 2.3535885, 48.8752933 2.3228773, 48.8812111 2.3720335, 48.8811706 2.3719906, 48.8763043 2.3845917, 48.8762214 2.3834089, 48.8746866 2.3850531, 48.8745931 2.3852059, 48.8589381 2.3504712, 48.8570274 2.3983184, 48.8573676 2.3933983, 48.8641699 2.4083715, 48.8567608 2.3945887, 48.8571019 2.3984066, 48.8603983 2.4043015, 48.8646358 2.4081310, 48.8757475 2.3857007, 48.8753418 2.3815392, 48.8747667 2.3810283, 48.8747347 2.3813029, 48.8752868 2.3817360, 48.8836814 2.3499178, 48.8756291 2.3889686, 48.8752198 2.3890142, 48.8757614 2.3884818, 48.8754458 2.3822605, 48.8755279 2.3821599, 48.8749554 2.3828694, 48.8613787 2.3779035, 48.8372979 2.3511170, 48.8516564 2.3473784, 48.8851905 2.3788177, 48.8525504 2.3377722, 48.8590719 2.3810909, 48.8593084 2.3826283, 48.8604285 2.3815784, 48.8335564 2.3869198, 48.8334907 2.3868335, 48.8337569 2.3871813, 48.8329726 2.3861326, 48.8338510 2.3872594, 48.8740925 2.3837424, 48.8740264 2.3839194, 48.8741834 2.3841850, 48.8851105 2.3800766, 48.8858942 2.3827093, 48.8206809 2.3635646, 48.8207494 2.3637471, 48.8203146 2.3640270, 48.8201394 2.3641828, 48.8202229 2.3641774, 48.8785529 2.3744580, 48.8784427 2.3763167, 48.8784647 2.3757776, 48.8694492 2.3546663, 48.8552012 2.3739399, 48.8550829 2.3733686, 48.8546611 2.3726793, 48.8543470 2.3717003, 48.8746078 2.3810324, 48.8739520 2.3822179, 48.8735701 2.3830856, 48.8736839 2.3828415, 48.8735251 2.3828952, 48.8201088 2.3481923, 48.8201319 2.3478823, 48.8202012 2.3481361, 48.8205445 2.3494030, 48.8233285 2.3741842, 48.8777223 2.3322319, 48.8642117 2.3138141, 48.8743835 2.3178889, 48.8723341 2.3116489, 48.8491175 2.3039021, 48.8709008 2.3059242, 48.8747420 2.3873713, 48.8783980 2.3708887, 48.8786489 2.3710845, 48.8787477 2.3711783, 48.8792734 2.3714251, 48.8793968 2.3715404, 48.8794339 2.3715793, 48.8797029 2.3718315, 48.8794939 2.3720809, 48.8796658 2.3717979, 48.8804146 2.3725087, 48.8407193 2.3049672, 48.8418070 2.3034131, 48.8404786 2.3040335, 48.8405254 2.3043125, 48.8406121 2.3051658, 48.8406718 2.3048275, 48.8409660 2.3058020, 48.8445280 2.3226454, 48.8445064 2.3227126, 48.8444718 2.3228200, 48.8442836 2.3233862, 48.8445876 2.3224605, 48.8443285 2.3232584, 48.8445575 2.3225539, 48.8446976 2.3221192, 48.8447265 2.3220295, 48.8446671 2.3222139, 48.8442621 2.3229926, 48.8443405 2.3231060, 48.8445443 2.3220878, 48.8860404 2.3819393, 48.8818625 2.3741104, 48.8819062 2.3741667, 48.8819750 2.3739816, 48.8824966 2.3748996, 48.8831168 2.3764104, 48.8833797 2.3765177, 48.8835128 2.3767725, 48.8832729 2.3770581, 48.8841883 2.3779754, 48.8844335 2.3784113, 48.8843991 2.3787117, 48.8845623 2.3786634, 48.8401634 2.3044521, 48.8412701 2.3081103, 48.8533800 2.3665590, 48.8217463 2.3258742, 48.8219887 2.3306289, 48.8843953 2.3789809, 48.8827047 2.3800827, 48.8827047 2.3803448, 48.8845990 2.3787529, 48.8846696 2.3789004, 48.8849214 2.3800182, 48.8852366 2.3804179, 48.8851670 2.3806432, 48.8852067 2.3807525, 48.8678836 2.3493991, 48.8589178 2.3234187, 48.8589724 2.3234632, 48.8597592 2.3242049, 48.8593703 2.3238812, 48.8588292 2.3233490, 48.8853902 2.3812643, 48.8855353 2.3816653, 48.8855150 2.3816003, 48.8855935 2.3818316, 48.8792836 2.3779317, 48.8794291 2.3770037, 48.8802732 2.3751167, 48.8577770 2.3473733, 48.8634279 2.3351782, 48.8680916 2.3299623, 48.8805386 2.3751052, 48.8803860 2.3748678, 48.8804046 2.3748289, 48.8806436 2.3748947, 48.8806753 2.3748196, 48.8807035 2.3747471, 48.8808173 2.3744896, 48.8808967 2.3743140, 48.8832179 2.3866173, 48.8829957 2.3867138, 48.8830274 2.3870424, 48.8830777 2.3876231, 48.8835398 2.3889119, 48.8832858 2.3874568, 48.8141741 2.3911870, 48.8167779 2.3859022, 48.8177310 2.3846916, 48.8349501 2.4072247, 48.8351659 2.4069054, 48.8708394 2.3465254, 48.8833220 2.3877237, 48.8833431 2.3880013, 48.8832752 2.3888891, 48.8832338 2.3887228, 48.8841585 2.3912481, 48.8723326 2.3483178, 48.8549966 2.4012505, 48.8550533 2.3731077, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8431753 2.3523678, 48.8434679 2.3524207, 48.8437934 2.3525958, 48.8525395 2.3353602, 48.8304113 2.3357952, 48.8307183 2.3365731, 48.8644920 2.3749450, 48.8856585 2.3878153, 48.8860701 2.3911943, 48.8870513 2.3871615, 48.8880598 2.3919611, 48.8333762 2.3513160, 48.8431753 2.3523678, 48.8434679 2.3524207, 48.8437934 2.3525958, 48.8525395 2.3353602, 48.8304113 2.3357952, 48.8307183 2.3365731, 48.8423823 2.3027121, 48.8466518 2.3051464, 48.8466756 2.3050730, 48.8471520 2.3050056, 48.8466342 2.3052128, 48.8337390 2.3618054, 48.8343386 2.3607778, 48.8346342 2.3606245, 48.8470236 2.3465004, 48.8550678 2.3246859, 48.8480510 2.3539690, 48.8481540 2.3541110, 48.8481870 2.3541570, 48.8485630 2.3547360, 48.8486230 2.3548460, 48.8486600 2.3548950, 48.8488030 2.3550960, 48.8691985 2.3546294, 48.8705443 2.3327006, 48.8659300 2.3408572, 48.8662586 2.3612125, 48.8553209 2.3603751, 48.8369707 2.3521360, 48.8500790 2.3487204, 48.8432193 2.3520318, 48.8498446 2.3551829, 48.8434713 2.3236014, 48.8530282 2.3354092, 48.8402189 2.3365313, 48.8505206 2.3272579, 48.8512092 2.3331634, 48.8235768 2.3528601, 48.8220409 2.3498282, 48.8220651 2.3497136, 48.8780330 2.3300310, 48.8790340 2.3294180, 48.8799610 2.3291770, 48.8843190 2.3697260, 48.8849215 2.3709154, 48.8868177 2.3744113, 48.8860743 2.3730081, 48.8849000 2.3707095, 48.8849505 2.3709850, 48.8864162 2.3737748, 48.8871420 2.3755550, 48.8883341 2.3761366, 48.8880413 2.3770390, 48.8886151 2.3731039, 48.8887722 2.3738487, 48.8848937 2.3405138, 48.8844100 2.3396601, 48.8843962 2.3388368, 48.8843181 2.3391723, 48.8842803 2.3395848, 48.8846433 2.3402443, 48.8850060 2.3404263, 48.8585600 2.3535180, 48.8359828 2.3592084, 48.8528644 2.3463229, 48.8548128 2.3502457, 48.8582564 2.3530692, 48.8579136 2.3528123, 48.8463199 2.3445065, 48.8546283 2.3500077, 48.8579605 2.3528852, 48.8584497 2.3533925, 48.8596786 2.3613843, 48.8664229 2.3524616, 48.8634663 2.3525372, 48.8675053 2.3352170, 48.8506291 2.3395396, 48.8718009 2.3486390, 48.8216608 2.4049374, 48.8647781 2.3736732, 48.8527039 2.3856412, 48.8527723 2.3849647, 48.8528254 2.3852671, 48.8528091 2.3861979, 48.8532519 2.3874218, 48.8439032 2.3546898, 48.8839109 2.3897638, 48.8838985 2.3895734, 48.8859211 2.3934465, 48.8847791 2.3925318, 48.8849193 2.3927370, 48.8848752 2.3926673, 48.8851636 2.3926190, 48.8853223 2.3928282, 48.8862192 2.3936382, 48.8861530 2.3940741, 48.8754744 2.3873297, 48.8754373 2.3874893, 48.8453436 2.4286606, 48.8537312 2.3325450, 48.8553259 2.3692636, 48.8477315 2.3020959, 48.8497962 2.3008922, 48.8470633 2.3037370, 48.8450557 2.3057641, 48.8473348 2.3028088, 48.8490335 2.3011623, 48.8651610 2.3726873, 48.8643341 2.3728778, 48.8529637 2.3629258, 48.8826325 2.3446975, 48.8488878 2.4063145, 48.8826421 2.3444926, 48.8630357 2.3730890, 48.8618141 2.3222918, 48.8649047 2.3105605, 48.8649598 2.3105563, 48.8707207 2.3458677, 48.8710108 2.3455226, 48.8748858 2.3191940, 48.8707294 2.3587247, 48.8556477 2.3481362, 48.8647970 2.3376815, 48.8495520 2.3551790, 48.8495960 2.3546780, 48.8492860 2.3544000, 48.8493260 2.3534620, 48.8493470 2.3529650, 48.8493090 2.3539520, 48.8470580 2.3520490, 48.8469280 2.3518880, 48.8468240 2.3516360, 48.8462460 2.3515930, 48.8457050 2.3517750, 48.8756732 2.3873298, 48.8765843 2.3876396, 48.8785498 2.3880714, 48.8209363 2.3710302, 48.8792457 2.3884047, 48.8793070 2.3884134, 48.8761197 2.3896217, 48.8762026 2.3896150, 48.8712417 2.3797804, 48.8708280 2.3787238, 48.8671652 2.3360497, 48.8672298 2.3360756, 48.8379924 2.3573249, 48.8347529 2.3577560, 48.8488854 2.3676323, 48.8506007 2.3684957, 48.8279269 2.3606649, 48.8281328 2.3608761, 48.8284210 2.3605021, 48.8290169 2.3599418, 48.8492131 2.4119154, 48.8254239 2.3694610, 48.8275704 2.3672600, 48.8313949 2.3614586, 48.8336951 2.3651195, 48.8338003 2.3625255, 48.8502691 2.3768309, 48.8514077 2.3619724, 48.8557425 2.3657180, 48.8557863 2.3654533, 48.8582183 2.3633569, 48.8824243 2.3722767, 48.8813148 2.3745552, 48.8810714 2.3750809, 48.8808394 2.3756442, 48.8806172 2.3761511, 48.8765708 2.3923094, 48.8791599 2.3910656, 48.8395113 2.4061466, 48.8405076 2.4080728, 48.8407300 2.4111999, 48.8409893 2.4021854, 48.8419636 2.4099074, 48.8420117 2.4099305, 48.8428499 2.3882529, 48.8435586 2.3837116, 48.8443380 2.3820200, 48.8463579 2.4045679, 48.8465345 2.4039066, 48.8467508 2.4047042, 48.8481084 2.4046457, 48.8519692 2.3809344, 48.8521453 2.3853886, 48.8358697 2.3734634, 48.8362808 2.3737861, 48.8363138 2.3737506, 48.8444058 2.3789793, 48.8402164 2.3217543, 48.8457339 2.3739189, 48.8633113 2.3469438, 48.8646137 2.3518676, 48.8676375 2.3535364, 48.8677030 2.3535925, 48.8786498 2.3705339, 48.8906019 2.3759113, 48.8688331 2.3251265, 48.8828257 2.3727684, 48.8827997 2.3733397, 48.8830186 2.3740035, 48.8826853 2.3804864, 48.8826632 2.3810175, 48.8834012 2.3711932, 48.8838102 2.3718772, 48.8869962 2.3785022, 48.8874247 2.3786846, 48.8875552 2.3794980, 48.8767105 2.3931022, 48.8769296 2.3805462, 48.8306620 2.3340064, 48.8308117 2.3334419, 48.8308495 2.3339432, 48.8623163 2.3093585, 48.8623851 2.3062652, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8840501 2.3678392, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8416423 2.4049657, 48.8461711 2.4107337, 48.8803051 2.3707908, 48.8818881 2.3705534, 48.8768371 2.3719871, 48.8769332 2.3718798, 48.8751251 2.3739572, 48.8490614 2.3923936, 48.8272319 2.3760444, 48.8217982 2.3682935, 48.8734806 2.3430215, 48.8728951 2.3773881, 48.8729547 2.3799476, 48.8747080 2.3869254, 48.8747781 2.3879795, 48.8748589 2.3884616, 48.8749063 2.3886098, 48.8755204 2.3905491, 48.8755208 2.3906946, 48.8755204 2.3907408, 48.8755958 2.3919063, 48.8135093 2.3872697, 48.8561953 2.3152892, 48.8570291 2.3152687, 48.8603670 2.4021230, 48.8619535 2.4014538, 48.8459525 2.3549704, 48.8708629 2.3427230, 48.8708013 2.3426831, 48.8707564 2.3426660, 48.8707938 2.3947912, 48.8514526 2.3266647, 48.8531899 2.3355676, 48.8836015 2.3202065, 48.8833935 2.3195861, 48.8847283 2.3200247, 48.8763972 2.3573847, 48.8764451 2.3569589, 48.8764541 2.3569048, 48.8830980 2.4163097, 48.8796992 2.4113946, 48.8826062 2.4128265, 48.8452318 2.4177396, 48.8349942 2.4068310, 48.8702947 2.3763586, 48.8731134 2.3817865, 48.8494503 2.3422354, 48.8600610 2.3493948, 48.8795130 2.3360991, 48.8828915 2.3811913, 48.8830697 2.3810418, 48.8837170 2.3804450, 48.8840675 2.3805918, 48.8753357 2.3819767, 48.8771545 2.4074241, 48.8755246 2.3943562, 48.8755669 2.3981395, 48.8755669 2.3980550, 48.8755731 2.3984479, 48.8759206 2.4001632, 48.8758598 2.4006983, 48.8770434 2.4049148, 48.8770937 2.4058924, 48.8650219 2.3030534, 48.8309342 2.3742973, 48.8308010 2.4194151, 48.8307541 2.4193421, 48.8731446 2.3278704, 48.8284996 2.3727561, 48.8531826 2.4225041, 48.8471786 2.4177925, 48.8576027 2.4341107, 48.8563982 2.4262880, 48.8537590 2.4240997, 48.8529604 2.4248400, 48.8462070 2.4159910, 48.8438984 2.4173675, 48.8461848 2.4163060, 48.8530540 2.4248279, 48.8544196 2.4196917, 48.8534291 2.4261530, 48.8583141 2.3549137, 48.8583876 2.3549851, 48.8606889 2.3547690, 48.8607641 2.3545314, 48.8607780 2.3544920, 48.8315966 2.3304662, 48.8329031 2.3315324, 48.8316986 2.3304675, 48.8330175 2.3316013, 48.8579708 2.3528081, 48.8874433 2.3939300, 48.8837350 2.3944175, 48.8663182 2.3718556, 48.8612688 2.3578488, 48.8542416 2.4171464, 48.8359778 2.3842126, 48.8336856 2.3889510, 48.8659762 2.3835715, 48.8149766 2.3600865, 48.8149201 2.3600274, 48.8146306 2.3598073, 48.8132689 2.3587579, 48.8125738 2.3582741, 48.8421213 2.3285111, 48.8416530 2.3269573, 48.8416037 2.3266135, 48.8378229 2.3513432, 48.8696780 2.3945412, 48.8708961 2.3969286, 48.8353583 2.4058762, 48.8875318 2.3413883, 48.8388851 2.3226121, 48.8278987 2.3720944, 48.8900474 2.3473370, 48.8844548 2.3219231, 48.8665219 2.3404139, 48.8535415 2.3396356, 48.8355980 2.3258432, 48.8821377 2.3372542, 48.8828185 2.3827206, 48.8837364 2.3368191, 48.8829792 2.3828781, 48.8838218 2.3835473, 48.8837306 2.3838350, 48.8840234 2.3842246, 48.8405548 2.4191248, 48.8483073 2.4179954, 48.8420173 2.4175176, 48.8424925 2.4178019, 48.8469224 2.4171317, 48.8474846 2.4178245, 48.8322089 2.3384309, 48.8507831 2.3944957, 48.8518835 2.3934531, 48.8520017 2.3935558, 48.8523499 2.3931181, 48.8617792 2.3745107, 48.8622369 2.3739210, 48.8623819 2.3639950, 48.8740920 2.3388296, 48.8754273 2.3247309, 48.8400642 2.4091298, 48.8410816 2.4113084, 48.8440626 2.4113218, 48.8409004 2.3218248, 48.8453700 2.3730774, 48.8460163 2.3825296, 48.8296846 2.3323901, 48.8574572 2.3810410, 48.8480906 2.3770269, 48.8556943 2.3595261, 48.8410203 2.3184680, 48.8927627 2.3791089, 48.8717681 2.3573818, 48.8567195 2.3532017, 48.8621989 2.3456002, 48.8315415 2.3198573, 48.8869464 2.3678509, 48.8639974 2.3617555, 48.8622381 2.3454960, 48.8754888 2.3889719, 48.8782924 2.3837340, 48.8716073 2.3573055, 48.8547169 2.3804970, 48.8712652 2.3978533, 48.8713525 2.3981536, 48.8433070 2.3693193, 48.8728138 2.3937426, 48.8730441 2.3935237, 48.8223085 2.3581722, 48.8847149 2.3814227, 48.8848613 2.3813261, 48.8781088 2.3929314, 48.8300151 2.3572215, 48.8303096 2.3567278, 48.8325523 2.3205074, 48.8589855 2.3540028, 48.8606485 2.3503847, 48.8732685 2.3890682, 48.8327672 2.3201392, 48.8868617 2.3693195, 48.8370016 2.4181712, 48.8698031 2.3099017, 48.8311012 2.3195882, 48.8746353 2.3733461, 48.8834996 2.3862037, 48.8745720 2.3872697, 48.8746103 2.3879631, 48.8536817 2.3714996, 48.8545486 2.3843630, 48.8753611 2.3908785, 48.8753638 2.3909416, 48.8752924 2.3915830, 48.8752209 2.3916903, 48.8752527 2.3915803, 48.8753735 2.3917908, 48.8753559 2.3919799, 48.8752112 2.3924936, 48.8752491 2.3932205, 48.8751698 2.3943041, 48.8752800 2.3929026, 48.8752306 2.3934592, 48.8752271 2.3936912, 48.8752218 2.3937958, 48.8751574 2.3942236, 48.8811450 2.3367110, 48.8818980 2.3374100, 48.8845920 2.3364580, 48.8815120 2.3375130, 48.8460779 2.4173230, 48.8328125 2.3452788, 48.8320470 2.3201850, 48.8450494 2.4177212, 48.8502351 2.3456241, 48.8497330 2.3457635, 48.8496872 2.3457994, 48.8458439 2.3017831, 48.8864590 2.3404788, 48.8491590 2.3498700, 48.8480400 2.3511660, 48.8485240 2.3499690, 48.8483460 2.3504620, 48.8485190 2.3493440, 48.8458790 2.3508800, 48.8693798 2.3066568, 48.8453348 2.3532344, 48.8454362 2.3531891, 48.8518374 2.3271357, 48.8515626 2.3275283, 48.8527313 2.3035652, 48.8524437 2.3031358, 48.8527246 2.3060632, 48.8840568 2.3401680, 48.8393985 2.4326981, 48.8394024 2.4327415, 48.8394037 2.4326487, 48.8394167 2.4327771, 48.8394180 2.4326091, 48.8394414 2.4325835, 48.8394688 2.4327403, 48.8394693 2.4325716, 48.8394905 2.4327027, 48.8394986 2.4325746, 48.8395122 2.4326697, 48.8395227 2.4325933, 48.8846800 2.3291860, 48.8822080 2.3199230, 48.8844290 2.3287650, 48.8846930 2.3299610, 48.8842160 2.3273070, 48.8822570 2.3201050, 48.8819840 2.3187180, 48.8819360 2.3185630, 48.8809770 2.3152110, 48.8816120 2.3160090, 48.8425038 2.4010062, 48.8694428 2.4054011, 48.8636468 2.3671522, 48.8622276 2.3455805, 48.8622539 2.3455343, 48.8425884 2.3361604, 48.8318948 2.3202576, 48.8822902 2.3395019, 48.8666273 2.3817444, 48.8487000 2.3486680, 48.8473110 2.3482170, 48.8461550 2.3472670, 48.8229490 2.4137641, 48.8231652 2.4161555, 48.8223815 2.4142476, 48.8691390 2.4092451, 48.8680339 2.4109234, 48.8744321 2.3247119, 48.8704232 2.3339330, 48.8426923 2.3634778, 48.8613499 2.3582846, 48.8169329 2.3955926, 48.8169329 2.3955926, 48.8310513 2.3195553, 48.8325941 2.3183175, 48.8383000 2.3470600, 48.8543921 2.3426853, 48.8178811 2.3973542, 48.8727403 2.3545304, 48.8178634 2.3980958, 48.8178175 2.3984901, 48.8174996 2.3988777, 48.8174493 2.3989273, 48.8173963 2.3989984, 48.8172859 2.3991271, 48.8599130 2.4042262, 48.8802753 2.3518849, 48.8500437 2.3954755, 48.8858115 2.3857107, 48.8830402 2.3758122, 48.8732079 2.3741442, 48.8735416 2.3735789, 48.8736276 2.3734622, 48.8738133 2.3731015, 48.8744920 2.3729505, 48.8740245 2.3723480, 48.8743038 2.3728073, 48.8741051 2.3720932, 48.8739847 2.3718055, 48.8738359 2.3717117, 48.8743904 2.3720383, 48.8735359 2.3710279, 48.8737082 2.3705081, 48.8741858 2.3715930, 48.8743556 2.3717325, 48.8745316 2.3721362, 48.8745664 2.3724688, 48.8746023 2.3722673, 48.8751523 2.3731155, 48.8731543 2.3783690, 48.8731711 2.3799152, 48.8732152 2.3799126, 48.8732972 2.3799038, 48.8738742 2.3798465, 48.8740630 2.3798331, 48.8716669 2.3719109, 48.8716356 2.3717654, 48.8711163 2.3700022, 48.8711993 2.3697018, 48.8708528 2.3694611, 48.8709931 2.3689783, 48.8732657 2.3748785, 48.8736209 2.3748630, 48.8731016 2.3747665, 48.8726344 2.3737982, 48.8724447 2.3734415, 48.8721986 2.3733717, 48.8723062 2.3731759, 48.8722780 2.3731048, 48.8721635 2.3733040, 48.8717850 2.3725624, 48.8722491 2.3724459, 48.8718609 2.3727092, 48.8715427 2.3726645, 48.8721222 2.3726001, 48.8721600 2.3725531, 48.8727087 2.3737226, 48.8878559 2.3534540, 48.8540222 2.3721641, 48.8542603 2.3716689, 48.8541774 2.3718475, 48.8541359 2.3719456, 48.8540652 2.3718440, 48.8542657 2.3672153, 48.8542108 2.3674171, 48.8544297 2.3673782, 48.8555777 2.3673888, 48.8558432 2.3674030, 48.8746926 2.3541936, 48.8730916 2.3616811, 48.8384094 2.3844600, 48.8385526 2.3844982, 48.8386357 2.3839268, 48.8386925 2.3845364, 48.8387614 2.3840032, 48.8387719 2.3823784, 48.8387750 2.3824982, 48.8387982 2.3825006, 48.8388060 2.3824677, 48.8388084 2.3835182, 48.8388281 2.3825531, 48.8388498 2.3824569, 48.8388705 2.3825034, 48.8388749 2.3824170, 48.8388793 2.3824585, 48.8388904 2.3840713, 48.8388957 2.3825034, 48.8388968 2.3824835, 48.8389022 2.3824303, 48.8389046 2.3836278, 48.8389126 2.3825734, 48.8389154 2.3824519, 48.8389197 2.3825283, 48.8389329 2.3825383, 48.8389438 2.3824768, 48.8389462 2.3824119, 48.8389505 2.3831677, 48.8390023 2.3825170, 48.8390293 2.3826860, 48.8390336 2.3837125, 48.8390424 2.3833072, 48.8390642 2.3828554, 48.8390765 2.3825241, 48.8390870 2.3827957, 48.8390914 2.3826247, 48.8391178 2.3826278, 48.8391353 2.3825913, 48.8391451 2.3834334, 48.8391555 2.3826741, 48.8391626 2.3829833, 48.8392160 2.3827260, 48.8392468 2.3827607, 48.8392643 2.3831477, 48.8392652 2.3829868, 48.8392969 2.3830748, 48.8393168 2.3827723, 48.8393802 2.3831079, 48.8394217 2.3829185, 48.8394294 2.3830248, 48.8394666 2.3829052, 48.8394850 2.3825217, 48.8395418 2.3827110, 48.8395637 2.3827293, 48.8395680 2.3827027, 48.8395899 2.3827343, 48.8395976 2.3827011, 48.8396107 2.3827459, 48.8396194 2.3827060, 48.8396500 2.3825466, 48.8385911 2.3839503, 48.8386283 2.3840101, 48.8386567 2.3838706, 48.8387332 2.3840533, 48.8387595 2.3840832, 48.8387813 2.3839570, 48.8388425 2.3841031, 48.8388757 2.3823899, 48.8388863 2.3841496, 48.8389038 2.3840002, 48.8390167 2.3827620, 48.8390189 2.3825361, 48.8390583 2.3825793, 48.8391501 2.3828699, 48.8628419 2.3413590, 48.8627761 2.3414067, 48.8324237 2.3621092, 48.8339266 2.3625710, 48.8391079 2.3390778, 48.8401997 2.3954293, 48.8403010 2.3953091, 48.8407015 2.3947730, 48.8397385 2.3945362, 48.8397436 2.3945134, 48.8400782 2.3955244, 48.8401040 2.3947627, 48.8401175 2.3947478, 48.8419537 2.3930673, 48.8425023 2.3924372, 48.8753498 2.3460798, 48.8752300 2.3455656, 48.8643515 2.3547358, 48.8950228 2.3876904, 48.8964425 2.3818401, 48.8965429 2.3823604, 48.8659100 2.3367259, 48.8786910 2.4108117, 48.8789442 2.4107087, 48.8796760 2.4100182, 48.8666836 2.3693913, 48.8612115 2.3668968, 48.8909699 2.3839029, 48.8596062 2.3680483, 48.8595048 2.3686879, 48.8591538 2.3688576, 48.8589862 2.3689283, 48.8416174 2.3913852, 48.8599956 2.3704874, 48.8642214 2.3713206, 48.8624329 2.3726841, 48.8624956 2.3726066, 48.8618736 2.3728696, 48.8582325 2.3718450, 48.8632440 2.3706332, 48.8630703 2.3685776, 48.8837500 2.4095627, 48.8423566 2.3839810, 48.8422773 2.3762540, 48.8490376 2.4193390, 48.8379149 2.4079230, 48.8453589 2.4044766, 48.8429175 2.3482967, 48.8125972 2.3621933, 48.8125972 2.3621933, 48.8535911 2.3757106, 48.8693197 2.3050539, 48.8324657 2.3375075, 48.8620891 2.3780066, 48.8940948 2.3515003, 48.8915636 2.3488296, 48.8388247 2.3221905, 48.8524094 2.3465837, 48.8520736 2.3464136, 48.8522615 2.3461534, 48.8522996 2.3459479, 48.8580920 2.3523191, 48.8459395 2.3544549, 48.8684376 2.3706209, 48.8478853 2.4061185, 48.8646478 2.3699822, 48.8643358 2.3688108, 48.8214522 2.3333505, 48.8478200 2.4214587, 48.8487550 2.4232670, 48.8478886 2.4214355, 48.8378588 2.4114608, 48.8214088 2.3309102, 48.8612224 2.3648477, 48.8391187 2.4008037, 48.8397181 2.4041355, 48.8423773 2.3977129, 48.8432024 2.3913685, 48.8449650 2.3837024, 48.8751749 2.3642154, 48.8734440 2.3641694, 48.8731953 2.3643525, 48.8726645 2.3647941, 48.8733461 2.3642358, 48.8725150 2.3656983, 48.8714362 2.3657352, 48.8698453 2.3669656, 48.8690849 2.3675483, 48.8467785 2.3592477, 48.8470890 2.3545650, 48.8569847 2.3778145, 48.8567447 2.3780076, 48.8569233 2.3783614, 48.8573775 2.3791140, 48.8357873 2.4065510, 48.8766260 2.3543540, 48.8768960 2.3534930, 48.8410662 2.3658261, 48.8410809 2.3658156, 48.8411047 2.3659329, 48.8411315 2.3657638, 48.8411450 2.3657501, 48.8411688 2.3658790, 48.8411749 2.3658963, 48.8411757 2.3661246, 48.8411784 2.3658643, 48.8411820 2.3659153, 48.8411845 2.3658816, 48.8411885 2.3659325, 48.8411898 2.3658496, 48.8411916 2.3659006, 48.8411956 2.3659515, 48.8411959 2.3658669, 48.8411982 2.3659178, 48.8412030 2.3658859, 48.8412050 2.3659748, 48.8412053 2.3659368, 48.8412095 2.3659032, 48.8412121 2.3659938, 48.8412147 2.3659602, 48.8412166 2.3659222, 48.8412218 2.3659792, 48.8412260 2.3659455, 48.8412311 2.3660249, 48.8412331 2.3659645, 48.8412402 2.3660103, 48.8412439 2.3660479, 48.8412505 2.3660949, 48.8412527 2.3659956, 48.8412553 2.3660284, 48.8412577 2.3661139, 48.8412602 2.3660802, 48.8412604 2.3663509, 48.8412673 2.3660992, 48.8412693 2.3661545, 48.8412716 2.3660655, 48.8412764 2.3661735, 48.8412787 2.3660845, 48.8412790 2.3661398, 48.8412861 2.3661588, 48.8412903 2.3661251, 48.8412921 2.3662106, 48.8412974 2.3661441, 48.8412992 2.3662296, 48.8413018 2.3661959, 48.8413089 2.3662149, 48.8413126 2.3662590, 48.8413131 2.3661813, 48.8413197 2.3662780, 48.8413202 2.3662003, 48.8413222 2.3662490, 48.8413293 2.3662633, 48.8413326 2.3663126, 48.8413336 2.3662296, 48.8413398 2.3663316, 48.8413407 2.3662486, 48.8413423 2.3662979, 48.8413457 2.3665703, 48.8413494 2.3663169, 48.8413537 2.3662833, 48.8413555 2.3663779, 48.8413576 2.3656772, 48.8413602 2.3663932, 48.8413608 2.3663023, 48.8413651 2.3663632, 48.8413661 2.3658576, 48.8413667 2.3664465, 48.8413696 2.3656576, 48.8413722 2.3663822, 48.8413747 2.3658812, 48.8413759 2.3658475, 48.8413765 2.3663485, 48.8413810 2.3658952, 48.8413836 2.3663675, 48.8413860 2.3664123, 48.8413906 2.3658378, 48.8413929 2.3656295, 48.8413941 2.3664571, 48.8413956 2.3658573, 48.8413956 2.3659238, 48.8413993 2.3659178, 48.8414012 2.3664761, 48.8414038 2.3664424, 48.8414058 2.3656149, 48.8414089 2.3664969, 48.8414109 2.3658210, 48.8414109 2.3664614, 48.8414141 2.3658286, 48.8414152 2.3664278, 48.8414165 2.3658384, 48.8414186 2.3664822, 48.8414223 2.3664468, 48.8414299 2.3664675, 48.8414374 2.3665919, 48.8414428 2.3655648, 48.8414439 2.3664856, 48.8414491 2.3662744, 48.8414620 2.3662573, 48.8414697 2.3657097, 48.8414761 2.3657245, 48.8414314 2.3661953, 48.8414395 2.3662283, 48.8414855 2.3657192, 48.8414861 2.3667249, 48.8414949 2.3657124, 48.8414986 2.3667059, 48.8414997 2.3664149, 48.8415028 2.3657910, 48.8415031 2.3655062, 48.8415062 2.3657452, 48.8415078 2.3664063, 48.8415097 2.3657841, 48.8415165 2.3657823, 48.8415185 2.3666929, 48.8415257 2.3658228, 48.8415287 2.3667361, 48.8415355 2.3667724, 48.8415409 2.3654671, 48.8415412 2.3666774, 48.8415458 2.3657261, 48.8415532 2.3657486, 48.8415617 2.3657684, 48.8415622 2.3666592, 48.8415639 2.3668363, 48.8415708 2.3668587, 48.8415747 2.3666402, 48.8415793 2.3665566, 48.8415938 2.3665700, 48.8416106 2.3669157, 48.8416231 2.3667845, 48.8416299 2.3667983, 48.8416310 2.3668985, 48.8416356 2.3668121, 48.8416407 2.3667266, 48.8416532 2.3667076, 48.8416826 2.3667824, 48.8416847 2.3653584, 48.8417019 2.3668435, 48.8417341 2.3668728, 48.8417630 2.3668925, 48.8418015 2.3668881, 48.8418140 2.3668691, 48.8418254 2.3667586, 48.8418390 2.3667344, 48.8418568 2.3652033, 48.8418584 2.3669002, 48.8419107 2.3668190, 48.8419425 2.3667896, 48.8419645 2.3651129, 48.8420296 2.3650543, 48.8420496 2.3666964, 48.8421812 2.3663714, 48.8421854 2.3649108, 48.8422085 2.3664839, 48.8422257 2.3665562, 48.8422449 2.3664546, 48.8422845 2.3664216, 48.8423370 2.3663548, 48.8423739 2.3663264, 48.8423848 2.3647276, 48.8423938 2.3664019, 48.8424158 2.3661193, 48.8424377 2.3661860, 48.8424585 2.3662362, 48.8425584 2.3645761, 48.8405547 2.4059911, 48.8466055 2.3582174, 48.8466176 2.3581990, 48.8473520 2.3544890, 48.8920550 2.3461008, 48.8651944 2.3554408, 48.8665545 2.3603936, 48.8650138 2.3556963, 48.8190636 2.3378045, 48.8190433 2.3382617, 48.8190668 2.3382704, 48.8192971 2.4116232, 48.8516727 2.3995074, 48.8504308 2.3983982, 48.8301596 2.3342151, 48.8908871 2.3836986, 48.8919157 2.3820974, 48.8919633 2.3816291, 48.8921109 2.3816813, 48.8927269 2.3807490, 48.8927765 2.3805852, 48.8930260 2.3802433, 48.8911877 2.3833706, 48.8926611 2.3805354, 48.8327062 2.3968887, 48.8452732 2.3881818, 48.8707266 2.3515964, 48.8899568 2.3800977, 48.8904606 2.3790788, 48.8910196 2.3779829, 48.8909664 2.3776551, 48.8907115 2.3784896, 48.8902508 2.3794782, 48.8907119 2.3781803, 48.8904805 2.3790357, 48.8903403 2.3788314, 48.8906831 2.3786293, 48.8879464 2.3835928, 48.8895142 2.3498344, 48.8954829 2.3466824, 48.8559378 2.3789593, 48.8554706 2.3787234, 48.8317848 2.3580564, 48.8331084 2.3230703, 48.8414246 2.3661153, 48.8414151 2.3661625, 48.8414164 2.3661534, 48.8414213 2.3661660, 48.8414215 2.3661570, 48.8414974 2.3661442, 48.8415007 2.3661553, 48.8416171 2.3664287, 48.8416189 2.3664324, 48.8416324 2.3664861, 48.8629210 2.3641445, 48.8629885 2.3640093, 48.8516526 2.4192138, 48.8736147 2.3633962, 48.8753891 2.4055942, 48.8747235 2.4028142, 48.8426135 2.3896406, 48.8713746 2.3353089, 48.8301369 2.3291359, 48.8630406 2.3673064, 48.8708335 2.3864170, 48.8709285 2.3597311, 48.8712872 2.3602777, 48.8707054 2.3597617, 48.8709792 2.3597736, 48.8711489 2.3601690, 48.8825369 2.3507603, 48.8649741 2.3359158, 48.8572892 2.3686817, 48.8584243 2.3685727, 48.8592341 2.3681415, 48.8593853 2.3683292, 48.8401358 2.3202815, 48.8401808 2.3201765, 48.8402710 2.3200441, 48.8403040 2.3202632, 48.8403641 2.3198296, 48.8404212 2.3204915, 48.8404392 2.3197109, 48.8404542 2.3199482, 48.8404663 2.3202587, 48.8404813 2.3201263, 48.8405023 2.3202039, 48.8405113 2.3200669, 48.8405264 2.3202222, 48.8405354 2.3201537, 48.8405369 2.3200935, 48.8405384 2.3198204, 48.8405384 2.3202587, 48.8405564 2.3194278, 48.8405564 2.3196880, 48.8405624 2.3201719, 48.8405834 2.3201035, 48.8406045 2.3199985, 48.8406285 2.3203271, 48.8406405 2.3192954, 48.8406589 2.3204914, 48.8407277 2.3199802, 48.8407337 2.3194324, 48.8407787 2.3197474, 48.8407968 2.3204961, 48.8408118 2.3206558, 48.8408569 2.3206923, 48.8409109 2.3197565, 48.8409139 2.3197656, 48.8409320 2.3208110, 48.8409710 2.3196470, 48.8409924 2.3208432, 48.8411543 2.3192589, 48.8411543 2.3198433, 48.8411633 2.3207152, 48.8411753 2.3197291, 48.8412534 2.3198615, 48.8412985 2.3193274, 48.8414577 2.3201674, 48.8841973 2.3741821, 48.8553549 2.3555867, 48.8553224 2.3556518, 48.8360484 2.3486827, 48.8673865 2.3967482, 48.8584433 2.3828023, 48.8580910 2.3814281, 48.8581429 2.3816353, 48.8581768 2.3827711, 48.8586116 2.3834178, 48.8647967 2.3982709, 48.8650431 2.3984901, 48.8594153 2.4063574, 48.8594868 2.4062620, 48.8623435 2.4069746, 48.8629913 2.4001471, 48.8600323 2.4031223, 48.8541661 2.3685390, 48.8557389 2.3682126, 48.8603524 2.3676426, 48.8565384 2.3685512, 48.8584554 2.3675609, 48.8605999 2.4027524, 48.8389090 2.3816630, 48.8357533 2.3521704, 48.8597890 2.4027381, 48.8599301 2.4026085, 48.8599721 2.4037665, 48.8600188 2.4036630, 48.8605866 2.4029849, 48.8590499 2.4002749, 48.8590621 2.4002993, 48.8590948 2.4003587, 48.8591343 2.4001717, 48.8591407 2.4003439, 48.8592420 2.3998807, 48.8592662 2.3999638, 48.8592935 2.4001799, 48.8593042 2.4000745, 48.8593155 2.4001539, 48.8593277 2.4001116, 48.8585563 2.3988775, 48.8586143 2.3988460, 48.8586599 2.3989279, 48.8586903 2.3986088, 48.8587193 2.3989006, 48.8587676 2.3989699, 48.8587800 2.3987327, 48.8588229 2.3989447, 48.8588560 2.3988334, 48.8590355 2.3993435, 48.8590922 2.3994359, 48.8593962 2.4050659, 48.8759892 2.3685271, 48.8283283 2.3558986, 48.8310135 2.3574868, 48.8393688 2.3190560, 48.8395005 2.3187849, 48.8395196 2.3192206, 48.8396280 2.3189592, 48.8396769 2.3194014, 48.8397788 2.3191399, 48.8398234 2.3195725, 48.8399424 2.3193272, 48.8399424 2.3196887, 48.8399892 2.3187397, 48.8400231 2.3183103, 48.8400423 2.3186138, 48.8401124 2.3195337, 48.8401421 2.3189237, 48.8401442 2.3199017, 48.8401697 2.3184976, 48.8402016 2.3187849, 48.8402271 2.3190463, 48.8402656 2.3202127, 48.8402802 2.3197177, 48.8402806 2.3201854, 48.8402836 2.3201488, 48.8402866 2.3186202, 48.8402993 2.3188881, 48.8403032 2.3201077, 48.8403047 2.3201739, 48.8403137 2.3203018, 48.8403152 2.3201465, 48.8403242 2.3201169, 48.8403242 2.3201831, 48.8403392 2.3202059, 48.8403482 2.3201602, 48.8403652 2.3192077, 48.8404566 2.3190592, 48.8404566 2.3193175, 48.8404863 2.3188720, 48.8405100 2.3202842, 48.8406010 2.3189947, 48.8407267 2.3198743, 48.8407586 2.3208814, 48.8407635 2.3203173, 48.8408117 2.3197419, 48.8408287 2.3196806, 48.8408951 2.3199137, 48.8409071 2.3198818, 48.8409236 2.3198567, 48.8409431 2.3198270, 48.8409551 2.3198065, 48.8409604 2.3194385, 48.8409702 2.3197699, 48.8409807 2.3197540, 48.8409867 2.3197471, 48.8409957 2.3197403, 48.8409994 2.3198996, 48.8410077 2.3197197, 48.8410093 2.3193610, 48.8410197 2.3196923, 48.8410591 2.3192909, 48.8410594 2.3202880, 48.8410624 2.3191901, 48.8410648 2.3196010, 48.8410715 2.3207670, 48.8410798 2.3195714, 48.8410806 2.3191550, 48.8411024 2.3195394, 48.8411129 2.3195120, 48.8411194 2.3196532, 48.8411219 2.3194823, 48.8411384 2.3194572, 48.8411549 2.3194161, 48.8411715 2.3193842, 48.8411895 2.3193431, 48.8412135 2.3192952, 48.8412331 2.3192609, 48.8412526 2.3192198, 48.8413238 2.3205114, 48.8414035 2.3200822, 48.8583217 2.4080504, 48.8586330 2.3985247, 48.8586455 2.3985392, 48.8592251 2.3995582, 48.8592403 2.3995818, 48.8592474 2.3994995, 48.8592545 2.3995627, 48.8328552 2.3251354, 48.8651549 2.3952523, 48.8648765 2.3959329, 48.8592565 2.3822340, 48.8589660 2.3811882, 48.8578346 2.3793123, 48.8577162 2.3793963, 48.8630991 2.3664400, 48.8632016 2.3663520, 48.8772319 2.3600699, 48.8772370 2.3600479, 48.8772777 2.3599067, 48.8772828 2.3598847, 48.8773263 2.3597351, 48.8773314 2.3597131, 48.8773505 2.3601304, 48.8773671 2.3595683, 48.8773722 2.3595463, 48.8773963 2.3599672, 48.8774135 2.3594003, 48.8774186 2.3593783, 48.8774448 2.3597956, 48.8774856 2.3596288, 48.8775205 2.3602399, 48.8775321 2.3594608, 48.8775663 2.3600766, 48.8776149 2.3599051, 48.8776557 2.3597383, 48.8777021 2.3595702, 48.8777110 2.3603443, 48.8777568 2.3601810, 48.8778054 2.3600095, 48.8778462 2.3598427, 48.8778841 2.3604516, 48.8778926 2.3596746, 48.8779299 2.3602884, 48.8779785 2.3601168, 48.8780193 2.3599500, 48.8780657 2.3597820, 48.8781114 2.3605795, 48.8781572 2.3604163, 48.8782057 2.3602447, 48.8782465 2.3600780, 48.8782930 2.3599099, 48.8783222 2.3607134, 48.8783680 2.3605501, 48.8784165 2.3603786, 48.8784573 2.3602118, 48.8785038 2.3600437, 48.8785243 2.3608251, 48.8785701 2.3606619, 48.8786186 2.3604903, 48.8786595 2.3603235, 48.8786829 2.3609177, 48.8787059 2.3601555, 48.8787287 2.3607545, 48.8787772 2.3605829, 48.8787902 2.3609824, 48.8788180 2.3604162, 48.8788360 2.3608192, 48.8788645 2.3602481, 48.8788846 2.3606476, 48.8789254 2.3604808, 48.8789718 2.3603128, 48.8598452 2.4030310, 48.8762683 2.3597912, 48.8762732 2.3597662, 48.8762770 2.3597919, 48.8762779 2.3583622, 48.8762799 2.3597728, 48.8762818 2.3583519, 48.8762901 2.3600231, 48.8762969 2.3600298, 48.8763036 2.3582687, 48.8763074 2.3582584, 48.8763268 2.3598842, 48.8763331 2.3595464, 48.8763336 2.3598908, 48.8763360 2.3595309, 48.8763573 2.3597673, 48.8763587 2.3597882, 48.8763641 2.3597739, 48.8764472 2.3591361, 48.8764506 2.3591023, 48.8764511 2.3591258, 48.8764569 2.3591067, 48.8765173 2.3591663, 48.8765207 2.3591508, 48.8766929 2.3585009, 48.8767102 2.3584288, 48.8767119 2.3584226, 48.8768174 2.3601150, 48.8768316 2.3600915, 48.8768625 2.3603961, 48.8768683 2.3599353, 48.8768703 2.3599290, 48.8768756 2.3599055, 48.8768780 2.3598978, 48.8768873 2.3607028, 48.8768916 2.3606925, 48.8768938 2.3598430, 48.8768949 2.3599482, 48.8768954 2.3599404, 48.8768960 2.3598353, 48.8768990 2.3599290, 48.8769014 2.3599217, 48.8769043 2.3599118, 48.8769798 2.3599589, 48.8769882 2.3606416, 48.8769995 2.3606479, 48.8770163 2.3593793, 48.8770197 2.3593679, 48.8770350 2.3593225, 48.8770411 2.3593058, 48.8770534 2.3592570, 48.8770685 2.3591935, 48.8770732 2.3591686, 48.8770794 2.3591405, 48.8770828 2.3591208, 48.8770917 2.3590838, 48.8770951 2.3590729, 48.8770980 2.3590833, 48.8770984 2.3590628, 48.8771008 2.3590716, 48.8771047 2.3590490, 48.8771102 2.3590293, 48.8771221 2.3589843, 48.8771249 2.3589741, 48.8771276 2.3589664, 48.8771295 2.3589580, 48.8771324 2.3589492, 48.8771356 2.3589393, 48.8772445 2.3589404, 48.8772462 2.3584873, 48.8772464 2.3589318, 48.8772530 2.3584704, 48.8772549 2.3584910, 48.8772593 2.3584785, 48.8772854 2.3583542, 48.8772873 2.3583682, 48.8772941 2.3583616, 48.8773393 2.3585684, 48.8774620 2.3583045, 48.8772580 2.3953907, 48.8410848 2.3664258, 48.8410911 2.3664428, 48.8410977 2.3664173, 48.8411029 2.3664128, 48.8411167 2.3664179, 48.8411209 2.3663962, 48.8411261 2.3663916, 48.8411499 2.3663736, 48.8411606 2.3663562, 48.8411660 2.3663728, 48.8411736 2.3663492, 48.8412044 2.3663248, 48.8412096 2.3663202, 48.8412145 2.3663161, 48.8412254 2.3662954, 48.8412320 2.3663140, 48.8406763 2.3667807, 48.8406929 2.3669802, 48.8407070 2.3667478, 48.8407257 2.3667467, 48.8407291 2.3667426, 48.8407504 2.3669292, 48.8407642 2.3668988, 48.8407671 2.3667008, 48.8407708 2.3669135, 48.8407934 2.3666650, 48.8408122 2.3668723, 48.8408286 2.3666533, 48.8408368 2.3666401, 48.8408403 2.3666506, 48.8408504 2.3666342, 48.8408556 2.3666297, 48.8408607 2.3668074, 48.8408714 2.3668154, 48.8408754 2.3667963, 48.8408812 2.3668156, 48.8408909 2.3667968, 48.8408934 2.3665981, 48.8408986 2.3665936, 48.8409007 2.3667847, 48.8409079 2.3665841, 48.8409131 2.3665796, 48.8409260 2.3667491, 48.8409312 2.3667655, 48.8409362 2.3667411, 48.8409370 2.3665586, 48.8409410 2.3667545, 48.8409422 2.3665541, 48.8409514 2.3665463, 48.8409566 2.3665418, 48.8409712 2.3665309, 48.8409736 2.3667090, 48.8409784 2.3667209, 48.8409794 2.3665241, 48.8409832 2.3666963, 48.8409846 2.3665196, 48.8409884 2.3667107, 48.8410009 2.3666994, 48.8410034 2.3665012, 48.8410086 2.3664967, 48.8410144 2.3666855, 48.8410178 2.3664828, 48.8410235 2.3666769, 48.8410241 2.3664998, 48.8410247 2.3664825, 48.8410299 2.3664780, 48.8410331 2.3666516, 48.8410379 2.3664723, 48.8410407 2.3666436, 48.8410472 2.3664574, 48.8410517 2.3666344, 48.8410535 2.3664744, 48.8410541 2.3664570, 48.8410545 2.3666502, 48.8410593 2.3664525, 48.8410625 2.3666399, 48.8410673 2.3664468, 48.8410704 2.3666354, 48.8410788 2.3666274, 48.8410819 2.3666025, 48.8410871 2.3666224, 48.8410919 2.3666167, 48.8410979 2.3666099, 48.8411047 2.3666019, 48.8411173 2.3665700, 48.8411213 2.3665876, 48.8411331 2.3665759, 48.8411390 2.3665690, 48.8411509 2.3665621, 48.8411595 2.3665527, 48.8411655 2.3665455, 48.8411899 2.3665199, 48.8411940 2.3665004, 48.8412006 2.3665161, 48.8412099 2.3665037, 48.8412390 2.3662057, 48.8412394 2.3664796, 48.8412457 2.3664714, 48.8412552 2.3664638, 48.8412627 2.3664338, 48.8412707 2.3662865, 48.8412724 2.3664600, 48.8413557 2.3661821, 48.8413630 2.3662008, 48.8414519 2.3660567, 48.8763521 2.3598757, 48.8763675 2.3598186, 48.8764071 2.3600847, 48.8764890 2.3597768, 48.8766158 2.3601411, 48.8766245 2.3601074, 48.8766438 2.3601646, 48.8766554 2.3601235, 48.8766660 2.3600062, 48.8766689 2.3599402, 48.8766775 2.3599197, 48.8766891 2.3599534, 48.8766959 2.3599300, 48.8767282 2.3584412, 48.8767436 2.3583840, 48.8767783 2.3602122, 48.8767879 2.3586332, 48.8768352 2.3599938, 48.8768419 2.3599659, 48.8769509 2.3583518, 48.8769692 2.3583620, 48.8769846 2.3586875, 48.8769933 2.3586538, 48.8770126 2.3587109, 48.8770242 2.3586699, 48.8770348 2.3585526, 48.8770377 2.3584866, 48.8770464 2.3584661, 48.8770579 2.3584998, 48.8770647 2.3584764, 48.8771312 2.3588444, 48.8771379 2.3588209, 48.8772035 2.3584896, 48.8772180 2.3585028, 48.8419459 2.3757529, 48.8411643 2.3739380, 48.8413733 2.3746037, 48.8419912 2.3758460, 48.8503560 2.3786493, 48.8744982 2.3927178, 48.8765820 2.3595712, 48.8766266 2.3596110, 48.8766958 2.3594194, 48.8766976 2.3594210, 48.8766995 2.3594230, 48.8767083 2.3592263, 48.8767554 2.3593440, 48.8767588 2.3593315, 48.8767746 2.3592712, 48.8767800 2.3592598, 48.8768033 2.3596330, 48.8768094 2.3596123, 48.8769671 2.3590165, 48.8769677 2.3590087, 48.8769804 2.3588987, 48.8769870 2.3589002, 48.8771346 2.3601320, 48.8771404 2.3601367, 48.8771490 2.3601408, 48.8771616 2.3600228, 48.8771643 2.3600145, 48.8771801 2.3601564, 48.8771934 2.3601658, 48.8772601 2.3599126, 48.8772615 2.3599027, 48.8773286 2.3593696, 48.8773303 2.3593641, 48.8773498 2.3595736, 48.8773673 2.3592246, 48.8773765 2.3592302, 48.8773859 2.3592394, 48.8773927 2.3592431, 48.8774009 2.3592483, 48.8774121 2.3592552, 48.8774189 2.3592578, 48.8296240 2.3801601, 48.8780937 2.3647247, 48.8484242 2.3412319, 48.8559893 2.3328832, 48.8535947 2.3367962, 48.8529909 2.3348298, 48.8548020 2.3362572, 48.8544717 2.3370259, 48.8555653 2.3366336, 48.8581073 2.3283770, 48.8196857 2.3385703, 48.8205940 2.3352040, 48.8332462 2.4027150, 48.8495094 2.4344651, 48.8572542 2.4071947, 48.8571978 2.4071499, 48.8599190 2.4059896, 48.8600274 2.4065899, 48.8470173 2.4162807, 48.8469053 2.4174060, 48.8461651 2.4165192, 48.8461288 2.4169126, 48.8468981 2.4157604, 48.8680595 2.4086915, 48.8681030 2.4033390, 48.8690822 2.4084492, 48.8461904 2.4189051, 48.8465563 2.4186669, 48.8462055 2.4185077, 48.8465106 2.4191624, 48.8732212 2.3630839, 48.8609493 2.3803390, 48.8609818 2.3809160, 48.8611381 2.3809336, 48.8609042 2.3814382, 48.8463130 2.4213215, 48.8463873 2.4205294, 48.8460139 2.4207917, 48.8459377 2.4216165, 48.8615076 2.3805893, 48.8592360 2.3828098, 48.8666042 2.3853196, 48.8338804 2.3681948, 48.8704953 2.3458276, 48.8581195 2.3231884, 48.8614564 2.3780635, 48.8614752 2.3781069, 48.8610647 2.3776241, 48.8615428 2.3776813, 48.8610882 2.3812893, 48.8608398 2.3800020, 48.8611517 2.3814385, 48.8611979 2.3816119, 48.8616071 2.3823364, 48.8617059 2.3826218, 48.8945524 2.3527710, 48.8487082 2.3770069, 48.8556111 2.3402066, 48.8556266 2.3621786, 48.8556266 2.3621786, 48.8556266 2.3621786, 48.8623796 2.3727706, 48.8616421 2.3740024, 48.8612824 2.3749463, 48.8622102 2.3775622, 48.8621341 2.3774006, 48.8622823 2.3777025, 48.8626909 2.3786304, 48.8626244 2.3797994, 48.8624272 2.3797335, 48.8622688 2.3799159, 48.8623261 2.3800798, 48.8642436 2.3666668, 48.8641787 2.3666925, 48.8770140 2.3668362, 48.8477523 2.3131717, 48.8476019 2.3124307, 48.8633812 2.3618041, 48.8627388 2.3630556, 48.8640746 2.3609523, 48.8677655 2.3258785, 48.8459026 2.4220203, 48.8459202 2.4218168, 48.8462824 2.4216452, 48.8422716 2.3666416, 48.8423629 2.3665648, 48.8425115 2.3664241, 48.8425602 2.3663854, 48.8432847 2.3745921, 48.8705363 2.3358361, 48.8785492 2.3996608, 48.8726106 2.3907847, 48.8784996 2.3974229, 48.8442862 2.3237918, 48.8443083 2.3239728, 48.8460103 2.4247575, 48.8703347 2.3420559, 48.8533300 2.4347973, 48.8527506 2.4278305, 48.8752465 2.3932297, 48.8728789 2.3289009, 48.8725215 2.3295244, 48.8486800 2.3708566, 48.8488626 2.3712412, 48.8571998 2.3686785, 48.8594276 2.3683212, 48.8721402 2.3254288, 48.8721670 2.3253311, 48.8721199 2.3255281, 48.8519888 2.3423483, 48.8467371 2.3102329, 48.8547937 2.3759343, 48.8588805 2.3286990, 48.8661383 2.3340481, 48.8784033 2.3659429, 48.8803903 2.3673551, 48.8804349 2.3673901, 48.8537976 2.3699213, 48.8537389 2.3700602, 48.8440977 2.3759094, 48.8441062 2.3758566, 48.8441363 2.3758925, 48.8441922 2.3758550, 48.8441992 2.3759621, 48.8442056 2.3756394, 48.8442125 2.3758113, 48.8442140 2.3756239, 48.8442153 2.3758897, 48.8442208 2.3759899, 48.8442232 2.3756091, 48.8442248 2.3730778, 48.8442316 2.3755965, 48.8442361 2.3758386, 48.8442365 2.3759131, 48.8442394 2.3755789, 48.8442468 2.3755662, 48.8442540 2.3758603, 48.8442547 2.3755508, 48.8442626 2.3755346, 48.8442680 2.3758763, 48.8442728 2.3755177, 48.8442739 2.3759588, 48.8442867 2.3758956, 48.8442935 2.3759819, 48.8443006 2.3760795, 48.8443037 2.3759161, 48.8443186 2.3759374, 48.8443236 2.3761143, 48.8443319 2.3732463, 48.8443705 2.3731757, 48.8443882 2.3760846, 48.8443923 2.3761770, 48.8443949 2.3762904, 48.8444039 2.3760459, 48.8444041 2.3762058, 48.8444074 2.3763093, 48.8444268 2.3732956, 48.8444324 2.3732787, 48.8444613 2.3753875, 48.8444617 2.3762794, 48.8444709 2.3762944, 48.8444711 2.3753955, 48.8444794 2.3763093, 48.8445027 2.3764902, 48.8445106 2.3764932, 48.8445355 2.3733140, 48.8445390 2.3755579, 48.8445449 2.3755410, 48.8445473 2.3732911, 48.8445484 2.3734372, 48.8445630 2.3732613, 48.8445844 2.3734730, 48.8445871 2.3752308, 48.8445874 2.3758312, 48.8445875 2.3734070, 48.8445939 2.3758193, 48.8445957 2.3733919, 48.8445966 2.3758462, 48.8446003 2.3733848, 48.8446031 2.3758382, 48.8446041 2.3735018, 48.8446045 2.3733757, 48.8446077 2.3733687, 48.8446097 2.3734372, 48.8446124 2.3733609, 48.8446153 2.3734290, 48.8446161 2.3733546, 48.8446202 2.3734202, 48.8446250 2.3734123, 48.8446290 2.3734051, 48.8446320 2.3758533, 48.8446343 2.3733958, 48.8446395 2.3733857, 48.8446443 2.3733776, 48.8446446 2.3734221, 48.8446464 2.3758732, 48.8446495 2.3733692, 48.8446528 2.3733639, 48.8446570 2.3733567, 48.8446698 2.3733567, 48.8446735 2.3735774, 48.8446908 2.3750367, 48.8446928 2.3735605, 48.8446974 2.3735535, 48.8446977 2.3754456, 48.8446995 2.3752951, 48.8447016 2.3735443, 48.8447048 2.3735373, 48.8447094 2.3735295, 48.8447097 2.3754203, 48.8447132 2.3735232, 48.8447146 2.3752671, 48.8447169 2.3735162, 48.8447224 2.3735056, 48.8447226 2.3753879, 48.8447276 2.3729690, 48.8447281 2.3734940, 48.8447300 2.3762293, 48.8447323 2.3729589, 48.8447329 2.3734824, 48.8447377 2.3734761, 48.8447419 2.3734669, 48.8447429 2.3763672, 48.8447500 2.3763513, 48.8447593 2.3751716, 48.8447608 2.3763937, 48.8447640 2.3761360, 48.8447641 2.3763272, 48.8447657 2.3763769, 48.8447706 2.3761181, 48.8447725 2.3751482, 48.8447758 2.3736362, 48.8447772 2.3763430, 48.8447776 2.3737127, 48.8447777 2.3762992, 48.8447779 2.3730001, 48.8447797 2.3748706, 48.8447814 2.3730040, 48.8447876 2.3736153, 48.8447885 2.3763154, 48.8447888 2.3762807, 48.8448026 2.3762968, 48.8448040 2.3735875, 48.8448195 2.3750508, 48.8448308 2.3750285, 48.8448449 2.3737668, 48.8448495 2.3737597, 48.8448537 2.3737506, 48.8448569 2.3737436, 48.8448616 2.3737358, 48.8448653 2.3737295, 48.8448690 2.3737225, 48.8448723 2.3747046, 48.8448745 2.3737119, 48.8448802 2.3737002, 48.8448851 2.3736886, 48.8448862 2.3731359, 48.8448898 2.3736824, 48.8448931 2.3731443, 48.8448940 2.3736732, 48.8449039 2.3738749, 48.8449143 2.3758655, 48.8449157 2.3738898, 48.8449182 2.3738552, 48.8449238 2.3738469, 48.8449287 2.3738381, 48.8449334 2.3738302, 48.8449375 2.3738230, 48.8449428 2.3738137, 48.8449480 2.3738036, 48.8449528 2.3737955, 48.8449580 2.3737871, 48.8449613 2.3737818, 48.8449654 2.3737746, 48.8449871 2.3738480, 48.8449871 2.3744992, 48.8449956 2.3738341, 48.8451019 2.3742882, 48.8451555 2.3737343, 48.8451637 2.3734748, 48.8451673 2.3737104, 48.8451699 2.3734838, 48.8452179 2.3743667, 48.8452277 2.3742782, 48.8452328 2.3742684, 48.8452354 2.3735579, 48.8452379 2.3742599, 48.8452430 2.3742515, 48.8452463 2.3735712, 48.8452476 2.3742437, 48.8452748 2.3742513, 48.8452890 2.3738524, 48.8452957 2.3739518, 48.8452994 2.3739307, 48.8453008 2.3739434, 48.8453047 2.3737283, 48.8453050 2.3737203, 48.8471804 2.3954861, 48.8457530 2.3959415, 48.8802143 2.4096789, 48.8769502 2.4071482, 48.8904696 2.3392991, 48.8859778 2.3475855, 48.8744634 2.3207611, 48.8667059 2.3800163, 48.8758392 2.3442908, 48.8446532 2.3732990, 48.8446870 2.3732181, 48.8446958 2.3731949, 48.8450228 2.3738335, 48.8450514 2.3735846, 48.8450615 2.3735965, 48.8450796 2.3736183, 48.8450935 2.3736359, 48.8451120 2.3737576, 48.8451652 2.3736831, 48.8442317 2.3732994, 48.8442921 2.3731905, 48.8443049 2.3732137, 48.8443364 2.3731031, 48.8443318 2.3731258, 48.8443434 2.3731167, 48.8444014 2.3730030, 48.8432129 2.3749481, 48.8432845 2.3748106, 48.8432937 2.3748216, 48.8432834 2.3750270, 48.8433226 2.3747406, 48.8433281 2.3747516, 48.8433339 2.3747377, 48.8433453 2.3748784, 48.8433540 2.3748950, 48.8433859 2.3746405, 48.8433719 2.3748376, 48.8433749 2.3748513, 48.8433774 2.3748092, 48.8439225 2.3736874, 48.8439337 2.3736400, 48.8439368 2.3736461, 48.8434325 2.3747314, 48.8439392 2.3736287, 48.8439437 2.3736575, 48.8439599 2.3735964, 48.8439632 2.3736010, 48.8439656 2.3736047, 48.8439685 2.3736076, 48.8439708 2.3736108, 48.8439755 2.3737641, 48.8439919 2.3737234, 48.8439922 2.3737053, 48.8439953 2.3735464, 48.8439972 2.3737304, 48.8440063 2.3737461, 48.8440188 2.3736799, 48.8440216 2.3736829, 48.8440238 2.3736874, 48.8440265 2.3736909, 48.8440301 2.3736943, 48.8440483 2.3736230, 48.8440499 2.3734350, 48.8440605 2.3734498, 48.8440613 2.3734176, 48.8440637 2.3736453, 48.8440710 2.3734317, 48.8441106 2.3733071, 48.8441211 2.3733248, 48.8441057 2.3735185, 48.8441165 2.3734962, 48.8441182 2.3735349, 48.8441261 2.3735194, 48.8441660 2.3732459, 48.8441687 2.3733907, 48.8441755 2.3732448, 48.8441821 2.3734107, 48.8441806 2.3732346, 48.8442206 2.3733245, 48.8442260 2.3733132, 48.8442295 2.3731234, 48.8442435 2.3731216, 48.8442847 2.3730293, 48.8442771 2.3730446, 48.8442914 2.3730403, 48.8443475 2.3729232, 48.8434493 2.3749737, 48.8434690 2.3749387, 48.8434732 2.3752067, 48.8434849 2.3752212, 48.8435492 2.3752478, 48.8435808 2.3752978, 48.8435862 2.3753044, 48.8436367 2.3753499, 48.8436619 2.3754394, 48.8436689 2.3754300, 48.8436769 2.3754078, 48.8436770 2.3752434, 48.8436825 2.3753097, 48.8436873 2.3752223, 48.8436875 2.3753884, 48.8436902 2.3752987, 48.8436949 2.3752842, 48.8437027 2.3752732, 48.8437070 2.3752620, 48.8437147 2.3752510, 48.8437270 2.3751959, 48.8437287 2.3753396, 48.8437324 2.3752026, 48.8437366 2.3752097, 48.8437383 2.3752957, 48.8437395 2.3753521, 48.8437460 2.3752840, 48.8437510 2.3754037, 48.8437525 2.3752740, 48.8437587 2.3753927, 48.8437595 2.3752646, 48.8437634 2.3753781, 48.8437711 2.3753671, 48.8437754 2.3753559, 48.8437832 2.3753449, 48.8438231 2.3756979, 48.8438339 2.3757105, 48.8438687 2.3753543, 48.8438806 2.3756920, 48.8438879 2.3757020, 48.8438882 2.3756775, 48.8438906 2.3758749, 48.8438956 2.3756876, 48.8438983 2.3758632, 48.8439048 2.3758532, 48.8439118 2.3758438, 48.8439521 2.3757937, 48.8439594 2.3758037, 48.8440234 2.3758015, 48.8440308 2.3758115, 48.8440887 2.3756252, 48.8441427 2.3759565, 48.8441504 2.3759455, 48.8441940 2.3762374, 48.8442048 2.3762500, 48.8442519 2.3760922, 48.8442658 2.3759990, 48.8442736 2.3759880, 48.8443391 2.3764142, 48.8443468 2.3764026, 48.8443534 2.3763926, 48.8443603 2.3759776, 48.8443603 2.3763831, 48.8443727 2.3760561, 48.8443758 2.3762845, 48.8443764 2.3759768, 48.8443805 2.3760451, 48.8443820 2.3762673, 48.8443826 2.3759596, 48.8443891 2.3764701, 48.8444007 2.3764479, 48.8444017 2.3760875, 48.8444079 2.3760781, 48.8444167 2.3761589, 48.8444203 2.3761715, 48.8444254 2.3761762, 48.8444365 2.3760695, 48.8444402 2.3760820, 48.8444425 2.3761495, 48.8444453 2.3760867, 48.8445147 2.3758928, 48.8445213 2.3759095, 48.8445417 2.3761693, 48.8445461 2.3761582, 48.8445775 2.3760291, 48.8445849 2.3760132, 48.8446199 2.3760394, 48.8446302 2.3760560, 48.8440591 2.3758524, 48.8642749 2.3685528, 48.8642540 2.3684778, 48.8647760 2.3680660, 48.8654588 2.3684836, 48.8653031 2.3683931, 48.8654554 2.3689886, 48.8584849 2.4066443, 48.8567808 2.3972893, 48.8847780 2.3839350, 48.8532110 2.3437278, 48.8554043 2.3476213, 48.8576303 2.3483829, 48.8431887 2.3749839, 48.8432104 2.3750497, 48.8432618 2.3750609, 48.8432622 2.3749603, 48.8432772 2.3749271, 48.8433265 2.3748132, 48.8433496 2.3748490, 48.8433860 2.3747058, 48.8434087 2.3747481, 48.8434733 2.3744721, 48.8434821 2.3745702, 48.8435726 2.3743940, 48.8435786 2.3744910, 48.8435975 2.3743426, 48.8436477 2.3741666, 48.8437059 2.3742558, 48.8437260 2.3741054, 48.8437632 2.3739609, 48.8437797 2.3739206, 48.8437833 2.3739251, 48.8437839 2.3739140, 48.8437869 2.3739202, 48.8438008 2.3738421, 48.8438111 2.3740226, 48.8438250 2.3739305, 48.8438362 2.3740243, 48.8438394 2.3740299, 48.8438450 2.3740180, 48.8438529 2.3739931, 48.8438716 2.3737105, 48.8438722 2.3737630, 48.8438722 2.3737630, 48.8438844 2.3738311, 48.8438917 2.3738173, 48.8439101 2.3738974, 48.8439396 2.3737900, 48.8439623 2.3736834, 48.8439714 2.3736949, 48.8440898 2.3734598, 48.8440925 2.3733360, 48.8441473 2.3733668, 48.8441755 2.3731927, 48.8442249 2.3732793, 48.8442324 2.3731992, 48.8442600 2.3731550, 48.8442709 2.3731329, 48.8443032 2.3729639, 48.8443551 2.3730314, 48.8443714 2.3731326, 48.8443723 2.3728636, 48.8443738 2.3730837, 48.8443770 2.3731203, 48.8443821 2.3731124, 48.8444080 2.3729064, 48.8669190 2.3151373, 48.8676892 2.3127232, 48.8471762 2.3107124, 48.8545470 2.4196227, 48.8509679 2.4181100, 48.8750276 2.4027316, 48.8763671 2.3956190, 48.8748082 2.4028457, 48.8698537 2.4025720, 48.8711617 2.3300722, 48.8817452 2.3687501, 48.8518476 2.3933111, 48.8403727 2.3337448, 48.8381865 2.3423327, 48.8421264 2.3288678, 48.8457052 2.3419808, 48.8597756 2.4031330, 48.8603530 2.4031550, 48.8701010 2.3949960, 48.8719770 2.3923271, 48.8646300 2.3665505, 48.8661085 2.3669813, 48.8517000 2.3431200, 48.8242000 2.3888900, 48.8425000 2.3216700, 48.8722000 2.3397200, 48.8412953 2.3075765, 48.8414376 2.3081178, 48.8414906 2.3082385, 48.8422788 2.3101359, 48.8425076 2.3118940, 48.8365104 2.3100891, 48.8341782 2.3066372, 48.8744888 2.4155695, 48.8599164 2.3463862, 48.8471480 2.3172036, 48.8475959 2.3184518, 48.8476473 2.3185907, 48.8831240 2.3238175, 48.8600843 2.3501442, 48.8400060 2.4004934, 48.8408728 2.4043717, 48.8431180 2.3203628, 48.8819276 2.3203338, 48.8386975 2.3110254, 48.8425337 2.3640099, 48.8418066 2.3195355, 48.8493177 2.4179411, 48.8559651 2.3563778, 48.8537639 2.3391067, 48.8484157 2.3501294, 48.8503045 2.3303232, 48.8457103 2.4275167, 48.8414902 2.3233159, 48.8553652 2.3997587, 48.8371072 2.3743837, 48.8392820 2.3298973, 48.8491858 2.3251494, 48.8832127 2.3308278, 48.8810507 2.3407852, 48.8170107 2.3324779, 48.8461470 2.3242143, 48.8413329 2.3183133, 48.8489310 2.3471707, 48.8204679 2.3390610, 48.8204884 2.3390711, 48.8205814 2.3395233, 48.8481468 2.3197601, 48.8490626 2.3191414, 48.8501266 2.3186024, 48.8501791 2.3187017, 48.8878214 2.3802142, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8478436 2.3190965, 48.8524573 2.3415602, 48.8547424 2.3544531, 48.8549834 2.3538154, 48.8549571 2.3538809, 48.8547359 2.3551293, 48.8569769 2.3781738, 48.8570133 2.3782712, 48.8566264 2.3772226, 48.8568241 2.3777233, 48.8566192 2.3776248, 48.8565236 2.3773676, 48.8563976 2.3765843, 48.8560776 2.3757039, 48.8560048 2.3754788, 48.8558521 2.3750899, 48.8558279 2.3750061, 48.8555572 2.3747522, 48.8534957 2.3378664, 48.8465511 2.3138238, 48.8689558 2.3348921, 48.8575487 2.3495646, 48.8611021 2.3537247, 48.8615808 2.3421921, 48.8609420 2.3686815, 48.8680574 2.3408942, 48.8683838 2.3420677, 48.8741075 2.3445446, 48.8680333 2.3778031, 48.8693650 2.3817579, 48.8677141 2.3819114, 48.8691546 2.3800136, 48.8882663 2.3626035, 48.8590641 2.3684194, 48.8745019 2.3273404, 48.8633731 2.3584422, 48.8346652 2.3301689, 48.8320285 2.3249552, 48.8327169 2.3252508, 48.8336276 2.3316417, 48.8312333 2.3296496, 48.8313376 2.3296145, 48.8602693 2.3889177, 48.8596521 2.3868111, 48.8587082 2.3848399, 48.8620899 2.3661777, 48.8617952 2.3647367, 48.8542765 2.4027546, 48.8515574 2.4003677, 48.8633340 2.3613891, 48.8619859 2.3647571, 48.8623729 2.3651197, 48.8627347 2.3662302, 48.8614130 2.3705083, 48.8615747 2.3706299, 48.8618001 2.3720184, 48.8177909 2.3244221, 48.8647430 2.3818722, 48.8622747 2.3672224, 48.8620626 2.3672580, 48.8623682 2.3671929, 48.8628461 2.3362666, 48.8644915 2.3656032, 48.8643294 2.3657096, 48.8690385 2.3639054, 48.8679245 2.3658481, 48.8664714 2.3673929, 48.8650522 2.3663679, 48.8612440 2.3676094, 48.8619694 2.3673462, 48.8378987 2.3453148, 48.8656106 2.3572726, 48.8626759 2.3636324, 48.8635810 2.3667513, 48.8617050 2.3539300, 48.8440980 2.3080783, 48.8434559 2.3050545, 48.8627659 2.3625185, 48.8355630 2.3849120, 48.8357331 2.3846678, 48.8377299 2.3460567, 48.8404873 2.3458931, 48.8428599 2.3414993, 48.8425203 2.3384674, 48.8407969 2.3406144, 48.8406491 2.3343703, 48.8391318 2.3395208, 48.8415293 2.3294177, 48.8440602 2.3292343, 48.8468650 2.3299291, 48.8480349 2.3306234, 48.8615804 2.3711339, 48.8615576 2.3705429, 48.8617572 2.3718073, 48.8625029 2.3716831, 48.8636741 2.3696764, 48.8633878 2.3694245, 48.8633311 2.3692871, 48.8626670 2.3627237, 48.8609892 2.3675162, 48.8611497 2.3674810, 48.8630042 2.3673142, 48.8626333 2.3674542, 48.8629894 2.3679436, 48.8630159 2.3680267, 48.8809048 2.3467209, 48.8642921 2.3657377, 48.8617183 2.3720579, 48.8614465 2.3641573, 48.8573825 2.3774991, 48.8615938 2.3734258, 48.8616162 2.3708080, 48.8618200 2.3730192, 48.8617681 2.3611646, 48.8632870 2.3585986, 48.8625980 2.3538387, 48.8630387 2.3518815, 48.8632610 2.3511168, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8633292 2.3462367, 48.8635550 2.3471565, 48.8635288 2.3441618, 48.8699970 2.3549068, 48.8712181 2.3066750, 48.8673562 2.3530323, 48.8673705 2.3530335, 48.8673789 2.3530370, 48.8673880 2.3530477, 48.8712598 2.3552044, 48.8587772 2.3712220, 48.8659600 2.3653216, 48.8654733 2.3679992, 48.8666410 2.3664307, 48.8665862 2.3667443, 48.8661620 2.3675630, 48.8650347 2.3669146, 48.8650847 2.3656389, 48.8666335 2.3665296, 48.8663602 2.3680223, 48.8643746 2.3685025, 48.8641963 2.3679144, 48.8646177 2.3690280, 48.8629023 2.3681262, 48.8628347 2.3675662, 48.8543300 2.3711983, 48.8749871 2.3593369, 48.8747439 2.3591131, 48.8742167 2.3587245, 48.8585649 2.3784767, 48.8578407 2.3769477, 48.8343023 2.3639410, 48.8602002 2.3647046, 48.8588360 2.3643808, 48.8593740 2.3653569, 48.8623144 2.3663745, 48.8708703 2.3415985, 48.8705728 2.3415832, 48.8711859 2.3417171, 48.8709869 2.3416777, 48.8620724 2.3658250, 48.8637272 2.3671164, 48.8636903 2.3666893, 48.8709973 2.3788109, 48.8586999 2.3627020, 48.8580013 2.3652526, 48.8584347 2.3637448, 48.8453783 2.3929602, 48.8492511 2.3890811, 48.8844918 2.3308338, 48.8808115 2.3349165, 48.8459524 2.3314941, 48.8473038 2.3299657, 48.8822077 2.3636469, 48.8822937 2.3628730, 48.8826834 2.3615248, 48.8842662 2.3384857, 48.8843570 2.3383511, 48.8843580 2.3554674, 48.8855628 2.3868905, 48.8614253 2.3643489, 48.8593585 2.3673596, 48.8586082 2.3675198, 48.8578247 2.3662529, 48.8578018 2.3672245, 48.8575285 2.3645936, 48.8567071 2.3672138, 48.8599776 2.3643195, 48.8581319 2.3686779, 48.8654352 2.3322141, 48.8731027 2.3586476, 48.8738988 2.3585396, 48.8734890 2.3588318, 48.8737268 2.3586272, 48.8580112 2.3685170, 48.8647940 2.3660241, 48.8648526 2.3659926, 48.8640444 2.3658805, 48.8641120 2.3658485, 48.8683644 2.3699736, 48.8682556 2.4180358, 48.8535896 2.3766260, 48.8548638 2.3756068, 48.8534590 2.3792948, 48.8609686 2.3544829, 48.8608428 2.3548591, 48.8607371 2.3551324, 48.8612378 2.3536539, 48.8611118 2.3693564, 48.8495908 2.3740611, 48.8786937 2.4161353, 48.8797544 2.4131416, 48.8279008 2.3224596, 48.8237712 2.3188140, 48.8455488 2.4110597, 48.8440870 2.4099235, 48.8444532 2.4107855, 48.8654197 2.3615883, 48.8484998 2.3412712, 48.8443464 2.4069660, 48.8659969 2.3276111, 48.8711704 2.3532964, 48.8814750 2.3580850, 48.8653117 2.3295596, 48.8233460 2.3160166, 48.8490230 2.3129144, 48.8654853 2.3686016, 48.8518466 2.3669275, 48.8279596 2.3690455, 48.8279577 2.3690363, 48.8486365 2.3436088, 48.8282445 2.3185970, 48.8325511 2.3275682, 48.8337519 2.3264533, 48.8330778 2.3268974, 48.8663636 2.4020052, 48.8514912 2.3706641, 48.8314753 2.3212955, 48.8275165 2.3222495, 48.8334969 2.3204507, 48.8509826 2.3348581, 48.8338228 2.3257312, 48.8287686 2.3270872, 48.8398181 2.3539553, 48.8434500 2.3162551, 48.8520914 2.3457231, 48.8520498 2.3471195, 48.8506800 2.3408743, 48.8469926 2.3443789, 48.8284834 2.3390838, 48.8426154 2.3558949, 48.8335095 2.3583707, 48.8812606 2.3199181, 48.8520894 2.3359481, 48.8782451 2.3776203, 48.8816607 2.3795479, 48.8395681 2.3430437, 48.8370175 2.3399282, 48.8381233 2.3381623, 48.8377272 2.3337065, 48.8407613 2.3287967, 48.8412235 2.3288167, 48.8503229 2.3719619, 48.8371308 2.3201049, 48.8354145 2.3186821, 48.8308623 2.3104632, 48.8294209 2.3117338, 48.8282417 2.3124366, 48.8318593 2.3321176, 48.8448556 2.3266825, 48.8318902 2.3371638, 48.8273372 2.3438244, 48.8279649 2.3334629, 48.8227046 2.3325473, 48.8226277 2.3314456, 48.8264157 2.3400743, 48.8244538 2.3424960, 48.8299282 2.3426712, 48.8232102 2.3460360, 48.8250953 2.3487033, 48.8225891 2.3514200, 48.8233729 2.3520348, 48.8495037 2.3387231, 48.8263831 2.3518343, 48.8238254 2.3603106, 48.8490369 2.3777473, 48.8408530 2.3097088, 48.8406966 2.3089635, 48.8710842 2.4098080, 48.8419046 2.4066858, 48.8867960 2.3430272, 48.8336334 2.3956971, 48.8867143 2.3420696, 48.8430010 2.3073788, 48.8829020 2.3533116, 48.8468373 2.3601741, 48.8502092 2.3467124, 48.8500305 2.3469692, 48.8580159 2.4337027, 48.8366699 2.3085489, 48.8366318 2.3091017, 48.8360434 2.3091487, 48.8505880 2.3262612, 48.8399309 2.3505124, 48.8573272 2.3231557, 48.8457219 2.3091127, 48.8291963 2.3484434, 48.8341327 2.3354992, 48.8815039 2.3596777, 48.8254771 2.3560232, 48.8852759 2.3287719, 48.8853098 2.3300207, 48.8934254 2.3502251, 48.8715666 2.3690395, 48.8421078 2.3399259, 48.8753514 2.3391367, 48.8764338 2.3389235, 48.8292274 2.3144138, 48.8603535 2.3450738, 48.8691578 2.3873215, 48.8343403 2.3469900, 48.8573070 2.4005727, 48.8563515 2.4015439, 48.8488289 2.3520343, 48.8738281 2.3676232, 48.8780842 2.3672167, 48.8399853 2.4354878, 48.8720076 2.3153410, 48.8719347 2.3252557, 48.8920793 2.3444293, 48.8301022 2.3731882, 48.8514133 2.3453539, 48.8647293 2.3437855, 48.8799231 2.4029140, 48.8102596 2.3537170, 48.8955599 2.3923240, 48.8226001 2.3745365, 48.8970228 2.3778045, 48.8616725 2.3400056, 48.8865460 2.3987110, 48.8873261 2.3987992, 48.8818390 2.3949630, 48.8840066 2.4076010, 48.8397989 2.3483799, 48.8335588 2.3347973, 48.8176077 2.3331498, 48.8627769 2.3619724, 48.8793754 2.4181907, 48.8659943 2.3934446, 48.8743552 2.4101245, 48.8324637 2.3583124, 48.8459148 2.3453004, 48.8467486 2.3457052, 48.8464858 2.3468868, 48.8931401 2.3450441, 48.8439535 2.4265211, 48.8915823 2.3442872, 48.8487976 2.3453788, 48.8393007 2.4098962, 48.8373806 2.3847107, 48.8487087 2.3407361, 48.8521927 2.3428836, 48.8527859 2.3429879, 48.8460121 2.3936785, 48.8472608 2.3915475, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8939404 2.3440201, 48.8939717 2.3760943, 48.8927211 2.3719123, 48.8765093 2.3967201, 48.8770270 2.3963669, 48.8478738 2.3417683, 48.8512137 2.3425994, 48.8444725 2.3494231, 48.8489020 2.3780492, 48.8653656 2.3326546, 48.8462135 2.3676679, 48.8477461 2.3511419, 48.8465377 2.3511741, 48.8611834 2.4213949, 48.8491582 2.3503166, 48.8586522 2.4048512, 48.8334812 2.3848250, 48.8533726 2.3431427, 48.8534537 2.3432406, 48.8948811 2.3753138, 48.8931565 2.3752173, 48.8949298 2.3437869, 48.8881098 2.3937511, 48.8527860 2.3433192, 48.8527117 2.3434535, 48.8677409 2.4118097, 48.8553095 2.3668811, 48.8554490 2.3650796, 48.8553288 2.3657869, 48.8559134 2.3652568, 48.8557971 2.3659661, 48.8773026 2.3313881, 48.8796581 2.3337601, 48.8733469 2.3471633, 48.8453078 2.3279727, 48.8447303 2.3253916, 48.8296365 2.3191749, 48.8271977 2.3186334, 48.8445554 2.3918219, 48.8477056 2.3937576, 48.8530475 2.3402841, 48.8606366 2.3480234, 48.8428465 2.3450125, 48.8836733 2.4010511, 48.8480538 2.4084830, 48.8577970 2.3462635, 48.8572971 2.3480529, 48.8543637 2.3467385, 48.8556673 2.3468212, 48.8546261 2.3488485, 48.8934185 2.3476012, 48.8541008 2.3508942, 48.8634023 2.3451770, 48.8600412 2.3413119, 48.8595023 2.3413445, 48.8610303 2.3411379, 48.8397717 2.3041709, 48.8603630 2.3385405, 48.8628813 2.3500673, 48.8631053 2.3482929, 48.8640121 2.3431386, 48.8648399 2.3394096, 48.8627063 2.3387713, 48.8621731 2.3396914, 48.8635375 2.3361930, 48.8661384 2.3376341, 48.8646150 2.3358501, 48.8656383 2.3355496, 48.8473922 2.3048904, 48.8648403 2.3335688, 48.8674454 2.3255009, 48.8671208 2.3252153, 48.8700303 2.3244833, 48.8637900 2.3251989, 48.8675585 2.3352443, 48.8683542 2.3354770, 48.8679678 2.3355626, 48.8672834 2.3384559, 48.8711116 2.3378434, 48.8701314 2.3413473, 48.8667351 2.3405908, 48.8667853 2.3409551, 48.8720314 2.3317296, 48.8678404 2.3435108, 48.8677111 2.3436135, 48.8666855 2.3458176, 48.8667840 2.3448980, 48.8643844 2.3481707, 48.8659951 2.3472997, 48.8650604 2.3489492, 48.8673100 2.3491813, 48.8695324 2.3500407, 48.8694649 2.3483472, 48.8515255 2.3585434, 48.8512807 2.3575810, 48.8513292 2.3571102, 48.8513403 2.3568073, 48.8465485 2.3480584, 48.8468635 2.3476036, 48.8464522 2.3499137, 48.8473759 2.3481729, 48.8477242 2.3463368, 48.8471642 2.3459531, 48.8473765 2.3454667, 48.8483547 2.3477114, 48.8494880 2.3471975, 48.8566586 2.3502382, 48.8555103 2.3547440, 48.8605119 2.3524278, 48.8552378 2.3565856, 48.8545545 2.3582739, 48.8547107 2.3575542, 48.8561321 2.3560085, 48.8590777 2.3508458, 48.8609964 2.3511217, 48.8590241 2.3528243, 48.8596787 2.3549361, 48.8578675 2.3554896, 48.8580098 2.3551110, 48.8420784 2.3551117, 48.8589606 2.3577912, 48.8588712 2.3563977, 48.8593244 2.3572169, 48.8566620 2.3563500, 48.8581282 2.3585957, 48.8576958 2.3602417, 48.8577535 2.3591589, 48.8445132 2.3434493, 48.8446816 2.3425888, 48.8443593 2.3424477, 48.8568692 2.3618963, 48.8554458 2.3617217, 48.8559322 2.3606794, 48.8568692 2.3619825, 48.8557916 2.3618145, 48.8546118 2.3614419, 48.8441668 2.3441509, 48.8440444 2.3424842, 48.8438850 2.3436873, 48.8417082 2.3448259, 48.8421678 2.3473559, 48.8336577 2.3758171, 48.8478828 2.3449481, 48.8537719 2.3404642, 48.8538923 2.3602235, 48.8547299 2.3588397, 48.8544250 2.3606301, 48.8542205 2.3613106, 48.8533256 2.3598269, 48.8536180 2.3593838, 48.8517793 2.3624850, 48.8520858 2.3630147, 48.8530912 2.3629578, 48.8535551 2.3630510, 48.8531446 2.3665394, 48.8533048 2.3662366, 48.8530036 2.3653999, 48.8502323 2.3636287, 48.8497131 2.3627878, 48.8641131 2.3524347, 48.8654907 2.3542912, 48.8660191 2.3548825, 48.8665653 2.3534157, 48.8677538 2.3619057, 48.8669084 2.3599230, 48.8669283 2.3571354, 48.8661006 2.3605374, 48.8640009 2.3580845, 48.8514658 2.3409145, 48.8635084 2.3550623, 48.8628103 2.3567784, 48.8422077 2.3499509, 48.8410206 2.3476178, 48.8652347 2.3615395, 48.8460037 2.3443315, 48.8428826 2.3467101, 48.8648535 2.3638937, 48.8455024 2.3479009, 48.8495056 2.3411744, 48.8525619 2.3404829, 48.8638757 2.3617724, 48.8618121 2.3636118, 48.8608482 2.3604976, 48.8605513 2.3604636, 48.8593690 2.3611919, 48.8587098 2.3604486, 48.8576812 2.3627207, 48.8599672 2.3652140, 48.8584483 2.3650666, 48.8641419 2.3059394, 48.8408224 2.3556248, 48.8581239 2.4179280, 48.8394063 2.3388487, 48.8405270 2.3419263, 48.8410301 2.3394202, 48.8436908 2.3411284, 48.8377612 2.3526960, 48.8388681 2.3562783, 48.8389698 2.3465251, 48.8540956 2.3386733, 48.8568441 2.3371043, 48.8539667 2.3343780, 48.8553564 2.3319123, 48.8547259 2.3309615, 48.8542202 2.3326051, 48.8171104 2.3592722, 48.8205367 2.3517228, 48.8187381 2.3603132, 48.8274460 2.3845706, 48.8270153 2.3831548, 48.8277005 2.3804733, 48.8281345 2.3815668, 48.8289309 2.3834096, 48.8292817 2.3818329, 48.8299525 2.3812989, 48.8341301 2.3741390, 48.8324542 2.3754823, 48.8347819 2.3752986, 48.8324684 2.3762548, 48.8331207 2.3774143, 48.8356931 2.3735362, 48.8524015 2.3378046, 48.8284748 2.4153547, 48.8305866 2.4133509, 48.8269740 2.4220432, 48.8338090 2.4106889, 48.8310494 2.4086736, 48.8482401 2.3355377, 48.8472258 2.3389643, 48.8480293 2.3335576, 48.8462040 2.3345315, 48.8474005 2.3405897, 48.8464818 2.3340282, 48.8450832 2.3387297, 48.8484960 2.3353412, 48.8487894 2.3398575, 48.8499369 2.3334247, 48.8506119 2.3322896, 48.8709159 2.3488390, 48.8808624 2.3661835, 48.8798953 2.3658018, 48.8748621 2.3640685, 48.8690687 2.3568989, 48.8714289 2.3586492, 48.8725005 2.3637491, 48.8765155 2.3697729, 48.8789795 2.3519205, 48.8745975 2.3638853, 48.8804816 2.3601906, 48.8835038 2.3500486, 48.8758832 2.3621672, 48.8707111 2.3526824, 48.8742511 2.3562294, 48.8739698 2.3502828, 48.8747740 2.3583086, 48.8740835 2.3661993, 48.8769232 2.3550372, 48.8785401 2.3503089, 48.8690852 2.3564359, 48.8688927 2.3619774, 48.8700417 2.3629456, 48.8778905 2.3549883, 48.8802394 2.3662696, 48.8707439 2.3581854, 48.8813655 2.3677357, 48.8715401 2.3682094, 48.8718061 2.3577803, 48.8714724 2.3582382, 48.8724583 2.3622962, 48.8791694 2.3579809, 48.8712435 2.3585129, 48.8772979 2.3532928, 48.8759967 2.3763509, 48.8756563 2.3893068, 48.8825024 2.3773488, 48.8777778 2.3969518, 48.8798650 2.3717611, 48.8765775 2.3738107, 48.8840257 2.3785053, 48.8810534 2.3798892, 48.8807650 2.3809540, 48.8782864 2.4003329, 48.8808497 2.3766792, 48.8772540 2.3793034, 48.8839180 2.3908306, 48.8805352 2.3776953, 48.8785984 2.4069505, 48.8875554 2.3932245, 48.8766581 2.3845776, 48.8792584 2.4027040, 48.8803350 2.3915400, 48.8832602 2.3897914, 48.8888014 2.3950208, 48.8825097 2.3726639, 48.8777119 2.3829769, 48.8789480 2.3975957, 48.8772899 2.4044967, 48.8763922 2.3924421, 48.8827773 2.3720907, 48.8768476 2.4045269, 48.8823771 2.3827729, 48.8837520 2.3770262, 48.8833592 2.3837676, 48.8758353 2.3818821, 48.8793280 2.4092495, 48.8782636 2.3938847, 48.8825699 2.3942478, 48.8794623 2.3748343, 48.8768300 2.4049587, 48.8749512 2.3758843, 48.8835228 2.3900932, 48.8775012 2.4053652, 48.8872961 2.3884532, 48.8791033 2.4067884, 48.8762900 2.3881904, 48.8491305 2.3324247, 48.8511246 2.3315183, 48.8485200 2.3302805, 48.8490897 2.3313163, 48.8567549 2.3296065, 48.8564112 2.3276604, 48.8616442 2.3214269, 48.8830027 2.3819053, 48.8573070 2.3722448, 48.8573667 2.3785302, 48.8612993 2.3760466, 48.8679659 2.3772772, 48.8580028 2.3886404, 48.8698301 2.3789769, 48.8532758 2.3834775, 48.8488552 2.3942325, 48.8681170 2.3702881, 48.8556092 2.3748547, 48.8514007 2.3806923, 48.8489972 2.3942887, 48.8559242 2.3763609, 48.8582151 2.3817585, 48.8505758 2.3948498, 48.8617208 2.3870510, 48.8492288 2.3982130, 48.8687241 2.3739555, 48.8494165 2.3948501, 48.8667240 2.3744593, 48.8644022 2.3721640, 48.8690173 2.3800602, 48.8700142 2.3783921, 48.8587211 2.3792589, 48.8557998 2.3744188, 48.8620888 2.3721843, 48.8653480 2.3824511, 48.8616901 2.3768726, 48.8558974 2.3697016, 48.8691228 2.3722077, 48.8542270 2.3701448, 48.8651182 2.3816942, 48.8474963 2.3314096, 48.8433347 2.3291923, 48.8437015 2.3290857, 48.8440002 2.3289984, 48.8426659 2.3293835, 48.8441827 2.3289470, 48.8415376 2.3358192, 48.8422410 2.3360535, 48.8431501 2.3350178, 48.8439005 2.3362100, 48.8431501 2.3350178, 48.8424034 2.3353369, 48.8439412 2.3345941, 48.8413149 2.3345125, 48.8898926 2.3938223, 48.8841890 2.3721826, 48.8920038 2.3925843, 48.8942221 2.3932346, 48.8922574 2.3897916, 48.8863782 2.3808169, 48.8909125 2.3908221, 48.8884371 2.3696348, 48.8893083 2.3797923, 48.8922985 2.3808600, 48.8962335 2.3812698, 48.8869224 2.3699944, 48.8849786 2.3714049, 48.8878800 2.3695448, 48.8942892 2.3857311, 48.8914135 2.3730389, 48.8945682 2.3886565, 48.8434562 2.3271121, 48.8459170 2.3271128, 48.8544027 2.3283123, 48.8542728 2.3281460, 48.8538921 2.3290895, 48.8536841 2.3296836, 48.8523494 2.3282306, 48.8523092 2.3254287, 48.8583168 2.3192030, 48.8555836 2.3125833, 48.8581172 2.3158825, 48.8602703 2.3166848, 48.8591272 2.3154598, 48.8569650 2.3210744, 48.8589684 2.3183256, 48.8659254 2.3169572, 48.8661998 2.3078190, 48.8673922 2.3186960, 48.8692220 2.3131336, 48.8687177 2.3137578, 48.8679417 2.3153003, 48.8695579 2.3118828, 48.8709019 2.3121795, 48.8701045 2.3177100, 48.8706191 2.3164188, 48.8702691 2.3171729, 48.8700842 2.3190066, 48.8677416 2.3203787, 48.8708055 2.3203157, 48.8100412 2.3634094, 48.8151095 2.3628203, 48.8088380 2.3604124, 48.8100632 2.3609788, 48.8155498 2.3629729, 48.8123026 2.3568486, 48.8148368 2.3592517, 48.8152863 2.3634838, 48.8144345 2.3595949, 48.8709936 2.3196146, 48.8730514 2.3192651, 48.8712384 2.3204914, 48.8732220 2.3198534, 48.8719889 2.3172447, 48.8568281 2.3240933, 48.8564528 2.3218645, 48.8731641 2.3135886, 48.8762173 2.3188580, 48.8736950 2.3227605, 48.8763793 2.3198786, 48.8764436 2.3227714, 48.8812617 2.3221621, 48.8800310 2.3248307, 48.8799532 2.3249230, 48.8824166 2.3254431, 48.8815247 2.3258345, 48.8789360 2.3180062, 48.8794612 2.3161827, 48.8774812 2.3175782, 48.8773895 2.3113057, 48.8558406 2.3181691, 48.8565374 2.3198863, 48.8575952 2.3162844, 48.8549799 2.3152238, 48.8546938 2.3151617, 48.8536065 2.3189265, 48.8547914 2.3184454, 48.8544394 2.3206610, 48.8542063 2.3220164, 48.8516333 2.3163937, 48.8733405 2.3105570, 48.8747817 2.3090619, 48.8735777 2.3103416, 48.8506595 2.3134348, 48.8488137 2.3112580, 48.8490218 2.3095386, 48.8621157 2.3068946, 48.8622054 2.3113147, 48.8620107 2.3121034, 48.8620503 2.3077703, 48.8614652 2.3112185, 48.8598324 2.3057047, 48.8596683 2.3051766, 48.8588398 2.3009565, 48.8616921 2.3017708, 48.8586530 2.3014966, 48.8718575 2.3096862, 48.8745552 2.3434968, 48.8726368 2.3332498, 48.8733021 2.3461422, 48.8724832 2.3412640, 48.8713411 2.3335897, 48.8753730 2.3307359, 48.8745162 2.3280282, 48.8810211 2.3277299, 48.8783949 2.3273509, 48.8839359 2.3295920, 48.8784480 2.3305067, 48.8794555 2.3310828, 48.8668072 2.3074982, 48.8669466 2.3052755, 48.8661724 2.3095553, 48.8654950 2.3060890, 48.8657975 2.3070013, 48.8650070 2.3052518, 48.8755092 2.3364892, 48.8757852 2.3369238, 48.8761055 2.3425645, 48.8775032 2.3443702, 48.8775832 2.3381108, 48.8769406 2.3357171, 48.8788350 2.3363565, 48.8781775 2.3370777, 48.8791560 2.3349351, 48.8784814 2.3330760, 48.8786912 2.3329642, 48.8795687 2.3340594, 48.8580739 2.3032200, 48.8577998 2.3083264, 48.8574433 2.3080496, 48.8704391 2.4036853, 48.8654752 2.3969034, 48.8675540 2.4033383, 48.8733663 2.3980536, 48.8707745 2.4031842, 48.8664725 2.3994200, 48.8660241 2.3891973, 48.8726445 2.3819387, 48.8667184 2.3845734, 48.8672697 2.4082129, 48.8700810 2.3939859, 48.8721527 2.4039954, 48.8742474 2.3915343, 48.8692103 2.4060250, 48.8698708 2.3894444, 48.8759531 2.4058126, 48.8707470 2.3890101, 48.8737162 2.3989845, 48.8653099 2.3994450, 48.8741661 2.4028427, 48.8680477 2.3881885, 48.8686123 2.3874807, 48.8717538 2.3778592, 48.8768273 2.4061935, 48.8705165 2.3847431, 48.8706464 2.4029603, 48.8700069 2.3917127, 48.8680271 2.3944885, 48.8677442 2.4064420, 48.8711699 2.3828334, 48.8680108 2.3891033, 48.8661973 2.3852926, 48.8531996 2.4008117, 48.8629172 2.4032881, 48.8635111 2.4000883, 48.8610622 2.4083874, 48.8605116 2.4040387, 48.8594997 2.4020465, 48.8486664 2.4060717, 48.8570749 2.3987484, 48.8552365 2.3979568, 48.8612544 2.3928969, 48.8632403 2.4057584, 48.8527000 2.4007320, 48.8646263 2.3995431, 48.8643045 2.3993897, 48.8645555 2.3990625, 48.8644181 2.3973216, 48.8604193 2.4117833, 48.8591060 2.4071931, 48.8603726 2.4048020, 48.8582173 2.3974031, 48.8551420 2.4074493, 48.8940614 2.3981408, 48.8853542 2.4002846, 48.8849968 2.4010811, 48.8833482 2.4078477, 48.8829139 2.4028574, 48.8859819 2.4028046, 48.8783976 2.4232741, 48.8799172 2.4243102, 48.8797989 2.4242101, 48.8792217 2.4226421, 48.8793528 2.4158838, 48.8797616 2.4230673, 48.8810422 2.4188889, 48.8789212 2.4225945, 48.8803531 2.4243624, 48.8779107 2.4115571, 48.8806144 2.4138073, 48.8804704 2.4244582, 48.8823482 2.4217766, 48.8800161 2.4241722, 48.8817441 2.4200451, 48.8798835 2.4146440, 48.8856358 2.3793460, 48.8456516 2.3465029, 48.8851079 2.3221911, 48.8829281 2.3226645, 48.8845147 2.3220414, 48.8848055 2.3225753, 48.8852691 2.3273520, 48.8840983 2.3280005, 48.8871826 2.3279620, 48.8759086 2.3531702, 48.8757690 2.3542850, 48.8207874 2.3600379, 48.8207569 2.3696364, 48.8459792 2.4034956, 48.8449899 2.4047731, 48.8744385 2.3603136, 48.8790683 2.3500223, 48.8748204 2.3650641, 48.8440793 2.3007675, 48.8455404 2.3039588, 48.8449008 2.3028262, 48.8473426 2.3154628, 48.8886235 2.3400506, 48.8762997 2.3671483, 48.8774278 2.3664806, 48.8769307 2.3675682, 48.8753137 2.3745206, 48.8464207 2.3056421, 48.8452635 2.3065475, 48.8445961 2.3062818, 48.8918931 2.3366089, 48.8916829 2.3361699, 48.8916676 2.3364729, 48.8831627 2.3434328, 48.8843322 2.3316646, 48.8852591 2.3385563, 48.8834404 2.3424447, 48.8830878 2.3430268, 48.8842431 2.3378793, 48.8872369 2.3361985, 48.8429738 2.4063211, 48.8425509 2.4150533, 48.8428482 2.4072159, 48.8860532 2.3549746, 48.8852850 2.3516529, 48.8873605 2.3541200, 48.8862437 2.3524630, 48.8885339 2.3563367, 48.8442314 2.3972578, 48.8424786 2.3972916, 48.8887487 2.3533400, 48.8430526 2.3911051, 48.8438364 2.3903215, 48.8433066 2.3847100, 48.8453062 2.3897015, 48.8465201 2.3909177, 48.8464060 2.3874300, 48.8446697 2.3887600, 48.8950630 2.3500907, 48.8937115 2.3499835, 48.8949881 2.3515874, 48.8943495 2.3510361, 48.8346716 2.3947154, 48.8354779 2.3981863, 48.8377888 2.3934620, 48.8408375 2.3874300, 48.8475646 2.3844791, 48.8476359 2.3834813, 48.8501423 2.3827526, 48.8493084 2.3782105, 48.8495759 2.3775495, 48.8499033 2.3749234, 48.8480847 2.3771241, 48.8447461 2.3682946, 48.8413908 2.3722764, 48.8363395 2.3879989, 48.8363209 2.3872317, 48.8313947 2.3887948, 48.8313842 2.3453082, 48.8353282 2.3443622, 48.8324841 2.3481040, 48.8336874 2.3510049, 48.8340937 2.3527776, 48.8336219 2.3537795, 48.8363739 2.3491795, 48.8337431 2.3536971, 48.8360232 2.3500303, 48.8330343 2.3541878, 48.8347313 2.3458453, 48.8355227 2.3484624, 48.8300981 2.3497071, 48.8816137 2.3678619, 48.8741592 2.3523399, 48.8709868 2.3539752, 48.8282216 2.3502281, 48.8281048 2.3420248, 48.8280243 2.3513291, 48.8261636 2.3499910, 48.8303084 2.3537927, 48.8273857 2.3453119, 48.8302539 2.3536052, 48.8235980 2.3488324, 48.8232023 2.3480817, 48.8230296 2.3485201, 48.8255087 2.3537284, 48.8318443 2.3578147, 48.8330311 2.3559118, 48.8373800 2.3594717, 48.8374878 2.3592366, 48.8334901 2.3548903, 48.8369808 2.3616318, 48.8378854 2.3611545, 48.8351835 2.3533874, 48.8352545 2.3669997, 48.8389393 2.3641414, 48.8325517 2.3555391, 48.8381409 2.3592686, 48.8279080 2.3671721, 48.8228260 2.3656656, 48.8278250 2.3617461, 48.8319646 2.3639719, 48.8223014 2.3642343, 48.8243944 2.3698335, 48.8214938 2.3626350, 48.8314555 2.3593311, 48.8298280 2.3683033, 48.8332049 2.3674474, 48.8264091 2.3707059, 48.8255377 2.3755671, 48.8213641 2.3630210, 48.8285287 2.3620065, 48.8204187 2.3630912, 48.8288263 2.3665943, 48.8289425 2.3568654, 48.8251059 2.3629462, 48.8312041 2.3702611, 48.8297466 2.3673757, 48.8172877 2.3936138, 48.8195986 2.3967955, 48.8189408 2.3729378, 48.8156403 2.3741378, 48.8177633 2.3719943, 48.8126062 2.3776044, 48.8107354 2.3834282, 48.8141243 2.3773466, 48.8142641 2.3778953, 48.8161029 2.3946880, 48.8109596 2.3828637, 48.8141439 2.3952231, 48.8179649 2.3755932, 48.8139289 2.3888859, 48.8117505 2.3768962, 48.8181033 2.3755390, 48.8126076 2.3864890, 48.8116281 2.3880471, 48.8168660 2.3942540, 48.8163980 2.3941788, 48.8174654 2.3950189, 48.8342311 2.3345129, 48.8373961 2.3307530, 48.8429503 2.3255308, 48.8388397 2.3227192, 48.8320894 2.3350179, 48.8300730 2.3263037, 48.8295683 2.3277744, 48.8370539 2.3220176, 48.8361561 2.3231047, 48.8369184 2.3203414, 48.8294977 2.3226115, 48.8327851 2.3211151, 48.8350181 2.3229459, 48.8359370 2.3170768, 48.8332731 2.3154936, 48.8343750 2.3166882, 48.8315293 2.3138951, 48.8256327 2.3320576, 48.8274592 2.3274621, 48.8222354 2.3405407, 48.8263774 2.3402824, 48.8243640 2.3278423, 48.8222813 2.3365890, 48.8251835 2.3280702, 48.8264364 2.3398091, 48.8392359 2.3063319, 48.8430967 2.3047973, 48.8433657 2.3114422, 48.8435148 2.3087965, 48.8426176 2.3045363, 48.8412280 2.3124626, 48.8417016 2.3220312, 48.8439578 2.3133370, 48.8154777 2.3477956, 48.8154932 2.3515928, 48.8161597 2.3363231, 48.8133077 2.3458032, 48.8139826 2.3454287, 48.8146393 2.3489429, 48.8107971 2.3493081, 48.8141014 2.3475179, 48.8684042 2.4171067, 48.8719959 2.4252341, 48.8694342 2.4171859, 48.8687124 2.4169341, 48.8780805 2.4216411, 48.8565602 2.4165724, 48.8669518 2.4157723, 48.8568621 2.4163587, 48.8703094 2.4206940, 48.8926493 2.3939585, 48.8891291 2.3907548, 48.8895890 2.3922761, 48.8555569 2.4173211, 48.8594501 2.4339856, 48.8591250 2.4355886, 48.8541526 2.4180854, 48.8538772 2.4228563, 48.8538866 2.4211865, 48.8631858 2.4332983, 48.8569641 2.4290677, 48.8580715 2.4353137, 48.8492868 2.4277484, 48.8583096 2.4323016, 48.8546756 2.4213000, 48.8708239 2.3060540, 48.8167661 2.3285350, 48.8525069 2.4370059, 48.8464031 2.4316868, 48.8480265 2.4191578, 48.8494565 2.4324623, 48.8435807 2.4307677, 48.8476023 2.4344021, 48.8441230 2.3564135, 48.8421743 2.3612670, 48.8913410 2.3603495, 48.8945529 2.3635758, 48.8872133 2.3667612, 48.8909628 2.3615359, 48.8913834 2.3652307, 48.8928326 2.3611571, 48.8821604 2.3189011, 48.8824285 2.3187962, 48.8391686 2.3109456, 48.8768428 2.4045271, 48.8771585 2.4055681, 48.8778084 2.4030780, 48.8798326 2.3738931, 48.8353031 2.3389057, 48.8387179 2.3348410, 48.8538919 2.4083840, 48.8558123 2.3528997, 48.8562804 2.3531597, 48.8385454 2.3357931, 48.8487775 2.3737984, 48.8421105 2.3436246, 48.8484110 2.3432090, 48.8439710 2.3453279, 48.8695357 2.3416876, 48.8694697 2.3420289, 48.8696274 2.3412758, 48.8430840 2.3403551, 48.8463229 2.3505900, 48.8438126 2.3454672, 48.8430406 2.3457249, 48.8436918 2.3436451, 48.8407370 2.3407878, 48.8410188 2.3409683, 48.8388621 2.3550275, 48.8573938 2.3095174, 48.8620392 2.3077582, 48.8618590 2.3069789, 48.8626465 2.3146531, 48.8624628 2.3173680, 48.8518519 2.3229864, 48.8517794 2.3223521, 48.8527787 2.3157527, 48.8527385 2.3177505, 48.8573407 2.3204463, 48.8499446 2.3217861, 48.8494123 2.3176366, 48.8465734 2.3127269, 48.8792974 2.3420206, 48.8813464 2.3391817, 48.8677573 2.3108853, 48.8660959 2.3165080, 48.8460758 2.3058827, 48.8416104 2.3878997, 48.8644630 2.4007592, 48.8453035 2.3166071, 48.8452805 2.3165425, 48.8451240 2.3151945, 48.8435383 2.3128395, 48.8798754 2.3582529, 48.8262227 2.3303813, 48.8837717 2.3316956, 48.8915499 2.3605260, 48.8550018 2.3125388, 48.8707520 2.3995332, 48.8827153 2.3641480, 48.8784387 2.3649003, 48.8822652 2.3624986, 48.8814241 2.3625297, 48.8689638 2.3733836, 48.8844782 2.3868316, 48.8647054 2.3809051, 48.8675953 2.3744039, 48.8676853 2.3721562, 48.8632870 2.3824074, 48.8453920 2.3132117, 48.8449041 2.3110205, 48.8452225 2.3155627, 48.8477097 2.3117779, 48.8477196 2.3115767, 48.8480472 2.3947692, 48.8529554 2.3813914, 48.8530153 2.3811684, 48.8786894 2.3257337, 48.8685611 2.3053115, 48.8255156 2.3392912, 48.8519843 2.3866965, 48.8488474 2.3783714, 48.8871565 2.3617049, 48.8273896 2.3281103, 48.8325436 2.3237291, 48.8331839 2.3259257, 48.8279878 2.3254484, 48.8414406 2.3468844, 48.8311720 2.3517200, 48.8338878 2.3397983, 48.8485322 2.3824733, 48.8401462 2.3775676, 48.8552909 2.3565856, 48.8544752 2.3607477, 48.8412904 2.3514244, 48.8447360 2.3478715, 48.8473182 2.3484905, 48.8408215 2.3882583, 48.8406761 2.3933858, 48.8357713 2.3875769, 48.8485627 2.3866691, 48.8440841 2.4014301, 48.8443144 2.4020119, 48.8853349 2.3222678, 48.8786479 2.3169150, 48.8748230 2.3276144, 48.8434609 2.4122583, 48.8552361 2.3583063, 48.8550674 2.3546987, 48.8457500 2.3510261, 48.8361628 2.4101190, 48.8381748 2.3976367, 48.8362030 2.3955646, 48.8351978 2.3967217, 48.8533080 2.4010815, 48.8624814 2.3328854, 48.8601441 2.4200508, 48.8786978 2.3497467, 48.8808791 2.3486190, 48.8789469 2.3509225, 48.8782082 2.3485824, 48.8543462 2.3467503, 48.8252592 2.4120396, 48.8297549 2.3118834, 48.8875038 2.3421102, 48.8351793 2.3380648, 48.8524830 2.4248592, 48.8671802 2.3504651, 48.8618634 2.4100811, 48.8670146 2.3438358, 48.8602828 2.3469501, 48.8422835 2.3705897, 48.8489252 2.3299898, 48.8285554 2.3778229, 48.8219001 2.4047422, 48.8433630 2.3993165, 48.8790892 2.3528060, 48.8788393 2.3527377, 48.8778096 2.3307598, 48.8267003 2.4022882, 48.8265228 2.4020725, 48.8436332 2.4194524, 48.8251370 2.3245043, 48.8922752 2.3437961, 48.8940337 2.3446352, 48.8565315 2.3918695, 48.8819684 2.3432262, 48.8306327 2.3612256, 48.8834296 2.3531464, 48.8763644 2.3529474, 48.8743441 2.3510936, 48.8703281 2.3630771, 48.8490871 2.3236292, 48.8432370 2.4191274, 48.8432203 2.4194678, 48.8395437 2.4170098, 48.8397820 2.4149747, 48.8587767 2.3184504, 48.8614879 2.3185384, 48.8571293 2.3338018, 48.8483320 2.3530750, 48.8484974 2.3526026, 48.8427186 2.3626495, 48.8456895 2.3527610, 48.8423716 2.3617786, 48.8476188 2.3419587, 48.8908265 2.3499846, 48.8437371 2.3505713, 48.8438952 2.3497958, 48.8382268 2.3465518, 48.8412736 2.3500786, 48.8441404 2.3412975, 48.8449937 2.3508032, 48.8486810 2.3514754, 48.8381596 2.3548607, 48.8440354 2.3463430, 48.8413879 2.3487400, 48.8681320 2.3278504, 48.8679626 2.3271739, 48.8573467 2.3302809, 48.8720061 2.3822431, 48.8700853 2.3873833, 48.8591092 2.4147190, 48.8565252 2.4147927, 48.8193310 2.4084705, 48.8276460 2.4021405, 48.8214365 2.4054340, 48.8230635 2.4129775, 48.8236705 2.4161685, 48.8270160 2.4018190, 48.8216505 2.4151570, 48.8261235 2.4051665, 48.8199820 2.4150210, 48.8222835 2.4103795, 48.8197180 2.4161270, 48.8230105 2.3975875, 48.8767410 2.3938898, 48.8769031 2.3945063, 48.8731814 2.3895118, 48.8763891 2.3888986, 48.8546361 2.3664076, 48.8575078 2.3253228, 48.8353795 2.3867511, 48.8911262 2.3327854, 48.8554191 2.3476608, 48.8537332 2.3481282, 48.8537755 2.3479955, 48.8536511 2.3483919, 48.8536920 2.3482598, 48.8438799 2.3318027, 48.8420711 2.3326418, 48.8429871 2.3328540, 48.8478667 2.3282802, 48.8454077 2.3290637, 48.8461736 2.3290387, 48.8447531 2.3305345, 48.8451935 2.3308145, 48.8455550 2.3306342, 48.8363194 2.3328942, 48.8300731 2.3686179, 48.8296826 2.3678744, 48.8357250 2.3472947, 48.8359728 2.3460923, 48.8317406 2.3472366, 48.8305748 2.3490624, 48.8315162 2.3466648, 48.8280267 2.3531166, 48.8279245 2.3535702, 48.8285259 2.3538430, 48.8271261 2.3526169, 48.8297241 2.3607269, 48.8301790 2.3615119, 48.8299064 2.3610277, 48.8363951 2.3566406, 48.8369504 2.3538779, 48.8884008 2.3334999, 48.8903822 2.3425462, 48.8534472 2.3516225, 48.8725069 2.3849536, 48.8721688 2.3856239, 48.8272224 2.3648210, 48.8225335 2.4132820, 48.8744105 2.3869092, 48.8741271 2.3869625, 48.8771245 2.3845139, 48.8775277 2.3849275, 48.8771261 2.3849300, 48.8773022 2.3857993, 48.8915917 2.3455768, 48.8913003 2.3447131, 48.8827842 2.3630058, 48.8254721 2.3329981, 48.8305444 2.3791758, 48.8763165 2.3427507, 48.8186425 2.4135582, 48.8125486 2.3878550, 48.8230146 2.4096740, 48.8937208 2.3515676, 48.8662682 2.3974540, 48.8415882 2.3994023, 48.8370947 2.3950913, 48.8374679 2.3944825, 48.8370759 2.3941218, 48.8710259 2.3902795, 48.8577583 2.3827298, 48.8571801 2.3768693, 48.8574467 2.3768468, 48.8556298 2.3730832, 48.8077063 2.3626064, 48.8381010 2.3148758, 48.8374220 2.3149466, 48.8683047 2.3853240, 48.8685446 2.3851922, 48.8775846 2.3766713, 48.8206949 2.4090773, 48.8473548 2.4318742, 48.8640100 2.3847026, 48.8228980 2.4048193, 48.8223730 2.4086225, 48.8469061 2.4334223, 48.8943791 2.3502329, 48.8822652 2.3624986, 48.8752853 2.3628019, 48.8752047 2.3623837, 48.8751608 2.3622161, 48.8752872 2.3628395, 48.8752880 2.3628798, 48.8751835 2.3622402, 48.8752137 2.3624236, 48.8752609 2.3621534, 48.8751891 2.3621520, 48.8751637 2.3621795, 48.8754027 2.3622483, 48.8753932 2.3622858, 48.8752263 2.3621430, 48.8753882 2.3625815, 48.8753547 2.3624293, 48.8753095 2.3626486, 48.8753959 2.3625353, 48.8753312 2.3626673, 48.8753820 2.3624394, 48.8752913 2.3626221, 48.8753978 2.3625014, 48.8753941 2.3624679, 48.8753604 2.3626580, 48.8269267 2.3621476, 48.8629572 2.4182375, 48.8866946 2.3663960, 48.8968701 2.3795734, 48.8461952 2.4318193, 48.8465374 2.4319275, 48.8463529 2.4273745, 48.8865278 2.3552444, 48.8857716 2.3541044, 48.8504347 2.4314438, 48.8610254 2.4043644, 48.8829422 2.3389787, 48.8827134 2.3392700, 48.8837950 2.3408773, 48.8547353 2.4047571, 48.8540245 2.4041009, 48.8531090 2.4041933, 48.8362746 2.3799012, 48.8548077 2.4024914, 48.8410576 2.3578991, 48.8379027 2.3622168, 48.8896006 2.3518695, 48.8900462 2.3528052, 48.8864490 2.3514284, 48.8536155 2.4272374, 48.8890423 2.3512616, 48.8304857 2.3687811, 48.8174246 2.3742341, 48.8128368 2.3764192, 48.8120404 2.3773825, 48.8148938 2.3807912, 48.8438184 2.3917913, 48.8437068 2.3928909, 48.8439659 2.3917683, 48.8450727 2.3568909, 48.8780035 2.3314460, 48.8778096 2.3307598, 48.8803348 2.3294897, 48.8774056 2.3403228, 48.8781707 2.3386731, 48.8267667 2.3461780, 48.8815116 2.3323814, 48.8359002 2.3851872, 48.8886875 2.3424733, 48.8889906 2.3376891, 48.8869431 2.3340831, 48.8463601 2.3221321, 48.8527181 2.3396862, 48.8527833 2.3410480, 48.8532112 2.3412359, 48.8417730 2.3427614, 48.8617532 2.3179590, 48.8618560 2.3159779, 48.8206480 2.3248645, 48.8768623 2.3691229, 48.8772883 2.3695438, 48.8771057 2.3693620, 48.8220818 2.3406030, 48.8128298 2.3994381, 48.8094512 2.3568109, 48.8287694 2.4142981, 48.8809374 2.3160134, 48.8807347 2.3164691, 48.8829009 2.4221515, 48.8811100 2.3337815, 48.8597264 2.3157312, 48.8557139 2.3217298, 48.8553446 2.3231883, 48.8785506 2.3181272, 48.8447796 2.3561187, 48.8845399 2.3422905, 48.8365860 2.4088069, 48.8834526 2.3381247, 48.8350302 2.3229459, 48.8864240 2.3585025, 48.8535383 2.3599226, 48.8891069 2.3528423, 48.8894333 2.3528954, 48.8383829 2.3526435, 48.8497046 2.3472459, 48.8499208 2.3484960, 48.8357495 2.4201011, 48.8518567 2.4315324, 48.8673886 2.3081022, 48.8598793 2.3418182, 48.8585468 2.3050047, 48.8586724 2.3043036, 48.8930516 2.3823863, 48.8734524 2.3184400, 48.8585495 2.3697593, 48.8551214 2.3667794, 48.8720448 2.3638224, 48.8269881 2.3813635, 48.8154257 2.3693478, 48.8880359 2.3475513, 48.8883050 2.3474950, 48.8914330 2.3583288, 48.8531376 2.3591975, 48.8534868 2.3580109, 48.8770568 2.3199182, 48.8922367 2.3349043, 48.8900253 2.3304354, 48.8829897 2.3212017, 48.8342316 2.3374870, 48.8340099 2.3429189, 48.8274884 2.3801293, 48.8290604 2.3809395, 48.8266865 2.3831325, 48.8721490 2.3074818, 48.8356655 2.3952828, 48.8309355 2.3188357, 48.8169801 2.3326668, 48.8171862 2.3326710, 48.8435052 2.3798226, 48.8739728 2.3816530, 48.8600229 2.4177244, 48.8099338 2.3549803, 48.8763148 2.3956363, 48.8764119 2.3969357, 48.8843112 2.3942965, 48.8774715 2.4094535, 48.8846727 2.3748818, 48.8450405 2.3861897, 48.8450429 2.3868906, 48.8816883 2.3771346, 48.8808497 2.3766792, 48.8815510 2.3750857, 48.8529376 2.3498716, 48.8668278 2.3572924, 48.8364952 2.3553473, 48.8632940 2.3461861, 48.8601711 2.3501538, 48.8755716 2.4302807, 48.8801143 2.3454788, 48.8799075 2.3455690, 48.8277981 2.3154241, 48.8279032 2.3155377, 48.8460593 2.4202742, 48.8491951 2.3058630, 48.8541404 2.4078003, 48.8298857 2.3251080, 48.8805161 2.3447973, 48.8618144 2.3501671, 48.8272177 2.3758665, 48.8771319 2.3510066, 48.8155707 2.3618421, 48.8311061 2.3707956, 48.8309407 2.3710819, 48.8773569 2.4091134, 48.8219955 2.3878984, 48.8662111 2.4021275, 48.8122006 2.3740480, 48.8123343 2.3762589, 48.8468517 2.4341743, 48.8909946 2.3627629, 48.8372824 2.3536632, 48.8373216 2.3574246, 48.8750669 2.3536609, 48.8692213 2.3188925, 48.8719584 2.3433543, 48.8686047 2.3172472, 48.8436840 2.4276811, 48.8219190 2.3244450, 48.8219850 2.3247398, 48.8219426 2.3245905, 48.8467850 2.3251369, 48.8462836 2.3235558, 48.8511937 2.3222055, 48.8296942 2.3584768, 48.8299997 2.3587358, 48.8299341 2.3586911, 48.8168230 2.3928886, 48.8286079 2.3568587, 48.8327500 2.3614988, 48.8278362 2.3125738, 48.8282836 2.3126823, 48.8280417 2.3131887, 48.8949881 2.3515874, 48.8955616 2.3520134, 48.8809350 2.3264027, 48.8090657 2.3819449, 48.8754439 2.4120443, 48.8773216 2.3529467, 48.8285767 2.3615644, 48.8293819 2.3669467, 48.8090347 2.3632916, 48.8947243 2.3931498, 48.8135760 2.3886946, 48.8932259 2.3829888, 48.8512194 2.3187772, 48.8522456 2.3181292, 48.8471019 2.3247687, 48.8470001 2.3226929, 48.8417737 2.3651037, 48.8125853 2.3763373, 48.8073168 2.3732555, 48.8522672 2.3477182, 48.8123506 2.3565837, 48.8383195 2.3374280, 48.8571958 2.3391696, 48.8431362 2.3363642, 48.8091478 2.3892131, 48.8102440 2.3887092, 48.8100329 2.3889998, 48.8778732 2.3448763, 48.8078587 2.3635380, 48.8089469 2.3605686, 48.8387116 2.3423289, 48.8160201 2.3517436, 48.8151473 2.3517766, 48.8154663 2.3525529, 48.8787317 2.3451434, 48.8639636 2.3365682, 48.8648781 2.3453619, 48.8654608 2.3452436, 48.8654581 2.3447052, 48.8680174 2.3629641, 48.8689660 2.3867820, 48.8664038 2.3589370, 48.8520802 2.3391533, 48.8521150 2.3390689, 48.8762399 2.3589688, 48.8582260 2.3619639, 48.8631176 2.3370916, 48.8911441 2.4016170, 48.8909995 2.4020035, 48.8508082 2.3229326, 48.8791134 2.3511109, 48.8864169 2.3618208, 48.8864340 2.3614342, 48.8558814 2.3436259, 48.8823814 2.3993385, 48.8944990 2.3592670, 48.8964589 2.3589627, 48.8527947 2.3434202, 48.8216373 2.3475784, 48.8330815 2.3668374, 48.8216584 2.3558548, 48.8812622 2.3574706, 48.8609269 2.3698207, 48.8424022 2.3750941, 48.8362418 2.3837098, 48.8576851 2.3638759, 48.8322980 2.3569968, 48.8385002 2.3585546, 48.8339976 2.3637695, 48.8464730 2.3488067, 48.8377337 2.3652831, 48.8281622 2.3666304, 48.8315682 2.3419531, 48.8623556 2.3500864, 48.8616089 2.3496811, 48.8621691 2.3497941, 48.8359536 2.3961945, 48.8369700 2.3923213, 48.8367414 2.3931438, 48.8365131 2.3940686, 48.8368162 2.3928761, 48.8367701 2.3930789, 48.8359858 2.3961013, 48.8364507 2.3941584, 48.8359582 2.3720488, 48.8501312 2.3265665, 48.8937959 2.3754227, 48.8311227 2.3287719, 48.8613752 2.3532868, 48.8310687 2.3580834, 48.8376458 2.3597357, 48.8377834 2.3597919, 48.8380568 2.3599624, 48.8844978 2.3727600, 48.8381491 2.3600725, 48.8386642 2.3604752, 48.8742587 2.3804890, 48.8341673 2.3359552, 48.8575005 2.3472864, 48.8371783 2.3183145, 48.8145327 2.3840043, 48.8214447 2.3591422, 48.8210623 2.3592593, 48.8119797 2.3874943, 48.8218804 2.3245575, 48.8527093 2.3602879, 48.8531920 2.3604680, 48.8530404 2.3610674, 48.8745907 2.3898579, 48.8534305 2.3611806, 48.8653830 2.3165628, 48.8296129 2.3926750, 48.8515079 2.3168432, 48.8882215 2.3616899, 48.8250915 2.3272543, 48.8693410 2.3746063, 48.8591586 2.3518205, 48.8889374 2.3632101, 48.8968807 2.3803671, 48.8969639 2.3803583, 48.8509181 2.3189475, 48.8542319 2.3268749, 48.8457364 2.3210560, 48.8592075 2.3037055, 48.8507795 2.3360424, 48.8570162 2.3089249, 48.8108721 2.3899672, 48.8206154 2.3475095, 48.8752457 2.3981892, 48.8827000 2.3887807, 48.8950879 2.3531779, 48.8902445 2.3700712, 48.8541664 2.3157121, 48.8541132 2.3157557, 48.8539619 2.3154328, 48.8540177 2.3153477, 48.8541884 2.3154181, 48.8541406 2.3153587, 48.8540042 2.3157232, 48.8539533 2.3156181, 48.8559512 2.3968571, 48.8519326 2.3362074, 48.8289311 2.3522542, 48.8290515 2.3543309, 48.8483103 2.4071371, 48.8773298 2.3590519, 48.8771212 2.3598815, 48.8774623 2.3585389, 48.8128779 2.3882875, 48.8118029 2.3877262, 48.8119848 2.3869608, 48.8123331 2.3876651, 48.8104708 2.3836750, 48.8785362 2.3899541, 48.8953032 2.3950120, 48.8146340 2.3862288, 48.8917906 2.3880857, 48.8804474 2.3717724, 48.8236528 2.3578565, 48.8294259 2.3490793, 48.8790551 2.3277605, 48.8735355 2.3941907, 48.8732271 2.3945941, 48.8759609 2.3987521, 48.8430807 2.3520816, 48.8503036 2.4003405, 48.8739041 2.3803935, 48.8848741 2.3903465, 48.8868864 2.3886278, 48.8141540 2.3817936, 48.8125256 2.3789216, 48.8150019 2.3823960, 48.8138255 2.3839438, 48.8182950 2.3790504, 48.8185151 2.3789924, 48.8182424 2.3792963, 48.8827947 2.3766007, 48.8791899 2.4159467, 48.8084189 2.3617428, 48.8765193 2.4054761, 48.8764855 2.4110985, 48.8795536 2.3888039, 48.8419025 2.3689354, 48.8418328 2.3267443, 48.8708153 2.3962847, 48.8690877 2.3940459, 48.8691603 2.3947196, 48.8693070 2.3944964, 48.8701494 2.3991414, 48.8712599 2.3980832, 48.8728892 2.3875476, 48.8713725 2.3876685, 48.8729646 2.3884918, 48.8850114 2.3914386, 48.8834688 2.3896341, 48.8831849 2.3891465, 48.8385749 2.3187258, 48.8702712 2.3823122, 48.8722797 2.3807151, 48.8718499 2.3804798, 48.8737574 2.3792665, 48.8775210 2.3961862, 48.8286377 2.3827691, 48.8619086 2.4076898, 48.8621437 2.4083353, 48.8625288 2.4074996, 48.8622745 2.4082713, 48.8387993 2.3824771, 48.8772523 2.3138827, 48.8832336 2.3770248, 48.8898779 2.3548839, 48.8682007 2.3776287, 48.8645929 2.3574911, 48.8423553 2.3450638, 48.8420396 2.3453568, 48.8416997 2.3451499, 48.8418628 2.3455995, 48.8416292 2.3454839, 48.8421950 2.3453702, 48.8424163 2.3444687, 48.8414902 2.3449983, 48.8778259 2.3969489, 48.8881806 2.3808335, 48.8782599 2.3873608, 48.8769600 2.3706426, 48.8748787 2.4038367, 48.8415610 2.3994713, 48.8955969 2.3451522, 48.8467200 2.3470841, 48.8782894 2.3331903, 48.8769906 2.3697835, 48.8596786 2.4069798, 48.8594021 2.3997394, 48.8601141 2.4028795, 48.8649288 2.3937547, 48.8642614 2.3918586, 48.8600166 2.4034662, 48.8513183 2.3726630, 48.8511850 2.3729689, 48.8584409 2.3999616, 48.8587442 2.3995311, 48.8586283 2.3998491, 48.8467973 2.4162423, 48.8772545 2.4007508, 48.8746784 2.4114959, 48.8814920 2.4234081, 48.8624222 2.3452825, 48.8815405 2.4234310, 48.8873550 2.3868767, 48.8672905 2.3881073, 48.8671749 2.3895295, 48.8675720 2.3882336, 48.8578750 2.3835897, 48.8458363 2.3888759, 48.8460746 2.3893660, 48.8463164 2.3899013, 48.8131691 2.3864703, 48.8711200 2.3063909, 48.8565883 2.3770985, 48.8580355 2.3622000, 48.8660080 2.3494045, 48.8564265 2.3525270, 48.8556537 2.3446071, 48.8664194 2.3321315, 48.8668152 2.3553741, 48.8648904 2.3619769, 48.8398451 2.3417030, 48.8563449 2.3387717, 48.8485531 2.3371422, 48.8703766 2.3166056, 48.8680414 2.3235560, 48.8798008 2.3249163, 48.8798182 2.3497802, 48.8499950 2.4366773, 48.8121167 2.3776573, 48.8927888 2.3646984, 48.8456220 2.4245835, 48.8673569 2.3780427, 48.8761075 2.3574980, 48.8931899 2.3643143, 48.8880610 2.3765878, 48.8553966 2.3450136, 48.8518176 2.3625735, 48.8484170 2.3908135, 48.8193348 2.3369542, 48.8469042 2.3571435, 48.8786169 2.3204526 +10 +yes +48.8756710 2.3261070, 48.8833658 2.3279263, 48.8604416 2.3503543, 48.8299110 2.3769622, 48.8692051 2.2839987, 48.8733783 2.3097112, 48.8835544 2.3321896, 48.8620454 2.3494700, 48.8671733 2.3471661, 48.8471103 2.2861907, 48.8736489 2.3149511, 48.8494586 2.2981124, 48.8589870 2.3482181, 48.8761646 2.3446559, 48.8509791 2.3426696 +yes +48.8345817 2.2682119, 48.8500136 2.3667732, 48.8681145 2.3380654, 48.8359896 2.2543613, 48.8648963 2.3741522, 48.8673891 2.3438562, 48.8967040 2.3381418, 48.8351044 2.3931231, 48.8461741 2.3758496, 48.8679797 2.3012890, 48.8765890 2.3553673, 48.8311173 2.3166315, 48.8680507 2.4015447, 48.8711850 2.4004090, 48.8758607 2.4010867, 48.8649034 2.3999292, 48.8372144 2.3529137, 48.8300678 2.3017796, 48.8279475 2.2677537, 48.8746753 2.3305365, 48.8280761 2.2982196, 48.8327631 2.3007414, 48.8361118 2.3069082, 48.8416104 2.2988863, 48.8302910 2.2937263, 48.8313277 2.2916043, 48.8317429 2.3726646, 48.8359742 2.3867660, 48.8519590 2.3400717, 48.8484401 2.3413672, 48.8589381 2.3504712, 48.8445443 2.3220878, 48.8217982 2.3682935, 48.8570291 2.3152687, 48.8459525 2.3549704, 48.8514526 2.3266647, 48.8531899 2.3355676, 48.8494503 2.3422354, 48.8600610 2.3493948, 48.8649810 2.2947036, 48.8650219 2.3030534, 48.8378229 2.3513432, 48.8434559 2.3050545, 48.8327500 2.3614988, 48.8754439 2.4120443 +20 +49.4333190 8.6867073, 49.4189644 8.6822373, 49.4199838 8.7597906, 49.4227392 8.5971994, 49.4313284 8.6416542, 49.3967496 8.6929283, 49.3758602 8.6941971, 49.4216061 8.6481916, 49.4437124 8.7590947, 49.4014041 8.6551906, 49.4213729 8.7461819, 49.3924724 8.6994716, 49.4143929 8.7631903, 49.3743420 8.6581351, 49.4078072 8.7077293, 49.4127417 8.7657609 +22 +56.1631627 -4.0361299, 56.0579055 -2.7157742, 56.3530826 -3.9635371, 55.8287678 -4.2703258, 56.3044702 -3.0869872, 55.8471806 -4.3930825, 56.1647483 -4.0417513, 55.8629358 -3.5615468, 56.0009229 -2.5146591, 55.9454585 -3.2689721 +142889 +1882 +yes +Royal Yacht Britannia, Talbot Rice Gallery, Prisoners of War Museum, Royal Scottish Academy, McCrea Gallery, Gallery, South Queensferry Museum, The Maltings, Museum on the Mound, Surgeon Hall Museum, National Museum of Scotland, National Museum of Scotland, The Queen's Gallery, St Cecilia's Hall, The Museum of Fire, The People's Story, Trinity Apse, Royal Botanic Garden Edinburgh - Herbarium & Library, Museum of Edinburgh, Writers' Museum +2.9914535290616175 +90 +49.4077140 8.6927035, 49.3855726 8.6640495, 49.4168625 8.6756639, 49.4068403 8.6904933, 49.4284156 8.6874863, 49.4302144 8.6880405, 49.4276933 8.6860070, 49.4315638 8.7010326, 49.4296821 8.6938275, 49.4306782 8.6925479, 49.4281154 8.6828785, 49.4302586 8.6908941, 49.4297762 8.6979174, 49.4309794 8.6977655, 49.4318269 8.7053464, 49.4300194 8.6994748, 49.4168759 8.6768373, 49.4127267 8.6759075, 49.4194980 8.6698006, 49.4191883 8.6668931, 49.4190627 8.6671538, 49.4195733 8.6753773, 49.4194276 8.6698926, 49.4172938 8.6611640, 49.4172721 8.6610628, 49.4187478 8.6629979, 49.4187979 8.6627535, 49.4141544 8.6690244, 49.4204352 8.6593168, 49.4204555 8.6593989, 49.4170560 8.6767755, 49.3937693 8.7085194, 49.3938278 8.7086843, 49.4264566 8.6606563, 49.4224030 8.6583261, 49.4225946 8.6583220, 49.4134695 8.6701162, 49.4141557 8.6687509, 49.4129744 8.6753927, 49.4134157 8.6700445, 49.4147123 8.6663554, 49.4146345 8.6663168, 49.4152208 8.6752144, 49.4137552 8.6734387, 49.4136968 8.6737990, 49.4152504 8.6634751, 49.4153592 8.6633318, 49.3868240 8.6666546, 49.3868275 8.6664977, 49.4197775 8.6517101, 49.4199177 8.6518537, 49.4384234 8.6338501, 49.4358366 8.6401002, 49.4327492 8.6421461, 49.4329387 8.6416659, 49.4179165 8.7590022, 49.4206903 8.7598065, 49.4225411 8.7563401, 49.4226681 8.7640695, 49.4169243 8.7611264, 49.4174495 8.7631349, 49.4192923 8.7353176, 49.4176518 8.7654281, 49.4261182 8.7466617, 49.4173643 8.7528312, 49.4228054 8.7602424, 49.4173460 8.7480328, 49.4174366 8.7440418, 49.4174907 8.7438854, 49.4173419 8.7495937, 49.4159882 8.7159505, 49.4201498 8.7291026, 49.4152724 8.7089320, 49.4152263 8.7091544, 49.4161997 8.7168545, 49.4200831 8.7290987, 49.3954264 8.6432043, 49.4095587 8.6406677, 49.4094042 8.6407930, 49.4103049 8.7749034, 49.4136480 8.7107879, 49.4137160 8.7131886, 49.4182027 8.7277515, 49.4157033 8.7420650, 49.4152701 8.7477273, 49.4160568 8.7561098, 49.4155446 8.7610937, 49.3999244 8.6912464, 49.4002825 8.6911005, 49.4347422 8.6819187, 49.4070390 8.6405121, 49.4069714 8.6403637, 49.4027266 8.6409639, 49.4025395 8.6408427, 49.4133018 8.7430485, 49.4012674 8.6413844, 49.3942358 8.6465359, 49.4092508 8.6685941, 49.3993998 8.6479989, 49.3982943 8.6422644, 49.3974295 8.6485846, 49.3959164 8.6490146, 49.4021200 8.6471601, 49.4121061 8.6413161, 49.4121708 8.6412132, 49.4219707 8.6425694, 49.4222511 8.6425281, 49.4235762 8.6458169, 49.4260817 8.6440645, 49.4265588 8.6449577, 49.4268035 8.6470831, 49.4269829 8.6469862, 49.4260042 8.6475244, 49.4240544 8.6489779, 49.4239525 8.6492278, 49.4168743 8.6533143, 49.4161379 8.6535560, 49.4124076 8.6582474, 49.4118670 8.6588264, 49.4100899 8.6637778, 49.4097893 8.6645706, 49.4085503 8.6677104, 49.4026633 8.6438993, 49.4024410 8.6437828, 49.4061329 8.6714869, 49.4043662 8.6769558, 49.4042794 8.6767159, 49.4043928 8.6767032, 49.4040938 8.6777606, 49.4041378 8.6780055, 49.4041963 8.6783706, 49.4075933 8.6747057, 49.4075056 8.6748798, 49.4078534 8.6762963, 49.4079283 8.6756934, 49.4078625 8.6803507, 49.4079068 8.6803518, 49.4079150 8.6852124, 49.4079624 8.6851808, 49.4084050 8.6884254, 49.4084670 8.6883986, 49.4101809 8.6928995, 49.4099846 8.6928532, 49.4095745 8.6932967, 49.4093811 8.6931694, 49.4092112 8.6929959, 49.4090525 8.6927592, 49.4302825 8.6446990, 49.4303150 8.6447831, 49.4288899 8.6456839, 49.4289721 8.6457461, 49.3786078 8.6590335, 49.3787155 8.6590931, 49.3810931 8.6606845, 49.3811782 8.6604324, 49.4149281 8.7582758, 49.4111209 8.7057655, 49.4173023 8.6816986, 49.4174942 8.6819993, 49.4129809 8.7053485, 49.4132415 8.7055842, 49.4133149 8.7054986, 49.4173515 8.6908888, 49.4171632 8.6912051, 49.4119771 8.6972359, 49.4120763 8.6972060, 49.4055633 8.6828676, 49.4049949 8.6822918, 49.4129282 8.7027762, 49.4126418 8.7016223, 49.4090720 8.7054522, 49.4083347 8.6981500, 49.4138680 8.6938162, 49.4069337 8.6900774, 49.4068742 8.6934775, 49.4088905 8.7053904, 49.4092125 8.7080457, 49.4095401 8.7091480, 49.4133887 8.7086161, 49.4151598 8.7205422, 49.4182485 8.7275341, 49.4157984 8.7426431, 49.4153793 8.7473689, 49.4104435 8.7751466, 49.4136898 8.7167012, 49.4124611 8.7128500, 49.4114089 8.7119309, 49.4112562 8.7115057, 49.4080587 8.6999304, 49.3937235 8.6855690, 49.3937838 8.6859112, 49.3899388 8.6862253, 49.3900908 8.6859962, 49.3858312 8.6864369, 49.3860976 8.6865748, 49.3819530 8.6822724, 49.3819840 8.6821416, 49.3804922 8.6881021, 49.3800650 8.6821589, 49.3777175 8.6772835, 49.3771295 8.6773280, 49.3738122 8.6784447, 49.3736962 8.6791919, 49.3737490 8.6815039, 49.3738435 8.6818076, 49.3766641 8.6824455, 49.3784086 8.6792130, 49.3800355 8.6822461, 49.4066901 8.6710527, 49.4040171 8.6483480, 49.4057590 8.6522413, 49.4064411 8.6585122, 49.4051217 8.6683796, 49.4253727 8.6567163, 49.4253613 8.6568355, 49.4234438 8.6461975, 49.4188582 8.6442546, 49.4189879 8.6443079, 49.4005092 8.6783953, 49.4016334 8.6747771, 49.4014940 8.6745939, 49.3971927 8.6809442, 49.3961103 8.6778109, 49.3961779 8.6783236, 49.3914363 8.6753605, 49.3911604 8.6749842, 49.3843368 8.6660809, 49.3842531 8.6664769, 49.3825480 8.6626222, 49.3831403 8.6627909, 49.3772388 8.6689312, 49.3773229 8.6689436, 49.3781667 8.6723583, 49.3781350 8.6726299, 49.3787183 8.6751466, 49.3788110 8.6751258, 49.3738788 8.6865123, 49.3740405 8.6860545, 49.3655576 8.6888060, 49.3658553 8.6886497, 49.3670459 8.6823339, 49.3654285 8.6795857, 49.3650262 8.6826858, 49.3664996 8.6849313, 49.3597566 8.6880203, 49.3598527 8.6880176, 49.3648944 8.6867095, 49.3647436 8.6865978, 49.3653795 8.6868243, 49.3651452 8.6862208, 49.3611702 8.7032598, 49.3612894 8.7033782, 49.3629117 8.7034330, 49.3631114 8.7036796, 49.3639586 8.7049521, 49.3641187 8.7058135, 49.3659753 8.7049280, 49.3657374 8.7052114, 49.3704326 8.7052320, 49.3695318 8.7040962, 49.3691105 8.7041929, 49.3692780 8.7050764, 49.3729729 8.7037385, 49.3731400 8.7035823, 49.3739301 8.7029888, 49.3721274 8.7013964, 49.3721220 8.7015090, 49.3740113 8.7029918, 49.4281502 8.6876267, 49.4054462 8.6926553, 49.4055795 8.6925319, 49.4020433 8.6916031, 49.4025059 8.6915946, 49.3969358 8.6946462, 49.3969527 8.6948626, 49.3962708 8.6967836, 49.3961279 8.6969793, 49.3887992 8.7077330, 49.3889428 8.7075494, 49.3899181 8.7053132, 49.3901409 8.7050848, 49.3774334 8.6874070, 49.3800760 8.7238428, 49.3802417 8.7237658, 49.3846718 8.7336368, 49.3847273 8.7335051, 49.3881453 8.7311804, 49.3883857 8.7310699, 49.3893290 8.7351786, 49.3895883 8.7352661, 49.4006965 8.7274404, 49.4007968 8.7272657, 49.4033828 8.7277656, 49.3805204 8.6870977, 49.3805140 8.6873637, 49.4589515 8.7514129, 49.3782108 8.7043138, 49.3761850 8.7067807, 49.3737465 8.7064043, 49.4191756 8.7354062, 49.4174141 8.7528303, 49.4192238 8.7569340, 49.4192230 8.7568052, 49.4225640 8.7538372, 49.4220804 8.7546816, 49.4251381 8.7519780, 49.4253655 8.7515645, 49.4280034 8.7495084, 49.4284732 8.7495741, 49.4315730 8.7477819, 49.4318477 8.7473809, 49.4348206 8.7492267, 49.4346751 8.7493846, 49.4376096 8.7520352, 49.4376232 8.7519794, 49.4444499 8.7540908, 49.4441710 8.7537297, 49.4482465 8.7533745, 49.4482704 8.7532635, 49.4499167 8.7541218, 49.4504464 8.7545196, 49.4230856 8.7427679, 49.4261390 8.7465756, 49.4302597 8.7467416, 49.4302371 8.7468460, 49.4164575 8.7655388, 49.4137204 8.6940432, 49.4263179 8.7597527, 49.4240075 8.7578458, 49.4221501 8.7604263, 49.4211341 8.7608916, 49.4196712 8.7607872, 49.4186692 8.7629025, 49.4178557 8.7612468, 49.4178881 8.7611566, 49.4149816 8.7726518, 49.4144395 8.7746592, 49.4135295 8.7754971, 49.4098676 8.7743915, 49.3737160 8.6879001, 49.4129531 8.6764014, 49.4128723 8.6767666, 49.3838528 8.7099294, 49.4157501 8.7290618, 49.3726463 8.6154130, 49.3728140 8.6139261, 49.4120632 8.7372505, 49.4134397 8.7383386, 49.4112928 8.7421773, 49.4174337 8.6856825, 49.3984594 8.6893414, 49.3935028 8.6864962, 49.3936030 8.6864812, 49.4171447 8.7317364, 49.3838673 8.6822397, 49.3837731 8.6820911, 49.4154769 8.7343957, 49.4155063 8.6920455, 49.4157703 8.6921648, 49.4124517 8.7507225, 49.4068321 8.7149530, 49.4070152 8.7149103, 49.4062811 8.7145104, 49.4178951 8.7278057, 49.4009711 8.7136432, 49.3741809 8.6875901, 49.3998313 8.6768307, 49.3867786 8.6622115, 49.3867521 8.6619723, 49.4150504 8.7200383, 49.3955093 8.7094471, 49.4064011 8.6905312, 49.4064324 8.6907065, 49.4064641 8.6908840, 49.4064968 8.6910579, 49.4088954 8.7128442, 49.4098287 8.6928288, 49.4131082 8.7212285, 49.4049329 8.6756419, 49.4182044 8.7563075, 49.4302758 8.6879496, 49.4173175 8.6870887, 49.3588442 8.7045913, 49.4012204 8.6724017, 49.3962812 8.6769601, 49.3993531 8.6716017, 49.3994314 8.6716997, 49.4042522 8.6786859, 49.4038577 8.6765425, 49.4047148 8.6787123, 49.3615177 8.7052485, 49.3692511 8.7041089, 49.3769454 8.6654592, 49.4048572 8.6761515, 49.4049714 8.6760919, 49.4050841 8.6755115, 49.3919748 8.6758663, 49.4192296 8.6763297, 49.4016551 8.6733745, 49.3813474 8.7062072, 49.3784192 8.6931866, 49.4063962 8.6915499, 49.4050422 8.6812130, 49.4221737 8.7059025, 49.3866840 8.6624233, 49.3867622 8.6626209, 49.4339873 8.6824450, 49.4276629 8.6834280, 49.4158996 8.7321408, 49.4149736 8.7726601, 49.4135275 8.7754964, 49.4182237 8.7277602, 49.4182571 8.7275619 +3 +7 +Kirkcaldy, Cowdenbeath, Dunfermline, South Queensferry, Linlithgow, Kincardine, Broxburn, Grangemouth, Bo'ness, Inverkeithing, Dalgety Bay, Rosyth, Haddington, Musselburgh, Cockenzie and Port Seton, Gullane, Prestonpans, Tranent, Polmont +yes +0 +Holiday Inn +133 +yes +55 +48.8210997 2.3589704, 48.8791473 2.3474694, 48.8645853 2.3050980, 48.8367928 2.3780749, 48.8188321 2.4576115, 48.8323659 2.2806907, 48.8608636 2.4139162, 48.8857931 2.2880907, 48.8964346 2.3097184, 48.8899579 2.3961548, 48.8235298 2.3100220, 48.8543067 2.2543634, 48.8219825 2.3796095, 48.8537201 2.3564387, 48.8658546 2.3540003, 48.8664342 2.2684904, 48.8260164 2.2988457, 48.8976500 2.3315770, 48.8374241 2.3354339 +yes +7 +48.8523642 2.2968670 +Parking Magenta, École de Médecine, Hôtel de Ville, Lobau Rivoli, Parking Lecourbe - Mairie du XVème, Maubert - Saint-Germain, Parking Marché Saint-Germain, Lutèce, Saint-Michel, Parking Velpeau-Boucicaut, Saint-Sulpice, Parking Bastille, Parking Aquaboulevard, Parking Gaité-Montparnasse, Rennes Montparnasse, Parking Maine Montparnasse, Lyon Diderot, Parc Paris-Lyon, Parc Beaubourg, Saint-Germain des Prés, Garage Sully, Bac-Montalembert, Kléber Longchamp, Parking de l'Europe, Madeleine Tronchet, Berri Ponthieu, Garage Mansart, Parc Méditérannée, Parc Vincent Auriol - Bibliothèque, Bourse, Citroën Cévennes, Pasteur-Montparnasse, Hector Malot, Lobau Rivoli, Petits Champs, Opéra Bastille, Saint-Éloi, Rivoli - Pont Neuf, Saint-Germain l'Auxerrois, Le Louvre Parking, Sébastopol, Pyramides, Pyramides, Vendôme, Réaumur Saint-Denis, Centre Pompidou, Baudoyer, Saint-Martin, Daumesnil, Rond-Point, Concorde, Concorde, Malesherbes Anjou, Malesherbes Anjou, Franz Liszt, Haussmann - Printemps, Bergson, Villiers, Haussmann Berri, Haussmann Berri, Claridge, Élysées Ponthieu, George V, Champs-Élysées - George V, Berri - Washington, Champs-Élysées, Pierre Charron, François 1er, Alma Georges V, Alma Georges V, Marceau Étoile, Étoile Friedland, Étoile Friedland, Hoche, Hoche, Ternes, holiday inn - parking, Parking Cité des Sciences de la Villette, Parking Zenpark Rue Bichat, autocité, Patriarches, Étoile - Foch, Étoile - Foch, Porte Maillot, Étoile - Foch, Passy, Montholon, B, Soufflot Panthéon, 202, Lagrange, Soufflot Panthéon, Gay-Lussac, A, C, La Tour Maubourg, Invalides, Haussmann - Galeries Lafayette, Opéra Meyerbeer, Parking Du Mail, Gare du Nord, Euronort Lariboisière, Ledru Rollin Parking SA, Faubourg Saint-Antoine, Leroy Merlin, Picpus Nation, Tolbiac-Bibliothèque, Pont Marie, Haussman Printemps, Ternes, Les parking du midi, Parking square d'Anvers, Parking Turbigo - Saint-Denis, Gare du Nord, Parking Bercy Lumière, Parking Rambuteau, Parking Zenpark - Rue de Bagnolet, Bercy - Autocars, Gare du Nord, Alhambra, Océane, Tour Montparnasse, Bercy Saint-Émilion, Grand Garage Duchemin, Parking Saint-Lazare - Rue de Rome, Mac-Mahon, Mac-Mahon, Ternes, Carnot, Carnot, Champerret Yser, Porte des Lilas, Parking Camille Desmoulins, Custine Automobiles, Lebouteux 13, La Villette Cité de la Musique, Gare de l'Est - P1 Alsace, Gare de l'Est - P2 Saint-Martin, Parking Public Bercy (Novotel - Ibis), Notre-Dame, Parking Zenpark Alexandre Dumas, Parking Zenpark Bastille, Parking Zenpark Bercy, Parking Zenpark Caumartin, Parking Zenpark Château, Parking Zenpark Cité Blanche, Parking Zenpark Eure, Parking Zenpark Grands Boulevards, Parking Zenpark Stalingrad, Parking Zenpark Saint-Michel, Parking Zenpark - Grands Boulevards, Parking Zenpark Bercy, Parking Zenpark Neuve Tolbiac, Parking Zenpark Quai de Seine, Parking Zenpark Champs-Elysées - Roosevelt, Zenpark Paris - Nationale, Parking Clichy-Montmartre, Parking Gare de Bercy, parking souterrain de Radio France, Port de la Conférence, Cour de l'Est, Parking du Pont de l'Europe, Parc Trinité, Lilas Box, Saxe, Maillot-Pereire, Parking du Complexe "Étoile Lilas", Dépose minute, Parking Auguste Blanqui Abonnés +Azerbaijan, El Salvador, Mio, Mitte-Ndnn-Bar +23 +55.9162285 -3.2851455, 55.9407230 -3.2810409, 55.8845441 -3.3397807, 55.9053902 -3.1342693, 55.9221422 -3.3804954, 55.9714310 -3.2540033, 55.9362567 -3.1797890, 55.9331942 -3.1367474, 55.9426871 -3.1890489, 55.9134798 -3.1349607, 55.9400832 -3.2183795, 55.9552887 -3.4015520, 55.8960844 -3.3110681, 55.9365871 -3.1798120, 55.9322476 -3.1281129, 55.9533601 -3.1167696, 55.9087640 -3.3221593, 55.9550388 -3.1422629, 55.9514274 -3.1780862, 55.9482833 -3.1925126, 55.9485816 -3.1916892, 55.9320754 -3.1797041, 55.9289038 -3.2099695, 55.9372576 -3.2484056, 55.9613330 -3.1814329, 55.9754880 -3.1800099, 55.9908863 -3.4005664, 55.9052853 -3.2234270, 55.9714662 -3.2541142, 55.9616399 -3.2609726, 55.9767290 -3.2268402, 55.9067248 -3.2514090, 55.9554111 -3.2871171, 55.9589115 -3.2077864, 55.9484995 -3.1924483 +48.8454066 2.3605950 +yes +55.9676146 -3.1851220, 55.9389438 -3.1762512, 55.9342812 -3.1910903, 55.9468366 -3.1927193, 55.9242044 -3.2136831, 55.9267237 -3.2541012, 55.9399653 -3.2243647, 55.9530161 -3.2227017, 55.9543705 -3.2231752, 55.9138101 -3.1625880, 55.9139003 -3.1561271, 55.9021949 -3.1741206, 55.9311802 -3.1650916, 55.9535325 -3.1763565, 55.9591815 -3.2287132, 55.9369373 -3.2288584, 55.9293858 -3.1242296, 55.9546952 -3.1369685, 55.9449273 -3.0904981, 55.9265280 -3.1510008, 55.9684639 -3.1977758, 55.9668042 -3.1974105, 55.9696978 -3.1493775, 55.9540571 -3.1860764, 55.9719475 -3.1703032, 55.9456846 -3.1922146, 55.9093414 -3.2564463, 55.9087839 -3.2561638, 55.9085715 -3.2558102, 55.9631536 -3.1680074, 55.9534939 -3.1859938, 55.9535098 -3.1860262 +Greggs, Malone's Bakeries, Gregg's, Douglas's Bakery, Masons Bakery, Roll Up, Gregg's, Barnton Fine Foods, La Croissanterie, Mathiesons Bakers, Greggs, Storries Home Bakery, Morrison's Bakery, Greggs, Gregg's Bakery, Greggs, Greggs, Patissier Maxine, Patisserie Valerie, Bibi's Cake Boutique, Greggs, Dough Re Mi, Dough Re Mi, The Pine Tree Bakery, Donachie Bakers, Bayne's, Goodfellow & Steven, Greggs, Bakery Andante, Greggs, Greggs, Bayne's, Artisan Bakehouse, Nikki's Cakes, Goodfellow & Steven, Edinburgh Bakehouse, Greggs, Greggs, Bonningtons, The Wee Boulangerie, Jacob, Licks Cake Design, Greggs, Greggs, Mr Bun's Bakery, Glenvarloch Bakery, Archipelago Bakery, Sicilian Pastry Shop, Melinda's Cake Boutique, Malone's Bakery, Greggs, 1, Greggs +0 +55.9748673 -3.2157799 +yes +Villa Padjarkan +48.8373758 2.3176784, 48.8379602 2.2583959, 48.8410120 2.3066005, 48.8570028 2.3007925, 48.8579137 2.3005660, 48.8318670 2.3144693, 48.8689224 2.3335350, 48.8395609 2.3021892, 48.8375207 2.2967192, 48.8375266 2.2960585, 48.8276825 2.3271004, 48.8501002 2.3428094, 48.8554073 2.3268543, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8529470 2.3434116, 48.8488712 2.2873446, 48.8189960 2.3382666, 48.8722818 2.3462050, 48.8330519 2.3316747, 48.8367776 2.2983375, 48.8357338 2.3020633, 48.8642296 2.2884865, 48.8644747 2.2879509, 48.8645963 2.2880351, 48.8649321 2.2883111, 48.8654525 2.2886812, 48.8667948 2.2896169, 48.8677281 2.2909720, 48.8717354 2.3404728, 48.8344235 2.3052236, 48.8750824 2.3241658, 48.8831483 2.3273794, 48.8563547 2.3050003, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8546797 2.3051724, 48.8870858 2.3139323, 48.8896917 2.3219420, 48.8839932 2.3218563, 48.8830031 2.2877361, 48.8374001 2.2957684, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8789432 2.3031398, 48.8815632 2.3004421, 48.8844267 2.2977130, 48.8855270 2.2969790, 48.8849249 2.2981974, 48.8846750 2.2981530, 48.8773919 2.3395256, 48.8737979 2.3160522, 48.8384262 2.2988961, 48.8840917 2.3224995, 48.8379252 2.2975063, 48.8384650 2.2984232, 48.8386614 2.2988499, 48.8388963 2.2993041, 48.8807958 2.3003045, 48.8423511 2.2814155, 48.8529207 2.3436323, 48.8386703 2.2822723, 48.8633059 2.3340632, 48.8647135 2.3426384, 48.8648693 2.3427189, 48.8630681 2.3412176, 48.8634071 2.3418915, 48.8660175 2.3407258, 48.8673651 2.3318225, 48.8656306 2.3303026, 48.8690399 2.3387540, 48.8697491 2.3403685, 48.8695691 2.3402609, 48.8686652 2.3421761, 48.8689050 2.3327814, 48.8674306 2.3462505, 48.8578234 2.2746494, 48.8583112 2.2754219, 48.8518893 2.3417124, 48.8421221 2.3217245, 48.8521680 2.3314230, 48.8447287 2.3244719, 48.8428059 2.3239714, 48.8489183 2.3392705, 48.8506265 2.3304803, 48.8485082 2.3285161, 48.8508389 2.3266905, 48.8427653 2.3300120, 48.8420145 2.3302544, 48.8440612 2.3225950, 48.8442156 2.3244262, 48.8473522 2.3183754, 48.8711649 2.3221410, 48.8726629 2.3106385, 48.8732419 2.3115596, 48.8744495 2.3205466, 48.8752230 2.3264851, 48.8740876 2.3267342, 48.8778017 2.3225743, 48.8797413 2.3271672, 48.8830756 2.3269207, 48.8833400 2.3254009, 48.8813674 2.3151235, 48.8810818 2.3162341, 48.8786152 2.3156839, 48.8767711 2.3179268, 48.8778569 2.3059734, 48.8794539 2.3032046, 48.8749659 2.3041948, 48.8745760 2.3048788, 48.8687291 2.3014159, 48.8664956 2.3016793, 48.8677909 2.2995151, 48.8686254 2.2992361, 48.8725861 2.3019868, 48.8784635 2.2987871, 48.8698436 2.3061758, 48.8720243 2.2934411, 48.8684366 2.2915095, 48.8714262 2.2899337, 48.8689351 2.2833107, 48.8696967 2.2845776, 48.8694565 2.2845446, 48.8700723 2.2857876, 48.8690091 2.2852941, 48.8691634 2.2851996, 48.8749903 2.2860127, 48.8759692 2.2834989, 48.8748643 2.2834193, 48.8690546 2.2835943, 48.8655496 2.2837039, 48.8657006 2.2836110, 48.8667831 2.2790363, 48.8664481 2.2772490, 48.8659840 2.2742050, 48.8633053 2.2742098, 48.8624073 2.2760147, 48.8593999 2.2774250, 48.8583220 2.2745520, 48.8584493 2.2748476, 48.8580404 2.2776736, 48.8411414 2.3136506, 48.8760516 2.3450644, 48.8557164 2.2701238, 48.8417733 2.3185097, 48.8559683 2.2711042, 48.8369684 2.2533009, 48.8394820 2.3097854, 48.8502874 2.2762982, 48.8781855 2.2878593, 48.8362844 2.3061932, 48.8535026 2.2653555, 48.8491712 2.2665706, 48.8233119 2.3260789, 48.8475928 2.2669653, 48.8484138 2.2647127, 48.8478601 2.2637874, 48.8485576 2.2650178, 48.8454405 2.2582420, 48.8485516 2.2751179, 48.8415500 2.2669376, 48.8399984 2.2627388, 48.8307191 2.3193023, 48.8304006 2.3192272, 48.8758150 2.2867065, 48.8465904 2.3434584, 48.8481836 2.3416278, 48.8504365 2.3250405, 48.8439434 2.3420437, 48.8461211 2.3404463, 48.8480122 2.2605847, 48.8589930 2.3030851, 48.8417910 2.3293787, 48.8474457 2.3180776, 48.8478498 2.3111276, 48.8645339 2.3458426, 48.8452289 2.2582589, 48.8809021 2.3403319, 48.8455537 2.3108109, 48.8450445 2.3104567, 48.8474933 2.3107909, 48.8394375 2.2918836, 48.8514163 2.3135568, 48.8426729 2.3023971, 48.8431492 2.3040014, 48.8431097 2.3128917, 48.8673662 2.3064825, 48.8263809 2.3414522, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8278525 2.3262538, 48.8388287 2.2816271, 48.8397112 2.3025357, 48.8396385 2.3018330, 48.8283319 2.3249564, 48.8500696 2.2886536, 48.8560015 2.3425743, 48.8544203 2.3257043, 48.8588998 2.2749555, 48.8585344 2.2751198, 48.8768988 2.3387135, 48.8620598 2.2758197, 48.8632226 2.2764809, 48.8643683 2.2780086, 48.8682336 2.2816544, 48.8683009 2.2818137, 48.8716652 2.3369422, 48.8724813 2.3352798, 48.8768502 2.3324723, 48.8715356 2.3340932, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8751634 2.3407635, 48.8696664 2.3354448, 48.8640573 2.3358570, 48.8580367 2.3228472, 48.8468273 2.3109956, 48.8727906 2.3327950, 48.8371620 2.2788430, 48.8260463 2.3458083, 48.8275711 2.3258960, 48.8274068 2.3262715, 48.8390681 2.2569423, 48.8549374 2.3061290, 48.8709866 2.3363950, 48.8848997 2.3377794, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8509779 2.2927923, 48.8550471 2.2699500, 48.8418785 2.2997087, 48.8442816 2.3244689, 48.8391384 2.2822010, 48.8854990 2.3103821, 48.8276838 2.3319307, 48.8701182 2.3328493, 48.8430494 2.2949889, 48.8416006 2.3224232, 48.8430431 2.3223965, 48.8850396 2.3205857, 48.8860872 2.3177587, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8804253 2.3287401, 48.8743336 2.3345374, 48.8301847 2.3456951, 48.8425418 2.2920002, 48.8340558 2.2901416, 48.8330244 2.2891177, 48.8334343 2.2890580, 48.8642191 2.3423423, 48.8638673 2.3421689, 48.8815429 2.2914706, 48.8838668 2.3274744, 48.8889565 2.3226941, 48.8937935 2.3362303, 48.8915892 2.3347229, 48.8975742 2.3374320, 48.8959308 2.3457254, 48.8906192 2.3344868, 48.8929700 2.3402831, 48.8931959 2.3273644, 48.8938006 2.3360065, 48.8928237 2.3276058, 48.8927037 2.3270855, 48.8950865 2.3279515, 48.8927798 2.3416901, 48.8357045 2.2898603, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8507185 2.3452276, 48.8506024 2.2921760, 48.8434041 2.2832488, 48.8441583 2.2814225, 48.8601040 2.2800860, 48.8555902 2.2705124, 48.8709674 2.2927276, 48.8701195 2.2926560, 48.8607663 2.2829855, 48.8742509 2.3267610, 48.8674435 2.3066185, 48.8760737 2.3314470, 48.8314530 2.3131078, 48.8366420 2.3235880, 48.8798460 2.2882480, 48.8706907 2.3018397, 48.8711468 2.3021857, 48.8442760 2.3236880, 48.8443641 2.3231615, 48.8412683 2.3182655, 48.8750168 2.2842019, 48.8274443 2.3054531, 48.8642610 2.2877420, 48.8260781 2.3450782, 48.8257972 2.3453018, 48.8265662 2.3114209, 48.8266741 2.3089333, 48.8348018 2.2835149, 48.8289555 2.3008177, 48.8425217 2.2605998, 48.8399979 2.2631418, 48.8393773 2.2626930, 48.8445716 2.2773781, 48.8423827 2.2779816, 48.8393433 2.2612518, 48.8382522 2.2590990, 48.8556190 2.3071441, 48.8831104 2.3242250, 48.8522552 2.3385407, 48.8466920 2.2861937, 48.8464464 2.2864898, 48.8462140 2.2863069, 48.8471256 2.2857626, 48.8467862 2.2850085, 48.8737876 2.3254797, 48.8757911 2.3276502, 48.8853087 2.2914432, 48.8666300 2.3441053, 48.8751073 2.3063372, 48.8761128 2.3302242, 48.8760136 2.3310108, 48.8628914 2.2767409, 48.8326928 2.3011680, 48.8434103 2.2931530, 48.8367477 2.3065081, 48.8396815 2.2927792, 48.8759800 2.3435799, 48.8602282 2.3444320, 48.8442882 2.3080071, 48.8528372 2.2900682, 48.8524061 2.2912571, 48.8529003 2.2907372, 48.8504014 2.2929658, 48.8781331 2.2973879, 48.8310392 2.3425080, 48.8235069 2.3253377, 48.8314166 2.3251141, 48.8747610 2.3399353, 48.8610529 2.3020976, 48.8742737 2.3172451, 48.8788807 2.2940470, 48.8790502 2.2932877, 48.8787213 2.2930870, 48.8860790 2.2927720, 48.8862920 2.2922300, 48.8860610 2.2916910, 48.8815650 2.2950420, 48.8816640 2.2951850, 48.8698720 2.3253770, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8767675 2.3414635, 48.8801010 2.2887410, 48.8518237 2.3263371, 48.8518410 2.3270180, 48.8520482 2.3269387, 48.8896590 2.3042630, 48.8523174 2.3400938, 48.8480411 2.3409988, 48.8487519 2.3414295, 48.8763180 2.3309180, 48.8260443 2.3266660, 48.8255907 2.3265438, 48.8843962 2.3388368, 48.8841050 2.3049810, 48.8840570 2.3045230, 48.8835710 2.3045840, 48.8837420 2.3043460, 48.8315966 2.3304662, 48.8818980 2.3374100, 48.8497330 2.3457635, 48.8448871 2.2941778, 48.8452118 2.2941040, 48.8454696 2.2946866, 48.8702024 2.2869885, 48.8711617 2.3300722, 48.8403727 2.3337448, 48.8349994 2.3046409, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8313376 2.3296145, 48.8512137 2.3425994, 48.8648399 2.3394096, 48.8726368 2.3332498, 48.8733021 2.3461422, 48.8717746 2.2995211, 48.8347313 2.3458453, 48.8388397 2.3227192, 48.8791073 2.2907296, 48.8766198 2.2875734, 48.8680414 2.3235560 +93 +830 +Avenue du Général Leclerc, Avenue des Champs-Élysées, Boulevard du Montparnasse, Avenue des Champs-Élysées, Boulevard Brune, Boulevard Lefebvre, Avenue Émile Zola, Place Étienne Pernet, Rue de Longchamp, Rue de Longchamp +56 +49.4147206 8.7190868, 49.4104788 8.7037801, 49.4103985 8.7029994, 49.4073655 8.6761401, 49.4114393 8.7049112, 49.4105716 8.7092257, 49.3964318 8.6793231 +yes and 55.9186497 -3.1972073 +55.9035370 -4.3545470, 55.8144822 -4.1906873 +Édimbourg +Heiliggeistkirche and 49.4120976 8.7096738 +14 +275 +yes +yes +yes +55.9759087 -3.2152346 +yes +yes +51.0844645 13.6487103, 51.0273756 13.7474285, 51.0823918 13.7335753, 51.0824545 13.7336039, 51.0825170 13.7336323, 51.0829896 13.7332707, 51.0828616 13.7332262, 51.0827595 13.7331813, 51.0826580 13.7331399, 51.0825999 13.7331126, 51.0825362 13.7330866, 51.0827583 13.7327555, 51.0832603 13.7324804, 51.0831002 13.7336158, 51.0795251 13.6564388, 51.0803520 13.6560575, 51.0797631 13.6570269, 51.0805189 13.6559334, 51.0798370 13.6570887, 51.0801264 13.6570556, 51.0798991 13.6571398, 51.0798900 13.6567596, 51.0800585 13.6558509, 51.0795075 13.6568246, 51.0800106 13.6572306, 51.0802644 13.6565229, 51.0801590 13.6559327, 51.0796771 13.6569580, 51.0801474 13.6574467, 51.0795919 13.6568858, 51.0799591 13.6557717, 51.0806719 13.6547946, 51.0844031 13.6492495, 51.0844377 13.6491173, 51.0845865 13.6492686, 51.0848005 13.6481637, 51.0560319 13.6534353, 51.1129021 13.7134784, 51.0870850 13.7344070, 51.0879019 13.7346740, 51.0872746 13.7345070, 51.0400501 13.6372683, 51.0400368 13.6376398, 51.0397949 13.6376750, 51.0398668 13.6372683, 51.0396860 13.6366848, 51.0395593 13.6369259, 51.0392180 13.6369677, 51.0396431 13.6373610, 51.0396199 13.6371140, 51.0392895 13.6367341, 51.1523082 13.7957194, 51.1532344 13.7957454, 51.1521680 13.7957598, 51.1520584 13.7957188, 51.1536728 13.7955165, 51.1520531 13.7963601, 51.1522370 13.7957382, 51.0847930 13.6490593, 51.0849131 13.6491394, 51.0845156 13.6488769, 51.0847316 13.6490137, 51.0849792 13.6491835, 51.0844573 13.6488382, 51.0848531 13.6490969, 51.0685627 13.6241474, 51.0695246 13.6253081, 51.0699998 13.6237618, 51.0683859 13.6251032, 51.0701737 13.6247207, 51.0683173 13.6249097, 51.0694974 13.6255021, 51.0679836 13.6227283, 51.0698285 13.6245618, 51.0682702 13.6249019, 51.0700321 13.6235780, 51.0699302 13.6241295, 51.0706362 13.6240940, 51.0699677 13.6239464, 51.0699803 13.6233425, 51.0698958 13.6243490, 51.0683476 13.6228519, 51.0703047 13.6239192, 51.0681631 13.6226829, 51.0681586 13.6222257, 51.0705447 13.6245614, 51.0704860 13.6238946, 51.1190382 13.7795044, 51.0400538 13.6374139, 51.0422774 13.6356744, 51.0419915 13.6350658, 51.0422431 13.6350551, 51.0423833 13.6350452, 51.0422138 13.6356743, 51.0424026 13.6345030, 51.0424536 13.6356798, 51.0419222 13.6347316, 51.0425869 13.6359640, 51.0424255 13.6347004, 51.0423683 13.6356861, 51.0419113 13.6345174, 51.0423088 13.6353555, 51.0432389 13.7577645, 51.0436111 13.7590246, 51.1521334 13.7973645, 51.1521117 13.7971177, 51.1520977 13.7967766, 51.1526180 13.7960916, 51.1531397 13.7962202, 51.1521522 13.7975794, 51.0542981 13.6500944, 51.0444714 13.6375970, 51.0445916 13.6380352, 51.0452089 13.6382144, 51.0448329 13.6384755, 51.0420013 13.6356697, 51.0419801 13.6353571, 51.0449595 13.6381873, 51.0450957 13.6377784, 51.0451578 13.6382089, 51.0451645 13.6385095, 51.0445991 13.6376131, 51.0447789 13.6380437, 51.0449673 13.6384880, 51.0451001 13.6385027, 51.0450315 13.6384948, 51.0450594 13.6382009, 51.0416818 13.6350996, 51.0450879 13.6379787, 51.0454522 13.6334655, 51.0444342 13.6335000, 51.0444346 13.6335829, 51.0453155 13.6342072, 51.0453139 13.6338984, 51.0446628 13.6337701, 51.0446591 13.6334707, 51.0453174 13.6340041, 51.0453155 13.6341049, 51.0451033 13.6335278, 51.0444341 13.6336615, 51.0288807 13.7029059, 51.0288738 13.7030353, 51.0644000 13.6702199, 51.0645429 13.6701187, 51.0634300 13.6708257, 51.0629448 13.6704116, 51.0631020 13.6703333, 51.0643496 13.6698018, 51.0644680 13.6697240, 51.0644477 13.6701873, 51.0636715 13.6706991, 51.0634927 13.6708243, 51.0635567 13.6707778, 51.0643411 13.6702497, 51.0644908 13.6701611, 51.0644102 13.6697624, 51.0630231 13.6703734, 51.0641429 13.6701305, 51.0634263 13.6702687, 51.0639096 13.6702519, 51.0091874 13.7517437, 51.0791960 13.7360348, 51.0794212 13.7358213, 51.0870710 13.7344832, 51.0142964 13.7502569, 51.0640528 13.6635614, 51.0638879 13.6639550, 51.0641915 13.6639163, 51.0641879 13.6640152, 51.0638942 13.6637425, 51.0641939 13.6638145, 51.0639733 13.6633695, 51.0638080 13.6677778, 51.0632291 13.6683586, 51.0629009 13.6680561, 51.0636169 13.6676692, 51.0631196 13.6683612, 51.0628342 13.6680588, 51.0636968 13.6679241, 51.0545652 13.6571661, 51.0544809 13.6571568, 51.0545984 13.6575051, 51.0565349 13.6490424, 51.0580882 13.6488216, 51.0546570 13.6508731, 51.0571567 13.6545872, 51.0556063 13.6475528, 51.0569011 13.6540618, 51.0561655 13.6542541, 51.0546351 13.6507613, 51.0559429 13.6545543, 51.0571677 13.6557061, 51.0545624 13.6504539, 51.0568417 13.6544648, 51.0569245 13.6550228, 51.0568989 13.6556656, 51.0570603 13.6550313, 51.0567548 13.6539175, 51.0569839 13.6545736, 51.0570223 13.6555839, 51.0563415 13.6551338, 51.0557576 13.6480748, 51.0560964 13.6490288, 51.0556641 13.6496888, 51.0559435 13.6495665, 51.0561604 13.6490052, 51.0559214 13.6494670, 51.0561791 13.6494340, 51.0557350 13.6491827, 51.0562316 13.6494131, 51.0561324 13.6494525, 51.0562531 13.6489722, 51.0414360 13.6346991, 51.0537377 13.6809286, 51.0869121 13.6263809, 51.0864569 13.6264478, 51.0868109 13.6272543, 51.0865604 13.6261106, 51.0868648 13.6272874, 51.0863500 13.6267865, 51.0863754 13.6267068, 51.0864006 13.6266273, 51.0865935 13.6259527, 51.0865248 13.6262863, 51.0869641 13.6261298, 51.0869379 13.6262564, 51.0864323 13.6265290, 51.0687005 13.7630620, 51.0645983 13.6700479 +51.7468515 10.3624120 +55.9399419 -3.2040169 +Saint Columba's by the Castle and 55.9482972 -3.1955031 +55.9923452 -3.3344481, 55.8510441 -3.3315277, 55.9486773 -3.2003994, 55.9326054 -3.1487771, 55.9145657 -3.1773811, 55.9750379 -3.4145918, 55.9256295 -3.1408721 +yes +48.8527413 2.3333559 +yes +yes +no +49.3783407 8.6911080, 49.4282176 8.6862044, 49.4105621 8.7153069, 49.4282546 8.6861813 +yes +49.4129429 8.7045098, 49.4081527 8.6735594, 49.4176558 8.6587085, 49.4165055 8.6594547, 49.4148711 8.6635210, 49.4185873 8.7563730, 49.4171886 8.7613146, 49.4078352 8.6858842, 49.4077166 8.6770507, 49.4076619 8.6829409, 49.4079762 8.6870498, 49.4061197 8.6920317, 49.4058917 8.6902904, 49.4146832 8.6923348, 49.4144086 8.6920334, 49.4131784 8.7101075, 49.4074805 8.6879067, 49.4066312 8.6852959, 49.4091366 8.6592347, 49.4129225 8.7239221, 49.4136373 8.6927118, 49.4112725 8.7119074, 49.4095367 8.7037082, 49.4169935 8.6914785, 49.4146001 8.7738410, 49.4376003 8.7518747, 49.4124368 8.7095147, 49.4127909 8.7133593, 49.4135426 8.7142038, 49.4288015 8.6872183, 49.4142986 8.6902743, 49.4136357 8.6943202, 49.4258813 8.6617121, 49.4139051 8.6920559, 49.4162757 8.6922037, 49.4306151 8.6467040, 49.4104204 8.7158634, 49.4257744 8.6577657, 49.4139993 8.6932058, 49.4131782 8.7072377, 49.4129985 8.7075880, 49.4128971 8.7089006, 49.4121728 8.7080504, 49.4123763 8.7095125, 49.4127246 8.7091094, 49.4132139 8.7078103, 49.4079479 8.6956416, 49.4121887 8.7014037, 49.4119811 8.7001029, 49.4118690 8.6989413, 49.4130878 8.7091392, 49.4131986 8.7088233, 49.4076691 8.6751190, 49.4076624 8.6922255, 49.4083867 8.6927384, 49.4119138 8.7090833, 49.4119011 8.7089353, 49.4115665 8.7029371, 49.4115772 8.7046048, 49.4117134 8.7084690, 49.4091521 8.6979357, 49.4131305 8.6546204, 49.4140289 8.6610942, 49.4178759 8.6766696, 49.4213757 8.6586938, 49.4092258 8.7140567, 49.4070439 8.6949350, 49.4117441 8.7092576, 49.4110740 8.7008373, 49.4114705 8.7022980, 49.4115939 8.7046894, 49.4116506 8.7051386, 49.4119604 8.7038095, 49.4118295 8.7066501, 49.4116479 8.7066124, 49.4117726 8.7067669, 49.4117492 8.7058025, 49.4117230 8.7087903, 49.4122865 8.7059453, 49.4124399 8.7105960, 49.4111189 8.7110358, 49.4131432 8.7133745, 49.4081055 8.6756660, 49.4062164 8.6906512, 49.4061045 8.6919006, 49.4129103 8.7014032, 49.4106934 8.7057683, 49.4247718 8.6874951, 49.4203724 8.7396448, 49.4382046 8.6794526, 49.4373909 8.6752550, 49.4087049 8.7054045, 49.4136428 8.6936066, 49.4130575 8.7096585, 49.4115837 8.7106378, 49.4114155 8.7034039, 49.4079188 8.6896894, 49.4082939 8.6917604, 49.4084511 8.6746131, 49.4061961 8.6789422, 49.4179298 8.7611063, 49.4132974 8.7097572, 49.4125123 8.7110100, 49.4071802 8.6893369, 49.4078499 8.6884637, 49.4278664 8.6462916, 49.4181473 8.7565975, 49.4104061 8.7157086, 49.4108151 8.7149178, 49.4094481 8.7011221, 49.4068117 8.6707739, 49.4066118 8.6751595, 49.4118680 8.7106616, 49.4252823 8.6480351, 49.4190959 8.6518895, 49.4085554 8.6900358, 49.4234431 8.6469231, 49.4177824 8.6425471, 49.4227696 8.6727444, 49.4156100 8.6707017, 49.4162463 8.6598488, 49.4071975 8.6762084, 49.4096282 8.6811489, 49.4147851 8.6501119, 49.4282302 8.6874448, 49.4255887 8.6891453, 49.4254663 8.6892002, 49.4284964 8.6877953, 49.4280495 8.6869299, 49.4298363 8.6853708, 49.4317284 8.6827286, 49.4235631 8.6886029, 49.4139598 8.6937014, 49.4217923 8.7056451, 49.4384096 8.6837127, 49.4143279 8.6877116, 49.4145768 8.6900311, 49.4114477 8.7117426, 49.4179324 8.7578275, 49.4447844 8.7558449, 49.4134141 8.7156909, 49.4127437 8.7131641, 49.4278544 8.6884082, 49.4141167 8.6710146 +Yavuz Sultan Selim Camii +yes +69 +Schwabach, Basel, Lübeck +パリ +49.3779021 8.6887991, 49.4093314 8.7735071, 49.4089504 8.6905874, 49.4096905 8.6870861, 49.4094130 8.6857745, 49.4043206 8.6907217, 49.4100169 8.6878988, 49.4136043 8.6538078, 49.4155972 8.6663847, 49.4141807 8.6864884, 49.4225207 8.6751194, 49.4180755 8.6627175, 49.4177447 8.6641338, 49.4130779 8.6696042, 49.4141965 8.6658413, 49.4129370 8.6731498, 49.4184413 8.6639178, 49.4119021 8.6975187, 49.4089831 8.6905347, 49.4044159 8.6910526, 49.4214120 8.6811424, 49.4211709 8.6817036, 49.3953953 8.7086103, 49.4234428 8.6840685, 49.4104424 8.6919840, 49.4103493 8.6912088, 49.4082673 8.6863585, 49.4159017 8.6697995, 49.4163470 8.6659723, 49.4168236 8.6627821, 49.4168236 8.6627821, 49.4168236 8.6627821, 49.3811363 8.6573297, 49.4025655 8.6891887, 49.3917631 8.6910070, 49.4178561 8.6661108, 49.4177188 8.6624888, 49.4138580 8.6676018, 49.4162081 8.6666428, 49.3893705 8.7373749 +20 +Cathédrale Notre-Dame de Paris and 48.8529376 2.3498716 +67 +Taj Mahal +Le 114 Faubourg +49.3811108 8.6608351, 49.3829231 8.6669185, 49.3923746 8.6760835 +ハイデルベルク +public transport, weather shelter +Flughafen Frankfurt am Main +yes +55.9378000 -3.1771354, 55.9539470 -3.1868320, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9543521 -3.1879033, 55.9285894 -3.1685115 +9 +yes +381 +55.8994270 -3.2972350, 55.9232575 -3.2877434, 55.9372727 -3.3656602, 55.9377502 -3.4029754, 55.9365550 -3.3142140, 55.9836311 -3.3989193, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.8839472 -3.3405441, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9397193 -3.2934475 +3 +1 +48.8505273 2.3858439 +11 +yes +5 +55.9336225 -3.1249359, 55.9731723 -3.1754517, 55.9369949 -3.2187665, 55.9803988 -3.2235746, 55.9335760 -3.2285650, 55.9364814 -3.1940654, 55.9509774 -3.2113955, 55.9456430 -3.2126550, 55.9574980 -3.2089090, 55.9510870 -3.2135191, 55.9501610 -3.2185543, 55.9467690 -3.2234250, 55.9471780 -3.2179270, 55.9584000 -3.2182300, 55.9573850 -3.2145460, 55.9612410 -3.2084510, 55.9612608 -3.1947393, 55.9585590 -3.1894750, 55.9572253 -3.1905901, 55.9574810 -3.1829770, 55.9607690 -3.1844930, 55.9751120 -3.1699450, 55.9538149 -3.1866462, 55.9483102 -3.1849377, 55.9370308 -3.2067360, 55.9510250 -3.1900330, 55.9497190 -3.1919630, 55.9446609 -3.2150190, 55.9448704 -3.2331329, 55.9477760 -3.2103789, 55.9430598 -3.2193053, 55.9403560 -3.2253563, 55.9424189 -3.2051434, 55.9613613 -3.2013758, 55.9518970 -3.1777525, 55.9605194 -3.1745432, 55.9544280 -3.1965564, 55.9562232 -3.1975795, 55.9630294 -3.1912727, 55.9577847 -3.1940743, 55.9622871 -3.1825372, 55.9593812 -3.1775286, 55.9514170 -3.1863190, 55.9484476 -3.2048878, 55.9524190 -3.2092630, 55.9435870 -3.1925590, 55.9427426 -3.1970190, 55.9416940 -3.2014772, 55.9389981 -3.2114924, 55.9432142 -3.2138092, 55.9737983 -3.1644035, 55.9526606 -3.2018469, 55.9245851 -3.2217825, 55.9664930 -3.1948692, 55.9659495 -3.1909016, 55.9369709 -3.2238338, 55.9352245 -3.2129869, 55.9732340 -3.1870517, 55.9650310 -3.1952624, 55.9431510 -3.1850183, 55.9379028 -3.1838572, 55.9385188 -3.1804921, 55.9440195 -3.1801845, 55.9767916 -3.1745800, 55.9379280 -3.1997215, 55.9785772 -3.1680183, 55.9759825 -3.1825687, 55.9797482 -3.1979763, 55.9263143 -3.2084849, 55.9353379 -3.1982447, 55.9240780 -3.1729198, 55.9333823 -3.1800372, 55.9271775 -3.2122387, 55.9225263 -3.2116137, 55.9700855 -3.1735476, 55.9701547 -3.1858393, 55.9691782 -3.1658280, 55.9269556 -3.1843910, 55.9518287 -3.1107808, 55.9555761 -3.2863843, 55.9406804 -3.1723240, 55.9550663 -3.1537383, 55.9277228 -3.2305307, 55.9338258 -3.2369899, 55.9040570 -3.2856137, 55.9533158 -3.1164171, 55.9531172 -3.2042505, 55.9547774 -3.2196877, 55.9610228 -3.2289430, 55.9771785 -3.2459884, 55.9272641 -3.2496416, 55.9503933 -3.1777718, 55.9611416 -3.1627621, 55.9285398 -3.2100476, 55.9482867 -3.1839490, 55.9496098 -3.1863529 +55.9579565 -3.2439627, 55.9438677 -3.1918679, 55.9389097 -3.2419381, 55.9587892 -3.1643659, 55.9269783 -3.1633004, 55.9522822 -3.1120224, 55.9275143 -3.1636040, 55.9275143 -3.1636040, 55.9384423 -3.2403707, 55.9574632 -3.2408274, 55.9242943 -3.2525824 +55.9262985 -3.2466715, 55.9532557 -3.1913082, 55.9612706 -3.2423315, 55.9558419 -3.1599480, 55.9505200 -3.2066238, 55.9504567 -3.2091057, 55.9575799 -3.2074392, 55.9575530 -3.1882786, 55.9473523 -3.1859232, 55.9269823 -3.1640067, 55.9269823 -3.1640067, 55.9489892 -3.2104514, 55.9422542 -3.2936236, 55.9339703 -3.1006526, 55.9376863 -3.4023340, 55.9686600 -3.1423665, 55.9436637 -3.2079998, 55.9840102 -3.4068097 +49.4091649 8.6726851, 49.4121354 8.7011825, 49.4079210 8.6866720, 49.4092400 8.6923559, 49.4088507 8.6922324, 49.4127941 8.7097025, 49.4110763 8.7008753, 49.4113255 8.7025821, 49.4094909 8.6914211, 49.4033496 8.6774778, 49.4118757 8.7108162, 49.4117371 8.7091875, 49.4079388 8.6952668, 49.4050153 8.6915327, 49.4131659 8.7099659, 49.4080500 8.6812645, 49.4040305 8.6800031, 49.4092001 8.6921359, 49.4090167 8.7039135, 49.4090286 8.7040991, 49.4073921 8.6825502, 49.4092821 8.6942034, 49.4089977 8.6943008, 49.4125147 8.7108209, 49.4113057 8.7120202, 49.4131432 8.7133745, 49.4132612 8.7060850, 49.4130252 8.7094285, 49.4131065 8.7092091, 49.4095865 8.7066610, 49.4122271 8.7059479, 49.4121564 8.7037030, 49.4115410 8.7046342, 49.4091984 8.6941997, 49.4046591 8.6869762, 49.4044605 8.6806232, 49.4040961 8.6803560, 49.4058252 8.6861495, 49.4151692 8.7066598, 49.4316754 8.6324996, 49.4262008 8.6882693, 49.4168638 8.7149130, 49.4066053 8.6919726, 49.4048219 8.6927806, 49.4052550 8.6923037, 49.4082602 8.6992154, 49.4109886 8.6917670, 49.3870250 8.6611599, 49.3759070 8.6609254, 49.3799862 8.6876121, 49.4129001 8.6782904, 49.3653721 8.6843683, 49.4447844 8.7558449 +55.9833412 -3.4080681, 55.9400333 -3.1723378 +yes +no +Stieg, Metzgerei Lanzendorf, Metzgerei Unger, Fleischerei Friedl Rolf, Metzgerei Stieg, Gieser, Metzgerei Sommer, Unger, Metzgerei Benig, Metzgerei Wickenhäuser, Rebmann, Bolz +49.4300711 8.6823444 +yes +yes and 107 +yes +55.8994270 -3.2972350, 55.9002100 -3.2321660, 55.9100535 -3.1423251, 55.9051775 -3.1653894, 55.8839472 -3.3405441, 55.9102318 -3.2377415 +Gurkha Cafe +weather shelter, public transport +Schloss Filmtheater, Die Kamera +48.8574324 2.3409368, 48.8424681 2.3705204, 48.8423483 2.3706817, 48.8422096 2.3708780, 48.8639780 2.3058261, 48.8877064 2.3773415, 48.8873645 2.3767886, 48.8878470 2.3777753, 48.8879004 2.3778844, 48.8877413 2.3775591, 48.8875794 2.3772282, 48.8874181 2.3768983, 48.8874733 2.3770111, 48.8879540 2.3779939, 48.8877947 2.3776682, 48.8876336 2.3773389, 48.8876884 2.3774510, 48.8875249 2.3771165, 48.8552023 2.2872854, 48.8496593 2.3670787, 48.8492344 2.3675422, 48.8958210 2.3960294 +0 +yes +yes +48.8803471 2.2968238 +4 +yes +49.3826654 8.6703241, 49.3795039 8.6788777, 49.3994731 8.6498961, 49.3795039 8.6788791, 49.3795039 8.6788799, 49.3795039 8.6788784, 49.3795039 8.6788807 +77 +yes +5 +1 +55.8969575 -3.3064520, 55.9286779 -3.2096502, 55.9475295 -3.2065018, 55.9709217 -3.2085540, 55.9710794 -3.2083765, 55.9713224 -3.2074276, 55.9584008 -3.2092092, 55.9601757 -3.2559248, 55.9312309 -3.2523089, 55.9511924 -3.1760524, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9073786 -3.2585910, 55.9531081 -3.2008271, 55.9450251 -3.2048945, 55.9616053 -3.1809060, 55.9122939 -3.1636240, 55.9053215 -3.1319819, 55.9383223 -3.4081252, 55.9359156 -3.2099930, 55.9391016 -3.2261638, 55.9426048 -3.1828681, 55.9284825 -3.2096589, 55.9457396 -3.1854060, 55.9492055 -3.1928272, 55.9457630 -3.2348824, 55.9531031 -3.1974183, 55.9442023 -3.2038200, 55.9350165 -3.1943787, 55.9503960 -3.1873714, 55.9086565 -3.2096817, 55.9612140 -3.3062746, 55.9809058 -3.1784709, 55.9569588 -3.1874026, 55.9103533 -3.3220087, 55.9328871 -3.3087416, 55.9013749 -3.2048039, 55.9541472 -3.1916750, 55.9428244 -3.2815918, 55.9498996 -3.2091714, 55.9511059 -3.2031477, 55.9504209 -3.2072119, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9537368 -3.1946870, 55.9537500 -3.1946096, 55.9468356 -3.2159630, 55.9379488 -3.2323230, 55.9573609 -3.2064305, 55.9530711 -3.2010501, 55.9526098 -3.2039830, 55.9430480 -3.2039420, 55.9576925 -3.1843665, 55.9527506 -3.1965698, 55.9507785 -3.2057118, 55.9514350 -3.2026235, 55.9517068 -3.2027827, 55.9516311 -3.1963503, 55.9035407 -3.2854196, 55.9717098 -3.1715371, 55.9491465 -3.2108241, 55.9522247 -3.1996285, 55.9420700 -3.2221190, 55.9533643 -3.1992326, 55.9695931 -3.1723910, 55.9552824 -3.1886051, 55.9275226 -3.2095127, 55.9462004 -3.1850058, 55.9700768 -3.1718970, 55.9655823 -3.2732115, 55.9526548 -3.1971889, 55.9267933 -3.2094073, 55.9245093 -3.2096867, 55.9562269 -3.1380823, 55.9275049 -3.1644260, 55.9274977 -3.1640447, 55.9683279 -3.1734427, 55.9375948 -3.1784176, 55.9461675 -3.2083866, 55.9325351 -3.1397933, 55.9453646 -3.1914973, 55.9453776 -3.1916473, 55.9507459 -3.2052838, 55.9538645 -3.1977873, 55.9549461 -3.1936274, 55.9550466 -3.1929475, 55.9519378 -3.2048677, 55.9527501 -3.2005561, 55.9525006 -3.1971100, 55.9535447 -3.1920694, 55.9528295 -3.1149002, 55.9533094 -3.1146987, 55.9524703 -3.1136856, 55.9587335 -3.2260450, 55.9575370 -3.1698723, 55.9252818 -3.2099781, 55.9342963 -3.2105127, 55.9756176 -3.1666794, 55.9429604 -3.2929801, 55.9426525 -3.2829003, 55.9430016 -3.2880429, 55.9656482 -3.2744012, 55.9748270 -3.2379923, 55.9233852 -3.2910431, 55.9234641 -3.2913646, 55.9544888 -3.1913969, 55.9383988 -3.3146583, 55.9756625 -3.1668579, 55.9528337 -3.1973510, 55.9544909 -3.1908045 +7 +48.8337601 2.2980718 +yes +15 and 53.6336393 10.0363341, 53.6360504 10.0335862, 53.6440677 10.0246132, 53.6523113 10.0341830, 53.6643366 10.0352316, 53.6709255 10.0356700, 53.6367766 10.0336568, 53.6378772 10.0297658, 53.6379603 10.0299328, 53.6378461 10.0278999, 53.6380710 10.0270600, 53.6803028 10.0464602, 53.6371050 10.0329155, 53.6375635 10.0322890, 53.6377966 10.0314595 +yes +55.9511924 -3.1760524 +fr:Roc de Peyre, fr:Moure de la Gardille, fr:Pic d'Anjeau, fr:Signal de Mailhebiau, fr:Truc de Grèzes +55.9440035 -3.1620073, 55.9541294 -3.1809330, 55.9477108 -3.2639521, 55.9544518 -3.2745497, 55.9152214 -3.3945719, 55.9134128 -3.3949152, 55.9482519 -3.2642123, 55.9716648 -3.1905955, 55.9472868 -3.2703827, 55.9482565 -3.2674250, 55.9541135 -3.1088654, 55.9523925 -3.1039168, 55.9586663 -3.1191756, 55.9519300 -3.1027096, 55.9491007 -3.0951514, 55.9580191 -3.1179901, 55.9583615 -3.1185560, 55.9808431 -3.2595202, 55.9560356 -3.1824861, 55.9543903 -3.1831036, 55.9450930 -3.2608919, 55.9464057 -3.2635956, 55.9101888 -3.3263005 +asphalt, asphalt, asphalt, asphalt, asphalt +49.4026602 8.7297882, 49.4269174 8.7219719, 49.4155178 8.7899777, 49.4105654 8.7914079, 49.4255549 8.7739082, 49.4035191 8.7047078, 49.4195186 8.7046484, 49.4261495 8.7062630, 49.4035105 8.7605887, 49.4467404 8.7467641, 49.4580313 8.7464236, 49.3925405 8.6991164, 49.3828404 8.6974716 +49.4073193 8.7078225, 49.4143210 8.7642858 +51.2202794 6.7668908, 52.3092512 10.5048372, 50.9299219 7.0410660, 54.2931879 12.3312166 +yes +Forstquelle, Turnerbrunnen, Schneeberg, Schweinsbrunnen, Michelsbrunnen, Gaulskopfbrunnen, Buchbrunnen, Webersbrunnen, Bittersbrunnen, Strangwasenbrunnen, Hellenbachbrunnen, Hohler-Kästenbaum-Brunnen, Mausbach-Brunnen, Brunnen an der Jagdhütte, Großer Roßbrunnen, Kleiner Roßbrunnen, Erlenbrunnen, Rombachbrunnen +35 +35 +no +55.9670315 -3.2477797, 55.9586110 -3.1856655, 55.9736688 -3.1675716, 55.9907705 -3.3987419, 55.9537560 -3.1154614, 55.9466681 -3.2139844, 55.9332134 -3.1406814, 55.9605457 -3.2255054, 55.9076452 -3.2280715, 55.9404662 -3.2927628, 55.8851300 -3.3398078, 55.9042993 -3.1652640, 55.9431626 -3.1790248 +55.9432488 -3.1817167, 55.9280547 -3.2292838, 55.9058039 -3.2543852, 55.9409114 -3.2097700, 55.9703622 -3.1822317, 55.9629073 -3.1944999, 55.9358754 -3.1760269, 55.9344353 -3.2125210, 55.9416804 -3.2026036, 55.9438526 -3.1964947, 55.9592778 -3.1901889, 55.9613996 -3.1820673, 55.9580853 -3.1891489, 55.9468876 -3.1828168, 55.9488813 -3.1834652, 55.9492101 -3.2153200, 55.9544768 -3.1997466, 55.9126235 -3.3200599, 55.9489685 -3.1194874, 55.9328025 -3.3133858, 55.9309502 -3.1942179, 55.9741682 -3.2117651, 55.9296473 -3.1707716, 55.9718479 -3.1748613, 55.9390126 -3.2052535, 55.9379190 -3.2748726, 55.9410176 -3.2095848, 55.9292876 -3.2059198, 55.9598760 -3.2111177, 55.9296228 -3.1686332, 55.9167292 -3.1640730, 55.9351051 -3.2071646, 55.9335197 -3.2097268, 55.9462699 -3.1973167, 55.9324830 -3.1925693, 55.9310878 -3.1608248, 55.9344607 -3.1586816, 55.9350533 -3.2069968, 55.9350865 -3.2070121, 55.9492741 -3.4056494, 55.9335280 -3.2095487, 55.9408795 -3.2097114, 55.9016895 -3.1650816, 55.9242811 -3.1768126 +Artspace, Citadel Youth Centre and http://www.citadelyouthcentre.org.uk/, Torrance Gallery and http://www.torrancegallery.co.uk/, Doodles, Summerhall, North Edinburgh Arts Centre, The MGA Academy +49.4066800 8.6851295, 49.4123932 8.7103247, 49.4022609 8.6800427, 49.4133232 8.7072699, 49.4131657 8.7074358, 49.4089749 8.7019860, 49.4115371 8.7077542, 49.4116445 8.7062771, 49.4116271 8.7069102, 49.4121327 8.7076792, 49.4123530 8.7087690, 49.4104389 8.7086905, 49.4113532 8.7105806, 49.4090153 8.6964726, 49.4124896 8.7107633, 49.4125760 8.7095003, 49.4111071 8.7086876, 49.3798268 8.6903215, 49.4077695 8.6948215, 49.4200540 8.6567921, 49.4085894 8.6902323, 49.4299617 8.6876137, 49.3802935 8.6747903 +377 +Hôtel Montpensier +16 +no +paved, asphalt, asphalt, paved +yes +4, 5 +55.9433218 -3.1904284 +yes +49.3819891 8.7064791, 49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.3696607 8.7091979, 49.4157261 8.7004521, 49.4532301 8.7620686, 49.3877298 8.7446960, 49.4209333 8.7223854, 49.3946455 8.7166681, 49.4221949 8.7060036, 49.4157681 8.7006398, 49.4052183 8.7807063, 49.4390162 8.7105044, 49.4210179 8.7198036, 49.4272716 8.7035465, 49.4305777 8.6928339, 49.4497204 8.7157564, 49.4428768 8.7011414, 49.4040784 8.7535968, 49.4300341 8.7265054, 49.4040547 8.7550178, 49.3925114 8.7464235, 49.3936499 8.7467333, 49.4005231 8.7520710, 49.4095083 8.7002566, 49.4109969 8.7018271, 49.4103323 8.7353954 +49.4157830 8.7024600 +yes +62 +Thoraxklinik, Orthopädische Klinik, Medizinische Psychologie, Psychosomatische Ambulanz, Psychiatrische Klinik, Klinik für Kinder- und Jugendpsychiatrie, Psychiatrische Ambulanz, Kurpfalzkrankenhaus, Klinik für Allgemeine Innere Medizin und Psychosomatik, Physiotherapie Kathrin Kittelmann, Blutspendezentrale Heidelberg IKTZ, Kinderklinik, HIT, Zentrum für Schmerztherapie und Palliativmedizin - Überregionales Schmerzzentrum Heidelberg-Mannheim, Nierenzentrum, Chirurgische Klinik, NCT Heidelberg, Krankenhaus St. Vincentius, Institut für Medizinische Psychologie, Klinik für Kinder- und Jugendpsychiatrie - Tageszentrum für Jugendliche, St. Elisabeth, St. Elisabeth, Kliniken Schmieder Heidelberg, Salem, ATOS Klinik, Unfallchirurgie - Atos, Institut für Psychosomatische Kooperationsforschung und Familientherapie, Tropenmedizinische Ambulanz, Krehl-Klinik, Hautklinik, Frauenklinik und Hautklinik, Frauenklinik, Gemeinschaftspraxis Wittmann, St. Josefskrankenhaus, Bethanien-Krankenhaus, Kopfklinik, Kinderklinik, Kinderklinik, Krehl-Klinik, Rehabilitationsklinik Heidelberg-Königstuhl +Thermes de Cluny, L'enceinte de Philippe Auguste, Cavea des Arènes de Lutèce +132 and 43.6837822 -79.4260743, 43.6576795 -79.4987997, 43.7022711 -79.5255029, 53.9900182 -1.1048507, 54.0109332 -1.0814973, 53.9502911 -1.0730271, 53.9695593 -1.1044687, 53.9783035 -1.1064726, 53.9659202 -1.1066465, 53.9153104 -1.1359444, 53.9852880 -1.1561727, 53.9409591 -1.1265772, 53.9550521 -1.1301932, 53.9490348 -1.1324670, 53.9615418 -1.1120955, 53.9522410 -1.1122907, 53.9358339 -1.1263285, 54.0107556 -1.0814518, 53.9863055 -1.1105767, 53.9403226 -1.1185343, 54.0146884 -1.0718957, 53.9877014 -1.1050782, 53.9636588 -1.1373722, 53.9491771 -1.0804384, 53.9553252 -1.1119903, 53.9017427 -1.0873341, 53.9990117 -1.1284252, 53.9637219 -1.1380788, 53.9575852 -1.1178225, 53.9874393 -1.1204313, 53.9868873 -1.1220633, 53.9494875 -1.1413259, 53.9647966 -1.1058434, 53.9462069 -1.0762908, 53.9646978 -1.1104689, 53.9500452 -1.0806102, 43.6644716 -79.5073350, 53.9731081 -1.0720236, 53.9728750 -1.0718855, 43.6709565 -79.4808029, 43.6909696 -79.5078325, 43.6768364 -79.5008575, 43.6869909 -79.4927906, 43.7060427 -79.5305440, 53.9518846 -1.0748059, 43.6954667 -79.4292400, 53.9891412 -1.0750065, 53.9697935 -1.0788931, 53.9761008 -1.0866567, 53.9642505 -1.1103673, 53.9572111 -1.1022306, 53.9275166 -1.1585419, 53.9771511 -1.1335660, 43.6916751 -79.4801455, 43.6884518 -79.4620778, 43.6791418 -79.4807102, 43.6784874 -79.4805707, 53.9171538 -1.0961410, 43.6983920 -79.4349417, 43.7032269 -79.5060546, 43.6965563 -79.4691090, 53.9675172 -1.0774716, 43.6537880 -79.4901878, 43.6868311 -79.4924568, 54.0175617 -1.0838151, 53.9441501 -1.1072575, 43.6912619 -79.4333772, 43.6883062 -79.4538863, 53.9580671 -1.0717614, 53.9316497 -1.1069040, 43.7063756 -79.5161696, 43.6980072 -79.5193378, 43.6979105 -79.5191746, 43.6981548 -79.5195536, 43.6948627 -79.4854853, 43.7078482 -79.5309590, 43.6761780 -79.4788514, 43.6769072 -79.4772807, 43.6731469 -79.4908170, 53.9872557 -1.1137428, 53.9773826 -1.0941901, 53.9781054 -1.0952493, 53.9719535 -1.0928503, 43.6933502 -79.4302213, 43.6843140 -79.4879601, 43.6712702 -79.4926038, 43.6946390 -79.4359419, 43.6869082 -79.4775555, 43.6817542 -79.4986570, 43.7014365 -79.5073633, 53.9735958 -1.2046224, 43.6935978 -79.4761834, 43.7014532 -79.4510224, 43.7014588 -79.4506901, 43.6957307 -79.4305271, 43.7032224 -79.4392616, 53.9663972 -1.1227394, 43.6925004 -79.5088912, 43.7000154 -79.4462363, 43.7000042 -79.4464494, 43.7001712 -79.4461827, 43.7001539 -79.4458926, 43.7000636 -79.4460083, 53.9838702 -1.1222527, 43.6836390 -79.4590501, 43.6880963 -79.4613111, 43.6898241 -79.4643187, 53.9450082 -1.1361836, 43.6924209 -79.4689785, 53.9889063 -1.1110964, 43.6879894 -79.4708591, 53.9445374 -1.1245969, 53.9595274 -1.0981373, 53.9610119 -1.1037227, 43.6840446 -79.4389375, 43.6842718 -79.4397157, 43.6871180 -79.4284008, 53.9623408 -1.1308643, 43.6484124 -79.4885632, 53.9522747 -1.0911362, 43.6762467 -79.4781695, 43.6927596 -79.4362309, 43.6895001 -79.4353381, 43.6921445 -79.4472623, 43.6917638 -79.4436721, 43.6628673 -79.4872055, 43.6627881 -79.4870652, 43.6890777 -79.4991503, 43.6898499 -79.4650002, 43.6648262 -79.5030967, 43.7027737 -79.5207797, 43.6742489 -79.4976003 +Hotel Etab, Heidelberg Marriott Hotel, Hotel & Restaurant Auerstein, Hotel Schönberger Hof, Gästehaus Endrich, Parkhotel Atlantik, Leonardo Hotel, Hotel Tannhäuser, Hotel Bayrischer Hof, EMBL ISG Hotel, Ivory-Suite, Hotel Hackteufel, Hotel Perkeo, Hotel The Dubliner, Hotel Regina, IBIS, Neckartal, Goldener Falke, Hotel zum Ritter St. Georg, Europäischer Hof, Hotel Elite, Hotel Zur Alten Brücke, Qube Hotel, Hotel Central, Denner Hotel, Hotel Acor, Hotel Monpti, Hotel am Kornmarkt, NH Heidelberg, Hotel Goldene Rose, Hotel Nassauer Hof, Hotel am Rathaus, Hotel am Schloss, Hotel Kulturbrauerei Heidelberg, Hotel Villa Marstall, Hotel Goldener Hecht, Hotel Holländer Hof, Hotel Schnookeloch, Arthotel Heidelberg, Hotel Weisser Bock, Hotel Backmulde, Hip Hotel, Altstadt Hotel, Hotel Krokodil, Hiphotel Blume, Hotel Classic Inn, Hotel Diana, Kurpfalz-Residenz, Gästezimmer GZ, Bergheim 41, Kranich, Holiday Inn Express Heidelberg City Centre, Hotel Molkenkur, Gaestehaus der SRH, Heidelberg Suites, Hotel Heidelberger Land, Hotel Das Lamm, Astoria, Hotel Die Hirschgasse Heidelberg, Hotel Ballmann Garni, Crowne Plaza Heidelberg, Exzellenz Hotel, Hotel Boarding House, Hotel Kurpfalz, Hotel Anlage, Hotel Panorama, Leonardo Hotel Heidelberg, Hotel Schmitt, Goldene Rose, Hotel Heidelberg, Hotel Rose, Neu Heidelberg, hotelo, Ambiente, Cafe Hotel Frisch, DenRiKo, Schwarzer Adler, Zum Waldhorn, B&B Hotel and 49.4300711 8.6823444, 49.4091649 8.6726851, 49.4313225 8.6827624, 49.4121354 8.7011825, 49.4196577 8.7610727, 49.4158348 8.7294625, 49.4079210 8.6866720, 49.4092400 8.6923559, 49.4088507 8.6922324, 49.3703369 8.7056886, 49.4138040 8.6935807, 49.4127941 8.7097025, 49.4110763 8.7008753, 49.4113255 8.7025821, 49.4094909 8.6914211, 49.4033496 8.6774778, 49.4106777 8.7717326, 49.4118757 8.7108162, 49.4117371 8.7091875, 49.4079388 8.6952668, 49.4050153 8.6915327, 49.4131659 8.7099659, 49.4080500 8.6812645, 49.4040305 8.6800031, 49.4092001 8.6921359, 49.4090167 8.7039135, 49.4090286 8.7040991, 49.4119070 8.7119908, 49.4073921 8.6825502, 49.4092821 8.6942034, 49.4089977 8.6943008, 49.4125147 8.7108209, 49.4113057 8.7120202, 49.4131432 8.7133745, 49.4132612 8.7060850, 49.4130252 8.7094285, 49.4131065 8.7092091, 49.4129122 8.7088486, 49.4095865 8.7066610, 49.4122271 8.7059479, 49.4121564 8.7037030, 49.4115410 8.7046342, 49.4091984 8.6941997, 49.4046591 8.6869762, 49.4044605 8.6806232, 49.4040961 8.6803560, 49.3912497 8.6899838, 49.4086878 8.6815330, 49.4072069 8.6788242, 49.4083367 8.6887571, 49.3961597 8.6436240, 49.4058252 8.6861495, 49.4069371 8.7137255, 49.4119335 8.6547454, 49.4151692 8.7066598, 49.4316754 8.6324996, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4048325 8.6922035, 49.4066053 8.6919726, 49.4048219 8.6927806, 49.4052550 8.6923037, 49.3744135 8.6149237, 49.4082602 8.6992154, 49.4109886 8.6917670, 49.3870250 8.6611599, 49.4044331 8.6838472, 49.3772275 8.6672364, 49.3759070 8.6609254, 49.3799862 8.6876121, 49.4006254 8.6417864, 49.3988698 8.6808081, 49.4173698 8.7532486, 49.4129001 8.6782904, 49.3653721 8.6843683, 49.4179324 8.7578275, 49.4447844 8.7558449, 49.3971502 8.6748504 +134 +5 +55.9474486 -3.1859655, 55.9547783 -3.1976132, 55.9512066 -3.1850870, 55.9426063 -3.2085087, 55.9348214 -3.0945488, 55.9366417 -3.1570870, 55.9733698 -3.1917230, 55.9446070 -3.1860121, 55.9444906 -3.1858127, 55.9450275 -3.1853002, 55.9395675 -3.2038566, 55.9355709 -3.2102528, 55.9395567 -3.2208158, 55.9395988 -3.2206602, 55.9318108 -3.2374274, 55.9282620 -3.2003920, 55.9445252 -3.1859176, 55.9480977 -3.1860003, 55.9471995 -3.1855061, 55.9468154 -3.1855780, 55.9440261 -3.1820823, 55.9406312 -3.2039275, 55.9402760 -3.2038110, 55.9434664 -3.1831055, 55.9434196 -3.1842460, 55.9425019 -3.1793852, 55.9434281 -3.1802599, 55.9774101 -3.1718543, 55.9628304 -3.1997070, 55.9630892 -3.2001803, 55.9479312 -3.1940298, 55.9488004 -3.1932865, 55.9488010 -3.1925834, 55.9619662 -3.2352523, 55.9503936 -3.1748495, 55.9007148 -3.2329556, 55.9500635 -3.1892496, 55.9534622 -3.1963003, 55.9810888 -3.1948604, 55.9813469 -3.1948497, 55.9775639 -3.1689368, 55.9763814 -3.1707551, 55.9610381 -3.1807131, 55.9760230 -3.1696703, 55.9770082 -3.1723631, 55.9771560 -3.1735460, 55.9771245 -3.1733636, 55.9825548 -3.1951570, 55.9770419 -3.1725751, 55.9770800 -3.1727697, 55.9757237 -3.1680744, 55.9768212 -3.1696962, 55.9696870 -3.1601851, 55.9746544 -3.1708033, 55.9754457 -3.1703672, 55.9748068 -3.1719428, 55.9764963 -3.1714060, 55.9612898 -3.1713969, 55.9734916 -3.1731211, 55.9734370 -3.1678545, 55.9766362 -3.1692569, 55.9581662 -3.2088898, 55.9584860 -3.2082072, 55.9585295 -3.2049192, 55.9561318 -3.2024897, 55.9607716 -3.1994845, 55.9771770 -3.1718400, 55.9624799 -3.1788559, 55.9721688 -3.1727029, 55.9734119 -3.1676688, 55.9545214 -3.1981041, 55.9542551 -3.1979757, 55.9356483 -3.2096691, 55.9364920 -3.2084274, 55.9453065 -3.1835012, 55.9456929 -3.2031564, 55.9450873 -3.2046445, 55.9463793 -3.2017812, 55.9468801 -3.2026112, 55.9467570 -3.2027078, 55.9460060 -3.2052924, 55.9461895 -3.1912537, 55.9642340 -3.2119376, 55.9760874 -3.1678906, 55.9736874 -3.1725679, 55.9751258 -3.1658656, 55.9460137 -3.1821143, 55.9587464 -3.2103338, 55.9455352 -3.1866707, 55.9456867 -3.1862318, 55.9445731 -3.1850966, 55.9445434 -3.1856701, 55.9478908 -3.1920045, 55.9477659 -3.1919316, 55.9541180 -3.1855740, 55.9807233 -3.1953798, 55.9525178 -3.1990765, 55.9527244 -3.1978512, 55.9458340 -3.1851287, 55.9456579 -3.1864695, 55.9506084 -3.1874617, 55.9500934 -3.1836054, 55.9498204 -3.1834215, 55.9508055 -3.1777162, 55.9527611 -3.2030077, 55.9690445 -3.1682228, 55.9567027 -3.2027842, 55.9466421 -3.1371546, 55.9565342 -3.1985297, 55.9567499 -3.1986451, 55.9811460 -3.1776490, 55.9806886 -3.1784936, 55.9809733 -3.1781568, 55.9809041 -3.1782848, 55.9820170 -3.1763600, 55.9465573 -3.2166040, 55.9805956 -3.1934566, 55.9570779 -3.1884191, 55.9480209 -3.1999685, 55.9477134 -3.1957934, 55.9436378 -3.1937085, 55.9461006 -3.2053014, 55.9492755 -3.2122776, 55.9337528 -3.2109407, 55.9334827 -3.1781544, 55.9382383 -3.1924272, 55.9506835 -3.1901263, 55.9488068 -3.1956257, 55.9436353 -3.2027965, 55.9777657 -3.1686490, 55.9425676 -3.2218450, 55.9559071 -3.2028055, 55.9368453 -3.2080850, 55.9391854 -3.2049304, 55.9403048 -3.2042415, 55.9354188 -3.2098186, 55.9517680 -3.1097590, 55.9524705 -3.1146567, 55.9519693 -3.1107353, 55.9524356 -3.1964223, 55.9454688 -3.1847519, 55.9567479 -3.1931126, 55.9434972 -3.1847056, 55.9444992 -3.1839329, 55.9462089 -3.1892186, 55.9453153 -3.1845999, 55.9449737 -3.1886697, 55.9620904 -3.1793576, 55.9537919 -3.1943636, 55.9371166 -3.1786816, 55.9435115 -3.2193949, 55.9437549 -3.2193403, 55.9453892 -3.2171020, 55.9452977 -3.2171685, 55.9462869 -3.2159227, 55.9462644 -3.2147801, 55.9460218 -3.2124627, 55.9463199 -3.2060028, 55.9465542 -3.2158573, 55.9464746 -3.2019795, 55.9464280 -3.2034977, 55.9486448 -3.2062281, 55.9485519 -3.2140339, 55.9468350 -3.2051684, 55.9469209 -3.2045658, 55.9467269 -3.2047624, 55.9485678 -3.1946201, 55.9486421 -3.1944619, 55.9489611 -3.1926806, 55.9457412 -3.2099832, 55.9495552 -3.2091699, 55.9506581 -3.2090223, 55.9505668 -3.2093105, 55.9505740 -3.2087140, 55.9582298 -3.2268150, 55.9434367 -3.2195949, 55.9459910 -3.2187750, 55.9462622 -3.2145897, 55.9586309 -3.1903764, 55.9465828 -3.2144286, 55.9458930 -3.2127420, 55.9462614 -3.2149075, 55.9469392 -3.2157459, 55.9466500 -3.2155710, 55.9489596 -3.2105228, 55.9510015 -3.2097266, 55.9460126 -3.2207351, 55.9505780 -3.2098210, 55.9508641 -3.2099881, 55.9575799 -3.2074392, 55.9580520 -3.2065578, 55.9591363 -3.2144382, 55.9582616 -3.2096030, 55.9581637 -3.2094698, 55.9580113 -3.2092624, 55.9585716 -3.1897695, 55.9578403 -3.1887677, 55.9439438 -3.2188704, 55.9436529 -3.2196006, 55.9425916 -3.2009298, 55.9427456 -3.2017142, 55.9420344 -3.2038063, 55.9418227 -3.2036511, 55.9416648 -3.2030441, 55.9460150 -3.1908920, 55.9470537 -3.1917202, 55.9473009 -3.1911302, 55.9411221 -3.2032805, 55.9392380 -3.2127613, 55.9460599 -3.2291804, 55.9460417 -3.2226604, 55.9410190 -3.2179980, 55.9579150 -3.2068124, 55.9577295 -3.2066473, 55.9573896 -3.2066141, 55.9572260 -3.2056240, 55.9537733 -3.2038799, 55.9507047 -3.1827880, 55.9510404 -3.1846922, 55.9502539 -3.1878479, 55.9475890 -3.2135160, 55.9479040 -3.2136850, 55.9578281 -3.2064585, 55.9462100 -3.2053390, 55.9569075 -3.1939006, 55.9530794 -3.2035262, 55.9486670 -3.1956973, 55.9442170 -3.2180125, 55.9546639 -3.1975541, 55.9544395 -3.1974380, 55.9542190 -3.1973239, 55.9541769 -3.1973021, 55.9540060 -3.1972137, 55.9541028 -3.1972638, 55.9541197 -3.1979103, 55.9530164 -3.2013793, 55.9525837 -3.2041424, 55.9523991 -3.2052223, 55.9522681 -3.2060091, 55.9522441 -3.2061536, 55.9499431 -3.2078244, 55.9429955 -3.2045906, 55.9430360 -3.2042420, 55.9516199 -3.2027318, 55.9518670 -3.2035606, 55.9519125 -3.2029032, 55.9536150 -3.1883633, 55.9499018 -3.1935768, 55.9498329 -3.1910920, 55.9496897 -3.1897241, 55.9500792 -3.1891087, 55.9497794 -3.1891002, 55.9498804 -3.1883969, 55.9507029 -3.1895380, 55.9510625 -3.1882551, 55.9511343 -3.1876851, 55.9504690 -3.1879562, 55.9508281 -3.1833677, 55.9499013 -3.1834760, 55.9480205 -3.1941463, 55.9475711 -3.1964625, 55.9475446 -3.1965793, 55.9474740 -3.1968911, 55.9468749 -3.2055938, 55.9465925 -3.2054865, 55.9462020 -3.2059371, 55.9459497 -3.2061088, 55.9535003 -3.2044865, 55.9535044 -3.2004011, 55.9537081 -3.2003007, 55.9540962 -3.2002450, 55.9537909 -3.1998247, 55.9538415 -3.1995340, 55.9540148 -3.1994866, 55.9526921 -3.1998924, 55.9514403 -3.2044562, 55.9513975 -3.2047070, 55.9460248 -3.2126102, 55.9440530 -3.2064880, 55.9764471 -3.1711406, 55.9803418 -3.1792151, 55.9804368 -3.1789769, 55.9435020 -3.2024352, 55.9432539 -3.2025680, 55.9518969 -3.2025598, 55.9570492 -3.1932499, 55.9466960 -3.2046149, 55.9529509 -3.1973404, 55.9524196 -3.1984036, 55.9526199 -3.1984725, 55.9522016 -3.2030725, 55.9571910 -3.2077708, 55.9446418 -3.1854453, 55.9509598 -3.2058075, 55.9579896 -3.1895662, 55.9563319 -3.1887212, 55.9581296 -3.1899414, 55.9343180 -3.1037178, 55.9650007 -3.1762651, 55.9556173 -3.1925320, 55.9540378 -3.1993360, 55.9423736 -3.2037017, 55.9407524 -3.2038350, 55.9416779 -3.2026669, 55.9265283 -3.2084003, 55.9414320 -3.2180926, 55.9391841 -3.2128654, 55.9751211 -3.1634618, 55.9233856 -3.1748328, 55.9398684 -3.2196073, 55.9400581 -3.2188980, 55.9398220 -3.2197803, 55.9582132 -3.2095372, 55.9497095 -3.2073063, 55.9514958 -3.2041313, 55.9400291 -3.1697303, 55.9413456 -3.1835248, 55.9530272 -3.1892542, 55.9477347 -3.1956994, 55.9497047 -3.1880533, 55.9534027 -3.1920297, 55.9544769 -3.1974573, 55.9539860 -3.1972034, 55.9459525 -3.2060165, 55.9561918 -3.1852745, 55.9478903 -3.1915085, 55.9459447 -3.1909020, 55.9485947 -3.1945597, 55.9484900 -3.1938871, 55.9457476 -3.1909342, 55.9485587 -3.1943530, 55.9483248 -3.1864306, 55.9476976 -3.1919549, 55.9494442 -3.2078565, 55.9522731 -3.2016642, 55.9530413 -3.1976567, 55.9474107 -3.1857005, 55.9388452 -3.1790659, 55.9405357 -3.2246618, 55.9506503 -3.1887550, 55.9459152 -3.2048753, 55.9544956 -3.1996255, 55.9537668 -3.1902693, 55.9248346 -3.2543275, 55.9374976 -3.1806164, 55.9389691 -3.1803219, 55.9419979 -3.1791165, 55.9578375 -3.1855691, 55.9577188 -3.1854711, 55.9570718 -3.1867391, 55.9573525 -3.1857881, 55.9573946 -3.1857377, 55.9578561 -3.1853362, 55.9572831 -3.1858711, 55.9581118 -3.1850848, 55.9574938 -3.1856190, 55.9582219 -3.1849767, 55.9576798 -3.1858665, 55.9320058 -3.2097519, 55.9244481 -3.2103373, 55.9608511 -3.1806444, 55.9073767 -3.2581589, 55.9075931 -3.2558164, 55.9514989 -3.2098689, 55.9644870 -3.1767286, 55.9456613 -3.2057187, 55.9312746 -3.1719521, 55.9338124 -3.1784664, 55.9492753 -3.1855034, 55.9473523 -3.1859232, 55.9410964 -3.1808815, 55.9375777 -3.1779460, 55.9378124 -3.1781642, 55.9354709 -3.1798259, 55.9504193 -3.1866153, 55.9490741 -3.1893997, 55.9529899 -3.1973604, 55.9567716 -3.1807817, 55.9323952 -3.2102340, 55.9321089 -3.2101997, 55.9308794 -3.2100746, 55.9500237 -3.1859641, 55.9437654 -3.2187545, 55.9504916 -3.1861886, 55.9506853 -3.1853773, 55.9710599 -3.2100066, 55.9396263 -3.1829720, 55.9596608 -3.1714218, 55.9466096 -3.2157282, 55.9489839 -3.1929807, 55.9169756 -3.2120428, 55.9469467 -3.1868746, 55.9349914 -3.1790260, 55.9501695 -3.1909428, 55.9426782 -3.2016234, 55.9459543 -3.2110196, 55.9803312 -3.1788000, 55.9702196 -3.1702168, 55.9467924 -3.1855561, 55.9438281 -3.2186053, 55.9457016 -3.1899747, 55.9453485 -3.2171316, 55.9486496 -3.1940701, 55.9224536 -3.2108475, 55.9579863 -3.1811608, 55.9426269 -3.1823902, 55.9429144 -3.1826352, 55.9387155 -3.1789608, 55.9416801 -3.1819013, 55.9566001 -3.1617669, 55.9497766 -3.1880920, 55.9348643 -3.1686663, 55.9382910 -3.1812348, 55.9387708 -3.1815664, 55.9418959 -3.1837485, 55.9418211 -3.1837096, 55.9511825 -3.1075687, 55.9562823 -3.1983948, 55.9418000 -3.1789399, 55.9591452 -3.2145692, 55.9501282 -3.1886800, 55.9501474 -3.1919776, 55.9597144 -3.1824451, 55.9584764 -3.1835758, 55.9563144 -3.1853375, 55.9563910 -3.1855135, 55.9560587 -3.1853594, 55.9565748 -3.1857636, 55.9542906 -3.1861464, 55.9603660 -3.1816080, 55.9539327 -3.1863517, 55.9595195 -3.1827244, 55.9607917 -3.1806186, 55.9506624 -3.1904103, 55.9492455 -3.1893451, 55.9498216 -3.1888060, 55.9580202 -3.1851749, 55.9489961 -3.1873020, 55.9498654 -3.1872300, 55.9495368 -3.1870648, 55.9503997 -3.1842260, 55.9490417 -3.1857303, 55.9498761 -3.1930603, 55.9695051 -3.1724684, 55.9489892 -3.2104514, 55.9428546 -3.2034153, 55.9410667 -3.2032847, 55.9494976 -3.1832041, 55.9570561 -3.1868309, 55.9474907 -3.1912396, 55.9473547 -3.1907578, 55.9385351 -3.1788147, 55.9420479 -3.1791611, 55.9512610 -3.1800100, 55.9512749 -3.1799374, 55.9443287 -3.1812574, 55.9520043 -3.1768950, 55.9468472 -3.1856084, 55.9473137 -3.1851136, 55.9493042 -3.1940688, 55.9466056 -3.1912464, 55.9479666 -3.1920487, 55.9522129 -3.2063407, 55.9382413 -3.1927552, 55.9514215 -3.2038997, 55.9645858 -3.1766158, 55.9648350 -3.1763998, 55.9545797 -3.1975105, 55.9595680 -3.1714413, 55.9733312 -3.1670719, 55.9524366 -3.1994110, 55.9720484 -3.1727281, 55.9541108 -3.2007911, 55.9462949 -3.2053703, 55.9469863 -3.2072082, 55.9346438 -3.2211526, 55.9487803 -3.1950974, 55.9230657 -3.2475227, 55.9439545 -3.2066510, 55.9436637 -3.2079998, 55.9534112 -3.1955067, 55.9045849 -3.2066586, 55.9783017 -3.1800235, 55.9508007 -3.2089750, 55.9205723 -3.1672281 +Heidelberg Marriott Hotel +Cluny - Saint-Germain and 48.8505220 2.3461000 +48.8688161 2.3275703, 48.8663165 2.3370822, 48.8663449 2.3382902, 48.8695611 2.3317879, 48.8691942 2.3321035, 48.8510774 2.3385693, 48.8680799 2.3215688, 48.8656637 2.3778893, 48.8826925 2.3828693, 48.8662404 2.3855356, 48.8652332 2.3505855, 48.8779867 2.3739646, 48.8838984 2.3707556, 48.8847610 2.3245933, 48.8595367 2.4030888, 48.8667141 2.3660388, 48.8497380 2.3851348, 48.8492104 2.3895170, 48.8683391 2.3714311, 48.8683233 2.3660938, 48.8783181 2.3578049, 48.8510126 2.4018663, 48.8517859 2.4015820, 48.8338366 2.3181857, 48.8363089 2.3225218, 48.8867306 2.3464815, 48.8345868 2.4005135, 48.8344550 2.4007736, 48.8493959 2.3750250, 48.8464256 2.3723704, 48.8863208 2.3451631, 48.8864916 2.3449490, 48.8919041 2.3801340, 48.8906427 2.3820001, 48.8909556 2.3819203, 48.8895378 2.3833861, 48.8363055 2.3583190, 48.8584562 2.3550423, 48.8582377 2.3548214, 48.8576530 2.3575640, 48.8589115 2.3534861, 48.8598365 2.3549664, 48.8602520 2.3534175, 48.8572292 2.3551661, 48.8536005 2.3428569, 48.8872790 2.3272010, 48.8503838 2.3895178, 48.8753301 2.3889995, 48.8608773 2.3423534, 48.8617494 2.3405457, 48.8646538 2.3408552, 48.8689710 2.3345642, 48.8704581 2.3373664, 48.8693708 2.3397160, 48.8662163 2.3412156, 48.8625665 2.3522237, 48.8704075 2.3483529, 48.8523186 2.3568760, 48.8591081 2.3500160, 48.8577487 2.3576815, 48.8567788 2.3558116, 48.8554369 2.3580795, 48.8643855 2.3550009, 48.8644586 2.3544256, 48.8530176 2.3445259, 48.8609593 2.3669247, 48.8871861 2.3533770, 48.8813024 2.3361254, 48.8642700 2.3531320, 48.8864637 2.3771916, 48.8680162 2.3548820, 48.8537741 2.3390379, 48.8533950 2.3355231, 48.8709269 2.3577774, 48.8534529 2.3385450, 48.8643001 2.3323292, 48.8706806 2.3211802, 48.8712520 2.3169520, 48.8869689 2.3475030, 48.8803557 2.3235567, 48.8770026 2.3270417, 48.8766444 2.3270121, 48.8769627 2.3148350, 48.8354680 2.2893109, 48.8700490 2.3017240, 48.8683182 2.2984850, 48.8675571 2.3965533, 48.8526933 2.4056082, 48.8608729 2.3451379, 48.8219547 2.3608058, 48.8746858 2.3662628, 48.8903045 2.3534684, 48.8804191 2.3624653, 48.8921927 2.3896612, 48.8403603 2.3126619, 48.8742352 2.3423076, 48.8752057 2.3418014, 48.8750436 2.3412323, 48.8741144 2.3424987, 48.8551767 2.2700634, 48.8899959 2.3389104, 48.8909532 2.3762481, 48.8716440 2.3678590, 48.8594585 2.3560654, 48.8841660 2.2895992, 48.8875689 2.3536169, 48.8710893 2.3748362, 48.8872163 2.3671561, 48.8955070 2.3483656, 48.8626827 2.3523046, 48.8427362 2.3122657, 48.8429440 2.3130453, 48.8420308 2.3127675, 48.8850887 2.3797004, 48.8520143 2.3467491, 48.8478519 2.2606251, 48.8368456 2.3591245, 48.8560410 2.3690859, 48.8508003 2.3840730, 48.8670533 2.3622765, 48.8368019 2.2791434, 48.8369546 2.2791133, 48.8651635 2.3419355, 48.8813769 2.3721944, 48.8468990 2.3044201, 48.8385292 2.3895336, 48.8654085 2.3767039, 48.8710357 2.3522560, 48.8710551 2.3579616, 48.8690400 2.3726204, 48.8671390 2.3755303, 48.8646245 2.3695884, 48.8602229 2.3727573, 48.8536882 2.3708103, 48.8557897 2.3753324, 48.8545778 2.3710477, 48.8862540 2.3333605, 48.8649900 2.3816769, 48.8831571 2.3884076, 48.8570855 2.3550986, 48.8497121 2.3553355, 48.8716241 2.3914872, 48.8594342 2.4029865, 48.8637107 2.3697771, 48.8750628 2.3386203, 48.8710457 2.3357596, 48.8706525 2.3467197, 48.8784174 2.3564644, 48.8796001 2.3577149, 48.8768603 2.3560228, 48.8811904 2.3637372, 48.8827558 2.3708586, 48.8700724 2.3349268, 48.8681500 2.3362914, 48.8672079 2.3368573, 48.8658764 2.3368066, 48.8535604 2.4103242, 48.8530681 2.4104272, 48.8376093 2.3551119, 48.8239653 2.3231923, 48.8270872 2.3248231, 48.8274776 2.3257190, 48.8280761 2.3273229, 48.8291991 2.3278057, 48.8759986 2.3816785, 48.8337665 2.3191153, 48.8341125 2.3181604, 48.8823251 2.3397496, 48.8873987 2.3561308, 48.8658704 2.3983197, 48.8956894 2.3411820, 48.8428672 2.3484588, 48.8946670 2.3443629, 48.8949500 2.3433680, 48.8937368 2.3473963, 48.8938461 2.3475036, 48.8935060 2.3426870, 48.8941720 2.3462340, 48.8941340 2.3463850, 48.8940340 2.3461900, 48.8936100 2.3477290, 48.8930400 2.3435230, 48.8732230 2.3544700, 48.8712160 2.3580210, 48.8706730 2.3594270, 48.8703260 2.3600480, 48.8697550 2.3610960, 48.8694730 2.3616430, 48.8704690 2.3610130, 48.8709730 2.3613960, 48.8710750 2.3612300, 48.8715680 2.3620320, 48.8719160 2.3626810, 48.8726860 2.3635650, 48.8722479 2.3978396, 48.8914670 2.3493410, 48.8929850 2.3440490, 48.8939200 2.3452590, 48.8405023 2.2650429, 48.8914220 2.3515420, 48.8915940 2.3516290, 48.8917510 2.3517290, 48.8919510 2.3518460, 48.8445643 2.3491518, 48.8431091 2.3419694, 48.8693141 2.3323713, 48.8862067 2.3175438, 48.8624680 2.3549738, 48.8883787 2.3534523, 48.8437872 2.3493332, 48.8663676 2.3860046, 48.8686610 2.3900468, 48.8408842 2.2997786, 48.8407778 2.2998335, 48.8525397 2.4062717, 48.8527026 2.3765031, 48.8501042 2.3782626, 48.8532457 2.3759666, 48.8660229 2.3666774, 48.8668369 2.3739208, 48.8667946 2.3743500, 48.8732730 2.3532176, 48.8793707 2.3458902, 48.8571157 2.3684747, 48.8357356 2.3522840, 48.8766343 2.3407712, 48.8515019 2.2777745, 48.8648511 2.3817815, 48.8328925 2.2883940, 48.8490395 2.3485570, 48.8709579 2.3576608, 48.8881851 2.3480652, 48.8884653 2.3485324, 48.8869647 2.3478228, 48.8920227 2.3428666, 48.8857577 2.3451141, 48.8554636 2.3337901, 48.8604940 2.3409119, 48.8910607 2.3394636, 48.8827601 2.3372823, 48.8519424 2.3384522, 48.8883514 2.2971194, 48.8933968 2.3371262, 48.8521891 2.3465789, 48.8887735 2.3938208, 48.8490772 2.4063369, 48.8975354 2.3338607, 48.8975417 2.3342523, 48.8939135 2.3350409, 48.8939770 2.3330775, 48.8935624 2.3293592, 48.8954780 2.3285255, 48.8964866 2.3287937, 48.8974071 2.3296252, 48.8957777 2.3393455, 48.8350746 2.2888425, 48.8340535 2.2873426, 48.8221377 2.3582427, 48.8912689 2.3395224, 48.8683080 2.3897771, 48.8748542 2.3087625, 48.8302605 2.3138234, 48.8421986 2.2819707, 48.8963284 2.3330215, 48.8575637 2.3994629, 48.8577147 2.4074098, 48.8518332 2.3373498, 48.8969286 2.3866620, 48.8505469 2.4061987, 48.8882304 2.3741760, 48.8633570 2.3506638, 48.8356746 2.3226602, 48.8354175 2.3228183, 48.8607749 2.3784617, 48.8555652 2.3871679, 48.8822854 2.3399369, 48.8442360 2.3235210, 48.8405572 2.3224049, 48.8407069 2.3164233, 48.8409248 2.3157527, 48.8413133 2.3184421, 48.8414979 2.3246397, 48.8432840 2.3249954, 48.8407506 2.3165877, 48.8415356 2.3248762, 48.8781338 2.2877691, 48.8910090 2.3460570, 48.8728753 2.3429491, 48.8394700 2.3227210, 48.8419451 2.2631629, 48.8420009 2.2643568, 48.8913333 2.3185158, 48.8561348 2.4048284, 48.8468777 2.4086290, 48.8468470 2.4088515, 48.8479121 2.4058825, 48.8493703 2.2944544, 48.8836495 2.3167431, 48.8720494 2.3430269, 48.8228779 2.3555122, 48.8281219 2.3158457, 48.8730582 2.3434334, 48.8613396 2.3430061, 48.8227998 2.3462308, 48.8765119 2.3549110, 48.8309811 2.3172117, 48.8240226 2.3413467, 48.8248954 2.3414221, 48.8295986 2.3338514, 48.8364982 2.2975868, 48.8352818 2.3025475, 48.8358889 2.3006491, 48.8600347 2.4024972, 48.8608921 2.3439350, 48.8581223 2.3362437, 48.8427979 2.2601266, 48.8394583 2.2629179, 48.8277530 2.3505091, 48.8426097 2.2818352, 48.8196529 2.3647206, 48.8551489 2.3398837, 48.8512675 2.3899326, 48.8845594 2.3650486, 48.8904042 2.3201855, 48.8917130 2.3492982, 48.8392807 2.3902734, 48.8455873 2.3490693, 48.8352427 2.3769655, 48.8369196 2.3750884, 48.8614043 2.3675596, 48.8741216 2.3427260, 48.8944467 2.3202187, 48.8526175 2.3431162, 48.8660965 2.3482633, 48.8549614 2.3379207, 48.8715766 2.3537539, 48.8712919 2.3698711, 48.8733970 2.3707413, 48.8734671 2.3704021, 48.8733502 2.3703282, 48.8668410 2.3533606, 48.8197803 2.3430846, 48.8453425 2.4001936, 48.8530718 2.3455009, 48.8608697 2.3679199, 48.8643323 2.3740909, 48.8396133 2.3228908, 48.8637373 2.3634903, 48.8444534 2.3488046, 48.8613268 2.3701752, 48.8614009 2.3699607, 48.8661252 2.3444240, 48.8659496 2.3445011, 48.8657315 2.3448468, 48.8657774 2.3445761, 48.8511831 2.3785314, 48.8392014 2.3497085, 48.8711280 2.3521453, 48.8790612 2.3664752, 48.8265384 2.3420357, 48.8221288 2.3258121, 48.8530831 2.3451327, 48.8529444 2.3459453, 48.8600507 2.3566528, 48.8527079 2.3443015, 48.8822164 2.3337987, 48.8660577 2.3461115, 48.8753587 2.3704700, 48.8528366 2.3455838, 48.8576488 2.2779659, 48.8884177 2.3743799, 48.8275172 2.3481095, 48.8518377 2.3336366, 48.8831199 2.3303330, 48.8834005 2.3305918, 48.8661080 2.3480098, 48.8650085 2.3673694, 48.8629594 2.3673222, 48.8627650 2.3673900, 48.8467474 2.3783883, 48.8699476 2.3254321, 48.8696624 2.3230123, 48.8403450 2.3126650, 48.8594147 2.3492122, 48.8593718 2.3493758, 48.8591750 2.3498375, 48.8591459 2.3499381, 48.8666058 2.3460447, 48.8274980 2.3718441, 48.8725856 2.3023103, 48.8359481 2.3498941, 48.8687270 2.3475909, 48.8279631 2.3510342, 48.8276841 2.3501384, 48.8237415 2.3254034, 48.8551659 2.3601680, 48.8624888 2.3394585, 48.8618771 2.3408195, 48.8678347 2.3438681, 48.8336080 2.3554429, 48.8569595 2.3061913, 48.8728158 2.3579631, 48.8299498 2.3520500, 48.8304537 2.3536286, 48.8691288 2.3921028, 48.8588424 2.3620611, 48.8527486 2.3889981, 48.8526497 2.3891013, 48.8440184 2.3516159, 48.8703084 2.3528255, 48.8422841 2.3498549, 48.8602435 2.3561333, 48.8727441 2.3433035, 48.8764040 2.3270060, 48.8546210 2.3304540, 48.8815103 2.3372869, 48.8497474 2.3380298, 48.8713994 2.3446987, 48.8655102 2.2838972, 48.8532503 2.3737978, 48.8670687 2.3793313, 48.8667388 2.3796639, 48.8672848 2.3853206, 48.8671313 2.3852348, 48.8664979 2.3850779, 48.8553007 2.3755708, 48.8948851 2.3827807, 48.8760857 2.3803012, 48.8387171 2.4582291, 48.8775011 2.3813787, 48.8486443 2.3753679, 48.8430061 2.3486842, 48.8468648 2.3840074, 48.8598410 2.3424752, 48.8762491 2.3755713, 48.8752119 2.3738600, 48.8753782 2.3736728, 48.8782984 2.3583405, 48.8267959 2.3271211, 48.8812111 2.3720335, 48.8747667 2.3810283, 48.8749554 2.3828694, 48.8785529 2.3744580, 48.8735251 2.3828952, 48.8656456 2.3001103, 48.8716947 2.3062494, 48.8642117 2.3138141, 48.8743835 2.3178889, 48.8723341 2.3116489, 48.8709008 2.3059242, 48.8747420 2.3873713, 48.8783980 2.3708887, 48.8786489 2.3710845, 48.8793968 2.3715404, 48.8442836 2.3233862, 48.8818625 2.3741104, 48.8831168 2.3764104, 48.8835128 2.3767725, 48.8843991 2.3787117, 48.8855150 2.3816003, 48.8833431 2.3880013, 48.8525395 2.3353602, 48.8525395 2.3353602, 48.8423823 2.3027121, 48.8844100 2.3396601, 48.8843181 2.3391723, 48.8528644 2.3463229, 48.8861530 2.3940741, 48.8818660 2.3056448, 48.8469280 2.3518880, 48.8457050 2.3517750, 48.8765843 2.3876396, 48.8768371 2.3719871, 48.8755204 2.3905491, 48.8837170 2.3804450, 48.8755731 2.3984479, 48.8770937 2.4058924, 48.8357004 2.2929900, 48.8350897 2.3042236, 48.8837364 2.3368191, 48.8840234 2.3842246, 48.8556943 2.3595261, 48.8847149 2.3814227, 48.8606485 2.3503847, 48.8924468 2.3253223, 48.8751698 2.3943041, 48.8845920 2.3364580, 48.8815120 2.3375130, 48.8844290 2.3287650, 48.8704232 2.3339330, 48.8727403 2.3545304, 48.8743038 2.3728073, 48.8737082 2.3705081, 48.8745664 2.3724688, 48.8738742 2.3798465, 48.8716356 2.3717654, 48.8721986 2.3733717, 48.8542603 2.3716689, 48.8541774 2.3718475, 48.8540652 2.3718440, 48.8542657 2.3672153, 48.8666836 2.3693913, 48.8642214 2.3713206, 48.8630703 2.3685776, 48.8915636 2.3488296, 48.8524094 2.3465837, 48.8733461 2.3642358, 48.8725150 2.3656983, 48.8690849 2.3675483, 48.8573775 2.3791140, 48.8504308 2.3983982, 48.8301596 2.3342151, 48.8554706 2.3787234, 48.8629210 2.3641445, 48.8301369 2.3291359, 48.8630406 2.3673064, 48.8584243 2.3685727, 48.8592565 2.3822340, 48.8589660 2.3811882, 48.8582525 2.2944389, 48.8680595 2.4086915, 48.8611381 2.3809336, 48.8624272 2.3797335, 48.8519888 2.3423483, 48.8904696 2.3392991, 48.8859778 2.3475855, 48.8667059 2.3800163, 48.8457052 2.3419808, 48.8471480 2.3172036, 48.8476473 2.3185907, 48.8481468 2.3197601, 48.8478436 2.3190965, 48.8549571 2.3538809, 48.8560048 2.3754788, 48.8555572 2.3747522, 48.8618001 2.3720184, 48.8635810 2.3667513, 48.8615804 2.3711339, 48.8636741 2.3696764, 48.8633311 2.3692871, 48.8630042 2.3673142, 48.8614465 2.3641573, 48.8573825 2.3774991, 48.8615938 2.3734258, 48.8632870 2.3585986, 48.8666410 2.3664307, 48.8543300 2.3711983, 48.8749871 2.3593369, 48.8747439 2.3591131, 48.8701314 2.3413473, 48.8537719 2.3404642, 48.8758353 2.3818821, 48.8514007 2.3806923, 48.8667240 2.3744593, 48.8332731 2.3154936, 48.8455561 2.2971265, 48.8277981 2.3154241, 48.8359536 2.3961945, 48.8365131 2.3940686, 48.8381491 2.3600725, 48.8773298 2.3590519, 48.8292002 2.3082962 +48.8166550 2.3605732, 48.8827947 2.3766007, 48.8830752 2.3125555 +48.8330778 2.3268974 +635 +55.9635684 -3.1844376, 55.9575068 -3.1501850, 55.9436142 -3.2051647, 55.9340839 -3.0942935, 55.9679996 -3.2373783, 55.9857135 -3.3943177, 55.9668781 -3.2394194, 55.9679736 -3.2375792, 55.9190795 -3.1651500, 55.9235845 -3.2848604 +3 and 48.3908215 -4.4845938, 48.6510102 -2.0245876, 48.6084394 -4.3313468 +55.9340842 -3.2110851, 55.9440689 -3.1919649, 55.9515573 -3.1786333, 55.9458970 -3.2052450, 55.9575352 -3.2075320, 55.9807924 -3.1779232, 55.9472510 -3.2151012, 55.9454049 -3.1915247, 55.9545520 -3.1869140, 55.9438908 -3.1833205, 55.9528284 -3.1902144, 55.9410985 -3.2183716, 55.9457075 -3.2175746, 55.9380313 -3.3125422 +29 and Zwickauer Straße, Niedersedlitzer Straße, Bergmannstraße, Washingtonstraße, Marie-Curie-Straße, Potthoffstraße, Gustav-Adolf-Platz, Barbarossaplatz, Georg-Palitzsch-Straße, Keplerstraße, Gostritzer Straße, Scharfenberger Straße, Tharandter Straße, Gamigstraße, Nickerner Weg, Nickerner Weg, Oehmestraße, Tharandter Straße, Tharandter Straße, Tharandter Straße, Senftenberger Straße, Gustav-Adolf-Platz, Tharandter Straße, Tharandter Straße +131 +http://www.musee-armee.fr/, www.aphp.fr/, http://www.lesartsdecoratifs.fr/francais/arts-decoratifs/, http://www.arts-et-metiers.net/, http://www.tourjeansanspeur.com/, www.musee-moreau.fr, http://www.paris.fr/loisirs/musees-expos/musee-des-egouts/visite-publique-des-egouts-de-paris/rub 9691 stand 5943 port 23931, http://www.pasteur.fr/ip/easysite/pasteur/fr/institut-pasteur/musees/musee-pasteur, www.daliparis.com/, http://www.cite-sciences.fr/, http://maisonsvictorhugo.paris.fr/, http://www.musee-en-herbe.com/, http://www.mep-fr.org, www.annehoguet.fr/musee.htm, http://www.cite-sciences.fr/fr/cite-des-sciences/contenu/c/1248104303612/cite-des-enfants/, http://www.museedelapoupeeparis.com/, catacombes.paris.fr/, www.musee-erotisme.com, http://www.petitpalais.paris.fr/, http://www.musee-legiondhonneur.fr/, http://conciergerie.monuments-nationaux.fr/, www.museeduvinparis.com, http://www.ladressemuseedelaposte.com/, http://www.baccarat.fr/fr/univers-baccarat/musees/gallery-opening-hours.htm, http://forumdesimages.fr/, www.museeduchocolat.fr, http://www.citechaillot.fr/fr/, www.musee-marine.fr, http://www.museefm.org/, www.fondationlecorbusier.asso.fr, http://musee-contrefacon.com/, www.dapper.com.fr, http://www.pavillons-de-bercy.com/, www.mairie6.paris.fr, www.le-maf.com/, www.bibliotheque-polonaise-paris-shlp.fr, www.icp.fr, http://www.christofle.com/, www.musee-clemenceau.fr/, www.compagnons.org/, www.upmc.fr/, www.avh.asso.fr/, www.musee-henner.fr/, www.bium.univ-paris5.fr/musee/, www.museemaillol.com/, http://www.museedeslettres.fr/, www.museedumontparnasse.net/, http://www.mines-paristech.fr/, www.paris.fr/, crypte.paris.fr/, www.bnf.fr/, prefecturedepolice.interieur.gouv.fr, http://www.paris.fr/loisirs/musees-expos/memorial-leclerc-et-de-la-liberation-de-paris-musee-jean-moulin/p6923, http://www.centrepompidou.fr/cpv/ressource.action?param.id=FR R-89fd49e847165bc78d564f6dbeb6777¶m.idSource=FR E-2ab598d3369ad7a58ead7e6be32ba7b, http://www.maxims-musee-artnouveau.com/, http://www.cite-sciences.fr/fr/carrefour-numerique/, http://www.artludique.com, http://www.henricartierbresson.org, http://www.espacereinedesaba.org/, http://www.avocatparis.org/home/presentation-et-missions/histoire-du-barreau-de-paris/musee-virtuel.html, http://www.quaibranly.fr/, http://www.museum-mineral.fr/, http://www.mnhn.fr/fr/visitez/lieux/galeries-anatomie-comparee-paleontologie, www.imarabe.org/, equipement.paris.fr/JARDIN TINO ROSSI, www.hallesaintpierre.org, www.jeudepaume.org, www.musee-orangerie.fr/, www.curie.fr/, www.grandpalais.fr/, http://www.pavillon-arsenal.com/, www.musee-moyenage.fr/, www.mahj.org, http://www.archivesnationales.culture.gouv.fr/, http://www.museepicassoparis.fr/, http://www.paris.fr/loisirs/musees-expos/musee-cognacq-jay/p6466, www.musee-delacroix.fr, http://www.histoire-immigration.fr/, http://www.musee-orsay.fr, www.museedufumeur.net, www.institutneerlandais.com/, www.pinacotheque.com/, www.lesartsdecoratifs.fr/, http://cernuschi.paris.fr/, www.musee-rodin.fr/, http://www.musee-jacquemart-andre.com/, www.cinematheque.fr/, http://www.fondation-pb-ysl.net, www.mam.paris.fr/, www.palaisdetokyo.com/, fondation.cartier.com/, www.guimet.fr/, paris.fr/loisirs/musees-expos/musee-bourdelle/p6408, http://www.guimet.fr/fr/musee-dennery/informations-pratiques, www.marmottan.com, http://vie-romantique.paris.fr, http://balzac.paris.fr, http://eaudeparis.fr/lespace-culture/pavillon-de-leau/, http://www.memorialdelashoah.org/, http://www.mcjp.fr/, http://zadkine.paris.fr, www.museedemontmartre.fr/, www.chassenature.org, http://www.mobiliernational.culture.gouv.fr/, www.museeduluxembourg.fr/, http://www.palais-decouverte.fr/, www.si.se/Paris/, http://www.fondationlouisvuitton.fr/, http://www.monnaiedeparis.fr/, http://palaisgalliera.paris.fr/, http://carnavalet.paris.fr/, http://www.louvre.fr/, http://sainte-chapelle.monuments-nationaux.fr/ +Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Petite Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine à l'Albien, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Cuvier, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Puits artésien de la Butte-aux-Cailles, fontaine d'eau rafraîchie, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Tour Eiffel, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Boulevard du Palais, Jardin du Luxembourg Playground, Notre-Dame, Square Rene Viviani, Novotel Paris Les Halles, Fontaine Eau de Paris, Fontaine Wallace 125, rue de Meaux, Fontaine Wallace, Eau potable, Fontaine Wallace, Fontaine Wallace, "La Source" (Fontaine à eau potable), Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace +E 35 +yes +6 +55.9606990 -3.2496993, 55.9400545 -3.1930414, 55.9494596 -3.1096499, 55.9138280 -3.1645331, 55.9376548 -3.1781132, 55.9403771 -3.4162904, 55.9195401 -3.1576764, 55.9259844 -3.2829976, 55.9351037 -3.2894757, 55.9502710 -3.2958592, 55.9732511 -3.1566940 +2.0550453394597277 +wlan +292 +0 +11 +Piscine Blomet, Piscine Henry de Montherland, Piscine Suzanne Berlioux, Alfred Nakache, Piscine Saint-Merri, Piscine Château Landon, Piscine Didot, Piscine Émile Anthoine, Piscine Aspirant Dunand, Piscine de la Plaine, Piscine Cour des lions, Piscine Georges Drigny, Piscine municipale Bernard Lafay, Piscine Catherine Lagatu, Piscine Mathis, Piscine Beaujon, Centre sportif Saint-Germain, Aquaboulevard, Piscine Pontoise, Piscine Fernand-Blanluet, Piscine Pailleron, Piscine Georges Hermant, Centre sportif Alfred Nakache, Piscine Georges Vallerey, Piscine des Amiraux, Piscine Château des Rentiers, Piscine d'Auteuil, Piscine Molitor, Piscine René et André Mourlon, Piscine Keller, Piscine Joséphine Baker, Piscine Jean Taris, Piscine Roger Le Gall, Piscine de la Butte Aux Cailles, Piscine Champerret, Piscine Dunois +0 +53.0485839 8.6313511, 53.0485936 8.6313802, 53.0486037 8.6314063, 53.0494724 8.6335621, 53.0494578 8.6335286, 53.0494852 8.6335943, 53.0494998 8.6336225, 53.0520881 8.6325667, 53.0516940 8.6297814, 53.0516682 8.6297841, 53.0516456 8.6297895, 53.0516214 8.6297922, 53.0517785 8.6077513, 53.0516366 8.6078318, 53.0518496 8.6077245, 53.0517108 8.6078050, 53.0590251 8.6234072, 53.0589009 8.6234019, 53.0589848 8.6234019, 53.0590605 8.6234046, 53.0589429 8.6233965, 53.0505000 8.6353079, 53.0506008 8.6353450, 53.0505388 8.6353321, 53.0505678 8.6353106, 53.0505340 8.6352731, 53.0574582 8.5994310, 53.0575115 8.5993612, 53.0575002 8.5994283, 53.0574775 8.5993317, 53.0525977 8.6321456 +2243833 +6 +Roseto, Il Sogno, Salerno il Calabrese, Pizzeria Da Madeo, davinci, Pizzeria Europa, Trattoria Vecchia Bari, Taormina, Alfredo OSTERIA, Mercato, Pasta Bar, Da Mario, Restaurant Kurpfälzisches Museum, Ristorante / Enoteca Akademie, Mamma Leone, ProSecco, Stadtgarten, Trattoria Da Rocco, Santa Lucia, Piccolo Mondo, Rossini, Zafferano, VINCIdue, Ristorante Da Pino, Die Olive Feinkostgeschäft und Snackbar, Giardino, Il Gambero Rosso, Ristorante Italia, Papi Bar, La Vite, Goldene Rose, Stellwerk, Römer Pils Stube, Pizzeria Da Rocco Corona, La Locanda 26, Casa Sorrento, By Lina +49.3805076 8.6913796, 49.4098890 8.7063691, 49.4428552 8.7525697, 49.4116089 8.6773078, 49.4191809 8.7564457, 49.4192023 8.7564431, 49.4343094 8.7486730, 49.4243544 8.7433985, 49.3961047 8.6875838, 49.4276366 8.6827967, 49.4374337 8.6803411, 49.4132997 8.6919729, 49.3784782 8.6591509, 49.3789372 8.6646280, 49.4080084 8.6940492, 49.3828843 8.6904877, 49.4187886 8.6442958, 49.3639893 8.7056214, 49.3657829 8.7050967, 49.3728927 8.7038472, 49.4031962 8.7278159, 49.4016050 8.6845129, 49.3803804 8.6888305, 49.4166719 8.6922486, 49.3768611 8.6887922, 49.3778904 8.6643682, 49.3787580 8.6756367, 49.3909523 8.6618014, 49.3771834 8.6692793, 49.4261853 8.6446150, 49.4186611 8.7633544, 49.4107798 8.7061328, 49.4140696 8.7184550, 49.3749627 8.6158813, 49.4301309 8.6907932, 49.4278654 8.7486231, 49.3869602 8.7092367, 49.4332443 8.6805201, 49.4307092 8.6924155, 49.4172221 8.6817577, 49.3741755 8.6886390, 49.3762842 8.6771341, 49.3766854 8.6825351, 49.4339270 8.6786101, 49.3871791 8.7350466, 49.3800814 8.6727714, 49.4011499 8.6909716, 49.3811655 8.6709398, 49.3845955 8.7081656, 49.4105744 8.6916465, 49.4062671 8.6797009, 49.4088091 8.7068231, 49.4109623 8.6909012, 49.4089627 8.6813526, 49.4109261 8.7125920, 49.4122797 8.7133174, 49.4129194 8.7022179, 49.4090650 8.6813526, 49.4136080 8.7136083, 49.4129132 8.7053546, 49.4061093 8.6758875, 49.4134315 8.7103016, 49.4146455 8.7188499, 49.4062388 8.6917406, 49.4056528 8.6927157, 49.4043812 8.6796436, 49.4083809 8.6986013, 49.4080333 8.6763139, 49.4072113 8.6916915, 49.4103365 8.7039131, 49.4168778 8.7249065, 49.4133316 8.7381491, 49.4076180 8.6891919, 49.4201358 8.6806591, 49.4211077 8.6784794, 49.3737385 8.6825043, 49.3745624 8.6786856, 49.4175873 8.5930822, 49.3895906 8.6884286, 49.4122790 8.7132837, 49.3812556 8.6671021, 49.3854627 8.6732681, 49.4311045 8.6454842, 49.4171606 8.7606666, 49.4171643 8.7606441, 49.4151832 8.7505051, 49.4156686 8.7426209, 49.4125678 8.7457320, 49.4151180 8.7605724, 49.4235281 8.7521732, 49.4278819 8.7486168, 49.4084216 8.6996088, 49.4084408 8.6995987, 49.4062642 8.6913883, 49.4062712 8.6914200, 49.4000303 8.6917151, 49.4000488 8.6917225, 49.4114591 8.7705882, 49.3822762 8.6627779, 49.3891812 8.6768465, 49.3991080 8.6718293, 49.3841629 8.6716409, 49.3834567 8.6610378, 49.4072203 8.6719856, 49.4083820 8.6677978, 49.3740978 8.6628076, 49.4143283 8.7699002, 49.4069887 8.6681549, 49.4106864 8.6497651, 49.4227595 8.6489390, 49.3692466 8.7061199, 49.3790486 8.7061511, 49.4073424 8.6881133, 49.4067051 8.7142475, 49.4127360 8.7206023, 49.4219259 8.7602991, 49.4016204 8.6845377, 49.4051006 8.6848847, 49.4132994 8.6919481 +49.4634974 8.4956993 +55.9374159 -3.1700169 +Robert-Bosch-Straße, Friedhofstraße, Kiefernweg, Unterer Kohlwasen +48.8379931 2.3270595, 48.8184662 2.3501586, 48.8224797 2.3195383, 48.8413274 2.2797801, 48.8384087 2.2847485, 48.8370749 2.4110506, 48.8327412 2.3975487, 48.8256492 2.4145211, 48.8410409 2.2593377, 48.8439975 2.4003952, 48.8301712 2.3992796, 48.8192381 2.4359906 +http://gloria-kamera-kinos.de +48.8479197 2.3992555, 48.8444572 2.3762234, 48.8336197 2.4448135, 48.8267972 2.3644166, 48.8526158 2.3471643, 48.8468908 2.3696558, 48.8422395 2.3861184, 48.8463028 2.3793259, 48.8399294 2.4045970, 48.8448378 2.4051177, 48.8474520 2.4048594, 48.8473395 2.4060719, 48.8350796 2.4339399, 48.8354938 2.4305358, 48.8375477 2.4255552, 48.8346793 2.4193483, 48.8684023 2.3502078, 48.8554435 2.3595073, 48.8502442 2.3485713, 48.8410791 2.3878034, 48.8364073 2.3595567, 48.8326306 2.3560783, 48.8397407 2.3618144, 48.8430681 2.3643136, 48.8552512 2.3476157, 48.8553803 2.3476867, 48.8554064 2.3475533, 48.8552816 2.3474675, 48.8316089 2.3555656, 48.8462050 2.3548474, 48.8445578 2.3478015, 48.8397766 2.3563951, 48.8439889 2.3550231, 48.8400361 2.3581380, 48.8403571 2.3507117, 48.8777755 2.4052173, 48.8374935 2.3535342, 48.8379182 2.3556557, 48.8501724 2.3668483, 48.8872913 2.3493292, 48.8849270 2.3525804, 48.8925222 2.3614454, 48.8551549 2.3558324, 48.8670855 2.3530694, 48.8647563 2.3632147, 48.8674231 2.3585861, 48.8535530 2.3577268, 48.8554112 2.4000945, 48.8276950 2.3526554, 48.8718710 2.3683060, 48.8503580 2.3831342, 48.8699280 2.3499165, 48.8321351 2.3486444, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8293608 2.3803043, 48.8299075 2.3795677, 48.8370007 2.3812275, 48.8204882 2.3602086, 48.8203447 2.3628121, 48.8199857 2.3627088, 48.8339810 2.3847461, 48.8353141 2.3838347, 48.8352990 2.3814978, 48.8787743 2.4087695, 48.8790383 2.4084495, 48.8782046 2.4088226, 48.8793770 2.4082476, 48.8785854 2.4080833, 48.8649222 2.3994933, 48.8628604 2.3719559, 48.8677797 2.3773892, 48.8363767 2.4236251, 48.8295071 2.4201091, 48.8212233 2.4336070, 48.8300361 2.4231832, 48.8295708 2.4234828, 48.8291280 2.4377720, 48.8817158 2.3974038, 48.8350776 2.4353579, 48.8430906 2.4215578, 48.8597630 2.3718080, 48.8322990 2.3969380, 48.8612160 2.3941080, 48.8562087 2.3767474, 48.8556820 2.3852020, 48.8238387 2.3531949, 48.8315645 2.4109263, 48.8312210 2.4129893, 48.8778330 2.3934820, 48.8555310 2.3895370, 48.8998070 2.3740820, 48.8551080 2.3942800, 48.8599920 2.3625150, 48.8270122 2.3540304, 48.8424551 2.3888122, 48.8623280 2.3486460, 48.8525988 2.4088082, 48.8898369 2.3739136, 48.8307590 2.3592040, 48.8526713 2.3815527, 48.8210197 2.3568688, 48.8951024 2.3643279, 48.8504870 2.3502540, 48.8654640 2.3863600, 48.8702780 2.3853090, 48.8684460 2.3844060, 48.8483008 2.3594250, 48.8743960 2.3620000, 48.8590555 2.3853281, 48.8708487 2.3842762, 48.8808400 2.3880660, 48.8304600 2.4499760, 48.8366079 2.4625007, 48.8185772 2.3545050, 48.8229962 2.3483008, 48.8548880 2.3860580, 48.8649444 2.4051523, 48.8711656 2.3608619, 48.8683392 2.3860944, 48.8211700 2.3525560, 48.8412050 2.4011810, 48.8957085 2.3611060, 48.8325969 2.4424252, 48.8280471 2.4193059, 48.8341687 2.4613030, 48.8319760 2.4160891, 48.8322537 2.4156461, 48.8385501 2.4606113, 48.8237496 2.4396773, 48.8234381 2.4570355, 48.8302710 2.4501255, 48.8272306 2.4306540, 48.8308745 2.4295234, 48.8404327 2.4302364, 48.8351339 2.4507573, 48.8355228 2.4555897, 48.8270280 2.4256131, 48.8523056 2.3854632, 48.8827393 2.3748215, 48.8649924 2.3911518, 48.8283394 2.3695038, 48.8713595 2.3858455, 48.8756264 2.3549455, 48.8940100 2.3515980, 48.8606179 2.4048647, 48.8221234 2.3755099, 48.8501856 2.3598181, 48.8783392 2.3518796, 48.8672620 2.3546160, 48.8876110 2.3980200, 48.9001410 2.3907160, 48.8581731 2.4063523, 48.8581782 2.3488219, 48.8579930 2.3811530, 48.8701720 2.3941990, 48.8252925 2.3693389, 48.8760549 2.4066379, 48.8648810 2.3598580, 48.8785620 2.3603690, 48.8656244 2.4005700, 48.8678880 2.4110180, 48.8782870 2.3930910, 48.8687996 2.3670827, 48.8578985 2.3627922, 48.8338684 2.3623631, 48.8186719 2.3602335, 48.8311679 2.3698529, 48.8353270 2.3472350, 48.8435250 2.3852390, 48.8847495 2.3583714, 48.8680920 2.3674820, 48.8749920 2.3693880, 48.8691100 2.3880580, 48.8582469 2.3636013, 48.8847394 2.3599665, 48.8851070 2.3774500, 48.8411853 2.3632232, 48.8618850 2.3795690, 48.8766520 2.3471580, 48.8863250 2.3533990, 48.8937263 2.3632365, 48.8866720 2.3745570, 48.8519585 2.3815373, 48.8735686 2.3764151, 48.8486812 2.4047540, 48.8186727 2.3590770, 48.8422355 2.3539722, 48.8997980 2.3671430, 48.8940029 2.3839514, 48.8509163 2.4000959, 48.8737600 2.4116660, 48.8608430 2.4112060, 48.8729910 2.3967970, 48.8569010 2.3829850, 48.8670820 2.3921970, 48.8394056 2.4219004, 48.8491125 2.4034753, 48.8387600 2.3533490, 48.8650341 2.4104986, 48.8939970 2.3494640, 48.8570984 2.3707315, 48.8861355 2.3561753, 48.8446043 2.3875639, 48.8780460 2.3546040, 48.8482791 2.3738928, 48.8541916 2.4013975, 48.8477459 2.4005894, 48.8315105 2.3698744, 48.8451934 2.3802706, 48.8437212 2.3551124, 48.8678242 2.3628446, 48.8243378 2.3638857, 48.8933245 2.3887800, 48.8941743 2.3916574, 48.8536514 2.3489902, 48.8408330 2.4201155, 48.8912248 2.3930476, 48.8946014 2.3912450, 48.8527000 2.3492200, 48.8518000 2.3475300, 48.8242821 2.4231989, 48.8387842 2.4064887, 48.8449387 2.4418585, 48.8516633 2.4098056, 48.8668000 2.3495673, 48.8600249 2.4009571, 48.8589058 2.3989762, 48.8559569 2.4014635, 48.8819047 2.3985349, 48.8590759 2.4003273, 48.8264004 2.4327560, 48.8189971 2.3575128, 48.8323795 2.3620094, 48.8520536 2.4091515, 48.8198844 2.3619743, 48.8569678 2.3519723, 48.8499865 2.3481714, 48.8895806 2.3929015, 48.8847068 2.3794407, 48.8420092 2.4240851, 48.8232610 2.3543235, 48.8232751 2.3542283, 48.8632906 2.3969375, 48.8597103 2.3998209, 48.8303825 2.3751684, 48.8930154 2.3876090, 48.8296315 2.3814341, 48.8300792 2.4152641, 48.8419664 2.3871201, 48.8815514 2.4001315, 48.8283467 2.3766535, 48.8725766 2.3640561, 48.8441811 2.3576296, 48.8668462 2.3528123, 48.8658864 2.3524475, 48.8764030 2.3793479, 48.8310454 2.3779874, 48.8527614 2.3515044, 48.8577082 2.3492535, 48.8564552 2.3511205, 48.8888874 2.3790640, 48.8786186 2.4075133, 48.8276674 2.3600431, 48.8279422 2.3594556, 48.8281550 2.3775324, 48.8316089 2.3555656, 48.8316089 2.3555656, 48.8459784 2.3603720, 48.8243136 2.4192238, 48.8629574 2.3670436, 48.8705355 2.3858494, 48.8771612 2.3641684, 48.8662716 2.4063088, 48.8305375 2.3580300, 48.8527458 2.3514040, 48.8361094 2.3872805, 48.8774505 2.3685222, 48.8563876 2.4098516, 48.8897483 2.3636170, 48.8893152 2.3632428, 48.8895729 2.3670765, 48.8531320 2.3882360, 48.8548595 2.4101096, 48.8950748 2.3539271, 48.8287672 2.3790174, 48.8290058 2.3792428, 48.8324901 2.4167426, 48.8325371 2.4171377, 48.8770432 2.3607309, 48.8928183 2.3927190, 48.8528020 2.4110674, 48.8854184 2.3809339, 48.8847022 2.3794239, 48.8220651 2.3497136, 48.8556477 2.3481362, 48.8379924 2.3573249, 48.8506007 2.3684957, 48.8279269 2.3606649, 48.8281328 2.3608761, 48.8284210 2.3605021, 48.8290169 2.3599418, 48.8313949 2.3614586, 48.8502691 2.3768309, 48.8514077 2.3619724, 48.8557425 2.3657180, 48.8557863 2.3654533, 48.8405076 2.4080728, 48.8407300 2.4111999, 48.8420117 2.4099305, 48.8435586 2.3837116, 48.8463579 2.4045679, 48.8467508 2.4047042, 48.8481084 2.4046457, 48.8358697 2.3734634, 48.8362808 2.3737861, 48.8444058 2.3789793, 48.8769296 2.3805462, 48.8307541 2.4193421, 48.8663182 2.3718556, 48.8209696 2.4454995, 48.8453348 2.3532344, 48.8736147 2.3633962, 48.8708335 2.3864170, 48.8223127 2.4420635, 48.8594153 2.4063574, 48.8759892 2.3685271, 48.8640746 2.3609523, 48.8602693 2.3889177, 48.8593740 2.3653569, 48.8620888 2.3721843, 48.8416104 2.3878997 +City of Edinburgh Council, Transport for Scotland, Forth Estuary Transport Authority, The Forth Road Bridge, Forth Estuary Transport Authority, Forth Estuary Transport Authority, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport for Scotland, Transport for Scotland, Transport for Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, City of Edinburgh Council, Transport Scotland, Transport Scotland, Transport for Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, City of Edinburgh Council, City of Edinburgh Council, Transport Scotland, Transport Scotland, Transport Scotland, City of Edinburgh Council, City of Edinburgh Council, City of Edinburgh Council, City of Edinburgh Council, Transport Scotland, Transport Scotland, City of Edinburgh Council, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland +Bruntsfield Hotel +Elysée Lounge +20 +yes +34 +55.9498298 -3.1876708 +http://www.hovicha.com +49.9606475 11.6260343, 49.3608074 11.0505849, 49.2234454 12.6611867, 49.4836508 10.9835475, 50.0042360 9.0624526, 49.9124639 10.8920010, 50.0012000 9.0683238, 49.4141881 12.4140633, 49.7934099 12.2899120, 50.0060004 11.4141590, 49.9766936 9.1566232, 49.9845565 9.1639906, 49.1891725 11.1874594, 49.3687740 11.3057878, 50.0452138 10.2340424, 50.2598647 10.9666557, 50.2583057 10.9646137, 49.7502077 9.1790325, 50.3759930 11.7382095, 49.7922309 10.0258144, 49.3013427 10.5817647, 49.3053748 10.5718491, 49.2915039 11.4151762, 49.2943053 11.4096947, 50.1264898 9.1161746, 50.3177512 12.1012234, 50.3176182 12.1006372, 49.7835917 12.3094464, 50.2753812 10.9496791, 49.9769664 9.0630892, 49.8037322 10.1655094, 49.6668795 10.1406107, 50.0652139 9.6733677, 50.3707482 9.9786124, 49.4279782 11.1963294, 49.8693054 11.8872381, 50.2743347 10.9487550, 50.2137895 10.2353350, 49.9958129 10.1809319, 49.8793240 9.1557405, 49.3028718 10.5524844, 49.8400694 9.1484987, 49.9843990 9.1243968, 49.9843771 9.1237845, 49.9761625 9.1464150, 49.4491408 11.8705906, 49.3155280 10.5816018, 49.3017966 10.5709171, 50.1940569 10.0700854, 49.6241375 12.2242896, 49.7971702 9.9451436, 50.1363929 10.0063977, 50.0606042 11.8190607, 49.9762960 11.0354409, 49.7951466 9.9470589, 50.0480580 9.0084119, 49.4275675 11.9755052, 49.6214957 10.1161508, 49.1588258 11.1729362, 49.4555015 10.7961629, 49.7258203 10.2733316, 49.7255798 10.2739995, 49.3437809 12.3643806, 49.7306394 10.2306925, 48.9733293 12.8819444, 49.6659633 10.0619433, 49.7164805 10.2729330, 49.6100055 10.9988801, 50.1997379 10.9686029, 49.7981681 10.2394993, 49.7998357 10.2304975, 49.9147722 9.2009359, 49.8596561 10.4283018, 49.3771405 12.7026831, 49.7178240 10.2789839, 49.4563268 11.0759138, 50.0420746 11.6720609, 50.2588834 10.9676799, 50.0162735 9.7428022, 49.3793293 11.2078031, 49.3618383 12.4477189, 50.2594742 10.9696824, 50.2596861 10.9742321, 49.3029794 10.5717125, 49.9629473 11.1017275, 50.1048363 11.8889127, 48.9954252 12.0237005, 50.1096264 11.4141541, 49.5612829 11.3326991, 49.9117025 9.0621792, 49.7987170 9.9438007, 49.7970854 9.9309045, 49.6214272 10.8281375, 49.3732280 11.2134993, 49.3028074 10.5770004, 49.3022738 10.5773653, 50.3733173 11.5112514, 49.8044695 9.9274491, 49.7966414 9.9259417, 50.0952309 9.7217054, 50.0428392 11.4838079, 49.9284665 11.5112743, 49.0075578 13.4083931, 49.4527997 11.4905453, 49.6993172 10.0079515, 49.7795207 11.1831885, 50.1098191 9.8196676, 49.7497963 11.5185637, 49.0106437 12.4811226, 49.2660036 12.6113604, 49.5350217 11.8060476, 49.3561733 11.0994230, 49.3475346 11.1144511, 49.4556965 11.0803640, 49.8559541 9.9555809, 49.9983539 9.1085923, 49.9680252 9.5605615, 49.2380981 11.1638554, 49.1507114 11.3923191, 49.9318443 10.9552363, 49.7757531 9.9302996, 48.9243720 10.5417636, 49.9479898 9.1547196, 49.8947803 10.7258987, 50.0062150 11.4624009, 50.0010014 11.4376082, 50.0346299 11.4677444, 49.8480148 10.0638963, 49.8882725 11.5570158, 49.4532944 11.0807305, 49.7278952 10.2465747, 49.3013933 10.5813723, 49.9580652 9.5624478, 50.1899940 10.9244425, 49.8990567 10.3483512, 50.4616412 10.0202973, 49.0143666 10.9906645, 50.3251895 9.7798956, 49.9708810 9.3061199, 49.8669231 10.2242417, 49.8036251 10.2536001, 49.4697674 11.1687149, 49.9782548 10.1735166, 49.9719514 10.1713027, 49.9714489 10.1701613, 49.9749985 10.1717629, 49.9739756 10.1742360, 50.0821249 9.4629424, 49.1886050 11.0154692, 49.7329267 12.0697249, 49.7310450 12.0683404, 49.6369793 10.8503152, 50.2493996 11.0489650, 49.3486879 11.0697906, 49.7938977 9.9417177, 50.1240570 9.6186063, 49.7951151 9.9244810, 49.7060651 10.0246300, 50.0940130 11.0140999, 50.0938638 11.0222558, 49.7274911 10.3164065, 49.8294448 11.7475129, 49.9328745 11.5121784, 50.0114295 10.4639672, 49.7277244 10.2429385, 49.2788252 11.4634516, 49.0175769 11.0081340, 50.2214645 11.9356910, 50.2855025 12.1008402, 49.4492001 11.0791133, 49.7719018 9.2454886, 50.3861394 9.9329049, 49.5400470 10.7102900, 49.9961847 11.4216082, 50.1319979 10.8134964, 49.4725779 11.0358474, 50.0941321 11.0243351, 50.0939697 11.0248649, 49.9233047 10.2362144, 49.4518375 11.1548748, 49.3760667 10.1646476, 50.1443874 11.9537653, 49.0511001 11.7847275, 49.3243011 12.8922854, 49.3497904 12.8859420, 49.5191482 11.5071905, 49.8209353 9.7999591, 49.8073007 11.1705527, 49.8239347 11.1477475, 49.8462447 10.0556889, 50.2548425 12.0280849, 49.5849742 11.0541747, 49.5846415 11.0658824, 49.5855024 11.0604600, 49.5887762 11.0703214, 49.5887954 11.0736693, 49.5771080 11.0872537, 49.5783210 11.1007853, 49.5829777 11.1038052, 49.9531135 11.4272279, 49.6283830 10.5413943, 49.8220062 9.9402939, 49.8203829 9.9301434, 49.8140956 9.9396143, 49.7398938 9.2446445, 49.7355434 9.2405658, 49.5797883 11.1318384, 49.5800402 11.1324198, 49.5719765 11.0830531, 49.5677990 11.0849588, 49.5609001 11.0924246, 49.5681364 11.0689140, 49.5708790 11.0680247, 49.7244775 9.2299795, 49.7248770 9.2293711, 49.9589117 10.8087491, 49.9672770 11.7432501, 49.9909971 11.7468775, 49.9947925 11.7477127, 49.8871153 9.1178803, 50.3302575 12.0690000, 50.0170225 11.7056704, 50.0571508 11.0729935, 50.0514811 10.2419621, 49.7135651 10.1330925, 49.9601080 11.8330026, 50.0201111 10.2162916, 49.7865362 9.3648841, 49.4242659 11.1773818, 49.9826914 11.9467996, 49.7721400 10.6860600, 49.6055564 11.0142816, 49.0097753 10.8440491, 50.2736630 10.9490065, 49.8415675 11.2064513, 50.1163113 9.8925864, 50.1583224 10.5557718, 50.0418210 11.6710138, 49.7743609 9.9823905, 50.1503594 10.1029654, 49.0445983 11.4760465, 50.0467669 11.6732356, 49.5837217 11.0347448, 49.5835680 11.0381075, 49.5779627 11.0366973, 49.5323221 11.0949302, 50.0383957 10.1050053, 50.0414034 10.1165266, 49.4719068 10.9952115, 49.4728549 10.9963617, 49.5102362 10.0432970, 49.4791364 10.9858762, 49.4717518 10.9960697, 49.3389467 12.8146818, 48.9651063 12.3820209, 50.1003879 10.5878290, 50.0501235 10.1422209, 49.6236211 11.4208589, 50.0586195 8.9998085, 49.9617054 10.0518851, 49.1260615 12.1333535, 49.1256211 12.1361069, 49.1255453 12.1369761, 49.1044233 11.8101537, 49.0308094 12.0929987, 49.3131522 12.2445134, 49.3422506 12.2848751, 49.7426624 9.7182264, 49.3274576 11.3453758, 50.0222269 11.2001046, 50.1078612 9.9327703, 49.2233186 12.1547666, 49.2331221 11.9525808, 49.4536913 11.0800086, 50.0948613 11.7333105, 50.0502973 12.0609370, 49.6199523 11.0187751, 50.0394083 9.0653132, 50.4840139 10.1832475, 49.5426210 11.3374210, 50.0254865 11.6880247, 49.9687258 11.5747570, 49.5032451 11.7435371, 50.0997781 11.6086337, 50.1054293 11.6083476, 49.5959178 10.9480422, 49.0116277 13.2042654, 49.4554430 11.0700439, 49.1844101 12.0257204, 50.4968425 10.1786164, 49.1645854 11.9617084, 49.6103445 10.9654205, 49.3605749 11.3519976, 50.5010842 10.1143538, 49.4463529 10.3036488, 49.9754844 9.1779534, 50.2544516 10.9647986, 49.0460002 11.3538095, 49.5978172 11.0040967, 49.5984193 11.0080342, 49.6007476 11.0144054, 49.9097705 10.8319451, 49.6886843 9.4155824, 50.0451147 10.2256217, 50.0188478 9.3635115, 49.4297829 11.5457238, 49.9996359 9.0602127, 50.0922889 9.6522458, 49.4483665 11.0863447, 50.5106076 10.1023834, 50.5132156 10.1048660, 50.2125278 10.9380856, 49.8114903 10.0129581, 50.0194156 9.2635056, 49.9663879 9.1856672, 49.9686216 9.2033126, 50.0471266 9.0803453, 49.5129971 11.4296031, 50.2010526 10.9527322, 50.0252099 9.2972011, 49.6154988 10.3092219, 50.1394576 9.8749448, 49.4894386 11.4795879, 49.4894042 11.4795580, 49.9126111 10.1379856, 49.7203673 11.0601324, 49.5785264 10.8406085, 48.9295466 13.5781872, 49.8820339 11.1300099, 49.9949273 9.2766082, 49.9997614 9.2804789, 49.4904322 11.4787933, 49.9774224 9.1458993, 50.0497968 10.5720106, 50.1121897 9.8800006, 50.0894585 10.2128221, 50.0952367 10.2099885, 49.8616405 11.6570392, 49.5466339 11.9989292, 49.5475287 12.0005339, 49.1624256 12.0837400, 49.1648372 12.0804576, 49.1650022 12.1008606, 49.1641694 12.0801967, 49.9279182 10.7537020, 49.2050461 12.0387575, 49.5455014 12.0005665, 50.1476870 9.8734272, 49.9800710 10.8546688, 49.9766425 9.1393224, 49.7715003 9.5474320, 49.9722482 9.1426877, 50.0080661 9.2025804, 48.9964840 12.1112392, 49.9123877 11.5130613, 50.2435965 10.5186225, 48.9742962 13.1352720, 50.1116490 9.6486984, 49.8907112 11.5576850, 49.8988856 11.5412436, 49.5503094 12.0325901, 49.0409666 12.1261312, 50.0388313 9.0612891, 50.3300146 11.6693425, 50.0245932 9.6911894, 49.8624559 12.0950023, 49.1593765 11.9394701, 49.4948272 10.8065266, 50.0932927 9.6671570, 50.2247998 12.1446066, 50.2699412 12.1148272, 50.0643165 9.1620037, 49.8361603 9.8687822, 49.6896465 11.0099568, 49.7192490 11.0421798, 49.0079067 12.1165366, 49.9472089 10.6129673, 48.9777730 10.8863175, 49.3710655 12.2559091, 50.1213622 11.9904154, 50.3665316 11.9524574, 49.7941658 9.9317878, 49.2309993 12.6565069, 49.2309058 12.6607232, 50.3628917 11.9370021, 49.0253061 11.0055020, 49.5420981 11.3604985, 50.0232563 9.7965866, 49.7928585 9.9424740, 50.0235275 9.3731392, 49.0165046 12.0887646, 49.5129283 11.4823227, 49.4535459 12.1806422, 49.4535406 12.1806536, 49.4535421 12.1806457, 49.4535570 12.1806551, 49.4535474 12.1806465, 49.4535439 12.1806499, 49.4415884 10.2865204, 49.6072418 11.6332576, 49.2190762 10.6676897, 49.2040901 10.7017360, 49.9967356 9.1120639, 49.5713889 11.9282692, 49.5502166 11.0447091, 49.4860333 10.5672499, 50.0027595 9.1002640, 50.0508054 10.2135347, 49.3452344 10.5098414, 49.9939430 9.5826016, 50.3113074 11.9095828, 50.2218379 10.9028994, 50.2042367 10.9286580, 49.9523438 11.8670610, 49.9228189 10.7769457, 49.6777552 9.2316082, 49.3970486 11.1262502, 49.5696464 11.3112755, 50.0807288 9.1119339, 50.1840124 10.3599152, 49.3518845 11.4485073, 50.1421473 11.9753124, 49.0806939 12.0824892, 50.0445931 9.0224418, 49.6180199 10.6306271, 49.3855010 11.2133431, 49.6848998 11.5026780, 49.3175931 12.8435562, 49.4653009 11.2455613, 50.2738698 10.9460111, 50.2740126 10.9465172, 50.2736933 10.9464107, 50.3009356 11.0212587, 49.1669984 11.9955209, 49.2813735 12.0377887, 49.8828192 10.8963667, 50.0177947 11.3252030, 49.9711209 11.7503505, 48.9255859 10.5001108, 49.0070924 12.3792350, 49.5168691 10.5187847, 49.7832351 9.8172359, 49.9724725 11.7387437, 49.6093000 10.2743000, 49.5545131 11.0786710, 49.9567536 12.1214341, 49.7933694 9.9239401, 49.9392269 11.4453954, 50.0989052 10.1794705, 49.5697539 11.3399346, 50.3275697 11.8592399, 49.1657640 12.0997544, 50.3802233 11.7655001, 50.0853057 9.9448500, 50.0481066 10.3334860, 49.5661346 11.0160944, 49.6926339 10.9976604, 50.3933146 11.6886249, 49.0490274 12.6476381, 50.3240837 10.2164507, 49.9511533 9.6731332, 50.0888918 11.7391512, 50.1068714 10.2236964, 50.0444236 10.1297437, 50.0600050 9.2357066, 49.6568842 11.0583057, 49.7210233 11.0552324, 49.7855645 9.5196414, 49.7569832 11.5351092, 49.6377725 11.0697594, 49.7182173 11.0660421, 50.1067324 11.6086009, 49.8898746 10.1576760, 49.6823210 11.0692847, 49.9326046 10.3652365, 49.8001754 9.9359286, 49.8001754 9.9359410, 50.0785634 9.1938671, 49.3190811 10.4766577, 49.6668139 11.0697145, 49.1672629 10.3546860, 50.0610078 9.0126947, 50.1124977 10.1788871, 49.7907406 9.7543083, 50.0835399 11.3315150, 50.1316444 10.8172494, 50.1306654 10.8134916, 49.7671397 11.0796935, 49.8668080 11.4201143, 49.7399321 10.1621791, 49.7228699 11.0658476, 49.5281851 11.4954622, 49.7587008 9.9798297, 50.2073315 10.0917382, 49.8464216 11.0367188, 49.3662294 11.3096085, 49.5202124 11.1286750, 49.7992164 9.9420775, 50.0038463 9.2022640, 50.0033674 9.2024593, 50.0033156 9.2023493, 49.5474904 11.3311641, 48.9872511 13.1747092, 49.6504742 9.9412032, 49.4284487 11.0856285, 50.2303774 11.6747940, 49.4080404 11.0945211, 49.3391485 12.1214552, 49.6704405 10.9295047, 49.3252029 12.1130808, 49.6470044 12.0474891, 49.7773560 9.1903451, 49.1875381 11.0258093, 49.5573571 11.3376876, 50.2224054 12.0285376, 49.3115707 12.0782223, 49.9997940 9.2157125, 50.1586517 12.0450508, 50.3959147 11.7517171, 50.0754361 11.6758203, 49.5120207 11.4438338, 49.5030032 11.5429371, 49.7603667 10.1693043, 49.7911340 9.9347407, 49.1640074 13.1074417, 49.1314094 10.3905568, 49.6786902 10.0657015, 49.9233769 11.6005430, 50.1506416 10.2052209, 50.0554302 10.2249170, 49.2153402 11.1430235, 49.5419494 11.3432673, 50.2481179 12.0346542, 49.5290954 11.3210636, 49.7025130 10.3167934, 50.0244804 12.3084366, 49.9233224 9.1575897, 49.6892285 9.3729957, 49.4728015 10.9918927, 49.1868686 11.1976287, 50.1755442 11.7976128, 50.0612784 9.1505055, 49.7306848 10.2298315, 50.0379127 12.0038680, 49.9946339 11.7861359, 49.7874912 9.9360832, 49.7884396 9.9365530, 49.5583611 11.9772712, 50.1907032 11.6789749, 49.3271140 12.1141460, 50.1082542 11.6047778, 49.0205921 12.0952396, 49.7199662 11.0576030, 49.2250749 11.5402651, 49.6968431 9.2904653, 49.3424310 12.5290121, 49.8907183 9.7520487, 49.8661914 9.7805145, 48.9931521 11.3673226, 49.3700693 11.1852992, 50.0131184 11.5462805, 49.8671429 11.9362476, 49.4153205 11.0253169, 49.4503794 11.2104533, 50.0548172 10.0107407, 49.7830009 9.4544131, 49.4493131 11.1490114, 49.6833604 9.3650835, 50.2052252 12.1457506, 49.6321395 10.9234401, 49.7235776 9.7385532, 49.9086379 11.7596314, 49.7919770 9.2677067, 49.8011523 10.1625284, 49.3262209 12.9527050, 50.0328796 11.7627971, 49.9491040 11.9686054, 50.0150071 11.8553126, 50.0325244 11.7628357, 49.5315196 11.0047675, 49.4568640 10.5930690, 49.7099827 10.0226918, 49.6906276 10.0575946, 49.9978054 9.1814089, 49.6753801 11.4191505, 49.4061558 11.2850594, 49.6745103 10.0204639, 49.4486914 10.6347427, 49.0586716 11.3190942, 49.0672116 11.3132756, 49.7459368 9.9928879, 49.5922516 11.0522246, 49.2434542 12.9349168, 49.0351785 11.5424379, 49.6906096 11.1008071, 49.2241870 12.6609190, 49.7273904 11.4744562, 49.6502619 11.2472294, 49.6686464 12.0996487, 49.8124528 9.8288392, 50.0487739 10.4111525, 49.6093876 11.0005095, 50.2478755 11.3297769, 49.4544927 11.0480158, 49.9540225 9.1169443, 49.8813207 10.8680894, 48.9399526 13.6174750, 49.8907921 10.8829169, 49.8858747 11.3346866, 49.8935679 10.8779344, 50.0015859 10.1991002, 50.0019106 10.1995409, 49.2990096 10.4097309, 49.8984450 12.0457164, 48.9577183 12.8734443, 48.9222054 11.1980123, 49.0348960 12.6122460, 49.2132941 12.6724124, 49.2223433 12.6878565, 50.2329225 10.7273277, 48.9670759 13.3186444, 48.9608782 13.3116962, 48.9602160 13.3124150, 48.9796758 13.3094109, 49.0242625 12.1398854, 49.0535718 12.6805814, 49.0535391 12.6763560, 50.2834211 11.0269897, 48.9562504 13.4658944, 50.0226249 11.8149188, 49.0188390 12.0832940, 50.0967401 11.5404060, 49.8684456 9.0912272, 49.8664885 9.0801663, 49.4857054 10.9490790, 49.8170477 11.8481107, 49.8174632 11.8597217, 49.8262324 11.8368387, 49.8588983 9.0844705, 48.9652790 13.5883822, 49.0779854 10.6278093, 49.5254924 11.9614494, 50.1223636 11.7840136, 50.0395891 11.9515272, 50.0480085 11.9954977, 49.6527115 9.9460333, 49.4050315 11.2926985, 49.5779343 11.1683618, 48.9426280 12.4692627, 48.9667118 12.8349224, 49.8210346 11.7431909, 49.8823055 9.5946429, 50.3261561 10.1942060, 49.0096436 10.5004746, 48.9701961 12.3265193, 50.0218969 10.2104849, 49.9975724 10.2051489, 49.6486918 11.0055125, 49.6396102 11.0018464, 50.0615527 11.8200016, 49.2971394 10.4224499, 49.0246651 12.6579342, 49.9043847 10.1925310, 49.2991739 10.4129817, 49.0263084 10.5697255, 49.0229720 10.5678961, 49.4567316 11.0810079, 49.7969352 10.0326571, 49.4519331 11.0756381, 49.0603052 10.2922231, 49.6885963 10.2005582, 50.0463262 9.2106036, 49.9758962 9.4013618, 49.4651000 11.0933450, 50.0371178 10.6203680, 49.5696911 11.3111204, 49.4521167 11.0522513, 49.3783037 10.1804272, 50.0044733 9.4174121, 49.9473973 11.6150938, 49.3765250 10.1742094, 49.4271207 11.0462448, 49.2942609 10.4159890, 49.5225359 12.2661674, 49.6075148 10.9690880, 49.8873532 11.4850110, 49.4406952 11.1143875, 49.9627815 11.4660231, 49.2301097 11.1002383, 49.6514341 11.4676563, 49.2030593 11.0503672, 49.6772117 12.1660213, 49.8393342 10.0303396, 49.8450631 10.0188812, 49.8374383 10.0363478, 49.4519991 11.0892892, 49.5444496 11.9443589, 49.5447464 11.9443084, 49.8331266 9.1351218, 49.4541507 11.0730452, 49.3824822 11.0376624, 49.9461964 10.5660012, 49.0691833 10.3196646, 49.8813681 10.8709591, 49.8813104 10.8704349, 49.3880327 11.3025418, 49.6059368 11.5082344, 50.0989308 10.2009066, 48.9650564 13.5881898, 50.0691374 9.1647686, 50.0829706 9.1744757, 49.5435705 11.9422976, 49.6663115 9.2174563, 50.0618440 9.1613757, 50.2010281 10.0796309, 50.2010221 10.0796052, 49.4477239 11.6857625, 49.4460554 11.6835686, 49.7999154 10.0325942, 50.2010192 10.0795865, 50.2010431 10.0796589, 50.1967193 10.0810149, 49.8879820 12.4296686, 49.0139001 13.2324271, 50.3106075 11.9096814, 50.0179173 10.7019968, 49.8821023 10.9042255, 50.0117430 10.7006733, 50.0090888 10.6946217, 50.0127154 10.6848692, 50.0147562 10.6980013, 50.0265449 10.7009359, 50.0230313 10.6984522, 50.0185988 10.7020142, 50.0191858 10.7030163, 50.0258687 10.7346556, 50.0234700 10.6789837, 50.0110610 10.6749711, 50.0099854 10.7365010, 50.0140379 10.7367517, 49.9936057 10.6936812, 49.9954107 10.6881365, 49.9991832 10.7065311, 50.0515127 10.6825199, 50.0415119 10.7259111, 50.0203839 10.7509132, 50.0221701 10.7110301, 49.5019190 12.0527679, 49.7315595 12.3461012, 50.3040141 10.4778811, 50.3042160 10.4780918, 49.5100108 12.5477321, 49.7197325 11.1517517, 49.8045771 9.9985236, 49.4354020 10.4140882, 49.6767965 12.1612248, 49.7931062 9.7625034, 49.7994913 9.7519600, 49.7600378 9.7167061, 49.7897273 9.7536498, 49.7911878 9.7544082, 49.9090658 12.5278358, 49.6821913 12.1675909, 50.0497889 11.6009071, 49.2505113 10.8274746, 49.3705840 11.3317226, 49.7772736 12.0910176, 49.0152337 12.1047908, 49.8986046 11.8430735, 50.2964998 10.1773597, 49.0148423 12.0988033, 49.8970555 11.7010378, 49.5220581 12.0202369, 49.3732915 11.2109773, 49.0188010 12.0865158, 49.0196418 12.1076991, 49.0224799 12.0972137, 50.0028821 10.8639429, 49.0086624 12.1140073, 49.0079845 12.0596346, 49.0063004 12.0842723, 49.9852673 12.4733816, 49.5182739 12.0223498, 49.0161006 12.0649200, 49.7695834 11.2501592, 49.7667641 11.3365491, 49.7667629 11.3371417, 49.2994881 10.4152111, 49.2988060 10.4146451, 49.5036987 11.5105657, 49.5039492 11.5098909, 50.0384874 9.1829561, 49.9649565 9.2033405, 49.0155580 12.1020225, 49.0186698 12.0861070, 49.0143791 12.0568333, 49.0128154 12.0501601, 49.9480493 11.5152437, 50.3208914 10.2288371, 49.0135863 12.0980858, 49.0141433 12.0909775, 48.9616275 13.3707694, 50.0571318 12.1630188, 50.1339740 10.9997596, 49.6719429 10.1092270, 49.0230406 12.0759531, 49.9695730 11.8248926, 49.0139872 12.0993480, 49.2834623 11.1245195, 50.0456727 12.1526067, 49.6695593 10.4735573, 49.2279800 12.3591491, 49.5978247 12.1277408, 49.9636948 11.4430543, 49.9769946 9.1519363, 49.9750834 9.1465191, 49.9788040 9.1492982, 49.9780571 9.1469089, 49.9769598 9.1483522, 49.9769575 9.1483487, 49.9788030 9.1492978, 49.9788085 9.1459478, 49.9761670 9.1475691, 49.9761691 9.1475708, 49.9777357 9.1470002, 49.9771118 9.1463000, 49.9780562 9.1469097, 49.9771124 9.1462986, 49.9758163 9.1473677, 49.9787300 9.1460637, 49.9761690 9.1475695, 49.9750841 9.1465179, 49.9788033 9.1492993, 49.9761677 9.1475697, 49.9788078 9.1459490, 49.9787293 9.1460649, 49.9761677 9.1475684, 49.9756861 9.1455040, 49.9769575 9.1483509, 49.9769951 9.1519377, 48.9213941 13.3631052, 49.7431992 10.3143552, 49.7332682 10.2910088, 49.7331557 10.2909352, 49.7320459 10.2893973, 49.7971708 9.9181959, 50.0468919 11.7900887, 50.1018467 11.9289190, 50.0720623 11.7343687, 49.5807360 10.9930423, 49.4781588 10.9815611, 50.0710288 9.3453874, 49.5880202 11.0348171, 49.5057702 12.0479512, 49.0701610 12.3965810, 49.0088027 12.2709315, 50.0608396 12.1181770, 50.0798842 12.1424534, 49.8396607 9.4499388, 49.9405337 11.5815981, 49.5976027 11.0106106, 49.5767614 10.9846288, 49.2820607 11.4621282, 49.2767281 11.4605954, 49.2752957 11.4611307, 49.2737454 11.4693648, 49.2791542 11.4630600, 50.0096304 11.5342528, 50.0091730 11.5180114, 50.0536602 10.5881133, 49.9758512 9.1489083, 49.9753342 9.1484946, 49.9725262 9.1520096, 49.9734825 9.1574246, 49.9758505 9.1489071, 49.9721775 9.1427265, 49.9752614 9.1500359, 49.9758903 9.1478404, 49.9758497 9.1489083, 49.9753686 9.1562911, 49.9758906 9.1478427, 49.9752873 9.1484977, 49.9727283 9.1509584, 49.9753357 9.1484953, 49.9859727 9.1375629, 49.9707705 9.1548378, 49.9753679 9.1562926, 49.9721820 9.1427261, 49.9758912 9.1478414, 49.9727276 9.1509624, 49.9758897 9.1478418, 49.9758243 9.1479574, 49.9758925 9.1478414, 49.9753347 9.1484961, 49.9721737 9.1427298, 49.9753690 9.1562929, 49.9758520 9.1489071, 49.9758251 9.1479562, 49.9753352 9.1484938, 49.5520120 10.0648801, 49.5528638 10.0662568, 49.5525157 10.0635550, 49.5517965 10.0635343, 49.5525797 10.0635125, 49.5528648 10.0662560, 49.5517981 10.0635366, 49.5528633 10.0662553, 49.5520142 10.0648834, 49.5517973 10.0635354, 49.5528642 10.0662524, 49.5522235 10.0652652, 49.5522739 10.0660112, 49.5520112 10.0648789, 49.5522242 10.0652665, 49.5525147 10.0635556, 49.5522749 10.0660104, 49.5520149 10.0648846, 49.5520123 10.0648784, 49.5528643 10.0662545, 49.7492292 11.2476398, 50.0077507 9.0697798, 49.9904785 10.5903260, 49.7932175 9.9300690, 49.7932157 9.9300660, 49.2907084 10.2654545, 49.9459834 9.2137807, 49.1519360 12.1734992, 50.2947661 10.0964550, 50.2853904 10.0977305, 50.2863806 10.1002136, 49.7531999 11.8335514, 49.2326998 10.4977047, 49.9397941 10.6765837, 49.7637415 11.0302848, 50.0068525 9.2035019, 49.9674144 9.3973865, 49.8782430 12.3371545, 49.2965371 10.4370565, 49.8335959 9.8463313, 49.3754615 10.1723479, 49.3757566 10.1729165, 49.2069877 12.0869222, 50.1307235 10.0261636, 49.0961493 12.0473105, 49.5687334 11.5124981, 50.0100085 10.7388904, 49.9755613 11.3360106, 49.4881221 11.1056632, 49.2751769 11.3032585, 50.1335623 11.6582094, 49.0900685 13.3194516, 49.8244119 9.2195855, 49.3500534 10.2008191, 49.4683097 11.0018808, 49.5952508 11.0283102, 49.8268841 12.4254832, 49.7628101 9.7103322, 49.7377834 10.7343469, 49.7485218 10.7514389, 50.1266242 10.9322564, 49.7736898 11.4977477, 49.6730978 12.1569376, 49.4450506 11.8566044, 49.4450517 11.8566084, 50.0343837 12.0057082, 50.0389404 12.0059588, 49.3237343 11.3634148, 50.0399899 10.2563410, 50.0901476 11.9226350, 49.9046225 11.5856532, 49.0196241 12.0926982, 49.0196255 12.0926983, 49.6557652 9.1356940, 49.0211080 12.0903255, 49.0312029 12.1063028, 49.0312049 12.1062961, 49.0312084 12.1063023, 49.0325759 12.1057144, 49.0185305 12.0953889, 49.0185345 12.0953894, 49.1755022 10.8293237, 49.0190701 12.0946023, 49.0176917 12.0961121, 49.0185908 12.0921057, 49.0185915 12.0921105, 49.0185924 12.0921057, 49.0185926 12.0921125, 49.0185929 12.0921080, 49.0185929 12.0921105, 49.0185931 12.0921031, 49.0185934 12.0921144, 49.0185941 12.0921007, 49.0185951 12.0921031, 49.0185952 12.0921079, 49.8916234 10.8922621, 49.0199275 12.0918002, 49.0199275 12.0918026, 49.0207086 12.0971412, 49.0178839 12.0974031, 49.0170893 12.1040414, 49.0197670 12.0892004, 49.0197695 12.0892010, 49.0197721 12.0892016, 49.0148994 12.0776648, 49.0149005 12.0776669, 49.0149008 12.0776631, 49.0149019 12.0776653, 49.0194381 12.0923903, 49.0197664 12.0922483, 49.0197664 12.0922513, 49.0197669 12.0922536, 49.0185726 12.0948193, 49.0185728 12.0948165, 49.0185744 12.0948225, 49.0185745 12.0948195, 49.0185746 12.0948167, 49.0183173 12.0948407, 49.0180503 12.0962374, 49.0180507 12.0962358, 49.0180522 12.0962387, 49.0180527 12.0962370, 49.0180531 12.0962355, 49.0168881 12.0944982, 49.0168905 12.0945030, 49.0168908 12.0944989, 49.0168935 12.0944996, 49.0169572 12.0964730, 49.0187855 12.0866987, 49.0187856 12.0866955, 49.0187871 12.0866972, 49.0196952 12.0908512, 49.0196955 12.0908472, 49.0196970 12.0908553, 49.0196980 12.0908517, 49.0196983 12.0908477, 49.3700364 10.3326346, 49.0244130 12.0975018, 49.9689726 9.1406710, 50.1461039 9.8787634, 49.6459023 10.6960875, 49.6190605 10.6550751, 49.3267742 11.3290333, 49.9506568 9.2425169, 50.3603618 10.0183521, 50.2603176 10.1625667, 50.5294158 10.1365952, 50.0185900 11.5947993, 50.0415115 11.6710379, 50.0455047 11.6729648, 49.7690804 10.5270426, 49.7440739 10.3678749, 50.0572140 11.6809567, 49.6013550 11.0040634, 49.6004854 11.0101482, 49.6031869 11.0142698, 49.5983557 11.0157815, 49.5963195 11.0110567, 49.5964441 11.0047821, 49.5954984 11.0051944, 49.5946707 11.0051020, 49.5908949 11.0066095, 49.5977584 11.0068971, 49.8545526 9.9567436, 49.6728265 12.1490093, 48.9675009 12.3906760, 50.1159200 11.8631050, 50.0182437 11.8324940, 50.0190952 11.8331859, 49.9335870 11.7378440, 49.9329190 11.7325956, 50.0909091 12.0894665, 49.5247695 11.9030735, 49.6391565 10.9970110, 49.3040254 10.5718175, 48.9718495 13.4328515, 50.0326497 9.4312794, 50.1586640 11.5704392, 49.9850909 11.6517051, 49.9835532 10.0788877, 49.3815362 10.1702658, 49.5999179 11.0029460, 49.5999184 11.0029346, 49.5999207 11.0029411, 49.5947349 11.0049181, 49.5947890 11.0049002, 49.5947348 11.0049148, 49.5947365 11.0049179, 49.5947357 11.0049180, 49.5947364 11.0049146, 49.5947880 11.0049003, 49.5947356 11.0049147, 49.8916123 10.8934082, 50.0125545 11.6992003, 49.2940718 10.4071127, 49.4938239 12.1796909, 49.2736602 12.5400565, 49.3021051 10.5757277, 49.3625693 10.1920107, 49.0180645 12.0899199, 49.5063706 12.0586238, 49.3760472 10.1740553, 49.5841546 11.1376266, 49.5392559 12.1610923, 49.9347352 11.5927808, 50.1764459 11.7554872, 49.8366567 11.3502874, 49.5136483 11.9690411, 49.5108070 11.9702656, 49.9619007 9.7687548, 49.2954987 12.3550665, 49.7925294 9.9300247, 49.7925284 9.9300253, 49.7925270 9.9300242, 49.7925280 9.9300237, 49.7925304 9.9300241, 49.7925290 9.9300231, 49.7925300 9.9300225, 49.5967084 11.0363646, 49.9634476 9.7630263, 49.5914363 11.0057192, 49.5915983 11.0279183, 50.2152548 12.0074059, 50.2320320 11.9824924, 50.2681384 11.3609612, 49.5321619 11.0340201, 50.0127842 9.2598896, 49.4198255 11.1952648, 49.8007861 9.9500409, 49.8042227 9.9401073, 49.8016833 9.9521581, 49.8008487 9.9495065, 49.8023538 9.9484639, 49.8039340 9.9462076, 49.8016832 9.9521600, 49.8040711 9.9415613, 49.8017616 9.9429421, 49.8022170 9.9424916, 49.8033057 9.9423584, 49.8031096 9.9453756, 49.7986567 10.2312619, 50.0680003 10.8822450, 49.5503024 11.2688007, 50.1253347 11.5988929, 49.0373017 11.4713987, 49.9061473 11.7649973, 49.4782605 11.0208604, 50.1507631 10.8945447, 49.7661741 11.9355854, 49.8607443 10.3813672, 49.8506179 11.5871782, 49.9434533 9.8565390, 49.5417838 10.5613637, 49.9585470 9.7663805, 49.9595391 9.7650959, 49.3786586 10.1793133, 49.3767932 10.1758881, 49.3767932 10.1758781, 49.3767932 10.1758848, 49.3755384 10.1827213, 49.3762093 10.1795702, 49.3767932 10.1758815, 49.3786586 10.1793103, 49.3755376 10.1827181, 49.3772183 10.1774557, 49.3619592 12.3332809, 50.3608095 10.3546411, 50.3703190 10.3585862, 50.3791048 10.3732742, 49.6020631 11.0009575, 49.6006180 11.0054816, 49.5988014 11.0020055, 49.5971402 11.0046461, 49.5968877 11.0046365, 49.5967905 11.0047592, 50.0185855 9.3106506, 50.2699881 11.3611322, 49.7956968 9.1574279, 49.7946620 9.9417414, 49.8813986 12.3387714, 49.8843655 12.3365134, 49.2360159 10.9442065, 50.0412319 11.2518353, 49.8556988 12.2213404, 49.1257675 11.2687419, 49.0515267 10.9673498, 50.0076854 10.5983304, 48.9239093 13.4441838, 50.0129397 12.0050924, 49.5929601 10.9994155, 50.1047922 12.1674481, 49.4506724 11.0895491, 49.0006194 12.3996130, 48.9993664 12.3982370, 48.9700616 13.5641641, 50.0837449 9.0707465, 49.3528140 12.3797332, 49.3790168 12.3987072, 49.5561735 11.5420028, 49.5458338 11.5409081, 49.5564497 11.5434917, 50.0030759 9.4208477, 50.1338452 11.4297540, 49.5048933 12.6154745, 50.0532552 9.0105856, 49.2366324 10.4923511, 49.9358251 11.5223760, 49.6933701 9.2896788, 49.7031080 9.3017167, 49.6924824 9.1730686, 49.6820227 9.2096023, 49.0757627 11.9068162, 50.0166247 10.7766176, 50.0112161 10.8035765, 49.4786149 12.4996766, 50.1640464 10.9623428, 49.9689695 11.5310708, 49.3567688 12.4175171, 49.5615772 11.0869061, 49.1026763 13.1112906, 49.4258166 12.6794486, 49.6361333 10.1434699, 49.7954103 9.9404940, 49.7954095 9.9404929, 49.7954100 9.9404913, 49.7954108 9.9404925, 48.9941475 13.2205163, 49.7863466 9.9361498, 49.7855176 9.9367566, 49.7855179 9.9367582, 49.7863509 9.9361479, 49.7863477 9.9361497, 49.7855189 9.9367578, 49.7863499 9.9361496, 49.7863509 9.9361495, 49.7855179 9.9367547, 49.7863504 9.9361512, 49.7855187 9.9367562, 49.6722786 11.1781259, 49.5147535 11.0599168, 49.5149154 11.0598238, 49.5150009 11.0602343, 49.5150581 11.0599041, 49.7867513 9.9365291, 49.7871642 9.9375666, 49.7859343 9.9388582, 49.7867503 9.9365280, 49.7867521 9.9376445, 49.7862145 9.9391909, 49.7862387 9.9375395, 49.7862153 9.9391920, 49.7867497 9.9365293, 49.7871600 9.9375648, 49.7867531 9.9376450, 49.7871631 9.9375664, 49.7867495 9.9365311, 49.7871609 9.9375667, 49.7867517 9.9376461, 49.7871598 9.9375665, 49.7871610 9.9375650, 49.7867527 9.9376466, 49.7862169 9.9391942, 49.7867506 9.9365304, 49.7907691 9.9344337, 49.7898028 9.9354473, 49.7878385 9.9379272, 49.7907695 9.9344322, 49.7907687 9.9344352, 49.7906708 9.9343376, 49.7908044 9.9343457, 49.7907265 9.9348801, 49.7907265 9.9348823, 49.7907250 9.9348800, 49.7907258 9.9348812, 49.7888553 9.9280158, 49.7888525 9.9280146, 49.7888578 9.9280136, 49.7888627 9.9280144, 49.7888669 9.9280136, 49.7888659 9.9280138, 49.7882443 9.9325119, 49.7888585 9.9280152, 49.7893070 9.9302257, 49.7888606 9.9280148, 49.7886188 9.9283324, 49.7888631 9.9280126, 49.7888532 9.9280162, 49.7886196 9.9283311, 49.7886200 9.9283327, 49.7888663 9.9280120, 49.7888596 9.9280150, 49.7888638 9.9280142, 49.7888521 9.9280164, 49.7888574 9.9280154, 49.7888563 9.9280156, 49.7923864 9.9285144, 49.7925589 9.9280484, 49.7901921 9.9287343, 49.7923858 9.9285161, 49.7912924 9.9303975, 49.7924914 9.9334357, 49.7901910 9.9287350, 49.7925590 9.9280500, 49.7900984 9.9292869, 49.7925346 9.9308533, 49.7920112 9.9292930, 49.7935785 9.9296478, 49.7912936 9.9303974, 49.7925600 9.9280484, 49.7932061 9.9346117, 49.7923876 9.9285145, 49.7925567 9.9280500, 49.7923881 9.9285161, 49.7920122 9.9292921, 49.7925557 9.9280499, 49.7924923 9.9334366, 49.7901911 9.9287333, 49.7925567 9.9280483, 49.7912928 9.9303960, 49.7923870 9.9285161, 49.7935747 9.9296483, 49.7920103 9.9292939, 49.7925343 9.9308500, 49.7925344 9.9308516, 49.7925579 9.9280500, 49.7923772 9.9285195, 49.7932050 9.9346115, 49.7900980 9.9292852, 49.7925333 9.9308511, 49.7900973 9.9292864, 49.7925335 9.9308527, 49.7925579 9.9280483, 49.5952579 11.0039749, 49.9960359 10.5460702, 49.6494931 10.4272512, 49.1311132 11.2126115, 49.7647053 11.7962899, 49.8618788 11.8979045, 50.1152569 12.1216525, 49.7307051 9.3184515, 50.1046531 12.1021386, 50.1035974 12.1287697, 49.6955708 9.3096830, 49.7995986 9.9397919, 49.7995986 9.9397920, 49.5111470 11.4098766, 49.2989766 10.5787231, 49.9618409 11.6711507, 49.0108389 12.4811544, 50.2495248 10.1962480, 49.0680644 10.3198579, 49.0689606 10.3152672, 49.0689613 10.3152651, 49.0689599 10.3152641, 49.0680623 10.3198569, 49.0680634 10.3198574, 49.0689616 10.3152666, 49.0689602 10.3152657, 49.0680641 10.3198594, 49.0689609 10.3152636, 49.0674064 10.3202774, 49.0680691 10.3198774, 49.1180031 10.7540594, 49.7922637 9.9483254, 49.7930089 9.9489359, 49.7922627 9.9483265, 49.7930099 9.9489368, 49.7930080 9.9489351, 49.7922647 9.9483244, 49.7922637 9.9483236, 49.7922637 9.9483273, 49.7928082 9.9487755, 49.7898532 9.9433227, 49.7892789 9.9440666, 49.7892796 9.9440680, 49.7897006 9.9433279, 49.7897016 9.9433278, 49.7913883 9.9475148, 49.7898522 9.9433228, 49.7966267 9.9394975, 49.7967915 9.9393942, 49.7966280 9.9395002, 49.7961026 9.9401177, 49.7958722 9.9397294, 49.7967900 9.9393940, 49.7914631 9.9441426, 49.7958708 9.9397269, 49.7966260 9.9394961, 49.7914629 9.9441409, 49.7966299 9.9395043, 49.7958715 9.9397282, 49.7966292 9.9395029, 49.7914618 9.9441413, 49.7914621 9.9441430, 49.7966247 9.9394934, 49.7966241 9.9394920, 49.7967895 9.9393957, 49.7967907 9.9393953, 49.7967909 9.9393930, 49.7962096 9.9386493, 49.7963427 9.9388767, 49.7962090 9.9386480, 49.8018736 10.1512931, 49.6406789 12.4388138, 49.1798457 11.7586122, 49.8006520 12.3857626, 49.9514872 12.1060524, 49.7978227 9.9385033, 49.7976682 9.9393560, 49.7988824 9.9402123, 49.7976681 9.9393507, 49.7976685 9.9393523, 49.7978221 9.9385048, 49.7973862 9.9392221, 49.7978217 9.9385004, 49.7978233 9.9385047, 49.7976671 9.9393513, 49.7988816 9.9402111, 49.7976692 9.9393555, 49.7977416 9.9418692, 49.7976678 9.9393544, 49.7980834 9.9405811, 49.7976688 9.9393539, 49.7976674 9.9393528, 49.7980845 9.9405813, 49.7926160 9.9465886, 49.7926148 9.9465885, 49.7924154 9.9448690, 49.7926315 9.9478039, 49.7926154 9.9465868, 49.7935570 9.9466037, 49.7943517 9.9466373, 49.7926164 9.9465903, 49.7924149 9.9448704, 49.7926316 9.9478023, 49.7926153 9.9465902, 49.7932395 9.9460028, 49.7924142 9.9448689, 49.7932392 9.9460043, 49.7935581 9.9466035, 49.7943507 9.9466375, 49.7926142 9.9465901, 49.8213947 11.3136234, 49.3983962 10.5127273, 49.3990800 10.5131906, 49.7830222 11.4348553, 49.7797573 9.8779032, 49.7797971 9.8778845, 49.7797835 9.8778902, 49.7797695 9.8778967, 49.7797941 9.8781370, 49.7848704 9.8816363, 49.7848715 9.8816359, 49.5959844 11.0033360, 50.0896982 10.5675728, 49.5847486 11.0087016, 49.5838431 11.0094163, 50.3542407 10.5183849, 50.2793921 10.4262507, 50.1003243 9.2700884, 48.9513267 13.4829135, 49.4364865 10.9746967, 49.5579890 11.3411660, 49.5579971 11.3411597, 49.5572334 11.3415166, 49.5572321 11.3415180, 49.5582233 11.3409457, 49.5594751 11.3408029, 49.5604712 11.3407820, 49.5589938 11.3404077, 49.5583436 11.3404497, 49.5577582 11.3399783, 49.5585840 11.3406609, 49.5584189 11.3405005, 49.5584259 11.3405053, 49.5594771 11.3407944, 49.5604659 11.3407875, 49.5604708 11.3407872, 49.5604663 11.3407817, 50.2571790 10.0620673, 49.9587512 11.5802173, 49.9447427 11.5773091, 49.9442251 11.5776919, 49.9443692 11.5763951, 49.9410438 11.5748716, 49.6446348 9.8766831, 49.8788169 12.3370226, 49.4503458 11.0625646, 49.4503311 11.0626034, 49.4564236 11.0939156, 49.4564073 11.0939222, 49.4666635 11.0960817, 49.4564158 11.0939191, 49.4666480 11.0961021, 49.4531051 11.0889258, 49.4531169 11.0890098, 49.4515650 11.0737476, 49.4451835 11.0701178, 49.2150275 12.7622283, 49.4531034 11.0889267, 49.4531047 11.0889332, 49.4531054 11.0889272, 49.4531059 11.0889298, 49.4531062 11.0889312, 49.4531203 11.0890155, 49.4531200 11.0890149, 49.4531180 11.0890119, 49.4531184 11.0890125, 49.4531192 11.0890136, 49.4531207 11.0890161, 49.4531196 11.0890142, 49.4531177 11.0890112, 49.4531173 11.0890105, 49.4531188 11.0890130, 49.7516975 11.7265102, 50.4578393 10.2328439, 49.5402175 11.0439096, 49.4534629 11.0604342, 49.4534632 11.0604329, 49.4534638 11.0604303, 49.4534638 11.0604346, 49.4534641 11.0604290, 49.4534653 11.0604325, 49.4534659 11.0604299, 49.4534662 11.0604286, 49.4535567 11.0605329, 49.4535572 11.0605302, 49.4535587 11.0605323, 49.4535590 11.0605310, 49.3756375 11.2127250, 49.3811301 11.2026228, 49.7606167 9.9772922, 49.7848282 9.9380024, 49.7848733 9.9380623, 49.7916590 9.9457111, 49.7865810 9.9384816, 49.7865828 9.9384844, 49.7879758 9.9398772, 49.2791168 11.4474779, 49.9873489 9.2780503, 49.7318034 9.9202857, 49.7318921 9.9202117, 49.7319749 9.9203380, 49.2765759 11.4603898, 50.1398487 11.0918818, 49.2784356 11.4552455, 49.2800695 11.4584632, 49.8494694 9.4069936, 48.9567005 10.9079175, 49.2804964 11.4619377, 49.4913726 11.7661043, 49.0135720 12.1459346, 49.1071095 13.2047136, 49.7910101 9.9334762, 49.7910066 9.9334875, 49.7985360 9.9266653, 49.6592217 11.5167515, 49.9394884 11.5305029, 49.3329703 11.4406888, 49.0317793 12.0933680, 49.9455720 11.1648235, 49.9495296 9.8874687, 49.6755114 10.1517058, 49.4277234 11.0439324, 49.5501746 10.8786893, 49.8050396 11.5284272, 48.9677056 10.9237975, 48.9774526 10.9561557, 48.9602673 10.9498042, 49.0512827 11.8145616, 49.6899734 12.1492885, 49.9020566 10.3449565, 48.9446626 13.6012764, 48.9402070 13.5950476, 50.4025312 10.0065915, 50.4005600 10.0107167, 50.4051246 10.0055267, 49.6458378 12.2104212, 49.6369228 12.2020412, 49.8234349 11.6667095, 49.1737777 12.8528844, 49.4495822 11.0617262, 49.6766225 12.1607203, 49.6769325 12.1608543, 49.6772034 12.1609933, 49.1778799 11.4136321, 49.6833617 12.1507245, 48.9886198 11.2887496, 48.9850995 11.0831851, 48.9820014 11.0891933, 48.9834097 11.0900086, 49.7844007 9.9375790, 49.7844180 9.9374878, 49.7838096 9.9396762, 49.1784941 11.6516372, 49.7385288 10.7390450, 50.0999797 9.8392708, 49.7383173 11.0597508, 49.7256094 11.0584419, 49.9745379 9.1831466, 49.3778005 12.7064711, 49.7010799 10.0000174, 49.4042504 10.4761430, 49.4515646 11.0737472, 49.4531042 11.0889304, 49.4584844 11.0955008, 49.4401820 11.0693832, 49.4524574 11.0663503, 49.4524577 11.0663502, 49.4524575 11.0663504, 49.4524573 11.0663505, 49.4401816 11.0693824, 49.4584792 11.0954932, 49.4493192 11.0630722, 49.4489438 11.0869699, 49.4493243 11.0630823, 49.4489505 11.0869784, 49.4442885 11.0906328, 49.4584813 11.0955080, 49.4584751 11.0955004, 49.8247899 12.1940792, 49.9773664 9.1516409, 49.9773665 9.1516401, 49.9773668 9.1516416, 49.9773669 9.1516408, 49.9773673 9.1516416, 49.9777012 9.1523025, 49.9777018 9.1523036, 49.5406982 11.1029197, 49.5830074 11.0720065, 49.5806680 11.0408936, 49.5669690 11.0434983, 49.6641607 10.4608530, 49.6640174 10.4609621, 49.2873631 10.2624581, 49.2904965 10.2630052, 49.3143601 10.2962603, 49.8558808 9.3997297, 49.0248904 11.0046911, 49.6009390 11.0027339, 49.6009409 11.0027339, 49.8841615 11.9164322, 49.3432447 12.3640770, 49.3300666 12.4136162, 50.3416351 11.7143397, 50.0666062 12.0711517, 49.9480885 11.8915341, 50.3053524 10.0213184, 49.7220245 12.1913195, 49.7204497 12.1998025, 49.7154331 12.2107545, 49.9748497 9.1456239, 49.9761683 9.1475690, 49.9748492 9.1456249, 49.9761684 9.1475702, 49.9748468 9.1456262, 49.9748473 9.1456251, 49.5983479 12.2578390, 50.0777379 11.9240709, 49.9769927 9.1484309, 49.9786284 9.1435443, 49.9743789 9.1488575, 49.9763387 9.1472780, 49.9769931 9.1484317, 49.9743817 9.1494905, 49.9743790 9.1488557, 49.9763385 9.1472795, 49.9769935 9.1484325, 50.2324713 9.7972070, 50.2274987 9.8015171, 50.2125796 9.8078351, 50.0609693 10.1301670, 49.7956233 9.9339097, 49.7943732 9.9355099, 49.7893753 9.9303739, 50.0964003 11.6507085, 49.0165313 12.0929675, 49.0142314 12.0978208, 49.0142509 12.0983715, 49.0145444 12.0943274, 49.0148619 12.0936434, 50.1071864 11.6113150, 49.8308091 11.9002786, 49.8121183 11.6156822, 49.9732320 9.1562722, 49.9725473 9.1460345, 49.9725481 9.1460355, 49.7811895 9.8754454, 50.0463306 10.2422178, 50.1262114 10.1323272, 50.1260980 10.1320650, 49.9599944 9.1674078, 49.9790176 9.1378227, 49.9785802 9.1497577, 49.9785782 9.1497577, 49.9790183 9.1378214, 49.9767006 9.1434450, 49.9790189 9.1378227, 49.9785791 9.1497594, 49.9785792 9.1497560, 49.7878831 9.1558386, 50.1823681 10.8135295, 48.9389978 13.5126937, 49.6626801 11.9936761, 49.7965388 9.9259564, 48.9435067 12.0285624, 49.8026070 12.1691206, 49.8075440 12.1639654, 49.8033895 12.1561119, 49.8018280 12.1559349, 50.0966697 12.2230986, 50.0974045 12.2239071, 50.0965526 12.2228208, 49.9183578 10.9061724, 50.0927176 10.2708298, 49.3664352 11.2626077, 48.9299739 10.9695181, 49.6439302 11.1185170, 49.7288907 10.5445346, 50.0431869 10.2304967, 49.4710348 11.0172151, 49.4482963 11.0654784, 49.8555425 12.2214595, 49.6449426 9.2199396, 49.4019599 10.7243349, 49.6443425 9.2223859, 48.9995875 11.1062950, 49.5075741 11.2794565, 49.5075692 11.2794307, 49.9040712 10.0964998, 49.9758154 11.7336493, 49.8906463 10.8815396, 49.8999822 10.3506192, 49.9590090 11.5788897, 49.9589325 11.5810671, 49.7067822 11.2546397, 49.7633614 11.4467299, 49.9462668 11.5753721, 49.8989204 10.3485227, 50.0438223 10.7182321, 49.9710536 10.6694916, 49.9927820 10.2724251, 50.3199349 9.8181952, 49.6775007 9.2831816, 49.2258187 10.7269246, 49.7343649 12.3586803, 48.9678967 12.3917663, 49.3663032 11.9178031, 49.0317249 10.9702087, 49.0288485 10.9765390, 49.2530850 10.2873176, 49.0672016 10.3182782, 49.4706490 11.9408120, 49.5018247 12.5383206, 50.2723903 10.4116010, 49.7653436 9.5229885, 49.0518566 11.7822209, 49.4932776 11.4751642, 49.9040764 11.0311000, 49.4390879 11.1394627, 49.8829364 9.5814255, 50.3199340 11.9165126, 49.0413060 11.4708290, 49.0190540 12.0985788, 49.6695229 10.1503714, 49.6097897 10.7076412, 49.7354916 12.3568963, 50.3121132 11.9174085, 49.0183174 12.0958518, 50.5222310 10.0713603, 50.2544924 10.0620117, 50.3707322 9.9786099, 49.4023947 11.1359481, 49.8978821 10.2241692, 49.4496586 10.3195263, 50.0041308 9.8215312, 50.1509972 12.0529393, 49.3007818 11.1215015, 49.1178053 10.7597381, 49.1974796 12.7466092, 49.8271514 9.4032808, 49.4206070 11.8806656, 49.8621215 11.9530041, 49.2841959 11.4810539, 50.3469859 11.2885524, 50.1624704 10.0762669, 49.0063017 12.0967461 +55.9652866 -3.3173288, 55.9426432 -3.2801965, 55.9442896 -3.2708207, 55.9438150 -3.2706214, 55.9827744 -3.3988810, 55.9796500 -3.3006918, 55.9329934 -3.3152155, 55.9899019 -3.3868462, 55.9031798 -3.2852677, 55.9898690 -3.3921144, 55.9901625 -3.3961304, 55.9430311 -3.2839568, 55.9426584 -3.2803285, 55.9420361 -3.2670729, 55.9488427 -3.3624818, 55.9482570 -3.3655019, 55.9906648 -3.3973688, 55.9082967 -3.3202293, 55.9101031 -3.3218843, 55.9102819 -3.3218516, 55.8838914 -3.3385867, 55.8840866 -3.3391023, 55.9895667 -3.3989278, 55.9727826 -3.3512226, 55.9420681 -3.2954846, 55.9428183 -3.2938163, 55.9379137 -3.3141798, 55.9424726 -3.2928349, 55.9475057 -3.2948807 +1 +Fahrschule Jung, Fahrschule Lechner, Fahrschule Jung +-36.6014154 -72.1075231, 52.0291860 8.5142550, 49.2330740 6.9973444, 50.1074307 8.7650055, 50.1072273 8.7647436, 22.6191549 -83.7428456, 14.5807496 120.9762753, 14.5805360 120.9763947, 14.5818436 120.9756658, 50.7226010 1.6050050, 43.0426296 -87.9248245, 51.6074169 0.0416652, 45.3988026 -71.8998852, 45.4046469 -71.8920328, 45.4015922 -71.8952807, 45.4022589 -71.8983628, 45.4034563 -71.8949627, 45.4036683 -71.8853371, 45.4036176 -71.8851449, 45.3995729 -71.8883202, 45.3954825 -71.8909197, 45.7615378 4.9252989, 45.7242776 4.8539418, 52.2091369 0.1194683, 53.4593415 9.9824597, 51.1120248 13.0448680, 42.3242563 -72.6318461, 51.3434003 12.3777564, 43.3124639 5.3737685, 53.0816826 8.7668217, 53.0785270 8.7790946, 51.3662367 12.7354244, 50.3177954 -122.7985892, 47.2213673 -1.5513629, 53.0763731 8.7814702, 53.0749711 8.7854362, 53.5870543 9.8523197, 53.0736960 8.8113880, 45.4045773 -71.8936895, 53.0776511 8.7744885, 53.0798099 8.7656249, 43.9194950 -80.0972496, -35.2890739 149.1367795, -35.2892904 149.1372959, 35.4652380 139.6232660, 35.4573160 139.6345000, 35.4573770 139.6350780, 35.4565940 139.6334420, 5.4147578 100.3381401, 5.4186019 100.3362716, 5.4118952 100.3404014, 5.4153257 100.3388199, 5.4152656 100.3388868, 5.4196810 100.3364259, 5.4154139 100.3371358, 53.0749514 8.8058188, 52.2057098 0.1190323, -37.7993784 144.9868054, 45.5188570 -73.5691740, 45.5128430 -73.5632300, 12.1280531 -86.2702926, 50.5271501 3.1717475, 50.5312150 3.1752250, 41.9454600 -85.6346896, -33.9242974 151.2277579, 53.1953609 -2.8860461, 45.5260704 -73.5812544, 48.7916119 2.3885259, 48.7906282 2.3890615, 48.7933393 2.3960812, 45.5348157 -73.5824182, 45.5335479 -73.5839377, 41.1380774 -104.8037385, 53.0700008 8.8578411, 53.0722317 8.8027783, 53.0660402 8.8603661, 51.4157789 -0.0719009, 40.6114262 -75.3787269, 34.4740034 -104.2505389, 34.4721371 -104.2458022, 34.4720752 -104.2456546, 34.4720984 -104.2457056, 34.4728845 -104.2482698, 34.4739459 -104.2507535, 34.4720708 -104.2455326, 34.4722123 -104.2455165, 34.4731034 -104.2452054, 34.4738773 -104.2456748, 34.4738795 -104.2451169, 34.4729906 -104.2450283, 34.4729110 -104.2450230, 34.4730172 -104.2451061, 34.4721548 -104.2435746, 34.4721570 -104.2434968, 34.4721659 -104.2434351, 34.4722344 -104.2435612, 34.4722410 -104.2434727, 34.4739149 -104.2452563, 34.4734108 -104.2455353, 34.4733511 -104.2455353, 56.8486310 60.6143852, 56.8286462 60.5963142, 56.8253290 60.5739171, 56.8346004 60.5892016, 56.8348313 60.5912228, 56.8347581 60.5905843, 34.4712586 -104.2445012, 34.4690252 -104.2361273, 34.4691490 -104.2364170, 34.4663981 -104.2293199, 34.4664070 -104.2293789, 34.4664247 -104.2294432, 34.4664556 -104.2295237, 34.4664601 -104.2295827, 34.4664778 -104.2296632, 34.4663185 -104.2296846, 34.4728713 -104.2456008, 34.4728717 -104.2455800, 34.4728451 -104.2455639, 34.4729734 -104.2455210, 34.4731061 -104.2455102, 34.4719651 -104.2465134, 34.4718457 -104.2448933, 34.4716157 -104.2453439, 34.4724162 -104.2455102, 34.4724737 -104.2455156, 34.4725665 -104.2455156, 34.4726240 -104.2455210, 34.4725400 -104.2455102, 34.4577324 -104.2016293, 34.4041459 -104.1933627, 34.4041592 -104.1934325, 34.4041548 -104.1934754, 34.4041548 -104.1935290, 51.5620485 -0.0156984, 52.1492696 8.6409588, 52.7721456 -108.2978049, 52.7721439 -108.2980108, 52.7735140 -108.2996220, 52.7735147 -108.2994796, 44.3247854 3.5933287, 32.8953849 -96.8706526, 37.8444350 -122.2519760, -32.0515595 115.8443811, 40.6157425 -73.9868157, 53.1676433 -1.4134747, 49.4448734 7.7697663, 53.0836993 8.7681259, 38.0537709 -84.4864406, 38.0540489 -84.4864496, 38.0440262 -84.4958034, 38.0595431 -84.4915847, -7.1845494 -78.4398653, 56.8406483 60.6572407, 56.2068996 -3.1838643, 56.2070642 -3.1842310, 45.2947957 4.8252328, 48.8013456 2.3789682, -37.7836523 175.2603574, 51.5109264 -0.0586168, 38.0521886 -84.4884016, 38.0494548 -84.4935773, 38.0429257 -84.4952821, 38.0443167 -84.4933857, -33.4413297 121.7231524, -33.4414474 121.7232133, -17.3923104 -66.1567482, 47.2021812 -1.5779209, 47.2022677 -1.5778037, 44.5352686 5.8261649, 52.4938477 13.3811864, 51.5260751 -0.0840468, 41.1532430 -81.3579184, 52.6401090 9.2041528, 52.6429039 9.2056691, -17.3929057 -66.1552616, 37.8675132 -122.3000141, 37.8675551 -122.2997592, 50.6909067 6.6458012, 53.3596621 -1.4659833, 51.4556489 -2.6038496, 45.4172733 -75.6983647, 52.5831591 -1.9784181, 51.5503609 -0.4845400, 39.2079410 -85.9230402, 39.1973373 -85.8800930, 39.2031083 -85.9228088, 39.1891273 -85.9736222, 39.2019531 -85.9208501, 39.2085646 -85.8988681, 39.2019178 -85.9179194, 39.2543531 -85.8913927, 39.2031322 -85.8989603, 39.2039094 -85.9154693, 39.2025960 -85.9217800, 39.2023044 -85.9209961, 39.8701379 -86.1431395, 53.1226519 8.7627701, 53.4817974 -2.2326613, 53.4831916 -2.2376310, 41.0442752 -83.6504895, 45.3947619 -75.7347314, 2.1971711 102.2488118, 41.0388746 -83.6498780, 52.4859871 13.4239241, 48.8592827 2.3509543, 45.5176517 -73.5566963, 51.1738592 11.4244641, 51.1733178 11.4239529, 51.1752559 11.4191939, 51.1770761 11.4206127, 51.4184661 -0.0727819, 42.7623332 -71.4668150, 42.7620908 -71.4667229, 42.7584057 -71.4682910, 42.7575240 -71.4647036, 42.7573052 -71.4669363, 42.7587805 -71.4640241, 42.7571556 -71.4675184, 42.7576189 -71.4657748, 42.7624523 -71.4657367, 42.7627189 -71.4664833, 42.7641415 -71.4660125, 42.7595174 -71.4680177, 42.7598112 -71.4657442, 42.7566036 -71.4695809, 42.7601179 -71.4658109, 42.7566142 -71.4701980, 42.7625651 -71.4652902, 42.7576305 -71.4656179, 42.7563894 -71.4703902, 5.4116061 100.3340429, 5.4154939 100.3387651, 5.4213171 100.3336350, 53.0791955 8.8052958, 53.1368542 8.7413622, 52.9504001 -1.1535231, 52.9503388 -1.1534482, 52.9503704 -1.1534869, 52.9504304 -1.1535602, 35.7137350 139.7045451, 48.7910119 2.2844280, 51.5144694 12.1668357, 51.5203741 -0.0713723, 43.9170530 7.2473706, 43.9171164 7.2476744, 43.5280686 5.4456013, 34.9206548 -81.7417946, 34.7157862 -81.6227769, 49.8590939 2.8321954, 49.0420788 -122.3043045, 47.3644143 0.6842258, 41.1477855 -81.3427719, 19.3300825 -99.1776362, 42.5158610 2.9761019, 38.0566576 -84.4817862, 38.0565753 -84.4817514, 38.0565161 -84.4823656, 38.0562543 -84.4828350, 38.0562434 -84.4827559, 38.0538909 -84.4860503, 38.0531209 -84.4815269, 38.0523959 -84.4809835, 38.0521224 -84.4871313, 38.0476572 -84.4873995, 38.0447085 -84.4907952, 38.0488445 -84.4986986, 31.9816820 -106.5839655, -32.9489433 -60.6265801, 38.0555396 -84.5174851, 38.0531741 -84.5086204, 42.8760574 74.5909103, 42.8736545 74.5745013, 42.8698006 74.6047406, 42.8580103 74.6099489, 42.8797935 74.5831435, 42.8789744 74.5764774, 42.8831894 74.5947887, 42.8768682 74.5914738, 56.8584597 60.6033627, 56.8287642 60.6191814, 42.8402730 74.5860882, 42.8505673 74.5389765, 42.8747517 74.6231748, 42.8294579 74.6077761, 42.8294907 74.6069557, -34.5793686 -58.4311628, 49.0457739 -122.2878072, 49.0487688 -122.2891869, 49.0486962 -122.2915555, 32.8799668 -117.2359539, 49.0526675 -122.3176918, 41.3750699 -83.6496567, 49.0511778 -122.3115905, 41.3760811 -83.6365378, 38.6387863 -90.1826610, 33.7505161 -84.3955465, 33.7502641 -84.3952434, 25.6719073 -100.3072634, 25.6724172 -100.2976594, 25.6724023 -100.2979786, 25.6723878 -100.2982153, 42.3598743 -71.0907366, 42.3593372 -71.0932901, 45.5592467 -122.6433910, 47.6682120 -122.3844430, 43.6491422 -79.3796433, 38.0537735 -84.4861755, 38.0573765 -84.4810954, 38.0572076 -84.4810820, 38.0555159 -84.4837642, 38.0536161 -84.4871264, 43.6530620 -79.4702480, 49.0494648 -122.2892041, 33.9930356 -118.3202702, 49.0500839 -122.3347082, 49.0460146 -122.2914095, -24.8631428 152.3535916, -33.0383617 -68.8885714, -32.9224661 -68.8642691, -32.9227781 -68.8647867, -32.9234618 -68.8645089, -32.9280550 -68.8554674, 40.1230055 -104.9435093, -32.9253184 -68.8591653, 1.5597574 110.3426026, 1.5596639 110.3425985, 41.3734556 -83.6512187, 45.5215050 -122.6862631, 38.0539022 -84.4865570, 38.0581892 -84.4821898, 38.0475174 -84.4966938, 47.6204615 -122.3507418, 41.3746042 -83.6441767, 51.2675538 7.1607310, 50.6635320 11.5677944, 51.0527530 13.7389786, 41.2806386 -82.7903114, 46.4976863 -80.9975128, 41.3851630 -83.6418716, 49.2811474 -123.1132131, 49.4719088 8.4843272, -35.3036563 149.1372453, 50.9602320 6.9768159, 46.7471651 -71.3409155, -20.2773275 -40.3014543, 43.6054536 3.8842159, 39.0170851 -77.5150639, 48.5135683 9.0540270, 48.5136496 9.0546591, 48.5166244 9.0588300, 45.7858145 4.8075880, 43.7056239 7.2593116, 43.1959215 5.6172785, 45.7505612 3.0910310, 45.7779285 4.8279690, 45.7316295 4.8668787, 45.7484993 4.8788479, 45.7498654 4.8759864, 45.7698700 4.7879340, 45.7698985 4.7880655, 45.7549115 4.8434004, 45.7245886 4.8263897, 45.7433556 4.8405258, 45.7196057 4.8008161, 49.4711729 8.4842984, 45.9937525 4.7191450, 28.1627997 -15.4284758, 45.7318565 4.8358705, 45.9911135 4.7189355, 45.8236656 4.9516614, 45.7326668 4.8630359, 50.3827443 3.0887317, 45.9896165 4.7139395, 45.0673527 4.8330052, 45.7375747 4.8616255, 45.7725199 4.8663498, 45.7321697 4.8664580, 45.7336465 4.8632348, 45.7328203 4.8629032, 45.7320947 4.8674966, 45.7330177 4.8657973, 45.7324535 4.8672057, 45.7331360 4.8666865, 45.7335600 4.8653728, 45.7325955 4.8671070, 45.7319545 4.8635870, 45.7321249 4.8634546, 45.7316965 4.8647521, 45.7323801 4.8642213, 45.7322374 4.8643323, 45.7323075 4.8663529, 45.7329498 4.8637779, 45.7314132 4.8640073, 45.7385048 4.8613236, 45.7387649 4.8607244, 45.7389336 4.8609359, 45.7328475 4.8659300, 45.7310051 4.8652929, 45.7331061 4.8636557, 45.7333891 4.8624614, 45.7315452 4.8648710, 45.7756330 4.7951910, 45.7332067 4.8666311, 45.8155738 4.8472165, 45.8156435 4.8475277, 42.3797616 -71.0987931, 42.3798687 -71.0954403, 45.0674616 4.8330187, 45.0673053 4.8333600, 45.7649855 4.8287925, 45.7165371 4.8098566, 45.7493533 4.8609118, 45.6634167 4.8424264, 37.8311549 -122.2549431, 45.7209120 4.8541671, 45.7235048 4.8539594, 45.7222175 4.8540626, 45.7227953 4.8540163, 45.7249477 4.8538288, 45.7681064 4.8280574, 45.7659207 4.8312600, 45.7759090 4.8015510, 45.7760780 4.7952180, 45.7764025 4.7984375, 45.7250410 5.2514110, 45.6870490 5.3207140, 45.8202824 4.8705136, 45.7498366 5.1566655, 45.7664155 5.0049470, 45.7704495 4.8643856, 45.7617643 4.8152072, 45.7621030 4.8160960, 45.7618195 4.8162683, 45.7342924 4.8626980, 45.5249515 4.8766560, 45.7745993 4.8606941, 45.8437735 4.7340205, 45.7150814 4.8078204, 45.7175164 4.8098900, 45.7450213 4.8660796, 45.7502318 4.8416473, 45.7513725 4.8390037, 45.7205996 4.8439283, 45.7690470 4.7998735, 45.7697129 4.9524500, 45.7714030 5.0001735, 45.5828000 4.6317350, 45.7083270 4.8272787, 45.7318628 4.9995743, 45.7316843 5.0009960, 45.7317208 4.9997166, 45.7322290 4.9975134, 45.7340142 4.9964253, 45.7337846 4.9972670, 45.7723084 4.8215466, 45.9923090 4.7148511, 45.9992002 4.7068090, 45.7449245 4.8424444, 45.7452687 4.8413678, 45.7252956 4.8413865, 45.7696009 4.8272315, -27.3565875 -55.9031998, 43.4354452 3.6736282, 43.6083431 3.8757537, 43.6064367 3.8760233, 45.3980277 5.4163392, 46.0560780 4.5925965, 45.6584498 4.7736478, 45.7081288 4.7481631, 52.4786505 -1.8811401, -20.2726011 -40.3056313, 45.7680770 4.8801051, 45.6946293 4.9406443, 45.7296178 4.8752517, 45.7463509 4.8459884, 45.7677299 4.8312641, 45.7297744 4.8742560, 51.5127453 -0.1381665, 41.8530567 -87.6314325, 45.7551709 4.8469660, 45.8764848 4.8346205, 45.8684698 4.8394062, 45.7434934 4.8478974, 45.7559238 4.8169452, 51.4736870 -0.0699055, 45.7447945 4.9069783, 52.6396913 9.2078891, 45.7179757 4.8174971, 45.7180962 4.8187223, 48.1065996 11.7222571, 52.6440907 9.2020649, 46.2956359 5.6817401, 39.8115545 -77.2260798, 41.5857316 -93.6176380, 50.7029544 3.2128655, 33.6299754 -112.3762740, 52.5449088 12.3430742, 52.5447248 12.3472627, 45.4183248 4.6827379, 49.4040536 8.6759122, 45.4487430 141.6434538, -22.9924192 -43.2498801, 42.8145199 -70.8741556, 49.0486387 -122.2901145, -25.4286258 -49.2645041, 4.5301583 -75.6693238, -27.3524135 -55.8986117, -24.0121107 -46.4140506, 37.7716576 -122.3995055, -23.9984813 -46.4136019, 49.0457202 -122.2896796, 58.3006092 -134.4084945, 39.0603766 125.8213718, 39.0579705 125.8225026, 13.7515025 100.4926302, 52.5184534 13.4548208 +0 +Viernheim, Hemsbach, Hirschhorn (Neckar), Weinheim, Eberbach, Neuhofen, Edingen-Neckarhausen, Dossenheim, Schriesheim, Ladenburg +3.2971201432222386 +61 +yes +933 +3 +48.8186338 2.3589337, 48.8370737 2.3788669, 48.9000609 2.3653350, 48.8563367 2.3884320, 48.8230158 2.3140310, 48.8685531 2.3429838, 48.8649072 2.2687029, 48.8723005 2.4127029 +562 +48.8484038 2.3977491, 48.8512856 2.2781094, 48.8467839 2.2854077, 48.8332389 2.3329284, 48.8526288 2.3385336, 48.8925057 2.3450965, 48.8536039 2.3444118, 48.8515050 2.3430786, 48.8473294 2.3412516, 48.8312038 2.3565530, 48.8806072 2.3538936, 48.8347711 2.3321841, 48.8278860 2.3709325, 48.8695890 2.2848365, 48.8581077 2.3801470, 48.8317286 2.3137879, 48.8668650 2.2788566, 48.8697674 2.2857979, 48.8424148 2.4052197, 48.8448799 2.3727316, 48.8815590 2.3150046, 48.8903495 2.3201315, 48.8941941 2.3135794, 48.8704998 2.3049572, 48.8854539 2.2915179, 48.8898626 2.3035373, 48.8774012 2.4069914, 48.8980267 2.3289128, 48.8844761 2.2976487, 48.8584436 2.3037809, 48.8795960 2.3896580, 48.8827367 2.3814655, 48.8420110 2.3206428, 48.8615010 2.3537550, 48.8645112 2.3981788, 48.8798173 2.3215782, 48.8747412 2.3049062, 48.8700986 2.3070512, 48.8687272 2.2986811, 48.8764317 2.3015489, 48.8748073 2.2956078, 48.8679763 2.2954876, 48.8666447 2.2899845, 48.8714962 2.2934996, 48.8659060 2.2863973, 48.8634029 2.2863046, 48.8617450 2.2859062, 48.8586868 2.2849457, 48.8482990 2.2647021, 48.8776228 2.3708847, 48.8780030 2.3781296, 48.8873966 2.3492159, 48.8831639 2.3275572, 48.8374622 2.2575596, 48.8527859 2.4060423, 48.8764243 2.3592623, 48.8663059 2.3244457, 48.8579055 2.3100803, 48.8655795 2.3559318, 48.8473587 2.3122933, 48.8766198 2.3392717, 48.8832546 2.3471915, 48.8460393 2.3780826, 48.8383701 2.3607602, 48.8320548 2.3861467, 48.8432250 2.4013484, 48.8226361 2.3257162, 48.8429514 2.3751858, 48.8597360 2.3466694, 48.8606298 2.3466023, 48.8445008 2.4411062, 48.8502906 2.3928948, 48.8713571 2.3432580, 48.8721397 2.3393564, 48.8538475 2.3325263, 48.8975838 2.3287233, 48.8937759 2.3363457, 48.8391806 2.3825585, 48.8672161 2.3065357, 48.8652369 2.3013632, 48.8616106 2.3019528, 48.8622551 2.3149819, 48.8538751 2.3124512, 48.8650500 2.3013405, 48.8696527 2.3111802, 48.8541706 2.3068705, 48.8699915 2.3014172, 48.8713160 2.3009696, 48.8756033 2.3260400, 48.8630530 2.3526294, 48.8462434 2.3767506, 48.8793033 2.3034301, 48.8682598 2.4015540, 48.8567698 2.3537979, 48.8257810 2.3469176, 48.8600781 2.3465254, 48.8325620 2.3618635, 48.8284670 2.3264398, 48.8666879 2.3641696, 48.8679052 2.3646802, 48.8679443 2.3620076, 48.8606611 2.3260607, 48.8307809 2.3768658, 48.8494789 2.3371871, 48.8521348 2.3393496, 48.8772711 2.3269492, 48.8764858 2.3319975, 48.8846924 2.3795882, 48.8306144 2.2924114, 48.8767391 2.3608267, 48.8643491 2.2725788, 48.8982278 2.3591507, 48.8607328 2.3456697, 48.8236433 2.3530302, 48.8643981 2.3303564, 48.8891585 2.3938039, 48.8577770 2.3473733, 48.8634279 2.3351782, 48.8680916 2.3299623, 48.8691985 2.3546294, 48.8705443 2.3327006, 48.8659300 2.3408572, 48.8662586 2.3612125, 48.8553209 2.3603751, 48.8369707 2.3521360, 48.8500790 2.3487204, 48.8432193 2.3520318, 48.8498446 2.3551829, 48.8434713 2.3236014, 48.8530282 2.3354092, 48.8402189 2.3365313, 48.8505206 2.3272579, 48.8512092 2.3331634, 48.8390765 2.3825241 +yes +49.4125622 8.6856608, 49.4132392 8.6920033, 49.4102265 8.6939011, 49.4171332 8.6926969, 49.4131244 8.6897970, 49.4122418 8.6816335 +yes +49.4157830 8.7024600, 49.4140666 8.7816898, 49.4577219 8.7490473, 49.4032925 8.7045178, 49.4289721 8.7151840, 49.4389757 8.7105067, 49.4198571 8.7455459, 49.4275029 8.7737015, 49.4373776 8.7102608, 49.4586993 8.7508080, 49.4422682 8.7212517, 49.4363628 8.7226574, 49.3798543 8.7242169, 49.3920053 8.7219191, 49.3936816 8.7338185, 49.3880529 8.7449374, 49.3892299 8.7356087, 49.4211542 8.7663844, 49.4041052 8.7535788, 49.4040430 8.7550549, 49.4018572 8.7381282, 49.3882183 8.7637532, 49.3713087 8.7206070, 49.3712490 8.7202415, 49.3885665 8.7398928, 49.4005245 8.7368649, 49.4001794 8.7358427, 49.3735025 8.7471203, 49.4145556 8.7378436, 49.3955998 8.7710686, 49.4068586 8.7117430, 49.4013232 8.7102589, 49.3926283 8.7303560, 49.4186446 8.7243774, 49.4192378 8.7252701, 49.3916523 8.7083614, 49.4040076 8.7273317, 49.4005726 8.7520996, 49.4312494 8.6531851, 49.3715147 8.7207735, 49.3569186 8.7160216, 49.4020661 8.7444436, 49.4158860 8.7648572, 49.3879028 8.7422176, 49.3933762 8.7504520, 49.3976730 8.7366267, 49.3975523 8.7366262, 49.3975987 8.7367489, 49.4126021 8.6894511, 49.4124594 8.6881444, 49.4282015 8.7615482 +86 +49.6441243 8.5564719, 49.0087591 8.5185870, 49.2985368 8.5677585, 49.6721557 8.7454758, 49.1842695 8.5319667, 49.1288811 8.5190059, 49.9809835 7.8983830, 48.7376304 8.7293812, 49.5337420 8.5138668, 49.4347356 8.5477477, 48.7925976 9.3061008, 49.8196948 8.4985181, 48.8056481 8.6846746, 49.7600299 9.3291305, 49.4662766 7.6813517, 48.7856247 8.6267606, 49.7759429 8.4585232, 49.2307784 9.2078871, 49.4206827 8.4171066, 49.6798785 9.0763050, 49.0007416 8.1512107, 49.4367044 8.5477748, 49.4100821 8.1059288, 49.2801412 9.1346454, 49.0888567 9.2804742, 48.9795411 8.5355564, 50.1031768 8.1927138, 49.2657113 8.7084865, 48.8041483 8.4631233, 49.4876783 8.2702108, 49.4677368 9.7970458, 50.0857016 8.9076265, 48.7483865 8.0614060, 49.0287165 9.0492016, 49.0410316 9.3169418, 48.8539592 9.2348027, 48.8539557 9.2347866, 48.9983747 8.4008525, 49.4148452 8.6616528, 49.6441921 8.5567222, 48.8058870 9.2026900, 49.3148737 8.6338634, 49.2040092 8.1101928, 49.2322156 8.5669673, 49.2988095 8.5680059, 48.9802618 8.4708375, 50.0065372 8.2026859, 49.3584373 8.5785675, 49.9732653 9.1956023, 50.1157093 8.7028470, 49.3459550 8.3249470, 49.1515965 8.2765440, 49.5210275 8.6234238, 48.8071875 9.1737724, 49.1022030 8.3828217, 49.2935362 8.5046053, 50.1165360 8.7067454, 48.8253103 8.6754059, 50.0263486 9.3879603, 49.8658698 8.6833388, 49.8662101 8.6833327, 49.9914197 8.2840289, 49.9915814 8.2834873, 49.3237980 8.5608339, 49.2651896 8.7827986, 48.9540766 8.4458308, 49.2426090 8.6870049, 48.9957220 9.1233047, 48.8665666 8.2860385, 49.4876947 8.2700669, 49.5254851 8.3704330, 49.1285534 8.5472366, 50.0330868 8.4258727, 49.4650298 7.6807066, 49.3714003 8.5192029, 49.1603286 9.1744885, 49.5513114 8.5821079, 48.8647904 8.2838755, 49.3582528 8.5752331, 49.4367038 8.5473860, 49.4345444 8.5480585, 49.3695564 8.9893293, 49.5336357 8.5167883, 49.4301824 8.4136152, 49.2768106 8.4785462, 49.9038888 8.4804344, 49.0562857 8.2706917, 49.2593457 8.4792839, 49.1499602 8.2782883, 50.0799929 8.7788988, 48.9849185 9.4605810, 50.0818294 8.5830720, 49.5855289 8.3604475, 49.0267743 9.0449298, 49.1220234 8.7286777, 49.2196715 8.6777887, 49.0350959 9.0509228, 49.0413083 9.3172317, 48.8995303 9.2000831, 49.0888017 9.2803752, 49.0888657 9.2805980, 49.6248616 8.6332287, 49.0174407 8.6954605, 49.5369447 8.5202986, 49.5381507 8.5127480, 50.1050054 8.1943039, 50.0675836 8.4932108, 50.0977193 8.4410081, 50.1155894 8.6989594, 49.1429609 9.0780047, 49.4696792 9.7928929, 48.9653382 9.4514415, 48.9917186 8.4203757, 48.9900715 8.4209385, 48.9909331 8.4206520, 48.9874812 8.4209171, 48.9885156 8.4224369, 48.9173133 8.4878677, 49.1201519 8.4078517, 49.1639956 8.5831769, 50.0134135 8.5766571, 49.0355835 9.0504869, 49.0689362 8.5095157, 48.8750061 8.7154801, 49.0534493 8.3745481, 49.1904102 8.1305350, 49.1836255 9.6389805, 49.0562524 8.2689839, 49.1579391 8.4191576, 49.8659120 8.6837805, 49.8500709 8.3693753, 48.8080900 9.1753283, 48.8070681 9.1714156, 50.0812734 8.9081352, 49.1978115 9.5038738, 49.0889411 9.4579901, 49.6154087 8.3705051, 49.6153418 8.3707592, 49.6155807 8.3704936, 49.0684589 8.4811478, 49.7088645 8.5219522, 49.5087923 9.3552786 +http://www.eldorado-hd.de/ +12 +49.4278053 8.7495282, 49.4178891 8.7605933, 49.4075919 8.6845735, 49.4092177 8.6922359, 49.4084542 8.6927289, 49.4078943 8.6929172, 49.4083041 8.6927592, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4015990 8.6856698, 49.4158218 8.6922416, 49.4072954 8.6910173, 49.4082595 8.6914326, 49.4082829 8.6916558, 49.4076226 8.6923209, 49.3808049 8.6889505, 49.3656861 8.7051775, 49.3741444 8.7033717, 49.3742583 8.7034051, 49.3741763 8.7034993, 49.4103158 8.6974936, 49.4165191 8.6921856, 49.4120923 8.7117858, 49.4151725 8.6902594, 49.4071068 8.6898761, 49.4108200 8.6918918, 49.4160126 8.6922256, 49.4278746 8.6871277, 49.4277708 8.6843289, 49.3795766 8.6901652, 49.4077632 8.6922107, 49.4101101 8.6935285, 49.4080641 8.6904292, 49.4283321 8.6836841, 49.3804723 8.6884268, 49.3807734 8.6884609, 49.4082494 8.6913249, 49.4278253 8.6839436, 49.4278064 8.7495089 +48.8298344 2.3228877, 48.8319942 2.3245602, 48.8672925 2.3255509, 48.8659000 2.3372420, 48.8615254 2.3440287, 48.8585872 2.3458523, 48.8674660 2.3326727, 48.8663903 2.3380844, 48.8648091 2.3411291, 48.8687993 2.3373273, 48.8689038 2.3422059, 48.8405040 2.3347917, 48.8556694 2.3399888, 48.8555375 2.3409454, 48.8537528 2.3324105, 48.8533939 2.3394107, 48.8493501 2.3391528, 48.8546811 2.3332029, 48.8497831 2.3401650, 48.8441458 2.3298957, 48.8468341 2.3265156, 48.8550882 2.3414828, 48.8442966 2.3310034, 48.8710439 2.3094204, 48.8695157 2.3030346, 48.8714582 2.3357136, 48.8719507 2.3429771, 48.8718710 2.3418144, 48.8349997 2.3270026, 48.8332286 2.3157120, 48.8413291 2.2990993, 48.8408025 2.2883022, 48.8581641 2.2723388, 48.8646895 2.2880988, 48.8869322 2.3399586, 48.8847049 2.3404648, 48.8654581 2.3446776, 48.8523143 2.3350471, 48.8755021 2.3103942, 48.8606089 2.3006648, 48.8516415 2.3185465, 48.8482525 2.3194882, 48.8604171 2.3059560, 48.8537038 2.3235630, 48.8584187 2.2875657, 48.8449916 2.3240393, 48.8395978 2.2669106, 48.8274124 2.3148434, 48.8588049 2.3266129, 48.8694500 2.3047988, 48.8334988 2.3198962, 48.8373556 2.2574212, 48.8378434 2.2578634, 48.8381218 2.2586505, 48.8488333 2.3253506, 48.8647212 2.3469127, 48.8658103 2.3452891, 48.8588835 2.3307705, 48.8697776 2.3105917, 48.8722601 2.3035046, 48.8686679 2.3066263, 48.8721672 2.3266440, 48.8845714 2.3233053, 48.8844355 2.3243334, 48.8867718 2.3236539, 48.8884368 2.3207195, 48.8886141 2.3198123, 48.8891033 2.3164088, 48.8879876 2.3341073, 48.8940712 2.3342515, 48.8886186 2.3167009, 48.8835953 2.3233585, 48.8492934 2.3349249, 48.8414290 2.2990451, 48.8517156 2.3336409, 48.8858410 2.3405929, 48.8891314 2.3403708, 48.8455384 2.3288228, 48.8519626 2.3388319, 48.8300409 2.3310810, 48.8776115 2.2679599, 48.8457083 2.3191961, 48.8523526 2.3444419, 48.8568120 2.3062305, 48.8540277 2.3358692, 48.8404976 2.3244044, 48.8491586 2.2872491, 48.8472243 2.3185062, 48.8300837 2.3230365, 48.8672258 2.3079158, 48.8838862 2.3277689, 48.8861318 2.3340926, 48.8518241 2.3377078, 48.8393461 2.2989248, 48.8739244 2.3454201, 48.8701181 2.2849979, 48.8473878 2.3433434, 48.8860554 2.3188123, 48.8519093 2.3341886, 48.8650517 2.3018704, 48.8284622 2.3428564, 48.8319371 2.3141252, 48.8327575 2.3159370, 48.8318327 2.3145828, 48.8330455 2.3162946, 48.8332491 2.3170528, 48.8362254 2.3224012, 48.8364089 2.3224024, 48.8324709 2.3200140, 48.8324257 2.3207007, 48.8324031 2.3208037, 48.8323749 2.3209067, 48.8840850 2.3374869, 48.8663999 2.3328148, 48.8678174 2.3028593, 48.8310200 2.3347804, 48.8865096 2.3452428, 48.8274542 2.3356985, 48.8755523 2.3252222, 48.8324911 2.2973690, 48.8342552 2.3021401, 48.8331822 2.3057910, 48.8330642 2.3057247, 48.8370250 2.2962718, 48.8320429 2.3030516, 48.8847020 2.3249240, 48.8567473 2.3041925, 48.8562200 2.3044115, 48.8560475 2.3045247, 48.8555290 2.3047711, 48.8555382 2.3054236, 48.8553164 2.3055412, 48.8549906 2.3050099, 48.8547805 2.3051304, 48.8454096 2.3428012, 48.8451686 2.3207087, 48.8836330 2.3284520, 48.8343459 2.3060180, 48.8803159 2.2995227, 48.8633934 2.3347841, 48.8707741 2.3411912, 48.8705661 2.3420906, 48.8709334 2.3427566, 48.8505276 2.3447826, 48.8513045 2.3459712, 48.8661377 2.3353287, 48.8871654 2.3269257, 48.8861847 2.3270688, 48.8974129 2.3292183, 48.8538840 2.3375740, 48.8459719 2.2775704, 48.8605714 2.3454975, 48.8286167 2.3222750, 48.8291859 2.3226894, 48.8768016 2.3394255, 48.8445390 2.3211809, 48.8305262 2.3381265, 48.8720047 2.3455258, 48.8289443 2.3298857, 48.8289302 2.3293063, 48.8288878 2.3328361, 48.8376310 2.2974210, 48.8958230 2.3395842, 48.8794405 2.3338166, 48.8430137 2.3209354, 48.8386044 2.2987363, 48.8565275 2.3420348, 48.8568716 2.3421327, 48.8563329 2.3422554, 48.8569183 2.3418674, 48.8333386 2.2983800, 48.8319312 2.3029513, 48.8577895 2.3468656, 48.8600943 2.3451124, 48.8604674 2.3454225, 48.8609295 2.3450073, 48.8612791 2.3423684, 48.8613359 2.3426577, 48.8612560 2.3431916, 48.8613382 2.3448649, 48.8617216 2.3432877, 48.8602965 2.3418540, 48.8588694 2.3415282, 48.8622902 2.3393649, 48.8620988 2.3398606, 48.8622685 2.3398888, 48.8626905 2.3414763, 48.8644969 2.3453886, 48.8633332 2.3460793, 48.8633690 2.3462612, 48.8634242 2.3462790, 48.8641678 2.3467038, 48.8636473 2.3431563, 48.8640954 2.3438023, 48.8625475 2.3407883, 48.8647612 2.3406523, 48.8659486 2.3400023, 48.8644890 2.3404697, 48.8655554 2.3403846, 48.8660668 2.3390095, 48.8661019 2.3389239, 48.8650200 2.3366293, 48.8656093 2.3369261, 48.8663099 2.3374684, 48.8660066 2.3354463, 48.8660278 2.3340077, 48.8663930 2.3354840, 48.8663406 2.3354494, 48.8666001 2.3357750, 48.8646841 2.3338346, 48.8660273 2.3312781, 48.8380436 2.2819311, 48.8447774 2.2964422, 48.8475784 2.2858410, 48.8499929 2.2889519, 48.8658325 2.3324895, 48.8658744 2.3325173, 48.8659399 2.3325614, 48.8663779 2.3317318, 48.8669595 2.3323778, 48.8670401 2.3324272, 48.8676684 2.3316870, 48.8671882 2.3325179, 48.8675087 2.3324647, 48.8676565 2.3320208, 48.8675328 2.3323476, 48.8674795 2.3326070, 48.8678727 2.3316533, 48.8680817 2.3307073, 48.8517565 2.2895333, 48.8527624 2.2872737, 48.8687898 2.3338477, 48.8677062 2.3374280, 48.8690695 2.3343056, 48.8706891 2.3340754, 48.8714078 2.3378085, 48.8690729 2.3399905, 48.8691872 2.3393294, 48.8691071 2.3397858, 48.8692514 2.3401242, 48.8716597 2.3407937, 48.8716249 2.3410422, 48.8688297 2.3421626, 48.8675928 2.3409167, 48.8664997 2.3400225, 48.8704135 2.3318678, 48.8691969 2.3433101, 48.8671729 2.3441962, 48.8705191 2.3428655, 48.8709276 2.3429934, 48.8515128 2.3437930, 48.8834373 2.3324889, 48.8271315 2.3323734, 48.8633842 2.3464893, 48.8521687 2.3444775, 48.8533184 2.3416729, 48.8516494 2.3469103, 48.8544692 2.3379604, 48.8468855 2.3408953, 48.8459422 2.3434742, 48.8422162 2.3202513, 48.8438796 2.3245430, 48.8687006 2.3354843, 48.8400778 2.3373997, 48.8413087 2.3389738, 48.8413263 2.3391080, 48.8382571 2.3458273, 48.8543308 2.3402565, 48.8546432 2.3327719, 48.8533032 2.3340213, 48.8529586 2.3360296, 48.8516089 2.3354609, 48.8514421 2.3272954, 48.8551090 2.3306870, 48.8416177 2.3314774, 48.8419379 2.3304718, 48.8422661 2.3280738, 48.8424306 2.3290349, 48.8471137 2.3267431, 48.8467204 2.3172126, 48.8530169 2.3313456, 48.8521220 2.3374608, 48.8673734 2.3222301, 48.8693756 2.3206236, 48.8705692 2.3211241, 48.8727654 2.3210286, 48.8703638 2.3102774, 48.8723529 2.3102456, 48.8738587 2.3163169, 48.8737509 2.3196440, 48.8744903 2.3184375, 48.8736367 2.3223675, 48.8713058 2.3233311, 48.8724761 2.3240966, 48.8721839 2.3251685, 48.8751646 2.3250295, 48.8753241 2.3259291, 48.8752570 2.3254427, 48.8741599 2.3254911, 48.8761914 2.3213046, 48.8760259 2.3235129, 48.8801220 2.3241052, 48.8831176 2.3264261, 48.8820671 2.3242802, 48.8832767 2.3277563, 48.8834770 2.3281748, 48.8837504 2.3286298, 48.8829218 2.3256282, 48.8831342 2.3236837, 48.8801277 2.3203119, 48.8799079 2.3202876, 48.8805205 2.3183206, 48.8558538 2.3252896, 48.8733445 2.3091989, 48.8745431 2.3093666, 48.8794607 2.3036933, 48.8724450 2.3072214, 48.8411028 2.2875550, 48.8707572 2.3085752, 48.8696331 2.3067786, 48.8715784 2.3063992, 48.8713131 2.3073190, 48.8713952 2.3012394, 48.8697736 2.3021852, 48.8669256 2.3076130, 48.8668818 2.3076173, 48.8672769 2.3062806, 48.8670111 2.3076126, 48.8671369 2.3028950, 48.8681586 2.3027800, 48.8660598 2.3017043, 48.8651464 2.3005883, 48.8724390 2.3021296, 48.8790339 2.2985581, 48.8787934 2.2983905, 48.8775425 2.2981350, 48.8783508 2.3004239, 48.8778323 2.2987883, 48.8690865 2.3022434, 48.8694700 2.3034453, 48.8699522 2.3058242, 48.8799166 2.3359231, 48.8753587 2.3261663, 48.8796547 2.3374136, 48.8753796 2.2958946, 48.8511260 2.3460443, 48.8517830 2.3177917, 48.8425329 2.3202995, 48.8679999 2.3369853, 48.8658930 2.2979628, 48.8721649 2.2948681, 48.8678330 2.2903912, 48.8387533 2.3310982, 48.8395777 2.3302123, 48.8670044 2.2897764, 48.8637238 2.2872368, 48.8691923 2.2884450, 48.8730386 2.2928973, 48.8692540 2.2857812, 48.8664391 2.2859464, 48.8666202 2.2859162, 48.8741506 2.2926613, 48.8744699 2.2916401, 48.8748891 2.2837909, 48.8665016 2.2891682, 48.8766202 2.2833645, 48.8734052 2.2811173, 48.8702950 2.2830521, 48.8654332 2.2855483, 48.8652388 2.2832232, 48.8671985 2.2798899, 48.8700560 2.3301669, 48.8637574 2.2772598, 48.8707204 2.3239555, 48.8705451 2.3238330, 48.8706016 2.3238683, 48.8629342 2.2763103, 48.8632435 2.2744521, 48.8595315 2.2787013, 48.8396268 2.3145492, 48.8430176 2.3242123, 48.8410422 2.3148300, 48.8741142 2.3446221, 48.8762130 2.3456817, 48.8516854 2.3468389, 48.8776819 2.2846763, 48.8411418 2.3133493, 48.8575743 2.2745958, 48.8564304 2.2797283, 48.8546720 2.2831002, 48.8556834 2.2695115, 48.8406209 2.3131425, 48.8408995 2.3133856, 48.8377889 2.3112404, 48.8510948 2.2675935, 48.8485486 2.2609653, 48.8485892 2.2607508, 48.8495519 2.2685978, 48.8478164 2.2424927, 48.8483714 2.2664428, 48.8243361 2.3260774, 48.8235176 2.3258353, 48.8410150 2.3160260, 48.8482315 2.2642376, 48.8473334 2.2588597, 48.8454540 2.2578610, 48.8655911 2.3030514, 48.8626372 2.2404388, 48.8449412 2.2575407, 48.8452233 2.2577704, 48.8394586 2.2616545, 48.8403523 2.2652749, 48.8402456 2.2655127, 48.8407348 2.2646847, 48.8378544 2.2962158, 48.8672772 2.3368959, 48.8296616 2.3177920, 48.8283684 2.3161973, 48.8397098 2.2848132, 48.8412353 2.2879283, 48.8347149 2.3277467, 48.8354063 2.3258802, 48.8358672 2.3242187, 48.8355698 2.3250292, 48.8348588 2.3273891, 48.8350846 2.3267608, 48.8341036 2.3294199, 48.8324180 2.3247172, 48.8342294 2.3264332, 48.8795990 2.2908850, 48.8368961 2.3177487, 48.8367758 2.3180171, 48.8396082 2.3324972, 48.8764826 2.2833917, 48.8499857 2.3459367, 48.8618932 2.3433243, 48.8642832 2.3420572, 48.8773156 2.2850715, 48.8773806 2.2848829, 48.8774160 2.2847302, 48.8533661 2.3445967, 48.8527336 2.3464352, 48.8525998 2.3463499, 48.8510655 2.3458688, 48.8508738 2.3460187, 48.8414932 2.3132873, 48.8425813 2.3133329, 48.8425225 2.3124389, 48.8773360 2.3157316, 48.8566502 2.3266740, 48.8696608 2.3393758, 48.8407751 2.3245796, 48.8431709 2.3416539, 48.8426788 2.3414503, 48.8463554 2.3405710, 48.8584177 2.3025456, 48.8569221 2.3035938, 48.8464241 2.2954995, 48.8602874 2.3097025, 48.8602217 2.3097138, 48.8530145 2.3117479, 48.8501505 2.3397562, 48.8859856 2.3190545, 48.8353460 2.2854410, 48.8462262 2.3142889, 48.8710024 2.3294337, 48.8577097 2.3005438, 48.8515887 2.3004692, 48.8568923 2.2921973, 48.8944130 2.3404956, 48.8752166 2.3329602, 48.8759120 2.3269790, 48.8830873 2.3292402, 48.8785075 2.2845239, 48.8786662 2.2845930, 48.8809300 2.3404709, 48.8818258 2.3395224, 48.8765185 2.3448908, 48.8718967 2.3415625, 48.8853691 2.3353615, 48.8857113 2.3355174, 48.8855561 2.3353079, 48.8855279 2.3354474, 48.8479740 2.3007339, 48.8468451 2.3046139, 48.8475414 2.3012068, 48.8467540 2.3049111, 48.8482418 2.3105178, 48.8505805 2.3092017, 48.8517546 2.3104073, 48.8514424 2.3108980, 48.8517685 2.3133289, 48.8498367 2.3124580, 48.8517506 2.3131416, 48.8446026 2.3117965, 48.8828690 2.3183304, 48.8823081 2.3158735, 48.8825903 2.3165065, 48.8829889 2.3183223, 48.8829466 2.3176571, 48.8445056 2.3203943, 48.8446279 2.3203361, 48.8775262 2.2949459, 48.8754540 2.2867414, 48.8756436 2.2866256, 48.8438107 2.3152002, 48.8437516 2.3150319, 48.8890725 2.3179865, 48.8765188 2.3353132, 48.8767451 2.3353322, 48.8764727 2.3353018, 48.8764220 2.3352962, 48.8449195 2.3183472, 48.8453227 2.3190283, 48.8760923 2.3383718, 48.8745269 2.3383294, 48.8751689 2.3383360, 48.8766449 2.2886055, 48.8782254 2.2853949, 48.8777760 2.2847660, 48.8323092 2.3130666, 48.8480733 2.3112387, 48.8264546 2.3410881, 48.8564566 2.3025481, 48.8314493 2.3411256, 48.8380307 2.2817398, 48.8833475 2.2875083, 48.8453517 2.2976315, 48.8341870 2.3157058, 48.8452541 2.2717989, 48.8400603 2.2864594, 48.8437006 2.2963141, 48.8744843 2.3304643, 48.8449901 2.2972313, 48.8515963 2.3430149, 48.8492402 2.2880111, 48.8820903 2.2863199, 48.8720949 2.3323339, 48.8705731 2.3103284, 48.8351017 2.3201496, 48.8351935 2.3203079, 48.8218202 2.3423613, 48.8370059 2.2837291, 48.8365516 2.2821427, 48.8356895 2.2807712, 48.8354976 2.2815391, 48.8370362 2.2836115, 48.8776662 2.3398701, 48.8601399 2.2750024, 48.8764828 2.3370142, 48.8766560 2.3371844, 48.8385818 2.2889747, 48.8383246 2.2880446, 48.8381278 2.2872162, 48.8377112 2.2593212, 48.8662293 2.3379767, 48.8675784 2.2807278, 48.8667500 2.2803710, 48.8687850 2.3380000, 48.8703423 2.3428105, 48.8566013 2.3030438, 48.8447537 2.3186687, 48.8662137 2.3353607, 48.8660390 2.3352910, 48.8657884 2.3351488, 48.8719692 2.3361261, 48.8715773 2.3365388, 48.8714095 2.3355863, 48.8752025 2.3376055, 48.8751468 2.3355442, 48.8750364 2.3392304, 48.8766742 2.3373282, 48.8766460 2.3368602, 48.8769295 2.3383704, 48.8769349 2.3331592, 48.8767858 2.3369975, 48.8768072 2.3364970, 48.8758550 2.3388379, 48.8767868 2.3367967, 48.8767450 2.3377873, 48.8710277 2.3356624, 48.8708929 2.3349679, 48.8710045 2.3355038, 48.8716416 2.3409433, 48.8706911 2.3467398, 48.8716176 2.3411379, 48.8707327 2.3464923, 48.8714861 2.3419548, 48.8716074 2.3412011, 48.8750088 2.3393609, 48.8689508 2.3362959, 48.8667422 2.3365735, 48.8682398 2.3365168, 48.8696120 2.3356753, 48.8676561 2.3370904, 48.8675328 2.3370273, 48.8698393 2.3358297, 48.8708380 2.3349612, 48.8688219 2.3359090, 48.8688160 2.3362566, 48.8688035 2.3365534, 48.8666564 2.3369830, 48.8669153 2.3365074, 48.8702490 2.3349166, 48.8688150 2.3361103, 48.8676983 2.3366997, 48.8681903 2.3364995, 48.8678747 2.3364447, 48.8658609 2.3370619, 48.8641660 2.3361960, 48.8656996 2.3366338, 48.8651667 2.3364852, 48.8652254 2.3367395, 48.8703362 2.3315753, 48.8597079 2.3182507, 48.8666350 2.3099131, 48.8703978 2.3225405, 48.8702620 2.3312290, 48.8702706 2.3312786, 48.8706031 2.3221827, 48.8707016 2.3218346, 48.8575110 2.3466500, 48.8549950 2.3458720, 48.8543860 2.3452440, 48.8538530 2.3437110, 48.8361075 2.3240698, 48.8616152 2.3446790, 48.8616509 2.3443800, 48.8373866 2.2787503, 48.8376849 2.2783476, 48.8370124 2.2782827, 48.8373420 2.2787571, 48.8584947 2.3265348, 48.8640655 2.3345802, 48.8936313 2.3222087, 48.8943755 2.3204813, 48.8248377 2.3236483, 48.8238612 2.3234793, 48.8243856 2.3234123, 48.8242408 2.3233372, 48.8280919 2.3264056, 48.8290544 2.3276046, 48.8315850 2.3242790, 48.8521286 2.3374207, 48.8830455 2.3398008, 48.8485558 2.3279413, 48.8390548 2.2577341, 48.8388575 2.2576602, 48.8404902 2.2580804, 48.8908275 2.3460063, 48.8905461 2.3453913, 48.8851558 2.3360026, 48.8410271 2.2662469, 48.8945691 2.3441669, 48.8944316 2.3452559, 48.8936330 2.3428880, 48.8940560 2.3431940, 48.8941520 2.3429690, 48.8943730 2.3432450, 48.8951370 2.3433760, 48.8943990 2.3447720, 48.8942700 2.3458810, 48.8941300 2.3458060, 48.8928950 2.3433840, 48.8948510 2.3409210, 48.8300641 2.3145322, 48.8285724 2.3161086, 48.8931040 2.3440780, 48.8926550 2.3442290, 48.8937130 2.3451630, 48.8937300 2.3449020, 48.8731527 2.3385700, 48.8505156 2.3091488, 48.8664049 2.3413812, 48.8687508 2.3345042, 48.8692412 2.3299818, 48.8707775 2.3387098, 48.8689281 2.3302927, 48.8695802 2.3230555, 48.8664844 2.3389311, 48.8700770 2.3223918, 48.8675314 2.3020548, 48.8696595 2.3052249, 48.8662502 2.3285392, 48.8739879 2.3430920, 48.8442421 2.2944260, 48.8486566 2.2967202, 48.8419574 2.3290304, 48.8634808 2.3437738, 48.8718416 2.3144851, 48.8696738 2.3309961, 48.8724435 2.3281256, 48.8947860 2.3445300, 48.8724800 2.3404835, 48.8714038 2.3104401, 48.8715946 2.3262057, 48.8669510 2.3270370, 48.8706950 2.3313289, 48.8673862 2.2911822, 48.8679841 2.3255481, 48.8706291 2.3297804, 48.8680526 2.3287936, 48.8684086 2.3268250, 48.8662803 2.3394262, 48.8710959 2.3416366, 48.8699813 2.3246311, 48.8597088 2.3086607, 48.8529952 2.3376020, 48.8501520 2.3419436, 48.8687853 2.3250184, 48.8688647 2.2646951, 48.8635574 2.2602856, 48.8660415 2.3361004, 48.8349766 2.2830210, 48.8327742 2.2887456, 48.8939174 2.3431529, 48.8873793 2.3371742, 48.8401572 2.3240577, 48.8864168 2.3442029, 48.8866377 2.3443434, 48.8294590 2.3017660, 48.8899236 2.3398500, 48.8865304 2.3443480, 48.8857166 2.3381509, 48.8274320 2.3314214, 48.8702183 2.2459747, 48.8690004 2.3384279, 48.8510173 2.2932405, 48.8509119 2.2937166, 48.8508690 2.2932272, 48.8485015 2.3421189, 48.8501669 2.3420537, 48.8455001 2.3427289, 48.8334129 2.3092754, 48.8434049 2.2987789, 48.8736424 2.3076398, 48.8984060 2.3445732, 48.8433712 2.3246895, 48.8435643 2.3254572, 48.8828717 2.3288427, 48.8827606 2.3283572, 48.8402155 2.3458349, 48.8935993 2.3230562, 48.8489864 2.3403461, 48.8668318 2.2544028, 48.8934373 2.3232735, 48.8427645 2.2780599, 48.8865873 2.3128095, 48.8714714 2.3280397, 48.8867280 2.3409619, 48.8427006 2.2950967, 48.8412651 2.3237285, 48.8412198 2.3236119, 48.8423579 2.3222342, 48.8426136 2.3217510, 48.8425995 2.3220085, 48.8426424 2.3222812, 48.8421833 2.3220777, 48.8418212 2.3214760, 48.8211226 2.3412820, 48.8333002 2.3325229, 48.8928740 2.3287813, 48.8801808 2.3373122, 48.8777152 2.3320765, 48.8777130 2.3318740, 48.8720797 2.3405228, 48.8717651 2.3403142, 48.8710210 2.3469210, 48.8710522 2.3467304, 48.8829700 2.3205585, 48.8820557 2.3285353, 48.8801158 2.3291143, 48.8815002 2.3282628, 48.8742801 2.3357676, 48.8742391 2.3333145, 48.8742326 2.3334984, 48.8741848 2.3351560, 48.8743601 2.3329097, 48.8742439 2.3332327, 48.8742300 2.3335755, 48.8742269 2.3336382, 48.8728885 2.3451791, 48.8765391 2.3394762, 48.8762070 2.3400723, 48.8765114 2.3406889, 48.8766574 2.3401427, 48.8764750 2.3395753, 48.8766574 2.3405656, 48.8500694 2.2761219, 48.8498994 2.2724503, 48.8514931 2.2777343, 48.8512248 2.2780374, 48.8506071 2.2713372, 48.8240405 2.3250200, 48.8359510 2.3274377, 48.8337887 2.2902462, 48.8339105 2.2899243, 48.8332825 2.2894710, 48.8331362 2.2888144, 48.8680574 2.3417881, 48.8698783 2.3425685, 48.8691169 2.3422291, 48.8702023 2.3421494, 48.8351363 2.3445567, 48.8260954 2.3467344, 48.8872935 2.3361945, 48.8853856 2.3359893, 48.8873015 2.3360309, 48.8858892 2.3361945, 48.8857859 2.3452590, 48.8688487 2.2348654, 48.8896591 2.3426912, 48.8857760 2.3287243, 48.8849775 2.3295394, 48.8416788 2.3272221, 48.8880810 2.2979280, 48.8556751 2.3337849, 48.8974737 2.3312683, 48.8959871 2.3304855, 48.8872260 2.3324699, 48.8904006 2.3349160, 48.8905328 2.3349026, 48.8884483 2.3329205, 48.8875488 2.3327381, 48.8915645 2.3352835, 48.8953965 2.3375071, 48.8344267 2.2884194, 48.8338498 2.2894608, 48.8396619 2.3229538, 48.8879853 2.3396455, 48.8518599 2.3446879, 48.8527027 2.3467086, 48.8947585 2.3282626, 48.8959929 2.3286918, 48.8961868 2.3389271, 48.8347833 2.2887478, 48.8342967 2.2879777, 48.8341388 2.2878870, 48.8335658 2.2868046, 48.8354116 2.2892340, 48.8337101 2.2863906, 48.8825100 2.3378415, 48.8846868 2.3416679, 48.8843749 2.3411643, 48.8846003 2.3411844, 48.8720517 2.3351032, 48.8662620 2.3356061, 48.8670216 2.3359869, 48.8484873 2.3463043, 48.8507620 2.3449853, 48.8463607 2.3432591, 48.8464051 2.3430548, 48.8308414 2.3123480, 48.8311654 2.3137963, 48.8781869 2.2884063, 48.8502006 2.2918459, 48.8501155 2.2920291, 48.8514439 2.3380763, 48.8656739 2.3463704, 48.8731487 2.3445761, 48.8530064 2.2754461, 48.8511636 2.2783753, 48.8526949 2.3089511, 48.8724637 2.2980607, 48.8707216 2.3006611, 48.8682088 2.3014586, 48.8729195 2.2988493, 48.8730465 2.2984497, 48.8541526 2.2759522, 48.8656555 2.2894172, 48.8652925 2.2891532, 48.8654719 2.2892837, 48.8283068 2.3264318, 48.8751640 2.3321790, 48.8348517 2.2891489, 48.8349806 2.2890202, 48.8848688 2.3069070, 48.8355850 2.3240208, 48.8364355 2.3230794, 48.8400356 2.3360672, 48.8395556 2.3365605, 48.8778735 2.2875843, 48.8705072 2.3019336, 48.8708689 2.3020289, 48.8697768 2.3036006, 48.8681112 2.3014721, 48.8704351 2.3043615, 48.8693740 2.3077196, 48.8360032 2.2916086, 48.8354526 2.2925379, 48.8360026 2.2919856, 48.8444056 2.3230253, 48.8398470 2.3238410, 48.8405177 2.3236190, 48.8777760 2.2877961, 48.8281574 2.3022904, 48.8944510 2.3440420, 48.8417263 2.3245973, 48.8419109 2.3245351, 48.8435173 2.3219294, 48.8416495 2.3246134, 48.8417952 2.3245691, 48.8419805 2.3245034, 48.8404349 2.3156482, 48.8429231 2.3260926, 48.8405515 2.3159715, 48.8427732 2.3210206, 48.8405038 2.3158186, 48.8415277 2.3195025, 48.8404090 2.3155450, 48.8408520 2.3154700, 48.8416910 2.3246067, 48.8410405 2.3217676, 48.8754701 2.2836788, 48.8753925 2.2852613, 48.8750872 2.2865005, 48.8756941 2.2862216, 48.8371723 2.3209043, 48.8727890 2.3429679, 48.8727157 2.3429899, 48.8450620 2.2639791, 48.8404449 2.3243133, 48.8393146 2.3237992, 48.8466620 2.2831751, 48.8465418 2.2833721, 48.8420648 2.2629254, 48.8231449 2.3164243, 48.8274421 2.3056058, 48.8272767 2.3063130, 48.8273081 2.3061699, 48.8851757 2.3075791, 48.8820348 2.3139529, 48.8719957 2.3430238, 48.8495349 2.2915103, 48.8494723 2.2914581, 48.8729655 2.3432485, 48.8718024 2.3432812, 48.8193061 2.3373740, 48.8318467 2.3029070, 48.8767250 2.3307380, 48.8841484 2.3227392, 48.8840708 2.3230235, 48.8861392 2.3337047, 48.8275287 2.3149795, 48.8848153 2.3229754, 48.8733188 2.3446580, 48.8752221 2.3038262, 48.8405967 2.2643349, 48.8470601 2.2681655, 48.8467068 2.2996176, 48.8730540 2.3435221, 48.8852970 2.3163291, 48.8402963 2.3339966, 48.8341834 2.3261480, 48.8676507 2.3427272, 48.8211212 2.3425439, 48.8410733 2.2637691, 48.8409491 2.2637071, 48.8264077 2.3428246, 48.8266961 2.3392484, 48.8268524 2.3383549, 48.8279313 2.3307106, 48.8277088 2.3287499, 48.8277300 2.3277843, 48.8248691 2.3468871, 48.8250908 2.3464880, 48.8237982 2.3450583, 48.8230883 2.3447901, 48.8237048 2.3451996, 48.8219312 2.3422877, 48.8821571 2.3281764, 48.8213603 2.3347178, 48.8216005 2.3337522, 48.8233935 2.3258237, 48.8328265 2.3361398, 48.8334329 2.3320275, 48.8367785 2.2975889, 48.8353295 2.3023316, 48.8355400 2.3018828, 48.8536438 2.3402017, 48.8591372 2.3430272, 48.8250589 2.3163847, 48.8256612 2.3136542, 48.8262642 2.3127271, 48.8263278 2.3124589, 48.8269282 2.3097177, 48.8533715 2.3422551, 48.8372157 2.2784595, 48.8373662 2.2784119, 48.8374744 2.2783898, 48.8377489 2.2783295, 48.8378835 2.2783147, 48.8409791 2.2776487, 48.8415966 2.2775907, 48.8417106 2.2775691, 48.8430969 2.2772758, 48.8313589 2.2922508, 48.8312406 2.2923850, 48.8313819 2.2919236, 48.8318056 2.2909044, 48.8321693 2.2900809, 48.8333911 2.2872190, 48.8333311 2.2873692, 48.8334759 2.2870071, 48.8347594 2.2843303, 48.8344487 2.2844456, 48.8343110 2.2848131, 48.8350242 2.2828765, 48.8348954 2.2832036, 48.8309240 2.2930315, 48.8288796 2.2990421, 48.8435115 2.2940634, 48.8316365 2.2921115, 48.8337223 2.2896712, 48.8437437 2.2775524, 48.8426810 2.2779896, 48.8426051 2.2779253, 48.8418037 2.2778904, 48.8416325 2.2779601, 48.8240750 2.3283368, 48.8235152 2.3304799, 48.8245642 2.3282644, 48.8250198 2.3200783, 48.8249015 2.3203760, 48.8372695 2.2771628, 48.8378574 2.2780721, 48.8377480 2.2779702, 48.8431163 2.2826694, 48.8423890 2.2820525, 48.8416776 2.2810225, 48.8490942 2.3396105, 48.8709254 2.3085765, 48.8662240 2.3388110, 48.8322843 2.3152081, 48.8563012 2.2797681, 48.8773588 2.2989656, 48.8774315 2.2986835, 48.8541163 2.3390471, 48.8426080 2.3301580, 48.8515332 2.3460413, 48.8516027 2.3460829, 48.8931060 2.3282113, 48.8487835 2.2875266, 48.8402141 2.2853650, 48.8445983 2.3417212, 48.8610209 2.3105163, 48.8610190 2.3113026, 48.8745880 2.3309443, 48.8746973 2.3308647, 48.8745893 2.3308470, 48.8454138 2.3449157, 48.8789100 2.2874734, 48.8419273 2.3255444, 48.8419458 2.3253394, 48.8420169 2.3254159, 48.8327810 2.3359512, 48.8563545 2.3025991, 48.8562747 2.3028390, 48.8920015 2.3179046, 48.8557667 2.3453212, 48.8456597 2.3425776, 48.8465513 2.2796735, 48.8946856 2.3193650, 48.8286016 2.3219064, 48.8530641 2.3387326, 48.8409358 2.3247136, 48.8642536 2.2721272, 48.8616662 2.3146849, 48.8849737 2.3369336, 48.8860248 2.3369308, 48.8902739 2.3358959, 48.8917305 2.3461501, 48.8906054 2.3436342, 48.8198771 2.3422222, 48.8661825 2.3452310, 48.8591882 2.3451519, 48.8584285 2.3451526, 48.8588750 2.3449998, 48.8515572 2.3384274, 48.8516756 2.3382308, 48.8438542 2.3424632, 48.8523071 2.3446538, 48.8523579 2.3447087, 48.8929579 2.3376602, 48.8788116 2.3448907, 48.8454616 2.2846288, 48.8464151 2.2854902, 48.8566728 2.3031742, 48.8327372 2.3358964, 48.8326973 2.3358705, 48.8471599 2.2855769, 48.8459727 2.2850778, 48.8425193 2.3260648, 48.8710277 2.3356624, 48.8756169 2.3280376, 48.8394722 2.3232687, 48.8395348 2.3235658, 48.8390409 2.3209288, 48.8781923 2.3452434, 48.8767035 2.3442886, 48.8761220 2.3317510, 48.8644516 2.3451744, 48.8665424 2.3444859, 48.8653520 2.3447568, 48.8818977 2.3455167, 48.8809875 2.3406458, 48.8809240 2.3404741, 48.8762503 2.3384716, 48.8444716 2.3118167, 48.8922563 2.3451633, 48.8520540 2.3392420, 48.8509886 2.3003532, 48.8318806 2.3042643, 48.8329686 2.3010817, 48.8319851 2.3034469, 48.8436104 2.2938618, 48.8374438 2.3009990, 48.8428377 2.2917440, 48.8367552 2.2993610, 48.8368605 2.3030920, 48.8386895 2.3004673, 48.8392782 2.3008123, 48.8431037 2.2954369, 48.8436199 2.2939852, 48.8758373 2.3459265, 48.8795087 2.3434753, 48.8369700 2.2985824, 48.8317774 2.3387153, 48.8750371 2.3453587, 48.8437191 2.2967019, 48.8763927 2.3443424, 48.8841247 2.3209960, 48.8832982 2.3234280, 48.8860152 2.3193197, 48.8490910 2.2871941, 48.8615352 2.3424505, 48.8515765 2.3436771, 48.8521735 2.3442731, 48.8520404 2.3443625, 48.8515776 2.3438599, 48.8520835 2.3444093, 48.8518887 2.3442140, 48.8524757 2.3445678, 48.8529435 2.3456985, 48.8528864 2.3462159, 48.8535544 2.2900587, 48.8533015 2.2903128, 48.8529010 2.3458674, 48.8530967 2.3453771, 48.8528548 2.3460331, 48.8530912 2.3454025, 48.8529158 2.3458178, 48.8528801 2.3459362, 48.8530593 2.3452208, 48.8531271 2.3452514, 48.8530349 2.3453279, 48.8528985 2.3461598, 48.8531949 2.3450333, 48.8531460 2.3451752, 48.8528383 2.3461107, 48.8529227 2.3457849, 48.8531071 2.3449244, 48.8530259 2.3454331, 48.8531325 2.3389945, 48.8528398 2.3392414, 48.8534928 2.3391049, 48.8533652 2.2880737, 48.8491265 2.3038627, 48.8506165 2.3004771, 48.8290807 2.3169825, 48.8676694 2.3433379, 48.8519408 2.2889178, 48.8531583 2.2878252, 48.8527669 2.3446610, 48.8521288 2.3444359, 48.8528975 2.3446411, 48.8527110 2.3446730, 48.8528195 2.3446512, 48.8529973 2.3446935, 48.8526334 2.3445601, 48.8501590 2.2937116, 48.8501219 2.2938863, 48.8540526 2.3381367, 48.8527451 2.2909129, 48.8917666 2.3218705, 48.8482224 2.2951925, 48.8501040 2.2917529, 48.8478257 2.2897580, 48.8477463 2.2896869, 48.8459218 2.2883699, 48.8453388 2.2878488, 48.8350277 2.3205989, 48.8528174 2.3454656, 48.8524768 2.3451560, 48.8528047 2.3455506, 48.8524991 2.3448569, 48.8523811 2.3455175, 48.8523985 2.3454156, 48.8526936 2.3454400, 48.8518297 2.3444041, 48.8524942 2.3450079, 48.8525154 2.3452198, 48.8525300 2.3444340, 48.8524984 2.3449165, 48.8523948 2.3451403, 48.8526323 2.3452414, 48.8525589 2.3451535, 48.8523556 2.3455883, 48.8527431 2.3454930, 48.8525232 2.3451020, 48.8526255 2.3453560, 48.8524246 2.3449029, 48.8526532 2.3453925, 48.8527658 2.3454086, 48.8524155 2.3453426, 48.8527323 2.3453722, 48.8564012 2.2779632, 48.8829241 2.3432202, 48.8721796 2.3274785, 48.8715853 2.3272917, 48.8804973 2.2853562, 48.8827366 2.2912231, 48.8961469 2.3382720, 48.8759290 2.3241447, 48.8764290 2.3259972, 48.8761420 2.3253990, 48.8667163 2.3367639, 48.8274032 2.3423677, 48.8254379 2.3417367, 48.8339084 2.3226213, 48.8394410 2.3322130, 48.8910518 2.3314128, 48.8461806 2.3049798, 48.8454569 2.3021602, 48.8479950 2.3233385, 48.8434408 2.2933619, 48.8534312 2.3389430, 48.8581170 2.3176186, 48.8316555 2.2928196, 48.8813835 2.3281151, 48.8826169 2.3296364, 48.8598677 2.3086797, 48.8347265 2.3446963, 48.8484552 2.3315803, 48.8502142 2.3307201, 48.8484725 2.2893525, 48.8606025 2.3457538, 48.8601414 2.3453350, 48.8903544 2.3289917, 48.8853124 2.3253739, 48.8803653 2.2993106, 48.8855401 2.2976447, 48.8702188 2.3108394, 48.8455223 2.3425685, 48.8536307 2.3312600, 48.8674112 2.3229787, 48.8704742 2.3237783, 48.8697219 2.3226142, 48.8433447 2.3026630, 48.8309698 2.3120278, 48.8741108 2.3436798, 48.8709398 2.3029345, 48.8321210 2.3246559, 48.8337101 2.3186360, 48.8319258 2.3247528, 48.8346470 2.3196240, 48.8725291 2.3001145, 48.8724675 2.3003188, 48.8666808 2.3456284, 48.8665292 2.3464186, 48.8665024 2.3465774, 48.8667552 2.3451020, 48.8667159 2.3453933, 48.8726851 2.3024789, 48.8737471 2.3451402, 48.8731623 2.3449978, 48.8719437 2.3446492, 48.8735309 2.3450913, 48.8555154 2.3007432, 48.8705878 2.3425842, 48.8605209 2.3023944, 48.8457271 2.2773879, 48.8680096 2.3435345, 48.8676664 2.3437165, 48.8679005 2.3435952, 48.8877980 2.2997590, 48.8811990 2.2897480, 48.8816790 2.2888680, 48.8817488 2.2888029, 48.8819610 2.2885470, 48.8814404 2.2894685, 48.8851028 2.2981721, 48.8848466 2.2963979, 48.8853809 2.2966584, 48.8845518 2.2979815, 48.8852175 2.2964748, 48.8834502 2.2938754, 48.8832548 2.2934886, 48.8822916 2.2913772, 48.8802886 2.2879403, 48.8358990 2.3466845, 48.8733986 2.3215098, 48.8845738 2.2910473, 48.8847627 2.2913861, 48.8813094 2.2861348, 48.8815854 2.2860365, 48.8822997 2.2865952, 48.8843811 2.2910193, 48.8837693 2.2907507, 48.8849514 2.2959483, 48.8850091 2.2954626, 48.8849348 2.2961330, 48.8845891 2.2945570, 48.8843134 2.2943799, 48.8848608 2.2951371, 48.8850188 2.2939952, 48.8852107 2.2935244, 48.8788664 2.2847106, 48.8740226 2.3337460, 48.8786554 2.2999384, 48.8762947 2.2890603, 48.8775890 2.2881553, 48.8619404 2.3145726, 48.8334394 2.3321755, 48.8484830 2.3465489, 48.8798757 2.2951878, 48.8796416 2.2949514, 48.8797688 2.2942800, 48.8799467 2.2942003, 48.8801083 2.2943052, 48.8805532 2.2934972, 48.8800771 2.2940804, 48.8815910 2.2925353, 48.8816270 2.2921775, 48.8841060 2.2909950, 48.8845760 2.2895318, 48.8826125 2.3011279, 48.8776740 2.2991918, 48.8776990 2.2990901, 48.8780258 2.2850956, 48.8846317 2.2893952, 48.8778621 2.2848987, 48.8802502 2.2957038, 48.8558979 2.3067417, 48.8498557 2.3451858, 48.8675021 2.3098437, 48.8885609 2.3172274, 48.8881694 2.3166376, 48.8883589 2.3169789, 48.8538689 2.3274803, 48.8335872 2.2986473, 48.8875090 2.2976290, 48.8871630 2.2970010, 48.8514668 2.3336573, 48.8876760 2.2983980, 48.8863430 2.2961140, 48.8859640 2.2915440, 48.8871530 2.2947410, 48.8853110 2.2955510, 48.8853440 2.2952310, 48.8850320 2.2952390, 48.8850780 2.2950060, 48.8840610 2.2937810, 48.8851190 2.2924220, 48.8852040 2.2920140, 48.8678227 2.3369768, 48.8809990 2.2857060, 48.8814470 2.2951720, 48.8856370 2.2977760, 48.8849010 2.2988890, 48.8538600 2.3320680, 48.8845430 2.2986640, 48.8846290 2.2984300, 48.8842560 2.2973050, 48.8842580 2.2968350, 48.8749003 2.3428357, 48.8423637 2.3259492, 48.8267542 2.3240551, 48.8771460 2.2924640, 48.8769040 2.2919650, 48.8771270 2.2920750, 48.8772510 2.2920010, 48.8774500 2.2920680, 48.8774750 2.2918560, 48.8776900 2.2917270, 48.8777680 2.2918880, 48.8779330 2.2915640, 48.8786180 2.2913310, 48.8798280 2.2917160, 48.8813710 2.2894860, 48.8347921 2.2897514, 48.8351951 2.2896751, 48.8747214 2.3415841, 48.8705943 2.3429365, 48.8746840 2.3416410, 48.8699102 2.3115070, 48.8683555 2.3254379, 48.8684709 2.3254367, 48.8690272 2.3251599, 48.8700437 2.3257977, 48.8702250 2.3258823, 48.8408366 2.3037928, 48.8840040 2.2933540, 48.8796560 2.2864960, 48.8323064 2.3247729, 48.8804350 2.2856120, 48.8804320 2.2856580, 48.8804050 2.2857730, 48.8806940 2.2861620, 48.8805790 2.2866490, 48.8799990 2.2875200, 48.8797930 2.2884240, 48.8797640 2.2885180, 48.8769049 2.3270113, 48.8454864 2.3196693, 48.8768180 2.3270140, 48.8770340 2.3271360, 48.8767510 2.3273100, 48.8766230 2.3273770, 48.8522732 2.3263458, 48.8520072 2.3255283, 48.8726661 2.3021404, 48.8727090 2.3021938, 48.8724271 2.3017769, 48.8695340 2.3049808, 48.8687825 2.3043355, 48.8473882 2.3059953, 48.8338061 2.3177640, 48.8412345 2.3039106, 48.8879180 2.3067900, 48.8880960 2.3065700, 48.8882020 2.3064360, 48.8882250 2.3064120, 48.8887260 2.3057200, 48.8883220 2.3062270, 48.8889330 2.3054700, 48.8889870 2.3053980, 48.8884000 2.2999400, 48.8799736 2.2892538, 48.8751250 2.2934560, 48.8752420 2.2940700, 48.8753410 2.2939710, 48.8550250 2.3290640, 48.8501139 2.3385275, 48.8335611 2.3308711, 48.8770440 2.2917940, 48.8769630 2.2916430, 48.8767720 2.2915790, 48.8777980 2.2906200, 48.8792110 2.2907480, 48.8618088 2.2825036, 48.8613662 2.2830289, 48.8613148 2.2830943, 48.8652864 2.2854968, 48.8653444 2.2836290, 48.8478589 2.3407967, 48.8336470 2.3315763, 48.8335273 2.3314999, 48.8758620 2.2937570, 48.8362062 2.3237133, 48.8349296 2.3296602, 48.8484295 2.3424166, 48.8446809 2.3466783, 48.8645257 2.2825794, 48.8336698 2.3296041, 48.8337502 2.3300015, 48.8659302 2.2858805, 48.8657556 2.2858886, 48.8813580 2.2854140, 48.8603776 2.3434701, 48.8765910 2.3232000, 48.8747470 2.3159270, 48.8359839 2.2844143, 48.8810780 2.3126420, 48.8300301 2.3296176, 48.8337668 2.3278330, 48.8354148 2.3235123, 48.8775700 2.2877800, 48.8529290 2.3314950, 48.8498887 2.3433647, 48.8519361 2.2987977, 48.8777223 2.3322319, 48.8407193 2.3049672, 48.8418070 2.3034131, 48.8546868 2.2950925, 48.8545526 2.2952974, 48.8409660 2.3058020, 48.8445280 2.3226454, 48.8445064 2.3227126, 48.8445876 2.3224605, 48.8443285 2.3232584, 48.8446976 2.3221192, 48.8446671 2.3222139, 48.8589178 2.3234187, 48.8589724 2.3234632, 48.8588292 2.3233490, 48.8864670 2.3115680, 48.8466756 2.3050730, 48.8466342 2.3052128, 48.8799610 2.3291770, 48.8848937 2.3405138, 48.8842803 2.3395848, 48.8846433 2.3402443, 48.8675053 2.3352170, 48.8506291 2.3395396, 48.8537312 2.3325450, 48.8842800 2.3047290, 48.8834170 2.3045710, 48.8820840 2.3044120, 48.8470633 2.3037370, 48.8450557 2.3057641, 48.8473348 2.3028088, 48.8826325 2.3446975, 48.8671652 2.3360497, 48.8672298 2.3360756, 48.8804060 2.3026459, 48.8803576 2.3030073, 48.8808754 2.3021137, 48.8808069 2.3021832, 48.8592799 2.2849225, 48.8623163 2.3093585, 48.8400915 2.3026528, 48.8473631 2.2860341, 48.8734806 2.3430215, 48.8708629 2.3427230, 48.8707564 2.3426660, 48.8836015 2.3202065, 48.8795130 2.3360991, 48.8322089 2.3384309, 48.8409004 2.3218248, 48.8325523 2.3205074, 48.8327672 2.3201392, 48.8311012 2.3195882, 48.8320470 2.3201850, 48.8826800 2.2865110, 48.8361138 2.2912062, 48.8372803 2.2893133, 48.8502351 2.3456241, 48.8864590 2.3404788, 48.8527246 2.3060632, 48.8846800 2.3291860, 48.8819840 2.3187180, 48.8819360 2.3185630, 48.8816120 2.3160090, 48.8822902 2.3395019, 48.8310513 2.3195553, 48.8325941 2.3183175, 48.8543921 2.3426853, 48.8628419 2.3413590, 48.8627761 2.3414067, 48.8753498 2.3460798, 48.8752300 2.3455656, 48.8588998 2.2853182, 48.8659100 2.3367259, 48.8324657 2.3375075, 48.8439086 2.2933248, 48.8522615 2.3461534, 48.8522996 2.3459479, 48.8920550 2.3461008, 48.8786060 2.2895840, 48.8785190 2.2893290, 48.8649741 2.3359158, 48.8752070 2.3041468, 48.8328552 2.3251354, 48.8581328 2.2944968, 48.8556111 2.3402066, 48.8477523 2.3131717, 48.8476019 2.3124307, 48.8768192 2.2635389, 48.8442862 2.3237918, 48.8443083 2.3239728, 48.8728789 2.3289009, 48.8721402 2.3254288, 48.8721670 2.3253311, 48.8721199 2.3255281, 48.8467371 2.3102329, 48.8744634 2.3207611, 48.8758392 2.3442908, 48.8435005 2.2942188, 48.8436406 2.2945169, 48.8436647 2.2952514, 48.8436712 2.2953928, 48.8517000 2.3431200, 48.8425000 2.3216700, 48.8722000 2.3397200, 48.8369503 2.2962225, 48.8414376 2.3081178, 48.8422788 2.3101359, 48.8425076 2.3118940, 48.8365104 2.3100891, 48.8341782 2.3066372, 48.8354947 2.3020460, 48.8599164 2.3463862, 48.8490626 2.3191414, 48.8501266 2.3186024, 48.8501791 2.3187017, 48.8534957 2.3378664, 48.8465511 2.3138238, 48.8689558 2.3348921, 48.8759088 2.3029263, 48.8321324 2.3033719, 48.8615808 2.3421921, 48.8741075 2.3445446, 48.8831840 2.2988520, 48.8822700 2.2945370, 48.8822490 2.2942850, 48.8821450 2.2944460, 48.8628461 2.3362666, 48.8378987 2.3453148, 48.8440980 2.3080783, 48.8780160 2.2938546, 48.8809048 2.3467209, 48.8708703 2.3415985, 48.8705728 2.3415832, 48.8711859 2.3417171, 48.8709869 2.3416777, 48.8654352 2.3322141, 48.8819434 2.2862186, 48.8483086 2.2872193, 48.8487087 2.3407361, 48.8527859 2.3429879, 48.8527860 2.3433192, 48.8416188 2.2808890, 48.8529099 2.2868719, 48.8621731 2.3396914, 48.8675585 2.3352443, 48.8679678 2.3355626, 48.8678404 2.3435108, 48.8666855 2.3458176, 48.8667840 2.3448980, 48.8540956 2.3386733, 48.8692220 2.3131336, 48.8679417 2.3153003, 48.8718575 2.3096862, 48.8745552 2.3434968, 48.8775832 2.3381108, 48.8791560 2.3349351, 48.8786912 2.3329642, 48.8464207 2.3056421, 48.8916829 2.3361699, 48.8916676 2.3364729, 48.8294977 2.3226115, 48.8315293 2.3138951, 48.8222354 2.3405407, 48.8430967 2.3047973, 48.8417016 2.3220312, 48.8750787 2.2865522, 48.8761844 2.2731721, 48.8769614 2.2666348, 48.8787683 2.2627725, 48.8639756 2.2506990, 48.8775380 2.2845027, 48.8783349 2.2845148, 48.8660959 2.3165080, 48.8451240 2.3151945, 48.8853349 2.3222678, 48.8632940 2.3461861, 48.8279032 2.3155377, 48.8787317 2.3451434, 48.8648781 2.3453619, 48.8527947 2.3434202, 48.8311227 2.3287719, 48.8772523 2.3138827, 48.8813196 2.2935688, 48.8421950 2.3453702, 48.8782894 2.3331903, 48.8584113 2.2942650, 48.8664194 2.3321315 +yes +49.4194835 8.7033812, 49.4258222 8.7062319, 49.3551484 8.6336513, 49.4270542 8.7105990, 49.4184666 8.7052069, 49.4245168 8.7056416, 49.4235710 8.7025718, 49.4242799 8.7072520, 49.4224817 8.7024542, 49.4229479 8.7068545, 49.4193290 8.7035781, 49.4221380 8.7051571, 49.4263381 8.7055314, 49.4188706 8.7007961, 49.4276600 8.7101416, 49.4243184 8.7025688, 49.4189138 8.7068425, 49.4254814 8.7024102, 49.4213140 8.7019771, 49.4268509 8.7026924, 49.4254256 8.7051858, 49.4195009 8.7025277, 49.4201952 8.7010712, 49.4208217 8.7059731, 49.4233178 8.7053934, 49.4276906 8.7058352, 49.4238991 8.7095045, 49.4206459 8.7039110, 49.4265814 8.7086544, 49.4256259 8.7093622, 49.4257275 8.7070484, 49.4179403 8.7025717, 49.4207145 8.7089359, 49.4222472 8.7095805, 49.4248984 8.7025175 +Greyfriars Bobby's Grave, Memorial to Archibald Constable, Tombstone of David Allan, Vault of Dr Robert Candlish & James Candlish, Vault of Robert Burn, Vault of William Blackwood, Mausoleum of David Hume +1 +11 +55.9370725 -3.1787027, 55.9414545 -3.1720821, 55.9432488 -3.1817167, 55.9433939 -3.2029381, 55.9257567 -3.1931161, 55.9427756 -3.2095329, 55.9399781 -3.1828303, 55.9449491 -3.2071792, 55.9348092 -3.1789961, 55.9349346 -3.1790559, 55.9622932 -3.1707938, 55.9630455 -3.1835492, 55.9567935 -3.2430161, 55.9021076 -3.2215942, 55.9022196 -3.2209447, 55.9077375 -3.2604776, 55.9180753 -3.2699896, 55.9181751 -3.2737253, 55.9227143 -3.2873995, 55.9232575 -3.2877434, 55.9220870 -3.2792486, 55.9406104 -3.2945168, 55.9407533 -3.2932091, 55.9248270 -3.2482652, 55.9419600 -3.1485908, 55.9697725 -3.2317281, 55.9561550 -3.2435210, 55.9506326 -3.2083291, 55.9268506 -3.2089249, 55.9399419 -3.2040169, 55.9286779 -3.2096502, 55.9384391 -3.1976620, 55.9428730 -3.2038870, 55.9436791 -3.2039270, 55.9456114 -3.2058148, 55.9475295 -3.2065018, 55.9465039 -3.2061410, 55.9180713 -3.2162143, 55.9469750 -3.2823851, 55.9752131 -3.2377092, 55.9412502 -3.2182349, 55.9536786 -3.1901284, 55.9721209 -3.2298890, 55.9725068 -3.2186854, 55.9714321 -3.2145097, 55.9750719 -3.2156771, 55.9423554 -3.2011712, 55.9579671 -3.2416031, 55.9605521 -3.2145819, 55.9788578 -3.2164996, 55.9805715 -3.2239822, 55.9748673 -3.2157799, 55.9709217 -3.2085540, 55.9708138 -3.2084404, 55.9710794 -3.2083765, 55.9713224 -3.2074276, 55.9720450 -3.2023900, 55.9584008 -3.2092092, 55.9583145 -3.2090917, 55.9583533 -3.2082826, 55.9599202 -3.2058111, 55.9625886 -3.2112449, 55.9611686 -3.2084707, 55.9692647 -3.2701308, 55.9723825 -3.2717913, 55.9781491 -3.1930844, 55.9776175 -3.1973875, 55.9745345 -3.2095961, 55.9743932 -3.2096208, 55.9373031 -3.2494985, 55.9339171 -3.2137397, 55.9332526 -3.2167437, 55.9315955 -3.2232342, 55.9593096 -3.2186115, 55.9599432 -3.2183810, 55.9602435 -3.2197972, 55.9347916 -3.2219988, 55.9354958 -3.2269302, 55.9353315 -3.2267979, 55.9603138 -3.2576811, 55.9601757 -3.2559248, 55.9602463 -3.2561123, 55.9618697 -3.2638458, 55.9650659 -3.2695228, 55.9335740 -3.2140903, 55.9312309 -3.2523089, 55.9313511 -3.2524977, 55.9215923 -3.2427384, 55.9658660 -3.2741484, 55.9655574 -3.2737818, 55.9112968 -3.2371472, 55.9094685 -3.2331911, 55.9419788 -3.2729754, 55.9162817 -3.2253414, 55.9166163 -3.2225162, 55.9666338 -3.2511512, 55.9670315 -3.2477797, 55.9685007 -3.2487746, 55.9673162 -3.2494453, 55.9735787 -3.2512113, 55.9702624 -3.2503620, 55.9705786 -3.2518119, 55.9512778 -3.2161791, 55.9485764 -3.2236821, 55.9494426 -3.2166063, 55.9482651 -3.2171420, 55.9631351 -3.1914610, 55.9591074 -3.1908331, 55.9452751 -3.1844506, 55.9602556 -3.2380057, 55.9579565 -3.2439627, 55.9569762 -3.2432682, 55.9701877 -3.2307841, 55.9461347 -3.1884249, 55.9452785 -3.1910772, 55.9432977 -3.1864231, 55.9359281 -3.1875240, 55.9364668 -3.1651525, 55.9364818 -3.1700073, 55.9324348 -3.1563455, 55.9399085 -3.1711268, 55.9335343 -3.1615090, 55.9349176 -3.1600569, 55.9513129 -3.2052029, 55.9514512 -3.2053004, 55.9515016 -3.2049952, 55.9515296 -3.2039328, 55.9516706 -3.2039712, 55.9515783 -3.2036294, 55.9517885 -3.2022759, 55.9520416 -3.2017312, 55.9522669 -3.1993674, 55.9525442 -3.1989321, 55.9526722 -3.1981185, 55.9529694 -3.1964423, 55.9474486 -3.1859655, 55.9516586 -3.1968492, 55.9547783 -3.1976132, 55.9512066 -3.1850870, 55.9407230 -3.2810409, 55.9247069 -3.2095298, 55.9203574 -3.2123548, 55.9264736 -3.2039958, 55.9312196 -3.2000742, 55.9458585 -3.2094714, 55.9301196 -3.2055744, 55.9377907 -3.2060971, 55.9406318 -3.2038250, 55.9318987 -3.2098845, 55.9191421 -3.2209703, 55.9460031 -3.2110371, 55.9337210 -3.2007781, 55.9356258 -3.2013792, 55.9384127 -3.1976645, 55.9538198 -3.1905058, 55.9589777 -3.1971201, 55.9509639 -3.1815835, 55.9497063 -3.1833447, 55.9497528 -3.1798460, 55.9516637 -3.1783365, 55.9511924 -3.1760524, 55.9388593 -3.2287258, 55.9435848 -3.2191643, 55.9374270 -3.2345667, 55.9436381 -3.2320485, 55.9297115 -3.2566004, 55.9402802 -3.1759925, 55.9433280 -3.2852559, 55.9429898 -3.2899406, 55.9423831 -3.1450493, 55.9243150 -3.1675957, 55.9418747 -3.2730577, 55.9459241 -3.1820458, 55.9469320 -3.1819210, 55.9424010 -3.2799000, 55.9428090 -3.2846964, 55.9426238 -3.2800495, 55.9426432 -3.2801965, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9570161 -3.1870662, 55.9562790 -3.1859531, 55.9073786 -3.2585910, 55.9537826 -3.1827355, 55.9380641 -3.1929287, 55.9264851 -3.2095157, 55.9278181 -3.2094892, 55.9479184 -3.1866886, 55.9195362 -3.2408105, 55.9567725 -3.2185204, 55.9334208 -3.2296729, 55.9511981 -3.2192192, 55.9111428 -3.2387431, 55.9427311 -3.1824789, 55.9572495 -3.2067946, 55.9563941 -3.2111307, 55.9555277 -3.2092895, 55.9552324 -3.2130998, 55.9552081 -3.2164889, 55.9553747 -3.2203225, 55.9539242 -3.1943502, 55.9573849 -3.2140508, 55.9531165 -3.2090593, 55.9073652 -3.2588812, 55.9659202 -3.1554650, 55.9654174 -3.1551373, 55.9643410 -3.1548837, 55.9268205 -3.2444313, 55.9397496 -3.2204248, 55.9429175 -3.2108607, 55.9430078 -3.2108682, 55.9455180 -3.2068971, 55.9458432 -3.1911825, 55.9498009 -3.1875437, 55.9498298 -3.1876708, 55.9497004 -3.1878147, 55.9500525 -3.1873006, 55.9546221 -3.1877189, 55.9558479 -3.1868996, 55.9589756 -3.1545086, 55.9574015 -3.1611745, 55.9682325 -3.1530713, 55.9758399 -3.1698851, 55.9591640 -3.1832180, 55.9385133 -3.1977770, 55.9531081 -3.2008271, 55.9335642 -3.2450433, 55.9480679 -3.1861969, 55.9427330 -3.1878978, 55.9528642 -3.2264190, 55.9619035 -3.1442333, 55.9643648 -3.2331575, 55.9299818 -3.2625728, 55.9411797 -3.2700165, 55.9411930 -3.2700299, 55.9595427 -3.1717138, 55.9308388 -3.1901371, 55.9385382 -3.2105120, 55.9372948 -3.2172890, 55.9397279 -3.2201814, 55.9434746 -3.1803127, 55.9259159 -3.2475077, 55.9380028 -3.2917178, 55.9395343 -3.2706851, 55.9551815 -3.1828752, 55.9532891 -3.1942347, 55.9528215 -3.1966476, 55.9577481 -3.1745891, 55.9523152 -3.1996825, 55.9512080 -3.2029850, 55.9505306 -3.2060289, 55.9360698 -3.1801396, 55.9431462 -3.2098500, 55.9424957 -3.2178326, 55.9430404 -3.2209823, 55.9431450 -3.1777930, 55.9473014 -3.2066559, 55.9382479 -3.2288358, 55.9493199 -3.2107221, 55.9371375 -3.2021480, 55.9416831 -3.1813332, 55.9399477 -3.1799875, 55.9400554 -3.1800410, 55.9383873 -3.1947438, 55.9381286 -3.1934756, 55.9532580 -3.2007176, 55.9574289 -3.1707713, 55.9498239 -3.1879473, 55.9457420 -3.2062080, 55.9361540 -3.2091272, 55.9367921 -3.2080082, 55.9519655 -3.2019557, 55.9456455 -3.2052495, 55.9420725 -3.2685561, 55.9526727 -3.1905474, 55.9499553 -3.1886925, 55.9483500 -3.1918487, 55.9534890 -3.1892336, 55.9564328 -3.1863322, 55.9462158 -3.1854968, 55.9448431 -3.2048049, 55.9426898 -3.2037234, 55.9472487 -3.1909778, 55.9475118 -3.1893161, 55.9479802 -3.1868691, 55.9462178 -3.1884860, 55.9445944 -3.1837358, 55.9447090 -3.1838238, 55.9483392 -3.1987455, 55.9390205 -3.1796146, 55.9391727 -3.1798248, 55.9426063 -3.2085087, 55.9544772 -3.1926810, 55.9537095 -3.2040057, 55.9533620 -3.1976100, 55.9663235 -3.2142041, 55.9684282 -3.2075755, 55.9700556 -3.2078189, 55.9666343 -3.2256933, 55.9645546 -3.2384622, 55.9566631 -3.1959622, 55.9597916 -3.2004518, 55.9383859 -3.2394291, 55.9431070 -3.2222310, 55.9752750 -3.2542425, 55.9791698 -3.2312965, 55.9363180 -3.1961219, 55.9532515 -3.2795094, 55.9393878 -3.1872654, 55.9398905 -3.1798723, 55.9450251 -3.2048945, 55.9112029 -3.2297595, 55.9382045 -3.1790187, 55.9393085 -3.1795319, 55.9299097 -3.2092576, 55.9362743 -3.1942603, 55.9364425 -3.1941118, 55.9364298 -3.1945475, 55.9363223 -3.1940133, 55.9381921 -3.1929355, 55.9380470 -3.1915010, 55.9539102 -3.1944653, 55.9549825 -3.1926968, 55.9554031 -3.1946708, 55.9531123 -3.1913868, 55.9447005 -3.1877270, 55.9428356 -3.1884222, 55.9454993 -3.1874399, 55.9457618 -3.1854245, 55.9459188 -3.1884045, 55.9380581 -3.1934656, 55.9350171 -3.1942941, 55.9486960 -3.2853143, 55.9721574 -3.2632148, 55.9713670 -3.2529113, 55.9292251 -3.2099432, 55.9780196 -3.1734148, 55.9388513 -3.1691562, 55.9341605 -3.2104863, 55.9345768 -3.2003903, 55.9343790 -3.2006003, 55.9533080 -3.2819089, 55.9454998 -3.1881337, 55.9450783 -3.1887212, 55.9501390 -3.1751181, 55.9297109 -3.2086926, 55.9489520 -3.1813494, 55.9210967 -3.2266715, 55.9410406 -3.2238628, 55.9536712 -3.2193907, 55.9487114 -3.2851366, 55.9487753 -3.2841900, 55.9480103 -3.1837600, 55.9486091 -3.1831054, 55.9381703 -3.1892079, 55.9487321 -3.2833922, 55.9382556 -3.1704864, 55.9404236 -3.1696109, 55.9532940 -3.2961037, 55.9534451 -3.2962393, 55.9533899 -3.2966759, 55.9482056 -3.2747143, 55.9517036 -3.1735044, 55.9455830 -3.1876260, 55.9444953 -3.1872925, 55.9576902 -3.1997993, 55.9604265 -3.2008450, 55.9591476 -3.1949181, 55.9605294 -3.1929284, 55.9605737 -3.1931385, 55.9618144 -3.1951211, 55.9620863 -3.1958474, 55.9655017 -3.1900188, 55.9614827 -3.1898206, 55.9606405 -3.1834192, 55.9616053 -3.1809060, 55.9595023 -3.1900105, 55.9586110 -3.1856655, 55.9574763 -3.2071208, 55.9574011 -3.1728671, 55.9331306 -3.2291951, 55.9357602 -3.2102116, 55.9274398 -3.1872913, 55.9259230 -3.1834543, 55.9269210 -3.1867212, 55.9053438 -3.2494235, 55.9085287 -3.2095473, 55.9085331 -3.2094328, 55.9086734 -3.2091995, 55.9673609 -3.1800262, 55.9434453 -3.2029283, 55.9457242 -3.1982021, 55.9261467 -3.1629216, 55.9297559 -3.1757555, 55.9305265 -3.1760973, 55.9346360 -3.1418499, 55.9311887 -3.1461734, 55.9226046 -3.1871043, 55.9331970 -3.1413489, 55.9339659 -3.1780885, 55.9275329 -3.1935001, 55.9296041 -3.1758152, 55.9368184 -3.1806262, 55.9344345 -3.1791228, 55.9500367 -3.1401579, 55.9239989 -3.2365090, 55.9527511 -3.2060102, 55.9529618 -3.2047389, 55.9244068 -3.1757094, 55.9339861 -3.1786923, 55.9333887 -3.1798510, 55.9332026 -3.1779389, 55.9340894 -3.1466704, 55.9366417 -3.1570870, 55.9590460 -3.1902971, 55.9563500 -3.1719910, 55.9418780 -3.1484383, 55.9195933 -3.2025852, 55.9421150 -3.1792210, 55.9136110 -3.2108341, 55.9710589 -3.2774742, 55.9691806 -3.2021849, 55.9648549 -3.2026261, 55.9666311 -3.1963169, 55.9683710 -3.1956001, 55.9656770 -3.2034341, 55.9635684 -3.1844376, 55.9611876 -3.1811782, 55.9609569 -3.1808567, 55.9611193 -3.1807997, 55.9630757 -3.1816529, 55.9638228 -3.1780594, 55.9708598 -3.1795095, 55.9706228 -3.1795532, 55.9695540 -3.1814748, 55.9012867 -3.2047186, 55.9384134 -3.2182308, 55.9440892 -3.1808402, 55.9496694 -3.1834699, 55.9553422 -3.1896083, 55.9692963 -3.1850261, 55.9729056 -3.1882143, 55.9733698 -3.1917230, 55.9714470 -3.1982719, 55.9725476 -3.1752271, 55.9699868 -3.1737761, 55.9701973 -3.1739279, 55.9702141 -3.1720887, 55.9436788 -3.1917939, 55.9446070 -3.1860121, 55.9445684 -3.1859605, 55.9444906 -3.1858127, 55.9444257 -3.1854362, 55.9445478 -3.1851541, 55.9440818 -3.1852249, 55.9429435 -3.1846838, 55.9457451 -3.1898138, 55.9471305 -3.1857683, 55.9421441 -3.1839083, 55.9427088 -3.1845678, 55.9381612 -3.2182135, 55.9390679 -3.2188177, 55.9389940 -3.2237242, 55.9403080 -3.2179616, 55.9407101 -3.2180407, 55.9407057 -3.2099923, 55.9357656 -3.2102949, 55.9358639 -3.2091972, 55.9375205 -3.2172003, 55.9357905 -3.2212622, 55.9634754 -3.1970678, 55.9349872 -3.1934110, 55.9351614 -3.1931190, 55.9364906 -3.1946961, 55.9382472 -3.1928568, 55.9385499 -3.1951862, 55.9350686 -3.1943883, 55.9368505 -3.2110421, 55.9737204 -3.1771872, 55.9751035 -3.1815988, 55.9746746 -3.1826198, 55.9742114 -3.1859467, 55.9744484 -3.1849018, 55.9532918 -3.2008836, 55.9540937 -3.1989693, 55.9450275 -3.1853002, 55.9434584 -3.2046928, 55.9458479 -3.1861307, 55.9458249 -3.1868180, 55.9112630 -3.2382716, 55.9515330 -3.2004872, 55.9209990 -3.2014676, 55.9205456 -3.2064439, 55.9417690 -3.1765600, 55.9361114 -3.1942444, 55.9343386 -3.2056340, 55.9388322 -3.2261760, 55.9136261 -3.2390645, 55.9633657 -3.2006587, 55.9478972 -3.1859639, 55.9359156 -3.2099930, 55.9359074 -3.2099082, 55.9360866 -3.2087667, 55.9395675 -3.2038566, 55.9355709 -3.2102528, 55.9608923 -3.1970860, 55.9523210 -3.1965000, 55.9533496 -3.2007320, 55.9533815 -3.2007538, 55.9534180 -3.2007700, 55.9534497 -3.2007968, 55.9571867 -3.1639997, 55.9594665 -3.1504625, 55.9626310 -3.1593558, 55.9754036 -3.1792572, 55.9780588 -3.1803331, 55.9781026 -3.1779536, 55.9779864 -3.1732444, 55.9779219 -3.1732147, 55.9779507 -3.1735468, 55.9780888 -3.1742385, 55.9781653 -3.1742810, 55.9781945 -3.1744492, 55.9781519 -3.1745615, 55.9775259 -3.1713912, 55.9767032 -3.1714682, 55.9765056 -3.1715396, 55.9761405 -3.1695398, 55.9657634 -3.1762911, 55.9648030 -3.1769642, 55.9618573 -3.1797874, 55.9614066 -3.1810341, 55.9740136 -3.1728670, 55.9746059 -3.1755220, 55.9765876 -3.1717666, 55.9770245 -3.1795732, 55.9711396 -3.1709394, 55.9736951 -3.1710231, 55.9754491 -3.1672838, 55.9754859 -3.1673643, 55.9754690 -3.1675529, 55.9405419 -3.1809535, 55.9814339 -3.1885738, 55.9753390 -3.1704024, 55.9477999 -3.1815633, 55.9449036 -3.1886208, 55.9442459 -3.2019494, 55.9225931 -3.2163218, 55.9248774 -3.2169826, 55.9250231 -3.2098652, 55.9250486 -3.2099576, 55.9251419 -3.2106483, 55.9695187 -3.2703166, 55.9657818 -3.2742187, 55.9653783 -3.2708713, 55.9654792 -3.2690775, 55.9340842 -3.2110851, 55.9641877 -3.1933778, 55.9382377 -3.2261976, 55.9389908 -3.2261674, 55.9345763 -3.2251873, 55.9344088 -3.2279579, 55.9347308 -3.2212368, 55.9348452 -3.2317221, 55.9330967 -3.2291489, 55.9394219 -3.2263258, 55.9387429 -3.2218412, 55.9373499 -3.2350180, 55.9382017 -3.2313956, 55.9367034 -3.2391033, 55.9389001 -3.2286457, 55.9386142 -3.2289755, 55.9386065 -3.2302193, 55.9391016 -3.2261638, 55.9417361 -3.2032072, 55.9375461 -3.2171038, 55.9399098 -3.2190933, 55.9395567 -3.2208158, 55.9395988 -3.2206602, 55.9396213 -3.2205677, 55.9339775 -3.2336775, 55.9318108 -3.2374274, 55.9333493 -3.2349297, 55.9332532 -3.2351100, 55.9330858 -3.2353616, 55.9324660 -3.2361808, 55.9459457 -3.2032414, 55.9466240 -3.1985887, 55.9465706 -3.1982507, 55.9459092 -3.2020239, 55.9481856 -3.1916083, 55.9481951 -3.1915223, 55.9482640 -3.1901285, 55.9262985 -3.2466715, 55.9286545 -3.1995671, 55.9282620 -3.2003920, 55.9288803 -3.1997107, 55.9282699 -3.1971794, 55.9300538 -3.2006041, 55.9291787 -3.1994540, 55.9270985 -3.2345448, 55.9262193 -3.2367397, 55.9257251 -3.2379807, 55.9445243 -3.1835902, 55.9425318 -3.1745423, 55.9446453 -3.1860635, 55.9445252 -3.1859176, 55.9600988 -3.2301499, 55.9480518 -3.1863033, 55.9480977 -3.1860003, 55.9471995 -3.1855061, 55.9470671 -3.1857568, 55.9468154 -3.1855780, 55.9461648 -3.1859720, 55.9459925 -3.1848262, 55.9462878 -3.1850892, 55.9459437 -3.1863927, 55.9456190 -3.1849011, 55.9440261 -3.1820823, 55.9440689 -3.1919649, 55.9444789 -3.1879512, 55.9406312 -3.2039275, 55.9409069 -3.2033041, 55.9402760 -3.2038110, 55.9372309 -3.2071189, 55.9375368 -3.2027382, 55.9361178 -3.2094100, 55.9334822 -3.1884629, 55.9575618 -3.1847902, 55.9491314 -3.1876537, 55.9757878 -3.2301721, 55.9621811 -3.2003284, 55.9526181 -3.1750774, 55.9471770 -3.1904575, 55.9254145 -3.2090883, 55.9764403 -3.1701500, 55.9504129 -3.2949801, 55.9601603 -3.2006854, 55.9299490 -3.2096090, 55.9592433 -3.2230171, 55.9481079 -3.1917724, 55.9808227 -3.2245927, 55.9479318 -3.1942157, 55.9166326 -3.2276420, 55.9467615 -3.2168254, 55.9524553 -3.1968363, 55.9501797 -3.1870275, 55.9428645 -3.2037697, 55.9484729 -3.1956543, 55.9478512 -3.2019348, 55.9452311 -3.1921670, 55.9449743 -3.1941250, 55.9701331 -3.1723584, 55.9411858 -3.2034013, 55.9558388 -3.1571446, 55.9250843 -3.2616025, 55.9473220 -3.2061120, 55.9382464 -3.1945920, 55.9356972 -3.2104575, 55.9457633 -3.2087758, 55.9458777 -3.2095906, 55.9466672 -3.2371272, 55.9308474 -3.2091419, 55.9461542 -3.1854391, 55.9057145 -3.2240658, 55.9618487 -3.1523081, 55.9499509 -3.2074622, 55.9379652 -3.1900697, 55.9487732 -3.1929905, 55.9724535 -3.2516505, 55.9311441 -3.2270782, 55.9319054 -3.2265205, 55.9323774 -3.2261777, 55.9327304 -3.2258543, 55.9330657 -3.2255356, 55.9251049 -3.2386756, 55.9434664 -3.1831055, 55.9434196 -3.1842460, 55.9390954 -3.1817053, 55.9425019 -3.1793852, 55.9406973 -3.1812038, 55.9434738 -3.2972773, 55.9434281 -3.1802599, 55.9447981 -3.1837792, 55.9336355 -3.2249068, 55.9341147 -3.2243301, 55.9241751 -3.2482578, 55.9426048 -3.1828681, 55.9536926 -3.2888163, 55.9338854 -3.2269959, 55.9288531 -3.2399727, 55.9444072 -3.1838777, 55.9388114 -3.2234850, 55.9434539 -3.1782183, 55.9438954 -3.1837198, 55.9432514 -3.2138686, 55.9434340 -3.2137230, 55.9448603 -3.1813584, 55.9774101 -3.1718543, 55.9628304 -3.1997070, 55.9628429 -3.2002421, 55.9630892 -3.2001803, 55.9659295 -3.2301633, 55.9664006 -3.2307336, 55.9679166 -3.2363594, 55.9434363 -3.1521617, 55.9457918 -3.1542034, 55.9475269 -3.1955313, 55.9478247 -3.1945545, 55.9479312 -3.1940298, 55.9488004 -3.1932865, 55.9488010 -3.1925834, 55.9494649 -3.1929782, 55.9494705 -3.1929503, 55.9506580 -3.1906398, 55.9499136 -3.1881658, 55.9532557 -3.1913082, 55.9626190 -3.2334642, 55.9619050 -3.2336519, 55.9615242 -3.2324707, 55.9625619 -3.2342817, 55.9625158 -3.2364890, 55.9619662 -3.2352523, 55.9488780 -3.1775878, 55.9475233 -3.1771707, 55.9705235 -3.2271545, 55.9580210 -3.2034978, 55.9405358 -3.2135323, 55.9415231 -3.2036653, 55.9424521 -3.1962323, 55.9424840 -3.1951526, 55.9426105 -3.1916905, 55.9423275 -3.1905258, 55.9422606 -3.1903187, 55.9418231 -3.1888920, 55.9413668 -3.1874191, 55.9411227 -3.1866614, 55.9410184 -3.1862592, 55.9409790 -3.1861376, 55.9465927 -3.1540114, 55.9470254 -3.1527259, 55.9478310 -3.1503864, 55.9488598 -3.1502689, 55.9496873 -3.1503116, 55.9500881 -3.1504469, 55.9505028 -3.1505858, 55.9538371 -3.1558978, 55.9416410 -3.1851981, 55.9420495 -3.1869416, 55.9421295 -3.1882490, 55.9382190 -3.1871150, 55.9501234 -3.2328720, 55.9500080 -3.2339019, 55.9553798 -3.1839728, 55.9551974 -3.1827848, 55.9541875 -3.1811831, 55.9542356 -3.1810732, 55.9542606 -3.1809036, 55.9540838 -3.1802470, 55.9515361 -3.1795713, 55.9515664 -3.1795081, 55.9515868 -3.1794043, 55.9515835 -3.1793356, 55.9503936 -3.1748495, 55.9624109 -3.2365738, 55.9629813 -3.2350949, 55.9619272 -3.2334212, 55.9465695 -3.1854535, 55.9460079 -3.1882051, 55.9274462 -3.2455645, 55.9566494 -3.1736928, 55.9562339 -3.1688603, 55.9339947 -3.2249266, 55.9344540 -3.2253532, 55.9346173 -3.2256117, 55.9342050 -3.2249326, 55.9343823 -3.2251693, 55.9196760 -3.2531202, 55.9196920 -3.2531744, 55.9226241 -3.2478361, 55.9236556 -3.2387809, 55.9267409 -3.2326273, 55.9279667 -3.2297308, 55.9408870 -3.2213705, 55.9408825 -3.2212995, 55.9408772 -3.2212176, 55.9408720 -3.2211546, 55.9188986 -3.2541216, 55.9265907 -3.2093624, 55.9295664 -3.1853673, 55.9329497 -3.1704352, 55.9371619 -3.1744741, 55.9353301 -3.1943090, 55.9386958 -3.1915143, 55.9390294 -3.1890609, 55.9379382 -3.1857984, 55.9340733 -3.1747120, 55.9613541 -3.2933788, 55.9481529 -3.1885730, 55.9515573 -3.1786333, 55.9284825 -3.2096589, 55.9461803 -3.2070135, 55.9481922 -3.1962833, 55.9481940 -3.1962668, 55.9502196 -3.2294226, 55.9502091 -3.2295031, 55.9453045 -3.2316341, 55.9395209 -3.1619598, 55.9417387 -3.1502308, 55.9413643 -3.1486408, 55.9398207 -3.1647960, 55.9322747 -3.2098231, 55.9405698 -3.1948224, 55.9322155 -3.2098211, 55.9337387 -3.2104313, 55.9356956 -3.2096210, 55.9342480 -3.2099670, 55.9250348 -3.2099016, 55.9556996 -3.1881309, 55.9500635 -3.1892496, 55.9288850 -3.2096120, 55.9415942 -3.1500219, 55.9415320 -3.1500182, 55.9414780 -3.1500392, 55.9268034 -3.2091405, 55.9534622 -3.1963003, 55.9392681 -3.1916690, 55.9599520 -3.1873930, 55.9476467 -3.2048254, 55.9476016 -3.2046699, 55.9385215 -3.1946814, 55.9619780 -3.1678642, 55.9518983 -3.2239071, 55.9509290 -3.2278430, 55.9511210 -3.2277490, 55.9248694 -3.2515324, 55.9152586 -3.2496769, 55.9810888 -3.1948604, 55.9813469 -3.1948497, 55.9802041 -3.1978016, 55.9759864 -3.1734500, 55.9798126 -3.1895152, 55.9795875 -3.1875878, 55.9789603 -3.1865433, 55.9807177 -3.1950262, 55.9451951 -3.1837450, 55.9774474 -3.1689618, 55.9775639 -3.1689368, 55.9763814 -3.1707551, 55.9764475 -3.1716495, 55.9610381 -3.1807131, 55.9760230 -3.1696703, 55.9764292 -3.1693439, 55.9744390 -3.1724043, 55.9770082 -3.1723631, 55.9806635 -3.1777421, 55.9771560 -3.1735460, 55.9771245 -3.1733636, 55.9825548 -3.1951570, 55.9682208 -3.1678522, 55.9770419 -3.1725751, 55.9770800 -3.1727697, 55.9771339 -3.1730719, 55.9757237 -3.1680744, 55.9767011 -3.1697310, 55.9768212 -3.1696962, 55.9764155 -3.1709357, 55.9696870 -3.1601851, 55.9752829 -3.1671784, 55.9746544 -3.1708033, 55.9754457 -3.1703672, 55.9761159 -3.1686683, 55.9748068 -3.1719428, 55.9764963 -3.1714060, 55.9746156 -3.1675124, 55.9748242 -3.1673277, 55.9748577 -3.1715255, 55.9612898 -3.1713969, 55.9690959 -3.1845578, 55.9651753 -3.1899997, 55.9801324 -3.1928179, 55.9477632 -3.2035527, 55.9734916 -3.1731211, 55.9734370 -3.1678545, 55.9766362 -3.1692569, 55.9736688 -3.1675716, 55.9781324 -3.1931769, 55.9821090 -3.1943241, 55.9753398 -3.1672928, 55.9689301 -3.1680431, 55.9612706 -3.2423315, 55.9745822 -3.1606973, 55.9587858 -3.2096834, 55.9589500 -3.2099661, 55.9581960 -3.2080531, 55.9581662 -3.2088898, 55.9584860 -3.2082072, 55.9589789 -3.2101654, 55.9579590 -3.2062075, 55.9585295 -3.2049192, 55.9561318 -3.2024897, 55.9607377 -3.1996416, 55.9607716 -3.1994845, 55.9623588 -3.1972207, 55.9625337 -3.1963070, 55.9642406 -3.1930473, 55.9726865 -3.1759133, 55.9731405 -3.1755422, 55.9636428 -3.1765263, 55.9366534 -3.2383328, 55.9366188 -3.2384622, 55.9366902 -3.2381919, 55.9747144 -3.1719088, 55.9743443 -3.1729943, 55.9750359 -3.1717187, 55.9755525 -3.1702383, 55.9738614 -3.1646538, 55.9740422 -3.1659303, 55.9741812 -3.1661010, 55.9742569 -3.1663486, 55.9752315 -3.1658012, 55.9751522 -3.1648119, 55.9763107 -3.1693903, 55.9763771 -3.1661542, 55.9753270 -3.1646507, 55.9747307 -3.1636460, 55.9744303 -3.1776966, 55.9771733 -3.1795355, 55.9771268 -3.1778690, 55.9775207 -3.1788650, 55.9760995 -3.1730677, 55.9762199 -3.1723018, 55.9771770 -3.1718400, 55.9731723 -3.1754517, 55.9773363 -3.1760364, 55.9609375 -3.1808473, 55.9605906 -3.1808776, 55.9592564 -3.1803344, 55.9592747 -3.1800604, 55.9595776 -3.1788148, 55.9594792 -3.1784829, 55.9593617 -3.1781813, 55.9592892 -3.1764609, 55.9591242 -3.1753106, 55.9624799 -3.1788559, 55.9640287 -3.1778115, 55.9635625 -3.1776653, 55.9589434 -3.1740590, 55.9596265 -3.1729451, 55.9605538 -3.1725333, 55.9655868 -3.1763270, 55.9652947 -3.1767059, 55.9666861 -3.1748416, 55.9665208 -3.1750073, 55.9643379 -3.1706905, 55.9657604 -3.1703822, 55.9674237 -3.1748024, 55.9690233 -3.1728199, 55.9690950 -3.1689790, 55.9723853 -3.1732016, 55.9723305 -3.1731044, 55.9721688 -3.1727029, 55.9702845 -3.1717442, 55.9702545 -3.1718515, 55.9699428 -3.1720727, 55.9698245 -3.1721960, 55.9708328 -3.1699423, 55.9711233 -3.1703563, 55.9737281 -3.1686016, 55.9734119 -3.1676688, 55.9714801 -3.1615916, 55.9473560 -3.1862560, 55.9472450 -3.1859400, 55.9471464 -3.1859252, 55.9532957 -3.1984157, 55.9545214 -3.1981041, 55.9542551 -3.1979757, 55.9695565 -3.1832256, 55.9714796 -3.1776354, 55.9723593 -3.1759903, 55.9727023 -3.1754426, 55.9336099 -3.2286410, 55.9447520 -3.1840600, 55.9797812 -3.1890945, 55.9790159 -3.1841078, 55.9705925 -3.1711804, 55.9645394 -3.2127643, 55.9777755 -3.2433672, 55.9760698 -3.1951310, 55.9581445 -3.2872164, 55.9744918 -3.1857029, 55.9746016 -3.1849846, 55.9784826 -3.2320600, 55.9789817 -3.2315749, 55.9787948 -3.2321459, 55.9791425 -3.2314689, 55.9241977 -3.2103373, 55.9291125 -3.2093344, 55.9356483 -3.2096691, 55.9357669 -3.2094553, 55.9462976 -3.1912247, 55.9455377 -3.1909164, 55.9364920 -3.2084274, 55.9816900 -3.1886748, 55.9709777 -3.2090219, 55.9545791 -3.1422991, 55.9548248 -3.1415950, 55.9264063 -3.2467300, 55.9771231 -3.1966894, 55.9360200 -3.2090070, 55.9738045 -3.1858283, 55.9404616 -3.1698412, 55.9387349 -3.2010412, 55.9710845 -3.2074438, 55.9720425 -3.2050523, 55.9202135 -3.2126749, 55.9219957 -3.1957248, 55.9229858 -3.1947070, 55.9435654 -3.2358763, 55.9503992 -3.1867667, 55.9745221 -3.2097210, 55.9725416 -3.2010685, 55.9715954 -3.2077321, 55.9711003 -3.2085870, 55.9612961 -3.1711082, 55.9447505 -3.1852146, 55.9453065 -3.1835012, 55.9447808 -3.1841195, 55.9457396 -3.1854060, 55.9454763 -3.2007654, 55.9457050 -3.2037107, 55.9456972 -3.2040704, 55.9457321 -3.2021180, 55.9456158 -3.2019242, 55.9459690 -3.2019202, 55.9453277 -3.2024821, 55.9456636 -3.2023531, 55.9456209 -3.2024908, 55.9456929 -3.2031564, 55.9450873 -3.2046445, 55.9461731 -3.2013007, 55.9461031 -3.2014738, 55.9459909 -3.2018101, 55.9462907 -3.2015596, 55.9463793 -3.2017812, 55.9465905 -3.2021823, 55.9468801 -3.2026112, 55.9467570 -3.2027078, 55.9466130 -3.2023833, 55.9459899 -3.2037387, 55.9458970 -3.2052450, 55.9460060 -3.2052924, 55.9456989 -3.2041882, 55.9501558 -3.1884318, 55.9463346 -3.2055472, 55.9349001 -3.1943041, 55.9741503 -3.1833122, 55.9444114 -3.2940849, 55.9706505 -3.2086749, 55.9492055 -3.1928272, 55.9225657 -3.2301524, 55.9228577 -3.2291352, 55.9232283 -3.2269378, 55.9455366 -3.1913887, 55.9456102 -3.1913727, 55.9461313 -3.1912692, 55.9461895 -3.1912537, 55.9462577 -3.1912354, 55.9463015 -3.2358815, 55.9450532 -3.2343378, 55.9493479 -3.1906070, 55.9456779 -3.2355278, 55.9453919 -3.2338736, 55.9455668 -3.2348848, 55.9457152 -3.2346362, 55.9456396 -3.2353061, 55.9456275 -3.2352361, 55.9457630 -3.2348824, 55.9389097 -3.2419381, 55.9425943 -3.2128320, 55.9429739 -3.2134360, 55.9488740 -3.2489910, 55.9509100 -3.2434200, 55.9494980 -3.2358476, 55.9456660 -3.2308795, 55.9456737 -3.2344230, 55.9456591 -3.2343478, 55.9456205 -3.2341061, 55.9454993 -3.2344943, 55.9329723 -3.2355483, 55.9473852 -3.1916772, 55.9475088 -3.1917576, 55.9471518 -3.1915252, 55.9498377 -3.1939928, 55.9498425 -3.1930486, 55.9532791 -3.1974386, 55.9531031 -3.1974183, 55.9561340 -3.1989483, 55.9264851 -3.2464048, 55.9491804 -3.2967532, 55.9424464 -3.2955938, 55.9445998 -3.2051834, 55.9443287 -3.2046976, 55.9442023 -3.2038200, 55.9211191 -3.2303230, 55.9474400 -3.2923526, 55.9430446 -3.2899748, 55.9456740 -3.2861378, 55.9512182 -3.2954264, 55.9443925 -3.2802364, 55.9457004 -3.2739703, 55.9515300 -3.2808442, 55.9479751 -3.2794176, 55.9642340 -3.2119376, 55.9590502 -3.1909659, 55.9713367 -3.2075738, 55.9443973 -3.1868138, 55.9454900 -3.2437100, 55.9469800 -3.2417000, 55.9484440 -3.2442745, 55.9460532 -3.2214294, 55.9467329 -3.2156094, 55.9452634 -3.2437676, 55.9382217 -3.2058349, 55.9425021 -3.1970043, 55.9367136 -3.2408009, 55.9173034 -3.2149399, 55.9371649 -3.2025037, 55.9363800 -3.1997880, 55.9368530 -3.2004540, 55.9393621 -3.1916353, 55.9456516 -3.2353753, 55.9463436 -3.2054589, 55.9422110 -3.2027507, 55.9438249 -3.2056297, 55.9589078 -3.2117046, 55.9315200 -3.2861400, 55.9420711 -3.2690435, 55.9416140 -3.2558905, 55.9447200 -3.2512600, 55.9420100 -3.2484400, 55.9780639 -3.1804798, 55.9620429 -3.1977538, 55.9604376 -3.2013529, 55.9604183 -3.2014949, 55.9591864 -3.2124140, 55.9591737 -3.2122413, 55.9370660 -3.2969585, 55.9392100 -3.2806000, 55.9393811 -3.2704873, 55.9354550 -3.2598605, 55.9468637 -3.2297538, 55.9436917 -3.2398371, 55.9436136 -3.2397405, 55.9405368 -3.2831106, 55.9413015 -3.2818091, 55.9191956 -3.2130499, 55.9460239 -3.2230837, 55.9459933 -3.2231784, 55.9366457 -3.2075087, 55.9366703 -3.2079324, 55.9621347 -3.1794502, 55.9669748 -3.1747167, 55.9669857 -3.1747050, 55.9675892 -3.1703364, 55.9395488 -3.1870788, 55.9446114 -3.1865865, 55.9461370 -3.1853123, 55.9461292 -3.1853065, 55.9314090 -3.1822354, 55.9253256 -3.2005966, 55.9281345 -3.1804917, 55.9305500 -3.1762100, 55.9076779 -3.2582348, 55.9504119 -3.1888113, 55.9478244 -3.2213073, 55.9499694 -3.2195589, 55.9487598 -3.2123252, 55.9487951 -3.2108329, 55.9487898 -3.2108459, 55.9487788 -3.2108716, 55.9589846 -3.1832689, 55.9593578 -3.1768112, 55.9623585 -3.1714714, 55.9646364 -3.1735638, 55.9655614 -3.1691044, 55.9450256 -3.2268882, 55.9536450 -3.1936151, 55.9760874 -3.1678906, 55.9736874 -3.1725679, 55.9751258 -3.1658656, 55.9588433 -3.2109114, 55.9591509 -3.2146545, 55.9512937 -3.2112702, 55.9460346 -3.2134605, 55.9463344 -3.2161852, 55.9574881 -3.1992547, 55.9661313 -3.1638552, 55.9524365 -3.2168591, 55.9562610 -3.2021290, 55.9513695 -3.2128397, 55.9654450 -3.1802602, 55.9548807 -3.2054706, 55.9350165 -3.1943787, 55.9460137 -3.1821143, 55.9371585 -3.2494475, 55.9450054 -3.2718056, 55.9347429 -3.2433134, 55.9322639 -3.2309042, 55.9376366 -3.2347523, 55.9369077 -3.2366239, 55.9363670 -3.2407328, 55.9520924 -3.2063038, 55.9576002 -3.1888027, 55.9548242 -3.1983902, 55.9574612 -3.1710201, 55.9558419 -3.1599480, 55.9371035 -3.2439605, 55.9818809 -3.1948176, 55.9632540 -3.1957380, 55.9585033 -3.1646213, 55.9593827 -3.1562296, 55.9628514 -3.1597814, 55.9471310 -3.1906350, 55.9592473 -3.2132417, 55.9593364 -3.2144530, 55.9587464 -3.2103338, 55.9591071 -3.2116272, 55.9590549 -3.2115512, 55.9585881 -3.2103788, 55.9591595 -3.2128882, 55.9588539 -3.2110421, 55.9578390 -3.2128140, 55.9574336 -3.2134743, 55.9548931 -3.1712934, 55.9371653 -3.1787251, 55.9436074 -3.2192026, 55.9691762 -3.1592418, 55.9671192 -3.1610299, 55.9526079 -3.2185281, 55.9630520 -3.1962925, 55.9503960 -3.1873714, 55.9405116 -3.2947547, 55.9399996 -3.2911100, 55.9503821 -3.1868960, 55.9433250 -3.2363632, 55.9453641 -3.1865530, 55.9455352 -3.1866707, 55.9456867 -3.1862318, 55.9459460 -3.1878623, 55.9445731 -3.1850966, 55.9445434 -3.1856701, 55.9493090 -3.1830646, 55.9436340 -3.1927890, 55.9478908 -3.1920045, 55.9477659 -3.1919316, 55.9495349 -3.1929486, 55.9310201 -3.2194717, 55.9309551 -3.2196555, 55.9310441 -3.2256150, 55.9312633 -3.2137919, 55.9349884 -3.2314231, 55.9300135 -3.2135077, 55.9538496 -3.1787470, 55.9521538 -3.1888028, 55.9520917 -3.1892975, 55.9521212 -3.1893253, 55.9368221 -3.2872838, 55.9346543 -3.2844878, 55.9342762 -3.2766962, 55.9368280 -3.2706901, 55.9267768 -3.2325501, 55.9265880 -3.2362930, 55.9764239 -3.1659535, 55.9622747 -3.2001258, 55.9592917 -3.2185993, 55.9575875 -3.2415188, 55.9573543 -3.2332686, 55.9763996 -3.1659688, 55.9760198 -3.1681503, 55.9582403 -3.2265941, 55.9717406 -3.1741296, 55.9625335 -3.1998581, 55.9746244 -3.1717856, 55.9624052 -3.1998575, 55.9588912 -3.2211449, 55.9706462 -3.2515635, 55.9709461 -3.2425812, 55.9673110 -3.2456184, 55.9712487 -3.2524233, 55.9672451 -3.2455099, 55.9709114 -3.2425772, 55.9706587 -3.2515739, 55.9672842 -3.2456821, 55.9702305 -3.2515134, 55.9714310 -3.2540033, 55.9592253 -3.2129434, 55.9680564 -3.1656726, 55.9799286 -3.2012947, 55.9794390 -3.2011303, 55.9795838 -3.2010514, 55.9794434 -3.2011947, 55.9786873 -3.2006437, 55.9796829 -3.2014770, 55.9784426 -3.2011199, 55.9797146 -3.2012098, 55.9787186 -3.2008831, 55.9791564 -3.2013330, 55.9786267 -3.2010567, 55.9794210 -3.2012457, 55.9787610 -3.2009019, 55.9791637 -3.2012792, 55.9799135 -3.2014483, 55.9795468 -3.2013664, 55.9790126 -3.2013853, 55.9749007 -3.1672556, 55.9788648 -3.2009088, 55.9788535 -3.2008575, 55.9788361 -3.2011054, 55.9788605 -3.2008124, 55.9788770 -3.2008233, 55.9788948 -3.2006927, 55.9788174 -3.2012321, 55.9799603 -3.2009914, 55.9788687 -3.2007502, 55.9788487 -3.2010347, 55.9788705 -3.2008699, 55.9788853 -3.2007572, 55.9788557 -3.2009857, 55.9788783 -3.2006842, 55.9790398 -3.2011265, 55.9788474 -3.2009018, 55.9788274 -3.2011722, 55.9437166 -3.2040299, 55.9464995 -3.1932533, 55.9448981 -3.1942117, 55.9435195 -3.2043969, 55.9591181 -3.1496342, 55.9498802 -3.1891726, 55.9552796 -3.1440360, 55.9538343 -3.1493870, 55.9651726 -3.1550168, 55.9500668 -3.1885889, 55.9547615 -3.1614369, 55.9504925 -3.1856345, 55.9493236 -3.1929136, 55.9504971 -3.1855975, 55.9619817 -3.1533477, 55.9498898 -3.1890965, 55.9536631 -3.1541511, 55.9492238 -3.1941539, 55.9502174 -3.1865501, 55.9505940 -3.1856465, 55.9498851 -3.1891359, 55.9553219 -3.1667379, 55.9551114 -3.1532181, 55.9502737 -3.1870781, 55.9611774 -3.1518223, 55.9554051 -3.1670277, 55.9546947 -3.1578562, 55.9575068 -3.1501850, 55.9314494 -3.1869748, 55.9416576 -3.1883214, 55.9412229 -3.1869842, 55.9423396 -3.1985687, 55.9368984 -3.1811783, 55.9357294 -3.2217893, 55.9354242 -3.1897423, 55.9423597 -3.1983768, 55.9354613 -3.1902988, 55.9341279 -3.2244599, 55.9426036 -3.1916439, 55.9424726 -3.1914952, 55.9409958 -3.1861854, 55.9347865 -3.2217088, 55.9424745 -3.1968698, 55.9339423 -3.2232291, 55.9424847 -3.1966165, 55.9332970 -3.2046324, 55.9424725 -3.1912702, 55.9418355 -3.1889284, 55.9421352 -3.2033494, 55.9401630 -3.1832349, 55.9353802 -3.1899199, 55.9421588 -3.2004891, 55.9333677 -3.2123755, 55.9375387 -3.1808698, 55.9731305 -3.1950625, 55.9538898 -3.2435872, 55.9527134 -3.2284353, 55.9536484 -3.2360453, 55.9546849 -3.2317176, 55.9256121 -3.1473387, 55.9255558 -3.1473167, 55.9254849 -3.1471298, 55.9255885 -3.1473368, 55.9255445 -3.1473013, 55.9255241 -3.1472486, 55.9255074 -3.1471930, 55.9256417 -3.1473368, 55.9254972 -3.1471633, 55.9254768 -3.1470924, 55.9255278 -3.1472659, 55.9255359 -3.1472812, 55.9255176 -3.1472256, 55.9630069 -3.2773773, 55.9633560 -3.2761756, 55.9646089 -3.2795091, 55.9639218 -3.2753952, 55.9644744 -3.2764552, 55.9642945 -3.2803351, 55.9638292 -3.2801968, 55.9641863 -3.2754567, 55.9643389 -3.2771164, 55.9645514 -3.2795049, 55.9646789 -3.2797902, 55.9630069 -3.2776474, 55.9647666 -3.2762084, 55.9649490 -3.2763608, 55.9472234 -3.2024422, 55.9479871 -3.1862306, 55.9449721 -3.1863791, 55.9479019 -3.1867698, 55.9470660 -3.2019687, 55.9431252 -3.1992894, 55.9482540 -3.2061050, 55.9478974 -3.1862047, 55.9500998 -3.1782582, 55.9434302 -3.2029443, 55.9465349 -3.1857185, 55.9472762 -3.1979213, 55.9465436 -3.1854289, 55.9477576 -3.1936583, 55.9502038 -3.1902321, 55.9693966 -3.1688854, 55.9771941 -3.1796570, 55.9776661 -3.1969988, 55.9776264 -3.1970905, 55.9776339 -3.1970307, 55.9802605 -3.1977296, 55.9765929 -3.1854698, 55.9789189 -3.1867824, 55.9415107 -3.2233608, 55.9226414 -3.2544133, 55.9295258 -3.2094364, 55.9733890 -3.2058000, 55.9724087 -3.1997599, 55.9719753 -3.2019093, 55.9722034 -3.2009871, 55.9302979 -3.1705559, 55.9212194 -3.2187366, 55.9073269 -3.2574527, 55.9768522 -3.1881006, 55.9820447 -3.1896654, 55.9669733 -3.1745264, 55.9677041 -3.2243177, 55.9657563 -3.2435361, 55.9800424 -3.2091064, 55.9805891 -3.1775801, 55.9780874 -3.2043007, 55.9801656 -3.2091915, 55.9725324 -3.1754041, 55.9657293 -3.2435261, 55.9700408 -3.2078082, 55.9670709 -3.1749630, 55.9799752 -3.2018461, 55.9790932 -3.2109028, 55.9437881 -3.2070159, 55.9455865 -3.2342233, 55.9455978 -3.2346741, 55.9371539 -3.2494937, 55.9246468 -3.2763740, 55.9372962 -3.2491878, 55.9332779 -3.2613713, 55.9246368 -3.2764158, 55.9299176 -3.2625346, 55.9372632 -3.2492416, 55.9246048 -3.2765477, 55.9271075 -3.2707414, 55.9247996 -3.2823520, 55.9332415 -3.2614077, 55.9325591 -3.2593705, 55.9247876 -3.2822715, 55.9641861 -3.2128706, 55.9692611 -3.1512327, 55.9642958 -3.1488430, 55.9639379 -3.1504049, 55.9745306 -3.1933636, 55.9748675 -3.1904209, 55.9746493 -3.1922925, 55.9743880 -3.1929616, 55.9749058 -3.1941793, 55.9746366 -3.1955294, 55.9747764 -3.1956967, 55.9745714 -3.1934532, 55.9754612 -3.1960906, 55.9399014 -3.1712062, 55.9273390 -3.1465879, 55.9271255 -3.1468646, 55.9752483 -3.2153052, 55.9758317 -3.2144035, 55.9727434 -3.2070307, 55.9275895 -3.1645483, 55.9399619 -3.1799104, 55.9241128 -3.1723545, 55.9300110 -3.2100136, 55.9429085 -3.1832259, 55.9334156 -3.1665149, 55.9276372 -3.1682132, 55.9338015 -3.1610908, 55.9429869 -3.1832327, 55.9321255 -3.1800006, 55.9334491 -3.1664892, 55.9399489 -3.1799452, 55.9269153 -3.1638236, 55.9406102 -3.1806228, 55.9420827 -3.2691559, 55.9425700 -3.2686698, 55.9434680 -3.2668439, 55.9439063 -3.2690157, 55.9435751 -3.2689147, 55.9430873 -3.2690735, 55.9443551 -3.2687653, 55.9437874 -3.2690161, 55.9436834 -3.2692135, 55.9429229 -3.2689057, 55.9437737 -3.2692883, 55.9443555 -3.2688034, 55.9434933 -3.2688802, 55.9443517 -3.2688330, 55.9443334 -3.2690333, 55.9443160 -3.2698145, 55.9443712 -3.2697548, 55.9442862 -3.2696535, 55.9447923 -3.2696041, 55.9442414 -3.2696230, 55.9442249 -3.2698579, 55.9441862 -3.2699833, 55.9441998 -3.2697898, 55.9441846 -3.2700353, 55.9441913 -3.2699266, 55.9442482 -3.2695243, 55.9441947 -3.2698513, 55.9442041 -3.2697012, 55.9442198 -3.2699298, 55.9448190 -3.2682874, 55.9445364 -3.2691035, 55.9445089 -3.2686640, 55.9448125 -3.2683165, 55.9445401 -3.2690632, 55.9445281 -3.2686754, 55.9447678 -3.2682625, 55.9445452 -3.2690217, 55.9444816 -3.2686505, 55.9438104 -3.2704203, 55.9441745 -3.2708613, 55.9451248 -3.2679627, 55.9451178 -3.2677005, 55.9438841 -3.2704641, 55.9451136 -3.2677340, 55.9436988 -3.2702051, 55.9440136 -3.2699584, 55.9437582 -3.2698008, 55.9440197 -3.2698813, 55.9439194 -3.2696742, 55.9437988 -3.2695451, 55.9440168 -3.2699147, 55.9437958 -3.2695753, 55.9437871 -3.2696296, 55.9437147 -3.2700828, 55.9440096 -3.2700013, 55.9437646 -3.2697579, 55.9437095 -3.2701295, 55.9439723 -3.2703260, 55.9440281 -3.2698087, 55.9439896 -3.2701946, 55.9437462 -3.2698728, 55.9439914 -3.2701621, 55.9445568 -3.2712370, 55.9444828 -3.2712985, 55.9445676 -3.2713832, 55.9445489 -3.2712116, 55.9444306 -3.2707867, 55.9446757 -3.2680033, 55.9443715 -3.2709187, 55.9443640 -3.2709035, 55.9444425 -3.2708312, 55.9439403 -3.2686377, 55.9439366 -3.2685388, 55.9472894 -3.2704332, 55.9464505 -3.2693921, 55.9453787 -3.2713449, 55.9440090 -3.2721798, 55.9472851 -3.2706337, 55.9455441 -3.2712955, 55.9465141 -3.2730188, 55.9472398 -3.2702471, 55.9473110 -3.2704551, 55.9472948 -3.2703506, 55.9358149 -3.2386102, 55.9461826 -3.2690791, 55.9456455 -3.2716123, 55.9366987 -3.2379969, 55.9453342 -3.2700548, 55.9462962 -3.2726401, 55.9454803 -3.2690632, 55.9457537 -3.2698792, 55.9461758 -3.2691227, 55.9463484 -3.2727821, 55.9453896 -3.2713832, 55.9451134 -3.2711892, 55.9462094 -3.2725069, 55.9443505 -3.2706792, 55.9448784 -3.2691910, 55.9449196 -3.2690293, 55.9451823 -3.2694942, 55.9445985 -3.2697772, 55.9445979 -3.2697349, 55.9445979 -3.2698218, 55.9450181 -3.2688395, 55.9443896 -3.2704309, 55.9442896 -3.2708207, 55.9438150 -3.2706214, 55.9730625 -3.2354168, 55.9792487 -3.2313758, 55.9743076 -3.2196459, 55.9786761 -3.2242350, 55.9741111 -3.2386308, 55.9753661 -3.2384939, 55.9698356 -3.2316222, 55.9763800 -3.2460031, 55.9756661 -3.2270053, 55.9757390 -3.2302742, 55.9751276 -3.2195128, 55.9779244 -3.2225429, 55.9746980 -3.2385027, 55.9439343 -3.2725445, 55.9438317 -3.2725467, 55.9437621 -3.2725408, 55.9503380 -3.2726676, 55.9456126 -3.2685460, 55.9456241 -3.2684706, 55.9473517 -3.2692143, 55.9475440 -3.2688587, 55.9475589 -3.2686972, 55.9451123 -3.2677559, 55.9452218 -3.2681462, 55.9451658 -3.2680317, 55.9394746 -3.1894768, 55.9411641 -3.1512729, 55.9416434 -3.1717268, 55.9439748 -3.1524219, 55.9411330 -3.1514431, 55.9448237 -3.1529181, 55.9423063 -3.1449329, 55.9450073 -3.1529020, 55.9402037 -3.1756282, 55.9421609 -3.1451559, 55.9446352 -3.1525535, 55.9434855 -3.1422046, 55.9419802 -3.1708710, 55.9396994 -3.1851263, 55.9417559 -3.1765404, 55.9410719 -3.1516059, 55.9503022 -3.2071924, 55.9512603 -3.2014806, 55.9533454 -3.1938651, 55.9509730 -3.2032088, 55.9512978 -3.2012401, 55.9593299 -3.1509841, 55.9617190 -3.1525405, 55.9566137 -3.1888783, 55.9577467 -3.1851022, 55.9562406 -3.1911609, 55.9526010 -3.1937812, 55.9507246 -3.2045394, 55.9517979 -3.1983521, 55.9524251 -3.1947161, 55.9505481 -3.2054984, 55.9709486 -3.1523987, 55.9525246 -3.1941907, 55.9506016 -3.2052108, 55.9516546 -3.1992268, 55.9523506 -3.1951713, 55.9575602 -3.1724450, 55.9580154 -3.1583704, 55.9592196 -3.1553714, 55.9458843 -3.2055992, 55.9504298 -3.2064570, 55.9575913 -3.1753293, 55.9547280 -3.1926660, 55.9521682 -3.1962149, 55.9452317 -3.2051701, 55.9515517 -3.1998326, 55.9576458 -3.1789105, 55.9537198 -3.1936624, 55.9567999 -3.1876847, 55.9520466 -3.1969809, 55.9560815 -3.1929397, 55.9636100 -3.1540929, 55.9515119 -3.2000849, 55.9577704 -3.1828555, 55.9564876 -3.1896175, 55.9510185 -3.2029566, 55.9513839 -3.2007749, 55.9599237 -3.1506789, 55.9465689 -3.2059027, 55.9410597 -3.2238899, 55.9610620 -3.2661513, 55.9579168 -3.2594573, 55.9611170 -3.2586621, 55.9591633 -3.2694132, 55.9472750 -3.2701680, 55.9472780 -3.2702638, 55.9472901 -3.2702199, 55.9460756 -3.2679698, 55.9461143 -3.2678766, 55.9461569 -3.2677804, 55.9460226 -3.2680862, 55.9476973 -3.2666365, 55.9476234 -3.2666513, 55.9478812 -3.2669807, 55.9477799 -3.2670205, 55.9477692 -3.2669562, 55.9439389 -3.2713024, 55.9438362 -3.2717741, 55.9457140 -3.2662994, 55.9473537 -3.2693023, 55.9423791 -3.2684339, 55.9423375 -3.2684623, 55.9426333 -3.2684129, 55.9541180 -3.1855740, 55.9807233 -3.1953798, 55.9459500 -3.2183311, 55.9525178 -3.1990765, 55.9527244 -3.1978512, 55.9517351 -3.1896593, 55.9526200 -3.1872149, 55.9495835 -3.1876144, 55.9514986 -3.1796557, 55.9514881 -3.1797075, 55.9514580 -3.1798555, 55.9514691 -3.1798034, 55.9236959 -3.2040638, 55.9212525 -3.2097389, 55.9514550 -3.1958932, 55.9246180 -3.2215117, 55.9268322 -3.2091083, 55.9252645 -3.2148714, 55.9245389 -3.2241470, 55.9268608 -3.2091094, 55.9282888 -3.2095850, 55.9226159 -3.2225114, 55.9777985 -3.1974975, 55.9798593 -3.1946097, 55.9780428 -3.1860386, 55.9784324 -3.1831445, 55.9773792 -3.1799210, 55.9379636 -3.2403672, 55.9371924 -3.2382206, 55.9394624 -3.2262304, 55.9449761 -3.2499915, 55.9522107 -3.2715039, 55.9457322 -3.2402496, 55.9439988 -3.2573278, 55.9572715 -3.2768003, 55.9437035 -3.2584097, 55.9458226 -3.2352228, 55.9478145 -3.2639367, 55.9555972 -3.2734936, 55.9453565 -3.2446690, 55.9708436 -3.1716098, 55.9076063 -3.2536486, 55.9079031 -3.2547777, 55.9570137 -3.1821671, 55.9774386 -3.2624501, 55.9772118 -3.2672281, 55.9772339 -3.2660670, 55.9624258 -3.1975866, 55.9651110 -3.2694445, 55.9573540 -3.2494949, 55.9555020 -3.2480075, 55.9555258 -3.2619699, 55.9574373 -3.2496763, 55.9634767 -3.2722179, 55.9605444 -3.2566921, 55.9566447 -3.2377940, 55.9772777 -3.2461729, 55.9623920 -3.1996454, 55.9623670 -3.1996983, 55.9621922 -3.2000688, 55.9631054 -3.1964986, 55.9612545 -3.2082697, 55.9057072 -3.2230862, 55.9057886 -3.2220852, 55.9058118 -3.2222166, 55.9056645 -3.2224845, 55.9361919 -3.2787960, 55.9406861 -3.2945485, 55.9113200 -3.2226013, 55.9559675 -3.1875732, 55.9575352 -3.2075320, 55.9428445 -3.2718177, 55.9457769 -3.1881838, 55.9457904 -3.1881060, 55.9458340 -3.1851287, 55.9456579 -3.1864695, 55.9464609 -3.1857555, 55.9444948 -3.1852753, 55.9460238 -3.1818387, 55.9456169 -3.1836938, 55.9409109 -3.1847511, 55.9537781 -3.1881740, 55.9506084 -3.1874617, 55.9500934 -3.1836054, 55.9498204 -3.1834215, 55.9508055 -3.1777162, 55.9695532 -3.1595985, 55.9559652 -3.1503593, 55.9695519 -3.1615654, 55.9694468 -3.1623711, 55.9692700 -3.1637686, 55.9696498 -3.1596886, 55.9342608 -3.2766739, 55.9343068 -3.2766933, 55.9341525 -3.2766615, 55.9342032 -3.2767154, 55.9504487 -3.1855770, 55.9527611 -3.2030077, 55.9481787 -3.1818614, 55.9360525 -3.2265524, 55.9369949 -3.2187665, 55.9686273 -3.1585988, 55.9469357 -3.2061870, 55.9468336 -3.2067128, 55.9510529 -3.1895716, 55.9474405 -3.2025897, 55.9469842 -3.2055924, 55.9484546 -3.2033792, 55.9477666 -3.2049354, 55.9519571 -3.1962325, 55.9475027 -3.1864955, 55.9450666 -3.1879264, 55.9084110 -3.2094163, 55.9082785 -3.2093082, 55.9086565 -3.2096817, 55.9083456 -3.2093594, 55.9650759 -3.2031617, 55.9807357 -3.1771531, 55.9801105 -3.1784204, 55.9803382 -3.1778904, 55.9509532 -3.1703030, 55.9449293 -3.1531235, 55.9426622 -3.1700360, 55.9536680 -3.1591788, 55.9510831 -3.1696039, 55.9471411 -3.1970342, 55.9472696 -3.1965989, 55.9471162 -3.1970611, 55.9476455 -3.1953503, 55.9470721 -3.1972816, 55.9444791 -3.1881383, 55.9441090 -3.1902632, 55.9441665 -3.1899295, 55.9431021 -3.1885851, 55.9442010 -3.1896725, 55.9442375 -3.1894117, 55.9434877 -3.1870683, 55.9411521 -3.2175600, 55.9416473 -3.2167635, 55.9417417 -3.2166027, 55.9412822 -3.2173787, 55.9414839 -3.2157963, 55.9502375 -3.1783811, 55.9578332 -3.2413256, 55.9338912 -3.2338462, 55.9533340 -3.1882867, 55.9535985 -3.1880495, 55.9540940 -3.1883181, 55.9647669 -3.1742071, 55.9615002 -3.2416803, 55.9612219 -3.2575527, 55.9617112 -3.2842794, 55.9459285 -3.2185692, 55.9550948 -3.1901047, 55.9550392 -3.1900725, 55.9544162 -3.1979157, 55.9551557 -3.1901442, 55.9550768 -3.1902732, 55.9488944 -3.2004735, 55.9682084 -3.1584193, 55.9747341 -3.1674332, 55.9690445 -3.1682228, 55.9235577 -3.1750912, 55.9401640 -3.1700061, 55.9709409 -3.1571862, 55.9467290 -3.2153860, 55.9220580 -3.1538560, 55.9283784 -3.2791498, 55.9237183 -3.2367632, 55.9785853 -3.2328696, 55.9626030 -3.2336790, 55.9697755 -3.2322849, 55.9522245 -3.1734903, 55.9629859 -3.1961423, 55.9551121 -3.1428079, 55.9702557 -3.1722514, 55.9707819 -3.1795895, 55.9718556 -3.1742189, 55.9598707 -3.1836010, 55.9596341 -3.1834611, 55.9632066 -3.1785776, 55.9606353 -3.1818678, 55.9634276 -3.1783427, 55.9571142 -3.1859300, 55.9583267 -3.1846366, 55.9598382 -3.1829707, 55.9589142 -3.1841338, 55.9591802 -3.1838027, 55.9615406 -3.1806868, 55.9702777 -3.1722352, 55.9568895 -3.1872332, 55.9714725 -3.1735772, 55.9649663 -3.1768207, 55.9658985 -3.1759685, 55.9645028 -3.1902250, 55.9575852 -3.1728943, 55.9608065 -3.2464135, 55.9539273 -3.1922043, 55.9805680 -3.2249628, 55.9579175 -3.2082759, 55.9406050 -3.2947431, 55.9573347 -3.1870575, 55.9413584 -3.2170640, 55.9567027 -3.2027842, 55.9502256 -3.2037940, 55.9435000 -3.2324052, 55.9647720 -3.2042289, 55.9647197 -3.2042135, 55.9646674 -3.2043527, 55.9646282 -3.2123860, 55.9227843 -3.1745345, 55.9228926 -3.1745133, 55.9217304 -3.1744023, 55.9630073 -3.1966593, 55.9584822 -3.1838031, 55.9627948 -3.1786344, 55.9585203 -3.1837638, 55.9589264 -3.1833589, 55.9658761 -3.1755965, 55.9758546 -3.1700490, 55.9698878 -3.1717364, 55.9698710 -3.1719035, 55.9673457 -3.1743716, 55.9659789 -3.1755949, 55.9608269 -3.1809491, 55.9626007 -3.1788719, 55.9617000 -3.1800168, 55.9648938 -3.2106033, 55.9640769 -3.2117760, 55.9729683 -3.2415304, 55.9710850 -3.2302781, 55.9660823 -3.2332303, 55.9663376 -3.2322283, 55.9570699 -3.2073173, 55.9571426 -3.2068415, 55.9456193 -3.2178696, 55.9407217 -3.2685394, 55.9666564 -3.2048348, 55.9316272 -3.2648845, 55.9746900 -3.1865330, 55.9459387 -3.2172281, 55.9535442 -3.2058828, 55.9468426 -3.2042839, 55.9418064 -3.1502056, 55.9765012 -3.2156968, 55.9768410 -3.2157391, 55.9654428 -3.2696179, 55.9680693 -3.2059108, 55.9704584 -3.2081175, 55.9704953 -3.2081485, 55.9699562 -3.2076464, 55.9707533 -3.2083928, 55.9565342 -3.1985297, 55.9648879 -3.2026755, 55.9637633 -3.2012504, 55.9567499 -3.1986451, 55.9561450 -3.2942798, 55.9618298 -3.2008369, 55.9599171 -3.2005727, 55.9611747 -3.2012488, 55.9591669 -3.1999850, 55.9594671 -3.2002995, 55.9712906 -3.2063874, 55.9706415 -3.2086153, 55.9713338 -3.2069948, 55.9695498 -3.2075521, 55.9676635 -3.2058310, 55.9692804 -3.2074893, 55.9537621 -3.1970655, 55.9366240 -3.1802622, 55.9259084 -3.1931834, 55.9809058 -3.1784709, 55.9811460 -3.1776490, 55.9806886 -3.1784936, 55.9809733 -3.1781568, 55.9807522 -3.1787546, 55.9809041 -3.1782848, 55.9809689 -3.1779757, 55.9805231 -3.1789886, 55.9807924 -3.1779232, 55.9808102 -3.1777011, 55.9804391 -3.1785758, 55.9820170 -3.1763600, 55.9234603 -3.2480989, 55.9591543 -3.2259572, 55.9590419 -3.2244693, 55.9584175 -3.1836030, 55.9386253 -3.2265154, 55.9727205 -3.1965557, 55.9727236 -3.1965337, 55.9727179 -3.1965732, 55.9551635 -3.1504704, 55.9110678 -3.2397229, 55.9551513 -3.1497023, 55.9622829 -3.1985522, 55.9711437 -3.2084607, 55.9708639 -3.2085268, 55.9014700 -3.2230460, 55.9014970 -3.2224341, 55.9635314 -3.2337201, 55.9624600 -3.2363981, 55.9623235 -3.2362031, 55.9482310 -3.1848072, 55.9400736 -3.1717606, 55.9569588 -3.1874026, 55.9808127 -3.2595224, 55.9514755 -3.1782823, 55.9511672 -3.1780596, 55.9509125 -3.1777434, 55.9486026 -3.1924520, 55.9345452 -3.2208560, 55.9392875 -3.2226223, 55.9465573 -3.2166040, 55.9775384 -3.1973714, 55.9768854 -3.1971875, 55.9776251 -3.1971457, 55.9390363 -3.1799981, 55.9374159 -3.1700169, 55.9805956 -3.1934566, 55.9569347 -3.1878220, 55.9571722 -3.1885204, 55.9574895 -3.1883335, 55.9570705 -3.1879231, 55.9570779 -3.1884191, 55.9568932 -3.1877875, 55.9573876 -3.1882337, 55.9570085 -3.1883445, 55.9426281 -3.2128809, 55.9430915 -3.2136268, 55.9527396 -3.1977443, 55.9480325 -3.1815054, 55.9480039 -3.1817137, 55.9560952 -3.1981151, 55.9480209 -3.1999685, 55.9489665 -3.2010611, 55.9493788 -3.1869167, 55.9691533 -3.2784692, 55.9692477 -3.2784288, 55.9693072 -3.2788977, 55.9693548 -3.2789797, 55.9696962 -3.2776885, 55.9697099 -3.2776419, 55.9712220 -3.2801035, 55.9715957 -3.2808185, 55.9716282 -3.2807288, 55.9717402 -3.2779034, 55.9717600 -3.2779104, 55.9717836 -3.2776240, 55.9717999 -3.2776311, 55.9718160 -3.2776350, 55.9718386 -3.2779414, 55.9718557 -3.2779493, 55.9718960 -3.2776816, 55.9719644 -3.2780539, 55.9719738 -3.2795632, 55.9719843 -3.2795094, 55.9720028 -3.2794220, 55.9720946 -3.2789216, 55.9721642 -3.2784518, 55.9477134 -3.1957934, 55.9469231 -3.1978666, 55.9484235 -3.1941366, 55.9532707 -3.1946443, 55.9590285 -3.1830258, 55.9541444 -3.1874139, 55.9492653 -3.1878166, 55.9503609 -3.1881082, 55.9263726 -3.2095225, 55.9437913 -3.2075720, 55.9435956 -3.2082094, 55.9438322 -3.2058300, 55.9439569 -3.2059882, 55.9414930 -3.1764095, 55.9744930 -3.1740238, 55.9746031 -3.1741015, 55.9743735 -3.1740128, 55.9501068 -3.1901274, 55.9502048 -3.1904658, 55.9502374 -3.1901476, 55.9777985 -3.2431662, 55.9436378 -3.1937085, 55.9645746 -3.1623361, 55.9661091 -3.1556801, 55.9594943 -3.1560234, 55.9595036 -3.1564207, 55.9594927 -3.1561524, 55.9575205 -3.1699980, 55.9585573 -3.1641856, 55.9588531 -3.1715965, 55.9505032 -3.1770192, 55.9644079 -3.2126470, 55.9509705 -3.1758549, 55.9389695 -3.1739145, 55.9389943 -3.1739655, 55.9390348 -3.1740554, 55.9385725 -3.1743857, 55.9390147 -3.1740075, 55.9390548 -3.1740993, 55.9390736 -3.1741349, 55.9386396 -3.1734783, 55.9386176 -3.1743667, 55.9233792 -3.1742497, 55.9233858 -3.1742718, 55.9234025 -3.1742718, 55.9234130 -3.1742582, 55.9234165 -3.1742395, 55.9353260 -3.1974910, 55.9359590 -3.1944058, 55.9461006 -3.2053014, 55.9646577 -3.1742534, 55.9761453 -3.2491420, 55.9493237 -3.2123286, 55.9492755 -3.2122776, 55.9337528 -3.2109407, 55.9592003 -3.2070598, 55.9470741 -3.2010696, 55.9272281 -3.2094764, 55.9439543 -3.2071456, 55.9319254 -3.2512353, 55.9803988 -3.2235746, 55.9500005 -3.2077642, 55.9334827 -3.1781544, 55.9482625 -3.1920719, 55.9564790 -3.1878171, 55.9571919 -3.1851054, 55.9570940 -3.1852268, 55.9588991 -3.2258357, 55.9335760 -3.2285650, 55.9780202 -3.2428479, 55.9425693 -3.2033171, 55.9382383 -3.1924272, 55.9859605 -3.1898881, 55.9864916 -3.1885470, 55.9506835 -3.1901263, 55.9488068 -3.1956257, 55.9422140 -3.2733877, 55.9436353 -3.2027965, 55.9576954 -3.1637490, 55.9590948 -3.2432678, 55.9586188 -3.2408490, 55.9676788 -3.1745637, 55.9396281 -3.2041820, 55.9777657 -3.1686490, 55.9779143 -3.1684989, 55.9552280 -3.1478679, 55.9549996 -3.1445229, 55.9484747 -3.1864289, 55.9126616 -3.2035825, 55.9171931 -3.1941869, 55.9126891 -3.2038767, 55.9106369 -3.2236918, 55.9425676 -3.2218450, 55.9475020 -3.1919993, 55.9485285 -3.1947345, 55.9542346 -3.1873800, 55.9508675 -3.1907041, 55.9508879 -3.1905922, 55.9536227 -3.1920912, 55.9508253 -3.2079252, 55.9520662 -3.2007312, 55.9502522 -3.2086385, 55.9506787 -3.2078124, 55.9722589 -3.2532136, 55.9218026 -3.1745330, 55.9220250 -3.1740037, 55.9222596 -3.1746208, 55.9451505 -3.1872267, 55.9222225 -3.1735760, 55.9222306 -3.1737186, 55.9222484 -3.1736116, 55.9013749 -3.2048039, 55.9015123 -3.2048112, 55.9014995 -3.2048220, 55.9557144 -3.2050284, 55.9573512 -3.1955177, 55.9582765 -3.1894464, 55.9568218 -3.1985851, 55.9559071 -3.2028055, 55.9052704 -3.2299197, 55.9073936 -3.2270867, 55.9167735 -3.2461744, 55.9086485 -3.2285406, 55.9085511 -3.2284975, 55.9095328 -3.2331203, 55.9189185 -3.2647989, 55.9057737 -3.2228121, 55.9211096 -3.2429362, 55.9778271 -3.2436779, 55.9503499 -3.1810630, 55.9516064 -3.1841709, 55.9503183 -3.1884815, 55.9236878 -3.2368618, 55.9238196 -3.2366622, 55.9236578 -3.2367354, 55.9237248 -3.2366306, 55.9237612 -3.2366178, 55.9833943 -3.2415959, 55.9095305 -3.2330886, 55.9366857 -3.2080378, 55.9347829 -3.1798219, 55.9250057 -3.2459826, 55.9268452 -3.2441755, 55.9325861 -3.2362182, 55.9358156 -3.2103653, 55.9359705 -3.2098110, 55.9360380 -3.2096024, 55.9278483 -3.2300129, 55.9377646 -3.2063686, 55.9376421 -3.2063586, 55.9369027 -3.2077163, 55.9372048 -3.2071638, 55.9368453 -3.2080850, 55.9373902 -3.2070428, 55.9375452 -3.2065188, 55.9391854 -3.2049304, 55.9403048 -3.2042415, 55.9404664 -3.2042389, 55.9280547 -3.2292838, 55.9116349 -3.2144369, 55.9137619 -3.2215458, 55.9166500 -3.2282550, 55.9177564 -3.2099928, 55.9058039 -3.2543852, 55.9058659 -3.2543314, 55.9058985 -3.2437992, 55.9729590 -3.2150233, 55.9574260 -3.1873226, 55.9418938 -3.1804392, 55.9426222 -3.1809843, 55.9577201 -3.1877521, 55.9584746 -3.1893143, 55.9587876 -3.1938665, 55.9590983 -3.1918268, 55.9800499 -3.1791627, 55.9373982 -3.2204158, 55.9371368 -3.2188280, 55.9371037 -3.2185759, 55.9364362 -3.2192427, 55.9369080 -3.2188220, 55.9662294 -3.1638763, 55.9676214 -3.1664619, 55.9762860 -3.1692979, 55.9155222 -3.2133212, 55.9172588 -3.2246527, 55.9130555 -3.2448631, 55.9134923 -3.2440172, 55.9234034 -3.2439546, 55.9015515 -3.2210483, 55.9022093 -3.2131738, 55.9126848 -3.2283598, 55.9247393 -3.2762275, 55.9362381 -3.2789309, 55.9675511 -3.1756374, 55.9341037 -3.1788197, 55.9344639 -3.1793948, 55.9338757 -3.2105970, 55.9354910 -3.2098022, 55.9354188 -3.2098186, 55.9355278 -3.2097605, 55.9364334 -3.2079099, 55.9368144 -3.2072231, 55.9372344 -3.2066228, 55.9376983 -3.2059000, 55.9780182 -3.1722292, 55.9780370 -3.1723323, 55.9780570 -3.1724415, 55.9780621 -3.1724905, 55.9782654 -3.1746803, 55.9785235 -3.1761930, 55.9786511 -3.1756543, 55.9786950 -3.1756505, 55.9787141 -3.1732727, 55.9787749 -3.1736603, 55.9787935 -3.1769111, 55.9788336 -3.1755778, 55.9788462 -3.1740536, 55.9788573 -3.1741016, 55.9789044 -3.1755354, 55.9789084 -3.1744460, 55.9474590 -3.2064804, 55.9832621 -3.2415270, 55.9834316 -3.2423711, 55.9834316 -3.2423890, 55.9836698 -3.2462331, 55.9836701 -3.2462220, 55.9836844 -3.2504406, 55.9836890 -3.2504214, 55.9837405 -3.2490546, 55.9837405 -3.2490698, 55.9524356 -3.1964223, 55.9454688 -3.1847519, 55.9567479 -3.1931126, 55.9551490 -3.1957714, 55.9553311 -3.1942954, 55.9553403 -3.1942429, 55.9553748 -3.1943211, 55.9553863 -3.1942604, 55.9289432 -3.2488889, 55.9265395 -3.2441561, 55.9358853 -3.2101222, 55.9495537 -3.1836402, 55.9038541 -3.2176307, 55.9041465 -3.2071128, 55.9109891 -3.2235171, 55.9249983 -3.2408003, 55.9265173 -3.2463462, 55.9291936 -3.2433016, 55.9313843 -3.2522107, 55.9329546 -3.2402835, 55.9078224 -3.2262252, 55.9091985 -3.2241889, 55.9095509 -3.2288170, 55.9099481 -3.2276233, 55.9113957 -3.2252868, 55.9116752 -3.2253678, 55.9692484 -3.2701169, 55.9517687 -3.2034896, 55.9032280 -3.1930251, 55.9042257 -3.1978022, 55.9071385 -3.2051046, 55.9086019 -3.2094913, 55.9090257 -3.2065112, 55.9411936 -3.1485976, 55.9505209 -3.1777619, 55.9503720 -3.1813833, 55.9504108 -3.1802868, 55.9507721 -3.1811578, 55.9465819 -3.2028447, 55.9467650 -3.2021954, 55.9486309 -3.1952308, 55.9513408 -3.1864418, 55.9514994 -3.1837738, 55.9775296 -3.2431666, 55.9434972 -3.1847056, 55.9444992 -3.1839329, 55.9459854 -3.1883969, 55.9462645 -3.1891555, 55.9449647 -3.1887877, 55.9462089 -3.1892186, 55.9453153 -3.1845999, 55.9449737 -3.1886697, 55.9759686 -3.1688891, 55.9784699 -3.1821994, 55.9072276 -3.2585733, 55.9071899 -3.2569516, 55.9083920 -3.2527955, 55.9658637 -3.1761995, 55.9570449 -3.1939224, 55.9541472 -3.1916750, 55.9438531 -3.2042371, 55.9519521 -3.2087311, 55.9528038 -3.2061494, 55.9528140 -3.2093938, 55.9532254 -3.2097569, 55.9536618 -3.2155670, 55.9536915 -3.2042720, 55.9539747 -3.2143294, 55.9542100 -3.2076372, 55.9553506 -3.2198094, 55.9554278 -3.2089861, 55.9554724 -3.2173189, 55.9554860 -3.2009332, 55.9563802 -3.2017624, 55.9572186 -3.2098642, 55.9573665 -3.1964754, 55.9585472 -3.2054534, 55.9595644 -3.1990439, 55.9599933 -3.2054953, 55.9608712 -3.2094075, 55.9611926 -3.1991203, 55.9615597 -3.1997555, 55.9617191 -3.2025890, 55.9620904 -3.1793576, 55.9281635 -3.2479491, 55.9278540 -3.2486519, 55.9379459 -3.1928989, 55.9527684 -3.2488426, 55.9512987 -3.2096416, 55.9654063 -3.1759213, 55.9796234 -3.1879513, 55.9364814 -3.1940654, 55.9091332 -3.2602393, 55.9103257 -3.2684300, 55.9116143 -3.2626993, 55.9812296 -3.1751262, 55.9812432 -3.1752913, 55.9037452 -3.2259008, 55.9037783 -3.2258512, 55.9704887 -3.1722539, 55.9697359 -3.1722727, 55.9690697 -3.1733366, 55.9690434 -3.1728767, 55.9655072 -3.1758319, 55.9599112 -3.1822027, 55.9682958 -3.1740264, 55.9679644 -3.1743435, 55.9459700 -3.1799511, 55.9459700 -3.1803320, 55.9671880 -3.2831070, 55.9691460 -3.1666762, 55.9574681 -3.1806815, 55.9598822 -3.2008315, 55.9614848 -3.1812115, 55.9610969 -3.1806925, 55.9537919 -3.1943636, 55.9520661 -3.2796118, 55.9569903 -3.2540214, 55.9682857 -3.2739342, 55.9557748 -3.2584453, 55.9620235 -3.2416435, 55.9395842 -3.2047515, 55.9395958 -3.2047474, 55.9376968 -3.2030817, 55.9489030 -3.2106596, 55.9396953 -3.1932716, 55.9575251 -3.1904112, 55.9380044 -3.1928820, 55.9264941 -3.2093621, 55.9600584 -3.1713347, 55.9471310 -3.1866144, 55.9485879 -3.1925352, 55.9371647 -3.1783812, 55.9371166 -3.1786816, 55.9373104 -3.1783920, 55.9373625 -3.1783129, 55.9362567 -3.1797890, 55.9377476 -3.1786173, 55.9507069 -3.1772921, 55.9691017 -3.1683343, 55.9077558 -3.1994418, 55.9345771 -3.1419751, 55.9210238 -3.1598869, 55.9219909 -3.1537713, 55.9174822 -3.1582168, 55.9281906 -3.1742270, 55.9191327 -3.1562193, 55.9306331 -3.1627430, 55.9172236 -3.1644150, 55.9143561 -3.1647767, 55.9145718 -3.1648438, 55.9205387 -3.1634751, 55.9159327 -3.1674277, 55.9118079 -3.1688573, 55.9629073 -3.2208615, 55.9585507 -3.1844662, 55.9583991 -3.1846137, 55.9422761 -3.1451006, 55.9327244 -3.2707029, 55.9327440 -3.2706734, 55.9292344 -3.2698484, 55.9258492 -3.2715384, 55.9271219 -3.1643833, 55.9342795 -3.1927449, 55.9074446 -3.2561802, 55.9751700 -3.1799079, 55.9765134 -3.1793029, 55.9750744 -3.1805743, 55.9763792 -3.1792419, 55.9744134 -3.1848066, 55.9744305 -3.1846747, 55.9742810 -3.1856430, 55.9743179 -3.1854057, 55.9744911 -3.1843927, 55.9746268 -3.1837751, 55.9593582 -3.1855608, 55.9596851 -3.1884394, 55.9600368 -3.1898003, 55.9435115 -3.2193949, 55.9437549 -3.2193403, 55.9453892 -3.2171020, 55.9452977 -3.2171685, 55.9462869 -3.2159227, 55.9462644 -3.2147801, 55.9466681 -3.2139844, 55.9462412 -3.2122800, 55.9460218 -3.2124627, 55.9463199 -3.2060028, 55.9462610 -3.2137192, 55.9465542 -3.2158573, 55.9464746 -3.2019795, 55.9464280 -3.2034977, 55.9486448 -3.2062281, 55.9483828 -3.2061195, 55.9474318 -3.2069644, 55.9494425 -3.2125026, 55.9443448 -3.2151223, 55.9440221 -3.2146912, 55.9485519 -3.2140339, 55.9468350 -3.2051684, 55.9469209 -3.2045658, 55.9467269 -3.2047624, 55.9485678 -3.1946201, 55.9486421 -3.1944619, 55.9489611 -3.1926806, 55.9460725 -3.1912850, 55.9457241 -3.2098787, 55.9457412 -3.2099832, 55.9459738 -3.2058563, 55.9576658 -3.1845555, 55.9428244 -3.2815918, 55.9308207 -3.2096951, 55.9444851 -3.2547877, 55.9576011 -3.1846430, 55.9655583 -3.2726116, 55.9584582 -3.1901573, 55.9406449 -3.2837782, 55.9412624 -3.2833187, 55.9254960 -3.2091940, 55.9254960 -3.2091420, 55.9254940 -3.2090630, 55.9537247 -3.1879151, 55.9498114 -3.2093822, 55.9498996 -3.2091714, 55.9503620 -3.2076707, 55.9500194 -3.2088527, 55.9506457 -3.2094956, 55.9511059 -3.2031477, 55.9495552 -3.2091699, 55.9505200 -3.2066238, 55.9506581 -3.2090223, 55.9499459 -3.2090440, 55.9504209 -3.2072119, 55.9505668 -3.2093105, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9510094 -3.2037204, 55.9498173 -3.2082904, 55.9498530 -3.2092931, 55.9499100 -3.2084201, 55.9504567 -3.2091057, 55.9505740 -3.2087140, 55.9532127 -3.1978312, 55.9534187 -3.2003464, 55.9537368 -3.1946870, 55.9537500 -3.1946096, 55.9537219 -3.1906118, 55.9415518 -3.1758352, 55.9415631 -3.1758245, 55.9415746 -3.1758137, 55.9415854 -3.1758015, 55.9408910 -3.1748387, 55.9411539 -3.1749656, 55.9412175 -3.1755933, 55.9415879 -3.1748238, 55.9377776 -3.2165048, 55.9162825 -3.2606117, 55.9743623 -3.1997016, 55.9472618 -3.1852830, 55.9688495 -3.1843180, 55.9736313 -3.2504530, 55.9582298 -3.2268150, 55.9460585 -3.1892450, 55.9429037 -3.2078542, 55.9442284 -3.2027690, 55.9431025 -3.2203832, 55.9434367 -3.2195949, 55.9398197 -3.1822531, 55.9724777 -3.2416271, 55.9463680 -3.2170383, 55.9464520 -3.2170081, 55.9460480 -3.2212644, 55.9456505 -3.2177477, 55.9472510 -3.2151012, 55.9459910 -3.2187750, 55.9468356 -3.2159630, 55.9462622 -3.2145897, 55.9460151 -3.2225209, 55.9826346 -3.1875882, 55.9470490 -3.2155230, 55.9586309 -3.1903764, 55.9460632 -3.2204482, 55.9744650 -3.2049590, 55.9471070 -3.2126300, 55.9465828 -3.2144286, 55.9458930 -3.2127420, 55.9460218 -3.2127523, 55.9462614 -3.2149075, 55.9469392 -3.2157459, 55.9468703 -3.2158788, 55.9466500 -3.2155710, 55.9248058 -3.2496194, 55.9489596 -3.2105228, 55.9494472 -3.2102130, 55.9495769 -3.2099473, 55.9504859 -3.2078999, 55.9510015 -3.2097266, 55.9514905 -3.2100788, 55.9513702 -3.2115575, 55.9460126 -3.2207351, 55.9452758 -3.2335326, 55.9552911 -3.1906311, 55.9767910 -3.1761270, 55.9457861 -3.2218053, 55.9324470 -3.2604690, 55.9447263 -3.2504267, 55.9495320 -3.2122353, 55.9505780 -3.2098210, 55.9514971 -3.2122176, 55.9508641 -3.2099881, 55.9575799 -3.2074392, 55.9580520 -3.2065578, 55.9466880 -3.2153150, 55.9591363 -3.2144382, 55.9589630 -3.2123829, 55.9589427 -3.2121340, 55.9582616 -3.2096030, 55.9581637 -3.2094698, 55.9580113 -3.2092624, 55.9582374 -3.2089867, 55.9459800 -3.2223160, 55.9585716 -3.1897695, 55.9605718 -3.2003659, 55.9580127 -3.1896007, 55.9579047 -3.1888679, 55.9578403 -3.1887677, 55.9418430 -3.2160580, 55.9524450 -3.1890880, 55.9429888 -3.2211088, 55.9439438 -3.2188704, 55.9441393 -3.2180644, 55.9436529 -3.2196006, 55.9429336 -3.2206366, 55.9425916 -3.2009298, 55.9427456 -3.2017142, 55.9429785 -3.2019828, 55.9420344 -3.2038063, 55.9418227 -3.2036511, 55.9421758 -3.2031848, 55.9416648 -3.2030441, 55.9410490 -3.2037100, 55.9454049 -3.1915247, 55.9458208 -3.1909205, 55.9460150 -3.1908920, 55.9470537 -3.1917202, 55.9473009 -3.1911302, 55.9411221 -3.2032805, 55.9426900 -3.2041310, 55.9392380 -3.2127613, 55.9374410 -3.2166040, 55.9472539 -3.1909375, 55.9403718 -3.2037308, 55.9524171 -3.1893005, 55.9460599 -3.2291804, 55.9449245 -3.2516302, 55.9447213 -3.2505249, 55.9447141 -3.2506394, 55.9447337 -3.2503518, 55.9449025 -3.2479805, 55.9373900 -3.2387570, 55.9379488 -3.2323230, 55.9460417 -3.2226604, 55.9509774 -3.2113955, 55.9499766 -3.2119592, 55.9492824 -3.2109601, 55.9473573 -3.2114254, 55.9469393 -3.2131902, 55.9456430 -3.2126550, 55.9410190 -3.2179980, 55.9397765 -3.2200019, 55.9431741 -3.2209094, 55.9399557 -3.2200027, 55.9461264 -3.2216438, 55.9512360 -3.2191980, 55.9574980 -3.2089090, 55.9586178 -3.2076404, 55.9603694 -3.2018536, 55.9604541 -3.2011738, 55.9602930 -3.2010932, 55.9593762 -3.2008365, 55.9593510 -3.2005298, 55.9579544 -3.2067393, 55.9579150 -3.2068124, 55.9577295 -3.2066473, 55.9576259 -3.2073436, 55.9572855 -3.2073687, 55.9573896 -3.2066141, 55.9573609 -3.2064305, 55.9572746 -3.2059149, 55.9572260 -3.2056240, 55.9562845 -3.2025675, 55.9537733 -3.2038799, 55.9510870 -3.2135191, 55.9501610 -3.2185543, 55.9467690 -3.2234250, 55.9471780 -3.2179270, 55.9507047 -3.1827880, 55.9510404 -3.1846922, 55.9502539 -3.1878479, 55.9475890 -3.2135160, 55.9479040 -3.2136850, 55.9578281 -3.2064585, 55.9496669 -3.1898830, 55.9584000 -3.2182300, 55.9573850 -3.2145460, 55.9612410 -3.2084510, 55.9612608 -3.1947393, 55.9228326 -3.2329688, 55.9585590 -3.1894750, 55.9572253 -3.1905901, 55.9574810 -3.1829770, 55.9607690 -3.1844930, 55.9751120 -3.1699450, 55.9538149 -3.1866462, 55.9483102 -3.1849377, 55.9370308 -3.2067360, 55.9510250 -3.1900330, 55.9497190 -3.1919630, 55.9498540 -3.1918598, 55.9462100 -3.2053390, 55.9569075 -3.1939006, 55.9530794 -3.2035262, 55.9486670 -3.1956973, 55.9446609 -3.2150190, 55.9442170 -3.2180125, 55.9545384 -3.1981123, 55.9546639 -3.1975541, 55.9545246 -3.1975013, 55.9544395 -3.1974380, 55.9542190 -3.1973239, 55.9541769 -3.1973021, 55.9540060 -3.1972137, 55.9541028 -3.1972638, 55.9540721 -3.1972479, 55.9541197 -3.1979103, 55.9536404 -3.1975985, 55.9534114 -3.1989539, 55.9530711 -3.2010501, 55.9530164 -3.2013793, 55.9526918 -3.2040299, 55.9526098 -3.2039830, 55.9525837 -3.2041424, 55.9523991 -3.2052223, 55.9523166 -3.2057181, 55.9522681 -3.2060091, 55.9522441 -3.2061536, 55.9499431 -3.2078244, 55.9448704 -3.2331329, 55.9477760 -3.2103789, 55.9457989 -3.2102876, 55.9444244 -3.2075319, 55.9443619 -3.2058261, 55.9429955 -3.2045906, 55.9430360 -3.2042420, 55.9430480 -3.2039420, 55.9429877 -3.2038987, 55.9431079 -3.2050681, 55.9432521 -3.2093489, 55.9459797 -3.2144666, 55.9498937 -3.2187915, 55.9439154 -3.2057327, 55.9511115 -3.2111311, 55.9473254 -3.2153966, 55.9465369 -3.2167495, 55.9477795 -3.2138683, 55.9479863 -3.2061624, 55.9512634 -3.2030080, 55.9517147 -3.1997452, 55.9518558 -3.1995955, 55.9524797 -3.1968606, 55.9531523 -3.1916197, 55.9500529 -3.2073534, 55.9479753 -3.2059750, 55.9576925 -3.1843665, 55.9515601 -3.2026968, 55.9527506 -3.1965698, 55.9553600 -3.1895310, 55.9516170 -3.2029580, 55.9464020 -3.2364590, 55.9507080 -3.2063304, 55.9496423 -3.2119222, 55.9496638 -3.2118615, 55.9549792 -3.1927655, 55.9498027 -3.2080511, 55.9507785 -3.2057118, 55.9513450 -3.2025708, 55.9514350 -3.2026235, 55.9516199 -3.2027318, 55.9517068 -3.2027827, 55.9518670 -3.2035606, 55.9519125 -3.2029032, 55.9553391 -3.1910036, 55.9536150 -3.1883633, 55.9536535 -3.1880989, 55.9533030 -3.1880900, 55.9523240 -3.1963700, 55.9527200 -3.1967290, 55.9516311 -3.1963503, 55.9498942 -3.1936994, 55.9499018 -3.1935768, 55.9498329 -3.1910920, 55.9496897 -3.1897241, 55.9500792 -3.1891087, 55.9497794 -3.1891002, 55.9497983 -3.1889682, 55.9498111 -3.1888791, 55.9498363 -3.1887038, 55.9498804 -3.1883969, 55.9507029 -3.1895380, 55.9506408 -3.1885864, 55.9508998 -3.1880831, 55.9510625 -3.1882551, 55.9511343 -3.1876851, 55.9505405 -3.1879922, 55.9504690 -3.1879562, 55.9504288 -3.1865438, 55.9510930 -3.1843044, 55.9508281 -3.1833677, 55.9505903 -3.1838069, 55.9504166 -3.1838232, 55.9499013 -3.1834760, 55.9483685 -3.1896671, 55.9477348 -3.1940191, 55.9480205 -3.1941463, 55.9476619 -3.1952834, 55.9475711 -3.1964625, 55.9475446 -3.1965793, 55.9474740 -3.1968911, 55.9473325 -3.1972807, 55.9473047 -3.1975703, 55.9489363 -3.2064093, 55.9475764 -3.2058313, 55.9468749 -3.2055938, 55.9465925 -3.2054865, 55.9462020 -3.2059371, 55.9459497 -3.2061088, 55.9459497 -3.2062912, 55.9459489 -3.2062161, 55.9459016 -3.2068813, 55.9524898 -3.1736491, 55.9515512 -3.2128690, 55.9588848 -3.1901234, 55.9535003 -3.2044865, 55.9526359 -3.2032013, 55.9529843 -3.2011306, 55.9535044 -3.2004011, 55.9536675 -3.2005050, 55.9539653 -3.2006949, 55.9537081 -3.2003007, 55.9540962 -3.2002450, 55.9537909 -3.1998247, 55.9538415 -3.1995340, 55.9540148 -3.1994866, 55.9544427 -3.1980662, 55.9553629 -3.1953585, 55.9538261 -3.1967340, 55.9526921 -3.1998924, 55.9514403 -3.2044562, 55.9513975 -3.2047070, 55.9561726 -3.1860291, 55.9430598 -3.2193053, 55.9403560 -3.2253563, 55.9591927 -3.2424370, 55.9593810 -3.2409668, 55.9578254 -3.2417500, 55.9572789 -3.2414496, 55.9573001 -3.2497968, 55.9577040 -3.2497565, 55.9578001 -3.2499657, 55.9551108 -3.2236774, 55.9580462 -3.2504434, 55.9573737 -3.2496483, 55.9573346 -3.2494534, 55.9086875 -3.2285621, 55.9087635 -3.2285593, 55.9461958 -3.2134368, 55.9460248 -3.2126102, 55.9476322 -3.1921629, 55.9440530 -3.2064880, 55.9424189 -3.2051434, 55.9446843 -3.1840095, 55.9545520 -3.1869140, 55.9564993 -3.1858115, 55.9764471 -3.1711406, 55.9750156 -3.1711884, 55.9817870 -3.1759060, 55.9803418 -3.1792151, 55.9804368 -3.1789769, 55.9717098 -3.1715371, 55.9449000 -3.2054670, 55.9440628 -3.2044110, 55.9448580 -3.2052730, 55.9435020 -3.2024352, 55.9432539 -3.2025680, 55.9428317 -3.2018207, 55.9429314 -3.2012879, 55.9424297 -3.2007180, 55.9457344 -3.2006330, 55.9520417 -3.2029789, 55.9515458 -3.2098937, 55.9511224 -3.2096268, 55.9491465 -3.2108241, 55.9494123 -3.2120620, 55.9518969 -3.2025598, 55.9522247 -3.1996285, 55.9521342 -3.1995774, 55.9517385 -3.2025540, 55.9521478 -3.1999911, 55.9518750 -3.2026857, 55.9570492 -3.1932499, 55.9420700 -3.2221190, 55.9421739 -3.2218963, 55.9629541 -3.2004462, 55.9613613 -3.2013758, 55.9436142 -3.2051647, 55.9450120 -3.1915042, 55.9509356 -3.1902406, 55.9512130 -3.1899433, 55.9514327 -3.1791744, 55.9518970 -3.1777525, 55.9518910 -3.1778598, 55.9521229 -3.1772750, 55.9605194 -3.1745432, 55.9544280 -3.1965564, 55.9562232 -3.1975795, 55.9630294 -3.1912727, 55.9577847 -3.1940743, 55.9622871 -3.1825372, 55.9593812 -3.1775286, 55.9514170 -3.1863190, 55.9459887 -3.2186193, 55.9484476 -3.2048878, 55.9440199 -3.1928377, 55.9467666 -3.2048667, 55.9466960 -3.2046149, 55.9524190 -3.2092630, 55.9435870 -3.1925590, 55.9427426 -3.1970190, 55.9529708 -3.1966729, 55.9529509 -3.1973404, 55.9531629 -3.1967629, 55.9524196 -3.1984036, 55.9526199 -3.1984725, 55.9533643 -3.1992326, 55.9532211 -3.1977817, 55.9541145 -3.2019669, 55.9522016 -3.2030725, 55.9538577 -3.2057618, 55.9532266 -3.2030444, 55.9600994 -3.1836563, 55.9571910 -3.2077708, 55.9470088 -3.1865074, 55.9446418 -3.1854453, 55.9438908 -3.1833205, 55.9436868 -3.1832528, 55.9463737 -3.1994809, 55.9462839 -3.2154869, 55.9463231 -3.2360054, 55.9427001 -3.2368551, 55.9510803 -3.2099400, 55.9508119 -3.2093728, 55.9506980 -3.2096052, 55.9510473 -3.2098688, 55.9509598 -3.2058075, 55.9437277 -3.2031170, 55.9514618 -3.2102379, 55.9582002 -3.1893276, 55.9579896 -3.1895662, 55.9563319 -3.1887212, 55.9581296 -3.1899414, 55.9565980 -3.1890916, 55.9583902 -3.1900711, 55.9581410 -3.1892356, 55.9575530 -3.1882786, 55.9587130 -3.1904804, 55.9407050 -3.1770755, 55.9660610 -3.1753526, 55.9650007 -3.1762651, 55.9628476 -3.1784512, 55.9695931 -3.1723910, 55.9675676 -3.1741203, 55.9613719 -3.1803838, 55.9585145 -3.1835988, 55.9555659 -3.1887444, 55.9551846 -3.1885010, 55.9555428 -3.1890343, 55.9547780 -3.1878473, 55.9554986 -3.1892850, 55.9554159 -3.1897540, 55.9556173 -3.1925320, 55.9552824 -3.1886051, 55.9550127 -3.1965360, 55.9588948 -3.2226026, 55.9588367 -3.2230381, 55.9540378 -3.1993360, 55.9429686 -3.2825386, 55.9444997 -3.2050505, 55.9454499 -3.2050290, 55.9398717 -3.2039988, 55.9446523 -3.2044338, 55.9462626 -3.2131325, 55.9416940 -3.2014772, 55.9416091 -3.2031920, 55.9423736 -3.2037017, 55.9433906 -3.2033709, 55.9407524 -3.2038350, 55.9416779 -3.2026669, 55.9416673 -3.2032137, 55.9389981 -3.2114924, 55.9424514 -3.2039522, 55.9265283 -3.2084003, 55.9431477 -3.2092431, 55.9604656 -3.1823666, 55.9603525 -3.1825331, 55.9462802 -3.2152844, 55.9370625 -3.2366340, 55.9460303 -3.2165960, 55.9371077 -3.2348958, 55.9375068 -3.2343238, 55.9374269 -3.2345024, 55.9457249 -3.2172529, 55.9339030 -3.2104192, 55.9277517 -3.2091678, 55.9368800 -3.2378130, 55.9399617 -3.1815162, 55.9526370 -3.1734364, 55.9129439 -3.1781448, 55.9735700 -3.1770333, 55.9764377 -3.1660066, 55.9773601 -3.2412136, 55.9775460 -3.2409559, 55.9589778 -3.2242327, 55.9471241 -3.2018386, 55.9567573 -3.1568591, 55.9472046 -3.1869088, 55.9643969 -3.1550074, 55.9755855 -3.1668607, 55.9524631 -3.1889421, 55.9419257 -3.2048191, 55.9417451 -3.2041258, 55.9409114 -3.2097700, 55.9448531 -3.2027015, 55.9449462 -3.2026298, 55.9450377 -3.2025610, 55.9471998 -3.1971218, 55.9472163 -3.1970651, 55.9472459 -3.1969515, 55.9376674 -3.2169124, 55.9375217 -3.2165181, 55.9430311 -3.2839568, 55.9678281 -3.2362601, 55.9782301 -3.1817185, 55.9709053 -3.1720004, 55.9755743 -3.1668014, 55.9428019 -3.2845529, 55.9427523 -3.2832346, 55.9427891 -3.2843330, 55.9426584 -3.2803285, 55.9424714 -3.2803701, 55.9421898 -3.2791792, 55.9427331 -3.2828068, 55.9513163 -3.2950780, 55.9512626 -3.2960170, 55.9428432 -3.2880774, 55.9430772 -3.2879515, 55.9429213 -3.2881096, 55.9410736 -3.2842578, 55.9656426 -3.2745290, 55.9417354 -3.2158291, 55.9414320 -3.2180926, 55.9382505 -3.1916117, 55.9275226 -3.2095127, 55.9748738 -3.2379781, 55.9561231 -3.1987844, 55.9391841 -3.2128654, 55.9751211 -3.1634618, 55.9704606 -3.1709009, 55.9235220 -3.1748267, 55.9234436 -3.1750692, 55.9233856 -3.1748328, 55.9431786 -3.2083293, 55.9398684 -3.2196073, 55.9400581 -3.2188980, 55.9407826 -3.2168911, 55.9432142 -3.2138092, 55.9398220 -3.2197803, 55.9589932 -3.2102545, 55.9592742 -3.2136077, 55.9582132 -3.2095372, 55.9592301 -3.2130079, 55.9589560 -3.2081809, 55.9595314 -3.2070282, 55.9463571 -3.2082808, 55.9480934 -3.2060409, 55.9497597 -3.2074169, 55.9514814 -3.2042156, 55.9497095 -3.2073063, 55.9514958 -3.2041313, 55.9504340 -3.1780145, 55.9510376 -3.1777222, 55.9181892 -3.2127084, 55.9737983 -3.1644035, 55.9231651 -3.2343395, 55.9351263 -3.1792596, 55.9428222 -3.1894552, 55.9430175 -3.1898549, 55.9462604 -3.1881758, 55.9396572 -3.1699848, 55.9400291 -3.1697303, 55.9413456 -3.1835248, 55.9402730 -3.1715946, 55.9526606 -3.2018469, 55.9472291 -3.1962216, 55.9530272 -3.1892542, 55.9486923 -3.1882174, 55.9477347 -3.1956994, 55.9497047 -3.1880533, 55.9495157 -3.1879514, 55.9404684 -3.1808980, 55.9504304 -3.2083735, 55.9534027 -3.1920297, 55.9635396 -3.1950865, 55.9590719 -3.1912520, 55.9583336 -3.2079185, 55.9540290 -3.2007355, 55.9544769 -3.1974573, 55.9539860 -3.1972034, 55.9494269 -3.1858448, 55.9502517 -3.1806273, 55.9504584 -3.1859540, 55.9512562 -3.1805063, 55.9528901 -3.1862028, 55.9528944 -3.1767101, 55.9539319 -3.1873789, 55.9561721 -3.1565201, 55.9420361 -3.2670729, 55.9471692 -3.2089134, 55.9445564 -3.2071394, 55.9462004 -3.1850058, 55.9569349 -3.1875427, 55.9700768 -3.1718970, 55.9379594 -3.1925477, 55.9364386 -3.1946827, 55.9370518 -3.2026703, 55.9437069 -3.1924656, 55.9348055 -3.1945667, 55.9456119 -3.1903588, 55.9381931 -3.1953331, 55.9348402 -3.1942906, 55.9351301 -3.1942645, 55.9436795 -3.2029234, 55.9385199 -3.1950385, 55.9385854 -3.1951941, 55.9383344 -3.1929849, 55.9353447 -3.1944175, 55.9459525 -3.2060165, 55.9451633 -3.2049525, 55.9392818 -3.1963912, 55.9376070 -3.1783432, 55.9383368 -3.1931748, 55.9361196 -3.1946362, 55.9384241 -3.1975168, 55.9379608 -3.1783021, 55.9415183 -3.1817519, 55.9267200 -3.2093466, 55.9432724 -3.2018829, 55.9486091 -3.1930739, 55.9485570 -3.1935392, 55.9481394 -3.1916619, 55.9575992 -3.2083598, 55.9570070 -3.1853290, 55.9561918 -3.1852745, 55.9473239 -3.1974729, 55.9474125 -3.1971623, 55.9475008 -3.1967728, 55.9478313 -3.1953377, 55.9479185 -3.1950739, 55.9479678 -3.1948846, 55.9492026 -3.1944624, 55.9495199 -3.1939483, 55.9468275 -3.1914896, 55.9488466 -3.1866449, 55.9487847 -3.1860065, 55.9438771 -3.2190360, 55.9414085 -3.2235025, 55.9524023 -3.1867211, 55.9555053 -3.1853840, 55.9521101 -3.1881430, 55.9525000 -3.1872298, 55.9466587 -3.2084167, 55.9478903 -3.1915085, 55.9459447 -3.1909020, 55.9478547 -3.1881410, 55.9486424 -3.1865786, 55.9496783 -3.1871360, 55.9485947 -3.1945597, 55.9484900 -3.1938871, 55.9520969 -3.1883010, 55.9486315 -3.1920775, 55.9472830 -3.1916106, 55.9457476 -3.1909342, 55.9485463 -3.1864684, 55.9483926 -3.1950195, 55.9485587 -3.1943530, 55.9480207 -3.1915820, 55.9460305 -3.1922264, 55.9483248 -3.1864306, 55.9492997 -3.1869455, 55.9484218 -3.1951206, 55.9485926 -3.1942539, 55.9476976 -3.1919549, 55.9509189 -3.1904398, 55.9478483 -3.1913274, 55.9496956 -3.1870785, 55.9462614 -3.2144247, 55.9426513 -3.2033463, 55.9561166 -3.2020559, 55.9575951 -3.1993135, 55.9560603 -3.1927566, 55.9494442 -3.2078565, 55.9522731 -3.2016642, 55.9530413 -3.1976567, 55.9423834 -3.1891736, 55.9577513 -3.2066055, 55.9539831 -3.1996939, 55.9601534 -3.2010233, 55.9474107 -3.1857005, 55.9504170 -3.1756059, 55.9505168 -3.1753619, 55.9519673 -3.1889358, 55.9520301 -3.1896005, 55.9521145 -3.1891397, 55.9245851 -3.2217825, 55.9664930 -3.1948692, 55.9659495 -3.1909016, 55.9369709 -3.2238338, 55.9322096 -3.2283435, 55.9074156 -3.2563499, 55.9073527 -3.2575753, 55.9423719 -3.1449189, 55.9430156 -3.1499440, 55.9431294 -3.1482150, 55.9433496 -3.1499648, 55.9434845 -3.1482740, 55.9442758 -3.1483804, 55.9447373 -3.1490083, 55.9396025 -3.1913584, 55.9352245 -3.2129869, 55.9732340 -3.1870517, 55.9431483 -3.2208634, 55.9431533 -3.2208722, 55.9431672 -3.2208971, 55.9444914 -3.2039187, 55.9454470 -3.2056810, 55.9455097 -3.2056957, 55.9442841 -3.1970931, 55.9453214 -3.2056259, 55.9383523 -3.2265410, 55.9412518 -3.2237478, 55.9391150 -3.2260666, 55.9431598 -3.2208839, 55.9588831 -3.2114011, 55.9650310 -3.1952624, 55.9445881 -3.2014053, 55.9421366 -3.1818857, 55.9533521 -3.1936660, 55.9388452 -3.1790659, 55.9452194 -3.1845036, 55.9350508 -3.1940011, 55.9585188 -3.1644249, 55.9593563 -3.2549832, 55.9601436 -3.2558120, 55.9603846 -3.2565330, 55.9604422 -3.2566980, 55.9748372 -3.2381839, 55.9751724 -3.2380439, 55.9711706 -3.2421740, 55.9751875 -3.2384831, 55.9712345 -3.2422923, 55.9430340 -3.1847582, 55.9431510 -3.1850183, 55.9446444 -3.1969562, 55.9437264 -3.1923238, 55.9428649 -3.2112864, 55.9393929 -3.2264816, 55.9405357 -3.2246618, 55.9437303 -3.2113198, 55.9517703 -3.2028837, 55.9450561 -3.1854467, 55.9454644 -3.1843039, 55.9447791 -3.1851557, 55.9447317 -3.1852668, 55.9446739 -3.1853850, 55.9506503 -3.1887550, 55.9586760 -3.1904335, 55.9459152 -3.2048753, 55.9457110 -3.2046766, 55.9622313 -3.1960833, 55.9488399 -3.2138338, 55.9509095 -3.2095661, 55.9506309 -3.2061083, 55.9511164 -3.2060639, 55.9544956 -3.1996255, 55.9545750 -3.1991152, 55.9525280 -3.2044479, 55.9524770 -3.2041438, 55.9533167 -3.2002814, 55.9533627 -3.2968088, 55.9534681 -3.2961183, 55.9534317 -3.2962880, 55.9419274 -3.2677863, 55.9534304 -3.2964763, 55.9512581 -3.2961392, 55.9534512 -3.2963903, 55.9379028 -3.1838572, 55.9385188 -3.1804921, 55.9440195 -3.1801845, 55.9767916 -3.1745800, 55.9379280 -3.1997215, 55.9655439 -3.2732183, 55.9656127 -3.2709323, 55.9651310 -3.2741321, 55.9655924 -3.2711422, 55.9653338 -3.2728138, 55.9655262 -3.2738894, 55.9656260 -3.2705743, 55.9661413 -3.2745340, 55.9651286 -3.2696496, 55.9655823 -3.2732115, 55.9651389 -3.2742406, 55.9526548 -3.1971889, 55.9537668 -3.1902693, 55.9536977 -3.1912623, 55.9521730 -3.1918404, 55.9226881 -3.2490752, 55.9251539 -3.2458905, 55.9248346 -3.2543275, 55.9252669 -3.2596328, 55.9374976 -3.1806164, 55.9389691 -3.1803219, 55.9372983 -3.1808444, 55.9395810 -3.1916680, 55.9382960 -3.1915943, 55.9437949 -3.1828597, 55.9415966 -3.1785656, 55.9449358 -3.1841532, 55.9419979 -3.1791165, 55.9443629 -3.1809005, 55.9457233 -3.1826212, 55.9403689 -3.1759804, 55.9578375 -3.1855691, 55.9577188 -3.1854711, 55.9570718 -3.1867391, 55.9573525 -3.1857881, 55.9577559 -3.1854347, 55.9573946 -3.1857377, 55.9578561 -3.1853362, 55.9572831 -3.1858711, 55.9581118 -3.1850848, 55.9574938 -3.1856190, 55.9582219 -3.1849767, 55.9576798 -3.1858665, 55.9248045 -3.2100047, 55.9247025 -3.2100678, 55.9274756 -3.2091201, 55.9269189 -3.2094159, 55.9289228 -3.2092688, 55.9254653 -3.2096301, 55.9252500 -3.2096757, 55.9269727 -3.2090631, 55.9290803 -3.2097412, 55.9259390 -3.2095229, 55.9280620 -3.2092020, 55.9246481 -3.2100800, 55.9320058 -3.2097519, 55.9244481 -3.2103373, 55.9294664 -3.2094139, 55.9294013 -3.2094010, 55.9267933 -3.2094073, 55.9293168 -3.2093923, 55.9262463 -3.2095051, 55.9261281 -3.2094874, 55.9286670 -3.2092547, 55.9245093 -3.2096867, 55.9549491 -3.1518173, 55.9549237 -3.1446490, 55.9549717 -3.1475017, 55.9554516 -3.1404952, 55.9381420 -3.2180332, 55.9693226 -3.1726044, 55.9608511 -3.1806444, 55.9785772 -3.1680183, 55.9701325 -3.1699531, 55.9653751 -3.1766360, 55.9703622 -3.1822317, 55.9759825 -3.1825687, 55.9797482 -3.1979763, 55.9073767 -3.2581589, 55.9075931 -3.2558164, 55.9431400 -3.2080436, 55.9625044 -3.2362710, 55.9627903 -3.2341275, 55.9581259 -3.1898042, 55.9581019 -3.1901113, 55.9629073 -3.1944999, 55.9514989 -3.2098689, 55.9572217 -3.1988976, 55.9569734 -3.2030163, 55.9535853 -3.1955773, 55.9263143 -3.2084849, 55.9174952 -3.2773520, 55.9375981 -3.2260815, 55.9378921 -3.2318406, 55.9391368 -3.2261256, 55.9334605 -3.2453422, 55.9414710 -3.2036216, 55.9295687 -3.1756519, 55.9353379 -3.1982447, 55.9240780 -3.1729198, 55.9333823 -3.1800372, 55.9269676 -3.1644151, 55.9264292 -3.1646478, 55.9275049 -3.1644260, 55.9275653 -3.1640491, 55.9275714 -3.1644217, 55.9274305 -3.1643195, 55.9274977 -3.1640447, 55.9242094 -3.1728587, 55.9239552 -3.1723571, 55.9240756 -3.1746808, 55.9241838 -3.1735301, 55.9230650 -3.1714407, 55.9232656 -3.1716767, 55.9542485 -3.1780183, 55.9483648 -3.2095727, 55.9486281 -3.2213235, 55.9606193 -3.1813095, 55.9657504 -3.1756144, 55.9682374 -3.1740770, 55.9634187 -3.1784171, 55.9661173 -3.1752952, 55.9683279 -3.1734427, 55.9749611 -3.1671987, 55.9637290 -3.1774461, 55.9660965 -3.1759111, 55.9667902 -3.1747478, 55.9725422 -3.1752884, 55.9644870 -3.1767286, 55.9684920 -3.1733359, 55.9621788 -3.1792688, 55.9456613 -3.2057187, 55.9462480 -3.2126362, 55.9736032 -3.1729794, 55.9375948 -3.1784176, 55.9371960 -3.1779642, 55.9312746 -3.1719521, 55.9338124 -3.1784664, 55.9492753 -3.1855034, 55.9473523 -3.1859232, 55.9410964 -3.1808815, 55.9375777 -3.1779460, 55.9358754 -3.1760269, 55.9313945 -3.1717080, 55.9269436 -3.1736547, 55.9345630 -3.1791442, 55.9356662 -3.2012277, 55.9383304 -3.1790799, 55.9378124 -3.1781642, 55.9316186 -3.1716761, 55.9354709 -3.1798259, 55.9504193 -3.1866153, 55.9519102 -3.2244910, 55.9573976 -3.1618135, 55.9506617 -3.1888466, 55.9490741 -3.1893997, 55.9492048 -3.1931875, 55.9529899 -3.1973604, 55.9528284 -3.1902144, 55.9527657 -3.1913036, 55.9567716 -3.1807817, 55.9533414 -3.1913502, 55.9525962 -3.1906138, 55.9428288 -3.1846229, 55.9458839 -3.1909124, 55.9456783 -3.1909904, 55.9463053 -3.1838351, 55.9849796 -3.1929699, 55.9241951 -3.2516849, 55.9235770 -3.2506294, 55.9241147 -3.2517815, 55.9268426 -3.1666054, 55.9323952 -3.2102340, 55.9271775 -3.2122387, 55.9406634 -3.2170179, 55.9321089 -3.2101997, 55.9309744 -3.2100917, 55.9308794 -3.2100746, 55.9217848 -3.2112290, 55.9225263 -3.2116137, 55.9193505 -3.1670289, 55.9198686 -3.1673390, 55.9500237 -3.1859641, 55.9522020 -3.2008125, 55.9437654 -3.2187545, 55.9504916 -3.1861886, 55.9506853 -3.1853773, 55.9513815 -3.1997735, 55.9513880 -3.1997267, 55.9514184 -3.1995207, 55.9514207 -3.1994931, 55.9517524 -3.1953405, 55.9517542 -3.1953203, 55.9517756 -3.1951610, 55.9517804 -3.1951206, 55.9517840 -3.1950856, 55.9517917 -3.1950229, 55.9517953 -3.1949985, 55.9517994 -3.1949645, 55.9518036 -3.1949390, 55.9518048 -3.1949146, 55.9518083 -3.1948806, 55.9518137 -3.1948519, 55.9518190 -3.1947903, 55.9518220 -3.1947584, 55.9518274 -3.1947297, 55.9518298 -3.1947042, 55.9518303 -3.1953437, 55.9518595 -3.1951780, 55.9518708 -3.1951291, 55.9518910 -3.1950091, 55.9518946 -3.1942642, 55.9518982 -3.1942423, 55.9518987 -3.1949751, 55.9519025 -3.1942205, 55.9519061 -3.1941986, 55.9519071 -3.1949177, 55.9519083 -3.1941742, 55.9519148 -3.1941472, 55.9519169 -3.1941292, 55.9519234 -3.1941009, 55.9519350 -3.1947287, 55.9519479 -3.1939300, 55.9519536 -3.1938927, 55.9519594 -3.1938606, 55.9519651 -3.1938272, 55.9519673 -3.1938105, 55.9519709 -3.1937809, 55.9519730 -3.1937616, 55.9519772 -3.1945152, 55.9519820 -3.1944854, 55.9519831 -3.1937064, 55.9519867 -3.1936768, 55.9519909 -3.1944302, 55.9519932 -3.1936370, 55.9519969 -3.1943866, 55.9519982 -3.1935997, 55.9520083 -3.1935406, 55.9520094 -3.1942932, 55.9520141 -3.1942687, 55.9520165 -3.1942528, 55.9520195 -3.1942305, 55.9520205 -3.1934686, 55.9520242 -3.1942103, 55.9520256 -3.1934287, 55.9520278 -3.1941859, 55.9520328 -3.1933979, 55.9520385 -3.1933568, 55.9520464 -3.1932976, 55.9520498 -3.1940914, 55.9520534 -3.1940627, 55.9520544 -3.1932501, 55.9520575 -3.1940329, 55.9520580 -3.1932257, 55.9520617 -3.1940128, 55.9520644 -3.1931845, 55.9520781 -3.1931100, 55.9522180 -3.2035286, 55.9522476 -3.2035315, 55.9522761 -3.2035428, 55.9523007 -3.1932461, 55.9523075 -3.1931928, 55.9523702 -3.1928516, 55.9523787 -3.1927914, 55.9524973 -3.1927038, 55.9525369 -3.1928318, 55.9525391 -3.1927678, 55.9638490 -3.2091504, 55.9389663 -3.2013275, 55.9700855 -3.1735476, 55.9701547 -3.1858393, 55.9514046 -3.2116423, 55.9413339 -3.2710077, 55.9413445 -3.2708146, 55.9710599 -3.2100066, 55.9711012 -3.2093205, 55.9629763 -3.2004815, 55.9710811 -3.2096935, 55.9342382 -3.1671304, 55.9443702 -3.1853406, 55.9396263 -3.1829720, 55.9407158 -3.1849880, 55.9409652 -3.1851060, 55.9411294 -3.1853959, 55.9409378 -3.1851043, 55.9409212 -3.1850865, 55.9408927 -3.1851058, 55.9408824 -3.1851412, 55.9250719 -3.2093337, 55.9695710 -3.1711010, 55.9581122 -3.1717750, 55.9587969 -3.1719078, 55.9593630 -3.1715405, 55.9597638 -3.1717472, 55.9596608 -3.1714218, 55.9609479 -3.1710198, 55.9625299 -3.1711547, 55.9632270 -3.1710142, 55.9643430 -3.1707813, 55.9645162 -3.1702580, 55.9685365 -3.1680214, 55.9672024 -3.1745196, 55.9662045 -3.1758253, 55.9536869 -3.1905900, 55.9699452 -3.1597683, 55.9691782 -3.1658280, 55.9523009 -3.1919415, 55.9337398 -3.1670223, 55.9332168 -3.1662616, 55.9330352 -3.1660131, 55.9332806 -3.1663576, 55.9489972 -3.1907968, 55.9496736 -3.2095516, 55.9466096 -3.2157282, 55.9489839 -3.1929807, 55.9549137 -3.2859373, 55.9269556 -3.1843910, 55.9555761 -3.2863843, 55.9406804 -3.1723240, 55.9550663 -3.1537383, 55.9277228 -3.2305307, 55.9338258 -3.2369899, 55.9437419 -3.2035084, 55.9169756 -3.2120428, 55.9548088 -3.1927863, 55.9520842 -3.1995492, 55.9541892 -3.2015393, 55.9532255 -3.2070146, 55.9427851 -3.2011908, 55.9273784 -3.1875336, 55.9273713 -3.1874512, 55.9441079 -3.1919941, 55.9265863 -3.2092898, 55.9503190 -3.1916579, 55.9469467 -3.1868746, 55.9469811 -3.1866713, 55.9349914 -3.1790260, 55.9509401 -3.1790287, 55.9527199 -3.1794014, 55.9632358 -3.1796142, 55.9501695 -3.1909428, 55.9274324 -3.1996630, 55.9310201 -3.2640394, 55.9303417 -3.2637536, 55.9303636 -3.2638502, 55.9305298 -3.2635743, 55.9308144 -3.2639192, 55.9018528 -3.2249445, 55.9458278 -3.1977595, 55.9357289 -3.2103587, 55.9426782 -3.2016234, 55.9459543 -3.2110196, 55.9490200 -3.2103883, 55.9593280 -3.2143392, 55.9545977 -3.1418305, 55.9374032 -3.1711512, 55.9392787 -3.1786578, 55.9392916 -3.1784800, 55.9410201 -3.1806656, 55.9409384 -3.1805218, 55.9435127 -3.1836307, 55.9446441 -3.1839145, 55.9353259 -3.1974274, 55.9356823 -3.2014008, 55.9372592 -3.2021206, 55.9432337 -3.2066617, 55.9716423 -3.1733651, 55.9780340 -3.1804425, 55.9803312 -3.1788000, 55.9484950 -3.1869711, 55.9485719 -3.1869309, 55.9429165 -3.1831794, 55.9463406 -3.1997703, 55.9450154 -3.1980120, 55.9750142 -3.2192282, 55.9506808 -3.1887592, 55.9700986 -3.1698502, 55.9702196 -3.1702168, 55.9752558 -3.1806246, 55.9750583 -3.1806968, 55.9753808 -3.1803118, 55.9273555 -3.2742181, 55.9276617 -3.2736646, 55.9277478 -3.2723148, 55.9278153 -3.2730433, 55.9312295 -3.1720873, 55.9312185 -3.1718146, 55.9367281 -3.2073693, 55.9194696 -3.2656157, 55.9359755 -3.1801084, 55.9344353 -3.2125210, 55.9239739 -3.2513488, 55.9265097 -3.2760604, 55.9268770 -3.2740426, 55.9340161 -3.1746636, 55.9520998 -3.1898519, 55.9522424 -3.1890178, 55.9467924 -3.1855561, 55.9428529 -3.2085302, 55.9438281 -3.2186053, 55.9457016 -3.1899747, 55.9606571 -3.2015356, 55.9622495 -3.1990119, 55.9436603 -3.2189402, 55.9428747 -3.2225218, 55.9441478 -3.2185498, 55.9453485 -3.2171316, 55.9528443 -3.2826346, 55.9525739 -3.2905955, 55.9269823 -3.1640067, 55.9275143 -3.1636040, 55.9269746 -3.1638464, 55.9258469 -3.1648168, 55.9269718 -3.1636040, 55.9536039 -3.2004645, 55.9541733 -3.1959554, 55.9539972 -3.1945597, 55.9557737 -3.1922262, 55.9486496 -3.1940701, 55.9479383 -3.1949977, 55.9471021 -3.1971869, 55.9459359 -3.2044651, 55.9410985 -3.2183716, 55.9417528 -3.2165088, 55.9230518 -3.1726728, 55.9233383 -3.1720153, 55.9229568 -3.2110453, 55.9224147 -3.2108712, 55.9224536 -3.2108475, 55.9624754 -3.2326403, 55.9531172 -3.2042505, 55.9547774 -3.2196877, 55.9610228 -3.2289430, 55.9771785 -3.2459884, 55.9272641 -3.2496416, 55.9503933 -3.1777718, 55.9611416 -3.1627621, 55.9710220 -3.1729438, 55.9484210 -3.1872643, 55.9442196 -3.1823211, 55.9487715 -3.1838332, 55.9310070 -3.1625786, 55.9310400 -3.1625989, 55.9285398 -3.2100476, 55.9503683 -3.2078227, 55.9492302 -3.1861131, 55.9464428 -3.2144326, 55.9302432 -3.1758973, 55.9302956 -3.1759280, 55.9305753 -3.1761248, 55.9303422 -3.1759669, 55.9305617 -3.1761991, 55.9149038 -3.1653059, 55.9149515 -3.1653569, 55.9192762 -3.1670567, 55.9190764 -3.1840963, 55.9275143 -3.1636040, 55.9269718 -3.1636040, 55.9448310 -3.1949994, 55.9447936 -3.1961912, 55.9446376 -3.1965778, 55.9269823 -3.1640067, 55.9269746 -3.1638464, 55.9445589 -3.1947495, 55.9444142 -3.1965059, 55.9258509 -3.1647719, 55.9447377 -3.1971839, 55.9442766 -3.1978649, 55.9590496 -3.2185241, 55.9634063 -3.1905331, 55.9570806 -3.1866874, 55.9579863 -3.1811608, 55.9419851 -3.1817354, 55.9420181 -3.1817682, 55.9426269 -3.1823902, 55.9441244 -3.1834199, 55.9436319 -3.1832335, 55.9394450 -3.1794906, 55.9429144 -3.1826352, 55.9449915 -3.1837960, 55.9387155 -3.1789608, 55.9430993 -3.2022474, 55.9432017 -3.2024329, 55.9416804 -3.2026036, 55.9324266 -3.1585275, 55.9396108 -3.1802505, 55.9226141 -3.1712965, 55.9441352 -3.1838172, 55.9402010 -3.1806961, 55.9430010 -3.1832231, 55.9405968 -3.1809949, 55.9417832 -3.1819934, 55.9389299 -3.1796142, 55.9422498 -3.1824651, 55.9422007 -3.1824177, 55.9407127 -3.1810825, 55.9416801 -3.1819013, 55.9418646 -3.1820790, 55.9566001 -3.1617669, 55.9485654 -3.2238711, 55.9601987 -3.1784502, 55.9417129 -3.1849464, 55.9417884 -3.1851916, 55.9418282 -3.1853346, 55.9418526 -3.1852528, 55.9418744 -3.1849589, 55.9418899 -3.1847817, 55.9418905 -3.1855192, 55.9419227 -3.1854387, 55.9420262 -3.1854659, 55.9421747 -3.1855648, 55.9497766 -3.1880920, 55.9412750 -3.1446800, 55.9415424 -3.1458664, 55.9381006 -3.2918884, 55.9521152 -3.1889313, 55.9348643 -3.1686663, 55.9461675 -3.2083866, 55.9603728 -3.2011331, 55.9600158 -3.2009544, 55.9599868 -3.2009399, 55.9456493 -3.2062730, 55.9330745 -3.2607364, 55.9416959 -3.1484162, 55.9207513 -3.1600951, 55.9565253 -3.1867411, 55.9382910 -3.1812348, 55.9387708 -3.1815664, 55.9393704 -3.1819547, 55.9386998 -3.1815256, 55.9391687 -3.1818314, 55.9391994 -3.1818509, 55.9418959 -3.1837485, 55.9418211 -3.1837096, 55.9520027 -3.2062005, 55.9523984 -3.2038646, 55.9530497 -3.2000438, 55.9534470 -3.1976948, 55.9535975 -3.1968237, 55.9438526 -3.1964947, 55.9574672 -3.1996888, 55.9558685 -3.2023407, 55.9357235 -3.2103787, 55.9564824 -3.2020734, 55.9251361 -3.2602340, 55.9254914 -3.2593484, 55.9226813 -3.2869674, 55.9226804 -3.2865306, 55.9244531 -3.2772357, 55.9457070 -3.2036262, 55.9617178 -3.1799032, 55.9609525 -3.1843888, 55.9718740 -3.2631817, 55.9726124 -3.2667334, 55.9447090 -3.1977550, 55.9379590 -3.1812949, 55.9562984 -3.1984034, 55.9562823 -3.1983948, 55.9511467 -3.1887459, 55.9491345 -3.1940862, 55.9418000 -3.1789399, 55.9460012 -3.2184457, 55.9354932 -3.2368783, 55.9811288 -3.1900190, 55.9504645 -3.1888468, 55.9512470 -3.1890625, 55.9561109 -3.1927794, 55.9594281 -3.2190345, 55.9592101 -3.2187091, 55.9594112 -3.2188445, 55.9591813 -3.2186897, 55.9592873 -3.2187611, 55.9591452 -3.2145692, 55.9614502 -3.1995923, 55.9557019 -3.1925998, 55.9506454 -3.1833436, 55.9501282 -3.1886800, 55.9492040 -3.1911503, 55.9501474 -3.1919776, 55.9501671 -3.1923382, 55.9590552 -3.1913244, 55.9504193 -3.2001988, 55.9505097 -3.1997700, 55.9527128 -3.2015822, 55.9619626 -3.1978807, 55.9575704 -3.1997457, 55.9563641 -3.1858503, 55.9530844 -3.1892765, 55.9735019 -3.1681649, 55.9597144 -3.1824451, 55.9584764 -3.1835758, 55.9673363 -3.2476441, 55.9592778 -3.1901889, 55.9425986 -3.2065382, 55.9480934 -3.1947062, 55.9375231 -3.2086299, 55.9611799 -3.1900622, 55.9475726 -3.1917992, 55.9282591 -3.2096099, 55.9443966 -3.1836641, 55.9328277 -3.2102719, 55.9563144 -3.1853375, 55.9563910 -3.1855135, 55.9560587 -3.1853594, 55.9559381 -3.1856471, 55.9780598 -3.1805503, 55.9782204 -3.1808990, 55.9387622 -3.1734552, 55.9387870 -3.1735062, 55.9388074 -3.1735482, 55.9388275 -3.1735961, 55.9389888 -3.1717191, 55.9390958 -3.1739542, 55.9396811 -3.1731682, 55.9400456 -3.1761228, 55.9408960 -3.1768412, 55.9565748 -3.1857636, 55.9542906 -3.1861464, 55.9604516 -3.1823872, 55.9605594 -3.1822284, 55.9613996 -3.1820673, 55.9603660 -3.1816080, 55.9606880 -3.1810699, 55.9369677 -3.2108383, 55.9500057 -3.2078391, 55.9492651 -3.1928568, 55.9492681 -3.1928747, 55.9532061 -3.1907837, 55.9557574 -3.1923186, 55.9544405 -3.1913711, 55.9545361 -3.1914287, 55.9539327 -3.1863517, 55.9457035 -3.2045586, 55.9595875 -3.1826332, 55.9595195 -3.1827244, 55.9607917 -3.1806186, 55.9505000 -3.1893565, 55.9509718 -3.1888797, 55.9509023 -3.1888514, 55.9602934 -3.1864558, 55.9580853 -3.1891489, 55.9525959 -3.1925077, 55.9506624 -3.1904103, 55.9507033 -3.1908798, 55.9511065 -3.1889687, 55.9281900 -3.2092341, 55.9275755 -3.2091498, 55.9219280 -3.1788973, 55.9492455 -3.1893451, 55.9498216 -3.1888060, 55.9456721 -3.2183737, 55.9580202 -3.1851749, 55.9595167 -3.1836388, 55.9375402 -3.2341841, 55.9374313 -3.2336362, 55.9383738 -3.2308953, 55.9384149 -3.2307759, 55.9375260 -3.2342477, 55.9368627 -3.2362988, 55.9377385 -3.2338819, 55.9518891 -3.1996221, 55.9520193 -3.2031623, 55.9571270 -3.1879784, 55.9569058 -3.1873560, 55.9575859 -3.1880531, 55.9489093 -3.1872526, 55.9489961 -3.1873020, 55.9497912 -3.1875398, 55.9469260 -3.1971063, 55.9468711 -3.1973098, 55.9468419 -3.1974179, 55.9477216 -3.1942184, 55.9498654 -3.1872300, 55.9499346 -3.1872649, 55.9495368 -3.1870648, 55.9366262 -3.2789069, 55.9504575 -3.1842655, 55.9495411 -3.1835954, 55.9505080 -3.1843266, 55.9496224 -3.1870411, 55.9503520 -3.1853604, 55.9503997 -3.1842260, 55.9490417 -3.1857303, 55.9566721 -3.1719836, 55.9551528 -3.1962671, 55.9506736 -3.1858277, 55.9506040 -3.1855672, 55.9505002 -3.1861418, 55.9504052 -3.1874662, 55.9504159 -3.1874711, 55.9504267 -3.1874760, 55.9504373 -3.1874809, 55.9332627 -3.2293915, 55.9431451 -3.1776866, 55.9498761 -3.1930603, 55.9499058 -3.1934663, 55.9498145 -3.1930381, 55.9508603 -3.1830939, 55.9486873 -3.1939415, 55.9663705 -3.1750858, 55.9646101 -3.1766025, 55.9695051 -3.1724684, 55.9692540 -3.1726808, 55.9659991 -3.1754152, 55.9513595 -3.2114694, 55.9503586 -3.2093043, 55.9489892 -3.2104514, 55.9509410 -3.2098198, 55.9443540 -3.2014790, 55.9424111 -3.2032571, 55.9428546 -3.2034153, 55.9410667 -3.2032847, 55.9408607 -3.2037023, 55.9509436 -3.1826714, 55.9511264 -3.1815271, 55.9485211 -3.1937338, 55.9457049 -3.2017505, 55.9494976 -3.1832041, 55.9493407 -3.1826552, 55.9445230 -3.1852101, 55.9342354 -3.2104629, 55.9308204 -3.2100640, 55.9519877 -3.1777932, 55.9221514 -3.1535849, 55.9216610 -3.1548109, 55.9221123 -3.1536690, 55.9219920 -3.1539768, 55.9218556 -3.1543133, 55.9218887 -3.1542292, 55.9216028 -3.1545854, 55.9217192 -3.1545460, 55.9217490 -3.1545148, 55.9220531 -3.1536922, 55.9512729 -3.2953795, 55.9508519 -3.2915917, 55.9508650 -3.2918021, 55.9510584 -3.2907423, 55.9511428 -3.2906352, 55.9524090 -3.1999436, 55.9535635 -3.1977820, 55.9538687 -3.1922380, 55.9773393 -3.1724494, 55.9769800 -3.1722296, 55.9570561 -3.1868309, 55.9545683 -3.1975115, 55.9533858 -3.2003255, 55.9521910 -3.1770091, 55.9789535 -3.2110248, 55.9492258 -3.1822133, 55.9485446 -3.1779102, 55.9449763 -3.1994667, 55.9493277 -3.1830946, 55.9308970 -3.2761417, 55.9308699 -3.2764985, 55.9449994 -3.1905191, 55.9450146 -3.1904231, 55.9450298 -3.1903272, 55.9450449 -3.1902313, 55.9451338 -3.1906532, 55.9453646 -3.1914973, 55.9474907 -3.1912396, 55.9455563 -3.1906327, 55.9473547 -3.1907578, 55.9472481 -3.1873561, 55.9472634 -3.1872646, 55.9472809 -3.1871602, 55.9472964 -3.1870676, 55.9475422 -3.1874943, 55.9475575 -3.1874028, 55.9475750 -3.1872984, 55.9475905 -3.1872058, 55.9385351 -3.1788147, 55.9389978 -3.1791896, 55.9390424 -3.1790541, 55.9385297 -3.1777184, 55.9393104 -3.1793752, 55.9379216 -3.1782656, 55.9395588 -3.1795881, 55.9471706 -3.1875904, 55.9472026 -3.1876928, 55.9472333 -3.1877797, 55.9473065 -3.1867806, 55.9473617 -3.1867210, 55.9474310 -3.1878868, 55.9474791 -3.1878348, 55.9474896 -3.1894394, 55.9475351 -3.1877754, 55.9476372 -3.1868653, 55.9476704 -3.1869573, 55.9477335 -3.1882821, 55.9411719 -3.1809503, 55.9407447 -3.1806858, 55.9407899 -3.1790526, 55.9420479 -3.1791611, 55.9390017 -3.1784821, 55.9215832 -3.1791111, 55.9466232 -3.1903104, 55.9398954 -3.2195349, 55.9401102 -3.2187383, 55.9404460 -3.2175554, 55.9427929 -3.1825316, 55.9227217 -3.1743920, 55.9228810 -3.1754273, 55.9231124 -3.1754193, 55.9229249 -3.1782458, 55.9499694 -3.1797507, 55.9499757 -3.1798160, 55.9500637 -3.1794660, 55.9500938 -3.1794485, 55.9509274 -3.1808976, 55.9509324 -3.1810462, 55.9420724 -3.1830370, 55.9509016 -3.1807350, 55.9509075 -3.1807070, 55.9509169 -3.1808593, 55.9509634 -3.1804904, 55.9500360 -3.1798094, 55.9500832 -3.1798450, 55.9501211 -3.1798897, 55.9501723 -3.1796916, 55.9501877 -3.1796344, 55.9502096 -3.1797430, 55.9502160 -3.1797125, 55.9502405 -3.1796744, 55.9503400 -3.1800982, 55.9503693 -3.1801329, 55.9504024 -3.1799672, 55.9504254 -3.1799918, 55.9506541 -3.1793734, 55.9507349 -3.1794177, 55.9506189 -3.1835665, 55.9507741 -3.1824251, 55.9506746 -3.1830976, 55.9500035 -3.1797701, 55.9512610 -3.1800100, 55.9512749 -3.1799374, 55.9439525 -3.1820438, 55.9445315 -3.1823329, 55.9469241 -3.1821671, 55.9471624 -3.1824118, 55.9453523 -3.1818869, 55.9439473 -3.1828226, 55.9443287 -3.1812574, 55.9442897 -3.1818378, 55.9474180 -3.1841339, 55.9468876 -3.1828168, 55.9520043 -3.1768950, 55.9462478 -3.1850509, 55.9468669 -3.1856272, 55.9468472 -3.1856084, 55.9473137 -3.1851136, 55.9461822 -3.1850459, 55.9526834 -3.1734548, 55.9343702 -3.2060066, 55.9229601 -3.1790391, 55.9234202 -3.1790544, 55.9511538 -3.1760663, 55.9508387 -3.1774957, 55.9385096 -3.1950376, 55.9487062 -3.1943344, 55.9487553 -3.1962659, 55.9495866 -3.1950358, 55.9495999 -3.1953020, 55.9496043 -3.1950457, 55.9496221 -3.1950556, 55.9496228 -3.1953142, 55.9496458 -3.1953264, 55.9496737 -3.1953225, 55.9489842 -3.1953136, 55.9493042 -3.1940688, 55.9489571 -3.1957241, 55.9459432 -3.1848323, 55.9461084 -3.1836449, 55.9494614 -3.1938002, 55.9496093 -3.1936827, 55.9494708 -3.1903277, 55.9495520 -3.1903500, 55.9324201 -3.2283154, 55.9332542 -3.2297846, 55.9476045 -3.1861249, 55.9488813 -3.1834652, 55.9501364 -3.1885541, 55.9501318 -3.1886125, 55.9528247 -3.2065333, 55.9529149 -3.2065700, 55.9533425 -3.2047904, 55.9495175 -3.1899415, 55.9495499 -3.1899552, 55.9496571 -3.1899975, 55.9453776 -3.1916473, 55.9466056 -3.1912464, 55.9479666 -3.1920487, 55.9458687 -3.1913239, 55.9540835 -3.1946291, 55.9538883 -3.1945191, 55.9507459 -3.2052838, 55.9518450 -3.1742267, 55.9529627 -3.2034667, 55.9536998 -3.2038425, 55.9530225 -3.2010179, 55.9530534 -3.2008361, 55.9530651 -3.2069553, 55.9522129 -3.2063407, 55.9532657 -3.2030242, 55.9532876 -3.2029340, 55.9525268 -3.2039465, 55.9714402 -3.1705296, 55.9714533 -3.1704865, 55.9302053 -3.2392441, 55.9356364 -3.2013828, 55.9382392 -3.1926647, 55.9384377 -3.1915943, 55.9382413 -3.1927552, 55.9378769 -3.1933451, 55.9483173 -3.2061075, 55.9477716 -3.2059103, 55.9459933 -3.2113099, 55.9515113 -3.2040403, 55.9477228 -3.2058906, 55.9514215 -3.2038997, 55.9492101 -3.2153200, 55.9462508 -3.2133365, 55.9476252 -3.2058510, 55.9686225 -3.1663840, 55.9476740 -3.2058708, 55.9513366 -3.2050641, 55.9477676 -3.1954394, 55.9479756 -3.2040239, 55.9486422 -3.1962925, 55.9487023 -3.1964050, 55.9506935 -3.2051468, 55.9604000 -3.2010907, 55.9523945 -3.2120603, 55.9521663 -3.2127584, 55.9500040 -3.2125578, 55.9497188 -3.2145570, 55.9536330 -3.2038115, 55.9500915 -3.2177587, 55.9489122 -3.2150138, 55.9498407 -3.2129057, 55.9494796 -3.2083138, 55.9481228 -3.2089748, 55.9510978 -3.2113738, 55.9638417 -3.1758536, 55.9645858 -3.1766158, 55.9645802 -3.1747388, 55.9647390 -3.1764944, 55.9638726 -3.1762619, 55.9648350 -3.1763998, 55.9630054 -3.1634490, 55.9646237 -3.1737261, 55.9642771 -3.1697028, 55.9641140 -3.1725593, 55.9641614 -3.1722839, 55.9642136 -3.1728002, 55.9643083 -3.1722337, 55.9643717 -3.1727457, 55.9544768 -3.1997466, 55.9216794 -3.1718411, 55.9627083 -3.1784053, 55.9636334 -3.1775897, 55.9632708 -3.1779782, 55.9635031 -3.1777306, 55.9634030 -3.1778210, 55.9626859 -3.1776408, 55.9626935 -3.1778609, 55.9634353 -3.1777955, 55.9629468 -3.1783377, 55.9635528 -3.1766129, 55.9633292 -3.1768705, 55.9627176 -3.1785700, 55.9636635 -3.1766551, 55.9634773 -3.1777444, 55.9623753 -3.1728175, 55.9623636 -3.1790432, 55.9624134 -3.1789821, 55.9622388 -3.1791817, 55.9624341 -3.1765218, 55.9624801 -3.1786765, 55.9538645 -3.1977873, 55.9545797 -3.1975105, 55.9539210 -3.2001008, 55.9539108 -3.1977153, 55.9218603 -3.1939403, 55.9232493 -3.1902587, 55.9233776 -3.1896124, 55.9237045 -3.1906975, 55.9246454 -3.1953741, 55.9254354 -3.1947577, 55.9407892 -3.1837439, 55.9407325 -3.1837862, 55.9606579 -3.1715414, 55.9455845 -3.1909569, 55.9461074 -3.1908473, 55.9601469 -3.1818976, 55.9602485 -3.1817652, 55.9549903 -3.1932546, 55.9549461 -3.1936274, 55.9550466 -3.1929475, 55.9598818 -3.1717194, 55.9600554 -3.1716610, 55.9219330 -3.1748598, 55.9218016 -3.1748987, 55.9219960 -3.1749734, 55.9522132 -3.2037570, 55.9722254 -3.2582467, 55.9722373 -3.2578621, 55.9503626 -3.2071980, 55.9509478 -3.2066848, 55.9526988 -3.2085257, 55.9527795 -3.2080212, 55.9529409 -3.2077810, 55.9590444 -3.1715716, 55.9595680 -3.1714413, 55.9518140 -3.2061799, 55.9519378 -3.2048677, 55.9518714 -3.2053095, 55.9513520 -3.2049738, 55.9733939 -3.1675353, 55.9733312 -3.1670719, 55.9542281 -3.1981535, 55.9541351 -3.1997066, 55.9543888 -3.1989928, 55.9548130 -3.1959084, 55.9531961 -3.2032873, 55.9754341 -3.1737320, 55.9527501 -3.2005561, 55.9507981 -3.2057966, 55.9530265 -3.2058413, 55.9529173 -3.1995774, 55.9713786 -3.1713983, 55.9708769 -3.1716878, 55.9713160 -3.1704361, 55.9713293 -3.1704148, 55.9714836 -3.1716872, 55.9716292 -3.1714729, 55.9716322 -3.1714902, 55.9724168 -3.1697202, 55.9732475 -3.1694257, 55.9732677 -3.1693959, 55.9732879 -3.1693662, 55.9733081 -3.1693364, 55.9733283 -3.1693066, 55.9728610 -3.1689743, 55.9751480 -3.1670086, 55.9752100 -3.1670316, 55.9755689 -3.1666066, 55.9758774 -3.1660901, 55.9521649 -3.2010251, 55.9519986 -3.2023490, 55.9525961 -3.2004597, 55.9522376 -3.2006090, 55.9521505 -3.2011079, 55.9524547 -3.2003712, 55.9523745 -3.2002212, 55.9528145 -3.2005067, 55.9520147 -3.2000958, 55.9514577 -3.2026368, 55.9521413 -3.2003019, 55.9517562 -3.2027381, 55.9473312 -3.1958530, 55.9506466 -3.2029246, 55.9506827 -3.2031009, 55.9509818 -3.1665599, 55.9510378 -3.1985031, 55.9516327 -3.1728113, 55.9527120 -3.1911888, 55.9771722 -3.1686654, 55.9331228 -3.2352413, 55.9525006 -3.1971100, 55.9519161 -3.1979846, 55.9738130 -3.1660750, 55.9739636 -3.1645829, 55.9740361 -3.1645204, 55.9530600 -3.1973963, 55.9529817 -3.1991968, 55.9531257 -3.1972587, 55.9524366 -3.1994110, 55.9527862 -3.1991610, 55.9528048 -3.1990557, 55.9742334 -3.1627736, 55.9743971 -3.1634368, 55.9744969 -3.1645171, 55.9747892 -3.1642995, 55.9748440 -3.1644846, 55.9750621 -3.1716018, 55.9750654 -3.1718127, 55.9742887 -3.1683638, 55.9744239 -3.1691820, 55.9524600 -3.1964337, 55.9530736 -3.1967211, 55.9528853 -3.1966329, 55.9527597 -3.1966490, 55.9537783 -3.1947889, 55.9720484 -3.1727281, 55.9726775 -3.1738979, 55.9723466 -3.1740682, 55.9529730 -3.1951895, 55.9534020 -3.1946327, 55.9717635 -3.1735496, 55.9728535 -3.1734538, 55.9728700 -3.1734359, 55.9728878 -3.1734277, 55.9729128 -3.1734295, 55.9729302 -3.1734449, 55.9729461 -3.1734685, 55.9535447 -3.1920694, 55.9535343 -3.1919288, 55.9729020 -3.1734278, 55.9733795 -3.1746652, 55.9743460 -3.1742161, 55.9744616 -3.1745919, 55.9745256 -3.1747701, 55.9746511 -3.1740770, 55.9744468 -3.1763141, 55.9745286 -3.1757264, 55.9745343 -3.1758337, 55.9530322 -3.1896343, 55.9530541 -3.1894581, 55.9531007 -3.1895823, 55.9499543 -3.1878155, 55.9605039 -3.1694895, 55.9598814 -3.1713652, 55.9233855 -3.2869336, 55.9482867 -3.1839490, 55.9496098 -3.1863529, 55.9541108 -3.2007911, 55.9462949 -3.2053703, 55.9481710 -3.1916741, 55.9469863 -3.2072082, 55.9429251 -3.2038964, 55.9482698 -3.1839334, 55.9510276 -3.2031942, 55.9528163 -3.2009260, 55.9618047 -3.1704970, 55.9746361 -3.1775991, 55.9748666 -3.1747021, 55.9748935 -3.1745351, 55.9749178 -3.1759773, 55.9749369 -3.1750796, 55.9749809 -3.1764209, 55.9749981 -3.1769166, 55.9750316 -3.1746083, 55.9751150 -3.1770111, 55.9751199 -3.1751925, 55.9751581 -3.1769090, 55.9751915 -3.1757570, 55.9751949 -3.1759526, 55.9753007 -3.1761602, 55.9634016 -3.1766095, 55.9634052 -3.1766291, 55.9636382 -3.1754565, 55.9636651 -3.1744634, 55.9636669 -3.1745132, 55.9636787 -3.1760301, 55.9637709 -3.1759142, 55.9637728 -3.1759640, 55.9732747 -3.1733776, 55.9656757 -3.1756750, 55.9722974 -3.1721866, 55.9727235 -3.1726089, 55.9728088 -3.1726327, 55.9544329 -3.1950792, 55.9550493 -3.1952197, 55.9739316 -3.1698802, 55.9556549 -3.1915634, 55.9766070 -3.1718381, 55.9653172 -3.1704847, 55.9650499 -3.1748827, 55.9411313 -3.2167882, 55.9393998 -3.1735716, 55.9319915 -3.1798966, 55.9479359 -3.2033290, 55.9426871 -3.1890489, 55.9518191 -3.1796232, 55.9475115 -3.1893474, 55.9478706 -3.1875187, 55.9404588 -3.2944172, 55.9696237 -3.2312974, 55.9253578 -3.2483932, 55.9323123 -3.2905531, 55.9276315 -3.2611513, 55.9016607 -3.2241566, 55.9262359 -3.1654883, 55.9227951 -3.1616860, 55.9434333 -3.1979031, 55.9578808 -3.1647965, 55.9544793 -3.1426073, 55.9800643 -3.1795555, 55.9821786 -3.1756498, 55.9289063 -3.1978643, 55.9368078 -3.2005621, 55.9300695 -3.2173312, 55.9215400 -3.2123691, 55.9763668 -3.2263424, 55.9636812 -3.2272697, 55.9224589 -3.2814656, 55.9579976 -3.2248804, 55.9331742 -3.2140675, 55.9152135 -3.2365672, 55.9275852 -3.2164208, 55.9437787 -3.2629382, 55.9435294 -3.2654687, 55.9436259 -3.2619723, 55.9690220 -3.1695919, 55.9775947 -3.2459989, 55.9734214 -3.2507279, 55.9735728 -3.2552888, 55.9453813 -3.1852436, 55.9461229 -3.1864604, 55.9462637 -3.1945246, 55.9506841 -3.2000992, 55.9521111 -3.1797138, 55.9226021 -3.1742368, 55.9440654 -3.1877246, 55.9567295 -3.1849346, 55.9444292 -3.1967044, 55.9445111 -3.1983353, 55.9441006 -3.1982327, 55.9530161 -3.2227017, 55.9314453 -3.2359598, 55.9234755 -3.2477828, 55.9654892 -3.1615795, 55.9658709 -3.1655098, 55.9660647 -3.1745557, 55.9400832 -3.2183795, 55.9605725 -3.1900983, 55.9523306 -3.2247264, 55.9506405 -3.2280071, 55.9538752 -3.2273603, 55.9599316 -3.1441732, 55.9604659 -3.1501981, 55.9282702 -3.2905058, 55.9373142 -3.2104866, 55.9287405 -3.2200096, 55.9384423 -3.2403707, 55.9398187 -3.2297358, 55.9484124 -3.1836303, 55.9226662 -3.2254126, 55.9350432 -3.1974969, 55.9369891 -3.2014350, 55.9559159 -3.1551037, 55.9396348 -3.1719819, 55.9418632 -3.1505954, 55.9183491 -3.2390342, 55.9465675 -3.1864711, 55.9292460 -3.2045523, 55.9486154 -3.1834112, 55.9471658 -3.1800476, 55.9510411 -3.1708174, 55.9629115 -3.1702968, 55.9221448 -3.2270956, 55.9056862 -3.1959770, 55.9422542 -3.2936236, 55.9237847 -3.1626217, 55.9523895 -3.2805878, 55.9399107 -3.1697157, 55.9388808 -3.1702860, 55.9365871 -3.1798120, 55.9456944 -3.1986519, 55.9703825 -3.1685452, 55.9332134 -3.1406814, 55.9307050 -3.1452443, 55.9305193 -3.1456531, 55.9323067 -3.1467718, 55.9321048 -3.1417445, 55.9419520 -3.2027917, 55.9221929 -3.1873317, 55.9029473 -3.2042927, 55.9308822 -3.1586149, 55.9356181 -3.1431581, 55.9366082 -3.1592634, 55.9382408 -3.1739315, 55.9372934 -3.1427896, 55.9411807 -3.1490609, 55.9412514 -3.1428579, 55.9539478 -3.1401032, 55.9482823 -3.1439944, 55.9271257 -3.1809044, 55.9265280 -3.1510008, 55.9339981 -3.1469608, 55.9118066 -3.2517527, 55.9248212 -3.2647912, 55.9773633 -3.2471160, 55.9527240 -3.2512456, 55.9450101 -3.1858398, 55.9468320 -3.1869997, 55.9454192 -3.1860553, 55.9405307 -3.2034601, 55.9082374 -3.2366942, 55.9111784 -3.2296130, 55.9158656 -3.2803635, 55.9280288 -3.2881415, 55.9610357 -3.1963165, 55.9758026 -3.1754319, 55.9706894 -3.1958369, 55.9497651 -3.1780477, 55.9550388 -3.1422629, 55.9309502 -3.1942179, 55.9360803 -3.2260420, 55.9365416 -3.2274826, 55.9339873 -3.2236723, 55.9290401 -3.2025345, 55.9602512 -3.1936038, 55.9263499 -3.2181344, 55.9300384 -3.1736254, 55.9402144 -3.2252877, 55.9377206 -3.2258204, 55.9414217 -3.2221759, 55.9486925 -3.2000899, 55.9481163 -3.2005051, 55.9346438 -3.2211526, 55.9411994 -3.1818116, 55.9422143 -3.1843904, 55.9455169 -3.1830207, 55.9441448 -3.1847026, 55.9442904 -3.1841510, 55.9421481 -3.1863693, 55.9447507 -3.1796881, 55.9456704 -3.1811256, 55.9430744 -3.1777261, 55.9446561 -3.1803403, 55.9623803 -3.2348858, 55.9494277 -3.1775329, 55.9487518 -3.1780877, 55.9485518 -3.1781362, 55.9491775 -3.1780460, 55.9466674 -3.1799160, 55.9467039 -3.1783594, 55.9517150 -3.1772389, 55.9520666 -3.1782554, 55.9514274 -3.1780862, 55.9442077 -3.1850195, 55.9611696 -3.2316847, 55.9609929 -3.2342787, 55.9607831 -3.2371118, 55.9615933 -3.2374124, 55.9619320 -3.2374854, 55.9631141 -3.2367935, 55.9634777 -3.2359757, 55.9488000 -3.1850162, 55.9508692 -3.1835613, 55.9496410 -3.1840791, 55.9482833 -3.1925126, 55.9485816 -3.1916892, 55.9320754 -3.1797041, 55.9289038 -3.2099695, 55.9372576 -3.2484056, 55.9375668 -3.2481897, 55.9518134 -3.1865125, 55.9613330 -3.1814329, 55.9491518 -3.1851392, 55.9845079 -3.2223358, 55.9494705 -3.1908525, 55.9720506 -3.1705546, 55.9481456 -3.1868202, 55.9483629 -3.1876394, 55.9484892 -3.1877617, 55.9481205 -3.1869530, 55.9462373 -3.1906430, 55.9478959 -3.1907476, 55.9476459 -3.1911817, 55.9244139 -3.2658901, 55.9487698 -3.1941172, 55.9487803 -3.1950974, 55.9052992 -3.2211253, 55.9634913 -3.1955890, 55.9231436 -3.2518020, 55.9754880 -3.1800099, 55.9766360 -3.1950228, 55.9807254 -3.2242925, 55.9827482 -3.1947966, 55.9820923 -3.1881161, 55.9284416 -3.2408621, 55.9306269 -3.2393487, 55.9709946 -3.2069888, 55.9663575 -3.1958162, 55.9713037 -3.2306913, 55.9695021 -3.2293678, 55.9741682 -3.2117651, 55.9211529 -3.1991584, 55.9272521 -3.2235895, 55.9282852 -3.2235581, 55.9574593 -3.1648578, 55.9226879 -3.2251365, 55.9383517 -3.2266621, 55.9390955 -3.2281220, 55.9305995 -3.2413240, 55.9539144 -3.1587511, 55.9582182 -3.2036684, 55.9608885 -3.2047238, 55.9353613 -3.2393280, 55.9230657 -3.2475227, 55.9317976 -3.2278388, 55.9346243 -3.2280989, 55.9383815 -3.1877040, 55.9600239 -3.1973819, 55.9663393 -3.2086646, 55.9650292 -3.2107237, 55.9667709 -3.2059283, 55.9443491 -3.2712547, 55.9446542 -3.2717797, 55.9450592 -3.2712300, 55.9727731 -3.1780368, 55.9804104 -3.1919302, 55.9679394 -3.1728771, 55.9385478 -3.1892353, 55.9610501 -3.2220436, 55.9729929 -3.1628209, 55.9351917 -3.2109226, 55.9779564 -3.1649104, 55.9800652 -3.2042302, 55.9439545 -3.2066510, 55.9209185 -3.1686343, 55.9239749 -3.1779212, 55.9246612 -3.1815724, 55.9260122 -3.1931603, 55.9264995 -3.1847934, 55.9426143 -3.2718758, 55.9409940 -3.2083656, 55.9798454 -3.2021900, 55.9759375 -3.2015749, 55.9766598 -3.1948968, 55.9764777 -3.1935321, 55.9637496 -3.2851479, 55.9276896 -3.1509176, 55.9274521 -3.1503413, 55.9275727 -3.1506409, 55.9254765 -3.1644984, 55.9263987 -3.1628516, 55.9280015 -3.1625220, 55.9260602 -3.1659685, 55.9251658 -3.1663274, 55.9254307 -3.1665057, 55.9590395 -3.2250691, 55.9605457 -3.2255054, 55.9587335 -3.2260450, 55.9593683 -3.2257099, 55.9599741 -3.2911482, 55.9599216 -3.2887651, 55.9514878 -3.2915839, 55.9436637 -3.2079998, 55.9782443 -3.2238463, 55.9759267 -3.2278467, 55.9751151 -3.2193081, 55.9762144 -3.2241714, 55.9854919 -3.2222993, 55.9758198 -3.2323187, 55.9747107 -3.2382500, 55.9755242 -3.2379423, 55.9713618 -3.2381377, 55.9679996 -3.2373783, 55.9342034 -3.1931303, 55.9460352 -3.2404177, 55.9464332 -3.2481332, 55.9381173 -3.2348593, 55.9379531 -3.2328868, 55.9472990 -3.2368673, 55.9494623 -3.2105484, 55.9763061 -3.2457130, 55.9763561 -3.2451182, 55.9496531 -3.2051547, 55.9470070 -3.2042875, 55.9349172 -3.2781183, 55.9089711 -3.2560883, 55.9488232 -3.2332997, 55.9763716 -3.1862130, 55.9464512 -3.2693904, 55.9452629 -3.2700881, 55.9447684 -3.1528732, 55.9408827 -3.1764274, 55.9330632 -3.1771455, 55.9383947 -3.2562456, 55.9452888 -3.1819541, 55.9493755 -3.1801013, 55.9478904 -3.1809905, 55.9498164 -3.1924123, 55.9512868 -3.1894562, 55.9506838 -3.1849407, 55.9514869 -3.1801710, 55.9507347 -3.1844306, 55.9507312 -3.1855926, 55.9208549 -3.2614987, 55.9311921 -3.2649611, 55.9301341 -3.1678546, 55.9296473 -3.1707716, 55.9300084 -3.1692556, 55.9307377 -3.1718855, 55.9312615 -3.2941807, 55.9573948 -3.1710345, 55.9015605 -3.2034316, 55.9363343 -3.2393760, 55.9334103 -3.2358080, 55.9104667 -3.2253120, 55.9087826 -3.2212955, 55.9076452 -3.2280715, 55.9052853 -3.2234270, 55.9047400 -3.2228682, 55.9058615 -3.2220141, 55.9070370 -3.2196609, 55.9044165 -3.2224233, 55.9090576 -3.2279500, 55.9090922 -3.2239505, 55.9626750 -3.1983267, 55.9607676 -3.2059199, 55.9594302 -3.2076115, 55.9603211 -3.2068531, 55.9554789 -3.1913810, 55.9401022 -3.1817999, 55.9671482 -3.1898092, 55.9438548 -3.1856370, 55.9534112 -3.1955067, 55.9540545 -3.1958519, 55.9547187 -3.1893018, 55.9705136 -3.2090520, 55.9045849 -3.2066586, 55.9519010 -3.2481568, 55.9523635 -3.2486330, 55.9523251 -3.2541631, 55.9704118 -3.2140175, 55.9536168 -3.2152726, 55.9556720 -3.1896134, 55.9430835 -3.2219817, 55.9587913 -3.2420040, 55.9583778 -3.2421373, 55.9573940 -3.2424916, 55.9584602 -3.2323511, 55.9567019 -3.2381175, 55.9588441 -3.2305299, 55.9590153 -3.2322733, 55.9653075 -3.1884766, 55.9611769 -3.2425780, 55.9615806 -3.2409418, 55.9613606 -3.2419902, 55.9619750 -3.2400369, 55.9622821 -3.2456187, 55.9668781 -3.2394194, 55.9467379 -3.1966389, 55.9596219 -3.2030610, 55.9379000 -3.1749129, 55.9686272 -3.1672689, 55.9716300 -3.1599323, 55.9433998 -3.2065327, 55.9722472 -3.1751421, 55.9675455 -3.1569398, 55.9718479 -3.1748613, 55.9560374 -3.1699685, 55.9718431 -3.1725925, 55.9776230 -3.2433010, 55.9776625 -3.2409852, 55.9771738 -3.2430088, 55.9773044 -3.2412374, 55.9798298 -3.1971422, 55.9704477 -3.1958250, 55.9703493 -3.1961174, 55.9704547 -3.1964895, 55.9404662 -3.2927628, 55.9418085 -3.2938103, 55.9409118 -3.2928528, 55.9563797 -3.2090019, 55.9567298 -3.2082704, 55.9594852 -3.1875701, 55.9605648 -3.1852708, 55.9622747 -3.1983063, 55.9556731 -3.1599309, 55.9561167 -3.1678741, 55.9548458 -3.1441071, 55.9640969 -3.1974516, 55.9626676 -3.2000599, 55.9191510 -3.2123681, 55.9602514 -3.1792425, 55.9828725 -3.2257526, 55.9786282 -3.1784319, 55.9394393 -3.2936438, 55.9393840 -3.2949198, 55.9596625 -3.2024027, 55.9775262 -3.2412239, 55.9679736 -3.2375792, 55.9669928 -3.1677035, 55.9504839 -3.2321423, 55.9305761 -3.1559101, 55.9311166 -3.1557491, 55.9371467 -3.2065090, 55.9359437 -3.2382687, 55.9360694 -3.2391515, 55.9353294 -3.2394954, 55.9376218 -3.2483001, 55.9783017 -3.1800235, 55.9805959 -3.1832658, 55.9809475 -3.1748973, 55.9396373 -3.1795919, 55.9415413 -3.1765387, 55.9606718 -3.1730123, 55.9587930 -3.1899340, 55.9586835 -3.1836675, 55.9398778 -3.1763187, 55.9611856 -3.1865315, 55.9454748 -3.2133562, 55.9660452 -3.2748349, 55.9664497 -3.2729235, 55.9637916 -3.2690502, 55.9425609 -3.2205340, 55.9421735 -3.2231061, 55.9435969 -3.2367712, 55.9410215 -3.2404052, 55.9437556 -3.2442061, 55.9749582 -3.2141026, 55.9367525 -3.2236850, 55.9381980 -3.2233304, 55.9411163 -3.2946751, 55.9094166 -3.2080359, 55.9816356 -3.1755155, 55.9632079 -3.2509875, 55.9552946 -3.2619485, 55.9598506 -3.2240155, 55.9817826 -3.1942506, 55.9810266 -3.1939926, 55.9811977 -3.1933980, 55.9813243 -3.1938987, 55.9811060 -3.1942189, 55.9811219 -3.1927295, 55.9812872 -3.1942703, 55.9810235 -3.1943227, 55.9810882 -3.1928819, 55.9810439 -3.1926011, 55.9811933 -3.1929701, 55.9809849 -3.1928242, 55.9813860 -3.1941338, 55.9809438 -3.1941571, 55.9812539 -3.1931285, 55.9810905 -3.1933833, 55.9788677 -3.2108480, 55.9741923 -3.2061226, 55.9102318 -3.2377415, 55.9109047 -3.2387736, 55.9754361 -3.2140115, 55.9747440 -3.2136660, 55.9231850 -3.2486394, 55.9508007 -3.2089750, 55.9637505 -3.2335268, 55.9428585 -3.1864559, 55.9846458 -3.1940711, 55.9563611 -3.1696322, 55.9439600 -3.2055529, 55.9595062 -3.2148354, 55.9672194 -3.2519524, 55.9724265 -3.2579266, 55.9682716 -3.2544583, 55.9221429 -3.1752023, 55.9223399 -3.1759213, 55.9722426 -3.2542844, 55.9670991 -3.2534481, 55.9650977 -3.2490516, 55.9575370 -3.1698723, 55.9068858 -3.2268022, 55.9253343 -3.2104022, 55.9252818 -3.2099781, 55.9718838 -3.2534179, 55.9810691 -3.2383577, 55.9306416 -3.2087396, 55.9390126 -3.2052535, 55.9382569 -3.1735978, 55.9385296 -3.2738255, 55.9364542 -3.2790390, 55.9125969 -3.2367843, 55.9139120 -3.2359804, 55.9122150 -3.2360285, 55.9257870 -3.2656567, 55.9674017 -3.1804959, 55.9342963 -3.2105127, 55.9326296 -3.2093529, 55.9397056 -3.2127147, 55.9799121 -3.2416420, 55.9712125 -3.2539350, 55.9714662 -3.2541142, 55.9376681 -3.1815462, 55.9181587 -3.2705015, 55.9340911 -3.1776728, 55.9342211 -3.1778645, 55.9514241 -3.2207842, 55.9732423 -3.2016374, 55.9724670 -3.2012980, 55.9598722 -3.2116091, 55.9778933 -3.1745058, 55.9784170 -3.1773402, 55.9780971 -3.1753475, 55.9783089 -3.1763226, 55.9777459 -3.1734796, 55.9789813 -3.1763388, 55.9781314 -3.1744029, 55.9051373 -3.2232377, 55.9781967 -3.1747064, 55.9757314 -3.1804855, 55.9760054 -3.1829902, 55.9754079 -3.1820516, 55.9389084 -3.2719917, 55.9379190 -3.2748726, 55.9511827 -3.2055031, 55.9324188 -3.2919653, 55.9310369 -3.2899192, 55.9613846 -3.1948052, 55.9284497 -3.2741217, 55.9345857 -3.2096226, 55.9778984 -3.1730783, 55.9410173 -3.1832050, 55.9657968 -3.2699304, 55.9694092 -3.2702934, 55.9416964 -3.1483778, 55.9582905 -3.2794012, 55.9767945 -3.1754739, 55.9766864 -3.1738715, 55.9687659 -3.2129962, 55.9660731 -3.1740541, 55.9700618 -3.1685905, 55.9777295 -3.1642417, 55.9713517 -3.2751363, 55.9716217 -3.2748645, 55.9357478 -3.1903059, 55.9561104 -3.2932448, 55.9547210 -3.2212015, 55.9489783 -3.2074982, 55.9771152 -3.2561088, 55.9473796 -3.2162168, 55.9413783 -3.2819125, 55.9775665 -3.1730962, 55.9767627 -3.1685149, 55.9759609 -3.1666596, 55.9775601 -3.1677040, 55.9352870 -3.1783681, 55.9384344 -3.2383937, 55.9400215 -3.2835991, 55.9422778 -3.2816309, 55.9731449 -3.1689705, 55.9722626 -3.1718229, 55.9724369 -3.1737659, 55.9725956 -3.1724850, 55.9735295 -3.1719581, 55.9422361 -3.2854972, 55.9426182 -3.2848408, 55.9408188 -3.2854591, 55.9424261 -3.2853919, 55.9401807 -3.2851421, 55.9397418 -3.2866275, 55.9184060 -3.1567270, 55.9405468 -3.2072228, 55.9398774 -3.2036951, 55.9450514 -3.2016119, 55.9425974 -3.2817995, 55.9427324 -3.2894308, 55.9428132 -3.2886637, 55.9428834 -3.2895145, 55.9430576 -3.2887151, 55.9429003 -3.2891706, 55.9421047 -3.2806000, 55.9421878 -3.2816836, 55.9418910 -3.2811010, 55.9382573 -3.1889080, 55.9433390 -3.1786743, 55.9352274 -3.1798948, 55.9354661 -3.1805170, 55.9370598 -3.1807869, 55.9375196 -3.1796111, 55.9372843 -3.1802503, 55.9415697 -3.1758286, 55.9415585 -3.1758394, 55.9415921 -3.1758060, 55.9415812 -3.1758177, 55.9411606 -3.1749707, 55.9403039 -3.1758789, 55.9403220 -3.1758391, 55.9411756 -3.1749572, 55.9415942 -3.1748284, 55.9412195 -3.1755812, 55.9403131 -3.1758590, 55.9408932 -3.1748265, 55.9416412 -3.1759641, 55.9411089 -3.1758742, 55.9419221 -3.1751737, 55.9413694 -3.1751296, 55.9421224 -3.1755399, 55.9420435 -3.1759728, 55.9417717 -3.1760016, 55.9412937 -3.1748715, 55.9419213 -3.1762309, 55.9417190 -3.1758050, 55.9416370 -3.1757316, 55.9421785 -3.1756667, 55.9411631 -3.1744380, 55.9420584 -3.1756683, 55.9419621 -3.1753235, 55.9421292 -3.1750657, 55.9415161 -3.1750333, 55.9415743 -3.1747965, 55.9415635 -3.1757823, 55.9414662 -3.2429306, 55.9380788 -3.2164911, 55.9740721 -3.2549433, 55.9701531 -3.2408519, 55.9422906 -3.1878107, 55.9424910 -3.1860227, 55.9480890 -3.2360821, 55.9322321 -3.2172464, 55.9650430 -3.1970342, 55.9399461 -3.2681429, 55.9430863 -3.2187411, 55.9554624 -3.2241042, 55.9419112 -3.2188990, 55.9483346 -3.2942197, 55.9243327 -3.2086992, 55.9421466 -3.2052971, 55.9457075 -3.2175746, 55.9450840 -3.2432639, 55.9287806 -3.2587079, 55.9109797 -3.2089126, 55.9419464 -3.1773362, 55.9410176 -3.2095848, 55.9416893 -3.1760907, 55.9417070 -3.1760764, 55.9416987 -3.1760841, 55.9412278 -3.1756909, 55.9412476 -3.1757447, 55.9412372 -3.1757196, 55.9412183 -3.1743024, 55.9412083 -3.1743042, 55.9411987 -3.1743085, 55.9411888 -3.1743128, 55.9389958 -3.2265743, 55.9269527 -3.2080383, 55.9292876 -3.2059198, 55.9278315 -3.2088719, 55.9764201 -3.1763322, 55.9710130 -3.1805984, 55.9179473 -3.1972800, 55.9182561 -3.1989900, 55.9132484 -3.1780898, 55.9549575 -3.1410285, 55.9754348 -3.1685187, 55.9819343 -3.1951000, 55.9405416 -3.2928536, 55.9193644 -3.2228522, 55.9191174 -3.2378985, 55.9192124 -3.2367725, 55.9642544 -3.1552869, 55.9761891 -3.1670909, 55.9756176 -3.1666794, 55.9758400 -3.1668709, 55.9616399 -3.2609726, 55.9429604 -3.2929801, 55.9431663 -3.2838745, 55.9430804 -3.2830608, 55.9432585 -3.2860976, 55.9433798 -3.2860859, 55.9433113 -3.2870890, 55.9426525 -3.2829003, 55.9429172 -3.2885050, 55.9430016 -3.2880429, 55.9428951 -3.2860475, 55.9598760 -3.2111177, 55.9420912 -3.2950431, 55.9656482 -3.2744012, 55.9420681 -3.2954846, 55.9428183 -3.2938163, 55.9806315 -3.1941324, 55.9768676 -3.1714974, 55.9748270 -3.2379923, 55.9308539 -3.2761099, 55.9460256 -3.1970185, 55.9224134 -3.2358339, 55.9232515 -3.2341430, 55.9506991 -3.1804199, 55.9228372 -3.1787829, 55.9339081 -3.2001289, 55.9381722 -3.1723579, 55.9391719 -3.1689528, 55.9405990 -3.1722908, 55.9212581 -3.1741946, 55.9216273 -3.1782748, 55.9241930 -3.1744106, 55.9212881 -3.1716104, 55.9584022 -3.2407277, 55.9543261 -3.2217641, 55.9458113 -3.2173471, 55.9451443 -3.1904604, 55.9416788 -3.1843079, 55.9226382 -3.1721985, 55.9376476 -3.2417193, 55.9365765 -3.1906732, 55.9428537 -3.2567285, 55.9486145 -3.2162817, 55.9767290 -3.2268402, 55.9384718 -3.2294237, 55.9382369 -3.2291610, 55.9828789 -3.2415813, 55.9635638 -3.2312763, 55.9044775 -3.2067494, 55.9067248 -3.2514090, 55.9042642 -3.2336659, 55.9582618 -3.2523094, 55.9432361 -3.1906794, 55.9376675 -3.1916760, 55.9331889 -3.2150781, 55.9342476 -3.2456539, 55.9462953 -3.2204393, 55.9472630 -3.2049020, 55.9653800 -3.2706969, 55.9649794 -3.2748487, 55.9333547 -3.2382786, 55.9336416 -3.2375159, 55.9236496 -3.2861719, 55.9235691 -3.2868011, 55.9255394 -3.2590716, 55.9249862 -3.2552372, 55.9197724 -3.2646706, 55.9246038 -3.2533704, 55.9310562 -3.2789944, 55.9378551 -3.2430479, 55.9342259 -3.2112430, 55.9302075 -3.2099997, 55.9260946 -3.2833643, 55.9420456 -3.2665689, 55.9450353 -3.2498470, 55.9488571 -3.1936393, 55.9400371 -3.2200755, 55.9231845 -3.2883989, 55.9560907 -3.1878581, 55.9556763 -3.1879855, 55.9364788 -3.1804752, 55.9365673 -3.1810320, 55.9337994 -3.2511195, 55.9251847 -3.2668441, 55.9242943 -3.2525824, 55.9281220 -3.1676809, 55.9296228 -3.1686332, 55.9240973 -3.1713473, 55.9205723 -3.1672281, 55.9167292 -3.1640730, 55.9190795 -3.1651500, 55.9351736 -3.2474351, 55.9368512 -3.1906944, 55.9303474 -3.1688301, 55.9231711 -3.1630255, 55.9284277 -3.2771034, 55.9251682 -3.2504770, 55.9433431 -3.2880696, 55.9554111 -3.2871171, 55.9551063 -3.2863133, 55.9553468 -3.2876097, 55.9554662 -3.2864616, 55.9550547 -3.2853818, 55.9304008 -3.2059444, 55.9351051 -3.2071646, 55.9335197 -3.2097268, 55.9340775 -3.2344416, 55.9186700 -3.2386355, 55.9194000 -3.2392334, 55.9181062 -3.2402690, 55.9190442 -3.2405398, 55.9186959 -3.2407877, 55.9325805 -3.2889506, 55.9295794 -3.1885044, 55.9292647 -3.1898349, 55.9274691 -3.1872211, 55.9366569 -3.1786654, 55.9390667 -3.2357495, 55.9291158 -3.1990147, 55.9310105 -3.2637876, 55.9305427 -3.2629432, 55.9327690 -3.2064845, 55.9462699 -3.1973167, 55.9463372 -3.2009161, 55.9347843 -3.1777102, 55.9310132 -3.1730716, 55.9345092 -3.2106395, 55.9343748 -3.1948025, 55.9324830 -3.1925693, 55.9423304 -3.2222253, 55.9315854 -3.2267880, 55.9296779 -3.1904705, 55.9466989 -3.2004459, 55.9482972 -3.1955031, 55.9239634 -3.1724671, 55.9220936 -3.1720186, 55.9381406 -3.2071920, 55.9609398 -3.2353282, 55.9611023 -3.2337205, 55.9615648 -3.2337688, 55.9310878 -3.1608248, 55.9332555 -3.1585963, 55.9615076 -3.1962176, 55.9617797 -3.1967210, 55.9618418 -3.1964188, 55.9118407 -3.1733683, 55.9142368 -3.1767805, 55.9171133 -3.1693870, 55.9499151 -3.1945526, 55.9337107 -3.2143913, 55.9384227 -3.2096374, 55.9673672 -3.2023565, 55.9331209 -3.2609346, 55.9414121 -3.1461173, 55.9344607 -3.1586816, 55.9492492 -3.2166441, 55.9584013 -3.2102800, 55.9415712 -3.1423967, 55.9417952 -3.1435367, 55.9372219 -3.1675591, 55.9376359 -3.1437325, 55.9582727 -3.2142012, 55.9578400 -3.2137240, 55.9580057 -3.2137170, 55.9583384 -3.2143374, 55.9578384 -3.2135045, 55.9586941 -3.2142670, 55.9579707 -3.2133574, 55.9595991 -3.2078396, 55.9589115 -3.2077864, 55.9461251 -3.1413986, 55.9585641 -3.2034909, 55.9522035 -3.2050327, 55.9532532 -3.1988728, 55.9527412 -3.2019245, 55.9537795 -3.1957406, 55.9588705 -3.2081707, 55.9370148 -3.1687967, 55.9363884 -3.1696824, 55.9601264 -3.1937826, 55.9206859 -3.1596962, 55.9208169 -3.1598554, 55.9366260 -3.1734697, 55.9578355 -3.2056417, 55.9576157 -3.2060293, 55.9576413 -3.2059278, 55.9580732 -3.2011430, 55.9579644 -3.2017381, 55.9580494 -3.2012821, 55.9579410 -3.2018748, 55.9584126 -3.2005043, 55.9582239 -3.2009160, 55.9587356 -3.2012076, 55.9229466 -3.2475426, 55.9569863 -3.2004490, 55.9571215 -3.2003372, 55.9569959 -3.2010702, 55.9570258 -3.1998342, 55.9568113 -3.2014707, 55.9568346 -3.2013336, 55.9567905 -3.2018529, 55.9571440 -3.1998405, 55.9569850 -3.2000388, 55.9563224 -3.2001027, 55.9562856 -3.2003225, 55.9563043 -3.2002104, 55.9563423 -3.1999840, 55.9563645 -3.1998513, 55.9558901 -3.2012614, 55.9563424 -3.1994368, 55.9262637 -3.2243126, 55.9254217 -3.2108083, 55.9633397 -3.1866387, 55.9317876 -3.2353092, 55.9571314 -3.1945091, 55.9570903 -3.1942658, 55.9571062 -3.1948163, 55.9570078 -3.1956389, 55.9574245 -3.1945101, 55.9570801 -3.1952413, 55.9593471 -3.1962794, 55.9588288 -3.1994335, 55.9583111 -3.1990412, 55.9585624 -3.1980766, 55.9583421 -3.1992286, 55.9586095 -3.1976521, 55.9584283 -3.1986380, 55.9585084 -3.1979077, 55.9575802 -3.1968697, 55.9566931 -3.1981359, 55.9567965 -3.1968319, 55.9566552 -3.1982909, 55.9568562 -3.1972327, 55.9568774 -3.1971123, 55.9470079 -3.2203178, 55.9305554 -3.2379452, 55.9567662 -3.1885665, 55.9566534 -3.1920437, 55.9568104 -3.1898625, 55.9566771 -3.1918966, 55.9565541 -3.1926150, 55.9570880 -3.1893684, 55.9567192 -3.1908266, 55.9565429 -3.1914874, 55.9565039 -3.1916747, 55.9581431 -3.1932114, 55.9580069 -3.1929658, 55.9350533 -3.2069968, 55.9350865 -3.2070121, 55.9560597 -3.2073932, 55.9426363 -3.2453765, 55.9539415 -3.2061599, 55.9538842 -3.2068469, 55.9541878 -3.2062819, 55.9538990 -3.2065724, 55.9516793 -3.2103388, 55.9335280 -3.2095487, 55.9611738 -3.2007261, 55.9612899 -3.2007540, 55.9610369 -3.2004541, 55.9610414 -3.2006404, 55.9614051 -3.2007464, 55.9620034 -3.1995271, 55.9317819 -3.2955267, 55.9324370 -3.2945924, 55.9380692 -3.2958496, 55.9502297 -3.1939281, 55.9606540 -3.1948258, 55.9595489 -3.1922083, 55.9583753 -3.1909823, 55.9578621 -3.1897878, 55.9574569 -3.1920171, 55.9575620 -3.1916915, 55.9575374 -3.1909923, 55.9576308 -3.1912457, 55.9575648 -3.1913957, 55.9577829 -3.1897123, 55.9576959 -3.1905223, 55.9577544 -3.1902024, 55.9494095 -3.1864626, 55.9408795 -3.2097114, 55.9415305 -3.2096039, 55.9345607 -3.2083144, 55.9477482 -3.1983184, 55.9484995 -3.1924483, 55.9482088 -3.1927240, 55.9480798 -3.1929875, 55.9476449 -3.1962205, 55.9432298 -3.2014873, 55.9467112 -3.1954578, 55.9475963 -3.1940675, 55.9382616 -3.2091627, 55.9395772 -3.2053724, 55.9399587 -3.2058503, 55.9401754 -3.2051474, 55.9459124 -3.1915662, 55.9477804 -3.1928983, 55.9402430 -3.1727693, 55.9466336 -3.1922732, 55.9460773 -3.1915078, 55.9460762 -3.1916340, 55.9372942 -3.2112450, 55.9386346 -3.2107489, 55.9409866 -3.2107158, 55.9407779 -3.2120796, 55.9410206 -3.2114030, 55.9222605 -3.1522385, 55.9402022 -3.2097896, 55.9498358 -3.1944874, 55.9495178 -3.1951770, 55.9490749 -3.1954965, 55.9544888 -3.1913969, 55.9278308 -3.2029884, 55.9509187 -3.1896338, 55.9549766 -3.1940333, 55.9220620 -3.1790686, 55.9484660 -3.1908405, 55.9491359 -3.1879889, 55.9578836 -3.1723330, 55.9580966 -3.1722775, 55.9493593 -3.1850273, 55.9498809 -3.1852975, 55.9070828 -3.2093020, 55.9496587 -3.1844840, 55.9497910 -3.1868298, 55.9494266 -3.1860127, 55.9544711 -3.1956283, 55.9500589 -3.1853856, 55.9500722 -3.1849837, 55.9510003 -3.1870928, 55.9608626 -3.1709376, 55.9618365 -3.1669617, 55.9617695 -3.1672858, 55.9617360 -3.1670315, 55.9617015 -3.1669427, 55.9510336 -3.1857059, 55.9513675 -3.1810136, 55.9515036 -3.1804098, 55.9499184 -3.2133490, 55.9507199 -3.2116484, 55.9492178 -3.2148611, 55.9501657 -3.2128195, 55.9434309 -3.1997040, 55.9435924 -3.1979007, 55.9594881 -3.1871746, 55.9410282 -3.2065235, 55.9488780 -3.2000101, 55.9405277 -3.1801470, 55.9400777 -3.1787980, 55.9335152 -3.2105421, 55.9193931 -3.2787375, 55.9181911 -3.2782631, 55.9188677 -3.2805660, 55.9196291 -3.2799665, 55.9204553 -3.2780930, 55.9201801 -3.2782104, 55.9199010 -3.2768654, 55.9183106 -3.2760785, 55.9178305 -3.2802163, 55.9192966 -3.2811296, 55.9190402 -3.2822249, 55.9181350 -3.2823908, 55.9589084 -3.1973993, 55.9524851 -3.1785482, 55.9527783 -3.1777107, 55.9525789 -3.1786026, 55.9526096 -3.1778455, 55.9401136 -3.2035933, 55.9398424 -3.2041012, 55.9525625 -3.1763202, 55.9525134 -3.1760443, 55.9424726 -3.2928349, 55.9360140 -3.2013086, 55.9510367 -3.1792500, 55.9509261 -3.1791989, 55.9503655 -3.1805329, 55.9266569 -3.2906587, 55.9259672 -3.2906739, 55.9262051 -3.2898454, 55.9509562 -3.1793029, 55.9716128 -3.1531798, 55.9743102 -3.1591483, 55.9471723 -3.2950498, 55.9475057 -3.2948807, 55.9646922 -3.1748195, 55.9659516 -3.1739827, 55.9432327 -3.1903850, 55.9433218 -3.1904284, 55.9502335 -3.1832343, 55.9462673 -3.1864377, 55.9462171 -3.1866653, 55.9502544 -3.1792709, 55.9799828 -3.2336228, 55.9515884 -3.1767930, 55.9510805 -3.1774572, 55.9233418 -3.1754307, 55.9557050 -3.1593134, 55.9480729 -3.2006300, 55.9242811 -3.1768126, 55.9731731 -3.1669137, 55.9756413 -3.1693138, 55.9758911 -3.1692936, 55.9758604 -3.1697211, 55.9753361 -3.1696582, 55.9756625 -3.1668579, 55.9721048 -3.1685421, 55.9721151 -3.1680154, 55.9717652 -3.1690738, 55.9732515 -3.1673385, 55.9715681 -3.1606383, 55.9692273 -3.1671765, 55.9730053 -3.1675964, 55.9756256 -3.1775110, 55.9713870 -3.1706865, 55.9729528 -3.1695492, 55.9751541 -3.1650251, 55.9751577 -3.1653774, 55.9763527 -3.1666992, 55.9766234 -3.1668946, 55.9528337 -3.1973510, 55.9770520 -3.1688358, 55.9763420 -3.1688202, 55.9768312 -3.1689243, 55.9769477 -3.1679184, 55.9764831 -3.1675618, 55.9766276 -3.1674364, 55.9767630 -3.1679004, 55.9763615 -3.1673944, 55.9762132 -3.1674013, 55.9764423 -3.1672457, 55.9736969 -3.1671845, 55.9743212 -3.1625378, 55.9740795 -3.1632105, 55.9740620 -3.1630357, 55.9742799 -3.1619687, 55.9742593 -3.1633249, 55.9742318 -3.1635897, 55.9752231 -3.1690512, 55.9746912 -3.1702181, 55.9750377 -3.1689925, 55.9746574 -3.1700411, 55.9749450 -3.1691192, 55.9749017 -3.1700282, 55.9720281 -3.1737035, 55.9727889 -3.1744380, 55.9727346 -3.1745843, 55.9721351 -3.1736643, 55.9741171 -3.1730714, 55.9735318 -3.1745179, 55.9740812 -3.1745082, 55.9739348 -3.1746700, 55.9742013 -3.1746074, 55.9744262 -3.1756289, 55.9743317 -3.1760719, 55.9738875 -3.1759382, 55.9743689 -3.1762422, 55.9741727 -3.1757146, 55.9741963 -3.1758890, 55.9740011 -3.1760644, 55.9740555 -3.1757628, 55.9253013 -3.2894404, 55.9241260 -3.2892037, 55.9235279 -3.2886413, 55.9244036 -3.2888357, 55.9236537 -3.2877037, 55.9235845 -3.2848604, 55.9737812 -3.1727710, 55.9739374 -3.1725951, 55.9739122 -3.1731923, 55.9747248 -3.1723013, 55.9746745 -3.1725116, 55.9730956 -3.1719611, 55.9737461 -3.1722015, 55.9735419 -3.1722524, 55.9737264 -3.1720461, 55.9734307 -3.1722581, 55.9733652 -3.1721379, 55.9733894 -3.1719573, 55.9732022 -3.1719596, 55.9732758 -3.1714536, 55.9725117 -3.1719833, 55.9716033 -3.1728525, 55.9716849 -3.1726165, 55.9719508 -3.1722289, 55.9718987 -3.1720621, 55.9550047 -3.1950755, 55.9736826 -3.1690330, 55.9737219 -3.1688570, 55.9753470 -3.1700225, 55.9746740 -3.1690745, 55.9745309 -3.1710571, 55.9744986 -3.1695250, 55.9745046 -3.1693685, 55.9746944 -3.1711617, 55.9759337 -3.1724595, 55.9759996 -3.1723194, 55.9758148 -3.1719840, 55.9760071 -3.1718126, 55.9759678 -3.1720731, 55.9756249 -3.1743429, 55.9756742 -3.1728919, 55.9474254 -3.1872595, 55.9764777 -3.1935321, 55.9501836 -3.1903813, 55.9764763 -3.1861996, 55.9436134 -3.2678368, 55.9789651 -3.2338860, 55.9491658 -3.2048210, 55.9497896 -3.2057497, 55.9397193 -3.2934475, 55.9397826 -3.2930873, 55.9672312 -3.2394326, 55.9718215 -3.2052420, 55.9732950 -3.1966033, 55.9753062 -3.2134399, 55.9745116 -3.2044948, 55.9740769 -3.2060525, 55.9744149 -3.2047233, 55.9748045 -3.2066664, 55.9691367 -3.2785220, 55.9723641 -3.2012431, 55.9501209 -3.2050581, 55.9500762 -3.2064723, 55.9498529 -3.2060188, 55.9431626 -3.1790248, 55.9544909 -3.1908045 +124 and 43.6837822 -79.4260743, 43.6576795 -79.4987997, 43.7022711 -79.5255029, 53.9502911 -1.0730271, 53.9360281 -1.0702516, 53.9153104 -1.1359444, 53.9409591 -1.1265772, 53.9550521 -1.1301932, 53.9490348 -1.1324670, 53.9615418 -1.1120955, 53.9522410 -1.1122907, 53.9358339 -1.1263285, 53.9629477 -0.9755778, 53.9303232 -1.0689686, 53.9642135 -1.0653371, 53.9403226 -1.1185343, 53.9636588 -1.1373722, 53.9491771 -1.0804384, 53.9553252 -1.1119903, 53.9017427 -1.0873341, 53.9575241 -1.0493096, 53.9637219 -1.1380788, 53.9575852 -1.1178225, 53.9494875 -1.1413259, 53.9647966 -1.1058434, 53.9563077 -1.0554740, 53.9462069 -1.0762908, 53.9646978 -1.1104689, 53.9500452 -1.0806102, 43.6644716 -79.5073350, 53.9579066 -1.0615711, 43.6709565 -79.4808029, 53.9578916 -1.0384236, 43.6909696 -79.5078325, 43.6768364 -79.5008575, 43.6869909 -79.4927906, 43.7060427 -79.5305440, 53.9411226 -1.0453008, 53.9402545 -1.0628004, 53.9412901 -1.0485025, 53.9518846 -1.0748059, 43.6954667 -79.4292400, 53.9642505 -1.1103673, 53.9572111 -1.1022306, 53.9275166 -1.1585419, 43.6916751 -79.4801455, 43.6884518 -79.4620778, 43.6791418 -79.4807102, 43.6784874 -79.4805707, 53.9171538 -1.0961410, 43.6983920 -79.4349417, 43.7032269 -79.5060546, 53.9511412 -1.0357185, 43.6965563 -79.4691090, 53.9417894 -1.0651445, 43.6537880 -79.4901878, 43.6868311 -79.4924568, 53.9441501 -1.1072575, 43.6912619 -79.4333772, 43.6883062 -79.4538863, 53.9580671 -1.0717614, 53.9316497 -1.1069040, 43.7063756 -79.5161696, 43.6980072 -79.5193378, 43.6979105 -79.5191746, 43.6981548 -79.5195536, 43.6948627 -79.4854853, 53.9605571 -1.0416518, 43.7078482 -79.5309590, 53.8979156 -0.9664321, 43.6761780 -79.4788514, 43.6769072 -79.4772807, 43.6731469 -79.4908170, 53.9564001 -1.0614879, 53.9602131 -1.0579907, 53.9598297 -1.0582374, 43.6933502 -79.4302213, 43.6843140 -79.4879601, 43.6712702 -79.4926038, 43.6946390 -79.4359419, 43.6869082 -79.4775555, 43.6817542 -79.4986570, 43.7014365 -79.5073633, 43.6935978 -79.4761834, 43.7014532 -79.4510224, 43.7014588 -79.4506901, 43.6957307 -79.4305271, 53.9622142 -1.0110749, 43.7032224 -79.4392616, 43.6925004 -79.5088912, 43.7000154 -79.4462363, 43.7000042 -79.4464494, 43.7001712 -79.4461827, 43.7001539 -79.4458926, 43.7000636 -79.4460083, 43.6836390 -79.4590501, 43.6880963 -79.4613111, 43.6898241 -79.4643187, 53.9450082 -1.1361836, 43.6924209 -79.4689785, 43.6879894 -79.4708591, 53.9586201 -1.0293671, 53.9445374 -1.1245969, 53.9595274 -1.0981373, 53.9610119 -1.1037227, 43.6840446 -79.4389375, 43.6842718 -79.4397157, 43.6871180 -79.4284008, 53.9623408 -1.1308643, 43.6484124 -79.4885632, 53.9522747 -1.0911362, 43.6762467 -79.4781695, 43.6927596 -79.4362309, 43.6895001 -79.4353381, 43.6921445 -79.4472623, 43.6917638 -79.4436721, 43.6628673 -79.4872055, 43.6627881 -79.4870652, 43.6890777 -79.4991503, 43.6898499 -79.4650002, 43.6648262 -79.5030967, 43.7027737 -79.5207797, 43.6742489 -79.4976003, 53.9640155 -1.0652996 +487500 +48.8541652 2.3604172, 48.8963839 2.3624261, 48.8248737 2.3087392, 48.8993122 2.3609092, 48.8993233 2.3617724, 48.8304425 2.2721214, 48.8564445 2.2915808, 48.8313000 2.4416725, 48.8314585 2.4435718, 48.8306063 2.4405136, 48.8319652 2.4454636, 48.8317943 2.4469582, 48.8309202 2.4463017, 48.8291949 2.4452916, 48.8291208 2.4475259, 48.8280917 2.4493365, 48.8288155 2.4504391, 48.8279653 2.4512915, 48.8172489 2.3419302, 48.8527928 2.4131895, 48.8516351 2.4139817, 48.8589361 2.4130244, 48.8219145 2.3772908, 48.8916479 2.3973660, 48.8189840 2.3359160, 48.8493218 2.2850640, 48.8413729 2.2530487, 48.8173566 2.3642554, 48.8745694 2.2772092, 48.8651890 2.2695538, 48.8414290 2.2530717, 48.8192373 2.3541308, 48.8182299 2.4585231, 48.8194154 2.4605790, 48.8353668 2.4412540, 48.8314775 2.2726540, 48.8460923 2.2570997, 48.8262013 2.4576009, 48.8288698 2.4604906, 48.8252883 2.4577897, 48.8271040 2.4569086, 48.8267231 2.4561442, 48.8284019 2.4610162, 48.8276508 2.4590248, 48.8274884 2.4576702, 48.8256615 2.4585554, 48.8270526 2.4603840, 48.8265841 2.4609108, 48.8964444 2.3124004, 48.8892773 2.3152853, 48.8995126 2.3630674, 48.8396076 2.4117403, 48.8267883 2.2989248, 48.8996533 2.3245162, 48.9003238 2.3498399, 48.8560241 2.4128978, 48.8570641 2.4125995, 48.8617355 2.4119807, 48.8207864 2.3270956, 48.8407199 2.2797907, 48.8650432 2.2584123, 48.8325304 2.4014430, 48.9002424 2.3481720, 48.8999996 2.3408061, 48.8330580 2.4421058, 48.8323107 2.4404839, 48.8307714 2.4424382, 48.8289808 2.4410748, 48.8289999 2.4427711, 48.8441298 2.3930950, 48.8314075 2.4542498, 48.8355851 2.4389815, 48.8537172 2.2616103, 48.8905198 2.3004678, 48.8489058 2.4157395, 48.8360783 2.4383689, 48.8352273 2.4395834, 48.8321213 2.3663327, 48.8172226 2.3451045, 48.8275756 2.3594809, 48.8185965 2.3670404, 48.8839549 2.2846685, 48.8313882 2.2716642, 48.8856508 2.3759414, 48.8185234 2.3466553, 48.8276232 2.2954956, 48.8235209 2.3144545, 48.8369677 2.2900219, 48.8511630 2.2567335, 48.8189318 2.4610821, 48.8243189 2.4615574, 48.8960440 2.3610957, 48.8563764 2.3886135, 48.8665252 2.3904723, 48.8712726 2.3865486, 48.8941086 2.3968276, 48.8904713 2.3737426, 48.8904321 2.3106567, 48.8919636 2.3123125, 48.8360029 2.2835490, 48.8940790 2.3261529 +0 +yes +1 +183 +no +88 +61 +Greggs, Malone's Bakeries, Gregg's, Douglas's Bakery, Masons Bakery, Roll Up, Gregg's, Barnton Fine Foods, La Croissanterie, Mathiesons Bakers, Greggs, Storries Home Bakery, Morrison's Bakery, Greggs, Gregg's Bakery, Greggs, Greggs, Patissier Maxine, Patisserie Valerie, Bibi's Cake Boutique, Greggs, Dough Re Mi, Dough Re Mi, The Pine Tree Bakery, Donachie Bakers, Bayne's, Goodfellow & Steven, Greggs, Bakery Andante, Greggs, Greggs, Bayne's, Artisan Bakehouse, Nikki's Cakes, Goodfellow & Steven, Edinburgh Bakehouse, Greggs, Greggs, Bonningtons, The Wee Boulangerie, Jacob, Licks Cake Design, Greggs, Greggs, Mr Bun's Bakery, Glenvarloch Bakery, Archipelago Bakery, Sicilian Pastry Shop, Melinda's Cake Boutique, Malone's Bakery, Greggs, 1, Greggs +48.8373758 2.2723483, 48.8479197 2.3992555, 48.8480669 2.2646701, 48.8444572 2.3762234, 48.8672033 2.3175552, 48.8336197 2.4448135, 48.8794780 2.2911520, 48.8374741 2.2964370, 48.8426769 2.2964541, 48.8447051 2.3110485, 48.8418578 2.3031404, 48.8356667 2.3025546, 48.8418917 2.2973124, 48.8375362 2.2963597, 48.8371698 2.2968218, 48.8411351 2.2996815, 48.8513851 2.3427515, 48.8267972 2.3644166, 48.8266959 2.3418366, 48.8313237 2.3160082, 48.8276961 2.3323037, 48.8526158 2.3471643, 48.8536884 2.3438503, 48.8465209 2.3169152, 48.8223603 2.3376975, 48.8333496 2.3122320, 48.8468908 2.3696558, 48.8422395 2.3861184, 48.8463028 2.3793259, 48.8399294 2.4045970, 48.8448378 2.4051177, 48.8474520 2.4048594, 48.8473395 2.4060719, 48.8350796 2.4339399, 48.8354938 2.4305358, 48.8375477 2.4255552, 48.8346793 2.4193483, 48.8684023 2.3502078, 48.8662853 2.3197532, 48.8659622 2.3186038, 48.8679910 2.3372848, 48.8554435 2.3595073, 48.8529019 2.3430541, 48.8502442 2.3485713, 48.8844724 2.3214773, 48.8848286 2.2981665, 48.8815112 2.2955182, 48.8637584 2.2404391, 48.8410791 2.3878034, 48.8684582 2.2651973, 48.8652473 2.2754857, 48.8364073 2.3595567, 48.8325568 2.3113862, 48.8326306 2.3560783, 48.8397407 2.3618144, 48.8430681 2.3643136, 48.8548336 2.3455606, 48.8552512 2.3476157, 48.8553803 2.3476867, 48.8554064 2.3475533, 48.8552816 2.3474675, 48.8316089 2.3555656, 48.8724857 2.2964468, 48.8578487 2.2776036, 48.8561596 2.2803320, 48.8587309 2.2850498, 48.8503867 2.2499063, 48.8474160 2.2734653, 48.8645482 2.2749436, 48.8798361 2.2946562, 48.8867832 2.3174727, 48.8834250 2.3133443, 48.8832839 2.3261502, 48.8620110 2.2617158, 48.8578293 2.2627189, 48.8522460 2.2310858, 48.8561113 2.3406430, 48.8359176 2.2934497, 48.8415640 2.2914435, 48.8321096 2.3027626, 48.8488952 2.2875621, 48.8450063 2.2934495, 48.8428146 2.3128644, 48.8584946 2.2687106, 48.8590276 2.2701439, 48.8582201 2.2684874, 48.8580507 2.2679638, 48.8621864 2.2858577, 48.8627962 2.2854972, 48.8620791 2.2848191, 48.8477318 2.3279086, 48.8587970 2.2574756, 48.8844757 2.3382719, 48.8859435 2.3414431, 48.8462050 2.3548474, 48.8445578 2.3478015, 48.8397766 2.3563951, 48.8439889 2.3550231, 48.8400361 2.3581380, 48.8403571 2.3507117, 48.8777755 2.4052173, 48.8374935 2.3535342, 48.8379182 2.3556557, 48.8392719 2.3386499, 48.8382351 2.3417326, 48.8501724 2.3668483, 48.8805089 2.3247630, 48.8795193 2.3372522, 48.8860003 2.3379474, 48.8871034 2.3395432, 48.8872913 2.3493292, 48.8849270 2.3525804, 48.8994594 2.3456310, 48.8925222 2.3614454, 48.8881990 2.3259122, 48.8551549 2.3558324, 48.8670855 2.3530694, 48.8647563 2.3632147, 48.8775035 2.3271975, 48.8674231 2.3585861, 48.8535530 2.3577268, 48.8554797 2.2377372, 48.8509506 2.2377234, 48.8554112 2.4000945, 48.8276950 2.3526554, 48.8718710 2.3683060, 48.8480846 2.3334838, 48.8451543 2.3325456, 48.8474672 2.3379586, 48.8474379 2.3363959, 48.8503580 2.3831342, 48.8699280 2.3499165, 48.8570290 2.3204791, 48.8321351 2.3486444, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8293608 2.3803043, 48.8299075 2.3795677, 48.8188018 2.3371410, 48.8185040 2.3384113, 48.8181578 2.3401279, 48.8370007 2.3812275, 48.8204882 2.3602086, 48.8203447 2.3628121, 48.8199857 2.3627088, 48.8339810 2.3847461, 48.8353141 2.3838347, 48.8352990 2.3814978, 48.8787743 2.4087695, 48.8790383 2.4084495, 48.8782046 2.4088226, 48.8793770 2.4082476, 48.8785854 2.4080833, 48.8418885 2.2735712, 48.8640823 2.3242375, 48.8428738 2.2978005, 48.8243977 2.3360819, 48.8649222 2.3994933, 48.8297310 2.3179488, 48.8516782 2.3146314, 48.8706300 2.2979200, 48.8628604 2.3719559, 48.8677797 2.3773892, 48.8365930 2.3046690, 48.8363767 2.4236251, 48.8295071 2.4201091, 48.8212233 2.4336070, 48.8300361 2.4231832, 48.8954660 2.3118560, 48.9006880 2.3443120, 48.8726523 2.2991152, 48.8295708 2.4234828, 48.8384857 2.3139931, 48.8880790 2.3433440, 48.8425610 2.3055230, 48.8606880 2.2465600, 48.8291280 2.4377720, 48.8488720 2.3128820, 48.8817158 2.3974038, 48.8345717 2.3321583, 48.8350776 2.4353579, 48.8517060 2.3188780, 48.8430906 2.4215578, 48.8630654 2.2649414, 48.8635021 2.2620126, 48.8597630 2.3718080, 48.8963810 2.3139000, 48.8322990 2.3969380, 48.8852454 2.3310516, 48.8612160 2.3941080, 48.8397680 2.3287550, 48.8893940 2.3388820, 48.8374610 2.2851470, 48.8954560 2.3210460, 48.8562087 2.3767474, 48.8556820 2.3852020, 48.8238387 2.3531949, 48.8674870 2.3165830, 48.8315645 2.4109263, 48.8312210 2.4129893, 48.8532780 2.2711410, 48.8311370 2.3128840, 48.8778330 2.3934820, 48.8555310 2.3895370, 48.8898960 2.2981300, 48.8417190 2.3204800, 48.8871960 2.3058630, 48.8998070 2.3740820, 48.8551080 2.3942800, 48.8459400 2.2689590, 48.8599920 2.3625150, 48.8270122 2.3540304, 48.8424551 2.3888122, 48.8623280 2.3486460, 48.8855390 2.3268800, 48.8569870 2.2983049, 48.8501704 2.3439958, 48.8399030 2.2904890, 48.8585128 2.2948820, 48.8525988 2.4088082, 48.8691890 2.2731280, 48.8898369 2.3739136, 48.8307590 2.3592040, 48.8526713 2.3815527, 48.8417000 2.3374070, 48.8210197 2.3568688, 48.8523510 2.2944030, 48.8383280 2.2782440, 48.8951024 2.3643279, 48.8433760 2.3364170, 48.8504870 2.3502540, 48.8654640 2.3863600, 48.8702780 2.3853090, 48.8289169 2.3068462, 48.8684460 2.3844060, 48.8530930 2.2487630, 48.8483008 2.3594250, 48.8743960 2.3620000, 48.8590555 2.3853281, 48.8510180 2.2721570, 48.8417750 2.2766630, 48.8909945 2.3180223, 48.8581770 2.2475410, 48.8708487 2.3842762, 48.8559797 2.2830925, 48.8808400 2.3880660, 48.8304600 2.4499760, 48.8366079 2.4625007, 48.8185772 2.3545050, 48.8789680 2.3090890, 48.8221640 2.3407800, 48.8861910 2.3437000, 48.8229962 2.3483008, 48.8548880 2.3860580, 48.8334140 2.3198533, 48.8782185 2.2703461, 48.8342986 2.3307561, 48.8649444 2.4051523, 48.8711656 2.3608619, 48.8683392 2.3860944, 48.8512040 2.3336860, 48.8519135 2.2527965, 48.8617560 2.2470009, 48.8211700 2.3525560, 48.8876610 2.2899050, 48.8412050 2.4011810, 48.8957085 2.3611060, 48.8325969 2.4424252, 48.8280471 2.4193059, 48.8341687 2.4613030, 48.8521115 2.2541524, 48.8319760 2.4160891, 48.8322537 2.4156461, 48.8736560 2.2651653, 48.8385501 2.4606113, 48.8237496 2.4396773, 48.8234381 2.4570355, 48.8634236 2.2498140, 48.8715892 2.2642560, 48.8302710 2.4501255, 48.8515696 2.2338766, 48.8272306 2.4306540, 48.8308745 2.4295234, 48.8404327 2.4302364, 48.8670116 2.2393588, 48.8589309 2.2291849, 48.8593085 2.2283998, 48.8683594 2.2629205, 48.8351339 2.4507573, 48.8355228 2.4555897, 48.8728525 2.2727107, 48.8270280 2.4256131, 48.8523056 2.3854632, 48.8827393 2.3748215, 48.8649924 2.3911518, 48.8992390 2.3401270, 48.8283394 2.3695038, 48.8814860 2.3253960, 48.8890670 2.3382500, 48.8713595 2.3858455, 48.8756264 2.3549455, 48.8316594 2.3202088, 48.8940100 2.3515980, 48.8515687 2.3455917, 48.8606179 2.4048647, 48.8221234 2.3755099, 48.8501856 2.3598181, 48.8832242 2.3300482, 48.8543340 2.3134030, 48.8479841 2.3021348, 48.8381900 2.2706380, 48.8921127 2.3319234, 48.8783392 2.3518796, 48.8672620 2.3546160, 48.8373130 2.3123540, 48.8929520 2.3468380, 48.8319794 2.3254293, 48.8876110 2.3980200, 48.9001410 2.3907160, 48.8285390 2.2936320, 48.8581731 2.4063523, 48.8581782 2.3488219, 48.8937910 2.3254410, 48.8579930 2.3811530, 48.8878070 2.3168387, 48.8701720 2.3941990, 48.8252925 2.3693389, 48.8528480 2.3236680, 48.8954540 2.3265480, 48.8366880 2.3168190, 48.8311305 2.3217527, 48.8281910 2.2975610, 48.8760549 2.4066379, 48.8646712 2.2945788, 48.8224115 2.3234656, 48.8648810 2.3598580, 48.8563720 2.3423640, 48.8785620 2.3603690, 48.8656244 2.4005700, 48.8976745 2.3255573, 48.8678880 2.4110180, 48.8782870 2.3930910, 48.8687996 2.3670827, 48.8488580 2.3354220, 48.8323838 2.3266258, 48.8302050 2.3165310, 48.8578985 2.3627922, 48.8338684 2.3623631, 48.8186719 2.3602335, 48.8311679 2.3698529, 48.8353270 2.3472350, 48.8512390 2.2749420, 48.8675640 2.3439900, 48.8940810 2.3257310, 48.8389116 2.2802003, 48.8435250 2.3852390, 48.8239822 2.3186264, 48.8847495 2.3583714, 48.8680920 2.3674820, 48.8268397 2.3045308, 48.8749920 2.3693880, 48.8691100 2.3880580, 48.8927720 2.3393440, 48.8582469 2.3636013, 48.8847394 2.3599665, 48.8708650 2.3267180, 48.8851070 2.3774500, 48.8759177 2.3199403, 48.8985920 2.3386760, 48.8411853 2.3632232, 48.8618850 2.3795690, 48.8766520 2.3471580, 48.8973940 2.3352610, 48.8432899 2.3273991, 48.8863250 2.3533990, 48.8501986 2.3439620, 48.8892960 2.3080360, 48.8937263 2.3632365, 48.8295130 2.2974440, 48.8505319 2.3140947, 48.8513900 2.2954500, 48.8866720 2.3745570, 48.8519585 2.3815373, 48.8735686 2.3764151, 48.8486812 2.4047540, 48.8186727 2.3590770, 48.8422355 2.3539722, 48.8829640 2.2906840, 48.8862884 2.3363224, 48.8997980 2.3671430, 48.8940029 2.3839514, 48.8509163 2.4000959, 48.8990940 2.3343970, 48.8737600 2.4116660, 48.8608430 2.4112060, 48.8729910 2.3967970, 48.8991980 2.3373340, 48.8399790 2.2978655, 48.8569010 2.3829850, 48.8670820 2.3921970, 48.8394056 2.4219004, 48.8491125 2.4034753, 48.8387600 2.3533490, 48.8650341 2.4104986, 48.8939970 2.3494640, 48.8765790 2.3317425, 48.8570984 2.3707315, 48.8861355 2.3561753, 48.8866310 2.2931960, 48.8446043 2.3875639, 48.8780460 2.3546040, 48.8885760 2.3372580, 48.8544710 2.3306000, 48.8444200 2.2902970, 48.8482791 2.3738928, 48.8541916 2.4013975, 48.8477459 2.4005894, 48.8401440 2.3004225, 48.8315105 2.3698744, 48.8682815 2.2937862, 48.8377715 2.3234750, 48.8451934 2.3802706, 48.8437212 2.3551124, 48.8691909 2.3123689, 48.8313290 2.3203574, 48.8678242 2.3628446, 48.8686720 2.3127647, 48.8671021 2.3110061, 48.8450099 2.3109341, 48.8243378 2.3638857, 48.8933245 2.3887800, 48.8941743 2.3916574, 48.8412410 2.2855118, 48.8219932 2.3234435, 48.8211670 2.3407757, 48.8536514 2.3489902, 48.8408330 2.4201155, 48.8337204 2.3201626, 48.8338246 2.3197979, 48.8912248 2.3930476, 48.8946014 2.3912450, 48.8548000 2.3455200, 48.8468000 2.3358800, 48.8527000 2.3492200, 48.8518000 2.3475300, 48.8242821 2.4231989, 48.8387842 2.4064887, 48.8321456 2.3262397, 48.8608218 2.3464552, 48.8685507 2.2728757, 48.8449387 2.4418585, 48.8563416 2.2955451, 48.8724483 2.2489997, 48.8687857 2.2448905, 48.8735492 2.2502871, 48.8706241 2.2491259, 48.8705077 2.2469076, 48.8729282 2.2477712, 48.8734222 2.2509255, 48.8670602 2.2431900, 48.8688615 2.2471136, 48.8516633 2.4098056, 48.8668000 2.3495673, 48.8600249 2.4009571, 48.8589058 2.3989762, 48.8559569 2.4014635, 48.8902559 2.3155823, 48.8895081 2.3152790, 48.8909868 2.3143418, 48.8916562 2.3142685, 48.8819047 2.3985349, 48.8590759 2.4003273, 48.8644583 2.3274519, 48.8879169 2.3153097, 48.8879452 2.3155854, 48.8914702 2.3147632, 48.8264004 2.4327560, 48.8189971 2.3575128, 48.8323795 2.3620094, 48.8697228 2.2704730, 48.8520536 2.4091515, 48.8198844 2.3619743, 48.8195477 2.3338738, 48.8569678 2.3519723, 48.8499865 2.3481714, 48.8895806 2.3929015, 48.8847068 2.3794407, 48.8420092 2.4240851, 48.8643128 2.3266632, 48.8232610 2.3543235, 48.8232751 2.3542283, 48.8359580 2.3022176, 48.8237907 2.3314831, 48.8632906 2.3969375, 48.8597103 2.3998209, 48.8303825 2.3751684, 48.8930154 2.3876090, 48.8296315 2.3814341, 48.8300792 2.4152641, 48.8419664 2.3871201, 48.8815514 2.4001315, 48.8283467 2.3766535, 48.8238319 2.3396086, 48.8612225 2.3119810, 48.8625039 2.3009824, 48.8880273 2.3373781, 48.8725766 2.3640561, 48.8441811 2.3576296, 48.8668462 2.3528123, 48.8658864 2.3524475, 48.8764030 2.3793479, 48.8310454 2.3779874, 48.8226090 2.3400474, 48.8239560 2.3366723, 48.8527614 2.3515044, 48.8577082 2.3492535, 48.8564552 2.3511205, 48.8888874 2.3790640, 48.8421923 2.2737321, 48.8386247 2.2767307, 48.8786186 2.4075133, 48.8276674 2.3600431, 48.8279422 2.3594556, 48.8281550 2.3775324, 48.8585066 2.2446643, 48.8316089 2.3555656, 48.8316089 2.3555656, 48.8459784 2.3603720, 48.8869922 2.3168829, 48.8243136 2.4192238, 48.8629574 2.3670436, 48.8705355 2.3858494, 48.8771612 2.3641684, 48.8365007 2.3061630, 48.8408118 2.2763450, 48.8662716 2.4063088, 48.8487971 2.2855992, 48.8305375 2.3580300, 48.8527458 2.3514040, 48.8340933 2.3218873, 48.8342849 2.3425292, 48.8361094 2.3872805, 48.8774505 2.3685222, 48.8563876 2.4098516, 48.8897483 2.3636170, 48.8893152 2.3632428, 48.8895729 2.3670765, 48.8479507 2.3346295, 48.8531320 2.3882360, 48.8548595 2.4101096, 48.8950748 2.3539271, 48.8737508 2.2552546, 48.8572052 2.2975105, 48.8287672 2.3790174, 48.8290058 2.3792428, 48.8324901 2.4167426, 48.8325371 2.4171377, 48.8770432 2.3607309, 48.8928183 2.3927190, 48.8528020 2.4110674, 48.8854184 2.3809339, 48.8847022 2.3794239, 48.8220651 2.3497136, 48.8402419 2.2911223, 48.8556477 2.3481362, 48.8647970 2.3376815, 48.8379924 2.3573249, 48.8506007 2.3684957, 48.8279269 2.3606649, 48.8281328 2.3608761, 48.8284210 2.3605021, 48.8290169 2.3599418, 48.8313949 2.3614586, 48.8502691 2.3768309, 48.8514077 2.3619724, 48.8557425 2.3657180, 48.8557863 2.3654533, 48.8405076 2.4080728, 48.8407300 2.4111999, 48.8420117 2.4099305, 48.8435586 2.3837116, 48.8463579 2.4045679, 48.8467508 2.4047042, 48.8481084 2.4046457, 48.8358697 2.3734634, 48.8362808 2.3737861, 48.8444058 2.3789793, 48.8769296 2.3805462, 48.8307541 2.4193421, 48.8663182 2.3718556, 48.8209696 2.4454995, 48.8453348 2.3532344, 48.8736147 2.3633962, 48.8708335 2.3864170, 48.8223127 2.4420635, 48.8594153 2.4063574, 48.8759892 2.3685271, 48.8640746 2.3609523, 48.8602693 2.3889177, 48.8593740 2.3653569, 48.8279008 2.3224596, 48.8620888 2.3721843, 48.8416104 2.3878997 +yes +yes +3 and 55.9354242 -3.1897423, 55.9542006 -3.1087433, 55.9374159 -3.1700169 +recreation ground, allotments, construction, cemetery, industrial, grass, commercial, farmland, railway, basin, retail, village green, residential, forest, farmyard, orchard, meadow, military, proving ground, greenfield, landfill, traffic island, vineyard, sand, scrub, garage, brownfield, greenhouse horticulture, quarry, garages, farm +2.6754177782878759 +yes +Tiergartenstraße +51 +yes +Camping de Paris - Bois de Boulogne +01.40.67.97.66, +33 1 44 78 75 00, +33 1 44859800, 01 46 36 07 07, 01 44 85 98 00, +33 1 44781233, 01.53.01.96.96, 01 48 03 11 09, +33 1 55 74 70 40, 01.44.78.80.20 +yes +de:Heidenloch (Heidelberg) +4.3205587903235791 +11 +231 +55.9308997 -3.1309460, 55.9390317 -3.1727940, 55.9350432 -3.1974969, 55.9530140 -3.1069114, 55.9838271 -3.1959330, 55.9715399 -3.1754017, 55.9609898 -3.2094322, 55.9423816 -3.2176526 +23 +25 +1 +Pharmacie Internationale +60 +Südwestrundfunk (SWR) +48.8275543 9.1735007, 48.8317303 9.1734075, 48.7617346 9.1602369, 48.7789392 9.1250259, 48.7596919 9.2545814, 48.7755956 9.2787713, 48.7822418 9.1959176, 48.7297433 9.1126553, 48.7404705 9.2193208, 48.7701954 9.1501963, 48.8038663 9.2046417, 48.7817024 9.1785053, 48.7738605 9.1653114, 48.7745628 9.1768249, 48.7755661 9.1822665, 48.8075764 9.2215905, 48.7748791 9.2033224, 48.7855023 9.2078250, 48.7728984 9.2422225, 48.7603190 9.1527564, 48.8099398 9.1822005, 48.7835213 9.1904669, 48.7777675 9.1786644, 48.7836164 9.1815941, 48.8051636 9.2143167, 48.8075633 9.2031061, 48.8056941 9.2052973, 48.8046584 9.2081441, 48.7733571 9.1814780, 48.7935947 9.1983330, 48.8302021 9.2116521, 48.8031501 9.2176920, 48.7482479 9.1675385, 48.7803811 9.2504393, 48.8062716 9.1978670, 48.8137095 9.1121176, 48.7459605 9.1628840, 48.8142557 9.1680503, 48.7637176 9.1680843, 48.7829026 9.1869980, 48.7314704 9.1097357, 48.7803731 9.1800642, 48.7790681 9.1778545, 48.7789470 9.1790715, 48.8029161 9.0920608, 48.7103495 9.2034577, 48.8040371 9.2077185, 48.8299794 9.1677017, 48.8066438 9.2064316, 48.7625523 9.2679330, 48.7714772 9.1787823, 48.7739785 9.1452043, 48.7743064 9.1728145, 48.7607878 9.0913690, 48.8367097 9.2219462, 48.8053640 9.1717932, 48.8047872 9.1737641, 48.8071042 9.1709399, 48.7454315 9.2048052, 48.7750049 9.1779775, 48.7865061 9.0839294, 48.8347151 9.2143326, 48.8016329 9.2177209, 48.7813410 9.2686106, 48.7836705 9.1815229, 48.8414941 9.2304961, 48.7764847 9.1755588, 48.8076517 9.1765509, 48.8280349 9.1541290, 48.7735308 9.1564212, 48.8022186 9.2108011, 48.7173535 9.1056474, 48.8228892 9.2406244 +Römischer Tempel, Dicker Turm +5 +indian, italian, regional, chinese, thai, german, french, vegetarian, greek, spanish, mediterranean, japanese, malaysian, eritrean, international, persian, asian, moroccan, burger, vietnamese, turkish, african, cuban, korean, vegan, Flammkuchen +H+G Bank and 49.4120923 8.7117858 +yes and 62 and 48.8651191 2.3417893, 48.8776904 2.2687637, 48.8889479 2.3316294, 48.8678821 2.3921769, 48.8844316 2.3506830, 48.8551205 2.3589562, 48.8424054 2.3895404, 48.8947814 2.3190669, 48.8549238 2.3592860, 48.8698923 2.3755947, 48.8832324 2.3637211, 48.8842940 2.3538553, 48.8245519 2.3668617, 48.8442654 2.3304438, 48.8595500 2.3794207, 48.8476483 2.3769905, 48.8425237 2.3899126, 48.8776787 2.3858246, 48.8770064 2.3684202, 48.8683317 2.3921668, 48.8522237 2.3452202, 48.8947391 2.3190753, 48.8903302 2.3647026, 48.8951201 2.3923772, 48.8676645 2.3368980, 48.8541107 2.3568241, 48.8892150 2.3050790, 48.8519784 2.3354942, 48.8784073 2.3854415, 48.8782913 2.3861269, 48.8838102 2.3718772, 48.8875552 2.3794980, 48.8480906 2.3770269, 48.8698453 2.3669656, 48.8766670 2.2637973, 48.8488289 2.3520343, 48.8640121 2.3431386, 48.8605119 2.3524278, 48.8609964 2.3511217, 48.8581282 2.3585957, 48.8665653 2.3534157, 48.8748621 2.3640685, 48.8714289 2.3586492, 48.8491305 2.3324247, 48.8616442 2.3214269, 48.8942221 2.3932346, 48.8909125 2.3908221, 48.8914135 2.3730389, 48.8523494 2.3282306, 48.8775032 2.3443702, 48.8660241 2.3891973, 48.8700810 2.3939859, 48.8852691 2.3273520, 48.8852591 2.3385563, 48.8480847 2.3771241, 48.8312041 2.3702611, 48.8520334 2.2747877, 48.8497046 2.3472459, 48.8582260 2.3619639, 48.8310687 2.3580834, 48.8902445 2.3700712, 48.8673569 2.3780427 +yes +Mannheim +yes +0 +La Poste +2243833 +yes +Fair & Quer, NahKauf, Edeka, Netto, Penny, ALDI SÜD, denn's Biomarkt, Lidl, Fair & Quer, City-Markt Rüdinger, Netto, Penny, Mahlzahn Vollkornbäckerei, Netto, Feinkost Sahin, dm, Masala, Apfel und Korn, Heil's Feinschmeckerladen, Shopette, Kaufland, REWE City, REWE city, Penny, Alnatura, Reformhaus Escher (Vita Nova), Lebe Gesund, Alnatura, Serpa Markt, Nahkauf, City-Markt Rüdinger, Scheck-In-Center, Netto, Rewe, Kaufland, denn's Biomarkt, Lidl, Aldi, Rewe, Lidl, Penny, Nah und gut, Rewe, Kaufland, Aldi Süd, Lidl, Aldi Süd, Aldi, Aldi, REWE Center, ALDI Süd +no +48.8510673 2.3670936, 48.8494146 2.3482770, 48.8452383 2.3641683, 48.8442218 2.3811783, 48.8690961 2.3437971, 48.8426264 2.3901753, 48.8675566 2.2753192, 48.8542310 2.2688050, 48.8503222 2.3325549, 48.8638367 2.3749471, 48.8725482 2.3581799, 48.8922817 2.3443080, 48.8843283 2.3861616, 48.8582851 2.4065730, 48.8561576 2.4045951, 48.8577179 2.2773092, 48.8638302 2.2764451, 48.8855926 2.2970145, 48.8841470 2.3223431, 48.8433337 2.2768334, 48.8414384 2.3002634, 48.8755541 2.3045372, 48.8553731 2.3435125, 48.8628456 2.3420046, 48.8616954 2.3482560, 48.8669041 2.3315149, 48.8542985 2.3783997, 48.8589937 2.3814395, 48.8473592 2.3309027, 48.8340181 2.3740832, 48.8652119 2.2905036, 48.8701850 2.3766208, 48.8896373 2.3480452, 48.8671825 2.3131358, 48.8668030 2.3107239, 48.8501938 2.3666710, 48.8445644 2.3839569, 48.8777522 2.3178837, 48.8544686 2.3341824, 48.8694260 2.3613550, 48.8807365 2.3660941, 48.8632590 2.3519986, 48.8416861 2.2637661, 48.8804108 2.3562078, 48.8361400 2.3232008, 48.8768355 2.3527879, 48.8911935 2.3792213, 48.8550679 2.3462868, 48.8411402 2.3654371, 48.8764364 2.3934657, 48.8472751 2.2844418, 48.8933622 2.3648120, 48.8767354 2.3606489, 48.8577240 2.2943986, 48.8543637 2.3467385, 48.8541008 2.3508942, 48.8808624 2.3661835, 48.8922985 2.3808600, 48.8620107 2.3121034, 48.8401192 2.3024490, 48.8654752 2.3969034, 48.8851079 2.3221911, 48.8852850 2.3516529, 48.8330311 2.3559118, 48.8381409 2.3592686, 48.8264091 2.3707059, 48.8288263 2.3665943, 48.8361561 2.3231047, 48.8880610 2.3765878 +yes +yes +1 +48.1133979 11.5580798, 48.2167392 11.5288862, 47.5645037 9.6756220, 48.1917560 11.2604606, 48.1672232 11.5486553, 48.0529514 11.6690600, 48.0652614 11.6606034, 48.1502805 11.5678752, 48.1724666 11.5709000, 47.8174163 10.5345680, 48.1395725 11.6047921, 48.0954169 11.5566816, 48.3830181 10.4715717, 48.0913305 11.6784142, 47.8527854 12.3359177, 47.6768601 11.8377311, 48.1106870 12.1546587, 48.1128273 12.1503231, 48.6589620 13.2511100, 48.5745332 13.4639931, 48.1452629 11.4616156, 48.1101440 11.5418164, 48.6831112 10.8195081, 48.1188084 11.4450399, 48.1169283 11.4307756, 48.1121499 11.6495213, 47.8376039 11.7570497, 48.7077119 10.7968484, 48.3552389 10.9787058, 48.0087205 11.7329256, 48.0216058 11.7817301, 48.4036435 11.9891592, 48.5330823 12.1608939, 48.6793602 10.8398813, 48.6721648 10.8601728, 48.4303767 10.6017105, 47.9110333 11.6747920, 48.5335696 12.1598458, 47.8670880 12.7062222, 47.8282218 12.9077877, 48.7156858 10.7825564, 48.0481813 11.7018372, 48.0771391 11.7151740, 48.0772066 11.7150615, 48.1436359 11.5777273, 48.1433386 11.5761135, 48.0955077 11.7278751, 48.7136659 13.2701615, 48.1144089 11.7961741, 47.3109958 10.2208189, 48.0597408 11.6211259, 48.0672766 11.6621456, 48.3649975 11.4598175, 47.9837849 11.7003225, 48.5732476 10.8367687, 48.0199151 11.7286030, 48.5764989 10.8567173, 47.6606856 10.3497681, 48.1439897 11.5890544, 48.1504174 11.5926415, 48.1425164 11.5819824, 48.1413020 11.5773712, 48.4393971 10.4521982, 48.7256870 13.6028288, 48.7279362 13.6020419, 48.4034482 10.4623921, 48.1529504 11.2588493, 47.7145411 10.3070947, 48.7365394 13.5593114, 47.9066812 11.2801198, 48.7345934 13.5963213, 48.7364847 13.5964511, 48.7382158 13.6078165, 48.4985997 10.4042132, 47.4419272 11.2615129, 48.6364406 10.8242648, 48.7302984 13.6011798, 48.6624403 10.5210395, 48.1029807 11.8361371, 48.1350817 11.8749388, 47.9136232 11.2885710, 47.9129446 11.2857099, 48.8323467 12.1397113, 47.9081793 11.2773451, 47.9111525 10.5746665, 47.5549764 10.3203858, 48.2061893 11.5287483, 48.7223938 13.6179050, 47.9477750 11.2973595, 48.0026541 11.3213801, 48.0029713 11.3200625, 47.9431822 11.2570840, 48.1011013 11.6307959, 48.2372271 11.5475541, 48.2509071 11.5479241, 47.9410010 11.3016771, 47.9488326 11.3073731, 47.8632158 12.0083649, 48.0760825 11.5427810, 47.8977079 11.7820554, 48.1358816 11.5497163, 48.1273073 11.5451210, 48.1365137 11.5736815, 48.0392695 11.1435565, 48.3455521 12.1317089, 48.0002694 11.7956966, 48.8732355 11.3304000, 48.5982247 13.5518268, 48.2568821 11.4533336, 48.1804331 11.2800013, 47.5806808 12.9900205, 48.1010084 11.5468015, 48.1684687 11.5687037, 48.1711863 11.7155717, 48.1907849 11.2798642, 47.9032628 11.2772693, 48.6457043 13.5429788, 47.9003514 11.2741039, 48.7163700 13.6172725, 48.0766582 11.6626169, 48.6167866 11.9930003, 47.9125378 11.4195676, 48.1792348 11.3734128, 48.1782705 11.6260539, 48.1418146 11.5678012, 48.3834205 10.4714165, 48.1372350 11.5755354, 48.8581460 12.2279055, 48.4051825 11.9906620, 48.1350984 11.5760826, 47.7647020 12.3237407, 48.4676545 11.9380643, 48.4683631 11.9372170, 48.4675850 11.9354037, 48.1162625 11.5773134, 48.1155748 11.5803688, 48.2868645 11.4176679, 48.1489142 11.4594334, 48.0738927 11.3926369, 48.0960216 11.4131009, 48.2731929 11.4236388, 47.4676949 11.2491918, 48.1637344 11.4579506, 48.1476363 11.6010835, 48.2849053 11.4363469, 48.1799294 11.5750893, 47.8639011 12.6442624, 48.3046921 11.5429995, 48.1798173 11.5493366, 48.1767245 11.5477536, 47.8729654 12.1972526, 48.2738619 10.2290878, 48.5308012 11.4964571, 48.1596505 11.9979333, 48.1043551 11.2253453, 48.1707150 11.2528747, 48.0774058 12.0911230, 48.1189200 11.4453575, 47.7684577 11.6491787, 48.7011673 12.0279415, 48.2872819 10.2192824, 47.7602384 11.7365376, 47.9707197 11.7805174, 47.7501179 11.6777269, 47.9724108 10.1739626, 48.1256571 11.6629814, 48.7865388 10.6881358, 47.4336111 11.2579089, 47.7041339 12.0283575, 47.6066818 11.3147285, 47.7480474 10.6074388, 48.0017408 11.2701528, 47.6520979 11.4211323, 48.0742257 11.6533857, 48.0596775 11.6671957, 47.6295533 10.1893894, 48.1287664 11.4349115, 47.6824907 11.5717732, 47.9132392 11.2862167, 48.3591440 12.6093476, 48.1403023 11.5739691, 48.2510565 11.5076920, 48.0480677 11.7024896, 47.6268703 11.2381280, 48.0313078 11.6009454, 47.8825405 12.3323531, 48.4431330 10.7802592, 48.8044464 10.4946908, 47.7086603 11.7559246, 48.1598332 11.5978295, 48.1609141 11.5986413, 47.6172547 11.7431278, 48.0017688 10.5957050, 48.3788752 10.7774869, 48.1540535 11.5364883, 47.9798977 10.3083041, 48.1577100 11.5604800, 48.4080801 10.6837646, 48.2015987 10.1362656, 48.3195203 11.6884744, 48.7073907 10.6685039, 48.1431039 11.5739255, 47.8189913 11.3224155, 48.4686468 11.1766687, 47.7518380 11.5542307, 48.1094874 11.6715247, 48.0436899 11.6184000, 48.0340516 11.2124902, 48.1695372 11.5704440, 48.5779716 10.4885527, 48.1951367 11.5726760, 48.6886965 10.9194547, 47.6855301 10.1332724, 48.2558722 11.0933001, 48.6105657 13.6209883, 47.5859700 11.0639976, 47.5433790 10.4274455, 47.5964215 11.0654629, 48.3843367 10.8229418, 48.1888895 11.2264458, 48.7976268 11.5458268, 48.0367037 11.1887722, 48.5368053 11.4792245, 48.8988008 11.6460326, 47.9699197 10.9587540, 47.9727825 10.9565821, 47.5869550 10.6152976, 48.8406685 11.8248245, 47.6663871 10.7409189, 47.7196300 13.0070178, 47.5031642 13.0178510, 47.5763930 12.9428503, 47.5858088 12.9880887, 48.0669364 10.9956216, 47.7945484 11.8652626, 48.8228747 11.8710406, 47.5336896 12.9724350, 47.5301100 12.9619598, 47.5031123 12.9328624, 48.5606131 13.2960716, 48.1910596 11.3134435, 48.1716866 11.2891123, 48.8211211 11.5141945, 47.8516723 12.0615827, 47.8485888 12.0672963, 48.1508584 11.6433653, 48.0377230 11.4622667, 47.5548126 10.7321880, 47.7364685 10.7761580, 48.1469931 11.6257305, 48.0686738 11.6615712, 48.6328788 13.1769786, 48.0426344 10.2945479, 48.1635399 11.5422013, 48.6126614 10.9500893, 48.4554508 13.2099038, 48.1201768 11.6588925, 48.0814807 10.8544651, 48.1623524 10.8066057, 48.1465398 10.8191243, 48.8284245 12.7200960, 48.8833939 11.7772066, 48.3676250 10.8969115, 47.9828283 11.5203806, 47.6097785 9.9042077, 48.3081584 12.3332939, 47.8125152 12.1214531, 47.8648888 12.7820620, 47.8519085 12.7832926, 48.3710829 13.2776572, 48.2201211 11.6774482, 48.2245882 11.6741143, 48.6986345 10.9775657, 48.4362093 10.1872509, 48.2263875 11.6752754, 47.7270982 10.3387905, 48.2137470 11.8802685, 48.1386282 11.5783400, 48.1258240 11.6768961, 47.9424984 11.3431273, 48.5730213 12.5785231, 48.2445643 10.3686453, 48.1278863 11.3497181, 47.7633885 10.2960897, 48.1303964 10.2218735, 48.0876973 11.6096828, 48.0713652 11.6061007, 47.7838440 12.2774723, 48.0645494 11.6250396, 48.1477907 11.6012806, 48.1411124 11.5911449, 48.1420419 11.5694098, 48.6018811 12.3128591, 48.0125422 11.5154911, 47.7705922 11.6748336, 48.3573921 10.8798938, 48.3575354 10.8799292, 48.5946076 12.4311920, 48.1187522 11.6097745, 47.5564464 9.6592698, 48.1012876 11.6309166, 48.1216394 11.5816197, 48.1400779 11.5683717, 47.6753407 11.4912807, 48.1338649 11.5674133, 48.1424482 11.5727949, 48.1225592 11.5679070, 48.3997027 10.8527239, 48.0790364 11.7432694, 48.1114620 11.7728378, 48.0217457 11.8128583, 48.0045195 11.8446675, 47.7200990 10.3177561, 48.1586030 11.5801588, 48.4990785 12.0623824, 48.1374225 11.3642089, 48.2385309 11.5735864, 47.6319208 10.8479840, 48.0371732 10.3385081, 47.7010787 10.2943220, 47.7012335 10.2961026, 48.1136230 11.4812146, 48.1308581 11.5826367, 48.1766390 11.7434041, 48.2167506 11.5288939, 48.2169135 11.5289632, 47.7514802 10.2469871, 47.7269398 10.3115748, 48.1970602 11.8109996, 48.1936977 11.4594269, 48.3755745 10.8916871, 48.1052088 11.4596178, 47.7209713 10.2750525, 48.6612244 12.5310457, 48.1516220 11.5525356, 48.1619407 11.5761975, 48.1619237 11.5760965, 48.1619235 11.5760954, 48.1618271 11.5756350, 48.1619234 11.5760944, 48.1420322 11.5715095, 48.1425078 11.5724864, 48.1417931 11.5707416, 48.1431184 11.5721749, 48.0653013 10.2404773, 48.0764092 10.2250972, 48.0741438 10.1991626, 47.8474883 10.6340669, 48.1388639 11.5739365, 47.8045823 12.2214612, 47.7144504 12.1290737, 47.9098136 11.6754772, 48.1508795 11.5801207, 47.8733749 11.8703542, 47.9029318 12.2354760, 48.3887190 10.0749717, 48.4911642 11.1847507, 48.0027874 10.2193812, 48.3838616 11.0471515, 48.2484642 11.6828738, 48.1581096 11.6156226, 48.3591631 12.5094907, 48.3586447 12.5343924, 47.7275214 12.1230949, 47.8835529 10.6135457, 47.8866331 10.6122228, 47.7286487 10.3072214, 48.1166096 11.7662870, 47.7666534 10.2992963, 48.0631239 12.2330584, 48.1566658 11.6254379, 48.6743210 10.8205105, 48.2418607 12.4527747, 47.7220243 10.2723610, 47.6003867 9.8854237, 48.8389038 13.4055938, 48.0007322 12.4072228, 48.3327301 11.6172233, 48.5734486 13.4640106, 48.1598066 11.4148877, 48.8432843 10.6049178, 48.1687944 11.4573356, 48.1433520 11.5818825, 48.1440058 11.5811138, 48.1440394 11.5811862, 48.1441172 11.5805089, 48.1435307 11.5821849, 48.4010364 13.3712269, 48.0835944 11.8228819, 48.5377879 11.8593020, 48.1587358 10.8316505, 48.1523379 10.8592314, 47.5539683 10.0209528, 48.4732128 13.2135492, 47.8046498 12.3714877, 48.9002004 13.0360209, 48.3222795 11.8443135, 47.7027468 11.7615738, 48.1491588 11.4340765, 48.7652337 11.3044727, 48.1916228 11.8684710, 47.5983532 11.1855142, 47.5561583 9.9641943, 48.5435989 13.2387134, 47.9160513 11.5805505, 47.9005583 11.6080856, 47.8914385 11.5880742, 47.8662085 11.5423723, 47.9178138 11.2048534, 47.9480348 11.5977988, 47.9538922 11.4985415, 47.9081813 11.5466083, 47.9375040 11.5280923, 47.9516801 11.4760690, 47.9463678 11.6443382, 48.1191023 11.1316690, 48.1416278 11.5902260, 47.7361150 10.3078127, 47.9564047 11.3632268, 47.4769809 12.9616386, 48.1617099 11.5810683, 47.3149196 10.2665696, 48.0159193 11.8961216, 47.6174194 11.7819493, 48.0182478 11.7123423, 48.7636807 11.7840985, 48.6352619 13.1810639, 48.6332943 13.1730816, 48.5166731 12.1256140, 47.7006458 10.3100172, 48.6989114 11.8723543, 47.3090259 10.2945389, 48.5436782 12.1537502, 48.1266612 11.6705674, 47.9450697 11.1834532, 47.5529805 10.0247259, 47.8670370 12.0073600, 48.1641322 11.5315335, 48.2245720 10.3729953, 48.0613572 11.2266624, 48.2344666 11.6737996, 47.9211183 11.4202190, 47.4559350 11.2758423, 48.3057015 11.4866372, 48.1460001 11.5805266, 48.1768831 11.6030792, 47.8748319 10.5326390, 48.1966964 11.8107166, 48.6333358 12.4004686, 48.1200168 11.6770560, 48.1192391 11.6769136, 48.0744642 11.2630791, 47.6967777 10.3451365, 47.8477656 11.5822566, 48.0749573 11.2580368, 47.6847222 10.4126955, 48.1953186 11.5755861, 47.7438297 10.2245692, 47.8627828 12.3682165, 48.1405264 11.0193437, 47.7800823 11.1272811, 47.5822042 9.8499454, 48.1200435 11.3643107, 48.6913587 12.2076836, 48.6904770 12.2075236, 48.3041089 11.8588743, 48.5682510 12.3257440, 48.6183133 13.3896849, 47.9844666 11.7161086, 47.8664443 11.7837703, 47.9806706 11.5715732, 47.6407172 11.8119658, 48.1811702 11.5169736, 47.5023951 10.3301636, 48.1477773 11.7316890, 48.1478657 11.7322591, 48.3080477 10.8951232, 48.6790671 10.8204961, 48.8938835 13.0411789, 47.7716047 11.3153159, 47.7740347 11.3283659, 48.3488417 10.5851900, 48.7416090 11.4478339, 48.5741240 12.5789391, 48.6693239 10.5122669, 47.3707494 10.3584031, 48.3582039 10.5952767, 48.3558373 10.5896427, 48.0302908 10.8525179, 48.5553424 12.4154760, 48.7499032 12.3372814, 48.5941545 10.5418061, 47.8177812 11.5831907, 47.7181107 11.7940329, 47.9483644 11.2978052, 48.0605044 12.2198648, 47.7560236 11.7451567, 47.7340849 11.7658323, 48.1307110 11.5923150, 47.6258509 9.9781993, 47.8049408 11.1960620, 47.8593309 12.1240177, 47.9313740 11.4208664, 47.4458890 10.2753054, 47.6138892 10.5938423, 47.6146175 10.5964515, 48.2069696 11.6425405, 48.0587790 11.7725479, 47.6420716 12.1021865, 47.6889758 11.1840864, 47.7219398 11.2945828, 48.1897158 10.8269885, 48.8633623 13.6780136, 48.0969582 11.5924226, 47.8252837 12.0966772, 47.8521215 12.0634403, 48.0840599 10.8580061, 48.0506355 10.8773806, 48.3969018 9.9999972, 47.6434474 11.7466035, 47.6450803 11.7423983, 48.0967228 10.9185587, 47.8463854 12.2296970, 48.2814995 10.4848715, 48.8136490 11.5110770, 48.5979327 11.2976076, 48.4008166 11.7440251, 47.9339678 12.7348143, 47.9337012 12.7343361, 47.9556546 10.8697326, 47.9673121 10.9183741, 48.1344222 11.5961059, 48.6556535 10.2793136, 48.1509192 11.5766855, 47.7408140 12.7027315, 47.9632050 10.8787058, 48.0901367 11.6484822, 47.6446179 10.7295722, 47.6734563 11.5974212, 48.4987681 12.1754338, 47.9410297 11.3016252, 47.8307822 11.8016392, 48.8115053 12.2818893, 48.5821928 13.2391059, 47.6543967 10.2580417, 47.6256276 10.6899881, 48.5148832 11.5443784, 48.5114077 11.5445715, 48.0496911 10.7834808, 47.6452968 10.4412319, 47.7528561 12.5191508, 48.3225772 11.6015380, 48.2303373 11.5684865, 47.5464361 10.2806561, 47.9353129 11.0794910, 48.5502505 11.9452100, 48.4194543 11.0959927, 48.1479010 11.8192123, 48.1522516 11.8536961, 48.1579435 11.8151236, 48.1687671 11.9126528, 48.7191192 11.1036130, 48.8272520 12.3966062, 48.1739333 11.5481724, 47.6254457 12.5110784, 47.4381358 11.0495098, 48.5634852 11.9882072, 48.8265783 13.7752130, 48.0496211 10.8715988, 48.0460830 10.8749417, 47.8083086 12.5920009, 48.7957646 12.6424422, 48.8838557 12.5678186, 47.7706974 11.3175793, 48.1481073 11.7289669, 47.8993548 12.8624100, 47.8673146 12.1277265, 48.6534476 10.4951067, 48.2766485 12.3846048, 48.0638021 11.2036139, 48.1674911 11.5451430, 47.5779644 9.8409547, 48.0937782 11.4886530, 48.6792146 10.8199705, 48.1408800 11.5640079, 48.3594388 10.8985692, 48.7565516 13.5148193, 47.7242821 10.3141892, 47.7285579 10.3103498, 47.7221323 10.3118430, 47.7262186 10.3160945, 47.7251108 10.3069304, 47.7262768 10.3160850, 47.7204451 10.3137190, 47.7251096 10.3069306, 47.7309546 10.3094793, 47.7266756 10.3143688, 47.7262180 10.3160963, 47.7266754 10.3143710, 47.7221327 10.3118425, 47.7253575 10.3158079, 47.7221319 10.3118433, 47.7266744 10.3143693, 47.7275054 10.3127716, 47.7309538 10.3094786, 47.7222724 10.3151809, 47.7262179 10.3160983, 47.7205801 10.3113422, 47.7284022 10.3065761, 47.6210461 12.1777480, 48.2069586 11.3270236, 48.8496834 10.4857345, 48.8482751 10.4858320, 48.8493967 10.4852209, 47.9822735 11.4885352, 48.8517100 10.4934753, 48.8537545 10.4922091, 48.8536370 10.4910977, 48.8537334 10.4921703, 48.8542772 10.4938004, 48.8507618 10.4919803, 48.8532499 10.4925690, 48.8542877 10.4937795, 48.8532700 10.4925383, 48.8542646 10.4938180, 48.8536497 10.4910542, 48.8507841 10.4919674, 48.1094506 11.7266607, 48.6410373 10.5313159, 48.2477983 11.4401776, 48.2511189 11.4408524, 48.2511196 11.4408547, 48.2471125 11.4395942, 48.2471134 11.4395935, 48.2511207 11.4408524, 48.8178925 11.0809786, 48.8245525 11.0724318, 48.2927027 11.4798357, 47.6190551 11.3475254, 48.8920941 11.1840999, 48.3989347 11.1712240, 48.2352747 12.8234436, 47.6602222 10.3510584, 47.6572599 10.3508058, 48.8991372 11.1878472, 48.8512301 10.4888424, 48.8523275 10.4919721, 48.8451876 10.4939668, 48.8541292 10.4916755, 48.8539854 10.4880578, 48.8496775 10.4925785, 48.8505244 10.4879424, 48.8523182 10.4919848, 48.8512395 10.4888313, 48.8541017 10.4916755, 48.8477268 10.4932959, 48.8496839 10.4925741, 48.2257460 10.6578602, 48.1906255 11.3715878, 48.2398447 10.6666094, 48.2331131 10.6222457, 48.2280822 10.7614312, 47.8502657 12.9639733, 47.8941448 12.1380495, 48.7635782 11.4224738, 48.7633148 11.4204362, 48.7638216 11.4214954, 48.7646048 11.4293850, 48.7633155 11.4204348, 48.7659842 11.4300553, 48.7638215 11.4214919, 48.7638216 11.4214937, 48.7646069 11.4293837, 48.7646059 11.4293843, 48.7646054 11.4293827, 48.0831501 11.5408608, 48.1200261 11.5495680, 48.1200218 11.5495670, 48.1200271 11.5495696, 48.1311897 11.5566510, 48.1200196 11.5495694, 48.1200271 11.5495680, 48.1200217 11.5495702, 48.1200228 11.5495654, 48.1962042 11.3731773, 48.1200218 11.5495654, 48.1311905 11.5566500, 48.1200218 11.5495718, 48.1200260 11.5495696, 48.1200228 11.5495687, 48.1200228 11.5495718, 47.9829128 12.1298784, 48.3073913 11.9294207, 48.8830526 11.1923901, 48.0691848 11.3773647, 48.3644252 10.8768637, 48.0248220 10.2582044, 48.0643201 11.4200679, 47.9100035 10.5742540, 47.9100050 10.5742518, 47.9100031 10.5742513, 48.3684478 10.8903656, 48.1554042 11.5459282, 47.8169133 12.3425923, 48.8160063 13.3690565, 48.2104282 11.6748380, 47.7242216 12.8623232, 47.7185209 12.1322924, 48.8976919 11.1537933, 48.0544354 10.8784777, 48.0544586 10.8784699, 47.6957621 10.2378885, 48.5352936 12.1538950, 48.8522201 10.4931751, 48.8498220 10.4903906, 48.8502970 10.4922689, 48.8498471 10.4904059, 48.8522059 10.4931953, 48.8532785 10.4928130, 48.8496601 10.4856974, 48.8496708 10.4857163, 48.8496477 10.4856799, 48.8521881 10.4932048, 48.8532905 10.4928264, 48.8534004 10.4892605, 48.8533934 10.4892679, 48.8533030 10.4928402, 48.8482940 10.4858635, 48.8502801 10.4922763, 48.8532666 10.4928045, 48.8531124 10.4912383, 48.8516841 10.4897454, 48.8514823 10.4924972, 48.8531284 10.4912472, 48.8531497 10.4912610, 48.8514908 10.4925360, 48.8517014 10.4897391, 48.8517157 10.4897351, 47.8692224 12.6550306, 48.6991076 10.4888000, 48.0827435 11.8239421, 48.7789409 13.4416277, 48.0701021 11.8683821, 48.6567340 12.3030025, 48.0829495 11.8239749, 47.7892014 12.3063237, 48.1275732 11.7411203, 47.6782491 11.1981707, 47.9808205 11.5709699, 48.8722097 13.3716860, 48.0189284 11.5913994, 47.9712056 11.5651943, 47.7182352 11.0417325, 48.3078447 10.9012213, 48.3074280 10.9007914, 47.7665712 10.4012543, 48.1433019 11.6171321, 48.3578768 10.8608426, 47.7394301 12.0912820, 48.2748956 11.4707489, 47.7658961 12.3264238, 48.0606524 11.8506605, 48.0225887 11.9300372, 48.3418069 10.9886881, 47.8852671 11.6003827, 47.8423723 11.5854156, 47.9290227 11.4768712, 48.8410570 11.5318713, 48.1026468 10.8452603, 47.6534906 11.5020849, 48.3688473 10.8987725, 48.1525638 11.7410681, 48.1253719 12.6753670, 48.2355809 12.4317737, 48.2225206 12.4269633, 47.5883957 12.9893172, 47.8480477 11.4745505, 48.0620830 11.5214274, 47.5734512 9.8406759, 48.0167267 10.9114811, 48.0465646 11.5142681, 47.6410480 11.9992875, 47.4418761 11.2582606, 48.0397728 11.5225044, 47.6257705 11.7093124, 48.5308753 13.1752456, 48.6353244 13.4786526, 48.0827751 11.8241935, 48.2681020 11.4687779, 47.6623215 11.4890566, 47.6615700 11.4886820, 47.6528220 11.4593720, 48.1678123 11.9108847, 48.4803108 11.9459449, 48.4801120 11.9405859, 47.7615614 12.1850432, 48.4001496 11.7431475, 48.4001523 11.7431449, 48.4001532 11.7431439, 48.4001514 11.7431458, 48.4001559 11.7431412, 48.4001541 11.7431430, 48.4007607 11.7445270, 48.3995132 11.7424412, 48.4001505 11.7431466, 48.4001550 11.7431421, 48.0302320 11.5198002, 48.8914645 11.1745881, 48.1636994 11.4992629, 48.1638954 11.5006114, 47.8748390 10.2216490, 47.5690462 10.6816003, 47.7334230 12.8910243, 48.0446423 10.8756748, 47.4485214 11.3739173, 47.6718840 11.6473889, 48.0607948 11.6184129, 47.6484915 12.0931252, 48.6862566 11.6120963, 48.1513324 11.5941030, 47.6772885 12.4698671, 47.5425352 9.6817195, 47.8572809 11.7969272, 48.1796129 11.2551298, 47.6681210 11.7064390, 47.6677988 11.7053201, 47.6609640 11.7055680, 48.8747287 11.1645790, 48.4840860 10.3676764, 47.6471760 11.9526540, 48.6122223 12.1926004, 48.0583724 10.8675451, 48.1917310 11.2652696, 48.1962886 11.2705080, 48.1961081 11.2696309, 48.1967606 11.2704517, 48.1967499 11.2707065, 48.1951533 11.2660877, 48.3007715 11.3808588, 48.2808759 11.6737437, 48.1942938 11.2697727, 48.1941755 11.2706956, 48.1940936 11.2704915, 48.1940575 11.2702662, 48.1942220 11.2708888, 48.1946872 11.2695367, 48.1959364 11.2671284, 48.2685891 10.8306042, 48.2684512 10.8307732, 48.8506121 10.4971452, 47.7269118 12.1058124, 48.4805144 10.3621024, 48.4825420 11.6301966, 47.4125642 10.9782774, 47.6831295 11.5763012, 48.3986459 11.7457661, 48.5949122 11.6561854, 47.8697313 12.6394417, 48.0163156 10.9179297, 48.7750094 11.3772950, 48.7764712 11.3740040, 48.5415771 12.1614274, 48.0769911 11.5173999, 48.0257085 11.5959285, 48.7262394 11.4138936, 48.2336061 12.7101152, 48.3072145 11.3329276, 48.1060045 11.4224434, 48.4215809 11.0664908, 47.5649294 10.0293330, 47.7832209 11.1427052, 48.1164516 11.7457503, 47.7227471 12.8663906, 48.0816872 12.0609230, 48.3291750 11.9250679, 48.5052660 13.4522395, 48.2398892 12.6898530, 47.7347322 12.8876517, 48.4592157 11.1286345, 48.4196679 10.0708906, 47.8752939 10.4026098, 47.8633560 10.4122926, 47.6648917 11.8866486, 47.7224481 12.8774277, 48.4045914 11.9889563, 48.3659809 11.6092197, 48.1125639 11.7873969, 48.8035706 11.4955081, 48.8017857 11.4931013, 48.0424196 10.8369763, 48.8378723 12.1833660, 48.1263201 11.8782617, 48.0432704 11.5177994, 47.7260291 12.1109024, 48.0957791 11.7622930, 47.7351805 12.1103036, 47.7502995 12.0906760, 47.6631098 11.9347543, 47.8563407 10.1296254, 47.8569040 10.1353766, 47.8564406 10.1303072, 48.4552782 11.9126341, 48.1247230 11.9803220, 48.5728017 13.4633595, 48.1405104 11.5935655, 48.1220763 11.5438001, 48.1405112 11.5935605, 48.1405097 11.5935706, 48.1220770 11.5437989, 48.3070385 11.9079993, 47.6923168 12.2660427, 48.1580588 11.4442607, 47.6931296 12.3891410, 48.4724441 11.1555816, 47.6502013 11.9345166, 47.6501599 11.9345446, 47.6485872 11.9324325, 48.2985551 11.9050355, 47.5620371 10.6940910, 47.5622933 10.6947643, 48.7362449 11.1813297, 47.7842673 10.0891458, 48.1647650 11.5899480, 48.1282133 11.5527531, 48.1255776 11.6306425, 48.1917267 11.3744581, 47.8567739 11.6863454, 48.2490350 11.5586567, 47.5027371 11.3009433, 47.4815259 11.3571177, 48.0739860 11.5144815, 48.4306622 11.5979945, 48.8303475 12.9625458, 48.8303482 12.9625450, 48.8303492 12.9625441, 48.8342572 12.9618574, 48.8342580 12.9618573, 48.8342589 12.9618574, 47.5945458 10.0720192, 48.3825938 11.1185478, 47.8454487 12.3706689, 47.9519330 12.2752926, 48.3234735 11.5329278, 48.5324057 12.1498019, 48.1290254 11.6311058, 48.3251363 11.8655590, 47.7186656 12.8727953, 47.7283278 12.8874375, 48.2176073 11.6301119, 47.6097012 12.8662571, 48.8453913 12.9581656, 48.3109723 10.1580109, 48.1385566 11.5968928, 48.2936431 11.6542585, 47.4926387 11.0868270, 48.1815609 11.5157431, 47.4940720 11.1051383, 48.8482307 12.9391855, 47.4473011 10.2391801, 48.1300418 11.6068213, 48.8815221 12.5648911, 48.8818937 12.5646408, 48.1965731 11.5757210, 47.6696072 11.1928075, 47.8040137 12.8559330, 47.7215596 10.5566826, 47.5953829 11.7822341, 47.6044414 12.9864303, 47.7498419 12.8495333, 47.7545069 12.8488217, 47.7551318 12.8493986, 47.9900882 11.6446685, 48.1050505 11.3065439, 48.0493957 11.4506929, 48.4071582 10.7242874, 48.1759606 10.1872537, 47.5823437 12.8658692, 47.5823262 12.8659575, 48.3516035 11.1773410, 48.1615304 11.5918723, 47.5421323 12.9394960, 47.5444136 12.9527252, 48.3152361 10.9105676, 47.8564924 12.4847039, 47.7053568 12.0322933, 47.7092784 12.0441586, 47.7039798 12.0231242, 48.2682507 11.4695839, 48.2721605 11.4646675, 48.2718239 11.4652688, 48.2716386 11.4650139, 48.2721166 11.4647511, 48.2724362 11.4649601, 47.7292845 12.4392342, 47.7634284 12.4516572, 48.4601209 10.9659842, 48.1633205 10.1201881, 47.7468620 12.2479646, 47.7400398 12.2332605, 48.4463681 11.1109072, 48.4462480 11.1110447, 48.0313595 11.5868381, 48.5449365 10.8512596, 48.5449379 10.8512573, 48.5449372 10.8512585, 48.5448166 10.8512625, 47.7267192 12.8687083, 47.6978718 10.3244047, 47.6686694 11.6625171, 48.1342423 11.5700387, 47.7705856 11.3174944, 48.4422191 10.9365381, 48.4455951 10.9653992, 48.4548947 11.0057076, 48.2005479 11.3085417, 47.9862377 10.1803043, 48.0260123 11.5251821, 47.6604914 11.5080991, 47.6614539 11.5187932, 47.6593777 11.5030454, 47.6498945 11.4676288, 47.6601322 11.5051051, 48.8736549 12.0076293, 48.1349504 11.5943735, 48.5839393 11.0900128, 48.0271457 12.5541518, 47.6433999 12.1751083, 47.6407574 12.1696156, 47.6411215 12.1703695, 47.6403878 12.1635277, 48.3996544 11.8520538, 48.2126195 11.3374382, 47.8659427 12.0111514, 48.4056651 11.9909489, 48.0784519 12.5696682, 47.9165852 12.0318879, 48.8403993 10.4941533, 48.8417958 10.4918787, 47.9842362 10.1778101, 47.7232401 12.8761185, 47.6431611 11.9170922, 47.8662840 12.0159958, 47.6173936 11.7076257, 48.8457640 10.4830272, 47.4793650 11.0207555, 47.6996482 12.2430712, 48.6835709 11.6132535, 48.6848902 11.6136339, 47.8393271 11.9691096, 47.7020991 12.0130841, 47.5807355 10.5575467, 48.4061678 10.0436362, 48.3479535 11.9235535, 47.5702330 10.5947204, 47.7021170 12.0131818, 47.5040513 11.2786897, 47.9718784 11.6528135, 47.5538725 10.7902108, 47.7200677 12.8755116, 47.8774590 11.0274014, 48.3823871 11.3496783, 47.7581962 12.2737426, 47.6493815 11.9316988, 47.4376224 11.2612534, 48.8049165 11.8889334, 48.0040033 11.5136520, 48.0397308 11.5226714, 47.9367272 12.9322049, 47.7108046 12.1251726, 47.6339493 13.0038067, 47.6442786 12.0466307, 47.7143850 11.4039809, 47.8032737 11.5000786, 47.7064576 11.3975548, 48.6114773 10.5668229, 48.6111031 10.5659055, 48.8311137 13.4591452, 48.3996250 11.7420086, 48.7160743 10.7775891, 48.7331262 11.1759620, 48.7389356 11.1886864, 47.6472166 11.9289408, 48.7331262 11.1759620, 48.7385744 11.1815885, 48.3507189 10.9354257, 48.1073936 11.4528835, 48.1521700 11.5278539, 48.1497300 11.5273092, 47.7197728 12.8759652, 47.9837290 11.0930118, 48.7841110 13.5796127, 47.8826998 11.9182081, 48.4584489 10.9817953, 48.3415480 11.9222212, 48.3482984 10.9104624, 48.1627561 11.5861396, 48.4585333 11.1335081, 48.7864857 13.3751383, 48.0795080 11.5270511, 48.8156148 11.8875333, 47.7180909 11.6534598, 48.0044368 10.5885381, 48.1970574 11.4581073, 48.4024034 11.0551394, 48.1717682 11.7160853, 48.5259749 12.3142889, 48.5330205 12.1628553, 48.5305960 12.1578907, 47.9916650 10.7829274, 48.7356699 11.5492059, 47.8508053 12.7851381, 47.6764212 11.8710364, 48.4487679 11.0832494, 48.2178130 11.0196429, 47.5088882 10.2795297, 48.1424597 11.5822622, 48.0976185 10.5417693, 48.1450137 11.5810073, 48.2393390 11.4385684, 48.2564046 11.4654355, 48.2596082 11.4451115, 48.2605838 11.4347639, 48.3445324 10.9353458, 48.1678985 11.7149075, 48.3718037 10.8963094, 48.3718041 10.8963083, 47.7873372 11.8339232, 47.7200996 12.7699376, 47.6054977 12.9858304, 47.6241300 12.9745039, 47.7900190 12.0771110, 47.9253148 10.2440388, 48.7548713 13.8178262, 47.7101114 12.1139656, 47.6945682 13.0460095, 47.8047485 10.2133142, 48.0715754 11.0005879, 48.7892575 10.6710487, 47.7641979 11.9958704, 48.1366177 11.5770164, 48.6879045 12.2017217, 47.9417533 12.9357259, 47.9422619 12.9367666, 47.9424226 12.9368673, 47.9386089 12.9354309, 48.4284030 10.8789123, 48.0292035 11.3673827, 47.5983444 10.9056374, 48.7557813 12.5888625, 47.8013284 10.3537356, 48.7435414 11.2146671, 48.1788331 11.4617680, 48.3609968 10.0706280, 48.3049382 11.9087780, 48.6919369 11.7130487, 48.1636845 11.4571067, 48.0456871 10.4243348, 47.4803785 11.2396359, 48.1134041 11.3410235, 48.6382488 10.6026814, 48.6364553 10.6022821, 47.7561605 12.0417945, 47.8459739 11.0299188, 47.7409841 12.0154738, 47.7481852 12.0511155, 47.7349927 12.0534271, 48.9024263 11.0894232, 48.3731122 11.0959923, 48.1948518 11.2632927, 48.3710824 13.2773536, 47.6056995 12.9094085, 47.6057338 12.9091081, 47.7601898 12.4233394, 47.7608375 12.4316584, 47.8611631 12.1264453, 48.3884186 11.0874478, 47.6453043 12.0985512, 47.6452987 12.0985287, 47.6537812 12.0983658, 47.7224967 12.8480335, 47.7063746 12.0346578, 48.8755548 11.0741983, 47.6900275 12.7995463, 47.6900364 12.7994766, 47.6900311 12.7995088, 48.2889659 11.4600298, 48.2866384 11.4602750, 48.2860387 11.4609057, 48.2863124 11.4604083, 48.8822337 12.5741336, 47.7670520 12.2581243, 47.7766786 12.2687321, 48.5106716 13.4421507, 47.9241734 12.0134157, 47.7210112 12.8922962, 47.6764419 11.2029616, 47.7786600 11.7336551, 48.1019055 11.5954917, 48.2671203 11.4312604, 48.2720955 11.4679281, 47.8976158 10.1161598, 47.5433929 11.2602180, 47.5456150 11.1901578, 48.0683448 11.6098579, 48.3629733 11.3766216, 48.7588183 13.0169252, 47.8544613 12.1599328, 48.0332314 10.8505875, 47.7221913 12.1894134, 47.7246273 12.1709999, 48.0504475 10.8407146, 48.0512785 10.8382489, 47.5401994 11.5451552, 48.3660798 10.5426582, 48.2819649 10.4691847, 48.0397151 10.6712233, 48.0397779 10.6716756, 47.6579035 11.9415792, 48.0376793 10.6702097, 48.2080415 11.3280417, 48.1398408 11.5780689, 48.1671028 11.5483431, 48.2700458 11.4683333, 48.7845193 13.8019909, 47.7771843 10.1273307, 48.0056471 10.3563100, 48.1969376 10.6769089, 48.1413436 11.5969927, 48.3575820 10.8800179, 48.1428635 11.4125410, 48.1940954 11.4600752, 47.7155084 10.3234417, 48.7656923 11.5351364, 48.4067613 11.7574390, 47.7259635 12.1148467, 48.3869392 10.8665406, 48.1403638 11.5719644, 48.1400691 11.5731123, 48.1401611 11.5727358, 48.1402587 11.5723472, 47.7730997 11.5727335, 48.4441900 11.1327054, 48.1026976 10.8452652, 47.6613522 11.2092731, 48.0263618 10.8448247, 48.8870984 10.4688551, 47.6766571 11.2022534, 48.0938038 11.4659904, 47.9414011 12.6023026, 47.9107077 10.5744731, 48.0261191 10.8449821, 48.2350566 12.4315667, 48.1532035 12.8174680, 48.0817897 10.8647284, 48.1570952 12.8253903, 47.7777085 12.3663525, 47.9707607 11.7802007, 48.2934356 11.9067051, 47.6673450 11.7145331, 47.8657489 12.0113892, 48.2453585 10.8031322, 48.1375637 11.5880668, 47.9097955 11.2828365, 48.0991170 11.4784139, 48.0978106 11.4892883, 48.9057654 12.6920206, 48.1039524 11.5792060, 48.2874464 11.4608564, 47.7785483 11.7334497, 47.7788087 11.7333363 +yes +4 +55.9544768 -3.1997466 +no +Bathgate, Polton, Bonnyrigg, Loanhead, Penicuik, Dalkeith, Livingston, Armadale, Gorebridge, Mayfield, Newtongrange, Eskbank, Lasswade +12 +49.4026602 8.7297882, 49.4269174 8.7219719, 49.4155178 8.7899777, 49.4105654 8.7914079, 49.4255549 8.7739082, 49.4035191 8.7047078, 49.4195186 8.7046484, 49.4261495 8.7062630, 49.4035105 8.7605887, 49.4467404 8.7467641, 49.4580313 8.7464236, 49.3925405 8.6991164, 49.3828404 8.6974716 +49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.4240406 8.6385449, 49.3851489 8.6733031, 49.3848920 8.6803000, 49.4061345 8.6593850, 49.3956207 8.6692054, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.4296958 8.6455225, 49.4172010 8.6768150 +48.8311423 2.3178852, 48.8807957 2.3680128, 48.8547827 2.4053007, 48.8890111 2.3798549, 48.8657219 2.3739666, 48.8363262 2.3866379, 48.8839773 2.3197792, 48.8374817 2.3437947, 48.8848036 2.2885994, 48.8785492 2.3318734, 48.8639231 2.3448506, 48.8659551 2.3738289, 48.8718921 2.4037539, 48.8226001 2.3745365, 48.8443455 2.2903102, 48.8465377 2.3511741, 48.8656383 2.3355496, 48.8557916 2.3618145, 48.8712435 2.3585129, 48.8511246 2.3315183, 48.8721527 2.4039954, 48.8475646 2.3844791, 48.8506939 2.2732195, 48.8911262 2.3327854, 48.8571958 2.3391696 +Regard de la Roquette, Thermes de Cluny, L'enceinte de Philippe Auguste, Cavea des Arènes de Lutèce and 48.8707489 2.3907280, 48.8506016 2.3432743, 48.8459665 2.3500377, 48.8535359 2.3481924, 48.8450745 2.3528309 +49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.4157261 8.7004521, 49.4532301 8.7620686, 49.4209333 8.7223854, 49.4221949 8.7060036, 49.4157681 8.7006398, 49.4390162 8.7105044, 49.4210179 8.7198036, 49.4272716 8.7035465, 49.4305777 8.6928339, 49.4497204 8.7157564, 49.4428768 8.7011414, 49.4300341 8.7265054, 49.4095083 8.7002566, 49.4109969 8.7018271, 49.4103323 8.7353954 +485 +yes +tobacco, chemist, mobile phone, watches, confectionery, mobile phone, beauty, watches, perfumery, mobile phone, mobile phone, gift, supermarket, mobile phone, clothes, shoes, shoes, communication, clothes, yes, clothes, department store, chemist, chemist, chemist, houseware +23 +Bruntsfield Hotel, Braid Hills Hotel, Britannia Hotel Edinburgh, Hilton Edinburgh Airport Hotel, Peffermill House, Premier Inn, Prestonfield House, Premier Inn Leith, Brooks Hotel, Holiday Inn Express, Ardmillan Hotel, Links Hotel, Apex Edinburgh International, Apex Edinburgh City, Travelodge, Holiday Inn Express, Malmaison, Le Monde, DoubleTree by Hilton Hotel Edinburgh City Centre, Premier Inn, Novotel, Ten Hill Place, Hot-el Apartments, Jurys Inn, The Carlton, The Salisbury, Apex Waterloo Place Hotel, Travelodge Edinburgh Central Waterloo Place, Radisson Blu Hotel, Macdonald Holyrood Hotel, The King James, Ocean Apartments, Sandaig Guest House, Lady Nairne Premier Inn, The Glasshouse, Six Marys Place, Travelodge Rose Street, Mercure Hotel, Old Waverley Hotel, Royal British Hotel, Hotel du Vin, Travelodge Edinburgh Central Queen Street, Travelodge Edinburgh Learmonth, Fraser Suites Edinburgh, Nira Caledonia, The Bonham Hotel, G & V Royal Mile, EasyHotel Prince Street West, Premier Inn, cityroomz, Hotel Ceilidh-Donia, Cumberland Hotel, Dunstane House, Murrayfield Hotel, Hampton Hotel, Murrayfield Park Hotel, Grosvenor Gardens Hotel, Thistle Hotel, The Chester Residence, Fountain Court, Grassmarket Hotel, Motel One, Frederick House Hotel, Regent House Hotel, Hotel Indigo, The Place, York House Hotel, 28 York Place, Fountain Court, Pollock Halls, Ibis, Travelodge Princes Street, The Scotsman Hotel, Holyrood Aparthotel, Rutland Hotel, Twelve Picardy Place, Northumberland Hotel, Minto Hotel, Kildonan Lodge Hotel, Cairn Hotel, Ballantrae Hotel, Terrace Hotel, Ailsa Craig Hotel, Crowne Plaza, Abbey Hotel, The Inverleith Hotel, Merith House Hotel, Culane House Hotel, ritz, Ellwyn Hotel, Hotel Twenty, Rosehall Hotel, Seahaven Hotel, Old Town Chambers, Albany Hotel, Motel One, Parliament House Hotel, Edinburgh House Hotel, Royal Mile Mansions, The Royal Scots Club, Royal Mile Apartments, St. Giles Apartments, The Guards Hotel, Travelodge Haymarket, Ibis Style, Abbot's House Hotel, Adelphi Hotel, Northfield House Hotel, Novotel Edinburgh Park, Sheraton Hotel, Kings Manor Hotel, Dundas Castle, Norton House Hotel, Dalmahoy Hotel & Country Club, Royal Ettrick Hotel, Travelodge Edinburgh Central, Holiday Inn Express Edinburgh, Ibis Edinburgh Centre South Bridge, Stay Central, Residence Inn, Fountain Court EQ2, Holiday Inn Corstorphine, Capital Hotel, Balmoral Hotel, Premier Inn, Dakota Hotel, Holiday Inn Edinburgh City West, Princes Street Suites, Park View House Hotel, Victoria Park House Hotel, Edinburgh City Hotel, Premier Inn, Apex Hotel, Waldorf Astoria Edinburgh - The Caledonian, Edinburgh Marriott Hotel, The Edinburgh Residence, Hilton Edinburgh Grosvenor, Tune Hotel, Hotel Dunstane City, Raj Hotel, Duthus Lodge, The Murrayfield House, Toby Carvery, White Lady, Ellersly House Hotel, Rockville Hotel, Premier Travel Inn, Travelodge, Western Manor House Hotel, Travelodge Cameron Toll, Premier Inn, Premier Inn Edinburgh Park, Channings Hotel, Robert Burns Hotel, Park View House Hotel, Park View House Hotel, Ibis Budget Edinburgh Park, Angels Share Hotel, George Hotel, Crowne Plaza - The Roxburghe and 55.9381717 -3.2059291, 55.9170545 -3.2126453, 55.9505670 -3.2225290, 55.9439031 -3.3598911, 55.9326021 -3.1487334, 55.9350859 -3.0949522, 55.9366417 -3.1570870, 55.9829450 -3.1956613, 55.9040576 -3.1262582, 55.9432024 -3.2113238, 55.9788008 -3.1794679, 55.9383157 -3.2261980, 55.9374614 -3.2026980, 55.9470365 -3.1966624, 55.9473807 -3.1953726, 55.9004968 -3.2332407, 55.9571354 -3.1863656, 55.9778438 -3.1685794, 55.9534973 -3.1960943, 55.9457041 -3.2034796, 55.9449778 -3.2001704, 55.9451010 -3.1996608, 55.9463681 -3.1836097, 55.9869221 -3.1897526, 55.9511304 -3.1861772, 55.9507512 -3.1875224, 55.9378000 -3.1771354, 55.9539470 -3.1868320, 55.9537732 -3.1875087, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9381523 -3.2262019, 55.9543521 -3.1879033, 55.9861075 -3.1884451, 55.9693080 -3.1630438, 55.9457634 -3.1363607, 55.9464498 -3.1371733, 55.9567078 -3.1856348, 55.9590183 -3.2140890, 55.9527034 -3.1979800, 55.9526004 -3.1943522, 55.9528213 -3.1930344, 55.9531957 -3.1908459, 55.9460909 -3.1901899, 55.9544345 -3.2000121, 55.9555590 -3.2193770, 55.9500000 -3.1919145, 55.9567037 -3.2072967, 55.9514396 -3.2157715, 55.9490912 -3.1927585, 55.9508812 -3.2044810, 55.9509781 -3.2039057, 55.9496513 -3.2089465, 55.9360381 -3.1684082, 55.9461251 -3.2278797, 55.9460715 -3.2290314, 55.9456220 -3.2434720, 55.9456700 -3.2428670, 55.9449170 -3.2477791, 55.9465750 -3.2197080, 55.9502855 -3.2173319, 55.9505500 -3.2171278, 55.9435627 -3.2111942, 55.9480061 -3.1947461, 55.9507105 -3.1915001, 55.9533335 -3.2009235, 55.9575692 -3.1881677, 55.9563589 -3.1885412, 55.9564772 -3.1901879, 55.9560830 -3.1902394, 55.9563959 -3.1906891, 55.9529277 -3.2049305, 55.9403255 -3.1714042, 55.9496209 -3.1880081, 55.9532228 -3.1923045, 55.9510822 -3.1885303, 55.9509990 -3.1784956, 55.9498559 -3.2079070, 55.9570461 -3.1868898, 55.9280036 -3.1678977, 55.9352622 -3.1753675, 55.9285894 -3.1685115, 55.9585668 -3.1822362, 55.9561192 -3.1923936, 55.9566328 -3.1758348, 55.9566882 -3.1778092, 55.9567108 -3.1786172, 55.9567484 -3.1799567, 55.9639309 -3.2027078, 55.9692074 -3.1640591, 55.9690941 -3.1648940, 55.9468672 -3.2176887, 55.9565225 -3.1350813, 55.9580553 -3.1811308, 55.9362102 -3.1697209, 55.9486278 -3.0962156, 55.9501484 -3.1911760, 55.9572424 -3.1901890, 55.9559010 -3.1933576, 55.9535324 -3.1900210, 55.9542058 -3.1859506, 55.9667456 -3.1821354, 55.9504080 -3.1879255, 55.9563084 -3.1978828, 55.9497259 -3.1916695, 55.9497748 -3.1914254, 55.9463285 -3.2172253, 55.9478631 -3.2219185, 55.9545707 -3.1947750, 55.9729694 -3.1638663, 55.9718007 -3.1618663, 55.9073072 -3.1532922, 55.9266859 -3.3110861, 55.9469005 -3.2078655, 55.9443419 -3.0957317, 55.9750379 -3.4145918, 55.9327298 -3.3841084, 55.9042254 -3.3705381, 55.9346438 -3.2211526, 55.9496850 -3.1838090, 55.9492869 -3.1846349, 55.9484098 -3.1872057, 55.9480944 -3.1899418, 55.9438601 -3.1928655, 55.9419198 -3.2084087, 55.9429504 -3.2673127, 55.9556904 -3.2797815, 55.9528516 -3.1895056, 55.9457529 -3.2138563, 55.9821414 -3.4001668, 55.9557436 -3.2429137, 55.9534472 -3.1867446, 55.9689173 -3.1657232, 55.9732863 -3.1914962, 55.9435346 -3.3748496, 55.9443687 -3.2008861, 55.9841923 -3.4052539, 55.9462114 -3.2229409, 55.9495596 -3.2075043, 55.9401166 -3.3114777, 55.9509665 -3.2176204, 55.9469876 -3.2170926, 55.9461601 -3.2182685, 55.9453819 -3.2287399, 55.9460399 -3.2300987, 55.9460125 -3.2297029, 55.9456993 -3.2426239, 55.9430594 -3.2838003, 55.9431091 -3.2825095, 55.9470690 -3.2478273, 55.9487584 -3.0879787, 55.9454008 -3.2138893, 55.9386393 -3.3928517, 55.9446689 -3.2547864, 55.9270730 -3.1668575, 55.9422318 -3.4055694, 55.9281033 -3.3081926, 55.9561713 -3.2187789, 55.9497822 -3.1039156, 55.9688800 -3.1656940, 55.9689762 -3.1655801, 55.9377896 -3.3196702, 55.9507284 -3.2077481, 55.9541170 -3.1964464, 55.9516265 -3.2058035 +yes +55.9274598 -3.3076072 +yes +48.8523642 2.2968670 +1 +49.3819891 8.7064791, 49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.3903727 8.7038688, 49.3716601 8.7156918, 49.4157261 8.7004521, 49.4532301 8.7620686, 49.4129054 8.7286879, 49.4209333 8.7223854, 49.4221949 8.7060036, 49.4291183 8.7154588, 49.4157681 8.7006398, 49.4088360 8.7691224, 49.3882437 8.7497467, 49.4390162 8.7105044, 49.4305905 8.7775493, 49.4272716 8.7035465, 49.4393938 8.7104846, 49.4497204 8.7157564, 49.4428768 8.7011414, 49.4395208 8.7105611, 49.4326079 8.7091648, 49.4328392 8.7092032, 49.4342309 8.7101843, 49.4342740 8.7112555, 49.4442518 8.7151750, 49.4447625 8.7168293, 49.4468314 8.7142297, 49.4308426 8.7277671, 49.3795036 8.7459449, 49.3921408 8.7451114, 49.3950715 8.7223322, 49.3736364 8.7471636, 49.4311330 8.7033214, 49.4278439 8.6859389, 49.4082372 8.7465476, 49.4136970 8.7613615, 49.4238953 8.7651482 +Kurpfälzisches Museum, Museum Geowissenschaften INF 235, Studentenmuseum mit Karzer, Zoologisches Museum, Museum Haus Cajeth, Heimatmuseum Rohrbach, Alte Universität, Kurpfälzisches Museum, Textilsammlung Max Berk, Völkerkundemuseum, Carl Bosch Museum, Museum am Ginkgo, Deutsches Apotheken-Museum +3 +4 +yes +255 +2044 +Esso, Jet, Shell, Independent, BP, Tesco, independent and 55.8994270 -3.2972350, 55.9232575 -3.2877434, 55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9002100 -3.2321660, 55.9579565 -3.2439627, 55.9297115 -3.2566004, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9372727 -3.3656602, 55.9344345 -3.1791228, 55.9100535 -3.1423251, 55.9377502 -3.4029754, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9365550 -3.3142140, 55.9836311 -3.3989193, 55.9826346 -3.1875882, 55.9248058 -3.2496194, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9051775 -3.1653894, 55.8839472 -3.3405441, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9695021 -3.2293678, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9102318 -3.2377415, 55.9781314 -3.1744029, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9242943 -3.2525824, 55.9398424 -3.2041012, 55.9397193 -3.2934475 +yes +55.9516586 -3.1968492, 55.9899700 -3.3959164, 55.9875100 -3.4039888, 55.9539273 -3.1922043, 55.9902127 -3.3859837, 55.9906294 -3.3854450, 55.9526370 -3.1734364, 55.9521101 -3.1881430, 55.9906129 -3.3848526, 55.9504193 -3.2001988, 55.9505097 -3.1997700, 55.9526834 -3.1734548 +43.6837822 -79.4260743, 43.6576795 -79.4987997, 43.7022711 -79.5255029, 53.9900182 -1.1048507, 54.0109332 -1.0814973, 53.9502911 -1.0730271, 53.9360281 -1.0702516, 53.9695593 -1.1044687, 53.9783035 -1.1064726, 53.9659202 -1.1066465, 53.9153104 -1.1359444, 53.9852880 -1.1561727, 53.9409591 -1.1265772, 54.0307341 -1.0382265, 53.9550521 -1.1301932, 53.9490348 -1.1324670, 53.9615418 -1.1120955, 53.9522410 -1.1122907, 53.9358339 -1.1263285, 53.9755492 -1.0707896, 53.9629477 -0.9755778, 54.0107556 -1.0814518, 53.9863055 -1.1105767, 53.9303232 -1.0689686, 53.9642135 -1.0653371, 53.9403226 -1.1185343, 54.0146884 -1.0718957, 53.9877014 -1.1050782, 53.9636588 -1.1373722, 53.9491771 -1.0804384, 53.9553252 -1.1119903, 53.9871551 -1.0474167, 53.9859898 -1.0651562, 53.9017427 -1.0873341, 53.9990117 -1.1284252, 54.0411661 -1.0300613, 54.0118558 -1.0595910, 53.9575241 -1.0493096, 53.9793720 -1.0633348, 53.9673959 -1.0714738, 53.9637219 -1.1380788, 53.9575852 -1.1178225, 53.9874393 -1.1204313, 53.9868873 -1.1220633, 53.9494875 -1.1413259, 53.9647966 -1.1058434, 53.9563077 -1.0554740, 53.9462069 -1.0762908, 53.9776740 -1.0644274, 53.9646978 -1.1104689, 53.9500452 -1.0806102, 43.6644716 -79.5073350, 53.9731081 -1.0720236, 53.9728750 -1.0718855, 53.9579066 -1.0615711, 43.6709565 -79.4808029, 53.9578916 -1.0384236, 43.6909696 -79.5078325, 43.6768364 -79.5008575, 43.6869909 -79.4927906, 43.7060427 -79.5305440, 53.9411226 -1.0453008, 53.9402545 -1.0628004, 53.9412901 -1.0485025, 53.9518846 -1.0748059, 43.6954667 -79.4292400, 53.9891412 -1.0750065, 53.9697935 -1.0788931, 54.0031479 -1.0620491, 53.9761008 -1.0866567, 53.9642505 -1.1103673, 53.9572111 -1.1022306, 54.0086708 -1.0590792, 53.9275166 -1.1585419, 53.9771511 -1.1335660, 43.6916751 -79.4801455, 43.6884518 -79.4620778, 53.9679082 -1.0462940, 43.6791418 -79.4807102, 43.6784874 -79.4805707, 53.9171538 -1.0961410, 43.6983920 -79.4349417, 43.7032269 -79.5060546, 53.9511412 -1.0357185, 53.9787147 -1.0614117, 43.6965563 -79.4691090, 53.9417894 -1.0651445, 53.9675172 -1.0774716, 43.6537880 -79.4901878, 43.6868311 -79.4924568, 54.0175617 -1.0838151, 53.9441501 -1.1072575, 43.6912619 -79.4333772, 43.6883062 -79.4538863, 53.9955927 -1.0554353, 53.9580671 -1.0717614, 53.9316497 -1.1069040, 43.7063756 -79.5161696, 43.6980072 -79.5193378, 43.6979105 -79.5191746, 43.6981548 -79.5195536, 43.6948627 -79.4854853, 53.9605571 -1.0416518, 43.7078482 -79.5309590, 53.8979156 -0.9664321, 43.6761780 -79.4788514, 43.6769072 -79.4772807, 43.6731469 -79.4908170, 53.9872557 -1.1137428, 53.9773826 -1.0941901, 53.9781054 -1.0952493, 53.9719535 -1.0928503, 53.9564001 -1.0614879, 53.9602131 -1.0579907, 53.9598297 -1.0582374, 43.6933502 -79.4302213, 43.6843140 -79.4879601, 43.6712702 -79.4926038, 43.6946390 -79.4359419, 43.6869082 -79.4775555, 43.6817542 -79.4986570, 43.7014365 -79.5073633, 53.9799100 -1.0663846, 53.9735958 -1.2046224, 43.6935978 -79.4761834, 43.7014532 -79.4510224, 43.7014588 -79.4506901, 43.6957307 -79.4305271, 53.9622142 -1.0110749, 43.7032224 -79.4392616, 53.9663972 -1.1227394, 43.6925004 -79.5088912, 43.7000154 -79.4462363, 43.7000042 -79.4464494, 43.7001712 -79.4461827, 43.7001539 -79.4458926, 43.7000636 -79.4460083, 53.9838702 -1.1222527, 43.6836390 -79.4590501, 43.6880963 -79.4613111, 43.6898241 -79.4643187, 53.9450082 -1.1361836, 43.6924209 -79.4689785, 53.9889063 -1.1110964, 43.6879894 -79.4708591, 53.9586201 -1.0293671, 53.9445374 -1.1245969, 53.9595274 -1.0981373, 53.9610119 -1.1037227, 43.6840446 -79.4389375, 43.6842718 -79.4397157, 43.6871180 -79.4284008, 53.9623408 -1.1308643, 43.6484124 -79.4885632, 53.9522747 -1.0911362, 43.6762467 -79.4781695, 43.6927596 -79.4362309, 43.6895001 -79.4353381, 43.6921445 -79.4472623, 43.6917638 -79.4436721, 43.6628673 -79.4872055, 43.6627881 -79.4870652, 43.6890777 -79.4991503, 43.6898499 -79.4650002, 43.6648262 -79.5030967, 43.7027737 -79.5207797, 43.6742489 -79.4976003, 53.9640155 -1.0652996 +3398 +Mo-Sa 07:00-22:00, Su 09:00-20:00 +55.9529398 -3.1154068 +BP, Elan, Total, Esso Express, Avia, Esso, Agip and 48.8316281 2.3594731, 48.8535333 2.4151180, 48.8169651 2.3597405, 48.8346251 2.2657680, 48.9012005 2.3862959, 48.8801709 2.3706981, 48.8315802 2.3158225, 48.8455659 2.3086884, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8501676 2.3621707, 48.8593908 2.3144172, 48.8299268 2.3465439, 48.8609726 2.2828299, 48.8563247 2.3152562, 48.8611046 2.3413657, 48.8475898 2.3031985, 48.8463297 2.2794951, 48.9003252 2.3734463, 48.8402491 2.3214518, 48.8804901 2.2865619, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8323948 2.3645635, 48.8645440 2.4097670, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.9007525 2.3748724, 48.8635857 2.2722338, 48.8536267 2.3664311, 48.8408422 2.3172666, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8387798 2.2536841, 48.8281523 2.2728394, 48.8168431 2.3604808, 48.8595020 2.3116861, 48.8407841 2.3912112, 48.8607706 2.3747898, 48.8787212 2.3698437, 48.8586303 2.3897622, 48.8579937 2.3897210, 48.8364028 2.2775659, 48.8558395 2.3835889, 48.8519985 2.2908966, 48.8656358 2.2892405, 48.8786755 2.3549221, 48.8797035 2.3026873, 48.8478375 2.3535433, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8936152 2.3152934, 48.8522407 2.2805336, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8711680 2.3244832, 48.8436106 2.3422313, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.8233460 2.3160166, 48.8338034 2.2847592, 48.8464060 2.3874300, 48.9007173 2.3745755, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8206480 2.3248645, 48.8936129 2.3029112 +49.4054825 8.6765974 +48.8417284 2.3673532, 48.8266274 2.3623332, 48.8270015 2.3644472, 48.8264059 2.3462773, 48.8572229 2.3511352, 48.8406041 2.3197465, 48.8803386 2.3548871, 48.8291407 2.3744435, 48.8607653 2.3255954, 48.8573441 2.2907449, 48.8779836 2.2844324, 48.8411596 2.3657360, 48.8506960 2.3623652, 48.8767586 2.3603190, 48.8772257 2.3595264, 48.8422312 2.3663524, 48.8414190 2.3661244, 48.8767648 2.3593400, 48.8443828 2.3753836, 48.8446750 2.3731936 +49.1430184 8.3983163, 49.3996765 9.1224099, 49.5701123 8.6110383, 49.5625122 8.4648744, 49.0007392 9.0803846, 49.6559644 8.4741783, 49.6215104 8.6250307, 49.4580607 9.1028750, 49.5817521 9.4022085, 49.1754398 8.1387981, 49.5672194 8.6111115, 49.3513988 9.1205190, 49.3250351 8.5277211, 49.1220327 9.1804503, 49.8535869 8.5851220, 49.3923970 8.6519350, 49.3469248 8.4886426, 49.2372364 8.6785232, 48.9318095 8.8153525, 49.6065555 8.3688858, 49.5860723 8.1390132, 49.1347078 8.5642507, 49.4112255 8.3495432, 49.3305895 8.2135419, 49.3552239 8.2900422, 49.4726490 8.1967491, 48.9772411 8.3426112, 49.6947805 9.1823138, 49.3439085 9.4008570, 49.3023341 8.4531545, 49.2473775 8.8938385, 49.3993143 9.1237375, 49.5813741 9.4010960, 49.8419087 8.3767621, 49.6781057 8.9716419, 49.4745881 8.5138087, 49.3055840 8.6585456, 49.1497865 8.9189679, 49.8393238 8.8494477, 49.2579834 9.2751932, 49.2310049 9.4229576, 49.4435541 9.3619443 +49.3974030 8.6486853, 49.3977437 8.6485764, 49.4045638 8.6759283, 49.4015990 8.6856698, 49.3808049 8.6889505, 49.3746833 8.6826514, 49.3656861 8.7051775, 49.3741444 8.7033717, 49.3742583 8.7034051, 49.3741763 8.7034993, 49.3790412 8.6689354, 49.3792964 8.6699345, 49.4048779 8.6827341, 49.3840770 8.6710133, 49.3809325 8.6701888, 49.3795766 8.6901652, 49.3992315 8.6710140, 49.3804723 8.6884268, 49.3807734 8.6884609 +48.8569549 2.3497208, 48.8562998 2.3535246, 48.8521302 2.3358217, 48.8553332 2.3464366, 48.8513763 2.3250565, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8453963 2.3255943, 48.8566284 2.3271644, 48.8661306 2.2897626, 48.8722447 2.3050374, 48.8450073 2.3757975, 48.8466279 2.2560360, 48.8694555 2.3406786, 48.8388399 2.2765067, 48.8176870 2.3444409, 48.8398451 2.2739161, 48.8566083 2.3533348, 48.8632334 2.3399229, 48.8620104 2.3390904, 48.8670418 2.3496240, 48.8657000 2.3535311, 48.8652453 2.3533870, 48.8443992 2.3820174, 48.8691076 2.3112127, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8729875 2.3210140, 48.8726568 2.3215983, 48.8776040 2.3524312, 48.8758310 2.3206114, 48.8720777 2.3056372, 48.8715518 2.3062553, 48.8688688 2.3012670, 48.8720769 2.2997667, 48.8721868 2.3033146, 48.8707626 2.3051595, 48.8701277 2.3044062, 48.8674712 2.3054788, 48.8667016 2.3011326, 48.8655118 2.3015698, 48.8713039 2.2970137, 48.8741074 2.2994150, 48.8744570 2.3007315, 48.8763620 2.3015161, 48.8767241 2.3018198, 48.8782249 2.2965872, 48.8972935 2.3883460, 48.8952805 2.3850234, 48.8599671 2.3250425, 48.8705380 2.3685763, 48.8293967 2.3790084, 48.8403358 2.3506549, 48.8725027 2.2851552, 48.8736890 2.2914977, 48.8768968 2.2823678, 48.8722856 2.2840680, 48.8693205 2.2843750, 48.8677158 2.2805552, 48.8396031 2.2624046, 48.8471492 2.3421620, 48.8470699 2.3417135, 48.8613479 2.3294517, 48.8623669 2.3098112, 48.8593696 2.3144127, 48.8734234 2.3305255, 48.8715078 2.3339896, 48.8459424 2.3060603, 48.8319830 2.3768014, 48.8720026 2.3359899, 48.8703752 2.3029557, 48.8738314 2.3297043, 48.8790223 2.2930687, 48.8647821 2.3501454, 48.8815254 2.3543330, 48.8634010 2.3478656, 48.8580953 2.3988158, 48.8671989 2.3667020, 48.8410399 2.3210471, 48.8429112 2.3235502, 48.8423484 2.3212962, 48.8320324 2.3866588, 48.8336457 2.2895795, 48.8764091 2.3236995, 48.8476756 2.3411763, 48.8305332 2.3138423, 48.8763053 2.2944546, 48.8763219 2.2947532, 48.8788573 2.2928071, 48.8761984 2.2930848, 48.8760963 2.2927992, 48.8532277 2.3589001, 48.8863474 2.2875098, 48.8740366 2.4050675, 48.8780164 2.4108510, 48.8260635 2.3616139, 48.8239032 2.3657211, 48.8892294 2.3935497, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8381765 2.3815493, 48.8731938 2.3290960, 48.8212980 2.3643164, 48.8549966 2.4012505, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8292317 2.3084985, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8465587 2.2612329, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8868617 2.3693195, 48.8698031 2.3099017, 48.8343023 2.3639410, 48.8720076 2.3153410, 48.8624814 2.3328854 +55.9474486 -3.1859655, 55.9426063 -3.2085087, 55.9363223 -3.1940133, 55.9355709 -3.2102528, 55.9395988 -3.2206602, 55.9488010 -3.1925834, 55.9813469 -3.1948497, 55.9763814 -3.1707551, 55.9764475 -3.1716495, 55.9610381 -3.1807131, 55.9768212 -3.1696962, 55.9612898 -3.1713969, 55.9364920 -3.2084274, 55.9467570 -3.2027078, 55.9604183 -3.2014949, 55.9587839 -3.1832973, 55.9477659 -3.1919316, 55.9827744 -3.3988810, 55.9375452 -3.2065188, 55.9354188 -3.2098186, 55.9524356 -3.1964223, 55.9655072 -3.1758319, 55.9537919 -3.1943636, 55.9264941 -3.2093621, 55.9437549 -3.2193403, 55.9469209 -3.2045658, 55.9576658 -3.1845555, 55.9506581 -3.2090223, 55.9505740 -3.2087140, 55.9532127 -3.1978312, 55.9459910 -3.2187750, 55.9469392 -3.2157459, 55.9581637 -3.2094698, 55.9436529 -3.2196006, 55.9392380 -3.2127613, 55.9502539 -3.1878479, 55.9541028 -3.1972638, 55.9516199 -3.2027318, 55.9031798 -3.2852677, 55.9529509 -3.1973404, 55.9526199 -3.1984725, 55.9898690 -3.3921144, 55.9581410 -3.1892356, 55.9265283 -3.2084003, 55.9477347 -3.1956994, 55.9474107 -3.1857005, 55.9578375 -3.1855691, 55.9573946 -3.1857377, 55.9578561 -3.1853362, 55.9572831 -3.1858711, 55.9269189 -3.2094159, 55.9320058 -3.2097519, 55.9073767 -3.2581589, 55.9644870 -3.1767286, 55.9410964 -3.1808815, 55.9378124 -3.1781642, 55.9489839 -3.1929807, 55.9349914 -3.1790260, 55.9501695 -3.1909428, 55.9467924 -3.1855561, 55.9419851 -3.1817354, 55.9584764 -3.1835758, 55.9493277 -3.1830946, 55.9474907 -3.1912396, 55.9545797 -3.1975105, 55.9439545 -3.2066510, 55.9420681 -3.2954846 +Boulogne-Billancourt, Arcueil, Le Chesnay, Gentilly, Palaiseau, Antony, Viroflay, Athis-Mons, Garches, Noisiel, Verrières-le-Buisson, Le Plessis-Robinson, Vélizy-Villacoublay, Savigny-sur-Orge, Maisons-Alfort, Bry-sur-Marne, Chevilly-Larue, Morangis, Limeil-Brévannes, Villeneuve-le-Roi, Châtillon, Vitry-sur-Seine, Meudon, Joinville-le-Pont, Noisy-le-Grand, Bourg-la-Reine, La Celle-Saint-Cloud, Malakoff, Saint-Mandé, Massy, Le Plessis-Trévise, Sceaux, Villiers-sur-Marne, L'Haÿ-les-Roses, Chaville, Saint-Maurice, Alfortville, Nogent-sur-Marne, Thiais, Fontenay-sous-Bois, Champigny-sur-Marne, Issy-les-Moulineaux, Créteil, Boissy-Saint-Léger, Longjumeau, Charenton-le-Pont, Fresnes, Saint-Cloud, Châtenay-Malabry, Vigneux-sur-Seine, Cachan, Sucy-en-Brie, Le Perreux-sur-Marne, Montgeron, Le Kremlin-Bicêtre, Champs-sur-Marne, Fontenay-aux-Roses, Yerres, Bonneuil-sur-Marne, Choisy-le-Roi, Vanves, Villejuif, Valenton, Versailles, Villeneuve-Saint-Georges, Chennevières-sur-Marne, Ville-d'Avray, Ormesson-sur-Marne, Bagneux, Chilly-Mazarin, Montrouge, Sèvres, La Queue-en-Brie, Villebon-sur-Yvette, Paris, Paris, Paris, Paris, Paris, Cynthiana, Saint-Maur-des-Fossés, Orly, Juvisy-sur-Orge, Ivry-sur-Seine, Vincennes, Clamart, Denning, Subiaco, Morrison Bluff, Caulksville, Blue Mountain, Detroit, Universal, Goss, Henry, Cottage Grove, Big Sandy +no +2243833 +Heidenloch, Römischer Tempel, Lochheim, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall and 49.4194835 8.7033812, 49.4258222 8.7062319, 49.3551484 8.6336513, 49.4270542 8.7105990, 49.4184666 8.7052069, 49.4245168 8.7056416, 49.4235710 8.7025718, 49.4242799 8.7072520, 49.4224817 8.7024542, 49.4229479 8.7068545, 49.4193290 8.7035781, 49.4221380 8.7051571, 49.4263381 8.7055314, 49.4188706 8.7007961, 49.4276600 8.7101416, 49.4243184 8.7025688, 49.4189138 8.7068425, 49.4254814 8.7024102, 49.4213140 8.7019771, 49.4268509 8.7026924, 49.4254256 8.7051858, 49.4195009 8.7025277, 49.4201952 8.7010712, 49.4208217 8.7059731, 49.4233178 8.7053934, 49.4276906 8.7058352, 49.4238991 8.7095045, 49.4206459 8.7039110, 49.4265814 8.7086544, 49.4256259 8.7093622, 49.4257275 8.7070484, 49.4179403 8.7025717, 49.4207145 8.7089359, 49.4222472 8.7095805, 49.4248984 8.7025175 +0 +Königstuhl, Heidenknörzel, Kammerstein, Lammerskopf, Gaisberg, Michaelsberg, Heiligenberg, Auerhahnenkopf, Apfelskopf, Dossenheimer Kopf, Ameisenbuckel, Karlslust +6 +10 +yes +yes ++496221166707 and http://www.eldorado-hd.de/ +Traverse Theatre, HMV Picture House, Edinburgh People's Theatre, Stand Comedy Club, Roxy Art House, Leitheatre, Edinburgh Playhouse, Festival Theatre, King's Theatre, The Queen's Hall, Bedlam Theatre, Royal Lyceum Theatre, Church Hill Theatre, Leith Theatre, Usher Hall +Tills Books, Oxfam Book Shop, St. Columba's Hospice Book Shop (secondhand), Waterstones, Edinburgh Books, Word Power, Oxfam Books, Waterstones, Blackwells, The Works, St Columba's Hospice, The Edinburgh Bookshop, Robert Murray Stamp Shop, Robert Murray Stamp Shop, Blackwells, Waterstone's, Books4Less, Waterstone's, Bookworm, Armchair Books, Peter Bell Books, Second Edintion, Aurora Books, Golden Hare Books, Analogue books, Avizandum, Deadhead Comics, Transreal, Mcnaughtans, Elvis Shakespeare, Oxfam, Southside Books, Waterstone's, WHSmith, W H Smith +yes +yes +350 and 53.2761342 10.4887315, 53.2785461 10.4325550, 53.2788878 10.4304511, 53.2789685 10.4288410, 53.2790665 10.4275363, 53.2793515 10.4296426, 53.2795102 10.4307986, 53.2799998 10.4311699, 53.2800388 10.4305360, 53.2802531 10.4298171, 53.2809568 10.4325528, 53.2811750 10.4273023, 53.2815625 10.4295745, 53.2819911 10.4325519, 53.2826269 10.4275353, 53.2826725 10.4291199, 53.2826929 10.4307084, 53.2830280 10.4271192, 53.2831022 10.4287052, 53.2831150 10.4325998, 53.2837288 10.4279036, 53.2838773 10.4307180, 53.2839650 10.4284990, 53.2841272 10.4300084, 53.2844130 10.4326432, 53.2845618 10.4317124, 53.2849266 10.4286468, 53.2852440 10.4326785, 53.2853993 10.4312437, 53.2862019 10.4312152, 53.2862903 10.4296828, 53.2863750 10.4281667, 53.2755425 10.4331058, 53.2761180 10.4342194, 53.2777425 10.4325522, 53.2784206 10.4363617, 53.2787675 10.4341599, 53.2792207 10.4369299, 53.2797841 10.4352717, 53.2798691 10.4329383, 53.2802341 10.4377177, 53.2804318 10.4357138, 53.2804958 10.4341054, 53.2809025 10.4367483, 53.2810767 10.4351505, 53.2811385 10.4383054, 53.2815542 10.4387704, 53.2818275 10.4359059, 53.2818582 10.4345100, 53.2819239 10.4373488, 53.2823376 10.4392990, 53.2825169 10.4360569, 53.2830035 10.4345927, 53.2833004 10.4377685, 53.2833131 10.4391705, 53.2835717 10.4400953, 53.2836192 10.4362508, 53.2840499 10.4383614, 53.2841091 10.4371511, 53.2842429 10.4346390, 53.2852186 10.4350928, 53.2859174 10.4342212, 53.2861266 10.4418947, 53.2864599 10.4407835, 53.2866391 10.4384732, 53.2867455 10.4400080, 53.2710726 10.4382947, 53.2712649 10.4401709, 53.2715637 10.4389128, 53.2715925 10.4369872, 53.2716948 10.4356207, 53.2718374 10.4407911, 53.2719692 10.4318737, 53.2722286 10.4381808, 53.2723073 10.4283180, 53.2723904 10.4339771, 53.2724363 10.4306150, 53.2726881 10.4386844, 53.2728290 10.4358632, 53.2729874 10.4377402, 53.2730720 10.4325897, 53.2732284 10.4344339, 53.2734787 10.4368595, 53.2735875 10.4305386, 53.2736198 10.4281482, 53.2737720 10.4388769, 53.2741165 10.4378899, 53.2742165 10.4350736, 53.2744887 10.4302344, 53.2745759 10.4321830, 53.2747589 10.4355519, 53.2750037 10.4313911, 53.2750244 10.4339792, 53.2756698 10.4357777, 53.2762404 10.4301091, 53.2769792 10.4292635, 53.2770442 10.4300230, 53.2772394 10.4288761, 53.2777241 10.4276349, 53.2779813 10.4305866, 53.2726055 10.4416071, 53.2728502 10.4404349, 53.2734544 10.4426876, 53.2743250 10.4409690, 53.2744621 10.4388953, 53.2747879 10.4443669, 53.2750500 10.4378589, 53.2751288 10.4397836, 53.2751450 10.4422597, 53.2757981 10.4406575, 53.2760134 10.4424302, 53.2760164 10.4368845, 53.2761627 10.4389881, 53.2761796 10.4452081, 53.2763269 10.4435753, 53.2766362 10.4424130, 53.2766704 10.4390843, 53.2771652 10.4411989, 53.2772523 10.4373479, 53.2774570 10.4432890, 53.2774622 10.4454378, 53.2776832 10.4389597, 53.2780373 10.4403893, 53.2780504 10.4415209, 53.2781549 10.4473295, 53.2783446 10.4438912, 53.2784492 10.4458331, 53.2789054 10.4449397, 53.2789458 10.4393966, 53.2794086 10.4432135, 53.2794484 10.4380709, 53.2795354 10.4453708, 53.2796264 10.4421588, 53.2800367 10.4398083, 53.2800561 10.4433928, 53.2801021 10.4465008, 53.2804990 10.4442490, 53.2805738 10.4408210, 53.2810142 10.4458552, 53.2815482 10.4424549, 53.2820320 10.4405398, 53.2797657 10.4502715, 53.2800199 10.4497269, 53.2801004 10.4492386, 53.2806957 10.4514076, 53.2809171 10.4481633, 53.2809629 10.4492709, 53.2813039 10.4508782, 53.2813871 10.4469217, 53.2814826 10.4528633, 53.2816343 10.4403479, 53.2817669 10.4438881, 53.2818878 10.4501453, 53.2819890 10.4484668, 53.2822309 10.4530921, 53.2823413 10.4472747, 53.2824481 10.4497679, 53.2825917 10.4423832, 53.2828899 10.4517158, 53.2830861 10.4532008, 53.2832324 10.4444640, 53.2832644 10.4490285, 53.2833666 10.4420578, 53.2837859 10.4440672, 53.2840219 10.4478656, 53.2840421 10.4427225, 53.2845804 10.4425334, 53.2848516 10.4434057, 53.2853521 10.4442130, 53.2858661 10.4462832, 53.2858796 10.4480533, 53.2859562 10.4447281, 53.2845328 10.4543058, 53.2846452 10.4532757, 53.2856692 10.4514935, 53.2859074 10.4541269, 53.2859706 10.4326894, 53.2860876 10.4504262, 53.2860891 10.4516431, 53.2862331 10.4551076, 53.2864368 10.4486951, 53.2865416 10.4522857, 53.2865468 10.4341588, 53.2867524 10.4442833, 53.2868220 10.4349471, 53.2868925 10.4499564, 53.2869911 10.4489239, 53.2871062 10.4438475, 53.2871192 10.4506975, 53.2871194 10.4520651, 53.2872992 10.4574875, 53.2873154 10.4546493, 53.2874758 10.4563049, 53.2875741 10.4457860, 53.2877174 10.4444075, 53.2878229 10.4555057, 53.2878324 10.4429645, 53.2881349 10.4550950, 53.2884875 10.4437367, 53.2888166 10.4526623, 53.2889339 10.4538563, 53.2881558 10.4478585, 53.2882657 10.4469997, 53.2888313 10.4496181, 53.2890622 10.4467478, 53.2896048 10.4486217, 53.2897562 10.4474893, 53.2899887 10.4449804, 53.2906473 10.4474064, 53.2906569 10.4510389, 53.2907103 10.4449384, 53.2907284 10.4465969, 53.2907509 10.4479661, 53.2914642 10.4483187, 53.2914817 10.4489736, 53.2916190 10.4504909, 53.2921300 10.4494183, 53.2844239 10.4552791, 53.2856557 10.4564919, 53.2877152 10.4596216, 53.2883024 10.4565032, 53.2883276 10.4601175, 53.2886603 10.4570435, 53.2886754 10.4588919, 53.2892513 10.4569805, 53.2895030 10.4592396, 53.2897695 10.4619477, 53.2863131 10.4265248, 53.2872355 10.4327684, 53.2876366 10.4262801, 53.2877399 10.4345791, 53.2878013 10.4389019, 53.2878291 10.4355610, 53.2878367 10.4372062, 53.2880742 10.4416461, 53.2884106 10.4402480, 53.2884385 10.4351391, 53.2884497 10.4361964, 53.2887476 10.4287357, 53.2889652 10.4273053, 53.2892675 10.4423403, 53.2893199 10.4371074, 53.2893432 10.4387193, 53.2893811 10.4401862, 53.2894471 10.4338566, 53.2899882 10.4279237, 53.2900173 10.4351990, 53.2901080 10.4370574, 53.2902004 10.4393046, 53.2902606 10.4383364, 53.2904159 10.4364033, 53.2905766 10.4328178, 53.2905819 10.4283490, 53.2906678 10.4351769, 53.2907212 10.4262747, 53.2908081 10.4379270, 53.2908976 10.4336480, 53.2909769 10.4366348, 53.2910409 10.4305047, 53.2913822 10.4286086, 53.2930728 10.4263859, 53.2932250 10.4288652, 53.2932524 10.4316868, 53.2936115 10.4273995, 53.2943354 10.4293190, 53.2945085 10.4266900, 53.2950907 10.4276795, 53.2772158 10.4658264, 53.2777014 10.4641203, 53.2780024 10.4621416, 53.2782612 10.4585624, 53.2782945 10.4498138, 53.2782958 10.4652568, 53.2784461 10.4657086, 53.2785414 10.4547227, 53.2786263 10.4641222, 53.2786328 10.4520188, 53.2787736 10.4557550, 53.2787924 10.4670508, 53.2790828 10.4662430, 53.2791022 10.4648568, 53.2791640 10.4630981, 53.2792677 10.4514601, 53.2793765 10.4674115, 53.2794189 10.4528188, 53.2794217 10.4637224, 53.2795526 10.4585785, 53.2796594 10.4660088, 53.2797526 10.4542423, 53.2798863 10.4626378, 53.2799338 10.4677675, 53.2800722 10.4608966, 53.2801571 10.4519139, 53.2803121 10.4666314, 53.2806292 10.4644867, 53.2806672 10.4593631, 53.2810451 10.4657299, 53.2811282 10.4604347, 53.2811311 10.4631622, 53.2815557 10.4641010, 53.2816662 10.4552491, 53.2818042 10.4539243, 53.2818947 10.4607963, 53.2821785 10.4631616, 53.2821829 10.4561119, 53.2824551 10.4585111, 53.2824798 10.4621966, 53.2827543 10.4647244, 53.2828941 10.4598433, 53.2832188 10.4557112, 53.2834286 10.4540762, 53.2834431 10.4682343, 53.2836004 10.4666031, 53.2836872 10.4638191, 53.2837723 10.4609960, 53.2843918 10.4648994, 53.2965086 10.4505225, 53.2970659 10.4507086, 53.2972331 10.4482649, 53.2972909 10.4465259, 53.2980193 10.4288210, 53.2722859 10.4750874, 53.2736634 10.4801685, 53.2738513 10.4776452, 53.2739393 10.4759802, 53.2740538 10.4816901, 53.2740773 10.4816892, 53.2741338 10.4816490, 53.2742179 10.4516208, 53.2744281 10.4771164, 53.2745874 10.4742626, 53.2746080 10.4707787, 53.2746293 10.4736401, 53.2746485 10.4656168, 53.2755292 10.4821798, 53.2756433 10.4783543, 53.2756842 10.4805945, 53.2760968 10.4743407, 53.2761750 10.4827802, 53.2769644 10.4708135, 53.2769781 10.4833074, 53.2772690 10.4745942, 53.2682855 10.4693710, 53.2859902 10.4520524, 53.2851469 10.4511304, 53.2882270 10.4453029, 53.2872393 10.4408913, 53.2912110 10.4482268, 53.2895850 10.4328281, 53.2834187 10.4575743 +yes +Heidenloch, Römischer Tempel, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall +55.9470233 -3.2136778, 55.9040174 -3.2248441, 55.9044388 -3.2231298, 55.9055392 -3.2245241, 55.9070009 -3.2266338, 55.9337225 -3.2114222, 55.9454900 -3.2173512, 55.9459397 -3.2196471, 55.9467297 -3.2160853, 55.9468911 -3.2157329, 55.9495730 -3.2096804, 55.9498456 -3.2090591, 55.9470251 -3.2128783, 55.9466831 -3.2111062, 55.9457511 -3.2083497, 55.9420067 -3.2142265, 55.9429862 -3.2105745, 55.9435721 -3.2079032, 55.9452599 -3.2068906, 55.9458494 -3.2043614, 55.9463849 -3.2002560, 55.9473655 -3.1962398, 55.9476701 -3.1928242, 55.9476671 -3.2034432, 55.9476364 -3.2015298, 55.9486521 -3.1951042, 55.9486914 -3.1982744, 55.9493803 -3.1935304, 55.9867620 -3.3969118, 55.9890911 -3.3975569, 55.9909234 -3.3992102, 55.9871450 -3.3956272, 55.9500952 -3.2159210, 55.9514349 -3.2130963, 55.9577146 -3.2175590, 55.9574409 -3.2136525, 55.9577176 -3.2110983, 55.9594385 -3.2162145, 55.9591627 -3.2129430, 55.9587082 -3.2097806, 55.9582498 -3.2083579, 55.9601149 -3.2048779, 55.9590746 -3.2001052, 55.9574525 -3.1992269, 55.9576308 -3.2078827, 55.9571589 -3.2057631, 55.9570635 -3.2040021, 55.9579700 -3.1990768, 55.9589149 -3.1952296, 55.9516292 -3.2116129, 55.9505151 -3.2088197, 55.9516840 -3.2088535, 55.9565296 -3.2022609, 55.9551067 -3.2015189, 55.9026109 -3.2208010, 55.9079326 -3.2251115, 55.9091271 -3.2224615, 55.9325309 -3.2101524, 55.9352614 -3.1942899, 55.9360447 -3.1944235, 55.9385819 -3.1950517, 55.9398783 -3.1952903, 55.9366483 -3.1940225, 55.9381677 -3.1922430, 55.9397207 -3.1863782, 55.9396831 -3.1901910, 55.9415623 -3.2000095, 55.9432237 -3.2023940, 55.9346560 -3.2102493, 55.9360542 -3.2094587, 55.9371071 -3.2072084, 55.9398797 -3.2045183, 55.9413443 -3.2035998, 55.9428297 -3.2037418, 55.9399009 -3.2118071, 55.9409026 -3.2095928, 55.9418569 -3.2046167, 55.9451034 -3.2054205, 55.9464821 -3.2059437, 55.9479806 -3.2093194, 55.9480111 -3.2070831, 55.9492390 -3.2069040, 55.9415413 -3.1997466, 55.9397680 -3.1895210, 55.9398950 -3.1857881, 55.9443353 -3.2022970, 55.9507141 -3.2047476, 55.9508345 -3.2040132, 55.9509544 -3.2033403, 55.9512832 -3.2014235, 55.9513658 -3.2009238, 55.9534513 -3.1984184, 55.9545267 -3.1976404, 55.9530617 -3.1968880, 55.9525579 -3.1966188, 55.9514556 -3.1965060, 55.9502363 -3.1950715, 55.9515098 -3.1917476, 55.9518015 -3.1918652, 55.9523041 -3.1921025, 55.9487161 -3.1921254, 55.9473980 -3.1913002, 55.9475336 -3.1896852, 55.9461587 -3.1899395, 55.9461484 -3.1857678, 55.9446725 -3.1868648, 55.9426946 -3.1843831, 55.9415201 -3.1833659, 55.9523582 -3.1952481, 55.9524140 -3.1949299, 55.9530238 -3.1937098, 55.9548982 -3.1930798, 55.9531749 -3.1905850, 55.9561036 -3.1918150, 55.9566140 -3.1887839, 55.9597614 -3.1911416, 55.9587469 -3.1900917, 55.9574145 -3.1883681, 55.9540301 -3.1883045, 55.9542782 -3.1877994, 55.9553364 -3.1870704, 55.9555140 -3.1882376, 55.9607383 -3.1852653, 55.9588728 -3.1841437, 55.9619623 -3.1801852, 55.9623731 -3.1823283, 55.9722461 -3.1760338, 55.9719668 -3.1730260, 55.9760045 -3.1700682, 55.9771964 -3.1743509, 55.9771466 -3.1737565, 55.9765391 -3.1705490, 55.9759268 -3.1678383, 55.9755202 -3.1648177, 55.9711134 -3.1726962, 55.9713906 -3.1702867, 55.9729980 -3.1685221, 55.9504910 -3.1854886, 55.9510338 -3.1816628, 55.9501355 -3.1837930, 55.9537308 -3.1871585, 55.9538854 -3.1830563, 55.9579461 -3.1831271, 55.9579339 -3.1826673, 55.9578767 -3.1789396, 55.9733850 -3.1663395, 55.9573263 -3.1468079, 55.9551375 -3.1512278, 55.9551965 -3.1477860, 55.9552066 -3.1457361, 55.9541352 -3.1478987, 55.9524812 -3.1884943, 55.9517665 -3.1881346, 55.9512784 -3.1879129, 55.9489276 -3.1868532, 55.9484886 -3.1866438, 55.9457222 -3.1847309, 55.9454420 -3.1844541, 55.9459249 -3.1824225, 55.9431937 -3.1796005, 55.9415447 -3.1780319, 55.9406915 -3.1765923, 55.9430769 -3.1830456, 55.9428271 -3.1828112, 55.9413427 -3.1812830, 55.9399611 -3.1824940, 55.9375604 -3.1807719, 55.9405823 -3.1806167, 55.9393125 -3.1783897, 55.9349560 -3.1933400, 55.9355213 -3.1900428, 55.9359617 -3.1872388, 55.9369103 -3.1811043, 55.9369174 -3.1773439, 55.9403137 -3.1729254, 55.9383803 -3.1730161, 55.9368395 -3.1706322, 55.9362943 -3.1703276, 55.9380056 -3.1727326, 55.9365575 -3.1804052, 55.9378596 -3.1785699, 55.9371680 -3.1785827, 55.9357290 -3.1880801, 55.9352794 -3.1908999, 55.9392124 -3.1781004, 55.9403904 -3.1806688, 55.9380758 -3.1813799, 55.9406842 -3.1776524, 55.9417310 -3.1818531, 55.9432691 -3.1832993, 55.9401121 -3.1759873, 55.9416881 -3.1786246, 55.9430330 -3.1796430, 55.9442893 -3.1810875, 55.9456619 -3.1831172, 55.9457698 -3.1849764, 55.9488929 -3.1870504, 55.9492763 -3.1872419, 55.9513723 -3.1882358, 55.9521151 -3.1886009, 55.9529056 -3.1458123, 55.9536640 -3.1473562, 55.9550460 -3.1447760, 55.9550213 -3.1476460, 55.9550728 -3.1523790, 55.9555903 -3.1566068, 55.9721901 -3.1629507, 55.9734772 -3.1676223, 55.9730686 -3.1650762, 55.9577127 -3.1801199, 55.9577689 -3.1829548, 55.9598986 -3.1836144, 55.9538702 -3.1838294, 55.9538082 -3.1860623, 55.9537460 -3.1864288, 55.9536090 -3.1872578, 55.9471148 -3.1782693, 55.9492792 -3.1822951, 55.9501804 -3.1839664, 55.9512348 -3.1865851, 55.9510428 -3.1899310, 55.9508278 -3.1825636, 55.9503437 -3.1858623, 55.9739384 -3.1675454, 55.9716823 -3.1695986, 55.9710945 -3.1729414, 55.9753350 -3.1670805, 55.9767364 -3.1725205, 55.9750843 -3.1712339, 55.9738978 -3.1727490, 55.9719290 -3.1728798, 55.9722046 -3.1746804, 55.9721384 -3.1759763, 55.9622037 -3.1793755, 55.9627392 -3.1787031, 55.9618397 -3.1798451, 55.9622890 -3.1826621, 55.9587684 -3.1837830, 55.9585718 -3.1839897, 55.9556859 -3.1866515, 55.9540735 -3.1877177, 55.9572218 -3.1884308, 55.9597602 -3.1915275, 55.9606648 -3.1931837, 55.9564422 -3.1886008, 55.9516360 -3.1915621, 55.9511728 -3.1894775, 55.9513768 -3.1853034, 55.9530038 -3.1904535, 55.9529734 -3.1906361, 55.9550011 -3.1944896, 55.9523721 -3.1941529, 55.9522306 -3.1949546, 55.9521243 -3.1955713, 55.9413619 -3.1834545, 55.9439756 -3.1855145, 55.9457447 -3.1858708, 55.9459185 -3.1889928, 55.9462149 -3.1911216, 55.9474608 -3.1915894, 55.9483990 -3.1921221, 55.9491051 -3.1925562, 55.9499555 -3.1941302, 55.9513921 -3.1967362, 55.9563095 -3.1988813, 55.9543603 -3.1978922, 55.9530372 -3.1971862, 55.9518480 -3.1998550, 55.9512810 -3.2003210, 55.9511317 -3.2011985, 55.9510603 -3.2016272, 55.9507178 -3.2036019, 55.9505841 -3.2043884, 55.9451215 -3.1923158, 55.9448465 -3.1948923, 55.9448398 -3.1982337, 55.9495373 -3.2067189, 55.9492326 -3.2066015, 55.9483042 -3.2035260, 55.9477777 -3.2074310, 55.9470945 -3.2058026, 55.9462523 -3.2055522, 55.9451884 -3.2051208, 55.9428068 -3.2035039, 55.9425641 -3.2034299, 55.9417455 -3.2046015, 55.9407315 -3.2096840, 55.9413134 -3.2033814, 55.9391987 -3.2046868, 55.9364506 -3.2080648, 55.9348230 -3.2100408, 55.9431515 -3.2018817, 55.9380639 -3.1919459, 55.9368177 -3.1935085, 55.9393298 -3.1949761, 55.9378804 -3.1946691, 55.9368007 -3.1944119, 55.9352311 -3.1940360, 55.9089266 -3.2227432, 55.9076164 -3.2261893, 55.9024927 -3.2209412, 55.9538170 -3.2010786, 55.9557714 -3.2021464, 55.9519898 -3.2056255, 55.9506446 -3.2093738, 55.9504970 -3.2090293, 55.9515635 -3.2119466, 55.9590112 -3.1954889, 55.9578837 -3.1987058, 55.9569531 -3.2042594, 55.9573600 -3.2073453, 55.9581370 -3.1998753, 55.9595344 -3.2006164, 55.9602477 -3.2031604, 55.9599422 -3.2050807, 55.9584545 -3.2079471, 55.9589660 -3.2114386, 55.9592891 -3.2157462, 55.9577015 -3.2172967, 55.9592592 -3.2207431, 55.9573790 -3.2117285, 55.9566490 -3.2146849, 55.9509150 -3.2138808, 55.9498016 -3.2162253, 55.9493877 -3.2175003, 55.9495686 -3.2189589, 55.9870411 -3.3960723, 55.9907091 -3.3983046, 55.9900975 -3.3975611, 55.9492297 -3.1934848, 55.9485101 -3.1950625, 55.9466052 -3.2025367, 55.9483763 -3.1903144, 55.9458867 -3.2015396, 55.9450777 -3.2041637, 55.9434137 -3.2080661, 55.9424851 -3.2120231, 55.9456681 -3.2081800, 55.9460697 -3.2125273, 55.9496579 -3.2091165, 55.9491712 -3.2102205, 55.9478015 -3.2132758, 55.9458699 -3.2215692, 55.9456796 -3.2170439, 55.9455214 -3.2171400, 55.9334398 -3.2118455, 55.9064805 -3.2256576, 55.9059136 -3.2239281, 55.9055130 -3.2235475, 55.9051874 -3.2237612, 55.9042466 -3.2225799, 55.9038972 -3.2233847, 55.9038681 -3.2263110, 55.9781461 -3.1735303, 55.9553235 -3.1920547, 55.9553332 -3.1919926, 55.9553429 -3.1919304, 55.9553525 -3.1918683, 55.9553622 -3.1918061, 55.9553719 -3.1917440, 55.9553816 -3.1916819, 55.9553913 -3.1916197, 55.9554010 -3.1915576, 55.9554107 -3.1914955, 55.9554204 -3.1914333, 55.9554301 -3.1913712, 55.9554398 -3.1913091, 55.9554495 -3.1912469, 55.9554592 -3.1911848, 55.9554688 -3.1911227, 55.9554785 -3.1910605, 55.9554882 -3.1909984, 55.9472325 -3.1901311, 55.9438324 -3.2142584, 55.9434037 -3.2147753, 55.9562981 -3.1986248, 55.9475607 -3.1861653, 55.9536715 -3.1868832, 55.9525909 -3.2000321, 55.9476032 -3.2085057, 55.9464631 -3.1990798, 55.9514733 -3.2002938, 55.9525341 -3.1942530, 55.9539398 -3.1954762, 55.9458721 -3.1870265, 55.9452545 -3.1868374, 55.9439698 -3.1852609, 55.9493416 -3.2102159, 55.9458574 -3.2195136, 55.9458637 -3.2199619, 55.9493651 -3.2098050, 55.9522213 -3.1920622, 55.9525355 -3.2025587, 55.9507195 -3.1921655, 55.9532131 -3.1997985, 55.9541367 -3.1918691, 55.9547528 -3.1939230, 55.9387978 -3.1791123 +Olympia, Cirque d'Hiver, Le Moulin Rouge, Palais des Glaces, La Boule Noire, Théatres de La Cartoucherie, Comédie des 3 Bornes, Théâtre de la Main d'Or, Théâtre de la Cité Internationale, Monfort-Théatre, Théâtre Clavel, Bouffes du Nord, Théâtre de la Bastille, Salle de la Mutuelle RATP, Café Oscar, Théâtre Antoine, Théâtre de la Michodière, La Pépinière Théâtre, La Cigale, Double Fond, Théâtre Déjazet, Aktéon Théâtre, Le Celeste, Theatre du Marais, Le Splendid, Théâtre de Chaillot, Folies Bergère, Amphithéâtre Rouelle, Théâtre Michel, Théâtre des Champs-Elysées, Comédie des Champs-Elysées, Théatre de Belleville, Le Bataclan, Théâtre Les Blancs Manteaux, Théâtre de l'Alambic Comédie, La Vieille Grille, Théâtre Paris-Villette, Théâtre des Mathurins, Théâtre Edouard VII, Athénée Théâtre Louis-Jouvet, Le Crazy horse de Paris, Salle Pleyel, Théâtre Traversière, Théatre de l'ile Saint-Louis Paul-Rey, Paradis latin, La Maroquinerie, Auditorium de Radio France, Salle Gaveau, Théatre de la Madeleine, Péniche Opéra, Les Rendez-Vous d'Ailleurs, Théo Théatre, La Main Au Panier, Théâtre Artistic Athévains, Théâtre des Abbesses, ABC Théâtre, Ciné 13 Théâtre, La Comédie Italienne, Café de la Gare, Théâtre Comédia, Théâtre Montparnasse, La Comédie des Boulevards, Comédie de Paris, Théâtre de la Gaîté-Montparnasse, L'Européen, Théâtre Essaïon, Théâtre Daunou, Théâtre des Déchargeurs, Théâtre des 5 Diamants, La Grande Comédie, Théâtre de la Huchette, Théâtre de Dix Heures, Théâtre Fontaine, Théâtre Le Méry, Le Lucernaire, Théâtre 13 - Seine, Maison de la Poésie - Paris, Théâtre du Nord-Ouest, Théâtre le Ranelagh, Théâtre de Paris, Théâtre d'Edgar et Café d'Edgar, Théâtre Ouvert, Théâtre de Poche Montparnasse, Théâtre 14 Jean-Marie Serreau, Le Palace, Le Point Virgule, Théâtre Rive Gauche, Théâtre des Nouveautés, Théâtre Trévise, Théâtre 13, Vingtième Théâtre, Théâtre du Temps, Théâtre Tristan Bernard, Le Zèbre, Théâtre des Variétés, Le Grand Point Virgule, Théatre, Salle Saint-Léon, Théâtre Montorgueil, Le Funambule De Montmartre, Le Temple, Zeartist's Cafe, La Machine, Le théâtre des béliers parisiens, Le Divan du Monde, Théâtre Pixel, Théâtre du Conservatoire d'Art Dramatique, L'Affiche, Nouveau théâtre, Salle Ferry, Théâtre de Poche Montparnasse, Atelier de Paris, Théâtre de l'Épée de Bois, Théâtre du Chaudron, Théâtre du Soleil, Les Trois Baudets, Le Passage vers les Etoiles, L'étoile du Nord, Bobino, Théatre Galerie de Nesle, Théâtre de l'Opprimé, La Passementerie, Auguste, Théâtre du Petit Montparnasse, Atelier de la Bonne Graine, Théâtre Dunois, Bouffon théâtre, Le Regard du Cygne, Auditorium Saint-Germain, Acting International, Théâtre Darius Milhaud, Théâtre Douze, Théâtre Saint-Blaise, Théâtre aux Mains Nues, Théâtre de l'Écho, Théatre Saint-Germain, Théâtre astral, Le mouchoir de poche, Théatre de la Terre, Théâtre des Quarts-d'Heure, Espace Bernanos, Théâtre du petit monde, Opéra Bastille, Odéon Théâtre de l'Europe, Le Cabaret Sauvage, Théâtre du Châtelet, Théâtre de la Ville, Comédie Française, Théâtre du Palais Royal, Théâtre des Bouffes Parisiens, Théâtre National de l'Opéra Comique, Opéra Garnier, Caveau de la République, Théâtre Mouffetard, Théâtre de la Tempête, Kiosque à Musique, Théatre du Luxembourg, Théâtre du Gymnase Marie Bell, Théâtre de la Porte-Saint-Martin, Théâtre de la Renaissance, Au Laurette Théâtre, Cité de la Musique, Le Tarmac de la Villette, Espace Cardin, Théâtre Marigny, Théâtre Guignol des Champs-Élysées, Théâtre de la Madeleine, Théâtre Mogador, Théatre de l'Oeuvre, Casino de Paris, Théâtre La Bruyère, Théâtre Saint-Georges, Le Tarmac, Studio de l'Ermitage, Théâtre de Ménilmontant, Théâtre de la Colline, Au Lapin Agile, Élysée Montmartre (Fermé), Théâtre des Deux Ânes, Théatre de l'Atelier, Le Trianon, Lavoir moderne parisien, Theâtre de la Plaine, Guignol, Marionnettes du Ranelagh, Salle Wagram, Théâtre Hébertot, Théâtre le Petit Hébertot, Théâtre du Rond-Point, Le Grand Parquet, Théâtre de l’Aquarium, Théâtre de verre, Chapiteaux Turbulents ! +3 +8 +5 +Untere Neckarstraße +48.8547859 2.3941295, 48.8248132 2.3380361, 48.8247461 2.3379663, 48.8769311 2.3319587, 48.8592815 2.4001391, 48.8368896 2.2901925, 48.8369266 2.2902167, 48.8314375 2.3610251, 48.8579759 2.4063828, 48.8540236 2.4015272, 48.8897293 2.2994259, 48.8897606 2.2993882, 48.8486322 2.3588365, 48.8779905 2.3662605, 48.8867597 2.3750239, 48.8862341 2.3762604, 48.8186493 2.3590514, 48.8173080 2.3582405, 48.8175522 2.3582541, 48.8628781 2.3670713, 48.8209066 2.3574248, 48.8208012 2.3572972, 48.8208287 2.3576033, 48.8208145 2.3574502, 48.8520197 2.2867484, 48.8897338 2.3634397, 48.8897354 2.3635038, 48.8290298 2.3791668, 48.8597144 2.4062420, 48.8654427 2.4002296, 48.8655443 2.4002869, 48.8656004 2.4000960, 48.8316069 2.3482725, 48.8388356 2.4064308, 48.8388787 2.4064483, 48.8896329 2.3152465, 48.8189949 2.3551879, 48.8189152 2.3552463, 48.8601347 2.3613407, 48.8864643 2.3247572, 48.8737445 2.3636077, 48.8422883 2.3537773, 48.8761720 2.3844227, 48.8761415 2.3844219 +La bobine de fil, Le mur des Canuts, Lyon et sa région, terre de l’humanisme, Lyon et sa région, terre de l’humanisme, Le Théâtre des Charpennes, Camionnette Disques Wem, Rue des grands chefs - Restaurant Paul Bocuse, Paul Bocuse - Restaurant Paul Bocuse, Mur de la Cour des Loges, La fresque des Lyonnais, La Bibliotheque de la Cité "des écrivains en Rhône-Alpes", Boulevard de la B.D., Boulevard de la B.D., Boulevard de la B.D., La Dombes, Fresque de Meyzieu, Fresque des Fourchettes, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Charlie Chaplin Bubbles, Mayoud Honda, Mur peint, Fresque, Fresque, Fresque "La Route de la Soie", La "Fresque Végétale Lumière", Poster en facade gratte ciel, Tag 16m2 and 45.7615378 4.9252989, 45.7858145 4.8075880, 45.7779285 4.8279690, 45.7698700 4.7879340, 45.7698985 4.7880655, 45.7725199 4.8663498, 45.7756330 4.7951910, 45.8155738 4.8472165, 45.8156435 4.8475277, 45.7649855 4.8287925, 45.7681064 4.8280574, 45.7659207 4.8312600, 45.7759090 4.8015510, 45.7760780 4.7952180, 45.7764025 4.7984375, 45.8202824 4.8705136, 45.7664155 5.0049470, 45.7704495 4.8643856, 45.7617643 4.8152072, 45.7621030 4.8160960, 45.7618195 4.8162683, 45.7745993 4.8606941, 45.8437735 4.7340205, 45.7690470 4.7998735, 45.7697129 4.9524500, 45.7714030 5.0001735, 45.7723084 4.8215466, 45.7696009 4.8272315, 45.7680770 4.8801051, 45.7677299 4.8312641, 45.8764848 4.8346205, 45.8684698 4.8394062 +2 +Wellington +yes +10 +Hilton Edinburgh Airport Hotel +477 +yes +2 +55.9523925 -3.1039168 +yes +24 +yes +41 +Stephen Sauvestre, Gustave Eiffel, Maurice Koechlin, Émile Nouguier +Eugène Flachat and 48.8869533 2.3007728 +http://www.glenfiddich.com, http://www.bladnoch.co.uk/, http://www.bruichladdich.com/, http://www.kilchomandistillery.com/, http://www.geistvonrathen.de/, http://www.schladerer.de/, http://www.vins.tourisme-gers.com/Recherche-Details.aspx?theme=armagnac&categorie=producteurscaves&FID=51554&k=chateau-cugnac-armagnac-condom, http://www.br-piekfeinebraende.de/, http://www.geistreich.biz/, http://www.distilleryprescott.com/, http://www.rhum-saintjames.com/, http://www.alte-brennerei-holz.de/, www.grassl.com, http://www.altlaender.com, http://www.welsh-whisky.co.uk/, http://www.jurawhisky.com, http://www.plymouthdistillery.com, http://www.plymouthdistillery.com, http://www.discovering-distilleries.com/dalwhinnie/, http://www.stgeorgespirits.com, http://www.chateau-breuil.com/, http://www.abhainndearg.co.uk/, http://www.ardbeg.com, http://www.malts.com/index.php/en can/Our-Whiskies/Lagavulin, http://dunordcraftspirits.com, http://www.mainedistilleries.com/, http://www.plymouthdistillery.com +yes +49.4202233 8.6640696, 49.4198130 8.6638525, 49.4195041 8.6641646, 49.4248122 8.6872355, 49.4263252 8.6863288, 49.4217251 8.6445344, 49.4084762 8.6902505, 49.4065473 8.6689860, 49.4208711 8.6448501, 49.4209873 8.6448339, 49.4204584 8.6876495, 49.4189459 8.6869645, 49.4193267 8.6867654, 49.4192376 8.6861722, 49.4192705 8.6864384, 49.3777088 8.7056335, 49.3780745 8.7048109, 49.3779505 8.7037486, 49.3745067 8.7032760, 49.3799563 8.6760435, 49.3799786 8.6763709, 49.3800051 8.6766463, 49.3802989 8.6762802, 49.3803460 8.6768554, 49.3793874 8.6774627, 49.3793531 8.6767040, 49.3793632 8.6770302, 49.3793710 8.6772783, 49.3793218 8.6759644, 49.3792705 8.6775154, 49.3796266 8.6836532, 49.3796294 8.6834790, 49.3795841 8.6831190, 49.3795295 8.6826857, 49.3997820 8.6405617, 49.3995752 8.6401758, 49.3926214 8.6768793, 49.3798526 8.6797819, 49.3799495 8.6800491, 49.3799490 8.6795094, 49.4081778 8.6881317, 49.4081698 8.6882899, 49.4082331 8.6884615, 49.4083237 8.6888854, 49.4084415 8.6900553, 49.4084860 8.6903641, 49.4084765 8.6898842, 49.4084627 8.6897477, 49.4084636 8.6896366, 49.4084248 8.6895282, 49.4083660 8.6893501, 49.4083662 8.6891344, 49.4083446 8.6889828, 49.4086172 8.6909674, 49.4086503 8.6908303, 49.4085091 8.6906855, 49.4086061 8.6905132, 49.4087890 8.6917902, 49.4087592 8.6915686, 49.4087155 8.6913580, 49.4086937 8.6910795, 49.4087163 8.6911997, 49.4264161 8.6863276, 49.4263838 8.6862184, 49.4261138 8.6866692, 49.4264855 8.6863041, 49.4262979 8.6865564, 49.4262677 8.6863603, 49.3822628 8.6596492, 49.3997181 8.6401339, 49.3996684 8.6405968, 49.3995169 8.6406436, 49.3994323 8.6402177, 49.4088119 8.6919989, 49.3628089 8.7050636, 49.3629886 8.7063068, 49.3633642 8.7049588, 49.3632257 8.7044001, 49.4069028 8.6689467, 49.4067040 8.6686868, 49.3826190 8.6602844, 49.3821944 8.6593300, 49.4077241 8.6695054, 49.4076008 8.6695056, 49.4074774 8.6695058, 49.4073539 8.6695060, 49.4072305 8.6695063, 49.4072462 8.6689669, 49.4073676 8.6689653, 49.4074890 8.6689637, 49.4076104 8.6689621, 49.4077317 8.6689605 +yes +0 +44 +key cutter, shoemaker, locksmith, seamstress, tailor, handicraft, hand craft, silversmith, screenprinter, electrician, keycutter, photographer, carpenter, watchmaker, blacksmith, stonemason +yes +203 +Bonaly Scout Camp, Edinburgh Caravan Club, Mortonhall Caravan and Camping Park, Linwater Caravan Park +49.4058676 8.6845278, 49.3755036 8.6875476, 49.4114903 8.6527163, 49.4084682 8.7011215, 49.4282350 8.6834880, 49.4080165 8.6707602, 49.3970333 8.6721539 +es:Annobón, en:Cocos (Keeling) Islands, en:Christmas Island, http://en.wikipedia.org/wiki/Banaba Island, pt:Ilha Brava, en:Norfolk Island, en:St. George Island (Alaska), en:Rapa Iti, en:Thule Island, de:Pitcairn, ru:Остров Уединения, pt:Trindade e Martim Vaz, en:Bouvet Island, http://en.wikipedia.org/wiki/Antipodes Island, fr:Amsterdam (île), fr:Saint-Paul (île), en:Ascension Island, en:Semisopochnoi Island, en:Napuka, en:Christmas Island, ru:Остров Атласова, en:Norfolk Island, en:Campbell Island, New Zealand, en:Floreana Island, en:Diego Garcia, en:Laurie Island, en:Peter I Island, en:Macquarie island, en:Franklin Island (Antarctica), ru:Остров Рудольфа, en:Howland Island, de:Osterinsel +14 +8 +56 +48.8337601 2.2980718, 48.8309772 2.2928903, 48.8339410 2.2950323, 48.8349198 2.2959694, 48.8385615 2.2891992, 48.8381491 2.2812684, 48.8811210 2.3732246, 48.8779567 2.3742972, 48.8781153 2.3727187, 48.8307104 2.3120538, 48.8367030 2.2977655, 48.8405834 2.2993396, 48.8463258 2.3017109, 48.8893373 2.3260663, 48.8822209 2.3332567, 48.8300409 2.3310810, 48.8332151 2.3611684, 48.8322056 2.3591376, 48.8712479 2.3628847, 48.8457070 2.3709161, 48.8778514 2.3653978, 48.8630548 2.3794488, 48.8563588 2.4021369, 48.8705460 2.3596280, 48.8297820 2.3231434, 48.8563936 2.4058269, 48.8560853 2.4051449, 48.8637600 2.3817121, 48.8316269 2.3219796, 48.8635138 2.4091631, 48.8518271 2.4017627, 48.8615895 2.3741154, 48.8602485 2.3756498, 48.8505112 2.3734697, 48.8460708 2.3737179, 48.8496820 2.3740608, 48.8490800 2.3750094, 48.8490486 2.3705522, 48.8551656 2.3600991, 48.8459906 2.3763165, 48.8474237 2.3715091, 48.8468588 2.3691970, 48.8934713 2.3255439, 48.8909446 2.3815154, 48.8472820 2.3181790, 48.8362003 2.3593757, 48.8863875 2.3186958, 48.8493049 2.3780822, 48.8493772 2.3775082, 48.8520216 2.4013947, 48.8521964 2.4026633, 48.8466612 2.3868559, 48.8475216 2.3868219, 48.8524263 2.3831212, 48.8538371 2.3820195, 48.8503861 2.3796236, 48.8495310 2.3784411, 48.8455986 2.3806304, 48.8507593 2.3788216, 48.8481410 2.3804390, 48.8824887 2.3152528, 48.8941438 2.3276936, 48.8332886 2.3557244, 48.8373701 2.2969471, 48.8662590 2.4060030, 48.8646392 2.4080329, 48.8651930 2.4052170, 48.8829824 2.3824508, 48.8541148 2.4028833, 48.8279466 2.3304154, 48.8619444 2.3516288, 48.8611025 2.3441314, 48.8500286 2.2891336, 48.8765487 2.3769364, 48.8752389 2.3825154, 48.8701184 2.3349370, 48.8773883 2.3713487, 48.8522577 2.3568176, 48.8443535 2.3549714, 48.8465773 2.3541793, 48.8618685 2.3509784, 48.8576627 2.3525871, 48.8587248 2.3501786, 48.8462572 2.3519644, 48.8637215 2.3528934, 48.8568317 2.3570851, 48.8572474 2.3590633, 48.8267666 2.3510620, 48.8257746 2.3474534, 48.8526580 2.3643423, 48.8658845 2.3575167, 48.8641612 2.3652384, 48.8885363 2.3534749, 48.8616550 2.3823490, 48.8405164 2.3219841, 48.8804129 2.3352691, 48.8794749 2.3336267, 48.8810172 2.3647737, 48.8814252 2.3658018, 48.8764651 2.3681086, 48.8383449 2.3457194, 48.8344303 2.3140331, 48.8620790 2.4013394, 48.8946928 2.3825532, 48.8943501 2.3144067, 48.8469243 2.3314911, 48.8721203 2.3123396, 48.8726364 2.3241496, 48.8804896 2.3190711, 48.8517936 2.3135511, 48.8466215 2.4086336, 48.8377558 2.3541054, 48.8387036 2.3509191, 48.8827594 2.3615206, 48.8830373 2.3593122, 48.8699837 2.3960859, 48.8790942 2.3629732, 48.8782374 2.3646053, 48.8825669 2.3666870, 48.8197848 2.3652117, 48.8448730 2.4055932, 48.8784075 2.3544102, 48.8410084 2.3943815, 48.8805633 2.3647086, 48.8796707 2.3636682, 48.8763896 2.3610152, 48.8803326 2.3639778, 48.8832959 2.3681138, 48.8859862 2.3714699, 48.8650067 2.2919269, 48.8374206 2.2895464, 48.8252367 2.3572513, 48.8671109 2.2875572, 48.8362585 2.3098681, 48.8503715 2.3790699, 48.8681484 2.2814134, 48.8662633 2.2740207, 48.8412244 2.3146196, 48.8416926 2.3144950, 48.8739761 2.3446348, 48.8525869 2.3545810, 48.8869795 2.3395686, 48.8556968 2.2748636, 48.8374709 2.3730609, 48.8314755 2.3541835, 48.8241809 2.3260188, 48.8232738 2.3262563, 48.8258667 2.3126560, 48.8468751 2.2700239, 48.8277034 2.3290464, 48.8714383 2.3749525, 48.8714917 2.3756604, 48.8425873 2.2683262, 48.8861537 2.3665372, 48.8291397 2.3173468, 48.8862628 2.3608446, 48.8899894 2.3635134, 48.8403968 2.2858802, 48.8451852 2.3793358, 48.8546996 2.3622532, 48.8873315 2.3475211, 48.8757382 2.2870119, 48.8427628 2.3131898, 48.8846035 2.3801294, 48.8287227 2.2733061, 48.8966748 2.3303545, 48.8957156 2.3308196, 48.8416043 2.3385745, 48.8282746 2.3160906, 48.8276845 2.3152274, 48.8471880 2.2956420, 48.8505880 2.3767286, 48.8573622 2.3923455, 48.8528949 2.2984341, 48.8451099 2.2604585, 48.8234260 2.3622734, 48.8237538 2.3645279, 48.8795652 2.3399721, 48.8782649 2.3446579, 48.8416777 2.3865802, 48.8356662 2.4056140, 48.8384665 2.3992857, 48.8390505 2.3976576, 48.8367225 2.4026707, 48.8420538 2.3352669, 48.8479330 2.3109984, 48.8400158 2.3885455, 48.8380676 2.3904670, 48.8372920 2.3914250, 48.8515655 2.3106825, 48.8573206 2.3799070, 48.8568774 2.3778976, 48.8791708 2.3545583, 48.8433099 2.2998521, 48.8422686 2.3028212, 48.8428121 2.3029849, 48.8766295 2.3386068, 48.8232376 2.3241574, 48.8623905 2.3858127, 48.8252485 2.3653047, 48.8235509 2.3617468, 48.8604567 2.3787781, 48.8941854 2.3817753, 48.8567231 2.3036505, 48.8316207 2.3444925, 48.8309991 2.3450497, 48.8448253 2.2941187, 48.8219529 2.3664594, 48.8241488 2.3575845, 48.8231660 2.3578863, 48.8264536 2.3293804, 48.8455609 2.2880163, 48.8703798 2.3425078, 48.8815370 2.2890680, 48.8814465 2.2860544, 48.8840798 2.2887768, 48.8642750 2.3750973, 48.8844394 2.3668122, 48.8279579 2.3273293, 48.8906856 2.3765193, 48.8328648 2.3160056, 48.8209152 2.3429194, 48.8217284 2.3424285, 48.8358292 2.2784139, 48.8465347 2.4059784, 48.8771396 2.3394367, 48.8777030 2.3395918, 48.8627753 2.2762117, 48.8627898 2.2765008, 48.8314375 2.3197845, 48.8378234 2.3078140, 48.8661247 2.3355594, 48.8767239 2.3326961, 48.8767816 2.3351954, 48.8747442 2.3555041, 48.8835914 2.3739721, 48.8649656 2.3746029, 48.8515852 2.2976307, 48.8695595 2.3743475, 48.8540049 2.4108468, 48.8580698 2.3901570, 48.8383400 2.3560643, 48.8466480 2.3513950, 48.8491900 2.3494261, 48.8286796 2.3431375, 48.8727378 2.3797947, 48.8942732 2.3207603, 48.8945377 2.3200415, 48.8934867 2.3227129, 48.8243403 2.3236549, 48.8273521 2.3254454, 48.8236051 2.3228034, 48.8314118 2.3268159, 48.8317243 2.3255633, 48.8730929 2.3615921, 48.8902931 2.3539796, 48.8912086 2.3476028, 48.8286520 2.3729316, 48.8443510 2.3492066, 48.8448929 2.3490511, 48.8947631 2.3433837, 48.8944528 2.3445585, 48.8931760 2.3432750, 48.8936140 2.3424950, 48.8699780 2.3603140, 48.8692770 2.3632250, 48.8689460 2.3599740, 48.8711600 2.3611170, 48.8718330 2.3625680, 48.8726030 2.3634490, 48.8551457 2.3064362, 48.8682200 2.3862795, 48.8569251 2.3724871, 48.8927820 2.3439810, 48.8652385 2.3467947, 48.8923110 2.3520290, 48.8442018 2.3394106, 48.8289915 2.3222506, 48.8593204 2.3472769, 48.8262063 2.3413104, 48.8856760 2.3378250, 48.8847970 2.3378803, 48.8528514 2.4064283, 48.8481389 2.4033143, 48.8285586 2.3331113, 48.8276535 2.3328559, 48.8513926 2.4064136, 48.8547850 2.2692675, 48.8651423 2.2891208, 48.8591269 2.4019235, 48.8600304 2.4040296, 48.8511503 2.3968083, 48.8863055 2.3474829, 48.8955331 2.3629901, 48.8523880 2.3766318, 48.8510502 2.3768840, 48.8507078 2.3790297, 48.8361116 2.3874192, 48.8235068 2.3533933, 48.8403649 2.3951878, 48.8907372 2.3457644, 48.8873229 2.3511583, 48.8376955 2.3463172, 48.8846893 2.3539417, 48.8416560 2.3224928, 48.8238291 2.3416075, 48.8577497 2.2739837, 48.8645340 2.4052672, 48.8780261 2.3268365, 48.8398765 2.2998351, 48.8816987 2.3281627, 48.8808802 2.3287802, 48.8360217 2.3527252, 48.8354391 2.3483666, 48.8498251 2.2722599, 48.8504305 2.2704038, 48.8528838 2.2756127, 48.8452361 2.4025749, 48.8805451 2.2927512, 48.8810529 2.2917751, 48.8872955 2.3492014, 48.8870640 2.3535779, 48.8825453 2.3671700, 48.8245686 2.3765029, 48.8813195 2.2953819, 48.8898589 2.3421554, 48.8906741 2.3434068, 48.8298993 2.3526634, 48.8281786 2.3525387, 48.8883534 2.3187513, 48.8890835 2.3224688, 48.8882779 2.2997302, 48.8939893 2.3329500, 48.8935546 2.3361391, 48.8947140 2.3351360, 48.8972639 2.3451996, 48.8979057 2.3340738, 48.8958814 2.3435581, 48.8912647 2.3345914, 48.8932962 2.3379872, 48.8493216 2.4063155, 48.8980433 2.3287001, 48.8979798 2.3377499, 48.8934867 2.3300359, 48.8928448 2.3280564, 48.8939770 2.3281101, 48.8942097 2.3280510, 48.8966030 2.3288474, 48.8932032 2.3271200, 48.8352792 2.2890637, 48.8220563 2.3588648, 48.8911913 2.3392274, 48.8499872 2.3478618, 48.8463001 2.3432338, 48.8498177 2.3482783, 48.8446190 2.3895985, 48.8497058 2.2914067, 48.8488722 2.2909525, 48.8516467 2.2919993, 48.8502983 2.2919285, 48.8430441 2.2833680, 48.8427407 2.2800381, 48.8569612 2.3997902, 48.8580950 2.4069089, 48.8574194 2.4075785, 48.8794256 2.3893510, 48.8824759 2.3233165, 48.8441370 2.3723808, 48.8533370 2.3079466, 48.8365811 2.3930159, 48.8457446 2.3932577, 48.8462449 2.3946154, 48.8682520 2.3960084, 48.8608742 2.3547652, 48.8644732 2.3715756, 48.8354190 2.3928675, 48.8389285 2.3961514, 48.8220200 2.3551611, 48.8713113 2.3039889, 48.8525737 2.3850093, 48.8777366 2.2878742, 48.8782149 2.3984639, 48.8761595 2.4036138, 48.8770014 2.4071325, 48.8814737 2.3729748, 48.8807820 2.3745741, 48.8843130 2.3091760, 48.8277275 2.3062018, 48.8287563 2.3015875, 48.8930590 2.3424350, 48.8750926 2.2837673, 48.8419136 2.3247626, 48.8385785 2.3227706, 48.8431110 2.2650609, 48.8594724 2.3491134, 48.8732334 2.3431543, 48.8774393 2.3494265, 48.8774984 2.3489986, 48.8849881 2.3071728, 48.8392226 2.3945147, 48.8446508 2.3731492, 48.8358462 2.2901616, 48.8852419 2.3788486, 48.8302344 2.3704299, 48.8814548 2.3450080, 48.8706548 2.3429479, 48.8657789 2.3469220, 48.8205834 2.3501740, 48.8234560 2.3498227, 48.8533833 2.3705439, 48.8239258 2.3642439, 48.8225364 2.3462505, 48.8227836 2.3470686, 48.8257161 2.3507275, 48.8257020 2.3460018, 48.8771653 2.3515517, 48.8763392 2.3556446, 48.8682998 2.4016012, 48.8697801 2.4028967, 48.8710424 2.4039943, 48.8720618 2.4046821, 48.8727710 2.3991263, 48.8650559 2.3971773, 48.8655264 2.3981686, 48.8344269 2.3672465, 48.8284908 2.3703198, 48.8258079 2.3604332, 48.8594207 2.3678969, 48.8248710 2.3196867, 48.8247915 2.3176000, 48.8301707 2.3337415, 48.8327495 2.3363992, 48.8333703 2.3323929, 48.8351459 2.3005345, 48.8353374 2.3022404, 48.8359317 2.3005525, 48.8440288 2.4105786, 48.8908851 2.3611676, 48.8263543 2.3123490, 48.8263472 2.3104526, 48.8274473 2.3073922, 48.8273336 2.3052629, 48.8372837 2.2784287, 48.8421188 2.2774869, 48.8260357 2.3595197, 48.8267984 2.3745150, 48.8276944 2.3706840, 48.8352679 2.2821201, 48.8558849 2.3751381, 48.8545384 2.3713228, 48.8287227 2.2995517, 48.8317316 2.3684804, 48.8395554 2.2619755, 48.8900586 2.3606383, 48.8715652 2.3861467, 48.8243982 2.3283690, 48.8437094 2.2827794, 48.8424843 2.2821195, 48.8418506 2.2815590, 48.8941162 2.3618889, 48.8933356 2.3615276, 48.8901273 2.3615642, 48.8397383 2.2615466, 48.8388211 2.2609376, 48.8900701 2.3596849, 48.8908274 2.3601975, 48.8903737 2.3602877, 48.8762839 2.3874942, 48.8258804 2.3538466, 48.8910933 2.3308427, 48.8840472 2.3777246, 48.8532483 2.3881569, 48.8310847 2.3808041, 48.8325943 2.3626569, 48.8276596 2.3564922, 48.8501827 2.3300326, 48.8729108 2.3892528, 48.8926192 2.3787994, 48.8594463 2.3795210, 48.8917249 2.3596358, 48.8933896 2.3598075, 48.8353878 2.3976074, 48.8393328 2.3898245, 48.8653879 2.3568423, 48.8858319 2.3683200, 48.8866975 2.3690587, 48.8918801 2.3632407, 48.8682722 2.3654615, 48.8557307 2.3714370, 48.8559510 2.3687418, 48.8632613 2.3690657, 48.8610703 2.3668902, 48.8615047 2.3648719, 48.8625898 2.3635210, 48.8624376 2.3641865, 48.8798043 2.3995910, 48.8294190 2.3760526, 48.8893342 2.3187256, 48.8435392 2.3876321, 48.8664075 2.3511385, 48.8752547 2.3898031, 48.8739410 2.3881658, 48.8740999 2.3854670, 48.8729667 2.3708014, 48.8536536 2.3652281, 48.8839440 2.2924260, 48.8841607 2.2936643, 48.8698850 2.3947954, 48.8869564 2.3228854, 48.8320028 2.3143006, 48.8764887 2.3444554, 48.8668204 2.3972017, 48.8708653 2.3088351, 48.8703111 2.3109794, 48.8438225 2.3306529, 48.8270270 2.3545480, 48.8441654 2.3422903, 48.8525204 2.3447674, 48.8436299 2.3520995, 48.8683492 2.3653361, 48.8444368 2.3317238, 48.8878098 2.3799348, 48.8455417 2.2847565, 48.8471374 2.2853376, 48.8640679 2.3650860, 48.8556183 2.3576323, 48.8725081 2.3789468, 48.8297066 2.3719377, 48.8658987 2.3445250, 48.8518380 2.3369161, 48.8368347 2.3064637, 48.8864904 2.3929252, 48.8409479 2.3520733, 48.8548553 2.3856848, 48.8551588 2.3869294, 48.8902682 2.3369864, 48.8648476 2.3661885, 48.8954171 2.3603570, 48.8462303 2.3082719, 48.8881816 2.3761106, 48.8224627 2.3258585, 48.8531572 2.3447239, 48.8495298 2.3495342, 48.8678864 2.3249680, 48.8406223 2.3162685, 48.8415260 2.3177790, 48.8516476 2.3430530, 48.8522113 2.3433310, 48.8799994 2.2917628, 48.8760421 2.3247263, 48.8259140 2.3418063, 48.8475433 2.3020749, 48.8848153 2.3335836, 48.8768943 2.3487181, 48.8340803 2.3449578, 48.8294924 2.3480229, 48.8483268 2.3315361, 48.8384271 2.3603013, 48.8718826 2.3260739, 48.8306192 2.3113448, 48.8708189 2.3031863, 48.8224695 2.3280079, 48.8867785 2.2961065, 48.8380124 2.3925384, 48.8393761 2.3972146, 48.8729941 2.3452007, 48.8363310 2.3511207, 48.8308373 2.3481222, 48.8328106 2.3467883, 48.8189800 2.3619660, 48.8852910 2.2958210, 48.8653095 2.3468349, 48.8780467 2.2960586, 48.8785810 2.2953365, 48.8785586 2.2954162, 48.8860217 2.2909345, 48.8342538 2.4039026, 48.8328046 2.3998654, 48.8897434 2.3684941, 48.8565550 2.3066461, 48.8662189 2.3411008, 48.8338577 2.3542234, 48.8588484 2.3622538, 48.8557977 2.3334124, 48.8537947 2.3371165, 48.8401916 2.3498220, 48.8405286 2.3497872, 48.8385999 2.2890636, 48.8410381 2.3194768, 48.8665493 2.2967911, 48.8732070 2.3032419, 48.8880020 2.3070560, 48.8894260 2.3021180, 48.8501962 2.3822724, 48.8469077 2.3843835, 48.8972873 2.3596764, 48.8588932 2.3539048, 48.8755295 2.3273771, 48.8757429 2.3272510, 48.8487020 2.3404334, 48.8341468 2.3292697, 48.8334796 2.3314573, 48.8772230 2.2922270, 48.8645795 2.2824038, 48.8338948 2.3299593, 48.8810540 2.2852110, 48.8839130 2.2907430, 48.8278199 2.3453108, 48.8746985 2.3800023, 48.8294976 2.3479900, 48.8746524 2.3059699, 48.8743208 2.3074302, 48.8798388 2.3745491, 48.8345685 2.3277223, 48.8824071 2.3708251, 48.8587325 2.3232162, 48.8736497 2.3266758, 48.8265944 2.3272409, 48.8538362 2.3322137, 48.8333843 2.3867041, 48.8808106 2.3727327, 48.8406281 2.3046706, 48.8533190 2.3669820, 48.8849774 2.3801611, 48.8854894 2.3815292, 48.8856226 2.3818987, 48.8830874 2.3878108, 48.8438379 2.3524738, 48.8438379 2.3524738, 48.8222496 2.3507278, 48.8851070 2.3036780, 48.8500752 2.3009300, 48.8496090 2.3539260, 48.8827302 2.3707486, 48.8609924 2.2838960, 48.8588106 2.2845183, 48.8306465 2.3335032, 48.8725875 2.3782042, 48.8755301 2.3910815, 48.8656747 2.3928548, 48.8827937 2.3812803, 48.8829828 2.3811149, 48.8755713 2.3983661, 48.8755863 2.3989012, 48.8767180 2.4047230, 48.8771405 2.4060238, 48.8591517 2.3557695, 48.8607522 2.3545715, 48.8608207 2.3543547, 48.8609593 2.3539532, 48.8610034 2.3538240, 48.8473351 2.3951813, 48.8472416 2.3961945, 48.8475546 2.3930901, 48.8476864 2.3973242, 48.8518800 2.3897180, 48.8505687 2.3925919, 48.8500483 2.3946347, 48.8575099 2.3809573, 48.8394381 2.3922677, 48.8395862 2.3939515, 48.8513422 2.3477785, 48.8745781 2.3873676, 48.8746258 2.3882005, 48.8753047 2.3926062, 48.8352480 2.2852870, 48.8583161 2.3282685, 48.8489230 2.3496710, 48.8367930 2.2958108, 48.8560138 2.2801813, 48.8568409 2.2789161, 48.8440022 2.2934092, 48.8642512 2.3689433, 48.8515116 2.3988887, 48.8907874 2.3784109, 48.8853720 2.2926050, 48.8583103 2.3822134, 48.8661157 2.3977226, 48.8671967 2.4092129, 48.8684503 2.4092879, 48.8621715 2.3774882, 48.8746232 2.3266224, 48.8467059 2.3087748, 48.8363398 2.2999746, 48.8653853 2.3686990, 48.8653218 2.3678518, 48.8413271 2.3076655, 48.8353741 2.3033228, 48.8477911 2.3189782, 48.8469433 2.3172689, 48.8685232 2.3413917, 48.8661744 2.3390884, 48.8833230 2.2987210, 48.8825490 2.2939790, 48.8615259 2.3704088, 48.8429707 2.3067870, 48.8642079 2.3555687, 48.8840313 2.3391067, 48.8616536 2.3637831, 48.8329453 2.2890084, 48.8670104 2.3443314, 48.8545691 2.3624284, 48.8410290 2.3406982, 48.8605092 2.3788107, 48.8547397 2.3848709, 48.8643859 2.3991316, 48.8298427 2.3644959, 48.8759393 2.2895530, 48.8619514 2.3325055, 48.8364245 2.3944189, 48.8770775 2.3600536, 48.8773723 2.3588805 and 48.8816147 2.3662734, 48.8485878 2.3779556, 48.8477085 2.3772628, 48.8519828 2.4015288, 48.8606467 2.3785883, 48.8932504 2.3277402, 48.8934830 2.3278313, 48.8661100 2.4057320, 48.8649560 2.4047670, 48.8623237 2.3634257, 48.8877005 2.3533788, 48.8629947 2.3795041, 48.8468796 2.3271500, 48.8776226 2.3150003, 48.8680219 2.3961889, 48.8839565 2.3613084, 48.8802192 2.3643090, 48.8672446 2.2975479, 48.8950477 2.3822690, 48.8474744 2.2680932, 48.8718766 2.3761721, 48.8704140 2.3727547, 48.8712167 2.3748802, 48.8705763 2.3732019, 48.8705794 2.3726376, 48.8871151 2.3474262, 48.8756613 2.2868772, 48.8472282 2.3082142, 48.8479879 2.3109130, 48.8383871 2.3900734, 48.8509763 2.3108973, 48.8234323 2.3584527, 48.8846619 2.3670751, 48.8461078 2.4020554, 48.8451767 2.4043841, 48.8626693 2.2763686, 48.8631682 2.2764416, 48.8245199 2.3237261, 48.8269977 2.3252696, 48.8286429 2.3278648, 48.8232893 2.3240570, 48.8930770 2.3421030, 48.8937980 2.3431330, 48.8931540 2.3429260, 48.8930830 2.3430390, 48.8929620 2.3432630, 48.8931090 2.3433990, 48.8933970 2.3424700, 48.8936660 2.3423840, 48.8933880 2.3479180, 48.8932130 2.3480590, 48.8379699 2.3924685, 48.8306222 2.3438186, 48.8262682 2.3413732, 48.8577722 2.3812528, 48.8275957 2.3325826, 48.8528674 2.4065219, 48.8304790 2.2943425, 48.8380975 2.2811300, 48.8360490 2.3873173, 48.8235110 2.3536356, 48.8898645 2.3422536, 48.8933633 2.3273912, 48.8316520 2.3639864, 48.8932561 2.3273882, 48.8351222 2.2888936, 48.8617519 2.3509405, 48.8650692 2.2881840, 48.8810899 2.3732979, 48.8946050 2.3468940, 48.8413680 2.3066850, 48.8272341 2.3065067, 48.8560716 2.4048790, 48.8449361 2.4054104, 48.8468235 2.3868122, 48.8358268 2.2900677, 48.8854678 2.3814749, 48.8233585 2.3653758, 48.8229202 2.3579643, 48.8195421 2.3590157, 48.8185260 2.3608397, 48.8228214 2.3471152, 48.8255307 2.3472637, 48.8256034 2.3464595, 48.8679663 2.4018628, 48.8686440 2.4015656, 48.8713217 2.4044435, 48.8766469 2.4051044, 48.8252680 2.3470445, 48.8656967 2.3983655, 48.8288068 2.3694717, 48.8225859 2.3275483, 48.8295686 2.3336315, 48.8357986 2.3017632, 48.8902265 2.3605416, 48.8276415 2.3069629, 48.8504748 2.2920807, 48.8902732 2.3613767, 48.8903006 2.3611752, 48.8246154 2.3286641, 48.8424455 2.2820766, 48.8417412 2.2814597, 48.8899232 2.3619412, 48.8387912 2.2608071, 48.8257312 2.3509065, 48.8490105 2.2910540, 48.8352424 2.3977037, 48.8841466 2.2886911, 48.8639331 2.3565353, 48.8870761 2.3594856, 48.8456895 2.3425970, 48.8458043 2.3426608, 48.8895396 2.3195127, 48.8248228 2.3573776, 48.8463586 2.2854231, 48.8641631 2.3455959, 48.8798647 2.3747261, 48.8324140 2.3030804, 48.8274692 2.3706917, 48.8767253 2.3445477, 48.8549118 2.3865002, 48.8499905 2.3788090, 48.8648212 2.3661053, 48.8447339 2.3101296, 48.8529991 2.2905857, 48.8597203 2.3563359, 48.8520043 2.3432322, 48.8258511 2.3417971, 48.8257747 2.3417859, 48.8339973 2.3446413, 48.8803144 2.2992162, 48.8378744 2.2816421, 48.8696814 2.3227806, 48.8475847 2.2667489, 48.8368174 2.3921011, 48.8397759 2.3970504, 48.8327512 2.3467251, 48.8911432 2.3616261, 48.8908663 2.3615027, 48.8907657 2.3616639, 48.8910109 2.3614919, 48.8908645 2.3615850, 48.8550035 2.3609057, 48.8882832 2.2996061, 48.8493157 2.3784984, 48.8559766 2.3066968, 48.8868040 2.2961690, 48.8840590 2.2934670, 48.8394962 2.3497379, 48.8399210 2.3496825, 48.8403322 2.3498058, 48.8380098 2.2891917, 48.8288930 2.3016130, 48.8807490 2.2859050, 48.8469150 2.3846047, 48.8502232 2.3819652, 48.8247845 2.3760253, 48.8334615 2.3311381, 48.8335012 2.3310323, 48.8770670 2.2919810, 48.8650824 2.2830488, 48.8816748 2.3725027, 48.8817568 2.3723149, 48.8798264 2.3719401, 48.8814694 2.3733482, 48.8420869 2.3029156, 48.8852044 2.3809157, 48.8855693 2.3817686, 48.8803367 2.3757350, 48.8433945 2.3520737, 48.8433945 2.3520737, 48.8424517 2.3029789, 48.8330926 2.3613863, 48.8884683 2.3744665, 48.8848082 2.3919927, 48.8832730 2.3045600, 48.8742457 2.3749831, 48.8743618 2.3860316, 48.8746255 2.3866149, 48.8754355 2.3898785, 48.8608528 2.3542797, 48.8491214 2.3779213, 48.8488752 2.3776934, 48.8748132 2.3888227, 48.8753144 2.3901825, 48.8752765 2.3929469, 48.8324280 2.3204198, 48.8735274 2.3747879, 48.8721753 2.3729178, 48.8446738 2.2939909, 48.8455257 2.2944696, 48.8569643 2.3786291, 48.8921632 2.3813552, 48.8908774 2.3782534, 48.8921294 2.3489558, 48.8787360 2.2899190, 48.8784220 2.2895090, 48.8583028 2.3830779, 48.8658290 2.3979596, 48.8482332 2.3197065, 48.8476699 2.3191596, 48.8472636 2.3181042, 48.8420825 2.3028095, 48.8785893 2.3450444 +49.4139740 8.7692291 +Clinique Paris V - Centre Médico Chirurgical, Clinique de Vinci (fermée), Centre de Protection Maternelle et Infantile, Clinique Geoffroy Saint-Hilaire, Centre municipal de santé, Clinique de la Muette, Institut Curie, Centre du Luxembourg (Consultations pluri-disciplinaires), Hôpital Marmottan, Maison De Santé Faidherbe, Centre de Bilan de Santé DEPSE, Laboratoire de biologie médicale, Centre de santé médical et dentaire, Hôpital Cognacq-Jay, Centre biologique chemin vert, COSEM Rome, Imagerie Médicale, Centres de dépistage anonymes et gratuits, Clinique Médicales, Médecine Physique Réadaptation, Clinique Canal de l'Ourcq, Hôpital privé des peupliers, Hôpital de jour pour enfants, Hôpital Sainte-Périne - Rossini - Chardon-Lagache, Hôpital Tenon, Hôpital Sainte-Anne, Fondation ophtalmologique Adolphe de Rothschild, Hôpital du Val de Grâce, Hôpital Cochin, Maternité Port Royal et Baudelocque, Hôpital Saint-Vincent de Paul, Hôpital des Quinze-Vingts, Hôpital Leopold Bellan, Hôpital Saint-Joseph, Hôpital Broussais, Hôpital de la Rochefoucauld, Institut Mutualiste Montsouris, Hôpital Européen Georges Pompidou, Hôpital Privé des Peupliers, Institut Pasteur, Hôpital Saint-Jacques, Hôpital Trousseau, Hôpital Lariboisière, Hopital Vaugirard, Hôpital Saint-Michel, Hôpital Fernand Widal, Hôpital Broca, Hôpital Saint-Louis, Hôpital Robert Debré, Hôpital National, Hopital Bichat, Maison médicale Jeanne Garnier, Hôpital Henri Dunant, Clinique Jouvenet, Clinique Edouard Rist, Notre-Dame de Bon Secours, Hôpital des Diaconnesses, Hôtel-Dieu, Maternité Sainte-Félicité, Centre de dépistage anonyme et gratuit, Hôpital Léopold Bellan, Les Cariatides d'Abbeville, Hôpital Jean Jaurès, Clinique des Buttes-Chaumont, Clinique Maussins-Nollet, Hôpital Tarnier, Clinique du Parc de Belleville, Hôpital Pierre Rouquès - Les Bluets, Maternité Les Bluets, Urgences, Institut de Cardiologie, Clinique Arago, Clinique Alleray Labrouste, Clinique Chirurgicale Victor Hugo, Climique Rémusat, Hôpital Sainte-Périne - Rossini - Chardon Lagache, Hôpital Croix Saint-Simon, Clinique Saint-Jean de Dieu, Hôpital Necker Enfants Malades, Hôpital Saint-Antoine, Hôpital Rothschild, Hôpital Esquirol, Clinique de la Jonquière, Clinique Rémy de Gourmont, Hôpital La Collégiale, Hôpital Bretonneau, Maternité Port Royal et Baudelocque, Hôpital des Gardiens de la Paix, Hôpital de la Pitié Salpétrière, Hôpital Maison-Blanche, Hopîtal Lasserre +yes +Theater im Kulturzentrum Karlstorbahnhof, Theater und Philharmonisches Orchester, Zwinger1 und Zwinger3 +yes +megalith, megalith +251 +783 +Alte Robinie, Alte Linde, NSG Enzwiese, Lehmgrube, Doline Immenloch, Entlesboden, Entlesboden, Obere Weide, Obere Weide and 49.2671510 9.7687357, 49.2652563 9.7596961, 49.1003017 9.4322353, 49.2858954 9.7152636, 49.2884127 9.7383219, 49.1558846 9.6333594, 49.1601952 9.5900561, 49.1543685 9.6336691, 49.1519834 9.6262729, 49.1543939 9.6234654 +Corstorphine Hill, Arthur's Seat, Blackford Hill, Allermuir Hill, Haggis Knowe, Crow Hill, Dunsapie Crag, Easter Craiglockhart Hill, Capelaw Hill, White Hill, Torduff Hill, Wester Craiglockhart, Buckstone Snab, The Braids, East Cairn Hill, Caerketton Hill, Whinny Hill, Mons Hill, Warklaw Hill, Calton Hill, Salisbury Crags, The Nether Hill, Dalmahoy Hill, Mansion Hill, New England +49.4111078 8.7122962 +yes +yes +6.7911808119601913 +McDonald's, Burger King, Die Kuh die lacht, Mandy's Fast Food Center +5 +95 +414 +Cambo House +55.8994270 -3.2972350, 55.9232575 -3.2877434, 55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9002100 -3.2321660, 55.9579565 -3.2439627, 55.9297115 -3.2566004, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9372727 -3.3656602, 55.9344345 -3.1791228, 55.9100535 -3.1423251, 55.9377502 -3.4029754, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9365550 -3.3142140, 55.9836311 -3.3989193, 55.9826346 -3.1875882, 55.9248058 -3.2496194, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9051775 -3.1653894, 55.8839472 -3.3405441, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9695021 -3.2293678, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9102318 -3.2377415, 55.9781314 -3.1744029, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9242943 -3.2525824, 55.9398424 -3.2041012, 55.9397193 -3.2934475 +yes +35 +Dalmeny Parish Church, St Stephens Comely Bank, True Jesus Church (St Lukes), Craiglockhart Parish Church, Queensferry Parish Church, St. Anne's Church, Muirhouse Kingdom Hall, Old Kirk of Edinburgh, St Paul's RC Church, St. Ninian's Church, St Ninians, St Christopher's, St Andrews Catholic Church, St Catherine of Alexandria, Pilrig St Paul's, St Johns, Leith Free Church, South Leith Baptist Church, Ardmillan Hall, Craigsbank Parish Church, Kirkliston Parish Church, Corstorphine Old Parish Church, Methodist Central Hall, Duke Street United Reformed Church, Saint Mark's, Capital City Church International (3Ci), Old Schoolhouse Christian Fellowship, St Cuthbert's, Davidson's Mains Parish Church, Saint Annes Church, Ferniehill Evangelical Church, All Nations Christian Fellowship, Methodist Central Hall, True Jesus Church, East Adam Street, Canongate Kirk, Bristo Memorial Church, The Robin Chapel, Niddrie Community Church, Richmond Craigmillar Church, Catholic Church of St Teresa, St Mary Magdalene, Duddingston Kirk, St Philips Joppa Parish Church, Tron Kirk, St Barnabas, Cramond Kirk, Barclay Viewforth Parish Church, St Michael's Parish church, Polwarth Church, Broughton St. Mary's, Saint Martin of Tours Episcopal Church, St Margaret's Chapel, Life church, Buccleuch and Greyfriars, Orthodox Church of St Andrew, Kirk O'Field, St. Giles' Cathedral, South Leith Parish Church, Augustine United Church, St Columba's, St Philip's Church, Kingdom Hall, Saint Cuthberts Church, Destiny Church, St Vincent's Chapel, Ebeneezer, Reid Memorial Church, Gilmore Place Free Presbyterian Church of Scotland, St Ninians Episcopal Church, Granton Salvation Army Hall, Seventh-day Adventist Church, Granton Parish Church, St Margaret and Mary, St Davids, Granton Baptist Church, Marchmont St Giles Parish Church, Murrayfield Parish church, Gorgie Mission, Gorgie Dalry Parish Church, Chruch of the Good Shepherd, Liberton Northfield Parish Church, Saint Cuthbert, Carrick Knowe Parish Church, Colinton Parish Church, Saint Margaret's and Saint Leonard's, Mayfield Salisbury Parish Church, Carrubbers Christian Centre, St Salvidor's Episcopal Church, Craigmillar Park Church, Fairmilehead Parish Church, St Mark's, St John's, Colinton Mains Parish Church, Canonmills Baptist Church, Stockbridge Parish Church, St Andrew's and St George's West, St. James Goldenacre, Inverleith Parish Church, Rhema Church, Leith St Andrew's, South Leith Parish Church, Newhaven Church, Greenbank Church, Abbeyhill Baptist Church, St Fillan, Wardie Parish Church, The Chaplaincy, Muirhouse St Andrews, Drylaw Parish Church, King's Church Edinburgh, Holy Cross RC Church, North Leith Parish Church, Leith Baptist Church, Charlotte Baptist Chapel, Bellevue Chapel, Morningside United Church, Ratho Parish Church, St Margaret's Catholic Church, World Conqueror Christian Centre, Saint Catherine's Argyle, Bristo Baptist Church, Palmerston Place Church, Duncan Street Batptist Church, St Mary's Star of the Sea, Church of the Sacred Heart of Jesus, Morningside Parish Church, Dean Parish Church, Juniper Green Parish Church, St Mary's Episcopal Cathedral, Blackhall St. Columba's Church, Chapel of St. Albert the Great, German Church, Holy Cross Church, Balerno Parish Church, Quaker Meeting House, St Mary's Metropolitan Cathedral (RC), St. Davids Broomhouse Church, St Peter's Catholic Church, St Columba's, Christ Church (Morningside), Saint Columba's by the Castle, Bruntsfield Evangelical Church, St Nicholas Parish Church, Kirkliston Parish Church of Scotland, Saint Stephen's Church, Priestfield Parish Church, St Paul's & St George's, St Michael and All Saints, Greyfriars Church, The Parish of St Gregory the Great, London Road Parish Church, London Road Parish Church, St. Patrick's, Old Saint Paul's, St Margaret's Episcopal Church, Community Church Edinburgh, Saint Peter's Church, Elim Edinburgh, Our Lady of Pochaiv and Saint Andrew, World Conqueror Christian Centre, St Albert's Catholic Chaplaincy, St Albert's Catholic Chaplaincy, St Serf's Parish Church, Church of St John +48.8973798 2.3589436 +yes +1663 +48 +48.8660881 2.3521709 +yes +5 +post office, post box, kindergarten, park, parking, telephone, pub, recycling, fuel, bicycle parking, atm, bank, cinema, doctors, pharmacy, toilets, school, place of worship, police, bar, nightclub, restaurant, library, car rental, cafe, Forestry Commission staff bicycle shed, college, biergarten, fire station, masonic lodge, fast food, arts centre, parking entrance, bench, university, taxi, theatre, marketplace, car sharing, grit bin, stripclub, public building, social facility, conference centre, dressmaker, gambling, consulate, brothel, veterinary, clock, waste basket, fountain, shop, vending machine, shelter, posts, dance hall, picnic bench, Austrian cosulate, swimming pool, Botanic House Hotel, dentist, chiropodist, juice bar, waste transfer station, motorcycle parking, car wash, chiropractor, bookmakers, waste disposal, fitness center, drinking water, photo booth, clinic, vacuum, jet wash, Rhythms of Resistance practice, casino, ice cream, tourism, embassy, charging station, courthouse, community centre, register office, hairdressing, Renaissance Restoration, printer, Haircutting, finanacial advisor, Hairdressing, Nailcare, physiotherapy, Sauna, studio, yes, spa, Yoga, Cabaret, funeral, bureau de change, academi, financial advice, internet cafe, sauna, language centre, prison, hospital, bandstand, grave yard, crematorium, mortuary, pontoon, RBGE Lecture theater, post depot, nursing home, harbour master, bus station, kiosk, Music Shop, social centre, health centre, scout hall, animal boarding, common, nursery, townhall +48.8108150 2.3016518, 48.8153367 2.2970255, 48.8812535 2.2714648, 48.8756694 2.2890915, 48.8719944 2.3006392, 48.8689763 2.3101131, 48.8664075 2.3221380, 48.8643585 2.3298436, 48.8623829 2.3361468, 48.8607697 2.3409358, 48.8587782 2.3474106, 48.8575436 2.3515947, 48.8552140 2.3606657, 48.8520122 2.3686542, 48.8457111 2.3727163, 48.8472696 2.3866995, 48.8475165 2.4063260, 48.8339081 2.2438908, 48.8487832 2.2988351, 48.8475338 2.3029524, 48.8504212 2.2936685, 48.7296445 2.3600059, 48.8242325 2.2730847, 48.8270162 2.2794048, 48.8326135 2.2884024, 48.8373212 2.2966299, 48.8919677 2.2377691, 48.8228800 2.3256282, 48.8280605 2.3269249, 48.8313954 2.3301258, 48.8340204 2.3325902, 48.8389018 2.3308032, 48.8330168 2.3366295, 48.8311288 2.3434842, 48.8297785 2.3504704, 48.8314217 2.3555589, 48.8331986 2.3628553, 48.8349549 2.3680817, 48.8370762 2.3729066, 48.8842870 2.3659442, 48.8480576 2.3960523, 48.8444696 2.4398829, 48.8454354 2.4293269, 48.8782117 2.3816608, 48.8808997 2.3738860, 48.8518166 2.4013757, 48.8463309 2.4190317, 48.8514736 2.3982446, 48.8664900 2.3833323, 48.8629761 2.3873271, 48.8582563 2.3901666, 48.8562640 2.3945621, 48.8720463 2.3769849, 48.8690586 2.3804560, 48.8774398 2.3708174, 48.8829026 2.3443344, 48.8823612 2.3373703, 48.8836162 2.3330841, 48.8835165 2.3274515, 48.8824462 2.3221220, 48.8812626 2.3155318, 48.8805420 2.3094230, 48.8737784 2.2950482, 48.8698038 2.2854485, 48.8714638 2.2768954, 48.8652545 2.4166605, 48.8645515 2.4088118, 48.8649326 2.3984802, 48.8643020 2.3794597, 48.8652193 2.3747542, 48.8666345 2.3614233, 48.8654878 2.3563464, 48.8663020 2.3524557, 48.8676419 2.3463248, 48.8686692 2.3412605, 48.8695654 2.3367072, 48.8707693 2.3322643, 48.8736019 2.3276269, 48.8754212 2.3255796, 48.8825292 2.3110507, 48.8839908 2.3042907, 48.8847948 2.2982623, 48.8856871 2.2926417, 48.8395785 2.3012923, 48.8415118 2.3080120, 48.8443954 2.3175634, 48.8468543 2.3166512, 48.8514000 2.3143901, 48.8568058 2.3151577, 48.8413343 2.4008998, 48.8905035 2.3598783, 48.9162246 2.2948689, 48.8707855 2.3611531, 48.8921077 2.2852229, 48.8579460 2.4357587, 48.8625988 2.4415690, 48.8971408 2.2803973, 48.8887892 2.2878755, 48.8526992 2.4061094, 48.8534759 2.4105242, 48.8558145 2.4237108, 48.8525808 2.3887914, 48.8547441 2.3853565, 48.8581580 2.3798044, 48.8610516 2.3747956, 48.8641314 2.3695694, 48.8694199 2.3544678, 48.8706004 2.3487793, 48.8715206 2.3432861, 48.8720176 2.3395091, 48.8730612 2.3333207, 48.8747030 2.3197963, 48.8464740 2.3659107, 48.8422880 2.3653598, 48.8460116 2.3549579, 48.8465082 2.3517283, 48.8499051 2.3487460, 48.8508926 2.3454617, 48.8521785 2.3394266, 48.8529427 2.3357457, 48.8363894 2.2784000, 48.8387450 2.2821427, 48.8410837 2.2879218, 48.8426906 2.2917758, 48.8389924 2.3896778, 48.8395253 2.3958919, 48.8401067 2.3799581, 48.8410654 2.3249923, 48.8429457 2.3126019, 48.8716770 2.2935098, 48.8669099 2.2902715, 48.8630266 2.2870524, 48.8573825 2.2859234, 48.8646725 2.2937783, 48.8640063 2.2780859, 48.8580816 2.2741958, 48.8555764 2.2702166, 48.8525598 2.2681802, 48.8480038 2.2641872, 48.8452505 2.2618802, 48.8430044 2.2600472, 48.8377707 2.2565741, 48.8649686 2.3006256, 48.8723362 2.3100827, 48.8736768 2.3145456, 48.8514587 2.3267159, 48.9038952 2.3053664, 48.8939640 2.3144204, 48.8905170 2.3201235, 48.8874127 2.3256961, 48.8470802 2.3076354, 48.8470463 2.2953101, 48.8606970 2.3210551, 48.8586775 2.3231168, 48.8481026 2.3277965, 48.8452766 2.3286613, 48.8656361 2.3227452, 48.8700644 2.3251637, 48.8446967 2.2937668, 48.8546428 2.3061015, 48.8575837 2.3102891, 48.8611770 2.3148333, 48.8633194 2.3666124, 48.8610965 2.3672267, 48.8575371 2.3679970, 48.8531361 2.3686313, 48.8511945 2.3759944, 48.8500259 2.3842705, 48.8444003 2.3899525, 48.8371074 2.4024837, 48.8266498 2.4057278, 48.8354584 2.4063451, 48.8450642 2.4010776, 48.8333461 2.3863163, 48.8269184 2.3662163, 48.8322556 2.3989811, 48.8656737 2.3344599, 48.8763705 2.3326310, 48.8760654 2.3385532, 48.8557241 2.3256659, 48.8784508 2.3374732, 48.8844760 2.3384377, 48.8898183 2.3386296, 48.8925606 2.3447103, 48.8977084 2.3592969, 48.8937935 2.3477372, 48.8873214 2.3497042, 48.8795577 2.3571375, 48.8762027 2.3579127, 48.8638408 2.3487041, 48.8723097 2.3558518, 48.8627762 2.3461709, 48.8551566 2.3471977, 48.8535657 2.3443622, 48.8536264 2.3333280, 48.8470711 2.3270822, 48.8421852 2.3289966, 48.8466102 2.2859257, 48.8461920 2.2786319, 48.8473202 2.2686743, 48.8477655 2.2583922, 48.8452670 2.2672606, 48.8470891 2.2728475, 48.8420002 2.2387333, 48.8406690 2.2287175, 48.8700162 2.3710617, 48.8612740 2.3535761, 48.8771276 2.4066804, 48.8754657 2.3990396, 48.8738469 2.3852526, 48.8750969 2.3893345, 48.8385876 2.3222085, 48.8317799 2.3140252, 48.8339551 2.3180764, 48.8225032 2.2984833, 48.8566177 2.3705298, 48.8602039 2.3721323, 48.8850187 2.3795672, 48.8869632 2.3867135, 48.8885434 2.3927045, 48.8911980 2.4025577, 48.8814188 2.3654808, 48.8772835 2.3492720, 48.8885069 2.3740693, 48.8908770 2.3772148, 48.8947998 2.3823744, 48.8974296 2.3854377, 48.8749537 2.3402103, 48.8759682 2.3441565, 48.8585901 2.3424101, 48.8512630 2.3622044, 48.8535245 2.3570872, 48.8429311 2.3521239, 48.8406731 2.3517801, 48.8356703 2.3525980, 48.8799166 2.3990372, 48.8819551 2.3933641, 48.8798096 2.4170873, 48.8715218 2.4043104, 48.8680997 2.4013152, 48.8382823 2.3608293, 48.8356584 2.3588519, 48.8927063 2.3274728, 48.8973715 2.3289008, 48.9061915 2.3320476, 48.8261434 2.3573719, 48.8225268 2.3585049, 48.8191302 2.3595477, 48.9231172 2.2862019, 48.9305465 2.2836436, 48.9142830 2.4036539, 48.9036536 2.3920966, 48.9207844 2.4106144, 48.8677590 2.3139517, 48.7963514 2.4492350, 48.7899066 2.4504803, 48.7797556 2.4594504, 48.8024711 2.4466949, 48.8090371 2.4347211, 48.8150770 2.4217740, 48.8214689 2.4136458, 48.9118944 2.3339725, 48.9196049 2.3429933, 48.8051317 2.3637903, 48.7869402 2.3673857, 48.7960877 2.3683672, 48.8103280 2.3622359, 48.8514725 2.3311829, 48.8439710 2.3243262, 48.8789208 2.3623079, 48.8844216 2.3602786, 48.8932382 2.4133209, 48.8795976 2.3270787, 48.9301278 2.3563841, 48.9368260 2.3590959, 48.9459311 2.3641518, 48.8538982 2.2893959, 48.8319438 2.2381100, 48.8296613 2.2308732, 48.8201086 2.3647992, 48.8216697 2.3693224, 48.8159011 2.3773455, 48.8109896 2.3839963, 48.8491398 2.3218984, 48.8756733 2.3273522, 48.8755336 2.3242020, 48.8780508 2.2982339, 48.7687211 2.4643844, 48.8837592 2.3495338, 48.8915769 2.3496679, 48.8663302 2.3215942, 48.8603937 2.3146892, 48.8537409 2.3693210, 48.8433310 2.3737787, 48.8456163 2.3095848, 48.9064052 2.4491919, 48.8975167 2.3446663, 48.8419339 2.3211592, 48.7290137 2.3699140, 48.8787548 2.3223081, 48.8767276 2.4064297, 48.8795817 2.3886032, 48.8825949 2.3703263, 48.8295791 2.3768615, 48.8767737 2.3935636, 48.8792625 2.3035538, 48.9068701 2.3657737, 48.8183938 2.3193550, 48.8956037 2.4251032, 48.8779888 2.2817745, 48.8582563 2.3901666, 48.8882249 2.2495172, 48.8849431 2.2599157, 48.8571078 2.3473222, 48.8596411 2.3468404, 48.8576652 2.3478702, 48.8589166 2.3467871, 48.8673076 2.3641562 +Heidenloch, Römischer Tempel, Lochheim, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall +415 +55.9512080 -3.2029850 +6 +24 +0 +83 +white +46 +3 +55.9479019 -3.1690156, 55.9439751 -3.1694877, 55.8964656 -3.2760789, 55.9197838 -3.1875367, 55.9305416 -3.3959991, 55.9343148 -3.2480921, 55.8886365 -3.3754440, 55.9176560 -3.3976191, 55.9559553 -3.2763209, 55.9607882 -3.2792058, 55.9346329 -3.2488234, 55.8858183 -3.3554460, 55.9709722 -3.3555690, 55.8954027 -3.2783381 +2 +49.4296874 8.6826637, 49.4279757 8.6835849, 49.4147764 8.6710359, 49.4278053 8.7495282, 49.3974030 8.6486853, 49.3977437 8.6485764, 49.4084243 8.6937725, 49.4072954 8.6910173, 49.4082595 8.6914326, 49.3746833 8.6826514, 49.3741444 8.7033717, 49.3742583 8.7034051, 49.4103158 8.6974936, 49.4165191 8.6921856, 49.4048779 8.6827341, 49.4071068 8.6898761, 49.4108200 8.6918918, 49.4227158 8.6483350, 49.3809325 8.6701888, 49.3795766 8.6901652, 49.4101101 8.6935285, 49.3992315 8.6710140, 49.4228152 8.6504004 +55.9742289 -3.2023602 +8 +29 +0 +51.4399233 7.3193298 ++33-1-40269017 +355 and 55.9253583 -3.4147034, 55.9245412 -3.3113504, 55.9838701 -3.4034761, 55.9996939 -3.3883352, 55.9794131 -3.3762107, 55.9879261 -3.3873321, 55.9812940 -3.3771341, 55.9215875 -3.3071576, 55.9169023 -3.2880468, 55.9172106 -3.2788656, 55.8940463 -3.3482149, 55.9203287 -3.4338967, 55.9067356 -3.2765428, 55.9112129 -3.2971404, 55.9136481 -3.2924112, 55.9222765 -3.3173383, 55.9245302 -3.4143898, 55.8921896 -3.3904545, 55.8928744 -3.3831777, 55.9342483 -3.2886138, 55.9185125 -3.2718794, 56.0005355 -3.4042125, 56.0005266 -3.4040011, 55.9115356 -3.3190780, 55.9119727 -3.3136012, 55.9169161 -3.2879655, 55.9216210 -3.3072178, 55.9187028 -3.3241409, 55.9194331 -3.3250368, 55.9012534 -3.3172353, 55.9260327 -3.3234503, 55.9201440 -3.3153742, 55.9172846 -3.2758018, 55.9052885 -3.3120708, 55.9127039 -3.3185766, 55.8956436 -3.3085216, 55.9178228 -3.2883067, 55.9177320 -3.2883616, 55.9177084 -3.2885519, 55.9168914 -3.2881838, 55.9208989 -3.3111331, 55.9234261 -3.3789665, 55.9284947 -3.3843026, 55.9347497 -3.3921486, 55.9399416 -3.4022022, 55.9424898 -3.4014836, 55.9173668 -3.2846812, 55.8966106 -3.3015427, 55.9191012 -3.2651146, 55.9659134 -3.2652795, 56.0005670 -3.4038864, 56.0005711 -3.4043334, 55.9386987 -3.3913489, 55.9264863 -3.4288285, 55.9363357 -3.2986518, 55.9277719 -3.3059687, 55.9162943 -3.2965876, 55.9198806 -3.3512702, 55.9064620 -3.2745346, 55.8990943 -3.2945157, 55.9030149 -3.2833882, 55.8958844 -3.3085762, 55.9514109 -3.3422820, 55.9666580 -3.2682414, 55.9203523 -3.3017825, 55.9245917 -3.4143875, 55.9202953 -3.4338960, 55.8889910 -3.2764883, 55.8905325 -3.2746290, 55.9338645 -3.2867061, 55.9303574 -3.2858444, 55.9325097 -3.2743332, 55.9156308 -3.2780598, 55.9403100 -3.3172931, 55.9402068 -3.3174470, 55.9130257 -3.2893735, 55.9119796 -3.2938532, 55.9100179 -3.2804925, 55.9101035 -3.2803751, 55.9057184 -3.2756582, 55.9057613 -3.2755133, 55.9137657 -3.2863134, 55.9062552 -3.2686221, 55.9060912 -3.2635206, 55.9033690 -3.2736040, 55.9034122 -3.2734109, 55.9003911 -3.2685569, 55.9890944 -3.3836060, 55.9892088 -3.3844692, 55.9889521 -3.3925230, 55.9347488 -3.3917488, 55.9551419 -3.4188844, 55.9303919 -3.3643927, 55.9374488 -3.3332089, 55.9792112 -3.3468255, 55.9261171 -3.4015537, 55.9260108 -3.4015503, 55.9287081 -3.4030907, 55.9574350 -3.4170582, 55.9574829 -3.4172555, 55.9643486 -3.4027677, 55.9644590 -3.4027248, 55.9275914 -3.3074492, 55.9188285 -3.2753539, 55.9124646 -3.2769931, 55.9178158 -3.2736164, 55.9003110 -3.2920130, 55.9172446 -3.2773680, 55.9344797 -3.2675638, 55.9293469 -3.2915960, 55.9287029 -3.3161849, 55.9408387 -3.4098588, 55.9275707 -3.3441434, 55.8916943 -3.3211093, 55.9600201 -3.3539411, 55.9641042 -3.3163667, 55.9129956 -3.2891261, 55.9396630 -3.3213183, 55.9168698 -3.2882590, 55.8860732 -3.3399261, 55.9439226 -3.3293194, 55.8927797 -3.2635293, 55.8657294 -3.3178967, 55.8561715 -3.3367531, 55.9251316 -3.4146061, 55.9254779 -3.4147399, 55.9004339 -3.3188436, 55.9329461 -3.2747956, 55.9244601 -3.3114765, 55.9252699 -3.3105658, 55.9396441 -3.3214611, 55.9241965 -3.3130785, 55.9192182 -3.3037407, 55.9198673 -3.3046957, 55.9673916 -3.4106960, 55.9334961 -3.4103614, 55.9398933 -3.4112294, 55.9659972 -3.3621260, 55.9346898 -3.4222766, 55.9225607 -3.4008937, 55.8771374 -3.3287515, 55.8866544 -3.3374530, 55.8858646 -3.3375740, 55.9212101 -3.3414649, 55.9091868 -3.3220855, 55.9396282 -3.4022402, 55.9387262 -3.4018519, 55.9793103 -3.3761870, 55.9617180 -3.4132830, 55.9617222 -3.4130523, 55.9374211 -3.3332788, 55.9867062 -3.3795502, 55.9614118 -3.4422153, 55.9472029 -3.4080139, 55.9470811 -3.4083701, 55.9471370 -3.4081966, 55.9219763 -3.4203941, 55.9201516 -3.3152932, 55.9222998 -3.3172749, 55.9265981 -3.3165664, 55.9212342 -3.3024056, 55.9203734 -3.3017859, 55.9204463 -3.3018734, 55.9627829 -3.3296636, 55.9261709 -3.2650765, 55.9147477 -3.3175730, 55.9390304 -3.3915516, 55.9388624 -3.3914362, 55.9475607 -3.2661403, 55.9309334 -3.3150690, 55.9331552 -3.3165436, 55.9337041 -3.3712199, 55.9347207 -3.2664128, 55.9301069 -3.2856870, 55.9277603 -3.3107484, 55.9277821 -3.3107229, 55.9287128 -3.3160778, 55.8918723 -3.2994420, 55.9441698 -3.2693328, 55.9465305 -3.2693949, 55.9453130 -3.2700572, 55.9441175 -3.2720063, 55.9374126 -3.4329432, 55.9426504 -3.4419958, 55.9150903 -3.3211208, 55.9147213 -3.3164547, 55.9843921 -3.4038630, 55.9733736 -3.3721666, 55.9615149 -3.4204840, 55.9566510 -3.4260417, 55.9565322 -3.4260555, 55.8948439 -3.2697613, 55.9038948 -3.2819499, 55.9114742 -3.3289109, 55.9003484 -3.3188428, 55.9004475 -3.3189882, 55.9303232 -3.2858247, 55.9277363 -3.3059625, 55.9293125 -3.2915775, 55.9343717 -3.3380326, 55.9336909 -3.3354767, 55.9524698 -3.3734976, 55.9651737 -3.3161001, 55.9474170 -3.4010655, 55.9531953 -3.4004826, 55.8964053 -3.3181888, 55.9869438 -3.3819439, 55.8996433 -3.2948470, 55.8986117 -3.2963244, 55.9499764 -3.4058056, 55.9495739 -3.4048963, 55.9439064 -3.4138957, 55.9254219 -3.4280602, 55.9255253 -3.4280577, 55.9010141 -3.3189125, 55.9196416 -3.2758298, 55.9175481 -3.2816550, 55.9211105 -3.4253433, 55.9206868 -3.4296551, 55.9214106 -3.3084104, 55.9185066 -3.2720477, 55.8986285 -3.2991643, 55.9171117 -3.3421022, 55.8584472 -3.4177884, 55.9715066 -3.2804764, 55.9714808 -3.2806451, 55.9712166 -3.2803296, 55.9888951 -3.3973524, 55.9795806 -3.3964157, 55.8702054 -3.3876295, 55.9340984 -3.4004483, 55.9339794 -3.4004240, 55.8969285 -3.3180149, 55.9629385 -3.4032441, 55.9623104 -3.4309700, 55.9328281 -3.2746596, 55.9328551 -3.2746954, 55.9329730 -3.2748287, 55.9323864 -3.2871966, 55.9427303 -3.4223013, 55.8832955 -3.3373489, 55.8818349 -3.3087404, 55.8896276 -3.3196792, 55.8919785 -3.3134755, 55.8968552 -3.3020135, 55.8927414 -3.3143917, 55.8947508 -3.3012201, 55.8841696 -3.3364601, 55.8807381 -3.3368118, 55.8774138 -3.3755830, 55.9054895 -3.3795410, 55.9018295 -3.3897743, 55.9387086 -3.4018441, 55.9347390 -3.4004629, 55.9347350 -3.4006735, 55.9408977 -3.3783402, 55.9418945 -3.3744896, 55.9370550 -3.3589671, 55.9369534 -3.3590018, 55.9254934 -3.4147419, 55.9713657 -3.3285830, 55.9139843 -3.3266712, 55.9138724 -3.3283900, 55.9138281 -3.3289507, 55.8840219 -3.3327174, 55.8909456 -3.2977491, 55.9563336 -3.3977999, 55.9702651 -3.3747743, 55.9793990 -3.3747495, 55.9795032 -3.3747767, 55.9402898 -3.3231801, 55.9404637 -3.3353169, 56.0028482 -3.4137500, 56.0027732 -3.4134188, 55.9575192 -3.4174461, 55.9551170 -3.4187252, 55.9415382 -3.3356085, 55.9761578 -3.3786363, 55.9409548 -3.4098374, 55.9206332 -3.3019882, 55.9867511 -3.3817443, 55.9867527 -3.3819155, 55.9865602 -3.3817051, 55.9300778 -3.2856656, 55.9291865 -3.2914547, 55.9324790 -3.2743161, 55.9291523 -3.2914405, 55.9404906 -3.3353136, 55.9347120 -3.2664838, 55.9117266 -3.2935809, 55.9173632 -3.2824005, 55.9156210 -3.2832169, 55.8722326 -3.3121904, 55.9565035 -3.4260650, 55.9566866 -3.4260323, 55.8975112 -3.2712979, 55.8974642 -3.2720985, 55.9509169 -3.4494853, 55.9594452 -3.3187542, 55.9389730 -3.2630427, 55.9380195 -3.2629562, 55.9386264 -3.2629284, 55.9388165 -3.2630172, 55.9128992 -3.3173628, 55.9142511 -3.3254009, 55.9710708 -3.3853507, 55.9712667 -3.3862514, 55.9347006 -3.2665504, 55.9193447 -3.3215440, 55.9144679 -3.3441278, 55.9199272 -3.3046850, 55.9212859 -3.3299990, 55.9587192 -3.3919290, 55.9294189 -3.4153351, 55.9279524 -3.4223584, 55.8895017 -3.2960696, 55.9881960 -3.3897624, 55.9392951 -3.3235462, 55.9392655 -3.3236898, 55.9103957 -3.3006028, 55.8939577 -3.3715831, 55.8976952 -3.3414516, 55.9008399 -3.3235718, 55.9239852 -3.3778710, 55.8923325 -3.3903179, 55.8924135 -3.3902631, 55.9148989 -3.2814860, 55.9661699 -3.3763106, 55.9600478 -3.3539062, 55.9660032 -3.3620577, 55.9334622 -3.4103647, 55.9340641 -3.4004428, 55.8923592 -3.3903273, 55.9120032 -3.2938699, 55.9137971 -3.2863402, 55.9104224 -3.3006131, 55.9130615 -3.2893982, 55.9112386 -3.2971527, 55.9149233 -3.2814984, 55.9643068 -3.3786468, 55.9293834 -3.4153028, 55.9264502 -3.4287984, 55.9279123 -3.4223325, 55.9339469 -3.4004134, 55.8677512 -3.3773434, 55.9932311 -3.4213582, 55.9851500 -3.4224768, 55.9845616 -3.4222185, 55.9794973 -3.3962181, 55.9147359 -3.2813285, 55.9902549 -3.4029695, 55.9996839 -3.3884053, 55.9869295 -3.3820116, 55.9346516 -3.4223004, 55.9522338 -3.4284125 +yes +49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.4157261 8.7004521, 49.4532301 8.7620686, 49.4129054 8.7286879, 49.4209333 8.7223854, 49.4221949 8.7060036, 49.4291183 8.7154588, 49.4157681 8.7006398, 49.4088360 8.7691224, 49.4390162 8.7105044, 49.4305905 8.7775493, 49.4272716 8.7035465, 49.4393938 8.7104846, 49.4497204 8.7157564, 49.4428768 8.7011414, 49.4395208 8.7105611, 49.4326079 8.7091648, 49.4328392 8.7092032, 49.4342309 8.7101843, 49.4342740 8.7112555, 49.4442518 8.7151750, 49.4447625 8.7168293, 49.4468314 8.7142297, 49.4308426 8.7277671, 49.4311330 8.7033214, 49.4278439 8.6859389, 49.4082372 8.7465476, 49.4136970 8.7613615, 49.4238953 8.7651482 +48.8560795 2.3115715, 48.8507240 2.3518758, 48.8403827 2.3113658, 48.8547934 2.3662431, 48.8551205 2.3589562, 48.8339752 2.3324559, 48.8559492 2.3460263, 48.8575222 2.2845690, 48.8414574 2.3172246, 48.8403652 2.3414281, 48.8411575 2.3473052, 48.8565109 2.3263842, 48.8519070 2.2652250, 48.8327663 2.3893382, 48.8302877 2.3141843, 48.8557584 2.3320096, 48.8513494 2.3555880, 48.8483211 2.3294718, 48.8522269 2.3350050, 48.8506815 2.3410772, 48.8476741 2.3140391, 48.8513629 2.3410046, 48.8547304 2.3248616, 48.8554427 2.3276941, 48.8434645 2.3207843, 48.8456499 2.3395974, 48.8434624 2.3362665, 48.8536113 2.3476422, 48.8495079 2.3483856, 48.8585526 2.3597161, 48.8533658 2.3493036, 48.8526313 2.3500601, 48.8404563 2.3198526, 48.8405179 2.3703276, 48.8465117 2.3551571, 48.8367685 2.3218491, 48.8530966 2.3611794, 48.8435231 2.3731854, 48.8340000 2.3323000, 48.8573239 2.3286291, 48.8418109 2.3577568, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8474726 2.3606473, 48.8546351 2.3638127, 48.8442282 2.3447813, 48.8505164 2.3621847, 48.8506605 2.3437398, 48.8581216 2.3616628, 48.8545855 2.3356172, 48.8352761 2.4093810, 48.8483248 2.3344265, 48.8586563 2.3821295, 48.8473326 2.3227159, 48.8433913 2.2512835, 48.8553042 2.3158566, 48.8370020 2.3826461, 48.8373190 2.3319319, 48.8260871 2.3327019, 48.8432079 2.3186583, 48.8421181 2.3562419, 48.8551953 2.2808684, 48.8463579 2.2732198, 48.8548859 2.3560679, 48.8547299 2.2897642, 48.8428133 2.3337722, 48.8344502 2.3520875, 48.8485953 2.3340184, 48.8582260 2.3619639, 48.8530932 2.3611938, 48.8563449 2.3387717, 48.8576820 2.3627148, 48.8553966 2.3450136 +yes diff --git a/smtsemparsecpp/data/nlmaps.train.gold_jan16 b/smtsemparsecpp/data/nlmaps.train.gold_jan16 new file mode 100644 index 000000000..cfcd90240 --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.train.gold_jan16 @@ -0,0 +1,1500 @@ +306 +Hope Cottage Nursery School, Little City Nursery, City Nursery, Little Monkeys Nursery, Colinton Private Nursery, Rainbow Kindergarten, Molly's Nursery, Heriot Hill Nursery, Strawberry Hill Nursery, Bruntsfield Nursery, Busy Bees Nursery, Childcair @ Quartermile, The Edinburgh Nursery, Annandale Nursery, The Edinburgh Nursery, High School Yards Nursery, Melville Street Nursery, Jigsaw Childcare, The Orchard Nursery, Grange Loan Nursery, Suffolk House Nursery, Mr. Squirrel's Nursery, Little Monkeys, Pinocchio's, Cherrytrees Children's Nursrey, Busy Bees Day Nursery, St Leonard's Nursery School, Queensferry Early Years Centre, Little Voices Nursery, Carrick Knowe Primary, Forbes Childrens Nursery, Baby Rainbow, Childsplay, Playdays, Chapter One Childcare, Forbes Childrens Nursery, Greenhill Montessori Nursery, Grassmarket Nursery, Kidzcare, Cameron House Nursery School, Priestfield House Nursery, Kirkliston Nursery, Start Bright Nursery, Mother Goose Nursery, Arcadia, Cherrytrees Children's Nursrey, Elsie Inglis Nursery and Preschool, Tower House Nursery, Headstart Nursery, Nippers Nursery, Granton Early Years Centre, Stanwell Nursery, Crewe Road Nursery +35 +834 and 243 +0 +49.4176655 8.6680194, 49.4119860 8.6544036, 49.4105445 8.7052085, 49.4184811 8.6699057, 49.4176113 8.6683395, 49.4067223 8.6865145, 49.4198183 8.6845408, 49.4099343 8.7058477 +Heidenloch, Römischer Tempel, Freischaren-Schanze, Freischaren-Schanze, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall +yes +49.3826654 8.6703241, 49.4005745 8.6876324, 49.4013101 8.6912413, 49.4018281 8.6889374, 49.4018800 8.6877769, 49.4018302 8.6889341, 49.4013102 8.6912409, 49.4013098 8.6912411, 49.4005742 8.6876324, 49.4005743 8.6876329, 49.4013099 8.6912408, 49.4018301 8.6889373, 49.4005745 8.6876329, 49.4018280 8.6889343, 49.4034414 8.6858831, 49.4033425 8.6920344, 49.4034077 8.6864942, 49.4053236 8.6938605, 49.4033423 8.6920342, 49.4034078 8.6864940, 49.4034077 8.6864940, 49.4034078 8.6864942, 49.4033423 8.6920344, 49.3795039 8.6788777, 49.3994731 8.6498961, 49.3832632 8.6902896, 49.3795039 8.6788791, 49.3795039 8.6788799, 49.3832635 8.6902896, 49.3795039 8.6788784, 49.3795039 8.6788807 +indian, italian, international, regional, greek, chinese, thai, german, french, vegetarian, spanish, mediterranean, malaysian, eritrean, japanese, persian, asian, moroccan, burger, vietnamese, turkish, african, cuban, korean, vegan, Flammkuchen, salat, pizza, ice cream, mexican +55.9398840 -3.2212051, 55.9563398 -3.1384528, 55.9583672 -3.1380034, 55.9586133 -3.1379125, 55.9333191 -3.2042555, 55.9401171 -3.2189968, 55.9309707 -3.1902664, 55.9470382 -3.2136679, 55.9047280 -3.2373593, 55.9040043 -3.2313244, 55.9040174 -3.2248441, 55.9044388 -3.2231298, 55.9055392 -3.2245241, 55.9070009 -3.2266338, 55.9085623 -3.2295466, 55.9095589 -3.2332257, 55.9102457 -3.2355353, 55.9310002 -3.2195807, 55.9314292 -3.2179935, 55.9336880 -3.2115060, 55.9397575 -3.2256219, 55.9414410 -3.2232711, 55.9435047 -3.2198589, 55.9455354 -3.2173298, 55.9457865 -3.2288408, 55.9460094 -3.2229027, 55.9459252 -3.2182400, 55.9467297 -3.2160853, 55.9468911 -3.2157329, 55.9495730 -3.2096804, 55.9498456 -3.2090591, 55.9470251 -3.2128783, 55.9466831 -3.2111062, 55.9457403 -3.2083802, 55.9407845 -3.2171608, 55.9415100 -3.2189378, 55.9420067 -3.2142265, 55.9429862 -3.2105745, 55.9435721 -3.2079032, 55.9452599 -3.2068906, 55.9458494 -3.2043614, 55.9463971 -3.2001543, 55.9473655 -3.1962398, 55.9476701 -3.1928242, 55.9476734 -3.2034572, 55.9475478 -3.2016708, 55.9486521 -3.1951042, 55.9486914 -3.1982744, 55.9493803 -3.1935304, 55.9819242 -3.3908551, 55.9825780 -3.3942285, 55.9895768 -3.4098735, 55.9899607 -3.4056361, 55.9846372 -3.3964826, 55.9867620 -3.3969118, 55.9890911 -3.3975569, 55.9909234 -3.3992102, 55.9871450 -3.3956272, 55.9875380 -3.3902711, 55.9873152 -3.3869128, 55.9868637 -3.3823120, 55.9903465 -3.3854493, 55.9905394 -3.3854731, 55.9876179 -3.4043614, 55.9675855 -3.2487696, 55.9524970 -3.2266180, 55.9522993 -3.2247346, 55.9517872 -3.2257263, 55.9509026 -3.2222768, 55.9500692 -3.2194594, 55.9500952 -3.2159210, 55.9514349 -3.2130963, 55.9549100 -3.2260503, 55.9581693 -3.2284212, 55.9622742 -3.2408290, 55.9639764 -3.2386566, 55.9668601 -3.2378355, 55.9674008 -3.2472135, 55.9678600 -3.2429464, 55.9684348 -3.2376134, 55.9766372 -3.2391238, 55.9746085 -3.2384675, 55.9728249 -3.2380100, 55.9698270 -3.2367766, 55.9676125 -3.2353921, 55.9654876 -3.2338032, 55.9639658 -3.2328402, 55.9630665 -3.2338676, 55.9615120 -3.2301834, 55.9601435 -3.2283783, 55.9580206 -3.2254421, 55.9563691 -3.2233567, 55.9552380 -3.2192535, 55.9577146 -3.2175590, 55.9544860 -3.2153379, 55.9558088 -3.2163084, 55.9574409 -3.2136525, 55.9577176 -3.2110983, 55.9587670 -3.2249388, 55.9592419 -3.2214458, 55.9594385 -3.2162145, 55.9591627 -3.2129430, 55.9587082 -3.2097806, 55.9582498 -3.2083579, 55.9601149 -3.2048779, 55.9605028 -3.2019585, 55.9750509 -3.2382573, 55.9753610 -3.2351103, 55.9756199 -3.2316891, 55.9766181 -3.2307113, 55.9757587 -3.2269365, 55.9686890 -3.2346734, 55.9691570 -3.2301059, 55.9698341 -3.2234619, 55.9702408 -3.2195972, 55.9661868 -3.2040897, 55.9648275 -3.2026212, 55.9625463 -3.1985152, 55.9623519 -3.1999659, 55.9612708 -3.1979256, 55.9590746 -3.2001052, 55.9574525 -3.1992269, 55.9576308 -3.2078827, 55.9571589 -3.2057631, 55.9570635 -3.2040021, 55.9579700 -3.1990768, 55.9589149 -3.1952296, 55.9516446 -3.2116255, 55.9505151 -3.2088197, 55.9516840 -3.2088535, 55.9565296 -3.2022609, 55.9551067 -3.2015189, 55.9026109 -3.2208010, 55.9022133 -3.2164859, 55.9021871 -3.2127583, 55.9021851 -3.2083916, 55.9067134 -3.2084524, 55.9090267 -3.2098842, 55.9104665 -3.2114969, 55.9128718 -3.2136198, 55.9079326 -3.2251115, 55.9091271 -3.2224615, 55.9102950 -3.2206745, 55.9115037 -3.2193046, 55.9137133 -3.2175820, 55.9332773 -3.1804495, 55.9314357 -3.1866732, 55.9315424 -3.1867143, 55.9327292 -3.1841946, 55.9335945 -3.1857897, 55.9298810 -3.1906863, 55.9322050 -3.1928865, 55.9304941 -3.1923377, 55.9281335 -3.2095336, 55.9303270 -3.2098768, 55.9325314 -3.2101262, 55.9312356 -3.1881622, 55.9321908 -3.2093061, 55.9333100 -3.2046099, 55.9337875 -3.2001867, 55.9342178 -3.1974967, 55.9309516 -3.2025800, 55.9352614 -3.1942899, 55.9360447 -3.1944235, 55.9385819 -3.1950517, 55.9398783 -3.1952903, 55.9366483 -3.1940225, 55.9381768 -3.1922983, 55.9397207 -3.1863782, 55.9396831 -3.1901910, 55.9415028 -3.1999255, 55.9432237 -3.2023940, 55.9346560 -3.2102493, 55.9360555 -3.2094469, 55.9370851 -3.2071954, 55.9398620 -3.2044719, 55.9413443 -3.2035998, 55.9428297 -3.2037418, 55.9340899 -3.2232358, 55.9363884 -3.2200155, 55.9372401 -3.2173968, 55.9385407 -3.2146679, 55.9399009 -3.2118071, 55.9409026 -3.2095928, 55.9418569 -3.2046167, 55.9451034 -3.2054205, 55.9464821 -3.2059437, 55.9479806 -3.2093194, 55.9480111 -3.2070831, 55.9492390 -3.2069040, 55.9415413 -3.1997466, 55.9397680 -3.1895210, 55.9398950 -3.1857881, 55.9443353 -3.2022970, 55.9449518 -3.1965229, 55.9506888 -3.2047906, 55.9508146 -3.2040851, 55.9509521 -3.2032596, 55.9512459 -3.2015502, 55.9513546 -3.2008993, 55.9534000 -3.1985886, 55.9545267 -3.1976404, 55.9530395 -3.1968514, 55.9525421 -3.1965899, 55.9514272 -3.1964815, 55.9502471 -3.1953894, 55.9514017 -3.1916501, 55.9523041 -3.1921025, 55.9487161 -3.1921254, 55.9473980 -3.1913002, 55.9475336 -3.1896852, 55.9461587 -3.1899395, 55.9461484 -3.1857678, 55.9446725 -3.1868648, 55.9426946 -3.1843831, 55.9410872 -3.1828376, 55.9523441 -3.1952612, 55.9524248 -3.1947854, 55.9530238 -3.1937098, 55.9548982 -3.1930798, 55.9531749 -3.1905850, 55.9532540 -3.1901090, 55.9561036 -3.1918150, 55.9566140 -3.1887839, 55.9733278 -3.1933986, 55.9776734 -3.1928273, 55.9755858 -3.1909264, 55.9619137 -3.1953922, 55.9597614 -3.1911416, 55.9587469 -3.1900917, 55.9574145 -3.1883681, 55.9540301 -3.1883045, 55.9542782 -3.1877994, 55.9553364 -3.1870704, 55.9555412 -3.1881647, 55.9588451 -3.1841152, 55.9619623 -3.1801852, 55.9633092 -3.1784891, 55.9631120 -3.1956917, 55.9640881 -3.1935142, 55.9659262 -3.1894058, 55.9647774 -3.1864708, 55.9623490 -3.1824104, 55.9676984 -3.1873293, 55.9736734 -3.1887369, 55.9727435 -3.1878363, 55.9700896 -3.1863276, 55.9686723 -3.1841379, 55.9672532 -3.1822368, 55.9655560 -3.1802465, 55.9808464 -3.1941907, 55.9803117 -3.1904556, 55.9799327 -3.1889762, 55.9791442 -3.1838015, 55.9773720 -3.1797945, 55.9740475 -3.1882178, 55.9745333 -3.1848625, 55.9749268 -3.1821540, 55.9692089 -3.1840105, 55.9706590 -3.1803378, 55.9722461 -3.1760338, 55.9719668 -3.1730260, 55.9760045 -3.1700682, 55.9801664 -3.1773603, 55.9800397 -3.1776022, 55.9799062 -3.1778409, 55.9788191 -3.1802177, 55.9780795 -3.1794306, 55.9771980 -3.1743400, 55.9769992 -3.1732606, 55.9765285 -3.1705860, 55.9759268 -3.1678383, 55.9755202 -3.1648177, 55.9721151 -3.1537189, 55.9641711 -3.1775450, 55.9664640 -3.1754998, 55.9681128 -3.1740918, 55.9696112 -3.1727684, 55.9711134 -3.1726962, 55.9713906 -3.1702867, 55.9729980 -3.1685221, 55.9504910 -3.1854886, 55.9510338 -3.1816628, 55.9515984 -3.1790606, 55.9524685 -3.1756629, 55.9501355 -3.1837930, 55.9500542 -3.1787108, 55.9507088 -3.1770555, 55.9508263 -3.1747317, 55.9539076 -3.1739661, 55.9537308 -3.1871585, 55.9538854 -3.1830563, 55.9534691 -3.1798335, 55.9559116 -3.1730017, 55.9561660 -3.1727051, 55.9568104 -3.1728667, 55.9579461 -3.1831271, 55.9579339 -3.1826673, 55.9578767 -3.1789396, 55.9577900 -3.1765309, 55.9577142 -3.1730479, 55.9581423 -3.1720186, 55.9605915 -3.1714661, 55.9629055 -3.1709645, 55.9641540 -3.1706475, 55.9660952 -3.1701319, 55.9680651 -3.1686162, 55.9696734 -3.1682011, 55.9733850 -3.1663395, 55.9649390 -3.1745777, 55.9645748 -3.1721004, 55.9644946 -3.1699298, 55.9682171 -3.1659398, 55.9660539 -3.1637920, 55.9617629 -3.1585851, 55.9597776 -3.1556585, 55.9613297 -3.1539907, 55.9691573 -3.1661209, 55.9694518 -3.1635218, 55.9630204 -3.1573809, 55.9695384 -3.1596673, 55.9634291 -3.1466359, 55.9635777 -3.1540354, 55.9622804 -3.1561015, 55.9574085 -3.1686582, 55.9573734 -3.1680155, 55.9570980 -3.1653973, 55.9573086 -3.1630811, 55.9587596 -3.1568936, 55.9592305 -3.1555460, 55.9594930 -3.1515012, 55.9699420 -3.1593102, 55.9700232 -3.1573578, 55.9617219 -3.1524164, 55.9606175 -3.1513584, 55.9573263 -3.1468079, 55.9571410 -3.1435348, 55.9566243 -3.1391790, 55.9737969 -3.1583519, 55.9622638 -3.1521121, 55.9624755 -3.1486902, 55.9626125 -3.1455545, 55.9612620 -3.1429355, 55.9600832 -3.1420268, 55.9588210 -3.1435684, 55.9572363 -3.1406150, 55.9591989 -3.1435154, 55.9601857 -3.1399160, 55.9602178 -3.1373142, 55.9582972 -3.1380268, 55.9568904 -3.1638169, 55.9561712 -3.1598115, 55.9557947 -3.1568532, 55.9551375 -3.1512278, 55.9551965 -3.1477860, 55.9552066 -3.1457361, 55.9554578 -3.1419156, 55.9558481 -3.1395406, 55.9561717 -3.1373407, 55.9545671 -3.1400955, 55.9531024 -3.1382365, 55.9541352 -3.1478987, 55.9518317 -3.1434104, 55.9501708 -3.1403347, 55.9492291 -3.1391700, 55.9524812 -3.1884943, 55.9517665 -3.1881346, 55.9512769 -3.1878726, 55.9489276 -3.1868532, 55.9484886 -3.1866438, 55.9457222 -3.1847309, 55.9454420 -3.1844541, 55.9459249 -3.1824225, 55.9471357 -3.1820879, 55.9432112 -3.1796016, 55.9415447 -3.1780319, 55.9406915 -3.1765923, 55.9430769 -3.1830456, 55.9428271 -3.1828112, 55.9413427 -3.1812830, 55.9399611 -3.1824940, 55.9375547 -3.1807928, 55.9405823 -3.1806167, 55.9393125 -3.1783897, 55.9349560 -3.1933400, 55.9364318 -3.1841475, 55.9355201 -3.1900188, 55.9359617 -3.1872388, 55.9362963 -3.1842234, 55.9369103 -3.1811043, 55.9369174 -3.1773439, 55.9348524 -3.1752430, 55.9326016 -3.1729391, 55.9307156 -3.1710012, 55.9346850 -3.1788915, 55.9328299 -3.1774425, 55.9403097 -3.1729174, 55.9383759 -3.1729846, 55.9368395 -3.1706322, 55.9341108 -3.1674764, 55.9325696 -3.1651250, 55.9335259 -3.1647215, 55.9336500 -3.1610915, 55.9814659 -3.1909085, 55.9322570 -3.1612284, 55.9322142 -3.1627933, 55.9333600 -3.1647608, 55.9334320 -3.1603807, 55.9335825 -3.1625302, 55.9335171 -3.1665942, 55.9352278 -3.1690789, 55.9362943 -3.1703276, 55.9380056 -3.1727326, 55.9324076 -3.1774297, 55.9349862 -3.1793489, 55.9365575 -3.1804052, 55.9308016 -3.1713795, 55.9333514 -3.1739921, 55.9345432 -3.1752055, 55.9359412 -3.1766219, 55.9378596 -3.1785699, 55.9371680 -3.1785827, 55.9364376 -3.1835393, 55.9361605 -3.1852598, 55.9350575 -3.1868910, 55.9334041 -3.1850316, 55.9327512 -3.1837791, 55.9316287 -3.1856495, 55.9357290 -3.1880801, 55.9352794 -3.1908999, 55.9347514 -3.1934610, 55.9392124 -3.1781004, 55.9403904 -3.1806688, 55.9380758 -3.1813799, 55.9417310 -3.1818531, 55.9432691 -3.1832993, 55.9401121 -3.1759873, 55.9416919 -3.1785475, 55.9431175 -3.1797033, 55.9442893 -3.1810875, 55.9456619 -3.1831172, 55.9469839 -3.1818513, 55.9457698 -3.1849764, 55.9488929 -3.1870504, 55.9492763 -3.1872419, 55.9513723 -3.1882358, 55.9521151 -3.1886009, 55.9495818 -3.1399010, 55.9506764 -3.1410542, 55.9529056 -3.1458123, 55.9536640 -3.1473562, 55.9507527 -3.1366844, 55.9527612 -3.1381206, 55.9550194 -3.1407335, 55.9562689 -3.1348439, 55.9566744 -3.1386198, 55.9585592 -3.1378743, 55.9601011 -3.1372948, 55.9600487 -3.1400484, 55.9564001 -3.1391243, 55.9574312 -3.1411783, 55.9587207 -3.1437256, 55.9586697 -3.1434197, 55.9592475 -3.1440935, 55.9606921 -3.1423741, 55.9622214 -3.1450944, 55.9623357 -3.1492308, 55.9611520 -3.1537771, 55.9617355 -3.1586323, 55.9598518 -3.1573266, 55.9616167 -3.1588370, 55.9700124 -3.1556431, 55.9558380 -3.1386914, 55.9550460 -3.1447760, 55.9550213 -3.1476460, 55.9550728 -3.1523790, 55.9548118 -3.1629421, 55.9555903 -3.1566068, 55.9563198 -3.1613807, 55.9566895 -3.1639274, 55.9611674 -3.1521276, 55.9593525 -3.1509303, 55.9591348 -3.1552068, 55.9579853 -3.1583596, 55.9574549 -3.1601489, 55.9572206 -3.1679256, 55.9620617 -3.1535479, 55.9621329 -3.1564976, 55.9625914 -3.1535957, 55.9678849 -3.1582874, 55.9635998 -3.1549966, 55.9627401 -3.1578613, 55.9697011 -3.1609259, 55.9692599 -3.1643129, 55.9664000 -3.1642510, 55.9684815 -3.1664925, 55.9643722 -3.1699129, 55.9644808 -3.1717362, 55.9649261 -3.1753058, 55.9702256 -3.1606806, 55.9724046 -3.1632755, 55.9734772 -3.1676223, 55.9694878 -3.1680589, 55.9692660 -3.1684283, 55.9700561 -3.1702309, 55.9680205 -3.1683016, 55.9662214 -3.1698249, 55.9641358 -3.1704804, 55.9611738 -3.1711284, 55.9586377 -3.1717179, 55.9575346 -3.1733551, 55.9576423 -3.1767165, 55.9577127 -3.1801199, 55.9577689 -3.1829548, 55.9565041 -3.1718648, 55.9560238 -3.1725406, 55.9598986 -3.1836144, 55.9533445 -3.1792984, 55.9539108 -3.1837466, 55.9538082 -3.1860623, 55.9537460 -3.1864288, 55.9536090 -3.1872578, 55.9570795 -3.1725344, 55.9560642 -3.1718523, 55.9542177 -3.1734790, 55.9505210 -3.1770492, 55.9471148 -3.1782693, 55.9486335 -3.1780633, 55.9498991 -3.1788399, 55.9488002 -3.1790809, 55.9492792 -3.1822951, 55.9501804 -3.1839664, 55.9512348 -3.1865851, 55.9510428 -3.1899310, 55.9517661 -3.1736932, 55.9521941 -3.1764060, 55.9513995 -3.1796348, 55.9508278 -3.1825636, 55.9503437 -3.1858623, 55.9739384 -3.1675454, 55.9716823 -3.1695986, 55.9710945 -3.1729414, 55.9696883 -3.1723864, 55.9675371 -3.1742485, 55.9652851 -3.1761642, 55.9754404 -3.1672776, 55.9767799 -3.1727255, 55.9773024 -3.1758686, 55.9778968 -3.1792143, 55.9750843 -3.1712339, 55.9738978 -3.1727490, 55.9719290 -3.1728798, 55.9722046 -3.1746804, 55.9721394 -3.1759853, 55.9703025 -3.1809373, 55.9747119 -3.1831053, 55.9743144 -3.1856322, 55.9787681 -3.1799116, 55.9803325 -3.1776103, 55.9802576 -3.1818238, 55.9807529 -3.1767871, 55.9785884 -3.1824160, 55.9794446 -3.1861987, 55.9799233 -3.1897858, 55.9807036 -3.1944752, 55.9657942 -3.1807024, 55.9675800 -3.1828235, 55.9684568 -3.1840135, 55.9725807 -3.1879435, 55.9687365 -3.1849738, 55.9675923 -3.1871498, 55.9659016 -3.1891647, 55.9642904 -3.1922393, 55.9636036 -3.1943508, 55.9622037 -3.1793755, 55.9627389 -3.1787103, 55.9618397 -3.1798451, 55.9622890 -3.1826621, 55.9645359 -3.1863513, 55.9587553 -3.1837463, 55.9585333 -3.1839575, 55.9557001 -3.1866674, 55.9540735 -3.1877177, 55.9572218 -3.1884308, 55.9597602 -3.1915275, 55.9606648 -3.1931837, 55.9618206 -3.1955056, 55.9620775 -3.1961605, 55.9744173 -3.1897628, 55.9757115 -3.1912766, 55.9778758 -3.1932662, 55.9778282 -3.1960220, 55.9737056 -3.1899377, 55.9731967 -3.1935301, 55.9564422 -3.1886008, 55.9511728 -3.1894775, 55.9513768 -3.1853034, 55.9530038 -3.1904535, 55.9529734 -3.1906361, 55.9550011 -3.1944896, 55.9523721 -3.1941529, 55.9522306 -3.1949546, 55.9521243 -3.1955713, 55.9414032 -3.1835175, 55.9439756 -3.1855145, 55.9457447 -3.1858708, 55.9459185 -3.1889928, 55.9462149 -3.1911216, 55.9474608 -3.1915894, 55.9483990 -3.1921221, 55.9499555 -3.1941302, 55.9513537 -3.1966807, 55.9563095 -3.1988813, 55.9543603 -3.1978922, 55.9530552 -3.1971722, 55.9518480 -3.1998550, 55.9512810 -3.2003210, 55.9511317 -3.2011985, 55.9510603 -3.2016272, 55.9507178 -3.2036019, 55.9505841 -3.2043884, 55.9451215 -3.1923158, 55.9448465 -3.1948923, 55.9448398 -3.1982337, 55.9495074 -3.2066951, 55.9492342 -3.2065847, 55.9483042 -3.2035260, 55.9477777 -3.2074310, 55.9470945 -3.2058026, 55.9462517 -3.2055118, 55.9451884 -3.2051208, 55.9428135 -3.2034910, 55.9425896 -3.2034198, 55.9417455 -3.2046015, 55.9407315 -3.2096840, 55.9393435 -3.2127503, 55.9381500 -3.2153226, 55.9368951 -3.2180234, 55.9360677 -3.2206086, 55.9339332 -3.2231747, 55.9412949 -3.2033828, 55.9392306 -3.2046030, 55.9364756 -3.2079633, 55.9348931 -3.2100243, 55.9431527 -3.2018790, 55.9380729 -3.1920260, 55.9368177 -3.1935085, 55.9393298 -3.1949761, 55.9378804 -3.1946691, 55.9368007 -3.1944119, 55.9350732 -3.1939952, 55.9308908 -3.2069640, 55.9343964 -3.1957873, 55.9338607 -3.1991324, 55.9332178 -3.2042350, 55.9316658 -3.2098633, 55.9343401 -3.1937110, 55.9324314 -3.1928183, 55.9307981 -3.1906344, 55.9131617 -3.2179327, 55.9117618 -3.2186153, 55.9105601 -3.2202188, 55.9089266 -3.2227432, 55.9076164 -3.2261893, 55.9128108 -3.2134259, 55.9111623 -3.2120145, 55.9091712 -3.2098087, 55.9068224 -3.2083279, 55.9020682 -3.2084040, 55.9020822 -3.2133788, 55.9020983 -3.2181138, 55.9024927 -3.2209412, 55.9538170 -3.2010786, 55.9557714 -3.2021464, 55.9519898 -3.2056255, 55.9506446 -3.2093738, 55.9504970 -3.2090293, 55.9515635 -3.2119466, 55.9590112 -3.1954889, 55.9578837 -3.1987058, 55.9569531 -3.2042594, 55.9573349 -3.2073650, 55.9581370 -3.1998753, 55.9595344 -3.2006164, 55.9611948 -3.1982635, 55.9612444 -3.2015410, 55.9622843 -3.2005526, 55.9634143 -3.2010164, 55.9646582 -3.2129757, 55.9654477 -3.2035216, 55.9669436 -3.2050472, 55.9701671 -3.2188738, 55.9696091 -3.2244001, 55.9693067 -3.2276608, 55.9689314 -3.2315056, 55.9685250 -3.2348925, 55.9756505 -3.2271990, 55.9754414 -3.2324687, 55.9752064 -3.2352977, 55.9765935 -3.2304701, 55.9602477 -3.2031604, 55.9599422 -3.2050807, 55.9584545 -3.2079471, 55.9589660 -3.2114386, 55.9592891 -3.2157462, 55.9577015 -3.2172967, 55.9592368 -3.2207211, 55.9587913 -3.2241128, 55.9573790 -3.2117285, 55.9566490 -3.2146849, 55.9557623 -3.2162108, 55.9543230 -3.2154609, 55.9551079 -3.2193216, 55.9577741 -3.2253880, 55.9599993 -3.2284217, 55.9618699 -3.2309640, 55.9632492 -3.2339433, 55.9633694 -3.2324315, 55.9664241 -3.2347134, 55.9694408 -3.2367643, 55.9731091 -3.2383395, 55.9751261 -3.2388206, 55.9682289 -3.2375427, 55.9678257 -3.2418878, 55.9673384 -3.2465506, 55.9672975 -3.2372246, 55.9661966 -3.2376861, 55.9633638 -3.2388133, 55.9618160 -3.2413074, 55.9578389 -3.2295517, 55.9548640 -3.2243511, 55.9509150 -3.2138808, 55.9498016 -3.2162253, 55.9493877 -3.2175003, 55.9495686 -3.2189589, 55.9505731 -3.2230145, 55.9514713 -3.2255762, 55.9677421 -3.2492713, 55.9876225 -3.4053402, 55.9867144 -3.3820021, 55.9871401 -3.3873073, 55.9874589 -3.3909095, 55.9870411 -3.3960723, 55.9907091 -3.3983046, 55.9901075 -3.4037978, 55.9900444 -3.3976399, 55.9863873 -3.3966739, 55.9843886 -3.3962171, 55.9891253 -3.4109545, 55.9827390 -3.3942984, 55.9821321 -3.3899489, 55.9492297 -3.1934848, 55.9485101 -3.1950625, 55.9466052 -3.2025367, 55.9483763 -3.1903144, 55.9458781 -3.2015473, 55.9450777 -3.2041637, 55.9433912 -3.2080175, 55.9425797 -3.2117259, 55.9411818 -3.2158659, 55.9413277 -3.2188601, 55.9456681 -3.2081800, 55.9460697 -3.2125273, 55.9496579 -3.2091165, 55.9491712 -3.2102205, 55.9478015 -3.2132758, 55.9458558 -3.2248034, 55.9457052 -3.2281933, 55.9455617 -3.2302479, 55.9456796 -3.2170439, 55.9455186 -3.2170669, 55.9425162 -3.2214439, 55.9413678 -3.2230988, 55.9386491 -3.2239035, 55.9334398 -3.2118455, 55.9314723 -3.2172745, 55.9308274 -3.2197833, 55.9100844 -3.2345862, 55.9085928 -3.2291957, 55.9064805 -3.2256576, 55.9059136 -3.2239281, 55.9055130 -3.2235475, 55.9051874 -3.2237612, 55.9042466 -3.2225799, 55.9012188 -3.2216370, 55.9009964 -3.2259325, 55.9011654 -3.2224830, 55.9038972 -3.2233847, 55.9038681 -3.2263110, 55.9038755 -3.2309659, 55.9044653 -3.2366791, 55.9814895 -3.1912619, 55.9781517 -3.1735386, 55.9508673 -3.1752354, 55.9553235 -3.1920547, 55.9553332 -3.1919926, 55.9553429 -3.1919304, 55.9553525 -3.1918683, 55.9553622 -3.1918061, 55.9553719 -3.1917440, 55.9553816 -3.1916819, 55.9553913 -3.1916197, 55.9554010 -3.1915576, 55.9554107 -3.1914955, 55.9554204 -3.1914333, 55.9554301 -3.1913712, 55.9554398 -3.1913091, 55.9554495 -3.1912469, 55.9554592 -3.1911848, 55.9554688 -3.1911227, 55.9554785 -3.1910605, 55.9554882 -3.1909984, 55.9837906 -3.4014050, 55.9838562 -3.4011669, 55.9472325 -3.1901311, 55.9323871 -3.2055924, 55.9766612 -3.1797211, 55.9438324 -3.2142584, 55.9433875 -3.2147686, 55.9602002 -3.2007101, 55.9562981 -3.1986248, 55.9475607 -3.1861653, 55.9536715 -3.1868832, 55.9525909 -3.2000321, 55.9476032 -3.2085057, 55.9464948 -3.1985795, 55.9699159 -3.1695202, 55.9514808 -3.2001745, 55.9525187 -3.1942515, 55.9539179 -3.1954762, 55.9458721 -3.1870265, 55.9452545 -3.1868374, 55.9439698 -3.1852609, 55.9287885 -3.2094065, 55.9700600 -3.1864505, 55.9493416 -3.2102159, 55.9651187 -3.2337410, 55.9458574 -3.2195136, 55.9458637 -3.2199619, 55.9493651 -3.2098050, 55.9345077 -3.1677307, 55.9525355 -3.2025587, 55.9897500 -3.4060327, 55.9507195 -3.1921655, 55.9532131 -3.1997985, 55.9541367 -3.1918691, 55.9547528 -3.1939230, 55.9387978 -3.1791123, 55.9606525 -3.2004675, 55.9745653 -3.1721302, 55.9707112 -3.2373591, 55.9710196 -3.2373748, 55.9723997 -3.1630202 +53.5648493 9.9571466, 53.5757390 9.9623022, 53.4478281 9.9731688, 53.4241410 9.9800344, 53.5868035 9.8487128, 53.5574782 10.0164580, 53.7036757 10.1066618, 53.5946206 9.9441011, 53.5504041 9.9292219, 53.5988521 9.8601452, 53.5979982 9.8618241, 53.5800425 9.7628059, 53.5754846 10.0235455, 53.5842259 10.0410976, 53.5796864 10.0221684, 53.4866287 10.1801253, 53.5557491 10.0103773, 53.4943874 9.9279743, 53.5728805 9.9843530, 53.5715017 9.9967626, 53.5045816 10.0148080, 53.5974378 9.8816993, 53.5701392 9.9786185, 53.5743453 9.9482315, 53.5640048 9.9461511, 53.5630404 10.0228408, 53.5809725 10.0545826, 53.5660778 10.0565622, 53.5816612 9.9780119, 53.5830376 10.0339576, 53.6197422 9.9463615, 53.5729809 9.9756610, 53.5813460 9.9698313, 53.6668169 9.9946587, 53.5840150 10.0219556, 53.5869083 10.0264249, 53.5747332 10.0142651, 53.5542870 10.0496687, 53.5602091 10.0370058, 53.5500773 9.9973724, 53.5809484 10.0252152, 53.5895058 9.9324827, 53.5677115 10.0625756, 53.5174482 10.1690785, 53.5561014 10.0556424, 53.5561412 10.0544692, 53.5728231 9.8924513, 53.5608730 10.0588213, 53.6247840 10.0916228, 53.5686976 9.9558204, 53.5628077 9.9674043, 53.5669868 9.9580363, 53.6311799 9.9511649, 53.6194767 10.0322772, 53.6015500 9.9549870, 53.5542251 10.0889923, 53.5674850 10.0439091, 53.5773229 10.0428155, 53.5807381 10.0484485, 53.5738581 10.0399958, 53.5811380 9.7541561, 53.6183964 10.0276208, 53.6059322 10.1685769, 53.6024754 10.1547768, 53.6753711 10.0238860, 53.5860440 10.0226601, 53.5585280 10.0447842, 53.5629417 9.7805941, 53.6198695 10.0901172, 53.5724608 9.8687564, 53.5547292 10.0207783, 53.6097557 10.1183251, 53.5482112 10.0569090, 53.5684023 9.9566271, 53.5687880 9.9564530, 53.6178838 9.8953858, 53.6411028 9.9458858, 53.6379418 9.9454221, 53.6013692 9.9887406, 53.5915688 10.0407190, 53.4435640 9.9711938, 53.6029378 9.9557507, 53.5617430 9.8231546, 53.5634075 9.8262423, 53.5546820 9.9124716, 53.5469455 10.0851528, 53.6147748 10.0092354, 53.6077853 9.9771788, 53.6151120 10.1166782, 53.6334667 10.1298099, 53.5529468 9.9545297, 53.5539969 9.9545913, 53.5705686 10.0889626, 53.4531063 9.9849358, 53.6174556 10.1473906, 53.6066728 10.1220546, 53.6074830 9.9098088, 53.4520565 9.9735991, 53.5721093 10.0466748, 53.6338702 10.0194194, 53.6433447 10.0140776, 53.5806909 9.8133015, 53.5789501 9.8098096, 53.5819058 9.8158496, 53.5829902 9.8151657, 53.5610058 10.0321295, 53.5614777 10.0607155, 53.5548337 10.0664021, 53.5532507 9.9802911, 53.5564240 9.9479050, 53.5751775 9.8472851, 53.5609837 9.9254949, 53.5630682 10.0219707, 53.6152223 10.0634072, 53.5472618 9.9825835, 53.6060866 10.0228818, 53.5683814 10.1172974, 53.5470857 10.1061830, 53.5466156 10.0986719, 53.5565249 10.0785219, 53.4658779 9.9864891, 53.4704085 9.8593881, 53.5475072 10.0269339, 53.5759566 9.9463826, 53.5552542 9.9455711, 53.6399093 10.1194892, 53.6393687 10.1183574, 53.5616187 9.9132034, 53.5915075 9.9335137, 53.5284509 10.1467926, 53.5591532 10.1045831, 53.4659592 9.9576958, 53.5608856 9.8334521, 53.5686912 9.9000462, 53.5697077 9.9809689, 53.5540337 9.9304947, 53.5711708 9.9458290, 53.5424234 10.1107211, 53.4863882 10.2147871, 53.6184477 9.9493506, 53.5722752 9.9504800, 53.5671706 9.9561016, 53.5671972 9.9562668, 53.5550517 10.0181309, 53.5719823 9.9465598, 53.4939873 10.1230402, 53.5790541 9.9449903, 53.5337129 9.8657440, 53.5468919 10.0904914, 53.5420778 10.0990092, 53.5764637 10.0467208, 53.5938591 9.9999513, 53.6007186 9.9635127, 53.5951864 10.1495778, 53.4689190 9.9855114, 53.4961615 10.0036740, 53.5803679 9.9335661, 53.5817318 9.9330043, 53.5124068 10.1604720, 53.5572637 9.9159953, 53.5263607 10.1457239, 53.5420247 10.1278528, 53.4999659 10.0160421, 53.5986069 10.0563390, 53.4882292 10.1532531, 53.6131153 10.0491230, 53.4390397 9.9623219, 53.4848037 10.1603460, 53.4711318 9.8167388, 53.5442103 10.0212283, 53.5820826 9.9495284, 53.5108594 10.2105557, 53.5505606 9.9335442, 53.4889537 10.1584727, 53.4290609 10.2700716, 53.5601301 10.1063032, 53.4489249 10.2283906, 53.4647614 9.9879610, 53.4739035 10.2385213, 53.5814188 9.9510853, 53.5821632 9.9479091, 53.4442351 10.1735106, 53.5727271 9.9575311, 53.5718352 9.9534917, 53.5722652 9.9554872, 53.5694622 9.9005496, 53.5754593 9.9511070, 53.5240341 9.7790678, 53.5249059 9.7792650, 53.4395592 9.9920196, 53.4556133 9.9830560, 53.5589010 9.9022794, 53.4959150 9.9943778, 53.5665853 9.8746497, 53.5574577 9.9486987, 53.5689324 10.0439162, 53.5829783 9.9703584, 53.5619334 9.9542404, 53.6052275 10.1203539, 53.4808377 10.2198387, 53.6724564 9.9968610, 53.6528255 10.0087003, 53.5509871 10.1014724, 53.6200735 10.0820561, 53.5510325 9.9245995, 53.6204408 9.9502524, 53.6169406 9.9503498, 53.5988680 9.9965082, 53.5363846 10.1092561, 53.6108955 10.0635592, 53.5823045 9.9393060, 53.5817951 9.9439136, 53.5442757 10.0290400, 53.5437247 10.0295578, 53.6041569 10.0393731, 53.5956057 9.8905956, 53.6351750 10.0515219, 53.6171783 9.9990535, 53.6018539 9.8730458, 53.6352011 9.9573638, 53.5486481 10.0916007, 53.5649146 9.9135986, 53.5640390 10.0747818, 53.5434375 10.1447361, 53.5500359 9.9040709, 53.6467071 9.9104658, 53.5446278 9.9806982, 53.5499089 9.8570360, 53.5541983 9.9844728, 53.5884031 9.9690064, 53.5629917 9.8145411, 53.5415999 9.9946781, 53.5814671 10.0617312, 53.5788677 9.9408387, 53.5793655 9.9403926, 53.5784389 9.9412397, 53.5800623 9.9388142, 53.5473091 9.9656746, 53.5777609 9.9517732, 53.5795940 9.9533704, 53.5794265 9.9530814, 53.6269989 10.0136518, 53.5517077 9.9671857, 53.6001264 10.1328182, 53.5874048 10.0675736, 53.5688346 9.9910756, 53.5827650 9.8301817, 53.5727234 9.9506999, 53.5871962 10.1696955, 53.5655518 9.9929971, 53.5882576 10.0594897, 53.5739327 10.0763880, 53.5788350 10.0867345, 53.5924355 9.8498164, 53.5903377 9.8533148, 53.5872321 10.0826981, 53.5820966 10.0578995, 53.5740092 9.8570303, 53.5725169 9.8561748, 53.4906161 10.1808277, 53.5344116 10.0449839, 53.5459965 10.0535184, 53.5736196 9.9661922, 53.5557042 10.0716508, 53.6085387 10.1553237, 53.6004999 10.1569674, 53.5844323 9.8552679, 53.5887470 9.9518300, 53.5968631 10.1518420, 53.6971569 10.1346200, 53.5674942 9.9466439, 53.5666345 9.9486063, 53.6186617 10.1439183, 53.5817142 9.7822639, 53.5672204 10.1394125, 53.4880255 10.0244046, 53.5724165 9.8015472, 53.6719835 10.1275486, 53.5653901 9.9861784, 53.6419963 10.0386792, 53.5554105 10.0946402, 53.5761816 9.9467612, 53.5768665 9.9630942, 53.6639188 10.1482954, 53.5563998 9.9085964, 53.5722459 9.9555246, 53.5718430 9.9534719, 53.5687950 9.9839197, 53.5722902 9.9868962, 53.5971723 9.8848788, 53.5653957 9.9797513, 53.5999365 9.8847723, 53.5697967 9.9769465, 53.5672010 9.9744872, 53.5667297 9.9752260, 53.4816691 10.1676819, 53.5689654 9.9912234, 53.5637332 9.9912534, 53.5893228 10.0398697, 53.5864350 10.0632938, 53.6523164 10.0043861, 53.5774653 10.0452702, 53.5750442 9.9724739, 53.5761693 9.9822188, 53.6551095 10.1598197, 53.6023540 9.8759347, 53.6038357 10.0790019, 53.6636578 10.1099496, 53.6505529 10.0728615, 53.6374569 10.0983026, 53.6747140 10.1218506, 53.5498899 9.8576467, 53.6713121 10.1316749, 53.5071373 9.9901540, 53.5586295 10.0107194, 53.6428117 10.0766030, 53.5558813 10.0104520, 53.5579063 10.0135290, 53.6878350 10.1063010, 53.5627546 9.8544955, 53.6397460 10.0862961, 53.6374653 10.0783262, 53.6549573 10.0988986, 53.5517731 9.9788838, 53.5712546 9.9935904, 53.6342757 10.1472157, 53.6293389 10.1414836, 53.6169824 10.1232846, 53.6007919 10.1080690, 53.4742875 9.8298557, 53.6427071 10.0990075, 53.5757197 9.8861654, 53.6447608 10.1052108, 53.6062004 10.0450520, 53.5668085 9.9485600, 53.5991663 10.0357429, 53.5949991 10.0910251, 53.6545407 10.0890603, 53.6606656 10.0824612, 53.5826900 10.0959048, 53.6097560 10.1183922, 53.6000094 10.1835267, 53.5999700 10.1782081, 53.6016661 10.1773923, 53.5816475 10.0545741, 53.5675609 9.9654223, 53.5712576 10.1208121, 53.5983970 10.1696896, 53.4851496 10.0129507, 53.5582509 9.9821634, 53.4851424 10.0131772, 53.4863448 10.0162228, 53.6542093 10.1087681, 53.5708128 10.0841822, 53.5711829 10.0839887, 53.5658903 10.0994100, 53.6016299 10.0432031, 53.6031843 10.0456141, 53.6490428 10.0639378, 53.6204169 10.0937352, 53.4886827 10.1667177, 53.5773847 10.0252286, 53.5818446 10.1434064, 53.5939907 10.0561464, 53.5598002 9.9734131, 53.5944920 10.0926202, 53.5988397 10.0940359, 53.5776185 10.1269729, 53.6106441 10.1746063, 53.5819613 9.9705097, 53.5269841 10.1534505, 53.5719989 10.0241320, 53.5666255 9.9588524, 53.5877859 10.0140133, 53.5859150 10.0276045, 53.6104664 10.0221556, 53.6417586 10.0849258, 53.6520169 10.0747593, 53.5550012 9.8409220, 53.6308886 10.0488668, 53.6340815 10.0560375, 53.5917439 10.0074020, 53.5910360 10.0205432, 53.5513511 9.9567965, 53.5890455 10.1572702, 53.5918261 10.1792508, 53.6062490 10.1676008, 53.5935495 10.0051509, 53.6101324 10.1459396, 53.5998669 10.0815492, 53.6162839 9.9861605, 53.6264688 10.1131146, 53.6308152 10.1086172, 53.6074655 10.1116363, 53.6291760 10.1461973, 53.5935823 9.9916927, 53.6248126 10.0301074, 53.6340375 10.0692436, 53.6546904 10.1133808, 53.6093914 10.0738097, 53.6170146 10.1533799, 53.5686505 9.9462971, 53.5612557 9.8235711, 53.6288844 10.1671408, 53.5610090 9.8136713, 53.5630022 9.8145071, 53.6438792 9.9209213, 53.5976525 10.0612883, 53.6429257 10.0766828, 53.5767096 9.8236686, 53.5822984 9.7575676, 53.5816114 9.7628174, 53.5545328 10.0276303, 53.5897358 9.7639468, 53.5895933 9.7645246, 53.5895997 9.7642454, 53.5676098 9.8261795, 53.5743518 9.8332939, 53.5812747 10.0967914, 53.6522562 10.1644797, 53.6018975 9.9143016, 53.6507475 10.1610407, 53.6531724 10.1719943, 53.6091718 9.8981616, 53.6571083 10.1848261, 53.5799834 9.9315020, 53.6063362 9.8931561, 53.5677109 10.0626111, 53.5319093 10.1077197, 53.6443028 10.0163814, 53.6217934 10.1268314, 53.6150849 10.0728462, 53.5133432 9.9898254, 53.5649315 10.0555591, 53.5980608 9.9602518, 53.5949443 9.9540015, 53.6659851 10.0928091, 53.6450124 9.9167772, 53.6449532 9.9166654, 53.5593187 9.8529953, 53.5589116 9.9448924, 53.4604791 9.8888932, 53.5706004 9.8449287, 53.6051798 9.9738809, 53.4756100 9.8855971, 53.5154392 9.9852892, 53.5144426 9.9922739, 53.6560283 10.0207226, 53.6523957 10.0042471, 53.5908972 10.0519260, 53.6590836 10.0863318, 53.6588233 10.0842697, 53.6411577 10.0234225, 53.5802907 9.8177796, 53.6137759 10.0560152, 53.6850900 10.1449458, 53.4802492 9.8906421, 53.5937567 10.0792240, 53.6587278 10.1280028, 53.6079885 10.0495860, 53.5690490 9.8920281, 53.4674499 9.9649093, 53.4574751 9.9530602, 53.5586301 9.9136384, 53.5579211 10.0330903, 53.6149393 9.8995229, 53.6057361 10.0381315, 53.5883147 10.0234673, 53.6153344 9.8907252, 53.6162980 10.1064242, 53.4662531 9.9638920, 53.4514159 9.9436095, 53.6367360 9.9614555, 53.5498338 9.9039725, 53.6233266 9.9154475, 53.6281027 10.1250385, 53.5585274 9.9064721, 53.4553266 9.9723017, 53.6409066 10.0815605, 53.6187996 10.0098203, 53.5680426 10.0329527, 53.5710727 10.0323443, 53.6707536 10.1493769, 53.5984064 9.9835106, 53.5592429 9.9552147, 53.5470437 9.9386861, 53.5476830 9.9440157, 53.6032843 9.9553857, 53.4723036 9.8815436, 53.4773851 9.8658396, 53.5893018 9.9843554, 53.5935110 9.9823309, 53.5933429 9.9824896, 53.5821874 9.9683646, 53.6380167 9.9227158, 53.5585331 9.9605569, 53.5545353 9.9578740, 53.5550210 9.9537699, 53.5949439 9.9894040, 53.6001296 9.9835665, 53.6466731 10.0391711, 53.6465998 10.0409977, 53.5788973 9.7977831, 53.4760066 9.8550033, 53.5308751 10.1283075, 53.5255598 10.0180812, 53.4876472 10.2274341, 53.5784544 10.0223629, 53.4814486 10.1858600, 53.5792513 10.0277324, 53.5710254 10.0841337, 53.6504440 10.1873183, 53.5987489 10.1489055, 53.6346784 9.9490445, 53.6318319 9.9240099, 53.4850106 10.1658544, 53.6317750 10.0204967, 53.6306763 10.0218774, 53.4826920 10.1771589, 53.4544592 9.9793436, 53.4467279 9.9873252, 53.4845363 10.1966825, 53.4731500 10.2632296, 53.5847649 9.8961429, 53.4824351 10.2249182, 53.5794649 10.0636387, 53.4795650 9.8736726, 53.6802416 9.9989321, 53.6496918 9.9111369, 53.5605772 9.9208250, 53.4795457 9.8623289, 53.6311784 9.9165728, 53.6317398 9.9134011, 53.6306995 9.9209739, 53.6345715 9.9182663, 53.6416610 10.0374818, 53.4704298 9.8598827, 53.5891948 10.0739459, 53.6282062 10.0178674, 53.6358019 10.0122241, 53.6063582 10.0027670, 53.5078910 10.2174542, 53.5018849 10.2101558, 53.4321517 9.9876490, 53.4437995 9.9490204, 53.5037832 9.9912267, 53.5838395 9.9523289, 53.7056155 10.1120914, 53.7050584 10.1193380, 53.6116709 9.9719268, 53.6523507 9.9951908, 53.5499130 10.0970944, 53.6385836 10.1441495, 53.5563676 9.9236569, 53.6169827 10.0130760, 53.5824312 10.1447231, 53.4854463 10.2345545, 53.4441491 10.2198393, 53.4917493 10.1926567, 53.5519602 9.8998194, 53.4859030 10.2189479, 53.4832283 10.1779047, 53.4464930 10.1306644, 53.6753778 10.0235992, 53.5078102 10.1868414, 53.4060351 10.1596277, 53.4016206 10.1674030, 53.4963415 10.0223428, 53.5998681 10.1833609, 53.4196540 10.1996815, 53.4098285 10.1910530, 53.4624797 10.1983099, 53.5727685 9.8810451, 53.6046214 9.9261190, 53.4862511 10.1522670, 53.4743132 10.0823914, 53.4806939 10.2200698, 53.6193795 9.8975937, 53.5708488 9.8358105, 53.6504154 10.1872887, 53.6036378 10.1260579, 53.6388060 10.1531361, 53.4392829 9.9705714, 53.5901204 10.0471158, 53.5808447 9.9432403, 53.5619095 10.1212465, 53.5327514 10.1103038, 53.4757485 10.2359557, 53.5790553 10.1051423, 53.5704502 10.1310105, 53.5724039 10.1399244, 53.4508399 9.9283897, 53.5800516 9.9406540, 53.4433431 9.9549231, 53.5962715 10.0178672, 53.5813096 9.7616974, 53.6218863 9.9454969, 53.6366660 9.9165838, 53.6470397 9.9207047, 53.6264594 9.9110867, 53.6248818 9.9272888, 53.6092807 10.0103654, 53.5047053 10.1814466, 53.6028546 9.9032453, 53.5776315 9.9505340, 53.5801386 9.9471378, 53.5541712 9.9664743, 53.5956459 10.0333585, 53.5316537 10.1494570, 53.6520471 10.0748078 +55.9515659 -3.1793762 +yes +yes +48.8505273 2.3858439, 48.8494965 2.3428666, 48.8500236 2.2797012, 48.8492181 2.3413228, 48.8650266 2.3105711, 48.8650092 2.3105788, 48.8440185 2.3635704, 48.8433068 2.3562446, 48.8435426 2.2928813, 48.8874535 2.3383526, 48.8543168 2.3338886, 48.8339014 2.4451712, 48.8753281 2.3200142, 48.8726676 2.2426542, 48.8909988 2.3141293, 48.8837520 2.3845730, 48.8648255 2.3226987, 48.8623905 2.3185607, 48.8622313 2.3190542, 48.8624839 2.3186317, 48.8625247 2.3185027, 48.8622849 2.3192509, 48.8623265 2.3191267, 48.8534161 2.2893971, 48.8467685 2.2498518, 48.8741975 2.3697748, 48.8596745 2.3570335, 48.8540743 2.3607407, 48.8442631 2.3267495, 48.8424221 2.3294541, 48.8210361 2.3367436, 48.8680342 2.2400618, 48.8626822 2.3167436, 48.8461888 2.3460786, 48.8562206 2.3646909, 48.8549842 2.3647206, 48.8548590 2.3649732, 48.8548113 2.3656603, 48.8548856 2.3654763, 48.8548332 2.3658969, 48.8546351 2.3638127, 48.8548713 2.3664799, 48.8554879 2.3644340, 48.8553493 2.3640907, 48.8550883 2.3644485, 48.8551698 2.3641641, 48.8556856 2.3644472, 48.8560220 2.3644996, 48.8559036 2.3643358, 48.8555066 2.3667457, 48.8549527 2.3652795, 48.8550198 2.3664293, 48.8551214 2.3667794, 48.8553095 2.3668811, 48.8556406 2.3667799, 48.8557690 2.3667700, 48.8558971 2.3668467, 48.8562354 2.3667263, 48.8562783 2.3659702, 48.8563271 2.3664082, 48.8565360 2.3650308, 48.8563985 2.3653168, 48.8563156 2.3655409, 48.8606366 2.3480234, 48.8674727 2.3294381, 48.8644344 2.3216608, 48.8642324 2.3212469, 48.8651027 2.3195628, 48.8647640 2.3195784, 48.8665184 2.3205992, 48.8658523 2.3226990, 48.8661902 2.3226784, 48.8667202 2.3210126, 48.8691399 2.3413669, 48.8546361 2.3664076, 48.8555425 2.3353926, 48.8813641 2.3738849, 48.8775023 2.4070003, 48.8754445 2.3194466, 48.8835208 2.3274294, 48.8765636 2.3181311, 48.8637028 2.3311319, 48.8633534 2.3265362, 48.8635759 2.3314977, 48.8654765 2.3211306, 48.8644685 2.3118742, 48.8670898 2.3143918, 48.8652987 2.3139595, 48.8674908 2.3136006, 48.8876533 2.3362970, 48.8488716 2.3782200, 48.8389393 2.3641414, 48.8344800 2.3365253, 48.8343320 2.3324661, 48.8206863 2.3381782, 48.8736766 2.2898597, 48.8665643 2.2388266, 48.8445398 2.3557684, 48.8440190 2.3635661, 48.8425333 2.3577807, 48.8439651 2.3575775, 48.8822161 2.3112864, 48.8830250 2.3095111, 48.8821512 2.3106830, 48.8381305 2.3363290, 48.8646043 2.3182703, 48.8643210 2.3049352, 48.8644161 2.3098209, 48.8641849 2.3008761, 48.8637875 2.3235856, 48.8644663 2.3025378, 48.8439930 2.3562932, 48.8435606 2.3640026, 48.8629412 2.3261255, 48.8638801 2.3321834, 48.8343590 2.3314482, 48.8236718 2.3363883, 48.8483851 2.3959218, 48.8827099 2.3108336, 48.8652022 2.3106561, 48.8413918 2.2993591, 48.8394489 2.3300541, 48.8487690 2.3420958, 48.8492526 2.3467601, 48.8737782 2.2950354, 48.8617276 2.3329082, 48.8531662 2.3691387, 48.8636002 2.3370683, 48.8874000 2.3371053, 48.8657427 2.3411777, 48.8733461 2.3668894, 48.8592670 2.3424349 +14 +0 +52 +no +55.9058039 -3.2543852, 55.9016895 -3.1650816, 55.9083022 -3.2718175 +velib.paris.fr, velib.paris.fr, www.Velib.fr, www.parisbiketour.net, http://en.velib.paris.fr/Stations-in-Paris/Find-a-station +78 +28 +48.8503523 2.3771322, 48.8448880 2.2932360, 48.8878186 2.3658425, 48.8433351 2.3504547, 48.8736480 2.2508289, 48.8491173 2.3580497, 48.8480441 2.4046718, 48.8480637 2.4043807, 48.8325184 2.4169483, 48.8307196 2.4193991, 48.8968098 2.3784792, 48.8971684 2.3817629 +Viernheim, Wiesloch, Schifferstadt, Walldorf, Sinsheim, Hemsbach, Speyer, Bad Schönborn, Philippsburg, Eppelheim, Leimen, Hirschhorn (Neckar), Weinheim, Eberbach, Waghäusel, Sandhausen, Östringen, Neckargemünd, Edingen-Neckarhausen, Dossenheim, Hockenheim, Schriesheim, Schwetzingen, Ladenburg, Waibstadt +97 +no +976 +49.4135514 8.6842391, 49.4146501 8.6879184, 49.4168731 8.6919549, 49.4171484 8.6930088, 49.4208847 8.6912002, 49.4123719 8.7105227, 49.4121119 8.7079345, 49.4133176 8.6889779, 49.4133176 8.6889788, 49.4133176 8.6889785, 49.4133177 8.6889782, 49.4133176 8.6889782, 49.4133174 8.6889784, 49.4133177 8.6889788, 49.4208843 8.6912004, 49.4208840 8.6912006, 49.4168738 8.6919549, 49.4168732 8.6919560, 49.4208839 8.6912002, 49.4171481 8.6930091, 49.4168744 8.6919560, 49.4168739 8.6919560, 49.4208843 8.6911999, 49.4208846 8.6911997, 49.4168740 8.6919569, 49.4123720 8.7105234, 49.4115404 8.7048862, 49.4093082 8.6997914, 49.4146502 8.6879184, 49.4115403 8.7048862, 49.4059416 8.6926646, 49.4059413 8.6926655, 49.4059418 8.6926647, 49.4059416 8.6926652, 49.4059414 8.6926650, 49.4196480 8.6881884, 49.4158083 8.7151936, 49.4087123 8.7054683, 49.4076130 8.7082748, 49.4076136 8.7082749, 49.4087126 8.7054655, 49.4076135 8.7082758, 49.4076129 8.7082756, 49.4118409 8.7090873 +yes +48.8702443 2.3283595, 48.8840787 2.3324082, 48.8691369 2.3682501, 48.8823390 2.3402606, 48.8355757 2.4487703, 48.8674891 2.3754429, 48.8522803 2.3779953, 48.8191551 2.3383937, 48.8308115 2.3001985, 48.8743779 2.3850894, 48.8839948 2.3588579, 48.8558275 2.3755799, 48.8431185 2.3716816, 48.8706517 2.3426340, 48.8705772 2.3552836, 48.8693146 2.3347338, 48.8685956 2.3322485, 48.8824587 2.3401820, 48.8553861 2.3625173, 48.8662147 2.3645043, 48.8618044 2.3781115, 48.8767367 2.4093454, 48.8662924 2.3577679, 48.8707153 2.3567140, 48.8626783 2.2885551, 48.8741222 2.3448869, 48.8448858 2.3578698, 48.8733204 2.3254505, 48.8658174 2.3029039, 48.8657369 2.3033357, 48.8708908 2.3743059, 48.8587145 2.3573966, 48.8951815 2.3483062, 48.8421262 2.3534706, 48.8897504 2.3908138, 48.8733076 2.3256182, 48.8714072 2.3293794, 48.8719199 2.3288943, 48.8659605 2.3017221, 48.8631169 2.3708919, 48.8770119 2.3010998, 48.8460948 2.3709948, 48.8520072 2.3570804, 48.8479782 2.3529858, 48.8685677 2.3920616, 48.8519252 2.2791325, 48.8735064 2.3141502, 48.8707525 2.3240257, 48.8858230 2.3749446, 48.8558868 2.4042383, 48.8372157 2.2888121, 48.8500456 2.3533390, 48.8566373 2.3809209, 48.8847666 2.3373500, 48.8887917 2.3829835, 48.8875690 2.3372942, 48.8399992 2.3240094, 48.8597779 2.3530954, 48.8697908 2.3549967, 48.8394650 2.3235600, 48.8702624 2.3461888, 48.8829861 2.3333274, 48.8393259 2.3231092, 48.8837701 2.3265034, 48.8597455 2.3531991, 48.8692693 2.3318524, 48.8597303 2.3459285, 48.8295361 2.3515265, 48.8794685 2.3296284, 48.8530200 2.3453773, 48.8828282 2.3366019, 48.8810211 2.3348222, 48.8840055 2.3266609, 48.8442922 2.3305405, 48.8275596 2.3774365, 48.8622030 2.3518225, 48.8723016 2.3429996, 48.8545409 2.2776862, 48.8785619 2.3313946, 48.8415099 2.3244398, 48.8843397 2.3320078, 48.8436363 2.3254799, 48.8254299 2.3098043, 48.8721414 2.3433983, 48.8577976 2.3569319, 48.8407733 2.3243516, 48.8713709 2.3448748, 48.8734883 2.3453635, 48.8288148 2.3446816, 48.8678179 2.3891525, 48.8601015 2.3815463, 48.8788666 2.3193694, 48.8701566 2.3787268, 48.8714333 2.3421383, 48.8436131 2.3220274, 48.8366211 2.3097495, 48.8504877 2.2966335, 48.8681380 2.3453696, 48.8907562 2.3403810, 48.8682866 2.3661153, 48.8750284 2.3815228, 48.8841589 2.3322157, 48.8937040 2.3443030, 48.8824430 2.3395146, 48.8954044 2.3511534, 48.8728991 2.3470277, 48.8445218 2.3487080, 48.8422145 2.3455341, 48.8434841 2.3451307, 48.8440394 2.3252776, 48.8350857 2.4497868, 48.8366738 2.4497928, 48.8351605 2.4502388, 48.8363526 2.4499634, 48.8834581 2.3344321, 48.8628332 2.3825028, 48.8956054 2.3330161, 48.8398650 2.3230690, 48.8552492 2.3391068, 48.8431448 2.3829523, 48.8680913 2.3978796, 48.8576869 2.3888826, 48.8394773 2.3242229, 48.8521921 2.3771906, 48.8331033 2.3705524, 48.8797258 2.3725494, 48.8751345 2.3951275, 48.8521193 2.3364208, 48.8792668 2.3856534, 48.8859368 2.3931939, 48.8413123 2.4117612, 48.8586001 2.4078519, 48.8587238 2.4076570, 48.8567853 2.4014546, 48.8530850 2.3312320, 48.8383465 2.4465372, 48.8743904 2.3720383, 48.8721600 2.3725531, 48.8583217 2.4080504, 48.8745019 2.3273404, 48.8609892 2.3675162, 48.8741226 2.3444693, 48.8672572 2.3455641, 48.8556263 2.3923924, 48.8714948 2.3681825, 48.8465580 2.4033880, 48.8825911 2.3395439, 48.8706168 2.3629690, 48.8770046 2.3806765, 48.8633792 2.3558935, 48.8808405 2.3282176, 48.8716302 2.3279234, 48.8763432 2.3961836, 48.8681541 2.3597860, 48.8514912 2.3706641, 48.8916001 2.3941173, 48.8955599 2.3923240, 48.8577970 2.3462635, 48.8572971 2.3480529, 48.8635375 2.3361930, 48.8661384 2.3376341, 48.8683542 2.3354770, 48.8711116 2.3378434, 48.8720314 2.3317296, 48.8677538 2.3619057, 48.8422077 2.3499509, 48.8363386 2.4489730, 48.8462040 2.3345315, 48.8709159 2.3488390, 48.8690687 2.3568989, 48.8690852 2.3564359, 48.8516772 2.3301935, 48.8541145 2.3728428, 48.8635364 2.3675918, 48.8898926 2.3938223, 48.8942221 2.3932346, 48.8922574 2.3897916, 48.8673922 2.3186960, 48.8687177 2.3137578, 48.8695579 2.3118828, 48.8708055 2.3203157, 48.8753730 2.3307359, 48.8784480 2.3305067, 48.8788350 2.3363565, 48.8781775 2.3370777, 48.8706464 2.4029603, 48.8700069 2.3917127, 48.8680271 2.3944885, 48.8644181 2.3973216, 48.8831627 2.3434328, 48.8843322 2.3316646, 48.8834404 2.3424447, 48.8830878 2.3430268, 48.8887487 2.3533400, 48.8280160 2.2937656, 48.8777838 2.2607285, 48.8579466 2.2700178, 48.8868542 2.3590078, 48.8774175 2.2965116, 48.8821604 2.3189011, 48.8824285 2.3187962, 48.8677573 2.3108853, 48.8866946 2.3663960, 48.8450745 2.3528309, 48.8355982 2.4502568, 48.8914330 2.3583288, 48.8914295 2.2985567, 48.8495021 2.3387228 +10 +10 +yes +http://www.musee-en-herbe.com/, http://www.mep-fr.org, http://equipement.paris.fr/conservatoire-municipal-claude-debussy-site-la-jonquiere-3976, http://www.paris.fr/politiques/conservation-restauration/atelier-de-restauration-et-de-conservation-des-photographies-de-la-ville-de-paris/p7672#, http://crl10.net/, http://www.fgo-barbara.fr, http://lagenerale.fr/, http://www.labellevilloise.com, http://shakirail.blogspot.fr, http://www.xippas.net/, http://www.betonsalon.net/, http://www.manufacture111.com/, http://equipement.paris.fr/conservatoire-municipal-w-a-mozart-1595, http://www.cwb.fr/, http://www.gaite-lyrique.net/, http://www.crl10.net/, http://www.villette.com/fr/villette-pratique/acces/la-grande-halle.htm, http://www.coursflorent.fr, http://lavillette.com/agenda/#lieu=107#, equipement.paris.fr/Conservatoire Municipal Nadia et Lili Boulanger, http://www.le-bal.fr/, http://equipement.paris.fr/centre-d-animation-les-abbesses-1154, http://ligueparis.org/, http://www.centreculturelirlandais.com/, http://mal217.org/, www.si.se/Paris/, http://www.104.fr/, http://www.iicparigi.esteri.it, http://www.espacelouisemichel.net/ +yes +8 +0 +Five Ways, Greyfriars Bobby Statue, Hutton's Section, Camera Obscura, Sustrans milepost, Gilmerton Cove, The Buckstane, Mons Meg, One O'Clock Gun, Grotto, Grotto, Heart of Midlothian, The Bow Well, Edinburgh Farmers' Market, Ice House, The Quarry, Meerkat Plaza, Primate Walk-Through, Chilean Flamingo, Painted Hunting Dog, Penguins Rock, Grevy's Zebra, Porcupine, Greater One Horned Rhinoceros, Chinese Goral, Darwin's Rhea, Visayan Spotted Deer, Asiatic Lion, Swamp Wallaby, Eurasian Eagle Owl, Squirrel/Capuchin Monkeys, Koala Bear, Wallaby Outback, Pygmy Marmoset, Rock Hyrax, Malayan Sun Bears, Southern Cassowary, Egyptian Vulture, Margay, Meerkat, Southern Pudu, Pygmy Hippo, Mongoose, Gelada Baboon, Red River Hog, Binturong, Banteng, Asiatic short-clawed Otter, Evolution Garden, Lemur Walk-Through, Giant Pandas, Malayan Tapir, Drill, Penguins Rock, Pelican Walk-Through, Steller's Sea Eagle, Sumatran Tiger, Lowland Nyala, Lesser Kudu, Visayan Spotted Deer, Cross, John Muir Grove, Scottish Heath Garden, Chinese Hillside, Rock Garden, Queen Mothers Memorial Garden, Herbaceous Border and Beech Hedge, Fossil Garden, Cryptogamic Garden, Native Woodland, Demonstration Garden, Alpine Garden, Mary King's Close, Greyfriars Bobby's Grave, Mercat Cross, Memorial to Archibald Constable, Tombstone of David Allan, Vault of Dr Robert Candlish & James Candlish, Vault of Robert Burn, Vault of William Blackwood, Georgian House, The Scotch Whisky Experience, Museum of Childhood, The Edinburgh Dungeon, Mad Max Adventures, Camera Obscura, Forth Bridges Contact and Education Centre, Fossil tree, Azara's Agouti, Buff cheeked Gibbon, Giant Anteater, Chimpanzee, Darwin's Rhea, Grevy's Zebra, Kuhl's hog deer, Kune Kune Pig, Skunk, Vicuna, Visayan Spotted Pig, Edinburgh Castle, Fettes College, The National Monument of Scotland, Surgeons Hall Museum, The Edinburgh Tapestry Company, Corstophine Hill Tower, Sir Walter Scott Monument, Royal Scots Museum, New Barracks, National War Museum, Hospital, Cartsheds, Governors House, Argyle Tower, Military Prison, Gatehouse, Holyrood Abbey, St. Giles' Cathedral, Gladstone's Land, Craigmillar Castle, Church of St John, Saint Cuthbert, Ross Fountain, Animal Antics, Fruitmarket Gallery, Tollbooth Tavern, St Andrew's and St George's West, Kinloch Anderson, Trinity House, HMY Britannia, Relief Map, Kimmerghame House, Glencorse House, Edinburgh Labyrinth, Old Calton Cemetery, Old Calton Cemetery, St Mary's Episcopal Cathedral, Malleny Garden, Mausoleum of David Hume, Political Martyrs' Monument, St Anthony's Chapel, The Scottish Parliament, Greyfriars Church, John Knox House, Livingston Model Aircraft Club, Military Prison, Royal Scots Museum, Jupiter Artland, Dugald Stewart Monument, Nelson Monument, Saint Stephen's Church, Scottish Parliament, Palace of Holyroodhouse, Old College, Lauriston Castle, Holyrood Abbey, National War Memorial, Queen Ann Building, Royal Palace +48.8660881 2.3521709, 48.8302437 2.3285915, 48.8534094 2.3325318, 48.8293046 2.3221365, 48.8702035 2.3720916, 48.8860129 2.3833794, 48.8820706 2.3158281, 48.8377043 2.4014006, 48.8299505 2.3776687, 48.8283835 2.3440786, 48.8567374 2.3795945, 48.8386023 2.3899562, 48.8461979 2.3881729, 48.8744523 2.3285538, 48.8332618 2.3645563, 48.8743428 2.3197727, 48.8707106 2.3061618, 48.8379964 2.3514064, 48.8377365 2.3515865, 48.8478014 2.2647346, 48.8489245 2.2975729, 48.8740981 2.3550319, 48.8481890 2.2839192, 48.8715470 2.3362608, 48.8242287 2.3584557, 48.8933957 2.3335323, 48.8414253 2.2875706, 48.8664526 2.3338680, 48.8332559 2.3312348, 48.8940080 2.3420130, 48.8776783 2.3950607, 48.8868122 2.3256852, 48.8834537 2.3328703, 48.8938940 2.3337117, 48.8496859 2.3992762, 48.8822580 2.3711604, 48.8692780 2.3534767, 48.8688039 2.4016891, 48.8888155 2.3602548, 48.8913760 2.3771659, 48.8916332 2.3759113, 48.8385663 2.3603627, 48.8782200 2.2952250, 48.8820372 2.3716846, 48.8817780 2.3151710, 48.8569773 2.3277788, 48.8541244 2.3632116, 48.8303516 2.3287590, 48.8337150 2.3247400, 48.8514691 2.3759900, 48.8412759 2.2656972, 48.8302203 2.3784007, 48.8480740 2.3053881, 48.8291811 2.3237504, 48.8509533 2.3424752, 48.8751193 2.3884843, 48.8412949 2.3226720, 48.8323589 2.3156645, 48.8838545 2.2978583 +12 +3 +Norra Latin, Schæffergården, Barnett Hill Conference Centre, Launde Abbey, Αθλητικό Μουσείο Θεσσαλονίκης, Elmia, The Mermaid conference centre, Scandic Marina Congress Center, Conference Center, Mount Victoria Eltham Park Recreation and Conference Centre, Hadeland Gjestegård, Ekudeni, The Moon & Sixpence, Hakunamatata, Intundla, iZapa Lodge, Alrewas Hayes, The Venue, Berslia Gjeststuer, Brightlife, High Trenhouse, Whispering Oaks Terrace, De Baak Management Centrum VNO-NCW, Brackenhurst, Villa Veertien, Conference Centre, MRC Wales, VVCH Conference Hall, Burghotel Volmarstein, London Art House, City West, Shokran, The Emerald Suite, Waterfront Congress Centre, Viparis, Suractivo, Vulindlela The village of Coega, El Rancho Centro Eventos, The Metropolitan Conference Centre, The Palace, Figi, Bosarpsgården, Renaissance Convention Hall, ศูนย์ศึกษาการพัฒนาห้วยฮ่องไคร้ฯ, GTRI Conference Center, Espace Reuilly, Klara Konferens, Auditorium du Musée Fabre, Landgoed de Horst, Domain du vieux moulin, 北京实创西山科技培训中心, Mophato Oa Morija, Centro Congressi Magazzini del Cotone, Mahsuri International Exhibition Centre, Schur Conference Center, イイノホール, Borsa merci, 松江オープンソースラボ, Hilton Kalastajatorppa Conference & Events Center, Samfunnshuset / Samfunnssalen, Pfalzakademie, Oslofjord convention center, Mission Bay Conference Center at UCSF, Les Foréziales, Illinois Conference Center, The Venue, Glow, Business Center, ไทยพาณิชย์ ศูนย์ฝึกอบรมเชียงใหม่, Centro d'incontro Cavoretto, Salem Conference Centre, Centro Congressi Provincia di Milano, Conferentieoord Franciscaans Milieuproject, Cleaves Conference Centre, Salle Hubert Curien, Amphithéâtre 6, Amphithéâtre 1, Amphithéâtre 2, Amphithéâtre 3, Amphithéâtre 4, Amphithéâtre 5, Håndverkeren Kurs- og Konferansesenter, El Laurel, Arena Sauípe, Sauipe Centro de Convenções, Camp Au Sable, Camp CoBeAc, Camp Wa Wa Sum, Kerschensteiner Kolleg, Ecostudio Fellini, Centro de Convenções e Eventos do Parque Tecnológico, Centre de Conférence, Kurfürstliches Schloss, ZEISS Forum, Das Wormser, The Clerkenwell Centre, Zest Rooms, EventSpace, theSTRIP Conference Center, Audimax Conference Room, Kashmir Conference & Banqueting Centre, Basford Hall Confernce Centre, Jewellery Quarter Conference Centre, Museo dei Navigli, CCTvenues South Quay, Mariaholm kurs- og konferansesenter, Lake Doniphan Conference & Retreat Center, Mercedes Forum, Dublin Castle Conference Centre, The Printworks, 幕張メッセ 国際会議場, Europa Convention Centre, Mas, Auditorium Vittorio De Sica, Education & Research Center, 求真廳, 7AM, Zalencentrum Koningshof, Umweltforum Berlin, Akademie Berlin-Schmöckwitz, Myanmar Event Park, Crystal Grand Conference Centre, Konferenzzentrum Landhotel Krummenweg, Reed Conference Center, WOW Convention Center, M.A.C. Royal Suites Convention Center, Spazio Bigli, Auditorium, Kongress- & Kulturzentrum im Kolpinghaus St. Erhard, gate27, Buhlsche Mühle, Het Zilveren Schor, Eurogress, ExCeL, bcc berlin congress center, Internationales Congress Center, Kongresszentrum (Westfalenhallen), San Jose McEnery Convention Center, South Hall, Moscone Convention Center West, Nell-Breuning Haus, Oregon Convention Center, Swissôtel Rheinpark Congress Centrum, John McIntyre Conference Centre, Santa Clara Convention Center, Messe Graz, MAGMA Art & Congress Center, William A. Egan Civic & Contention Center, Trent Vineyard Conference Centre, Kongresshalle am Zoo, Monona Terrace Convention Center, Gerry Weber Event & Convention Center, Villa Sell, Conferentiecentrum de Hoorneboeg, Tucson Convention Center, Parc des Expositions, Buena Vista (estate), Palaterme, Wiston House, Americahal, Château Royal, Espace Chevreul, Espace CAP 15, Rai - Europahal (1-5), Woudschoten, Lutfi Kirdar, Palazzo dei Congressi, The Derby Conference Centre, Forum du technopôle, Centre des Congrès, Palais des Congrès, Cobb Galleria Centre, Bingemans Conference Centre, The Glen Ivy Center, Mackillop House and Conference Centre, Centro de Convenciones ATLAPA, Schloss Marbach, New Bingley Hall, Maxima Forum, Las Cruces Convention Center, ABG Tagungszentrum, Lufthansa Training & Conference Center, Espace Tête d'Or, Cité Internationale des Congrès de Nantes, Congress Center Wart, Hermes, Calgary TELUS Convention Centre, قصر المؤتمرات, Arlington Convention Center, Jolie Ville International Congress Center, ศูนย์ประชุมนานาชาติฉลองสิริราชสมบัติครบ ๖๐ ปี, The Ammerdown Centre, Centre de Congrès Pierre Baudis, Kampala Serena International Conference Centre, Congresspark Igls, Moscone Convention Center South, Centre de congrès Le Manège, Le Manège, Oslo Kongressenter / Folkets Hus, De Rederij, Margate Conference Centre, Saint John's Mill, Akademie Berlin-Schmöckwitz, Salle de Prince, ICC London, Burwell House, Tagungszentrum Haus Hessenkopf, Edmonton Exposition & Conference Centre, McLean Estate, Congress Center Wörthersee, Palais des Congrès de Marrakech, Congresszentrum ZEHNERHAUS Bad Radkersburg, Padiglione Fiera di San Donà di Piave, Järvenpää-talo, Blackbrook House, Kongress- und Theaterhaus, Schloss Marbach, Villa Vera, Centro de Convenções de Curitiba, Ruidoso Convention Center, Blekenpoort, Kasteel van Groenenberg, SwissTech Convention Center, Qendra e Kulturës Rexhep Mitrovica, Palazzo Congressi Lugano, Gutsbetrieb Rehhütte, Qatar National Convention Center, Conference Centre (DoubleTree by Hilton Hotel), Agora, Tournai Expo, Kloster Banz, Recinto Feiral IFEVI, Vaughan Estate, Chiesa di San Francesco, Thermenland Congress Center, The Abbey, Maaltebruggekasteel, Singapore Expo, Santissima Annunziata dei Servi, Changi Exhibition Centre, Bahrain International Exhibition Centre, Genting International Convention Centre, Evangelische Akademie Loccum, Wartenberg OVAL, New Dock Hall, Chiesa del Suffragio, Palazzo dei Congressi, Geelong Conference Centre, Københavns Kulturcenter, Chiang Mai International Convention and Exhibition Centre, Convention Centre, 金光會展 Cotai Expo, National Metalforming Centre, ศูนย์ฝึกอบรมงานอภิบาล บ้านผู้หว่าน, Croydon Conference Centre, High Country Conference Center, Nicholas J. Pirro Convention Center, Caniçal Conference Room, Caniçal Conference Room, Persada International Convention Center, UIC Forum, Сава центар, Auditório Elis Regina, Palácio das Convenções, Team Talk Conference Venue, Chalet De Hamer, Centro de Convenções Ribeirão Preto, Expo Vale Sul, UCLA Lake Arrowhead Conference Center, Kalyana Mantapa, Saratoga Springs City Center, Campus "Schloss Gracht" der European School of Management and Technology (ESMT), TD Convention Center, Centro de Convenções Pereira Alvim, Cherwell Centre, Haus Haard, Koʻolau Ballrooms & Conference Center, Kronlund kursgård, McCracken Park, Tradex, Pavelló de Suècia, Folha Verde, Forum Gesundheit, Strelley Hall, River Lodge Conference Center, Shared Visions Retreat Center, Centrum Szkoleniowe Pałac Pietronki, The Chateau, Complexo Expoville, Istanbul Kongre Merkezi, Kasteel de Hooge Vuursche, Engelbrektstunet, The Devonshire, Evenementenhal Timmerfabriek, Wallace Space, De Bronckhorst Hoeve, Dar il-Ħanin Samaritan, Moscone Convention Center Ballroom, San Micheletto, Congress Centrum Alpbach, Kiah Ridge Christian Conference Centre, Domaine des Fontaines, Kursaal Bad Cannstatt, Elbehof, Regent Centre, Centre de Congrès Prouvé, Gillis Centre, Pivot Point Conference Center, BayKomm, MICX, Green Lake Conference Center, Campus "Schloss Gracht" der European School of Management and Technology (ESMT), Westwood Conference Center, Mercator, Riocentro, Talaris Conference Center, Indiana Convention Center, De Witte Hoeve, Prime F. Osborn III Convention Center, Centre International de Conférences Mohamed VI, מרכז הירידים, Salle de conférence Blida, Princess Hall, Auditório Brasílio Itiberê, Internationals Forum Burg Liebenzell, Gala Convenciones, Palais des Congrès - CICP, Greenville Convention Center, Chiesa di San Romano, Convention Center, DeKoven Center, Golf View Hotel, Myanmar Conference Center (MCC), Ramada Conference Centre, Enoch Beckford Auditorium, سالن همایش هتل امیرکبیر, Villa Soludden Hotel & Konferens AB, Auditorium, Auditori Axa, Salle de conférence, Palácio dos Congresso, Resource For London, Alexandra Park Conference Centre, Mont de la Salle, Apollo Convention Centre, SchönkirchSaal, Victoria Conference Centre, Yllan, Haus der bayerischen Landwirtschaft, Kosmos, World Trade Center Istanbul, Skelton Conference Center, Salone delle Fontane, Jaarbeurs, KÜKOM, Estrel Convention Center, 札幌コンベンションセンター (Sapporo Convention Center) +61.503954781257946 +48.8740289 2.3897101, 48.8550706 2.3730736, 48.8646989 2.3689158, 48.8437369 2.3894678, 48.8270785 2.3688229, 48.8855550 2.3755636, 48.8447404 2.3092568, 48.8468100 2.3418230, 48.8621754 2.4002743, 48.8429214 2.3381927, 48.8385482 2.2902657, 48.8483679 2.3757997, 48.8515538 2.2912722, 48.8435721 2.3826812, 48.8321025 2.3445967, 48.8678917 2.3455591, 48.8571922 2.3907193, 48.8358959 2.4026305, 48.8818036 2.3371365, 48.8931394 2.3284963, 48.8816458 2.3735588, 48.8770752 2.3509789, 48.8395423 2.2779531, 48.8567897 2.3722474, 48.8462660 2.3758720, 48.8459472 2.3821633, 48.8281746 2.3563344, 48.8522672 2.3651848, 48.8540035 2.3861535, 48.8525882 2.3137384, 48.8781276 2.3695316, 48.8585959 2.3511475, 48.8415554 2.3495472, 48.8796085 2.3717349, 48.8649421 2.2829335, 48.8586380 2.4010221, 48.8617906 2.3644522, 48.8638547 2.3716199, 48.8524891 2.3411126, 48.8311385 2.3277925, 48.8733365 2.3827708, 48.8662126 2.3704884, 48.8753860 2.3565969, 48.8339736 2.3449922, 48.8754265 2.3508345, 48.8289297 2.3232934, 48.8751019 2.3516602, 48.8736251 2.3348722, 48.8698963 2.3608687, 48.8829303 2.3343538 +McDonald's, KFC, Quick, Burger Spot, Joe Allen, Big Fernand, King Marcel, Happy Days Dinner, American Bistrot, Club des 5, Organisation des Burgers Unis, De Clercq, Burger King, IT Rocks, Danny Hills, McDonald´s, Le Petit Marcel, HD Diner, Brooklyn Café, Royal food, Kool Too, Pépé Santana, Allen's Market, L'Escale des Gobelins, Imime, Way Burger, Latin Food, Bioburger, Hamler's, VG, Pdg Rive Gauche, New-York à Paris, Petit Gaston, Burgers Bar Manin, Burgerim, Tata Burger, Hank, Moutarde Street, Blend, Mamie Burger, Maison Burger, East Side Burgers, Le Mal Barré, Cantine California, Mobster Diner, Paris New York, Blend Hamburger, Paris New-York, Big Burger, Clint, Big Fernand "Poissonnière", Meal Time, Factory & Co, Floors, Fresh & Pop, Boom Burgers, L'Artisan du Burger, Breakfast in America, Le Spécial Sandwicherie, bioburger, Bagelstein +no +St. Michael, St. Vitus, St. Bonifatius, St. Johannes, Sankt Anna, St. Teresa Kirche, St. Marien, St. Laurentius, Sankt Peter +37 +no +1 +yes +21 and 48.8348588 2.3273891, 48.8452357 2.3490360, 48.8418339 2.3497835, 48.8752025 2.3376055, 48.8446176 2.3491298, 48.8529435 2.3456985, 48.8528864 2.3462159, 48.8531271 2.3452514, 48.8530349 2.3453279, 48.8531460 2.3451752, 48.8528383 2.3461107, 48.8528174 2.3454656, 48.8526936 2.3454400, 48.8526255 2.3453560, 48.8715853 2.3272917, 48.8770340 2.3271360, 48.8765381 2.3785538, 48.8342025 2.3183393, 48.8785190 2.2893290, 48.8598965 2.3075931, 48.8702796 2.3656790 +99 +yes +55.9676146 -3.1851220, 55.9389497 -3.1762486, 55.9342639 -3.1910771, 55.9468366 -3.1927193, 55.9242098 -3.2136549, 55.9267237 -3.2541012, 55.9526315 -3.2227477, 55.9543654 -3.2231640, 55.9545272 -3.4038103, 55.9848485 -3.4000740, 55.9895563 -3.3951093, 55.9138101 -3.1625880, 55.9139003 -3.1561271, 55.9311802 -3.1650916, 55.9494846 -3.2921322, 55.9535070 -3.1763750, 55.9591815 -3.2287132, 55.9369214 -3.2287710, 55.9293858 -3.1242296, 55.9546952 -3.1369685, 55.9449272 -3.0905058, 55.9265280 -3.1510008, 55.9668042 -3.1974105, 55.9263848 -3.3788125, 55.9776103 -3.2998329, 55.9696978 -3.1493775, 55.9540379 -3.1861370, 55.9719475 -3.1703032, 55.9456846 -3.1922146, 55.9631419 -3.1680076, 55.9534792 -3.1860301, 55.9242973 -3.3802986, 55.9399663 -3.2242828, 55.9577753 -3.1497155, 55.9684461 -3.1977309, 55.9534894 -3.1860583 +13 +48.8210997 2.3589704, 48.8791473 2.3474694, 48.8645853 2.3050980, 48.8367928 2.3780749, 48.8188321 2.4576115, 48.8323659 2.2806907, 48.8608636 2.4139162, 48.8857931 2.2880907, 48.8964346 2.3097184, 48.8899579 2.3961548, 48.8235224 2.3100404, 48.8543067 2.2543634, 48.8220232 2.3795780, 48.8537201 2.3564387, 48.8658546 2.3540003, 48.8664342 2.2684904, 48.8260164 2.2988457, 48.8976500 2.3315770, 48.8374241 2.3354339, 48.8162364 2.3612816, 48.8264133 2.3883667, 48.8459982 2.4143565 +Forstquelle, Turnerbrunnen, Drei Eichen Brunnen, Schneeberg, Kalkbrunnen, Römerbrunnen, Schellwiesenbrunnen, Brunnen, Lindenbrunnen, Kolonialbrunnen, Brunnen, Silberbrunnen, Kühbrunnen, Brunnen, Brunnen, Brunnen am Forsthausweg, Hurenbrunnen, Todtenbronnen, Märzenbrunnen, Zollstockbrunnen, Zwölfröhren-Brunnnen, Mümling-Quelle, Vögele Brunnen, Michaelsbrunnen, Finkenbach-Quelle, Buchbrunnen, Hesselbrunnen, Friedrichsfeld 9, Lustbrunnen, Brunnen, Brunnenberg, Münchelbrunnen, Quelle beim Hasselbacherhof, Siegfriedsbrunnen Odenheim, Trinkwasserbrunnen, Brunnen, Heiligenbrunnen, Bittersbrunnen, Strangwasenbrunnen, Hellenbachbrunnen, Felsenquelle, Waldquelle, Sachswegbrunnen, Lambertus Quelle, Dorfbrunnen Schwanheim, Kerles Brünnela, Gundelsbrunnen, Dorfbrunnen Igelsbach, Igelsbach, Friedrichsfeld 3, Friedrichsfeld 4, Friedrichsfeld 5, Friedrichsfeld 6, Friedrichsfeld 8, Friedrichsfeld 7, Rehberger-Brunnen, Friedrichsfeld 1, Himmelreichbrunnen, unterer Homrichsbrunnen, oberer Homrichsbrunnen, Katzenbuckel, Matzenbrunnen, Krämersbrunnen, Benzbrunnen, Klemmertsbrunnen, Aalsbrunnen, Toten-Brunnen, Steingrundquelle, Fieberbrunnen, Leonhardsbrunnen, Raubacher Höhe, Dorfbrunnen Falken-Gesäß, Berndsbrunnen?, Dorfbrunnen Affolterbach, Tromm, Rumpels-Brunnen, Der kalte Brunnen, Hirschquelle, Günther-Fischer-Brunnen, Quellgebiet, Braun-Quelle, Wildschweinsuhle, Birken-Brunnen, Queckbrunnen, Mausbach-Quelle, Bergbrunnen, Burgbrunnen, Simonsbrunnen, Erlbrunnen, Unterdorfbrunnen, Hirschquelle, Krösselbachbrunnen, Römerbrunnen, Quelle Kreiswald, Schwarzbach, Quellgrotte, Stockbrunnen, Schmidt'sche Quelle, Felsenmeerquelle, Moselbrunnen, Siegfriedquelle, Hanselmannquelle, Karlsbrunnen +55.9639501 -3.1781151, 55.9523973 -3.1135883, 55.9693974 -3.1688986, 55.9437865 -3.2070130, 55.9438638 -3.2042286, 55.9420724 -3.1830370, 55.9388335 -3.2261405, 55.9339381 -3.2444011, 55.9527430 -3.1112742, 55.9518191 -3.1796232, 55.9320745 -3.1417518, 55.9313181 -3.1303585, 55.9352154 -3.1201411, 55.9329818 -3.1292200, 55.9321093 -3.1290377, 55.9406530 -3.1200541, 55.9411796 -3.1490731, 55.9502539 -3.1026200, 55.9154139 -3.1309189, 55.9454192 -3.1860553, 55.9405307 -3.2034601, 55.9365535 -3.2275015, 55.9340559 -3.2236225, 55.9401987 -3.2253095, 55.9486925 -3.2000899, 55.9455169 -3.1830207, 55.9441448 -3.1847026, 55.9421481 -3.1863693, 55.9456704 -3.1811258, 55.9471924 -3.1824888, 55.9494705 -3.1908525, 55.9720494 -3.1705517, 55.9476459 -3.1911817, 55.9487698 -3.1941172, 55.9634606 -3.1955565, 55.9391251 -3.2281034, 55.9582182 -3.2036684, 55.9727547 -3.1780159, 55.9409940 -3.2083656, 55.9590395 -3.2250691, 55.9782443 -3.2238463, 55.9759267 -3.2278467, 55.9762144 -3.2241714, 55.9758198 -3.2323187, 55.9755242 -3.2379423, 55.9713618 -3.2381377, 55.9342134 -3.1931270, 55.9460286 -3.2404520, 55.9381098 -3.2348474, 55.9379531 -3.2328868, 55.9472861 -3.2368167, 55.9494588 -3.2105702, 55.9133249 -3.1612586, 55.9142971 -3.1556634, 55.9171791 -3.1532719, 55.9500443 -3.2064738, 55.9496257 -3.2051212, 55.9408721 -3.1764189, 55.9330250 -3.1771210, 55.9507312 -3.1855926, 55.9307609 -3.1718826, 55.9569821 -3.1821503, 55.9626698 -3.1983142, 55.9603211 -3.2068531, 55.9540576 -3.1958653, 55.9704929 -3.2090204, 55.9601680 -3.2197965, 55.9598888 -3.2183399, 55.9703510 -3.2139529, 55.9535907 -3.2152565, 55.9686240 -3.1672832, 55.9798183 -3.1971210, 55.9192157 -3.2122153, 55.9606718 -3.1730123, 55.9650977 -3.2490516, 55.9397056 -3.2127147, 55.9732423 -3.2016374, 55.9759995 -3.1829955, 55.9754091 -3.1820511, 55.9511780 -3.2054975, 55.9613846 -3.1948052, 55.9345857 -3.2096226, 55.9699623 -3.1737095, 55.9357275 -3.1903213, 55.9547210 -3.2212015, 55.9473906 -3.2162109, 55.9352870 -3.1783681, 55.9731449 -3.1689705, 55.9450514 -3.2016119, 55.9650479 -3.1970021, 55.9243235 -3.2086509, 55.9346014 -3.2004344, 55.9543261 -3.2217641, 55.9486145 -3.2162817, 55.9528881 -3.2263328, 55.9582523 -3.2523289, 55.9432425 -3.1906832, 55.9488571 -3.1936393, 55.9560692 -3.1878858, 55.9303733 -3.2059396, 55.9366554 -3.1786652, 55.9345092 -3.2106395, 55.9482972 -3.1955031, 55.9381433 -3.2071955, 55.9606265 -3.1353494, 55.9567662 -3.1885665, 55.9432337 -3.2014907, 55.9466336 -3.1922732, 55.9222605 -3.1522385, 55.9496587 -3.1844840, 55.9510003 -3.1870928, 55.9608626 -3.1709548, 55.9618365 -3.1669617, 55.9617695 -3.1672858, 55.9617360 -3.1670315, 55.9617015 -3.1669427, 55.9405277 -3.1801470, 55.9400777 -3.1787980, 55.9335147 -3.2105462, 55.9572610 -3.1292522, 55.9646922 -3.1748195, 55.9432391 -3.1903888, 55.9433282 -3.1904322, 55.9703296 -3.1739116, 55.9307308 -3.2218236, 55.9300070 -3.2100099, 55.9376647 -3.1916804, 55.9579672 -3.1722775, 55.9602448 -3.1936078, 55.9717749 -3.2052312, 55.9523026 -3.1084645, 55.9525780 -3.1112458, 55.9363713 -3.1696721, 55.9264430 -3.1844698, 55.9587885 -3.1546390, 55.9788585 -3.2108165, 55.9506930 -3.1088900, 55.9517967 -3.1154047, 55.9520692 -3.1167114, 55.9305995 -3.2393193, 55.9659941 -3.1740971 +49.3882490 8.6574483 +49.4311045 8.6454842 +Ibis +12 +0.65777548492132099 +142 +Plumed Horse +118 +milestone, castle, monument, tomb, yes, memorial, boundary stone, wayside shrine, monastery, archaeological site, tree, wayside cross, ruins, battlefield, stone, building, statue, ship, citywalls, palace, church, railway, city gate +702 +55.9509120 -3.1684417, 55.9505684 -3.1636997, 55.9409571 -3.1518694, 55.9414904 -3.1501988, 55.9414101 -3.1510969, 55.9303650 -3.2001800 +25 +fuel, post office, library, bicycle rental, school, restaurant, fire station, parking, post box, police, place of worship, toilets, bank, cinema, courthouse, fountain, drinking water, parking entrance, hospital, bar, nightclub, cafe, pub, pharmacy, theatre, wine bar, internet cafe, yoga studio, marketplace, bus station, dojo, motorcycle parking, telephone, public building, fast food, arts centre, bicycle parking, atm, swimming pool, recycling, dentist, doctors, taxi, concert hall, car sharing, veterinary, bench, community centre, car rental, kindergarten, photo lab, bureau de change, videoclub, nursery, childcare, clock, waste basket, social facility, ice cream, yes, townhall, vending machine, university, ferry terminal, boat rental, car wash, gallery, embassy, parking exit, college, job centre, medical centre, clinic, driving school, conference centre, mode, association, auctioneer, studio, shelter, shower, luggage locker, public office, dancing school, podologist, laboratory, gym, storage, youth centre, money transfer, coworking space, food court, lift, nurse, logopedia, kinesiotherapy, parking space, publisher, teahouse, social centre, orthopedic, psychiatrist, couture, bbq, spa, hammam, nursing home, jobcentre, healthcare, charging station, training center, shooting stand, congress, music school, physiotherapy, vehicle inspection, vehicle impound, nusery, photo booth, training, personal service, fablab, medical laboratory, animal welfare, piano lessons, shisha, cash machine, shisha bar, ticket validator, photobooth, table, animal boarding, relay, point chaud, piano, stripclub, swingerclub, sauna, laverie, cafee, shop, post pickup, hydrant, photo development, printer, showcase, heater, exhibition centre, events venue, authority, small parking, monastery, basin, hotel, convention center, retirement home, prison, waste disposal, bandstand, rectory, zen zone, first aid +yes +chaplin.cine.allocine.fr/ +44.4762673 26.0650936, 52.3419560 4.8884198, 47.5648154 7.6041148, 40.9878141 28.8267872, 55.7997378 37.6744694, 50.1291996 14.5140779, 59.9299585 30.2347504, 50.1065728 14.4298460, 46.2344033 6.1191983, 55.7512809 37.5458828, 52.0852238 5.1034819, 51.4962294 -0.2105575, 47.4115517 8.5534052, 52.4537454 -1.7192851, 60.2028616 24.9357840, 50.1972322 14.8405310, 45.7804423 15.9722189, 40.4662912 -3.6180811, 41.6293201 -0.9783152, 55.8270697 37.3888280, 38.7717013 -9.0939605, 39.5038168 -0.4281651, 50.4522017 30.5913186, 56.9551557 24.0790816, -0.0331119 -78.4526172, 42.1578609 24.7561304, 48.2150664 16.4102502, 33.4271992 36.3930966, 59.9507849 11.0536074, 52.2255345 20.9620721, 49.1880303 16.5783047, 41.3719798 2.1510159, 62.2390150 25.7588750, 42.6491451 23.3953987, 41.0262679 28.6226937, 41.3550826 2.1327049, 59.2787390 18.0162937, 50.8999448 4.3388480, 50.8994369 20.5859248, 48.1343139 17.1003935, 47.4323875 9.3839277, 47.4091496 9.7104793, -1.6693364 -78.6675059, 49.1885627 16.5704062, 55.8340343 37.6272113, 47.4936644 19.1268888 +1.184341147633696 +no +52 +Idara Taleem ul Quran, Edinburgh Central Mosque, IQRA Academy, Mohiuddin Jamia Masjid & Education Centre, Anwar-E-Madina +yes +78.547289164168262 +yes +55.9566271 -3.2720552, 55.9418294 -3.1502506, 55.9201209 -3.2500686, 55.9232770 -3.2473521, 55.9256887 -3.2299616, 55.9216082 -3.1959071, 55.9190764 -3.1843258 +164 +49.4152724 8.7089320, 49.4152263 8.7091544, 49.4136480 8.7107879, 49.4137160 8.7131886, 49.4043662 8.6769558, 49.4042794 8.6767159, 49.4043928 8.6767032, 49.4040938 8.6777606, 49.4041378 8.6780055, 49.4041963 8.6783706, 49.4078625 8.6803507, 49.4079068 8.6803518, 49.4079624 8.6851808, 49.4084050 8.6884254, 49.4084670 8.6883986, 49.4111209 8.7057655, 49.4130422 8.7053701, 49.4132415 8.7055842, 49.4133567 8.7058522, 49.4055633 8.6828676, 49.4049949 8.6822918, 49.4129282 8.7027762, 49.4090720 8.7054522, 49.4069337 8.6900774, 49.4088905 8.7053904, 49.4092125 8.7080457, 49.4095401 8.7091480, 49.4133887 8.7086161, 49.4124611 8.7128500, 49.4114089 8.7119309, 49.4112162 8.7113846, 49.4005092 8.6783953, 49.4016334 8.6747771, 49.3998313 8.6768307, 49.4064011 8.6905312, 49.4042522 8.6786859, 49.4038577 8.6765425, 49.4047148 8.6787123, 49.4050422 8.6812130 +www.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, http://rhein-neckar.stadtmobil.de/, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, www.stadtmobil.de, www.stadtmobil.de, http://rhein-neckar.stadtmobil.de/, https://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de/, https://rhein-neckar.stadtmobil.de, http://rhein-neckar.stadtmobil.de, https://rhein-neckar.stadtmobil.de, http://www.stadtmobil.de +Gaumont Aquaboulevard, Gaumont Parnasse, UGC Rotonde, UGC Montparnasse, Les Montparnos, Gaumont Miramar, Le Bretagne, Cinéma Chaplin, Gaumont Convention, Sept Parnassiens, Le Champollion, Reflet Médicis, UGC Gobelins, Les Fauvettes, MK2 Odéon, MK2 Nation, MK2 Beaubourg, L'Escurial, La Clef, La Filmothèque du Quartier Latin, UGC Ciné-cité Bercy, L'entrepôt, UGC Lyon Bastille, Cinéma la Bastille, Majestic Bastille, Le Panthéon, Accattone, Cinéma des cinéastes, Studio Galande, Le Nouveau Latina, Gaumont Opéra Premier, Le Grand Rex, Studio des Ursulines, Le Saint-Germain des Prés, L'Arlequin, Cinéma Gaumont Champs-Elysées Marignan, Cinéma Gaumont Champs-Elysées Ambassade, Le Lincoln, UGC Odéon, UGC Danton, Cinéma Louis Lumière, Gaumont Opéra Français, Studio 28, Le Desperado, Le Grand Action, L'Épée de Bois, Espace Saint-Michel, Le Beverley, Nouvel Odéon, Cinéma Saint-André des Arts, Les 3 Luxembourg, Action Christine, Saint-Lazare Pasquier, 5 Caumartin, Max Linder Panorama, UGC George-V, Le Balzac, Publicis Cinémas, UGC Normandie, Le brady, MK2 Bastille, L'Archipel, UGC Maillot, Cinéma Le Denfert, Cinema Mac Mahon, Majestic Passy, Gaumont Alésia, UGC Ciné-Cité Les Halles, Pathé Beaugrenelle, Pathé Wepler, UGC Opéra, 7 Cinemas, Mk2 Hautefeuille, MK2 Bibliothèque, Le Louxor, MK2 Quai de Loire, MK2 Quai de Seine, Le Cinaxe, Géode, La Pagode, Gaumont Opéra Capucines, MK2 Gambetta, Pathé Wepler, Fondation Jérôme Seydoux-Pathé, Etoile Lilas, UGC Ciné Cité Paris 19, Forum des Images, Cinéma 1, Cinéma 2 +0 +Centre de Loisirs Antoine Riou, Gulli Parc, Nautic Park, Jardin d'Acclimatation, Aquaboulevard +yes +49.4122875 8.7109014, 49.4274974 8.6861291, 49.4255146 8.6476417 +24 +48.8318676 2.2884097 +Sodetrel, Sodetrel, Autolib, Autolib +no +53.9441501 -1.1072575 +292 +Hôtel Louvre Bon Enfants, Hôtel Paris Rivoli, Le Petit Chomel, Tryp Hôtel Paris François, Hôtel Val Girard, Hôtel Cluny Square, Relais du Pré, Hôtel du Pré, Résidence du Pré, Au Manoir Saint-Germain des Prés, Hôtel Prince Albert, Ibis, Hôtel Kyriad, Hôtel Plaza Élysées, Terminus - Lyon, Hôtel Alexandrie, Hôtel Dacia, Hôtel Victoria Châtelet, Hôtel Britannique, Hôtel Louvre Saint-Anne, Hôtel France d'Antin, Le Jardin de Cluny, Folkestone Opéra, Sydney Opéra, Hôtel du Plat d'Étain, Hôtel de la Paix République, Austin's Arts et Métiers, Hôtel du Rond-Point des Champs-Élysées, Timhotel Élysée, Hôtel Berne Opéra, Hôtel Exe Paris Centre, Grand Hôtel du Havre, Les Dames du Panthéon, Hôtel Mercure Paris Gare du Nord La Fayette, Hôtel Acte V, Villa des ambassadeurs, Hôtel Résidence Foch, Hôtel Elysa-Luxembourg, Queen's Hôtel, Ambassadeur, Jules Cesar, Hôtel Notre-Dame, Hôtel Moderne Saint-Germain, Hôtel Sully Saint-Germain, Hôtel Ronceray, Les Relais de Paris, William's Opera, Élysée, Grand Hotel Haussmann, Hôtel Helder Opera, Hôtel Opera Vivaldi, Baudelaire, Alison, Opéra D'Antin, Plaza Opera Hotel, Villa Lamartine Opéra, Hôtel Impérial, Hôtel Ibis Paris Sacré-Coeur, Hôtel des Arènes, Hôtel de Sévigné, Hôtel Terminus Montparnasse, Hôtel des Arts, Palma Hotel, Windsor Opera, Ideal Hotel, Porte de Versailles Hotel, Hôtel Median Paris Porte de Versailles, Hôtel Virginia, Quality Suites, Grand Hôtel Dechampaigne, Cordelia, Jardin de Villiers, Pavillon Villiers Étoile, Europe - St Séverin, Hôtel Saint-Charles, Hôtel de la Paix, Hôtel de France, Hôtel de l'Alma, Fertel Maillot, Hôtel CÉ, Grand Hôtel de Normandie, Hôtel du Calvados, Austin's Saint-Lazare, Austin's Saint-Lazare, Hôtel Villa Garibaldi, Académie Hotel, Le Richemont, Hôtel du Triangle d'Or, Hôtel Noir, Ibis Paris Tour Montparnasse, École centrale, Hôtel Central Saint Germain, Hôtel du Midi, Hôtel Sophie Germain, Hôtel Saint-Germain-des-Prés, Saint Pétersbourg, Hôtel Arc Élysée, Hôtel Brésil Opéra, Hôtel Abrial, Hôtel Amiral Fondary, Hôtel Alyss, Pavillon Porte de Versailles, Tonic Hotel, Le Relais des Halles, Europe Hotel, Timhotel Palais Royal, Le Compostelle, Hôtel Provinces Opéra, Hôtel Hauteville Opéra, Mercure Paris Opera Grands Boulevards, Hôtel des comédies, Hôtel Albert 1er, Hôtel La Parizienne, Paix Madeleine, Hôtel Cervantes Paris, Axel Opéra, Hôtel du Leman, Hôtel Royal-Bergère, Hôtel Caumartin, Le Cardinal, New Hotel Opera, ATN Hôtel, Excelsior, Hôtel Touring, Hôtelp Chateaudun Opéra, Monterosa, Hôtel Touraine Opera, Super Hotel, Art Hôtel Congrès, Ibis Gare De Lyon Diderot, Hôtel Claret, Hôtel Ambre, Hôtel Ibis Italie Tolbiac, Ibis Styles Tolbiac Bibliothèque, Royal Fromentin, Hôtel Mercure Paris XV, Hôtel Montparnasse Alésia, Hôtel Acropole, Hôtel Balmoral, Hôtel Belfast, Hôtel La Régence, Hôtel Stella Etoile, Est Hôtel Paris +48.8316492 2.2999377, 48.8633521 2.3710595, 48.8615468 2.3727192, 48.8648587 2.3516262, 48.8660165 2.3525131, 48.8630663 2.3527335, 48.8256825 2.3151865, 48.8250160 2.3112381, 48.8279762 2.3057040, 48.8282568 2.3034035, 48.8636772 2.3510372, 48.8658631 2.3695102, 48.8610722 2.3670951, 48.8655959 2.3652444, 48.8655010 2.3522216, 48.8613680 2.3530523, 48.8626723 2.3594550, 48.8600506 2.3607005, 48.8649717 2.3601088, 48.8648944 2.3762643, 48.8252648 2.3158680, 48.8262191 2.3053681, 48.8320219 2.3028314, 48.8255813 2.3041840, 48.8582183 2.3633569, 48.8227669 2.3087009, 48.8215858 2.3017380, 48.8593542 2.3719793, 48.8636107 2.3663132, 48.8614056 2.3545336, 48.8662415 2.3650038, 48.8279457 2.3056505 +DRK Bereitschaft Heidelberg Stadt-Mitte, DLRG Rettungswache Neckarvorland +yes +Marakesch +192 +(0131) 557 3032 +06221-434441 +École maternelle, École maternelle, Crèche collective Philippe de Girard, Halte-garderie, Crèche Parentale Capucine et Papillon, Crèche collective Clisson, École maternelle Piver, Crèche de l'Étoile, École maternelle, École maternelle Charles Hermite, École maternelle privée Le Petit cours du Rocher, École maternelle, École maternelle Hôpital Saint-Louis F, École maternelle, Crèche Collective Hutinel, Crèche Georgette Agutte, Crèche Bernard Dimey, École maternelle Réunion, Crèche La Fée Tiphaine, Crèche municipale, Halte garderie, Crèche collective, École maternelle Télégraphe, Crèche de la Plaine, Halte Garderie Municipale, Crèche de la Croix Rouge, Crèche collective, Crèche Charlemagne, École maternelle Merlin, Crèche collective municipale, Crèche Collective, Crèche collective Delessert, Crèche Collective, Crèche au gazouilli du val, Crèche collective et halte garderie, Crèche Lobineau, École maternelle Émélie, Creche Grenadine et Menthe a l'eau, Crèche Collective, Crèche Pelée, Crèche collective, Crèche CNAVTS, École maternelle du Clos, École maternelle, Koko Cabane, École maternelle Carnot, École maternelle Daumesnil D, Crèche collective, Halte-garderie, Un gavroche en vadrouille, École maternelle Brantôme, Crèche Beaujon, Crèche Collective Municipale Monceau, La Cabane Des Bambins, enfance en couleurs, École Maternelles Internationale Les Petits Dragons, École maternelle, École maternelle, École maternelle, Les Malicieux de Lafayette, École maternelle, École Maternelle, École maternelle, Crèche Bleue, École maternelle Littré, Crèche Collective Municipale Barrault, École maternelle Fontarabie, Crèche Pierre-Bourdan, École maternelle Chardon-Lagache, Crèche Municipale Hauteville, Crèches et halte-garderie, Crèche Les Petits Chaperons Rouges, École maternelle 68 Vitruve, Crèche collective, École maternelle Écluses Saint-Martin, École Maternelle Boy-Zelinski, Crèche Municipale, Crèche Collective, Crèche, École Maternelle Lyonnais, École Maternelle Lachambeaudie, Crèche Associative Vandrezane, Crèche, École maternelle Piat, École maternelle, Crèche, École maternelle Pierre Budin, École maternelle Marcadet, École maternelle, École maternelle Saint-André des Arts, École maternelle, Crèche collective, Crèche Municipale, École Maternelle Lahire, Halte-Garderie, École maternelle du Département, École maternelle Pommard, Crèche Collective Municipale, École maternelle Jourdain, École maternelle du Département, École maternelle Georges Thill, École maternelle Pelleport, École maternelle Bois, École maternelle 61 Vitruve, École maternelle 9 Lesseps, École maternelle Traversière, École maternelle Jacques-Hillairet, Crèche, École maternelle Albert Bigielman, École maternelle Cendriers, École maternelle Palestine, École maternelle Bidassoa, École maternelle Olivier Métra, École maternelle Voltaire W, École maternelle Saint-Germain L'Auxerrois, École maternelle Bullourde, Crèche municipale +84 +viewpoint, hotel, museum, attraction, picnic site, information, artwork, chalet, guest house, hostel, zoo, gallery, camp site, theme park, citytour +3646 +no +french, indian, mexican, pasta, chinese, thai, regional, vietnamese, japanese, couscous, grill, belgian, italian, arab, international, pizza, canadian, New-french, libre, corsican, american, sichuan, Lanzhou, lebanese, peruvian, sushi-yakitori, asian, crepe, sushi, kebab, Sushi-yakitori, shandong, traditional, Sardaigne, steak house, iranian, mediterranean, seafood, korean, latin american, Lao, spanish, burger, moroccan, algerian, Bistrot gastronome, sandwich, gastronomic, jewish, bagel, polish, argentinian, tibetan, morrocan, vietnamien-cambodgien, senegalese, kosher, Hangzhou, smart traditional, fish, brazilian, berber, greek, ivoirian, turkish, african, tapas, chineses (Teochew) - 中国潮州, Océan indien, latino, fondue, cambodian, basque, crêpe, local, maltese, chinese - Fondue pékinoise, brunch, ethiopian, crêperie, Sud-Ouest France, syrian, creole, bento, brasserie, coffee shop, magreb, malaysian, indonesian, thai fruit juces, cocktails, maghrébine, traiteur japonais, ramen, Lyonnaise, Amérique du Sud - Argentine, mongol, Cap Vert, portuguese, crepes, ukrainian, meat, lao, mauritian, salad, caribbean, Oriental Couscous, oriental, Jiangxi, international (Francaise, sud americaine), berbere, oriental couscous, colombian, classique, paella, african caribbean, new york pizza, north african, indian pakistanese, Chinese, Sichuan, armenian, ouïghour, irak, cuisine nissarde, chicken, salade, bio, cake, gluten free, seasonal, Kazakh, Russe, huoguo, russian, bistro, hungarian, colombie, mexicain, juice, grilled meat, afghan, fish and chips, balinese, laotian, Traditionnelle, Shanxi, Maison bio producteurs bols, carribean, Bistrot Branché au charme désué, Restaurant et épicerie fine grecque, vegetarian, pakistanese, indiane, Fondue and raclette, israeli, Japanese, Cupcakes, smoothies, Africaine, georgian, tunisian, organic, salon de thé, restaurant +49.4115364 8.6766566, 49.3905596 8.6743412, 49.3960051 8.6864746, 49.3960694 8.6860163, 49.4123557 8.7728324 +55.9358156 -3.2103653 +no +1 +48 +48.8769065 2.3805802, 48.8672033 2.3175552, 48.8794780 2.2911520, 48.8684023 2.3502078, 48.8662853 2.3197532, 48.8659622 2.3186038, 48.8679910 2.3372848, 48.8844724 2.3214773, 48.8848286 2.2981665, 48.8815112 2.2955182, 48.8637584 2.2404391, 48.8684582 2.2651973, 48.8652473 2.2754857, 48.8724857 2.2964468, 48.8645482 2.2749436, 48.8798361 2.2946562, 48.8867832 2.3174727, 48.8834250 2.3133443, 48.8832839 2.3261502, 48.8620110 2.2617158, 48.8590276 2.2701439, 48.8621864 2.2858577, 48.8627962 2.2854972, 48.8620791 2.2848191, 48.8844757 2.3382719, 48.8859435 2.3414431, 48.8777755 2.4052173, 48.8805089 2.3247630, 48.8795193 2.3372522, 48.8860003 2.3379474, 48.8871034 2.3395432, 48.8872913 2.3493292, 48.8849270 2.3525804, 48.8994594 2.3456310, 48.8925222 2.3614454, 48.8881990 2.3259122, 48.8670855 2.3530694, 48.8648656 2.3631280, 48.8775035 2.3271975, 48.8674954 2.3585735, 48.8718710 2.3683060, 48.8699280 2.3499165, 48.8787743 2.4087695, 48.8790383 2.4084495, 48.8782046 2.4088226, 48.8793770 2.4082476, 48.8785854 2.4080833, 48.8640823 2.3242375, 48.8649222 2.3994933, 48.8706300 2.2979200, 48.8677797 2.3773892, 48.8954660 2.3118560, 48.9006880 2.3443120, 48.8726523 2.2991152, 48.8880790 2.3433440, 48.8606880 2.2465600, 48.8817158 2.3974038, 48.8630654 2.2649414, 48.8635021 2.2620126, 48.8600697 2.3723040, 48.8963810 2.3139000, 48.8852454 2.3310516, 48.8893940 2.3388820, 48.8954560 2.3210460, 48.8778330 2.3934820, 48.8898960 2.2981300, 48.8871960 2.3058630, 48.9000019 2.3742980, 48.8599920 2.3625150, 48.8856451 2.3276786, 48.8691890 2.2731280, 48.8898369 2.3739136, 48.8951024 2.3643279, 48.8654640 2.3863600, 48.8702780 2.3853090, 48.8684460 2.3844060, 48.8743960 2.3620000, 48.8590555 2.3853281, 48.8909945 2.3180223, 48.8708487 2.3842762, 48.8808400 2.3880660, 48.8789680 2.3090890, 48.8861910 2.3437000, 48.8782185 2.2703461, 48.8649444 2.4051523, 48.8711656 2.3608619, 48.8683392 2.3860944, 48.8617560 2.2470009, 48.8876610 2.2899050, 48.8957085 2.3611060, 48.8736560 2.2651653, 48.8634236 2.2498140, 48.8715892 2.2642560, 48.8670116 2.2393588, 48.8589309 2.2291849, 48.8683594 2.2629205, 48.8728525 2.2727107, 48.8827393 2.3748215, 48.8649924 2.3911518, 48.8992390 2.3401270, 48.8814860 2.3253960, 48.8890670 2.3382500, 48.8713595 2.3858455, 48.8756264 2.3549455, 48.8940100 2.3515980, 48.8606179 2.4048647, 48.8832242 2.3300482, 48.8921127 2.3319234, 48.8783392 2.3518796, 48.8672620 2.3546160, 48.8929520 2.3468380, 48.8876110 2.3980200, 48.9001410 2.3907160, 48.8937910 2.3254410, 48.8878070 2.3168387, 48.8701720 2.3941990, 48.8954540 2.3265480, 48.8760549 2.4066379, 48.8646712 2.2945788, 48.8785620 2.3603690, 48.8656244 2.4005700, 48.8976745 2.3255573, 48.8678880 2.4110180, 48.8782870 2.3930910, 48.8687996 2.3670827, 48.8940810 2.3257310, 48.8847495 2.3583714, 48.8680920 2.3674820, 48.8749920 2.3693880, 48.8691100 2.3880580, 48.8927720 2.3393440, 48.8847394 2.3599665, 48.8708650 2.3267180, 48.8851070 2.3774500, 48.8759177 2.3199403, 48.8985920 2.3386760, 48.8766520 2.3471580, 48.8973940 2.3352610, 48.8863250 2.3533990, 48.8892960 2.3080360, 48.8937263 2.3632365, 48.8866720 2.3745570, 48.8735974 2.3763609, 48.8829640 2.2906840, 48.8865497 2.3367162, 48.8997980 2.3671430, 48.8940029 2.3839514, 48.8990940 2.3343970, 48.8737600 2.4116660, 48.8608430 2.4112060, 48.8729910 2.3967970, 48.8991980 2.3373340, 48.8670820 2.3921970, 48.8650341 2.4104986, 48.8939970 2.3494640, 48.8765790 2.3317425, 48.8861355 2.3561753, 48.8866310 2.2931960, 48.8780460 2.3546040, 48.8885760 2.3372580, 48.8682815 2.2937862, 48.8691909 2.3123689, 48.8678242 2.3628446, 48.8686720 2.3127647, 48.8671021 2.3110061, 48.8933245 2.3887800, 48.8941743 2.3916574, 48.8912248 2.3930476, 48.8946014 2.3912450, 48.8608218 2.3464552, 48.8685507 2.2728757, 48.8724483 2.2489997, 48.8687857 2.2448905, 48.8735492 2.2502871, 48.8706241 2.2491259, 48.8705077 2.2469076, 48.8729282 2.2477712, 48.8734222 2.2509255, 48.8670602 2.2431900, 48.8688615 2.2471136, 48.8668000 2.3495673, 48.8600249 2.4009571, 48.8589058 2.3989762, 48.8902559 2.3155823, 48.8895081 2.3152790, 48.8909868 2.3143418, 48.8916562 2.3142685, 48.8819047 2.3985349, 48.8590759 2.4003273, 48.8644583 2.3274519, 48.8879169 2.3153097, 48.8879452 2.3155854, 48.8914702 2.3147632, 48.8697228 2.2704730, 48.8895806 2.3929015, 48.8847068 2.3794407, 48.8643128 2.3266632, 48.8632906 2.3969375, 48.8597103 2.3998209, 48.8930154 2.3876090, 48.8815514 2.4001315, 48.8612225 2.3119810, 48.8625039 2.3009824, 48.8633424 2.3714600, 48.8880273 2.3373781, 48.8725766 2.3640561, 48.8668462 2.3528123, 48.8660061 2.3525045, 48.8764030 2.3793479, 48.8888874 2.3790640, 48.8786186 2.4075133, 48.8869922 2.3168829, 48.8629574 2.3670436, 48.8705355 2.3858494, 48.8771612 2.3641684, 48.8662716 2.4063088, 48.8774505 2.3685222, 48.8897544 2.3636094, 48.8894148 2.3633280, 48.8895729 2.3670765, 48.8950748 2.3539271, 48.8737508 2.2552546, 48.8770432 2.3607309, 48.8928183 2.3927190, 48.8854184 2.3809339, 48.8847022 2.3794239, 48.8647970 2.3376815, 48.8663182 2.3718556, 48.8736147 2.3633962, 48.8708335 2.3864170, 48.8594153 2.4063574, 48.8759892 2.3685271, 48.8640746 2.3609523, 48.8602693 2.3889177, 48.8593740 2.3653569, 48.8615941 2.3786285, 48.8648516 2.3601559, 48.8745071 2.3771328, 48.8599169 2.3845657, 48.8601631 2.3908290, 48.8623200 2.3438199, 48.8600077 2.3895038, 48.8752689 2.3614142, 48.8771084 2.3468708, 48.8601518 2.3613994, 48.8672446 2.3647755, 48.8692789 2.3666901, 48.8621089 2.3439580, 48.8623709 2.3444850, 48.8731766 2.2682180, 48.8641938 2.3374224, 48.8652237 2.3379487, 48.8628504 2.3436130, 48.8613910 2.3424070, 48.8680842 2.3631278, 48.8684000 2.3633800, 48.8818819 2.3836565, 48.8822355 2.3824751, 48.8860573 2.3439762, 48.8621822 2.3530287, 48.8592131 2.3991113, 48.8594497 2.3924686, 48.8605704 2.3967700, 48.8615389 2.3974070, 48.8620888 2.3721843 +no +49.3739107 8.6909097 +2 +yes +yes +60 +55.9509457 -3.2714871, 55.9440812 -3.1618330, 55.9230568 -3.1946835, 55.9429880 -3.1595009, 55.9455214 -3.1515881, 55.9210841 -3.2304150, 55.9174462 -3.2363371, 55.9156137 -3.1964307, 55.9480863 -3.1576318, 55.9425607 -3.1620707, 55.9525207 -3.2734605, 55.9484295 -3.2678386, 55.9542867 -3.2739969 +Café Marly, Café des Arts et Métiers, Andy Wahloo, Café Noir, Le Loir dans la Théière, Mariage Frères, Café des Phares, Café Le Lutètia, Au Petit Fer à Cheval, La Chaise au Plafond, Les Etages, Stolly's, Les Deux Magots, Café de Flore, Le café populaire, Général Beuret, L'Angle, Les artisans, L'Institut, Le Cristal, Le Babylone, Café du Passage, Pouchla, Café République, Le Murger, La Forge, Café des Dames, Le Dauphin, Les Frangins, M'Café, Café Français, Comptoir d'Issy, Les Colonnes, Sans Gêne, Le Kloog, Cafezoïde, Brasserie Tabac Saint Germain, Le Diplomate, Café Convention, Dupont café, Les Étages, Relais Odéon, Café Conti, Le Buci, Bar du Marché, Café Mabillon, Pub Gay-Lussac, Le Panthéon, Le Reflet, Le Pick Clops, Café du Trésor, Café Panis, Caféothèque de Paris, Les Philosophes, L'Etoile Manquante, Le Pause Café, Café des 2 Moulins, Café de la Musique, La Contrescarpe, Bomby's Cafe, Le Fumaillon, Chez Dudule, O'Jules, Le Calumet, La Grille, Le Crozatier, Le Penty, Le Stone, Bistrot du coin, La Liberté, Au Métro, Le Microsillon, Le Bistrologue, Le Globe Diderot, En attendant l'or, Baroudeur, Les Caves du Petit Thouars, Café Crème, Le Blanc Cassis, Rev'Bar, La Mère Pouchet, Café Indiana, Scossa, Le Duc, Le Marigny, Le Petit Village, Felix café, Edelweiss, Bercy café, Café Chambertin, La Source, Moka, Café Plaisance, Le Bouquet, Le 7ème Art, Les Cent Kilos, La terrace des metiers, Le relais Diderot, Rotana café, Les deux Savoies, Café Delmas, La consigne, Le Rossli, Le Gévaudan, L'Express de Lyon, Station Café, Le Killy-Jen, Le petit Rollin, Brasserie de l'Aubrac, Le Terminus, Caviste, Les Jardins d'Issoire, Le Canon, Le Coche, Les associés, Le Cépage Montmartrois, Cafe Français, Corso, Starbucks, Le Bar Do, Les Crocs de l'Ogre, Bistrot du Monde, La terrasse, Le Tourville, Comptoir du Sept, Colombus, Le Zinc, Starbucks, Starbucks Coffee, Le Monte Carlo, Le Cactus, Les Marronniers, Le Carrefour, La Chope, Le Championnet, L'Entracte, Le Bloc, Les Cigognes, Pomme de Pain, Saint-Claude, La Java, La Place, L'Alliance, Domremy, Au Reveil Du XVème, Tabac de la place, Le Marigny, L'Hélicon Café, Chez Alphonse, Le Bistro de Paris, Le Puits des Arts, Le Royal Beaubourg, Chez Camille, Le Zimmer, Tabac du Châtelet, Le Baltard, Le Petit Opportun, Les Deux Palais, Aux Tours de Notre-Dame, Le Quasimodo, Café Vigouroux, Sunside, Le Baiser Salé, Au Coeur Couronne, Café Rive Droite, La Promenade de Venus, Taverne Karlsbräu, Café Ruc, Louise Café, Aux Trois Maillets, bleach vintage, Le Saint-Martin's, L'Imprimerie, Brasserie de la Bourse, Café de la Comédie, Café Palais Royal, Le Zinc d'Honoré, Razowski's, Le Florentin, Les Trois Quartiers, Le Ventadour, Le Regent, Café Gramont, Virtuose Café, Le Cardinal, Le Petit Vendôme, Café du Cadran, Dédé la frite, Montmartre Café, Le Sentier, Starbucks Coffee, L'Empire Bar, Lézard Café, Café du Centre, Le Cerceau, Les Boulevards, Bistrot Marguerite, Le Cavalier Bleu, L'Excelsior, Au Métro, Le Bouquet des Archives, La Belle Ferronnière, Le Sarah Bernhardt, Trente 5 rivoli, Le Paradis, Bistrot Beaubourg, Le Relais de l'Hôtel de Ville, Le Rallye, Le Grand Cerf, L'Escurial, Double Fond, L'Arsenal, Le Sully, Fontaine Sully, Café Réveil Bastille, Le Djurdjura, AntiCafé, Le trente neuf, Le Tabac des Arts, Brioche Doree, Le Week-End, La Favorite, Le Bouledogue, Le Sancerre, La Tour du Temple, Le Progrès, Le Saint-Gervais, La Perle, Odette, La fontaine, Chez Prune, Columbus Café, Le Rostand, Le Mistral, Le Gribouille, Le Bizuth, Bistrot Lafayette, Cristal Bar, Le Jaurès, Salon de Thé de La Mosquée de Paris, Starbucks Coffee, Le Nesle, Café des Beaux-Arts, Le Bonaparte, Starbucks Coffee, Bistrot Au Petit Suisse, Le Luxembourg, Café du Nord, Le Télégraphe, News Café, Le Bistrot Landais, Le Week-End, Café Saint-Placide, Au Chai de l'Abbaye, Le Montaigne, Le Rond-Point, Le Faubourg, Le Saint-Laurent, Le Mirasol, L'Idéal Bar, Le Miro, Le Mesnil, L'Escale, Le Derby, Le Carré, La Pépinière, Sunset Café, Le Bourbon, Le Carrefour Café, Le Week-end, Le Greffulhe, Le Préfet, La Cour de Rome, Starbucks Coffee, L'Arcade Haussmann, Au Départ, L'Équipage, Terrasse Saint-Lazare, Le Royal Europe, Le Florence, Le Petit Poucet, Le Jardin de Rome, Le Select Monceau, Grand Café de la Poste, Café Percier, Riva, Le Frieland, Aux Ministères, Le Vigny, Le Madrigal, Le Fronton, Les Arcades, Le Marceau, Bert's, Au Troquet, L'Étoile 1903, Do Ré Mi, La Flamme, A Verse Toujours, café Ziem, Starbucks Coffee, Starbucks, Biclowne Cafe, La Rame, Le Cyclone, Ptit Bono, No Stress Café, Midoré, Starbucks, Dupont Café, Fish and Food Café, LG W|Café, Café Bibliothèque, Bistrôt du Canal, Le Café Prud'h, L'Est Parisien, Le Château Landon, Le 79, Le Chiquito, L'Alouette, Café Galliera, Le Newton, Comptoir de l'Arc, Café Brassac, Pub Kléber, L’Ancien Trocadéro, Le Coq, Corso, Globe Café, Café Kléber, Le Malakoff, Café du Trocadéro, Le Poincaré, Bistrot XVI, Café Victor Hugo, Le XVI, Le Touring, Sei'z Café, Le Relais de l'Étoile, Le Lamartine, Les Sablons, Château de la Tour, Café le moderne, Le Termidor Brasserie Tabac, Folie café, Café A la Fontaine, Le Dôme, La Sortie du Métro, Le Relais de la Place, Le Jardin, Le Havane, Le Capétien, Le Relais des Sablons, Le Caféier, Le Louis Blanc, Le Bastringue, Le Narval, Lou pintou, La Marquise, Chin Chin, Le Mozart, Royal Village, Royal VI Nation, Au Canon de la Nation, Le Départ Saint-Michel, Le Chat Bossu, L'Escale, Le Balto, Le Notre-Dame, Café Juliette, Les Tramway de l'Est, Café Pasteur, Le Dorian, L'Avenue, Le Préaumur, Le Bac Saint-Michel, L'Île de France, Le Gay-Lussac, Le Royal, Café aux Marsouins, Le Taiyo, Le Café Saint-Médard, Au Rendez-Vous du Marché, La Montagne, Le Descartes, Dans les Landes, Le Commerce, Le Montmartre, Café Léa, Le Mastroquet, Richelieu, Café Mollien, Mucha Café, Le Chiquito, Le Remontalou, Le Michelet, Le Royal Cambronne, Le Bistrot, Le Ségur, Café Blanc, Petit Ségur, Paris Duquesne, Le metro, Le Café Lilas, Chez Jeanette, Moshimoshi, Les Temps Modernes, Café Les Muses, Le Quesniau, Starbucks, À La Tour de Nesle, Le Miami, Edony Café, Starbucks Cafe, Starbucks Coffee, Le Café Truc, Le Rey, Starbucks, Éva Baz'Art, Café de la Porte des Sablons, Bert's, L'Aiglon, Contre-Allée, Café des officiers, La Ville de Lyon, Les quais, A la Tour Eiffel, Cafe Elgi, Les Dunes, Au Roi du café, K'fe, Le Bidule, La Boutique à Boire et à Manger, Le Téméraire café, Café Victor, Les Cakes de Bertrand, Café Seize, Delaville, Le Montespan, Presto Caffe, Dis Vin Gaulois, La Rotonde, Deli's Cafe, La Croissanterie, La Porte Montmartre, O'Sullivans café bar, Tabac d'Hauteville, Virage Café, Cafe de la Poste, Café Royal, Capuccino, Le Prevoyant, La Pointe La Fayette, Le Cadran Bleu, Le Conservatoire, Le Florent, Café Lazar, Le Bouquet de Grenelle, Le Métropolitan, Siva's Lunch Coffee, Au Petit Palais, Capucine, Madeleine, Le Diamant, Le Bellerive, Ambroise Pare, Au Baroudeur Patient, Bords de Seine, Le Saint-Régis, Cafe Louis Philippe, Saint-Victor, L'Authentik, L'Olivier, Le Bouquet d'Alésia, Starbuck's, Auto Passion, Le Mathis, Comptoir de l'Europe Café, Le Prétexte, La Calèche, A La Ville de Saint-Flour, Café Tabac Jeanne d'Arc, La Nouvelle Gare, Le Taylor, Le Café Pierre, L'Oiseau Sans Tête, Le Grand Café Capucines, Vegan Folie's, La Terrasse de Pomone, Le Brébant, Café Médicis, Café Diane, Méo 7, Angelina, Maison des Trois Thés, Le Royal d'Alleray, Le Saint-Jean, Le Vrai Paris, Le Petit Montmartre, Alberto, La Consigne, La Ruche, Colombus Café, Chez Justin, espressamente illy, La terrasse, Le Mail, Café Launi, Royal Trinité, Zen Café, Café Grévin, Starbucks Coffee, La Palette, Art Bistro, Bistrot des 2 Théâtres, Brasserie du Théâtre, Le Bistro des Galopins, Le Béguin, Le déjeuner sur l'herbe, Gioia Mia, Café Noisette, Au p'tit creux du faubourg, Café M, Le Ferryville, Le Lutèce, Lina's, Café Le Troquet, Palace Café, Café Francoeur, Les Éditeurs, Bar-Tabac, La bande à bonne eau, La Poste, Le Dauphin, Le Week-End, Le Café Chappe, Le Carrousel, Au petit bar, Le Comptoir du Panthéon, Royal Reuilly, Bistro Dupleix, La Gitane, Sugarplum, L'abribus café, Rotana Gourmet, Thé Glacés, Nespresso, Au Pays de Vannes, Chouchou, Hall 1900, Le Marigny, Fleurus Café, L'Etoile Vénitienne, Le Copernic, Le Corona Impérial, Le Rallye Etoile, Le Savenay Café, Paris Montparnasse, Le Relais-Plaza, Falafel Café, Le Bar des Aiglons, Le Brelan, Le Celtic, Sebastos, Micmanbar, Beirut Café, Café Etienne, L'Engrenage Bistrot, L'Amazonial, Le Vieux Léon, Starbucks, Le Narval, Le Bourgoin, Les arcades, L'Arobase, Café Le Château, Café Victoria, Le Papillon, Le Saint-Malo, Le Royal, Le Marengo, Starbucks Coffee, Péninsule, Le Zinc des Cavistes, Chocolat Rouge, La Comète, Le Président, Café Beaubourg, Café Paris Beaubourg, Findi, Augustin, Starbucks Coffee, Le Bobillot, L'Excuse, Le Casse, Café Pelleport, Chéri-Chérie, La Chope Saint-Fargeau, Larson News, Le Bistrot du Manoir, Le Clairon, Le Saint-Fargeau, Le Cantal, Le Réveil Matin, Le Zodiac, Bar du Métro, Chantefable, Charlotte, Edelweiss, Le Houblon du Vin ème, Café'In, Le Chat Noir, Le Corentin, Paris éclair, Paris Brune, Le Capitole, Le Select, Le Fontania, Le Paris Sud, Le Maryland, Les aviateurs, Bar de l'aviation, Le 15ième boulevard, Le tramway, Bistrot Montsouris, Le XIVème, Le Paul Fort, Le Penalty, Le St Laurent, Le numide, Le Mirabeau, Le petit voisin, Le Café Livre, Jolis Momes, Odette & Aimé, La Rotonde, Caffè Corto, Au Passage des Artistes, La Cantine de Gaston, Le Disque Bleu, Cafet' Théâtre, La Succursale, Le Beaucour, Salon de Thé, O'Soleil, Soui Food, Sandwich Café, Le Royal Parmentier, Le Pain Quotidien, Le Rallye, Café de l'Opéra, Cest Of Café, Le va et vient du Nord, Coutume, Café du Temple, Le Siempre, La Plage, Les Deux Musées, Viaduc Café, Breizh Café, Starbucks, Maine Café, Le préau, Café des Mousquétaires, Le Voltigeur, Craft, Indiana Cafe, Caffè Cosy, Le Commerce, Le Maryland, Café Tournon, Café des petits frères, Le Café Parisien, Le génie, Le Danton, Le Brazza, Au Sauvignon, Starbucks, Café Beaugrenelle, Le Relais Charbon, Caffé créole, Lutetia, Café 99, Le Disque Bleu, Le Père Tranquille, La Ville d'Arras, Habanos, Les Anges, Corso, Les Papillons, Le Mouffetard, Margeride, Coolin, Néo Café, Tennessee, Café de France, Le Napoléon III, Le Marigny, Le Wilson, Arthur et Juliette, Au Bélier d'Argent, L'Armandie, Le Celtic, Le Val Girard, Le Saint-Michel, Pret A Manger, Abribus café, Le Jasmin Café, Le Pt'it Lecourbe, Le Zig zag, Le Camélia, Amorino, Albe Café, Häagen Dazs, Comptoir des Archives, Esmeralda, Starbuck's, Tabac de la Fontaine, Le Germinal, Le Baron, Le Relais, Le Bistro'K, Le Triomphe, Drôle d'endroit Montorgueil, Starbucks, Milk, Cyber Cube, Bistro 13, Le Cassini, Café Fleurus, Le Molière, Costa Coffee, Le Reinitas, Café Rozier, Chez Mezig, Le Buron, Le Relais Tronchet, Colibri, Starbucks, Starbucks, Dandy's, Café L'Imprévu, Bubbolitas, La Comédie, Gossip Café, Blackburn, Café Père et Fils, L'Indiana, Le Tabac des Folies, Les Chimères, Le Peit Saint-Paul, Au Compas d'Or, Céfé Frappé, Les Têtes Brûlées, Vélocivette, La Terrasse de Villiers, Le Chavignol, La Chope Champerret, L'Espace St-Cyr, Malongo, Pains à la Ligne, Sud Ouest Café, La Poterne, L'Evidence, Dada, Lacombe, L'Orée des Champs, Les Mouettes, Espace Détente, Starbucks, La Fontaine, Café du Marché, Le Nemours, Tabac des Ternes, Ten Belles, Bat Royal, Le Village, Le Verre à Pied, Tourn'bride, Dose - Dealer de café, Café des Arts, Les Sabias, Papyrus, Le Franc-Tireur, Au Village des Ternes, La Pointe Drouot, Bar Edith Piaf, Liberté, L'Auberge Espagnole, Le Ricaux, Guest, Sip Babylone, Café Fusain, 11ème avenue, Le Saint-Mandé, Le Royal Jussieu, Le Valmozzola, Café Smögås, O'Soleil, Yuman, Café du Commerce, Les Racines, Le Printanier, Café Le Saint-Lazare, Brulerie Caumartin, Ducale Café, Les Négociants, Tabac de la Sorbonne, Le Hibou, AntiCafé, Le Bistro d'Aligre, La goudale, Le Philos Off, Chez Félicien, Le Café du Trone, Au Ptit clin d'oeil, Dido Cafe, Le Solférino, Le Sorbon, Chez Xavier, Café du Marché, Afandina afe, Thanush netc@fe, Odette et Charlus Café, Café les Favorites, Chez Hamid, Le Rempart, Le Chaumontois, L'estive cafe, Aroma, Le P'tit Muscadet, Le P'tit Muscadet, Le Hollywood, L'Étincelle, Le Cardinal Saint-Germain, Pavillon des canaux, Franklin' Cafe, Le mistral, Le Débonnaire, Berko, Le Café sur l'herbe, Cafe Laumiere, Cafe Pont de Seine, Cafe Pont de Seine, Le Palais, Bar Tabac de la Mutualité, Le Sèvres Raspail, Gladines, Café de Luna, Café des Dames, Le Chaptal, Le Zinc, Le Monceau, Le Bistro de Bel Air, Le Village, Bistrot de l'Arcade, Amélie et Aurélie, Les bancs publics, Canaletto caffè, L'Aubrac, L'evasion, Le Nantes, Le cadre noir, La Casa di Sergio, Enoteca, Da Aldo, Häagen-Dazs, Pancake Sisters, Le Marijan, Le barricou, Café Latéral, Le Washington, Café Craft, Le Tabloïd, BistroZ, Le petit Bistrot Café Brasserie, Le P'tit Bistrot, Le Petit Bainville, Le Demours, Bob's Bake Shop, Le Roi de Pique, Betjeman and Barton, Le temple, Jet-lag, L'Aveyronnais, Le week-end, Comptoir Turenne, La Bohème, Le Sévigné, Le Mayol, Le fontenoy, Le petit plateau, Académie de Billard, Le Saint-René, Le Lamarck, Typick, La Charlotte de l'Isle, Häagen-Dazs, Le barbouille, Le Winston, Le Cosmos, Loustic, Fondation Café, Le Metivier, Le Tierce, Café d'Albert, Starbucks, Le Carrefour, Le Un Cinq, Bagel Baget Café, Café la Chaufferie, Le BlaBla, Chez Adel, Piston Pélican, The Tea Caddy, Malongo Café, Café des Arts, L'Energie, Gamma café, La Renaissance, Le Cardinal, Italian Style Café, Café Bonne Bière, Café grisette, Brasserie Flo, Barlu, Le Café des Chats, Au bec salé, Congee, Le Troisième Café, Le Petit³ Paris, Le Maryland, Les artistes, Le Bistro, Le Brise Miche, Apérock Café, Bataclan Café, The Broken Arm, Lily of the valley, Philippe, Atmosphère, Starbucks, La Factorie, Le comptoir saint honoré, Corona, Brasserie des belge, Le comptoir parmentier, OpenCafe, Bar du Marché des Blancs Manteaux, Le Saint Denis, Queen Café, Fouta Djalon, Art'im, Le Déjazet, Costa coffee, Le Café des Chats Marais, Le P'tit Gavroche, Charivari, Starbucks Coffee, Boru's Café, Café de l'avenue, Café Marion, Tabac St Philippe, Le café du coin, Starbucks, The Goji Bar, Le Sphinx Café, Waikiki Café, Le Nicot Latin, La Crêperie, Starbucks, Le Malesherbes, Le Bûcheron, Le Reynou, Ben's, Café Pélican, Café Trisha, L'Imprévu, La Maison Bleue, Le Sherkhan, Le Pierrot, Au Moka, Fragments, L'île flottante, Le Louis IX, Social Square, Pariggi, Le Jules, Café kitsuné, Royal Turenne, Miki, Le Mont Liban, Corrida Café, Chez Acyle et Ratiba, Pozzetto, Café Cour, Bist, café Martin, Le Lelek Café, Le Marigny, Librairie Nicole Maruani, Le Saint Georges, Tabac Arago, Dishny, Tch'A - maison de thé, Mariages Frères - maison de thé, Le Paris, La coupe d'or, Café Lyon, Spoune, Au P'tit Boulevard, Salon de Thé Orient, La renaissance, Le Bouillon, Au roi du Café, Café Ankara, Le Muscat, Le Petit Bouguet, Le Rallye, au fil du vin, ob-la-di, Bistrot d'Eustache, Matignon, Savannah cafe, L'Appartement, Bistrot Renaissance, Café du Théâtre, Inaro, Segafredo, Croissanterie, Le repère, Sogood Café, Starbucks, Korum Café, Le Café du Commerce, Le Royal Moulin, Café de l'Olympia, A La Volée, Bal Nègre, Au Roi du Café, Chez Basile, Extra Old Cafe, Cafe des Psaumes, Tchik Tchak, Clochette, Le Croix Nivert, L'Arbre à Cannelle, Hubsy Café & Coworking, Brasserie, Café Caumartin, Opéra Café, Moulin à Café, La Pause Du Conservatoire, Sofa, Le Royal, Le Marquis, Le Cyrano, La Baguette Magique, La Belle Équipe, Le Kennedy, Starbucks Café, Extra Life Café, Strada Café, Tzeferakos Café, Le verre taquin, La baraque A., À la folie, Poulette, Café Madam, Vona, Le Milord, Cafe De L'Echelle, Café Smörgås, Le Lutèce, Cafe Loto tabac, Café du Musée, Le Montana, Folie café, Le Café du Musée, Autour du Moulin, Mon Café, Le Tabac, Puerto Cacoa, Casa, Le Naja, Café Premier, Jolis Mômes, Hôtel du Commerce, Bar de l'Eure, Brasserie du Square, Le XII ème, Saint-Marcel, Pain à la Ligne, Starbucks Coffee, Cafe Suedois, Starbucks Coffee, Le Jardin du Petit Palais, Le Coltrane, Starbucks coffee, Starbucks coffee, Starbuck's coffee +49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4042825 8.6824570, 49.4061345 8.6593850, 49.3956761 8.6692210, 49.4172010 8.6768150 +55.9507953 -3.3038276 +yes +324 m +yes and 307 and 51.0116810 13.8720606, 51.0273756 13.7474285, 51.0823918 13.7335753, 51.0824545 13.7336039, 51.0825170 13.7336323, 51.0829896 13.7332707, 51.0828616 13.7332262, 51.0827595 13.7331813, 51.0826580 13.7331399, 51.0825999 13.7331126, 51.0825362 13.7330866, 51.0827583 13.7327555, 51.0832603 13.7324804, 51.0831002 13.7336158, 51.0117707 13.8698726, 51.0337981 13.8131925, 51.0336044 13.8119211, 51.0795450 13.6564691, 51.0803520 13.6560575, 51.0797631 13.6570269, 51.0805189 13.6559334, 51.0798370 13.6570887, 51.0801264 13.6570556, 51.0798991 13.6571398, 51.0798903 13.6567817, 51.0800585 13.6558509, 51.0795076 13.6568246, 51.0800106 13.6572306, 51.0802644 13.6565229, 51.0801590 13.6559327, 51.0796771 13.6569580, 51.0801474 13.6574467, 51.0795919 13.6568858, 51.0799591 13.6557717, 51.0806719 13.6547946, 51.0844031 13.6492495, 51.0844377 13.6491173, 51.0845865 13.6492686, 51.0848005 13.6481637, 51.0560319 13.6534353, 51.1129021 13.7134784, 51.0870850 13.7344070, 51.0879019 13.7346740, 51.0872746 13.7345070, 51.0497161 13.6717032, 51.0497575 13.6719559, 51.0647887 13.7927801, 51.0400501 13.6372683, 51.0400368 13.6376398, 51.0397949 13.6376750, 51.0398668 13.6372683, 51.0396860 13.6366848, 51.0395593 13.6369259, 51.0392180 13.6369677, 51.0396431 13.6373610, 51.0396199 13.6371140, 51.0392895 13.6367341, 51.1523082 13.7957194, 51.1532344 13.7957454, 51.1521680 13.7957598, 51.1520584 13.7957188, 51.1536728 13.7955165, 51.1520531 13.7963601, 51.1522370 13.7957382, 51.0847930 13.6490593, 51.0849131 13.6491394, 51.0845156 13.6488769, 51.0847316 13.6490137, 51.0849792 13.6491835, 51.0844573 13.6488382, 51.0848531 13.6490969, 51.0685627 13.6241474, 51.0695246 13.6253081, 51.0699998 13.6237618, 51.0683859 13.6251032, 51.0701737 13.6247207, 51.0683173 13.6249097, 51.0694974 13.6255021, 51.0679836 13.6227283, 51.0698285 13.6245618, 51.0682702 13.6249019, 51.0700321 13.6235780, 51.0699302 13.6241295, 51.0706362 13.6240940, 51.0699677 13.6239464, 51.0699803 13.6233425, 51.0698958 13.6243490, 51.0683476 13.6228519, 51.0703047 13.6239192, 51.0681631 13.6226829, 51.0681586 13.6222257, 51.0705447 13.6245614, 51.0704860 13.6238946, 51.1190382 13.7795044, 51.0400538 13.6374139, 51.0422774 13.6356744, 51.0419915 13.6350658, 51.0422431 13.6350551, 51.0423833 13.6350452, 51.0422138 13.6356743, 51.0424026 13.6345030, 51.0424536 13.6356798, 51.0419222 13.6347316, 51.0425869 13.6359640, 51.0424255 13.6347004, 51.0423683 13.6356861, 51.0419113 13.6345174, 51.0423088 13.6353555, 51.0432389 13.7577645, 51.0436111 13.7590246, 51.1521334 13.7973645, 51.1521117 13.7971177, 51.1520977 13.7967766, 51.1526180 13.7960916, 51.1531397 13.7962202, 51.1521522 13.7975794, 51.0543396 13.6500775, 51.0444714 13.6375970, 51.0445916 13.6380352, 51.0452089 13.6382144, 51.0448329 13.6384755, 51.0420013 13.6356697, 51.0419801 13.6353571, 51.0449595 13.6381873, 51.0450957 13.6377784, 51.0451578 13.6382089, 51.0451645 13.6385095, 51.0445991 13.6376131, 51.0447789 13.6380437, 51.0449673 13.6384880, 51.0451001 13.6385027, 51.0450315 13.6384948, 51.0450594 13.6382009, 51.0416818 13.6350996, 51.0450879 13.6379787, 51.0454522 13.6334655, 51.0444342 13.6335000, 51.0444346 13.6335829, 51.0453155 13.6342072, 51.0453139 13.6338984, 51.0446628 13.6337701, 51.0446591 13.6334707, 51.0453174 13.6340041, 51.0453155 13.6341049, 51.0451033 13.6335278, 51.0444341 13.6336615, 51.0288807 13.7029059, 51.0288738 13.7030353, 51.0644000 13.6702199, 51.0645429 13.6701187, 51.0634300 13.6708257, 51.0629448 13.6704116, 51.0631020 13.6703333, 51.0643496 13.6698018, 51.0644680 13.6697240, 51.0644477 13.6701873, 51.0636715 13.6706991, 51.0634927 13.6708243, 51.0635567 13.6707778, 51.0643411 13.6702497, 51.0644908 13.6701611, 51.0644102 13.6697624, 51.0630231 13.6703734, 51.0641429 13.6701302, 51.0634263 13.6702687, 51.0639096 13.6702519, 51.0137071 13.8237285, 51.0133685 13.8237824, 51.0091874 13.7517437, 51.0791960 13.7360348, 51.0794212 13.7358213, 51.0870710 13.7344832, 51.0142964 13.7502569, 51.0087245 13.7463770, 51.0088480 13.7468738, 51.0087864 13.7463491, 51.0087804 13.7469334, 51.0086531 13.7464071, 51.0089693 13.7475994, 51.0088690 13.7473466, 51.0344156 13.8132738, 51.0348170 13.8134266, 51.0336234 13.8138274, 51.0329768 13.8143450, 51.0334312 13.8109893, 51.0343168 13.8122016, 51.0336983 13.8136243, 51.0331994 13.8114875, 51.0328423 13.8122627, 51.0342593 13.8124407, 51.0344050 13.8119857, 51.0328773 13.8146286, 51.0332285 13.8128171, 51.0344733 13.8129873, 51.0327823 13.8123939, 51.0331331 13.8116328, 51.0336632 13.8137234, 51.0327738 13.8149048, 51.0331475 13.8127182, 51.0332927 13.8113066, 51.0341415 13.8119262, 51.0330634 13.8126383, 51.0341602 13.8128656, 51.0330179 13.8118828, 51.0345801 13.8121302, 51.0329008 13.8121372, 51.0338927 13.8126132, 51.0347322 13.8125764, 51.0345819 13.8124388, 51.0333598 13.8111666, 51.0331521 13.8139008, 51.0341967 13.8119795, 51.0432745 13.6329438, 51.0433880 13.6329447, 51.0434910 13.6329348, 51.0616086 13.8881605, 51.0640528 13.6635614, 51.0638879 13.6639550, 51.0641915 13.6639163, 51.0641879 13.6640152, 51.0638942 13.6637425, 51.0641939 13.6638145, 51.0639733 13.6633695, 51.0638080 13.6677778, 51.0632291 13.6683586, 51.0629009 13.6680561, 51.0636169 13.6676692, 51.0631196 13.6683612, 51.0628342 13.6680588, 51.0636968 13.6679241, 51.0243263 13.7754713, 51.0240081 13.7747430, 51.0241660 13.7751557, 51.0245582 13.7746933, 51.0241526 13.7747192, 51.0230794 13.7751941, 51.0238220 13.7741584, 51.0245153 13.7756778, 51.0246264 13.7758160, 51.0244310 13.7749487, 51.0244424 13.7755583, 51.0240402 13.7763887, 51.0234623 13.7756473, 51.0235990 13.7758451, 51.0232885 13.7754532, 51.0238738 13.7745660, 51.0245718 13.7757461, 51.0237728 13.7760773, 51.0089122 13.7468473, 51.0545652 13.6571661, 51.0544809 13.6571568, 51.0545984 13.6575051, 51.0564776 13.6490552, 51.0580882 13.6488216, 51.0546570 13.6508731, 51.0571567 13.6545872, 51.0556063 13.6475528, 51.0569011 13.6540618, 51.0561655 13.6542541, 51.0546351 13.6507613, 51.0559429 13.6545543, 51.0571677 13.6557061, 51.0545624 13.6504539, 51.0568417 13.6544648, 51.0569245 13.6550228, 51.0568989 13.6556656, 51.0570603 13.6550313, 51.0567548 13.6539175, 51.0569839 13.6545736, 51.0570223 13.6555839, 51.0563415 13.6551338, 51.0557576 13.6480748, 51.0560964 13.6490288, 51.0556641 13.6496888, 51.0559435 13.6495665, 51.0561604 13.6490052, 51.0559214 13.6494670, 51.0561791 13.6494340, 51.0557350 13.6491827, 51.0562316 13.6494131, 51.0561324 13.6494525, 51.0414360 13.6346991, 51.0537377 13.6809286, 51.0869121 13.6263809, 51.0864569 13.6264478, 51.0868109 13.6272543, 51.0865604 13.6261106, 51.0868648 13.6272874, 51.0863500 13.6267865, 51.0863754 13.6267068, 51.0864006 13.6266273, 51.0865935 13.6259527, 51.0865248 13.6262863, 51.0869641 13.6261298, 51.0869379 13.6262564, 51.0864323 13.6265290, 51.0687005 13.7630620, 51.0645983 13.6700479, 51.1202199 13.7366354, 51.0636067 13.6634968, 51.0635972 13.6633514, 51.0485276 13.6711573, 51.0485157 13.6699918, 51.0487311 13.6711188, 51.0242553 13.7767138, 51.0268164 13.7599593, 51.0652601 13.8015009 +no +43 +341 +Südstadtbäckerei, Kornblume Neckargemünd, Fair & Quer, REWE City, Video Express, Hünnerkopf, Bäckerei Riegler, Rudis Radladen, Riegler, Edeka, Bäckerei Rühle, ARLT, Two Wheels, Kiosk & Kaffee, Edeka Bauer, Heidel-bike, Buchhandlung Schmitt & Hahn, Cafe Frisch, Tee-Fachgeschäft Tea Time, Mahlzahn, Buchhandlung Sturm und Drang, 2-Rad Otto, Optik Volz, Friseursalon Tyros, Netto, altavelo, Penny, K&U Bäckerei, Gärtnerei Hoffmann, REWE, Netto, Bäckerei Riegler, .. nah und gut - Brodthuhn, Landbäckerei Banschbach, Der Haarflüsterer, CHIPNIX COMPUTER, Seppl's Backstube, Bäckerei Grimminger, Buchhandlung Staiger, Café am Rathaus, …nah und gut Keller, Nelson, Copy FIX, Autohaus Neckarhelle, Unishop, Wittmann, NKD, Goldkorn, Konditorei Wiegand, Riegler, Backhaus Siegel, Riegler, Paris, ALDI SÜD, Thalia, Mantei, Damen und Herrensalon Hans-Peter Bähr, Billigladen, Bäckerei Bernauer, Bäckerei Mantei, Bike'n Style, Kamps, Der Kleine Gundel, denn's Biomarkt, Bäckerei Rodemer, Grimminger, Bäckerei Riegler, Lidl, Brücke – Eine Welt Laden Dossenheim, Spielebetrieb Heidelberg, Das kleine Radhaus, Fahrrad Scheuber, Der Holzwurm (Antike), Möbelum, Rud. Entenmann GmbH, weltladen una tierra, Fair & Quer, City-Markt Rüdinger, Stefansbäck, Galerie Piu-Piu, Apollo Optik, Grimm, Lichtblick, Buchhandlung Worring, Tally Weil, Vodafone, FOSSIL, SP: Deytronic, Bio-Metzgerei Blatt, Müller, Apropos, Desigual, O2, C&A, tredy, Radhaus Gerger, Mantei, Weltladen effata regional & fair, Grimminger, Modellbahn Schuhmann, Schaltwerk, Claudia Ruda, Freudenhaus, Netto, Penny, Autoservice Südstadt, S-Bahnhof Kiosk, Mantei, Mahlzahn Vollkornbäckerei, Netto, Seip, Stefanie Knorr, Nollenberger, Markus Fritz Raumausstattung, Getränkeland, Rohrmann's, Appel un' Ei, Crazy Diamond, Sportart, La Flamm, The Body Shop, WMF, GameStop, Holzofenbäckerei Emert, Zuckerladen, Buchhandlung Schmitt, Rossmann, Wurzelpassage, Bäckerei Sommer, noowing's, nah und gut Weismehl, Blumen Kamm, Cafè Frisch, Basic Hairshop, New Point, Divino, Cocoon, Different fashion, Oska, Modern Classic, Bosch Car Service, Bäckerei Grimminger, Reisebüro Bechtel, Zweirad Erni, Feinkost Sahin, Waschsalon Rosie, Weststadt-Optik Sigmund, eldoRADo, Eichendorff, Bosch Car Service, Jäger, Herbig Coiffeur, Grimminger, Joncker, Apropos Buch, Souvenirs und Fotokarten, Toyota Heiler, Blumen selbst schneiden, Apropos Buch, DB Service Store, Eppelheimer Buchladen, Bücherpunkt am Rathaus, ABM Autovermietung, Mahlzahn Vollkornbäckerei, Textil Schmitt, Schneiderei Leyla, Takko, dm, kik, mantei, Expert Esch, dm, Rutz, Autohaus Dechent, Backpacker Climb, Audi Zentrum Heidelberg, Jack Wolfskin Store, VW Zentrum Heidelberg, Kaede Running Sushi Bar, Bridi, Masala, Heil's Feinschmeckerladen, Tchibo, Durance, Salon Michelle, Conditorei Zimmermann, Mantei, Kopfkultur, Hair Away, Fahrrad Service, Eberle, Grimminger, Der Barbier, dm, Betten Opel, Solar Sunline, Centerapotheke, Obst-Gemüse-Automat, Barber Shop, Dieter Bauer Autotechnik, Reisebüro Bauder, Metzgerei Anselmann, Hochstein Musikhaus, Bäckerei Tschakert, Deichmann, Kaufland, Riegler, Caravaning Schneider, Radhof, REWE City, HAIRCUT, Saturn, Rossmann, Weltladen Heidelberg-Altstadt, H&M, Görtz, Butt Asien Shop, Tiger and Dragon's Food Store, Sport Berger, REWE city, Rühle, The Rock Shop e.K., Runner's Point, S'Oliver, Penny, Moments, Kamps, Schuh und Leder, Basic Hairshop, Anouk, Vodafone, Thomas Cook, Hallhuber, E-Plus, TeeGschwendner, fielmann, Gravis, L'Epicerie, Käthe Wohlfahrt, I Am - Designmanufaktur, Madame Vélo, Blumenladen Löwenzahn, Allmann Friseursalon, Dossenheimer Schokoladen, Konrads Wäschezenter, Metzgerei Schäfer, Christa's Haarstudio, Die gute Lage - Weingeschäft, GROSS 1866, Mondtaler Kinderkleidung, Radhaus Gerger, Salon Kanapee, Schuh Karcher, La Casa Verde, Bäckerei Schneider, Blumen Weber, Buchbinderei Dyroff, Globetrotter, TELCO & MORE, Alnatura, effata Weltladen, Quadrad, Reisebuchladen Heidelberg, Friseur Kirsch, Herrenfrisör Doll, Toys"R"Us, Val Verde, Gartencentrum Scheid, Can Markt, BIKEAGE, Optik Frank, Weine & Genuss, Kosmetikinstitut Beauty-Cosmic, Anne's Blumenecke, Beauty Lounge, Feinkost Schäfer, Georg Storch, Intercoiffeur Kress, Kaufmann Augenoptik & Hörakustik, Hünnerkopf, Auto Schmitt am Kalkbrunnen, Die Brille, Vellisimo, La Biosthetique Karin Bolz, Sofie Göbes, Knoblauch Schreibwaren, höllwerk - Schmuck & Design, flowerstation, hairCUT 11, Buchladen - artes liberales, Josef Seibel, Frisurenkeller Fischer, Salon Birgit, Imkerei - Thaler, Eva's Lädchen, Reformhaus Escher (Vita Nova), Lebe Gesund, Dansk Möbler, Metzgerei Unger, Pazar, Zum Bauernmarkt, höllwerk - Schmuck & Design, SARAH's STYLES HAARVERLÄNGERUNGEN, Geflügelhof Ehrler, Reit- und Spargelhof Rehm BIOLAND, QueerBeet Hofladen Sauter, Schlicksupp Hofladen, Schlierbacher Schiff, YORMA'S, Mantei, Riegler, Feine Weine, Alnatura, Gemüsebau Schlicksupp, Mahlzahn Vollkornbäckerei, Riegler, Biker's paradise, Optik Meister GmbH, Metzgerei Stieg, QUICK SCHUH, Takko Fashion, Dussinger, Rhein-Neckar-Akustik, Auto-Franke, Weingut Seeger Vinothek, Stern, Volvo, GTS Automobile, Claus Stier Kraftfahrzeuge, Douglas, Promod, Markushof, K&U, Danys Blumenparadies, KFZ-Werkstatt Karnahl, Bier Schaaff, Tamara Lederwaren, Serpa Markt, Löffelhardt Fliesen, Getränkeabholmarkt, Niebel, Augenstein Metallbau GmbH, Maisch Orthopädie Technik Zentrum, Oswald Friseurbedarf und Kosmetik, Glocken Bäckerei, Weingut Clauer, Wäscherei Meuter, BioBasis, Avant Garde, Auto City, Die Brillenmacher Ritzmann Werner & Nalik, Kopierladen E. Müller, Hansi Flick, Coiffeur Leila, Many Market, Nativo, Videotaxi Media Store, Autohaus Nieder, Analog-Audio-Arts.de, studio visuell photography, Beauty Lounge, Beautyful Nails, Die Friseure, Fiebing, Foto Kühnel, Goldenes Dreieck, HF-Computer, Reisebüro Specht, Sofa 3, Sunshine Sonnenstudio, Telecafé, Waschtrommel, Reisebüro Mayer, KIND Hörgeräte, Weinladen am Markt, DAS KUNSTHAUS ESSERS, Leist, Ingrids Blumenladen, point S Reifenservice, Metzgerei Müller, Getränke Ziegler, H.M. Automobile, Landhäusle, Fromm, Die Autolackierer Eppelheim, premio Auto- und Reifenservice, Wiener Feinbäckerei Heberer, Toker Obst und Gemüse, Nahkauf, Napapijri, Bücherstube an der Tiefburg, Haarlass, Fleischerei Friedl Rolf, LE CROBAG, Barbarino, blumen fee, SIX, Anatolia Markt, Chiquita fruitBAR, Reisebüro im Bahnhof, Konradi's Wäschecenter, Elektro-Fontius, Raumausstattung Rehberger, Änderungsschneiderei Flore, MBK Roller Shop E. Schemenauer, Dentallabor Volk, Der Frisörladen, Kosmetik- u.Nagelstudio Relax, Salon K&C, Farben Boy Creatives Wohnen, Maren Kohlmann Massage, Purzelzwergs Lädchen, Ursula's BlumenOase, Wolle und Teeladen, Wolle und Teeladen, Mantei, Hörwelt Heeg, Schreib- und Spielwaren Faludy, Kiosk Stauch, ULMA GmbH, Wäscherei Dobrovsky, Backpacker Footwear, Helin Backwaren, Kim Nails, Pfisterer, FRIWA Küchen, s' Lädele, Hair und Nails, Die Olive Feinkostgeschäft und Snackbar, Juana Kosmetikstudio, Frick, Friseur Toker, Haarstudio Edith, Reformhaus J. Budjan, Salon Norbert, Salon Sybille, Schedwill, Vitamin Haus, Vivir, Partyservice Vogel, tipico sportwetten, Zur schönen Linde, RNV-Kundenzentrum Heidelberg, Barber Shop, Hassbeckers Galerie & Buchhandlung, Chocolaterie Knösel, Just B - Tattoos and Bodyart, Blumen Kücherer, Wahl G. Frisierstube, noowing's, Friseursalon Wagner, Backpacker Travel, Gscheidle, Bäckerei Riegler, Otto Macho, hairclub10, Hair we are, Mode-Börse, Becker-Chedor Anette Chemische Reinigung, PANICZONE TATTOOS, Quetin Reiseservice, nahkauf, FOTOCONTROL, Schmitts Lädl, Optik Nähring, Sonneninsel, Kosmetikstudio Riegler, Kamelien Thai-Massage, Metzgerei Maier, Winkler Radio- und Fernsehtechnik, Cfashion, Jamaicare, Juwelier Bowe, Phoenix Nagelstudio & Fußpflege, Schreibwaren Müller, Wiegand Optik, Wolle und mehr, Kraus, Curalia Cosmetics, Josef Fritsch, Pereo Schuhmoden, Pompinello, Salon Brenner, allFrisch, Viola's Blumen, Gerhard Zahn, Auto May, Bestattungen Bauer, Neckar Bau, TeleMedia, Grundig, Jutta's Nagelstudio, Buch-Markt, Textstudio Gross, Drogeriemarkt Richter, Reisebüro RIZ, Hemdenfix, Grimminger, Schneiderei Sen, Mantei, Zupp, Pfänder, Hells Kitchen, City-Markt Rüdinger, TK Maxx, Geers, Joel, KIND, Nolze, Roland Curth, Antiquariat Hatry, Swatch, mod's hair BASIC, alldrink, Metzgerei Stieg, mantei, Elektro Scheurer, Timeout, Gieser, Mantei, KIND Hörgeräte, Stefansbäck, Barber Shop, Beauty Club, Riegler, Metzgerei Sommer, AUS-Zeit Reisebüro, Admin-24, Ambergs Die Blumenstation, Andreas Ullmer, Blumen Susanne Silbernagel, Glückskind, Optik Masing, Salon Wengerek, Schönheitssalon Venus & Denis, Piccadilly English Shop Heidelberg, Barbier & Capelli, Citroen Spiegelhalder, Werle, Fröhner, Fröhner, Butlers, McPaper, Harmonien und Blüten, Patisserie La Flamm, Aura, Grimminger, Unger, Depot, Yellow Corner, hollenbach, ecco, Backshop, pitstop, Antiquariat Friedrich Welz, Stern's Hofladen, Hairlich, friedrich, faire und feine Mode, Jacques’ Wein-Depot, Friseursalon Nouveau, Lecker Bäcker, Breitenstein Bäckerei, Scheck-In-Center, Freitagskind, Le Visage, Karin Horn Moden, mod's hair, Rad Kirch, Uli Rohde Musikladen, Tabac&Co, K&U, TopHair, Abele Optik, Bären Company, Christ, Diller, Eyes + More, Pandora, Planet Sports, Roland, Schmitt & Hahn, Telekom, DerBüroeinrichter, Caravanium, Anouk, dielmann, Max & Co, Leder Meid, Marc O' Polo, Optik Rehm, Optik Madle, Backwaren, Carat, tilly de lux, Getränke Becker, Kiosk Würfel, Holzofenbäckerei Emert, Yadi Tatoo, Bäckerei Wacker, Hair and Beauty, Futon-Haus, Radio Kroll, Reinigung Eckenweiler, Bäckerei & Konditorei Stahl, Optik Pfaff, SaiNet GmbH, B-Moden, Haarstudio Margarete, Fruchtmarkt Lehnert, Blumen Merkel, Gertruds Frisierstube, Antikscheuer Heidelberg, Fachschneiderei, Frisier Domus, Netto, Bäckerei Siegel, Hamilton Leder + Synthetics, Wieblinger Buchladen, Massagepraxis ImLo, Brunis Lädle, Absinthladen "Galerie Grüner Engel" Lager, Farbenreich, Der Friseur Markus Bähr, Wuschel - Express, Kathrin Laudenklos Nageldesin, Tatiya Thai Massage, Peppino, Adviva SanitätsCenter, Metzgerei Benig, Café Frisch, Goldkorn, Görtz, Änderungs-Schneiderei, Friseur Stern, MeineZeit, victor&linchen, Martinas Schreibshop, Ronnefeldt Teeladen, The Flame, Weingut Bauer, Görtz, Laib & Leben, Viani's Friseure, Vinothek Laibach & Seeger, Kinderwagen Risch, First Reisebüro, Aktiv-Reha-Center, E-Mobility.Center, alldrink, Stoff-Ideen, AllesBrille Manufaktur, Mantei, Günay's Garten, Idee., Bäckerei Riegler, Electric Bike Solutions GmbH, Pretty Nails Nagelstudio, Metzgerei Unger, Musikzimmer, Heidelberger Bonbon Manufaktur, Pannonica, Vinyl-Only GmbH, eckhaus heidelberg, Ronnie`s Records, Regalstudio, fashion store, Tchibo, dm, Backhaus, Bijou Brigitte, Blumen Viva, Bordeaux Magnum, Buchladen, Feinkost Tor, Imbiss, Mister Minit, O2, Papeterie Büro Baum, Presse Tabak Karmann, Reinigung Wojtalla, Reisebüro Blum, Studio Leitner, Ticket, Post & Office Point, Volker Stümpges, Goldschmiede "im Hof", Walters Feinkost, Harmonie im Fachwerkhaus, Werle, Schnittmodul, Radpoint Heidelberg, Alex Wein & Spirituosen, Koh Samui Thaimassage, DKA Daniel Kiefer Audio, Frick, Footlocker, New Yorker, Sportarena, Schneiderei Fragano, Bordelais Weinhandel "Mack'sche Mühle", Ernsting's Family, Rasme, Autohaus Treibel, Frick, Frick, Rühle, Merhaba, Orient-Teppichhaus, Banyen's traditionelle Thaimassage, Birgits Teeladen, Nagelfabrik, Novak & Roloff, Convenience Store, Tourism Stuff, Steingasse14 - Optiker, Heidelberger Wäscheladen, Welldone Studios, Bäckerei-Konditorei K. Bernauer, Mantei, Usha's Maß- und Änderungsschneiderei, Teppich-Wäscherei und Reparatur, Tasika, pläsier, Bellissimo, Elektromarkt Steppan, Friseurstudio Jasmin, Secondhand-Landen und Kiosk (Zigaretten, Schreibwaren...), Secondhandladen mit Spielzeug, Kosmetik Metz, Roth Baustoffe, Gravo Design, Atelier stilsache, Welldone Studios, Coboc GmbH & Co. KG, Zehra Ergin Hair Expert, Optik Handke, Dänisches Bettenlager, Fressnapf, Jeans Outlet, Haardesign, Susanna Beck, Sara, Salon Petra, Weststadt Reisebüro, Janssen, Schlemmermeyer, Zigarren Grimm, Bofinger Femme, Bofinger Men, L'TUR, Reindl, Schuhmacherei Kalischko, Preisbombe, Radsport Haritz, Matratzen Concord, Kosmetikstudio Wendler-Kinne, La Testa, Marga Blumenstube, Nowa Style, Upper Glass, Radhof Bergheim, Annas Unverpacktes, leguano Barfußladen, Reiseland, Textilpflege Klaus Engelmann, Der Gutselladen, Pflanzenhof Gaiberg, Kosmetikstudio Ter Haar, Holgersons, Mirus Raumkonzepte, Steffen Baum- und Landschaftspflege, Bel Mondo, Baumaschinenvermietung Peter Wallenwein, Zahns Zahnladen, Quintessence, FREIRAUM friseur, Lübeck, Josefs Gemüsestand, ANTIK-Zimmer Heidelberg, Beren's Kosmetikstudio, Medina Beauty Lounge, Blume sucht Vase, Miet Fix, Amato, K+K, Riegler, Die Blumenfrau, Die Brillenmacher, Mountain Warehouse, Herzlichter Heidelberg, dm, Brax, Dürninger, o2, Lindt Boutique, Recyclingkaufhaus Heidelberg, CALIDA, Heisel, Swarovski, Hoppe Reinigung, Hofladen Gärtnerei Lenz, Classic Times, Telekom, intimissimi, snipes, Grünvogel, The House of Villeroy & Boch, Andrea Créations, Memories of Heidelberg, Antiquariat canicio, BREE, Blue Sense, Holgersons, Maroc Interieur, Wolle Rödel, Yves Rocher, yourfone, Frisör Meyer, Orient Markt, Wolkenseifen, Pylones, URRmEL, Rewe, Kaufland, BAUHAUS, denn's Biomarkt, Lidl, DM Drogeriemarkt, Aldi, Rewe, Lidl, Das Carré, Kiosk Ziegler, Norma, dm, REWE, Aldi Süd, OBI, REWE, denn's Biomarkt, Aldi Süd, Dehner Gartencenter, Bauhaus, Möbelparadies, Penny, ...nah und gut Arlt, Profi-Markt, REWE Getränkemarkt, ALDI SÜD, REWE, Blumen Bethge, Penny, Metzgerei Krauss, Foto Stetzelberger, Der Buchladen, Pafümerie Werner, Müller, Steininger Textilpflege, Fega & Schmitt Elektrogroßhandel, Betten Knoll, Raumtex, Breitwieser, Nah und gut, Galeria Kaufhof, Darmstädter Hof Centrum, Holz Oberfeld, ASF Autoservice, Famila Center, Galeria Kaufhof, Wohnland Breitwieser, Peugeot Rhein-Neckar, Autohaus Ivancan, Toom Getränkemarkt, Haarstudio Adler, Metzgerei Wickenhäuser, Rewe, Kreativ-Werkstatt, Salon Keibs, Penny, Edeka, Esso, Mantei, Kaufland, Media Markt, Bäckerei Marcus Maier, TonArt Musikalien, RiverStylz, ALDI SÜD, Büro Systeme Bammental, Autohaus Bernhardt, Autohaus Krauth, Mini Krauth, Näher Baustoffe GmbH, Schürle, Apfel Land, Blumen Werkstatt, Vinothek Laibach & Seeger, Boris Ehinger - Hof Patisserie, Friede Bestattungen, HappySystem Balkonsanierung, Salon Haarkiste, Klaus Buddensiek, Damm Fahrzeuge GmbH, Aldi Süd, müller lebensraum garten, Lidl, Bioland-Gärtnerei Wiesenäcker, EDEKA, Pfisterer, Autohaus Schweikardt, Hofladen, aquaristikstudio starfish, Gemüsebau Schlicksupp, Gärtnerei Lenz, Obst und Gemüse, Gärtnerei Reinhard, Husaren Destillerie, Aldi Süd, Mix-Markt, Kiosk am Bismarckplatz, Auto-Stern GmbH, dm-drogerie markt, Wacker+Döbler, Lidl, Netto Marken-Discount, Eisenwaren Michel, Schuh Weishaar, Tamara Lederwaren, Miros Hair-Point, REWE, Marina Tours, Auto Jocker, Lidl, PSS, Walter Fell Elektronik, Weingut Adam Müller, Beauty Lounge, Hairteam Genial, Metzgerei Stather, Autohaus Bernhardt, Blumen Schilling GbR, Pfeiffer & May, myStorage, Carglass, A.T.U, auto+technik Gassert GmbH, Autohaus Peuker, Getränke Kern, Metzgerei Kailer, Bilgro Getränkemarkt, Hornbach, Weber, PC Ambulanz, Leimener Buchhandlung, Blumenladen, Röll GmbH, Motorrad Hester GmbH, Zoo-Shop, Mohr Baustoffe GmbH, Fahrrad Schmidt, Rebmann, Weirich Schlüsseldienst, Farben Gabler, Prodotti Italiani, Weinhaus Ott, Raab Karcher, Autohaus Treiber, Autolackiererei Beck, Möbel-Kirsch, Altes Hallenbad, Aldi, Andreas Münkel & Frisöre, Kücherer's Käse Ecke, Lieblingsladen, Aldi, Wow / Willi Bender, Mantei, Betty Barclay, Kosmetikstudio Heidinger, Wetzel, Bäckerei Bernauer, Schmuckatelier Mämecke & Rauen, Opel Zimmermann, Augenoptik Daniel Knapp, Jakobi, Frisch & Fruchtig Obst-Gemüse-Feinkost, REWE Center, dm-drogerie markt, ALDI Süd, Bolz, Auto Plech, Hegehof, Lehmanns Fachbuchhandlung, Baier Copyshop, Kohlmann, dm-drogerie markt, Jelinek Automobile, Reifen Gierga, Autohaus Peter Bollack, Malek, Schlaraffenland, Heidelberger Senfmühle e.K., Bike-n-Wild, Auto HD, Avia +yes +55.9406104 -3.2945168, 55.9579671 -3.2416031, 55.9099988 -3.3187446, 55.9335740 -3.2140903, 55.9452785 -3.1910772, 55.9432977 -3.1864231, 55.9274173 -3.3075858, 55.9455967 -3.2068856, 55.9558479 -3.1868996, 55.9385133 -3.1977770, 55.9364081 -3.4051737, 55.9388075 -3.3555498, 55.9411797 -3.2700165, 55.9326592 -3.3137139, 55.9581549 -3.4146320, 55.9259159 -3.2475077, 55.9340106 -3.3057008, 55.9532855 -3.1942698, 55.9528122 -3.1966134, 55.9577481 -3.1745891, 55.9522948 -3.1996615, 55.9512080 -3.2029850, 55.9505306 -3.2060289, 55.9360698 -3.1801396, 55.9431462 -3.2098500, 55.9424957 -3.2178326, 55.9430147 -3.2208977, 55.9431450 -3.1777930, 55.9473014 -3.2066559, 55.9382479 -3.2288358, 55.9493199 -3.2107221, 55.9371375 -3.2021480, 55.9416831 -3.1813332, 55.9399477 -3.1799875, 55.9400554 -3.1800410, 55.9383873 -3.1947438, 55.9381286 -3.1934756, 55.9532580 -3.2007176, 55.9498239 -3.1879473, 55.9457420 -3.2062080, 55.9361540 -3.2091272, 55.9368151 -3.2079507, 55.9519224 -3.2021395, 55.9456455 -3.2052495, 55.9420725 -3.2685561, 55.9526727 -3.1905474, 55.9499553 -3.1886925, 55.9483500 -3.1918487, 55.9534890 -3.1892336, 55.9564328 -3.1863322, 55.9462158 -3.1854968, 55.9448431 -3.2048049, 55.9426898 -3.2037234, 55.9472487 -3.1909778, 55.9475118 -3.1893161, 55.9479802 -3.1868691, 55.9462178 -3.1884860, 55.9445944 -3.1837358, 55.9447090 -3.1838238, 55.9390205 -3.1796146, 55.9391727 -3.1798248, 55.9901108 -3.3958456, 55.9382045 -3.1790187, 55.9393085 -3.1795319, 55.9299625 -3.2092643, 55.9362743 -3.1942603, 55.9364425 -3.1941118, 55.9364298 -3.1945475, 55.9381921 -3.1929355, 55.9380470 -3.1915010, 55.9447005 -3.1877270, 55.9428356 -3.1884222, 55.9454993 -3.1874399, 55.9779953 -3.1733866, 55.9341605 -3.2104863, 55.9454998 -3.1881337, 55.9450783 -3.1887212, 55.9480103 -3.1837600, 55.9486091 -3.1831054, 55.9381703 -3.1892079, 55.9382556 -3.1704864, 55.9404236 -3.1696109, 55.9517036 -3.1735044, 55.9444953 -3.1872925, 55.9457654 -3.1982160, 55.9357656 -3.2102949, 55.9634754 -3.1970678, 55.9608923 -3.1970860, 55.9571867 -3.1639997, 55.9595119 -3.1505528, 55.9754036 -3.1792572, 55.9780588 -3.1803331, 55.9781026 -3.1779536, 55.9779059 -3.1732084, 55.9779507 -3.1735468, 55.9780888 -3.1742385, 55.9781653 -3.1742810, 55.9781945 -3.1744492, 55.9781434 -3.1745486, 55.9657634 -3.1762911, 55.9648030 -3.1769642, 55.9618573 -3.1797874, 55.9614066 -3.1810341, 55.9282699 -3.1971794, 55.9300538 -3.2006041, 55.9291787 -3.1994540, 55.9288531 -3.2399727, 55.9444334 -3.1838739, 55.9432684 -3.2138648, 55.9434340 -3.2137230, 55.9382190 -3.1871150, 55.9163168 -3.3178016, 55.9342480 -3.2099670, 55.9250348 -3.2099016, 55.9556948 -3.1880622, 55.9288850 -3.2096120, 55.9268034 -3.2091405, 55.9599295 -3.1873744, 55.9511210 -3.2277490, 55.9369030 -3.3008559, 55.9760995 -3.1730677, 55.9690233 -3.1728199, 55.9473560 -3.1862560, 55.9472450 -3.1859400, 55.9471464 -3.1859252, 55.9532957 -3.1984157, 55.9727023 -3.1754426, 55.9447520 -3.1840600, 55.9645394 -3.2127643, 55.9360392 -3.2090372, 55.9426597 -3.2129400, 55.9429829 -3.2134256, 55.9425021 -3.1970043, 55.9173034 -3.2149399, 55.9371649 -3.2025037, 55.9368530 -3.2004540, 55.9191492 -3.2130522, 55.8967480 -3.3189972, 55.9459933 -3.2231784, 55.9366774 -3.2079221, 55.9536450 -3.1936151, 55.9471310 -3.1906350, 55.9433250 -3.2363632, 55.9436340 -3.1927890, 55.9131941 -3.3215704, 55.9267768 -3.2325501, 55.9265880 -3.2362930, 55.9479871 -3.1862306, 55.9478974 -3.1862047, 55.9670709 -3.1749630, 55.9455865 -3.2342233, 55.9455978 -3.2346741, 55.9372962 -3.2491878, 55.9372632 -3.2492416, 55.9399014 -3.1712062, 55.9275895 -3.1645483, 55.9241128 -3.1723545, 55.9321255 -3.1800006, 55.9334491 -3.1664892, 55.9819081 -3.3968033, 55.9824701 -3.3972270, 55.9517351 -3.1896593, 55.9526200 -3.1872149, 55.9514550 -3.1958932, 55.9113288 -3.3221174, 55.9378609 -3.2405808, 55.9371924 -3.2382206, 55.9772777 -3.2461729, 55.9005835 -3.3187680, 55.9504487 -3.1855770, 55.9481787 -3.1818614, 55.9469357 -3.2061870, 55.9468336 -3.2067128, 55.9510529 -3.1895716, 55.9474443 -3.2026403, 55.9469842 -3.2055924, 55.9484539 -3.2033601, 55.9477666 -3.2049354, 55.9519571 -3.1962325, 55.9475027 -3.1864955, 55.9450666 -3.1879264, 55.9173837 -3.3145666, 55.9650759 -3.2031617, 55.9807357 -3.1771531, 55.9801105 -3.1784204, 55.9803382 -3.1778904, 55.9509532 -3.1703030, 55.9449293 -3.1531235, 55.9426622 -3.1700360, 55.9536680 -3.1591788, 55.9510831 -3.1696039, 55.9471411 -3.1970342, 55.9472696 -3.1965989, 55.9476455 -3.1953503, 55.9470721 -3.1972816, 55.9444791 -3.1881383, 55.9441090 -3.1902632, 55.9441665 -3.1899295, 55.9430221 -3.1890898, 55.9442010 -3.1896725, 55.9442375 -3.1894117, 55.9434877 -3.1870683, 55.9411521 -3.2175600, 55.9416473 -3.2167635, 55.9417417 -3.2166027, 55.9412822 -3.2173787, 55.9414839 -3.2157963, 55.9533340 -3.1882867, 55.9535985 -3.1880495, 55.9540239 -3.1884159, 55.9647669 -3.1742071, 55.9550392 -3.1900725, 55.9551557 -3.1901442, 55.9626030 -3.2336790, 55.9718556 -3.1742189, 55.9598707 -3.1836010, 55.9596341 -3.1834611, 55.9632066 -3.1785776, 55.9606353 -3.1818678, 55.9571142 -3.1859300, 55.9583217 -3.1846287, 55.9591802 -3.1838027, 55.9615406 -3.1806868, 55.9703043 -3.1722134, 55.9714725 -3.1735772, 55.9649663 -3.1768207, 55.9645028 -3.1902250, 55.9585203 -3.1837638, 55.9589264 -3.1833589, 55.9658761 -3.1755965, 55.9758546 -3.1700490, 55.9698894 -3.1717423, 55.9698726 -3.1719094, 55.9673457 -3.1743716, 55.9608269 -3.1809491, 55.9626007 -3.1788719, 55.9456193 -3.2178696, 55.9666564 -3.2048348, 55.9896602 -3.3989461, 55.9897226 -3.3892617, 55.9904018 -3.3860921, 55.9316272 -3.2648845, 55.9459387 -3.2172281, 55.9261122 -3.1387785, 55.9535356 -3.2058772, 55.9468216 -3.2042574, 55.9122985 -3.3155498, 55.9418064 -3.1502056, 55.9366240 -3.1802622, 55.9259084 -3.1931834, 55.9234603 -3.2480989, 55.9111503 -3.3240497, 55.9386265 -3.2264699, 55.9311720 -3.2951988, 55.9014700 -3.2230460, 55.9635314 -3.2337201, 55.9623235 -3.2362031, 55.9400736 -3.1717606, 55.9808127 -3.2595224, 55.9514755 -3.1782823, 55.9511672 -3.1780596, 55.9509125 -3.1777434, 55.9486026 -3.1924520, 55.9427213 -3.2130274, 55.9431431 -3.2136700, 55.9480325 -3.1815054, 55.9480039 -3.1817137, 55.9089361 -3.3201414, 55.9094368 -3.3204754, 55.9092872 -3.3205265, 55.9085739 -3.3187295, 55.9117444 -3.3246249, 55.9114205 -3.3241848, 55.9691533 -3.2784692, 55.9163294 -3.3174640, 55.9437913 -3.2075720, 55.9438272 -3.2058255, 55.9439569 -3.2059882, 55.9141250 -3.3250705, 55.9140139 -3.3251617, 55.9501068 -3.1901274, 55.9502048 -3.1904658, 55.9502374 -3.1901476, 55.9777985 -3.2431662, 55.9341031 -3.3103280, 55.9338808 -3.3104461, 55.9505032 -3.1770192, 55.9644079 -3.2126470, 55.9509705 -3.1758549, 55.9353260 -3.1974910, 55.9359590 -3.1944058, 55.8843050 -3.3391037, 55.9439543 -3.2071456, 55.9319254 -3.2512353, 55.9173812 -3.3147110, 55.9482625 -3.1920719, 55.9122188 -3.3171913, 55.9228018 -3.1364902, 55.9552280 -3.1478679, 55.9549996 -3.1445229, 55.9355007 -3.1026548, 55.9135725 -3.3140139, 55.9167553 -3.3178746, 55.9218026 -3.1745330, 55.9220250 -3.1740037, 55.9222596 -3.1746208, 55.9451505 -3.1872267, 55.9426518 -3.1008380, 55.9338262 -3.0919845, 55.9338797 -3.0920141, 55.9189185 -3.2647989, 55.9214872 -3.3034840, 55.9344336 -3.1226594, 55.9503499 -3.1810630, 55.9516064 -3.1841709, 55.9237248 -3.2366306, 55.9833943 -3.2415959, 55.9347829 -3.1798219, 55.9122663 -3.3242829, 55.9154236 -3.3172381, 55.9676214 -3.1664619, 55.9247393 -3.2762275, 55.9834316 -3.2423890, 55.9836698 -3.2462331, 55.9836844 -3.2504406, 55.9837405 -3.2490698, 55.9265395 -3.2441561, 55.9358853 -3.2101222, 55.9495537 -3.1836402, 55.9229086 -3.3978162, 55.9095414 -3.2288680, 55.9086019 -3.2094913, 55.9503720 -3.1813833, 55.9504108 -3.1802868, 55.9507721 -3.1811578, 55.9658637 -3.1761995, 55.9527684 -3.2488426, 55.9812017 -3.1750664, 55.9812425 -3.1753695, 55.9614848 -3.1812115, 55.9503954 -3.3029550, 55.9395792 -3.2047082, 55.9395908 -3.2047041, 55.9376968 -3.2030817, 55.9089416 -3.3164123, 55.9308207 -3.2096951, 55.9743623 -3.1997016, 55.9330618 -3.1065999, 55.9335680 -3.1067948, 55.9375488 -3.3118506, 55.9728634 -3.3514884, 55.9429037 -3.2078542, 55.9475634 -3.3645665, 55.9459800 -3.2223160, 55.9593810 -3.2409668, 55.9561231 -3.1987844, 55.9463571 -3.2082808, 55.9231651 -3.2343395, 55.9561721 -3.1565201, 55.9378482 -3.3327076, 55.9445511 -3.2071402, 55.9524023 -3.1867211, 55.9522776 -3.1904447, 55.9423834 -3.1891736, 55.9396025 -3.1913584, 55.9383522 -3.2265372, 55.9350041 -3.1939677, 55.9585188 -3.1644249, 55.9517596 -3.2028162, 55.9395810 -3.1916680, 55.9457233 -3.1826212, 55.9625044 -3.2362710, 55.9627903 -3.2341275, 55.9414710 -3.2036216, 55.9295730 -3.1756342, 55.9242094 -3.1728587, 55.9239552 -3.1723571, 55.9240756 -3.1746808, 55.9241838 -3.1735301, 55.9230650 -3.1714407, 55.9232656 -3.1716767, 55.9519102 -3.2244910, 55.9386901 -3.3172128, 55.9387866 -3.3166414, 55.9268426 -3.1666054, 55.9413339 -3.2710077, 55.9413445 -3.2708146, 55.9443702 -3.1853406, 55.9409652 -3.1851060, 55.9411294 -3.1853959, 55.9548055 -3.1927722, 55.9273713 -3.1874512, 55.9441079 -3.1919941, 55.9265860 -3.2092934, 55.9509401 -3.1790287, 55.9632358 -3.1796142, 55.9274324 -3.1996630, 55.9303417 -3.2637536, 55.9303636 -3.2638502, 55.9305298 -3.2635743, 55.9308144 -3.2639192, 55.9583318 -3.1187044, 55.9140047 -3.2847797, 55.9532656 -3.1152143, 55.9533715 -3.1154926, 55.9536925 -3.1156095, 55.9523964 -3.1125548, 55.9531590 -3.1065611, 55.9569152 -3.1168216, 55.9545977 -3.1418305, 55.9374032 -3.1711512, 55.9392787 -3.1786578, 55.9392916 -3.1784800, 55.9410201 -3.1806656, 55.9409384 -3.1805218, 55.9435127 -3.1836307, 55.9446441 -3.1839145, 55.9353259 -3.1974274, 55.9356823 -3.2014008, 55.9372592 -3.2021206, 55.9429165 -3.1831794, 55.9121573 -3.3216925, 55.9312185 -3.1718146, 55.9274598 -3.3076072, 55.9276450 -3.3080783, 55.9276631 -3.3081360, 55.9240601 -3.2517049, 55.9340161 -3.1746636, 55.9258469 -3.1648168, 55.9539718 -3.1946063, 55.9230518 -3.1726728, 55.9233383 -3.1720153, 55.9624754 -3.2326403, 55.9551794 -3.4015311, 55.9383407 -3.3187573, 55.9310730 -3.3145350, 55.9311471 -3.3142171, 55.9157480 -3.2864086, 55.9159814 -3.2865221, 55.9484210 -3.1872643, 55.9503683 -3.2078227, 55.9305617 -3.1761991, 55.9192762 -3.1670567, 55.9448310 -3.1949994, 55.9446376 -3.1965778, 55.9445589 -3.1947495, 55.9444142 -3.1965059, 55.9447377 -3.1971839, 55.9442766 -3.1978649, 55.9324266 -3.1585275, 55.9417129 -3.1849464, 55.9417884 -3.1851916, 55.9418282 -3.1853346, 55.9418526 -3.1852528, 55.9418744 -3.1849589, 55.9418899 -3.1847817, 55.9418905 -3.1855192, 55.9419227 -3.1854387, 55.9420262 -3.1854659, 55.9421747 -3.1855648, 55.9412750 -3.1446800, 55.9330745 -3.2607364, 55.9207513 -3.1600951, 55.9520027 -3.2062005, 55.9523984 -3.2038646, 55.9530497 -3.2000438, 55.9534470 -3.1976948, 55.9535975 -3.1968237, 55.9331086 -3.1362248, 55.9328125 -3.1366963, 55.9221224 -3.1339138, 55.9223185 -3.1339297, 55.9225101 -3.1339536, 55.9230177 -3.3792156, 55.9447090 -3.1977550, 55.9354932 -3.2368783, 55.9811288 -3.1900190, 55.9687011 -3.1415142, 55.9611799 -3.1900622, 55.9443966 -3.1836641, 55.9389888 -3.1717191, 55.9390958 -3.1739542, 55.9396811 -3.1731682, 55.9400547 -3.1761388, 55.9408960 -3.1768412, 55.9044458 -3.1561935, 55.9369677 -3.2108383, 55.9219280 -3.1788973, 55.9551528 -3.1962671, 55.9332363 -3.2293846, 55.9216297 -3.1545295, 55.9538687 -3.1922380, 55.9773393 -3.1724494, 55.9789535 -3.2110248, 55.9449763 -3.1994667, 55.9440570 -3.0985717, 55.9308970 -3.2761417, 55.9308699 -3.2764985, 55.9449994 -3.1905191, 55.9450146 -3.1904231, 55.9450298 -3.1903272, 55.9450449 -3.1902313, 55.9451338 -3.1906532, 55.9471706 -3.1875904, 55.9472333 -3.1877797, 55.9473065 -3.1867806, 55.9474310 -3.1878868, 55.9475351 -3.1877754, 55.9476704 -3.1869573, 55.9466232 -3.1903104, 55.9227217 -3.1743920, 55.9228810 -3.1754273, 55.9231124 -3.1754193, 55.9229249 -3.1782458, 55.9499694 -3.1797507, 55.9499757 -3.1798160, 55.9500637 -3.1794660, 55.9500938 -3.1794485, 55.9229601 -3.1790391, 55.9234202 -3.1790544, 55.9496737 -3.1953225, 55.9496093 -3.1936827, 55.9324201 -3.2283154, 55.9332737 -3.2297560, 55.9540835 -3.1946291, 55.9538883 -3.1945191, 55.9332338 -3.3059686, 55.9461093 -3.1908375, 55.9219330 -3.1748598, 55.9218016 -3.1748987, 55.9219960 -3.1749734, 55.9744239 -3.1691820, 55.9728088 -3.1726327, 55.9662597 -3.2747756, 55.9236090 -3.1756325, 55.9232313 -3.1775694, 55.9233923 -3.1756184, 55.9233871 -3.1778419, 55.9232089 -3.1756515, 55.9241251 -3.1769791, 55.9240500 -3.1763163, 55.9240459 -3.1760836, 55.9760545 -3.1722808, 55.9760744 -3.1723069, 55.9760967 -3.1723363, 55.9761143 -3.1723594, 55.9761347 -3.1723863, 55.9403945 -3.2158834, 55.9278319 -3.2080812, 55.9349041 -3.1941656, 55.9352085 -3.1942601, 55.9415572 -3.1816423, 55.9764476 -3.1748222, 55.9239723 -3.2766478, 55.9733387 -3.1597088, 55.9734148 -3.1600433, 55.9735494 -3.1606497, 55.9735513 -3.1593324, 55.9736293 -3.1610016, 55.9224592 -3.1709234, 55.9218927 -3.1712183, 55.9213809 -3.1720986, 55.9226362 -3.1713083, 55.9217894 -3.1710946, 55.9214361 -3.1718249, 55.9226459 -3.1734170, 55.9213580 -3.1747778, 55.9220244 -3.1710946, 55.9218908 -3.1714830, 55.9610834 -3.2095634, 55.9630366 -3.2717464, 55.9630747 -3.2715963, 55.9484447 -3.1843437, 55.9484777 -3.1836947, 55.9170876 -3.2804582, 55.9135224 -3.2850940, 55.9067106 -3.2882563, 55.9217086 -3.1768073, 55.9222416 -3.1726200, 55.9588598 -3.2100369, 55.9590703 -3.2119737, 55.9439019 -3.2085830, 55.9451311 -3.1897703, 55.9452737 -3.1901683, 55.9877270 -3.4032457, 55.9446192 -3.1863319, 55.9458070 -3.2095020, 55.9444803 -3.2039362, 55.9460182 -3.2010225, 55.9459465 -3.2016327, 55.9128704 -3.1462314, 55.9096084 -3.1641850, 55.9523560 -3.1898764, 55.9501677 -3.1941355, 55.9224638 -3.1384787, 55.9318779 -3.1171239, 55.9136277 -3.2843172, 55.9298225 -3.2990436, 55.9311044 -3.3133383, 55.9458515 -3.1980077, 55.9457862 -3.1979355, 55.9452290 -3.1985640, 55.9437008 -3.2082520, 55.9805652 -3.3733239, 55.9805687 -3.3735771, 55.9805828 -3.3738869, 55.9866034 -3.3821926, 55.9112196 -3.2389868, 55.9432504 -3.1876414, 55.9446635 -3.1870755, 55.9435643 -3.1873169, 55.9512576 -3.1129346, 55.9514240 -3.1093846, 55.9229811 -3.1763698, 55.9230219 -3.1728013, 55.9221871 -3.1768683, 55.9714345 -3.2340139, 55.9756296 -3.2991464, 55.9071740 -3.1760256, 55.9225250 -3.1716936, 55.9042124 -3.2337312, 55.9420976 -3.2147413, 55.9405016 -3.1167372, 55.9632048 -3.1967376, 55.9468551 -3.1921685, 55.9389289 -3.2006557, 55.9381152 -3.2525427, 55.9412187 -3.1774429, 55.9779252 -3.2983140, 55.9479663 -3.2096906, 55.9218200 -3.1722829, 55.9295395 -3.1282958, 55.9301933 -3.1287728, 55.9619346 -3.2372188, 55.8999085 -3.2504636, 55.9352033 -3.0999188, 55.9343002 -3.1048832, 55.9321485 -3.0988146, 55.9014944 -3.2029824, 55.9679010 -3.2352863, 55.9706854 -3.2358050, 55.9710370 -3.2354851, 55.9710928 -3.2351825, 55.9711575 -3.2348271, 55.9712178 -3.2357510, 55.9712241 -3.2344343, 55.9713106 -3.2340930, 55.9717340 -3.2345051, 55.9719358 -3.2348431, 55.9719826 -3.2342604, 55.9556426 -3.1715490, 55.9557362 -3.1704782, 55.9558930 -3.1705907, 55.9357218 -3.3185706, 55.9415743 -3.1747963, 55.9415635 -3.1757823, 55.9116844 -3.3222899, 55.9119672 -3.3224414, 55.9239634 -3.1724671, 55.9220936 -3.1720186, 55.9294754 -3.2049102, 55.9239120 -3.1786280, 55.9220264 -3.1760991 +11 +49.4039055 8.6875262 +55.9067239 -3.3259177 +49.4136008 8.7082611, 49.4112441 8.6903587, 49.4113237 8.6908643, 49.4110063 8.6891664, 49.4110500 8.6895186, 49.4108794 8.6883101, 49.4114098 8.6912991, 49.4111290 8.6899184, 49.4108382 8.6876904, 49.4108769 8.6888215, 49.4174692 8.7409450, 49.4174373 8.7409306, 49.4160829 8.7535172, 49.4161808 8.7538213, 49.4162711 8.7543843, 49.4161118 8.7531970, 49.4161148 8.7535052, 49.4161008 8.7532182, 49.4161967 8.7538178, 49.4163492 8.7543908, 49.4161886 8.7531881, 49.4162603 8.7544111, 49.4162703 8.7537989, 49.4096864 8.6726720, 49.4127535 8.6919848, 49.4129719 8.7021700, 49.4110222 8.6895550, 49.4110351 8.6877461, 49.4171759 8.7213230, 49.4110610 8.6883331, 49.4111755 8.6894519, 49.4111501 8.6899020, 49.4111830 8.6903927, 49.4108661 8.6877402, 49.4110485 8.6891464, 49.4113717 8.6902930, 49.4112504 8.6898546, 49.4112035 8.6898762, 49.4110984 8.6899270, 49.4112430 8.6903482, 49.4108892 8.6883359, 49.4111039 8.6891143, 49.4171375 8.7213480, 49.4110736 8.6894975, 49.4114116 8.6912936, 49.4108083 8.6883827, 49.4109282 8.6892056, 49.4109717 8.6887717, 49.4108567 8.6888332, 49.4112902 8.6908759, 49.4111257 8.6894742, 49.4113048 8.6903187, 49.4109698 8.6883042, 49.4111619 8.6890938, 49.4114203 8.6908213, 49.4109153 8.6887997, 49.4114811 8.6912678, 49.4113505 8.6908441, 49.4109887 8.6891763, 49.4109440 8.6877038, 49.4107928 8.6877659, 49.4100250 8.6811799, 49.4110496 8.6899485, 49.4100683 8.6817742, 49.4109674 8.6895199, 49.4129423 8.6936139, 49.4147216 8.7059968 +yes +Gaumont Parnasse, Gaumont Miramar, UGC Gobelins, Les Fauvettes, UGC Ciné-cité Bercy, Cinéma Louis Lumière, UGC Ciné-Cité Les Halles, Pathé Beaugrenelle, Géode, Pathé Wepler +Saughton Prison, Military Prison, Military Prison +48.8275543 9.1735007, 48.8317303 9.1734075, 48.7617346 9.1602369, 48.7788981 9.1250248, 48.7596919 9.2545814, 48.7755956 9.2787713, 48.7822418 9.1959176, 48.7297433 9.1126553, 48.7404705 9.2193208, 48.7701954 9.1501963, 48.8038663 9.2046417, 48.7813370 9.1781225, 48.7738605 9.1653114, 48.7745628 9.1768249, 48.7755661 9.1822665, 48.8075764 9.2215905, 48.7748791 9.2033224, 48.7855023 9.2078250, 48.7728984 9.2422225, 48.7603190 9.1527564, 48.8099398 9.1822005, 48.7835213 9.1904669, 48.7777675 9.1786644, 48.7836379 9.1815620, 48.8051636 9.2143167, 48.8075633 9.2031061, 48.8056941 9.2052973, 48.8046584 9.2081441, 48.7733342 9.1815389, 48.7935947 9.1983330, 48.8302021 9.2116521, 48.8031750 9.2176931, 48.7482479 9.1675385, 48.7803811 9.2504393, 48.8062716 9.1978670, 48.8137095 9.1121176, 48.7459605 9.1628840, 48.8141780 9.1680725, 48.7637146 9.1680877, 48.7829026 9.1869980, 48.7314704 9.1097357, 48.7803731 9.1800642, 48.7790681 9.1778545, 48.7789470 9.1790715, 48.8029161 9.0920608, 48.7103495 9.2034577, 48.8299794 9.1677017, 48.8066438 9.2064316, 48.7625523 9.2679330, 48.7714772 9.1787823, 48.7739785 9.1452043, 48.7743064 9.1728145, 48.7607878 9.0913690, 48.8367097 9.2219462, 48.8053640 9.1717932, 48.8047872 9.1737641, 48.8071042 9.1709399, 48.7454315 9.2048052, 48.7749765 9.1780052, 48.7865061 9.0839294, 48.8094922 9.1604032, 48.8347151 9.2143326, 48.8016329 9.2177209, 48.7813410 9.2686106, 48.7836687 9.1815739, 48.8414941 9.2304961, 48.7764847 9.1755588, 48.8076517 9.1765509, 48.8280349 9.1541290, 48.7938236 9.1839219, 48.7837497 9.1800574, 48.7507249 9.1456259, 48.7505944 9.1457578, 48.7313130 9.1503043, 48.7180216 9.1426302, 48.7181588 9.1430137, 48.7774882 9.1785566, 48.8036701 9.1726227, 48.7741500 9.1732643, 48.7979487 9.2154410, 48.7735308 9.1564212, 48.8022186 9.2108011, 48.7173535 9.1056474, 48.8228892 9.2406244, 48.7072019 9.1705971 +0 +478 +14 +Folies Bergère, Théâtre des Champs-Elysées, Salle Pleyel, La Maroquinerie, Bouffon théâtre, Théâtre Douze, Opéra Bastille, Le Cabaret Sauvage, Théâtre National de l'Opéra Comique, Philharmonie 2, Cavae des Arènes de Lutèce +no +55.9383859 -3.2394291, 55.9455830 -3.1876260, 55.9100645 -3.3226374, 55.9361114 -3.1942444, 55.9164420 -3.3136067, 55.9814339 -3.1885738, 55.9247587 -3.2516367, 55.9821090 -3.1943241, 55.9743443 -3.1729943, 55.9690958 -3.1689922, 55.9881090 -3.4095046, 55.9881478 -3.4092417, 55.9360357 -3.2265093, 55.9710850 -3.2302781, 55.9574260 -3.1873226, 55.9629073 -3.2208615, 55.9472459 -3.1969515, 55.9278249 -3.1233349, 55.9018528 -3.2249445, 55.9194696 -3.2656157, 55.9200972 -3.2944514, 55.9183885 -3.2959833, 55.9636382 -3.1754565, 55.9739316 -3.1698802, 55.9017724 -3.1405609, 55.9386177 -3.2366758, 55.9416986 -3.1760841, 55.9412183 -3.1743024 +49.4107966 8.6943951, 49.4238658 8.7430940, 49.4121051 8.6860030, 49.4223501 8.6599302, 49.4223222 8.6598873, 49.4215332 8.6575985, 49.4210068 8.6578764, 49.4208003 8.6576284, 49.4224924 8.6561789, 49.3766836 8.6787719, 49.4236184 8.7425460, 49.4093508 8.6801567, 49.4092005 8.6801515, 49.4093634 8.6798229, 49.4096416 8.6803947, 49.4122205 8.6532679, 49.4096058 8.6805282 +no +Cameo Picturehouse, Odeon, Filmhouse, Cineworld, Vue Cinema, Vue, Odeon, Odeon, Dominion Cinema, Filmhouse +no +391.96682315573912 +55.9353820 -3.2098014, 55.9456427 -3.1913637, 55.9257928 -3.2095594, 55.9687872 -3.1730375, 55.9801706 -3.1982531, 55.9605889 -3.1427782, 55.9788896 -3.2317323, 55.9588767 -3.2113228, 55.9614993 -3.3058797, 55.9334740 -3.1781896, 55.9057929 -3.2224600, 55.9360042 -3.2097006, 55.9370406 -3.2074419, 55.9654170 -3.1758684, 55.9460048 -3.2123234, 55.9466560 -3.2163830, 55.9448417 -3.2174972, 55.9424799 -3.2816617, 55.9713034 -3.2524594, 55.9504108 -3.2089957, 55.9505271 -3.1874272, 55.9529055 -3.1966423, 55.9530315 -3.1960873, 55.9399803 -3.2118878, 55.9398206 -3.2115635, 55.9422231 -3.2036961, 55.9600977 -3.2957282, 55.9592529 -3.2133182, 55.9453652 -3.1842234, 55.9268573 -3.2094072, 55.9807322 -3.1775607, 55.9591279 -3.1715305, 55.9592018 -3.1715098, 55.9575707 -3.2076016, 55.9148390 -3.1652277, 55.9376474 -3.1780108, 55.9414683 -3.1812245, 55.9331816 -3.2608758, 55.9415944 -3.1818222, 55.9416532 -3.1818741, 55.9484509 -3.1864893, 55.9603970 -3.2016509, 55.9325122 -3.1401027, 55.9640862 -3.1771034, 55.9174745 -3.1579689, 55.9542022 -3.2014648, 55.9627123 -3.1781131, 55.9699822 -3.1694976, 55.9714788 -3.1731260, 55.9510261 -3.2098355, 55.9332103 -3.2103231, 55.9613619 -3.1518927, 55.9439508 -3.1937950, 55.9509802 -3.2097331, 55.9653610 -3.1550289, 55.9580703 -3.1227957, 55.9588768 -3.1791133, 55.9589264 -3.1830818, 55.9277224 -3.2095761, 55.9530706 -3.1144267, 55.9295883 -3.2975758, 55.9240121 -3.2767704, 55.9622681 -3.1967802, 55.9672435 -3.2457527, 55.9576090 -3.1991586, 55.9284400 -3.2792074, 55.9713179 -3.1734837, 55.9298458 -3.2993946, 55.9655528 -3.2738894 +48.8302061 2.3311185 +883 and North Bridge, George IV Bridge, City of Edinburgh Bypass, Dean Bridge, Echline Roundabout, Forth Bridge, Yeamen Place, West Approach Road, Grove Street, Roseburn Path, Roseburn Path, Harrison Road, East Coast Main Line, Scott Russell Aqueduct (Union Canal), Wester Hailes Road, Slateford Aquaduct, Clovenstone Road, Ravelrig Road, Union Canal Towpath, Lanark Road, Edinburgh to Glasgow via Shotts, Baberton Mains Hill, Gogar Station Road, Union Canal, Long Dalmahoy Road, Long Dalmahoy Road, Meadow Place Road, Dumbryden Road, The Forth Road Bridge, The Forth Road Bridge, Union Canal Towpath, Hermiston House Road, Hermiston House Road, Bridge Road, Water of Leith Walkway, Curriehill Road, Gogar Station Road, Gogar Station Road, Hailesland Park, Riccarton Mains Road, Boundary Road East, Water of Leith Walkway, Wester Hailes Road, Wester Hailes Road, Wester Hailes Road, Union Canal Towpath, Baird Road, Murrayburn Road, Kingsknowe Road North, Water of Leith Walkway, South Bridge, Ferry Road, Telford Path, Great Junction Street, Forth Road Bridge (Cycleway), Forth Road Bridge (Maintenance), Ferry Road, Falshaw Bridge, South Gyle Road, South Fort Street, Bonaly Road, Kirkgate, Turnhouse Road, St Mark's Path, Warriston Road, Newhaven Road, Silverknowes Road, Craighall Road, Craighall Road, Pilton Drive, Telford Road, Waterloo Place, Queensferry Road, Union Canal Towpath, Union Canal, Canonmills Bridge, Cemetery Road, Seafield Road, Broomhouse Road, Union Canal, Union Canal Towpath, Lanark Road, Nether Craigour, Old Dalkeith Road, Gilmerton Road, Clovenstone Road, Dreghorn Link, North Meggetland, Ravelston Dykes, Glasgow Road, Glasgow Road, Crewe Road Gardens, Braid Avenue, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, City of Edinburgh Bypass, City of Edinburgh Bypass, City of Edinburgh Bypass, City of Edinburgh Bypass, Edinburgh to Glasgow via Shotts, Water of Leith Walkway, Water of Leith Walkway, West Approach Road, East Coast Main Line, Lochend Road, Restalrig Railway Path, Restalrig Railway Path, Restalrig Railway Path, Ocean Drive, Ocean Drive, Newhaven Road, Blackford Avenue, Craigmillar Park, Little France Crescent, Milton Road East, Commercial Street, City of Edinburgh Bypass, City of Edinburgh Bypass, Torphin Road, South Trinity Road, Clark Road, Water of Leith Walkway, Deanhaugh Street, Fillyside Road, St Mark's Bridge, Water of Leith Walkway, City of Edinburgh Bypass, City of Edinburgh Bypass, City of Edinburgh Bypass, City of Edinburgh Bypass, Water of Leith Walkway, Swanston Road, Harrison Road, West Approach Road, West Footbridge, Telford Path, Craigentinny Avenue, North Ramp, Humbie, Humbie, Easter Road, Duddingston Road West, Duddingston Road West, Belford Road, Milton Road East, Dean Path, Slateford Road, Water of Leith Walkway, Water of Leith Walkway, Dumbryden Grove, Water of Leith Walkway, Walker's Wynd, Middle Footbridge, Crawford Bridge, Restalrig Road, Marionville Road, Fillyside Road, West Approach Road, Lochside Avenue, Edinburgh Road, Roddinglaw Road, Water of Leith Walkway, Fife Circle Line, Queensferry Road, Balgreen Road, Boswall Drive, Shandon Place, Biggar Road, Bridge Road, City of Edinburgh Bypass, City of Edinburgh Bypass, Bonaly Road, Redford Bridge, The Innocent Railway, Forken Ford, Waverley Bridge, Coltbridge Avenue, Hope Lane, Granton Road, Wardie Road, Telford Road, Peffermill Road, Ferry Road, Portobello Road, Scout Bridge, City of Edinburgh Bypass, Gogar Roundabout, Biggar Road, Myreside Road, Brunstane Burn Walkway, Bridge Street, Fife Circle Line, Glasgow to Edinburgh via Falkirk Line, Newcraighall Road, Gogarmuir Road, Newbridge Roundabout, Newbridge Roundabout, Portobello Road, Ashley Terrace, Anderson Place, West Bowling Green Street, Station Road, Water of Leith Walkway, Clifton Road, Meggetland Bridge, Sandport Place, Mountcastle Drive North, Warriston Path, Corstorphine Branch Railway Route, Chapelhill Road, Redhall Bank Road, Water of Leith Walkway, Calder Road, Calder Road, East Coast Main Line, East Coast Main Line, East Coast Main Line, Tron Square, Fishwives Causeway, East Coast Main Line, Sir Harry Lauder Road, East Coast Main Line, Lennox Row, Edinburgh Park Bridge, Edinburgh Park Bridge, Bothwell Street, Water of Leith Walkway, Poet's Glen, Oswald Road, Howe Dean Path, Dundee Street, Seafield Road, Water of Leith Walkway, Water of Leith Walkway, Bonnington Bridge, The Salvesen Bridge, Milton Road East, Portobello Road, London Road, Glasgow to Edinburgh via Falkirk Line, Glasgow to Edinburgh via Falkirk Line, South Ramp, Broughton Road, Echline Roundabout, Dell Road, Water of Leith Walkway, Water of Leith Walkway, Firrhill Drive, Adelphi Place, Corstorphine Branch Railway Route, Sir Harry Lauder Road, Sir Harry Lauder Road, East Coast Main Line, Boathouse Bridge, Edinburgh Road, Ferry Road Path, Brunstane Road South, East Coast Main Line, Water of Leith Walkway, Hallyards Road, Blinkbonny Road, Oxgangs Road North, New Liston Road, Lochend Road, North Fort Street, Mayfield Road, The Loan, Haughhead Road, Water of Leith Walkway, Warriston Path, Bavelaw Gardens, Harlaw Road, Private Road, Private Road, Water of Leith Walkway, Water of Leith Walkway, Blinkbonny Road, Private Road, Harlaw Road, Glenbrook Road, Glasgow Road, Mid Liberton, Chesser Avenue, Lochend Butterfly Way, Water of Leith Walkway, Viewforth, Poet's Glen, Milton Farm Road, Myreton Drive, Queensferry Crossing, Queensferry Crossing, Dalmeny, Dalmeny, Gilmerton Dykes Street, East Coast Main Line, Drum Street, Ferry Road, Leamington Lift Bridge, The Walk, Milton Farm Road, Milton Farm Road, Saint Bernards Bridge, Greendykes Road, Hermiston House Road, East Coast Main Line, East Coast Main Line, East Coast Main Line, East Coast Main Line, Little France Drive, Brunstane Burn Walkway, Gogar Roundabout, Edinburgh to Glasgow via Shotts, Gowanhill Farm Road, Lanark Road, Howe Dean Path, Howe Dean Path, Water of Leith Walkway, Water of Leith Walkway, Old Burdiehouse Road, Union Canal Towpath, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Gracemount Drive, Brunstane Road, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Queensferry Roundabout, Harvesters Way, Hopetoun Road, East Coast Main Line, East Coast Main Line, Forth Bridge, Water of Leith Walkway, Glasgow to Edinburgh via Falkirk Line, Fife Circle Line, Greenbank Crescent, Leith Street Bridge, Ashley Terrace, East Coast Main Line, Gogar Station Road, Gogar Station Road, Burnhead Grove, St Katherine's Brae, Johnston Terrace, Edinburgh to Glasgow via Shotts, Edinburgh to Glasgow via Shotts, Waverley Bridge, Waverley Bridge, Slateford Road, Eastfield Avenue, East Coast Main Line, East Coast Main Line, Ellen's Glen Loan, Dreghorn Loan, Lennymuir +55.9782570 -3.2974770, 55.9126235 -3.3200599, 55.9328025 -3.3133858, 55.9873483 -3.3962845, 55.9379190 -3.2748726, 55.9492741 -3.4056494, 55.9083022 -3.2718175, 55.9812556 -3.3751682 +yes +173 +49.4151455 8.7001711 +0 +49.4592060 8.7521809, 49.4031563 8.7288155, 49.4032526 8.7289874, 49.3732501 8.7471415, 49.4010156 8.7133745, 49.4012714 8.7099451, 49.4035347 8.7270885, 49.3798053 8.7238859, 49.3924119 8.7403556, 49.4353405 8.6845100, 49.4386622 8.6819436, 49.4198190 8.7257180, 49.4318454 8.7057299, 49.3784315 8.6932171, 49.4588749 8.7510057, 49.4085824 8.7204400 +84 +444 +E 50, E 05, E 15 +yes +48.8319392 2.3309271 +Hotel Schönberger Hof, Hotel Tannhäuser, Hotel Bayrischer Hof, Hackteufel, Hotel Perkeo, Hotel The Dubliner, Hotel Regina, Neckartal, Goldener Falke, Hotel Zur Alten Brücke, Hotel Central, Denner Hotel, Hotel Acor, Hotel Monpti, Hotel Goldene Rose, Hotel Nassauer Hof, Hotel am Rathaus, Hotel am Schloss, Hotel Kulturbrauerei Heidelberg, Hotel Villa Marstall, Hotel Goldener Hecht, Hotel Holländer Hof, Hotel Schnookeloch, Hotel Weisser Bock, Hotel Backmulde, Altstadt Hotel, Hotel Krokodil, Hiphotel Blume, Hotel Classic Inn, Hotel Diana, Gästehaus der SRH, Exzellenz Hotel, Hotel Boarding House, Hotel Panorama, Hotel Schmitt, Hotel Heidelberg, Hotel Rose, Cafe Hotel Frisch +53.0289027 8.6383844, 53.0479116 8.6346100, 53.0289689 8.6384139, 53.0478728 8.6346395, 53.0478342 8.6346610 +1 +55.9524898 -3.1736491, 55.9525959 -3.1925077 +384 +yes +http://www.hotel-etab.de, http://www.marriott.de, http://www.auerstein.de/, http://www.grenzhof.de, http://www.hotels-in-heidelberg.de, http://www.gaestehaus-endrich.de, http://www.parkhotelatlantic.de, http://www.leonardo-hotels.com, http://www.bayrischer-hof-heidelberg.com, http://www.hackteufel.de, http://www.hotels-in-heidelberg.de, http://www.dublinerheidelberg.com, http://www.ibis-hotel.de, http://hotelneckartal.de, www.goldener-falke-heidelberg.de, http://www.hotel-ritter-heidelberg.com/, http://www.europaeischerhof.com, http://www.hotel-elite-heidelberg.de, http://www.hotel-kohler.de, http://qube-hotel-heidelberg.de/, http://www.hotel-central-heidelberg.de, http://www.denner-hotel.de, http://www.hotel-acor.de, http://www.hotel-monpti.de, http://www.hotelamkornmarkt.de, http://www.nh-hotels.de/nh/de/hotels/deutschland/heidelberg.html, http://www.hotel-goldene-rose.de, http://www.hotel-nassauer-hof.de, http://www.hotels-in-heidelberg.de, http://www.hotels-in-heidelberg.de, http://www.heidelberger-kulturbrauerei.de/, www.villamarstall.de, www.hotel-goldener-hecht.de, http://www.hollaender-hof.de, http://www.hotel-schnookeloch.de/, http://www.arthotel.de, www.weisserbock.de, http://www.gasthaus-backmulde-hotel.de, http://www.hip-hotel.de, http://www.hd-altstadt-hotel.de, http://www.krokodil-heidelberg.de, http://www.blume-hotel.de, http://www.hotel-classic-inn.de, www.garnihoteldiana.de, http://www.bergheim41.de, http://www.hotel-kranich-heidelberg.de, http://www.ihg.com/holidayinnexpress/hotels/de/de/heidelberg/hdbex/hoteldetail, http://www.4-jahreszeiten.de/, http://sevendays-hd.de, http://www.sudpfanne-heidelberg.de, http://www.molkenkur.de, http://www.gaestehaus.srh.de, www.heidelbergsuites.com, www.lamm-heidelberg.de, http://www.heidelberg-astoria.de/, www.hirschgasse.de, http://www.crowneplaza-heidelberg.de/, http://www.exzellenzhotel.de, http://www.boardinghouse-hd.de, http://www.hotel-anlage.de, http://www.panorama-heidelberg.de, http://www.leonardo-hotels.de/deutschland-hotels/hotel-heidelberg/leonardo-heidelberg-hotel, http://www.hotel-schmitt-heidelberg.de, http://www.goldenerose-hd.de, http://www.hotelheidelberg.com, www.hotel-rose-heidelberg.com, http://www.hotel-neu-heidelberg.de, https://hotelo-heidelberg.de, http://www.cafe-frisch.de, http://www.hoteldenriko-hd.de/, http://www.adler-heidelberg.de, http://www.zum-waldhorn.de, http://www.hotelbb.de/de/heidelberg, http://isg-hotel.de, http://www.crowneplaza-heidelberg.de/ +yes +slipway, marina, skate park, nature reserve, park, sports centre, playground, track, pitch, bingo, fitness centre, yes, picnic table, hackerspace, dance, garden, sauna, adult gaming centre, fitness station, amusement arcade, tanning salon, 1, viewing point (mound), stadium, recreation ground, golf course, common, playing fields, swimming pool, bicycle, miniature golf, club, wetland +0 +48.8718241 2.3676242, 48.8385750 2.3962263, 48.8367172 2.3924117, 48.8478582 2.3735429, 48.8483311 2.3741932, 48.8471402 2.3725177, 48.8342552 2.3021401, 48.8847672 2.3248422, 48.8555382 2.3054236, 48.8576438 2.3546760, 48.8343459 2.3060180, 48.8321878 2.3587424, 48.8604674 2.3454225, 48.8631582 2.3498973, 48.8633690 2.3462612, 48.8634242 2.3462790, 48.8555040 2.3574259, 48.8402209 2.3517797, 48.8550149 2.3631694, 48.8552064 2.3625817, 48.8537619 2.3675235, 48.8661285 2.3594408, 48.8521687 2.3444775, 48.8820420 2.3678327, 48.8760311 2.3700774, 48.8551090 2.3306870, 48.8530169 2.3313456, 48.8521220 2.3374608, 48.8724761 2.3240966, 48.8801220 2.3241052, 48.8683182 2.2984850, 48.8694700 2.3034453, 48.8517830 2.3177917, 48.8802074 2.3638169, 48.8495519 2.2685978, 48.8402456 2.2655127, 48.8764826 2.2833917, 48.8426877 2.3123128, 48.8449589 2.3493182, 48.8449041 2.3498515, 48.8507370 2.3741124, 48.8830873 2.3292402, 48.8821024 2.3331994, 48.8468451 2.3046139, 48.8775262 2.2949459, 48.8437516 2.3150319, 48.8644002 2.3730285, 48.8515963 2.3430149, 48.8351935 2.3203079, 48.8716176 2.3411379, 48.8809546 2.3510669, 48.8238612 2.3234793, 48.8403734 2.3690860, 48.8908275 2.3460063, 48.8851558 2.3360026, 48.8943730 2.3432450, 48.8724460 2.3632870, 48.8726535 2.3631861, 48.8570910 2.3727607, 48.8407873 2.3491103, 48.8446979 2.3491285, 48.8644111 2.3256564, 48.8406254 2.3514242, 48.8684086 2.3268250, 48.8864168 2.3442029, 48.8615810 2.3783255, 48.8485015 2.3421189, 48.8334129 2.3092754, 48.8914883 2.3506742, 48.8742191 2.3339210, 48.8743601 2.3329097, 48.8336139 2.2900906, 48.8332825 2.2894710, 48.8680574 2.3417881, 48.8260954 2.3467344, 48.8873045 2.3360309, 48.8974737 2.3312683, 48.8884483 2.3329205, 48.8480831 2.4040261, 48.8335658 2.2868046, 48.8685541 2.3683047, 48.8846868 2.3416679, 48.8507620 2.3449853, 48.8501155 2.2920291, 48.8625297 2.3799298, 48.8514439 2.3380763, 48.8648559 2.3969632, 48.8654719 2.2892837, 48.8452414 2.3792066, 48.8732268 2.3622695, 48.8494723 2.2914581, 48.8848153 2.3229754, 48.8412254 2.3738186, 48.8752221 2.3038262, 48.8515203 2.3696022, 48.8254502 2.3502147, 48.8264077 2.3428246, 48.8279313 2.3307106, 48.8675264 2.4005840, 48.8219312 2.3422877, 48.8216356 2.3337458, 48.8256612 2.3136542, 48.8409791 2.2776487, 48.8333911 2.2872190, 48.8426051 2.2779253, 48.8235152 2.3304799, 48.8250198 2.3200783, 48.8717135 2.3253034, 48.8288049 2.3816393, 48.8450981 2.4030570, 48.8469580 2.4075011, 48.8641784 2.3663950, 48.8199882 2.3571489, 48.8516756 2.3382308, 48.8637283 2.3634669, 48.8576256 2.3683245, 48.8744006 2.3588789, 48.8761280 2.3384291, 48.8437191 2.2967019, 48.8528548 2.3460331, 48.8529227 2.3457849, 48.8526334 2.3445601, 48.8525154 2.3452198, 48.8526532 2.3453925, 48.8961469 2.3382720, 48.8378379 2.3473550, 48.8280793 2.3157863, 48.8910108 2.3616762, 48.8813094 2.2861348, 48.8845891 2.2945570, 48.8850188 2.2939952, 48.8816270 2.2921775, 48.8489944 2.3476761, 48.8875090 2.2976290, 48.8853110 2.2955510, 48.8468258 2.4090233, 48.8397572 2.3497147, 48.8445679 2.3496772, 48.8776900 2.2917270, 48.8604075 2.3556155, 48.8796560 2.2864960, 48.8804350 2.2856120, 48.8806940 2.2861620, 48.8805790 2.2866490, 48.8412345 2.3039106, 48.8879180 2.3067900, 48.8753410 2.2939710, 48.8310107 2.3759336, 48.8311337 2.3738972, 48.8394477 2.3924756, 48.8770440 2.2917940, 48.8653444 2.2836290, 48.8495450 2.3787201, 48.8500160 2.3788251, 48.8465400 2.3811858, 48.8503285 2.3781973, 48.8481689 2.3925595, 48.8469569 2.3847760, 48.8789083 2.3856186, 48.8816483 2.3644514, 48.8777223 2.3322319, 48.8409660 2.3058020, 48.8446976 2.3221192, 48.8466518 2.3051464, 48.8799610 2.3291770, 48.8439032 2.3546898, 48.8847791 2.3925318, 48.8754373 2.3874893, 48.8537312 2.3325450, 48.8842800 2.3047290, 48.8804060 2.3026459, 48.8325941 2.3183175, 48.8595048 2.3686879, 48.8684431 2.3706044, 48.8795140 2.2896410, 48.8725146 2.3295568, 48.8425076 2.3118940, 48.8490626 2.3191414, 48.8501266 2.3186024, 48.8321324 2.3033719, 48.8831840 2.2988520, 48.8615523 2.3705150, 48.8660197 2.3652856, 48.8623150 2.3663735, 48.8708703 2.3415985, 48.8578247 2.3662529, 48.8639488 2.3703133, 48.8338958 2.3308830, 48.8633935 2.3689645, 48.8649026 2.3629604, 48.8649556 2.3628423, 48.8555334 2.3742149, 48.8654028 2.3619785, 48.8626538 2.3632511, 48.8357881 2.3244751, 48.8719853 2.3667390, 48.8455190 2.3446763, 48.8387816 2.3087465, 48.8392441 2.3094339, 48.8925185 2.3433234, 48.8799666 2.3508222, 48.8822955 2.3242327, 48.8515711 2.3472131, 48.8628005 2.3713562, 48.8608431 2.3677027, 48.8849962 2.3715251, 48.8908910 2.3395767, 48.8724267 2.3592410, 48.8628804 2.3600120, 48.8662690 2.3645400, 48.8781055 2.2991925, 48.8461703 2.3431295, 48.8389227 2.3228126, 48.8620567 2.3541153, 48.8609390 2.3783004, 48.8775308 2.3517179, 48.8556232 2.3622414, 48.8603504 2.3485177, 48.8733106 2.3433422, 48.8734527 2.3436472, 48.8289715 2.3074959, 48.8320253 2.3443178, 48.8850777 2.3783225, 48.8644404 2.3701571, 48.8407230 2.2660512, 48.8306596 2.3335092, 48.8691511 2.3577313, 48.8337227 2.3700220, 48.8838716 2.3395954, 48.8496214 2.2953917, 48.8439754 2.2833906, 48.8438178 2.2832533, 48.8734250 2.3527847, 48.8706955 2.3281598, 48.8717901 2.3283005, 48.8681835 2.2918929, 48.8720459 2.3036661, 48.8507865 2.3491165, 48.8721613 2.3028433, 48.8673236 2.2976240, 48.8735380 2.3345217, 48.8950535 2.3171038, 48.8952880 2.3170086, 48.8795729 2.3273136, 48.8654372 2.3773868, 48.8792387 2.3148546, 48.8609318 2.3437651, 48.8611201 2.3440538, 48.8435883 2.2981394, 48.8432976 2.3005724, 48.8460759 2.2786183, 48.8256470 2.3650793, 48.8666855 2.3458176, 48.8659951 2.3472997, 48.8408375 2.3874300, 48.8311227 2.3287719, 48.8387965 2.3219353 +49 +yes +1.6159361655341584 +48.8946050 2.3468940 +Geschwister-Scholl-Schule, Kurpfalzschule, Julius-Springer-Schule, Johannes-Kepler-Realschule, Mönchhof-Grundschule, Freie Christliche Schule, Friedrich-Ebert-Grundschule, Hölderlin-Gymnasium, Musik- und Singschule, Geschwister-Scholl Grund- und Hauptschule, aula Sprachen, Ballettschule Lack, Elisabeth von Thadden-Schule, Waldorfschule Heidelberg, Bunsen-Gymnasium, Neckarschule, Heidelberg College, St. Raphael-Schulen, Internationale Gesamtschule Heidelberg, Primarstufe, Stauffenberg-Schule, Englisches Institut Heidelberg, Theodor-Heuss-Realschule, Heiligenbergschule, Katholische Schule für Sozialwesen, Eichendorff-Grundschule, Technikzentrum, Carl-Bosch-Schule, Emmertsgrundschule, Lehr- und Versuchsanstalt für Gartenbau, Graf von Galen-Schule, Fröbelschule, Marie-Baum-Schule, Waldparkschule, Käthe-Kollwitz-Förderschule, Wilckensschule, Kurfürst-Friedrich-Gymnasium, Städtische Kita Hüttenbühl, Internationale Gesamtschule Heidelberg, Heiligenbergschule, Grundschule der Elisabeth-von-Thadden-Schule, Grundschule Schlierbach, Steinbachschule, Johannes-Gutenberg-Schule, Ecole Pierre & Marie Curie Heidelberg, Heidelberg International School, Helmholtz-Gymnasium, Julius-Springer-Schule, Pestalozzi-Schule, Willy-Hellpach-Schule, Landhausschule Heidelberg, Tiefburgschule, Gregor-Mendel-Realschule +12 +48.8507596 2.3670235, 48.8330778 2.3268974, 48.8413463 2.3002449, 48.8920793 2.3444293, 48.8667351 2.3405908, 48.8561321 2.3560085, 48.8460037 2.3443315, 48.8638757 2.3617724, 48.8506119 2.3322896, 48.8718061 2.3577803, 48.8830027 2.3819053, 48.8587211 2.3792589, 48.8774812 2.3175782, 48.8724832 2.3412640, 48.8653099 2.3994450, 48.8845147 2.3220414, 48.8325517 2.3555391, 48.8636568 2.2764260, 48.8573407 2.3204463, 48.8408215 2.3882583, 48.8564265 2.3525270, 48.8600412 2.3413119 +reservation@hotelfolkestoneopera.com, reservation@hotelsydneyopera.com, info@pershinghall.com, front.ronceray@guichard.fr, info@paris-hotel-desarts.com, resa@avalonparis.com, reservation@plazaopera.com, mod@hlparis.com, contact@cordelia-paris-hotel.com, hotel@jardindevilliers.com, monceau@leshotelsdeparis.com, hotelroyalsaintmichel@wanadoo.fr, info@hotelchopin.fr, contact@hotelparispaix.com, reservation@hotel-istria-paris.com, labourdonnais@inwood-hotels.com, hotel@fertelmaillot.com, hotelacademie@gmail.com, info@hoteldutriangledor.com, contact@hoteldevenise.fr, info@midi-hotel-paris.com, contact@mltr.fr, hotelrougemont@orange.fr, reservation@hotel-bresil-opera.com, h8189@accor.com, hotel-diana@wanadoo.fr, hoteldesenlis@wanadoo.fr, hotel.rotary@free.fr, H0934@accor.com +96.220773587726725 +Thoraxklinik, Orthopädische Klinik, Psychosomatische Ambulanz, Psychiatrische Klinik, Psychiatrische Ambulanz, Kurpfalzkrankenhaus, Klinik für Allgemeine Innere Medizin und Psychosomatik, Blutspendezentrale Heidelberg IKTZ, HIT, Zentrum für Schmerztherapie und Palliativmedizin, Nierenzentrum, Chirurgische Klinik, NCT Heidelberg, Krankenhaus St. Vincentius, Institut für Medizinische Psychologie, Klinik für Kinder- und Jugendpsychiatrie - Tageszentrum für Jugendliche, Kliniken Schmieder Heidelberg, Salem, Unfallchirurgie - Atos, Institut für Psychosomatische Kooperationsforschung und Familientherapie, Tropenmedizinische Ambulanz, Ethianum, Hautklinik, Frauenklinik und Hautklinik, Frauenklinik, St. Josefskrankenhaus, Bethanien-Krankenhaus, Medizinische Klinik, Sankt Elisabeth, Kopfklinik, Kinderklinik, Kinderklinik, ATOS Klinik, Rehabilitationsklinik Heidelberg-Königstuhl +yes +yes +yes +Dears Pharmacy +107 +yes +1998, 1989, 2001 +yes +yes +Fresque Bottazzi, Le mur des Canuts, Lyon et sa région, terre de l’humanisme, Lyon et sa région, terre de l’humanisme, Fresque de Gerland, Fresque "Mur Démo", Fresque Disques Wem, Mur de la Cour des Loges, Fresque "La renaissance", La fresque des Lyonnais, La Bibliotheque de la Cité "des écrivains en Rhône-Alpes", Fresque Boulevard de la B.D. Lada, Boulevard de la B.D. - Joost Swarte, Boulevard de la B.D. - Loustal, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Mayoud Honda, Fresque "Oullins Centre-ville", Fresque "Du Pont d'Oullins", Fresque ESAT Hélène Rivet, Fresque Vues sur le Lyonnais, Fresque La Chimie dans tout ses Etats, Fresque "La Route de la Soie", La "Fresque Végétale Lumière", Fresque des Vourlois, Fresque du Gymnase, Tag La Baguetterie, Fresque Square Villevert, Fresque "Les basiliques de Saint-Just", Fresque Arte Aca, Fresque "La cité KAPS", Fresque "Parking cité KAPS", Mur des Fourrures, Fresque "du Confluent", Fresque des Roses - Champagne-au-Mont-d'Or and 45.7858145 4.8075880, 45.7779285 4.8279690, 45.7698700 4.7879340, 45.7698985 4.7880655, 45.7245886 4.8263897, 45.7196057 4.8008161, 45.7756330 4.7951910, 45.7649855 4.8287925, 45.7165371 4.8098566, 45.7681064 4.8280574, 45.7659207 4.8312600, 45.7759090 4.8015510, 45.7760780 4.7952180, 45.7764025 4.7984375, 45.7617643 4.8152072, 45.7621030 4.8160960, 45.7618195 4.8162683, 45.8437735 4.7340205, 45.7150814 4.8078204, 45.7175164 4.8098900, 45.7690470 4.7998735, 45.5828000 4.6317347, 45.7083270 4.8272787, 45.7723084 4.8215466, 45.7696023 4.8272314, 45.6584310 4.7736255, 45.7081288 4.7481631, 45.7677299 4.8312641, 45.8764848 4.8346205, 45.7559238 4.8169452, 45.7179757 4.8174971, 45.7180962 4.8187223, 45.7178274 4.8192282, 45.7660616 4.8316834, 45.7255562 4.8164955, 45.7946355 4.7932140 +862 and 48.0843405 1.8516661, 48.0842975 1.8516532, 48.3634720 1.4444762, 48.3633107 1.4440969, 48.3090898 0.8101983, 48.4391987 1.4310492, 48.4438257 1.2435743, 48.4551854 1.5391428, 48.4550506 1.5390148, 48.2034446 1.3965531, 48.7450953 1.3465073, 48.7450288 1.3465364, 48.2041014 1.8493980, 48.2999243 1.2898661, 48.2856652 1.2503363, 48.2806148 1.2225198, 48.2800124 1.6183789, 48.0715594 1.3225756, 48.1293202 1.8532335, 48.2693592 1.1573085, 48.3892052 1.4934020, 48.3895541 1.4932054, 48.4271283 1.5158383, 48.4272198 1.5156725, 48.1637076 1.2647788, 48.3576867 1.4338803, 48.2544459 1.5705178, 48.0964603 1.8517115, 48.4156457 1.4892388, 48.4162429 1.5034164, 48.4143664 1.5057059, 48.1825735 1.3757520, 48.2632013 1.5930746, 48.3532908 1.4265631, 48.1806158 1.3747250, 48.0675193 1.2906117, 48.2069451 1.8485104, 48.4781262 1.4607501, 48.4535767 1.2953431, 48.7640966 1.3132549, 48.2832224 1.6280084, 48.4383314 1.5246435, 48.4468667 1.4788401, 48.3901942 1.7298268, 48.1105340 1.3319487, 48.4632188 1.4998341, 48.4659463 1.5066438, 48.3785954 1.4828822, 48.4161166 1.4771368, 48.0740104 1.3616631, 48.4568587 1.4826879, 48.2475820 1.5440602, 48.4513703 1.4448174, 48.2401186 1.5169750, 48.4492426 1.4904726, 48.2486754 1.1179446, 48.2331282 1.4901118, 48.3203285 0.8051680, 48.4458166 1.2350335, 48.4433598 1.2420607, 48.4391932 1.4309164, 48.4570303 1.4509779, 48.1904330 1.3353860, 48.3223013 1.8632060, 48.2543193 1.5705637, 48.2757180 1.6234395, 48.1775018 1.3793555, 48.2040697 1.8494049, 48.3348687 0.8176667, 48.1872589 1.3201202, 48.2168835 1.4325651, 48.1962959 1.0911905, 48.1794701 1.2987100, 48.2106265 1.1624752, 48.2084923 1.1591442, 48.3221267 1.6678925, 48.4731048 1.6040268, 48.4894113 1.5380927, 48.1963001 1.0981460, 48.1968889 1.0975920, 48.1947865 1.0689477, 48.1935748 1.0698455, 48.1871866 1.0458453, 48.1871223 1.0509226, 48.1900625 1.0581630, 48.2106023 1.1100587, 48.1995584 1.1160835, 48.2004834 1.1155760, 48.2010401 1.1152619, 48.2059666 1.1275207, 48.2078779 1.1355348, 48.2084109 1.1207323, 48.2103535 1.1013451, 48.2100796 1.1121090, 48.2096161 1.1402341, 48.2120405 1.1473697, 48.2121332 1.1532022, 48.2125462 1.1593680, 48.2098871 1.0867530, 48.2334847 1.0399341, 48.2333927 1.0401108, 48.2322909 1.0341270, 48.1862854 1.0086807, 48.1727366 0.9992126, 48.1724930 0.9979646, 48.1729260 1.0214302, 48.1842903 1.0479504, 48.1871074 1.0206582, 48.1868218 1.0387459, 48.2287232 1.4736829, 48.3294431 1.3825318, 48.5275940 1.0273486, 48.4645219 1.4828255, 48.4691914 1.5145482, 48.4615172 1.4943654, 48.4374840 1.4150964, 48.4520187 1.4458254, 48.4460522 1.4725078, 48.4465773 1.4671375, 48.4460603 1.4673988, 48.4439314 1.4657609, 48.4542788 1.4483370, 48.4614819 1.4553185, 48.4381387 1.4532784, 48.4424128 1.4516460, 48.2988415 1.8615469, 48.3288402 0.7988397, 48.3346487 0.8179752, 48.8598809 1.4038341, 48.4465792 1.5307528, 48.4521257 1.4838056, 48.4584810 1.4876866, 48.4330586 1.4924879, 48.1806344 1.3817390, 48.1833120 1.3838413, 48.4454252 1.4926736, 48.4469583 1.4918402, 48.4469302 1.4936845, 48.4469151 1.4933052, 48.4546304 1.4839991, 48.4624190 1.4819697, 48.4640214 1.4831040, 48.4631220 1.4841448, 48.4592278 1.4898047, 48.4588196 1.4907004, 48.4529511 1.4903462, 48.5498237 1.0300964, 48.1935903 1.3917793, 48.2257416 1.1758624, 48.1967095 1.3716422, 48.1930807 1.3530002, 48.1577871 1.2501317, 48.2082347 1.1898048, 48.2214721 1.4461878, 48.1943170 1.3608285, 48.2087707 1.1646492, 48.2731424 1.6079429, 48.4424555 1.4942771, 48.1720956 1.0168141, 48.1830829 0.9645850, 48.1859763 0.9810924, 48.1862491 0.9967439, 48.1823985 0.9559790, 48.1780392 1.8542274, 48.4393078 1.5002210, 48.4419654 1.4987456, 48.4436044 1.4961478, 48.3618146 1.1357971, 48.9173361 1.4926155, 48.7150723 1.3677673, 48.1903936 0.9341271, 48.1909690 0.9328489, 48.1718135 0.9804996, 48.1718313 0.9720534, 48.1722624 0.9651040, 48.1720555 0.9492426, 48.1735595 0.9562174, 48.2206300 0.9624339, 48.2093787 0.9308883, 48.1980415 1.8512274, 48.1895642 1.8532898, 48.1093173 1.3374097, 48.2318147 1.8488774, 48.7395328 1.3689272, 48.7418660 1.3757489, 48.8201457 1.3593555, 48.8612797 1.4229397, 48.4543906 1.4904051, 48.4537794 1.4911526, 48.4538725 1.4910121, 48.1807804 1.3891995, 48.1820987 1.3888362, 48.1798285 1.3871839, 48.1798161 1.3890830, 48.2136652 1.2309553, 48.2105588 1.2490264, 48.2153970 1.0554300, 48.2132553 1.0632878, 48.2176213 1.0391332, 48.2171034 1.0130321, 48.2308790 1.0204333, 48.2241358 0.9796079, 48.1961479 1.0898435, 48.2030098 0.8932894, 48.1672194 0.9358151, 48.3384590 1.8674987, 48.4281911 1.7644205, 48.4486735 1.7908682, 48.4508879 1.7860990, 48.2394174 1.0726545, 48.1851974 1.0426517, 48.7601426 1.5150503, 48.8485610 1.5240961, 48.2095275 1.1638064, 48.2086614 1.1654995, 48.2087279 1.1647970, 48.4708045 1.4931683, 48.2057211 1.1797547, 48.2080503 1.1698283, 48.2086619 1.1660235, 48.4438562 1.4656888, 48.3983559 1.4872365, 48.4914501 1.5904421, 48.4934615 1.6778847, 48.5115889 1.7632885, 48.6004922 1.6755514, 48.4656778 1.5717267, 48.4866511 1.6594969, 48.7374396 1.4154121, 48.5682771 1.5933435, 48.7212106 1.4179156, 48.7019630 1.3445490, 48.7082444 1.4239005, 48.2802436 1.8585158, 48.2654306 1.8528604, 48.5619935 1.0300248, 48.1423995 1.9132167, 48.0792039 1.1332806, 48.0769466 1.1403842, 48.0760918 1.1413983, 48.0886169 1.1227140, 48.0887950 1.1232395, 48.0769434 1.1249208, 48.0690723 1.1303498, 48.0879206 1.1206368, 48.0878806 1.1206668, 48.0861488 1.1228792, 48.0861026 1.1228238, 48.0911631 1.1217791, 48.0969602 1.1259293, 48.0957659 1.1434943, 48.0810642 1.3318138, 48.0837706 1.3389849, 48.0359084 1.2736162, 48.0878308 1.3301961, 48.0739971 1.3213741, 48.0601380 1.3451955, 48.0865509 1.3528851, 48.0677895 1.2950501, 48.0954226 1.3365682, 48.4516192 1.4901383, 48.4499351 1.4902463, 48.4509817 1.4916513, 48.4482826 1.4911159, 48.4445900 1.4937793, 48.4438310 1.4959260, 48.4448610 1.4955440, 48.4500930 1.4913781, 48.4336756 1.4929244, 48.4585193 1.4909708, 48.4616415 1.4832882, 48.4607283 1.4839313, 48.4624299 1.4819197, 48.5071496 1.4635719, 48.4555452 1.7960234, 48.4539982 1.7981341, 48.4619596 1.8122235, 48.6307434 1.4126334, 48.2632102 1.7617362, 48.3573699 1.6104690, 48.2400520 1.0829658, 48.4290111 1.9028543, 48.1358374 0.9775138, 48.1363663 0.9815642, 48.7427023 1.5888652, 48.7727834 1.5546424, 48.7830689 1.5755487, 48.7829459 1.5755817, 48.1377511 0.9875665, 48.6744694 1.3835015, 48.7508848 1.4455038, 48.7507738 1.4455127, 48.7621381 1.4131696, 48.7540891 1.4568896, 48.4987577 1.6903064, 47.9906514 1.2545075, 47.9962698 1.2597897, 47.9861315 1.2470133, 48.2483407 1.8515642, 48.2485162 1.8513487, 48.2133566 1.8471773, 48.2400078 1.8507771, 48.8349270 1.3651623, 48.3617964 1.8792363, 48.4073062 1.8953031, 48.3532037 1.8740723, 48.4143368 1.8974174, 48.4451180 1.7436754, 48.3761771 1.7139844, 48.3288228 1.6733964, 48.3559274 1.6932395, 48.6433866 1.4033215, 48.7170492 1.3771616, 48.8436645 1.3810541, 48.7317495 1.3627510, 48.7347146 1.3628805, 48.4794759 1.4610359, 48.4795088 1.4608291, 47.9871247 1.2489563, 48.2006359 0.8817417, 48.3902968 1.7296167, 48.4387203 1.7736310, 48.4357387 1.7264684, 48.6044852 1.6764659, 48.6047343 1.6776367, 48.6056601 1.6786023, 48.6076342 1.6811250, 48.6094321 1.7073012, 48.7895005 1.5760710, 48.7368700 1.3836098, 48.8616552 1.4175168, 48.8658673 1.4291425, 48.8431789 1.3815951, 48.8627873 1.4400855, 48.7644535 1.3137446, 48.1436327 1.0479263, 48.1446398 1.0438524, 48.3784586 1.8879329, 48.5327668 1.4552183, 48.5964801 1.6344961, 48.2943438 1.2784344, 48.1238755 1.1830063, 48.1203418 1.1789078, 48.2646069 1.1464120, 48.4665860 0.9721291, 48.4680964 0.9833235, 48.4692749 0.9917513, 48.9178051 1.5163564, 48.7687669 1.4010983, 48.4432797 1.4586460, 48.4263803 1.4345241, 48.4263450 1.4343908, 48.2783751 1.2038212, 48.2785049 1.2038943, 48.2859335 1.2109996, 48.3028844 1.2394689, 48.3028596 1.2394869, 48.2330824 1.1841121, 48.3909110 1.2074193, 48.8165842 1.5626415, 48.8227708 1.5562821, 48.8230971 1.5568726, 48.5892604 1.5785545, 48.5860031 1.5774820, 48.1499364 1.3998178, 48.1511375 1.4008810, 48.1283145 1.1895873, 48.2687237 1.7554738, 48.2687963 1.7555788, 48.7607313 1.3283222, 48.1200348 1.5164207, 48.7571201 1.0593963, 48.7630168 1.2330016, 48.7619868 1.2307431, 48.7697041 1.1973535, 48.7594087 1.2197692, 48.7690072 1.1998653, 48.7633865 1.2243158, 48.7568745 1.4817572, 48.2758000 1.6233580, 48.2758830 1.6233161, 48.2757436 1.6234125, 48.2757673 1.6233850, 48.8413849 1.4922311, 48.7618946 1.1344644, 48.6035213 1.6962877, 48.6038889 1.6958545, 48.7492012 1.4084464, 48.7508203 1.4157200, 48.7492740 1.4083049, 48.7509154 1.4156900, 48.7459726 1.3960136, 48.7456448 1.3952102, 48.4420751 1.4989362, 48.4556997 1.4915385, 48.4706119 1.4894945, 48.5962086 1.6154260, 48.9189505 1.4642931, 48.5800278 1.5814336, 48.5883483 1.5791331, 48.5850681 1.5781057, 48.5817149 1.5806846, 48.5828744 1.5864487, 48.5846561 1.5791234, 48.5852779 1.5783029, 48.5857035 1.5781314, 48.5845146 1.5783536, 48.5785051 1.5814940, 48.5781910 1.5842706, 48.5855768 1.5840847, 48.5891156 1.5937111, 48.5796458 1.5936179, 48.5887061 1.5730446, 48.6303549 1.5123061, 48.4858586 1.5268474, 48.7387647 1.3344359, 48.5612943 1.5099262, 48.5562795 1.5088278, 48.5417197 1.4933979, 48.5629140 1.5082652, 48.5686432 1.5014794, 48.3402518 1.3474079, 48.3193902 1.3433670, 48.3144491 1.3216928, 48.3330130 1.3910728, 48.6458010 1.5425057, 48.6500512 1.5445534, 47.9960173 1.2330143, 48.0110352 1.2352850, 48.4783101 1.6303488, 48.4678695 1.5800519, 48.5098261 1.7453193, 48.3484299 1.6877878, 48.0663212 1.3379550, 48.0663284 1.3379163, 48.0866822 1.3250947, 48.1932315 0.8532599, 48.4860872 1.0589912, 48.4766655 1.1449504, 48.4516866 1.2313903, 48.4157788 1.4872052, 48.4156604 1.4871839, 48.4161089 1.4788356, 48.4159687 1.4788327, 48.4158166 1.4827704, 48.4159441 1.4828103, 48.4237280 1.4843067, 48.4350351 1.4850487, 48.3693543 1.2313848, 48.3777903 1.2321079, 48.4242698 1.2319935, 48.4264831 1.2401531, 48.4270678 1.2534320, 48.4292906 1.2736696, 48.4517014 1.4862557, 48.4495182 1.4936334, 48.4832358 1.0361872, 48.5042208 1.0253641, 48.4794856 1.0191569, 48.4791294 1.0197163, 48.4640670 1.1943546, 48.4654472 1.1961144, 48.4522688 1.4910912, 48.1385666 1.2067109, 48.2898283 1.2665462, 48.0755319 1.0697377, 48.4492264 1.2905124, 48.5081392 1.0206523, 48.4433783 1.2104106, 48.4798510 1.1597339, 48.4459606 1.2314837, 48.6763169 1.4636419, 48.6769680 1.4741718, 48.5153087 0.9895117, 48.4737212 1.1610821, 48.4916829 1.5333225, 48.6446760 0.9342008, 48.4478748 1.3303765, 48.6683749 1.4977366, 48.3115236 0.8206040, 48.3244133 0.8089273, 48.3168358 0.7971910, 48.3178707 0.7961281, 48.1027073 1.8514071, 48.7422926 1.3190808, 48.7422202 1.3192275, 48.1723500 1.2833042, 48.4436345 1.9087713, 48.3688085 1.4580360, 48.3734994 1.4701515, 48.4110738 1.7493703, 48.4458999 1.7865767, 48.5031107 1.6190166, 48.4997925 1.6114044, 48.5141816 1.6446348, 48.5962346 1.4239362, 48.1994290 1.3818580, 48.7512742 1.4156030, 48.7528348 1.4506420, 48.7467213 1.4173998, 48.7494643 1.4300620, 48.7517949 1.4184551, 48.7512294 1.4156355, 48.7517671 1.4184670, 48.7317079 1.4184431, 48.7335716 1.4179845, 48.7297375 1.3668655, 48.7297739 1.3668588, 48.7298138 1.3668454, 48.2692940 1.2680420, 48.2579330 1.2720985, 48.2687176 1.2673716, 48.2623531 1.2806883, 48.2789350 1.2539336, 48.2586986 1.2748530, 48.2743759 1.2567214, 48.2901657 1.3180781, 48.2761530 1.2744818, 48.7148629 1.4327769, 48.7279706 1.3889336, 48.7368287 1.3836394, 48.7367890 1.3836644, 48.7453826 1.3949182, 48.6353577 1.5607061, 48.7745640 1.3465635, 48.3148678 0.7992779, 48.5170758 0.9794413, 48.7676945 1.2452235, 48.7675029 1.2442214, 48.7666930 1.2454151, 48.7465105 1.3828935, 48.7465709 1.3830411, 48.7460069 1.3895928, 48.7156463 1.3528618, 48.7156000 1.3527496, 48.7426978 1.3459456, 48.7342605 1.3866265, 48.0942882 1.5129314, 48.1345344 0.9722245, 48.5922934 0.9086983, 48.3875106 1.1212244, 48.1923446 1.9394272, 48.1525637 1.5978859, 48.1208939 1.5450524, 48.1090935 1.4823789, 48.1099283 1.5068616, 48.1298953 1.5697194, 48.1156238 1.4399875, 48.1101000 1.4290050, 48.1497723 1.6558110, 48.1540567 1.6317286, 48.6547891 1.2565297, 48.6506087 1.2157617, 48.7029078 1.3434978, 48.6780679 1.3176014, 48.6347988 0.9888437, 48.6503313 1.0131508, 48.3470506 1.6269478, 48.4468210 1.4789483, 48.4661452 1.4851003, 48.4506123 1.4902125, 48.4438475 1.4944572, 48.4430415 1.4980146, 48.4437026 1.4969840, 48.4438425 1.4973813, 48.4431599 1.4974032, 48.4435666 1.4962377, 48.2845645 1.6271581, 48.2350355 1.4972412, 48.4301529 1.5048675, 48.4308430 1.5009460, 48.7378384 1.3688163, 48.7392265 1.3684309, 48.6078989 1.6842001, 48.6072486 1.6864655, 48.6079177 1.6841421, 48.6013821 1.7031632, 47.9830400 1.2822379, 47.9856150 1.3046469, 47.9778729 1.2582126, 47.9763162 1.3275978, 48.7605248 1.5700487, 48.7597408 1.5660632, 48.2078487 1.3291624, 48.1950313 1.3644507, 48.1920857 1.3709906, 48.2067039 1.2896780, 48.2069438 1.3077202, 48.2105979 1.2932806, 48.2071428 1.2858757, 48.2063321 1.2877849, 48.2835395 1.1526792, 48.4223116 1.2140030, 48.5056070 1.3493083, 48.4871113 1.0118267, 48.4939038 1.0189164, 48.4951571 1.0185534, 48.5259370 1.6932314, 48.5244027 1.6915195, 48.5241091 1.6857225, 48.5273462 1.6732396, 48.5240703 1.6856085, 48.4470362 1.4960230, 48.2835308 1.2394677, 48.6864403 1.0667075, 48.6951770 1.0795658, 48.7108230 1.0904478, 48.4364319 1.4796590, 48.4382006 1.4730734, 48.4356740 1.4825941, 48.4864109 1.7406431, 48.4899994 1.7323690, 48.4345946 1.4946684, 48.5211991 1.7449406, 48.5217091 1.7446465, 48.5218901 1.7482961, 48.5176104 1.7101297, 48.5179251 1.6992604, 48.4456719 1.4947115, 48.3291910 1.6510035, 48.4640366 1.4830712, 48.4519148 1.4837828, 48.4521306 1.4837572, 48.4521410 1.4836582, 48.5762793 1.5041534, 48.3855704 1.2336704, 48.3962604 1.2154725, 48.4975478 1.0582088, 48.6032959 1.6731815, 48.3861744 1.4775925, 48.7156819 0.8768385, 48.7744560 1.3466811, 48.7663261 1.1583551, 48.7613934 1.2297404, 48.4896866 1.5836171, 48.1690863 0.8326436, 47.9764661 1.2539912, 47.9865523 1.2477317, 47.9967724 1.2406049, 48.4656554 0.9647699, 48.4644066 0.9558621, 48.4684584 0.9854847, 48.7628492 1.2379364, 48.3506384 0.8488761, 48.6705305 0.8481390, 48.6726304 0.8494744, 48.6826076 0.8796183, 48.6789010 0.8649456, 48.6816088 0.8754314, 48.5190320 1.6822693, 48.1973693 1.0909382, 48.6517761 1.5264590, 48.6486478 1.5432671, 48.6506818 1.5361150, 48.2867417 1.6317288, 48.4991412 1.0150051, 48.2844343 1.2444990, 48.2845456 1.2443652, 48.8482297 1.4642728, 48.1838759 1.9348874, 48.4335596 1.4928141, 48.5925868 1.5964286, 48.4681980 1.4830354, 48.4679911 1.4837896, 48.4452476 1.4839687, 48.4453889 1.4841059, 48.6065464 1.4208198, 48.4621636 1.4853747, 48.5023629 1.1954425, 48.4801501 1.1295117, 48.0273443 1.2560778, 48.4544846 1.2967169, 48.4569679 1.2921342, 48.6518352 1.2078313, 48.4791682 1.5045178, 48.4791482 1.5045576, 48.4165775 1.3554040, 48.1802252 1.3840426, 48.5202181 1.7651459, 48.2168699 1.3818879, 48.2923823 0.8237943, 48.5489066 1.4929922, 48.5452650 1.4735723, 48.5260206 1.4884351, 48.6979977 0.9481873, 48.2080500 1.4123381, 48.1435030 1.4020243, 48.1455767 1.2171817, 48.1073837 1.1664543, 48.1521523 1.2311191, 48.2057749 1.2041528, 48.3018738 1.0823795, 48.1302205 1.0827274, 48.7356230 1.3421397, 48.7344321 1.3446478, 48.7355864 1.3422558, 47.9923659 1.2324185, 48.1820644 1.3847079, 48.1827878 1.3874679, 48.1808744 1.3857293, 48.1831851 1.3862120, 48.1818889 1.3785094, 48.3918449 1.1738434, 48.3925420 1.1776216, 48.3922627 1.1758879, 48.3935885 1.1826232, 48.3033115 1.2413287, 48.3033413 1.2413118, 48.2996998 1.2392848, 48.2971299 1.2450944, 48.2969691 1.2433349, 48.2929930 1.2440721, 48.2508997 1.3145256, 48.2096402 1.3464606, 48.2089588 1.3462590, 48.3948106 1.2056395, 48.3228600 1.2242280, 48.3843620 1.2192812, 48.3967433 1.2191649, 48.3571979 1.2290984, 48.3459692 1.2343988, 48.3507879 1.2307415, 48.0581930 1.6146145, 48.3398197 1.1533005, 48.3426300 1.1767847, 48.3430034 1.1830786, 48.3162632 1.1975847, 48.3141275 1.2138854, 48.3111882 1.2177123, 48.3405978 1.1148765, 48.3190842 1.1455771, 48.3298151 1.1265662, 48.3159454 1.1490037, 48.3236823 1.1050243, 48.3234195 1.1077313, 48.3143590 1.1320817, 48.3077813 1.1464594, 48.2969161 1.0635728, 48.2949570 1.0980591, 48.2493747 1.3214720, 48.4453734 1.2417600, 48.4466196 1.2421721, 48.3274753 1.0502716, 48.3394223 1.0562486, 48.3260051 1.0650136, 48.3094305 1.0935407, 48.2975177 1.0961476, 48.2958931 1.0981971, 48.2852393 1.2102351, 48.2637294 1.0964816, 48.2629211 1.0989440, 48.2633169 1.1138636, 48.2531858 1.1912039, 48.2583755 1.2154481, 48.2283113 1.3639843, 48.2295675 1.3697276, 48.2316442 1.3657649, 48.2209826 1.3762353, 48.3323300 1.3288791, 48.4621308 1.1909610, 48.1963451 1.3821766, 48.7445525 1.0461831, 48.7317320 1.0190795, 48.7646261 1.1483258, 48.6481986 1.5304508, 48.6526936 1.5255837, 48.6538123 1.5210418, 48.6008347 1.6649601, 48.5995716 1.6763886, 48.6010618 1.6647018, 48.3271155 0.8171662, 48.0842385 1.3611118, 48.0943510 1.3474342, 48.0598249 1.3375592, 48.1103175 1.3384734, 48.1122911 1.3416004, 48.1071474 1.3360773, 48.1108405 1.3301120, 48.1785145 1.3862871, 48.5837204 1.4286469, 48.1479135 1.8558582, 48.3494143 0.8436469, 48.5324200 0.9333882, 48.5028044 1.6426651, 48.1762276 1.2919780, 48.4262766 1.5141654, 48.1004840 1.1554996, 48.1904708 1.3353833, 48.1943499 1.3607892, 48.1950693 1.3644322, 48.1994633 1.3818325, 48.2034883 1.3965537, 48.2544847 1.5705020, 48.2509605 1.5568886, 48.2980612 1.6491657, 48.2980822 1.6491147, 48.2867898 1.6317194, 48.2846065 1.6271354, 48.3092408 1.6593938, 48.3092567 1.6593394, 48.3093070 1.6591556, 48.3902183 1.7297823, 48.4379765 1.7741102, 48.4659821 1.6516449, 48.4446695 1.8004961, 48.0837688 1.3390501, 48.7710598 1.3841647, 48.7011110 1.4422828, 48.5958539 1.6061276, 48.5485955 1.5931692, 48.5932449 1.6590397, 48.5194122 1.5695741, 48.5151215 1.5637173, 48.5952643 1.6430052, 48.5344960 1.5858147, 48.5526192 1.5936871, 48.5038983 1.5462638, 48.5614198 1.5930634, 48.9144197 1.5162262, 48.9148563 1.5165512, 48.9144034 1.5156884, 48.9053734 1.5141654, 48.2916457 1.2719962, 48.7920591 1.3768649, 48.4481628 1.2051159, 48.4454480 1.2592578, 48.4458528 1.2492656, 48.4925202 1.0875319, 48.4921702 1.0890722, 48.4380975 1.3238065, 48.4170290 1.3522755, 48.3927388 1.4126147, 48.4099364 1.3828992, 48.3798389 1.4484648, 48.4001676 1.3849929, 48.4156984 1.3615662, 48.5050582 1.0317446, 48.4088398 1.3802353, 48.9142658 1.5158406, 48.9197209 1.5193364, 48.9145614 1.5123495, 48.3900681 1.4685433, 48.3239082 0.8134067, 48.8421993 1.5425607, 48.8442780 1.5236170, 48.5906176 1.2923726, 48.6280956 1.2852999, 48.6755808 1.4656942, 48.0140943 1.2737766, 48.4631360 1.1874165, 48.4574629 1.2080616, 48.4844993 1.0908788, 48.4815185 1.1167990, 48.4859109 1.0826046, 48.4851225 1.0500272, 48.4737847 1.1524705, 48.7208009 1.3551932, 48.4458635 1.4817513, 48.1100427 1.3719249, 48.1163251 1.3893474, 48.1391759 0.9151555, 48.7275901 0.9964160 +152113 +no +55.9482698 -3.1839334 +49.4142159 8.6881484 +yes +55.9353820 -3.2098014, 55.9456427 -3.1913637, 55.9257928 -3.2095594, 55.9687872 -3.1730375, 55.9801706 -3.1982531, 55.9605889 -3.1427782, 55.9788896 -3.2317323, 55.9588767 -3.2113228, 55.9614993 -3.3058797, 55.9334740 -3.1781896, 55.9057929 -3.2224600, 55.9360042 -3.2097006, 55.9370406 -3.2074419, 55.9654170 -3.1758684, 55.9460048 -3.2123234, 55.9466560 -3.2163830, 55.9448417 -3.2174972, 55.9424799 -3.2816617, 55.9713034 -3.2524594, 55.9504108 -3.2089957, 55.9505271 -3.1874272, 55.9529055 -3.1966423, 55.9530315 -3.1960873, 55.9399803 -3.2118878, 55.9398206 -3.2115635, 55.9422231 -3.2036961, 55.9600977 -3.2957282, 55.9592529 -3.2133182, 55.9453652 -3.1842234, 55.9268573 -3.2094072, 55.9807322 -3.1775607, 55.9591279 -3.1715305, 55.9592018 -3.1715098, 55.9575707 -3.2076016, 55.9148390 -3.1652277, 55.9376474 -3.1780108, 55.9414683 -3.1812245, 55.9331816 -3.2608758, 55.9415944 -3.1818222, 55.9416532 -3.1818741, 55.9484509 -3.1864893, 55.9603970 -3.2016509, 55.9325122 -3.1401027, 55.9640862 -3.1771034, 55.9174745 -3.1579689, 55.9542022 -3.2014648, 55.9627123 -3.1781131, 55.9699822 -3.1694976, 55.9714788 -3.1731260, 55.9510261 -3.2098355, 55.9332103 -3.2103231, 55.9613619 -3.1518927, 55.9439508 -3.1937950, 55.9509802 -3.2097331, 55.9653610 -3.1550289, 55.9580703 -3.1227957, 55.9588768 -3.1791133, 55.9589264 -3.1830818, 55.9277224 -3.2095761, 55.9530706 -3.1144267, 55.9295883 -3.2975758, 55.9240121 -3.2767704, 55.9622681 -3.1967802, 55.9672435 -3.2457527, 55.9576090 -3.1991586, 55.9284400 -3.2792074, 55.9713179 -3.1734837, 55.9298458 -3.2993946, 55.9655528 -3.2738894 +48.7755956 9.2787713 +Boulogne-Billancourt, Arcueil, Montmagny, Le Chesnay, Chatou, Gentilly, Palaiseau, Antony, Viroflay, Franconville, Garches, Clichy, Verrières-le-Buisson, Le Plessis-Robinson, Vélizy-Villacoublay, Saint-Leu-la-Forêt, Savigny-sur-Orge, Le Vésinet, Enghien-les-Bains, Nanterre, Épinay-sur-Seine, Morangis, Deuil-la-Barre, Montesson, Bois-Colombes, La Garenne-Colombes, Montmorency, Châtillon, Sannois, Neuilly-sur-Seine, Meudon, Bourg-la-Reine, La Celle-Saint-Cloud, Malakoff, Massy, Houilles, Courbevoie, Gennevilliers, Sceaux, Suresnes, Montigny-lès-Cormeilles, L'Haÿ-les-Roses, Chaville, Saint-Gratien, Argenteuil, Sartrouville, Cormeilles-en-Parisis, Issy-les-Moulineaux, Longjumeau, Rueil-Malmaison, Fresnes, Saint-Cloud, Châtenay-Malabry, Domont, Soisy-sous-Montmorency, Marly-le-Roi, Ermont, Cachan, Bezons, Carrières-sur-Seine, Fontenay-aux-Roses, Villetaneuse, Vanves, Versailles, Maisons-Laffitte, Ville-d'Avray, Bagneux, Levallois-Perret, Chilly-Mazarin, Eaubonne, Montrouge, Colombes, Sèvres, Villeneuve-la-Garenne, Igny, Villebon-sur-Yvette, Paris, Paris, Paris, Paris, Paris, Cynthiana, Saint-Germain-en-Laye, Le Pecq, Asnières-sur-Seine, Puteaux, Saint-Ouen, Clamart, Denning, Subiaco, Morrison Bluff, Caulksville, Blue Mountain, Detroit, Universal, Goss, Henry, Cottage Grove, Big Sandy +yes +yes +yes +49.4091649 8.6726851, 49.4073921 8.6825502 +Königstuhl, Heidenknörzel, Kammerstein, Hoher Nistler, Lammerskopf, Gaisberg, Michelsberg, Heiligenberg, Auerhahnenkopf, Apfelskopf, Dossenheimer Kopf, Ameisenbuckel, Karlslust, Auerstein +48.8867960 2.3430272 +48.8517588 2.3569126 and 48.8517019 2.3570690 +29 and 6 +49.4171749 8.7614432, 49.4094471 8.6926160, 49.4124142 8.7039688, 49.3850068 8.7105357, 49.4189919 8.6724909, 49.4163242 8.6709589, 49.4184386 8.6731024, 49.4168333 8.6710769, 49.4176281 8.6686596, 49.4160594 8.6702239, 49.4179870 8.6685214, 49.4190025 8.6711938, 49.4190342 8.6719873, 49.3982405 8.6891686, 49.4154939 8.6674299, 49.3984918 8.6889404, 49.4226030 8.6895511, 49.4244226 8.6879745, 49.4185216 8.6704497, 49.4197235 8.6766060, 49.4181936 8.6739962, 49.4224691 8.6894885, 49.4347006 8.6819337, 49.4225331 8.6895176, 49.4223934 8.6894683, 49.4275117 8.6831905, 49.4196417 8.6694271, 49.4189698 8.6760286, 49.4222653 8.6894258, 49.4249703 8.6863835, 49.4219203 8.6893430, 49.4221212 8.6893922, 49.4177747 8.6690561, 49.4163577 8.6686492, 49.4174980 8.6687653, 49.4179060 8.6686309, 49.4180660 8.6682820, 49.4174626 8.6687152, 49.4150725 8.6664167, 49.4139804 8.6668520, 49.4136878 8.6671227, 49.4155211 8.6676755, 49.4136571 8.6671084, 49.4155891 8.6676755, 49.4146634 8.6664310, 49.4140866 8.6673605, 49.4128509 8.6667672, 49.4130842 8.6668825, 49.4128068 8.6670431, 49.4157404 8.6712736, 49.4131056 8.6680418, 49.4126825 8.6678074, 49.4173371 8.6738318, 49.4170607 8.6768911, 49.4126952 8.6699440, 49.4134424 8.6679610, 49.4165443 8.6709680, 49.4134657 8.6678164, 49.4169024 8.6778674, 49.4171297 8.6738951, 49.4145377 8.6712997, 49.4142973 8.6712224, 49.4162063 8.6713780, 49.4171308 8.6741457, 49.4126713 8.6675754, 49.4146104 8.6715231, 49.4129993 8.6676842, 49.4125591 8.6685224, 49.4038678 8.6826012, 49.4080959 8.6940082, 49.4132083 8.7150483, 49.4098909 8.7063523, 49.4092833 8.6937547, 49.4136521 8.7166234, 49.4147825 8.7194810, 49.4146757 8.7188519, 49.4099904 8.6934756, 49.4137247 8.7168421, 49.4114575 8.7112332, 49.4117561 8.7110802, 49.4130935 8.7055063, 49.4085662 8.6938769, 49.4082925 8.6939399, 49.4049071 8.6846843, 49.4050950 8.6832018, 49.4046753 8.6751003, 49.4049813 8.6825344, 49.4047830 8.6748233, 49.4079701 8.6806978, 49.4081724 8.6765377, 49.3800680 8.6869647, 49.3803092 8.6877522, 49.3800398 8.6875371, 49.4133013 8.6913417, 49.3991167 8.6880237, 49.4003093 8.6865238, 49.3994136 8.6901411, 49.4125736 8.6667755, 49.4156475 8.7425316, 49.3942172 8.6898680, 49.4001704 8.6873707, 49.4008461 8.6862974, 49.4015034 8.6855723, 49.4018481 8.6853596, 49.4140326 8.6921865, 49.4147881 8.6920796, 49.4161519 8.6920141, 49.4164194 8.6920050, 49.3736369 8.6882014, 49.3771070 8.6871386, 49.3805914 8.6884912, 49.3956314 8.6891619, 49.4064459 8.6893600, 49.4076652 8.6925139, 49.4146958 8.6922296, 49.4126385 8.6691299, 49.4175773 8.6740734, 49.4106423 8.6974807, 49.4111306 8.6979715, 49.4127554 8.6742068, 49.4187340 8.6766656, 49.4113889 8.7076937, 49.4105563 8.7059593, 49.4101441 8.7052242, 49.4112034 8.7047612, 49.4089283 8.6982133, 49.4089648 8.6986876, 49.4093783 8.7008163, 49.4094359 8.7023071, 49.4089641 8.6955780, 49.4093310 8.6934805, 49.4096811 8.6934485, 49.4107724 8.7039613, 49.4097754 8.7076634, 49.4100334 8.7081249, 49.4094319 8.6910307, 49.4095376 8.6908723, 49.4096347 8.6903912, 49.4098329 8.6894963, 49.4098809 8.6909403, 49.4099807 8.6890051, 49.4101452 8.6899150, 49.4102122 8.6904965, 49.4103847 8.6887271, 49.4105137 8.6896038, 49.4105215 8.6905059, 49.4106282 8.6901065, 49.4126702 8.6805338, 49.4159805 8.6920165, 49.4164705 8.6920883, 49.4172314 8.6911451, 49.4173345 8.6841594, 49.4090210 8.6862339, 49.4091822 8.6858735, 49.4095605 8.6872645, 49.4088652 8.6800974, 49.4098279 8.6817194, 49.4083809 8.6789361, 49.4056745 8.6881477, 49.4061925 8.6915180, 49.4063357 8.6898884, 49.4072240 8.6872972, 49.4075178 8.6824857, 49.4075631 8.6890160, 49.4079188 8.6902159, 49.4088250 8.6844653, 49.4092527 8.6744372, 49.4111078 8.7122962, 49.4039935 8.7273740, 49.3976409 8.6521041, 49.4229888 8.6430964, 49.4032694 8.6471292, 49.4027493 8.6441103, 49.4121441 8.6411840, 49.4121197 8.6413318, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349, 49.4151012 8.6731211, 49.4158568 8.6728207, 49.4035624 8.6765204, 49.4279707 8.6838908, 49.4111900 8.7704641, 49.4101378 8.7039303, 49.4161640 8.6686617, 49.4138118 8.6719647, 49.4108048 8.6946155, 49.4157085 8.7420436, 49.4161193 8.6695151, 49.4059837 8.6870296, 49.4014465 8.6714876, 49.4016021 8.6707184, 49.4017318 8.6700873, 49.4019718 8.6690844, 49.4052846 8.6871711, 49.4033559 8.6811865, 49.4148098 8.6951639, 49.4149434 8.6951464, 49.3793331 8.6917618, 49.4170074 8.7611316, 49.4146148 8.6933443, 49.4157446 8.6679037, 49.4151298 8.6922925, 49.4150209 8.6722376, 49.4105674 8.7040917, 49.4181332 8.7565080, 49.4201274 8.6592504, 49.4194061 8.6615040, 49.4175471 8.6615820, 49.4133488 8.6736185, 49.4149163 8.6654747, 49.3787958 8.6752564, 49.3787513 8.6752582, 49.4168939 8.6715527, 49.4182453 8.6691484, 49.4083411 8.6839428, 49.4045486 8.6762865, 49.4176645 8.6590769, 49.4150320 8.7620828, 49.3892845 8.6883551, 49.4176061 8.6615500, 49.4159754 8.6729830, 49.4158552 8.6727509, 49.4032249 8.6746009, 49.4071473 8.6720042, 49.3999783 8.6914430, 49.3659380 8.6888680, 49.4019576 8.6811178, 49.4019323 8.6807736, 49.4019771 8.6810189, 49.4019064 8.6809317, 49.4045857 8.6750253, 49.3870086 8.6664502, 49.4209713 8.6746499, 49.4061766 8.6754688, 49.4103125 8.7748332, 49.4235022 8.6459331, 49.4048709 8.6753023, 49.4096671 8.7744209, 49.4097801 8.7743109, 49.4096112 8.7061878, 49.4129558 8.6762878, 49.4183219 8.7276907, 49.3766684 8.6475292, 49.4160242 8.6602643, 49.4191415 8.6622333, 49.4021987 8.6807616 +0 +4.0706060818091068 +49.4116697 8.9271085, 49.3779472 8.6930196, 49.3791086 8.6917106, 49.3738873 8.6885987, 49.4092087 8.6986249, 49.2941943 8.6972230, 49.2959309 8.7014509, 49.3883245 9.0081746, 49.3761590 8.5674826, 49.3191887 8.5595067, 49.2919399 8.7027015, 49.3726645 8.5718770, 49.3786241 8.5765412, 49.4109553 8.9356774, 49.3417457 8.6549932, 49.3761026 8.8885302, 49.3378610 8.6613039, 49.3479756 8.6538268, 49.3445704 8.6640475, 49.3839393 8.5721238, 49.3265417 8.5563625, 49.3191315 8.5470156, 49.3147158 8.5519038, 49.4295856 8.6906085, 49.4242374 8.6490409, 49.4347876 8.6782371, 49.4426103 8.6658751, 49.3138326 8.5606145, 49.3884820 8.8036758, 49.3927830 8.5980107, 49.3923799 8.5946401, 49.3868016 8.8070952, 49.4046422 8.6758721, 49.4138643 8.6938468, 49.4188030 8.6627721, 49.4215394 8.6751324, 49.3948331 8.7964522, 49.4230903 8.6848004, 49.4423017 8.5790531, 49.4300762 8.6800795, 49.3864018 8.8001781, 49.4722315 8.4693491, 49.4378457 8.7519531, 49.3945090 8.6898249, 49.4178015 8.7607560, 49.4036423 8.6351457, 49.4303419 8.6447639, 49.4199824 8.6516327, 49.3597431 8.8120515, 49.4641062 8.6650466, 49.4280459 8.7495006, 49.4333074 8.7472561, 49.4280490 8.7464328, 49.4220544 8.7604986, 49.3359862 8.7908021, 49.4160940 8.7161473, 49.3872630 8.7975398, 49.4471459 8.6743543, 49.4428444 8.6214405, 49.4707059 8.6520153, 49.4039244 8.6201112, 49.3976600 8.6462271, 49.3835628 8.6905633, 49.4016060 8.6295678, 49.3992245 8.6272440, 49.3931195 8.6279937, 49.4751871 8.6837099, 49.3957980 8.8231207, 49.4102743 8.6522076, 49.3186598 8.5512647, 49.3973451 8.7978476, 49.4536423 8.6751502, 49.4519728 8.6778784, 49.4065263 8.6402454, 49.4077957 8.6403731, 49.4132108 8.7429246, 49.3950783 8.6433081, 49.3774319 8.6987045, 49.4536254 8.3815384, 49.4056159 8.6307388, 49.3973715 8.6486924, 49.4024942 8.6473792, 49.4229184 8.6449762, 49.4085533 8.6680811, 49.4077532 8.6729299, 49.4082928 8.6883838, 49.4096328 8.6933428, 49.4001133 8.6852761, 49.4444884 8.6271478, 49.3785544 8.6593079, 49.2999064 8.5654315, 49.2905479 8.5632348, 49.3263000 8.5468316, 49.3594020 8.8046809, 49.3605252 8.8038440, 49.3166684 8.5493592, 49.3182722 8.5439702, 49.4714810 8.6083963, 49.3574669 8.7787048, 49.3930158 8.7827624, 49.3084885 8.6352372, 49.3811510 8.8033879, 49.3914947 8.7854488, 49.2950357 8.5641504, 49.3225437 8.5335892, 49.3736487 8.5775117, 49.3896002 8.5660555, 49.4021057 8.8481051, 49.2961664 8.5700349, 49.4118979 8.8312113, 49.4038331 8.8435805, 49.4062892 8.8436208, 49.4144602 8.7186269, 49.4152010 8.7617225, 49.3946293 8.7926321, 49.3933559 8.7992739, 49.3841017 8.8059323, 49.4113731 8.7119281, 49.3640565 8.7056980, 49.4105030 8.6976792, 49.3045372 8.6466441, 49.3687498 8.5800586, 49.3726561 8.5798363, 49.4002513 8.6905301, 49.3575085 8.6891721, 49.4426247 8.8954326, 49.4460345 8.8970944, 49.4079380 8.6845118, 49.4079623 8.6804555, 49.4016967 8.6842645, 49.4149595 8.6974870, 49.4152930 8.6919888, 49.3753209 8.5842061, 49.2956896 8.5694190, 49.4141843 8.7705509, 49.4435052 8.6332139, 49.4287124 8.6962608, 49.4701183 8.7543958, 49.4371781 8.8098188, 49.3177272 8.7571254, 49.4175155 8.6749548, 49.4280288 8.6874096, 49.4226519 8.6906789, 49.4237741 8.3796665, 49.4243637 8.3901006, 49.4198160 8.3955221, 49.3291477 8.5397666, 49.3413286 8.6690896, 49.4654686 8.5630661, 49.4503171 8.5233143, 49.4309897 8.4978410, 49.4282986 8.4891901, 49.4313149 8.4959201, 49.3504070 8.6321551, 49.4541025 8.5375578, 49.3978519 8.5349890, 49.4036804 8.5358143, 49.4014645 8.7791091, 49.4706173 8.4699685, 49.3960032 8.5914393, 49.4210265 8.4208975, 49.4213716 8.4206943, 49.3796214 8.6698422, 49.3021886 8.6429316, 49.4641500 8.4843980, 49.4631679 8.4950194, 49.4622735 8.4845749, 49.3750123 8.4535196, 49.4708285 8.6603546, 49.3904944 8.6883092, 49.3915993 8.6903930, 49.3739972 8.7036051, 49.4680044 8.4830290, 49.4542685 8.4945230, 49.2944361 8.6843096, 49.4636413 8.4884577, 49.4531341 8.7233872, 49.4743398 8.4653845, 49.4471734 8.5061272, 49.3937049 8.5661427, 49.3099035 8.5447741, 49.4213023 8.6891575, 49.4621470 8.4065063, 49.3766430 8.7660668, 49.3724852 8.7711188, 49.4623501 8.5610464, 49.4309258 8.4206618, 49.4409798 8.4175989, 49.4437479 8.4140917, 49.3947439 8.7943731, 49.3038290 8.6957242, 49.2994313 8.6999334, 49.4205029 8.6846704, 49.4174372 8.6854637, 49.4399326 8.4449762, 49.4425602 8.4277767, 49.4693839 8.4558664, 49.4268458 8.4233321, 49.4454678 8.4182004, 49.4717141 8.6047118, 49.4131348 8.5458560, 49.4245194 8.6873395, 49.4186207 8.6905302, 49.4658430 8.7607179, 49.4129911 8.6528439, 49.4554171 8.3842872, 49.4723798 8.4402139, 49.4666292 8.7723687, 49.4331943 8.5277059, 49.4308480 8.5291667, 49.4565194 8.8077226, 49.3386748 8.5339113, 49.4038073 8.6922073, 49.4719100 8.7593425, 49.4736565 8.7562226, 49.4609471 8.7703480, 49.3197938 8.8658341, 49.2984869 8.8269633, 49.2966768 8.8256330, 49.3219717 8.8193319, 49.3871024 8.8383024, 49.3935723 8.8416570, 49.3383714 8.7389507, 49.3413963 8.7549260, 49.3873851 8.7356455, 49.3414114 8.6467625, 49.3234229 8.6953622, 49.3189808 8.8881137, 49.3159750 8.8865005, 49.3201069 8.8909232, 49.4601670 8.9883620, 49.3993575 8.5843395, 49.4546515 8.4766580, 49.3613242 8.7824149, 49.3945103 8.9294461, 49.4066139 8.5537714, 49.3128737 8.5545772, 49.4622522 8.9867984, 49.4658456 8.9916527, 49.4646813 8.9846233, 49.4352605 8.8040578, 49.3994611 8.8459544, 49.4052607 8.6659933, 49.4055766 8.6654953, 49.3204781 8.5682552, 49.3375623 8.9113070, 49.3394809 8.9087893, 49.3714420 8.5346515, 49.3784076 8.5391735, 49.4560487 8.3748093, 49.3172379 8.5376345, 49.3116456 8.5379711, 49.4506689 8.9797021, 49.4557598 8.9786722, 49.3712535 8.5910730, 49.4416867 8.6147618, 49.4404471 8.5201007, 49.4376888 8.5274582, 49.4252292 8.4170772, 49.3482256 8.5307489, 49.4070710 8.4073373, 49.4541296 8.4822180, 49.4307088 8.6826152, 49.3260347 8.6879653, 49.3233898 8.6868008, 49.4157065 8.7287628, 49.3033175 8.7047451, 49.3661785 8.7507929, 49.3982142 8.4388742, 49.4487633 8.6041107, 49.3787048 8.6764500, 49.4543736 8.6291869, 49.4475131 8.4261958, 49.4481810 8.4188422, 49.4619385 8.7690269, 49.3970452 8.6830144, 49.4260082 8.9560462, 49.4671705 8.5629531, 49.4736174 8.9865378, 49.3507170 8.6892282, 49.4226763 8.4281591, 49.3452242 8.6743498, 49.4445636 8.5816251, 49.4459377 8.5730972, 49.4639703 8.5662392, 49.4755522 8.5060354, 49.4136791 8.7136022, 49.3684471 8.7452563, 49.4509911 8.6718847, 49.4687230 8.5596834, 49.4668508 8.5541279, 49.4720637 8.5678457, 49.3935169 8.4374510, 49.2817542 8.7809947, 49.4535628 8.4905741, 49.4564320 8.4890877, 49.4543568 8.4824181, 49.4741811 8.4824969, 49.3925682 9.0026920, 49.4648656 8.5102909, 49.4620122 8.4741993, 49.4574433 8.4851197, 49.4602112 8.4778998, 49.4593083 8.4706277, 49.4460279 8.5227546, 49.4428953 8.5184434, 49.4554270 8.5697767, 49.3520218 8.7810118, 49.4603642 8.5698463, 49.4650782 8.4660830, 49.3804529 8.6874252, 49.4054299 8.6767260, 49.4054501 8.6767490, 49.4423442 8.5141178, 49.3390847 8.6564963, 49.3610799 8.5359529, 49.4740411 8.6173826, 49.4279082 8.6839585, 49.3929187 8.5615782, 49.4127839 8.6732119, 49.4182810 8.6660747, 49.4167698 8.6778109, 49.2913518 8.6644581, 49.4140135 8.6829496, 49.3734559 8.6824541, 49.3734280 8.6804585, 49.3745737 8.6766391, 49.4133592 8.7082594, 49.3795300 8.6822909, 49.3843561 8.6673425, 49.4156948 8.6877018, 49.4186333 8.6903397, 49.3816846 8.6868958, 49.4089964 8.7017641, 49.4102662 8.7019427, 49.4112926 8.7027584, 49.3778358 8.6889772, 49.4085432 8.6937616, 49.4085582 8.6937574, 49.4096346 8.6933512, 49.4026410 8.6888163, 49.4047864 8.6845518, 49.4044472 8.6883811, 49.4062695 8.6913666, 49.4062653 8.6913679, 49.4084987 8.6926236, 49.4015292 8.6757972, 49.4751215 8.4447538, 49.4753090 8.4439781, 49.4723115 8.4446306, 49.4316305 8.5715242, 49.3519718 8.8684674, 49.4722987 8.4498631, 49.4694596 8.4459163, 49.4684341 8.4346313, 49.4655353 8.4193218, 49.4113476 8.7118706, 49.4119316 8.6969837, 49.4717681 8.4043309, 49.3992318 8.6882048, 49.3827614 8.6820305, 49.3687133 8.5309255, 49.4512831 8.5851445, 49.4415950 8.5774993, 49.4484967 8.8940967, 49.4179179 8.5341440, 49.3511417 8.7028368, 49.4191927 8.5147809, 49.4273409 8.5318780, 49.4186575 8.5259343, 49.4630647 8.9967854, 49.4120750 8.5220648, 49.4088197 8.5218682, 49.4062567 8.5209778, 49.3855700 8.5712429, 49.3305410 8.6722973, 49.3845397 8.5737947, 49.3841541 8.5774672, 49.4675791 8.6133121, 49.4721189 8.5496779, 49.4642559 8.5572445, 49.3930705 8.9242735, 49.4693227 8.4691927, 49.4183221 8.7563527, 49.4744092 8.4860415, 49.4548446 8.4036445, 49.3967764 8.5349193, 49.3947340 8.5341881, 49.4441798 8.5316600, 49.4498003 8.4787972, 49.4316207 8.5715985, 49.4015561 8.5564895, 49.4156725 8.7421792, 49.4641295 8.6024278, 49.3452536 8.6991775, 49.3975439 8.8370531, 49.3568753 8.4479584, 49.4180049 8.4304703, 49.3793989 8.8384026, 49.3882338 8.8576904, 49.3501718 8.7751677, 49.4146742 8.8811104, 49.3640808 8.7047444, 49.3923418 8.5869300, 49.3897621 8.5866301, 49.3900106 8.5951082, 49.4702371 8.6666013, 49.3454195 8.6833029, 49.2805051 8.6730134, 49.4417734 8.4209918, 49.4438650 8.6097575, 49.4633785 8.9898784, 49.4644476 8.9848049, 49.4652335 8.9747254, 49.4689588 8.9843908, 49.4701629 8.9950777, 49.4049630 8.8411931, 49.4180547 8.8517835, 49.4136635 8.7632703, 49.3840294 8.5818336, 49.3869098 8.5828680, 49.4006673 8.6308209, 49.3945750 8.7947057, 49.3955485 8.7094154, 49.4223460 8.7539976, 49.3651468 8.6848614, 49.3748990 8.6769370, 49.3638609 8.8379309, 49.3230182 8.8180605, 49.3406676 8.7984974, 49.4174077 8.7485344, 49.4533307 8.3761199, 49.4616961 8.4823765, 49.4542475 8.4825095, 49.4609738 8.5695179, 49.3794228 8.6676503, 49.4646409 8.4719323, 49.4464192 8.6113850, 49.4453340 8.5709402, 49.3751050 8.5886594, 49.4459998 8.6035076, 49.3442868 8.6897159, 49.3470840 8.6884135, 49.3425441 8.6599382, 49.4750609 8.6692928, 49.3205042 8.6940169, 49.3111150 8.6481530, 49.3539619 8.7231541, 49.4491677 8.4946723, 49.4103481 8.7060341, 49.3295450 8.6910429, 49.3388701 8.6518520, 49.4624577 8.4282629, 49.3541404 8.7763439, 49.3441177 8.7981134, 49.3280238 8.6814701, 49.3346708 8.8495091, 49.2910285 8.6964310, 49.3216876 8.8227396, 49.2944966 8.6988503, 49.4570856 8.4268629, 49.4011539 8.8031551, 49.4595673 8.4728524, 49.2928401 8.6954419, 49.3993096 8.6716403, 49.4478026 8.5078667, 49.4662579 8.8031314, 49.4749249 8.7513754, 49.4444798 8.7541253, 49.4691464 8.7850375, 49.4119277 8.7117685, 49.4457778 8.8970177, 49.4751194 8.6651104, 49.3047675 8.6306005, 49.3691520 8.7041610, 49.3659990 8.7045061, 49.3737125 8.7065938, 49.2991444 8.7120201, 49.2831386 8.7390235, 49.4175517 9.0035683, 49.3481666 8.6892411, 49.3416790 8.6596106, 49.3478664 8.6891542, 49.3781229 8.9876089, 49.4538785 8.9532854, 49.4253742 8.3953485, 49.4663513 8.9779137, 49.4088718 8.6936606, 49.3444638 8.6588175, 49.3694630 8.5826179, 49.3276412 8.7287660, 49.3356564 8.6704998, 49.3457534 8.6699049, 49.4189546 8.8362872, 49.2935863 8.5692961, 49.4491452 8.9035229, 49.4079094 8.8370041 +no +Fun Forest, Lehrpfad - Infotafel, Lehrpfad - Infotafel, Abenteuerwald, Barfußpfad, Modelleisenbahn, Freizeitzentrum Heidesee Forst, Husky Ranch, Hundeakademie Kimbaland, Oranienpark, Minigolfplatz, Roseninsel, Kurpark, Nachtigallenweg, Freizeitgelände Kuhberg, Klettergarten, Arboretum, Kraichgau Märchenwald, ESV Großbahn, Ravensburger Spielewelt, Kahler Vita-Parcours, Übung 05, Kahler Vita-Parcours, Übung 06, Kahler Vita-Parcours, Übung 07, Kahler Vita-Parcours, Übung 08, Kahler Vita-Parcours, Übung 09, Kahler Vita-Parcours, Übung 10, Kahler Vita-Parcours, Übung 01, Kahler Vita-Parcours, Übung 02, Kahler Vita-Parcours, Übung 03, Kahler Vita-Parcours, Übung 03, Kahler Vita-Parcours, Übung 04, Tripsdrill, Eisenbahn-Freunde Bad-Schönborn e.V., Holiday-Park, Didiland, Wiesen-Weg (Glücksweg), Sensapolis, Kurpfalzpark, Croco Island, Waldklettergarten Stuttgart-Zuffenhausen, JumpInn, Buntsandstein Erlebnis: "Hören", Waldkletterpark Weinsberg, Bibelgarten, Tiggolino Spielparadies, Sensadrom, Sommerrodelbahn, Märchenparadies Königstuhl + +yes +55.9353820 -3.2098014, 55.9456427 -3.1913637, 55.9257928 -3.2095594, 55.9687872 -3.1730375, 55.9801706 -3.1982531, 55.9605889 -3.1427782, 55.9788896 -3.2317323, 55.9588767 -3.2113228, 55.9614993 -3.3058797, 55.9334740 -3.1781896, 55.9057929 -3.2224600, 55.9360042 -3.2097006, 55.9370406 -3.2074419, 55.9654170 -3.1758684, 55.9460048 -3.2123234, 55.9466560 -3.2163830, 55.9448417 -3.2174972, 55.9424799 -3.2816617, 55.9713034 -3.2524594, 55.9504108 -3.2089957, 55.9505271 -3.1874272, 55.9529055 -3.1966423, 55.9530315 -3.1960873, 55.9399803 -3.2118878, 55.9398206 -3.2115635, 55.9422231 -3.2036961, 55.9600977 -3.2957282, 55.9592529 -3.2133182, 55.9453652 -3.1842234, 55.9268573 -3.2094072, 55.9807322 -3.1775607, 55.9591279 -3.1715305, 55.9592018 -3.1715098, 55.9575707 -3.2076016, 55.9148390 -3.1652277, 55.9376474 -3.1780108, 55.9414683 -3.1812245, 55.9331816 -3.2608758, 55.9415944 -3.1818222, 55.9416532 -3.1818741, 55.9484509 -3.1864893, 55.9603970 -3.2016509, 55.9325122 -3.1401027, 55.9640862 -3.1771034, 55.9174745 -3.1579689, 55.9542022 -3.2014648, 55.9627123 -3.1781131, 55.9699822 -3.1694976, 55.9714788 -3.1731260, 55.9510261 -3.2098355, 55.9332103 -3.2103231, 55.9613619 -3.1518927, 55.9439508 -3.1937950, 55.9509802 -3.2097331, 55.9653610 -3.1550289, 55.9580703 -3.1227957, 55.9588768 -3.1791133, 55.9589264 -3.1830818, 55.9277224 -3.2095761, 55.9530706 -3.1144267, 55.9295883 -3.2975758, 55.9240121 -3.2767704, 55.9622681 -3.1967802, 55.9672435 -3.2457527, 55.9576090 -3.1991586, 55.9284400 -3.2792074, 55.9713179 -3.1734837, 55.9298458 -3.2993946, 55.9655528 -3.2738894 and 55.9424743 -3.2815848, 55.9361134 -3.2793167, 55.9462332 -3.1856460, 55.9333253 -3.1780752, 55.9360917 -3.2094667, 55.9590449 -3.2133693, 55.9586606 -3.1898701, 55.9447464 -3.2502929, 55.8973064 -3.3042792, 55.9700633 -3.1697434, 55.9425272 -3.1823052, 55.9513374 -3.1082625, 55.9587362 -3.2229689, 55.9409843 -3.2032932, 55.9627061 -3.1777871, 55.9564836 -3.1381810, 55.9537987 -3.1155832, 55.9227407 -3.2868053, 55.9712083 -3.1733004 +0130797930 and velib.paris.fr, 0130797930 and velib.paris.fr, www.Velib.fr, www.parisbiketour.net, http://en.velib.paris.fr/Stations-in-Paris/Find-a-station +no +Regard de la Roquette +yes +575 +7 +quarry, recreation ground, allotments, construction, cemetery, retail, commercial, reservoir, industrial, residential, brownfield, farm, grass, sports centre, meadow, farmyard, forest, farmland, military, landfill, railway, field, basin, paved area, cage, graveyard, orchard, garages, community food growing, garden, leisure, nursery bed, chicken run, water cistern, tree nursery, wasteland, plant nursery, wetland, harbour, village green +Lian Pu, Cosmo, So Rice, China Red +yes +48 +Königreichssaal, Kapelle, Kirche am Markt, Angehörigen Kapelle, Freie evangelische Gemeinde, Buddhistisches Zentrum, Christliche Baptistengemeinde, Evangelische Friedenskirche, Synagoge, Kapelle, Peterskirche, Heiliggeistkirche, St. Michael, St. Vitus, St. Albert, Sankt Paul, St. Raphael, Neuapostolische Kirche, Jakobuskirche, Johanneskirche, Adventgemeinde Heidelberg, Markushaus, St. Bonifatius, Evangelisches Gemeindezentrum, Hoffnungskirche, St. Johannes, Jesuitenkirche, Providenzkirche, Lutherkirche, Yavuz Sultan Selim Camii, Chapel, Neuapostolische Kirche, St. Bartholomäus, Moschee Heidelberg, Kreuzkirche, Christuskirche, Alte Kirche - St. Bartholomäus, Bergkirche, Gutleuthofkapelle, Emmaus-Gemeinde, Lukaskirche, Sankt Anna, Versöhnungskirche, Evangelische Studierendengemeinde (Karl-Jaspers-Haus), Die ARCHE - Evangelische Wichern-Gemeinde, St. Thomas, Abteikirche Stift Neuburg, St. Laurentius, St. Teresa Kirche, Melanchthonkirche, St. Marien, St. Johann der Täufer, St. Laurentius, Sankt Peter, Peterskirche, St. Peter, Kirche Jesu Christi, Erlöserkirche +0 +55.9456505 -3.2342538, 55.9365675 -3.2082760, 55.9510909 -3.2099731, 55.9553917 -3.1889123, 55.9588600 -3.2111164, 55.9453258 -3.2049905, 55.9650478 -3.2741085, 55.9450756 -3.1838725, 55.9279029 -3.2091805, 55.9272762 -3.1643514, 55.9519111 -3.2015815, 55.9590621 -3.1719333, 55.9428827 -3.2207174, 55.9712491 -3.1733785 +Thessaloniki, Jönköping, Pala, Dieren, Marikina, Paris, Driebergen-Rijsenburg, Arezzo, Oslo, San Francisco, Torino, Stoutenburg, Oslo, Grayling, Prudenville, Norwich, Berlin, Milano, Spydeberg, Dublin, Dublin, Berlin, Berlin, Istanbul, Milano, Regensburg, Ettlingen, Aachen, Berlin, Portland, Neuss, Graz, Anchorage, Leipzig, Allestree, , Atlanta, Corona, Sindlesham, Wokingham, Ciudad de Panama, Öhningen, Beilngries, Seeheim-Jugenheim, Altensteig, Innsbruck, Oslo, Schelle, Bad Radkersburg, Järvenpää, Bad Ischl, Curitiba, Mol, Fronhausen, Gent, Flagstaff, Lake Arrowhead, Saratoga Springs, Erftstadt, Oxford, Oer-Erkenschwick, Durham, Joinville, Baarn, London, Santa Venera, Alpbach, Tahmoor, Stuttgart, Edinburgh, Mons, Green Lake, Erftstadt, Ig, Indianapolis, Jacksonville, תל אביב-יפו, Resistencia, Värmdö, Mississauga, Schönkirchen-Reyersdorf, Herrsching, Berlin +no +4 +Apex Edinburgh International and 55.9470365 -3.1966624 +6 +yes +7 +http://www.brooksedinburgh.com/, http://www.ardmillanhotel.com/, http://www.apexhotels.co.uk/en/hotels/edinburgh/apex-international-hotel/, http://www.hiexpress.com/, http://lemondehotel.co.uk/, http://www.placeshilton.com/edinburgh-city-centre, http://www.hot-el-apartments.com/edinburgh-waterfront-apartments/, http://www.jurysinns.com/hotels/edinburgh, http://www.apexhotels.co.uk/hotels/edinburgh-waterloo-place/?source=adwords mis1&gclid=CPyo uiJiqQCFVf-2AodJ02fJQ, http://www.travelodge.co.uk/search and book/hotel overview.php?hotel id=428, http://www.radissonblu.co.uk/hotel-edinburgh?facilitator=BIGMOUTHMEDIAREZIDOR&csref=g en sk brand 3 ediza, http://www.macdonaldhotels.co.uk/holyrood/, http://www.thistle.com/en/hotels/united kingdom/edinburgh/the king james/index.html, http://www.oceanservicedapts.com/index.php?gclid=COTK4ISGzKUCFYIe4QodBwiXjg, http://www.theglasshousehotel.co.uk/, http://www.oldwaverley.co.uk/, http://www.royalbritishhotel.com/, https://www.hotelduvin.com/locations/edinburgh/, http://edinburgh.frasershospitality.com, http://niracaledonia.com/en/, http://www.townhousecompany.com/thebonham/, http://www.hotelceilidh-donia.co.uk/, http://www.thedunstane.co.uk/, http://www.edinburghthistlehotel.com/, http://www.chester-residence.com/, http://www.thegrassmarkethotel.co.uk/, http://www.motel-one.com/en/hotels/edinburgh/hotel-edinburgh-royal/, http://www.ibis.com/gb/hotel-2039-ibis-edinburgh-centre-royal-mile/index.shtml, http://www.thescotsmanhotel.co.uk/, http://www.thenorthumberlandhotel.co.uk, http://www.edinburghmintohotel.co.uk/, http://www.kildonanlodgehotel.co.uk, http://www.cairnedinburgh.com/, http://abbeyhoteledinburgh.wix.com/abbeyhoteledinburgh, http://www.inverleithhotel.co.uk/, http://www.merithhousehotel.co.uk/, http://www.rosehallhotel.co.uk, http://www.parliamenthouse-hotel.co.uk/, http://www.royalscotsclub.com/, http://www.travelodge.co.uk/hotels/353/Edinburgh-Haymarket-hotel, http://www.11brunswickst.co.uk/, http://www.royalettrick.com/, http://www.claremont-hotel.co.uk/, http://www.travelodge.co.uk/hotels/418/Edinburgh-Cameron-Toll-hotel/, http://www.thewestendhotel.co.uk/, http://www.staycentral.co.uk/, http://www.fountaincourtapartments.com/locations/, http://www.edinburghcityhotel.com/, http://www.placeshilton.com/waldorf-edinburgh-caledonian, http://www.townhousecompany.com/theedinburghresidence/, www.tunehotels.com/our-hotels/haymarket-edinburgh, http://www.thedunstane.co.uk/, http://www.tommymiahsoriginalrajhotel.com/, http://www.hotelinedinburgh.co.uk/, http://www.themurrayfieldhouse.co.uk/, http://www.staycity.com/edinburgh/west-end/, http://www.rockvillehotel.co.uk, http://www.channings.co.uk, http://www.ibis.com, http://www.thegeorgehoteledinburgh.co.uk/, http://www.theroxburghe.com/, http://www.parkviewhousehotel.co.uk/, http://www.rockvillehotel.co.uk, http://www.rockvillehotel.co.uk, http://www.rockvillehotel.co.uk, http://www.rockvillehotel.co.uk +no +1.3561148859980778 +Caisse Commune, Autolib +1, 1, 1, 1, 1 +17 +sculpture +fr:Châtillon - Montrouge (métro de Paris), fr:Malakoff - Rue Étienne Dolet (métro de Paris), fr:Les Sablons (métro de Paris), fr:Argentine (métro de Paris), fr:George V (métro de Paris), fr:Franklin D. Roosevelt (métro de Paris), fr:Concorde (métro de Paris), fr:Tuileries (métro de Paris), fr:Palais Royal - Musée du Louvre (métro de Paris), fr:Louvre - Rivoli (métro de Paris), fr:Châtelet (métro de Paris), fr:Hôtel de Ville (métro de Paris), fr:Saint-Paul (métro de Paris), fr:Bastille (métro de Paris), fr:Gare de Lyon (métro de Paris), fr:Reuilly - Diderot (métro de Paris), fr:Porte de Vincennes (métro de Paris), fr:Marcel Sembat (métro de Paris), fr:La Motte-Picquet - Grenelle (métro de Paris), fr:Cambronne (métro de Paris), fr:Dupleix (métro de Paris), fr:Orly-Ouest (Orlyval), fr:Mairie d'Issy (métro de Paris), fr:Corentin Celton (métro de Paris), fr:Porte de Versailles (métro de Paris), fr:Convention (métro de Paris), fr:La Défense (métro de Paris), fr:Porte d'Orléans (métro de Paris), fr:Alésia (métro de Paris), fr:Mouton-Duvernet (métro de Paris), fr:Denfert-Rochereau (métro de Paris), fr:Raspail (métro de Paris), fr:Saint-Jacques (métro de Paris), fr:Glacière (métro de Paris), fr:Corvisart (métro de Paris), fr:Place d'Italie (métro de Paris), fr:Nationale (métro de Paris), fr:Chevaleret (métro de Paris), fr:Quai de la Gare (métro de Paris), fr:Stalingrad (métro de Paris), fr:Nation (métro de Paris), fr:Château de Vincennes (métro de Paris), fr:Bérault (métro de Paris), fr:Buttes Chaumont (métro de Paris), fr:Bolivar (métro de Paris), fr:Buzenval (métro de Paris), fr:Saint-Mandé (métro de Paris), fr:Avron (métro de Paris), fr:Ménilmontant (métro de Paris), fr:Père Lachaise (métro de Paris), fr:Philippe Auguste (métro de Paris), fr:Alexandre Dumas (métro de Paris), fr:Belleville (métro de Paris), fr:Couronnes (métro de Paris), fr:Colonel Fabien (métro de Paris), fr:Pigalle (métro de Paris), fr:Blanche (métro de Paris), fr:Place de Clichy (métro de Paris), fr:Rome (métro de Paris), fr:Villiers (métro de Paris), fr:Monceau (métro de Paris), fr:Charles de Gaulle - Étoile (métro de Paris), fr:Victor Hugo (métro de Paris), fr:Porte Dauphine (métro de Paris), fr:Gallieni (métro de Paris), fr:Porte de Bagnolet (métro de Paris), fr:Gambetta (métro de Paris), fr:Rue Saint-Maur (métro de Paris), fr:Parmentier (métro de Paris), fr:Temple (métro de Paris), fr:Arts et Métiers (métro de Paris), fr:Réaumur - Sébastopol (métro de Paris), fr:Bourse (métro de Paris), fr:Quatre-Septembre (métro de Paris), fr:Opéra (métro de Paris), fr:Havre - Caumartin (métro de Paris), fr:Malesherbes (métro de Paris), fr:Wagram (métro de Paris), fr:Pereire (métro de Paris), fr:Porte de Champerret (métro de Paris), fr:Vaugirard (métro de Paris), fr:Volontaires (métro de Paris), fr:Falguière (métro de Paris), fr:Duroc (métro de Paris), fr:Saint-François-Xavier (métro de Paris), fr:Varenne (métro de Paris), fr:Bel-Air (métro de Paris), fr:Marx Dormoy (métro de Paris), fr:Gabriel Péri (métro de Paris), fr:Jacques Bonsergent (métro de Paris), fr:Anatole France (métro de Paris), fr:Croix de Chavaux (métro de Paris), fr:Mairie de Montreuil (métro de Paris), fr:Pont de Levallois - Bécon (métro de Paris), fr:Louise Michel (métro de Paris), fr:Maraîchers (métro de Paris), fr:Porte de Montreuil (métro de Paris), fr:Robespierre (métro de Paris), fr:Rue des Boulets (métro de Paris), fr:Charonne (métro de Paris), fr:Voltaire (métro de Paris), fr:Saint-Ambroise (métro de Paris), fr:Oberkampf (métro de Paris), fr:Strasbourg - Saint-Denis (métro de Paris), fr:Bonne-Nouvelle (métro de Paris), fr:Grands Boulevards (métro de Paris), fr:Richelieu - Drouot (métro de Paris), fr:Chaussée d'Antin - La Fayette (métro de Paris), fr:Saint-Augustin (métro de Paris), fr:Gare d'Austerlitz (métro de Paris), fr:Jussieu (métro de Paris), fr:Cardinal Lemoine (métro de Paris), fr:Maubert - Mutualité (métro de Paris), fr:Cluny - La Sorbonne (métro de Paris), fr:Odéon (métro de Paris), fr:Mabillon (métro de Paris), fr:Balard (métro de Paris), fr:Lourmel (métro de Paris), fr:Boucicaut (métro de Paris), fr:Félix Faure (métro de Paris), fr:Basilique de Saint-Denis (métro de Paris), fr:Dugommier (métro de Paris), fr:Daumesnil (métro de Paris), fr:Bercy (métro de Paris), fr:Edgar Quinet (métro de Paris), fr:Pasteur (métro de Paris), fr:Kléber (métro de Paris), fr:Boissière (métro de Paris), fr:Trocadéro (métro de Paris), fr:Passy (métro de Paris), fr:Iéna (métro de Paris), fr:Rue de la Pompe (métro de Paris), fr:La Muette (métro de Paris), fr:Ranelagh (métro de Paris), fr:Jasmin (métro de Paris), fr:Michel-Ange - Auteuil (métro de Paris), fr:Michel-Ange - Molitor (métro de Paris), fr:Exelmans (métro de Paris), fr:Porte de Saint-Cloud (métro de Paris), fr:Alma - Marceau (métro de Paris), fr:/Saint-Philippe du Roule (métro de Paris), fr:Miromesnil (métro de Paris), fr:Sèvres - Babylone (métro de Paris), fr:Mairie de Clichy (métro de Paris), fr:Porte de Clichy (métro de Paris), fr:Brochant (métro de Paris), fr:La Fourche (métro de Paris), fr:Ségur (métro de Paris), fr:Avenue Émile Zola (métro de Paris), fr:Assemblée nationale (métro de Paris), fr:Solférino (métro de Paris), fr:Rennes (métro de Paris), fr:Notre-Dame-des-Champs (métro de Paris), fr:Concorde (métro de Paris), fr:Madeleine (métro de Paris), fr:Commerce (métro de Paris), fr:École Militaire (métro de Paris), fr:La Tour-Maubourg (métro de Paris), fr:Invalides (métro de Paris), fr:Filles du Calvaire (métro de Paris), fr:Saint-Sébastien - Froissart (métro de Paris), fr:Chemin Vert (métro de Paris), fr:Bastille (métro de Paris), fr:Ledru-Rollin (métro de Paris), fr:Faidherbe - Chaligny (métro de Paris), fr:Montgallet (métro de Paris), fr:Michel Bizot (métro de Paris), fr:Liberté (métro de Paris), fr:Porte Dorée (métro de Paris), fr:Picpus (métro de Paris), fr:Olympiades (métro de Paris), fr:Porte de Charenton (métro de Paris), fr:Pyramides (métro de Paris), fr:Trinité - d'Estienne d'Orves (métro de Paris), fr:Notre-Dame-de-Lorette (métro de Paris), fr:Rue du Bac (métro de Paris), fr:Saint-Georges (métro de Paris), fr:Abbesses (métro de Paris), fr:Lamarck - Caulaincourt (métro de Paris), fr:Jules Joffrin (métro de Paris), fr:Porte de la Chapelle (métro de Paris), fr:Simplon (métro de Paris), fr:Château Rouge (métro de Paris), fr:Gare du Nord (métro de Paris), fr:Gare de l'Est (métro de Paris), fr:Étienne Marcel (métro de Paris), fr:Château d'Eau (métro de Paris), fr:Les Halles (métro de Paris), fr:Cité (métro de Paris), fr:Saint-Michel (métro de Paris), fr:Saint-Germain-des-Prés (métro de Paris), fr:Saint-Placide (métro de Paris), fr:Vavin (métro de Paris), fr:Charles Michels (métro de Paris), fr:Javel - André Citroën (métro de Paris), fr:Église d'Auteuil (métro de Paris), fr:Porte d'Auteuil (métro de Paris), fr:Chardon-Lagache (métro de Paris), fr:Mirabeau (métro de Paris), fr:Boulogne - Jean Jaurès (métro de Paris), fr:Boulogne - Pont de Saint-Cloud (métro de Paris), fr:Goncourt (métro de Paris), fr:Rambuteau (métro de Paris), fr:Télégraphe (métro de Paris), fr:Pyrénées (métro de Paris), fr:Jourdain (métro de Paris), fr:Gaîté (métro de Paris), fr:Plaisance (métro de Paris), fr:Pernety (métro de Paris), fr:Malakoff - Plateau de Vanves (métro de Paris), fr:Bréguet - Sabin (métro de Paris), fr:Richard-Lenoir (métro de Paris), fr:Laumière (métro de Paris), fr:Ourcq (métro de Paris), fr:Porte de Pantin (métro de Paris), fr:Louis Blanc (métro de Paris), fr:Poissonnière (métro de Paris), fr:Riquet (métro de Paris), fr:Crimée (métro de Paris), fr:Corentin Cariou (métro de Paris), fr:Porte de la Villette (métro de Paris), fr:Le Peletier (métro de Paris), fr:Cadet (métro de Paris), fr:Pont Neuf (métro de Paris), fr:Sully - Morland (métro de Paris), fr:Pont Marie (métro de Paris), fr:Place Monge (métro de Paris), fr:Censier - Daubenton (métro de Paris), fr:Les Gobelins (métro de Paris), fr:Pré Saint-Gervais (métro de Paris), fr:Danube (métro de Paris), fr:Mairie des Lilas (métro de Paris), fr:Saint-Fargeau (métro de Paris), fr:Pelleport (métro de Paris), fr:Saint-Marcel (métro de Paris), fr:Campo-Formio (métro de Paris), fr:Guy Môquet (métro de Paris), fr:Porte de Saint-Ouen (métro de Paris), fr:Garibaldi (métro de Paris), fr:Tolbiac (métro de Paris), fr:Maison Blanche (métro de Paris), fr:Porte d'Italie (métro de Paris), fr:Les Agnettes (métro de Paris), fr:Asnières - Gennevilliers - Les Courtilles (métro de Paris), fr:Fort d'Aubervilliers (métro de Paris), fr:Aubervilliers - Pantin - Quatre Chemins (métro de Paris), fr:La Courneuve - 8 Mai 1945 (métro de Paris), fr:Champs-Élysées - Clemenceau (métro de Paris), fr:Créteil - L'Échat (métro de Paris), fr:Créteil - Université (métro de Paris), fr:Créteil - Préfecture (métro de Paris), fr:Maisons-Alfort - Les Juilliottes (métro de Paris), fr:Maisons-Alfort - Stade (métro de Paris), fr:École vétérinaire de Maisons-Alfort (métro de Paris), fr:Charenton - Écoles (métro de Paris), fr:Mairie de Saint-Ouen (métro de Paris), fr:Carrefour Pleyel (métro de Paris), fr:Villejuif - Léo Lagrange (métro de Paris), fr:Villejuif - Louis Aragon (métro de Paris), fr:Villejuif - Paul Vaillant-Couturier (métro de Paris), fr:Le Kremlin-Bicêtre (métro de Paris), fr:Saint-Sulpice (métro de Paris), fr:Montparnasse - Bienvenüe (métro de Paris), fr:Château-Landon (métro de Paris), fr:Église de Pantin (métro de Paris), fr:Liège (métro de Paris), fr:Saint-Denis - Porte de Paris (métro de Paris), fr:Saint-Denis - Université (métro de Paris), fr:Bir-Hakeim (métro de Paris), fr:Billancourt (métro de Paris), fr:Pont de Sèvres (métro de Paris), fr:Porte de Choisy (métro de Paris), fr:Porte d'Ivry (métro de Paris), fr:Pierre et Marie Curie (métro de Paris), fr:Mairie d'Ivry (métro de Paris), fr:Vaneau (métro de Paris), fr:Saint-Lazare (métro de Paris), fr:Ternes (métro de Paris), fr:Pointe du Lac (métro de Paris), fr:Barbès - Rochechouart (métro de Paris), fr:Marcadet - Poissonniers (métro de Paris), fr:Concorde (métro de Paris), fr:Invalides (métro de Paris), fr:Bastille (métro de Paris), fr:Gare de Lyon (métro de Paris), fr:Sèvres - Lecourbe (métro de Paris), fr:Porte de Clignancourt (métro de Paris), fr:Montparnasse - Bienvenüe (métro de Paris), fr:Orly-Sud (Orlyval), fr:Porte des Lilas (métro de Paris), fr:Botzaris (métro de Paris), fr:Jaurès (métro de Paris), fr:Place des Fêtes (métro de Paris), fr:Courcelles (métro de Paris), fr:Front Populaire (métro de Paris), fr:Bobigny - Pantin - Raymond Queneau (métro de Paris), fr:Porte Maillot (métro de Paris), fr:Philippe Auguste (métro de Paris), fr:Cour Saint-Émilion (métro de Paris), fr:Pont de Neuilly (métro de Paris), fr:Châtelet (métro de Paris), fr:Châtelet (métro de Paris), fr:Châtelet (métro de Paris), fr:Châtelet (métro de Paris), fr:Anvers (métro de Paris), fr:La Chapelle (métro de Paris), fr:Gare d'Austerlitz (métro de Paris), fr:Gare d'Austerlitz (métro de Paris), fr:Gare d'Austerlitz (métro de Paris), fr:Quai de la Rapée (métro de Paris), fr:Sentier (métro de Paris), fr:Gare d'Austerlitz (métro de Paris), fr:Mairie de Saint-Ouen (métro de Paris), fr:Porte de Clichy (métro de Paris), fr:Saint-Lazare (métro de Paris), fr:Concorde (métro de Paris), fr:République (métro de Paris) +2.4519106429886595 +yes +Hilton Edinburgh Airport Hotel, Greyfriars Bobby Statue, Talbot Rice Gallery, Holiday Inn Express, Malmaison, DoubleTree by Hilton Hotel Edinburgh City Centre, Anchor, Radisson Blu Hotel, Fraser Suites Edinburgh, Motel One, The Scotch Whisky Experience, National Museum of Scotland, National Museum of Scotland, Scottish National Gallery of Modern Art One, St. Giles' Cathedral, Scottish National Portrait Gallery, Waldorf Astoria Edinburgh - The Caledonian, Edinburgh Labyrinth, Hilton Edinburgh Grosvenor, Old College and 55.9438564 -3.3596517, 55.9469224 -3.1913043, 55.9470669 -3.1877715, 55.9788008 -3.1794679, 55.9778438 -3.1685794, 55.9457103 -3.2034799, 55.9800084 -3.1912453, 55.9500801 -3.1867539, 55.9523647 -3.1038920, 55.9491007 -3.0951514, 55.9500000 -3.1919145, 55.9506466 -3.1916009, 55.9487433 -3.1958749, 55.9470702 -3.1891400, 55.9468444 -3.1904431, 55.9508163 -3.2277571, 55.9494705 -3.1908525, 55.9554669 -3.1935926, 55.9495583 -3.2074777, 55.9438340 -3.1895021, 55.9470019 -3.2171075, 55.9474254 -3.1872595 +Völkerschlacht bei Leipzig and 49.4036412 8.7279490 +48.8503523 2.3771322 +142 +51.0314650 13.7060792, 51.0476641 13.7923415, 51.0813022 13.6914169, 51.0761832 13.6854700, 51.0531342 13.7070918, 51.0301256 13.7603362, 51.0158602 13.7682213, 51.0484348 13.7907288, 51.0026862 13.7951099, 51.0129678 13.7811896, 51.0133169 13.7545602, 51.0743089 13.6985362, 51.0739544 13.7586196, 51.0306245 13.7016945, 51.0117598 13.7985344, 50.9917031 13.7974045, 50.9916908 13.7974778, 51.0473259 13.8091135, 51.0308817 13.7016925, 51.0306353 13.7016025, 51.0307674 13.7015445, 51.0029038 13.8026801, 51.0301067 13.7605035, 51.0306483 13.7017773, 51.0307733 13.7018143, 51.0478027 13.7924906, 51.0477517 13.7923615, 51.0477169 13.7924663, 51.0473166 13.8090331, 51.0158295 13.7683219, 51.0157005 13.7682524, 51.0157602 13.7683420, 51.0157055 13.7681405, 51.0158344 13.7681178, 51.0157673 13.7680862, 51.0742678 13.6986495, 51.0743339 13.6986159, 51.0742512 13.6985401, 50.9984173 13.8180317, 50.9985671 13.8179957, 50.9984805 13.8178950, 50.9985026 13.8181299, 51.0298689 13.6478846, 51.0477363 13.7924103, 51.0301131 13.7604231, 51.0307524 13.7016675 +2 +48.8389743 2.3594500, 48.8660888 2.3735141, 48.8435512 2.3549103, 48.8415381 2.3513578, 48.8604665 2.2777715, 48.8426449 2.3435197, 48.8440817 2.3394081, 48.8781498 2.2912675, 48.8619692 2.3675752, 48.8608788 2.3675481, 48.8746407 2.3851288, 48.8377080 2.2928200, 48.8577103 2.3716555, 48.8757138 2.3237237, 48.8531755 2.2897323, 48.8369247 2.3655074, 48.8370392 2.3656876, 48.8366117 2.3660108, 48.8856585 2.3878153, 48.8747235 2.4028142, 48.8852964 2.3750552, 48.8726196 2.3504190, 48.8463900 2.2689236, 48.8663636 2.4020052, 48.8284834 2.3390838, 48.8782451 2.3776203, 48.8395681 2.3430437, 48.8370175 2.3399282, 48.8381233 2.3381623, 48.8503229 2.3719619, 48.8294209 2.3117338, 48.8318593 2.3321176, 48.8227046 2.3325473, 48.8389582 2.2736190, 48.8233729 2.3520348, 48.8406966 2.3089635, 48.8419046 2.4066858, 48.8829020 2.3533116, 48.8344290 2.2940843, 48.8351372 2.2970883, 48.8815039 2.3596777, 48.8343403 2.3469900, 48.8738281 2.3676232, 48.8799231 2.4029140, 48.8217673 2.4286891, 48.8990145 2.3317580, 48.8463859 2.2898152, 48.8402142 2.2586544, 48.8424746 2.2663692, 48.8465172 2.2647803, 48.8271977 2.3186334, 48.8445554 2.3918219, 48.8546261 2.3488485, 48.8368581 2.2933245, 48.8536180 2.3593838, 48.8804816 2.3601906, 48.8785401 2.3503089, 48.8875554 2.3932245, 48.8766581 2.3845776, 48.8772899 2.4044967, 48.8645848 2.3818674, 48.8415376 2.3358192, 48.8707470 2.3890101, 48.8735079 2.3859895, 48.8429738 2.4063211, 48.8428482 2.4072159, 48.8369808 2.3616318, 48.8352545 2.3669997, 48.8342311 2.3345129, 48.8324596 2.3065068, 48.8712344 2.2910205, 48.8477963 2.2711682, 48.8449828 2.2686932, 48.8539196 2.4084397, 48.8494123 2.3176366, 48.8452229 2.3155627, 48.8485322 2.3824733, 48.8433630 2.3993165, 48.8190962 2.4289009, 48.8929782 2.3244634, 48.8775846 2.3766713, 48.8383829 2.3526435, 48.8900253 2.3304354, 48.8383195 2.3374280, 48.8385002 2.3585546, 48.8377337 2.3652831, 48.8742587 2.3804890, 48.8292407 2.3110487, 48.8294654 2.3107293, 48.8185669 2.3650131 +55.9355847 -3.2312686 +138 +23 +48.8376960 2.3062844, 48.8481953 2.3419715, 48.8467471 2.3717077, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8278673 2.3796510, 48.8330539 2.2881095, 48.8234693 2.3306543, 48.8562375 2.3660049, 48.8516696 2.2978180, 48.8528343 2.3441184, 48.8504482 2.2926945, 48.8518053 2.3448347, 48.8549752 2.3046163, 48.8487972 2.3410105, 48.8478009 2.3422541, 48.8383845 2.3209532, 48.8555019 2.2928356, 48.8510976 2.3274782, 48.8495763 2.3798752, 48.8238179 2.3241127, 48.8496595 2.2837044, 48.8542680 2.3078406 +yes +Eau des Lys +48.8649810 2.2947036 +48.8715303 2.3852468, 48.8786948 2.3802940, 48.8810910 2.3830096, 48.8772975 2.3756258, 48.8192800 2.4461614, 48.8431371 2.3559220, 48.8816331 2.3989854, 48.8276787 2.4357466, 48.8737978 2.3851825, 48.8495352 2.3602521, 48.8861105 2.3431223, 48.8619948 2.2887325, 48.8797763 2.3836622, 48.8300350 2.4157042, 48.8737846 2.2950252, 48.8826564 2.3973634, 48.8218882 2.3397494, 48.8616753 2.3454571, 48.8333332 2.4191292, 48.8684965 2.2469852, 48.8577668 2.3393457, 48.8413588 2.2739982, 48.8714332 2.3319654, 48.8600676 2.3517238, 48.8857644 2.3378811, 48.8734030 2.3318168, 48.8582621 2.2944971, 48.8582613 2.2944982 +no +131 +catholic, greek catholic, catholic, armenian apostolic, anglican, russian orthodox, greek orthodox, roman catholic +Die Kamera, Gloria & Gloriette, Karlstorkino +Edinburgh Airport +49.3999791 8.6903579, 49.4183136 8.7570658, 49.4128139 8.6783720, 49.4145117 8.6907695, 49.4072855 8.6846071, 49.4080418 8.6903517, 49.4085419 8.6884195, 49.4114635 8.7036590, 49.4112271 8.7056319, 49.3803180 8.6917254, 49.3789548 8.6920168, 49.3789551 8.6697358, 49.4118400 8.7103033, 49.4101826 8.6997355, 49.4088814 8.6922211, 49.3933124 8.6898329, 49.3999180 8.6849475, 49.4004873 8.6918128, 49.4055340 8.6909414, 49.4284910 8.6833643, 49.4298020 8.6813390, 49.3813862 8.6715525, 49.3801053 8.6879890, 49.4055840 8.6658584, 49.3805484 8.6587871, 49.4019559 8.6916056, 49.4035568 8.6918554, 49.4089227 8.6927850, 49.3788705 8.6685559, 49.3821598 8.6632293, 49.4076785 8.6917122, 49.4211931 8.6801164, 49.3746688 8.7035666, 49.4103729 8.6964923, 49.3744114 8.6827527, 49.3734828 8.6803866, 49.4088951 8.6939512, 49.4152187 8.7476376, 49.4122637 8.7077964, 49.4034041 8.6828344, 49.4283328 8.6876890, 49.4294006 8.6822101, 49.4045550 8.6757234, 49.4042051 8.6757454, 49.4055602 8.6759168, 49.3773301 8.6643950, 49.4247182 8.6873975, 49.4254190 8.6871690, 49.4211737 8.7557530, 49.4152481 8.6922641, 49.3803605 8.6881824, 49.4145068 8.6907391, 49.4148749 8.6923202, 49.4090710 8.6596269, 49.3797613 8.6848437, 49.4230594 8.6488328, 49.4059598 8.6868733, 49.3772126 8.6700382, 49.4270878 8.6470653, 49.4278529 8.6465726, 49.4188086 8.6517772, 49.3974830 8.6464426, 49.3976777 8.6479965, 49.4073819 8.6570319, 49.4014703 8.6683127, 49.4023052 8.6665425, 49.3643703 8.7049073, 49.4082152 8.6881105, 49.3672607 8.6859228, 49.4274587 8.7497458, 49.4231569 8.7538331, 49.3791539 8.6910962, 49.3746591 8.7029203, 49.3855952 8.6902427, 49.4041430 8.6464978, 49.4077479 8.6774775, 49.4179480 8.7596452, 49.4146130 8.6710105 and 49.4142159 8.6881484, 49.4038218 8.6845668, 49.4302090 8.6826535, 49.4215525 8.7554923, 49.3811013 8.6713612, 49.3794165 8.6912333, 49.4148351 8.6923482, 49.3972488 8.6465060, 49.4123625 8.7092084, 49.4270902 8.6483857, 49.3801809 8.6865918, 49.3787351 8.6688216 +17 +yes +55.9427753 -3.2095327, 55.9449849 -3.2070428, 55.9261403 -3.1387050, 55.9021084 -3.2216506, 55.9077375 -3.2604776, 55.9744871 -3.3050579, 55.9605521 -3.2145819, 55.9914354 -3.3985059, 55.9551815 -3.1828752, 55.9905515 -3.3832043, 55.9898776 -3.3947910, 55.9388513 -3.1691562, 55.9501390 -3.1751181, 55.9297052 -3.2086909, 55.9489520 -3.1813494, 55.9210967 -3.2266715, 55.9487114 -3.2851366, 55.9487753 -3.2841900, 55.9487321 -3.2833922, 55.9482056 -3.2747143, 55.9605324 -3.1932010, 55.9349799 -3.1318268, 55.9319057 -3.1277488, 55.9331970 -3.1413489, 55.9031553 -3.1637932, 55.9539250 -3.1094167, 55.9383367 -3.4074644, 55.9560188 -3.3189391, 55.9233331 -3.3622103, 55.9234774 -3.3610087, 55.9670463 -3.3162635, 55.9684981 -3.1418750, 55.9145289 -3.2879909, 55.9262193 -3.2367397, 55.9257251 -3.2379807, 55.9536926 -3.2888163, 55.9462399 -3.2069718, 55.9760698 -3.1951310, 55.9202135 -3.2126749, 55.9225657 -3.2301524, 55.9228577 -3.2291352, 55.9232283 -3.2269378, 55.9914682 -3.3984225, 55.9226414 -3.2544133, 55.9272283 -3.2938863, 55.9503380 -3.2726676, 55.9559652 -3.1503593, 55.9591543 -3.2259572, 55.9590419 -3.2244693, 55.9588991 -3.2258357, 55.9859461 -3.1898643, 55.9864555 -3.1885077, 55.9330884 -3.3083607, 55.9171931 -3.1941869, 55.9281835 -3.2479998, 55.9278363 -3.2486916, 55.9683895 -3.3221102, 55.9520661 -3.2796118, 55.9555827 -3.3904656, 55.9555053 -3.1853840, 55.9466753 -3.2083107, 55.9444973 -3.2038097, 55.9437264 -3.1923238, 55.9849796 -3.1929699, 55.9625359 -3.4034070, 55.9425986 -3.2065382, 55.9407899 -3.1790526, 55.9390017 -3.1784821, 55.9461084 -3.1836449, 55.9528247 -3.2065333, 55.9529149 -3.2065700, 55.9533456 -3.2048532, 55.9075949 -3.4202463, 55.9509478 -3.2066848, 55.9526988 -3.2085257, 55.9527795 -3.2080212, 55.9529409 -3.2077810, 55.9543888 -3.1989928, 55.9548130 -3.1959084, 55.9531961 -3.2032873, 55.9527862 -3.1991610, 55.9550493 -3.1952197, 55.9556549 -3.1915634, 55.9634080 -3.1859429, 55.9635172 -3.1861220, 55.9658499 -3.1878049, 55.9549784 -3.1940904, 55.9543610 -3.1899213, 55.9544361 -3.1900259, 55.9545229 -3.1900939, 55.9517393 -3.2095002, 55.9519739 -3.2095707, 55.9529445 -3.1801566, 55.9538070 -3.1754710, 55.9543079 -3.1742698, 55.9426714 -3.2219762, 55.9427639 -3.2224680, 55.9434140 -3.2224863, 55.9435542 -3.2218583, 55.9400653 -3.2282711, 55.9377290 -3.2266198, 55.9381260 -3.2274794, 55.9384518 -3.2272743, 55.9386936 -3.2277396, 55.9397129 -3.4193561, 55.9381264 -3.4275615, 55.9371685 -3.2220646, 55.9359519 -3.2265085, 55.9434246 -3.2321614, 55.9636700 -3.3778320, 55.9232795 -3.2513290, 55.9347856 -3.2210702, 55.9416253 -3.3132418, 55.9410771 -3.3142794, 55.9699237 -3.2405852, 55.9304103 -3.2469509, 55.9374492 -3.2014688, 55.9482570 -3.2808480, 55.9411313 -3.2167882, 55.9857329 -3.3816698, 55.9394016 -3.1735716, 55.9319966 -3.1799344, 55.9479153 -3.2032909, 55.9148269 -3.2846688, 55.9068623 -3.1327381, 55.9336793 -3.0927075, 55.9166066 -3.3142805, 55.9475115 -3.1893474, 55.9478706 -3.1875187, 55.9367307 -3.4053592, 55.9404588 -3.2944172, 55.9362574 -3.2996459, 55.9696057 -3.2312902, 55.9384326 -3.3172993, 55.9371293 -3.3120269, 55.9358957 -3.3194951, 55.9338970 -3.3122513, 55.9189243 -3.3018114, 55.9253633 -3.2482805, 55.9401130 -3.3149747, 55.9397190 -3.3120155, 55.9016607 -3.2241566, 55.9413015 -3.1014889, 55.9262359 -3.1654883, 55.9578808 -3.1647965, 55.9544821 -3.1426137, 55.9800739 -3.1795567, 55.9821860 -3.1756582, 55.9435294 -3.2654687, 55.9436259 -3.2619723, 55.9690347 -3.1695750, 55.9453813 -3.1852436, 55.9323240 -3.1280801, 55.9325021 -3.1355675, 55.9281227 -3.1237925, 55.9272147 -3.1239385, 55.9225712 -3.1334883, 55.9234297 -3.1370906, 55.9079002 -3.3236956, 55.9314429 -3.2359511, 55.9234755 -3.2477828, 55.9523213 -3.2247362, 55.9505953 -3.2279799, 55.9388330 -3.3562292, 55.9282702 -3.2905058, 55.9328331 -3.3144308, 55.9241972 -3.3791226, 55.9384587 -3.2403692, 55.9895200 -3.3960731, 55.9226662 -3.2254126, 55.9559159 -3.1551037, 55.9396348 -3.1719819, 55.9418587 -3.1505561, 55.9471658 -3.1800476, 55.9510411 -3.1708174, 55.9629095 -3.1702904, 55.9391574 -3.3048858, 55.9211610 -3.1413021, 55.9151416 -3.3259472, 55.9125478 -3.3210336, 55.9127485 -3.3229472, 55.9121677 -3.3242629, 55.9168756 -3.3182175, 55.9030839 -3.3120674, 55.9323493 -3.1390569, 55.9315981 -3.1166385, 55.9280748 -3.1214990, 55.9351070 -3.1380033, 55.9317363 -3.1361908, 55.9318430 -3.1350736, 55.9324368 -3.1361552, 55.9323067 -3.1467718, 55.9222916 -3.1872552, 55.9029473 -3.2042927, 55.9042182 -3.1508526, 55.9187139 -3.1384285, 55.9347851 -3.1178195, 55.9327343 -3.1371524, 55.9310415 -3.1291255, 55.9312532 -3.1311471, 55.9356181 -3.1431581, 55.9366082 -3.1592634, 55.9346063 -3.1287373, 55.9585525 -3.1225664, 55.9390965 -3.1155072, 55.9372934 -3.1427896, 55.9395153 -3.1374061, 55.9391745 -3.1365070, 55.9326082 -3.1048464, 55.9673151 -3.1353973, 55.9167088 -3.3165996, 55.9323197 -3.1071045, 55.9339501 -3.1058170, 55.9338900 -3.1047414, 55.9350618 -3.1024293, 55.9289228 -3.1324182, 55.9094988 -3.1543668, 55.9097262 -3.1417586, 55.9248212 -3.2647912, 55.9773633 -3.2471160, 55.9558401 -3.1172914, 55.9092890 -3.3163751, 55.9275619 -3.2972009, 55.9021546 -3.1682556, 55.9061546 -3.3220260, 55.9116089 -3.3255752, 55.9133830 -3.3215390, 55.9109708 -3.3144538, 55.9109175 -3.3264046, 55.9280288 -3.2881415, 55.9235713 -3.3999101, 55.9893024 -3.3981851, 55.9116987 -3.3152719, 55.9096737 -3.3169570, 55.9156152 -3.3159619, 55.9497651 -3.1780477, 55.9360545 -3.2260184, 55.9162763 -3.2910976, 55.9274994 -3.2148921, 55.9414356 -3.2221759, 55.9422143 -3.1843904, 55.9447507 -3.1796881, 55.9430719 -3.1777209, 55.9446561 -3.1803415, 55.9494277 -3.1775329, 55.9487518 -3.1780877, 55.9485518 -3.1781362, 55.9491775 -3.1780460, 55.9466674 -3.1799160, 55.9467039 -3.1783594, 55.9520666 -3.1782554, 55.9442077 -3.1850195, 55.9611696 -3.2316847, 55.9609929 -3.2342787, 55.9607831 -3.2371118, 55.9615933 -3.2374124, 55.9619320 -3.2374854, 55.9631141 -3.2367935, 55.9634777 -3.2359757, 55.9461010 -3.1869570, 55.9496410 -3.1840791, 55.9518134 -3.1865125, 55.9244139 -3.2659013, 55.9160232 -3.3163210, 55.9156359 -3.3182752, 55.9160984 -3.3183497, 55.9827482 -3.1947966, 55.9820923 -3.1881161, 55.9663647 -3.1958162, 55.9713037 -3.2306913, 55.9211315 -3.1991537, 55.9272727 -3.2235753, 55.9282865 -3.2235682, 55.9226879 -3.2251365, 55.9871580 -3.4033776, 55.9453143 -3.3555656, 55.9465236 -3.3629644, 55.9539125 -3.1587511, 55.8968564 -3.3184286, 55.9600239 -3.1973819, 55.9679377 -3.1728765, 55.9729929 -3.1628209, 55.9239749 -3.1779212, 55.9246612 -3.1815724, 55.9259809 -3.1931356, 55.9276896 -3.1509176, 55.9274521 -3.1503413, 55.9275727 -3.1506409, 55.9254765 -3.1644984, 55.9263987 -3.1628516, 55.9280015 -3.1625220, 55.9283909 -3.2930391, 55.9276860 -3.2951771, 55.9264933 -3.3012131, 55.9447684 -3.1528732, 55.9383947 -3.2562456, 55.9006763 -3.3190467, 55.8607477 -3.3326422, 55.9312615 -3.2941807, 55.8941662 -3.2624173, 55.9334127 -3.2358071, 55.9090922 -3.2239505, 55.9546946 -3.1893677, 55.9519010 -3.2481568, 55.9523635 -3.2486330, 55.9523251 -3.2541631, 55.9430692 -3.2219457, 55.9587913 -3.2420040, 55.9573940 -3.2424916, 55.9588441 -3.2305299, 55.9590153 -3.2322733, 55.9371887 -3.3211797, 55.9381046 -3.3208512, 55.9611769 -3.2425780, 55.9615806 -3.2409418, 55.9613606 -3.2419902, 55.9619750 -3.2400369, 55.9351660 -3.1204578, 55.9355230 -3.1204690, 55.9467379 -3.1966389, 55.9596219 -3.2030610, 55.9776230 -3.2433010, 55.9771738 -3.2430088, 55.9704226 -3.1957989, 55.9703340 -3.1960928, 55.9704287 -3.1964960, 55.9418116 -3.2938190, 55.9409118 -3.2928528, 55.9563797 -3.2090019, 55.9567298 -3.2082704, 55.9556731 -3.1599309, 55.9561097 -3.1678692, 55.9382223 -3.1043918, 55.9401997 -3.1010852, 55.9392618 -3.1041020, 55.9326805 -3.0980239, 55.9332952 -3.0991933, 55.9345875 -3.0954263, 55.9352737 -3.0966452, 55.9347395 -3.0943083, 55.9349364 -3.0950506, 55.9639094 -3.1973365, 55.9338797 -3.4074558, 55.9828555 -3.2257526, 55.9786099 -3.1784394, 55.9394393 -3.2936438, 55.9393840 -3.2949198, 55.9596625 -3.2024027, 55.9669462 -3.1676798, 55.9305761 -3.1559101, 55.9311166 -3.1557491, 55.9333643 -3.3185667, 55.9341121 -3.3187777, 55.9310843 -3.3172397, 55.9324950 -3.3181693, 55.9346695 -3.3189829, 55.9319082 -3.3177126, 55.9359022 -3.2382929, 55.9360694 -3.2391515, 55.9390399 -3.3615802, 55.9805959 -3.1832658, 55.9809445 -3.1749097, 55.9434092 -3.3600497, 55.9437471 -3.3581099, 55.9452797 -3.3600043, 55.9452261 -3.3675496, 55.9370826 -3.1361439, 55.9586837 -3.1836662, 55.9611856 -3.1865315, 55.9901392 -3.3873481, 55.9454748 -3.2133562, 55.9660452 -3.2748274, 55.9664497 -3.2729235, 55.9293562 -3.3014052, 55.9410215 -3.2404052, 55.9437556 -3.2442061, 55.9368200 -3.2236817, 55.9816227 -3.1755092, 55.9598506 -3.2240155, 55.9817826 -3.1942506, 55.9810071 -3.1939768, 55.9811801 -3.1933829, 55.9813044 -3.1938863, 55.9810877 -3.1942030, 55.9811027 -3.1927207, 55.9812693 -3.1942614, 55.9810054 -3.1943069, 55.9810768 -3.1928706, 55.9810233 -3.1925847, 55.9811812 -3.1929615, 55.9809636 -3.1928228, 55.9813691 -3.1941213, 55.9809242 -3.1941406, 55.9812361 -3.1931210, 55.9810750 -3.1933834, 55.9741695 -3.2060915, 55.9109047 -3.2387736, 55.9747193 -3.2135794, 55.9231850 -3.2486394, 55.9374125 -3.4072197, 55.9371945 -3.4058237, 55.9374045 -3.4044434, 55.9637505 -3.2335268, 55.9428585 -3.1864559, 55.9846236 -3.1940314, 55.9221429 -3.1752023, 55.9223399 -3.1759213, 55.9670991 -3.2534481, 55.9718838 -3.2534162, 55.9810691 -3.2383577, 55.8984479 -3.3160297, 55.8985757 -3.3165711, 55.8953678 -3.3130989, 55.9298336 -3.3106553, 55.9382569 -3.1735978, 55.9158853 -3.3230009, 55.9162950 -3.3213724, 55.9364542 -3.2790390, 55.9125969 -3.2367843, 55.9184722 -3.3001516, 55.9257870 -3.2656567, 55.9797109 -3.2996704, 55.9783116 -3.2972235, 55.9122709 -3.3154115, 55.9799121 -3.2416420, 55.9268127 -3.3119797, 55.9345568 -3.1028170, 55.9337360 -3.1016259, 55.9403513 -3.3138800, 55.9306972 -3.3125459, 55.9313178 -3.3099344, 55.9320037 -3.3111775, 55.9326177 -3.3104501, 55.9332898 -3.3118087, 55.9475597 -3.3620450, 55.9319865 -3.3124215, 55.9318662 -3.3137738, 55.9181587 -3.2705015, 55.9342211 -3.1778645, 55.9514047 -3.2207449, 55.9724551 -3.2012809, 55.9778747 -3.1744863, 55.9783944 -3.1773378, 55.9780784 -3.1753297, 55.9782943 -3.1763220, 55.9777295 -3.1734902, 55.9789541 -3.1763230, 55.9051373 -3.2232377, 55.9365959 -3.3331143, 55.9362007 -3.3351286, 55.9360359 -3.3397002, 55.9363751 -3.3340583, 55.9694092 -3.2702934, 55.9416975 -3.1483958, 55.9582905 -3.2794012, 55.9767721 -3.1754685, 55.9766864 -3.1738710, 55.9777295 -3.1642417, 55.9713517 -3.2751363, 55.9716217 -3.2748645, 55.9509109 -3.3040405, 55.9505011 -3.3028322, 55.9517277 -3.3043967, 55.9508168 -3.3035767, 55.9561104 -3.2932448, 55.9489929 -3.2075011, 55.9770963 -3.2560693, 55.9775467 -3.1730925, 55.9767627 -3.1685149, 55.9759609 -3.1666596, 55.9775534 -3.1677038, 55.9384263 -3.2384184, 55.9400215 -3.2835991, 55.9722626 -3.1718229, 55.9724369 -3.1737659, 55.9725956 -3.1724850, 55.9735295 -3.1719581, 55.9422361 -3.2854972, 55.9426182 -3.2848408, 55.9424261 -3.2853919, 55.9397418 -3.2866275, 55.9602875 -3.2957399, 55.9004908 -3.2325152, 55.9425974 -3.2817995, 55.9427324 -3.2894308, 55.9428132 -3.2886637, 55.9428834 -3.2895145, 55.9430576 -3.2887151, 55.9429003 -3.2891706, 55.9421047 -3.2806000, 55.9421878 -3.2816836, 55.9418910 -3.2811010, 55.9382573 -3.1889080, 55.9433390 -3.1786743, 55.9352231 -3.1799086, 55.9354644 -3.1805170, 55.9370560 -3.1808037, 55.9375135 -3.1796069, 55.9372745 -3.1802503, 55.9565920 -3.1172429, 55.9416412 -3.1759641, 55.9411089 -3.1758742, 55.9419221 -3.1751737, 55.9413742 -3.1751322, 55.9421224 -3.1755399, 55.9420435 -3.1759728, 55.9417717 -3.1760016, 55.9412888 -3.1748673, 55.9419213 -3.1762309, 55.9417190 -3.1758050, 55.9416320 -3.1757373, 55.9421785 -3.1756667, 55.9411631 -3.1744380, 55.9420584 -3.1756683, 55.9419621 -3.1753235, 55.9421292 -3.1750657, 55.9415161 -3.1750333, 55.9414662 -3.2429306, 55.9380787 -3.2164916, 55.9740721 -3.2549433, 55.9422902 -3.1878156, 55.9424910 -3.1860227, 55.9322037 -3.2172622, 55.9198429 -3.1330027, 55.9726414 -3.3515240, 55.9235247 -3.1313815, 55.9302056 -3.3085109, 55.9324769 -3.3071758, 55.9305686 -3.3131161, 55.9308765 -3.3117228, 55.9399461 -3.2681429, 55.9554624 -3.2241042, 55.9274642 -3.2135816, 55.9419086 -3.2188990, 55.9483346 -3.2942197, 55.9421518 -3.2052869, 55.9229540 -3.3790829, 55.9287806 -3.2587079, 55.8990484 -3.2377762, 55.9109797 -3.2089126, 55.9419464 -3.1773362, 55.9794270 -3.2989393, 55.9173932 -3.1379231, 55.9763960 -3.1763346, 55.9142301 -3.1341304, 55.9710130 -3.1805984, 55.9134751 -3.1337551, 55.9182561 -3.1989900, 55.9132484 -3.1780898, 55.9646733 -3.1376419, 55.9655572 -3.3178364, 55.9754348 -3.1685187, 55.9819343 -3.1951000, 55.9405416 -3.2928536, 55.9193614 -3.2228522, 55.9191174 -3.2378985, 55.9192124 -3.2367725, 55.8930871 -3.2026884, 55.8907970 -3.2014067, 55.9642325 -3.1552631, 55.8941813 -3.2179019, 55.8935768 -3.2164997, 55.9761891 -3.1670909, 55.9758400 -3.1668709, 55.9431663 -3.2838745, 55.9433798 -3.2860859, 55.9433113 -3.2870890, 55.9190084 -3.1475665, 55.9191946 -3.1484908, 55.9178453 -3.1484828, 55.9806120 -3.1941067, 55.9768582 -3.1715174, 55.9150424 -3.1487433, 55.9308539 -3.2761099, 55.9460257 -3.1970143, 55.9232520 -3.2341444, 55.9506991 -3.1804199, 55.9228372 -3.1787829, 55.9651311 -3.3167567, 55.9339081 -3.2001289, 55.9381722 -3.1723579, 55.9391719 -3.1689528, 55.9405990 -3.1722908, 55.9216518 -3.1782720, 55.9242052 -3.1744113, 55.9212881 -3.1716104, 55.9649792 -3.3131166, 55.9451444 -3.1904630, 55.9416788 -3.1843079, 55.9226382 -3.1721985, 55.9036926 -3.1570111, 55.9382239 -3.2291441, 55.9828789 -3.2415813, 55.9706810 -3.3766476, 55.9635570 -3.2312483, 55.9044775 -3.2067494, 55.9331889 -3.2150781, 55.9227690 -3.3421555, 55.8831023 -3.3393159, 55.8838260 -3.3396672, 55.9336416 -3.2375159, 55.9235691 -3.2868011, 55.9310562 -3.2789944, 55.9077899 -3.3207300, 55.9082800 -3.3196678, 55.9378551 -3.2430479, 55.9342208 -3.2112229, 55.9260946 -3.2833643, 55.9400371 -3.2200755, 55.9557192 -3.1879718, 55.9364788 -3.1804773, 55.9365565 -3.1810260, 55.9337994 -3.2511195, 55.9251847 -3.2668441, 55.9281271 -3.1676775, 55.9131088 -3.1600256, 55.9032628 -3.1558019, 55.9031108 -3.1551269, 55.9351736 -3.2474301, 55.9303412 -3.1688554, 55.9231711 -3.1630255, 55.9251859 -3.2505537, 55.9553468 -3.2876097, 55.9554662 -3.2864616, 55.9340800 -3.2344323, 55.9186700 -3.2386355, 55.9193908 -3.2392334, 55.9181062 -3.2402690, 55.9190442 -3.2405398, 55.9186959 -3.2407877, 55.9325805 -3.2889506, 55.9541504 -3.3018100, 55.9064102 -3.2861260, 55.9390667 -3.2357495, 55.9291016 -3.1989979, 55.9220415 -3.3064155, 55.9238629 -3.3045205, 55.9232078 -3.3078531, 55.9222172 -3.3051610, 55.9583164 -3.1189512, 55.9777348 -3.2983203, 55.9463532 -3.2009029, 55.9347654 -3.1776917, 55.9310132 -3.1730716, 55.8957251 -3.3137161, 55.8961364 -3.3124683, 55.9282756 -3.3087719, 55.8961608 -3.3078477, 55.8697544 -3.3340369, 55.9463988 -3.0792364, 55.9487089 -3.0877156, 55.9472371 -3.3582172, 55.9467179 -3.2004315, 55.9609398 -3.2353282, 55.9611023 -3.2337205, 55.9615648 -3.2337688, 55.9897791 -3.3942172, 55.9548736 -3.4013671, 55.9550518 -3.4014531, 55.9499454 -3.3347136, 55.9332640 -3.1585804, 55.9615076 -3.1962176, 55.9617797 -3.1967210, 55.9618418 -3.1964188, 55.9171133 -3.1693870, 55.9499151 -3.1945526, 55.9337127 -3.2143721, 55.9384227 -3.2096374, 55.9673672 -3.2023565, 55.9331209 -3.2609346, 55.9414207 -3.1461071, 55.9584013 -3.2102800, 55.9415712 -3.1423967, 55.9372219 -3.1675591, 55.9376359 -3.1437325, 55.9582727 -3.2142012, 55.9578400 -3.2137240, 55.9580057 -3.2137170, 55.9583384 -3.2143374, 55.9578384 -3.2135045, 55.9586941 -3.2142670, 55.9579707 -3.2133574, 55.9561334 -3.1325493, 55.9557004 -3.4018948, 55.9461251 -3.1413986, 55.9522035 -3.2050275, 55.9532469 -3.1988696, 55.9527247 -3.2019313, 55.9537795 -3.1957406, 55.9588705 -3.2081707, 55.9208169 -3.1598554, 55.9578355 -3.2056417, 55.9576157 -3.2060293, 55.9576413 -3.2059278, 55.9580732 -3.2011430, 55.9579644 -3.2017381, 55.9580494 -3.2012821, 55.9579410 -3.2018748, 55.9584126 -3.2005043, 55.9582239 -3.2009160, 55.9332968 -3.1356104, 55.9587356 -3.2012076, 55.9229466 -3.2475426, 55.9569863 -3.2004490, 55.9571215 -3.2003372, 55.9569959 -3.2010702, 55.9570258 -3.1998342, 55.9568113 -3.2014707, 55.9568346 -3.2013336, 55.9567905 -3.2018529, 55.9571440 -3.1998405, 55.9569850 -3.2000388, 55.9563234 -3.2000974, 55.9562861 -3.2003170, 55.9563051 -3.2002050, 55.9563435 -3.1999788, 55.9563659 -3.1998463, 55.9558888 -3.2012666, 55.9563438 -3.1994450, 55.9262637 -3.2243126, 55.9197901 -3.4326481, 55.9254221 -3.2108025, 55.9633427 -3.1866328, 55.9571314 -3.1945091, 55.9570903 -3.1942658, 55.9571062 -3.1948163, 55.9570078 -3.1956389, 55.9574245 -3.1945101, 55.9570801 -3.1952413, 55.9593471 -3.1962794, 55.9588288 -3.1994335, 55.9583111 -3.1990412, 55.9585624 -3.1980766, 55.9583421 -3.1992286, 55.9586095 -3.1976521, 55.9584283 -3.1986380, 55.9585084 -3.1979077, 55.9575802 -3.1968697, 55.9566931 -3.1981359, 55.9567965 -3.1968319, 55.9566552 -3.1982909, 55.9568562 -3.1972327, 55.9568774 -3.1971123, 55.9156397 -3.3249979, 55.9156923 -3.3238425, 55.9153453 -3.3247946, 55.9153595 -3.3236574, 55.9150128 -3.3243232, 55.9151025 -3.3234941, 55.9305464 -3.2379374, 55.9566534 -3.1920437, 55.9568104 -3.1898624, 55.9566771 -3.1918966, 55.9565541 -3.1926150, 55.9570880 -3.1893684, 55.9567192 -3.1908266, 55.9565429 -3.1914874, 55.9565039 -3.1916747, 55.9581429 -3.1932082, 55.9580069 -3.1929658, 55.9560597 -3.2073932, 55.9426363 -3.2453765, 55.9539415 -3.2061599, 55.9538842 -3.2068469, 55.9541878 -3.2062819, 55.9538990 -3.2065724, 55.9516793 -3.2103388, 55.9087093 -3.1294683, 55.9083658 -3.1302627, 55.9098947 -3.1298365, 55.9086482 -3.1320997, 55.9082094 -3.1281800, 55.9075358 -3.1316654, 55.9067683 -3.1280724, 55.9074133 -3.1295842, 55.9130531 -3.1377878, 55.9579855 -3.4144584, 55.9611738 -3.2007261, 55.9612899 -3.2007540, 55.9610369 -3.2004541, 55.9610414 -3.2006404, 55.9614051 -3.2007464, 55.9620034 -3.1995271, 55.9086030 -3.1535038, 55.9085760 -3.1545047, 55.9109349 -3.1528529, 55.9080474 -3.1628940, 55.9318731 -3.2975150, 55.9315469 -3.2965080, 55.9313921 -3.2957951, 55.9295984 -3.3000022, 55.9502297 -3.1939281, 55.9606510 -3.1948267, 55.9595489 -3.1922083, 55.9583786 -3.1909831, 55.9574599 -3.1920099, 55.9575352 -3.1909870, 55.9576821 -3.1905193, 55.9577536 -3.1902046, 55.9494095 -3.1864626, 55.9415305 -3.2096039, 55.9477482 -3.1983184, 55.9482088 -3.1927240, 55.9480798 -3.1929875, 55.9476449 -3.1962205, 55.9467112 -3.1954578, 55.9475963 -3.1940675, 55.9395772 -3.2053724, 55.9399587 -3.2058503, 55.9401754 -3.2051474, 55.9459124 -3.1915662, 55.9477804 -3.1928983, 55.9402430 -3.1727693, 55.9460773 -3.1915078, 55.9460762 -3.1916340, 55.9372942 -3.2112450, 55.9386346 -3.2107489, 55.9409866 -3.2107158, 55.9407779 -3.2120796, 55.9410206 -3.2114030, 55.9050910 -3.1343770, 55.9028429 -3.1648741, 55.9402022 -3.2097896, 55.9498358 -3.1944874, 55.9490749 -3.1954965, 55.9035412 -3.1821096, 55.9278308 -3.2029884, 55.9509187 -3.1896338, 55.9289340 -3.3850956, 55.9220620 -3.1790686, 55.9484660 -3.1908405, 55.9491359 -3.1879889, 55.9322908 -3.3840708, 55.9328840 -3.3853114, 55.9332462 -3.3859725, 55.9493593 -3.1850273, 55.9498809 -3.1852975, 55.9497910 -3.1868298, 55.9544757 -3.1956329, 55.9500589 -3.1853856, 55.9500722 -3.1849837, 55.9510336 -3.1857059, 55.9513675 -3.1810136, 55.9515036 -3.1804098, 55.9105025 -3.3235645, 55.9499189 -3.2133487, 55.9507176 -3.2116338, 55.9492178 -3.2148611, 55.9501659 -3.2128197, 55.9434309 -3.1997040, 55.9254373 -3.3071736, 55.9193931 -3.2787375, 55.9181911 -3.2782631, 55.9188677 -3.2805660, 55.9196291 -3.2799665, 55.9204553 -3.2780930, 55.9201801 -3.2782104, 55.9199010 -3.2768654, 55.9183106 -3.2760785, 55.9178305 -3.2802163, 55.9192966 -3.2811296, 55.9190402 -3.2822249, 55.9181350 -3.2823908, 55.9589084 -3.1973993, 55.9524851 -3.1785482, 55.9527783 -3.1777107, 55.9525789 -3.1786026, 55.9526096 -3.1778455, 55.9401132 -3.2035901, 55.9525625 -3.1763202, 55.9525134 -3.1760443, 55.9510367 -3.1792500, 55.9509261 -3.1791989, 55.9266569 -3.2906587, 55.9259672 -3.2906739, 55.9509562 -3.1793029, 55.9715612 -3.1511891, 55.9716128 -3.1531798, 55.9471723 -3.2950498, 55.9502335 -3.1832343, 55.9069836 -3.2745258, 55.9502544 -3.1792709, 55.9799828 -3.2336228, 55.9515884 -3.1767930, 55.9510805 -3.1774572, 55.9233418 -3.1754307, 55.9557050 -3.1593134, 55.9333835 -3.3060603, 55.9330851 -3.3055704, 55.9330382 -3.3063701, 55.9328514 -3.3048776, 55.9119048 -3.3162745, 55.9124396 -3.3164891, 55.9133755 -3.3158141, 55.9136037 -3.3151038, 55.9135778 -3.3145334, 55.9133853 -3.3144838, 55.9132252 -3.3140003, 55.9139806 -3.3144355, 55.9456742 -3.3672489, 55.9731731 -3.1669137, 55.9237564 -3.2987464, 55.9238278 -3.2979670, 55.9236823 -3.2992800, 55.9236244 -3.2983415, 55.9756413 -3.1693138, 55.9758911 -3.1692936, 55.9758604 -3.1697211, 55.9753361 -3.1696566, 55.9147293 -3.1511366, 55.9721048 -3.1685421, 55.9721151 -3.1680154, 55.9717652 -3.1690738, 55.9732515 -3.1673385, 55.9715681 -3.1606383, 55.9692273 -3.1671765, 55.9730053 -3.1675964, 55.9756268 -3.1775141, 55.9713870 -3.1706865, 55.9729528 -3.1695492, 55.9751541 -3.1650251, 55.9751577 -3.1653774, 55.9763527 -3.1666992, 55.9766234 -3.1668946, 55.9770520 -3.1688358, 55.9763420 -3.1688202, 55.9768312 -3.1689243, 55.9769477 -3.1679184, 55.9764831 -3.1675618, 55.9766276 -3.1674364, 55.9767630 -3.1679004, 55.9763615 -3.1673944, 55.9762132 -3.1674013, 55.9764423 -3.1672457, 55.9736969 -3.1671845, 55.9743212 -3.1625378, 55.9740795 -3.1632105, 55.9740620 -3.1630357, 55.9742799 -3.1619687, 55.9742593 -3.1633249, 55.9742318 -3.1635897, 55.9752231 -3.1690512, 55.9746912 -3.1702181, 55.9750377 -3.1689925, 55.9746574 -3.1700411, 55.9749450 -3.1691192, 55.9749017 -3.1700282, 55.9720281 -3.1737035, 55.9727889 -3.1744380, 55.9727346 -3.1745843, 55.9721351 -3.1736643, 55.9741171 -3.1730714, 55.9735318 -3.1745179, 55.9740812 -3.1745082, 55.9739348 -3.1746700, 55.9742013 -3.1746074, 55.9744262 -3.1756289, 55.9743317 -3.1760719, 55.9738875 -3.1759382, 55.9743689 -3.1762422, 55.9741727 -3.1757146, 55.9741963 -3.1758890, 55.9740011 -3.1760644, 55.9740555 -3.1757628, 55.9253013 -3.2894404, 55.9241260 -3.2892037, 55.9235279 -3.2886413, 55.9220176 -3.2971855, 55.9737812 -3.1727710, 55.9739374 -3.1725951, 55.9739122 -3.1731923, 55.9747248 -3.1723013, 55.9746745 -3.1725116, 55.9730956 -3.1719611, 55.9737461 -3.1722015, 55.9735419 -3.1722524, 55.9737264 -3.1720461, 55.9734307 -3.1722581, 55.9733652 -3.1721379, 55.9733894 -3.1719573, 55.9732022 -3.1719596, 55.9732758 -3.1714536, 55.9725117 -3.1719833, 55.9716033 -3.1728525, 55.9716849 -3.1726165, 55.9719508 -3.1722289, 55.9718987 -3.1720621, 55.9737219 -3.1688570, 55.9753470 -3.1700225, 55.9746740 -3.1690745, 55.9745309 -3.1710571, 55.9744986 -3.1695250, 55.9745046 -3.1693685, 55.9746944 -3.1711617, 55.9296471 -3.1268952, 55.9759364 -3.1724638, 55.9760026 -3.1723230, 55.9758148 -3.1719840, 55.9760071 -3.1718137, 55.9759688 -3.1720744, 55.9756249 -3.1743429, 55.9756742 -3.1728919, 55.9759854 -3.1781709, 55.9761643 -3.1779299, 55.9761354 -3.1781511, 55.9760579 -3.1783100, 55.9760423 -3.1778812, 55.9255664 -3.3019293, 55.9698130 -3.1731945, 55.9699565 -3.1730837, 55.9705998 -3.1732909, 55.9706602 -3.1735164, 55.9702099 -3.1728519, 55.9271865 -3.2341911, 55.9310749 -3.2221506, 55.9711024 -3.1772896, 55.9268830 -3.2763117, 55.9271895 -3.2761417, 55.9271728 -3.2756383, 55.9279132 -3.2756535, 55.9272315 -3.2766749, 55.9275662 -3.2754505, 55.9278192 -3.2762535, 55.9274993 -3.2760976, 55.9281311 -3.2753912, 55.9276010 -3.2764858, 55.9279687 -3.2767061, 55.9278777 -3.2077770, 55.9757705 -3.1780299, 55.9764497 -3.1747581, 55.9764285 -3.1750061, 55.9760114 -3.1763866, 55.9760220 -3.1765061, 55.9761360 -3.1764257, 55.9760874 -3.1762696, 55.9755129 -3.1738973, 55.9755844 -3.1736124, 55.9774064 -3.1721745, 55.9632772 -3.2726188, 55.9629194 -3.1995460, 55.9387964 -3.2425160, 55.9667316 -3.2750397, 55.9467940 -3.2000355, 55.9463600 -3.2048161, 55.9627785 -3.2719032, 55.9484157 -3.1843623, 55.9168200 -3.2801729, 55.9136608 -3.2855273, 55.9058151 -3.2866909, 55.9069125 -3.2880144, 55.9085376 -3.2562536, 55.9083352 -3.2474946, 55.9089070 -3.2469696, 55.9092054 -3.2459618, 55.9087682 -3.2488714, 55.9462175 -3.2043162, 55.9274716 -3.2133584, 55.9450678 -3.1988516, 55.9450152 -3.1980529, 55.9661572 -3.1681169, 55.9664871 -3.1685009, 55.9663445 -3.1681840, 55.9644310 -3.1603259, 55.9636971 -3.1582902, 55.9640184 -3.1583530, 55.9639604 -3.1562710, 55.9354449 -3.2070895, 55.9660102 -3.1564663, 55.9649786 -3.1578444, 55.9640880 -3.1607086, 55.9635246 -3.1598830, 55.9643177 -3.1570603, 55.9644348 -3.1572048, 55.9635131 -3.1593124, 55.9651742 -3.1579780, 55.9648238 -3.1569764, 55.9640156 -3.1598459, 55.9648546 -3.1583818, 55.9650608 -3.1582180, 55.9639268 -3.1597038, 55.9655369 -3.1578531, 55.9637202 -3.1592222, 55.9632267 -3.1646016, 55.9635614 -3.1638735, 55.9488330 -3.2333191, 55.9025628 -3.1543179, 55.9029778 -3.1538446, 55.9648135 -3.1613327, 55.9646694 -3.1605797, 55.9656875 -3.1590592, 55.9653266 -3.1608500, 55.9658325 -3.1590447, 55.9652094 -3.1594902, 55.9662270 -3.1588164, 55.9648285 -3.1618055, 55.9266095 -3.2113502, 55.9265774 -3.2116481, 55.9266981 -3.2114242, 55.9274468 -3.2082823, 55.9527993 -3.1990292, 55.9595083 -3.2012858, 55.9593429 -3.2019780, 55.9414040 -3.3607640, 55.9458862 -3.2282641, 55.9460186 -3.3611776, 55.9477676 -3.3639752, 55.9386846 -3.3602730, 55.9554241 -3.4034469, 55.9276210 -3.2086773, 55.9297710 -3.2113187, 55.9220647 -3.3393624, 55.9332730 -3.2373592, 55.9130578 -3.1471005, 55.9248096 -3.2521016, 55.9241906 -3.2508802, 55.9269392 -3.2273320, 55.9359730 -3.1044345, 55.9362577 -3.1054878, 55.9319382 -3.1053279, 55.9770253 -3.1708684, 55.9771899 -3.1708533, 55.9771055 -3.1707872, 55.9772737 -3.1711038, 55.9772794 -3.1703880, 55.9771431 -3.1704668, 55.8959106 -3.1916620, 55.9171514 -3.2798836, 55.9525077 -3.1383945, 55.9697308 -3.2065670, 55.9697551 -3.2060057, 55.9672808 -3.1926635, 55.9672710 -3.1923862, 55.9672179 -3.1927541, 55.9668788 -3.1921653, 55.9667564 -3.1929392, 55.9666328 -3.1919163, 55.9666359 -3.1914942, 55.9664922 -3.1915076, 55.9663968 -3.1912937, 55.9662737 -3.1911087, 55.9666782 -3.1941014, 55.9640543 -3.1923365, 55.9641163 -3.1921531, 55.9639890 -3.1925335, 55.9642623 -3.1920919, 55.9643383 -3.1919173, 55.9644156 -3.1917379, 55.9725017 -3.2722446, 55.9682031 -3.2835247, 55.9666711 -3.1946936, 55.9666595 -3.1949021, 55.9668535 -3.1948887, 55.9669288 -3.1944546, 55.9670557 -3.1945029, 55.9671998 -3.1946383, 55.9673311 -3.1948167, 55.9671329 -3.1949039, 55.9673919 -3.1946128, 55.9664712 -3.1948168, 55.9556184 -3.1896814, 55.9558570 -3.1890741, 55.9178498 -3.2909985, 55.9499500 -3.2408520, 55.9003478 -3.1765368, 55.8956110 -3.2605678, 55.9240890 -3.1742716, 55.9240746 -3.1731953, 55.9046289 -3.2061734, 55.9046775 -3.2010980, 55.9214034 -3.1403655, 55.9210442 -3.1331059, 55.9747779 -3.2066323, 55.9740399 -3.2059140, 55.9744886 -3.2044855, 55.9695776 -3.1843955, 55.9680028 -3.2346531, 55.9849730 -3.3815186, 55.9227433 -3.1869948, 55.9302228 -3.2672573, 55.9300830 -3.2679820, 55.9221651 -3.2360289, 55.9225751 -3.2356742, 55.9418770 -3.2953996, 55.9428914 -3.2930162, 55.9428729 -3.2937404, 55.9183449 -3.2729809, 55.9280013 -3.2977779, 55.9242251 -3.2929498, 55.9757076 -3.2990116, 55.9368335 -3.2788230, 55.9025267 -3.1551453, 55.9073286 -3.2483784, 55.9102386 -3.2219648, 55.9058182 -3.2215648, 55.9094971 -3.2220617, 55.9113910 -3.2196627, 55.9432151 -3.2230568, 55.9430076 -3.2229860, 55.8755084 -3.3099114, 55.9578595 -3.1898108, 55.9576323 -3.1912435, 55.9578040 -3.1896434, 55.9386615 -3.2390725, 55.9704306 -3.2477770, 55.9849691 -3.3866286, 55.9861474 -3.3953044, 55.9880856 -3.3973430, 55.9372716 -3.2001928, 55.9503291 -3.2226313, 55.9604580 -3.2900777, 55.9027210 -3.2393809, 55.9647922 -3.2859299, 55.9642704 -3.2852913, 55.9646737 -3.2850721, 55.9597396 -3.2880998, 55.9549526 -3.2875781, 55.9294742 -3.2537569, 55.9285589 -3.2717623, 55.9282407 -3.2714365, 55.9793478 -3.2770838, 55.9794872 -3.2770256, 55.9789135 -3.2819069, 55.9790144 -3.2819991, 55.9594878 -3.1871620, 55.9344502 -3.2209729, 55.9281916 -3.2054936, 55.9279155 -3.2074137, 55.9279507 -3.2070589, 55.9282680 -3.2054230, 55.9821284 -3.3971352, 55.9822429 -3.4003451, 55.9833030 -3.4003028, 55.9831421 -3.3990778, 55.9830914 -3.3982362, 55.9010162 -3.2493327, 55.9095314 -3.2284523, 55.9091958 -3.2283819, 55.9095373 -3.2269404, 55.9094412 -3.2262681, 55.9098190 -3.2247187, 55.9517219 -3.3490443, 55.9456982 -3.3733390, 55.9446148 -3.3754198, 55.9371113 -3.2388640, 55.9308123 -3.2225373, 55.9436134 -3.2678368, 55.9789651 -3.2338860, 55.9718369 -3.3043977, 55.9672312 -3.2394326, 55.9691367 -3.2785220, 55.9666992 -3.1908064 +A 5, A 656, B 37 +65 +no +55.9387357 -3.3996538, 55.9380963 -3.4051984, 55.9385221 -3.4040472, 55.9386848 -3.4052874, 55.9333966 -3.3543268, 55.9024677 -3.2131994, 55.9579939 -3.3233291, 55.9028966 -3.1642422, 55.9122291 -3.3948137, 55.8798835 -3.3439577, 55.9226406 -3.2094180, 55.9101467 -3.2093552, 55.9546676 -3.3637002, 55.9222410 -3.1492085, 55.9387885 -3.2890803, 55.8869268 -3.2813599, 55.9691744 -3.1898383, 55.9045439 -3.3952157, 55.9729762 -3.1721306 +2151 +1 +55.9259159 -3.2475077, 55.9454993 -3.1874399, 55.9282699 -3.1971794, 55.9163168 -3.3178016, 55.9526200 -3.1872149, 55.9456193 -3.2178696, 55.9311720 -3.2951988, 55.9089361 -3.3201414, 55.9085739 -3.3187295, 55.9117444 -3.3246249, 55.9114205 -3.3241848, 55.9438272 -3.2058255, 55.9502048 -3.1904658, 55.9502374 -3.1901476, 55.9319254 -3.2512353, 55.9173812 -3.3147110, 55.9122188 -3.3171913, 55.9220250 -3.1740037, 55.9222596 -3.1746208, 55.9214872 -3.3034840, 55.9122663 -3.3242829, 55.9095414 -3.2288680, 55.9335680 -3.1067948, 55.9375488 -3.3118506, 55.9475634 -3.3645665, 55.9463571 -3.2082808, 55.9524023 -3.1867211, 55.9522776 -3.1904447, 55.9274324 -3.1996630, 55.9140047 -3.2847797, 55.9274598 -3.3076072, 55.9276450 -3.3080783, 55.9240601 -3.2517049, 55.9258469 -3.1648168, 55.9446376 -3.1965778, 55.9444142 -3.1965059, 55.9421747 -3.1855648, 55.9412750 -3.1446800, 55.9331086 -3.1362248, 55.9221224 -3.1339138, 55.9223185 -3.1339297, 55.9225101 -3.1339536, 55.9443966 -3.1836641, 55.9219280 -3.1788973, 55.9440570 -3.0985717, 55.9466232 -3.1903104, 55.9484777 -3.1836947, 55.9222416 -3.1726200, 55.9877270 -3.4032457, 55.9444803 -3.2039362, 55.9128704 -3.1462314, 55.9523560 -3.1898764, 55.9501677 -3.1941355, 55.9224638 -3.1384787, 55.9136277 -3.2843172, 55.9298225 -3.2990436, 55.9112196 -3.2389868, 55.9229811 -3.1763698, 55.9230219 -3.1728013, 55.9632048 -3.1967376, 55.9343002 -3.1048832, 55.9679010 -3.2352863, 55.9558930 -3.1705907, 55.9116844 -3.3222899, 55.9119672 -3.3224414, 55.9239634 -3.1724671, 55.9220936 -3.1720186, 55.9294754 -3.2049102, 55.9220264 -3.1760991 +yes +1 +463 +de:Königstuhl (Odenwald) +46 +yes +2 +383 +55.9813666 -3.1776197, 55.9530393 -3.2012412, 55.9554511 -3.1887924, 55.9589390 -3.2120876, 55.9410478 -3.1808355, 55.9469052 -3.1861162, 55.9426840 -3.2210587, 55.9261476 -3.3062378 +49.4113938 8.7045200 +Thermes de Cluny +no +Folies Bergère, Théâtre des Champs-Elysées, Salle Pleyel, La Maroquinerie, Bouffon théâtre, Théâtre Douze, Opéra Bastille, Le Cabaret Sauvage, Théâtre National de l'Opéra Comique, Philharmonie 2, Cavae des Arènes de Lutèce +49.4270902 8.6483857 and 49.4278529 8.6465726 +51.9789657 8.5077171, 51.9839158 8.5145830, 52.0148098 8.5415843, 51.9930698 8.6117053, 51.9530548 8.6019656, 52.0051281 8.5264278, 51.9719056 8.4584900, 51.9862274 8.6330968, 51.9832360 8.5011688, 51.9489161 8.5784781, 52.0005000 8.5830563, 51.9922699 8.5821902, 51.9986701 8.5845091, 52.0111171 8.6060838, 52.0110252 8.6075822, 51.9526831 8.5894518, 51.9914877 8.4790051, 51.9478258 8.5866769, 51.9845111 8.5016418, 52.0137803 8.5492099, 51.9847361 8.4854709, 51.9859050 8.4877428, 51.9971967 8.5057650, 51.9934233 8.5091802, 52.0119814 8.5542137, 51.9475967 8.5920756, 51.9289095 8.5529507, 52.0113082 8.5270214, 52.0107287 8.5202197, 52.0094113 8.5265262, 52.0037833 8.5215969, 52.0065591 8.5759589, 51.9891284 8.5001010, 51.9846427 8.5287592, 51.9854958 8.5280680, 51.9843934 8.5268438, 51.9417125 8.5793602, 51.9423426 8.5802746, 51.9600857 8.5281274, 52.0045344 8.5226673, 51.9609763 8.5280751, 52.0048839 8.5221348, 52.0147217 8.5248646, 51.9499358 8.5003082, 51.9568591 8.5479920, 52.0024451 8.5653246, 51.9406388 8.5114804, 52.0017368 8.5684745, 52.0018299 8.5675837, 52.0020334 8.5669169, 51.9906984 8.5078615, 51.9570094 8.5337027, 51.9681157 8.5499373, 52.0005457 8.5605587, 51.9963039 8.4716935, 51.9888194 8.5112622, 51.9568731 8.5465415, 51.9333689 8.5654391, 52.0112149 8.5297888, 52.0013439 8.5671531, 52.0008115 8.5610395, 52.0104876 8.6080033, 52.0065198 8.5259435, 51.9839311 8.5003401, 51.9932306 8.6111247, 51.9567876 8.5472991, 51.9837555 8.5001033, 52.0111837 8.5268995, 52.0106909 8.5203429, 51.9527696 8.6018036, 51.9528793 8.5894680, 51.9717369 8.4582094, 51.9484298 8.5873772, 51.9487421 8.5784654, 51.9923909 8.5822547, 51.9863326 8.6322964, 52.0010559 8.5831633, 51.9990577 8.5845337, 52.0137807 8.5496365, 51.9847954 8.4859472, 51.9861104 8.4873591, 51.9972310 8.5062078, 51.9931065 8.5094547, 52.0114804 8.5539410, 51.9914510 8.4802500, 51.9415031 8.5795673, 52.0051548 8.5262133, 52.0039093 8.5212500, 51.9898013 8.5008912, 51.9847292 8.5279812, 51.9842005 8.5139759, 51.9789415 8.5070326, 52.0047086 8.5224081, 51.9603119 8.5285761, 51.9475733 8.5919114, 51.9502642 8.5005356, 51.9568818 8.5332831, 51.9402691 8.5119328, 51.9960941 8.4716263, 51.9884382 8.5106798, 51.9487080 8.5862850, 51.9493095 8.5874506, 51.9483907 8.5883941, 51.9478782 8.5876688, 51.9478908 8.5859766, 51.9482758 8.5858662, 51.9474419 8.5860889, 51.9475824 8.5870706, 52.0104310 8.6074498, 51.9680531 8.5506649, 51.9862135 8.6337019, 51.9926177 8.6119379, 51.9285763 8.5528956 +49.4163242 8.6709589, 49.3982405 8.6891686, 49.4154939 8.6674299, 49.3984918 8.6889404, 49.4197235 8.6766060, 49.4347006 8.6819337, 49.4275117 8.6831905, 49.4189698 8.6760286, 49.4163577 8.6686492, 49.4179060 8.6686309, 49.4174626 8.6687152, 49.4136878 8.6671227, 49.4136571 8.6671084, 49.4140866 8.6673605, 49.4128068 8.6670431, 49.4157404 8.6712736, 49.4134424 8.6679610, 49.4165443 8.6709680, 49.4134657 8.6678164, 49.4125591 8.6685224, 49.4147825 8.7194810, 49.4047830 8.6748233, 49.4081724 8.6765377, 49.3736369 8.6882014, 49.4105563 8.7059593, 49.4107724 8.7039613, 49.4072240 8.6872972, 49.4075178 8.6824857, 49.4111078 8.7122962, 49.4229888 8.6430964, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349, 49.4035624 8.6765204, 49.4161640 8.6686617, 49.4149163 8.6654747, 49.4150320 8.7620828, 49.3999783 8.6914430, 49.3659380 8.6888680, 49.4045857 8.6750253, 49.4061766 8.6754688, 49.4103125 8.7748332, 49.4235022 8.6459331, 49.4096671 8.7744209, 49.4097801 8.7743109, 49.4129558 8.6762878, 49.4183219 8.7276907, 49.3766684 8.6475292, 49.4160242 8.6602643 +2 +10 +55.9849796 -3.1929699 +567.8, 446, 481, 496, 480, 376, 375.5, 439.9, 486.9, 449, 539, 296, 258.7 +yes +11 and 49.4045230 8.6499732, 49.4076413 8.6872936, 49.4112725 8.7119074, 49.4257744 8.6577657, 49.4131782 8.7072377, 49.4007776 8.6911061, 49.3744103 8.7047986, 49.3699337 8.6542672, 49.4252823 8.6480351, 49.4190959 8.6518895, 49.3780880 8.6666402 +yes +663 +4 +Cameo Picturehouse, Filmhouse, Cineworld, Vue Cinema, Vue +C.E.R. Pasteur, École de conduite Lamartine, ECF, ECF Trinité, Cluny - Saint-Germain and 01.43.26.42.42, C.E.R. Brancion and 01.48.28.03.78, Permis Malin, Auto école Place de Rungis, Auto Moto École Alésia, Matt's Auto Ecole, Caser formations, École de conduite Saint-Charles, Auto-École, ecf, La Réussite, Tour Eiffel Permis +0.75472968250310635 +48.460916044007355 +21 +48.8407193 2.3049672, 48.8400915 2.3026528 +The Salisbury +yes +9 +55.9820970 -3.4001038 +48.8517580 2.3565980, 48.8435991 2.3495369, 48.8443095 2.3492103, 48.8530106 2.3457721, 48.8532232 2.3449207, 48.8396212 2.3497285, 48.8543470 2.3717003, 48.8692308 2.2856346, 48.8815762 2.3163770 +no +997 +365 +CitéCréation, Association du Demi-Millenaire - Les elephants heureux, Guillaume Bottazzi, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation & François Schuiten, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, Mur'Art, CitéCréation, CitéCréation, CitéCréation, Mur'Art, CitéCréation, CitéCréation, CitéCréation, Association du Demi-Millenaire - Les elephants heureux, Association du Demi-Millenaire - Les elephants heureux, Association du Demi-Millenaire - Les elephants heureux, Association du Demi-Millenaire - Les elephants heureux, Association du Demi-Millenaire - Les elephants heureux, CitéCréation, CitéCréation, Franck Margerin/Mur'Art, Mur'Art, Loustal/Mur'Art, Mur'Art, 7e-sens, Gérard Gasquet, CitéCréation, CitéCréation, CitéCréation, CitéCréation, 7e-sens, CitéCréation, CitéCréation, 7e-sens, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, Daniel Tomassi, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, 7e-sens, Guillaume Bottazzi, CitéCréation, CitéCréation, CitéCréation, Kaley Begal, Kaley Begal, CitéCréation, CitéCréation, 7e-sens, Tepito Arte Acà, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, Fernando Veliz (SARL BACT), Mur'Art, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation, CitéCréation +48.8639483 2.3316516 +32 +108 +0.52731944704845524 +no +Camping Heidelberg +48.8307176 2.3336597 +13 +1899, 1884, 1887, 1877, 1879, 1872, 1873, 1893, 1882, 1880, 1883, 1881, 1897, 1875, 1908, 1920, 1904, 1912, 1910, 1897, 1873, 1882, 1906, 1929, 1864, 1893, 1870, 1886, 1910, 1919, 1919, 1920, 1911, 1916, 1914, 1939, 1877, 1920, 1884, 1923, 1926, 1925, 1868, 1895, 1885, 1877, 1887, 1893, 1863, 1927, 1910, 1900, 1924, 1894, 1871, 1873, 1868, 1863, 1907, 1920, 1899, 1909, 1884, 1913, 1907, 1911, 1867, 1877, 1903, 1872, 1868, 1925, 1926, 1903, 1922, 1923, 1880, 1868, 1908, 1903, 1905, 1924, 1923 +55.9500318 -3.3725551, 56.4397000 -3.3723000, 56.1852392 -3.2168273, 56.0008488 -2.7353237, 56.3678531 -3.8722739, 55.6793586 -4.1089435, 56.2691557 -2.7508106, 55.5400331 -2.7427099, 55.7075978 -2.3785037, 55.8754852 -3.4026956, 56.3755858 -2.8613886, 55.9743079 -3.9759388, 55.6773034 -2.6087495 +55.9508780 -3.2095210 +Kita Tangstedter Landstraße and 53.6560283 10.0207226 +yes +49.3826654 8.6703241, 49.4005745 8.6876324, 49.4018281 8.6889374, 49.4018800 8.6877769, 49.4018302 8.6889341, 49.4013098 8.6912411, 49.4005742 8.6876324, 49.4005743 8.6876329, 49.4013099 8.6912408, 49.4018301 8.6889373, 49.4005745 8.6876329, 49.4018280 8.6889343, 49.4034414 8.6858831, 49.4033425 8.6920344, 49.4034077 8.6864942, 49.4053236 8.6938605, 49.4033423 8.6920342, 49.4034078 8.6864940, 49.4034077 8.6864940, 49.4034078 8.6864942, 49.4033423 8.6920344, 49.3795039 8.6788777, 49.3994731 8.6498961, 49.3832632 8.6902896, 49.3795039 8.6788791, 49.3795039 8.6788799, 49.3832635 8.6902896, 49.3795039 8.6788784, 49.3795039 8.6788807 +yes +49.3967232 8.6719507, 49.4081527 8.6735594, 49.4176558 8.6587085, 49.4165055 8.6594547, 49.4148711 8.6635210, 49.4045230 8.6499732, 49.4042523 8.6482760, 49.4005255 8.6416909, 49.4077166 8.6770507, 49.4076619 8.6829409, 49.4091366 8.6592347, 49.3876769 8.6645282, 49.3915440 8.6790012, 49.3793134 8.6732898, 49.4258813 8.6617121, 49.4306151 8.6467040, 49.3864285 8.6696286, 49.3773672 8.6667238, 49.3834643 8.6624283, 49.4257744 8.6577657, 49.3974421 8.6480834, 49.4076691 8.6751190, 49.4131305 8.6546204, 49.4140289 8.6610942, 49.4178759 8.6766696, 49.4213757 8.6586938, 49.4081055 8.6756660, 49.4038715 8.6762894, 49.4054553 8.6752473, 49.4382046 8.6794526, 49.4373993 8.6752453, 49.3975120 8.6522670, 49.4084511 8.6746131, 49.4061961 8.6789422, 49.4278664 8.6462916, 49.4068117 8.6707467, 49.4066118 8.6751595, 49.3699337 8.6542672, 49.4252823 8.6480351, 49.4190959 8.6518895, 49.4234431 8.6469231, 49.4177824 8.6425471, 49.3836445 8.6785428, 49.4225893 8.6725966, 49.4156100 8.6707017, 49.4162564 8.6598696, 49.4071975 8.6762084, 49.3931903 8.6817010, 49.3801022 8.6812091, 49.3759036 8.6766890, 49.4096282 8.6811489, 49.4147851 8.6501119, 49.4016680 8.6740567, 49.3632402 8.6222259, 49.3772275 8.6672364, 49.3799233 8.6752091, 49.4317284 8.6827286, 49.3930474 8.6832081, 49.3998558 8.6384200, 49.3780880 8.6666402, 49.3791746 8.6705116, 49.4141167 8.6710146, 49.4162402 8.6597540 +37 +231 +55.9518191 -3.1796232 +0.71981941894613155 +144 and 55.8940463 -3.3482149, 55.9067356 -3.2765428, 55.9112129 -3.2971404, 55.8921896 -3.3904545, 55.8928744 -3.3831777, 55.9075085 -3.2601250, 55.9012534 -3.3172353, 55.9052885 -3.3120708, 55.8956436 -3.3085216, 55.8966106 -3.3015427, 55.9064620 -3.2745346, 55.9030149 -3.2833882, 55.8985834 -3.2593352, 55.8958844 -3.3085762, 55.8889910 -3.2764883, 55.8905325 -3.2746290, 55.8994958 -3.2311293, 55.9100179 -3.2804925, 55.9101035 -3.2803751, 55.9057184 -3.2756582, 55.9057613 -3.2755133, 55.9062552 -3.2686221, 55.9060898 -3.2635348, 55.9033690 -3.2736040, 55.9034122 -3.2734109, 55.9003911 -3.2685569, 55.8897636 -3.1620915, 55.8898633 -3.1619972, 55.8928258 -3.1331472, 55.8929168 -3.1332421, 55.8984427 -3.2164902, 55.9073294 -3.2601223, 55.9003036 -3.2919693, 55.8916943 -3.3211093, 55.8957961 -3.2027554, 55.8860732 -3.3399261, 55.9027043 -3.2317298, 55.9048951 -3.2401465, 55.8983131 -3.2529409, 55.8982152 -3.2529759, 55.8968064 -3.2617298, 55.8927797 -3.2635293, 55.8657294 -3.3178967, 55.8561743 -3.3367895, 55.9004339 -3.3188436, 55.8988106 -3.1122530, 55.8957294 -3.2025668, 55.8771374 -3.3287515, 55.8866544 -3.3374530, 55.8858646 -3.3375740, 55.9091868 -3.3220855, 55.9082024 -3.1450986, 55.8985472 -3.2526169, 55.8936687 -3.1341152, 55.9062132 -3.1443033, 55.8918723 -3.2994420, 55.9082492 -3.2565595, 55.8948439 -3.2697613, 55.9038948 -3.2819499, 55.9003484 -3.3188428, 55.9004475 -3.3189882, 55.9028769 -3.1704602, 55.8943851 -3.1612131, 55.8964053 -3.3181888, 55.8993738 -3.2946840, 55.8985456 -3.2961976, 55.9093972 -3.2356124, 55.9024335 -3.2486536, 55.9010141 -3.3189125, 55.8986285 -3.2991643, 55.8584472 -3.4177884, 55.8702054 -3.3876295, 55.8969285 -3.3180149, 55.8832914 -3.3373677, 55.8818349 -3.3087404, 55.8896276 -3.3196792, 55.8919785 -3.3134755, 55.8968552 -3.3020135, 55.8927414 -3.3143917, 55.8947508 -3.3012201, 55.8841696 -3.3364601, 55.8807381 -3.3368118, 55.8774138 -3.3755830, 55.9054895 -3.3795410, 55.9018295 -3.3897743, 55.9082028 -3.1062073, 55.9064191 -3.2363051, 55.9089283 -3.2357059, 55.9026053 -3.2453772, 55.8840219 -3.3327174, 55.8909456 -3.2977491, 55.8722326 -3.3121904, 55.9044032 -3.1455205, 55.8975112 -3.2712979, 55.8974642 -3.2720985, 55.8956840 -3.2110087, 55.8948418 -3.2158308, 55.8946710 -3.2156575, 55.8949531 -3.2113167, 55.8939386 -3.2155602, 55.8951467 -3.2161873, 55.8948458 -3.2116936, 55.8951646 -3.2111469, 55.8906180 -3.2303624, 55.8924010 -3.2267274, 55.8934535 -3.2249209, 55.8904695 -3.2299954, 55.9025541 -3.1224669, 55.9013948 -3.1244584, 55.8988473 -3.1283552, 55.8895017 -3.2960696, 55.9103957 -3.3006028, 55.8939577 -3.3715831, 55.8976952 -3.3414516, 55.9008399 -3.3235718, 55.9021353 -3.2501935, 55.8942654 -3.1626324, 55.9038648 -3.1462199, 55.8923325 -3.3903179, 55.8924135 -3.3902631, 55.9074964 -3.1559715, 55.9071592 -3.1590133, 55.8988194 -3.1121826, 55.9025795 -3.1224539, 55.8923592 -3.3903273, 55.9104224 -3.3006131, 55.9112386 -3.2971527, 55.8677512 -3.3773434, 55.9065005 -3.3281414, 55.9056819 -3.2628992, 55.8500623 -3.3571912, 55.9068688 -3.1616681, 55.9070854 -3.1607388, 55.9054631 -3.1633904, 55.8954601 -3.2603374, 55.8937125 -3.1750539, 55.8877124 -3.2768935, 55.8882817 -3.2766465, 55.8872753 -3.2773139, 55.8857647 -3.2795706, 55.9111933 -3.3341452, 55.8994136 -3.2944987, 55.9104811 -3.1489302, 55.9024101 -3.2496156 +yes +no +yes +no +12 +55.9441247 -3.1693385, 55.9234303 -3.3976554, 55.9805593 -3.1963430, 55.9721507 -3.1841393 +Babalou and 48.8864168 2.3442029 +no +11.629471910596305 +60 +no +Backstube +67 +48.8379931 2.3270595, 48.8184662 2.3501586, 48.8224797 2.3195383, 48.8611385 2.3941583, 48.8875758 2.3303180, 48.8413274 2.2797801, 48.8384087 2.2847485, 48.8370749 2.4110506, 48.8749148 2.4002404, 48.8979156 2.3166483, 48.8890374 2.3392767, 48.8327412 2.3975487, 48.8256492 2.4145211, 48.8607252 2.4037124, 48.8624937 2.2850289, 48.8410409 2.2593377, 48.8866268 2.3732545, 48.8439975 2.4003952, 48.8301712 2.3992796, 48.8868716 2.3419216, 48.8192381 2.4359906, 48.8848404 2.3887566 +11 and Le B.H.V., Les Brassins de Saint-Malo, Le Ziggy, Brasserie An Alarc'h, Bosco, Le Korrigan, Le Petit Refuge, Brasserie Artisanale "D'istribilh", Philomenn - Brasserie Artisanale, Bar de la Place +48.8643016 2.3480523, 48.8559492 2.3460263, 48.8427637 2.4358888, 48.8614768 2.3351677, 48.8535257 2.3588770, 48.8717374 2.2472517, 48.8646130 2.2375033, 48.8189926 2.4540521, 48.8485531 2.3371422, 48.8614768 2.3351677 +49.4236325 8.6489134 +162, 251, 164, 493, 238, 146, 157, 454, 318, 252, 175, 208, 178, 478, 178, 118, 278, 103, 237, 82, 158, 155, 162, 362 +yes +yes +78 +22 +yes +Hope Cottage Nursery School, Little City Nursery, City Nursery, Little Monkeys Nursery, Colinton Private Nursery, Rainbow Kindergarten, Molly's Nursery, Heriot Hill Nursery, Strawberry Hill Nursery, Bruntsfield Nursery, Busy Bees Nursery, Childcair @ Quartermile, The Edinburgh Nursery, Annandale Nursery, The Edinburgh Nursery, High School Yards Nursery, Melville Street Nursery, Jigsaw Childcare, The Orchard Nursery, Grange Loan Nursery, Suffolk House Nursery, Mr. Squirrel's Nursery, Little Monkeys, Pinocchio's, Cherrytrees Children's Nursrey, Busy Bees Day Nursery, St Leonard's Nursery School, Queensferry Early Years Centre, Little Voices Nursery, Carrick Knowe Primary, Forbes Childrens Nursery, Baby Rainbow, Childsplay, Playdays, Chapter One Childcare, Forbes Childrens Nursery, Greenhill Montessori Nursery, Grassmarket Nursery, Kidzcare, Cameron House Nursery School, Priestfield House Nursery, Kirkliston Nursery, Start Bright Nursery, Mother Goose Nursery, Arcadia, Cherrytrees Children's Nursrey, Elsie Inglis Nursery and Preschool, Tower House Nursery, Headstart Nursery, Nippers Nursery, Granton Early Years Centre, Stanwell Nursery, Crewe Road Nursery +59.3356988 18.0572596, 55.7638070 12.5348349, 51.1988497 -0.5342359, 52.6311727 -0.8233218, 40.6274745 22.9642814, 57.7886601 14.2277485, 51.5118054 -0.1021253, 60.1653809 24.9636108, 41.3108319 -95.9575181, -33.5824431 150.2445219, 60.3982731 10.5528297, -25.9698346 27.8650808, -25.9736400 27.8652600, -26.0372900 27.8920900, -25.5044540 28.4463922, -25.5217903 28.4282069, 52.7297337 -1.7987491, 52.3921189 0.6446952, 60.4168236 10.5125908, 54.3574707 -4.4222233, 40.3445325 -74.7166957, 54.0949262 -2.1869584, 33.4292336 -117.0890142, 52.2390617 4.4259286, -1.1207050 36.6765400, 52.0434273 6.1094665, 53.4243480 -1.2369997, 52.2416377 -3.3837185, 13.0223265 77.6505234, 51.3734965 7.3837571, 51.5377627 -0.0987235, 46.9461052 7.4345097, -25.8882350 28.4032087, 36.6189649 -121.9377447, 51.6272318 -0.1526823, 59.3296876 18.0561655, 48.8612999 2.3312271, 22.4872923 113.9063327, 0.4348980 9.4542956, 0.4332887 9.4532657, -36.7922877 -73.0723960, -33.8241390 25.6422760, -36.8076314 -72.9744860, 51.0492654 -114.0687164, 53.4644562 -113.4849704, 52.0820770 5.2395870, 55.9723943 13.7717262, 14.6322596 121.0847721, 18.8780929 99.2179229, 33.7856197 -84.3950197, 48.8425065 2.3895916, 41.3708184 2.1818409, 59.3306154 18.0638767, 43.6116062 3.8801404, 52.0480425 5.2986160, 50.1411972 5.1633192, 40.1051475 116.0943249, -29.6281166 27.5059682, 44.4077969 8.9198362, 6.3385520 99.7286933, 55.8272092 10.0150026, 35.6709511 139.7528418, 43.4617477 11.8777645, 35.4639657 133.0622134, 60.1916806 24.8729332, 59.9156701 10.7514655, 49.3696904 8.0805295, 59.2282914 10.3647684, 37.7681571 -122.3929293, 45.6425730 4.2317607, 40.0937331 -88.2370639, -26.1332248 28.0684748, 51.4370173 0.2709137, 47.5997379 7.5311477, 18.7635409 98.8693716, 45.0291895 7.6875027, 1.1384088 34.1500964, 45.4633748 9.2022340, 52.1526385 5.4503104, 52.9514453 -1.1497301, 48.1048971 -1.6752098, 60.0211116 17.5846046, 42.6843773 2.8987538, 42.6830084 2.8989583, 42.6831750 2.8991283, 42.6833867 2.8997987, 42.6838436 2.8996083, 42.6839755 2.8981637, 59.9146603 10.7395603, 12.0428761 -86.2572275, -12.4374871 -37.9198476, -12.4394027 -37.9212898, 44.6493046 -84.6872466, 44.2651700 -84.6999401, 44.6702932 -84.6078029, 48.1311730 11.5848875, -28.1036427 153.3228934, -23.1571671 -45.7923618, 48.7277620 0.8407551, 50.0068548 8.2698130, 48.7832568 10.1007160, 49.6310598 8.3559793, 51.5268630 -0.0974463, 52.5338656 1.7346562, 53.8902977 27.5689764, 51.4105437 5.4571347, 52.4814698 13.3564393, 45.1687263 -79.6411279, 52.9596262 -1.1231071, 52.9855563 -1.1988849, 52.4878930 -1.9128467, 45.4784090 9.1891590, 51.5006729 -0.0148631, 59.6755560 11.2175238, 39.3256707 -94.1946833, 50.0379117 14.4941391, 53.3432042 -6.2682875, 53.3431823 -6.2657605, 35.6467344 140.0366765, 43.6855190 -79.6652268, 48.8240719 2.3723725, 41.7205644 13.6127097, 41.5882626 -93.6359001, 24.1775046 120.5988287, 52.0787662 4.3095932, 52.0784371 4.3501577, 52.5209610 13.4382144, 52.3725325 13.6959077, 16.7992778 96.1357987, 43.6236015 -79.5667674, 51.3378931 6.8688596, 35.4465814 -97.4206418, 40.9884602 28.8301949, -29.1603757 -67.4933882, 45.4685497 9.1936673, 48.8951417 2.3868255, 49.0196129 12.1016881, 47.5039665 8.7285057, 48.9383150 8.4183777, 51.5242000 3.6878000, 50.7820762 6.0918977, 51.5081277 0.0287502, 52.5206801 13.4164506, 51.0587168 13.7314100, 51.4958705 7.4569459, 37.3289376 -121.8887761, 37.3285060 -121.8872828, 37.7830851 -122.4040729, 50.8644871 6.0929143, 45.5282825 -122.6632279, 51.2010221 6.7234794, 55.9399107 -3.1697157, 37.4043670 -121.9750903, 47.0579581 15.4486293, 28.0695883 -16.7269207, 61.2178485 -149.8925293, 52.9425202 -1.1732481, 51.3489624 12.3708422, 43.0717386 -89.3802453, 52.0635867 8.3470799, 48.1658968 12.8300894, 52.1970115 5.1638507, 32.2186003 -110.9749173, 48.6632649 6.1906747, 39.6341635 -75.6368097, 43.9942727 12.6723701, 50.8997921 -0.3589563, 52.2070835 5.9979315, 45.5504406 -73.7472946, 48.8914355 2.2131393, 48.8540260 2.2884911, 52.3430146 4.8886837, 52.0862874 5.2821980, 41.0481924 28.9902287, 45.8837885 10.8456312, 52.9039840 -1.4481166, 45.4569449 4.3920117, 45.4281060 4.4030509, 43.6575563 6.9208252, 33.8839367 -84.4662480, 43.4748447 -80.4527762, 33.7572706 -117.4963818, 51.4219396 -0.8883544, -35.2441015 149.1214930, 8.9896160 -79.4999696, 47.6698833 8.9503766, 52.4951997 -1.9179209, 51.8933398 -2.0872818, 32.2824371 -106.7624578, 51.5173536 -0.1539529, 49.0259335 11.5030229, 49.7602091 8.6523858, 45.7772376 4.8598436, 47.2127477 -1.5436017, 48.6226649 8.6437080, 43.2865250 5.6038585, 51.0455374 -114.0614342, 36.8059219 10.1867723, 32.7553947 -97.0818262, 37.4034488 -5.9315985, 27.9449035 34.3631156, 7.0017821 100.5051788, 51.2729873 -2.4153227, 43.6112641 1.4343458, 0.3176197 32.5864752, 47.2275535 11.4114059, 37.7838821 -122.4012113, -36.7924028 -73.0719899, 45.5641207 5.9268421, 45.5638661 5.9266919, 59.9154973 10.7497562, 51.1200089 4.3142183, -27.2417820 153.1084825, 30.1819664 120.1451672, 54.2083565 -4.6326482, 52.3728617 13.6961740, 44.5142170 6.5500875, 51.5081090 0.0330947, 52.2836497 0.3255828, 51.8929438 10.3972253, 53.5687015 -113.4573109, 43.7241247 -79.3706596, 46.6361586 14.1399808, 31.6246498 -8.0136591, 46.6871240 15.9871800, 45.6396830 12.5649186, 60.4740857 25.0932481, 53.0274565 -1.5043101, 47.7113924 13.6188273, 47.6696320 8.9510280, 51.3854958 7.3948352, -25.4336167 -49.2682105, 33.3540583 -105.6626733, 51.2119671 5.2074390, 50.8039856 4.2059294, 50.7067824 8.6937110, 46.5232016 6.5646472, 42.8902171 20.8651774, 46.0050766 8.9563519, 49.4076875 8.4075426, 25.3223401 51.4373732, 55.9456285 -3.2040795, 43.2866114 5.6031736, 50.6276457 3.4112961, 50.1330205 11.0008211, 42.2228690 -8.6381218, 43.7249000 -79.3737811, 43.8454936 10.5114559, 46.9838898 16.1158613, 51.6425345 -1.2749190, 51.0227517 3.7016434, 1.3352999 103.9602027, 43.8419066 10.5068044, 1.3637320 104.0236166, 26.2302635 50.5422308, 3.4249809 101.7939076, 52.4515563 9.1553374, 50.6264398 9.4519501, 53.7909661 -1.5314127, 43.5712110 -89.7689597, 43.8430228 10.5062261, 44.2780625 12.3331217, -38.1514784 144.3839566, 52.1018237 -2.3168913, 55.7023385 12.5352741, 18.8277713 98.9595952, 53.7709250 -2.6270264, 22.1464637 113.5590186, 22.1450637 113.5590064, 52.5122561 -1.9793860, 13.7219070 100.2610199, 51.3721520 -0.1011530, 35.1944610 -111.6538618, 43.0435928 -76.1482253, 32.7428228 -16.7094796, 32.7426376 -16.7098594, 1.4617810 103.7616537, 41.8667630 -87.6458041, 44.8092119 20.4320947, -23.5156239 -46.6388650, -23.5159274 -46.6404327, 53.7980540 -1.5276318, 51.1326154 4.3830117, -21.1845921 -47.8087384, -23.2193312 -45.8953871, 34.2656905 -117.1869748, 12.9998011 77.6863474, 43.0848995 -73.7832565, 50.8120337 6.8139165, 34.8522920 -82.3542251, -21.2089012 -47.7908881, 48.4426101 -122.3366865, 51.7634647 -1.2574415, 51.6726747 7.2062735, 21.3742698 -157.7938111, 64.3355852 19.5013680, 55.0228629 -1.6195178, 49.0240602 -122.3813390, 42.0973891 1.8409185, -25.9346710 32.4385640, 50.3215404 11.9102409, 52.9741827 -1.2465491, 40.5768937 -124.1540170, 36.0289211 -79.0148043, 52.9836462 16.9939915, 41.9161023 -74.0140519, -26.2995283 -48.8810522, 41.0463397 28.9892899, 52.2038131 5.2460172, 59.8535215 18.9417831, 52.2488344 6.8886745, 53.4091285 -2.9409488, 51.4461904 3.5826828, 51.5270192 -0.1287757, 52.0906808 6.1647480, 36.5246042 29.1292413, 52.4932275 4.7665254, 35.8874846 14.4717793, 37.7839060 -122.4000858, 45.8596631 11.3454927, 39.8189283 4.2830955, 43.8425928 10.5109493, 47.3983525 11.9474829, 60.3985527 18.1821464, -34.2428550 150.5713381, 45.2656060 5.8758270, 48.8083557 9.2235469, 52.9818949 11.6823931, 52.2734023 -2.1295646, 48.6877060 6.1769675, 55.9342711 -3.2002018, 32.7267318 -114.6204317, 51.0123916 6.9812488, 50.4569976 3.9414053, 43.8256935 -89.0148705, 50.8120057 6.8145957, 44.9726382 -89.6592015, 45.9121984 14.5438188, -22.9777399 -43.4109664, 47.6596737 -122.2852483, 39.7640719 -86.1643866, 50.7931283 4.2345618, 30.3277643 -81.6721251, 33.8662733 -7.0574761, 51.7910841 11.1429510, 32.1054217 34.8085617, 29.6671607 -98.4024525, 36.4792678 2.8341770, 59.3327085 18.1020541, -25.4298028 -49.2740275, 48.7768911 8.7258031, -27.4480918 -59.0217650, 31.6861230 -7.9721599, 35.5729538 -77.3911220, 43.8410075 10.5004529, 25.0689108 -77.3996323, 25.0695310 -77.3994748, 42.7060055 -87.7858830, 18.0428226 -77.5117776, 16.8751805 96.1291755, 49.0365112 -122.2276720, 25.0149966 -77.3894457, 34.0712618 49.7374932, 59.3009851 18.4558896, 25.0476740 -77.3154966, 41.3894721 2.1369502, 36.7644356 3.4768933, 0.3316538 6.7405178, 51.5558602 -0.1159961, -26.6701665 153.1028256, 50.2851743 5.0818999, 43.6454624 -79.6870219, 48.3632670 16.7019735, 48.4215912 -123.3667972, 56.0219096 14.1585444, 48.0044602 11.1518218, 52.5170902 13.4499544, 40.9862378 28.8318675, 37.2296151 -80.4294715, 41.8373707 12.4687877, 52.0850418 5.1032874, 35.1651367 33.9057313, 52.4755120 13.4601045, 43.0570121 141.3886728 +yes +yes +722 +18 +76 +243 +5 +410.44509447032607 +Spitaki, My Big Fat Greek Kitchen +yes +swimming pool +yes +362 +49.4296874 8.6826637, 49.4278935 8.6837354, 49.4147764 8.6710359, 49.4278053 8.7495282, 49.4178891 8.7605933, 49.3974030 8.6486853, 49.3977437 8.6485764, 49.4045638 8.6759283, 49.4075919 8.6845735, 49.4092752 8.6923105, 49.4084767 8.6927500, 49.4078943 8.6929172, 49.4082491 8.6928194, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4015990 8.6856698, 49.4158218 8.6922416, 49.4072954 8.6910173, 49.4082662 8.6915918, 49.3808049 8.6889505, 49.3746833 8.6826514, 49.3656861 8.7051775, 49.3743033 8.7032524, 49.3747286 8.7033441, 49.3743933 8.7035372, 49.4103403 8.6975369, 49.4165191 8.6921856, 49.3790412 8.6689354, 49.3792964 8.6699345, 49.4048779 8.6827341, 49.4120923 8.7117858, 49.4151801 8.6903524, 49.4071068 8.6898761, 49.4108200 8.6918918, 49.4227158 8.6483350, 49.3840770 8.6710133, 49.4160126 8.6922256, 49.4278746 8.6871277, 49.4277708 8.6843289, 49.3809325 8.6701888, 49.3795527 8.6902336, 49.4101101 8.6935285, 49.4080641 8.6904292, 49.4168755 8.6790034, 49.3992315 8.6710140, 49.4283321 8.6836841, 49.3804723 8.6884268, 49.3807734 8.6884609, 49.4228152 8.6504004, 49.4082494 8.6913249, 49.4060965 8.6874091, 49.4081205 8.6928550, 49.4114742 8.7040324, 49.4207600 8.7562394, 49.4278253 8.6839436, 49.4278064 8.7495089 +no +49 +29 +48.8758196 2.3557131, 48.8730354 2.3533915, 48.8569549 2.3497208, 48.8562998 2.3535246, 48.8414636 2.2996634, 48.8514966 2.3009053, 48.8494772 2.3513322, 48.8521302 2.3358217, 48.8553332 2.3464366, 48.8528715 2.3435491, 48.8614418 2.2990188, 48.8513763 2.3250565, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8327885 2.2772902, 48.8376679 2.3201690, 48.8391922 2.3168608, 48.8453963 2.3255943, 48.8445885 2.3722564, 48.8439502 2.3728916, 48.8310773 2.2770656, 48.8616525 2.3535093, 48.8541427 2.3314320, 48.8501755 2.3620809, 48.8566284 2.3271644, 48.8406788 2.3548958, 48.8661306 2.2897626, 48.8813252 2.3220105, 48.8610917 2.3414339, 48.8706262 2.3242484, 48.8722447 2.3050374, 48.8820013 2.3330275, 48.8450073 2.3757975, 48.8442783 2.3769332, 48.8466279 2.2560360, 48.8351429 2.3731146, 48.8413725 2.3310575, 48.8694555 2.3406786, 48.8388399 2.2765067, 48.8398137 2.3124499, 48.8176870 2.3444409, 48.8398451 2.2739161, 48.8539232 2.3938833, 48.8742514 2.3675121, 48.8470632 2.3766059, 48.8566083 2.3533348, 48.8895985 2.3191714, 48.8632334 2.3399229, 48.8493535 2.3714981, 48.8651992 2.3333992, 48.8565989 2.4064934, 48.8584702 2.3501538, 48.8585293 2.3496680, 48.8411654 2.3324666, 48.8463168 2.3872077, 48.8596955 2.3406333, 48.8620104 2.3390904, 48.8611512 2.3495492, 48.8661000 2.3337438, 48.8652752 2.3332993, 48.8677297 2.3303206, 48.8670418 2.3496240, 48.8613539 2.3526643, 48.8563329 2.3553132, 48.8657000 2.3535311, 48.8652453 2.3533870, 48.8443992 2.3820174, 48.8691076 2.3112127, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8729875 2.3210140, 48.8726568 2.3215983, 48.8776040 2.3524312, 48.8741556 2.3274201, 48.8758310 2.3206114, 48.8819076 2.3140835, 48.8751556 2.3094294, 48.8749212 2.3089779, 48.8720777 2.3056372, 48.8715518 2.3062553, 48.8688688 2.3012670, 48.8720769 2.2997667, 48.8721868 2.3033146, 48.8707626 2.3051595, 48.8701277 2.3044062, 48.8674712 2.3054788, 48.8667016 2.3011326, 48.8655118 2.3015698, 48.8713039 2.2970137, 48.8741074 2.2994150, 48.8744570 2.3007315, 48.8763620 2.3015161, 48.8767241 2.3018198, 48.8782249 2.2965872, 48.8888115 2.3939896, 48.8972935 2.3883460, 48.8971965 2.3887591, 48.8952805 2.3850234, 48.8599671 2.3250425, 48.8705380 2.3685763, 48.8293963 2.3789703, 48.8401996 2.3509062, 48.8403358 2.3506549, 48.8432745 2.3153982, 48.8725053 2.2851559, 48.8736890 2.2914977, 48.8768968 2.2823678, 48.8722856 2.2840680, 48.8693205 2.2843750, 48.8677158 2.2805552, 48.8581528 2.2756131, 48.8537034 2.3664740, 48.8749075 2.3418631, 48.8770209 2.3458704, 48.8837184 2.2879868, 48.8394916 2.2533681, 48.8396031 2.2624046, 48.8471492 2.3421620, 48.8925549 2.3269370, 48.8507465 2.3484894, 48.8470699 2.3417135, 48.8613479 2.3294517, 48.8420353 2.3432522, 48.8170906 2.3594427, 48.8623669 2.3098112, 48.8593696 2.3144127, 48.8414784 2.2515179, 48.8734234 2.3305255, 48.8715078 2.3339896, 48.8459424 2.3060603, 48.8709065 2.3498477, 48.8800493 2.3536899, 48.8820806 2.3518696, 48.8644441 2.3741599, 48.8539335 2.3775047, 48.8507314 2.3754330, 48.8540777 2.3579438, 48.8466539 2.3999463, 48.8319830 2.3768014, 48.8720026 2.3359899, 48.8543455 2.3561847, 48.8472625 2.3418020, 48.8703752 2.3029557, 48.8738314 2.3297043, 48.8240781 2.3667729, 48.8790223 2.2930687, 48.8246116 2.3235303, 48.8824856 2.3440987, 48.8558178 2.3536690, 48.8647821 2.3501454, 48.8815254 2.3543330, 48.8313000 2.3882082, 48.8424224 2.3451614, 48.8632587 2.2533252, 48.8660712 2.2550204, 48.8632351 2.3477979, 48.8580953 2.3988158, 48.8353252 2.3805436, 48.8823708 2.3546777, 48.8671989 2.3667020, 48.8410399 2.3210471, 48.8429112 2.3235502, 48.8423484 2.3212962, 48.8320324 2.3866588, 48.8336457 2.2895795, 48.8539543 2.3320945, 48.8764091 2.3236995, 48.8476756 2.3411763, 48.8305332 2.3138423, 48.8763053 2.2944546, 48.8763219 2.2947532, 48.8788573 2.2928071, 48.8761984 2.2930848, 48.8760963 2.2927992, 48.8532277 2.3589001, 48.8817162 2.3010162, 48.8336788 2.3331356, 48.8863474 2.2875098, 48.8871329 2.3013396, 48.8740366 2.4050675, 48.8780164 2.4108510, 48.8260635 2.3616139, 48.8339745 2.3680517, 48.8239032 2.3657211, 48.8606849 2.3259641, 48.8937054 2.3492738, 48.8893918 2.3447704, 48.8706840 2.3716682, 48.8832655 2.3157338, 48.8295968 2.3493740, 48.8892294 2.3935497, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8962268 2.3624023, 48.8606849 2.3259641, 48.8381765 2.3815493, 48.8537886 2.3474561, 48.8731938 2.3290960, 48.8212980 2.3643164, 48.8885210 2.3001520, 48.8549966 2.4012505, 48.8550533 2.3731077, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8292317 2.3084985, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8840501 2.3678392, 48.8465587 2.2612329, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8868617 2.3693195, 48.8698031 2.3099017, 48.8804349 2.3673901, 48.8343023 2.3639410, 48.8378546 2.3188725, 48.8635066 2.3585029, 48.8626410 2.3536464, 48.8510259 2.3410270, 48.8785042 2.4032141, 48.8843094 2.3221312, 48.8207875 2.3249534, 48.8585293 2.3496680, 48.8176870 2.3444409, 48.8465788 2.3874042, 48.8338169 2.3823515, 48.8728113 2.3697721, 48.8450073 2.3757975, 48.8633378 2.3436056, 48.8608207 2.3462695, 48.8609358 2.3477215, 48.8475234 2.2825602, 48.8850525 2.3540917, 48.8869948 2.2957423, 48.8913949 2.3030283, 48.8904986 2.3036119, 48.8789318 2.2820499, 48.8782568 2.2839644, 48.8402845 2.4069021, 48.8832938 2.3851138, 48.8923410 2.3650140, 48.8852405 2.3310874, 48.8941194 2.3721536, 48.8348835 2.3592961, 48.8742021 2.3591001, 48.8314203 2.3778776, 48.8314596 2.3779526, 48.8318827 2.3891652, 48.8461444 2.3837384, 48.8936924 2.3300230, 48.8444332 2.3065143, 48.8404521 2.3210539, 48.8406619 2.3213032, 48.8951172 2.3725920, 48.8848116 2.3938556, 48.8541004 2.3735901, 48.8883255 2.2895204, 48.8324295 2.3777926, 48.8400817 2.3808930, 48.8885318 2.3889061, 48.8541153 2.3181466, 48.8457219 2.3091127, 48.8852759 2.3287719, 48.8853098 2.3300207, 48.8411155 2.2644568, 48.8720076 2.3153410, 48.8970228 2.3778045, 48.8335588 2.3347973, 48.8743552 2.4101245, 48.8459148 2.3453004, 48.8467486 2.3457052, 48.8464858 2.3468868, 48.8373806 2.3847107, 48.8949298 2.3437869, 48.8529015 2.2772159, 48.8641419 2.3059394, 48.8171104 2.3592722, 48.8706191 2.3164188, 48.8702691 2.3171729, 48.8812617 2.3221621, 48.8784814 2.3330760, 48.8456516 2.3465029, 48.8872879 2.3219591, 48.8997033 2.3290489, 48.8413908 2.3722764, 48.8256327 2.3320576, 48.8655047 2.2723194, 48.8708239 2.3060540, 48.8441230 2.3564135, 48.8558123 2.3528997, 48.8562804 2.3531597, 48.8362151 2.2568329, 48.8388419 2.4599061, 48.8695357 2.3416876, 48.8694697 2.3420289, 48.8696274 2.3412758, 48.8626465 2.3146531, 48.8465734 2.3127269, 48.8565840 2.2986464, 48.8460758 2.3058827, 48.8204134 2.4518397, 48.8477097 2.3117779, 48.8477196 2.3115767, 48.8784451 2.2852017, 48.8624814 2.3328937, 48.8543462 2.3467503, 48.8252592 2.4120396, 48.8614367 2.2958080, 48.8605025 2.2943088, 48.8351030 2.4463930, 48.8632541 2.2402764, 48.8618634 2.4100811, 48.8361491 2.2692910, 48.8358166 2.2686689, 48.8222263 2.4483812, 48.8227496 2.4495152, 48.8662682 2.3974540, 48.8381010 2.3148758, 48.8374220 2.3149466, 48.8366275 2.4409423, 48.8999909 2.3448173, 48.9000149 2.3394792, 48.8379027 2.3622168, 48.8351429 2.4475725, 48.8220818 2.3406030, 48.8531376 2.3591975, 48.8534868 2.3580109, 48.8633082 2.2839525, 48.8171862 2.3326710, 48.8435052 2.3798226, 48.8364120 2.2686709, 48.8764185 2.3969372, 48.8298857 2.3251080, 48.8341531 2.3029351, 48.8341115 2.3027113, 48.8773569 2.4091134, 48.8625518 2.2289847, 48.8686047 2.3172472, 48.8400598 2.2883156, 48.8299997 2.3587358, 48.8299341 2.3586911, 48.8464288 2.2486197, 48.8480791 2.2445917, 48.8947243 2.3931498, 48.8291320 2.4574737, 48.8236788 2.4563722, 48.8705811 2.3031146, 48.8387116 2.3423289, 48.8293120 2.2902026, 48.8321851 2.2870636, 48.8285252 2.2905906, 48.8281768 2.2910589, 48.8301724 2.2903291, 48.8284840 2.2907616, 48.8285477 2.2904442, 48.8294272 2.2900019, 48.8284711 2.2909813, 48.8302673 2.2901359, 48.8322580 2.2868131, 48.8516565 2.2795993, 48.8762399 2.3589688, 48.8640413 2.2547307, 48.8688683 2.2484552, 48.8522560 2.2872933, 48.8505461 2.2881984, 48.8507146 2.2878412, 48.8592142 2.2272202, 48.8944990 2.3592670, 48.8964589 2.3589627, 48.8526051 2.2917373, 48.8527475 2.2917705, 48.8524256 2.2914147, 48.8520645 2.2878286, 48.8530231 2.2902364, 48.8521480 2.2910880, 48.8461602 2.2777848, 48.8315682 2.3419531, 48.8844978 2.3727600, 48.8214447 2.3591422, 48.8210623 2.3592593, 48.8296129 2.3926750, 48.8953032 2.3950120, 48.8385749 2.3187258, 48.8621437 2.4083353, 48.8625288 2.4074996, 48.8622745 2.4082713, 48.8467200 2.3470841, 48.8594021 2.3997394, 48.9014459 2.3845889, 48.8381862 2.2637137, 48.8747479 2.3774714, 48.8625581 2.2726160, 48.8759281 2.3755990, 48.8554636 2.3105772, 48.8568148 2.3113293, 48.8562582 2.3111517, 48.8753670 2.3840906, 48.8776820 2.3819290, 48.8780466 2.3820570, 48.8779501 2.3820356, 48.8282157 2.3138616, 48.8791865 2.3962914, 48.8800883 2.3966161, 48.8789953 2.3961493, 48.8797503 2.3965184, 48.8791295 2.3963574, 48.8799656 2.3966919, 48.8788628 2.3960550, 48.8789728 2.3962383, 48.8786511 2.3959011, 48.8794871 2.3965577, 48.8786364 2.3960059, 48.8781700 2.3957367, 48.8779412 2.3955240, 48.8468574 2.3115883, 48.8409751 2.3143380, 48.8418080 2.3135205, 48.8538220 2.3039217, 48.8521690 2.3015397, 48.8400362 2.2978277, 48.8398604 2.2982919, 48.8396219 2.2985580, 48.8458905 2.3061855, 48.8453505 2.3079370, 48.8457209 2.3076485, 48.8454608 2.3084333, 48.8542240 2.3047930, 48.8555641 2.2971442, 48.8921220 2.3594231, 48.8526538 2.2867524, 48.8571932 2.2995417, 48.8531145 2.3031375 +fuel, drinking water, recycling, post box, fire station, pharmacy, restaurant, townhall, hospital, shelter, fast food, parking, college, telephone, taxi, toilets, atm, post office, car rental, clock, bank, kindergarten, wifi, biergarten, police, vending machine, car sharing, bench, grave yard, cafe, public building, pub, nightclub, library, grit bin, bar, fountain, hunting stand, artwork, place of worship, cinema, waste, waste basket, bicycle parking, school, veterinary, dentist, bicycle rental, theatre, doctors, social facility, video games, solarium, locker, swimming pool, car wash, university, food court, public bookcase, dancing school, parking entrance, marketplace, motorcycle parking, ferry terminal, youth centre, ice cream, driving school, childcare, club, animal shelter, charging station, shower, bicycle repair station, clinic, community centre, science park, research institute, arts centre, boat rental, nursing home, bbq, bus parking, fraternity, monastery, parking space, smoking area, brothel, courthouse +ku17, Eiscafe Capri, Cappuccino, Café Blank, Florian Steiner - Kaffee und Wein, Nectar, Jules, Bar Centrale, Internet City², Frollein Bent, Strohauer's Cafe Alt Heidelberg, Gundel, Riegler, Moro Caffé & Thé, Caffè Auszeit, Café Rossi, St. Anna No 1 Chocolaterie, Eisdiele Roma, Chocolaterie YilliY, Café Burkardt, Hörnchen, Café Knösel, EuroTreff, Café Riegler, Hemingway's, Cafe Fresko, Medòcs, Coffee Inn, Göbes, InternetCafé, Tchibo, Heidelberger Internetcafé, Villa Lounge, Riegler, Molkenkur Café, La Flamm-Pâtisserie, Starbucks Coffee, Wiener Feinbäckerei, Kamps, Petit Paris, Extrablatt, Schmelzpunkt, Lavazza, Regie, emma Café-Bar, Starbucks, Cafe Romantic, Café Gegendruck, Marstallcafé, Casa del Caffè, Café PUR, Keplers (Café Alte PH), La Bohème, Café Moro, La Fée Bar Café, Bergheim 41 - Hotel im Alten Hallenbad, Riegler, coffee nerd, Zeitreise Café & Laden, Princess Cupcakes, Pannonica, friedrich, Amorino, Eispalast, Gelati, Pilgrim, Schiller's, Grano, Gelati & Crepes, Eisdiele, Unter Freunden, Günay's Café, Peppa Jane, Macaronnerie, Schafheutle, Café Molkenkur, Kaffeerösterei Florian Steiner +181 +fr:Regard de la Roquette, fr:Thermes de Cluny, fr:Enceinte de Philippe Auguste, fr:Arènes de Lutèce +48.8570374 2.3118779, 48.8507240 2.3518758, 48.8631692 2.3329513, 48.8660977 2.3554138, 48.8643016 2.3480523, 48.8779237 2.3345515, 48.8626245 2.3025393, 48.8662844 2.3817490, 48.8403827 2.3113658, 48.8864800 2.3399022, 48.8957518 2.3879761, 48.8547934 2.3662431, 48.8651191 2.3417893, 48.8551205 2.3589562, 48.8695018 2.3546892, 48.8957352 2.3886935, 48.8616153 2.3542965, 48.8339661 2.3324864, 48.8836865 2.3338083, 48.8660456 2.3145051, 48.8602845 2.3247488, 48.8559492 2.3460263, 48.8575222 2.2845690, 48.8414574 2.3172246, 48.8677629 2.2935696, 48.8625016 2.3453019, 48.8403652 2.3414281, 48.8705899 2.3500828, 48.8629386 2.2890051, 48.8618163 2.2873421, 48.8749151 2.3431481, 48.8411575 2.3473052, 48.8565109 2.3263842, 48.8519070 2.2652250, 48.8703234 2.2765175, 48.8716440 2.2881063, 48.8327663 2.3893382, 48.8302877 2.3141843, 48.8557584 2.3320096, 48.8716204 2.2814131, 48.8513494 2.3555880, 48.8483211 2.3294718, 48.8677268 2.3223990, 48.8591945 2.2851420, 48.8522269 2.3350050, 48.8505577 2.3402229, 48.8476741 2.3140391, 48.8830345 2.3077236, 48.8513629 2.3410046, 48.8547304 2.3248616, 48.8554427 2.3276941, 48.8434645 2.3207843, 48.8456499 2.3395974, 48.8434624 2.3362665, 48.8536113 2.3476422, 48.8718820 2.3312120, 48.8656784 2.3307909, 48.8495079 2.3483856, 48.8585526 2.3597161, 48.8533658 2.3493036, 48.8526313 2.3500601, 48.8404563 2.3198526, 48.8603240 2.3522598, 48.8672999 2.3221942, 48.8960350 2.3884154, 48.8405179 2.3703276, 48.8465117 2.3551571, 48.8367685 2.3218491, 48.8678618 2.3225499, 48.8762675 2.3826909, 48.8640279 2.3450171, 48.8435231 2.3731854, 48.8573239 2.3286291, 48.8454353 2.3277854, 48.8566677 2.3132514, 48.8556933 2.3113320, 48.8564589 2.3132374, 48.8297380 2.3306629, 48.8704435 2.3261996, 48.8622099 2.2873776, 48.8961521 2.3880996, 48.8609823 2.2977973, 48.8418109 2.3577568, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8474726 2.3606487, 48.8848436 2.3445206, 48.8546351 2.3638127, 48.8614768 2.3351677, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8614029 2.3519903, 48.8590015 2.3547571, 48.8442282 2.3447813, 48.8661515 2.3122667, 48.8505164 2.3621847, 48.8506605 2.3437398, 48.8612650 2.3554176, 48.8601858 2.3588061, 48.8590543 2.3618044, 48.8598775 2.3620895, 48.8581216 2.3616628, 48.8545855 2.3356172, 48.8352761 2.4093810, 48.8483243 2.3344262, 48.8599188 2.3265259, 48.8586563 2.3821295, 48.8473326 2.3227159, 48.8613305 2.3197359, 48.8433913 2.2512835, 48.8707890 2.3259075, 48.8791676 2.3124361, 48.8794667 2.3125380, 48.8553042 2.3158566, 48.8755169 2.3105465, 48.8370020 2.3826461, 48.8655978 2.2993165, 48.8643054 2.2977930, 48.8641085 2.2964123, 48.8373190 2.3319319, 48.8653887 2.2935591, 48.8260871 2.3327019, 48.8715060 2.2814214, 48.8594040 2.2672517, 48.8421181 2.3562419, 48.8812030 2.3335190, 48.8551953 2.2808684, 48.8463579 2.2732198, 48.8548859 2.3560679, 48.8547299 2.2897642, 48.8428133 2.3337722, 48.8880654 2.3406347, 48.8612559 2.3587824, 48.8344502 2.3520875, 48.8485965 2.3340156, 48.8662091 2.3108575, 48.8582260 2.3619639, 48.8530932 2.3611938, 48.8766546 2.2633259, 48.8563449 2.3387717, 48.8657061 2.2966614, 48.8432079 2.3186583, 48.8576820 2.3627148, 48.8660437 2.3149694, 48.8553966 2.3450136, 48.8611474 2.3358637 +yes +48.8882750 2.3740777 +Gonesse, Montmagny, Villepinte, Chatou, Neuilly-Plaisance, Neuilly-sur-Marne, Aubervilliers, Franconville, Stains, Clichy, Le Blanc-Mesnil, Chelles, Saint-Leu-la-Forêt, Le Vésinet, Enghien-les-Bains, Aulnay-sous-Bois, Nanterre, Épinay-sur-Seine, Villiers-le-Bel, Les Lilas, Deuil-la-Barre, Villemomble, Montesson, Les Pavillons-sous-Bois, Bois-Colombes, La Garenne-Colombes, Montmorency, Rosny-sous-Bois, Sannois, Saint-Brice-sous-Forêt, Neuilly-sur-Seine, Le Bourget, Houilles, Courbevoie, Livry-Gargan, Gennevilliers, La Courneuve, Le Pré-Saint-Gervais, Suresnes, Montigny-lès-Cormeilles, Saint-Gratien, Montfermeil, Argenteuil, Sartrouville, Cormeilles-en-Parisis, Rueil-Malmaison, Noisy-le-Sec, Bobigny, Domont, Soisy-sous-Montmorency, Marly-le-Roi, Sevran, Garges-lès-Gonesse, Ermont, Bagnolet, Bezons, Carrières-sur-Seine, Le Raincy, Montreuil, Arnouville, Pierrefitte-sur-Seine, Villetaneuse, Sarcelles, Romainville, Saint-Denis, Gagny, Maisons-Laffitte, Levallois-Perret, Eaubonne, Colombes, Drancy, Villeneuve-la-Garenne, Bondy, Saint-Germain-en-Laye, Le Pecq, Asnières-sur-Seine, Puteaux, Pantin, Saint-Ouen, Clichy-sous-Bois +ARLT, Thalia, Kamps, Der Kleine Gundel, City-Markt Rüdinger, Stefansbäck, Galerie Piu-Piu, Apollo Optik, Grimm, Lichtblick, Tally Weil, Vodafone, FOSSIL, Desigual, O2, C&A, tredy, Freudenhaus, The Body Shop, WMF, GameStop, Zuckerladen, Souvenirs und Fotokarten, Expert Esch, dm, Tchibo, Deichmann, Saturn, Weltladen Heidelberg-Altstadt, H&M, Runner's Point, S'Oliver, Penny, Moments, Kamps, Schuh und Leder, Basic Hairshop, Anouk, Vodafone, Thomas Cook, Hallhuber, E-Plus, TeeGschwendner, fielmann, Gravis, L'Epicerie, Käthe Wohlfahrt, I Am - Designmanufaktur, Globetrotter, Reisebuchladen Heidelberg, Sofie Göbes, Knoblauch Schreibwaren, Buchladen - artes liberales, Josef Seibel, Reformhaus Escher (Vita Nova), Lebe Gesund, höllwerk - Schmuck & Design, Mantei, Douglas, Promod, Many Market, Nativo, Napapijri, Der Frisörladen, Barber Shop, Hassbeckers Galerie & Buchhandlung, Chocolaterie Knösel, Just B - Tattoos and Bodyart, Kraus, City-Markt Rüdinger, TK Maxx, Antiquariat Hatry, Swatch, mod's hair BASIC, Piccadilly English Shop Heidelberg, Butlers, McPaper, Depot, Yellow Corner, hollenbach, ecco, Antiquariat Friedrich Welz, friedrich, faire und feine Mode, Rad Kirch, Uli Rohde Musikladen, Abele Optik, Bären Company, Christ, Diller, Eyes + More, Pandora, Planet Sports, Roland, Schmitt & Hahn, Telekom, Anouk, dielmann, Max & Co, Leder Meid, Marc O' Polo, Carat, tilly de lux, Fruchtmarkt Lehnert, Farbenreich, Peppino, Ronnefeldt Teeladen, The Flame, Stoff-Ideen, Günay's Garten, Idee., Metzgerei Unger, Musikzimmer, Heidelberger Bonbon Manufaktur, Pannonica, Vinyl-Only GmbH, eckhaus heidelberg, Goldschmiede "im Hof", Walters Feinkost, Schnittmodul, Radpoint Heidelberg, Alex Wein & Spirituosen, Koh Samui Thaimassage, DKA Daniel Kiefer Audio, Footlocker, New Yorker, Sportarena, Convenience Store, Tourism Stuff, Steingasse14 - Optiker, Heidelberger Wäscheladen, Welldone Studios, Susanna Beck, Janssen, Schlemmermeyer, Zigarren Grimm, Bofinger Femme, Bofinger Men, L'TUR, Nowa Style, Upper Glass, leguano Barfußladen, Holgersons, Mirus Raumkonzepte, Blume sucht Vase, Die Blumenfrau, Mountain Warehouse, dm, Brax, Dürninger, o2, Lindt Boutique, CALIDA, Heisel, Swarovski, Classic Times, intimissimi, snipes, Grünvogel, The House of Villeroy & Boch, Andrea Créations, Memories of Heidelberg, Antiquariat canicio, BREE, Blue Sense, Holgersons, Maroc Interieur, Wolle Rödel, Yves Rocher, yourfone, Pylones, Galeria Kaufhof, Darmstädter Hof Centrum, Schmuckatelier Mämecke & Rauen +49.4139877 8.6924247, 49.4109186 8.7008914, 49.4040505 8.6756301, 49.3829241 8.6902846, 49.4039976 8.6856096, 49.4114234 8.7086878, 49.4119689 8.7118856, 49.4281123 8.6871978, 49.4126726 8.7089452, 49.4178625 8.7592553, 49.4126347 8.7117604, 49.4099566 8.6945913, 49.4239696 8.6485990, 49.3667743 8.6853055, 49.4142230 8.6710133 +286 +49.4641062 8.6650466, 49.4707059 8.6520153, 49.4751871 8.6837099, 49.4760467 8.6993112, 49.4708285 8.6603546, 49.4702371 8.6666013, 49.4750609 8.6692928, 49.4751194 8.6651104 +4 +22 +2 and 48.8189926 2.4540521, 48.8338878 2.3397983 +7 and 55.9378000 -3.1771354, 55.9539155 -3.1869471, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9544013 -3.1879472, 55.9285894 -3.1685115, 55.9820970 -3.4001038 +M8, M9, M90 +9 +Bruntsfield Place +Mo-Su 07:00-23:00 +17 +Vodafone, O2, Vodafone, E-Plus, Handy Shop XXL, Telekom, O2, o2, Telekom, yourfone, Kabel BW Shop +55.9509457 -3.2714871, 55.9440812 -3.1618330, 55.9230568 -3.1946835, 55.8825130 -3.2371499, 55.9510042 -3.1642474, 55.9429880 -3.1595009, 55.9455214 -3.1515881, 55.9210841 -3.2304150, 55.8803945 -3.2546213, 55.8919644 -3.2565320, 55.8933312 -3.2694699, 55.9174462 -3.2363371, 55.9127712 -3.2038639, 55.9156137 -3.1964307, 55.8191953 -3.3924956, 55.8830619 -3.2214017, 55.9480863 -3.1576318, 55.9919155 -3.3568399, 55.8933347 -3.2822591, 55.9556357 -3.1823678, 55.9458711 -3.1740706, 55.9425607 -3.1620707, 55.8878252 -3.3839342, 55.9836455 -3.3447505, 55.9900950 -3.3422624, 55.9525207 -3.2734605, 55.9484295 -3.2678386, 55.9542867 -3.2739969, 55.8887192 -3.2422954 +Aéroport de Paris-Orly +Hilton Edinburgh Airport Hotel +50.1253014 11.3360343, 49.6454510 11.2523168, 47.5432525 9.6839101, 47.5645037 9.6756220, 48.5915951 10.5122665, 48.1917560 11.2604606, 49.3608074 11.0505849, 49.4836508 10.9835475, 50.0042360 9.0624526, 49.9124639 10.8920010, 50.0012000 9.0683238, 47.9641506 11.3470172, 49.9293257 10.9419364, 49.9767042 9.1566256, 49.9845565 9.1639906, 49.1891725 11.1874594, 49.3687740 11.3057878, 49.6297746 11.2344459, 50.0452138 10.2340424, 50.2598647 10.9666953, 50.2583057 10.9646137, 47.8174163 10.5345680, 49.7502077 9.1790325, 49.6385843 11.1013066, 49.6385636 11.1015857, 49.7922309 10.0258144, 48.3830181 10.4715717, 49.3013427 10.5817647, 49.3053748 10.5718491, 50.1264898 9.1161746, 50.2753812 10.9496791, 49.9769664 9.0630892, 49.8037322 10.1655094, 49.6668795 10.1406107, 50.0652139 9.6733677, 50.3707482 9.9786124, 48.6831112 10.8195081, 50.2743347 10.9487550, 50.2137895 10.2353350, 48.7077119 10.7968484, 48.3552345 10.9787047, 48.6793262 10.8400082, 48.6721648 10.8601728, 48.4303767 10.6017105, 49.9958129 10.1809319, 49.8793240 9.1557405, 48.7156858 10.7825564, 49.0103295 10.8465324, 49.8400694 9.1484987, 50.0721491 9.0038192, 49.9843990 9.1243968, 49.9843771 9.1237845, 49.9761625 9.1464150, 47.3109958 10.2208189, 49.3155280 10.5816018, 49.3017966 10.5709171, 48.5764989 10.8567173, 50.1940569 10.0700854, 47.6606856 10.3497681, 49.7971702 9.9451436, 50.1363929 10.0063977, 48.4393971 10.4521982, 49.9762960 11.0354409, 49.7951466 9.9470589, 48.4034482 10.4623921, 48.1529504 11.2588493, 50.0480425 9.0083529, 47.7145411 10.3070947, 47.9066812 11.2801198, 48.4985997 10.4042132, 47.4419272 11.2615129, 49.6214957 10.1161508, 48.6364406 10.8242648, 49.1588258 11.1729362, 48.6624403 10.5210395, 49.4555015 10.7961629, 49.7258203 10.2733316, 49.7255798 10.2739995, 47.9136232 11.2885710, 47.9129446 11.2857099, 49.7306394 10.2306925, 47.9081793 11.2773451, 47.9111525 10.5746665, 47.5549753 10.3199972, 49.6659633 10.0619433, 47.9477750 11.2973595, 48.0026541 11.3213801, 48.0029713 11.3200625, 47.9431822 11.2570840, 49.7164805 10.2729330, 49.6100055 10.9988801, 50.1997379 10.9686029, 49.7981681 10.2394993, 49.7998357 10.2304975, 49.9147722 9.2009359, 47.9410010 11.3016771, 47.9488326 11.3073731, 49.8596561 10.4283018, 49.7178259 10.2790344, 49.4563268 11.0759138, 50.2434938 10.9732852, 50.2588432 10.9676928, 50.0162735 9.7428022, 49.3793293 11.2078031, 50.2594742 10.9696824, 50.2596861 10.9742321, 49.3029794 10.5717125, 49.9629473 11.1017275, 48.0392695 11.1435565, 49.5612829 11.3326991, 49.9117025 9.0621792, 49.7987170 9.9438007, 49.7970854 9.9309045, 49.6214272 10.8281375, 49.3028074 10.5770004, 49.3022738 10.5773653, 48.1804331 11.2800013, 49.8044809 9.9274979, 49.7966414 9.9259417, 50.0317178 10.5109015, 50.0952309 9.7217054, 48.1907849 11.2798642, 47.9032628 11.2772693, 47.9003514 11.2741039, 49.6993172 10.0079515, 49.7795207 11.1831885, 49.9847255 9.1732274, 50.1096890 9.8193285, 48.1792348 11.3734128, 49.3561733 11.0994230, 49.3475346 11.1144511, 48.3834205 10.4714165, 49.4556965 11.0803640, 49.8559541 9.9555809, 49.9983539 9.1085923, 49.9680252 9.5605615, 49.2380981 11.1638554, 49.1507383 11.3922917, 49.9318443 10.9552363, 49.7757531 9.9302996, 48.9243720 10.5417636, 49.9479783 9.1546268, 49.8947803 10.7258987, 49.2402116 11.3310361, 48.0738927 11.3926369, 49.8480148 10.0638963, 49.8123966 9.1035276, 49.4532944 11.0807305, 47.4676949 11.2491918, 49.7278952 10.2465747, 49.3013933 10.5813723, 49.9580652 9.5624478, 50.1899940 10.9244425, 49.8990567 10.3483512, 50.4616412 10.0202973, 49.0143666 10.9906645, 50.3251895 9.7798956, 49.9708810 9.3061199, 49.8669231 10.2242417, 49.8036251 10.2536001, 48.2738619 10.2290878, 49.4697674 11.1687149, 49.9719514 10.1713027, 49.9714489 10.1701613, 49.9739756 10.1742360, 50.0821249 9.4629424, 49.1886050 11.0154692, 49.6369793 10.8503152, 48.1043551 11.2253453, 48.1707150 11.2528747, 50.2493996 11.0489650, 49.3486879 11.0697906, 49.7938977 9.9417177, 50.1240570 9.6186063, 49.7951151 9.9244810, 48.2872819 10.2192824, 48.5674749 10.4829016, 49.7060651 10.0246300, 50.0940130 11.0140999, 50.0938638 11.0222558, 49.7277452 10.3173483, 47.9724108 10.1739626, 48.7865388 10.6881358, 47.4336111 11.2579089, 50.0114295 10.4639672, 49.7277244 10.2429385, 47.6066818 11.3147285, 47.7480474 10.6074388, 48.0017408 11.2701528, 47.6542475 11.3610692, 49.0175769 11.0081340, 47.6295533 10.1893894, 47.9132392 11.2862167, 49.4491883 11.0791503, 49.7719018 9.2454886, 49.9365445 10.9204393, 50.3861394 9.9329049, 49.5400470 10.7102900, 47.6268703 11.2381280, 50.1319979 10.8134964, 49.4725779 11.0358474, 50.0941321 11.0243351, 50.0939697 11.0248649, 49.9233047 10.2362144, 48.4431330 10.7802592, 49.4518375 11.1548748, 48.8044496 10.4947348, 49.3760667 10.1646476, 48.0017688 10.5957050, 48.3788752 10.7774869, 47.9798977 10.3083041, 49.8209354 9.7999590, 48.4080801 10.6837646, 49.8073007 11.1705527, 49.8239347 11.1477475, 49.8462447 10.0556889, 48.2015987 10.1362656, 49.5849742 11.0541747, 49.5846415 11.0658824, 49.5855024 11.0604600, 49.5887762 11.0703214, 49.5887954 11.0736693, 49.5771080 11.0872537, 49.5783210 11.1007853, 49.5829777 11.1038052, 49.6283830 10.5413943, 49.8220062 9.9402939, 49.8203829 9.9301434, 49.8140956 9.9396143, 48.7073907 10.6685039, 49.7398938 9.2446445, 49.7355434 9.2405658, 49.5797883 11.1318384, 49.5800402 11.1324198, 49.5719765 11.0830531, 49.5677990 11.0849588, 49.5609001 11.0924246, 49.5681364 11.0689140, 49.5708790 11.0680247, 47.8189913 11.3224155, 49.7244775 9.2299795, 49.7248770 9.2293711, 48.4686468 11.1766687, 49.9589117 10.8087491, 49.8871153 9.1178803, 48.0340516 11.2124902, 50.0571410 11.0728866, 50.0514811 10.2419621, 48.5779716 10.4885527, 49.7135651 10.1330925, 48.6886965 10.9194547, 47.6855301 10.1332724, 50.0201111 10.2162916, 48.2558722 11.0933001, 49.7865362 9.3648841, 49.4242659 11.1773818, 47.5859700 11.0639976, 47.5432701 10.4276675, 47.5964215 11.0654629, 49.7721400 10.6860600, 48.3843367 10.8229418, 49.6055564 11.0142816, 48.1888895 11.2264458, 49.0097753 10.8440491, 50.2736630 10.9490065, 49.8415675 11.2064513, 48.0367037 11.1887722, 47.9699197 10.9587540, 47.9727825 10.9565821, 47.5869550 10.6152976, 50.2404654 11.3242328, 47.6663871 10.7409189, 50.1163113 9.8925864, 48.0669364 10.9956216, 50.1577947 10.5549010, 50.1573738 10.5548894, 50.1576133 10.5537423, 50.1568599 10.5538196, 50.1583224 10.5557718, 50.1577452 10.5562314, 49.7743609 9.9823905, 49.5837217 11.0347448, 49.5835680 11.0381075, 49.5779627 11.0366973, 49.5323221 11.0949302, 50.0383957 10.1050053, 50.0414034 10.1165266, 49.4719068 10.9952115, 49.4728549 10.9963617, 49.5102362 10.0432970, 49.4791364 10.9858762, 49.4717518 10.9960697, 50.1003879 10.5878290, 50.0501235 10.1422209, 48.1910596 11.3134435, 50.0586195 8.9998085, 48.1716866 11.2891123, 49.9617054 10.0518851, 49.7426624 9.7182264, 49.3274576 11.3453758, 50.0222269 11.2001046, 50.1079264 9.9326731, 49.4536913 11.0800086, 49.6199523 11.0187751, 47.5548126 10.7321880, 50.0394083 9.0653132, 50.4840139 10.1832475, 49.5426210 11.3374210, 47.7364685 10.7761580, 49.5959178 10.9480422, 49.4554430 11.0700439, 49.8101134 9.5864120, 48.0426344 10.2945479, 48.6126614 10.9500893, 48.0814807 10.8544651, 48.1623524 10.8066057, 48.1465398 10.8191243, 50.4968425 10.1786164, 49.6103445 10.9654205, 48.3676716 10.8969666, 49.3605749 11.3519976, 50.5010842 10.1143538, 49.4463529 10.3036488, 49.9754844 9.1779534, 47.6097785 9.9042077, 50.2544516 10.9647986, 49.0460002 11.3538095, 49.5978172 11.0040967, 49.5984193 11.0080342, 49.6007476 11.0144054, 49.9080861 10.8170752, 49.6886843 9.4155824, 50.0451147 10.2256217, 50.0188478 9.3635115, 49.5610418 11.3385395, 49.5615870 11.3367929, 49.5606730 11.3380782, 48.6986345 10.9775657, 49.9996359 9.0602127, 48.4362093 10.1872509, 50.0922889 9.6522458, 50.5106076 10.1023834, 50.5132156 10.1048660, 50.2125278 10.9380856, 49.8114903 10.0129581, 47.7270982 10.3387905, 49.8800670 9.4372690, 50.0194156 9.2635056, 50.0234176 9.2542204, 49.9367680 9.1410305, 49.9663879 9.1856672, 49.9686216 9.2033126, 47.9424984 11.3431273, 50.0471420 9.0805437, 50.2010526 10.9527322, 48.2445643 10.3686453, 50.0252099 9.2972011, 49.6154988 10.3092219, 50.1394576 9.8749448, 48.1278863 11.3497181, 47.7633885 10.2960897, 49.9126111 10.1379856, 49.7203673 11.0601324, 49.5785264 10.8406085, 48.1303964 10.2218735, 49.8820339 11.1300099, 49.9949273 9.2766082, 49.9997614 9.2804789, 49.9774224 9.1458993, 50.0497968 10.5720106, 50.1121897 9.8800006, 48.3573921 10.8798938, 48.3575354 10.8799292, 50.0894585 10.2128221, 50.0952367 10.2099885, 48.8882557 10.4728159, 49.9279182 10.7537020, 47.5564464 9.6592698, 50.1476870 9.8734272, 49.9800710 10.8546688, 48.3997027 10.8527239, 47.7200990 10.3177561, 49.9766425 9.1393224, 49.7715003 9.5474320, 49.9722482 9.1426877, 50.0080661 9.2025804, 50.2435965 10.5186225, 48.1374225 11.3642089, 50.1116490 9.6486984, 48.0371732 10.3385081, 47.7010787 10.2943220, 47.7012335 10.2961026, 50.0388313 9.0612891, 47.7514802 10.2469871, 47.7269398 10.3115748, 50.0245932 9.6911894, 49.5132456 10.4046143, 49.5126519 10.4049752, 49.5120389 10.4060159, 49.4948272 10.8065266, 48.3755745 10.8916871, 48.4340783 10.8783981, 47.7209713 10.2750525, 50.0932927 9.6671570, 50.0643165 9.1620037, 49.8361603 9.8687822, 49.6896465 11.0099568, 48.0653013 10.2404773, 48.0764092 10.2250972, 48.0741438 10.1991626, 47.8474883 10.6340669, 49.7192490 11.0421798, 49.9472089 10.6129673, 48.9777730 10.8863175, 49.7941658 9.9317878, 49.0253061 11.0055020, 49.5420981 11.3604985, 48.3887190 10.0749717, 50.0232563 9.7965866, 49.7928585 9.9424740, 48.4911642 11.1847507, 48.0027874 10.2193812, 49.4415884 10.2865204, 49.2190762 10.6676897, 49.2040901 10.7017360, 49.9967356 9.1120639, 48.3838616 11.0471515, 49.5502166 11.0447091, 47.8835216 10.6135767, 47.8866331 10.6122228, 47.7286487 10.3072214, 49.4860333 10.5672499, 50.0027595 9.1002640, 50.0508054 10.2135347, 49.3452344 10.5098414, 49.9939430 9.5826016, 47.7666534 10.2992963, 50.2218379 10.9028994, 50.2042367 10.9286580, 48.6743210 10.8205105, 47.7220243 10.2723610, 47.6003867 9.8854237, 49.9228189 10.7769457, 49.6777552 9.2316082, 49.3970486 11.1262502, 49.5696464 11.3112755, 50.0807288 9.1119339, 48.8432843 10.6049178, 50.1840124 10.3599152, 50.0445931 9.0224418, 49.6180199 10.6306271, 49.9329494 9.5746562, 49.3855010 11.2133431, 49.4653009 11.2455613, 50.2738698 10.9460111, 50.2740126 10.9465172, 50.2736933 10.9464107, 50.3009356 11.0212587, 49.8828192 10.8963667, 50.0177947 11.3252030, 48.9255859 10.5001108, 48.1584309 10.8316085, 48.1523379 10.8592314, 49.5168691 10.5187847, 49.7832351 9.8172359, 49.6093000 10.2743000, 49.5545131 11.0786710, 47.5539683 10.0209528, 49.7933694 9.9239401, 50.0989052 10.1794705, 49.5697539 11.3399346, 48.7652337 11.3044727, 47.5437133 11.1749978, 47.5561583 9.9641943, 50.0853057 9.9448500, 50.0481066 10.3334860, 49.5661346 11.0160944, 49.6926339 10.9976604, 47.9178138 11.2048534, 50.3240837 10.2164507, 48.1191023 11.1316690, 49.9511271 9.6730956, 47.7361150 10.3078127, 50.1068714 10.2236964, 50.0444236 10.1297437, 47.9564047 11.3632268, 47.3149196 10.2665696, 50.0600050 9.2357066, 49.6568842 11.0583057, 49.7210233 11.0552324, 49.7855645 9.5196414, 49.6377725 11.0697594, 49.7182173 11.0660421, 49.8898746 10.1576760, 49.6823210 11.0692847, 49.9326046 10.3652365, 49.8001754 9.9359286, 49.8001754 9.9359410, 50.0785634 9.1938671, 49.3190811 10.4766577, 47.7006458 10.3100172, 49.6668139 11.0697145, 47.3090259 10.2945389, 49.1672629 10.3546860, 50.0610078 9.0126947, 50.1124977 10.1788871, 49.7907406 9.7543083, 50.0835399 11.3315150, 50.1316444 10.8172494, 50.1306654 10.8134916, 47.9450697 11.1834532, 47.5529805 10.0247259, 49.7671397 11.0796935, 50.0867035 9.1866589, 48.2245720 10.3729953, 49.7399321 10.1621791, 48.0613572 11.2266624, 49.7228699 11.0658476, 49.7421555 9.1783981, 47.4559350 11.2758423, 49.3366393 10.7297065, 47.8748319 10.5326390, 50.0444510 10.2357515, 49.7586973 9.9798082, 48.0744642 11.2630791, 50.2073315 10.0917382, 47.6967777 10.3451365, 49.8464216 11.0367188, 49.3662294 11.3096085, 48.0749573 11.2580368, 47.6847222 10.4126955, 47.7438297 10.2245692, 49.5202124 11.1286750, 49.7992164 9.9420775, 48.1405264 11.0193437, 50.0038463 9.2022640, 50.0033674 9.2024593, 50.0033156 9.2023493, 49.5474904 11.3311641, 47.7800823 11.1272811, 47.5822042 9.8499454, 49.6504742 9.9412032, 49.4284487 11.0856285, 48.1200435 11.3643107, 49.4080404 11.0945211, 48.3686370 10.8993708, 49.6704405 10.9295047, 50.0514988 10.2252390, 49.7773560 9.1903451, 49.1875381 11.0258093, 49.5573571 11.3376876, 49.9997940 9.2157125, 47.5023951 10.3301636, 48.3080477 10.8951232, 48.6790671 10.8204961, 49.7603667 10.1693043, 47.7716047 11.3153159, 47.7740290 11.3283735, 49.7911340 9.9347407, 48.3488417 10.5851900, 49.1314094 10.3905568, 49.6786902 10.0657015, 50.1506416 10.2052209, 50.0554302 10.2249170, 48.6693239 10.5122669, 47.3707494 10.3584031, 48.3582039 10.5952767, 48.3558373 10.5896427, 48.0302908 10.8525179, 49.2153402 11.1430235, 49.5419494 11.3432673, 48.5941545 10.5418061, 49.5290954 11.3210636, 49.7025130 10.3167934, 50.2718359 11.3048248, 49.9233224 9.1575897, 49.6892285 9.3729957, 49.4728015 10.9918927, 47.9483644 11.2978052, 49.1868686 11.1976287, 50.0612026 9.1505545, 49.7306848 10.2298315, 47.6258509 9.9781993, 47.8049408 11.1960620, 49.7874912 9.9360832, 49.7884396 9.9365530, 47.4458890 10.2753054, 47.6138892 10.5938423, 47.6146175 10.5964515, 49.7199662 11.0576030, 49.8907183 9.7520487, 49.8661914 9.7805145, 48.9931521 11.3673226, 49.3700693 11.1852992, 49.4153205 11.0253169, 47.6889758 11.1840864, 47.7219398 11.2945828, 49.4503794 11.2104533, 50.0548172 10.0107407, 49.7830009 9.4544131, 48.1897158 10.8269885, 49.4493131 11.1490114, 48.3446802 10.9353840, 49.6833604 9.3650835, 49.6321395 10.9234401, 49.7235776 9.7385532, 49.7919770 9.2677067, 49.8011523 10.1625284, 48.0840599 10.8580061, 48.0506355 10.8773806, 49.8038973 11.0364074, 49.5315196 11.0047675, 49.4568640 10.5930690, 48.3969018 9.9999972, 49.7099827 10.0226917, 49.6906276 10.0575946, 49.9978054 9.1814089, 49.4061558 11.2850594, 49.6745103 10.0204639, 48.0967228 10.9185587, 48.2814995 10.4848715, 49.4486914 10.6347427, 49.0586716 11.3190942, 49.0672116 11.3132756, 48.5979327 11.2976076, 49.5922516 11.0522246, 49.6906000 11.1007337, 47.9556546 10.8697326, 47.9673121 10.9183741, 48.6556535 10.2793136, 47.9632050 10.8787058, 49.6502619 11.2472294, 49.8124528 9.8288392, 47.6446179 10.7295722, 50.0487739 10.4111525, 49.6093876 11.0005095, 50.2478755 11.3297769, 49.4544927 11.0480158, 49.9540225 9.1169443, 49.8813207 10.8680894, 49.8908998 10.8829408, 49.8858747 11.3346866, 47.9410297 11.3016252, 49.8935679 10.8779344, 50.0015859 10.1991002, 50.0019106 10.1995409, 49.2990096 10.4097309, 48.9222003 11.1980349, 47.6543967 10.2580417, 47.6256276 10.6899881, 48.8308839 10.8492397, 50.2329225 10.7273277, 48.0496911 10.7834808, 47.6452968 10.4412319, 50.2832977 11.0268910, 49.8684456 9.0912272, 49.8664885 9.0801663, 49.4857470 10.9491716, 49.8588983 9.0844705, 47.5464361 10.2806561, 47.9353129 11.0794910, 48.4194543 11.0959927, 48.7191192 11.1036130, 49.0779854 10.6278093, 49.6527115 9.9460333, 49.4050315 11.2926985, 47.4381358 11.0495098, 49.5779343 11.1683618, 49.7379410 10.1600376, 48.0496211 10.8715988, 48.0460830 10.8749417, 49.8823055 9.5946429, 50.3261561 10.1942060, 49.0096436 10.5004746, 50.0218969 10.2104849, 49.9975724 10.2051489, 49.6486918 11.0055125, 49.6396102 11.0018464, 49.2971394 10.4224499, 49.9043847 10.1925310, 49.2991739 10.4129817, 49.0263084 10.5697255, 49.0229720 10.5678961, 49.4567316 11.0810079, 49.7969352 10.0326571, 49.4519331 11.0756381, 49.0603052 10.2922231, 49.6885963 10.2005582, 50.0463262 9.2106036, 49.9758962 9.4013618, 49.4651000 11.0933450, 50.0369761 10.6203261, 49.5696911 11.3111204, 48.6534476 10.4951067, 49.4521167 11.0522513, 49.3783037 10.1804272, 50.0044733 9.4174121, 49.3765250 10.1742094, 49.8472953 9.5953738, 48.0638021 11.2036139, 49.4271207 11.0462448, 49.2942609 10.4159890, 49.6075226 10.9690072, 49.4406952 11.1143875, 49.2301097 11.1002383, 49.2030593 11.0503672, 49.8393342 10.0303396, 49.8450631 10.0188812, 49.8374383 10.0363478, 49.4519579 11.0893750, 49.4541507 11.0730452, 49.3824822 11.0376624, 47.5779644 9.8409547, 49.9461964 10.5660012, 49.0691833 10.3196646, 49.8813681 10.8709591, 49.8813104 10.8704349, 48.6792146 10.8199705, 49.3880327 11.3025418, 50.0989308 10.2009066, 50.0686178 9.1405239, 48.3593741 10.8988647, 50.0691374 9.1647686, 50.0829706 9.1744757, 49.4992211 10.4127336, 47.7242821 10.3141892, 47.7285579 10.3103498, 47.7221323 10.3118430, 47.7262186 10.3160945, 47.7251108 10.3069304, 47.7262768 10.3160850, 47.7204451 10.3137190, 47.7251096 10.3069306, 47.7309546 10.3094793, 47.7266756 10.3143688, 47.7262180 10.3160963, 47.7266754 10.3143710, 47.7221327 10.3118425, 47.7253575 10.3158079, 47.7221319 10.3118433, 47.7266744 10.3143693, 47.7275054 10.3127716, 47.7309538 10.3094786, 47.7222724 10.3151809, 47.7262179 10.3160983, 47.7205801 10.3113422, 47.7284022 10.3065761, 48.3196406 10.8232064, 49.6663115 9.2174563, 48.2069586 11.3270236, 50.2010281 10.0796309, 50.2010221 10.0796052, 48.8496834 10.4857345, 48.8482751 10.4858320, 49.7999154 10.0325942, 50.2010192 10.0795865, 50.2010431 10.0796589, 50.1967193 10.0810149, 48.8493967 10.4852209, 48.8517100 10.4934753, 48.8537545 10.4922091, 48.8536370 10.4910977, 48.8537334 10.4921703, 48.8542772 10.4938004, 48.8507618 10.4919803, 48.8532499 10.4925690, 48.8542877 10.4937795, 48.8532700 10.4925383, 48.8542646 10.4938180, 48.8536497 10.4910542, 48.8507841 10.4919674, 50.0179173 10.7019968, 48.6410373 10.5313159, 49.8821023 10.9042255, 48.8178925 11.0809786, 48.8245525 11.0724318, 50.0117430 10.7006733, 50.0090888 10.6946217, 50.0127154 10.6848692, 50.0265449 10.7009359, 50.0230313 10.6984522, 50.0185988 10.7020142, 50.0191858 10.7030163, 50.0234700 10.6789837, 50.0099854 10.7365010, 49.9936057 10.6936812, 49.9954107 10.6881365, 49.9991832 10.7065311, 50.0515127 10.6825199, 50.0415119 10.7259111, 50.0203839 10.7509132, 50.0221701 10.7110301, 50.3040141 10.4778811, 50.3042160 10.4780918, 47.6190551 11.3475254, 49.7197325 11.1517517, 49.8045771 9.9985236, 48.8920941 11.1840999, 48.3989347 11.1712240, 49.4354020 10.4140882, 47.6602222 10.3510584, 47.6572599 10.3508058, 49.7931062 9.7625034, 49.7994913 9.7519600, 49.7600378 9.7167061, 49.7897273 9.7536498, 49.7911878 9.7544082, 48.8991372 11.1878472, 48.8512301 10.4888424, 48.8523275 10.4919721, 48.8451876 10.4939668, 48.8541292 10.4916755, 48.8539854 10.4880578, 48.8496775 10.4925785, 48.8505244 10.4879424, 48.8523182 10.4919848, 48.8512395 10.4888313, 48.8541017 10.4916755, 48.8477268 10.4932959, 48.8496839 10.4925741, 48.2257460 10.6578602, 49.2505113 10.8274746, 48.1906255 11.3715878, 48.2398447 10.6666094, 48.2331131 10.6222457, 48.2280822 10.7614312, 49.3705840 11.3317226, 50.2964998 10.1773597, 48.1962042 11.3731773, 49.3732915 11.2109773, 48.8830526 11.1923901, 48.0691848 11.3773647, 50.0028821 10.8639429, 48.0247336 10.2582483, 47.9100035 10.5742540, 47.9100050 10.5742518, 47.9100031 10.5742513, 48.5769594 10.4921578, 49.7695834 11.2501592, 49.7667641 11.3365491, 49.7667629 11.3371417, 48.3684478 10.8903656, 49.2994881 10.4152111, 49.2988060 10.4146451, 50.0384874 9.1829561, 49.9649565 9.2033405, 50.3208914 10.2288371, 48.0544354 10.8784777, 48.0544586 10.8784699, 50.1339740 10.9997596, 47.6957621 10.2378885, 49.6719429 10.1092270, 48.8522201 10.4931751, 48.8498220 10.4903906, 48.8502970 10.4922689, 48.8498471 10.4904059, 48.8522059 10.4931953, 48.8532785 10.4928130, 48.8496601 10.4856974, 48.8496708 10.4857163, 48.8496477 10.4856799, 48.8521881 10.4932048, 48.8532905 10.4928264, 48.8534004 10.4892605, 48.8533934 10.4892679, 48.8533030 10.4928402, 48.8482940 10.4858635, 48.8502801 10.4922763, 48.8532666 10.4928045, 48.8531124 10.4912383, 48.8516841 10.4897454, 48.8514823 10.4924972, 48.8531284 10.4912472, 48.8531497 10.4912610, 48.8514908 10.4925360, 48.8517014 10.4897391, 48.8517157 10.4897351, 49.2834623 11.1245195, 48.6991076 10.4888000, 49.6695593 10.4735573, 49.9769946 9.1519363, 49.9750834 9.1465191, 49.9788040 9.1492982, 49.9780571 9.1469089, 49.9769598 9.1483522, 49.9769575 9.1483487, 49.9788030 9.1492978, 49.9788085 9.1459478, 49.9761670 9.1475691, 49.9761691 9.1475708, 49.9777357 9.1470002, 49.9771118 9.1463000, 49.9780562 9.1469097, 49.9771124 9.1462986, 49.9758163 9.1473677, 49.9787300 9.1460637, 49.9761690 9.1475695, 49.9750841 9.1465179, 49.9788033 9.1492993, 49.9761677 9.1475697, 49.9788078 9.1459490, 49.9787293 9.1460649, 49.9761677 9.1475684, 49.9756861 9.1455040, 49.9769575 9.1483509, 49.9769951 9.1519377, 49.7431992 10.3143552, 49.7332682 10.2910088, 49.7331557 10.2909352, 49.7320459 10.2893973, 49.7971708 9.9181959, 47.6782491 11.1981707, 49.5807360 10.9930423, 49.4781588 10.9815611, 50.0710288 9.3453874, 49.5880202 11.0348171, 47.7182352 11.0417325, 48.3078447 10.9012213, 48.3074280 10.9007914, 47.7665712 10.4012543, 48.3578768 10.8608426, 48.3418069 10.9886881, 48.1026468 10.8452603, 48.3688473 10.8987725, 48.8741262 11.1657305, 49.8396607 9.4499388, 49.5976027 11.0106106, 49.5767551 10.9845910, 50.0536602 10.5881133, 49.9758512 9.1489083, 49.9753342 9.1484946, 49.9725262 9.1520096, 49.9734825 9.1574246, 49.9758505 9.1489071, 49.9721775 9.1427265, 49.9752614 9.1500359, 49.9758903 9.1478404, 49.9758497 9.1489083, 49.9753686 9.1562911, 49.9758906 9.1478427, 49.9752873 9.1484977, 49.9727283 9.1509584, 49.9753357 9.1484953, 49.9859727 9.1375629, 49.9707705 9.1548378, 49.9753679 9.1562926, 49.9721820 9.1427261, 49.9758912 9.1478414, 49.9727276 9.1509624, 49.9758897 9.1478418, 49.9758243 9.1479574, 49.9758925 9.1478414, 49.9753347 9.1484961, 49.9721737 9.1427298, 49.9753690 9.1562929, 49.9758520 9.1489071, 49.9758251 9.1479562, 49.9753352 9.1484938, 49.5520120 10.0648801, 49.5528638 10.0662568, 49.5525157 10.0635550, 49.5517965 10.0635343, 49.5525797 10.0635125, 49.5528648 10.0662560, 49.5517981 10.0635366, 49.5528633 10.0662553, 49.5520142 10.0648834, 49.5517973 10.0635354, 49.5528642 10.0662524, 49.5522235 10.0652652, 49.5522739 10.0660112, 49.5520112 10.0648789, 49.5522242 10.0652665, 49.5525147 10.0635556, 49.5522749 10.0660104, 49.5520149 10.0648846, 49.5520123 10.0648784, 49.5528643 10.0662545, 49.7492292 11.2476398, 50.0077507 9.0697798, 49.9904785 10.5903260, 49.7932175 9.9300690, 49.7932157 9.9300660, 49.2907084 10.2654545, 49.9459834 9.2137807, 50.2947661 10.0964550, 47.5734512 9.8406759, 50.2853904 10.0977305, 50.2863806 10.1002136, 49.2326998 10.4977047, 48.0167267 10.9114811, 47.4418725 11.2582794, 49.9397941 10.6765837, 49.7637415 11.0302848, 50.0068525 9.2035019, 49.9674144 9.3973865, 49.2965371 10.4370565, 49.8335959 9.8463313, 49.3754615 10.1723479, 49.3757566 10.1729165, 50.1307235 10.0261636, 50.0100085 10.7388904, 49.9755613 11.3360106, 49.4881221 11.1056632, 49.2751769 11.3032585, 48.8914645 11.1745881, 49.8244119 9.2195855, 49.3500534 10.2008191, 49.4683097 11.0018808, 47.8748390 10.2216490, 49.5952508 11.0283102, 49.7628101 9.7103322, 47.5690462 10.6816003, 49.7377834 10.7343469, 49.7485218 10.7514389, 50.1266242 10.9322564, 48.0446423 10.8756748, 47.4485214 11.3739173, 49.3237343 11.3634148, 50.0399899 10.2563410, 49.6557652 9.1356940, 49.1755022 10.8293237, 49.8916234 10.8922621, 49.3700364 10.3326346, 49.9689726 9.1406710, 50.1461039 9.8787634, 49.6459023 10.6960875, 49.6190605 10.6550751, 49.3267742 11.3290333, 49.9506568 9.2425169, 47.5425352 9.6817195, 50.3603618 10.0183521, 50.2603176 10.1625667, 50.5294158 10.1365952, 48.1796129 11.2551298, 49.7690804 10.5270426, 49.7440739 10.3678749, 49.8545526 9.9567436, 48.8747287 11.1645790, 48.4840860 10.3676764, 48.0583724 10.8675451, 48.1917310 11.2652696, 48.1962886 11.2705080, 48.1961081 11.2696309, 48.1967606 11.2704517, 48.1967499 11.2707065, 48.1951533 11.2660877, 48.3007715 11.3808588, 49.6391565 10.9970110, 48.1942938 11.2697727, 48.1941755 11.2706956, 48.1940936 11.2704915, 48.1940575 11.2702662, 48.1942220 11.2708888, 48.1946872 11.2695367, 48.1959364 11.2671284, 48.2685891 10.8306042, 49.3040254 10.5718175, 48.2684512 10.8307732, 48.8506121 10.4971452, 50.1239967 10.8667045, 50.0326497 9.4312794, 49.9835532 10.0788877, 49.3815362 10.1702658, 49.5999179 11.0029460, 49.5999184 11.0029346, 49.5999207 11.0029411, 49.5947349 11.0049181, 49.5947890 11.0049002, 49.5947348 11.0049148, 49.5947365 11.0049179, 49.5947357 11.0049180, 49.5947364 11.0049146, 49.5947880 11.0049003, 49.5947356 11.0049147, 49.8916123 10.8934082, 49.2940718 10.4071127, 48.4805144 10.3621024, 49.3021051 10.5757277, 47.4125642 10.9782774, 49.3625693 10.1920107, 48.0163156 10.9179297, 48.7749853 11.3772559, 48.7764712 11.3740040, 49.3760472 10.1740553, 49.5841546 11.1376266, 49.8366567 11.3502874, 48.3072145 11.3329276, 49.9619007 9.7687548, 49.7925294 9.9300247, 49.7925284 9.9300253, 49.7925270 9.9300242, 49.7925280 9.9300237, 49.7925304 9.9300241, 49.7925290 9.9300231, 49.7925300 9.9300225, 49.5967084 11.0363646, 48.4215809 11.0664908, 49.9634476 9.7630263, 47.5649294 10.0293330, 47.7832209 11.1427052, 49.5915983 11.0279183, 49.9007742 9.8249718, 50.2681384 11.3609612, 48.4592157 11.1286345, 49.5321619 11.0340201, 48.4196679 10.0708906, 50.0127842 9.2598896, 49.4198255 11.1952648, 49.8007861 9.9500409, 49.8042227 9.9401073, 49.8016833 9.9521581, 49.8008487 9.9495065, 49.8023538 9.9484639, 49.8039340 9.9462076, 49.8016832 9.9521600, 49.8040711 9.9415613, 49.8017616 9.9429421, 49.8022170 9.9424916, 49.8033057 9.9423584, 49.8031096 9.9453756, 47.8752939 10.4026098, 47.8633560 10.4122926, 49.7986567 10.2312619, 50.0680003 10.8822450, 49.5503024 11.2688007, 49.4782605 11.0208604, 50.1507631 10.8945447, 48.0424196 10.8369763, 49.8607443 10.3813672, 49.9434533 9.8565390, 49.5417838 10.5613637, 49.9585470 9.7663805, 49.9595391 9.7650959, 49.3786586 10.1793133, 49.3767932 10.1758881, 49.3767932 10.1758781, 49.3767932 10.1758848, 49.3755384 10.1827213, 49.3762093 10.1795702, 49.3767932 10.1758815, 49.3786586 10.1793103, 49.3755376 10.1827181, 49.3772183 10.1774557, 47.8563407 10.1296254, 47.8569040 10.1353766, 47.8564406 10.1303072, 50.3608095 10.3546411, 50.3703190 10.3585862, 50.3791048 10.3732742, 49.5988014 11.0020055, 49.5971399 11.0046443, 49.5968887 11.0046436, 49.5967916 11.0047669, 50.1573638 10.5476158, 50.0185855 9.3106506, 50.2699881 11.3611322, 49.7956968 9.1574279, 49.7946620 9.9417414, 49.2360159 10.9442065, 50.0412319 11.2518353, 49.1257675 11.2687419, 49.0515267 10.9673498, 48.4724441 11.1555816, 50.0076854 10.5983304, 47.5620371 10.6940910, 47.5622933 10.6947643, 48.7362449 11.1813297, 47.7842673 10.0891458, 48.1917267 11.3744581, 49.5929601 10.9994155, 49.4506724 11.0895491, 47.5027371 11.3009433, 47.4815259 11.3571177, 47.5945458 10.0720192, 48.3825938 11.1185478, 50.0837449 9.0707465, 50.1218482 9.1290151, 50.0030759 9.4208477, 49.9256207 9.5065228, 50.0532552 9.0105856, 47.8250875 10.3377508, 49.2366324 10.4923511, 48.3108329 10.1584872, 49.6933701 9.2896788, 49.7031080 9.3017167, 49.6924824 9.1730686, 47.4926387 11.0868270, 49.6820227 9.2096023, 50.0166247 10.7766176, 50.0112161 10.8035765, 47.4940720 11.1051383, 50.1640464 10.9623428, 47.4473011 10.2391801, 47.6696072 11.1928075, 49.5615772 11.0869061, 49.9458170 9.1536517, 49.6361333 10.1434699, 49.7954103 9.9404940, 49.7954095 9.9404929, 49.7954100 9.9404913, 49.7954108 9.9404925, 47.7215596 10.5566826, 49.7863466 9.9361498, 49.7855176 9.9367566, 49.7855179 9.9367582, 49.7863509 9.9361479, 49.7863477 9.9361497, 49.7855189 9.9367578, 49.7863499 9.9361496, 49.7863509 9.9361495, 49.7855179 9.9367547, 49.7863504 9.9361512, 49.7855187 9.9367562, 49.6722786 11.1781259, 49.5147535 11.0599168, 49.5149154 11.0598238, 49.5150009 11.0602343, 49.5150581 11.0599041, 49.7867513 9.9365291, 49.7871642 9.9375666, 49.7859343 9.9388582, 49.7867503 9.9365280, 49.7867521 9.9376445, 49.7862145 9.9391909, 49.7862387 9.9375395, 49.7862153 9.9391920, 49.7867497 9.9365293, 49.7871600 9.9375648, 49.7867531 9.9376450, 49.7871631 9.9375664, 49.7867495 9.9365311, 49.7871609 9.9375667, 49.7867517 9.9376461, 49.7871598 9.9375665, 49.7871610 9.9375650, 49.7867527 9.9376466, 49.7862169 9.9391942, 49.7867506 9.9365304, 48.1050783 11.3065847, 49.7907691 9.9344337, 49.7898028 9.9354473, 49.7878385 9.9379272, 49.7907695 9.9344322, 49.7907687 9.9344352, 49.7906708 9.9343376, 49.7908044 9.9343457, 49.7907265 9.9348801, 49.7907265 9.9348823, 49.7907250 9.9348800, 49.7907258 9.9348812, 49.7888553 9.9280158, 49.7888525 9.9280146, 49.7888578 9.9280136, 49.7888627 9.9280144, 49.7888669 9.9280136, 49.7888659 9.9280138, 49.7882443 9.9325119, 49.7888585 9.9280152, 49.7893070 9.9302257, 49.7888606 9.9280148, 49.7886188 9.9283324, 49.7888631 9.9280126, 49.7888532 9.9280162, 49.7886196 9.9283311, 49.7886200 9.9283327, 49.7888663 9.9280120, 49.7888596 9.9280150, 49.7888638 9.9280142, 49.7888521 9.9280164, 49.7888574 9.9280154, 49.7888563 9.9280156, 49.7923864 9.9285144, 49.7925589 9.9280484, 49.7901921 9.9287343, 49.7923858 9.9285161, 49.7912924 9.9303975, 49.7924914 9.9334357, 49.7901910 9.9287350, 49.7925590 9.9280500, 49.7900984 9.9292869, 49.7925346 9.9308533, 49.7920112 9.9292930, 49.7935785 9.9296478, 49.7912936 9.9303974, 49.7925600 9.9280484, 49.7932061 9.9346117, 49.7923876 9.9285145, 49.7925567 9.9280500, 49.7923881 9.9285161, 49.7920122 9.9292921, 49.7925557 9.9280499, 49.7924923 9.9334366, 49.7901911 9.9287333, 49.7925567 9.9280483, 49.7912928 9.9303960, 49.7923870 9.9285161, 49.7935747 9.9296483, 49.7920103 9.9292939, 49.7925343 9.9308500, 49.7925344 9.9308516, 49.7925579 9.9280500, 49.7923772 9.9285195, 49.7932050 9.9346115, 49.7900980 9.9292852, 49.7925333 9.9308511, 49.7900973 9.9292864, 49.7925335 9.9308527, 49.7925579 9.9280483, 48.4071582 10.7242874, 49.5952579 11.0039749, 48.1759606 10.1872537, 48.3516035 11.1773410, 49.9960359 10.5460702, 49.6494931 10.4272512, 49.1311132 11.2126115, 49.7307051 9.3184515, 49.6955708 9.3096830, 49.7995986 9.9397919, 49.7995986 9.9397920, 49.2989961 10.5787577, 48.3152361 10.9105676, 48.5708865 10.4306936, 49.0680644 10.3198579, 49.0689606 10.3152672, 49.0689613 10.3152651, 49.0689599 10.3152641, 49.0680623 10.3198569, 49.0680634 10.3198574, 49.0689616 10.3152666, 49.0689602 10.3152657, 49.0680641 10.3198594, 49.0689609 10.3152636, 49.0674064 10.3202774, 49.0680691 10.3198774, 48.4601209 10.9659842, 49.1180031 10.7540594, 48.1633205 10.1201881, 49.7922637 9.9483254, 49.7930089 9.9489359, 49.7922627 9.9483265, 49.7930099 9.9489368, 49.7930080 9.9489351, 49.7922647 9.9483244, 49.7922637 9.9483236, 49.7922637 9.9483273, 49.7928082 9.9487755, 49.7898532 9.9433227, 49.7892789 9.9440666, 49.7892796 9.9440680, 49.7897006 9.9433279, 49.7897016 9.9433278, 49.7913883 9.9475148, 49.7898522 9.9433228, 49.7966267 9.9394975, 49.7967915 9.9393942, 49.7966280 9.9395002, 49.7961026 9.9401177, 49.7958722 9.9397294, 49.7967900 9.9393940, 49.7914631 9.9441426, 49.7958708 9.9397269, 49.7966260 9.9394961, 49.7914629 9.9441409, 49.7966299 9.9395043, 49.7958715 9.9397282, 49.7966292 9.9395029, 49.7914618 9.9441413, 49.7914621 9.9441430, 49.7966247 9.9394934, 49.7966241 9.9394920, 49.7967895 9.9393957, 49.7967907 9.9393953, 49.7967909 9.9393930, 49.7962096 9.9386493, 49.7963427 9.9388767, 49.7962090 9.9386480, 48.4463681 11.1109072, 48.4462480 11.1110447, 49.8018736 10.1512931, 48.5772078 10.4905003, 49.7978227 9.9385033, 49.7976682 9.9393560, 49.7988824 9.9402123, 49.7976681 9.9393507, 49.7976685 9.9393523, 49.7978221 9.9385048, 49.7973862 9.9392221, 49.7978217 9.9385004, 49.7978233 9.9385047, 49.7976671 9.9393513, 49.7988816 9.9402111, 49.7976692 9.9393555, 49.7977416 9.9418692, 49.7976678 9.9393544, 49.7980834 9.9405811, 49.7976688 9.9393539, 49.7976674 9.9393528, 49.7980845 9.9405813, 49.7926160 9.9465886, 49.7926148 9.9465885, 49.7924154 9.9448690, 49.7926315 9.9478039, 49.7926154 9.9465868, 49.7935570 9.9466037, 49.7943517 9.9466373, 49.7926164 9.9465903, 49.7924149 9.9448704, 49.7926316 9.9478023, 49.7926153 9.9465902, 49.7932395 9.9460028, 49.7924142 9.9448689, 49.7932392 9.9460043, 49.7935581 9.9466035, 49.7943507 9.9466375, 49.7926142 9.9465901, 48.5449365 10.8512596, 48.5449379 10.8512573, 48.5449372 10.8512585, 48.5448166 10.8512625, 47.6978718 10.3244047, 49.8213947 11.3136234, 49.3983962 10.5127273, 49.3990800 10.5131906, 49.7797573 9.8779032, 49.7797971 9.8778845, 49.7797835 9.8778902, 49.7797695 9.8778967, 49.7797941 9.8781370, 49.7848704 9.8816363, 49.7848715 9.8816359, 47.7705856 11.3174944, 48.4422191 10.9365381, 48.4455951 10.9653992, 48.4548947 11.0057076, 49.5959844 11.0033360, 50.0896982 10.5675728, 49.5838431 11.0094163, 50.3542407 10.5183849, 50.2793921 10.4262507, 48.2005479 11.3085417, 47.9862377 10.1803043, 50.1003243 9.2700884, 48.5839393 11.0900128, 49.4364865 10.9746967, 49.5579890 11.3411660, 49.5579971 11.3411597, 49.5572334 11.3415166, 49.5572321 11.3415180, 49.5582233 11.3409457, 49.5594751 11.3408029, 49.5604712 11.3407820, 49.5589938 11.3404077, 49.5583436 11.3404497, 49.5577582 11.3399783, 49.5585840 11.3406609, 49.5584189 11.3405005, 49.5584259 11.3405053, 49.5594771 11.3407944, 49.5604659 11.3407875, 49.5604708 11.3407872, 49.5604663 11.3407817, 50.2571790 10.0620673, 48.2126195 11.3374382, 48.8403993 10.4941533, 48.8417958 10.4918787, 49.6446348 9.8766831, 47.9842362 10.1778101, 48.8457640 10.4830272, 47.4793650 11.0207555, 49.4503458 11.0625646, 49.4503311 11.0626034, 49.4564236 11.0939156, 49.4564073 11.0939222, 49.4666635 11.0960817, 49.4564158 11.0939191, 49.4666480 11.0961021, 49.4531051 11.0889258, 49.4531159 11.0890155, 49.4515650 11.0737476, 49.4451835 11.0701178, 49.4531034 11.0889267, 49.4531047 11.0889332, 49.4531054 11.0889272, 49.4531059 11.0889298, 49.4531062 11.0889312, 49.4531167 11.0890194, 49.4531171 11.0890163, 49.4531172 11.0890220, 49.4531174 11.0890234, 49.4531179 11.0890160, 49.4531179 11.0890261, 49.4531182 11.0890174, 49.4531187 11.0890201, 49.4531190 11.0890213, 49.4531195 11.0890240, 47.5807355 10.5575467, 48.4061678 10.0436362, 50.4578393 10.2328439, 49.5402175 11.0439096, 47.5701985 10.5947854, 47.5702330 10.5947204, 47.5040513 11.2786897, 47.5538725 10.7902108, 49.4534629 11.0604342, 49.4534632 11.0604329, 49.4534638 11.0604303, 49.4534638 11.0604346, 49.4534641 11.0604290, 49.4534653 11.0604325, 49.4534659 11.0604299, 49.4534662 11.0604286, 49.4535567 11.0605329, 49.4535572 11.0605302, 49.4535587 11.0605323, 49.4535590 11.0605310, 47.8774590 11.0274014, 49.0667847 10.3168722, 48.3823871 11.3496783, 49.3756375 11.2127250, 47.4376224 11.2612534, 49.3811301 11.2026228, 49.7606167 9.9772922, 49.7848282 9.9380024, 49.7848733 9.9380623, 49.7916590 9.9457111, 49.7865810 9.9384816, 49.7865828 9.9384844, 49.7879758 9.9398772, 49.9873489 9.2780503, 49.7318034 9.9202857, 49.7318921 9.9202117, 49.7319749 9.9203380, 50.1398487 11.0918818, 47.7064576 11.3975548, 48.6114773 10.5668229, 48.6111031 10.5659055, 48.7160743 10.7775891, 49.8494694 9.4069936, 48.9567005 10.9079175, 48.7331262 11.1759620, 48.7389356 11.1886864, 48.7385744 11.1815885, 48.3507189 10.9354257, 49.7910101 9.9334762, 49.7910066 9.9334875, 49.7985360 9.9266653, 49.4936387 10.6569926, 49.9455720 11.1648235, 49.9495296 9.8874687, 49.6755114 10.1517058, 49.4277234 11.0439324, 47.9837290 11.0930118, 48.4584409 10.9817936, 49.5501746 10.8786893, 48.3482984 10.9104624, 49.9990882 10.5617959, 48.9677056 10.9237975, 48.9774526 10.9561557, 48.9602673 10.9498042, 48.9400641 10.9801333, 49.0155349 11.1311859, 48.4585333 11.1335081, 49.9020566 10.3449565, 50.4025312 10.0065915, 50.4005600 10.0107167, 50.4051246 10.0055267, 48.0044368 10.5885381, 50.0114300 9.8014000, 50.0118500 9.7982600, 49.4495822 11.0617262, 48.4024034 11.0551394, 48.9886198 11.2887496, 48.9850995 11.0831851, 48.9820014 11.0891933, 48.9834097 11.0900086, 49.7844007 9.9375790, 49.7844180 9.9374878, 49.7838096 9.9396762, 49.7385288 10.7390450, 50.0999797 9.8392708, 49.7383173 11.0597508, 49.7255739 11.0584660, 49.9745379 9.1831466, 47.9916650 10.7829274, 49.7010799 10.0000174, 48.4487679 11.0832494, 48.2178130 11.0196429, 49.4042504 10.4761430, 49.4531042 11.0889304, 49.4584844 11.0955008, 49.4401820 11.0693832, 49.4524574 11.0663503, 49.4524577 11.0663502, 49.4524575 11.0663504, 49.4524573 11.0663505, 49.4401816 11.0693824, 49.4584792 11.0954932, 49.4493192 11.0630722, 49.4477206 11.0858440, 49.4493243 11.0630823, 49.4477262 11.0858490, 49.4442885 11.0906328, 49.4584813 11.0955080, 49.4584751 11.0955004, 47.5088882 10.2795297, 48.0976185 10.5417693, 48.3445324 10.9353458, 48.3718037 10.8963094, 48.3718041 10.8963083, 49.9773664 9.1516409, 49.9773665 9.1516401, 49.9773668 9.1516416, 49.9773669 9.1516408, 49.9773673 9.1516416, 49.9777012 9.1523025, 49.9777018 9.1523036, 49.5406982 11.1029197, 49.5830074 11.0720065, 49.5806680 11.0408936, 49.5669690 11.0434983, 49.6641607 10.4608530, 49.6640174 10.4609621, 49.2873631 10.2624581, 49.2904965 10.2630052, 47.9253148 10.2440388, 48.2660784 10.2865057, 49.3143601 10.2962603, 49.8558808 9.3997297, 49.3906754 10.1958029, 49.7226741 10.2643905, 47.8047485 10.2133142, 49.0248904 11.0046911, 49.6009390 11.0027339, 49.6009409 11.0027339, 48.0715754 11.0005879, 48.7892575 10.6710487, 50.3053524 10.0213184, 49.9748497 9.1456239, 49.9761683 9.1475690, 49.9748492 9.1456249, 49.9761684 9.1475702, 49.9748468 9.1456262, 49.9748473 9.1456251, 48.4284030 10.8789123, 49.9769927 9.1484309, 49.9786284 9.1435443, 49.9743789 9.1488575, 49.9763387 9.1472780, 49.9769931 9.1484317, 49.9743817 9.1494905, 49.9743790 9.1488557, 49.9763385 9.1472795, 49.9769935 9.1484325, 50.2324713 9.7972070, 50.2274987 9.8015171, 50.2125796 9.8078351, 48.0292035 11.3673827, 47.5983444 10.9056374, 50.0609693 10.1301670, 49.7956233 9.9339097, 49.7943732 9.9355099, 49.7893753 9.9303739, 47.8013284 10.3537356, 48.7435414 11.2146671, 48.3609968 10.0706280, 49.9732320 9.1562722, 49.9725473 9.1460345, 49.9725481 9.1460355, 49.7811895 9.8754454, 50.0463306 10.2422178, 50.1262114 10.1323272, 50.1260980 10.1320650, 48.0456871 10.4243348, 49.9599944 9.1674078, 49.9790176 9.1378227, 49.9785802 9.1497577, 49.9785782 9.1497577, 49.9790183 9.1378214, 49.9767006 9.1434450, 49.9790189 9.1378227, 49.9785791 9.1497594, 49.9785792 9.1497560, 50.0655070 8.9917370, 49.7878584 9.1558536, 47.4803785 11.2396359, 50.1823681 10.8135295, 48.1134041 11.3410235, 49.7965388 9.9259564, 48.6382488 10.6026814, 48.6364553 10.6022821, 47.8459739 11.0299188, 48.9024263 11.0894232, 49.9183578 10.9061724, 50.0927176 10.2708298, 49.3664352 11.2626077, 48.9299739 10.9695181, 49.6439302 11.1185170, 49.7288907 10.5445346, 50.0431869 10.2304967, 48.3731122 11.0959923, 48.1948518 11.2632927, 48.3674891 10.8956788, 49.4710348 11.0172151, 49.4482963 11.0654784, 49.6449426 9.2199396, 49.4019599 10.7243349, 48.3884186 11.0874478, 49.6443425 9.2223859, 48.9995875 11.1062950, 49.5075741 11.2794565, 49.5075692 11.2794307, 49.9040712 10.0964998, 49.8999822 10.3506192, 49.7067822 11.2546397, 48.8755548 11.0741983, 49.8989204 10.3485227, 50.0438223 10.7182321, 49.9710536 10.6694916, 49.9927820 10.2724251, 50.3199349 9.8181952, 49.6775007 9.2831816, 49.2258187 10.7269246, 47.6764419 11.2029616, 47.8976158 10.1161598, 47.5433929 11.2602180, 47.5456150 11.1901578, 48.3629733 11.3766216, 48.0332314 10.8505875, 48.0504475 10.8407146, 48.0512785 10.8382489, 49.0317249 10.9702087, 49.0288485 10.9765390, 49.2530850 10.2873176, 48.3660798 10.5426582, 49.0672016 10.3182782, 48.2819649 10.4691847, 48.0397151 10.6712233, 48.0397779 10.6716756, 48.0376793 10.6702097, 48.2080415 11.3280417, 48.2938012 10.5326323, 49.1183797 10.5112172, 48.2682720 10.8311403, 49.9623399 9.7641774, 49.9507522 9.7745789, 49.9637858 9.7667119, 49.9616515 9.7655693, 48.4469411 11.3697748, 47.9896092 10.2211251, 50.2402778 11.3295013, 50.2400089 11.3309472, 50.2400775 11.3305492, 50.2420709 11.3255233, 50.2436831 11.3267968, 50.2196977 11.3987597, 50.4578976 10.2329456, 50.4578896 10.2329456, 50.3030761 9.7476418, 50.1942822 10.6110828, 47.7519132 11.3848791, 49.6863612 9.3993521, 48.5425532 10.3670806, 47.7608912 11.3675691, 50.0592964 9.1596910, 49.4157478 10.4227010, 49.7241634 9.2409054, 47.7015705 10.8621710, 49.3968059 11.1278651, 50.2218353 10.9932877, 48.9408492 10.8784575, 50.0565964 9.1861550, 50.0255150 9.1374128, 48.3240544 10.0342428, 50.0684138 9.1656524, 48.1724711 11.3529224, 48.1702901 11.3469862, 47.9236504 10.2009795, 50.0865298 9.1787008, 50.0405996 9.0362219, 49.8855053 9.5033148, 49.0685405 10.3203314, 49.2326295 10.4983887, 49.5987299 11.0016811, 49.5988956 11.0026301, 49.5983989 11.0036510, 49.5973770 11.0037953, 49.5987648 11.0017626, 50.1308000 11.1931820, 49.7499727 10.7151562, 47.7662459 11.3545036, 47.5131534 10.2811172, 50.0217974 10.2872572, 47.6754400 11.2956900, 47.6876698 10.2237825, 49.9069836 9.1851497, 49.8969451 10.8933052, 49.8969456 10.8932892, 49.8969507 10.8932892, 49.8969512 10.8933052, 49.8969554 10.8932965, 47.7241898 11.3330424, 49.5112840 11.2673024, 49.8656684 10.2261271, 47.9211629 10.1968668, 47.9222934 10.1969431, 48.3523550 10.7783064, 49.6968099 9.2904544, 49.4727828 10.9965678, 50.2315125 10.1285988, 50.2154166 10.1061328, 50.2199739 10.1240065, 50.2192293 10.0709196, 49.6822003 10.7493616, 50.2291221 10.0680234, 50.2147990 10.0712437, 49.7473544 9.7471269, 49.7424355 9.7884651, 49.7517957 11.0171610, 48.2303716 10.2437234, 48.3219706 10.2550666, 49.6340042 10.0058935, 49.9291852 9.3172036, 49.9371729 9.3200000, 49.9269525 11.3549264, 50.0840956 9.0678119, 47.7560386 11.3712235, 47.4002496 10.2313689, 48.1896178 11.3769465, 50.2150235 10.1133531, 50.2151945 10.1124769, 49.7231095 10.1391110, 48.3215960 11.0624198, 48.0056348 10.5955372, 48.0056341 10.5955395, 50.3968608 11.3806574, 48.0048596 10.5921851, 48.4550335 10.2790713, 48.3734032 10.7153377, 49.5590766 10.5376811, 48.3821693 10.9164524, 48.3755451 10.9126382, 48.3787052 10.9148289, 48.3806235 10.9196180, 48.3798364 10.9193885, 50.0609676 10.1303709, 48.3944011 10.6846006, 47.6318743 10.8479931, 49.3104025 10.7474303, 49.3114182 10.7427415, 49.3128363 10.7489620, 49.3129214 10.7517562, 49.3134846 10.7537065, 49.3132281 10.7576374, 49.3160514 10.7638064, 49.3182058 10.7553204, 49.3181207 10.7539089, 49.3180956 10.7535272, 49.3111723 10.7513721, 47.9437865 10.5429952, 49.1039273 10.8248300, 49.0977086 10.8479753, 49.1001932 10.8195096, 49.0970011 10.8246621, 49.0993755 10.8212193, 49.1091955 10.8569870, 49.1042722 10.8744423, 49.0873450 10.8434569, 49.1056650 10.8382545, 49.1106013 10.8449001, 49.1103892 10.8343279, 49.1086755 10.8549659, 49.1101771 10.8286373, 47.7548474 11.3815290, 49.9724525 9.1439223, 49.9790226 9.1378212, 49.9744105 9.1450316, 49.9724526 9.1439258, 49.9790220 9.1378212, 47.5982667 9.8878078, 47.5999444 9.8886482, 50.1283776 10.2318243, 48.4620696 10.3042233, 50.2757873 10.0714887, 48.2674492 10.9880065, 47.8703457 10.6855447, 48.1996131 10.1141067, 47.4301379 11.0557024, 47.4283769 11.0525651, 47.7351928 10.9657286, 49.6406122 10.7058179, 49.6411055 10.7043454, 49.6293356 10.7376679, 49.6437959 10.7521584, 49.5931764 10.7149938, 49.6579686 11.0322093, 49.6579675 11.0322081, 47.4427498 11.2586296, 47.4374220 11.2556948, 47.4398775 11.2516538, 47.4418858 11.2602535, 47.4420829 11.2603478, 47.4424439 11.2603156, 49.8438597 10.3548132, 47.4424049 11.2627877, 49.7379389 10.1591361, 49.7728067 10.1510291, 49.7728046 10.1510238, 49.7728010 10.1510236, 49.7728020 10.1510273, 49.7393613 10.1628978, 49.7393735 10.1629151, 49.7388099 10.1596887, 49.7388102 10.1596893, 49.7403828 10.1627422, 49.7377629 10.1576037, 49.7377632 10.1576043, 49.7377625 10.1576042, 49.7369329 10.1577430, 49.7369007 10.1597148, 49.7369327 10.1577412, 49.7369334 10.1577446, 49.7368936 10.1597194, 49.7369317 10.1577431, 49.7367102 10.1553543, 49.8901108 10.9048146, 49.4386923 11.2864715, 47.6566573 10.7402635, 48.3608307 11.0377118, 49.0056337 11.3948805, 49.9884166 9.7038836, 48.0720857 11.2470032, 49.6165896 10.7466318, 50.0861120 9.0717460, 47.5225762 10.3009924, 49.0231785 10.9813831, 48.3080951 10.9049833, 49.8650241 10.9094537, 49.4630199 11.0926023, 48.9771575 11.3099772, 49.0592996 10.7136422, 49.9209204 10.1776032, 49.9123832 10.4447156, 49.5749826 10.8224474, 49.5998671 10.8262668, 49.5847647 11.0087008, 49.8060508 11.2679194, 49.7013103 9.2420373, 49.7037941 9.2349144, 50.0537568 10.2950898, 49.9323630 9.4996130, 47.7546501 11.3789284, 47.7525873 11.3769957, 50.0631460 10.9453696, 49.9314404 9.1235922, 49.5920450 10.8953413, 49.6147503 10.9024564, 49.2554159 10.9561703, 49.2630079 10.9821636, 49.5998614 11.0030750, 49.5998611 11.0030717, 49.5998627 11.0030697, 48.4444018 10.2835471, 48.4497159 10.2926985, 49.4585430 11.0701094, 49.4596806 11.0731091, 49.4596810 11.0731107, 49.4596817 11.0731086, 49.4596821 11.0731101, 49.6453199 10.8917915, 49.6366925 10.9011188, 48.2635425 11.3427815, 49.4439681 11.0781443, 49.4439692 11.0781443, 47.5769581 10.8374392, 49.3856168 11.3552493, 49.8084768 9.9289677, 49.5294778 10.8689857, 48.0762565 10.8135396, 49.8661383 10.5377768, 48.9465050 11.3892559, 50.3509330 10.2568067, 50.3555292 10.2549208, 47.4140270 10.0734742, 49.6006383 11.0105320, 49.6006383 11.0105320, 48.0713042 11.3933913, 48.0572965 11.4027904, 48.3966392 10.0022522, 48.3930651 9.9966859, 48.3933163 10.0027693, 49.9876556 9.2391206, 49.9873068 9.2378425, 49.9326463 10.5576241, 50.0171216 10.5498411, 50.3333866 11.1307086, 49.4844720 10.7963617, 50.1988116 10.3203580, 50.1574888 10.1247070, 47.8942697 10.2221066, 50.1556353 10.1057526, 50.1579603 10.1236691, 50.3961475 9.7730581, 47.7506223 11.3071895, 49.7633012 9.9412600, 49.7634468 9.9443058, 49.7634416 9.9442544, 47.6219171 11.3493584, 49.8810182 9.2431912, 50.0785020 9.3374818, 49.2971995 10.5986342, 49.4472562 11.0721951, 49.2214031 10.2032051, 49.9916143 9.1223752, 49.4471882 11.0748431, 49.4439377 11.1058670, 49.4051771 11.1602517, 49.4344809 11.0826485, 49.7503015 10.9073390, 49.9646381 10.6962302, 49.6941028 10.7218950, 50.2723903 10.4116010, 47.7771843 10.1273307, 48.0056471 10.3563100, 49.7653436 9.5229885, 48.1969376 10.6769089, 48.3575820 10.8800179, 49.9040764 11.0311000, 47.7155084 10.3234417, 49.4390879 11.1394627, 49.8829364 9.5814255, 50.1977423 10.0947113, 48.3869392 10.8665406, 48.4441900 11.1327054, 48.1026976 10.8452652, 47.6613522 11.2092731, 48.0263618 10.8448269, 48.8870984 10.4688551, 49.6695229 10.1503714, 47.6766571 11.2022534, 49.6097897 10.7076412, 49.3375569 10.7891695, 47.9107077 10.5744731, 48.0261191 10.8449821, 50.5222310 10.0713603, 50.2544924 10.0620117, 50.3707322 9.9786099, 49.4023947 11.1359481, 49.8978821 10.2241692, 48.0817897 10.8647284, 49.4496586 10.3195263, 50.0041223 9.8215264, 49.3007818 11.1215015, 49.1178053 10.7597381, 48.2453585 10.8031322, 49.8271514 9.4032808, 47.9097955 11.2828365, 47.8020182 11.0755800, 50.3469859 11.2885524, 50.1624704 10.0762669, 48.3544361 10.7850744, 50.0359820 9.1105180, 48.3690408 10.8979315, 48.2877576 10.6569992, 48.2732334 10.7950809, 49.4775242 10.4315299, 49.4781350 10.4334320, 49.4797158 10.4345936, 49.4768152 10.4347418, 49.0882021 11.2207869, 48.3795474 10.9231729, 47.5983597 11.1854580, 49.3129005 10.7517637, 50.3634528 11.3172443, 49.3028908 10.5524927 +48.8649321 2.2883111, 48.8841082 2.3224492, 48.8538346 2.3644665, 48.8420145 2.3302544, 48.8296478 2.3789647, 48.8687291 2.3014159, 48.8698436 2.3061758, 48.8411414 2.3136506, 48.8390983 2.2821736, 48.8450445 2.3104567, 48.8474933 2.3107909, 48.8431492 2.3040014, 48.8431097 2.3128917, 48.8592377 2.3714158, 48.8749086 2.3407659, 48.8312357 2.3775548, 48.8902005 2.3757322, 48.8442816 2.3244689, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8701182 2.3328493, 48.8838961 2.3274356, 48.8650286 2.3978764, 48.8749608 2.3892009, 48.8853087 2.2914432, 48.8326928 2.3011680, 48.8367477 2.3065081, 48.8896590 2.3042630, 48.8841050 2.3049810, 48.8835710 2.3045840, 48.8485190 2.3493440, 48.8312382 2.3775605, 48.8778905 2.3549883, 48.8359858 2.3961013 +yes +en:William Chambers (publisher) +6 +21 +55.9575800 -3.1847940, 55.9491314 -3.1876537, 55.9757878 -3.2301721, 55.9621811 -3.2003284, 55.9526181 -3.1750774, 55.9471770 -3.1904575, 55.9254145 -3.2090883, 55.9764403 -3.1701500, 55.9504129 -3.2949801, 55.9601603 -3.2006854, 55.9299490 -3.2096090, 55.9592433 -3.2230171, 55.9481079 -3.1917724, 55.9034567 -3.1574061, 55.9808227 -3.2245927, 55.9479318 -3.1942157, 55.9166326 -3.2276420, 55.9467615 -3.2168254, 55.9524553 -3.1968363, 55.9501797 -3.1870275, 55.9428645 -3.2037697, 55.9484729 -3.1956543, 55.9478512 -3.2019348, 55.9452311 -3.1921670, 55.9449743 -3.1941250, 55.9701331 -3.1723584, 55.9411858 -3.2034013, 55.9558388 -3.1571446, 55.9250843 -3.2616025, 55.9473220 -3.2061120, 55.9382464 -3.1945920, 55.9356972 -3.2104575, 55.9457633 -3.2087758, 55.9458760 -3.2095814, 55.9464641 -3.2365646, 55.9308474 -3.2091419, 55.9461542 -3.1854391, 55.9057145 -3.2240658, 55.9618166 -3.1524945, 55.9499117 -3.2074257, 55.9380654 -3.1900489, 55.9164262 -3.2851068, 55.9724535 -3.2516505, 55.9626190 -3.2334642, 55.9459369 -3.2194891, 55.9520610 -3.1917849, 55.9491345 -3.1940862, 55.9513741 -3.1884100, 55.9527128 -3.2015822, 55.9282565 -3.2096375, 55.9518891 -3.1996221, 55.9520193 -3.2031623, 55.9509410 -3.2098198, 55.9553246 -3.1925314, 55.9490742 -3.1925402 +Tesla Motors Inc., evolt +Glasgow Airport, Edinburgh Airport, Perth Airport, Fife Airport, RM Condor, East Fortune airfield, Winfield Aerodrome (RAF Winfield/Horndean), East Lochlane Farm, Strathaven, Kingsmuir, Midlem, Charterhall Airfield (RAF Charterhall), Milfield Airfield (Borders Gliding Club), Kirknewton, Dundee Airport, RAF Leuchars, Cumbernauld Airport, Nether Huntlywood Airfield, Glasgow International Airport +yes ++33 1 42 26 39 95 +61 +yes +17 +48.8536740 2.4053556, 48.8394601 2.3890683 +Musée en Herbe and http://www.musee-en-herbe.com/, Musée en Herbe, Môm'artre, Studio des Islettes, Maison Européenne de la Photographie and http://www.mep-fr.org, Centre d'animation Reuilly, Conservatoire municipal Claude Debussy - Site de la Jonquière and http://equipement.paris.fr/conservatoire-municipal-claude-debussy-site-la-jonquiere-3976, Atelier de Restauration et de Conservation des Photographies de la Ville de Paris and http://www.paris.fr/politiques/conservation-restauration/atelier-de-restauration-et-de-conservation-des-photographies-de-la-ville-de-paris/p7672#, Le Local, Espace Château Landon and http://crl10.net/, Barbara Fleury and http://www.fgo-barbara.fr, ADAC, Le Lucernaire, La Générale Nord-Est and http://lagenerale.fr/, Le 100, Le Chantier, Le Plateau, La Bellevilloise and http://www.labellevilloise.com, Centre culturel italien, Centre Culturel la Jonquière, Shakirail and http://shakirail.blogspot.fr, La Péniche cinéma, cité des arts, La Métisse, Conservatoire municipal Jean-Philippe Rameau, Antenne FRAC Île-de-France, FRAC Antenne culturelle, Centre culturel franlasie, Conservatoire libre du cinema francais, Centre culturel Pouya, Auditorium, La scène du canal, Galerie Xippas and http://www.xippas.net/, Bétonsalon and http://www.betonsalon.net/, Galérie Artes, La Manufacture 111 and http://www.manufacture111.com/, Collège des Bernardins, Conservatoire du Centre and http://equipement.paris.fr/conservatoire-municipal-w-a-mozart-1595, Centre Georges Pompidou, Centre Wallonie-Bruxelles and http://www.cwb.fr/, Espace des Blancs-Manteaux, La Gaîté lyrique and http://www.gaite-lyrique.net/, Espace Jemmapes and http://www.crl10.net/, Conservatoire Hector Berlioz, Institut hongrois, Galerie J. Kugel, Grande Halle de la Villette and http://www.villette.com/fr/villette-pratique/acces/la-grande-halle.htm, Cours Florent and http://www.coursflorent.fr, WIP Villette and http://lavillette.com/agenda/#lieu=107#, Espace Fondation EDF, Conservatoire Municipal Nadia et Lili Boulanger and equipement.paris.fr/Conservatoire Municipal Nadia et Lili Boulanger, Conservatoire municipal Georges Bizet, Pavillon Carré de Baudouin, Le BAL and http://www.le-bal.fr/, Centre d'Animation "Les Abbesses" and http://equipement.paris.fr/centre-d-animation-les-abbesses-1154, Maison des ensembles and http://ligueparis.org/, La Maison des Cinq Sens, Conservatoire Francis Poulenc, Centre Culturel Irlandais and http://www.centreculturelirlandais.com/, Maison de l’Amérique latine and http://mal217.org/, Maison des Pratiques Artistiques Amateurs, Point - Afrique, Centre Culturel Suédois and www.si.se/Paris/, Ancien Conservatoire Maurice Ravel, Le Cent Quatre and http://www.104.fr/, Institut culturel italien and http://www.iicparigi.esteri.it, Espace Louise Michel and http://www.espacelouisemichel.net/, Maison des Métallos +28 +45 +no +5 +49.4095083 8.7002566 +eldoRADo, Call a Bike, Heidelberg Altstadt - Universitätsplatz, Heidelberg Neuenheim - Neckarwiese, VRNnextbike, Heidelberg Hauptbahnhof Nord, Heidelberg Hauptbahnhof Bahnstadt, Heidelberg S-Bahnhof Schlierbach/Ziegelhausen, Heidelberg Ziegelhausen-Neckarschule, VRNnextbike Altstadt - Stadthalle, Heidelberg S-Bahnhof Weststadt/Südstadt, Heidelberg Rohrbach-Markt, Heidelberg Altstadt - Bismarckplatz, Heidelberg Bahnstadt - Halle 02, Heidelberg Handschuhsheim - Hans-Thoma-Platz, Heidelberg Neuenheimer Feld - Jahnstraße, Heidelberg Neuenheimer Feld - Zoo, VRNnextbike +Sorbas, Knossos, Griechische Taverne, Hellas Restaurant (DJK), Goldener Stern, Poseidon, Delphi, Sirtaki, Gasthaus zur Krone, Olympia, Goldener Hirsch +48.8242374 2.3651653, 48.8435771 2.3052604, 48.8359056 2.2906833, 48.8430494 2.2981600, 48.8461616 2.3241905, 48.8660551 2.3469571, 48.8668672 2.3470957, 48.8379645 2.2582370, 48.8693722 2.3551317, 48.8703138 2.3531191, 48.8578111 2.3009135, 48.8660881 2.3521709, 48.8729563 2.3536136, 48.8573257 2.4029932, 48.8550047 2.4015490, 48.8533252 2.4057615, 48.8632178 2.3862480, 48.8785823 2.3740899, 48.8435833 2.3907880, 48.8739440 2.3578940, 48.8391900 2.3005803, 48.8366855 2.2949206, 48.8364090 2.2951587, 48.8457189 2.2873474, 48.8302437 2.3285915, 48.8534094 2.3325318, 48.8640484 2.3781979, 48.8618833 2.3805698, 48.8635050 2.3812718, 48.8408293 2.3232300, 48.8400818 2.3221697, 48.8584026 2.3805695, 48.8506007 2.3901866, 48.8710687 2.3598052, 48.8519157 2.4010889, 48.8515486 2.4016481, 48.8293046 2.3221365, 48.8520153 2.4060609, 48.8671786 2.3728849, 48.8688236 2.3748271, 48.8697228 2.3737877, 48.8726943 2.3713664, 48.8751312 2.3709212, 48.8703436 2.3710041, 48.8712192 2.3743429, 48.8702035 2.3720916, 48.8685117 2.3689699, 48.8668428 2.3671981, 48.8662696 2.3794340, 48.8321341 2.3623851, 48.8485694 2.3787232, 48.8479031 2.3773962, 48.8860129 2.3833794, 48.8864748 2.3822447, 48.8690474 2.3715118, 48.8740289 2.3897101, 48.8366300 2.2819160, 48.8833914 2.3203401, 48.8862586 2.3189581, 48.8820706 2.3158281, 48.8284320 2.2732128, 48.8336263 2.3216697, 48.8410303 2.3944134, 48.8377043 2.4014006, 48.8351529 2.3027945, 48.8357133 2.4054545, 48.8357197 2.3963937, 48.8343203 2.3972498, 48.8378906 2.2979809, 48.8771503 2.4022052, 48.8763846 2.4060939, 48.8299505 2.3776687, 48.8269249 2.3424698, 48.8268200 2.3384839, 48.8283835 2.3440786, 48.8395966 2.4017107, 48.8520958 2.4021108, 48.8262033 2.3651094, 48.8313155 2.3153662, 48.8550706 2.3730736, 48.8646989 2.3689158, 48.8595538 2.3756962, 48.8567374 2.3795945, 48.8386023 2.3899562, 48.8512672 2.3756832, 48.8462858 2.3789688, 48.8470868 2.3861179, 48.8462086 2.3834450, 48.8490537 2.3788229, 48.8461979 2.3881729, 48.8513978 2.3785907, 48.8437369 2.3894678, 48.8736510 2.3850793, 48.8377927 2.3194776, 48.8462369 2.3724753, 48.8467907 2.3759445, 48.8510882 2.3764471, 48.8490575 2.3729688, 48.8233963 2.3660652, 48.8461821 2.3751034, 48.8744523 2.3285538, 48.8199911 2.3437577, 48.8220297 2.3464764, 48.8548362 2.3059829, 48.8222882 2.3417753, 48.8471183 2.3177609, 48.8926270 2.3164456, 48.8893428 2.3196669, 48.8893257 2.3220647, 48.8940309 2.3284232, 48.8935528 2.3274406, 48.8834040 2.2884410, 48.8848994 2.2911875, 48.8337371 2.3998182, 48.8351017 2.3851690, 48.8270785 2.3688229, 48.8951731 2.3400219, 48.8332618 2.3645563, 48.8927822 2.3303046, 48.8850861 2.3471124, 48.8855550 2.3755636, 48.8364139 2.3105400, 48.8662254 2.4059181, 48.8534793 2.3370935, 48.8447404 2.3092568, 48.8763021 2.3355074, 48.8649249 2.3544512, 48.8738710 2.3754889, 48.8700969 2.3945662, 48.8722766 2.3763389, 48.8728028 2.3789649, 48.8723774 2.3784509, 48.8618006 2.3438339, 48.8663061 2.3318256, 48.8422494 2.2900049, 48.8759245 2.3823198, 48.8783630 2.3696321, 48.8694087 2.3369641, 48.8689441 2.3434176, 48.8552497 2.3597644, 48.8656221 2.3559687, 48.8783342 2.3857466, 48.8468100 2.3418230, 48.8717130 2.3682830, 48.8621132 2.3848859, 48.8815464 2.3661885, 48.8798290 2.3723974, 48.8405772 2.3392592, 48.8337841 2.3146240, 48.8325723 2.3127820, 48.8855543 2.3653665, 48.8636364 2.3997071, 48.8615308 2.4000364, 48.8621754 2.4002743, 48.8673909 2.3573668, 48.8661339 2.3578607, 48.8704507 2.3578003, 48.8777945 2.3400334, 48.8742543 2.3635929, 48.8416628 2.3323403, 48.8371033 2.3917926, 48.8943889 2.3145247, 48.8429214 2.3381927, 48.8743428 2.3197727, 48.8772158 2.3147005, 48.8229259 2.3277884, 48.8707106 2.3061618, 48.8373218 2.3543022, 48.8239530 2.3266592, 48.8883400 2.3921657, 48.8217929 2.3436401, 48.8416145 2.3175566, 48.8408856 2.2974421, 48.8701333 2.3495998, 48.8499722 2.3232975, 48.8497758 2.3813180, 48.8334864 2.3445710, 48.8385482 2.2902657, 48.8483679 2.3757997, 48.8401874 2.3127630, 48.8496593 2.2729682, 48.8763190 2.4041304, 48.8263277 2.3267355, 48.8525562 2.2684402, 48.8233144 2.3271600, 48.8264267 2.3119759, 48.8458418 2.2556708, 48.8303958 2.3431605, 48.8478014 2.2647346, 48.8559854 2.2707171, 48.8607422 2.3534344, 48.8260056 2.3515668, 48.8379482 2.2960836, 48.8515538 2.2912722, 48.8193588 2.3600138, 48.8730992 2.3177685, 48.8848656 2.3798975, 48.8269011 2.3681963, 48.8266216 2.3691514, 48.8749701 2.2864190, 48.8755077 2.2840744, 48.8489245 2.2975729, 48.8435721 2.3826812, 48.8517920 2.2773520, 48.8384314 2.2895621, 48.8568548 2.3944791, 48.8575572 2.3931327, 48.8475297 2.3898249, 48.8740981 2.3550319, 48.8544407 2.3918923, 48.8412491 2.3892957, 48.8366273 2.4025423, 48.8445942 2.3097624, 48.8448583 2.3098727, 48.8818286 2.3399461, 48.8645595 2.3724031, 48.8701408 2.3549354, 48.8759426 2.3938847, 48.8457306 2.3127227, 48.8386983 2.2904723, 48.8647366 2.3858705, 48.8550011 2.3728622, 48.8228387 2.3589304, 48.8481890 2.2839192, 48.8730539 2.3622468, 48.8460628 2.3516351, 48.8935894 2.3802035, 48.8939632 2.3834919, 48.8571945 2.3694425, 48.8535594 2.3882434, 48.8715470 2.3362608, 48.8453338 2.2971759, 48.8832160 2.2880960, 48.8242287 2.3584557, 48.8300211 2.3348369, 48.8444692 2.2876673, 48.8847157 2.3871100, 48.8839815 2.2936123, 48.8797902 2.2912630, 48.8483965 2.3521999, 48.8442494 2.3838139, 48.8465937 2.4012442, 48.8470404 2.4068547, 48.8392119 2.3946987, 48.8469029 2.4084295, 48.8711992 2.3244204, 48.8622321 2.2761349, 48.8933957 2.3335323, 48.8321025 2.3445967, 48.8377768 2.3074246, 48.8654991 2.3352993, 48.8710326 2.3446806, 48.8745823 2.3546682, 48.8792964 2.3574736, 48.8844429 2.3757783, 48.8827316 2.3716320, 48.8678917 2.3455591, 48.8710189 2.3207761, 48.8414253 2.2875706, 48.8367077 2.3729356, 48.8529778 2.4083287, 48.8664526 2.3338680, 48.8602942 2.4091403, 48.8454572 2.3809648, 48.8332559 2.3312348, 48.8413560 2.3264560, 48.8686611 2.3679433, 48.8393830 2.2575770, 48.8307032 2.3180543, 48.8271015 2.3092145, 48.8416102 2.2591204, 48.8945974 2.3446122, 48.8940080 2.3420130, 48.8937791 2.3480902, 48.8935420 2.3422190, 48.8249519 2.3198800, 48.8688189 2.3633322, 48.8678673 2.3841136, 48.8421866 2.3495998, 48.8564343 2.3736941, 48.8913020 2.3518900, 48.8328413 2.2890914, 48.8791372 2.3927158, 48.8292969 2.3577990, 48.8527454 2.4068874, 48.8553674 2.3883285, 48.8571922 2.3907193, 48.8391613 2.2999088, 48.8579949 2.3996680, 48.8846545 2.3473544, 48.8358959 2.4026305, 48.8418462 2.2668066, 48.8818036 2.3371365, 48.8773306 2.3392579, 48.8654195 2.3683698, 48.8692686 2.3627671, 48.8792242 2.3541252, 48.8709994 2.3527672, 48.8711421 2.3527095, 48.8726855 2.3544641, 48.8279376 2.3215185, 48.8479415 2.2739662, 48.8479031 2.2725737, 48.8502929 2.2705326, 48.8758146 2.3429249, 48.8776783 2.3950607, 48.8421533 2.3628939, 48.8861169 2.3918493, 48.8879982 2.3487210, 48.8887877 2.3498107, 48.8868122 2.3256852, 48.8834537 2.3328703, 48.8856796 2.3259878, 48.8830525 2.3262040, 48.8873350 2.3234292, 48.8939964 2.3323680, 48.8938940 2.3337117, 48.8906510 2.3342133, 48.8966079 2.3382044, 48.8970628 2.3379630, 48.8975027 2.3345968, 48.8961374 2.3461866, 48.8943367 2.3365602, 48.8931394 2.3284963, 48.8837616 2.3334044, 48.8309452 2.3126819, 48.8525068 2.2903630, 48.8414115 2.2808276, 48.8577342 2.4078256, 48.8568635 2.4080009, 48.8838368 2.3847889, 48.8496859 2.3992762, 48.8589932 2.2764394, 48.8751317 2.2918795, 48.8611261 2.2842369, 48.8639428 2.4084587, 48.8671597 2.4041162, 48.8628559 2.3527373, 48.8610518 2.3542343, 48.8629907 2.3536210, 48.8633052 2.3497219, 48.8353511 2.3925763, 48.8475854 2.3972560, 48.8382852 2.3968325, 48.8395273 2.3323394, 48.8426034 2.3845997, 48.8880141 2.3922962, 48.8519521 2.3848662, 48.8534279 2.3834438, 48.8439220 2.3510401, 48.8681249 2.3601102, 48.8816458 2.3735588, 48.8807758 2.3737178, 48.8225454 2.3602368, 48.8288446 2.3012353, 48.8694690 2.3559887, 48.8950310 2.3452340, 48.8809509 2.3730867, 48.8824653 2.3706816, 48.8822580 2.3711604, 48.8731763 2.3440636, 48.8892660 2.3163868, 48.8405768 2.2636739, 48.8323274 2.3357206, 48.8578307 2.4038842, 48.8720218 2.3430269, 48.8489155 2.2943202, 48.8612237 2.3512988, 48.8763837 2.3483776, 48.8392265 2.3811340, 48.8692780 2.3534767, 48.8770752 2.3509789, 48.8768810 2.3522810, 48.8671912 2.3992585, 48.8688039 2.4016891, 48.8724825 2.4048479, 48.8707468 2.3986424, 48.8332008 2.3374165, 48.8899534 2.3615002, 48.8285764 2.3033016, 48.8905323 2.3596305, 48.8888155 2.3602548, 48.8395423 2.2779531, 48.8259997 2.3741195, 48.8560173 2.3760876, 48.8581120 2.3721314, 48.8567897 2.3722474, 48.8431435 2.2776490, 48.8396006 2.2614514, 48.8385727 2.2600917, 48.8445018 2.2969910, 48.8485986 2.2903852, 48.8507401 2.3475146, 48.8755440 2.3956906, 48.8802530 2.3964916, 48.8900121 2.3262557, 48.8462660 2.3758720, 48.8459472 2.3821633, 48.8281746 2.3563344, 48.8510897 2.3308156, 48.8729559 2.3908410, 48.8913760 2.3771659, 48.8615915 2.3335029, 48.8917389 2.3616331, 48.8522672 2.3651848, 48.8892317 2.3356930, 48.8864482 2.3599362, 48.8617073 2.3677371, 48.8288145 2.3655213, 48.8553200 2.3741655, 48.8673506 2.3480275, 48.8596235 2.3682702, 48.8770063 2.3823746, 48.8756399 2.3925198, 48.8916332 2.3759113, 48.8850102 2.2910619, 48.8413337 2.4090408, 48.8516984 2.3636699, 48.8416155 2.3282978, 48.8463560 2.2850476, 48.8646148 2.3562397, 48.8463401 2.2843476, 48.8550524 2.3607242, 48.8891219 2.3742700, 48.8642779 2.3695879, 48.8661594 2.3444128, 48.8419436 2.3983227, 48.8862667 2.3258417, 48.8258431 2.3570589, 48.8759129 2.3303286, 48.8844216 2.3798109, 48.8436411 2.2944053, 48.8335094 2.3079080, 48.8375593 2.3075878, 48.8329866 2.2943809, 48.8848532 2.3116016, 48.8550088 2.3858779, 48.8540035 2.3861535, 48.8535954 2.3876700, 48.8641274 2.3426217, 48.8438185 2.3071280, 48.8468492 2.3063014, 48.8515318 2.3438019, 48.8530679 2.2905561, 48.8881502 2.3762604, 48.8246925 2.3645687, 48.8428012 2.4050359, 48.8267406 2.3574342, 48.8503295 2.2931941, 48.8853514 2.3263695, 48.8489948 2.2828977, 48.8275294 2.3456790, 48.8234736 2.3658963, 48.8360213 2.3957852, 48.8481035 2.3308491, 48.8475416 2.3309131, 48.8599847 2.3450161, 48.8525882 2.3137384, 48.8385663 2.3603627, 48.8781276 2.3695316, 48.8879662 2.3862902, 48.8580138 2.3821494, 48.8593003 2.3492109, 48.8585959 2.3511475, 48.8589586 2.3486959, 48.8585183 2.3513205, 48.8264650 2.3255446, 48.8564592 2.3031593, 48.8643112 2.3504828, 48.8790449 2.2970432, 48.8791444 2.2972971, 48.8851647 2.3598483, 48.8567290 2.3065898, 48.8678000 2.3864912, 48.8740888 2.3846048, 48.8415632 2.3749443, 48.8215623 2.3662137, 48.8819090 2.2862180, 48.8823940 2.2912340, 48.8400648 2.3497188, 48.8402671 2.3498166, 48.8402671 2.3498166, 48.8415554 2.3495472, 48.8796450 2.2803000, 48.8625842 2.4031454, 48.8792280 2.2828900, 48.8857080 2.2899680, 48.8898260 2.3029100, 48.8501303 2.3855831, 48.8796085 2.3717349, 48.8757924 2.3723838, 48.8339085 2.3295711, 48.8732544 2.3760882, 48.8794340 2.3871915, 48.8794279 2.3867275, 48.8649421 2.2829335, 48.8748144 2.3790580, 48.8820372 2.3716846, 48.8251894 2.3262850, 48.8772141 2.3546832, 48.8743922 2.3831598, 48.8403986 2.3037271, 48.8406980 2.3055166, 48.8444454 2.3229017, 48.8831918 2.3761167, 48.8850982 2.3804702, 48.8593397 2.3236648, 48.8799177 2.3757765, 48.8832708 2.3873093, 48.8495360 2.3557600, 48.8529353 2.3445112, 48.8278676 2.3694900, 48.8687382 2.3816808, 48.8679896 2.3827039, 48.8842760 2.3914938, 48.8845436 2.3914120, 48.8799246 2.3748736, 48.8606251 2.3073994, 48.8845082 2.3658573, 48.8725158 2.3779152, 48.8801006 2.3353373, 48.8838889 2.3802753, 48.8755696 2.3936253, 48.8784016 2.3448577, 48.8669892 2.3478869, 48.8753373 2.3903971, 48.8817780 2.3151710, 48.8853880 2.3213970, 48.8399030 2.3566196, 48.8622810 2.3416967, 48.8646878 2.3557933, 48.8627226 2.3724972, 48.8587858 2.3835611, 48.8451912 2.3544808, 48.8709179 2.3661321, 48.8476677 2.2992150, 48.8902933 2.3789075, 48.8424104 2.2816741, 48.8377560 2.2806689, 48.8892161 2.3493454, 48.8789570 2.2904640, 48.8669877 2.3970781, 48.8669101 2.3971237, 48.8586380 2.4010221, 48.8470632 2.4154650, 48.8694573 2.4052299, 48.8609250 2.3777382, 48.8617906 2.3644522, 48.8812149 2.3737717, 48.8353148 2.3089601, 48.8617363 2.3717380, 48.8638547 2.3716199, 48.8480053 2.3304617, 48.8616060 2.3573874, 48.8602681 2.3671460, 48.8579948 2.3660380, 48.8580835 2.3656152, 48.8524891 2.3411126, 48.8275086 2.3693276, 48.8634302 2.3612452, 48.8624572 2.3763761, 48.8569773 2.3277788, 48.8224846 2.3587331, 48.8271254 2.3681241, 48.8541244 2.3632116, 48.8426720 2.2822609, 48.8622011 2.3843068, 48.8829658 2.3942069, 48.8645674 2.3717608, 48.8472571 2.3013183, 48.8624764 2.3630889, 48.8758377 2.3234731, 48.8970670 2.3441393, 48.8446946 2.3837958, 48.8769641 2.3922884, 48.8474634 2.2978722, 48.8337150 2.3247400, 48.8311385 2.3277925, 48.8313018 2.3271301, 48.8309042 2.3286539, 48.8310749 2.3280076, 48.8711846 2.3782729, 48.8387750 2.4042739, 48.8784346 2.3159299, 48.8767951 2.3155428, 48.8446805 2.3191998, 48.8638634 2.3665932, 48.8871384 2.3544611, 48.8858646 2.3941868, 48.8514691 2.3759900, 48.8442596 2.2943345, 48.8733365 2.3827708, 48.8548191 2.3992757, 48.8604799 2.3707724, 48.8887143 2.3882273, 48.8419074 2.2593261, 48.8674206 2.3850309, 48.8718067 2.3597773, 48.8412759 2.2656972, 48.8774129 2.2930154, 48.8662126 2.3704884, 48.8596936 2.3788255, 48.8753860 2.3565969, 48.8339290 2.3443220, 48.8450015 2.3453996, 48.8410460 2.3444250, 48.8350369 2.3057113, 48.8557624 2.3906644, 48.8775297 2.2871563, 48.8759185 2.3451363, 48.8681995 2.3549733, 48.8379738 2.3230637, 48.8763068 2.2905899, 48.8449564 2.2876412, 48.8444044 2.2914850, 48.8807064 2.2980356, 48.8339736 2.3449922, 48.8754265 2.3508345, 48.8777531 2.3521560, 48.8756192 2.3508843, 48.8442923 2.2942460, 48.8801144 2.3196281, 48.8289297 2.3232934, 48.8851313 2.3342181, 48.8313421 2.3441312, 48.8734150 2.3434735, 48.8494556 2.3896162, 48.8526611 2.3600049, 48.8592387 2.3870502, 48.8559576 2.3595639, 48.8842657 2.3430314, 48.8747549 2.3085580, 48.8650341 2.3721367, 48.8618362 2.3540020, 48.8696170 2.3623327, 48.8686664 2.3749669, 48.8273973 2.3699503, 48.8690046 2.3666102, 48.8661433 2.3614333, 48.8653101 2.3754565, 48.8649359 2.3771728, 48.8637746 2.3716919, 48.8649245 2.3735267, 48.8647324 2.3782081, 48.8826574 2.3606578, 48.8647948 2.4042410, 48.8647060 2.4063677, 48.8444941 2.3823537, 48.8518190 2.3179188, 48.8302203 2.3784007, 48.8808015 2.3285905, 48.8497965 2.2964269, 48.8762353 2.3003998, 48.8480740 2.3053881, 48.8751019 2.3516602, 48.8706514 2.3278181, 48.8944185 2.3725239, 48.8760740 2.3030274, 48.8675028 2.2978598, 48.8736251 2.3348722, 48.8444694 2.3213978, 48.8886897 2.3193886, 48.8658769 2.3770330, 48.8339461 2.3665652, 48.8909447 2.3319976, 48.8482795 2.3788100, 48.8494676 2.3786763, 48.8698963 2.3608687, 48.8465981 2.2806309, 48.8782302 2.3539940, 48.8291811 2.3237504, 48.8509533 2.3424752, 48.8640454 2.3428169, 48.8751193 2.3884843, 48.8535573 2.3854311, 48.8540903 2.3734182, 48.8508908 2.3950527, 48.8534997 2.3831443, 48.8709988 2.3069747, 48.8728273 2.3433945, 48.8562232 2.4037355, 48.8644505 2.4053316, 48.8430876 2.3029217, 48.8886357 2.3346957, 48.8484935 2.3707044, 48.8366376 2.3599049, 48.8248463 2.3769354, 48.8302591 2.3642127, 48.8829303 2.3343538, 48.8412949 2.3226720, 48.8323589 2.3156645, 48.8267659 2.3121044, 48.8425836 2.3031667, 48.8838545 2.2978583, 48.8922801 2.2985255, 48.8219073 2.3680204, 48.8356812 2.3870588, 48.8457134 2.2873370, 48.8759670 2.3240013, 48.8763899 2.3264752 + +yes +1 +yes +161 +Mosquée 'Ali Ibn Al Khattab, Mosquée Al-Fatih, Mosquée de Paris 15ème, Association Culturelle des Musulmans, Abdoulmajid, Mosquée A Daawa, Association islamique en France, Grande Mosquée de Paris, Centre Culturel Islamique, Association Culturelle Islamique Kurdes, Association Foi et Pratique - Mosquée OMAR, Mosquée Abou Baker Assiddiq, Khalid Ibn Walid, Institut des Cultures d'Islam +3 +yes +yes +30, 31, 32, 33, 30, 31, 32, 33 +yes +26 +15 +yes, yes, yes, yes +yes +Riegler, Bäckerei Rühle, Cafe Frisch, Mahlzahn, Riegler, Paris, Mantei, Kamps, Der Kleine Gundel, Bäckerei Rodemer, Grimminger, Bäckerei Riegler, Stefansbäck, Grimm, Mantei, Grimminger, Mantei, Mahlzahn Vollkornbäckerei, Seip, Cafè Frisch, Bäckerei Grimminger, Grimminger, Mahlzahn Vollkornbäckerei, mantei, Bridi, Conditorei Zimmermann, Mantei, Grimminger, Bäckerei Tschakert, Riegler, Görtz, Rühle, Kamps, Sofie Göbes, Schlierbacher Schiff, Mantei, Riegler, Mahlzahn Vollkornbäckerei, Riegler, Wiener Feinbäckerei Heberer, LE CROBAG, Helin Backwaren, Grimminger, Mantei, Pfänder, mantei, Mantei, Riegler, Patisserie La Flamm, Grimminger, Backshop, Lecker Bäcker, Breitenstein Bäckerei, K&U, Backwaren, Bäckerei Wacker, Bäckerei & Konditorei Stahl, Bäckerei Siegel, Café Frisch, Goldkorn, Görtz, Görtz, Laib & Leben, Mantei, Bäckerei Riegler, Backhaus, Rühle, Bäckerei-Konditorei K. Bernauer, Mantei, Riegler, Mantei, Bäckerei Bernauer, Kohlmann +yes +55 +48.8431940 2.3077472, 48.8626842 2.3440139, 48.8420601 2.3893615, 48.8712781 2.3788190, 48.8591328 2.3525765, 48.8833055 2.3634273, 48.8246156 2.3095480, 48.8557538 2.2906075, 48.8928628 2.3852622, 48.8316444 2.3266871, 48.8432854 2.3234991, 48.8276269 2.2935826, 48.8604940 2.3703861, 48.8778547 2.3450664, 48.8820577 2.3422422, 48.8945576 2.3189168, 48.8718145 2.3694849, 48.8907179 2.3749478, 48.8763624 2.3058713, 48.8663395 2.3827900, 48.8519343 2.3358691, 48.8590336 2.4068235, 48.8313124 2.2750309, 48.8641166 2.2565095, 48.8641719 2.2560642, 48.8490634 2.3517317, 48.8845953 2.3994143, 48.8805352 2.3776953, 48.8824472 2.3896512, 48.8565552 2.3934533, 48.8714538 2.3790422, 48.8754975 2.4067088, 48.8589726 2.4117533, 48.8424436 2.3891943, 48.8943495 2.3510361, 48.8306882 2.3630641, 48.8725599 2.2603094, 48.8569428 2.2604862, 48.8941767 2.3635473, 48.8451052 2.2533915, 48.8487418 2.2847647, 48.8472686 2.2819731, 48.8269156 2.3528936, 48.8361129 2.3760717, 48.8447360 2.3478715, 48.8416334 2.4125661, 48.8271261 2.3526169, 48.8268674 2.3526069, 48.8996348 2.3424245, 48.8886701 2.2955676, 48.8330815 2.3668374, 48.8451517 2.2531130, 48.8674170 2.2715503 +0 +55.9456527 -3.2061203, 55.9443407 -3.2048329, 55.9374112 -3.2346906, 55.9426407 -3.2821897, 55.8956823 -3.3127216, 55.9415461 -3.2037701, 55.9452315 -3.2056035, 55.9447948 -3.1836736, 55.9341803 -3.2107330, 55.9386101 -3.1916162, 55.9360196 -3.1802824, 55.9475772 -3.1860219, 55.9459203 -3.2010630, 55.9587892 -3.1643659, 55.9451748 -3.1864323, 55.9744689 -3.1844184, 55.9246213 -3.2764605, 55.9752473 -3.2384345, 55.9088450 -3.2286848, 55.9589541 -3.2073114, 55.9503203 -3.1782658, 55.9269783 -3.1633004, 55.9569888 -3.1872260, 55.9430803 -3.2093356, 55.9518428 -3.3045734, 55.9453098 -3.1841497, 55.9424940 -3.2818573, 55.9497489 -3.2095479, 55.9460513 -3.2224536, 55.9493968 -3.2095231, 55.9359530 -3.2090040, 55.9024661 -3.2880581, 55.9713423 -3.1717866, 55.9439789 -3.2043745, 55.9455833 -3.1843657, 55.9249456 -3.2543275, 55.9522655 -3.1119404, 55.9401392 -3.1800633, 55.9579154 -3.1717463, 55.9593295 -3.1714738, 55.9486187 -3.1870026, 55.9352201 -3.1141054, 55.9145806 -3.1649266, 55.9407885 -3.1806196, 55.9196790 -3.2957655, 55.9624261 -3.1763251, 55.9718675 -3.1714527, 55.9444724 -3.2041701, 55.9397294 -3.2258628, 55.9273622 -3.2095055, 55.9639295 -3.1954156, 55.9337495 -3.1784017, 55.9673627 -3.2446356, 55.9152198 -3.2842269, 55.9090090 -3.1426712, 55.9065326 -3.1333497, 55.9114939 -3.2386783, 55.9405331 -3.2951496, 55.9701290 -3.2319995, 55.9591494 -3.2239360, 55.9135516 -3.1356294, 55.9833614 -3.4014836, 55.9296873 -3.2089051, 55.9316060 -3.1357854, 55.9697754 -3.1703494, 55.9364075 -3.2384035, 55.9386968 -3.1031078, 55.9028742 -3.1561939, 55.9815687 -3.1896732, 55.9632981 -3.1963011, 55.9893631 -3.3990010, 55.9413673 -3.2215329, 55.9241161 -3.2509298, 55.9574632 -3.2408274, 55.9431255 -3.2213025, 55.9281038 -3.2099373, 55.9782397 -3.2432999, 55.9376323 -3.2393738, 55.9016566 -3.2223165, 55.9542878 -3.1417872, 55.9551856 -3.1412308, 55.9661707 -3.2741296, 55.9393504 -3.2517583, 55.9592774 -3.2115003, 55.9447134 -3.2058640, 55.9512626 -3.2957653, 55.9266771 -3.2094477, 55.8841015 -3.3394756, 55.9548045 -3.2860448, 55.9601182 -3.2953587, 55.9614249 -3.3057303, 55.9617874 -3.3058634, 55.9259926 -3.2465531, 55.9536248 -3.1142932, 55.9246988 -3.3054939, 55.9393031 -3.3165946, 55.9127717 -3.1467194, 55.9789068 -3.2346781, 55.9790076 -3.2340741 +yes +yes +yes +55.9575800 -3.1847940, 55.9491314 -3.1876537, 55.9757878 -3.2301721, 55.9621811 -3.2003284, 55.9526181 -3.1750774, 55.9471770 -3.1904575, 55.9254145 -3.2090883, 55.9764403 -3.1701500, 55.9504129 -3.2949801, 55.9601603 -3.2006854, 55.9299490 -3.2096090, 55.9592433 -3.2230171, 55.9481079 -3.1917724, 55.9034567 -3.1574061, 55.9808227 -3.2245927, 55.9479318 -3.1942157, 55.9166326 -3.2276420, 55.9467615 -3.2168254, 55.9524553 -3.1968363, 55.9501797 -3.1870275, 55.9428645 -3.2037697, 55.9484729 -3.1956543, 55.9478512 -3.2019348, 55.9452311 -3.1921670, 55.9449743 -3.1941250, 55.9701331 -3.1723584, 55.9411858 -3.2034013, 55.9558388 -3.1571446, 55.9250843 -3.2616025, 55.9473220 -3.2061120, 55.9382464 -3.1945920, 55.9356972 -3.2104575, 55.9457633 -3.2087758, 55.9458760 -3.2095814, 55.9464641 -3.2365646, 55.9308474 -3.2091419, 55.9461542 -3.1854391, 55.9057145 -3.2240658, 55.9618166 -3.1524945, 55.9499117 -3.2074257, 55.9380654 -3.1900489, 55.9164262 -3.2851068, 55.9724535 -3.2516505, 55.9626190 -3.2334642, 55.9459369 -3.2194891, 55.9520610 -3.1917849, 55.9491345 -3.1940862, 55.9513741 -3.1884100, 55.9527128 -3.2015822, 55.9282565 -3.2096375, 55.9518891 -3.1996221, 55.9520193 -3.2031623, 55.9509410 -3.2098198, 55.9553246 -3.1925314, 55.9490742 -3.1925402 +yes +12 +105 +5 +49.4129429 8.7045098 +152 +no +43 +yes +no +Stephen Sauvestre, Gustave Eiffel, Maurice Koechlin, Émile Nouguier +2 +-34.0444465 19.0099972, 54.3099722 10.2070146, 48.1433764 16.2942593, -17.4527813 -65.0790591, -17.4531320 -65.0867805, 48.2145846 16.4568343, 48.0806372 16.2644888, 48.1642890 16.4033849, 48.7990140 -88.6180719, 34.3728951 -83.7002886, 34.3730368 -83.7008465, 34.3734548 -83.7016172, 34.3677949 -83.6997959, 34.3716461 -83.7011773, 34.3682200 -83.7002921, 34.3721033 -83.6988826, 34.3721353 -83.6988692, 34.3739219 -83.7015876, 34.3729655 -83.7014039, 34.3735068 -83.7016896, 34.3685267 -83.6993601, 34.3696989 -83.6984950, 1.2557527 103.8127577, 47.0462316 10.5931547, 53.6619116 88.8913237, 47.0779562 9.8757807, 46.2158501 6.7960454, 46.2208733 6.7919231, 47.7137474 14.8368832, 47.7136418 14.8368189, 43.4426729 -86.1786413, 43.4426214 -86.1789629, 47.8847523 14.4504621, 50.2855426 11.9085643, 50.2853109 11.9086995, 39.4028619 -84.1005450, 50.2873706 11.9088194, 35.3569792 -120.5765286, 35.3568034 -120.5778855, 35.3572368 -120.5786752, 59.9916232 10.6657577, 59.9915084 10.6674034, 59.9905921 10.6662289, 59.9918307 10.6666147, 59.9930804 10.6661300, 59.9899069 10.6678022, 59.9903819 10.6667194, 59.9907134 10.6660058, -49.3888520 -73.0614750, 40.0043551 -8.2076151, 40.2458790 -84.1890776, -37.4954318 145.8788734, -35.9757617 -70.5583996, 40.3947284 -3.7023440, 53.1639523 -4.0642217, 53.1677564 -4.0604698, 59.9506235 10.5614095, 59.9464996 10.5652442, 56.1620200 -4.0410972, 43.5378268 -71.3652913, 43.5293962 -71.3712131, 43.5431504 -71.3680647, 43.5431352 -71.3680860, 40.5297821 16.0564287, 40.5248371 16.0517366, 10.4031662 123.9600115, 43.5263353 -71.3775383, 44.0573739 -71.6321162, 28.6141577 -106.1281698, 47.4454452 13.8502903, 47.4498194 13.8363751, 46.5473694 7.9884161, 14.5490121 121.1308302, -38.6505275 143.4986568, -38.6489894 143.4982376, 35.3593136 -120.5780556, 11.8387258 -85.9966746, 11.8385230 -85.9937576, 11.8385995 -85.9953371, 11.8384134 -85.9960662, 11.8382731 -85.9965158, 11.8386783 -85.9957858, 12.8346642 120.7614297, 40.6012387 -86.7596381, 40.6044820 -86.7674194, 40.6044492 -86.7674255, 45.2606237 6.5974172, 19.7875447 -72.2434426, 50.4568664 30.5328024, 48.2072495 16.4315234, 48.2072309 16.4314933, 47.8657201 8.8918371, 47.8659324 8.8916601, 47.8657031 8.8918435, 47.8659153 8.8916614, 43.3464153 -8.3962032, 51.6944202 5.3191087, 19.5231070 -96.9240349, 45.2398574 13.9293573, 45.2403846 13.9291818, 45.2002358 5.7248284, 52.5735247 6.2753196, 46.6588287 8.0599093, 51.5455232 9.8701791, 49.9760859 9.4619356, 60.6710896 16.8295549, 60.6041743 -135.0634835, 60.6098319 -135.0625352, 60.6122247 -135.0589421, 50.7563167 15.5665850, 44.6701185 4.2201373, 14.6983653 101.0636146, 14.6983965 101.0636696, 31.3122133 119.4243546, 53.8043109 -9.5366507, 57.0374197 8.8547019, 22.8469120 -82.9429862, 27.3985735 85.4564097, 27.3793020 85.5277948, 27.4148767 85.5526604, 27.4189786 85.5587896, 47.1344866 24.4585993, 60.2290241 24.7963329, 45.8928615 9.2801539, 36.3171080 -86.4624982, -27.2826326 -52.6862282, 48.3980383 21.6360478, 47.6024249 10.5016402, 27.9401094 -107.6460602, 50.0312327 20.5250342, 49.0714587 18.3272985, 49.0555147 18.3325244, 48.7712002 13.3601630, 48.7712842 13.3603237, 54.0914605 13.4163416, 44.4473661 3.9077279, 64.7467867 12.8548488, 43.4364517 16.7450013, 43.4380653 16.7395579, 43.4395950 16.7346990, 43.4401287 16.7333471, 43.4403390 16.7327731, 43.4409019 16.7314052, 43.4423236 16.7305147, 43.4888060 -3.7910706, 45.5119029 2.8526066, 63.3282733 12.0446115, 63.3284338 12.0446668, 63.3288308 12.0436748, 63.3283532 12.0426471, 63.3290045 12.0440493, 47.4232060 8.5646828, 40.1307434 -0.6158725, 40.6788393 -111.5776742, 40.6809542 -111.5771865, 44.3785288 6.0664050, 44.3779368 6.0674049, 44.3769467 6.0682322, 44.3763160 6.0708993, 44.3763128 6.0708964, 43.5912194 0.5639172, 43.5911428 0.5643791, 43.5910090 0.5646083, 43.5911533 0.5623206, 43.5909417 0.5649777, 43.5904041 0.5659229, 43.5906779 0.5649408, 47.0044527 15.9327873, 39.7130073 -105.2114983, 39.7129994 -105.2115157, 46.4763810 13.7205121, 47.7961401 18.9874166, 52.3915056 0.6426170, -6.2177102 106.8621633, -6.2196971 106.8619746, 48.1122624 12.3193057, -49.3311699 -72.9934160, 46.3681431 6.6547262, 50.7634284 -1.9188153, 50.7638888 -1.9196703 +Backstube +48.8372431 2.4025512, 48.8436827 2.4056942, 48.8956591 2.3766927, 48.8344171 2.3656055, 48.8819609 2.3610276, 48.8832881 2.3655987, 48.8318780 2.3674139, 48.8308432 2.3659695, 48.8703845 2.3744929, 48.8720541 2.2973594, 48.8805098 2.2890182, 48.8305422 2.3206552, 48.9000051 2.3699002, 48.8785513 2.3191831, 48.8387570 2.2799587, 48.8989533 2.3212671, 48.8714989 2.3580961, 48.8754478 2.3646548, 48.8810188 2.3786602, 48.8521937 2.2751728, 48.8539100 2.2904495, 48.8315453 2.3647312, 48.8953268 2.3329893, 48.8971290 2.3313799, 48.8564313 2.4002327, 48.8624608 2.3528454, 48.8489432 2.2958380, 48.8397850 2.3575188, 48.8400031 2.3575222, 48.8442166 2.3890513, 48.8226912 2.3495447, 48.8735753 2.3990719, 48.8767145 2.4045468, 48.8297834 2.2950029, 48.8878961 2.3705889, 48.8593870 2.3702037, 48.8930174 2.3209663, 48.8576608 2.3609703, 48.8540002 2.3615994, 48.8602122 2.3858360, 48.8597150 2.3615075, 48.8211392 2.3471688, 48.8389963 2.3074140, 48.8786911 2.3684186, 48.8788154 2.3656788, 48.8310119 2.3691821, 48.8305746 2.3590826, 48.8520777 2.3364208, 48.8519979 2.3358911, 48.8899352 2.3788791, 48.8749997 2.3784035, 48.8527039 2.3856412, 48.8730441 2.3935237, 48.8599956 2.3704874, 48.8919633 2.3816291, 48.8899568 2.3800977, 48.8572542 2.4071947, 48.8490599 2.3130688, 48.8595571 2.3825257, 48.8446543 2.4129610, 48.8446309 2.3803603, 48.8813655 2.3323957, 48.8813801 2.3323981, 48.8625817 2.3734001, 48.8617511 2.3524668, 48.8756158 2.3049402, 48.8762620 2.3056210, 48.8302061 2.3311185, 48.8633917 2.3802791, 48.8855774 2.3217107, 48.8800085 2.3259822, 48.8939582 2.3209266, 48.8968818 2.3192668, 48.8796151 2.3586339, 48.8490290 2.3128397, 48.8211132 2.3692911, 48.8205930 2.3650114, 48.8758199 2.3463986, 48.8455240 2.3232332, 48.8253486 2.3664896, 48.8291963 2.3484434, 48.8573070 2.4005727, 48.8472608 2.3915475, 48.8424244 2.2640145, 48.8420921 2.2830474, 48.8747250 2.3499219, 48.8832602 2.3897914, 48.8962335 2.3812698, 48.8591060 2.4071931, 48.8886602 2.3207587, 48.8774278 2.3664806, 48.8769307 2.3675682, 48.8346716 2.3947154, 48.8204187 2.3630912, 48.8318908 2.3024692, 48.8872133 2.3667612, 48.8866121 2.3008785, 48.8437371 2.3505713, 48.8382268 2.3465518, 48.8353795 2.3867511, 48.8280267 2.3531166, 48.8297241 2.3607269, 48.8721688 2.3856239, 48.8370947 2.3950913, 48.8574467 2.3768468, 48.8896006 2.3518695, 48.8900462 2.3528052, 48.8889906 2.3376891, 48.8532112 2.3412359, 48.8365860 2.4088069, 48.8900265 2.2995953, 48.8278048 2.3670342, 48.8373216 2.3574246, 48.8293819 2.3669467, 48.8654608 2.3452436, 48.8864169 2.3618208, 48.8362418 2.3837098, 48.8281622 2.3666304, 48.8745907 2.3898579, 48.8882215 2.3616899, 48.8868864 2.3886278, 48.8701494 2.3991414, 48.8775210 2.3961862, 48.8596786 2.4069798, 48.8584409 2.3999616, 48.8477909 2.3729992, 48.8429142 2.3888918, 48.8531390 2.3810526, 48.8671750 2.3842392, 48.8653713 2.3869699, 48.8764162 2.3891318, 48.8658566 2.3937475, 48.8727663 2.3936230, 48.8525138 2.3902198, 48.8884830 2.2951710, 48.8583575 2.3454210, 48.8544772 2.3768956, 48.8885906 2.3386572 +216 +yes +yes +yes +52.0455273 8.4506902, 52.0583801 8.5520281, 52.0441674 8.5341281, 52.0579438 8.4922378, 51.9789657 8.5077171, 51.9839158 8.5145830, 52.0148098 8.5415843, 51.9930698 8.6117053, 51.9530548 8.6019656, 52.0238436 8.5234911, 52.0555549 8.5378820, 52.0051281 8.5264278, 51.9719056 8.4584900, 52.0498292 8.5592441, 51.9862274 8.6330968, 52.0292398 8.6021218, 52.0292227 8.6009951, 52.0272514 8.5957092, 52.0306293 8.6106186, 52.0473461 8.5908186, 52.0469513 8.5887087, 51.9832360 8.5011688, 52.0231198 8.6053870, 52.0580464 8.6142089, 51.9489161 8.5784781, 52.0005000 8.5830563, 52.0581150 8.4919573, 52.0312632 8.5407538, 52.0319234 8.5420151, 51.9922699 8.5821902, 52.0462690 8.6409561, 52.0191448 8.5779535, 52.0184508 8.5657079, 51.9986701 8.5845091, 52.0743431 8.6025251, 52.0111171 8.6060838, 52.0754057 8.4694042, 52.0110252 8.6075822, 52.0386901 8.5655696, 52.0318962 8.5656184, 51.9526831 8.5894518, 51.9914877 8.4790051, 51.9478258 8.5866769, 52.0273349 8.5382436, 51.9845111 8.5016418, 52.0542712 8.5439409, 52.0181631 8.5466796, 52.0522750 8.5245659, 52.0456077 8.5212121, 52.0419948 8.5160247, 52.0292851 8.5181917, 52.0418895 8.5307595, 52.0327138 8.5227649, 52.0314754 8.5141184, 52.0295337 8.5150115, 52.0157211 8.5484732, 52.0137803 8.5492099, 51.9847361 8.4854709, 51.9859050 8.4877428, 52.0306430 8.5117068, 51.9971967 8.5057650, 51.9934233 8.5091802, 52.0226396 8.5511428, 52.0223364 8.5495579, 52.0233884 8.5519795, 52.0234840 8.5536985, 52.0119814 8.5542137, 52.0265557 8.5458287, 52.0185875 8.5275250, 52.0186597 8.5289951, 51.9475967 8.5920756, 51.9289095 8.5529507, 52.0209783 8.5457695, 52.0267434 8.4659864, 52.0459901 8.5425345, 52.0682897 8.5224152, 52.0719588 8.5498716, 52.0442328 8.5433584, 52.0113082 8.5270214, 52.0107287 8.5202197, 52.0563214 8.5500007, 52.0094113 8.5265262, 52.0037833 8.5215969, 52.0065591 8.5759589, 51.9891284 8.5001010, 51.9846427 8.5287592, 51.9854958 8.5280680, 51.9843934 8.5268438, 51.9417125 8.5793602, 51.9423426 8.5802746, 51.9600857 8.5281274, 52.0045344 8.5226673, 51.9609763 8.5280751, 52.0048839 8.5221348, 52.0147217 8.5248646, 51.9499358 8.5003082, 51.9568591 8.5479920, 52.0024451 8.5653246, 51.9406388 8.5114804, 52.0017368 8.5684745, 52.0018299 8.5675837, 52.0020334 8.5669169, 51.9906984 8.5078615, 51.9570094 8.5337027, 51.9681157 8.5499373, 52.0005457 8.5605587, 51.9963039 8.4716935, 51.9888194 8.5112622, 52.0207414 8.5292478, 51.9568731 8.5465415, 51.9333689 8.5654391, 52.0112149 8.5297888, 52.0261491 8.6392547, 52.0341466 8.5270978, 52.0345204 8.5277213, 52.0223837 8.5432316, 52.0383046 8.4923385, 52.0984088 8.5009157, 52.0013439 8.5671531, 52.0008115 8.5610395, 52.0926733 8.5329308, 52.0981428 8.5181712, 52.0359835 8.4982002, 52.0104876 8.6080033, 52.0065198 8.5259435, 52.0327367 8.5222372, 52.0719981 8.5498472, 52.0184308 8.5473987, 51.9839311 8.5003401, 51.9932306 8.6111247, 52.0208485 8.5454983, 52.0586804 8.5511665, 52.0228461 8.5508389, 52.0307135 8.5117101, 52.0267458 8.4660597, 52.0459428 8.5203701, 52.0207097 8.5292682, 51.9567876 8.5472991, 51.9837555 8.5001033, 52.0111837 8.5268995, 52.0261594 8.5241174, 52.0312156 8.5405749, 52.0272333 8.5379784, 52.0315859 8.5423180, 52.0526516 8.5253447, 52.0106909 8.5203429, 52.0468920 8.5467931, 52.0186691 8.5656553, 52.0472610 8.5893105, 52.0391042 8.5656841, 52.0315635 8.5657826, 51.9527696 8.6018036, 51.9528793 8.5894680, 51.9717369 8.4582094, 51.9484298 8.5873772, 52.0543651 8.5447212, 51.9487421 8.5784654, 51.9923909 8.5822547, 51.9863326 8.6322964, 52.0010559 8.5831633, 51.9990577 8.5845337, 52.0462867 8.6407281, 52.0579586 8.6142179, 52.0743547 8.6022238, 52.0293357 8.5180617, 52.0206646 8.5676682, 52.0425279 8.5168567, 52.0270594 8.5966793, 52.0323486 8.6056893, 52.0230896 8.6059771, 52.0500810 8.5586981, 52.0580908 8.4924175, 52.0455684 8.4510738, 52.0421608 8.5307615, 52.0294960 8.5152776, 52.0309613 8.5144666, 52.0586088 8.5516394, 52.0156406 8.5480803, 52.0137807 8.5496365, 52.0558267 8.5374208, 51.9847954 8.4859472, 51.9861104 8.4873591, 52.0308117 8.5117948, 51.9972310 8.5062078, 51.9931065 8.5094547, 52.0114804 8.5539410, 52.0262032 8.6392966, 52.0265579 8.5454510, 52.0152026 8.5416301, 52.0184126 8.5282924, 51.9914510 8.4802500, 51.9415031 8.5795673, 52.0459863 8.5425744, 52.0754769 8.4692486, 52.0679871 8.5225119, 52.0691401 8.4845397, 52.0051548 8.5262133, 52.0039093 8.5212500, 51.9898013 8.5008912, 51.9847292 8.5279812, 51.9842005 8.5139759, 51.9789415 8.5070326, 52.0047086 8.5224081, 52.0191158 8.5773854, 51.9603119 8.5285761, 51.9475733 8.5919114, 51.9502642 8.5005356, 51.9568818 8.5332831, 51.9402691 8.5119328, 51.9960941 8.4716263, 51.9884382 8.5106798, 51.9487080 8.5862850, 51.9493095 8.5874506, 51.9483907 8.5883941, 51.9478782 8.5876688, 51.9478908 8.5859766, 51.9482758 8.5858662, 51.9474419 8.5860889, 51.9475824 8.5870706, 52.0104310 8.6074498, 51.9680531 8.5506649, 52.0297068 8.6015894, 51.9862135 8.6337019, 51.9926177 8.6119379, 52.0201494 8.5681889, 52.0186450 8.5755408, 52.0232011 8.5539890, 52.0237894 8.5555069, 52.0313093 8.5114951, 52.0310937 8.5122956, 51.9285763 8.5528956, 52.0387363 8.4870857, 52.0339819 8.5272111, 52.0347237 8.5273506, 52.0946122 8.5192946, 52.0987762 8.5011761, 52.0363557 8.4985144, 52.0327248 8.5359890 +48.8382429 2.2578195, 48.8709590 2.3477192, 48.8822577 2.3705521, 48.8469061 2.2850171, 48.8579325 2.3515044, 48.8307271 2.3566617, 48.8676022 2.3623822, 48.8677049 2.3622367, 48.8677682 2.3620989, 48.8654797 2.3747464, 48.8670092 2.3824038, 48.8445017 2.3247331, 48.8259948 2.3570144, 48.8366376 2.3507046, 48.8332031 2.3317979, 48.8738274 2.3848673, 48.8374673 2.2956006, 48.8646486 2.4083438, 48.8354775 2.4060799, 48.8206897 2.3639393, 48.8269269 2.3666605, 48.8752761 2.3255792, 48.8756940 2.3269533, 48.8835297 2.3282798, 48.8838538 2.3270648, 48.8875232 2.3252141, 48.8595548 2.3473567, 48.8593562 2.3461342, 48.8609975 2.3482090, 48.8635373 2.3490562, 48.8674622 2.3325601, 48.8705145 2.3428931, 48.8514200 2.3437555, 48.8471180 2.3410080, 48.8474500 2.3412160, 48.8430777 2.3636948, 48.8940785 2.3137523, 48.8755989 2.2960624, 48.8728596 2.2990380, 48.8885223 2.3927021, 48.8763139 2.3563480, 48.8772168 2.4062867, 48.8576118 2.2776817, 48.8833010 2.3854417, 48.8765522 2.3574684, 48.8854450 2.2920818, 48.8477882 2.3978367, 48.8656690 2.3706000, 48.8488396 2.2977794, 48.8859856 2.3190545, 48.8471787 2.3866836, 48.8792363 2.3631395, 48.8251412 2.3653488, 48.8966206 2.3871195, 48.8713129 2.3350843, 48.8760884 2.3441492, 48.8678398 2.2813384, 48.8798267 2.3542435, 48.8799598 2.3538754, 48.8533426 2.4103453, 48.8284080 2.3276636, 48.8290544 2.3276046, 48.8689587 2.3676791, 48.8743099 2.3348778, 48.8511314 2.3762510, 48.8789434 2.3780844, 48.8721385 2.3402693, 48.8977223 2.3441858, 48.8972709 2.3446847, 48.8958920 2.3466158, 48.8825100 2.3378415, 48.8693235 2.3602586, 48.8600406 2.3484986, 48.8780947 2.2877739, 48.8272520 2.3064254, 48.8579931 2.4032941, 48.8647426 2.3979362, 48.8286719 2.3018801, 48.8709751 2.3584442, 48.8370765 2.3521704, 48.8351646 2.3976296, 48.8574816 2.3802365, 48.8540476 2.3699964, 48.8710277 2.3356624, 48.8754564 2.3283800, 48.8507385 2.3006549, 48.8526719 2.3446864, 48.8751006 2.3400657, 48.8474749 2.4107917, 48.8490054 2.3495877, 48.8770585 2.3479815, 48.8536307 2.3312600, 48.8714523 2.3041019, 48.8816790 2.2888680, 48.8445191 2.3496762, 48.8612245 2.3480050, 48.8602996 2.3436624, 48.8830274 2.3870424, 48.8832752 2.3888891, 48.8589855 2.3540028, 48.8614005 2.3583195, 48.8543921 2.3426853, 48.8950228 2.3876904, 48.8612139 2.3668885, 48.8308126 2.2760380, 48.8704953 2.3458276, 48.8534957 2.3378664, 48.8617786 2.3730898, 48.8741288 2.3623407, 48.8651151 2.3550922, 48.8458679 2.3533248, 48.8637960 2.3626600, 48.8663251 2.3475355, 48.8658657 2.3436098, 48.8720064 2.3540339, 48.8867750 2.3846748, 48.8591551 2.3864296, 48.8747616 2.3479217, 48.8860731 2.3260614, 48.8683806 2.3433504, 48.8864163 2.3479153, 48.8439638 2.4098959, 48.8346813 2.3679582, 48.8625088 2.3482422, 48.8478066 2.3511652, 48.8934636 2.3239589, 48.8477461 2.3511419, 48.8679678 2.3355626, 48.8763983 2.3025071, 48.8711200 2.3063909, 48.8762191 2.3264601 +St Margaret and Mary, Saint Margaret's and Saint Leonard's, St Mark's, Holy Cross RC Church, St Margaret's Catholic Church, Church of the Sacred Heart of Jesus, St Andrews Catholic Church, St Columba's, The Parish of St Gregory the Great, Our Lady of Pochaiv and Saint Andrew, St Albert's Catholic Chaplaincy, St Albert's Catholic Chaplaincy, St Ninians, St Margaret's RC Church +48.8707489 2.3907280, 48.8506016 2.3432743, 48.8459665 2.3500377, 48.8535359 2.3481924, 48.8450745 2.3528309 +yes +Edinburgh Quay, Semple Street, St John's Hill, Greenside Place, Sheraton, Princes Exchange, Quartermile, Edinburgh City Delivery Office, Metred on-street Parking, Fountain Park, Castle Terrace, Newcraighall Park and Ride, Red Car Park, Blue Car Park, Lochend Close, Waverley Station, Asda Leith Parking, Overflow Car Park - Ocean Terminal, Cruise Liner Terminal, Premier Inn, Car Park E, Car Park B, Car Park D, Car Park C, Car Park F, Car Park A, The Caledonian, Great Michael Square, John Lewis, Blackfriars Street, Thistle Court, Catalyst Trade Park, St James Centre, St James Centre +no +fuel, post office, bicycle rental, school, restaurant, fire station, parking, post box, police, place of worship, toilets, bank, fountain, drinking water, parking entrance, hospital, bar, nightclub, cafe, pub, library, pharmacy, theatre, wine bar, internet cafe, marketplace, bus station, dojo, motorcycle parking, cinema, telephone, recycling, public building, arts centre, atm, fast food, bicycle parking, nursery, swimming pool, dentist, doctors, taxi, concert hall, car sharing, veterinary, bench, community centre, car rental, kindergarten, photo lab, bureau de change, videoclub, childcare, clock, waste basket, social facility, ice cream, yes, townhall, vending machine, university, ferry terminal, gallery, college, job centre, driving school, conference centre, mode, association, medical centre, studio, shelter, shower, embassy, luggage locker, public office, dancing school, podologist, laboratory, gym, storage, youth centre, money transfer, coworking space, car wash, clinic, food court, lift, parking space, publisher, teahouse, social centre, orthopedic, couture, radiology, spa, jobcentre, hammam, nursing home, healthcare, charging station, vehicle inspection, training center, shooting stand, music school, physiotherapy, vehicle impound, nusery, courthouse, personal service, photo booth, fablab, medical laboratory, shisha, cash machine, shisha bar, ticket validator, photobooth, table, animal boarding, relay, point chaud, piano, taxi phone, stripclub, swingerclub, sauna, laverie, cafee, shop, post pickup, hydrant, photo development, printer, showcase, heater, training, authority, small parking, monastery, basin, hotel, convention center, register office, waste disposal, bandstand, prison, retirement home, rectory, events venue, wall, zen zone, first aid +37.7500651 -122.4340964, 37.7494950 -122.4338475, 37.7481784 -122.4318047, 37.7482870 -122.4317704, 37.7879001 -122.4032530, 37.7879882 -122.4037767, 37.7876404 -122.4065068, 37.7873775 -122.4085239, 37.7869825 -122.4117339, 37.7868400 -122.4132360, 37.7867454 -122.4133988, 37.7865280 -122.4151500, 37.7863839 -122.4147044, 37.8074857 -122.4122331, 37.8065738 -122.4141681, 37.7858381 -122.4208295, 37.7860823 -122.4213101, 37.7858443 -122.4215600, 37.8058156 -122.4201928, 37.8061825 -122.4173877, 37.8050741 -122.4248113, 37.8049424 -122.4251017, 37.8047238 -122.4253684, 37.8049272 -122.4254027, 37.8053138 -122.4240294, 37.8024234 -122.4249055, 37.8002533 -122.4244764, 37.7986934 -122.4241845, 37.7964948 -122.4237345, 37.7949360 -122.4234292, 37.7914294 -122.4227083, 37.7873203 -122.4218983, 37.7872205 -122.4163915, 37.7873494 -122.4149152, 37.7874377 -122.4147865, 37.7878071 -122.4133072, 37.7876377 -122.4131357, 37.7878614 -122.4114361, 37.7883158 -122.4080030, 37.7885668 -122.4059259, 37.7894553 -122.4072305, 37.7892383 -122.4089471, 37.7890348 -122.4105779, 37.7888245 -122.4122344, 37.7887296 -122.4136334, 37.7886349 -122.4137618, 37.7882480 -122.4150753, 37.7884387 -122.4153902, 37.7882006 -122.4170495, 37.7936864 -122.4231765, 37.7895224 -122.4223268, 37.8077705 -122.4105938, 37.7858278 -122.4058393, 37.7866147 -122.4049381, 37.7864654 -122.4047321, 37.7874083 -122.4036077, 37.7879204 -122.4029268, 37.7885919 -122.4024548, 37.7884698 -122.4023003, 37.7894632 -122.4012427, 37.7904738 -122.3996977, 37.7909147 -122.3992085, 37.7912199 -122.3990282, 37.7915447 -122.3981096, 37.7919524 -122.3981442, 37.7926895 -122.3975313, 37.7925538 -122.3970849, 37.7942766 -122.3948018, 37.7920324 -122.3977043, 37.7944131 -122.3950607, 37.8075184 -122.4123666, 37.8065215 -122.4134910, 37.8059994 -122.4172590, 37.8056529 -122.4205190, 37.8054155 -122.4221927, 37.8052527 -122.4234200, 37.8051442 -122.4236947, 37.8044396 -122.4250053, 37.8025001 -122.4246362, 37.8006419 -122.4242586, 37.7984038 -122.4237608, 37.7960775 -122.4233316, 37.7940496 -122.4227651, 37.7942082 -122.4229370, 37.7923946 -122.4225591, 37.7913958 -122.4222349, 37.8056122 -122.4218837, 37.7992825 -122.4189061, 37.7991130 -122.4192065, 37.7955320 -122.4181508, 37.7945850 -122.4183350, 37.7946664 -122.4163695, 37.7938050 -122.4096919, 37.7930318 -122.4092112, 37.7853492 -122.4055185, 37.7843469 -122.4045150, 37.7846454 -122.4039142, 37.7847539 -122.4037597, 37.7842316 -122.4041030, 37.7835261 -122.4025151, 37.7829902 -122.4025495, 37.7821627 -122.4008414, 37.7818193 -122.4010039, 37.7806363 -122.3999660, 37.7784384 -122.3966529, 37.7781331 -122.3964297, 37.7771698 -122.3952195, 37.7769255 -122.3950736, 37.7772943 -122.3949229, 37.7772672 -122.3946225, 37.7777963 -122.3939702, 37.7768533 -122.3945023, 37.7755323 -122.3971419, 37.7764838 -122.3985209, 37.7761242 -122.4022631, 37.7779104 -122.4000014, 37.7793078 -122.4020012, 37.7789483 -122.4020957, 37.7771439 -122.4044132, 37.7757191 -122.4064044, 37.7754274 -122.4065417, 37.7739280 -122.4084815, 37.7724490 -122.4103612, 37.7708168 -122.4125663, 37.7703632 -122.4123180, 37.7716591 -122.4138973, 37.7719508 -122.4138029, 37.7721001 -122.4141720, 37.7729006 -122.4154423, 37.7733145 -122.4156912, 37.7741303 -122.4169989, 37.7741981 -122.4173765, 37.7752700 -122.4184494, 37.7754464 -122.4183893, 37.7757381 -122.4191960, 37.7754939 -122.4189385, 37.7736011 -122.4186209, 37.7782225 -122.4194551, 37.7786688 -122.4197882, 37.7798628 -122.4200286, 37.7799849 -122.4198998, 37.7821995 -122.4204866, 37.7828778 -122.4204179, 37.7830062 -122.4205011, 37.7830848 -122.4206947, 37.7849708 -122.4210499, 37.7889845 -122.4026340, 37.7901947 -122.4014023, 37.7896588 -122.4037282, 37.7897402 -122.4049985, 37.7863305 -122.4167890, 37.7861298 -122.4184176, 37.7855735 -122.4228551, 37.7854718 -122.4252669, 37.7851733 -122.4278504, 37.7847663 -122.4281594, 37.7843186 -122.4315412, 37.7848206 -122.4309318, 37.7844196 -122.4328463, 37.7843178 -122.4330266, 37.7845281 -122.4332841, 37.7840872 -122.4333871, 37.7835504 -122.4375282, 37.7839167 -122.4376655, 37.7834826 -122.4392963, 37.7836386 -122.4394164, 37.7831231 -122.4396482, 37.7829535 -122.4395280, 37.7828042 -122.4423433, 37.7829874 -122.4431329, 37.7827913 -122.4458030, 37.7827599 -122.4459811, 37.7823299 -122.4459653, 37.7825329 -122.4467635, 37.7820784 -122.4472957, 37.7820558 -122.4476543, 37.7821802 -122.4476390, 37.7820053 -122.4498532, 37.7822868 -122.4499499, 37.7818988 -122.4530106, 37.7815563 -122.4534053, 37.7798354 -122.4931351, 37.7799168 -122.4934183, 37.7794962 -122.4932037, 37.7794826 -122.4933926, 37.7798191 -122.4936557, 37.7795573 -122.4935814, 37.7799507 -122.4932381, 37.7796794 -122.4963537, 37.7794148 -122.4967056, 37.7792724 -122.4998814, 37.7796794 -122.5028254, 37.7791570 -122.5025164, 37.7798610 -122.5049869, 37.7797389 -122.5052873, 37.7800577 -122.5076563, 37.7798949 -122.5074503, 37.7799221 -122.5099050, 37.7797796 -122.5096304, 37.7791216 -122.5094930, 37.7756617 -122.5003177, 37.7754785 -122.5007383, 37.7754989 -122.5035793, 37.7753293 -122.5039398, 37.7751597 -122.5057852, 37.7750986 -122.5059311, 37.7891981 -122.4152653, 37.7893134 -122.4150078, 37.7910097 -122.4156423, 37.7922029 -122.4157974, 37.7924132 -122.4141495, 37.7927048 -122.4118492, 37.7934544 -122.4078526, 37.7932474 -122.4075663, 37.7934120 -122.4063181, 37.7936086 -122.4047989, 37.7938053 -122.4031510, 37.8070654 -122.4103449, 37.8068551 -122.4106453, 37.8066448 -122.4120271, 37.8065364 -122.4122160, 37.8050377 -122.4118813, 37.8047668 -122.4116465, 37.8027867 -122.4114233, 37.8006774 -122.4105478, 37.8004101 -122.4099889, 37.8002162 -122.4105649, 37.8004332 -122.4105306, 37.7991379 -122.4088569, 37.7992532 -122.4090286, 37.7991922 -122.4087624, 37.7993480 -122.4086509, 37.7971439 -122.4085909, 37.7967709 -122.4082646, 37.7962894 -122.4082732, 37.7953670 -122.4082476, 37.7937799 -122.4077582, 37.8063855 -122.4232325, 37.8036726 -122.4232484, 37.8035574 -122.4233771, 37.8016788 -122.4230252, 37.8014415 -122.4228020, 37.7989229 -122.4224728, 37.7987940 -122.4226445, 37.7986719 -122.4225157, 37.7990178 -122.4223012, 37.7977224 -122.4220351, 37.7970239 -122.4220608, 37.7962210 -122.4217512, 37.7957734 -122.4218285, 37.7952240 -122.4215366, 37.7951087 -122.4214336, 37.7949934 -122.4212963, 37.7942338 -122.4212620, 37.7934741 -122.4211933, 37.7931961 -122.4213478, 37.7923618 -122.4206697, 37.7919217 -122.4210500, 37.7915343 -122.4211418, 37.7908357 -122.4206440, 37.7907543 -122.4207813, 37.7894452 -122.4205410, 37.7895062 -122.4203951, 37.7877969 -122.4203780, 37.7878987 -122.4202148, 37.7879258 -122.4200518, 37.7865827 -122.4199745, 37.7867116 -122.4198114, 37.7868068 -122.4194985, 37.7850972 -122.4196741, 37.8073496 -122.4079591, 37.8072682 -122.4075728, 37.8022905 -122.4029208, 37.8014157 -122.4027320, 37.7996185 -122.4023972, 37.7977263 -122.4020024, 37.7947114 -122.4015355, 37.7951558 -122.4014788, 37.7946810 -122.4013501, 37.7926335 -122.3958328, 37.7943350 -122.3945488, 37.7932952 -122.3934198, 37.7924067 -122.3943554, 37.7919997 -122.3948618, 37.7910162 -122.3961063, 37.7901209 -122.3969646, 37.7899445 -122.3975054, 37.7878245 -122.4001786, 37.7878381 -122.3998524, 37.7864031 -122.4017275, 37.7861318 -122.4023197, 37.7829558 -122.4066225, 37.7827998 -122.4067084, 37.7825217 -122.4068886, 37.7825488 -122.4065625, 37.7823996 -122.4070345, 37.7811378 -122.4083649, 37.7808122 -122.4090258, 37.7793876 -122.4105793, 37.7790281 -122.4113003, 37.7775322 -122.4128952, 37.7771862 -122.4129896, 37.7773219 -122.4134703, 37.7764060 -122.4143114, 37.7761075 -122.4150066, 37.7727900 -122.4191952, 37.7731428 -122.4182596, 37.7703747 -122.4197788, 37.7707614 -122.4203453, 37.7680204 -122.4200621, 37.7670705 -122.4197531, 37.7663920 -122.4198732, 37.7653010 -122.4195354, 37.7651503 -122.4193840, 37.7649400 -122.4199505, 37.7648246 -122.4197531, 37.7618662 -122.4197445, 37.7620562 -122.4192896, 37.7616287 -122.4194612, 37.7605363 -122.4191351, 37.7600545 -122.4193153, 37.7584056 -122.4191522, 37.7589009 -122.4189892, 37.7573130 -122.4188433, 37.7568991 -122.4189892, 37.7557658 -122.4186802, 37.7551890 -122.4188518, 37.7541440 -122.4185343, 37.7535875 -122.4186630, 37.7524610 -122.4183540, 37.7523117 -122.4181566, 37.7521692 -122.4186716, 37.7520334 -122.4185343, 37.7494003 -122.4180794, 37.7490202 -122.4178648, 37.7488845 -122.4182253, 37.7482533 -122.4186802, 37.7468756 -122.4191608, 37.7469774 -122.4188862, 37.7452468 -122.4202165, 37.7702405 -122.4456788, 37.7815477 -122.4557681, 37.7812324 -122.4564824, 37.7814265 -122.4586356, 37.7811374 -122.4585605, 37.7810466 -122.4587536, 37.7815096 -122.4590144, 37.7813234 -122.4609038, 37.7810177 -122.4612687, 37.7811823 -122.4641071, 37.7807956 -122.4641973, 37.7807845 -122.4643617, 37.7808764 -122.4644255, 37.7807541 -122.4671566, 37.7809983 -122.4678003, 37.7808931 -122.4704703, 37.7805778 -122.4708931, 37.7810594 -122.4721634, 37.7803132 -122.4724209, 37.7804958 -122.4725340, 37.7807715 -122.4726936, 37.7806388 -122.4759657, 37.7803132 -122.4764378, 37.7804922 -122.4791912, 37.7801791 -122.4795855, 37.7800298 -122.4827784, 37.7798738 -122.4845980, 37.7803080 -122.4848555, 37.7802469 -122.4845465, 37.7799349 -122.4849328, 37.7801045 -122.4877394, 37.7797924 -122.4881085, 37.7800027 -122.4899024, 37.7796974 -122.4902800, 37.7795957 -122.4919966, 37.7799552 -122.4923228, 37.7850328 -122.4240337, 37.7846530 -122.4214931, 37.7845512 -122.4213300, 37.7850919 -122.4181325, 37.7850396 -122.4177938, 37.7853788 -122.4158712, 37.7854466 -122.4144979, 37.7855823 -122.4142146, 37.7858650 -122.4121391, 37.7860368 -122.4097600, 37.7863556 -122.4081893, 37.7866812 -122.4056144, 37.7870169 -122.4179793, 37.7866235 -122.4210522, 37.7861695 -122.4245155, 37.7859114 -122.4264595, 37.7857487 -122.4278070, 37.7867524 -122.4285794, 37.7866167 -122.4285538, 37.7864675 -122.4297640, 37.7865965 -122.4297039, 37.7861826 -122.4330771, 37.7860469 -122.4330340, 37.7859385 -122.4331370, 37.7858910 -122.4333344, 37.7859723 -122.4346907, 37.7857893 -122.4350941, 37.7855452 -122.4380551, 37.7853687 -122.4384070, 37.7852332 -122.4395228, 37.7852534 -122.4393683, 37.7853485 -122.4396517, 37.7854773 -122.4398147, 37.7850228 -122.4399262, 37.7849142 -122.4430247, 37.7847380 -122.4433766, 37.7844192 -122.4458487, 37.7841884 -122.4463035, 37.7846498 -122.4461747, 37.7864066 -122.4400121, 37.7826267 -122.4209352, 37.7821927 -122.4192077, 37.7831831 -122.4189845, 37.7830542 -122.4189502, 37.7833323 -122.4177486, 37.7831356 -122.4174224, 37.7832848 -122.4172336, 37.7834951 -122.4156457, 37.7837190 -122.4139463, 37.7839225 -122.4123155, 37.7333439 -122.4341146, 37.7336018 -122.4339773, 37.7333778 -122.4337627, 37.7306904 -122.4313129, 37.7285513 -122.4313423, 37.7286056 -122.4315569, 37.7287414 -122.4310075, 37.7285928 -122.4310211, 37.7164063 -122.4407726, 37.7162841 -122.4412790, 37.7147304 -122.4426465, 37.7296110 -122.4331926, 37.7261179 -122.4335362, 37.7725629 -122.4271208, 37.7724886 -122.4271971, 37.7727613 -122.4255587, 37.7728240 -122.4254941, 37.7750096 -122.4193518, 37.7752830 -122.4191695, 37.7237397 -122.4527763, 37.8026615 -122.4058342, 37.7602500 -122.4381220, 37.8000731 -122.4427175, 37.8000773 -122.4429777, 37.8002766 -122.4410592, 37.8001123 -122.4413201, 37.7998569 -122.4443992, 37.7991938 -122.4517479, 37.7982490 -122.4474040, 37.7938960 -122.3962630, 37.7350442 -122.4750296, 37.7348192 -122.4745190, 37.7348959 -122.4718603, 37.7826712 -122.4715165, 37.7900779 -122.3973324, 37.8063946 -122.4755980, 37.8066743 -122.4754598, 37.8073122 -122.4750992, 37.8077451 -122.4747013, 37.7985742 -122.4470382, 37.8003316 -122.4468364, 37.8015284 -122.4299080, 37.8163406 -122.3719841, 37.8159189 -122.3712035, 37.8198117 -122.3663991, 37.8240897 -122.3725534, 37.8217995 -122.3675153, 37.8251277 -122.3701037, 37.8251958 -122.3698336, 37.8282634 -122.3718811, 37.8298005 -122.3733581, 37.7698835 -122.4483879, 37.7696842 -122.4487848, 37.7734369 -122.4495198, 37.7736095 -122.4491588, 37.7759209 -122.4462621, 37.7754086 -122.4499596, 37.7753704 -122.4494447, 37.7750352 -122.4531023, 37.7749600 -122.4525772, 37.7744927 -122.4582852, 37.7742595 -122.4580599, 37.7743273 -122.4587090, 37.7752263 -122.4651517, 37.7770368 -122.4639232, 37.8051033 -122.4322388, 37.8070241 -122.4071695, 37.7268052 -122.4756978, 37.7270758 -122.4757595, 37.7273213 -122.4751556, 37.7767196 -122.4262286, 37.7877082 -122.4066920, 37.7877749 -122.4435048, 37.7875969 -122.4435646, 9.9906840 -84.1504287, 37.7853936 -122.4093312, 37.7621911 -122.4352428, 37.7623119 -122.4350524, 37.7624107 -122.4359472, 37.7623663 -122.4355805, 37.7624148 -122.4374826, 37.7628952 -122.4350231, 37.7638864 -122.4332716, 37.7639457 -122.4336524, 37.7677871 -122.4291506, 37.7676579 -122.4291238, 37.7672427 -122.4291913, 37.7678942 -122.4291010, 37.7672911 -122.4288313, 37.7678572 -122.4287240, 37.7882810 -122.4034650, 37.7920316 -122.4158514, 37.7890998 -122.4166329, 37.7929197 -122.4160112, 37.7956283 -122.4167948, 37.7623781 -122.3973643, 37.7659491 -122.4499203, 37.7777491 -122.4166993, 37.7784932 -122.4145772, 37.7996086 -122.4360904, 37.7997022 -122.4362285, 37.7995695 -122.4391803, 37.8004874 -122.4475303, 37.7990605 -122.4430620, 37.7999719 -122.4359078, 37.7988819 -122.4428431, 37.8006033 -122.4309704, 37.7993017 -122.4395074, 37.7920664 -122.4230774, 37.7939521 -122.4233809, 37.7984888 -122.4242871, 37.7228751 -122.4492993, 37.7843417 -122.4083799, 37.7732193 -122.5094719, 37.7730526 -122.5100823, 37.7713376 -122.5094780, 37.7730623 -122.5099524, 37.7736359 -122.5098469, 37.7510820 -122.4365124, 37.7902660 -122.4225849, 37.7809200 -122.4207186, 37.7734715 -122.4716467, 37.7732222 -122.4720004, 37.7767410 -122.4722999, 37.7845288 -122.4729578, 37.7730544 -122.4719870, 37.7769513 -122.4723886, 37.7765902 -122.4721548, 37.7843461 -122.4727748, 37.7733124 -122.4719545, 37.7824738 -122.4731577, 37.7772126 -122.4718860, 37.7846952 -122.4724611, 37.7842309 -122.4726881, 37.7653711 -122.4768439, 37.7637253 -122.4773406, 37.7651265 -122.4774410, 37.7651763 -122.4771473, 37.7655195 -122.4775619, 37.7981369 -122.4040437, 37.7984038 -122.4019150, 37.7864698 -122.3980058, 37.7898678 -122.4007776, 37.7846489 -122.4070405, 37.7841266 -122.4084047, 37.7559775 -122.4764013, 37.7601283 -122.4767065, 37.7483732 -122.4761739, 37.7599874 -122.4769846, 37.7526487 -122.4761825, 37.7487336 -122.4758329, 37.7562359 -122.4767119, 37.7503718 -122.4760331, 37.7451990 -122.4756672, 37.7464646 -122.4760287, 37.7540793 -122.4765228, 37.7502718 -122.4762798, 37.7485093 -122.4758701, 37.7485547 -122.4762718, 37.7521106 -122.4764229, 37.7577989 -122.4768064, 37.7450879 -122.4759346, 37.7466328 -122.4757654, 37.7578031 -122.4765444, 37.7540943 -122.4762690, 37.7373068 -122.4751533, 37.7271849 -122.4746491, 37.7413368 -122.4756969, 37.7414759 -122.4754270, 37.7391897 -122.4752419, 37.7309279 -122.4747158, 37.7433289 -122.4758221, 37.7263033 -122.4752117, 37.7433139 -122.4754986, 37.7391607 -122.4755616, 37.7376007 -122.4754212, 37.7311504 -122.4746276, 37.7310304 -122.4745228, 37.7312595 -122.4750192, 37.7216548 -122.4754813, 37.7173134 -122.4730047, 37.7645489 -122.4431699, 37.7774736 -122.4588050, 37.7769033 -122.4586521, 37.7771471 -122.4583141, 37.7693989 -122.4293944, 37.7934341 -122.3952982, 37.7860637 -122.4568864, 37.7875574 -122.4467799, 37.7875773 -122.4469696, 37.7865288 -122.4532785, 37.7879454 -122.4407257, 37.7862633 -122.4553541, 37.7863128 -122.4536142, 37.7846320 -122.4644747, 37.7869618 -122.4499244, 37.7871212 -122.4472522, 37.7856633 -122.4588196, 37.7881142 -122.4408796, 37.7508325 -122.4439701, 37.7511656 -122.4385830, 37.7471736 -122.4441832, 37.7704174 -122.4452853, 37.7741217 -122.4463069, 37.7757135 -122.4466914, 37.7669041 -122.4479460, 37.7700367 -122.4454051, 37.7673187 -122.4464799, 37.7739565 -122.4465032, 37.7702021 -122.4449433, 37.7788494 -122.4469825, 37.7672489 -122.4466451, 37.7718076 -122.4457938, 37.7719176 -122.4456066, 37.7756581 -122.4463390, 37.7785087 -122.4472714, 37.7671329 -122.4465199, 37.7786914 -122.4474453, 37.7774219 -122.4469247, 37.7670424 -122.4462687, 37.7670868 -122.4479048, 37.7739120 -122.4458712, 37.7675684 -122.4448406, 37.7787954 -122.4472048, 37.7673422 -122.4448799, 37.7146481 -122.4719381, 37.7244830 -122.4024083, 37.7169648 -122.3891600, 37.8014600 -122.4315507, 37.8015624 -122.4313898, 37.7353189 -122.5046077, 37.7351796 -122.5004996, 37.7353189 -122.5026175, 37.7098977 -122.3930198, 37.7167597 -122.4413933, 37.7165622 -122.4408255, 37.7324082 -122.4059021, 37.7293737 -122.4150047, 37.7692570 -122.4291174, 37.7291475 -122.4193716, 37.7339634 -122.3907499, 37.7343056 -122.3907340, 37.8269448 -122.3774052, 37.8219781 -122.3678899, 37.8183698 -122.3702624, 37.8299019 -122.3752682, 37.8283168 -122.3771872, 37.7900667 -122.3942010, 37.7904673 -122.3932275, 37.7885774 -122.3909566, 37.7899382 -122.3923940, 37.7892706 -122.3935798, 37.8199566 -122.3664933, 37.8231753 -122.3748357, 37.8241714 -122.3754505, 37.7485022 -122.4589160, 37.7467379 -122.4583284, 37.7689281 -122.4356947, 37.7721358 -122.4307953, 37.7720055 -122.4303556, 37.7722134 -122.4305711, 37.7720894 -122.4301052, 37.7920140 -122.4815698, 37.7378001 -122.4514647, 37.7377651 -122.4517551, 37.7716459 -122.5036197, 37.7535905 -122.4954095, 37.7532925 -122.4955658, 37.7607702 -122.4960244, 37.7844955 -122.3952726, 37.7628573 -122.3908626, 37.7877434 -122.4216333, 37.7587055 -122.4631292, 37.7585995 -122.4640519, 37.7584595 -122.4639124, 37.7582899 -122.4638427, 39.4661054 -6.3676957, 39.4692595 -6.3692342, 37.7605076 -122.4406247, 8.5077722 125.9789017, 37.7240697 -122.4522341, 37.7259918 -122.4522582, 37.7240485 -122.4524859, 37.7254488 -122.4525023, 37.7208496 -122.4474323, 37.7211045 -122.4473020, 37.7345842 -122.4719275, 37.7675843 -122.4355739, 37.7730240 -122.4528432, 37.7732066 -122.4524004, 37.8056765 -122.4371753, 37.7791532 -122.5129411, 37.7653828 -122.4156514, 37.7655458 -122.4128777, 37.7758058 -122.4971516, 37.7770300 -122.4640939, 37.7771635 -122.4636541, 37.7773038 -122.4642640, 37.7811799 -122.4122670, 37.7901405 -122.3932844, 37.7897441 -122.3935526, 37.7900769 -122.3938342, 37.7900303 -122.3929249, 37.7898479 -122.3929436, 37.7900153 -122.3936678, 37.7902698 -122.3932093, 37.7897844 -122.3938369, 37.7896339 -122.3928472, 37.7895788 -122.3933326, 37.7902549 -122.3935874, 37.7896742 -122.3936921, 37.7899687 -122.3930777, 37.7898459 -122.3936974, 37.7901977 -122.3934346, 37.7895215 -122.3929732, 37.7645161 -122.4327886, 37.7774211 -122.4160269, 37.7646988 -122.4244233, 9.9857757 -84.1100058, 37.7517598 -122.4254173, 37.7518770 -122.4255434, 37.7518932 -122.4231645, 37.7520190 -122.4226923, 37.7520780 -122.4202115, 37.7521821 -122.4204097, 37.7846325 -122.4668493, 37.7848927 -122.4647404, 37.7847936 -122.4669432, 37.7848461 -122.4651260, 37.7850597 -122.4648309, 37.7687493 -122.4030378, 37.7661987 -122.4028340, 37.7698985 -122.4034375, 37.7664574 -122.4026543, 37.7674763 -122.4028943, 37.7685627 -122.4028608, 37.7672368 -122.4026933, 37.7697585 -122.4032336, 37.7933155 -122.4011185, 37.7940361 -122.4014297, 37.7948174 -122.4012457, 37.7937309 -122.4011453, 37.7941718 -122.4012902, 37.7953841 -122.3969718, 37.7945999 -122.4030014, 37.7951679 -122.3989406, 37.7946423 -122.4047127, 37.7943922 -122.4045947, 37.7945109 -122.3977014, 37.7957783 -122.4035808, 37.7932052 -122.4012151, 37.7941845 -122.4002602, 37.7409957 -122.4661951, 37.7412300 -122.4662434, 37.7420207 -122.4942784, 37.7423984 -122.4946065, 37.7481450 -122.4139340, 37.7485740 -122.4136090, 37.7483690 -122.4140740, 37.7470478 -122.4135113, 37.8015930 -122.4295070, 37.7693241 -122.4529187, 37.7691502 -122.4531333, 37.7779590 -122.4382840, 37.7486563 -122.4707231, 37.7779013 -122.4381208, 37.7488826 -122.4686623, 37.7490207 -122.4684000, 37.7764755 -122.4261860, 37.7624054 -122.4149348, 37.7985693 -122.4243300, 37.7452070 -122.4133817, 37.7988554 -122.4523659, 8.5070910 125.9786762, 37.7229652 -122.4525001, 37.7237354 -122.4562527, 37.7479625 -122.4589779, 37.7316164 -122.4533024, 37.7236887 -122.4560891, 37.7585862 -122.4660394, 37.7583654 -122.4701243, 37.7340666 -122.4990233, 37.7339718 -122.4968714, 37.7368504 -122.4537673, 37.7729932 -122.4769430, 37.7728380 -122.4764588, 37.7748147 -122.4548948, 37.7767640 -122.4757735, 37.7766315 -122.4760914, 37.7655815 -122.4152362, 37.7650043 -122.4193576, 37.7652037 -122.4161172, 37.7618958 -122.4151034, 37.7650786 -122.4153876, 37.7337604 -122.4934171, 37.7339214 -122.4896757, 37.7338345 -122.4917168, 37.7869084 -122.4565151, 37.7529699 -122.4341555, 37.7316291 -122.4513250, 37.7299803 -122.4512285, 37.7314275 -122.4532403, 37.8082789 -122.4141009, 37.7693980 -122.4521124, 37.7734254 -122.4663049, 37.8005296 -122.4475648, 37.7997086 -122.4362667, 37.8008427 -122.4276089, 37.7881551 -122.4090877, 37.7904499 -122.4055375, 37.7927644 -122.3927085, 37.8084123 -122.4100480, 37.8071167 -122.4156479, 37.8004525 -122.4105821, 37.7950657 -122.3999088, 37.7874729 -122.4078678, 37.7857365 -122.4096385, 37.7800009 -122.4167733, 37.8167937 -122.3722982, 37.7761697 -122.4215410, 37.7745791 -122.4341180, 37.7936998 -122.4213961, 37.7707344 -122.4660864, 37.8020728 -122.4125753, 37.7902111 -122.4076489, 37.7899758 -122.4071611, 37.7763563 -122.3958020, 37.7844521 -122.4711623, 37.7846142 -122.4708404, 37.7818385 -122.4923290, 37.7834186 -122.4924440, 37.7836006 -122.4901440, 37.7836650 -122.4884266, 37.7839554 -122.4820021, 37.7837954 -122.4853763, 37.7840959 -122.4787941, 37.7929233 -122.4178901, 37.7814696 -122.4933616, 37.7834210 -122.4925857, 37.7837098 -122.4905627, 37.7838163 -122.4880702, 37.7839687 -122.4848702, 37.7841139 -122.4816301, 37.7818213 -122.4924756, 37.7815116 -122.4935222, 37.7716631 -122.4016977, 37.7980264 -122.4502029, 37.7684770 -122.4199182, -31.4348336 -62.0871169, 37.7483700 -122.4141900 +40 +48.7701846 9.1396353, 48.7276835 9.1087426, 48.7294246 9.1656576, 48.7368577 9.2271867, 48.7809227 9.1806028, 48.7273902 9.1117501, 48.7645889 9.1733372, 48.8176857 9.2487742, 48.8333184 9.1873643, 48.8334775 9.1794198, 48.7767829 9.1545653, 48.7276958 9.1024524, 48.7829242 9.2062334, 48.7646171 9.1434123, 48.7312314 9.1274441, 48.7363057 9.1093423, 48.8000632 9.2268497, 48.8154075 9.1200702, 48.8045414 9.1778666, 48.7223376 9.1573845, 48.7240693 9.1930107, 48.7619942 9.1613615, 48.7629149 9.1624609, 48.7005838 9.2090522, 48.8297902 9.1944334, 48.7381037 9.1020154, 48.7443115 9.1090741, 48.8027080 9.2213772 +48.7156317 8.2268140, 48.7913607 8.1911997, 48.7290336 8.1554927, 48.7522067 8.2485351, 48.7535173 8.2447141, 48.7677441 8.2305067, 48.7769422 8.2549352, 48.7464556 8.2066346, 48.7981271 8.1679392, 48.7074798 8.3199480, 48.7386713 8.2896820, 48.7778355 8.1869501, 48.7074212 8.2330668, 48.7784092 8.1874412, 48.8244955 8.2075570, 48.8093502 8.1833565, 48.7868830 8.1531499 +1 +391 +no +48.8489454 2.2753957, 48.8631204 2.2959928, 48.8295614 2.3220688, 48.8290722 2.3230781, 48.8423298 2.3028026, 48.8407876 2.3040494, 48.8451549 2.3019755, 48.8471891 2.3015558, 48.8429709 2.3024401, 48.8285463 2.2733712, 48.8424752 2.3019568, 48.8418283 2.2998841, 48.8439072 2.3068528, 48.8446620 2.3093235, 48.8465947 2.3160230, 48.8404472 2.3046245, 48.8416066 2.3084716, 48.8430491 2.3131144, 48.8432489 2.3126660, 48.8407276 2.3213414, 48.8447967 2.3246227, 48.8521941 2.3306860, 48.8516434 2.3277444, 48.8517487 2.3307914, 48.8453875 2.3686867, 48.8453126 2.3695255, 48.8456772 2.3714536, 48.8446991 2.3642693, 48.8460901 2.3720874, 48.8522029 2.3264371, 48.8421458 2.2990380, 48.8513250 2.3334375, 48.8517725 2.3274517, 48.8614952 2.3146148, 48.8598983 2.3144020, 48.8627959 2.3145027, 48.8514038 2.3013568, 48.8508889 2.3003799, 48.8515520 2.3004186, 48.8308078 2.3185643, 48.8306269 2.3187317, 48.8782918 2.3708065, 48.8397144 2.3019191, 48.8375382 2.2971355, 48.8375549 2.2958212, 48.8277556 2.3350602, 48.8342302 2.3084216, 48.8337381 2.3083597, 48.8577162 2.2801463, 48.8692186 2.3380768, 48.8951906 2.3716079, 48.8488965 2.3721895, 48.8400074 2.3043626, 48.8387638 2.3500744, 48.8514130 2.2915579, 48.8421476 2.3380942, 48.8371927 2.3352257, 48.8436151 2.3388947, 48.8334455 2.3333666, 48.8302224 2.3558903, 48.8311270 2.3568429, 48.8317798 2.3548457, 48.8276307 2.3705268, 48.8280051 2.3709464, 48.8278230 2.3717668, 48.8274045 2.3716705, 48.8292814 2.3691462, 48.8290293 2.3692466, 48.8216733 2.3728996, 48.8214437 2.3696601, 48.8220079 2.3692237, 48.8518092 2.2901250, 48.8417779 2.3558325, 48.8408784 2.3559403, 48.8376901 2.2820340, 48.8391393 2.2823450, 48.8387215 2.2787139, 48.8364152 2.2781531, 48.8345348 2.3055831, 48.8533525 2.2619231, 48.8475302 2.2576087, 48.8370719 2.2967038, 48.8428790 2.2982280, 48.8764756 2.4075759, 48.8266663 2.3642727, 48.8268069 2.3643956, 48.8267306 2.3419868, 48.8264737 2.3412334, 48.8264236 2.3423158, 48.8536250 2.3437819, 48.8588770 2.4023128, 48.8396998 2.4034172, 48.8598079 2.3768859, 48.8612952 2.3744128, 48.8620613 2.3731116, 48.8636493 2.3704713, 48.8654096 2.3675445, 48.8663455 2.3659468, 48.8196069 2.3594300, 48.8461522 2.3546060, 48.8458450 2.3736979, 48.8457039 2.3733492, 48.8895461 2.3352459, 48.8894531 2.3359432, 48.8273904 2.3050421, 48.8567324 2.3043552, 48.8584379 2.3035340, 48.8548691 2.3054827, 48.8454773 2.2554465, 48.8223316 2.3419720, 48.8775617 2.3941614, 48.8761654 2.3933417, 48.8779414 2.3962154, 48.8756031 2.3951576, 48.8755800 2.3949365, 48.8440426 2.3549543, 48.8438530 2.3548289, 48.8464037 2.3543532, 48.8361988 2.3588368, 48.8361684 2.3591102, 48.8387053 2.3570294, 48.8381693 2.3564318, 48.8929485 2.3159296, 48.8929197 2.3162667, 48.8909941 2.3193302, 48.8911749 2.3179130, 48.8894313 2.3163369, 48.8876223 2.3144223, 48.8874986 2.3253262, 48.8834896 2.3279960, 48.8873787 2.3179072, 48.8862910 2.3187654, 48.8887699 2.3158511, 48.8912420 2.3182656, 48.8918862 2.3180604, 48.8904358 2.3205767, 48.8893469 2.3224626, 48.8893845 2.3221190, 48.8878021 2.3255557, 48.8948740 2.3126337, 48.8871182 2.3136636, 48.8858524 2.3094045, 48.8849003 2.3065213, 48.8838357 2.3042691, 48.8813537 2.3003856, 48.8775401 2.2986435, 48.8748487 2.2973688, 48.8704345 2.3060391, 48.8366185 2.3104474, 48.8577397 2.3545629, 48.8929390 2.3267730, 48.8931223 2.3281296, 48.8974905 2.3299074, 48.8974156 2.3252188, 48.8922272 2.3240507, 48.8921486 2.3230976, 48.8780205 2.2838377, 48.8781429 2.2805112, 48.8805065 2.2838154, 48.8794920 2.2845803, 48.8815848 2.2853027, 48.8834211 2.2877660, 48.8835995 2.2885119, 48.8859228 2.2916718, 48.8856895 2.2924723, 48.8859435 2.2927942, 48.8863363 2.2929571, 48.8874458 2.2942814, 48.8870051 2.2950089, 48.8865481 2.2962193, 48.8875347 2.2989191, 48.8896933 2.3035707, 48.8896203 2.3026023, 48.8854063 2.2988360, 48.8904213 2.3050920, 48.8944575 2.3142796, 48.8355970 2.3973223, 48.8334019 2.3950589, 48.8342917 2.4003980, 48.8322566 2.3976172, 48.8356048 2.3860649, 48.8390275 2.3886414, 48.8384800 2.3884593, 48.8350607 2.3928884, 48.8511521 2.3437828, 48.8348982 2.3047212, 48.8349768 2.3054600, 48.8325038 2.3563901, 48.8373899 2.3453840, 48.8374797 2.3456195, 48.8379605 2.3456162, 48.8368846 2.3522809, 48.8341040 2.3538359, 48.8280231 2.2728182, 48.8372917 2.3516257, 48.8406075 2.3453776, 48.8415971 2.3434977, 48.8441863 2.3421945, 48.8464783 2.3410545, 48.8500927 2.3434240, 48.8505941 2.3460792, 48.8319357 2.3595832, 48.8372433 2.3905356, 48.8531563 2.2797589, 48.8978630 2.3451130, 48.8973821 2.3234126, 48.8978263 2.3330372, 48.8497208 2.3421402, 48.8498845 2.3425106, 48.8649583 2.3025212, 48.8612284 2.2843342, 48.8612363 2.2837982, 48.8525670 2.3435715, 48.8540489 2.3472499, 48.8651536 2.3438914, 48.8648972 2.3444013, 48.8659762 2.3403632, 48.8700786 2.3390402, 48.8686963 2.3407757, 48.8711062 2.3324548, 48.8655300 2.3432955, 48.8277565 2.3319745, 48.8375896 2.3909693, 48.8647311 2.3455877, 48.8665372 2.3507814, 48.8502691 2.3592646, 48.8581877 2.3481385, 48.8583004 2.3481974, 48.8536627 2.3572222, 48.8561685 2.3573966, 48.8577280 2.3480747, 48.8792548 2.3897570, 48.8601321 2.3565738, 48.8574275 2.3991286, 48.8618401 2.4002194, 48.8614260 2.4001621, 48.8654069 2.3981526, 48.8644101 2.3987377, 48.8529164 2.4061182, 48.8522508 2.4060578, 48.8481835 2.4065736, 48.8480869 2.4062423, 48.8577419 2.3994826, 48.8595686 2.4017103, 48.8592406 2.4024195, 48.8594221 2.4024764, 48.8565434 2.4048103, 48.8559169 2.4049577, 48.8598233 2.3566791, 48.8588131 2.3584686, 48.8552188 2.3613773, 48.8563513 2.3645998, 48.8538981 2.3652524, 48.8534024 2.3684609, 48.8512417 2.3630436, 48.8515266 2.3620585, 48.8522576 2.3663930, 48.8524324 2.3663947, 48.8631921 2.3515058, 48.8628413 2.3530497, 48.8629125 2.3542573, 48.8666488 2.3610364, 48.8652056 2.3568722, 48.8567580 2.3644946, 48.8418462 2.3208115, 48.8421032 2.3593721, 48.8442022 2.4403364, 48.8316687 2.3144509, 48.8319547 2.3138177, 48.8330154 2.3109762, 48.8325273 2.3118658, 48.8307202 2.3195057, 48.8387309 2.3170445, 48.8378977 2.3189435, 48.8323668 2.3205507, 48.8340264 2.3218065, 48.8364800 2.3227216, 48.8380166 2.3228744, 48.8409450 2.3216884, 48.8429111 2.3239839, 48.8430021 2.3236957, 48.8435373 2.3236944, 48.8436885 2.3245680, 48.8422437 2.3289484, 48.8384348 2.3221998, 48.8358029 2.3237262, 48.8365711 2.3231310, 48.8534432 2.3343769, 48.8532439 2.3325237, 48.8493704 2.3375128, 48.8475201 2.3400808, 48.8441246 2.3385444, 48.8509483 2.3268191, 48.8510630 2.3263437, 48.8437235 2.3301587, 48.8451806 2.3320051, 48.8435853 2.3386214, 48.8415167 2.3298708, 48.8415819 2.3295984, 48.8473053 2.3164904, 48.8656756 2.3523315, 48.8814037 2.3577012, 48.8817615 2.3578713, 48.8639328 2.3513569, 48.8811334 2.3575727, 48.8714947 2.3556284, 48.8806709 2.3573534, 48.8808660 2.3574489, 48.8674622 2.3533343, 48.8818055 2.3575890, 48.8610207 2.3497198, 48.8687565 2.3554770, 48.8745399 2.3585970, 48.8657321 2.3545236, 48.8718609 2.3572612, 48.8594617 2.3524229, 48.8574683 2.3506207, 48.8763129 2.3567488, 48.8271528 2.3263805, 48.8237365 2.3272509, 48.8292835 2.3279543, 48.8317132 2.3300958, 48.8722799 2.3214671, 48.8723489 2.3218115, 48.8226798 2.3251501, 48.8320389 2.3253141, 48.8339441 2.3244793, 48.8744183 2.3203899, 48.8742683 2.3200662, 48.8746146 2.3213634, 48.8746827 2.3251473, 48.8754131 2.3259821, 48.8740995 2.3251548, 48.8774036 2.3230566, 48.8770740 2.3232337, 48.8786425 2.3231734, 48.8773191 2.3268758, 48.8828444 2.3270934, 48.8829922 2.3266892, 48.8827827 2.3246677, 48.8828082 2.3263774, 48.8836424 2.3269176, 48.8841578 2.3284710, 48.8843540 2.3287817, 48.8832223 2.3238278, 48.8791123 2.3219277, 48.8791163 2.3221422, 48.8823224 2.3205491, 48.8748626 2.3183567, 48.8749808 2.3105016, 48.8748908 2.3082017, 48.8732638 2.3118620, 48.8734259 2.3101215, 48.8576274 2.3483969, 48.8370231 2.3348031, 48.8349600 2.3328023, 48.8558534 2.3461144, 48.8339844 2.3319418, 48.8400156 2.3364375, 48.8421064 2.3378086, 48.8463611 2.3401536, 48.8681151 2.3102843, 48.8619731 2.3104599, 48.8540110 2.3062926, 48.8724176 2.3147131, 48.8747135 2.3144761, 48.8695776 2.3114383, 48.8543818 2.3060906, 48.8510149 2.3113318, 48.8511473 2.3067123, 48.8603560 2.3102953, 48.8655890 2.3103848, 48.8458299 2.3188069, 48.8568059 2.3093976, 48.8465829 2.3155696, 48.8524922 2.3081057, 48.8546863 2.3062774, 48.8756587 2.3231876, 48.8530184 2.3082152, 48.8443457 2.3227793, 48.8747073 2.3206783, 48.8740382 2.3161279, 48.8743831 2.3230682, 48.8684708 2.3100440, 48.8743575 2.3232911, 48.8694027 2.3099679, 48.8755046 2.3236261, 48.8739179 2.3367122, 48.8807173 2.3570822, 48.8781339 2.3527959, 48.8699225 2.3284051, 48.8683675 2.3095340, 48.8722111 2.3328610, 48.8786035 2.3545591, 48.8704439 2.3315732, 48.8745220 2.3390067, 48.8768811 2.3480086, 48.8694447 2.3257548, 48.8804185 2.3095834, 48.8803381 2.3082693, 48.8791330 2.3036063, 48.8802871 2.3513477, 48.8688506 2.3233456, 48.8704061 2.3238110, 48.8702320 2.3236793, 48.8705097 2.3263591, 48.8725812 2.3308708, 48.8702668 2.3294666, 48.8728818 2.3342641, 48.8721223 2.3306080, 48.8726697 2.3384369, 48.8781343 2.3444339, 48.8767011 2.3414674, 48.8796328 2.3492037, 48.8668906 2.3058767, 48.8683270 2.3090072, 48.8661975 2.3193706, 48.8670618 2.3210303, 48.8681996 2.3130438, 48.8670039 2.3212252, 48.8687132 2.3095178, 48.8666885 2.3204566, 48.8596836 2.3100205, 48.8571033 2.3096039, 48.8651594 2.3102159, 48.8556204 2.3073399, 48.8619770 2.3102113, 48.8442457 2.3223611, 48.8510607 2.3073810, 48.8455842 2.3187473, 48.8508710 2.3112286, 48.8470473 2.3110481, 48.8471541 2.3162252, 48.8325599 2.3247796, 48.8332241 2.3245306, 48.8284741 2.3264674, 48.8273986 2.3268247, 48.8308768 2.3296100, 48.8325965 2.3311370, 48.8349016 2.3330741, 48.8460230 2.3402198, 48.8392162 2.3368280, 48.8394568 2.3371394, 48.8557611 2.3463229, 48.8530751 2.3440672, 48.8677159 2.2995676, 48.8649545 2.3007316, 48.8678007 2.2992453, 48.8726619 2.2959120, 48.8731597 2.2965177, 48.8746311 2.3024124, 48.8738619 2.2969385, 48.8762550 2.3007388, 48.8786860 2.2987411, 48.8780675 2.2972769, 48.8781435 2.2989719, 48.8783783 2.2989441, 48.8869716 2.3323289, 48.8837731 2.3593434, 48.8797404 2.3583417, 48.8805789 2.3615619, 48.8808347 2.3579388, 48.8818122 2.3584802, 48.8810529 2.3579435, 48.8654199 2.3135631, 48.8734879 2.2963998, 48.8652505 2.3135377, 48.8739596 2.2963637, 48.8730816 2.2958401, 48.8734383 2.2965675, 48.8746130 2.2954618, 48.8808680 2.3632201, 48.8808018 2.3646698, 48.8820400 2.3664133, 48.8318269 2.3657386, 48.8314535 2.3659857, 48.8319065 2.3591614, 48.8335312 2.3339521, 48.8653317 2.2948667, 48.8641551 2.2934048, 48.8640141 2.2929862, 48.8640715 2.3010513, 48.8634829 2.2966080, 48.8670224 2.2902399, 48.8666049 2.2896888, 48.8406277 2.3516012, 48.8406796 2.3519557, 48.8386026 2.3501015, 48.8638512 2.2879382, 48.8602887 2.2859058, 48.8280021 2.2979663, 48.8637773 2.2876366, 48.8632498 2.2859288, 48.8726715 2.2940864, 48.8732129 2.2934594, 48.8731760 2.2938072, 48.8726221 2.2943066, 48.8692074 2.2859874, 48.8714154 2.2892192, 48.8717477 2.2846883, 48.8719757 2.2848303, 48.8746030 2.2841611, 48.8743635 2.2840186, 48.8769335 2.2846374, 48.8763467 2.2821327, 48.8639110 2.2913488, 48.8753652 2.2795664, 48.8684369 2.2729766, 48.8683754 2.2732348, 48.8643826 2.2733115, 48.8640077 2.2727886, 48.8636582 2.2771280, 48.8635567 2.2768833, 48.8658220 2.2796478, 48.8657966 2.2794544, 48.8610434 2.2753874, 48.8634542 2.2690299, 48.8766631 2.2836355, 48.8578608 2.2777002, 48.8394041 2.3097189, 48.8411046 2.3138036, 48.8389838 2.3118312, 48.8405805 2.3157055, 48.8400276 2.3147291, 48.8395301 2.3370603, 48.8421574 2.3289683, 48.8396598 2.3612235, 48.8396827 2.3609897, 48.8408283 2.3332010, 48.8431157 2.3641956, 48.8388776 2.3391993, 48.8425206 2.3638998, 48.8404210 2.3341998, 48.8486934 2.3709664, 48.8381830 2.3562021, 48.8521834 2.3696810, 48.8522667 2.3690906, 48.8386517 2.3400077, 48.8434131 2.3641764, 48.8369425 2.3527355, 48.8387033 2.3140244, 48.8386871 2.3167167, 48.8420777 2.3198691, 48.8420412 2.3210967, 48.8410408 2.3163136, 48.8448126 2.3248961, 48.8447160 2.3248023, 48.8419877 2.3208487, 48.8418600 2.3204213, 48.8419832 2.2989207, 48.8372796 2.3192193, 48.8373937 2.3193036, 48.8232096 2.3308259, 48.8262657 2.3045622, 48.8628797 2.3114175, 48.8629640 2.3144329, 48.8760465 2.3442570, 48.8487534 2.3283755, 48.8464655 2.3262412, 48.8526089 2.3335342, 48.8512874 2.3309516, 48.8483289 2.3275562, 48.8523154 2.3313835, 48.8492896 2.3291229, 48.8466349 2.3266773, 48.8512586 2.3306941, 48.8380672 2.3081245, 48.8272119 2.3007929, 48.8369864 2.3070893, 48.8343962 2.3047706, 48.8416848 2.3123439, 48.8288874 2.3013461, 48.8400384 2.3101622, 48.8318739 2.3027278, 48.8390417 2.3002200, 48.8371284 2.3025788, 48.8376950 2.3058614, 48.8370279 2.3060674, 48.8285614 2.3036420, 48.8314345 2.3057638, 48.8557169 2.3311016, 48.8578807 2.3329161, 48.8562652 2.3345020, 48.8583260 2.3336914, 48.8543731 2.3336691, 48.8642974 2.3351767, 48.8641001 2.3349408, 48.8608207 2.3339436, 48.8608081 2.3335569, 48.8921211 2.3353653, 48.8918649 2.3336335, 48.8723241 2.3294239, 48.8699160 2.3327613, 48.8964443 2.3381818, 48.8957201 2.3379375, 48.8723213 2.3297859, 48.8983232 2.3370882, 48.8993452 2.3360266, 48.8972690 2.3380342, 48.8938929 2.3366312, 48.8712151 2.3314439, 48.8950123 2.3372895, 48.8905722 2.3338767, 48.8696870 2.3325395, 48.8908674 2.3318979, 48.8711264 2.3315999, 48.8933179 2.3360748, 48.8732366 2.3278765, 48.8868241 2.3325865, 48.8669825 2.3340214, 48.8850309 2.3302866, 48.8803346 2.3245245, 48.8785356 2.3228814, 48.8713168 2.3312724, 48.8909507 2.3312150, 48.8669605 2.3337144, 48.8981006 2.3370689, 48.8572986 2.2651050, 48.8559722 2.2748659, 48.8523372 2.2763466, 48.8509120 2.2788151, 48.8512031 2.2788694, 48.8752158 2.3247654, 48.8751393 2.3248777, 48.8748983 2.3207146, 48.8750101 2.3266014, 48.8733946 2.3267106, 48.8733100 2.3269826, 48.8753428 2.3254477, 48.8742637 2.3241155, 48.8745153 2.3190057, 48.8744039 2.3267612, 48.8754880 2.3247457, 48.8749427 2.3211954, 48.8737331 2.3279649, 48.8739545 2.3263050, 48.8213104 2.3255367, 48.8500186 2.2725403, 48.8498676 2.2719130, 48.8203251 2.3563923, 48.8205673 2.3510636, 48.8186657 2.3597431, 48.8206776 2.3511207, 48.8201876 2.3561558, 48.8510516 2.2719805, 48.8303062 2.3545891, 48.8325638 2.3549019, 48.8310557 2.3569540, 48.8314583 2.3546834, 48.8315991 2.3564164, 48.8317238 2.3562329, 48.8276673 2.3566761, 48.8259359 2.3572159, 48.8265940 2.3572132, 48.8262338 2.3578419, 48.8280844 2.3567559, 48.8260907 2.3565715, 48.8273996 2.3588259, 48.8275576 2.3589422, 48.8262038 2.3607487, 48.8263012 2.3606389, 48.8277796 2.3279189, 48.8278937 2.3276801, 48.8282540 2.3257415, 48.8279552 2.3261551, 48.8332550 2.3328564, 48.8352162 2.3319409, 48.8337885 2.3314390, 48.8350966 2.3323296, 48.8341579 2.3307400, 48.8362123 2.3272536, 48.8334502 2.3323448, 48.8376639 2.3218418, 48.8361574 2.3270104, 48.8346438 2.3316567, 48.8375281 2.3219176, 48.8304341 2.3336670, 48.8245522 2.3362436, 48.8273064 2.3355232, 48.8243777 2.3359140, 48.8273875 2.3358241, 48.8330280 2.3330639, 48.8214945 2.3342678, 48.8305165 2.3340095, 48.8271553 2.3348523, 48.8491979 2.2878280, 48.8416721 2.2812868, 48.8436980 2.2823501, 48.8470256 2.2859489, 48.8479821 2.2899763, 48.8397005 2.2732897, 48.8435845 2.2822729, 48.8363400 2.2810850, 48.8393595 2.2752352, 48.8492676 2.2911136, 48.8435788 2.2829261, 48.8372963 2.2774666, 48.8407269 2.2962412, 48.8394391 2.2746624, 48.8384288 2.2886314, 48.8399325 2.2724353, 48.8379475 2.2753696, 48.8454419 2.2877545, 48.8391552 2.2912931, 48.8369975 2.2780771, 48.8397939 2.2723995, 48.8342786 2.2908972, 48.8358098 2.2893082, 48.8353597 2.2857456, 48.8389935 2.2997761, 48.8346549 2.2844230, 48.8449576 2.3113153, 48.8355718 2.2930303, 48.8330496 2.2890202, 48.8521144 2.2680241, 48.8389694 2.3504555, 48.8388926 2.3509388, 48.8461796 2.3486258, 48.8462815 2.3510000, 48.8476493 2.3404322, 48.8490884 2.3558926, 48.8462477 2.3487961, 48.8466442 2.3436544, 48.8466940 2.3442107, 48.8467333 2.3519297, 48.8433636 2.3657267, 48.8493095 2.3573406, 48.8444660 2.3637892, 48.8492477 2.3370265, 48.8474868 2.3282896, 48.8435758 2.3654179, 48.8471966 2.3602656, 48.8292241 2.3777049, 48.8485184 2.3583158, 48.8343173 2.3733707, 48.8485716 2.3320351, 48.8447711 2.3192081, 48.8487637 2.3333068, 48.8346575 2.3733881, 48.8311701 2.3763282, 48.8474523 2.3285202, 48.8438522 2.3641187, 48.8462495 2.3263016, 48.8301599 2.2956527, 48.8333403 2.2984482, 48.8280306 2.2932205, 48.8300526 2.3768653, 48.8331877 2.2993210, 48.8352328 2.3027334, 48.8352344 2.3031152, 48.8281384 2.2929988, 48.8301319 2.2959205, 48.8322989 2.3024216, 48.8357176 2.3018620, 48.8802511 2.3667774, 48.8489701 2.2751304, 48.8904347 2.3761934, 48.8429219 2.2776049, 48.8460811 2.2778714, 48.8425254 2.2772241, 48.8463741 2.2812307, 48.8400351 2.2781590, 48.8463249 2.2861893, 48.8463476 2.2865098, 48.8449331 2.2899068, 48.8471518 2.2851521, 48.8462601 2.2813813, 48.8433659 2.2937169, 48.8534190 2.2768609, 48.8463939 2.2772344, 48.8437381 2.2980571, 48.8406969 2.2778770, 48.8447996 2.2899924, 48.8488386 2.2822191, 48.8490488 2.2822352, 48.8435904 2.2940483, 48.8549721 2.2958121, 48.8572690 2.3000188, 48.8588607 2.2983780, 48.8574346 2.2994944, 48.8603298 2.2957775, 48.8624334 2.3006635, 48.8627932 2.3020220, 48.8550134 2.2967165, 48.8519760 2.2920058, 48.8530439 2.2933186, 48.8528607 2.2929220, 48.8589615 2.2979188, 48.8425407 2.2858049, 48.8604705 2.2958692, 48.8488093 2.2638756, 48.8565279 2.3020157, 48.8489724 2.3151968, 48.8517297 2.3238113, 48.8558459 2.3027766, 48.8517335 2.3186611, 48.8521091 2.3268205, 48.8496603 2.3227545, 48.8516468 2.3140535, 48.8486274 2.3210606, 48.8524080 2.3088388, 48.8515252 2.3108244, 48.8518368 2.3152799, 48.8512275 2.3262711, 48.8495330 2.3228364, 48.8482503 2.2591719, 48.8845509 2.3603185, 48.8477108 2.2577586, 48.8480143 2.2697472, 48.8476567 2.2729042, 48.8455383 2.2719509, 48.8598612 2.3525854, 48.8780132 2.3711683, 48.8784230 2.3737799, 48.8784006 2.3746677, 48.8787762 2.3780372, 48.8788918 2.3779824, 48.8787848 2.3743924, 48.8786876 2.3742462, 48.8858628 2.2922220, 48.8450647 2.2711737, 48.8434133 2.2604555, 48.8448777 2.2574386, 48.8421412 2.2558818, 48.8421354 2.2561542, 48.8394476 2.2619627, 48.8387775 2.2623653, 48.8399328 2.2627890, 48.8404894 2.2643470, 48.8431143 2.2692014, 48.8358949 2.3858274, 48.8868781 2.3613097, 48.8898844 2.3634601, 48.8633742 2.4097586, 48.8574854 2.3489236, 48.8380099 2.2561218, 48.8382652 2.2581065, 48.8375152 2.2564004, 48.8372504 2.2588300, 48.8255859 2.3018853, 48.8525109 2.3463681, 48.8763078 2.3580926, 48.8758789 2.3579712, 48.8760364 2.3579845, 48.8761843 2.3586622, 48.8622556 2.3254741, 48.8226432 2.3472363, 48.8493215 2.3553775, 48.8493863 2.3538113, 48.8438142 2.3421649, 48.8468550 2.2580592, 48.8450296 2.2572265, 48.8471550 2.2582168, 48.8470125 2.2585617, 48.8482929 2.2600704, 48.8569785 2.3044705, 48.8242957 2.3399434, 48.8615529 2.3148677, 48.8620416 2.3343608, 48.8602936 2.3272306, 48.8711059 2.3322241, 48.8712950 2.3325295, 48.8441144 2.4416221, 48.8656246 2.3201947, 48.8728489 2.3318466, 48.8838676 2.3225552, 48.8810552 2.3243998, 48.8757854 2.3237081, 48.8845053 2.3217344, 48.8882678 2.3160185, 48.8867550 2.3170374, 48.8846941 2.3192435, 48.8945700 2.3209462, 48.8957805 2.3227289, 48.8971979 2.3245076, 48.8993734 2.3207097, 48.8472291 2.3863740, 48.8474932 2.3873542, 48.8483088 2.3945473, 48.8481859 2.3947143, 48.8462890 2.3780990, 48.8467598 2.3810401, 48.8506910 2.3783087, 48.8990495 2.3212985, 48.8967767 2.3225340, 48.8940147 2.3203574, 48.8486840 2.3968021, 48.8477832 2.3911928, 48.8467571 2.3822165, 48.8518573 2.4008515, 48.8524046 2.4010916, 48.8511975 2.3974494, 48.8681803 2.3623804, 48.8680902 2.3639328, 48.8313075 2.3982891, 48.8322157 2.3891306, 48.8317101 2.3877834, 48.8315393 2.3983178, 48.8177557 2.4597142, 48.8338167 2.4550750, 48.8276017 2.4641428, 48.8356934 2.4525728, 48.8346621 2.4489644, 48.8401025 2.4383747, 48.8296702 2.4613315, 48.8363543 2.4417575, 48.8410158 2.4388289, 48.8345020 2.4545488, 48.8278514 2.4636174, 48.8347936 2.4498580, 48.8371516 2.4408984, 48.8354560 2.4533620, 48.8718417 2.3332868, 48.8827868 2.3443205, 48.8834085 2.3462374, 48.8832199 2.3465158, 48.8822953 2.3405605, 48.8829739 2.3440228, 48.8819819 2.3401989, 48.8822704 2.3374453, 48.8521527 2.2734766, 48.8450476 2.3717769, 48.8448979 2.3716168, 48.8447402 2.3718129, 48.8435992 2.3738341, 48.8441086 2.3729451, 48.8701555 2.3331174, 48.8837939 2.3329962, 48.8835150 2.3330746, 48.8478278 2.3903629, 48.8367358 2.4030677, 48.8398410 2.3943255, 48.8369788 2.4029173, 48.8382147 2.3990423, 48.8433132 2.3836866, 48.8400154 2.3942912, 48.8382948 2.3993409, 48.8480895 2.3949758, 48.8430366 2.3839344, 48.8391042 2.3965498, 48.8416747 2.3873401, 48.8486471 2.3946702, 48.8411428 2.3884744, 48.8406463 2.3907075, 48.8445304 2.3812481, 48.8392771 2.3966612, 48.8357969 2.4061420, 48.8446160 2.3806775, 48.8345268 2.4442929, 48.8344774 2.4442169, 48.8354784 2.4074292, 48.8343511 2.4116845, 48.8351079 2.4071091, 48.8679551 2.3442419, 48.8674567 2.3465359, 48.8371501 2.3908184, 48.8441215 2.4405058, 48.8440722 2.4406777, 48.8440544 2.4409292, 48.8440308 2.4412257, 48.8440012 2.4415491, 48.8440831 2.4418537, 48.8441372 2.4412257, 48.8299861 2.3923363, 48.8387219 2.4610743, 48.8389146 2.4608927, 48.8809872 2.3249011, 48.8649283 2.3600564, 48.8661356 2.3612500, 48.8666781 2.3642229, 48.8515768 2.3137932, 48.8606025 2.3784879, 48.8440168 2.3905783, 48.8498040 2.3849378, 48.8673556 2.3730783, 48.8393396 2.4294885, 48.8554308 2.3810628, 48.8646338 2.3748521, 48.8495946 2.3848569, 48.8600036 2.3787340, 48.8470697 2.3870806, 48.8476942 2.3863883, 48.8734359 2.3700594, 48.8764703 2.3606172, 48.8697465 2.3711032, 48.8648377 2.3749652, 48.8622337 2.3766437, 48.8412228 2.3937600, 48.8757278 2.3703753, 48.8560465 2.3813951, 48.8414255 2.3937514, 48.8703200 2.3708846, 48.8622354 2.3768772, 48.8678166 2.3725286, 48.8445961 2.3896940, 48.8394189 2.4303769, 48.8770384 2.3660406, 48.8757128 2.3687003, 48.8717094 2.3696240, 48.8764187 2.3608744, 48.8677540 2.3774503, 48.8956350 2.3166909, 48.8958594 2.3179696, 48.8671524 2.3067325, 48.8483695 2.3978300, 48.8480553 2.3970747, 48.8581127 2.3797697, 48.8582240 2.3802866, 48.8577899 2.3809996, 48.8579546 2.3806509, 48.8304773 2.3438587, 48.8309647 2.3443094, 48.8288392 2.3423160, 48.8716579 2.3326787, 48.8718086 2.3327448, 48.8258805 2.3410294, 48.8531959 2.3776876, 48.8858712 2.3164829, 48.8854270 2.3171604, 48.8824475 2.3199667, 48.8820235 2.3209613, 48.8817777 2.3207315, 48.8687875 2.3019902, 48.8364006 2.3942065, 48.8400397 2.3814476, 48.8401096 2.3818762, 48.8410628 2.3783033, 48.8407150 2.3783893, 48.8432202 2.3741663, 48.8514120 2.3630325, 48.8526880 2.3689507, 48.8501976 2.3595725, 48.8444350 2.4055551, 48.8450880 2.4058828, 48.8389131 2.3938184, 48.8390440 2.3937869, 48.8394970 2.3969576, 48.8397088 2.3966435, 48.8649773 2.3999903, 48.8422861 2.4051224, 48.8424685 2.4050114, 48.8501775 2.4062934, 48.8507018 2.4064450, 48.8398005 2.4040117, 48.8270329 2.3669933, 48.8395540 2.3993780, 48.8397110 2.3993892, 48.8296079 2.3751019, 48.8296879 2.3750199, 48.8355605 2.3857259, 48.8339034 2.3829597, 48.8340237 2.3828656, 48.8319172 2.3790316, 48.8319210 2.3793578, 48.8271017 2.3667162, 48.8647865 2.3655310, 48.8649235 2.3657927, 48.8621889 2.3667904, 48.8619845 2.3671289, 48.8897139 2.3394367, 48.8638603 2.3206045, 48.8388610 2.3611486, 48.8390433 2.3609520, 48.8648409 2.2341295, 48.8646980 2.2348832, 48.8654514 2.2339766, 48.8188531 2.3442844, 48.8506399 2.3792121, 48.8393669 2.3206135, 48.9006354 2.3209397, 48.9009850 2.3292194, 48.8468289 2.4118902, 48.8471299 2.4117895, 48.8491714 2.4125984, 48.8770504 2.4094309, 48.8585739 2.2749254, 48.8375739 2.4083194, 48.8764567 2.3370539, 48.8760287 2.3366785, 48.8762066 2.3360072, 48.8614476 2.2755091, 48.8642416 2.2770207, 48.8674365 2.2806449, 48.8473883 2.2580363, 48.8680878 2.2817635, 48.8706577 2.3428415, 48.8530131 2.3698153, 48.8502500 2.3825079, 48.8503771 2.3824789, 48.8530591 2.3707818, 48.8513798 2.3754838, 48.8529695 2.3706763, 48.8520725 2.3732723, 48.8566143 2.3643097, 48.8530507 2.3682971, 48.8487387 2.3929660, 48.8489778 2.3924236, 48.8281405 2.3891647, 48.8714182 2.3361457, 48.8798182 2.3592216, 48.8817621 2.3666052, 48.8828578 2.3708170, 48.8494437 2.2985474, 48.8345773 2.4201923, 48.8289147 2.4196154, 48.8277447 2.4194543, 48.8602770 2.3403556, 48.8649634 2.3094689, 48.8303693 2.3819203, 48.8307893 2.3773330, 48.8284632 2.3842495, 48.8308566 2.3815897, 48.8291835 2.3836964, 48.8897318 2.3833349, 48.8904053 2.3823863, 48.8781963 2.3378153, 48.8787176 2.3371055, 48.8564583 2.3250707, 48.8472368 2.4072689, 48.8579370 2.4047277, 48.8563970 2.3255540, 48.8565275 2.3253806, 48.8555402 2.3255106, 48.8558531 2.3260472, 48.8561914 2.3262556, 48.8577783 2.3235579, 48.8581009 2.3233340, 48.8583253 2.3231317, 48.8584864 2.3232947, 48.8588911 2.3229260, 48.8537471 2.3263447, 48.8537351 2.3260370, 48.8590614 2.3289969, 48.8546818 2.3293290, 48.8675867 2.3437920, 48.8790340 2.2945201, 48.8790567 2.2942853, 48.8518528 2.4016439, 48.8510709 2.3973798, 48.8526364 2.4054371, 48.8547712 2.3858839, 48.8543518 2.3857021, 48.8543260 2.3861381, 48.8546530 2.3849282, 48.8587884 2.3848896, 48.8498688 2.3855808, 48.8322356 2.2781024, 48.8356758 2.2781754, 48.8597982 2.3444831, 48.8597454 2.3446459, 48.8595575 2.3452259, 48.8605224 2.3310090, 48.8534422 2.4099675, 48.8533556 2.4100827, 48.8650127 2.3979287, 48.8632147 2.4042183, 48.8633962 2.4041437, 48.8659357 2.4004992, 48.8620785 2.4061547, 48.8705641 2.3992800, 48.8620353 2.4059012, 48.8729894 2.3979406, 48.8680459 2.4010667, 48.8689014 2.4009778, 48.8647077 2.4119384, 48.8712170 2.3989347, 48.8726069 2.3977984, 48.8642878 2.4018417, 48.8603235 2.4095533, 48.8602867 2.4092069, 48.8562693 2.3933176, 48.8561851 2.3934136, 48.8557465 2.3908208, 48.8556539 2.3909708, 48.8522965 2.3895725, 48.8495384 2.3937307, 48.8496872 2.3939109, 48.8519359 2.3733433, 48.8525451 2.4055439, 48.8693540 2.3084450, 48.8701814 2.3058463, 48.8448277 2.4029841, 48.8453984 2.4020122, 48.8445403 2.4064052, 48.8451043 2.4013784, 48.8441650 2.4108287, 48.8447803 2.4052300, 48.8442921 2.4109375, 48.8493174 2.3285389, 48.8632747 2.3421251, 48.8632959 2.3419124, 48.8613141 2.3411077, 48.8647635 2.3426706, 48.8699915 2.3516342, 48.8168023 2.3342690, 48.8164222 2.3405387, 48.8495417 2.3887046, 48.8492264 2.3897711, 48.8484573 2.3278663, 48.8389034 2.2566465, 48.8389549 2.2569048, 48.8390178 2.2576472, 48.8410070 2.2585979, 48.8904689 2.3454601, 48.8911905 2.3487094, 48.8910566 2.3495078, 48.8912368 2.3497072, 48.8913695 2.3502570, 48.8625408 2.3026654, 48.8415408 2.3679418, 48.8311371 2.3240098, 48.8404277 2.2646117, 48.8413631 2.2660364, 48.8698995 2.2844641, 48.8699289 2.2861384, 48.8702388 2.2852708, 48.8515992 2.3401247, 48.8521327 2.3397250, 48.8522361 2.3391031, 48.8522703 2.3392048, 48.8775306 2.4066025, 48.8599592 2.3464575, 48.8529260 2.3472349, 48.8278790 2.3318860, 48.8532394 2.4119583, 48.8622954 2.2681905, 48.8608867 2.2670598, 48.8608209 2.2667223, 48.8324853 2.4033357, 48.8483822 2.4076890, 48.8489761 2.4042789, 48.8872453 2.3133637, 48.8512796 2.3764602, 48.8514561 2.3756984, 48.8509337 2.3755804, 48.8517401 2.3764776, 48.8215002 2.3417458, 48.8518713 2.2792044, 48.8509347 2.2779927, 48.8715165 2.3434427, 48.8718185 2.3415958, 48.8708978 2.3472731, 48.8700491 2.3513952, 48.8758612 2.3392890, 48.8763673 2.3398734, 48.8476843 2.2741123, 48.8655197 2.3418184, 48.8498570 2.3555877, 48.8511027 2.3515716, 48.8465004 2.3408141, 48.8461780 2.3407172, 48.8416298 2.3432384, 48.8557910 2.2707104, 48.8534877 2.2704880, 48.8940940 2.3319275, 48.8940074 2.3332141, 48.8977687 2.3447250, 48.8934301 2.3373685, 48.8880881 2.3398100, 48.8977942 2.3296684, 48.8978914 2.3360445, 48.8977999 2.3407221, 48.8928612 2.3274828, 48.8989209 2.3287808, 48.8960801 2.3285984, 48.8336722 2.2867372, 48.8354046 2.2893217, 48.8192098 2.3587466, 48.8255239 2.3572990, 48.8195050 2.3591982, 48.8316066 2.3137780, 48.8588051 2.4057136, 48.8752706 2.3574586, 48.8216998 2.3244752, 48.8686664 2.3014767, 48.8515033 2.4117685, 48.8721246 2.3006722, 48.8601726 2.2805542, 48.8603004 2.2814845, 48.8578135 2.2739656, 48.8594111 2.2780225, 48.8594915 2.2778705, 48.8625162 2.2865767, 48.8719166 2.2935880, 48.8691576 2.2917845, 48.8694005 2.2917131, 48.8639459 2.2877623, 48.8629572 2.2857745, 48.8642184 2.2879895, 48.8676367 2.2906843, 48.8766898 2.4062518, 48.8761364 2.3315289, 48.8541362 2.3436693, 48.8544747 2.3444214, 48.8882842 2.3735245, 48.8275820 2.3931098, 48.8315388 2.3875552, 48.8318644 2.3879883, 48.8317653 2.3883392, 48.8345471 2.3880444, 48.8346204 2.3881531, 48.8457440 2.3737031, 48.8460468 2.3776983, 48.8479042 2.4029626, 48.8588784 2.3795116, 48.8543561 2.3686751, 48.8573717 2.3679538, 48.8812786 2.3006155, 48.8791872 2.3027025, 48.8794083 2.3027209, 48.8819758 2.3003937, 48.8820031 2.3001172, 48.8484788 2.3730624, 48.8778271 2.3054861, 48.8789229 2.3036705, 48.8623160 2.3385135, 48.8626609 2.3357043, 48.8611349 2.3404586, 48.8590838 2.3384912, 48.8598916 2.3339354, 48.8620310 2.3348363, 48.8588289 2.3317912, 48.8564980 2.3415954, 48.8585988 2.3414634, 48.8188883 2.3606299, 48.8217293 2.3258407, 48.8219700 2.3725276, 48.8222817 2.3241254, 48.8224593 2.3723095, 48.8225264 2.3585391, 48.8225913 2.3306285, 48.8225940 2.3582362, 48.8232021 2.3686118, 48.8233926 2.3231571, 48.8233479 2.3530784, 48.8237905 2.3181051, 48.8252882 2.3108074, 48.8250348 2.3042523, 48.8254999 2.3499245, 48.8258025 2.3510041, 48.8258039 2.3456727, 48.8258513 2.3498413, 48.8259133 2.3460385, 48.8259576 2.3540756, 48.8260280 2.3531254, 48.8260418 2.3506964, 48.8262853 2.3130723, 48.8272808 2.3626881, 48.8278486 2.3621965, 48.8278716 2.3523358, 48.8287890 2.3431611, 48.8337818 2.3570497, 48.8377427 2.3450152, 48.8377076 2.3821990, 48.8384173 2.3307973, 48.8384981 2.3815117, 48.8391211 2.3307962, 48.8395047 2.2915304, 48.8399751 2.4090846, 48.8400001 2.4087346, 48.8408584 2.2882668, 48.8408974 2.2885092, 48.8422736 2.3286256, 48.8423956 2.2851745, 48.8428956 2.2692665, 48.8437793 2.4103825, 48.8443082 2.3333005, 48.8446025 2.4102047, 48.8449478 2.3285312, 48.8453799 2.3322324, 48.8454392 2.3958901, 48.8456324 2.2780576, 48.8457048 2.2776103, 48.8461676 2.4106793, 48.8469869 2.3514296, 48.8477426 2.4114259, 48.8483240 2.2704664, 48.8486237 2.4111120, 48.8488905 2.3728095, 48.8490964 2.3327998, 48.8492183 2.3959570, 48.8497311 2.3151171, 48.8502916 2.2602441, 48.8502919 2.2599552, 48.8510239 2.2747254, 48.8518696 2.3480042, 48.8529623 2.3771900, 48.8530204 2.3769987, 48.8530400 2.2814658, 48.8530986 2.2812592, 48.8532293 2.4108476, 48.8540268 2.3048864, 48.8540932 2.3060103, 48.8541586 2.2829735, 48.8542833 2.3777285, 48.8553229 2.3785588, 48.8553729 2.3684131, 48.8558631 2.3754123, 48.8561605 2.3788113, 48.8564257 2.2858321, 48.8570765 2.3504182, 48.8571225 2.2917330, 48.8571518 2.2913806, 48.8572227 2.3682716, 48.8579053 2.3797322, 48.8579503 2.3712271, 48.8583775 2.3488602, 48.8589049 2.3039173, 48.8590496 2.3467839, 48.8591398 2.3747820, 48.8597060 2.3645885, 48.8597616 2.3676826, 48.8598036 2.3217290, 48.8598827 2.3673320, 48.8601423 2.3604402, 48.8605570 2.3213330, 48.8608305 2.3240713, 48.8616874 2.3202712, 48.8624213 2.3066950, 48.8625533 2.3111795, 48.8625638 2.3057642, 48.8633404 2.2823367, 48.8633709 2.4097739, 48.8635600 2.3506005, 48.8637772 2.2811131, 48.8638504 2.4085072, 48.8639401 2.3483911, 48.8639673 2.4088487, 48.8640405 2.3485216, 48.8641242 2.3606162, 48.8649714 2.2949717, 48.8650233 2.3022637, 48.8650414 2.3130143, 48.8657210 2.3990752, 48.8660184 2.2920260, 48.8662425 2.2714116, 48.8663266 2.2711738, 48.8666223 2.2899479, 48.8670025 2.2992498, 48.8670219 2.2985380, 48.8671173 2.3966221, 48.8673290 2.3831063, 48.8673789 2.4091033, 48.8676591 2.3963732, 48.8684997 2.3891241, 48.8698610 2.3123404, 48.8699435 2.3706856, 48.8700027 2.3289894, 48.8701446 2.4086615, 48.8701843 2.3707528, 48.8711933 2.3604700, 48.8712232 2.2891794, 48.8713636 2.4041582, 48.8723522 2.4045164, 48.8724186 2.3698205, 48.8725325 2.3330532, 48.8735639 2.3586128, 48.8740231 2.3847596, 48.8740378 2.2937279, 48.8744306 2.2934465, 48.8747144 2.4056516, 48.8748526 2.2959835, 48.8750248 2.2793312, 48.8755928 2.3151234, 48.8762926 2.3762339, 48.8764612 2.3765230, 48.8772186 2.3109203, 48.8772382 2.4074063, 48.8775245 2.3168188, 48.8775385 2.3163589, 48.8777526 2.3564376, 48.8779032 2.3056888, 48.8792830 2.3557138, 48.8803251 2.3794038, 48.8804221 2.3797161, 48.8805113 2.3127266, 48.8806515 2.3129992, 48.8806707 2.3738633, 48.8807343 2.2846959, 48.8808339 2.3130195, 48.8808347 2.3117674, 48.8809373 2.2848091, 48.8810591 2.2952646, 48.8814763 2.3649726, 48.8815089 2.2957771, 48.8818748 2.3931313, 48.8819392 2.3936848, 48.8824779 2.3860372, 48.8829037 2.3278232, 48.8830794 2.3885185, 48.8831418 2.3277143, 48.8836857 2.3949045, 48.8840202 2.3052632, 48.8841743 2.2968720, 48.8842536 2.2971683, 48.8842675 2.3496004, 48.8843157 2.3493326, 48.8844710 2.3800345, 48.8845032 2.3798230, 48.8847651 2.3075876, 48.8848759 2.3376000, 48.8850832 2.3591833, 48.8851035 2.2953074, 48.8851929 2.3305415, 48.8852037 2.2959187, 48.8853525 2.2977731, 48.8853266 2.3266990, 48.8857429 2.2935118, 48.8859108 2.2939790, 48.8859849 2.3261631, 48.8861542 2.3564939, 48.8863058 2.3980186, 48.8863435 2.3982367, 48.8865882 2.3414475, 48.8866623 2.2960418, 48.8869250 2.3393207, 48.8873104 2.3596117, 48.8874485 2.3050999, 48.8877988 2.3248672, 48.8878289 2.3064904, 48.8878345 2.3250858, 48.8878907 2.2990642, 48.8878917 2.3496722, 48.8881459 2.3258858, 48.8893697 2.2927080, 48.8898370 2.3597516, 48.8904800 2.3550192, 48.8905941 2.3550830, 48.8925967 2.3271643, 48.8927291 2.3598166, 48.8927047 2.3444938, 48.8929178 2.3410633, 48.8932317 2.3397366, 48.8942606 2.3656734, 48.8943375 2.3661626, 48.8948852 2.3594730, 48.8975939 2.3222245, 48.8980146 2.3446274, 48.8980432 2.3293039, 48.8981891 2.3527913, 48.8993072 2.3701049, 48.9001130 2.3701001, 48.8399283 2.3458676, 48.8573835 2.3462602, 48.8344448 2.3448322, 48.8353004 2.3450969, 48.8314340 2.3442457, 48.8326883 2.3444784, 48.8329414 2.3446720, 48.8714194 2.3313889, 48.8244919 2.3416195, 48.8681937 2.3335030, 48.8196924 2.3433020, 48.8759868 2.3238202, 48.8534607 2.2756452, 48.8743682 2.3018878, 48.8747342 2.3056450, 48.8499128 2.2683127, 48.8379136 2.2558816, 48.8409886 2.2656982, 48.8447054 2.2711200, 48.8510222 2.2746770, 48.8477723 2.2692867, 48.8623216 2.3203905, 48.8471209 2.3607000, 48.8698462 2.3252156, 48.8497078 2.3497045, 48.8613841 2.3234865, 48.8558899 2.3408768, 48.8576653 2.3376606, 48.8441286 2.3722011, 48.8761561 2.3801802, 48.8761767 2.3807442, 48.8756779 2.3423365, 48.8760012 2.3393251, 48.8788354 2.3542871, 48.8757056 2.3273669, 48.8799324 2.3551370, 48.8737046 2.3891048, 48.8736090 2.3898268, 48.8720431 2.3916937, 48.8718700 2.3920985, 48.8805417 2.3741402, 48.8476241 2.4028943, 48.8738395 2.3860670, 48.8696238 2.3946915, 48.8702673 2.3942139, 48.8340184 2.3536310, 48.8401039 2.3462745, 48.8363735 2.3520217, 48.8231701 2.3746326, 48.8329533 2.3626062, 48.8329546 2.3623275, 48.8254461 2.3748726, 48.8259081 2.3739705, 48.8231378 2.3775987, 48.8245614 2.3762562, 48.8248101 2.3756732, 48.8238740 2.3767541, 48.8500679 2.3425522, 48.8285493 2.3267243, 48.8471902 2.3122623, 48.8611720 2.3584233, 48.8543408 2.3689864, 48.8664943 2.3381181, 48.8610785 2.3537894, 48.8465740 2.3770203, 48.8406221 2.3915014, 48.8455583 2.3960876, 48.8628065 2.3537583, 48.8420222 2.4114914, 48.8673756 2.3405965, 48.8561666 2.3685267, 48.8571606 2.3619544, 48.8410468 2.4120861, 48.8576997 2.3675756, 48.8582705 2.3640599, 48.8500945 2.3851031, 48.8824312 2.3234086, 48.8493467 2.3460222, 48.8489025 2.3553600, 48.8489963 2.3554918, 48.8490831 2.3556308, 48.8484027 2.3495585, 48.8501648 2.3477828, 48.8527013 2.3373975, 48.8436232 2.3235331, 48.8475660 2.4067111, 48.8550944 2.2968674, 48.8552351 2.2962519, 48.8582746 2.3473914, 48.8992535 2.3294726, 48.8630099 2.3882032, 48.8631921 2.3883261, 48.8570981 2.3685897, 48.8544422 2.3718604, 48.8599893 2.3775333, 48.8619690 2.3853169, 48.8646505 2.3981284, 48.8647824 2.3989803, 48.8648443 2.3954637, 48.8648256 2.3948594, 48.8639853 2.3919450, 48.8642602 2.3926462, 48.8569232 2.3783647, 48.8599284 2.3864520, 48.8602320 2.3889291, 48.8589132 2.3848029, 48.8573976 2.3502067, 48.8572921 2.3526534, 48.8584495 2.3474391, 48.8441611 2.3641067, 48.8775262 2.3091500, 48.8616313 2.3200432, 48.8752076 2.3150771, 48.8855913 2.2965112, 48.8843226 2.2977914, 48.8844118 2.2979342, 48.8507447 2.3329353, 48.8509334 2.3327398, 48.8748201 2.3065249, 48.8750218 2.3054628, 48.8474354 2.3298335, 48.8301245 2.3593917, 48.8365554 2.3515202, 48.8421531 2.3349227, 48.8428630 2.3343922, 48.8413366 2.3358881, 48.8231294 2.3709733, 48.8468546 2.3305434, 48.8349137 2.3455215, 48.8447005 2.3326195, 48.8736071 2.3136449, 48.8364468 2.3505122, 48.8354325 2.3478250, 48.8354957 2.3474881, 48.8529056 2.3365859, 48.8950538 2.3463649, 48.8884547 2.3466792, 48.8793765 2.3432244, 48.8926779 2.3450799, 48.8867411 2.3475484, 48.8744366 2.3407290, 48.8721921 2.3400794, 48.8830125 2.3464904, 48.8813226 2.3442929, 48.9010962 2.3439734, 48.8971162 2.3448745, 48.8972030 2.3451540, 48.8761165 2.3439956, 48.8810811 2.3465233, 48.8788550 2.3454642, 48.8870603 2.3477790, 48.8737499 2.3427652, 48.8738946 2.3426116, 48.8838003 2.3470916, 48.8686330 2.3434700, 48.8976741 2.3369954, 48.8976025 2.3326157, 48.8952997 2.3459628, 48.8892307 2.3482522, 48.8922647 2.3454090, 48.8924937 2.3446033, 48.8997831 2.3442708, 48.8568004 2.3483967, 48.8569048 2.3480232, 48.8562005 2.3501648, 48.8558845 2.3552826, 48.8540793 2.3554730, 48.8239288 2.3773172, 48.8427970 2.2645686, 48.8669738 2.3831048, 48.8563255 2.3825318, 48.8565266 2.3825157, 48.8792856 2.3479839, 48.8575141 2.3477631, 48.8758736 2.3576344, 48.8749438 2.2940813, 48.8872676 2.3134247, 48.8870184 2.3011195, 48.8900072 2.2966294, 48.8603566 2.3408487, 48.8645931 2.3404308, 48.8744710 2.3254698, 48.8687529 2.4018580, 48.8747072 2.4054809, 48.8722439 2.4046513, 48.8767561 2.4064590, 48.8706985 2.3986586, 48.8786754 2.4089244, 48.8789125 2.4089647, 48.8708652 2.3996564, 48.8755355 2.3994387, 48.8651789 2.3984930, 48.8656078 2.3991453, 48.8646241 2.3984974, 48.8648636 2.3976678, 48.8568549 2.3482069, 48.8571655 2.3501233, 48.8575860 2.3485830, 48.8567388 2.3485737, 48.8577759 2.3507769, 48.8692099 2.3201082, 48.8834236 2.3497662, 48.8903375 2.3590926, 48.8906554 2.3600336, 48.8871139 2.3597906, 48.8262091 2.3536051, 48.8266462 2.3051647, 48.8999916 2.3711721, 48.8881927 2.3621096, 48.8914236 2.3611829, 48.8917257 2.3614702, 48.8479250 2.2519051, 48.8480478 2.2521359, 48.8845262 2.3643914, 48.8846958 2.3614362, 48.8929850 2.3631201, 48.8934228 2.3640253, 48.8955904 2.3706365, 48.8956114 2.3711627, 48.8956593 2.3591193, 48.8928035 2.3595578, 48.8984062 2.3574740, 48.8983976 2.3571253, 48.8984451 2.3583759, 48.8987458 2.3583078, 48.8987291 2.3578334, 48.8987716 2.3597234, 48.8985110 2.3600650, 48.8981225 2.3595285, 48.8974513 2.3596053, 48.8979532 2.3595285, 48.8975583 2.3593354, 48.8979626 2.3589508, 48.8976217 2.3590994, 48.8826526 2.3588127, 48.8741422 2.3313585, 48.8862829 2.3566228, 48.8895695 2.3714685, 48.8672878 2.3649621, 48.8680385 2.3640309, 48.8662798 2.3657054, 48.8594758 2.3774484, 48.8186189 2.3594836, 48.8444943 2.4419274, 48.8445323 2.4414766, 48.8445097 2.4417319, 48.8417078 2.4497336, 48.8424935 2.4488325, 48.8609612 2.3250707, 48.8289660 2.3784239, 48.8303909 2.3770660, 48.8442261 2.4406747, 48.8382746 2.2703649, 48.8386349 2.2702074, 48.8549982 2.3620916, 48.8620514 2.3149638, 48.8936160 2.3368475, 48.8479777 2.3979993, 48.8515341 2.4159031, 48.8511806 2.4158162, 48.8585104 2.4146101, 48.8539244 2.4152653, 48.8537684 2.4155113, 48.8831351 2.3875773, 48.8838485 2.3946602, 48.8863636 2.3960458, 48.8861978 2.3960484, 48.8282056 2.2676145, 48.8898250 2.3559271, 48.8983265 2.3703883, 48.8888757 2.3560908, 48.8537887 2.3650689, 48.8934696 2.3732881, 48.8915373 2.3724185, 48.8896765 2.3677521, 48.8871205 2.3669275, 48.8926811 2.3694349, 48.8898422 2.3681388, 48.8981307 2.3711455, 48.8960339 2.3709216, 48.8961681 2.3712644, 48.8709372 2.3609634, 48.8431719 2.3742563, 48.8753464 2.3578419, 48.8756205 2.3580547, 48.8915108 2.3502537, 48.9004027 2.3344708, 48.9005060 2.3349504, 48.8762554 2.3322208, 48.8762622 2.3313884, 48.8763683 2.3320907, 48.8311845 2.3539944, 48.8276163 2.3004583, 48.8318087 2.3062340, 48.8301984 2.3046073, 48.8387250 2.3066903, 48.8373618 2.2986439, 48.8424385 2.2910352, 48.8406475 2.3006615, 48.8373187 2.3013607, 48.8371088 2.3061772, 48.8365313 2.3054812, 48.8425686 2.2954928, 48.8418437 2.2979508, 48.8408205 2.2915520, 48.8360210 2.2970749, 48.8386408 2.2944000, 48.8327742 2.2939528, 48.8343868 2.2955119, 48.8316054 2.2928591, 48.8290094 2.2957084, 48.8231636 2.3248439, 48.8211105 2.3215159, 48.8660109 2.3651191, 48.8831088 2.3245043, 48.8706392 2.2750468, 48.8223059 2.3255106, 48.8226497 2.3255789, 48.8211767 2.3245177, 48.8756477 2.3575641, 48.8757782 2.3578427, 48.8757972 2.3581878, 48.8760146 2.3579188, 48.8761387 2.3589148, 48.8761693 2.3575858, 48.8251240 2.3185199, 48.8251289 2.3185313, 48.8264779 2.3802998, 48.8288234 2.3780826, 48.8818235 2.3316486, 48.8797557 2.3313620, 48.8237813 2.3255772, 48.8831293 2.3321584, 48.8744341 2.3326082, 48.8760903 2.3318791, 48.8443937 2.3244660, 48.8273556 2.3799155, 48.8447429 2.3289176, 48.8209076 2.3257609, 48.8214526 2.3256634, 48.8470719 2.3307396, 48.8484012 2.3324664, 48.8373110 2.2846337, 48.8981802 2.3449608, 48.8984921 2.3519898, 48.8847923 2.3692626, 48.8847923 2.3692626, 48.8698199 2.3940657, 48.8698866 2.3940078, 48.8678992 2.3130122, 48.8296992 2.3597326, 48.8249028 2.3698615, 48.8406034 2.3364178, 48.8498446 2.3280436, 48.8730041 2.3099688, 48.8255852 2.3673189, 48.8390055 2.3390755, 48.8751397 2.3084629, 48.8506212 2.3140974, 48.8236455 2.3258148, 48.8689372 2.3563959, 48.8682979 2.3629829, 48.8546575 2.2839258, 48.8559555 2.2855493, 48.8609423 2.2920296, 48.8617137 2.3588159, 48.8645636 2.3107915, 48.8646320 2.3144479, 48.8620955 2.3020640, 48.8859328 2.2902595, 48.8831391 2.3096871, 48.8831823 2.3097789, 48.8835981 2.3042344, 48.8957703 2.3114491, 48.8578051 2.3062945, 48.8665714 2.3230270, 48.8304638 2.3931881, 48.8639483 2.3316516, 48.8536624 2.3468093, 48.8381747 2.2892269, 48.8299272 2.3527600, 48.8857690 2.2899810, 48.8986597 2.3695773, 48.8987838 2.3695670, 48.8985694 2.3648411, 48.8986959 2.3650911, 48.8237569 2.3179773, 48.8976856 2.3251805, 48.8400853 2.3369561, 48.8754968 2.3248192, 48.8759355 2.3261765, 48.8659009 2.3577539, 48.8769948 2.4057951, 48.8436272 2.3223946, 48.8714976 2.3016926, 48.8532579 2.3679520, 48.8695579 2.3084966, 48.9007333 2.3351829, 48.9008816 2.3353907, 48.9002974 2.3325230, 48.8994357 2.3362588, 48.8645709 2.4096203, 48.8647510 2.4094343, 48.8651115 2.4111112, 48.8721384 2.3306302, 48.8241510 2.3534715, 48.8671308 2.3359975, 48.8408619 2.3685218, 48.8404129 2.3686132, 48.8367833 2.3709520, 48.8367231 2.3711619, 48.8793714 2.3898544, 48.8561033 2.4049251, 48.8962803 2.3381398, 48.8822910 2.3396804, 48.8883829 2.3560631, 48.8223393 2.3250694, 48.8870151 2.3130952, 48.8843179 2.3388482, 48.8800670 2.3290759, 48.8644048 2.3326286, 48.8498900 2.3274635, 48.8759910 2.3311923, 48.8318788 2.3884907, 48.8199497 2.3528636, 48.8199915 2.3530798, 48.8339986 2.3574652, 48.8283161 2.3529361, 48.8995090 2.3448520, 48.8374598 2.2561675, 48.8296121 2.3751129, 48.8296961 2.3750381, 48.8341185 2.3074606, 48.8448039 2.2663809, 48.8478620 2.2646527, 48.8454888 2.2621661, 48.8472210 2.2741018, 48.8471325 2.2689732, 48.8424352 2.2848727, 48.8389890 2.2924746, 48.8863284 2.3947350, 48.8859544 2.3942729, 48.8813770 2.3962197, 48.8813382 2.3959354, 48.8890743 2.3961566, 48.8893460 2.3979054, 48.8887939 2.3978467, 48.8255365 2.3506964, 48.8196390 2.3639605, 48.8192911 2.3631451, 48.8193705 2.3631102, 48.8820671 2.3714185, 48.8824146 2.3696107, 48.8416882 2.3204280, 48.8469367 2.2926429, 48.8469358 2.2731326, 48.8465422 2.2866375, 48.8477263 2.3007604, 48.8469647 2.2953866, 48.8477899 2.3005351, 48.8217909 2.3246098, 48.8218827 2.3247455, 48.8373119 2.2564781, 48.8376576 2.2559915, 48.8382578 2.2555650, 48.8375476 2.2561709, 48.8347124 2.2560550, 48.8348643 2.2558700, 48.8344423 2.2583188, 48.8954838 2.3282370, 48.8195154 2.3649910, 48.8370445 2.3739566, 48.8370586 2.3742355, 48.8440603 2.3073961, 48.8288313 2.2725713, 48.8835710 2.3688150, 48.8456811 2.3715065, 48.8211165 2.3257635, 48.8393266 2.3648302, 48.8399429 2.3630322, 48.8855657 2.3259280, 48.8855988 2.3166221, 48.8841997 2.3142522, 48.8852218 2.3110659, 48.8848774 2.3166114, 48.8733268 2.3277215, 48.8723064 2.3298184, 48.8870259 2.3281853, 48.8893393 2.3282617, 48.8912969 2.3308528, 48.8924149 2.3304075, 48.8929016 2.3281142, 48.8942172 2.3297799, 48.8956332 2.3308876, 48.8843987 2.3194019, 48.8853846 2.3212741, 48.8875504 2.3204319, 48.8896897 2.3190559, 48.8911499 2.3207966, 48.8911023 2.3248843, 48.8931709 2.3270569, 48.8935553 2.3231543, 48.8954825 2.3243088, 48.8986649 2.3261287, 48.8179178 2.3602453, 48.8961679 2.3744456, 48.8961256 2.3747648, 48.8961009 2.3784797, 48.8962632 2.3784528, 48.9011333 2.3701085, 48.9015600 2.3723615, 48.8437018 2.3233718, 48.8270573 2.3047592, 48.8647978 2.3028748, 48.8647307 2.3006190, 48.8610975 2.2916822, 48.8612246 2.2913335, 48.8611858 2.2915857, 48.8568041 2.2865830, 48.8587648 2.2887822, 48.8453881 2.3687625 +39 +viewpoint, museum, attraction, hotel, bed and breakfast, hostel, artwork, information, picnic site, 65t, guest house, 14t, gallery, aquarium, apartment, hotel***, zoo, theme park, yes, camp site +Ibis +52.0455273 8.4506902, 52.0579438 8.4922378, 51.9789657 8.5077171, 51.9839158 8.5145830, 51.9719056 8.4584900, 51.9832360 8.5011688, 52.0581150 8.4919573, 52.0754057 8.4694042, 51.9914877 8.4790051, 51.9845111 8.5016418, 52.0419948 8.5160247, 52.0292851 8.5181917, 52.0314754 8.5141184, 52.0295337 8.5150115, 51.9847361 8.4854709, 51.9859050 8.4877428, 52.0306430 8.5117068, 51.9971967 8.5057650, 51.9934233 8.5091802, 52.0267434 8.4659864, 52.0107287 8.5202197, 51.9891284 8.5001010, 51.9499358 8.5003082, 51.9406388 8.5114804, 51.9906984 8.5078615, 51.9963039 8.4716935, 51.9888194 8.5112622, 52.0383046 8.4923385, 52.0984088 8.5009157, 52.0981428 8.5181712, 52.0359835 8.4982002, 51.9839311 8.5003401, 52.0307135 8.5117101, 52.0267458 8.4660597, 52.0459428 8.5203701, 51.9837555 8.5001033, 52.0106909 8.5203429, 51.9717369 8.4582094, 52.0293357 8.5180617, 52.0425279 8.5168567, 52.0580908 8.4924175, 52.0455684 8.4510738, 52.0294960 8.5152776, 52.0309613 8.5144666, 51.9847954 8.4859472, 51.9861104 8.4873591, 52.0308117 8.5117948, 51.9972310 8.5062078, 51.9931065 8.5094547, 51.9914510 8.4802500, 52.0754769 8.4692486, 52.0691401 8.4845397, 51.9898013 8.5008912, 51.9842005 8.5139759, 51.9789415 8.5070326, 51.9502642 8.5005356, 51.9402691 8.5119328, 51.9960941 8.4716263, 51.9884382 8.5106798, 52.0313093 8.5114951, 52.0310937 8.5122956, 52.0387363 8.4870857, 52.0946122 8.5192946, 52.0987762 8.5011761, 52.0363557 8.4985144 +49.4126021 8.6894511, 49.4124594 8.6881444 +Anatolien +5 +55.9351932 -3.1010341, 55.9501318 -3.1886125, 55.9623527 -3.1790390, 55.9713786 -3.1713983, 55.9708769 -3.1716878, 55.9508780 -3.2095210, 55.9373728 -3.2396057, 55.9393166 -3.3152471 +fuel, drinking water, recycling, post box, telephone, fire station, pharmacy, restaurant, townhall, hospital, shelter, fast food, college, taxi, post office, atm, toilets, parking, car rental, clock, bank, kindergarten, wifi, place of worship, biergarten, police, vending machine, car sharing, bench, grave yard, cafe, public building, pub, nightclub, library, grit bin, bar, school, artwork, fountain, cinema, hunting stand, waste, waste basket, bicycle parking, veterinary, doctors, university, dentist, bicycle rental, theatre, social facility, video games, solarium, closed:library, closed:school, charging station, locker, swimming pool, car wash, food court, driving school, public bookcase, dancing school, parking entrance, marketplace, motorcycle parking, ferry terminal, youth centre, brothel, stables, ice cream, advertising, craft, childcare, club, animal shelter, shower, bicycle repair station, clinic, community centre, science park, research institute, arts centre, boat rental, nursing home, retirement home, parking space, bbq, bus parking, emergency service, fraternity, monastery, smoking area, courthouse +565 +55 +49.4300711 8.6823444 +Albert Gödde, Friedrich Wolgast, Otto Appelfelder, Rudolf Sauer, Erich Wemhöner, Hermann Kleinewächter, Lina Feldheim geb. Katzenstein, Alfred Feldheim, Ruth Feldheim, Eva Feldheim, Christian Vogel, Otto Giesselmann, Ernst Brune, Richard Otto Senkel, Toni Lieber, Dora Senkel geb. Salomon, Thekla Lieber geb. Heine, Heinrich Schwarze, Margot Grünewald, Paul Brockmann, Robert Hegemann, Selma Grünewald geb. Wolff, Oskar Grube, Eduard Gaus, Leo Grünewald, Bernhard Putjenter, Rosa Heymann geb. Wolff, Gustav Höcker, Friede Laarmann, Gustav Koch, Fritz Bockhorst, Hugo Schweitzer, Wilhelm Hünerhoff, Fritz Beckstätte, Herrmann Wörmann, Gustav Milse, Wilhelm Ebert, Heinrich Homann, Frieda Homann geb. Reinecke, Gustav Horstbrink, August Beckmann, Mathilde Wisbrun geb. Tuteur, Frieda Horstbrink geb. Plauel, Moritz Wisbrun, Lina Beckmann geb. Sprick, Gustav Doerth, Adolf Schmidtpott, Wilma Auguste Kötter, Johanne Horstmann, Adolf Kampmeier, Dr. Julius Kamp, Bärbel Gottschalk, Samuel Meyerson, Walli Gottschalk, Josefa Metz, Ursula Gottschalk, Alfred Gottschalk, Hans Metz, Hedwig Meyerson, Lotte Windmüller, Wilhelm Kappe, Hermann Federmann, Kurt Simon, Margot Hermine Reuter, Heinrich Heibrock, Dr. med. Bernhard Mosberg, Dr.med. Gertrud Mosberg, Rosalie Mosberg, Ferdinand Willeke, Emil Möller, Fritz Katzenstein, Jenni Hesse, Julius Hesse, Konrad Griefingholt, Erich Klever, Dr. Gustav Meyer, Dr. Moritz Willi Katzenstein, Grete Blank, Hildegard Blank, Josef Meyer, Josef Meyer, Marianne Adelheid Katzenstein verh. Bern, Eva Susanne Katzenstein, Mathilde Juhl, Hanna Juhl, Salli Blank, Selma Katzenstein geb. Zehden, Therese Meyer geb. Melchior, Erna Kronshage, Klara Juhl, Georg Zimmt, Irmgard Zimmt, Dr. J. Ernst Goldstein, Franz A. Goldstein, Martin Goldstein, Albert Steinkrüger, Elfriede Goldmann, Friedrich Wilhelm Petzold, Heinz Goldmann, Sidney Goldmann, Walter A. Goldmann, Karl Twesmann, Dr. Hajo G. Meyer +Nordbrückenkopf, Europäischer Hof, Am Bismarckplatz, Kaufhof, Juristisches Seminar, Darmstädter Hof, Universitätsbibliothek, Karlsplatz/Rathaus, ATOS Klinik, Kongresshaus, Darmstädter Hof, Hotel Panorama, Kraus, Heiligenberg, Poststraße, Parkhaus am Theater, Friedrich-Ebert-Anlage 2, Unter der Boschwiese, Gästeparkplatz Hotel Regina +yes +10, 8, 24, 10, 6, 8, 2, 16, 6, 8, 20, 14, 16, 4, 4, 8, 6, 4, 6, 8, 56, 4, 4, 4, 4, 2, 8, 6, 10, 14, 4, 8, 6, 16, 2, 8, 6, 10, 10, 14, 10, 2, 4, 4, 10, 4, 4, 8, 8, 4, 6, 24, 12, 100, 14, 8, 36, 16, 82, 4, 44, 2, 6, 2, 6, 4, 4, 4, 16, 24, 24, 24, 12, 14, 24, 6, 4, 4, 4, 2, 4, 4, 40, 15, 6, 4, 4, 4, 14, 6, 4, 8, 4, 4, 6, 2, 10, 4, 10, 40, 6, 4, 4, 30, 2, 4, 10, 34, 4, 20, 8, 2, 2, 4, 12, 10, 26, 6, 2, 8, 8, 36, 16, 8, 8, 160, 12, 4, 12, 10, 20, 4, 4, 12, 4, 4, 10, 8, 12, 14, 14, 40, 28, 40, 6, 6, 8, 6, 4, 6, 6, 6, 8, 6, 34, 8, 82, 16, 16, 18, 14, 16, 14, 20, 16, 4, 4, 6, 16, 14, 10, 16, 2, 4, 2, 4, 4, 2, 6, 2, 4, 2, 2, 6, 12, 4, 4, 2, 2, 12, 6, 2, 4, 2, 24, 8, 32, 6, 4, 8, 2, 6, 6, 14, 8, 16, 4, 4, 10, 12, 40, 8, 16, 20, 4, 2, 6, 4, 4, 10, 4, 4, 8, 6, 7, 7, 3, 20, 8, 8, 8, 6, 12, 8, 6, 20, 8, 12, 12, 4, 4, 12, 6, 20, 10, 6, 10, 6, 16, 14, 12, 30, 4, 2, 8, 8, 4, 2, 36, 44, 48, 10, 10, 46, 10, 10, 12, 8, 30, 10, 4, 4, 16, 20, 3, 6, 4, 4, 4, 4, 10, 6, 4, 6, 4, 10, 20, 2, 6, 20, 4, 4, 2, 2, 2, 10, 4, 8, 6, 3, 32, 6, 8, 20, 2, 4, 10, 6, 34, 20, 14, 4, 2, 6, 8, 4, 20, 10, 4, 4, 26, 16, 20, 72, 10, 10, 10, 8, 8, 3, 8, 8, 16, 2, 10, 2, 4, 6, 4, 4, 10, 16, 6, 32, 6, 4, 4, 4, 10, 10, 20, 16, 6, 6, 2, 4, 4, 2, 8, 4, 4, 6, 4, 4, 10, 20, 60, 4, 12, 6, 2, 16, 4, 6, 6, 6, 8, 8, 8, 2, 4, 6, 4, 14, 10, 10, 6, 4, 4, 4, 4, 4, 4, 4, 8, 8, 4, 4, 80, 6, 6, 6, 6, 6, 6, 20, 2, 8, 8, 8, 15, 10, 6, 36, 10, 10, 30, 40, 40, 14, 12, 8, 10, 4, 4, 6, 16, 10, 122, 4, 8, 8, 8, 8, 10, 10, 10, 10, 10, 10, 42, 64, 50, 32, 6, 6, 8, 4, 4, 2, 2, 6, 8, 10, 22, 10, 8, 32, 20, 36, 24, 26, 8, 10, 10, 14, 4, 4, 4, 2, 6, 2, 2, 2, 2, 2, 36, 12, 17, 4, 30, 28, 8, 12, 50, 20, 8, 8, 4, 4, 4, 10, 62, 50, 4, 4, 18, 6, 8, 10, 24, 10, 76, 6, 8, 8, 12, 10, 80, 20, 14, 18, 18, 12, 56, 28, 12, 12, 14, 10, 18, 30, 40, 30, 2, 2, 40, 20, 16, 8, 4, 28, 12, 22, 6, 10, 6, 6, 2, 8, 6, 54, 6, 4, 22, 6, 6, 6, 10, 6, 20, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 12, 12, 50, 18, 40, 40, 50, 24, 48 +エッフェル塔 +yes +0 +48.8108150 2.3016518, 48.8153367 2.2970255, 48.8812535 2.2714648, 48.8752564 2.2902302, 48.8719444 2.3005832, 48.8689234 2.3098108, 48.8664075 2.3221380, 48.8644950 2.3296183, 48.8623571 2.3363001, 48.8608572 2.3409680, 48.8587782 2.3474106, 48.8575436 2.3515947, 48.8552929 2.3607072, 48.8520122 2.3686542, 48.8457111 2.3727163, 48.8473551 2.3866576, 48.8472979 2.4082630, 48.8336468 2.2435931, 48.8487832 2.2988351, 48.8475338 2.3029524, 48.8504212 2.2936685, 48.7296445 2.3600059, 48.8242325 2.2730847, 48.8270162 2.2794048, 48.8326135 2.2884024, 48.8373212 2.2966299, 48.8919677 2.2377691, 48.8229245 2.3256357, 48.8280754 2.3269270, 48.8314103 2.3301279, 48.8340353 2.3325923, 48.8389167 2.3308053, 48.8330168 2.3366295, 48.8311288 2.3434842, 48.8297785 2.3504704, 48.8313959 2.3557122, 48.8331986 2.3628553, 48.8349549 2.3680817, 48.8370762 2.3729066, 48.8842870 2.3659442, 48.8480576 2.3960523, 48.8444696 2.4398829, 48.8454354 2.4293269, 48.8782117 2.3816608, 48.8808997 2.3738860, 48.8518166 2.4013757, 48.8463309 2.4190317, 48.8520240 2.3980153, 48.8663183 2.3836524, 48.8629761 2.3873271, 48.8582563 2.3901666, 48.8559463 2.3950128, 48.8720463 2.3769849, 48.8696313 2.3797364, 48.8771779 2.3711152, 48.8823909 2.3371469, 48.8834533 2.3336155, 48.8833916 2.3271828, 48.8824462 2.3221220, 48.8811421 2.3149026, 48.8802693 2.3085936, 48.8743566 2.2955149, 48.8696886 2.2853914, 48.8713568 2.2778112, 48.8652545 2.4166605, 48.8645515 2.4088118, 48.8650099 2.3985193, 48.8643020 2.3794597, 48.8653892 2.3739085, 48.8665083 2.3606199, 48.8654079 2.3560793, 48.8662606 2.3524641, 48.8686067 2.3415416, 48.8695654 2.3367072, 48.8707435 2.3324176, 48.8736792 2.3273189, 48.8828638 2.3092274, 48.8840549 2.3037368, 48.8846696 2.2989738, 48.8857297 2.2934235, 48.8395785 2.3012923, 48.8415118 2.3080120, 48.8443954 2.3175634, 48.8468543 2.3166512, 48.8514000 2.3143901, 48.8568058 2.3151577, 48.8413343 2.4008998, 48.8905035 2.3598783, 48.9162246 2.2948689, 48.8710829 2.3606594, 48.8921077 2.2852229, 48.8579460 2.4357587, 48.8625988 2.4415690, 48.8971408 2.2803973, 48.8882803 2.2884734, 48.8526992 2.4061094, 48.8534759 2.4105242, 48.8558145 2.4237108, 48.8525808 2.3887914, 48.8547441 2.3853565, 48.8581580 2.3798044, 48.8610516 2.3747956, 48.8641314 2.3695694, 48.8694348 2.3544699, 48.8706004 2.3487793, 48.8715206 2.3432861, 48.8720090 2.3397571, 48.8730354 2.3334740, 48.8747030 2.3197963, 48.8422994 2.3653504, 48.8459858 2.3551112, 48.8465082 2.3517283, 48.8499051 2.3487460, 48.8510293 2.3448480, 48.8522912 2.3393735, 48.8526872 2.3350116, 48.8363894 2.2784000, 48.8387450 2.2821427, 48.8410837 2.2879218, 48.8426906 2.2917758, 48.9368260 2.3590959, 48.8389924 2.3896778, 48.8395253 2.3958919, 48.8401549 2.3799474, 48.8410654 2.3249923, 48.8429457 2.3126019, 48.8716770 2.2935098, 48.8669099 2.2902715, 48.8630266 2.2870524, 48.8573825 2.2859234, 48.8646725 2.2937783, 48.8640063 2.2780859, 48.8580816 2.2741958, 48.8555764 2.2702166, 48.8525598 2.2681802, 48.8480038 2.2641872, 48.8452505 2.2618802, 48.8430044 2.2600472, 48.8377707 2.2565741, 48.8649686 2.3006256, 48.8723362 2.3100827, 48.8736768 2.3145456, 48.8514587 2.3267159, 48.9038952 2.3053664, 48.8939640 2.3144204, 48.8905170 2.3201235, 48.8874127 2.3256961, 48.8470802 2.3076354, 48.8470463 2.2953101, 48.8606970 2.3210551, 48.8586775 2.3231168, 48.8481026 2.3277965, 48.8452766 2.3286613, 48.8656361 2.3227452, 48.8693906 2.3253852, 48.8446967 2.2937668, 48.8546428 2.3061015, 48.8575837 2.3102891, 48.8611770 2.3148333, 48.8633194 2.3666124, 48.8610965 2.3672267, 48.8575371 2.3679970, 48.8531361 2.3686313, 48.8511945 2.3759944, 48.8500259 2.3842705, 48.8442710 2.3901179, 48.8371074 2.4024837, 48.8266498 2.4057278, 48.8354584 2.4063451, 48.8450642 2.4010776, 48.8269104 2.3661972, 48.8322556 2.3989811, 48.8658665 2.3343872, 48.8763705 2.3326310, 48.8760654 2.3385532, 48.8557241 2.3256659, 48.8784508 2.3374732, 48.8844760 2.3384377, 48.8898183 2.3386296, 48.8924388 2.3446575, 48.8977084 2.3592969, 48.8938084 2.3477393, 48.8873363 2.3497063, 48.8795699 2.3571457, 48.8762027 2.3579127, 48.8639893 2.3498782, 48.8728976 2.3562552, 48.8625595 2.3456850, 48.8552968 2.3475476, 48.8533267 2.3434941, 48.8533322 2.3346678, 48.8470860 2.3270843, 48.8422001 2.3289987, 48.8464830 2.2858855, 48.8461607 2.2783813, 48.8473202 2.2686743, 48.8477655 2.2583922, 48.8452670 2.2672606, 48.8468038 2.2717155, 48.8420002 2.2387333, 48.8406690 2.2287175, 48.8700162 2.3710617, 48.8617840 2.3537812, 48.8771276 2.4066804, 48.8754657 2.3990396, 48.8738469 2.3852526, 48.8750969 2.3893345, 48.8385876 2.3222085, 48.8317799 2.3140252, 48.8339551 2.3180764, 48.8225032 2.2984833, 48.8566177 2.3705298, 48.8602039 2.3721323, 48.8850187 2.3795672, 48.8869632 2.3867135, 48.8885434 2.3927045, 48.8911980 2.4025577, 48.8813931 2.3656341, 48.8772578 2.3494253, 48.8884812 2.3742226, 48.8908513 2.3773681, 48.8947741 2.3825277, 48.8974039 2.3855910, 48.8749279 2.3403636, 48.8759424 2.3443098, 48.8585643 2.3425634, 48.8514519 2.3619140, 48.8538938 2.3566663, 48.8429053 2.3522772, 48.8406473 2.3519334, 48.8356445 2.3527513, 48.8799166 2.3990372, 48.8819551 2.3933641, 48.8798096 2.4170873, 48.8715218 2.4043104, 48.8680997 2.4013152, 48.8382823 2.3608293, 48.8356584 2.3588519, 48.8927063 2.3274728, 48.8973715 2.3289008, 48.9061915 2.3320476, 48.8260904 2.3573505, 48.8224745 2.3585040, 48.8190866 2.3595330, 48.9231172 2.2862019, 48.9305465 2.2836436, 48.9142573 2.4038072, 48.9036279 2.3922499, 48.9207587 2.4107677, 48.8677518 2.3131104, 48.7963514 2.4492350, 48.7899066 2.4504803, 48.7797556 2.4594504, 48.8024711 2.4466949, 48.8090371 2.4347211, 48.8150770 2.4217740, 48.8214689 2.4136458, 48.9118944 2.3339725, 48.9196049 2.3429933, 48.8051317 2.3637903, 48.7869402 2.3673857, 48.7960877 2.3683672, 48.8103280 2.3622359, 48.8510924 2.3307543, 48.8439859 2.3243283, 48.8788951 2.3624612, 48.8932382 2.4133209, 48.8795976 2.3270787, 48.9301278 2.3563841, 48.9459311 2.3641518, 48.8538982 2.2893959, 48.8317277 2.2373655, 48.8296613 2.2308732, 48.8201086 2.3647992, 48.8216697 2.3693224, 48.8159011 2.3773455, 48.8109896 2.3839963, 48.8491398 2.3218984, 48.8757192 2.3279030, 48.8782019 2.2991235, 48.7687211 2.4643844, 48.8837741 2.3495359, 48.8915918 2.3496700, 48.8663302 2.3215942, 48.8603937 2.3146892, 48.8537409 2.3693210, 48.8433230 2.3737596, 48.8456163 2.3095848, 48.9064052 2.4491919, 48.8975316 2.3446684, 48.8419339 2.3211592, 48.7290137 2.3699140, 48.8787520 2.3221853, 48.8767276 2.4064297, 48.8795817 2.3886032, 48.8825949 2.3703263, 48.8767737 2.3935636, 48.8793865 2.3043786, 48.9068701 2.3657737, 48.8183938 2.3193550, 48.8956037 2.4251032, 48.8779888 2.2817745, 48.8582563 2.3901666, 48.8334522 2.3856620, 48.8849431 2.2599157, 48.8569919 2.3484061, 48.8600206 2.3465137, 48.8578140 2.3474541, 48.8592567 2.3459470, 48.8828803 2.3442565, 48.8844068 2.3603057, 48.8423078 2.3653119, 48.8423613 2.3655228, 48.8423729 2.3656610, 48.8464943 2.3658953, 48.8677105 2.3455628, 48.8423727 2.3656105, 48.9118944 2.3339725, 48.8939640 2.3144204, 48.8756570 2.3253611, 48.8662052 2.3223767, 48.8673076 2.3641562 +64 +5 +610 +238 +yes +4.314420548839732 +0 +yes +yes +55.9609898 -3.2094322, 55.9383701 -3.3043514, 55.9520586 -3.2162226 +136 +indian, italian, international, regional, greek, chinese, thai, german, french, vegetarian, spanish, mediterranean, malaysian, eritrean, japanese, persian, asian, moroccan, burger, vietnamese, turkish, african, cuban, korean, vegan, Flammkuchen, salat, pizza, ice cream, mexican +19 and 55.5921994 -4.4879264, 54.9468372 -7.7361472, 53.6334895 -6.6608426, 53.6334450 -6.6611807, 55.8607863 -4.1124939, 51.5501633 -0.3308336, 51.5258455 -0.3653582, 54.7465190 -1.6099826, 51.6782607 -0.0189024, 54.3110638 -2.7353996, 51.5702298 -2.9701770, 52.2336258 -7.1485831, 51.0562801 -1.3227899, 53.3078756 -6.2696186, 51.4998656 -2.6120895, 53.3793873 -3.0985322, 53.7603866 -2.7517739, 53.5268061 -7.3227240, 39.6795417 76.0773242 +501 +951 +55.9779143 -3.1684989, 55.9454485 -3.2050417 +no +monument, wayside cross, memorial, castle, monument, ruins, memorial, memorial, memorial, monument, wayside cross, memorial, wayside cross, monument, monument, memorial, memorial, memorial, memorial, memorial, memorial, memorial, ruins, castle, mine, memorial, memorial, monument, archaeological site, archaeological site, wayside shrine, memorial, memorial, memorial, memorial, archaeological site, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, monument, monument, memorial, castle, memorial, monument, memorial, wayside cross, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, memorial, ruins, memorial, memorial, memorial, memorial, memorial, memorial, memorial, kiln, memorial, wayside cross, memorial, memorial, memorial, memorial, memorial, wayside cross, fort, yes, fort, castle, fort, archaeological site, yes, memorial, attraction, fort, monument, monument, monument, memorial, manor, manor, manor, building, church, church, church, fort, fort, memorial, memorial, castle, wayside shrine, memorial, monument, ruins, archaeological site, wayside shrine, castle, abbey, castle, chapel, yes, mine shaft, memorial, castle, castle, castle, castle, castle, ruins, ruins, ruins, ruins, ruins, ruins, archaeological site, ruins, ruins, ruins, bunker, bunker, manor, ruins, bunker, fort, ruins, ruins, ruins, manor, ruins, fort, building, bunker, bunker, bunker, bunker, fort, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, fort, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, bunker, battery, fort, bunker, bunker, fort, bunker, memorial, ruins, ruins, ruins, castle, ruins, ruins, ruins, ruins, ruins, archaeological site, ruins, castle +yes +no +60 +49.3819891 8.7064791, 49.3903727 8.7038688, 49.3716601 8.7156918, 49.3882437 8.7497467, 49.3795036 8.7459449, 49.3921408 8.7451114, 49.3950715 8.7223322, 49.3735796 8.7471724, 49.3825444 8.7132316 +yes +playground, garden, swimming pool, marina, park, pitch, sports centre, music venue, cinema, table tennis table, dance, table tennis, slipway, hackerspace, fitness centre, table, pool, swings, ice rink, sauna, carousel, amusement arcade, stadium, chess, turkish bath, bowling alley, fitness station, golf course, common, track, bandstand, arts centre, recreation ground, horse riding, miniature golf, picnic table, caroussel, nature reserve +Cinéma Marcel Pagnol, Le brady, L'Archipel +C.E.R. Pasteur, 01.43.41.09.70, ab conduite, ECF, Cluny - Saint-Germain and 01.43.26.42.42, C.E.R. Brancion and 01.48.28.03.78, Permis Malin, Alkris, Auto école Place de Rungis, Auto Moto École Alésia, Matt's Auto Ecole, Caser formations, École de conduite Saint-Charles, Tour Eiffel Permis, Simulauto and 01.45.85.75.22, CER Porte de Choisy +190 +yes +yes and 5 +49.4115364 8.6766566, 49.3905596 8.6743412, 49.3960051 8.6864746, 49.3960694 8.6860163, 49.4123557 8.7728324 +47.8931595 7.9220044, 47.6706184 9.6099393, 48.8409034 9.1608485, 49.5114392 8.6601812, 48.6525503 9.3971910, 49.7634816 9.6217365, 49.7711879 9.5730596, 49.7592849 9.5493504, 48.8085947 9.1086907, 48.8084453 9.1083882, 48.7672340 9.1634636, 48.7646487 9.1455060, 48.8517845 9.1905506, 47.7572746 9.4550989, 48.8048250 9.1776074, 48.7975239 9.1823227, 48.7763570 9.2485420, 49.7438132 9.5591926, 48.5441691 10.0649595, 48.5481307 10.0299806, 48.0859164 8.6731360, 48.0941243 8.6558902, 48.1009818 8.7502162, 48.3855242 8.4343050, 48.4253862 8.9771471, 48.7896840 9.2403361, 48.7898028 9.2401816, 48.7987295 9.2671029, 48.7877576 9.2251651, 48.7720412 9.1018571, 48.7716001 9.1036725, 48.7548168 9.1609347, 48.7393742 9.1043352, 48.7331011 9.0916034, 48.7294036 9.0792362, 48.7127340 9.0963494, 48.7061888 9.1632435, 48.6921724 9.3046368, 48.6844604 9.3243976, 48.6197323 9.4551205, 48.4917874 9.4829183, 48.4024099 9.4114303, 48.2380029 8.1766286, 48.7850407 9.1860670, 48.8431211 9.6562274, 49.1236093 8.5683603, 48.4276781 9.2092618, 48.6307794 9.4154575, 48.0319228 8.4105207, 48.0468749 8.4196097, 47.8638812 9.1743006, 48.4226168 8.9110413, 48.7841199 9.0904498, 48.0698826 8.3504215, 48.8047324 9.1919671, 49.3929098 8.7766872, 48.7219890 9.0756901, 48.7093678 9.1402100, 48.7063494 9.1632880, 48.6935525 9.2233254, 48.6938888 9.2230679, 48.6956216 9.2628339, 48.6944266 9.2857314, 48.6948056 9.2857019, 48.6586541 9.3789196, 48.6529244 9.3974295, 48.6306373 9.4582064, 48.6310225 9.4580187, 48.6296852 9.4774326, 48.6300159 9.4774419, 48.6288271 9.4974811, 48.6286715 9.5206816, 48.6316019 9.5381045, 48.6319392 9.5378497, 48.6333417 9.5538473, 48.6185241 9.5910600, 48.5837682 9.6626361, 48.5774390 9.6630037, 48.5654624 9.6356449, 48.5467301 9.6424113, 48.5336488 9.6575403, 48.5324382 9.6697929, 48.5275597 9.7174851, 48.5185011 9.7592517, 48.5182325 9.7572384, 48.5181465 9.7821863, 48.5183786 9.7822118, 48.5171773 9.8183016, 48.5108829 9.8343256, 48.5110458 9.8346520, 48.4760028 9.8823361, 48.4762453 9.8832418, 48.6614547 8.9975223, 48.4698348 9.9046761, 48.4565333 9.9488063, 48.4566115 9.9731268, 48.4575723 9.9853023, 48.4575380 10.0128756, 48.4578922 10.0113024, 48.4566193 10.0241328, 48.1830256 9.7816113, 48.4569309 10.0238267, 48.4568614 9.9728885, 48.4568169 9.9495995, 48.5177027 9.8172282, 48.5200483 9.8076658, 48.5228113 9.7372686, 48.5275062 9.7199164, 48.5311230 9.6960245, 48.5333133 9.6642932, 48.5466813 9.6482904, 48.5636428 9.6740108, 48.5770545 9.6749818, 48.5840802 9.6628951, 48.6143628 9.6120035, 48.6186112 9.5926055, 48.6336256 9.5515051, 48.6287221 9.5185340, 48.6291371 9.4980277, 48.6402661 9.4329496, 48.6532481 9.3976460, 48.6589208 9.3792326, 48.6665530 9.3662042, 48.6754390 9.3458767, 48.6846579 9.3248490, 48.6925264 9.3047185, 48.6957928 9.2643366, 48.7024660 9.1783020, 48.7068672 9.1631451, 48.7069591 9.1634389, 48.7099095 9.1403554, 48.8871970 9.0451463, 48.8776217 9.0839978, 48.1612777 9.7900051, 48.6283215 9.5740630, 48.9168298 8.9430269, 48.4120306 8.4067443, 48.7156317 8.2268140, 48.0783822 8.4461271, 48.9607189 9.2194538, 48.9606145 9.2187767, 49.1769947 9.9318229, 48.7783246 9.5110956, 48.4587660 9.9811761, 48.6623908 9.2255884, 48.6218504 9.2494700, 48.5949915 9.2530806, 48.8361387 8.5909962, 47.8659661 7.7484426, 48.6208580 9.4555416, 49.4738271 9.7966510, 48.8164045 8.5799195, 48.6355511 9.2927221, 48.9546798 9.2502443, 48.7913607 8.1911997, 48.7290336 8.1554927, 48.6648842 9.2107380, 48.5759911 9.2290474, 48.6997566 9.4094867, 48.6938675 9.1999755, 48.5475367 9.2644429, 48.5806508 9.1736055, 48.5586863 9.1737419, 48.5435954 9.1493859, 49.5618613 9.6229111, 49.5614784 9.6227222, 49.5585167 9.6153308, 49.5404830 9.5884578, 49.5323399 9.5784239, 49.5323111 9.5778313, 49.5372729 9.5834493, 49.4242922 9.4869280, 49.4246245 9.4865582, 48.9800359 9.2295550, 48.9690446 9.2262070, 48.5415003 8.8029163, 48.7522067 8.2485351, 48.7535173 8.2447141, 48.7677441 8.2305067, 48.5339160 9.2339354, 49.0641753 9.8706185, 48.6971369 9.2439721, 48.6975218 9.2437986, 48.6751085 9.3456470, 48.6934507 9.2025498, 48.6930968 9.2025100, 48.6765698 9.3688639, 48.6763806 9.3691866, 48.7024629 9.4396321, 48.7038033 9.4501905, 48.7071589 9.4739798, 48.7068984 9.4739726, 48.7160960 9.5495317, 48.7030443 9.6013973, 48.7114471 9.5003428, 48.4005596 9.3164813, 48.4013004 9.3400954, 48.8219767 8.8342570, 49.0835719 9.8669593, 48.6119127 8.8048547, 48.8379781 8.6962629, 48.8664890 8.6819781, 49.0280176 9.8739938, 48.6160097 9.2200212, 48.6157890 9.2201356, 48.5787567 9.1741510, 48.5587099 9.1732797, 48.5341206 9.1897357, 49.0518476 9.8853764, 49.4534456 8.7619634, 49.0683492 9.8995733, 48.4284117 8.6254017, 48.3301529 8.3967477, 48.9446845 8.4982423, 48.9420376 8.5063840, 48.9416725 8.5063002, 48.9248065 8.5977004, 48.9127357 8.6194374, 48.9086000 8.6501571, 48.8953199 8.7844283, 48.8803882 8.7880004, 48.8650961 9.2405642, 48.7089158 9.1148538, 48.8282641 8.8712993, 48.7644963 9.0315801, 48.8459831 8.4682949, 49.0294081 9.8404404, 48.5135967 9.7471919, 48.8381885 8.7479090, 48.7472998 9.0342151, 48.7421470 9.0351020, 48.7334551 9.0451019, 48.7290626 9.0800494, 48.6983948 9.6468413, 48.6992687 9.6445523, 48.6507051 8.2149644, 48.9704136 9.8727094, 48.6482872 9.4175625, 48.6479386 9.4174626, 48.6401517 9.4323574, 48.6107285 9.5013356, 48.6755332 9.5140860, 48.8797804 8.7885918, 48.8285183 8.8716562, 48.8107839 8.9226049, 48.7283187 9.0566488, 49.4964212 9.8159753, 49.5643411 9.8957718, 48.7509336 9.7392346, 48.7654033 9.7760138, 48.7092477 9.1149016, 48.7127753 9.0976601, 48.7224250 9.0759774, 48.7289707 9.0560605, 48.7337038 9.0454766, 48.7423208 9.0355761, 48.7473445 9.0346415, 48.7645813 9.0322451, 48.7844212 9.0003039, 48.8106073 8.9221678, 48.8955466 8.7849848, 48.9090368 8.6494218, 48.9464307 8.4929472, 48.9251683 8.5976789, 48.9155805 8.6166065, 48.9126798 8.6288162, 48.8955930 8.6334932, 48.1738882 9.9243238, 48.7359768 9.9564593, 49.5271869 9.4744451, 48.6341570 10.0297153, 47.7067101 8.9539274, 48.7406791 9.0358330, 47.9861753 9.9541146, 48.7097609 9.1403874, 48.7204349 9.0570947, 48.7048575 9.0466886, 48.7026191 9.0310935, 48.6956734 9.0150770, 48.6954821 9.0154086, 49.0826807 9.9068846, 48.5820337 9.5361343, 48.5712605 9.5309834, 48.6286557 9.5742425, 48.6140017 9.6120933, 48.6022552 9.7936233, 48.7511871 8.0194252, 48.7114985 9.5118429, 48.7122053 9.5620039, 48.7030671 9.6118484, 48.6989434 9.6444299, 48.5459412 9.6258707, 48.3089635 9.2492758, 48.5153202 9.0859236, 48.5170905 9.0891957, 48.8348623 8.1815513, 47.6235849 9.5546946, 48.8386810 9.9568035, 48.4287133 9.6526070, 48.5798562 9.4316519, 48.0406218 8.5867569, 49.2734493 8.6948297, 48.0472287 8.5367557, 48.0889133 8.5918009, 48.0964731 8.5900449, 48.0962888 8.5896869, 48.1271981 8.5738132, 48.1273707 8.5741961, 48.2063358 8.6250931, 48.2056876 8.6226666, 48.2166201 8.6418668, 48.2167189 8.6414624, 48.2289745 8.6503769, 48.2289399 8.6499782, 48.2430476 8.6475682, 48.2431946 8.6479274, 48.2530209 8.6435126, 48.2531765 8.6438750, 48.2644203 8.6389933, 48.2645575 8.6393495, 48.2813956 8.6412975, 48.2813341 8.6408543, 48.2977146 8.6351507, 48.2972932 8.6347804, 48.3242880 8.6472160, 48.3243877 8.6476748, 48.3373584 8.6487786, 48.3373826 8.6483555, 48.3442700 8.6558343, 48.3469514 8.6618212, 48.3520586 8.6725316, 48.3522059 8.6721901, 48.3618750 8.6853301, 48.3619453 8.6849173, 48.3713676 8.6946796, 48.3714747 8.6942675, 48.3771842 8.7089372, 48.3774259 8.7087457, 48.4015796 8.7280541, 48.4011997 8.7277379, 48.4099417 8.7261467, 48.4099143 8.7265573, 48.4189313 8.7323191, 48.4189389 8.7328924, 48.4322851 8.7485039, 48.4288649 8.7451607, 48.4438641 8.7598648, 48.4440497 8.7595431, 48.4559934 8.7754291, 48.4717159 8.7892318, 48.4718223 8.7889048, 48.4561276 8.7750251, 48.4826991 8.8074012, 48.4829142 8.8071597, 48.4900488 8.8276497, 48.4900638 8.8270884, 48.5042436 8.8447640, 48.5037320 8.8430924, 48.5144951 8.8663899, 48.5147165 8.8661081, 48.5246719 8.8856662, 48.5255121 8.8869187, 48.5793415 8.8991287, 48.5792420 8.8996092, 48.5897158 8.8973723, 48.5898831 8.8977661, 48.6007304 8.8955808, 48.6008778 8.8962924, 48.6077084 8.8980109, 48.6079663 8.8972585, 48.6154948 8.9060911, 48.6151912 8.9052045, 48.6258039 8.9133937, 48.6258196 8.9129671, 48.6416668 8.9325258, 48.6424929 8.9331792, 48.6463972 8.9402165, 48.6475180 8.9443391, 48.6544979 8.9553375, 48.6546364 8.9549938, 48.6660811 8.9634531, 48.6642502 8.9625290, 48.6859489 8.9803457, 48.6861202 8.9800142, 48.7052895 9.0487083, 48.9563601 8.4816797, 48.9628669 8.4705850, 48.9720450 8.4492261, 48.9800139 8.4373000, 48.9918759 8.4366585, 49.0226256 8.4738843, 49.0395003 8.4872545, 49.0579562 8.5001354, 49.0715988 8.5098925, 49.1278148 8.5510693, 49.1616098 8.5691075, 49.1619031 8.5686656, 49.1730981 8.5754146, 49.1863209 8.5834869, 49.1990464 8.5921852, 49.1981135 8.5909866, 49.2128827 8.6012971, 49.2246552 8.6038684, 49.2362134 8.6022889, 49.2481139 8.6006746, 49.2662926 8.6102057, 49.2712965 8.6143221, 48.9062510 9.1542529, 48.9060983 9.1547569, 48.8583446 9.1257738, 48.8584252 9.1252132, 48.8046855 9.0395252, 48.8044203 9.0399424, 48.9524256 9.2073550, 48.9522036 9.2076234, 49.2743678 8.7629605, 49.2717609 8.6653623, 49.2727646 8.6477288, 49.2896339 8.6240448, 48.6937396 8.9998316, 48.6934591 9.0005857, 49.3126261 8.6293908, 49.3227278 8.6300450, 49.3238313 8.6296606, 49.3494406 8.6315022, 49.3506615 8.6310836, 49.3624388 8.6321377, 49.3777679 8.6340671, 49.3996042 8.6379323, 49.3995595 8.6374762, 49.4242619 8.6344464, 49.4415225 8.6440635, 49.4478965 8.6458733, 49.4498040 8.6466878, 49.4629951 8.6455334, 49.4767567 8.6402530, 49.4791177 8.6400463, 49.4935411 8.6393382, 49.4935774 8.6389413, 49.5081718 8.6398428, 49.5097612 8.6392983, 49.5313281 8.6336119, 49.5312920 8.6331428, 49.5525637 8.6279741, 49.5628605 8.6308686, 49.5629636 8.6305028, 49.5736837 8.6351574, 49.5737159 8.6346703, 49.5849793 8.6344711, 49.5927035 8.6319637, 49.6087826 8.6293910, 49.3087695 8.5838082, 49.3089156 8.5844077, 49.3148038 8.5766768, 49.3148851 8.5773384, 49.3265942 8.5634383, 49.3401364 8.5565264, 49.3499012 8.5518260, 49.3500649 8.5521838, 49.3669972 8.5452572, 49.3671253 8.5456554, 49.4035912 8.5452834, 49.4340209 8.5404260, 49.4340541 8.5408405, 49.4447718 8.5409303, 49.4447240 8.5413473, 48.5221209 9.2518579, 48.7138577 8.0381166, 48.5074260 9.1044855, 48.4966756 9.1647104, 48.7065484 9.1643826, 48.6529830 10.0549964, 48.6617309 7.9371316, 48.4604679 10.1730350, 48.7707679 9.2502478, 49.4983798 8.7221746, 48.5770937 10.1564522, 49.1356288 10.1460742, 49.6508039 9.5817874, 48.9688930 10.0421164, 48.4176102 8.6975529, 48.4510454 8.7024623, 48.5000283 9.2685370, 48.7443551 8.0688245, 48.7293246 8.0869285, 48.6394888 8.0724431, 48.6565743 8.0901528, 48.1245036 9.9555176, 48.5961319 10.1848887, 48.6980717 9.2484000, 48.1584954 9.8273206, 49.3726291 8.6154446, 49.3728206 8.6138336, 48.0740864 9.9161494, 47.6370345 9.6797608, 48.9159563 8.3440876, 48.8526869 8.2665743, 48.8301365 8.2749044, 48.8539086 8.2653152, 49.5396049 9.8644960, 49.5218245 9.8353583, 48.6992588 7.9806463, 47.7914795 8.9797220, 47.7515920 9.0963188, 47.6885117 9.1208074, 47.8182309 9.0258793, 47.7715126 8.9829763, 48.3505082 9.4001775, 48.3121609 8.6420209, 48.3122837 8.6416456, 48.3863838 8.7265175, 48.3864661 8.7260545, 48.5603672 8.8930171, 48.5605008 8.8925417, 48.5431572 8.8902599, 48.5431163 8.8898269, 48.6759155 8.9637953, 48.7855955 9.0161288, 48.7860187 9.0156133, 49.2685960 8.7808264, 49.2752513 8.7415830, 49.2807376 8.7212441, 49.2805216 8.7210148, 49.2784436 8.7067962, 49.2782043 8.7070247, 49.2761940 8.6961312, 49.2753863 8.6915806, 49.2720878 8.6653395, 49.2735130 8.6454921, 49.2772630 8.6311618, 49.2770465 8.6306095, 49.2724834 8.6147195, 49.2851444 8.6114523, 49.2896916 8.6235466, 49.3026611 8.6271942, 49.3028738 8.6268039, 49.2925232 8.6002521, 49.2925827 8.6009328, 49.2988050 8.5936118, 49.2990364 8.5939962, 49.3365839 8.6307588, 49.3366657 8.6303464, 49.3897310 8.6391038, 49.3897229 8.6386760, 49.4090665 8.6360177, 49.4090472 8.6355624, 49.3786252 8.6340635, 49.4678475 8.6434689, 49.5201575 8.6377645, 49.5201414 8.6373810, 49.5848404 8.6341265, 49.6087473 8.6288107, 49.3319505 8.5414892, 49.3322094 8.5412671, 49.3308082 8.5193728, 49.3310823 8.5183610, 49.3310769 8.5049699, 49.3315658 8.5013626, 49.3341986 8.4859848, 49.3339040 8.4859031, 49.3391146 8.4759931, 49.3392346 8.4764335, 49.0083118 8.4586493, 49.0084147 8.4581585, 49.0479857 8.4924290, 49.0479541 8.4929699, 49.1031348 8.5412231, 49.1041106 8.5425407, 49.1383259 8.5543833, 49.1383617 8.5537736, 49.2290781 8.6026935, 48.0844287 8.5950728, 48.0842978 8.5946580, 48.0707959 8.6062199, 48.0729727 8.6031045, 48.0616780 8.6172924, 48.0614729 8.6169757, 48.0467958 8.6243721, 48.0467018 8.6239468, 48.0341264 8.6201920, 48.0308426 8.6174004, 48.1119121 8.5822120, 48.1117959 8.5818045, 48.7390909 9.1046003, 48.7399694 9.1089399, 48.4015433 9.0154681, 48.3690922 8.9823530, 48.6050833 9.7626886, 48.8298430 8.2749761, 48.8899782 8.1857857, 48.7640789 8.9877233, 47.8328952 8.7686961, 48.3570794 8.4941471, 48.7769422 8.2549352, 48.1391265 9.5711715, 48.5790648 9.6732660, 48.7612090 9.0913193, 47.8748989 8.3130633, 48.3236105 8.9161333, 48.3234236 8.9166417, 48.3354920 8.9500999, 48.7933136 8.3221746, 47.6551491 8.2488428, 47.6976799 9.6153172, 47.6209896 8.2562141, 47.7163607 9.4892661, 47.8086566 9.3140978, 47.7784875 9.3563684, 47.7680005 9.0451650, 47.7090187 9.0968096, 47.7299238 9.0291139, 49.6866841 9.7590894, 48.8168471 9.3139413, 48.3610944 8.5627862, 48.3509823 8.8958946, 48.7814979 8.0742777, 49.5483312 8.6217587, 49.5480505 8.6219075, 49.5530900 8.6271975, 49.4551559 8.5414923, 49.4535171 8.5424121, 49.4544949 8.5572809, 49.4547252 8.5574877, 49.4576280 8.5488333, 49.4578834 8.5490444, 49.4502084 8.5687290, 49.4495578 8.5714117, 49.4960783 8.5568899, 49.4959437 8.5573374, 49.4351626 8.6037261, 49.4353535 8.6040008, 49.4400482 8.5951900, 49.4402646 8.5954224, 49.4233651 8.6243011, 49.4235630 8.6246347, 49.3715952 8.5445479, 49.3716150 8.5449583, 49.3797900 8.5437786, 49.3798146 8.5441885, 49.4147544 8.5477856, 49.4147652 8.5481923, 49.4234904 8.5447593, 49.4235969 8.5451401, 48.9378783 9.1912896, 48.9378316 9.1918418, 49.3216434 8.5680879, 48.4123305 8.6398138, 48.4354246 8.7298101, 48.6880144 9.1785474, 48.6858077 9.1789465, 48.0595559 9.8025082, 48.3514994 8.6437519, 48.8875682 9.4009667, 48.8876980 9.4006577, 47.6362371 8.3136248, 47.6779532 8.3787909, 47.6936388 8.3971377, 47.7387708 8.4432421, 48.8785766 8.2176171, 47.7197129 8.3478040, 47.7511295 8.3431455, 47.7672706 8.3721662, 47.8617756 8.4449749, 48.5969608 8.3495784, 48.7023715 9.0313312, 48.3062437 8.8763154, 48.3058874 8.8764285, 48.3357611 8.9499201, 47.8004338 9.1706255, 48.3681478 8.4801354, 48.0196978 9.4665935, 48.6857923 9.1793283, 48.6880227 9.1789153, 48.6069853 8.1926563, 48.8593992 9.3241072, 48.8715005 8.2321744, 48.3423742 8.4719118, 49.7678910 9.5953982, 49.7769359 9.5730416, 48.8786367 8.1735131, 48.0713702 9.0372714, 48.6848670 7.9775150, 47.7798874 9.1801891, 47.7467856 9.2219730, 47.7024077 9.2711721, 49.7787336 9.5717771, 49.7663206 9.5991074, 49.7695219 9.5838183, 48.8166940 9.3150476, 48.8151457 9.4065628, 48.7916196 9.5897736, 47.8910671 9.9026842, 48.8655865 8.6613281, 47.7246597 9.0581343, 48.5364785 8.8432038, 47.8361535 9.8150148, 47.9351250 9.8898565, 48.7893036 9.5560934, 49.1923091 9.8718353, 47.7169396 9.5803960, 48.4227649 9.9594069, 48.7358912 9.1642861, 48.7640362 8.1301721, 48.6633238 8.8019223, 48.7393241 8.7097934, 48.7345657 8.7897901, 48.7441012 8.8062343, 48.7482361 8.8816313, 48.7581302 8.9422327, 48.7612316 8.8240758, 49.7716334 9.3622440, 49.7717798 9.4016861, 49.7804454 9.4381406, 48.6158224 9.5925440, 48.7139662 9.1632623, 48.7143277 9.1636349, 48.4872370 7.8598603, 48.8046022 9.2898469, 48.8138342 9.3497442, 48.8154088 9.4066499, 48.8102775 9.4322703, 48.8074826 9.4751998, 48.8069459 9.4770765, 48.8078174 9.5037961, 48.8080541 9.5036458, 48.8198273 9.5426560, 48.8200502 9.5428065, 48.8030326 9.2877111, 48.7798546 9.1993849, 48.8133527 8.3020104, 48.7560825 9.0917547, 48.8170882 9.0553505, 48.4071384 8.5365533, 48.8154144 9.5168585, 48.8188802 9.5202568, 48.7478672 9.6172670, 48.5344168 9.6558410, 48.5453878 9.6446335, 48.5531535 9.6323297, 48.5596589 9.6304432, 48.5716398 9.6511007, 48.5308763 9.6959963, 48.5224429 9.7375540, 48.4114429 9.9732844, 48.4958713 9.8455097, 48.4386013 9.9754436, 48.4382636 9.9761016, 48.3704027 8.5354285, 48.8178799 9.5186817, 48.3900820 8.4765948, 47.8296456 8.9962185, 47.8855604 9.1505723, 47.9060139 9.1734577, 49.7229609 9.6338761, 48.3185342 9.2959345, 48.5436491 9.1502839, 48.5360389 9.1360139, 49.6974530 9.6271813, 48.7665879 9.1834710, 48.3728210 8.9367987, 47.6826585 9.7853553, 47.6954449 9.7932976, 47.7061333 9.8028095, 47.7104232 9.8141411, 47.7171469 9.8406117, 47.7261390 9.8725292, 47.7424942 9.8953725, 47.7526269 9.9068504, 47.6210810 9.7381655, 47.6385438 9.7433628, 47.6475323 9.7532081, 47.6568329 9.7692078, 47.6674698 9.7801294, 47.7114584 9.8215361, 47.7197408 9.8576128, 47.7627504 9.9179727, 47.7729395 9.9331797, 47.7777565 9.9484506, 47.7899826 9.9658295, 47.7989986 9.9798027, 47.8161444 9.9911528, 47.8245186 9.9917204, 47.8337802 9.9915487, 47.8489069 9.9923148, 47.8610368 10.0079398, 47.8713224 10.0266884, 47.8850746 10.0410061, 47.8969530 10.0537807, 47.9095105 10.0670038, 47.9222606 10.0801768, 47.9331244 10.0958325, 49.4982324 8.7655658, 48.0320171 8.5433056, 48.6587664 10.2204325, 48.7344923 10.1593282, 48.6338300 9.9951868, 48.7117384 8.8171859, 48.8654161 8.5566606, 48.3724339 9.8123755, 48.7673126 8.1710003, 48.7033738 8.1232844, 48.4322357 9.1288781, 48.7937419 9.1615616, 49.2282577 9.1394988, 48.6797333 10.1041771, 49.0804342 8.5200945, 49.4349711 8.5675363, 47.9211739 8.6720702, 47.9243660 8.5951144, 47.9270881 8.5763973, 47.9206487 8.5048201, 47.9272378 8.5397640, 47.9119552 8.4726552, 47.9111741 8.4713726, 47.8954235 8.4400780, 47.8955227 8.4242315, 47.8895667 8.4055618, 47.8992706 8.3120095, 47.9029212 8.2574463, 47.9050432 8.2222440, 47.9062746 8.1362588, 47.9146743 8.0818462, 48.7355711 9.3524087, 48.7115328 10.0939877, 48.7240254 10.0934189, 48.6479161 9.9618928, 48.8195893 10.1185590, 48.7591062 10.1036537, 48.8029141 10.1254094, 48.6719594 8.9984651, 48.7749207 9.9383719, 48.7263455 10.0235930, 48.4135032 8.2449603, 47.9995301 9.9695933, 49.2854470 8.6116948, 49.3219743 8.5683836, 47.8096201 8.9909358, 49.7068665 9.7781075, 48.5513494 8.2504632, 47.8586463 9.3550964, 47.8762025 9.3450098, 48.8078487 10.2116028, 48.5917876 10.1317650, 48.5999880 10.0683864, 48.5347143 7.9226115, 48.5669403 7.8349143, 48.6581973 7.9520294, 48.3447143 9.1625738, 49.3269369 8.4562714, 48.4986374 9.8430141, 48.6414710 9.5955141, 48.7240485 8.3586705, 48.6565200 9.9340273, 48.7006808 9.9077288, 48.5056730 8.9313385, 49.4374384 8.6412289, 49.4582684 8.6461975, 49.4243132 8.6340120, 49.3624164 8.6317186, 49.3124170 8.6289601, 49.2130203 8.6008043, 49.2478377 8.6002076, 49.2565956 8.6018218, 49.2565096 8.6023342, 49.2360633 8.6017869, 49.1863754 8.5829504, 49.1729647 8.5747696, 49.0773701 9.3926672, 48.4583916 8.3744317, 48.4623649 8.3486391, 49.4590109 8.5776135, 48.7980930 9.2139999, 48.7903192 9.2227408, 48.4496976 9.7983302, 48.5186599 10.1712401, 48.4762236 9.5948157, 49.3589734 9.4688627, 49.3809781 9.4973151, 49.3335547 8.5103395, 48.7019319 8.9166915, 48.0281381 9.8411581, 48.6699273 8.7897063, 47.7074751 7.5255506, 47.6679584 9.3399687, 48.5063101 9.1086316, 49.4635962 9.7770129, 48.7722200 9.1411946, 48.7803603 9.1769220, 48.7769014 9.1818398, 48.8359049 9.2179531, 48.8375716 9.2206574, 48.8375548 9.2232488, 48.7721996 9.1414944, 49.0373756 8.3121690, 47.8666461 8.1705984, 48.6953283 10.1734823, 48.7986667 9.2046281, 49.3737643 9.8712252, 48.6929518 9.2193656, 48.6938357 9.2206004, 49.0120022 8.4077454, 49.0178024 8.4036805, 48.9510439 8.8779408, 48.5111315 8.5279242, 48.7807176 9.1831154, 49.2359955 9.2145358, 49.2511272 9.2157990, 48.8270165 9.2104598, 48.8063751 9.2134082, 48.8328169 9.2156668, 48.8270900 9.2162522, 48.7926529 9.1960124, 48.8024262 9.2102505, 48.8096187 9.2182127, 48.6176296 10.1490073, 48.6783345 9.1273774, 49.4089845 9.4328833, 48.1098046 10.0812923, 49.6071719 9.8174005, 49.2683049 9.1486098, 49.0379898 8.9165667, 48.5406115 8.6982202, 49.0151348 8.4164330, 48.6037512 8.7366987, 48.5692403 8.7178066, 48.5893646 8.7315048, 48.9629464 8.4696573, 49.3041861 8.5654006, 49.3084976 8.4882100, 49.3062824 8.5276746, 49.0335897 8.3768366, 49.2764479 9.2287816, 48.5083302 8.1360071, 48.5716165 10.1546193, 48.5234036 10.0829835, 48.5644946 10.1405713, 48.6006926 10.1930766, 48.4939269 10.0871105, 48.5585352 10.1276554, 48.4802340 10.1035539, 48.5499229 10.1089296, 48.5094281 10.0809424, 48.4913880 10.0897599, 48.5793227 10.1694371, 48.5370883 10.0921411, 48.6523282 10.2286344, 48.6777857 10.2184380, 48.6672503 10.2279878, 48.6370427 10.2166432, 48.6242549 10.2192783, 48.6120766 10.2056884, 48.6920895 10.2143262, 48.7030136 10.2146742, 48.8618376 10.1931581, 48.8332632 10.2076457, 48.8827238 10.1645929, 48.9421283 10.1919918, 49.0364808 10.1865475, 49.0173985 10.1969915, 48.7571167 10.2018021, 48.7402931 10.1962372, 48.8042748 10.2100402, 48.8474227 10.1971056, 48.8970654 10.1761638, 48.7897010 10.2109234, 48.8686720 10.1739204, 48.9261748 10.1945281, 48.9533976 10.1868556, 49.0011869 10.1934122, 49.0225740 10.1963081, 49.0924030 10.2095399, 49.0609686 10.1808684, 49.0760021 10.1991841, 49.0492076 10.1772995, 49.2125333 9.2753125, 49.2268390 8.9484307, 48.6013920 8.0919220, 48.5679097 8.1432529, 48.8001812 9.7973925, 49.2574002 8.5047612, 49.2292889 8.4964665, 49.2824056 8.5244084, 48.7464556 8.2066346, 49.4651669 8.5271434, 49.3780540 8.6486849, 49.4648287 8.5270186, 48.3098676 7.8350464, 47.9924895 8.6077700, 47.9923293 8.6073623, 48.7543901 9.1453973, 48.7765896 9.0222248, 47.7074526 9.8044526, 47.7110714 9.8186784, 47.7326922 9.8808486, 47.6810687 9.7846550, 47.6957684 9.7929756, 47.7112098 9.8198943, 47.7248769 9.8702909, 47.7109077 9.8173971, 47.7173970 9.8403679, 47.7426976 9.8951877, 47.7199073 9.8575529, 47.8245155 9.9914569, 47.7779873 9.9483692, 47.8149009 9.9906789, 47.7899695 9.9654515, 47.7731043 9.9330387, 47.8007641 9.9821144, 47.8344653 9.9911242, 47.7630499 9.9179319, 47.8489307 9.9919631, 47.9223871 10.0797186, 47.9095392 10.0665796, 47.8715057 10.0263294, 47.9324012 10.0946047, 47.8972148 10.0536202, 47.8611937 10.0076449, 47.6212371 9.7377938, 49.2427738 8.6584711, 49.2277019 8.6549049, 47.7251277 9.7136677, 48.2882830 10.0373949, 48.3678389 8.9810088, 47.6983756 9.6703430, 48.5345073 8.5657906, 47.8354774 9.1733536, 47.7196201 9.2434980, 48.4688382 8.5243138, 48.4462792 8.4404912, 48.4651360 8.3226158, 48.4798743 8.2756820, 48.5509660 8.2160283, 48.5282910 8.2156177, 47.8583352 8.0527659, 48.6233742 9.6474853, 47.8421728 9.2591347, 47.8963299 9.2766958, 49.0024709 8.4620661, 48.4617734 9.1534473, 48.7463828 9.1631837, 48.7464742 9.1635807, 48.4295834 9.1753342, 48.6560469 7.9614999, 48.6067013 7.9957688, 48.5935738 7.9814908, 48.5290189 7.9282942, 48.4305716 7.9656859, 48.4476505 7.9377941, 48.3742224 8.0253808, 48.2895888 8.0689839, 49.2283026 8.8731254, 48.0080734 8.9166012, 47.9412086 9.2958515, 47.8780689 8.7556860, 47.9683465 9.1545316, 48.0887124 8.9262412, 48.1419177 8.8203361, 48.9560784 8.4813376, 49.0906796 8.5312506, 49.3402268 8.5570096, 49.3267720 8.5639613, 47.8834738 8.7282837, 48.3602149 9.1986196, 48.6482603 7.9925410, 48.5905388 8.1221704, 48.5816658 8.2219592, 48.8149369 8.9153444, 48.8146940 8.9150211, 48.7110459 10.0443640, 48.2291935 9.0734132, 49.1198820 8.7404111, 49.1810203 9.3405836, 49.6376906 9.7310949, 48.6725457 9.0031015, 47.9822946 10.0070220, 47.9633804 9.7640640, 47.9377464 9.7580317, 47.8005130 9.6082012, 47.7827675 9.5985322, 47.8641749 9.6775262, 47.9102931 9.7647206, 47.8468824 9.6380335, 47.8288333 9.6165700, 47.8643581 9.6772609, 47.7976959 9.6066726, 47.7798501 9.5963029, 47.8269115 9.6166384, 47.9110831 9.7457007, 48.0417478 9.7901424, 48.0076356 9.7742830, 49.0398224 9.7392156, 48.8145665 8.1477899, 48.8700451 8.2330963, 49.4401569 8.6267606, 49.4827502 8.9652469, 49.2261275 8.4015628, 49.2270042 8.3930670, 49.2146867 8.4245865, 48.7852067 9.6873710, 49.3110545 9.1469762, 49.3257362 9.1127483, 49.3334168 9.1021488, 49.3837384 9.0786578, 49.4005395 9.0671825, 49.4398367 8.9046171, 48.4629531 10.1380779, 48.4439448 8.8366702, 48.8317992 9.2086803, 48.8342680 9.2098271, 48.8363275 9.2136031, 48.6069355 9.6317726, 48.8023955 9.2082550, 48.8123036 9.2196914, 48.8169866 9.2258518, 48.8242368 9.2224948, 48.8259297 9.2110930, 48.8343474 9.2081900, 49.0629251 9.1970198, 49.3918443 8.7985821, 49.3926349 8.8038177, 48.8128038 9.2216738, 48.5246441 9.3443560, 48.1387764 9.7690366, 48.5423680 9.4008658, 49.2809102 9.3551891, 49.2809335 9.3557682, 49.4141841 8.6552752, 49.2978779 9.3767644, 49.3795727 9.4593926, 49.3797955 9.4604041, 49.3927454 9.4696114, 49.4062626 9.4721040, 49.4101237 9.4741552, 48.8002789 9.0640069, 49.0011181 8.7173021, 49.0227741 8.7040411, 48.3425352 8.5795308, 48.8257307 9.3013261, 49.0006795 8.7705306, 48.7170600 8.5425541, 47.9418017 9.0439966, 48.0005307 9.1181165, 48.0452735 9.2370497, 48.6921929 9.6652387, 48.8150939 9.0241163, 48.7171935 10.2085770, 48.7281783 10.2004541, 48.7730993 10.2108669, 48.9290165 8.6489728, 48.9371276 8.7215122, 49.4940290 9.2614381, 48.9147442 8.7639662, 48.9149020 8.7645148, 48.9242325 8.7483836, 48.9189948 8.8492099, 47.7993589 9.7259098, 47.8117916 9.7614954, 48.7548994 9.1746002, 49.7078295 9.8039152, 49.6375662 9.7305937, 49.6611667 9.7566617, 49.6719607 9.7713529, 49.7006601 9.7954395, 49.6060244 9.6866807, 49.6510182 9.7397939, 49.6902614 9.7878745, 49.4769864 9.5641676, 49.5712029 9.6403884, 49.4710234 9.5601560, 49.5847956 9.6616762, 49.5158134 9.5684642, 49.5802327 9.6475074, 49.5027455 9.5624713, 49.3205162 9.4126575, 49.3135309 9.4057155, 49.2256498 9.3508030, 49.1781679 9.3380479, 49.2066141 9.3436718, 49.1616635 9.3004576, 49.1810215 9.3400832, 49.2163030 9.3470828, 49.2136669 9.5260814, 49.5927143 9.7364883, 49.5549584 8.5103589, 49.5504868 8.4235355, 49.5540665 8.4673540, 49.5546737 8.4894870, 49.5534822 8.4431096, 49.5552322 8.5100715, 49.5530546 8.4434530, 49.5507729 8.4234367, 49.5544057 8.4894966, 49.0563897 8.8749520, 49.1142373 8.5502969, 49.1143832 8.5498328, 49.0228039 8.4734539, 49.0388576 8.4862787, 48.2640265 9.4987664, 48.9331986 8.8054530, 48.9174229 9.2198333, 48.5609982 8.4262796, 49.5721278 9.4133089, 49.0695697 8.5077440, 49.0905926 8.5317581, 48.7949712 9.2020362, 49.3061073 8.5324333, 49.1618568 9.2788309, 48.5579834 9.8178047, 48.1752988 8.6009275, 48.1432037 8.5710423, 48.1432443 8.5706427, 48.1598980 8.5730541, 48.1598046 8.5726511, 49.1721181 9.3296726, 49.1724302 9.3294218, 49.2162912 9.3475840, 48.9000520 9.0220794, 49.1847108 10.0900827, 49.1848252 10.0891598, 49.1896587 10.1082909, 49.1898348 10.1079377, 49.1986441 10.1270995, 49.1988046 10.1266370, 48.1912071 8.5866264, 48.1913427 8.5862720, 48.1999009 8.6040224, 48.1996877 8.6042934, 48.1761727 8.5742583, 48.1761942 8.5738077, 49.1832002 9.2198007, 49.1835335 9.2196862, 49.1887589 9.1831723, 49.1890446 9.1832209, 49.1696319 9.2528172, 48.8542751 8.8988339, 49.2504081 9.0980374, 47.9439493 7.7362338, 49.2428488 9.1540163, 49.5941383 8.6311749, 47.9391928 7.8716401, 49.1676442 9.2597076, 49.1206387 9.3002491, 49.1863674 9.1970883, 49.1867235 9.1971601, 49.3930439 8.5437518, 49.3930296 8.5441632, 48.0198623 8.0751576, 47.9907295 8.1179395, 47.9809321 8.1427470, 49.0240512 8.3759973, 49.1316010 9.3015276, 49.1353274 9.3040368, 49.1354048 9.3046888, 49.1509022 9.3021184, 49.0723846 9.2819012, 49.0771419 9.3096681, 49.0837516 9.2903086, 49.0837076 9.2896928, 49.0923412 9.2925464, 49.0923485 9.2920329, 49.1060069 9.3021985, 49.1062536 9.3017889, 49.1871870 9.1416283, 49.1875135 9.1416704, 48.9090324 8.6901325, 48.9093271 8.6896039, 48.9167507 8.7200161, 48.9169880 8.7193856, 49.1881041 9.1586514, 49.1885956 9.1193045, 49.1887701 9.1662358, 49.1889471 9.1654843, 49.1935880 9.1069908, 49.1941353 9.1064907, 49.1962800 9.0992722, 49.1965765 9.0994330, 49.2036084 9.0845099, 49.2036611 9.0837736, 49.2114728 9.0729929, 49.2118116 9.0713709, 49.2133993 9.0307116, 49.2142990 9.0467238, 49.2147927 9.0477382, 49.2155578 9.0111665, 49.2159065 9.0112163, 49.2185724 8.9937861, 49.2189155 8.9938342, 49.2218636 8.9761899, 49.2219514 8.9712138, 49.2248674 8.9472710, 49.2251454 8.9475697, 49.2266030 8.9376576, 49.2269236 8.9219300, 49.2273008 8.9222375, 49.2317164 8.9040974, 49.2317859 8.9044922, 49.2401385 8.8905193, 49.2429873 8.8802683, 49.2495696 8.8542327, 49.2497135 8.8548752, 49.2539483 8.8424593, 49.2541812 8.8428710, 49.2568309 8.8327005, 49.2583625 8.8204228, 49.2587335 8.8197907, 49.2611840 8.8071279, 49.2637538 8.8014070, 49.2659403 8.7934976, 49.2723335 8.7690189, 49.4170428 9.9859917, 49.3322519 9.4113637, 49.3323330 9.4117828, 47.8987210 8.2902797, 49.2067543 9.3440942, 49.2256829 9.3512941, 49.2346814 9.3494335, 49.2350284 9.3488643, 49.2607647 9.3531930, 49.2721106 9.3520496, 49.2721130 9.3515930, 49.2545234 9.3523889, 49.2547890 9.3530127, 47.9248891 7.7105768, 47.8995226 7.6787759, 47.8816479 7.7126377, 49.3051714 9.3924690, 49.3052611 9.3918019, 49.3132850 9.4061184, 49.3203389 9.4131413, 49.3255112 9.4136580, 49.3429653 9.4064294, 49.3435612 9.4069728, 49.1933219 9.3504312, 49.1950681 9.3511910, 49.1969154 9.3501739, 49.2428822 9.3487869, 49.2429988 9.3482992, 49.2885484 9.3674880, 49.2888492 9.3671594, 49.2958364 9.3767718, 49.2959616 9.3776113, 49.1780806 9.3385165, 49.1870030 9.3458296, 49.1876263 9.3456559, 49.4020579 9.9426631, 49.0045901 9.2376857, 49.0062638 9.2386840, 49.0142088 9.2460114, 49.0515765 9.1483214, 47.9039911 7.7383012, 49.1616461 9.3009935, 49.1694306 9.3107204, 49.1704268 9.3162466, 47.9727362 7.9445677, 47.9606923 7.9897254, 49.6055676 9.6868114, 49.3911061 10.1211012, 49.4380783 10.0161634, 48.9743928 8.7957421, 49.0561625 9.2688179, 49.0594630 9.2693759, 47.8617298 7.6974840, 49.2142768 9.0230381, 47.9824084 7.8543163, 47.9789931 7.9111705, 47.9795406 7.9099467, 48.1429371 8.6384638, 48.1320146 8.6355665, 48.1499024 8.6152193, 49.0304599 9.2531977, 49.5015800 10.0350131, 49.4759747 9.9397946, 49.4375193 9.9653786, 49.4656731 9.9274158, 49.4845684 9.8958289, 49.4532351 9.9581528, 49.3578060 9.4179989, 49.3580375 9.4176915, 49.3822707 9.9380177, 49.3640239 9.9013334, 49.4317944 9.5039781, 49.4317696 9.5032233, 49.4407047 9.5144379, 49.4409211 9.5138979, 49.4469098 9.5186981, 49.4471603 9.5184619, 48.8725770 8.6904871, 48.7752034 9.0254208, 48.7754392 9.0239267, 48.7761735 9.0236883, 48.7762929 9.0238041, 48.7763222 9.0224710, 48.9740454 9.2647035, 48.9900450 9.2318387, 48.9918045 9.2329174, 49.0141796 9.2465322, 49.0456156 9.2645516, 48.9219152 9.0236911, 48.9260777 9.0680844, 48.0441698 7.9757164, 48.0505716 8.0496292, 48.6003226 9.1902861, 48.6005238 9.1901062, 49.1563088 9.3072238, 49.1570966 9.3161343, 49.2701869 9.6254730, 49.3627346 9.4259543, 49.3628020 9.4269527, 49.3688240 9.4397699, 49.3690412 9.4393949, 49.3752319 9.4523197, 49.3753066 9.4533315, 48.9217824 8.9317455, 48.8343987 8.8560836, 48.8353603 8.8553140, 48.8521225 8.8002086, 48.8525235 8.8006640, 48.8672672 8.7912439, 48.8675228 8.7920279, 48.8755213 8.7939155, 47.9162923 8.0705453, 47.9169414 8.0695102, 47.9335625 8.0303327, 49.1985853 9.5675230, 49.2036230 9.4713725, 49.2038764 9.4709519, 49.2057822 9.4822418, 49.2066521 9.4849493, 49.3178826 9.6893395, 49.3413300 9.7360884, 49.2804805 9.7398425, 49.2152324 9.5901564, 49.2155556 9.5901928, 49.1826470 9.7457752, 49.1829911 9.7455545, 49.2014502 9.6852944, 49.2062055 9.6383435, 48.8556122 9.1240650, 48.8595120 9.1069904, 48.9239379 9.1534561, 48.9241264 9.1537921, 49.1743390 9.8670407, 49.2954225 9.7786234, 49.3266174 9.8116523, 49.3832252 9.8481597, 49.3925185 9.8606230, 49.4104072 9.8827154, 49.4173592 9.8680119, 49.4126354 9.8073800, 49.4217191 9.8163356, 48.8957794 9.1514907, 48.8958618 9.1510115, 48.8840902 9.1453702, 48.8839518 9.1447028, 48.8723227 9.1366426, 48.8723919 9.1361233, 48.8444490 9.1145130, 48.8379323 9.1003275, 48.8381889 9.0999711, 48.8311361 9.0867367, 48.8313792 9.0863760, 48.8219855 9.0834900, 48.8219651 9.0781112, 48.8213163 9.0768080, 48.8143349 9.0649853, 48.8147418 9.0645765, 48.8081518 9.0478713, 48.8084962 9.0476868, 48.7824919 9.0079472, 48.7828894 9.0081705, 49.3462673 9.7652536, 49.3322744 9.9286728, 49.1835852 10.0756758, 49.1833333 10.0696043, 49.4620731 9.8465217, 49.4311530 9.8374961, 49.4588393 9.8921111, 49.4733722 9.8731286, 49.4779904 9.8366968, 47.7860281 9.1194209, 48.8471779 8.9618798, 49.5398575 9.1061778, 49.5514779 9.1200926, 48.9213373 9.1585809, 48.9274840 9.1694800, 48.9277300 9.1691057, 49.1774172 9.9585539, 49.1777132 9.9580959, 49.1833611 10.0480406, 49.1836647 10.0482720, 49.3928222 9.4691860, 49.4174596 9.4780929, 49.4178835 9.4789911, 48.9895024 9.6120129, 48.8960794 9.1960948, 49.0333941 9.9294090, 49.4544367 9.5315328, 49.4560320 9.5330608, 49.4620658 9.5447052, 49.4621953 9.5441557, 49.4683691 9.5576946, 49.4696743 9.5539390, 49.4772960 9.5647733, 49.4889725 9.5650150, 49.4895315 9.5653540, 49.5027792 9.5628991, 49.1735411 9.9956779, 49.1738282 9.9957325, 49.1774935 10.0296026, 48.8462333 9.1297668, 48.8452915 9.1309330, 49.5403467 9.5889109, 49.5504165 9.6068297, 49.5505889 9.6064863, 49.5585365 9.6146243, 49.5712189 9.6408172, 49.5800040 9.6478395, 49.5846226 9.6621280, 49.5911156 9.6691373, 49.5927203 9.6700680, 49.5993920 9.6809044, 48.7406938 8.6474860, 49.5994571 9.6992900, 48.8267253 9.3001515, 49.6283044 9.7298560, 49.6126629 9.7161207, 49.6222826 9.7288373, 49.6609192 9.7570507, 49.6509129 9.7402683, 49.6720702 9.7719881, 49.6805457 9.7792678, 49.6902760 9.7883448, 49.6804068 9.7796570, 49.7005867 9.7958626, 49.4475495 8.9708096, 48.7613425 9.2144219, 49.0965990 9.4469764, 49.0927050 9.3961852, 49.0851274 9.2259822, 48.7546412 9.1453708, 47.7031193 9.9355243, 49.3688113 8.7873065, 48.0024684 9.3886804, 48.9139897 8.8754916, 48.7540192 9.1406562, 48.7542552 9.1411383, 48.7547015 9.1445888, 48.7581785 9.1286783, 48.7811028 9.1943466, 48.4595988 10.1711934, 48.4645404 10.1223774, 48.4802017 10.1041631, 48.4914513 10.0901495, 48.4951764 10.0871437, 48.5097340 10.0813635, 48.5366930 10.0923397, 48.5495692 10.1089249, 48.5640570 10.1405415, 48.6002192 10.1932351, 48.6143248 10.2091203, 48.6237947 10.2194702, 48.6370975 10.2170778, 48.6518587 10.2288665, 48.6672443 10.2286901, 48.6777252 10.2191011, 48.6918304 10.2147888, 48.7030388 10.2151575, 48.7411557 10.1966712, 48.7566988 10.2022541, 48.7725633 10.2111265, 48.7895482 10.2114348, 48.8216854 10.2168276, 48.8334224 10.2081744, 48.8474543 10.1975819, 48.8620769 10.1936834, 48.8691565 10.1741861, 48.8750477 10.1666259, 48.8751128 10.1673993, 48.8863019 10.1658808, 48.8966666 10.1763137, 48.9102131 10.1899836, 48.9104742 10.1896634, 48.9258950 10.1949601, 48.9420077 10.1925203, 48.9558196 10.1862163, 48.9689245 10.1865525, 48.9692640 10.1862417, 49.0009182 10.1938674, 49.0170502 10.1975981, 49.0224299 10.1969381, 49.0363577 10.1873324, 49.0493389 10.1776823, 49.0605574 10.1810565, 49.0758780 10.1995729, 49.0923405 10.2099712, 48.8218705 10.2163375, 48.5732709 10.1585590, 49.7621113 9.6294051, 49.3683330 9.9579141, 49.4195134 10.0535016, 49.2882383 9.9406478, 48.5580685 10.1277207, 48.5788457 10.1693436, 48.7170747 10.2080523, 48.7282666 10.2009034, 49.3350076 8.7983923, 49.3459639 8.7931740, 47.5611045 8.0321768, 49.0171260 9.1534397, 49.0958167 9.1828417, 49.1095965 9.1848677, 48.9183760 9.1563179, 48.9193212 9.1562973, 48.9447724 9.1977190, 48.9449139 9.1972527, 48.9689682 9.2267241, 48.9800924 9.2300574, 49.0304309 9.2538320, 49.1210630 9.3007708, 49.1566653 9.3071655, 49.1573678 9.3160744, 49.1601842 9.3549323, 49.1603741 9.3548775, 49.1616105 9.3397381, 49.1627015 9.3701449, 49.1629358 9.3698809, 49.1725530 9.3817719, 49.1727033 9.8237784, 49.1727925 10.0129405, 49.1729493 9.8236024, 49.1742106 9.8457741, 49.1744759 9.8456315, 49.1744599 9.8623803, 49.1755740 9.9774230, 49.1758547 9.9772793, 49.1759763 9.4001758, 49.1762700 9.8859732, 49.1765088 9.8857580, 49.1770020 9.9345641, 49.1772620 9.9342406, 49.1775887 9.9105015, 49.1777734 10.0294788, 49.1778655 9.9103748, 49.1793399 9.7775155, 49.1796070 9.7775911, 49.1807457 9.4136814, 49.1810781 9.7598064, 49.1813474 9.7612968, 49.1848157 9.7374138, 49.1863246 9.7340659, 49.1896744 9.4186012, 49.1915830 9.7190278, 49.1918286 9.7192538, 49.1949465 9.4295459, 49.1960968 9.7038567, 49.1963928 9.7037561, 49.1971836 9.4521348, 49.1974572 9.4517932, 49.2011210 9.6877344, 49.2043366 9.6644362, 49.2048790 9.6585922, 49.2107745 9.5010542, 49.2110505 9.5008148, 49.2114338 9.5359667, 49.2114729 9.5317012, 49.2118076 9.5173316, 49.2120967 9.5172403, 49.2124341 9.6151901, 49.2127552 9.6151143, 49.2170647 9.5622814, 49.2173850 9.5621363, 49.1245726 9.1305009, 47.6079887 9.5842570, 47.7033469 9.4328489, 49.2890193 8.6051647, 49.4686864 8.5404084, 49.4851183 8.5476333, 48.7551328 9.1535306, 48.7566070 9.1640406, 48.7557736 9.1598401, 48.7546346 9.1489468, 48.7625116 9.1698325, 48.7558502 9.1591969, 48.7547025 9.1516596, 48.7548466 9.1550583, 48.7585917 9.1675048, 48.7555269 9.1595050, 48.7550228 9.1570424, 48.7613879 9.1693616, 48.7560877 9.1617608, 48.7575173 9.1652105, 48.7546558 9.1464774, 48.4514506 8.6433457, 48.4521970 8.6763233, 48.0200383 8.9369411, 49.5696414 9.3640897, 49.5231654 9.3393124, 49.4802730 9.3690583, 48.2306681 8.4106254, 49.4495458 9.4257146, 49.5010683 9.3497671, 48.9581869 8.4301067, 48.9588630 8.4053268, 49.5938778 9.4109944, 49.6063091 9.4370118, 49.6365504 9.4846227, 49.6602377 9.4805080, 49.1311984 9.6338251, 48.7608842 9.4910508, 49.0202769 8.4154626, 49.0937207 8.4121225, 49.3247506 8.5396272, 49.3449164 8.5491365, 49.3476699 8.5480496, 49.4952879 9.2130894, 49.5031612 9.2386569, 49.5219997 9.1700767, 48.4753733 8.4047423, 47.7684484 8.2821018, 48.3226704 9.6087540, 49.1474300 8.5625138, 49.5377487 9.3431212, 48.7771328 9.2445594, 49.3255788 8.8127019, 49.7696553 9.5847553, 48.4906185 9.4512150, 49.3701568 9.1999841, 47.9013964 9.0132227, 47.9153307 9.0468785, 47.9169175 9.0522260, 47.9620341 9.0454807, 47.9754874 9.0793087, 47.9906752 9.0789811, 48.0136013 9.2302443, 48.0821258 9.4500636, 48.1845139 9.4862038, 47.7042046 8.3034213, 49.4012435 9.2089612, 49.4319311 9.2375567, 48.6662152 9.3659699, 48.7024144 9.1774889, 48.7875950 8.9827448, 48.7876052 8.9815757, 48.8007249 8.9412573, 48.8234792 8.8884679, 48.8398485 8.8382949, 48.8437503 8.8159339, 48.9716348 8.4471469, 48.9718087 8.4470090, 48.9800714 8.4366231, 48.9927379 8.4365284, 49.0067732 8.4559623, 48.5196274 9.8080095, 49.2271886 9.5357194, 49.2520286 9.5232629, 49.4119380 10.0303080, 47.8002754 8.1987104, 47.8190174 8.3196830, 49.5074139 9.3070533, 48.6021740 10.0615431, 49.3016282 9.2526462, 49.3705341 9.1559288, 47.7798199 8.3268191, 47.9951149 8.3443070, 48.7264018 9.2107797, 48.7307799 9.1669412, 48.7433433 9.2683902, 48.9658830 8.8832406, 48.9738816 8.8559312, 48.7113403 9.1646288, 48.7184698 9.1629256, 48.5406158 10.2588419, 49.5254765 9.2865999, 48.5231648 10.0833983, 49.1749304 9.7974010, 49.2061965 9.6407316, 49.1898162 9.4180403, 48.7855603 9.1803280, 49.1808888 9.4132057, 49.1505384 9.3016113, 48.8446461 9.1140852, 47.8627536 8.7857416, 47.8630151 8.7860010, 47.8535430 8.8002637, 47.8552075 8.7980343, 47.7654182 8.8041796, 47.7657572 8.8037537, 47.7705586 8.8141093, 47.7706044 8.8134856, 47.7617045 8.7965771, 47.7628714 8.7979748, 47.7551290 8.7854432, 47.7553585 8.7852332, 47.7469775 8.7566261, 47.7473369 8.7564457, 47.7403603 8.7455512, 47.7404180 8.7453253, 48.8239442 8.8879073, 48.7799018 9.1991603, 48.5594430 9.6643993, 48.7313314 9.1307290, 48.3687987 8.1200636, 49.4132111 9.3294052, 49.4189386 9.2924573, 48.7996329 9.3537647, 48.4579439 9.9875507, 48.5509131 9.6345880, 48.5946710 9.6469612, 48.5992368 9.6429459, 48.7955218 8.9596138, 48.7956324 8.9603226, 48.8010415 8.9413894, 48.8400889 8.8396024, 48.8444913 8.8147692, 49.0063430 8.4560599, 49.0579894 8.4995784, 49.0805123 8.5195564, 49.1277871 8.5505582, 49.2664691 8.6097473, 49.4372590 8.6415845, 49.4421019 8.6438758, 49.4678506 8.6439180, 49.2190424 9.2112957, 49.5718373 8.6650002, 48.8093665 9.1834320, 48.8095509 9.1831162, 48.8095078 9.1830372, 48.8096179 9.1832193, 48.8283942 9.2316547, 48.8095137 9.1829682, 48.4316518 9.7505267, 49.1205878 10.1522484, 49.3220845 8.4655350, 48.8188915 9.2372072, 48.7994543 9.1709984, 48.0863844 7.6920940, 49.5923356 9.3604914, 49.4679710 9.1246953, 48.8303778 9.1746521, 49.4848966 8.5480070, 49.5081710 8.5609162, 49.4469737 9.2106562, 48.7743937 9.1727386, 48.7745047 9.1728634, 48.7754257 9.1720375, 48.8313151 9.2122250, 48.8350574 9.2149805, 48.8322297 9.1705414, 47.6269148 8.5717357, 48.9787489 9.3717375, 48.2185403 8.2568051, 47.8600876 8.1797615, 48.9013819 9.0541283, 48.9512077 9.4128480, 48.8834077 9.3881405, 48.8835815 9.3877978, 47.8227987 8.1685497, 48.4982390 8.8442656, 48.7025036 9.4527857, 47.7560737 8.1820547, 47.7707507 8.1831101, 47.7790395 8.1062076, 47.7866778 8.1801994, 47.7916734 8.0821287, 47.8504829 8.2620373, 48.7684830 9.3231418, 49.1891606 9.1171652, 49.2233552 8.9533636, 47.9911663 8.1651822, 48.9270875 9.6214201, 48.0170829 9.3136142, 47.8569443 8.1100233, 48.7122492 9.9138169, 49.1729576 9.7848150, 49.6197048 9.6044235, 48.9656310 9.5806902, 48.7678116 9.1836149, 48.9014012 8.3087881, 49.0962224 9.0919870, 49.7715202 9.4676383, 49.3158418 9.0749821, 48.1377280 9.5979167, 49.5340464 9.2539952, 49.1736873 10.0258466, 49.1967104 9.0903943, 49.3193613 9.1170267, 49.3291232 9.0554272, 47.9784290 8.9641589, 47.9839356 9.0405854, 47.9880187 8.9974481, 47.9918093 8.7739738, 47.9933461 8.7241803, 48.0204120 8.6493049, 49.1782893 9.3731611, 47.7349571 9.2397100, 47.7754898 9.1749163, 49.5431360 9.8876914, 47.6849697 8.0154772, 47.7621595 7.9758828, 47.8079054 7.9357172, 49.2749828 8.7411568, 48.9123330 8.3510166, 48.9123902 8.3504577, 48.9278859 8.3574251, 48.9559673 8.3820776, 48.9608511 8.4084866, 48.9612460 8.4083461, 48.9738379 8.4364444, 48.9757448 8.4369507, 48.8648202 8.2474782, 48.8789975 8.2631638, 48.8792150 8.2627626, 48.8885040 8.2890322, 48.8888477 8.2888475, 48.8942425 8.3105677, 48.8946078 8.3105747, 48.9003187 8.3333080, 48.9006232 8.3329890, 48.9687147 8.4298277, 49.1673363 9.2596599, 49.1822425 9.2236902, 49.1825846 9.2237977, 49.2685258 8.7797727, 49.2745175 8.6394890, 47.8957752 8.4241928, 48.6409446 8.9308115, 48.0228909 8.6121741, 48.0229438 8.6117576, 48.0055377 8.6048873, 48.0055973 8.6052895, 47.9752433 8.6184455, 47.9753906 8.6187932, 47.9849016 8.6118658, 47.9850938 8.6121629, 47.9552172 8.6194757, 47.9552291 8.6198897, 47.9646618 8.6210187, 47.9647513 8.6214154, 47.9116196 8.6845772, 47.9119042 8.6847225, 47.9259038 8.6546660, 47.9261670 8.6547362, 47.9455845 8.6191598, 47.9456945 8.6195331, 47.8917868 8.7230715, 47.8921007 8.7230347, 47.8714101 8.7775596, 47.8714406 8.7780359, 47.8805881 8.7757992, 47.8806648 8.7762586, 47.8875369 8.7383252, 47.8878393 8.7382397, 47.8901856 8.7700635, 47.8902294 8.7506918, 47.8903428 8.7689517, 47.8904407 8.7503382, 47.8166959 8.8469901, 47.8170162 8.8472903, 47.8245464 8.8337926, 47.8250767 8.8336072, 47.8448826 8.8115167, 47.8450907 8.8118378, 47.8068358 8.8542626, 47.8068588 8.8547291, 47.7867976 8.8232352, 47.7868863 8.8228929, 47.7967813 8.8360776, 47.7970006 8.8357483, 47.7495150 8.7631515, 47.7397150 8.7380011, 48.0790498 9.6790386, 48.0970763 9.7026062, 47.7399867 8.7345273, 47.8004997 8.8485013, 47.8007334 8.8482334, 47.8008476 8.8480453, 47.8351310 8.8196960, 47.8353577 8.8200357, 47.8944095 8.7072382, 47.8958979 8.7055108, 47.9054261 8.6967782, 47.9056734 8.6970585, 47.9202794 8.6741869, 47.9205383 8.6743676, 47.9322153 8.6301805, 47.9323560 8.6305783, 48.0151141 8.6076181, 48.0151259 8.6071821, 48.6389999 8.9275089, 48.6723269 8.9637019, 48.7474451 9.0594116, 48.8206218 9.2271254, 49.3135359 8.6418842, 48.2094871 7.7785810, 49.1590946 9.2905858, 49.1786306 9.2350337, 49.0220898 8.6269575, 49.0222804 8.5892203, 49.0809449 8.7838851, 49.0954448 8.8068286, 49.1134678 8.8290440, 49.1227203 8.8550260, 49.1481199 8.9186301, 49.2129006 8.6719161, 47.7325414 9.8811144, 47.7557211 8.9496434, 47.7789662 9.1536377, 47.5711618 7.7613910, 48.8601439 9.3228828, 48.7981271 8.1679392, 48.4481460 7.9010627, 48.6273473 9.3396756, 47.7837255 8.9321885, 47.6884934 9.2990145, 48.4625038 10.1391752, 48.8146124 9.3537610, 48.8253583 9.2125643, 48.7795491 9.1745436, 48.7060514 9.1629651, 48.8698641 10.2833974, 49.0008013 8.3719610, 48.9295711 9.8767384, 48.9205756 8.2058607, 49.2944589 9.4709116, 48.9080374 9.3417376, 48.7121894 9.1604107, 48.7603626 9.1685129, 48.7804469 9.1766071, 48.8221293 9.2045896, 49.6084586 9.3445733, 48.1847953 7.7655600, 49.3783297 8.5626284, 48.9551893 9.2496743, 48.9563878 9.2482053, 48.9547502 9.2555397, 48.9559081 9.2587417, 48.0006677 8.4180724, 48.9899167 9.2772816, 48.9911975 9.2808639, 49.0039164 9.2719079, 48.7074798 8.3199480, 48.7386713 8.2896820, 48.7778355 8.1869501, 48.6456999 9.4144185, 48.8844951 8.2680861, 48.9590094 8.4066839, 49.1381543 9.6093247, 48.6491481 8.3326042, 48.6554113 8.2894004, 48.6879563 8.2301900, 48.7074212 8.2330668, 48.7132068 8.1470490, 48.7784092 8.1874412, 48.8734243 8.1508880, 47.7724018 8.0207021, 48.3743563 8.0257583, 48.5343596 7.9223391, 49.0370746 8.3124966, 48.7583042 9.1234566, 48.7468811 8.3019773, 49.0722747 9.2823707, 49.1585703 9.2916476, 47.6086108 9.5882404, 47.8505591 9.6398559, 49.2409505 8.8896780, 49.5458579 8.6284759, 48.4985741 9.1585090, 48.0811778 9.4497598, 48.2142025 9.0999390, 48.5469927 9.6418125, 48.4569517 7.9109849, 48.4999920 7.9558778, 48.5327154 7.9556963, 48.0592054 10.1387419, 48.0592098 10.1391537, 48.0702593 10.1387506, 48.0702882 10.1391449, 48.6148651 8.9415072, 48.0969837 10.1331788, 48.0970453 10.1335784, 48.1066856 10.1273087, 48.1084077 10.1248434, 48.6805662 8.7748231, 48.7984089 9.2595177, 47.7610670 8.8037000, 48.5016195 8.8470383, 48.5113291 10.0836131, 48.6613430 8.9970074, 48.8681111 9.1392799, 49.0585670 10.1757670, 49.2094830 9.6368000, 49.2147031 9.6143039, 49.2733589 8.6666298, 49.3763680 8.5460170, 49.3912580 9.4722350, 49.5086670 8.6555330, 49.5389680 9.5818630, 47.9940879 8.5899209, 47.9956209 8.5645447, 47.9959086 8.5645447, 47.9939755 8.5399688, 47.9587454 8.5182969, 47.9228405 8.5057249, 47.9977403 8.5298491, 47.9937431 8.5402147, 47.9938303 8.5900723, 48.9818800 9.5718630, 48.5460870 7.8906230, 48.5478963 7.8841324, 48.5584850 7.8601509, 48.5617709 7.9504028, 48.5629237 7.8546515, 48.5722846 8.2255376, 48.5760022 7.8292923, 48.5927521 7.8515502, 48.6055000 8.0325500, 48.6548090 8.0662569, 48.6606900 8.3591362, 48.6858580 8.1097150, 48.6916995 8.3591663, 48.7078830 8.3305170, 48.7093170 8.3642330, 48.7340793 8.3748358, 48.7537300 7.9730480, 48.7670670 8.3636330, 48.8069304 8.5273814, 48.8249429 8.1271170, 48.8328153 8.3659850, 48.9489909 8.3702649, 48.9574500 8.2972500, 48.9589170 8.2985830, 48.9791637 8.3244037, 48.9832531 8.3288457, 49.0187170 8.3479000, 49.0191830 8.3479500, 48.6402538 8.9301926, 48.9374320 8.3952437, 48.7308046 9.0893561, 48.2398830 7.7793830, 48.2579198 7.7929986, 48.2705952 7.8125847, 48.3110330 7.7605830, 48.3346474 7.8428322, 48.3554371 7.8002445, 48.3574902 7.8512044, 48.3734330 7.7886830, 48.3947330 7.8102000, 48.4001330 7.8933830, 48.4114480 7.7933680, 48.4274830 7.9020330, 48.4379830 7.9272000, 48.4479820 7.8659680, 48.4517717 7.8168926, 48.4725400 7.9013520, 48.4765210 7.8142310, 48.4938289 7.8211029, 48.4999694 7.9558417, 48.5229170 8.0998830, 48.5310170 7.9861170, 48.5326830 7.9557170, 48.5409774 8.0240442, 48.5472980 8.0623920, 48.5937204 9.3206755, 48.5534341 9.6559665, 49.0030851 8.4628615, 48.0379234 7.7293497, 49.0203975 9.0656401, 48.9982101 9.1453968, 48.9969555 9.1440267, 49.4054330 9.1869505, 47.9400659 7.6824225, 47.9538389 8.5278386, 47.9588767 8.5186162, 47.9615826 8.4506762, 47.9658830 7.7700330, 47.9659170 7.7697170, 47.9805750 7.7635273, 47.9837311 7.7849445, 47.9839613 7.7847717, 48.1808656 8.6361506, 48.1907686 8.0457454, 48.2058330 8.0877000, 48.2168499 8.0970402, 48.2176720 7.9314050, 48.2212720 7.9437941, 48.2277966 7.9140232, 48.2279955 8.1605839, 48.2286275 8.0059734, 48.2330439 8.1013160, 48.2345984 8.2036570, 48.2368736 7.9896524, 48.2379330 7.8932500, 48.2555480 8.0133480, 48.2570330 8.1073500, 48.2595670 8.3721896, 48.2824752 8.2062911, 48.2830000 8.1397000, 48.2832642 8.3506122, 48.2910322 8.0392709, 48.2910500 8.2665000, 48.2910563 8.2959909, 48.2989873 8.6414910, 48.3069678 8.0585182, 48.3217330 8.0348581, 48.3259330 8.4315500, 48.3281646 8.2181236, 48.3348301 8.0181870, 48.3449670 8.0203830, 48.3452000 8.0201670, 48.3565000 8.2588830, 48.3999726 8.0071964, 48.4097330 8.3233117, 48.4197850 8.1578400, 48.4420000 8.3969330, 48.4575500 8.2570000, 48.4801432 8.2004096, 48.4887676 8.1481384, 48.4950460 8.2558272, 48.5059500 8.2238170, 48.5417133 8.2768459, 48.5847800 8.2056130, 49.1472065 8.5623849, 47.5460330 7.7388520, 47.5734631 8.3349699, 47.5780500 7.8072330, 47.5902330 7.8354170, 47.6037668 8.4374549, 47.6291103 8.3256420, 47.6395883 8.3102169, 47.6487330 8.3510670, 47.7103170 7.5820170, 47.7156830 8.4265000, 47.7743576 7.5512018, 47.7856830 8.3940330, 47.7889668 7.7044398, 47.7945010 7.6870566, 47.7976329 7.5578769, 47.7990720 7.6587700, 47.8031743 8.3456957, 47.8202270 7.5699620, 47.8531180 7.6319320, 47.8959086 7.5981429, 47.9043730 7.7147870, 47.9684886 7.6570344, 47.9819830 7.6439330, 48.0003170 7.6259670, 48.0153000 7.6122000, 48.0295330 7.6006500, 48.0383170 7.6236500, 48.0529549 7.5922298, 48.0853000 7.6018000, 48.1190170 7.9090170, 48.1309711 7.8212053, 48.1418882 7.6721800, 48.1523158 7.6755834, 48.1573830 7.7826500, 48.4366870 9.3637130, 48.4843930 9.3248730, 48.4862109 9.3965814, 48.4927420 9.2875430, 48.6100953 9.7359647, 48.6951318 9.5087763, 48.7161433 9.3601088, 48.7161810 9.3576709, 48.7402794 9.3781920, 48.7404120 9.5855230, 48.7476500 9.8711170, 48.7645430 9.5672900, 48.7736200 9.2476950, 48.7846670 9.6227330, 48.7848670 9.6242670, 48.7862309 9.7367878, 48.7864261 9.7369502, 48.7933000 9.7032330, 48.7934830 9.7030170, 48.7935170 9.5878330, 48.7952701 9.6556446, 48.7953183 9.6551020, 48.8276648 9.3330095, 48.8278846 9.3333936, 48.8409670 9.0113670, 48.8533780 9.2663030, 48.8595726 9.3622839, 48.8599799 9.3622413, 48.8659437 9.4038197, 48.8712050 9.1966870, 48.8716730 9.1963800, 48.8833541 9.1287628, 48.9126230 9.2462520, 48.9290100 8.6802484, 48.9370704 9.4252807, 48.9525330 8.9154670, 48.9636942 9.3598270, 48.9843629 9.3467415, 48.9850789 8.6059223, 48.9859000 8.8367670, 48.9881036 8.7948533, 49.0055358 8.4869222, 49.0243380 8.7420570, 49.0328000 8.5161330, 49.0423170 8.3932500, 49.0477330 8.3660500, 49.0511915 8.6626662, 49.0526450 8.3678513, 49.0639830 8.3914830, 49.0676670 8.6572830, 49.0696330 8.4054500, 49.0736894 8.5432028, 49.0801735 8.4646877, 49.0898788 8.4106652, 49.1099500 8.5761000, 49.1188526 8.4295464, 49.1390191 8.5644378, 49.1446330 8.6017000, 49.1447000 8.6024670, 49.1471830 8.4521170, 49.1871170 8.6465000, 49.1883403 8.4824997, 49.1982637 8.4516222, 49.2252635 8.7409916, 49.2391719 8.7617558, 49.2605470 8.6672930, 49.2851107 8.5669430, 49.2872563 8.6813077, 49.2883000 8.7676670, 49.2924160 8.7275980, 49.3032000 8.6768250, 49.3184700 8.6317400, 49.3230700 8.7747870, 49.3268720 8.6810230, 49.3313570 8.6618150, 49.3413245 8.6058483, 49.3601020 8.6711250, 49.3605250 8.6625800, 49.3619019 8.5847515, 49.3767236 8.6475773, 49.4665850 8.7363180, 49.4794666 8.6257420, 49.4921330 8.5657500, 49.5217170 8.6551500, 49.5526830 8.6507000, 49.5811000 8.4476670, 49.5815830 8.4482670, 47.9975030 8.5302945, 48.0419830 8.4883500, 48.0655438 8.4682246, 48.0832569 8.5411148, 48.1414980 8.5064731, 48.1788732 8.5660799, 48.2979450 8.5315800, 48.3489548 8.4142438, 48.3594693 8.6192517, 48.3680170 8.6080830, 48.3719597 8.4119412, 48.4483983 8.6199163, 48.4488186 8.7789073, 48.4599670 8.6768170, 48.4600670 8.4376500, 48.4654330 8.4702000, 48.4767556 8.4196997, 48.4798170 8.6652000, 48.4815000 8.4845000, 48.4856296 8.6859055, 48.5001830 8.6501000, 48.5036330 8.4298830, 48.5189500 8.8445330, 48.5199080 8.4176270, 48.5279000 8.4291670, 48.5422670 8.6766170, 48.5514330 8.4943330, 48.5588530 8.5843280, 48.5727730 8.8587670, 48.5741670 8.5083670, 48.5869193 8.7971396, 48.5955670 8.8322100, 48.5967307 8.6276243, 48.5985650 8.5783820, 48.6117172 8.4540114, 48.6260580 8.4657700, 48.6436689 8.5086578, 48.6612100 8.5437920, 48.6719830 8.7399000, 48.6769480 8.7127580, 48.6909400 8.5662350, 48.7177394 8.5615051, 48.7387942 8.5777668, 48.7801768 8.6929798, 48.7834250 8.6750280, 48.7910500 8.7255670, 48.8183500 8.7933500, 48.8376330 8.6233330, 48.8551000 8.6176000, 47.6025173 8.0211622, 47.6072330 8.1101170, 47.6072670 8.1736000, 47.6225330 8.0891000, 47.6236000 7.9214330, 47.6319500 7.6580330, 47.6325000 7.6761830, 47.6325170 8.1838330, 47.6366393 8.0951706, 47.6383620 8.0061345, 47.6405485 7.7046519, 47.6411836 7.7459877, 47.6422670 7.8162000, 47.6439585 7.5866786, 47.6474914 7.8456108, 47.6476330 7.7744830, 47.6476566 7.8885845, 47.6486830 8.1771830, 47.6512830 7.9251330, 47.6522670 8.0618330, 47.6581670 7.5683830, 47.6589716 8.0132859, 47.6595081 7.8438563, 47.6798188 7.9498966, 47.6892000 8.1552000, 47.6949000 8.7174330, 47.7003000 8.0172170, 47.7094800 8.7450330, 47.7196330 8.0142072, 47.7197317 8.1309356, 47.7211170 7.9979670, 47.7337170 7.8800830, 47.7378500 8.7566830, 47.7392528 8.1453652, 47.7409085 8.1722459, 47.7438765 8.8121633, 47.7451098 7.9756753, 47.7470723 8.0454830, 47.7474375 8.0200677, 47.7518650 8.8245410, 47.7545000 7.8890670, 47.7823670 8.7153670, 47.7962703 8.8269564, 47.7969559 8.7077718, 47.7969970 8.8254450, 47.8104250 8.8047630, 47.8206670 8.0743330, 47.8320500 7.9601330, 47.8361047 8.3091044, 47.8585000 7.9980500, 47.8585655 8.2373324, 47.8652500 8.3247000, 47.8746280 8.1100880, 47.8838170 8.1648670, 47.8839607 8.1384720, 47.8930230 7.8914280, 47.8979600 8.1600950, 47.9037830 7.9315830, 47.9127421 7.8924294, 47.9147602 7.8819426, 47.9197651 7.9373184, 47.9394300 8.0942280, 47.9440670 8.2419330, 47.9613000 8.1525670, 47.9761170 8.2942500, 48.0007420 7.8133470, 48.0032570 7.8091950, 48.0033670 8.2013330, 48.0146741 8.3199163, 48.0171545 7.7925268, 48.0178376 7.7922795, 48.0248757 8.1911143, 48.0282000 7.8581330, 48.0388759 8.1744511, 48.0489830 7.8556500, 48.0516500 7.8610670, 48.0518000 7.8607830, 48.0528500 7.7567000, 48.0583797 8.5689081, 48.0612887 7.8153689, 48.0614000 7.8979830, 48.0618500 7.8998670, 48.0703369 7.7607759, 48.0746747 7.8638511, 48.0755000 7.9240170, 48.0757000 7.9237670, 48.0816330 8.5894170, 48.1008416 7.9803231, 48.1009146 7.9801326, 48.1072670 8.4146670, 48.1347394 8.2783178, 48.1365420 8.1655052, 48.1564486 8.4167406, 48.1716000 8.2331000, 48.1756407 8.3294208, 48.1874761 8.2305894, 48.1881755 8.3868434, 48.2045250 8.4048127, 48.2109879 8.3806724, 48.2206330 8.4636500, 47.6535728 9.7780530, 47.6609770 9.9400770, 47.6727500 9.8113000, 47.6765400 9.8811220, 47.6777384 9.9724308, 47.6810500 9.9977170, 47.7065880 9.9999900, 47.7114220 10.0463530, 47.7262570 9.9522280, 47.7339670 10.0705000, 47.7381050 9.9837170, 47.7483330 9.9446830, 47.7502221 10.0449374, 47.7602700 10.0664980, 47.7612500 10.1059000, 47.7692300 10.0759778, 47.7876800 10.0440630, 47.7973750 10.0155080, 47.8104070 10.0302900, 47.8402680 10.0163820, 47.8690770 10.0360320, 47.9072277 10.0912928, 47.9248500 10.1007330, 48.4818530 10.1460780, 48.5392170 10.1142170, 48.5599170 10.1930830, 48.5650160 10.1315784, 48.5794670 10.2886181, 48.6015500 10.2615500, 48.6082234 10.2224831, 48.6268170 10.1988670, 48.6377950 10.2335980, 48.6609538 10.3555752, 48.6951329 10.1999890, 48.7004420 10.2842080, 48.7048670 10.3085170, 48.7061170 10.3378330, 48.7162500 10.2483670, 48.7314077 10.3593375, 48.7337829 10.1376649, 48.7495622 10.2672746, 48.7552830 10.2922830, 48.7748200 10.2827520, 48.7925500 10.3695500, 48.8013072 10.2282570, 48.8047430 10.4094870, 48.8322283 10.3318884, 48.8692791 10.3752248, 48.8727150 10.2202680, 48.8776820 10.2482950, 48.8790723 10.1848694, 48.8868580 10.1579080, 48.8887180 10.3534489, 48.9224000 10.2033670, 48.9351780 10.2992230, 48.9377980 10.2703700, 48.9656130 10.3678550, 48.9669170 10.3121500, 48.9848666 10.3113511, 48.9935170 10.2055830, 49.0239939 10.3255613, 49.0365390 10.2420911, 47.8266170 8.9283030, 47.8508544 8.9244287, 47.7054970 8.9164600, 47.7515868 8.8952490, 47.8505130 8.8293850, 47.8793824 8.9081528, 47.8916420 8.9299220, 47.9165975 8.9592390, 47.6154703 9.7472023, 47.6276208 9.7270496, 47.6529085 9.5931250, 47.6571521 9.6746189, 47.6652741 9.4740318, 47.6653177 9.4809164, 47.6672414 9.5776997, 47.6893844 9.5829661, 47.6982546 9.7748372, 47.7042032 9.3522091, 47.7052670 9.7392330, 47.7159678 9.7294454, 47.7191703 9.2456166, 47.7234180 9.6982550, 47.7261237 9.8204563, 47.7492170 9.5977670, 47.7662027 9.7930424, 47.7681656 9.5881556, 47.7721511 9.2153960, 47.7762208 9.7103985, 47.7859140 9.2134539, 47.8057803 9.1224769, 47.8058731 9.1228683, 47.8183550 9.9931030, 47.8240826 9.0792325, 47.8242353 9.0793942, 47.8336198 9.0324971, 47.8357670 9.6851670, 47.8365670 9.0487670, 47.8368500 9.0486830, 47.8397081 9.9853248, 47.8418420 9.9482500, 47.8428500 9.0189330, 47.8493500 9.7224780, 47.8554220 9.9238170, 47.8582230 9.7700000, 47.8601170 9.7902330, 47.8679851 9.9965429, 47.8803330 9.7972170, 47.8936670 9.8445000, 47.9024500 9.9031330, 47.9153100 9.9309630, 47.9204500 9.9626000, 47.9309430 10.0046170, 47.9341592 10.0497777, 47.9644007 9.8181840, 47.9712904 9.9389160, 47.9927830 9.9216000, 47.9961170 9.8559330, 48.0049053 10.0620258, 48.0151500 9.9149830, 48.0349330 10.0093670, 48.0354500 9.7784830, 48.0357330 10.1194330, 48.0500330 10.0759330, 48.0521500 10.0434500, 48.0807830 9.8582000, 48.1494670 9.8993830, 48.2020850 10.0443470, 48.2147828 9.9928587, 48.2840214 9.9620452, 48.3133830 10.0200880, 48.4432820 10.0182750, 48.4920830 10.0780000, 47.7338312 9.4654942, 47.7582550 9.4920600, 47.7742670 9.5699500, 47.7831768 9.5384306, 47.7891117 9.5194814, 47.8237219 9.4824233, 47.8276500 9.3702670, 47.8759250 9.2850000, 47.8868830 9.4341670, 47.8872274 9.1739257, 47.9173420 9.3325700, 47.9499583 9.3376812, 47.9669670 9.3554830, 47.9919683 9.3282587, 48.0235500 9.3952000, 48.7133000 10.3790000, 48.7171830 8.8975670, 48.7330589 8.9369837, 48.7424186 8.9989272, 48.9464830 9.0523500, 48.9564670 9.0917500, 48.9647170 9.0318000, 48.9845670 9.0345500, 49.0040170 9.2270000, 49.0135870 9.1980800, 49.0397966 8.9751039, 49.0501830 9.1358170, 49.0662330 9.1594170, 49.0903500 9.0511000, 49.1079833 9.0159446, 49.1458660 8.8374268, 49.1576170 8.8850500, 49.1678850 8.9676800, 49.1774989 8.8770258, 49.1900450 8.8304750, 49.1909830 9.0434330, 49.1921699 9.2335363, 49.2064500 9.0278170, 49.2185500 9.2120000, 49.2717720 8.8962380, 49.2798500 9.2850000, 49.2927420 9.1203170, 49.3000830 8.9269830, 49.3068600 8.8907900, 49.3128074 9.3630219, 49.3197830 8.9624500, 49.3229770 9.4023730, 49.3310170 8.9414330, 49.3320750 9.2812150, 49.3340770 9.3363280, 49.3511522 9.2751628, 49.3571420 8.8612770, 49.3619020 8.9598370, 49.3664470 9.3032250, 49.3673600 8.9176050, 49.3978830 9.1575500, 49.4112170 9.0888000, 49.4112645 9.1087361, 49.4186470 8.9831350, 49.4241750 9.1029300, 49.4388100 8.9681070, 49.4518730 9.0302309, 49.4575175 9.3320036, 49.4581800 9.0702950, 49.4588670 8.9574330, 49.4667500 9.5066170, 49.4754731 9.1457066, 49.5225930 9.4097780, 49.5418130 9.3889400, 49.5606500 9.3834330, 49.5754830 9.6241500, 49.6056170 9.6433170, 49.6121352 9.5531347, 49.6143000 9.3200670, 49.6230500 9.6770670, 49.6301000 9.3239670, 49.6418972 9.7259377, 49.6575500 9.4308500, 49.6645000 9.5412830, 49.6931935 9.5973680, 49.6934170 9.5432500, 49.7008939 9.5792116, 49.7140902 9.4552649, 49.7243209 9.4319978, 49.7328450 9.6206830, 49.7372000 9.4628500, 49.7462524 9.5242110, 49.1787151 10.0695640, 49.1878670 9.9996330, 49.1968941 10.0641702, 49.2162170 9.9632670, 49.2215080 9.6782750, 49.2220900 9.5877470, 49.2331947 10.0431316, 49.2362670 9.9082330, 49.2386670 9.8286270, 49.2456620 9.6128480, 49.2498000 9.9531000, 49.2587284 10.0467105, 49.2630130 9.8110500, 49.2645500 9.8420170, 49.2656380 9.8889480, 49.2727327 9.9271674, 49.2772227 9.9133837, 49.2860530 9.9996120, 49.2925330 9.6736670, 49.3127280 9.9480500, 49.3158518 10.1292596, 49.3187330 9.7611330, 49.3265680 9.9862680, 49.3276670 10.0235670, 49.3315670 9.7116830, 49.3397950 10.0554730, 49.3404830 10.0182720, 49.3433750 9.7072870, 49.3465330 9.7253330, 49.3551430 9.9922030, 49.3561170 9.7860500, 49.3629500 10.0735170, 49.3642708 9.8038800, 49.3663000 9.7195830, 49.3736380 10.0303380, 49.3739170 9.7948000, 49.3889500 10.1385670, 49.3927920 9.8858550, 49.3949080 10.0950970, 49.3969500 9.9632230, 49.4340689 10.0441635, 49.4456850 9.8060850, 49.4535500 9.7620830, 49.4842500 10.0197830, 49.4853954 9.7466260, 49.4863330 9.7131500, 49.5123330 9.6952000, 49.5173400 10.0746330, 49.5800975 9.7094230, 49.0209154 9.4581133, 49.0216544 9.4132149, 49.0474330 9.4436330, 49.0696150 9.5349420, 49.0974565 9.8287401, 49.1019970 10.1918130, 49.1153330 10.0845000, 49.1200580 9.5472600, 49.1229420 10.1203550, 49.1376730 9.7859420, 49.1420570 10.0886180, 49.1452500 9.4288170, 49.1490170 9.9776670, 49.1499170 9.7990150, 49.1543330 10.0759670, 49.1560800 10.1290420, 49.1567218 9.5413931, 49.1595670 9.9602830, 49.1684350 9.8765780, 49.1690170 9.9394330, 49.1758720 9.6268250, 49.1772030 9.7103720, 49.1961430 9.6901650, 49.2165133 9.4572817, 49.2275528 9.4255677, 49.2653111 9.4540030, 49.2684020 9.5065730, 49.2777970 9.5539880, 49.2856170 9.5089000, 49.3297830 9.5799170, 49.3451670 9.5550670, 49.3565970 9.5073730, 49.3642000 9.6785170, 49.3670170 9.6112830, 49.3982920 9.5330370, 49.4072330 9.5908830, 49.4103996 9.6556100, 49.4268950 9.6564770, 49.4276230 9.7501720, 49.4414500 9.7197170, 49.4532080 9.6440500, 49.4599720 9.6094980, 48.4883670 9.9312500, 48.5019313 9.9195983, 48.5056550 9.9879070, 48.5175208 9.8922673, 48.5293670 9.8096170, 48.5328330 9.9883000, 48.5548330 9.9853000, 48.5551330 9.8634830, 48.5660330 9.9504670, 48.5708500 9.7934000, 48.5717825 9.8814045, 48.5954299 10.0300891, 48.5970500 9.8501330, 48.6121000 10.0256830, 48.6319500 9.8867670, 48.6433830 9.9263170, 48.6678830 10.0359830, 48.6704330 10.0080170, 48.6731000 10.0688330, 48.6929000 10.0792830, 48.7859029 10.1231628, 48.7936550 10.0019380, 48.8224080 10.0008370, 48.9032870 10.1520530, 48.9056045 10.1751184, 48.9236830 10.1451170, 48.9427280 10.1314750, 48.9732630 10.1604530, 48.9930509 10.1010553, 49.0005313 10.0555011, 49.0257000 9.9917670, 49.0291330 9.6492170, 49.0474900 9.6274570, 49.0476054 9.7075314, 49.0527343 10.1189876, 49.0685350 9.9413520, 49.0721330 10.0067500, 49.0736670 9.9757670, 49.0803900 9.5865580, 49.0877504 9.9395821, 49.0958830 9.6557670, 49.0971170 10.0026500, 49.1126824 9.6575256, 48.8069330 9.8571330, 48.8193370 9.8822770, 48.8417670 9.7408170, 48.8483670 9.9118830, 48.8498000 9.7755500, 48.8564670 9.5792830, 48.8584220 9.6018050, 48.8599670 9.7252830, 48.8617070 10.0746220, 48.8686701 10.1089465, 48.8812030 10.0927180, 48.8918230 9.9685270, 48.8945670 9.6584330, 48.8956900 10.0485670, 48.8964500 9.4983330, 48.9013420 9.8888980, 48.9046830 9.9893330, 48.9083100 9.9388220, 48.9100180 10.0246300, 48.9115600 9.9097870, 48.9144830 9.8215800, 48.9151500 9.7298000, 48.9197780 10.0488520, 48.9251730 9.4545750, 48.9315647 9.7103285, 48.9382650 9.6637730, 48.9400330 9.7735000, 48.9468670 9.6254670, 48.9483000 9.7038500, 48.9711330 9.6316330, 48.9860170 9.6796170, 48.3640420 9.2547142, 48.3729020 9.1215530, 48.3858370 9.7108180, 48.3866820 8.9954520, 48.3871530 8.9961650, 48.3875680 9.8047100, 48.3882055 9.7643443, 48.3886670 9.8709830, 48.4008530 9.2390230, 48.4015670 9.8266670, 48.4055830 9.6513830, 48.4080080 9.0812630, 48.4108080 9.8459180, 48.4235720 9.2088030, 48.4341180 9.9210330, 48.4369420 9.8439420, 48.4517230 9.7655030, 48.4554103 9.7070077, 48.4591007 9.6639741, 48.4634301 9.6757964, 48.4649770 9.7506770, 48.4682830 9.6936000, 48.4844830 9.5523830, 48.4885500 9.5826170, 48.4887170 8.9344170, 48.4936670 9.7131170, 48.5002500 9.7394670, 48.5132300 9.7781020, 48.5132670 9.5611670, 48.5146594 9.4494508, 48.5180170 9.6092500, 48.5222730 9.5825870, 48.5292462 9.5273046, 48.5315795 8.9664734, 48.5342064 9.4912327, 48.5917436 9.1069271, 48.5929350 9.1473970, 48.6090970 9.0469600, 48.6147400 9.0249230, 48.6173167 9.2876041, 48.6519206 9.0876697, 49.1590514 9.2872506, 47.6004000 7.7026000, 47.8857746 8.9756074, 47.8859270 8.8120630, 47.9005330 8.7022170, 47.9259068 8.7465911, 47.9360391 8.8557505, 47.9363370 8.9431200, 47.9383770 8.7454120, 47.9434700 8.9007300, 47.9471148 8.9427032, 47.9511030 8.7555370, 47.9513942 8.8627546, 47.9940670 8.9319330, 48.0156039 8.7755863, 48.0202524 8.8823347, 48.0435972 8.8926365, 48.0956526 8.7169068, 48.1121364 8.6948230, 48.1321080 8.6641068, 48.1588000 8.7110330, 48.1708000 8.9380170, 48.1861848 8.7351214, 48.2031500 8.7191330, 48.2166830 9.0529830, 48.2184670 8.8526000, 48.2268170 8.7849670, 48.2269500 9.2281500, 48.2315820 8.8503870, 48.2316830 8.8983500, 48.2348330 9.4363330, 48.2366300 9.0936910, 48.2377129 9.2647553, 48.2482670 8.8143330, 48.2521630 9.5333080, 48.2545830 9.2806470, 48.2618170 8.8483330, 48.2624500 8.8491670, 48.2645924 9.4534662, 48.2890670 9.1443170, 48.2935050 8.7774530, 48.2968330 9.0724330, 48.2977320 9.4559280, 48.2980330 9.3411830, 48.3004930 8.6632320, 48.3191670 8.7275170, 48.3192570 8.8619130, 48.3202495 9.1575336, 48.3221548 8.6832986, 48.3253900 9.3276830, 48.3380293 9.5738981, 48.3402778 8.6697672, 48.3427003 9.1847867, 48.3438150 8.7354430, 48.3678330 9.5323830, 48.3735000 8.7590170, 48.3773670 8.8483880, 48.3958200 8.7827980, 48.1996780 7.7459371, 47.9442830 9.2346500, 47.9459330 9.2654670, 47.9791000 9.2311000, 47.9994465 9.2366250, 48.0040234 9.1560241, 48.0206670 9.1069170, 48.0273000 9.0867670, 48.0297500 8.9506000, 48.0383670 9.4640500, 48.0426522 9.0529168, 48.0548612 9.3493067, 48.0556670 8.9803330, 48.0570670 9.3151000, 48.0655099 9.2252456, 48.0774743 9.5119507, 48.0792731 9.1893146, 48.0793077 9.1210433, 48.0797670 9.1512330, 48.0895670 9.0680500, 48.0926870 9.5460400, 48.0946416 9.0253685, 48.1081000 9.2067000, 48.1159143 9.7442412, 48.1162330 9.6918000, 48.1197820 9.3193920, 48.1218840 8.9885167, 48.1288442 9.4713802, 48.1401830 9.6421170, 48.1467000 9.1463000, 48.1524508 9.4951230, 48.1530430 9.3367870, 48.1682830 9.1281000, 48.1751097 9.3078235, 48.1772170 9.2316830, 48.1809500 9.2115500, 48.1840500 9.2739330, 48.1871000 9.0911170, 48.1879084 9.1773210, 48.1880830 9.1356670, 48.1980170 9.1174500, 48.1985500 9.5314170, 48.1995033 9.4914311, 48.2161170 9.5366830, 48.2176000 9.6519000, 48.2459700 9.6135500, 48.2566670 9.5915500, 48.2714750 9.5875450, 47.8397070 9.5787300, 47.8797170 9.5754330, 47.8836330 9.6383170, 47.9080533 9.5632333, 47.9137141 9.6474407, 47.9271330 9.6767330, 47.9276670 9.5353170, 47.9419000 9.7125830, 47.9430800 9.4731180, 47.9453130 9.5467820, 47.9464500 9.5999900, 47.9537670 9.5204170, 47.9609519 9.6036727, 47.9650330 9.6812500, 47.9773330 9.4319170, 47.9875120 9.7792211, 47.9894000 9.5158000, 47.9967100 9.4783820, 47.9991446 9.5484658, 48.0237000 9.6468000, 48.0253170 9.6938330, 48.0440521 9.7334064, 48.0454207 9.6262701, 48.0607000 9.5890170, 48.0890170 9.8227830, 48.0959597 9.8282842, 48.1458830 9.8318670, 48.1467330 9.8320330, 48.1642170 9.8586330, 48.1643000 9.8582830, 48.1862500 9.8699500, 48.1976830 9.8722000, 48.2059890 8.5364458, 48.2114330 9.8789170, 48.2304000 9.8672000, 48.2369900 9.7501380, 48.2395000 9.8732000, 48.2435830 9.7944320, 48.2564000 9.9017830, 48.2700050 9.7803130, 48.2732370 9.6844370, 48.2812500 9.9157170, 48.2818830 9.9157830, 48.2827750 9.7514620, 48.2910930 9.8000520, 48.2943000 9.7321000, 48.2946320 9.9222650, 48.2950280 9.9220980, 48.3028680 9.6901430, 48.3127420 9.8624170, 48.3154130 9.9259670, 48.3184420 9.9287570, 48.3240500 9.7299500, 48.3445420 9.9513000, 48.3473950 9.9536670, 48.3486980 9.7875920, 48.3494850 9.7141070, 48.3528450 9.9189100, 48.3605330 9.9637680, 48.3671853 9.9410047, 47.6715330 8.1580000, 47.8037330 8.5259170, 47.8153683 8.5324025, 47.8168348 8.5728117, 47.8169830 8.5608330, 47.8247750 8.6352700, 47.8301098 9.6137542, 47.8485500 8.5738170, 47.8620330 8.6291500, 47.8653700 8.7751820, 47.9045330 8.6734830, 47.9168900 8.6348980, 47.9730000 7.9490680, 47.9901700 8.7344070, 48.0756683 8.4923576, 48.0869894 8.5899962, 48.7122837 9.4044395, 48.8339500 8.8704780, 48.8405480 9.1604220, 48.8656689 10.1073633, 48.9597741 9.6418802, 48.9670000 9.8265170, 47.8851016 10.0405843, 47.7527287 9.9064274, 48.6993800 9.6425167, 49.3542656 9.1037485, 48.7636630 9.1698862, 49.4060911 9.2520921, 49.5475739 8.6743037, 49.5491434 8.6737980, 48.7837874 9.2334093, 48.7886039 9.2237877, 48.7928365 9.2176067, 48.7974690 9.2131843, 49.4702609 8.5115350, 49.4281658 9.4267079, 48.0522907 8.2062352, 48.8100521 9.1499136, 49.7439151 9.5589060, 48.7486330 9.1682769, 48.8264999 9.2091583, 48.8308063 9.3219963, 48.9430187 8.3660857, 48.9431328 8.3655939, 48.8244955 8.2075570, 48.8356102 8.2236478, 48.8357875 8.2232148, 48.8652450 8.2485294, 48.8093502 8.1833565, 48.7386040 8.1153999, 48.7386928 8.1160895, 48.7534464 8.1298274, 48.7645851 8.1376317, 48.7747067 8.1438554, 48.7868830 8.1531499, 49.3886195 8.5856266, 49.3909552 8.5818014, 49.4458495 9.0040694, 49.4386947 8.8995958, 48.9974096 8.4856216, 48.9974443 8.4856756, 49.4647920 8.9725475, 48.8261898 9.3037368, 47.6811021 9.9977945, 48.7478387 9.2078880, 48.7784464 9.1778161, 48.9083491 9.1834889, 47.9098730 7.5900636, 48.4623549 9.9269456, 48.4621257 9.9264800, 48.4696794 9.9037837, 49.2347850 9.0786324, 48.7515723 9.1890861, 48.6968449 9.1425551, 48.7548644 9.1747974, 48.7935238 9.2185622, 48.7959018 9.2162765, 48.7413541 9.2185881, 48.4465865 9.4558156, 48.4111046 9.4979143, 49.3334014 8.5097343, 49.0105041 8.4146360, 49.0136283 8.4193128, 49.0137164 8.4162490, 49.4128823 8.5434598, 49.0109913 8.4155885, 49.2427424 8.8803727 +49.4132139 8.7078103 +0130797930, 0130797930 +48.8464568 2.3019875 +50.7845493 12.9693390, 47.5014106 10.3741398, 48.7738247 8.3968670, 48.6777285 10.3724619, 49.2155957 13.0701918, 50.1022112 11.5063601, 50.9741582 13.5289074, 50.7002172 10.8533421, 48.0080377 10.5755499, 50.0617279 10.1762545, 48.3903954 10.6051072, 48.6993476 8.3743581, 49.3851332 8.9613489, 49.5025175 11.1364960, 51.2529891 9.3617667, 51.7063821 10.4261757, 51.2515903 8.2197113, 49.7286315 8.6193669, 49.7304565 8.6310725, 51.1804457 8.3033589, 47.5032019 10.2854305, 47.7970706 13.1718349, 52.1056957 8.0912795, 50.7255348 12.9291071, 47.9843646 10.1173876, 48.6182669 10.1734458, 51.8499847 6.6582050, 51.1925543 9.5948506, 48.0193889 8.0275174, 49.0175351 10.9911323, 48.0084774 10.1365721, 47.8895031 10.1163910, 51.3238984 9.4283577, 48.5920105 10.5062766, 48.8940562 11.2651928, 51.3354919 9.3485173, 48.7984756 8.6311333, 49.4097189 8.8375468, 50.4215999 7.8020867, 50.5711077 9.9582817, 48.7980358 9.7859245, 49.9913425 11.2941803, 50.4019838 7.6126956, 49.5933853 6.5682641, 48.3534370 8.0586805, 48.3591019 8.0600870, 48.3596294 8.0677517, 52.6426244 11.2608256, 49.9260060 12.1282732, 48.5277596 10.7029488, 50.5065572 12.6609539, 47.6935262 11.9678034, 48.7996661 8.7327044, 49.2741386 6.8090502, 51.0153548 14.2040604, 47.5611101 10.6437624, 52.3975951 8.1435252, 49.2992167 7.1079229, 50.9178977 10.3962706, 50.6830850 13.4929995, 51.2828194 9.9512860, 52.5079099 11.4131979, 47.9027913 8.3005470, 49.3963563 9.9171478, 49.5361770 6.8382672, 51.3337172 7.8836731, 49.9266990 10.2653275, 49.5616303 6.8014011, 49.6285415 10.5332637, 47.9361359 12.7373579, 47.9484000 11.1097522, 49.3213845 6.8413682, 49.4316320 9.1391781, 51.6314483 10.4514942, 47.2646095 9.6368775, 48.5725922 10.4763942, 48.5674020 10.4829533, 51.3103167 9.6884240, 49.4785048 7.6526559, 50.3730857 9.0880057, 47.9463857 8.5571572, 49.1992663 7.2163223, 47.9390764 12.7478297, 50.7046860 13.4311840, 50.6382594 6.4692494, 50.1313993 11.9188380, 51.6256467 9.0094436, 51.8286843 7.0574287, 48.6868704 9.6243615, 51.3805536 10.1388920, 50.9109968 14.1854926, 51.8302960 10.8613467, 49.3137534 12.1775722, 48.8948383 11.1815356, 50.8638101 13.1142074, 49.3827436 7.6390706, 47.9739852 10.2714937, 52.6290991 11.2581067, 49.1552157 11.0219389, 48.7902547 8.6918493, 47.9326526 10.0774744, 50.1848366 6.8330381, 49.7549336 11.5407974, 51.6354535 8.3562462, 47.8600630 12.6361175, 49.3647953 6.8329675, 52.1580117 8.0603797, 51.7347953 9.3514045, 50.1103949 10.9918887, 48.4982011 10.5580156, 48.9013892 9.4771220, 47.9958435 10.7766535, 50.6281873 10.8680941, 48.5676305 10.4320201, 51.9249469 9.6335307, 48.4136193 7.9694235, 51.3135848 9.4082816, 50.7484294 8.5011041, 50.7539239 8.4853220, 50.7463737 8.5332553, 51.3108035 9.4064405, 50.7695140 10.7276872, 51.2450070 9.1415457, 49.8355344 9.8688195, 48.9244455 13.3518732, 47.9137105 8.3735171, 49.6389615 8.1651032, 50.8512599 10.5598477, 51.8289193 10.2899924, 47.7697491 9.1514043, 47.7687273 9.1502396, 50.7504214 8.4825010, 50.7493681 8.5010595, 48.4132680 9.7999930, 48.1046981 10.2563944, 48.9093094 13.1829338, 49.3984400 6.8881777, 49.5588204 6.7532986, 50.8582546 14.6539415, 48.3818243 8.1228253, 49.6919201 11.3433567, 49.2896319 10.5959462, 48.8815639 12.5434759, 48.1146834 7.8250671, 48.0147467 8.0996197, 48.9355345 10.9744644, 48.9621835 10.9172337, 47.5467288 13.3356199, 50.2107810 9.3721569, 49.7856567 6.8428505, 50.0294885 7.1488587, 47.5754164 10.5541228, 47.3136490 8.3172063, 47.9327191 10.0773907, 52.8666323 9.6960292, 47.3350487 13.3001475, 50.1812968 8.7373497, 49.5395430 8.6801667, 48.4084760 10.7695766, 47.8926793 8.3961414, 47.6910518 9.8364038, 51.9358901 9.6701415, 51.3368181 8.4875303, 49.4473400 7.3863497, 47.3634779 13.7750511, 48.5340871 8.3981222, 47.1694563 13.0951559, 47.1684037 13.0929452, 47.4321039 13.7881243, 53.3375572 13.4321907, 53.3374732 13.4321916, 50.6501128 12.6794381, 47.9309473 10.2938390, 47.9406994 10.2883570, 47.9490249 10.1165528, 49.4641530 9.0981759, 51.2943248 9.4083870, 53.3533275 13.4342019, 50.6158826 12.8360375, 49.2529786 7.1764010, 47.3789731 9.9110244, 48.0700006 10.1510891, 50.6501874 7.9639487, 49.6298126 7.8909909, 51.3139511 9.4226191, 51.3067989 8.2957570, 50.0383962 7.1356201, 48.7755214 8.6237585, 47.9308134 10.3105348, 52.1946467 8.0101453, 52.1902518 7.9950725, 52.1883575 7.9824983, 52.1881470 7.9610835, 51.2484249 9.9986787, 51.3375171 8.4967543, 47.8765392 8.7721593, 51.0153051 14.2040693, 50.0167135 12.0192574, 50.6367720 12.9419800, 48.5762777 8.1230756, 48.2897211 10.4993810, 47.7207968 11.7236496, 51.2541389 8.3079036, 50.1034685 8.9104107, 47.4421784 9.8942707, 51.2012799 8.3104106, 48.4155305 9.7930565, 49.3336971 7.9828768, 47.6434887 11.7478323, 47.5518326 9.6884708, 49.5209824 6.8678898, 47.1332370 13.2904840, 48.5900573 8.3722639, 49.9178992 6.9683217, 48.2361443 10.3633172, 48.9241922 13.3519994, 50.7375185 8.3168634, 49.2666076 12.5355498, 49.2745300 6.6888200, 49.2462514 7.4278231, 51.2733284 8.1415692, 47.3374470 13.1986837, 47.4215868 9.3867108, 51.3392725 8.4403656, 49.2997595 10.4045006, 47.9055899 12.5202426, 47.5298794 14.6086718, 47.2742762 12.4784646, 48.0760914 10.2020876, 47.7050093 14.1576140, 48.0114965 10.2666029, 48.0864882 10.2639856, 48.8827526 12.5396264, 52.2837587 8.2467788, 51.3604613 8.5319132, 47.6125332 10.1941601, 49.1657649 8.7151540, 49.1657674 8.7140641, 49.1660184 8.7127148, 51.3153208 8.4892253, 51.7804301 8.8216087, 51.6277426 8.7606771, 47.9372608 10.3184442, 48.7451306 11.3852209, 48.8972257 11.6516306, 51.2762262 9.9796499, 48.6305058 10.6551710, 49.9773436 11.3043585, 48.8729843 11.0221664, 47.4825614 9.6964201, 51.9382442 9.9035770, 49.7698416 11.4286815, 48.0557707 10.4964146, 47.6059316 12.9006846, 50.7335877 12.9491720, 49.2585379 7.2490504, 51.1123402 8.2111422, 47.9393673 10.2935260, 48.3213020 10.0542151, 50.4650847 12.9830888, 47.4646405 9.7872120, 47.4893694 13.1725129, 51.6399038 10.3901193, 50.6525162 7.9525539, 50.6545143 7.9464009, 47.7060672 10.6179556, 49.9121185 7.5110914, 47.7766395 8.0220588, 47.9583588 8.3809406, 51.9412963 8.7431682, 49.2517777 8.9480259, 51.8496344 10.3373047, 49.7035932 11.2603417, 50.8294849 14.7602853, 51.2689559 8.2454305, 50.8410802 14.7451889, 47.5115592 10.4594525, 47.7532324 12.6599970, 50.4190567 10.3004818, 47.2996029 9.6430071, 52.0667361 10.0116096, 48.7611376 8.2642293, 47.9118916 9.7589630, 51.5988370 8.7849678, 47.8442573 7.9236857, 49.2712181 7.2773807, 47.5742295 10.2926153, 46.9894234 13.1714778, 51.9280554 9.6060190, 47.6021858 10.6829561, 47.4961166 11.1149296, 51.9621858 7.6250374, 51.8488789 13.7100113, 48.1193798 12.1288105, 48.1639390 9.4691256, 49.4645001 8.1716024, 50.9719990 8.1179471, 48.0086763 10.1367496, 47.8471467 12.7806681, 51.3725331 8.1569873, 51.8514030 10.3372339, 51.0785726 9.5379794, 50.0219170 9.3914105, 47.7264860 12.8809342, 48.6611499 10.8081713, 51.1933369 8.4044653, 50.9719784 8.1178500, 50.3197990 9.4154119, 50.3197373 9.4156480, 47.7333986 12.8646865, 49.1494001 7.7844355, 49.9593803 7.0113643, 50.0095526 12.2842385, 48.0154289 8.0924791, 50.3414058 7.6867045, 52.6089336 7.7265951, 51.0003960 8.5312576, 50.8842938 14.1955888, 50.2780113 6.7358968, 51.5254665 8.6653175, 51.2804445 9.9551987, 51.2598746 9.9675615, 47.8910982 8.4212496, 48.1903954 7.9447028, 48.1585160 8.1982855, 48.6198021 10.1541726, 47.8533516 12.3354213, 49.2551795 9.0827995, 48.6250375 12.4327898, 47.3792894 11.2831950, 48.1422074 8.4140207, 48.0367178 10.4871515, 48.0421392 10.4935961, 50.8601436 9.6836478, 47.5832475 9.8504383, 49.4704945 6.3965575, 46.8804332 8.0226908, 46.8804370 8.0233068, 47.6041983 12.9874531, 47.7172464 12.8963812, 50.0816062 8.4627128, 47.5280472 9.9247029, 47.4806399 10.4082724, 49.4950862 9.9380833, 47.4713853 14.9690760, 51.1871486 8.4322962, 51.0964808 9.2227357, 49.7317894 10.5921377, 51.6583096 10.4560095, 51.7290818 10.6044900, 50.1947448 10.0761756, 48.4927768 8.4923581, 51.1062606 9.2311987, 51.3302545 8.4633188, 50.6275620 10.8729953, 50.2281108 11.4329003, 49.3926070 9.6447908, 49.4265355 9.7017327, 48.4152294 10.1376339, 51.4968839 7.4813753, 48.9996818 11.3859722, 47.9826480 10.5729003, 51.8228615 10.2712538, 50.0259628 9.7924497, 49.5809079 9.5715529, 49.5693104 8.1570146, 49.8105904 9.4436158, 48.9393008 11.3988658, 49.5164097 7.9353798, 49.7478357 12.2064844, 48.4991094 10.1238754, 47.1623378 8.0006621, 47.2961490 13.0483745, 50.6255228 10.8529629, 48.1379424 8.4143296, 48.1403910 8.4180601, 51.1948310 8.5266259, 49.0525578 11.0492239, 47.9426420 10.3969885, 48.0041086 10.5985786, 50.5411908 12.5872448, 50.4036131 12.5057073, 47.0489092 9.4396399, 50.6919809 12.8485188, 49.2989574 7.1694297, 49.1852416 8.0114114, 48.2565702 10.6081122, 51.2417795 8.5670214, 47.7186559 12.7712734, 51.4903611 9.0992247, 50.5036193 12.6255466, 47.2497057 9.6765123, 52.6867584 13.2757848, 50.9258130 8.7699814, 48.0401618 10.1487963, 50.8538039 10.5777206, 51.1921907 8.5145493, 51.1964705 8.5338380, 51.3566538 8.4190028, 47.7883546 7.8867113, 47.8192543 7.9372416, 47.4061593 10.2740108, 47.6365013 10.1257889, 47.8625352 12.6473214, 51.8959097 8.9840585, 51.3052080 7.9497210, 47.6799496 12.4690938, 49.5128279 7.9827533, 47.4371922 11.2551267, 51.8341169 9.4556354, 50.0078438 11.9511471, 51.1158397 8.6785436, 51.2288212 8.3944131, 50.7722414 8.5720168, 50.2439086 9.4786147, 51.4043203 9.1383433, 48.4104811 8.4464352, 47.7477107 8.1437423, 50.7680089 8.2416031, 51.3253162 9.2089124, 50.8987462 11.2884196, 47.7990844 8.0413427, 48.3973589 9.9884866, 51.2861235 8.6220473, 51.2945992 7.9920187, 48.6740294 10.8726810, 47.4943769 10.2531889, 47.9307984 8.4413179, 48.7719860 13.7535191, 50.9255133 8.4124079, 50.7852942 10.5999533, 51.1588512 8.4635500, 52.5147842 7.8339085, 50.6404025 13.3448419, 50.6287114 12.9070195, 49.9996088 7.1219217, 50.6255840 12.9138001, 48.5483252 9.8940525, 52.6199668 11.2506535, 52.6865901 7.3069370, 49.3433337 6.6707095, 47.4039781 10.2837892, 51.4317775 8.0051029, 47.5289729 11.1274227, 50.7406192 8.6943029, 51.3659049 8.5226805, 48.3513708 8.2185517, 50.4153003 12.9508426, 48.1927390 12.8770891, 51.5143945 8.7037891, 48.9923438 9.5834659, 49.1888060 12.9709429, 49.1646437 12.9888413, 46.8985457 8.6176972, 47.2864968 9.4290326, 46.8113231 11.8459009, 49.8995732 9.3016900, 48.6893404 10.3627886, 52.0779250 9.5524768, 51.1943743 8.9423500, 48.3642458 8.0891916, 47.7284589 12.8811431, 47.4975579 12.6092379, 52.5692141 14.0738244, 49.1683287 7.8470060, 48.2939890 14.5977551, 51.2064734 11.5812473, 51.2063138 11.5799840, 48.3458830 8.0859782, 47.9391754 8.2020107, 49.0164479 13.2295677, 47.7597802 8.1278152, 48.8260050 12.9715464, 48.6249780 12.4328710, 48.0188998 10.5581274, 46.6556792 10.9930825, 47.5675767 7.9419188, 47.5019782 10.3553140, 49.5088846 11.4334861, 51.9488415 9.7330144, 51.6362789 10.4892947, 46.2801285 11.3590249, 49.4305869 8.9567249, 52.2540192 9.2162232, 49.8146244 11.2261768, 50.2623255 9.4128183, 49.6506892 8.1181405, 50.1036567 8.1602920, 48.6633880 10.1908646, 48.3927200 10.6761798, 50.1314626 9.4062909, 51.2005941 8.9706482, 48.0056773 8.0960344, 51.1858520 10.1642023, 49.4317320 11.4150205, 48.4897707 8.5591360, 50.9201638 7.1400894, 51.6778668 8.9821157, 51.6759414 8.9949394, 51.2991342 9.0688504, 49.6961416 11.6393874, 49.7405109 8.6328882, 51.9092119 9.1642335, 47.5635693 10.6852885, 48.6160031 8.1873011, 47.8038253 10.8955833, 49.8453267 9.2389619, 49.5460845 10.0575750, 49.5507016 6.7870365, 49.3960814 9.1768621, 47.8262394 10.0356855, 51.3169729 9.1530656, 47.8381408 11.1488347, 48.7217594 13.6393943, 48.4962791 9.3735571, 48.9994381 9.1533097, 49.5760212 10.6046180, 51.6912115 7.8472883, 47.7128075 9.0699315, 50.5320778 12.6234349, 49.6549386 8.9151891, 49.6279241 8.8602404, 49.6137440 8.8664132, 49.6137065 8.8461919, 49.7018079 9.0477519, 50.1035730 8.1602882, 50.5938166 8.5861484, 51.3857583 8.4213811, 48.7178768 9.0113345, 47.7223242 10.3299100, 52.7315490 10.6152826, 48.6671826 8.7536465, 48.6157273 12.3486004, 50.6324906 10.8634830, 49.7523963 6.9853881, 49.7079313 7.9990526, 52.0897217 8.7533704, 48.7537246 8.3821274, 49.8047554 6.7658173, 48.9350339 9.4746822, 49.3959670 9.1776257, 51.9004257 6.8571377, 51.8108688 6.9020676, 47.6038177 9.8783132, 47.7316259 12.0925700, 49.5027991 10.7824989, 47.8895952 8.2818236, 49.2933247 11.4630304, 48.3523171 10.7762465, 48.3523477 10.7763485, 50.0068338 9.5974059, 48.6893712 10.1573372, 49.6453957 8.7913997, 49.0694997 12.8655791, 48.4771801 10.6053086, 50.5458213 8.9886715, 48.4564777 11.1404221, 48.0895856 7.9581293, 49.6527794 8.8451514, 48.4293255 8.2133383, 50.5611569 6.7677013, 51.2371514 8.3987213, 49.5884704 12.4206669, 47.6132281 10.7981792, 48.0394843 10.8780567, 49.4806598 11.4951293, 47.6040271 9.8944761, 47.5735240 9.8441909, 47.6306503 10.5041218, 47.6312359 9.8973950, 47.5408814 9.8637451, 47.7616888 12.8912370, 51.4074441 9.1838925, 48.9301772 12.0369723, 52.2225157 7.8114611, 51.2288200 8.3944123, 49.9402315 7.4288560, 48.2219206 10.5973482, 49.1128004 13.0219746, 48.7585786 8.1904562, 48.6014999 12.3182392, 47.8577727 12.3610113, 50.5421611 7.1348807, 51.9981002 6.9220795, 49.8105528 8.9130039, 48.2461973 10.3894401, 49.2322984 10.5954157, 48.1200706 11.5077312, 50.3584782 8.4015959, 51.6562308 9.8194870, 49.5624362 11.3365580, 51.2966302 11.7802673, 53.6272058 10.6948250, 48.2435577 10.0536928, 51.2899052 8.3076362, 49.9394584 11.4790695, 48.4156584 10.8162000, 51.3449375 6.3389344, 47.8547231 12.1289934, 48.2729420 8.0870455, 47.8019031 12.4118954, 47.4023351 11.6163280, 50.6216460 9.5047147, 51.0159756 13.7479054, 50.9715673 13.5551396, 47.9978586 11.3332591, 48.9593956 12.9189736, 48.2918731 8.1268765, 50.4464159 9.9242287, 52.1966270 9.4712398, 47.6411495 10.4550362, 47.6462099 10.4566613, 51.2797127 8.9297642, 50.5902503 8.9624628, 47.8612595 7.7784063, 47.6407824 10.4342267, 49.5042539 8.4830940, 47.6212793 10.4971953, 51.2958579 8.1734603, 51.2958030 8.1735814, 51.4314824 9.5293490, 51.3696286 8.5669470, 50.8141632 10.3592811, 49.5119964 10.4132545, 50.0713915 9.4660803, 49.8494983 9.6201555, 50.7705328 7.2745818, 47.9430571 10.3889975, 47.9310669 10.2225351, 51.8620384 10.3322992, 51.2774404 8.1856823, 50.7244498 13.0333163, 51.2840851 8.1594909, 50.2402378 9.5896170, 51.0013711 9.5487655, 48.4059749 10.0144103, 48.1754669 8.0675242, 50.6452897 12.9880457, 50.2188079 9.3528353, 50.2966088 8.2714589, 50.2968297 8.2734301, 50.5970041 12.7328914, 50.6913320 9.7298060, 47.5799805 14.4638952, 52.4307186 9.5967431, 51.2197645 8.2644908, 50.3138567 10.2246266, 48.2566157 9.2101476, 51.0473728 9.1819116, 48.3386581 8.0701200, 49.9709471 9.2024250, 49.1894853 9.2421012, 47.6837946 7.8850679, 48.3525786 9.9620890, 51.8129191 10.2289297, 48.3268088 8.0608008, 49.5313512 8.5255077, 52.3062548 7.7711045, 51.0749629 8.3902719, 48.7982812 9.4607028, 49.3168893 8.4285929, 48.7406361 9.7833664, 50.5417933 9.9833612, 47.8982201 12.2984808, 47.7608202 13.0648672, 51.3010142 8.5062525, 49.0708365 13.1003721, 48.0475948 11.5156035, 51.6568849 9.3738131, 51.6255149 9.5254950, 49.7941344 7.1332843, 51.2615454 11.3964501, 49.5583360 11.6606533, 48.9968181 12.8846620, 48.3779164 8.5137725, 47.7702800 12.2182663, 50.4522195 9.9195133, 49.7366046 8.6285395, 47.4455992 10.2423754, 47.5746718 10.4535435, 50.3020031 9.7505012, 50.8676816 10.5100470, 51.1873624 9.3954275, 47.5406289 12.3190386, 48.0180309 8.1714687, 47.7724035 8.2604104, 47.6818623 12.2599565, 53.6585617 7.7209148, 50.5522546 9.0118726, 51.5396866 8.9095090, 49.3752267 10.1786311, 47.9978603 10.3025517, 47.9802557 8.0112237, 48.5147418 8.7087714, 50.0131070 9.3337049, 49.7436449 9.3239156, 52.3177208 11.3413670, 50.1095970 11.6223331, 48.8433800 9.3105506, 48.9105220 9.2147235, 48.0020328 10.5790220, 47.7635281 11.5458466, 48.7739425 9.1135726, 49.2384346 9.0966096, 51.0014715 9.0973997, 52.5692049 14.0738589, 48.3302539 9.8728164, 49.2807866 10.2553026, 50.7295412 13.5575861, 47.8174088 9.3128808, 47.8255821 8.1838270, 47.8118008 8.2127957, 50.1701950 8.5099924, 48.8462589 12.9554048, 48.8433766 13.1319319, 49.8175788 6.8868082, 47.5758800 12.4813668, 48.0557630 10.4964252, 51.3194751 8.6387163, 51.9866954 9.2490028, 48.7451788 11.3852025, 47.7475738 8.3124842, 48.8020281 13.5408359, 50.5375612 12.9453332, 47.2340839 11.2754770, 48.2615816 12.4140909, 49.5343316 11.8084686, 47.3474930 7.7702373, 51.0544157 12.7870396, 49.0534907 9.2506130, 48.0457597 8.9650957, 49.3913303 11.9070144, 50.5375780 12.5736557, 49.0992354 7.9873224, 47.4098163 9.7306385, 53.7803634 11.0512447, 49.9917489 11.8061110, 49.9947185 11.8339941, 49.9722981 11.8176959, 49.9872820 11.7900350, 49.0425203 10.5176304, 51.2620073 8.5392983, 51.2621737 8.5395416, 51.2621484 8.5397150, 49.9635353 11.8438723, 51.4827555 9.0942141, 51.1923394 11.5824953, 50.3936904 7.1715848, 46.8806955 8.0227983, 47.5769672 10.6270444, 51.1949866 8.0571679, 51.7263609 9.4052651, 47.4934675 11.0622534, 51.9723690 7.2916421, 51.3443157 7.4183754, 51.5238945 8.5123372, 50.8502957 14.6865355, 47.5627505 12.7073519, 51.7247974 10.6167313, 51.7216227 10.5996773, 47.5078852 10.5239410, 47.0795245 10.6443627, 47.0821799 10.6510280, 50.7100147 10.8197691, 50.0583431 7.5748002, 47.8150978 10.5331718, 51.0703330 9.2142243, 47.1959870 11.1497789, 47.6454969 10.6632008, 52.0974054 8.7564006, 50.0510513 7.6093093, 51.1336776 11.7201869, 47.9932351 10.1808993, 50.2311962 9.1464971, 49.3601892 7.0454970, 51.5713977 9.5912591, 50.7624719 13.7515802, 51.9198554 8.8321440, 51.7153064 7.2287249, 47.5283877 12.2492679, 50.9800432 13.5341497, 51.8294386 9.8878994, 47.4724030 11.0283593, 48.0035652 10.6485070, 49.4981118 7.7797175, 49.4115182 6.7837869, 50.0121181 7.0613029, 50.6204557 6.9345626, 49.9353648 6.9936567, 48.5486337 9.3685459, 51.6288247 10.4732544, 50.0717968 8.6802477, 51.7767623 7.9191788, 48.4310231 8.0038231, 52.1080173 8.1655543, 48.9883891 9.4308441, 51.6861747 8.5654357, 48.4003447 8.6762456, 48.4240979 7.9823720, 49.3909555 12.7260394, 47.4535665 14.0013813, 50.5664935 11.1227796, 49.4073710 6.7996331, 49.5810077 9.5713195, 47.9012589 12.2978911, 49.5241340 6.7181635, 51.1262284 8.2397062, 50.4906548 9.8786992, 51.2280058 8.4941148, 47.9828817 10.1920921, 51.1751283 8.4279202, 51.1751575 8.4278612, 50.9496923 9.8185936, 51.1754737 9.0470681, 47.7900486 8.0446410, 50.0258163 9.7932018, 52.6222125 10.0855847, 48.2556895 10.6516057, 50.7897183 10.6333297, 52.1470842 7.9734751, 49.1299618 13.0521460, 49.3386521 10.3154384, 49.0253526 9.3474607, 50.7550956 8.5095608, 49.4077188 7.0083680, 48.8108495 13.5439386, 50.7520705 8.4961832, 50.7523693 8.4608571, 50.7679860 8.4982126, 50.7455495 8.4709159, 51.9472667 8.6888898, 48.7846128 9.9765580, 47.6057830 12.9844802, 49.8971837 6.9397113, 48.6913086 8.3366279, 48.9013255 13.4243197, 47.7760589 12.0079629, 47.7976510 8.1718316, 49.8368723 8.9755670, 47.7285758 12.9392989, 49.3340281 7.3759305, 47.3594260 10.1737701, 47.3553064 10.1932949, 53.6777494 7.4823813, 47.8013773 8.0345662, 48.0203082 10.2442504, 50.5843613 9.8402285, 49.7700216 11.4289960, 50.6462840 8.3474885, 49.6097391 8.1801402, 47.9768942 10.6281238, 47.7500930 12.9499562, 49.9145481 9.2160267, 50.0443000 11.8231837, 49.9802701 11.9221269, 49.9955169 11.7800846, 50.0519478 11.6775574, 49.8667470 11.1646519, 50.1072817 11.8790663, 49.7830793 11.3334409, 48.4395072 13.0826443, 51.2779463 7.9861115, 50.1256189 10.1313546, 49.6007161 9.3435208, 48.8151135 13.7653240, 48.0190807 10.1726097, 47.9856751 10.2040927, 51.3334497 8.5572326, 49.0963089 11.8094655, 46.6128056 10.6045373, 49.2443279 7.1434729, 47.2324518 11.4293225, 47.2769276 11.4205532, 47.0461487 10.8638400, 47.9330263 10.2624844, 47.9690000 13.1065027, 49.2447426 7.3948252, 51.6299762 10.4748973, 49.3538986 6.7232282, 46.6685502 10.5906600, 51.3186211 8.4805828, 49.4861154 10.7297386, 52.8590509 10.4197833, 47.8233519 8.0703411, 50.0741701 8.0981354, 47.7063685 10.0288023, 47.5747295 9.8524033, 49.4060621 10.7823605, 49.2340896 9.1566463, 51.1880629 10.1910892, 48.7379075 10.1133835, 47.6943019 10.0402156, 48.9564130 9.2641724, 49.2564635 9.1221015, 50.0066389 11.7734050, 51.2938812 8.0514986, 48.9459262 9.5636700, 48.1654889 7.7997916, 51.9218027 7.8381730, 51.4727638 8.4601538, 51.2949076 8.6957620, 49.1647182 7.8159188, 49.1568234 7.7780912, 47.4027540 9.8852417, 48.7013065 14.8848818, 49.5994980 9.4179066, 48.3970403 8.7620317, 48.4773041 8.6227219, 50.3223226 7.5684918, 48.0809931 15.1547483, 52.2132627 7.8852864, 48.2240379 10.3031372, 49.5525178 6.7379083, 49.6136251 6.9745249, 47.7374482 10.7741528, 48.2267463 8.9665133, 50.2642733 10.0788816, 49.2043471 13.0609345, 47.7579041 8.1669115, 48.0352588 8.4033268, 51.6799877 12.7254165, 47.5680063 7.9416293, 51.1636393 8.4499084, 48.4791441 8.1640587, 48.5242996 8.1155071, 48.3173298 8.2141077, 48.3454845 8.2237869, 48.8898925 13.3035108, 49.6543268 6.8131279, 48.1036947 11.4222681, 48.1686100 11.4115226, 48.3014559 8.2303014, 48.6237175 8.5239961, 49.1927661 12.4935231, 49.1927341 12.4934823, 47.3642034 8.5643273, 47.8126080 12.8509665, 51.5074467 8.7095290, 47.5782020 12.6793930, 48.5834305 10.2269247, 47.5802250 10.5552297, 48.3276356 8.2840221, 51.8263225 14.1381792, 50.1627120 9.4937717, 47.6623446 9.3463814, 49.7078547 10.2806968, 48.8308785 10.8492300, 47.6882713 11.9856841, 47.5717347 11.1001508, 47.6634889 12.0164099, 47.1307720 10.9300871, 47.6761575 12.0186201, 47.2598629 10.7807654, 48.1469982 11.3080154, 48.1908536 11.3730150, 48.1761790 11.2539173, 48.1998931 11.3825777, 48.1528490 11.3485040, 48.1764730 11.3202898, 48.1762762 11.3691364, 47.8115092 12.9378081, 49.0590274 8.9229620, 48.0702857 11.6204899, 48.2139497 8.1401679, 49.4489664 6.8314358, 49.6276094 8.8686530, 48.1978812 10.3855880, 47.9049413 8.1007111, 48.9589624 10.6092404, 50.0406473 10.2423211, 47.6660532 12.1694257, 48.1026440 8.7421923, 48.2951482 8.8861451, 48.6672456 8.4724564, 52.8944883 8.4412621, 47.4998542 10.3821081, 48.0496936 10.3527447, 47.9801930 10.3075585, 48.9815868 10.7156493, 48.0927654 7.6735003, 51.9284593 9.6385281, 52.4166944 10.7782241, 49.7144905 6.8303101, 48.0274111 12.1806412, 51.2125991 11.5256636, 49.7799149 11.1916122, 47.4029137 11.9629019, 49.6047002 7.8715883, 49.5036209 11.7356849, 48.7806668 10.5758396, 47.7856424 7.8974304, 51.3575929 8.8123270, 48.4185453 8.3288518, 51.3086589 9.8073244, 53.9125087 9.8847356, 47.7911104 12.9523283, 48.2705533 10.8801367, 51.2320558 8.9974118, 48.2599677 10.7779096, 51.3786302 9.3562683, 48.5369133 8.3553043, 51.2265023 8.4777816, 51.7340097 9.1852184, 51.0532668 9.0681824, 51.0382555 9.0479016, 47.8694699 10.1791984, 48.1979040 11.4561217, 47.5437268 10.4301689, 47.5690093 10.7578398, 49.8482698 7.5466421, 50.3331193 10.7643931, 50.3331281 10.7644796, 50.8366092 10.4718791, 48.8152830 13.7651818, 50.0190040 9.4462722, 46.5521417 11.1785309, 49.0751418 12.8920722, 48.8836319 13.0434841, 51.5125149 8.6833846, 50.3691869 7.0795623, 51.9166108 9.6519094, 49.9943643 10.2529286, 48.0888328 9.2112898, 49.0753784 9.4458452, 50.9318884 8.5462978, 47.6572609 11.5075971, 49.0924010 10.0057002, 47.5679810 7.9417979, 48.5090663 8.3651665, 49.5136347 9.6936765, 48.1893354 7.7805915, 49.1130111 13.1392759, 47.4903620 9.6867622, 49.5089117 11.4335044, 48.8884649 9.8662607, 47.8760259 12.6418139, 47.8759685 12.6418570, 48.0257609 12.5443111, 52.1264247 8.8810345, 48.2441668 12.5248987, 46.9485271 11.8700346, 48.2430200 12.5373585, 49.1500888 7.7718279, 47.5795854 12.1781639, 47.7251159 11.9623576, 48.8812120 13.4743978, 50.7699159 7.2755370, 47.9451094 12.2736113, 47.9963541 10.5795671, 48.1000855 11.4195958, 50.3555280 7.7628160, 49.6595126 10.3172558, 50.9182992 11.8620903, 48.7233518 10.7587740, 48.3770564 10.9265965, 47.4214771 14.9878480, 48.8072496 9.3950203, 45.8787973 11.0190706 +5 +yes +no +Naturalia, Naturalia, Naturalia Crussol, Biocoop, Naturalia, Canal Bio, Bio C' Bon, Le retour à la Terre - Rive Gauche, Naturalia, Les Nouveaux Robinson, Bio c'Bon, Pimlico, Biocoop Grenelle, Naturalia, Biocoop, Bio c'Bon, Retour à la Terre, Naturalia, Bio c' Bon, Bio c'Bon, Naturalia, Bio Génération, Bio c' Bon, Welcome Bio, Carrefour bio, Naturalia, Naturalia, Bio c bon, Naturalia, Biocoop, La Vie claire, Naturalia, Naturalia, Bio c Bon, Naturalia, Bio c'Bon, Bio c' bon, Naturalia, Holy Planet, Naturalia, Biocoop Belleville en Bio, Biocoop, Naturalia, Bio C'Bon, Bio C Bon, Bio C' Bon, Dada, Naturalia, Biocoop, Naturalia +yes +no +55.9245632 -3.1361606 +no +2, 2 +55.9370396 -3.1787450 +yes +2 +Caiy Stane, Balm Well, Stone, The Buckstane, Fort, Hatton House +55.9427753 -3.2095327, 55.9449849 -3.2070428, 55.9261403 -3.1387050, 55.9021084 -3.2216506, 55.9077375 -3.2604776, 55.9744871 -3.3050579, 55.9605521 -3.2145819, 55.9914354 -3.3985059, 55.9551815 -3.1828752, 55.9905515 -3.3832043, 55.9898776 -3.3947910, 55.9388513 -3.1691562, 55.9501390 -3.1751181, 55.9297052 -3.2086909, 55.9489520 -3.1813494, 55.9210967 -3.2266715, 55.9487114 -3.2851366, 55.9487753 -3.2841900, 55.9487321 -3.2833922, 55.9482056 -3.2747143, 55.9605324 -3.1932010, 55.9349799 -3.1318268, 55.9319057 -3.1277488, 55.9331970 -3.1413489, 55.9031553 -3.1637932, 55.9539250 -3.1094167, 55.9383367 -3.4074644, 55.9560188 -3.3189391, 55.9233331 -3.3622103, 55.9234774 -3.3610087, 55.9670463 -3.3162635, 55.9684981 -3.1418750, 55.9145289 -3.2879909, 55.9262193 -3.2367397, 55.9257251 -3.2379807, 55.9536926 -3.2888163, 55.9462399 -3.2069718, 55.9760698 -3.1951310, 55.9202135 -3.2126749, 55.9225657 -3.2301524, 55.9228577 -3.2291352, 55.9232283 -3.2269378, 55.9914682 -3.3984225, 55.9226414 -3.2544133, 55.9272283 -3.2938863, 55.9503380 -3.2726676, 55.9559652 -3.1503593, 55.9591543 -3.2259572, 55.9590419 -3.2244693, 55.9588991 -3.2258357, 55.9859461 -3.1898643, 55.9864555 -3.1885077, 55.9330884 -3.3083607, 55.9171931 -3.1941869, 55.9281835 -3.2479998, 55.9278363 -3.2486916, 55.9683895 -3.3221102, 55.9520661 -3.2796118, 55.9555827 -3.3904656, 55.9555053 -3.1853840, 55.9466753 -3.2083107, 55.9444973 -3.2038097, 55.9437264 -3.1923238, 55.9849796 -3.1929699, 55.9625359 -3.4034070, 55.9425986 -3.2065382, 55.9407899 -3.1790526, 55.9390017 -3.1784821, 55.9461084 -3.1836449, 55.9528247 -3.2065333, 55.9529149 -3.2065700, 55.9533456 -3.2048532, 55.9075949 -3.4202463, 55.9509478 -3.2066848, 55.9526988 -3.2085257, 55.9527795 -3.2080212, 55.9529409 -3.2077810, 55.9543888 -3.1989928, 55.9548130 -3.1959084, 55.9531961 -3.2032873, 55.9527862 -3.1991610, 55.9550493 -3.1952197, 55.9556549 -3.1915634, 55.9634080 -3.1859429, 55.9635172 -3.1861220, 55.9658499 -3.1878049, 55.9549784 -3.1940904, 55.9543610 -3.1899213, 55.9544361 -3.1900259, 55.9545229 -3.1900939, 55.9517393 -3.2095002, 55.9519739 -3.2095707, 55.9529445 -3.1801566, 55.9538070 -3.1754710, 55.9543079 -3.1742698, 55.9426714 -3.2219762, 55.9427639 -3.2224680, 55.9434140 -3.2224863, 55.9435542 -3.2218583, 55.9400653 -3.2282711, 55.9377290 -3.2266198, 55.9381260 -3.2274794, 55.9384518 -3.2272743, 55.9386936 -3.2277396, 55.9397129 -3.4193561, 55.9381264 -3.4275615, 55.9371685 -3.2220646, 55.9359519 -3.2265085, 55.9434246 -3.2321614, 55.9636700 -3.3778320, 55.9232795 -3.2513290, 55.9347856 -3.2210702, 55.9416253 -3.3132418, 55.9410771 -3.3142794, 55.9699237 -3.2405852, 55.9304103 -3.2469509, 55.9374492 -3.2014688, 55.9482570 -3.2808480, 55.9411313 -3.2167882, 55.9857329 -3.3816698, 55.9394016 -3.1735716, 55.9319966 -3.1799344, 55.9479153 -3.2032909, 55.9148269 -3.2846688, 55.9068623 -3.1327381, 55.9336793 -3.0927075, 55.9166066 -3.3142805, 55.9475115 -3.1893474, 55.9478706 -3.1875187, 55.9367307 -3.4053592, 55.9404588 -3.2944172, 55.9362574 -3.2996459, 55.9696057 -3.2312902, 55.9384326 -3.3172993, 55.9371293 -3.3120269, 55.9358957 -3.3194951, 55.9338970 -3.3122513, 55.9189243 -3.3018114, 55.9253633 -3.2482805, 55.9401130 -3.3149747, 55.9397190 -3.3120155, 55.9016607 -3.2241566, 55.9413015 -3.1014889, 55.9262359 -3.1654883, 55.9578808 -3.1647965, 55.9544821 -3.1426137, 55.9800739 -3.1795567, 55.9821860 -3.1756582, 55.9435294 -3.2654687, 55.9436259 -3.2619723, 55.9690347 -3.1695750, 55.9453813 -3.1852436, 55.9323240 -3.1280801, 55.9325021 -3.1355675, 55.9281227 -3.1237925, 55.9272147 -3.1239385, 55.9225712 -3.1334883, 55.9234297 -3.1370906, 55.9079002 -3.3236956, 55.9314429 -3.2359511, 55.9234755 -3.2477828, 55.9523213 -3.2247362, 55.9505953 -3.2279799, 55.9388330 -3.3562292, 55.9282702 -3.2905058, 55.9328331 -3.3144308, 55.9241972 -3.3791226, 55.9384587 -3.2403692, 55.9895200 -3.3960731, 55.9226662 -3.2254126, 55.9559159 -3.1551037, 55.9396348 -3.1719819, 55.9418587 -3.1505561, 55.9471658 -3.1800476, 55.9510411 -3.1708174, 55.9629095 -3.1702904, 55.9391574 -3.3048858, 55.9211610 -3.1413021, 55.9151416 -3.3259472, 55.9125478 -3.3210336, 55.9127485 -3.3229472, 55.9121677 -3.3242629, 55.9168756 -3.3182175, 55.9030839 -3.3120674, 55.9323493 -3.1390569, 55.9315981 -3.1166385, 55.9280748 -3.1214990, 55.9351070 -3.1380033, 55.9317363 -3.1361908, 55.9318430 -3.1350736, 55.9324368 -3.1361552, 55.9323067 -3.1467718, 55.9222916 -3.1872552, 55.9029473 -3.2042927, 55.9042182 -3.1508526, 55.9187139 -3.1384285, 55.9347851 -3.1178195, 55.9327343 -3.1371524, 55.9310415 -3.1291255, 55.9312532 -3.1311471, 55.9356181 -3.1431581, 55.9366082 -3.1592634, 55.9346063 -3.1287373, 55.9585525 -3.1225664, 55.9390965 -3.1155072, 55.9372934 -3.1427896, 55.9395153 -3.1374061, 55.9391745 -3.1365070, 55.9326082 -3.1048464, 55.9673151 -3.1353973, 55.9167088 -3.3165996, 55.9323197 -3.1071045, 55.9339501 -3.1058170, 55.9338900 -3.1047414, 55.9350618 -3.1024293, 55.9289228 -3.1324182, 55.9094988 -3.1543668, 55.9097262 -3.1417586, 55.9248212 -3.2647912, 55.9773633 -3.2471160, 55.9558401 -3.1172914, 55.9092890 -3.3163751, 55.9275619 -3.2972009, 55.9021546 -3.1682556, 55.9061546 -3.3220260, 55.9116089 -3.3255752, 55.9133830 -3.3215390, 55.9109708 -3.3144538, 55.9109175 -3.3264046, 55.9280288 -3.2881415, 55.9235713 -3.3999101, 55.9893024 -3.3981851, 55.9116987 -3.3152719, 55.9096737 -3.3169570, 55.9156152 -3.3159619, 55.9497651 -3.1780477, 55.9360545 -3.2260184, 55.9162763 -3.2910976, 55.9274994 -3.2148921, 55.9414356 -3.2221759, 55.9422143 -3.1843904, 55.9447507 -3.1796881, 55.9430719 -3.1777209, 55.9446561 -3.1803415, 55.9494277 -3.1775329, 55.9487518 -3.1780877, 55.9485518 -3.1781362, 55.9491775 -3.1780460, 55.9466674 -3.1799160, 55.9467039 -3.1783594, 55.9520666 -3.1782554, 55.9442077 -3.1850195, 55.9611696 -3.2316847, 55.9609929 -3.2342787, 55.9607831 -3.2371118, 55.9615933 -3.2374124, 55.9619320 -3.2374854, 55.9631141 -3.2367935, 55.9634777 -3.2359757, 55.9461010 -3.1869570, 55.9496410 -3.1840791, 55.9518134 -3.1865125, 55.9244139 -3.2659013, 55.9160232 -3.3163210, 55.9156359 -3.3182752, 55.9160984 -3.3183497, 55.9827482 -3.1947966, 55.9820923 -3.1881161, 55.9663647 -3.1958162, 55.9713037 -3.2306913, 55.9211315 -3.1991537, 55.9272727 -3.2235753, 55.9282865 -3.2235682, 55.9226879 -3.2251365, 55.9871580 -3.4033776, 55.9453143 -3.3555656, 55.9465236 -3.3629644, 55.9539125 -3.1587511, 55.8968564 -3.3184286, 55.9600239 -3.1973819, 55.9679377 -3.1728765, 55.9729929 -3.1628209, 55.9239749 -3.1779212, 55.9246612 -3.1815724, 55.9259809 -3.1931356, 55.9276896 -3.1509176, 55.9274521 -3.1503413, 55.9275727 -3.1506409, 55.9254765 -3.1644984, 55.9263987 -3.1628516, 55.9280015 -3.1625220, 55.9283909 -3.2930391, 55.9276860 -3.2951771, 55.9264933 -3.3012131, 55.9447684 -3.1528732, 55.9383947 -3.2562456, 55.9006763 -3.3190467, 55.8607477 -3.3326422, 55.9312615 -3.2941807, 55.8941662 -3.2624173, 55.9334127 -3.2358071, 55.9090922 -3.2239505, 55.9546946 -3.1893677, 55.9519010 -3.2481568, 55.9523635 -3.2486330, 55.9523251 -3.2541631, 55.9430692 -3.2219457, 55.9587913 -3.2420040, 55.9573940 -3.2424916, 55.9588441 -3.2305299, 55.9590153 -3.2322733, 55.9371887 -3.3211797, 55.9381046 -3.3208512, 55.9611769 -3.2425780, 55.9615806 -3.2409418, 55.9613606 -3.2419902, 55.9619750 -3.2400369, 55.9351660 -3.1204578, 55.9355230 -3.1204690, 55.9467379 -3.1966389, 55.9596219 -3.2030610, 55.9776230 -3.2433010, 55.9771738 -3.2430088, 55.9704226 -3.1957989, 55.9703340 -3.1960928, 55.9704287 -3.1964960, 55.9418116 -3.2938190, 55.9409118 -3.2928528, 55.9563797 -3.2090019, 55.9567298 -3.2082704, 55.9556731 -3.1599309, 55.9561097 -3.1678692, 55.9382223 -3.1043918, 55.9401997 -3.1010852, 55.9392618 -3.1041020, 55.9326805 -3.0980239, 55.9332952 -3.0991933, 55.9345875 -3.0954263, 55.9352737 -3.0966452, 55.9347395 -3.0943083, 55.9349364 -3.0950506, 55.9639094 -3.1973365, 55.9338797 -3.4074558, 55.9828555 -3.2257526, 55.9786099 -3.1784394, 55.9394393 -3.2936438, 55.9393840 -3.2949198, 55.9596625 -3.2024027, 55.9669462 -3.1676798, 55.9305761 -3.1559101, 55.9311166 -3.1557491, 55.9333643 -3.3185667, 55.9341121 -3.3187777, 55.9310843 -3.3172397, 55.9324950 -3.3181693, 55.9346695 -3.3189829, 55.9319082 -3.3177126, 55.9359022 -3.2382929, 55.9360694 -3.2391515, 55.9390399 -3.3615802, 55.9805959 -3.1832658, 55.9809445 -3.1749097, 55.9434092 -3.3600497, 55.9437471 -3.3581099, 55.9452797 -3.3600043, 55.9452261 -3.3675496, 55.9370826 -3.1361439, 55.9586837 -3.1836662, 55.9611856 -3.1865315, 55.9901392 -3.3873481, 55.9454748 -3.2133562, 55.9660452 -3.2748274, 55.9664497 -3.2729235, 55.9293562 -3.3014052, 55.9410215 -3.2404052, 55.9437556 -3.2442061, 55.9368200 -3.2236817, 55.9816227 -3.1755092, 55.9598506 -3.2240155, 55.9817826 -3.1942506, 55.9810071 -3.1939768, 55.9811801 -3.1933829, 55.9813044 -3.1938863, 55.9810877 -3.1942030, 55.9811027 -3.1927207, 55.9812693 -3.1942614, 55.9810054 -3.1943069, 55.9810768 -3.1928706, 55.9810233 -3.1925847, 55.9811812 -3.1929615, 55.9809636 -3.1928228, 55.9813691 -3.1941213, 55.9809242 -3.1941406, 55.9812361 -3.1931210, 55.9810750 -3.1933834, 55.9741695 -3.2060915, 55.9109047 -3.2387736, 55.9747193 -3.2135794, 55.9231850 -3.2486394, 55.9374125 -3.4072197, 55.9371945 -3.4058237, 55.9374045 -3.4044434, 55.9637505 -3.2335268, 55.9428585 -3.1864559, 55.9846236 -3.1940314, 55.9221429 -3.1752023, 55.9223399 -3.1759213, 55.9670991 -3.2534481, 55.9718838 -3.2534162, 55.9810691 -3.2383577, 55.8984479 -3.3160297, 55.8985757 -3.3165711, 55.8953678 -3.3130989, 55.9298336 -3.3106553, 55.9382569 -3.1735978, 55.9158853 -3.3230009, 55.9162950 -3.3213724, 55.9364542 -3.2790390, 55.9125969 -3.2367843, 55.9184722 -3.3001516, 55.9257870 -3.2656567, 55.9797109 -3.2996704, 55.9783116 -3.2972235, 55.9122709 -3.3154115, 55.9799121 -3.2416420, 55.9268127 -3.3119797, 55.9345568 -3.1028170, 55.9337360 -3.1016259, 55.9403513 -3.3138800, 55.9306972 -3.3125459, 55.9313178 -3.3099344, 55.9320037 -3.3111775, 55.9326177 -3.3104501, 55.9332898 -3.3118087, 55.9475597 -3.3620450, 55.9319865 -3.3124215, 55.9318662 -3.3137738, 55.9181587 -3.2705015, 55.9342211 -3.1778645, 55.9514047 -3.2207449, 55.9724551 -3.2012809, 55.9778747 -3.1744863, 55.9783944 -3.1773378, 55.9780784 -3.1753297, 55.9782943 -3.1763220, 55.9777295 -3.1734902, 55.9789541 -3.1763230, 55.9051373 -3.2232377, 55.9365959 -3.3331143, 55.9362007 -3.3351286, 55.9360359 -3.3397002, 55.9363751 -3.3340583, 55.9694092 -3.2702934, 55.9416975 -3.1483958, 55.9582905 -3.2794012, 55.9767721 -3.1754685, 55.9766864 -3.1738710, 55.9777295 -3.1642417, 55.9713517 -3.2751363, 55.9716217 -3.2748645, 55.9509109 -3.3040405, 55.9505011 -3.3028322, 55.9517277 -3.3043967, 55.9508168 -3.3035767, 55.9561104 -3.2932448, 55.9489929 -3.2075011, 55.9770963 -3.2560693, 55.9775467 -3.1730925, 55.9767627 -3.1685149, 55.9759609 -3.1666596, 55.9775534 -3.1677038, 55.9384263 -3.2384184, 55.9400215 -3.2835991, 55.9722626 -3.1718229, 55.9724369 -3.1737659, 55.9725956 -3.1724850, 55.9735295 -3.1719581, 55.9422361 -3.2854972, 55.9426182 -3.2848408, 55.9424261 -3.2853919, 55.9397418 -3.2866275, 55.9602875 -3.2957399, 55.9004908 -3.2325152, 55.9425974 -3.2817995, 55.9427324 -3.2894308, 55.9428132 -3.2886637, 55.9428834 -3.2895145, 55.9430576 -3.2887151, 55.9429003 -3.2891706, 55.9421047 -3.2806000, 55.9421878 -3.2816836, 55.9418910 -3.2811010, 55.9382573 -3.1889080, 55.9433390 -3.1786743, 55.9352231 -3.1799086, 55.9354644 -3.1805170, 55.9370560 -3.1808037, 55.9375135 -3.1796069, 55.9372745 -3.1802503, 55.9565920 -3.1172429, 55.9416412 -3.1759641, 55.9411089 -3.1758742, 55.9419221 -3.1751737, 55.9413742 -3.1751322, 55.9421224 -3.1755399, 55.9420435 -3.1759728, 55.9417717 -3.1760016, 55.9412888 -3.1748673, 55.9419213 -3.1762309, 55.9417190 -3.1758050, 55.9416320 -3.1757373, 55.9421785 -3.1756667, 55.9411631 -3.1744380, 55.9420584 -3.1756683, 55.9419621 -3.1753235, 55.9421292 -3.1750657, 55.9415161 -3.1750333, 55.9414662 -3.2429306, 55.9380787 -3.2164916, 55.9740721 -3.2549433, 55.9422902 -3.1878156, 55.9424910 -3.1860227, 55.9322037 -3.2172622, 55.9198429 -3.1330027, 55.9726414 -3.3515240, 55.9235247 -3.1313815, 55.9302056 -3.3085109, 55.9324769 -3.3071758, 55.9305686 -3.3131161, 55.9308765 -3.3117228, 55.9399461 -3.2681429, 55.9554624 -3.2241042, 55.9274642 -3.2135816, 55.9419086 -3.2188990, 55.9483346 -3.2942197, 55.9421518 -3.2052869, 55.9229540 -3.3790829, 55.9287806 -3.2587079, 55.8990484 -3.2377762, 55.9109797 -3.2089126, 55.9419464 -3.1773362, 55.9794270 -3.2989393, 55.9173932 -3.1379231, 55.9763960 -3.1763346, 55.9142301 -3.1341304, 55.9710130 -3.1805984, 55.9134751 -3.1337551, 55.9182561 -3.1989900, 55.9132484 -3.1780898, 55.9646733 -3.1376419, 55.9655572 -3.3178364, 55.9754348 -3.1685187, 55.9819343 -3.1951000, 55.9405416 -3.2928536, 55.9193614 -3.2228522, 55.9191174 -3.2378985, 55.9192124 -3.2367725, 55.8930871 -3.2026884, 55.8907970 -3.2014067, 55.9642325 -3.1552631, 55.8941813 -3.2179019, 55.8935768 -3.2164997, 55.9761891 -3.1670909, 55.9758400 -3.1668709, 55.9431663 -3.2838745, 55.9433798 -3.2860859, 55.9433113 -3.2870890, 55.9190084 -3.1475665, 55.9191946 -3.1484908, 55.9178453 -3.1484828, 55.9806120 -3.1941067, 55.9768582 -3.1715174, 55.9150424 -3.1487433, 55.9308539 -3.2761099, 55.9460257 -3.1970143, 55.9232520 -3.2341444, 55.9506991 -3.1804199, 55.9228372 -3.1787829, 55.9651311 -3.3167567, 55.9339081 -3.2001289, 55.9381722 -3.1723579, 55.9391719 -3.1689528, 55.9405990 -3.1722908, 55.9216518 -3.1782720, 55.9242052 -3.1744113, 55.9212881 -3.1716104, 55.9649792 -3.3131166, 55.9451444 -3.1904630, 55.9416788 -3.1843079, 55.9226382 -3.1721985, 55.9036926 -3.1570111, 55.9382239 -3.2291441, 55.9828789 -3.2415813, 55.9706810 -3.3766476, 55.9635570 -3.2312483, 55.9044775 -3.2067494, 55.9331889 -3.2150781, 55.9227690 -3.3421555, 55.8831023 -3.3393159, 55.8838260 -3.3396672, 55.9336416 -3.2375159, 55.9235691 -3.2868011, 55.9310562 -3.2789944, 55.9077899 -3.3207300, 55.9082800 -3.3196678, 55.9378551 -3.2430479, 55.9342208 -3.2112229, 55.9260946 -3.2833643, 55.9400371 -3.2200755, 55.9557192 -3.1879718, 55.9364788 -3.1804773, 55.9365565 -3.1810260, 55.9337994 -3.2511195, 55.9251847 -3.2668441, 55.9281271 -3.1676775, 55.9131088 -3.1600256, 55.9032628 -3.1558019, 55.9031108 -3.1551269, 55.9351736 -3.2474301, 55.9303412 -3.1688554, 55.9231711 -3.1630255, 55.9251859 -3.2505537, 55.9553468 -3.2876097, 55.9554662 -3.2864616, 55.9340800 -3.2344323, 55.9186700 -3.2386355, 55.9193908 -3.2392334, 55.9181062 -3.2402690, 55.9190442 -3.2405398, 55.9186959 -3.2407877, 55.9325805 -3.2889506, 55.9541504 -3.3018100, 55.9064102 -3.2861260, 55.9390667 -3.2357495, 55.9291016 -3.1989979, 55.9220415 -3.3064155, 55.9238629 -3.3045205, 55.9232078 -3.3078531, 55.9222172 -3.3051610, 55.9583164 -3.1189512, 55.9777348 -3.2983203, 55.9463532 -3.2009029, 55.9347654 -3.1776917, 55.9310132 -3.1730716, 55.8957251 -3.3137161, 55.8961364 -3.3124683, 55.9282756 -3.3087719, 55.8961608 -3.3078477, 55.8697544 -3.3340369, 55.9463988 -3.0792364, 55.9487089 -3.0877156, 55.9472371 -3.3582172, 55.9467179 -3.2004315, 55.9609398 -3.2353282, 55.9611023 -3.2337205, 55.9615648 -3.2337688, 55.9897791 -3.3942172, 55.9548736 -3.4013671, 55.9550518 -3.4014531, 55.9499454 -3.3347136, 55.9332640 -3.1585804, 55.9615076 -3.1962176, 55.9617797 -3.1967210, 55.9618418 -3.1964188, 55.9171133 -3.1693870, 55.9499151 -3.1945526, 55.9337127 -3.2143721, 55.9384227 -3.2096374, 55.9673672 -3.2023565, 55.9331209 -3.2609346, 55.9414207 -3.1461071, 55.9584013 -3.2102800, 55.9415712 -3.1423967, 55.9372219 -3.1675591, 55.9376359 -3.1437325, 55.9582727 -3.2142012, 55.9578400 -3.2137240, 55.9580057 -3.2137170, 55.9583384 -3.2143374, 55.9578384 -3.2135045, 55.9586941 -3.2142670, 55.9579707 -3.2133574, 55.9561334 -3.1325493, 55.9557004 -3.4018948, 55.9461251 -3.1413986, 55.9522035 -3.2050275, 55.9532469 -3.1988696, 55.9527247 -3.2019313, 55.9537795 -3.1957406, 55.9588705 -3.2081707, 55.9208169 -3.1598554, 55.9578355 -3.2056417, 55.9576157 -3.2060293, 55.9576413 -3.2059278, 55.9580732 -3.2011430, 55.9579644 -3.2017381, 55.9580494 -3.2012821, 55.9579410 -3.2018748, 55.9584126 -3.2005043, 55.9582239 -3.2009160, 55.9332968 -3.1356104, 55.9587356 -3.2012076, 55.9229466 -3.2475426, 55.9569863 -3.2004490, 55.9571215 -3.2003372, 55.9569959 -3.2010702, 55.9570258 -3.1998342, 55.9568113 -3.2014707, 55.9568346 -3.2013336, 55.9567905 -3.2018529, 55.9571440 -3.1998405, 55.9569850 -3.2000388, 55.9563234 -3.2000974, 55.9562861 -3.2003170, 55.9563051 -3.2002050, 55.9563435 -3.1999788, 55.9563659 -3.1998463, 55.9558888 -3.2012666, 55.9563438 -3.1994450, 55.9262637 -3.2243126, 55.9197901 -3.4326481, 55.9254221 -3.2108025, 55.9633427 -3.1866328, 55.9571314 -3.1945091, 55.9570903 -3.1942658, 55.9571062 -3.1948163, 55.9570078 -3.1956389, 55.9574245 -3.1945101, 55.9570801 -3.1952413, 55.9593471 -3.1962794, 55.9588288 -3.1994335, 55.9583111 -3.1990412, 55.9585624 -3.1980766, 55.9583421 -3.1992286, 55.9586095 -3.1976521, 55.9584283 -3.1986380, 55.9585084 -3.1979077, 55.9575802 -3.1968697, 55.9566931 -3.1981359, 55.9567965 -3.1968319, 55.9566552 -3.1982909, 55.9568562 -3.1972327, 55.9568774 -3.1971123, 55.9156397 -3.3249979, 55.9156923 -3.3238425, 55.9153453 -3.3247946, 55.9153595 -3.3236574, 55.9150128 -3.3243232, 55.9151025 -3.3234941, 55.9305464 -3.2379374, 55.9566534 -3.1920437, 55.9568104 -3.1898624, 55.9566771 -3.1918966, 55.9565541 -3.1926150, 55.9570880 -3.1893684, 55.9567192 -3.1908266, 55.9565429 -3.1914874, 55.9565039 -3.1916747, 55.9581429 -3.1932082, 55.9580069 -3.1929658, 55.9560597 -3.2073932, 55.9426363 -3.2453765, 55.9539415 -3.2061599, 55.9538842 -3.2068469, 55.9541878 -3.2062819, 55.9538990 -3.2065724, 55.9516793 -3.2103388, 55.9087093 -3.1294683, 55.9083658 -3.1302627, 55.9098947 -3.1298365, 55.9086482 -3.1320997, 55.9082094 -3.1281800, 55.9075358 -3.1316654, 55.9067683 -3.1280724, 55.9074133 -3.1295842, 55.9130531 -3.1377878, 55.9579855 -3.4144584, 55.9611738 -3.2007261, 55.9612899 -3.2007540, 55.9610369 -3.2004541, 55.9610414 -3.2006404, 55.9614051 -3.2007464, 55.9620034 -3.1995271, 55.9086030 -3.1535038, 55.9085760 -3.1545047, 55.9109349 -3.1528529, 55.9080474 -3.1628940, 55.9318731 -3.2975150, 55.9315469 -3.2965080, 55.9313921 -3.2957951, 55.9295984 -3.3000022, 55.9502297 -3.1939281, 55.9606510 -3.1948267, 55.9595489 -3.1922083, 55.9583786 -3.1909831, 55.9574599 -3.1920099, 55.9575352 -3.1909870, 55.9576821 -3.1905193, 55.9577536 -3.1902046, 55.9494095 -3.1864626, 55.9415305 -3.2096039, 55.9477482 -3.1983184, 55.9482088 -3.1927240, 55.9480798 -3.1929875, 55.9476449 -3.1962205, 55.9467112 -3.1954578, 55.9475963 -3.1940675, 55.9395772 -3.2053724, 55.9399587 -3.2058503, 55.9401754 -3.2051474, 55.9459124 -3.1915662, 55.9477804 -3.1928983, 55.9402430 -3.1727693, 55.9460773 -3.1915078, 55.9460762 -3.1916340, 55.9372942 -3.2112450, 55.9386346 -3.2107489, 55.9409866 -3.2107158, 55.9407779 -3.2120796, 55.9410206 -3.2114030, 55.9050910 -3.1343770, 55.9028429 -3.1648741, 55.9402022 -3.2097896, 55.9498358 -3.1944874, 55.9490749 -3.1954965, 55.9035412 -3.1821096, 55.9278308 -3.2029884, 55.9509187 -3.1896338, 55.9289340 -3.3850956, 55.9220620 -3.1790686, 55.9484660 -3.1908405, 55.9491359 -3.1879889, 55.9322908 -3.3840708, 55.9328840 -3.3853114, 55.9332462 -3.3859725, 55.9493593 -3.1850273, 55.9498809 -3.1852975, 55.9497910 -3.1868298, 55.9544757 -3.1956329, 55.9500589 -3.1853856, 55.9500722 -3.1849837, 55.9510336 -3.1857059, 55.9513675 -3.1810136, 55.9515036 -3.1804098, 55.9105025 -3.3235645, 55.9499189 -3.2133487, 55.9507176 -3.2116338, 55.9492178 -3.2148611, 55.9501659 -3.2128197, 55.9434309 -3.1997040, 55.9254373 -3.3071736, 55.9193931 -3.2787375, 55.9181911 -3.2782631, 55.9188677 -3.2805660, 55.9196291 -3.2799665, 55.9204553 -3.2780930, 55.9201801 -3.2782104, 55.9199010 -3.2768654, 55.9183106 -3.2760785, 55.9178305 -3.2802163, 55.9192966 -3.2811296, 55.9190402 -3.2822249, 55.9181350 -3.2823908, 55.9589084 -3.1973993, 55.9524851 -3.1785482, 55.9527783 -3.1777107, 55.9525789 -3.1786026, 55.9526096 -3.1778455, 55.9401132 -3.2035901, 55.9525625 -3.1763202, 55.9525134 -3.1760443, 55.9510367 -3.1792500, 55.9509261 -3.1791989, 55.9266569 -3.2906587, 55.9259672 -3.2906739, 55.9509562 -3.1793029, 55.9715612 -3.1511891, 55.9716128 -3.1531798, 55.9471723 -3.2950498, 55.9502335 -3.1832343, 55.9069836 -3.2745258, 55.9502544 -3.1792709, 55.9799828 -3.2336228, 55.9515884 -3.1767930, 55.9510805 -3.1774572, 55.9233418 -3.1754307, 55.9557050 -3.1593134, 55.9333835 -3.3060603, 55.9330851 -3.3055704, 55.9330382 -3.3063701, 55.9328514 -3.3048776, 55.9119048 -3.3162745, 55.9124396 -3.3164891, 55.9133755 -3.3158141, 55.9136037 -3.3151038, 55.9135778 -3.3145334, 55.9133853 -3.3144838, 55.9132252 -3.3140003, 55.9139806 -3.3144355, 55.9456742 -3.3672489, 55.9731731 -3.1669137, 55.9237564 -3.2987464, 55.9238278 -3.2979670, 55.9236823 -3.2992800, 55.9236244 -3.2983415, 55.9756413 -3.1693138, 55.9758911 -3.1692936, 55.9758604 -3.1697211, 55.9753361 -3.1696566, 55.9147293 -3.1511366, 55.9721048 -3.1685421, 55.9721151 -3.1680154, 55.9717652 -3.1690738, 55.9732515 -3.1673385, 55.9715681 -3.1606383, 55.9692273 -3.1671765, 55.9730053 -3.1675964, 55.9756268 -3.1775141, 55.9713870 -3.1706865, 55.9729528 -3.1695492, 55.9751541 -3.1650251, 55.9751577 -3.1653774, 55.9763527 -3.1666992, 55.9766234 -3.1668946, 55.9770520 -3.1688358, 55.9763420 -3.1688202, 55.9768312 -3.1689243, 55.9769477 -3.1679184, 55.9764831 -3.1675618, 55.9766276 -3.1674364, 55.9767630 -3.1679004, 55.9763615 -3.1673944, 55.9762132 -3.1674013, 55.9764423 -3.1672457, 55.9736969 -3.1671845, 55.9743212 -3.1625378, 55.9740795 -3.1632105, 55.9740620 -3.1630357, 55.9742799 -3.1619687, 55.9742593 -3.1633249, 55.9742318 -3.1635897, 55.9752231 -3.1690512, 55.9746912 -3.1702181, 55.9750377 -3.1689925, 55.9746574 -3.1700411, 55.9749450 -3.1691192, 55.9749017 -3.1700282, 55.9720281 -3.1737035, 55.9727889 -3.1744380, 55.9727346 -3.1745843, 55.9721351 -3.1736643, 55.9741171 -3.1730714, 55.9735318 -3.1745179, 55.9740812 -3.1745082, 55.9739348 -3.1746700, 55.9742013 -3.1746074, 55.9744262 -3.1756289, 55.9743317 -3.1760719, 55.9738875 -3.1759382, 55.9743689 -3.1762422, 55.9741727 -3.1757146, 55.9741963 -3.1758890, 55.9740011 -3.1760644, 55.9740555 -3.1757628, 55.9253013 -3.2894404, 55.9241260 -3.2892037, 55.9235279 -3.2886413, 55.9220176 -3.2971855, 55.9737812 -3.1727710, 55.9739374 -3.1725951, 55.9739122 -3.1731923, 55.9747248 -3.1723013, 55.9746745 -3.1725116, 55.9730956 -3.1719611, 55.9737461 -3.1722015, 55.9735419 -3.1722524, 55.9737264 -3.1720461, 55.9734307 -3.1722581, 55.9733652 -3.1721379, 55.9733894 -3.1719573, 55.9732022 -3.1719596, 55.9732758 -3.1714536, 55.9725117 -3.1719833, 55.9716033 -3.1728525, 55.9716849 -3.1726165, 55.9719508 -3.1722289, 55.9718987 -3.1720621, 55.9737219 -3.1688570, 55.9753470 -3.1700225, 55.9746740 -3.1690745, 55.9745309 -3.1710571, 55.9744986 -3.1695250, 55.9745046 -3.1693685, 55.9746944 -3.1711617, 55.9296471 -3.1268952, 55.9759364 -3.1724638, 55.9760026 -3.1723230, 55.9758148 -3.1719840, 55.9760071 -3.1718137, 55.9759688 -3.1720744, 55.9756249 -3.1743429, 55.9756742 -3.1728919, 55.9759854 -3.1781709, 55.9761643 -3.1779299, 55.9761354 -3.1781511, 55.9760579 -3.1783100, 55.9760423 -3.1778812, 55.9255664 -3.3019293, 55.9698130 -3.1731945, 55.9699565 -3.1730837, 55.9705998 -3.1732909, 55.9706602 -3.1735164, 55.9702099 -3.1728519, 55.9271865 -3.2341911, 55.9310749 -3.2221506, 55.9711024 -3.1772896, 55.9268830 -3.2763117, 55.9271895 -3.2761417, 55.9271728 -3.2756383, 55.9279132 -3.2756535, 55.9272315 -3.2766749, 55.9275662 -3.2754505, 55.9278192 -3.2762535, 55.9274993 -3.2760976, 55.9281311 -3.2753912, 55.9276010 -3.2764858, 55.9279687 -3.2767061, 55.9278777 -3.2077770, 55.9757705 -3.1780299, 55.9764497 -3.1747581, 55.9764285 -3.1750061, 55.9760114 -3.1763866, 55.9760220 -3.1765061, 55.9761360 -3.1764257, 55.9760874 -3.1762696, 55.9755129 -3.1738973, 55.9755844 -3.1736124, 55.9774064 -3.1721745, 55.9632772 -3.2726188, 55.9629194 -3.1995460, 55.9387964 -3.2425160, 55.9667316 -3.2750397, 55.9467940 -3.2000355, 55.9463600 -3.2048161, 55.9627785 -3.2719032, 55.9484157 -3.1843623, 55.9168200 -3.2801729, 55.9136608 -3.2855273, 55.9058151 -3.2866909, 55.9069125 -3.2880144, 55.9085376 -3.2562536, 55.9083352 -3.2474946, 55.9089070 -3.2469696, 55.9092054 -3.2459618, 55.9087682 -3.2488714, 55.9462175 -3.2043162, 55.9274716 -3.2133584, 55.9450678 -3.1988516, 55.9450152 -3.1980529, 55.9661572 -3.1681169, 55.9664871 -3.1685009, 55.9663445 -3.1681840, 55.9644310 -3.1603259, 55.9636971 -3.1582902, 55.9640184 -3.1583530, 55.9639604 -3.1562710, 55.9354449 -3.2070895, 55.9660102 -3.1564663, 55.9649786 -3.1578444, 55.9640880 -3.1607086, 55.9635246 -3.1598830, 55.9643177 -3.1570603, 55.9644348 -3.1572048, 55.9635131 -3.1593124, 55.9651742 -3.1579780, 55.9648238 -3.1569764, 55.9640156 -3.1598459, 55.9648546 -3.1583818, 55.9650608 -3.1582180, 55.9639268 -3.1597038, 55.9655369 -3.1578531, 55.9637202 -3.1592222, 55.9632267 -3.1646016, 55.9635614 -3.1638735, 55.9488330 -3.2333191, 55.9025628 -3.1543179, 55.9029778 -3.1538446, 55.9648135 -3.1613327, 55.9646694 -3.1605797, 55.9656875 -3.1590592, 55.9653266 -3.1608500, 55.9658325 -3.1590447, 55.9652094 -3.1594902, 55.9662270 -3.1588164, 55.9648285 -3.1618055, 55.9266095 -3.2113502, 55.9265774 -3.2116481, 55.9266981 -3.2114242, 55.9274468 -3.2082823, 55.9527993 -3.1990292, 55.9595083 -3.2012858, 55.9593429 -3.2019780, 55.9414040 -3.3607640, 55.9458862 -3.2282641, 55.9460186 -3.3611776, 55.9477676 -3.3639752, 55.9386846 -3.3602730, 55.9554241 -3.4034469, 55.9276210 -3.2086773, 55.9297710 -3.2113187, 55.9220647 -3.3393624, 55.9332730 -3.2373592, 55.9130578 -3.1471005, 55.9248096 -3.2521016, 55.9241906 -3.2508802, 55.9269392 -3.2273320, 55.9359730 -3.1044345, 55.9362577 -3.1054878, 55.9319382 -3.1053279, 55.9770253 -3.1708684, 55.9771899 -3.1708533, 55.9771055 -3.1707872, 55.9772737 -3.1711038, 55.9772794 -3.1703880, 55.9771431 -3.1704668, 55.8959106 -3.1916620, 55.9171514 -3.2798836, 55.9525077 -3.1383945, 55.9697308 -3.2065670, 55.9697551 -3.2060057, 55.9672808 -3.1926635, 55.9672710 -3.1923862, 55.9672179 -3.1927541, 55.9668788 -3.1921653, 55.9667564 -3.1929392, 55.9666328 -3.1919163, 55.9666359 -3.1914942, 55.9664922 -3.1915076, 55.9663968 -3.1912937, 55.9662737 -3.1911087, 55.9666782 -3.1941014, 55.9640543 -3.1923365, 55.9641163 -3.1921531, 55.9639890 -3.1925335, 55.9642623 -3.1920919, 55.9643383 -3.1919173, 55.9644156 -3.1917379, 55.9725017 -3.2722446, 55.9682031 -3.2835247, 55.9666711 -3.1946936, 55.9666595 -3.1949021, 55.9668535 -3.1948887, 55.9669288 -3.1944546, 55.9670557 -3.1945029, 55.9671998 -3.1946383, 55.9673311 -3.1948167, 55.9671329 -3.1949039, 55.9673919 -3.1946128, 55.9664712 -3.1948168, 55.9556184 -3.1896814, 55.9558570 -3.1890741, 55.9178498 -3.2909985, 55.9499500 -3.2408520, 55.9003478 -3.1765368, 55.8956110 -3.2605678, 55.9240890 -3.1742716, 55.9240746 -3.1731953, 55.9046289 -3.2061734, 55.9046775 -3.2010980, 55.9214034 -3.1403655, 55.9210442 -3.1331059, 55.9747779 -3.2066323, 55.9740399 -3.2059140, 55.9744886 -3.2044855, 55.9695776 -3.1843955, 55.9680028 -3.2346531, 55.9849730 -3.3815186, 55.9227433 -3.1869948, 55.9302228 -3.2672573, 55.9300830 -3.2679820, 55.9221651 -3.2360289, 55.9225751 -3.2356742, 55.9418770 -3.2953996, 55.9428914 -3.2930162, 55.9428729 -3.2937404, 55.9183449 -3.2729809, 55.9280013 -3.2977779, 55.9242251 -3.2929498, 55.9757076 -3.2990116, 55.9368335 -3.2788230, 55.9025267 -3.1551453, 55.9073286 -3.2483784, 55.9102386 -3.2219648, 55.9058182 -3.2215648, 55.9094971 -3.2220617, 55.9113910 -3.2196627, 55.9432151 -3.2230568, 55.9430076 -3.2229860, 55.8755084 -3.3099114, 55.9578595 -3.1898108, 55.9576323 -3.1912435, 55.9578040 -3.1896434, 55.9386615 -3.2390725, 55.9704306 -3.2477770, 55.9849691 -3.3866286, 55.9861474 -3.3953044, 55.9880856 -3.3973430, 55.9372716 -3.2001928, 55.9503291 -3.2226313, 55.9604580 -3.2900777, 55.9027210 -3.2393809, 55.9647922 -3.2859299, 55.9642704 -3.2852913, 55.9646737 -3.2850721, 55.9597396 -3.2880998, 55.9549526 -3.2875781, 55.9294742 -3.2537569, 55.9285589 -3.2717623, 55.9282407 -3.2714365, 55.9793478 -3.2770838, 55.9794872 -3.2770256, 55.9789135 -3.2819069, 55.9790144 -3.2819991, 55.9594878 -3.1871620, 55.9344502 -3.2209729, 55.9281916 -3.2054936, 55.9279155 -3.2074137, 55.9279507 -3.2070589, 55.9282680 -3.2054230, 55.9821284 -3.3971352, 55.9822429 -3.4003451, 55.9833030 -3.4003028, 55.9831421 -3.3990778, 55.9830914 -3.3982362, 55.9010162 -3.2493327, 55.9095314 -3.2284523, 55.9091958 -3.2283819, 55.9095373 -3.2269404, 55.9094412 -3.2262681, 55.9098190 -3.2247187, 55.9517219 -3.3490443, 55.9456982 -3.3733390, 55.9446148 -3.3754198, 55.9371113 -3.2388640, 55.9308123 -3.2225373, 55.9436134 -3.2678368, 55.9789651 -3.2338860, 55.9718369 -3.3043977, 55.9672312 -3.2394326, 55.9691367 -3.2785220, 55.9666992 -3.1908064 +no +14 +Dalmeny Parish Church, Queensferry Parish Church, Old Kirk of Edinburgh, St. Ninian's Church, Pilrig St Paul's, Craigsbank Parish Church, Corstorphine Old Parish Church, Cramond Kirk, St Michael's Parish church, Kirk O'Field, St. Giles' Cathedral, Granton Parish Church, Marchmont St Giles Parish Church, Murrayfield Parish church, Gorgie Dalry Parish Church, Saint Cuthbert, Carrick Knowe Parish Church, Colinton Parish Church, Mayfield Salisbury Parish Church, St John's, St. John's Colinton Mains Parish Church, Stockbridge Parish Church, St Andrew's and St George's West, St Stephens Comely Bank, Inverleith Parish Church, Leith St Andrew's, Newhaven Church, Muirhouse St Andrews, Drylaw Parish Church, St Annes Church, North Leith Parish Church, Leith Free Church, Dean Parish Church, Juniper Green Parish Church, Blackhall St. Columba's Church, St. Davids Broomhouse Church, Kirkliston Parish Church of Scotland, St Christopher's, Greyfriars Church, Craiglockhart Parish Church, London Road Parish Church, Broughton St. Mary's, Reid Memorial Church, Wardie Parish Church +Dalmeny Parish Church, Queensferry Parish Church, Muirhouse Kingdom Hall, Old Kirk of Edinburgh, St. Ninian's Church, St Catherine of Alexandria, Pilrig St Paul's, Idara Taleem ul Quran, Guru Nanak Gurdawara Singh Sabha, Portobello Baptist Church, Craigsbank Parish Church, Chaplaincy, Corstorphine Old Parish Church, Duke Street United Reformed Church, Capital City Church International (3Ci), Davidson's Mains Parish Church, Ferniehill Evangelical Church, Methodist Central Hall, Baha'i Centre for Scotland, The Chaplaincy, True Jesus Church, Ardmillan Hall, Salvation Army, Kingdom Hall, Christadelphian Hall, Canongate Kirk, Bristo Memorial Church, The Robin Chapel, Niddrie Community Church, Richmond Craigmillar Church, Catholic Church of St Teresa, St Mary Magdalene, Duddingston Kirk, St Philips Joppa Parish Church, Tron Kirk, St Barnabas, Edinburgh Central Mosque, C.E.M.C, Cramond Kirk, Mortonhall Chapel, Barclay Viewforth Parish Church, St Michael's Parish church, Polwarth Church, Saint Martin of Tours Episcopal Church, St Margaret's Chapel, Life church, Buccleuch and Greyfriars, Orthodox Church of St Andrew, Kirk O'Field, The Salvation Army, St. Giles' Cathedral, South Leith Parish Church, Augustine United Church, St Columba's, St Philip's Church, Kingdom Hall, Destiny Church, St Vincent's Chapel, Ebeneezer, Gilmore Place Free Presbyterian Church of Scotland, St Ninians Episcopal Church, East Craigs Church Centre, Granton Salvation Army Hall, Seventh-day Adventist Church, Granton Parish Church, St Margaret and Mary, St Davids, Granton Baptist Church, Marchmont St Giles Parish Church, Murrayfield Parish church, Gorgie Mission, Gorgie Dalry Parish Church, Church of the Good Shepherd, Liberton Northfield Parish Church, Church of St John, Saint Cuthbert, Carrick Knowe Parish Church, Wester Hailes Baptist Church, Colinton Parish Church, Saint Margaret's and Saint Leonard's, Mayfield Salisbury Parish Church, Carrubbers Christian Centre, St Salvador's Episcopal Church, IQRA Academy, Craigmillar Park Church, Greenside Parish Church, Fairmilehead Parish Church, St Mark's, St John's, St. John's Colinton Mains Parish Church, Canonmills Baptist Church, Stockbridge Parish Church, St Andrew's and St George's West, St. James Goldenacre, True Jesus Church (St Lukes), St Stephens Comely Bank, Inverleith Parish Church, Rhema Church, Chapel of Remembrance, Pentland Chapel, The Edinburgh Hebrew Congregation, Leith St Andrew's, Mohiuddin Jamia Masjid & Education Centre, Newhaven Church, Anwar-E-Madina, Greenbank Church, Abbeyhill Baptist Church, St Fillan, The Chaplaincy, Muirhouse St Andrews, Drylaw Parish Church, King's Church Edinburgh, St Annes Church, Holy Cross RC Church, North Leith Parish Church, Leith Baptist Church, Charlotte Baptist Chapel, Bellevue Chapel, Morningside United Church, Ratho Parish Church, St Margaret's Catholic Church, Leith Free Church, Saint Catherine's Argyle, Bristo Baptist Church, Palmerston Place Church, Duncan Street Batptist Church, St Mary's Star of the Sea, Church of the Sacred Heart of Jesus, Morningside Parish Church, St Margaret's Chapel, Dean Parish Church, Juniper Green Parish Church, St Mary's Episcopal Cathedral, St Andrews Catholic Church, Blackhall St. Columba's Church, Chapel of St. Albert the Great, Holy Cross Church, Balerno Parish Church, Quaker Meeting House, St Mary's Metropolitan Cathedral (RC), St. Davids Broomhouse Church, Kirkliston Community Church, St Peter's Catholic Church, St Columba's, Christ Church (Morningside), Saint Columba's by the Castle, Bruntsfield Evangelical Church, St Nicholas Parish Church, Kirkliston Parish Church of Scotland, St Christopher's, St Paul's & St George's, The Church of Christ, St Michael and All Saints, Greyfriars Church, The Parish of St Gregory the Great, Saughtonhall Church, St. Patrick's, Old Saint Paul's, St Margaret's Episcopal Church, Community Church Edinburgh, Saint Peter's Church, Elim Edinburgh, Wilson Memorial United Free Church, Our Lady of Pochaiv and Saint Andrew, St Albert's Catholic Chaplaincy, St Albert's Catholic Chaplaincy, South Leith Baptist Church, Church of Latter Day Saints, Craiglockhart Parish Church, Holy Trinity, St Cuthbert's, Kirkliston Parish Church, Old Schoolhouse Christian Fellowship, German Church, London Road Parish Church, Broughton St. Mary's, Stenhouse St Aidan's, St Serf's Church, Portobello Old Parish Church, Portobello United Reformed Church, Priestfield Parish Church, Reid Memorial Church, St Ninians, Wardie Parish Church, Saint Mark's, St. John's RC Church, St James Parish Church, St Cuthberts Church, St Margaret's RC Church, World Conqueror Christian Centre, Saint Joseph's, All Nations Christian Fellowship +3 +yes +Flughafen Karlsruhe/Baden-Baden, Flugplatz Frankfurt-Egelsbach, Verkehrslandeplatz Lohrbach, Coleman AAF, Segelflugplatz Heppenheim, FSV 1910 RC Runway, Flugplatz Schwäbisch Hall-Weckrieden, Aero Club Esslingen Sportfluggelände, Segelflugplatz, Flugplatz Altfeld, Verkehrslandeplatz Walldürn, Landeplatz Ingelfingen-Bühlhof, Sonderlandeplatz Baden-Oos, Ramstein Air Base, Landau-Ebenberg, Flugplatz Weinheim, Sportflugplatz Langenlonsheim, Segelflugplatz Schreckhof, Tauberbischofsheim, Segelfluggelände Altenbachtal, Gundelsheim Ultraleicht, Adolf Würth Airport, Auchtweid, Segelfluggelände Heilbronn-Böckingen, August Euler Flugplatz, Aeroclub Schweighofen Wissembourg, Herrenteich, Segelflugplatz, Segelflugplatz FSC Mühlacker, Flugplatz Worms, Segelflugplatz Grünstadt Quirnheim, Flugplatz Bruchsal, Segelfluggelände Dannstadt, Flugplatz, Flugplatz Lilienthal, Segelflugsportverein Haßloch/Pfalz e. V., Flugplatz Backnang-Heiningen, Flugplatz Völkleshofen-Lichtenberg, Flugplatz Bad Dürkheim, Ultraleichtfluggelände Dörzbach-Hohebach, Wissembourg ULM, Segelflugplatz Rheinstetten, Verkehrslandeplatz Mainbullau, Segelfluggelände Möckmühl, Flugplatz Mainz-Finthen, Sportflugplatz Zellhausen, Segelflugplatz Im Weitfeld, Flugplatz Bundenthal-Rumbach, Flugsportvereinigung Pleidelsheim, Speyer, Babenhausen Airport, Flugplatz Domberg, Segelfluggelände Hermuthausen, Flugplatz Pirmasens-Pottschütthöhe, Aschaffenburg, Segelflugplatz Eßweiler, Flugplatz Oppenheim, Flugplatz Michelstadt, City-Airport Mannheim, Sportflugplatz Walldorf, Segelfluggelände Reinheim, Imsweiler-Donnersberg, Flugplatz Unterschüpf, Flugplatz Langenlonsheim, Segelfluggelände Degmarn, Segelfluggelände Baumerlenbach, Sonderlandeplatz Becherbach, Sonderlandeplatz Linkenheim, Segelflugplatz Schwann-Connweiler, Ultraleichtfluggelände Bürstadt, Ultraleichtfluggelände Morbach, Ultraleichtfluggelände Oberrot, Autobahn-Behelfsflugplatz Adelsheim, Flugplatz Schlierstadt, Coleman Barracks (European Activity Set), Flughafen Frankfurt am Main +Musée de l'Armée and http://www.musee-armee.fr/, Conservatoire Niedermeyer and http://www.agglo-gpso.fr, Musée de l'Assistance Publique Hôpitaux de Paris and www.aphp.fr/, Musée des Arts Décoratifs - Musée de la Publicité and http://www.lesartsdecoratifs.fr/francais/arts-decoratifs/, Musée national des Arts et Métiers and http://www.arts-et-metiers.net/, Tour de Jean-sans-Peur and http://www.tourjeansanspeur.com/, Musée Gustave Moreau and www.musee-moreau.fr, Les Égouts de Paris and http://www.paris.fr/loisirs/musees-expos/musee-des-egouts/visite-publique-des-egouts-de-paris/rub 9691 stand 5943 port 23931, Musée Pasteur and https://www.pasteur.fr/fr/institut-pasteur/musee-pasteur, Espace Dali and www.daliparis.com/, Musée de la Carte à Jouer et Galerie d'Histoire de la Ville and http://www.issy.com/ma-ville/equipements-culturels/musee-francais-de-la-carte-a-jouer, Musée en Herbe and http://www.musee-en-herbe.com/, Musée en Herbe, Môm'artre, Studio des Islettes, Maison Européenne de la Photographie and http://www.mep-fr.org, Musée de l'Eventail and www.annehoguet.fr/musee.htm, Musée de la Poupée and http://www.museedelapoupeeparis.com/, Espace Icare and http://www.espace-icare.com/, Catacombes de Paris and http://www.catacombes.paris.fr/, Conservatoire municipal Claude Debussy - Site de la Jonquière and http://equipement.paris.fr/conservatoire-municipal-claude-debussy-site-la-jonquiere-3976, Musée de l'Érotisme and http://www.musee-erotisme.com/, Atelier de Restauration et de Conservation des Photographies de la Ville de Paris and http://www.paris.fr/politiques/conservation-restauration/atelier-de-restauration-et-de-conservation-des-photographies-de-la-ville-de-paris/p7672#, Musée des années 30, Musée du Petit Palais and http://www.petitpalais.paris.fr/, Musée de la Légion d'Honneur et des Ordres de Chevalerie and http://www.musee-legiondhonneur.fr/, Conciergerie and http://conciergerie.monuments-nationaux.fr/, Musée du Vin and www.museeduvinparis.com, Musée de la Poste and http://www.ladressemuseedelaposte.com/, galerie-musée Baccarat and http://www.baccarat.fr/fr/univers-baccarat/musees/gallery-opening-hours.htm, Salle des collections and http://forumdesimages.fr/, Barbara Fleury and http://www.fgo-barbara.fr, Soundfactor, Musée du Service de Santé des Armées and http://www.ecole-valdegrace.sante.defense.gouv.fr/bibliotheque-musee/musee-du-service-de-sante-des-armees, Choco-Story - Le musée gourmand du chocolat and www.museeduchocolat.fr, Musée-Jardin Paul Landowski, Le Lucernaire, Cité de l'architecture et du patrimoine and http://www.citechaillot.fr/fr/, Musée de la Marine and www.musee-marine.fr, Musée de la franc-maçonnerie and http://www.museefm.org/, Centre culturel L'Escale, Espace des Sciences Pierre-Gilles de Gennes, Deyrolle, Fondation Le Corbusier and www.fondationlecorbusier.asso.fr, Musée de la Contrefaçon and http://musee-contrefacon.com/, Musée Dapper and www.dapper.com.fr, Musée Adzak - Espace d'Art International, Musée d'Anatomie Delmas-Orfila-Rouvière and www.mairie6.paris.fr, Musée Arménien de France and www.le-maf.com/, Musée Boleslas Biegas - Musée Adam Mickiewicz and www.bibliotheque-polonaise-paris-shlp.fr, Musée Bible et Terre Sainte and www.icp.fr, Musée Bouilhet-Christofle - Musée d'Orfèvrerie and http://www.christofle.com/, Musée Clemenceau and www.musee-clemenceau.fr/, Musée-Librairie du Compagnonnage and www.compagnons.org/, Musée d'Anatomie Pathologique Dupuytren and www.upmc.fr/, Musée Valentin Haüy and www.avh.asso.fr/, Musée Henner and www.musee-henner.fr/, Musée d'histoire de la Médecine and www.bium.univ-paris5.fr/musee/, Musée Maillol and www.museemaillol.com/, Musée des Lettres et Manuscrits and http://www.museedeslettres.fr/, Musée du Montparnasse and www.museedumontparnasse.net/, Musée de Minéralogie and http://www.musee.mines-paristech.fr/, Musée Moissan and www.paris.fr/, Crypte Archéologique du Parvis Notre-Dame and crypte.paris.fr/, Bibliothèque-Musée de l'Opéra and www.bnf.fr/, Musée Pierre Marly - Lunettes et Lorgnettes, Musée de la Préfecture de Police and prefecturedepolice.interieur.gouv.fr, Musiques Tangentes, Centre Culturel Suisse, Tour de la Cathédrale, Maison de la Pêche et de la Nature, Le trésor de Notre-Dame de Paris, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin and http://www.paris.fr/loisirs/musees-expos/memorial-leclerc-et-de-la-liberation-de-paris-musee-jean-moulin/p6923, Espace Albert Gazier, Musée national d'art moderne and http://www.centrepompidou.fr/cpv/ressource.action?param.id=FR R-89fd49e847165bc78d564f6dbeb6777¶m.idSource=FR E-2ab598d3369ad7a58ead7e6be32ba7b, Maxim's Art Nouveau "Collection 1900" and http://www.maxims-musee-artnouveau.com/, Collection des minéraux - Jussieu, Centre culturel italien, Centre Culturel la Jonquière, Fondation Henri Cartier-Bresson and http://www.henricartierbresson.org, Galerie Royale, cité des arts, La Métisse, Conservatoire municipal Jean-Philippe Rameau, Musée du Barreau and http://www.avocatparis.org/home/presentation-et-missions/histoire-du-barreau-de-paris/musee-virtuel.html, Auditorium, Institut des Lettres et Manuscrits, Anciens Elèves (Musée), Musée d'Histoire contemporaine and http://www.bdic.fr/, Musée de l'Ordre de la Libération and http://www.ordredelaliberation.fr/fr doc/musee.html, Musée des Plans-reliefs and http://www.museedesplansreliefs.culture.fr/, Les Arcades and http://www.issy.com/ma-ville/equipements-culturels/les-arcades, Catacombes de Paris, Pinacothèque de Paris 2, Galerie Xippas and http://www.xippas.net/, Musée de l'Homme and http://www.museedelhomme.fr/, Galérie Artes, Musée du quai Branly and http://www.quaibranly.fr/, Galerie de Minéralogie et de Géologie and http://www.museum-mineral.fr/, Institut du Monde Arabe and www.imarabe.org/, Jardin Tino Rossi - Musée de la Sculpture en Plein Air and equipement.paris.fr/JARDIN TINO ROSSI, Collège des Bernardins, Halle Saint-Pierre and http://www.hallesaintpierre.org, Hôtel de Sully, Le Louvre and http://www.louvre.fr/, Conservatoire du Centre and http://equipement.paris.fr/conservatoire-municipal-w-a-mozart-1595, Jeu de Paume and www.jeudepaume.org, Musée de l'Orangerie and www.musee-orangerie.fr/, Centre Georges Pompidou, Atelier Brancusi, Centre Wallonie-Bruxelles and http://www.cwb.fr/, Futur Fondation Galeries Lafayette, Espace des Blancs-Manteaux, Musée Curie and www.curie.fr/, Grand Palais and www.grandpalais.fr/, Pavillon de l'Arsenal and http://www.pavillon-arsenal.com/, La Gaîté lyrique and http://www.gaite-lyrique.net/, Musée National du Moyen Âge and www.musee-moyenage.fr/, Musée d'Art et d'Histoire du Judaïsme and www.mahj.org, Archives Nationales and http://www.archivesnationales.culture.gouv.fr/, Musée de la Serrure, Musée Picasso and http://www.museepicassoparis.fr/, Musée Cognacq-Jay and http://www.paris.fr/loisirs/musees-expos/musee-cognacq-jay/p6466, Musée national Eugène Delacroix and www.musee-delacroix.fr, Orangerie du Sénat, Musée d'Orsay and http://www.musee-orsay.fr, Conservatoire Hector Berlioz, Institut hongrois, Galerie J. Kugel, Musée national Ernest-Hébert, Espace Fondation EDF, Institut Néerlandais and www.institutneerlandais.com/, Immeuble Molitor, Pinacothèque de Paris and www.pinacotheque.com/, Musée Nissim de Camondo and www.lesartsdecoratifs.fr/, Musée Cernuschi and http://cernuschi.paris.fr/, Musée Rodin and www.musee-rodin.fr/, Musée Jacquemart-André and http://www.musee-jacquemart-andre.com/, Palais de la Culture, Musée De Dion-Bouton, Conservatoire Municipal Nadia et Lili Boulanger and equipement.paris.fr/Conservatoire Municipal Nadia et Lili Boulanger, Musée Renault and https://www.sites.google.com/site/histoiregrouperenault/expos/expo-musee, Pavillon de Vendôme and http://www.ville-clichy.fr/382-le-pavillon-vendome-centre-d-art-contemporain.htm, Conservatoire Léo Delibes, Les Studios de Boulogne Musique, Le BAL and http://www.le-bal.fr/, Musée Paul-Belmondo and http://www.boulognebillancourt.com/previous/museepaulbelmondo/index.html, Centre d'Animation "Les Abbesses" and http://equipement.paris.fr/centre-d-animation-les-abbesses-1154, Fondation Pierre Bergé Yves Saint-Laurent and http://www.fondation-pb-ysl.net, Musée d'Art Moderne de la Ville de Paris and www.mam.paris.fr/, Palais de Tokyo and www.palaisdetokyo.com/, Fondation Cartier and fondation.cartier.com/, Musée Guimet and www.guimet.fr/, Maison Chana Orloff, Musée d'Ennery and http://www.guimet.fr/fr/musee-dennery/informations-pratiques, Centre Culturel Louis de Broglie and mjcneuilly92.com, Musée Roybet Fould, Centre Culturel, Musée Marmottan and www.marmottan.com, Grande Galerie de l'Évolution, Conservatoire Francis Poulenc, Musée de la Vie Romantique and http://vie-romantique.paris.fr, Maison de Balzac and http://balzac.paris.fr, Pavillon de l'eau and http://eaudeparis.fr/lespace-culture/pavillon-de-leau/, Mémorial de la Shoah and http://www.memorialdelashoah.org/, Centre Culturel Irlandais and http://www.centreculturelirlandais.com/, Maison de la Culture du Japon and http://www.mcjp.fr/, Musée Zadkine and http://zadkine.paris.fr, Musée de Montmartre and www.museedemontmartre.fr/, Musée de la chasse et de la nature and www.chassenature.org, Manufacture des Gobelins and http://www.mobiliernational.culture.gouv.fr/, Maison de l’Amérique latine and http://mal217.org/, Musée du Luxembourg and www.museeduluxembourg.fr/, Maison des Pratiques Artistiques Amateurs, Point - Afrique, Palais de la Découverte and http://www.palais-decouverte.fr/, Centre Culturel Suédois and www.si.se/Paris/, Musée de la magie and http://www.museedelamagie.com/, Fondation Louis Vuitton and http://www.fondationlouisvuitton.fr/, Institut culturel italien and http://www.iicparigi.esteri.it, Hôtel des Monnaies and http://www.monnaiedeparis.fr/, Musée Galliera and http://palaisgalliera.paris.fr/, Musée Bourdelle and paris.fr/loisirs/musees-expos/musee-bourdelle/p6408, Musée Carnavalet and http://carnavalet.paris.fr/, Petit Palais and http://www.petitpalais.paris.fr/, Sainte-Chapelle and http://sainte-chapelle.monuments-nationaux.fr/, Musée du Louvre +49.4073193 8.7078225, 49.4143210 8.7642858, 49.4088119 8.7067204, 49.4133850 8.7080801, 49.4182625 8.7568364, 49.4193652 8.7352358, 49.4186075 8.6904514, 49.4244810 8.6872622, 49.4113164 8.7037968 +3.1898615003168422 +6 +yes +62 + +Musée en Herbe and 48.8651191 2.3417893 +yes +0 +11 +55.9676146 -3.1851220, 55.9389497 -3.1762486, 55.9342639 -3.1910771, 55.9468366 -3.1927193, 55.9242098 -3.2136549, 55.9267237 -3.2541012, 55.9526315 -3.2227477, 55.9543654 -3.2231640, 55.9545272 -3.4038103, 55.9848485 -3.4000740, 55.9895563 -3.3951093, 55.9138101 -3.1625880, 55.9139003 -3.1561271, 55.9021949 -3.1741206, 55.9311802 -3.1650916, 55.9494846 -3.2921322, 55.9535070 -3.1763750, 55.9591815 -3.2287132, 55.9369214 -3.2287710, 55.9293858 -3.1242296, 55.9546952 -3.1369685, 55.9449272 -3.0905058, 55.9265280 -3.1510008, 55.9668042 -3.1974105, 55.9263848 -3.3788125, 55.9087627 -3.3266637, 55.9776103 -3.2998329, 55.9696978 -3.1493775, 55.9540379 -3.1861370, 55.9719475 -3.1703032, 55.9456846 -3.1922146, 55.9090994 -3.2562932, 55.9085063 -3.2557150, 55.9631419 -3.1680076, 55.9534792 -3.1860301, 55.9242973 -3.3802986, 55.9399663 -3.2242828, 55.9577753 -3.1497155, 55.9684461 -3.1977309, 55.9534894 -3.1860583 +55.9440818 -3.1852249, 55.9358639 -3.2091972, 55.9581960 -3.2080531, 55.9457066 -3.2037108, 55.9457048 -3.2038263, 55.9381992 -3.2057222, 55.9504119 -3.1888113, 55.9736874 -3.1725679, 55.9512937 -3.2112702, 55.9057072 -3.2230862, 55.9747341 -3.1674332, 55.9573347 -3.1870575, 55.9537621 -3.1970655, 55.9551635 -3.1504704, 55.9568932 -3.1877875, 55.9573876 -3.1882337, 55.9570085 -3.1883445, 55.9541450 -3.1874076, 55.9500005 -3.2077642, 55.9570708 -3.1852020, 55.9779143 -3.1684989, 55.9484747 -3.1864289, 55.9506787 -3.2078124, 55.9551362 -3.1957630, 55.9462645 -3.1891555, 55.9512756 -3.2096210, 55.9599075 -3.1821970, 55.9489030 -3.2106596, 55.9484187 -3.2061447, 55.9474318 -3.2069644, 55.9584582 -3.1901573, 55.9498913 -3.2084020, 55.9537298 -3.1906031, 55.9468703 -3.2158788, 55.9514905 -3.2100788, 55.9513702 -3.2115575, 55.9426500 -3.2040985, 55.9562845 -3.2025675, 55.9545246 -3.1975013, 55.9540721 -3.1972479, 55.9534114 -3.1989539, 55.9526918 -3.2040299, 55.9525837 -3.2041424, 55.9523166 -3.2057181, 55.9498027 -3.2080511, 55.9498942 -3.1936994, 55.9539653 -3.2006949, 55.9544427 -3.1980662, 55.9538261 -3.1967340, 55.9564594 -3.1856577, 55.9515458 -3.2098937, 55.9511347 -3.2096344, 55.9521380 -3.1995558, 55.9509356 -3.1902406, 55.9532211 -3.1977817, 55.9902692 -3.3964391, 55.9454485 -3.2050417, 55.9431786 -3.2083293, 55.9497597 -3.2074169, 55.9396572 -3.1699848, 55.9486923 -3.1882174, 55.9504304 -3.2082409, 55.9583336 -3.2079185, 55.9569349 -3.1875427, 55.9486091 -3.1930739, 55.9481394 -3.1916619, 55.9569966 -3.1852890, 55.9487847 -3.1860065, 55.9485463 -3.1864684, 55.9480207 -3.1915820, 55.9509189 -3.1904398, 55.9496956 -3.1870785, 55.9577513 -3.2066055, 55.9539831 -3.1996939, 55.9586760 -3.1904335, 55.9525280 -3.2044479, 55.9382960 -3.1915886, 55.9581180 -3.1897621, 55.9462480 -3.2126362, 55.9473523 -3.1859232, 55.9463053 -3.1838351, 55.9541892 -3.2015393, 55.9593280 -3.2143392, 55.9428529 -3.2085302, 55.9492302 -3.1861131, 55.9570806 -3.1866874, 55.9457080 -3.2036262, 55.9511467 -3.1887459, 55.9563435 -3.1858006, 55.9529904 -3.1899776, 55.9499129 -3.2079909, 55.9489093 -3.1872526, 55.9496224 -3.1870411, 55.9505002 -3.1861418, 55.9499058 -3.1934663, 55.9518140 -3.2061799, 55.9524600 -3.1964337, 55.9771931 -3.1800325, 55.9548523 -3.1975703, 55.9541427 -3.2007844, 55.9519939 -3.2024014, 55.9575734 -3.1846236, 55.9436148 -3.1938586, 55.9531932 -3.1908602, 55.9681781 -3.2341337, 55.9504120 -3.2083047, 55.9464399 -3.2053995, 55.9526758 -3.2033575, 55.9486336 -3.1870666, 55.9481456 -3.1868202, 55.9481205 -3.1869530 +http://buffalogrill.co.uk +1 +55.9417924 -3.1946357 +48.8503975 2.3429508, 48.8628907 2.3351275, 48.8699382 2.3403209, 48.8728847 2.2989591, 48.8732083 2.2979398, 48.8728311 2.3429546, 48.8516699 2.3435357, 48.8530171 2.3437086, 48.8612868 2.3461069, 48.8738880 2.3330270, 48.8470189 2.3431051, 48.8464568 2.3019875, 48.8609735 2.3437850, 48.8759526 2.3241920, 48.8714760 2.3040923, 48.8715977 2.3051329 +info@hotel-etab.de, info@ritter-heidelberg.de, info@sudpfanne-heidelberg.de, info@molkenkur.de, info@hoteldenriko-hd.de +yes +14 +steak house, italian, chinese, sudanese, indian, thai, spanish, japanese, regional, cantonese, pie, american, seafood, pizza, french, greek, vegetarian, Japanese, mexican, mongolian, kurdish, Lebanese, middle eastern, noodle, asian, turkish, Cantonese, Malaysian, korean, brazilian, fish, international, sushi, burger, arab, vietnamese, scottish, latin american, caribbean, chicken, african, tapas, malaysian, Scotish, Punjabi, british, portuguese, soup, mediterranean, Middle Eastern, fish and chips, nepali, nepalese, sandwich, kebab, curry, coffee shop +43 +en:Edinburgh +8.5077722 125.9789017, 8.5070910 125.9786762 +yes and 6 +78 +48.8622200 2.3675608 +no ++44 131 667 1264 +1.5214474225480654 +55.9509120 -3.1684417, 55.9505684 -3.1636997, 55.9409571 -3.1518694, 55.9414904 -3.1501988, 55.9414101 -3.1510969, 55.9303650 -3.2001800 +Glenogle Swim Centre, Dollar Academy Swimming Pool, Peebles Swimming Pool, Ochil Leisure Centre, Drumsheugh Baths Club +49.4220712 8.6747880, 49.4338914 8.6803397, 49.4248554 8.6842438, 49.4181588 8.6814978, 49.4183470 8.6872741, 49.4197789 8.6871221, 49.4207750 8.6845900, 49.4220217 8.6830623, 49.4248833 8.6877871, 49.4285458 8.6851837, 49.4312787 8.6910498, 49.4329833 8.6806293, 49.4143251 8.7187531, 49.4277498 8.6794326, 49.4376060 8.6778079, 49.4151221 8.7620371 +episcopal, roman catholic +yes +11 +49.4045638 8.6759283 and 49.4081513 8.6723497 +52.0583801 8.5520281, 52.0441674 8.5341281, 52.0051281 8.5264278, 52.0107287 8.5202197, 52.0037833 8.5215969, 52.0065591 8.5759589, 51.9843934 8.5268438, 51.9568591 8.5479920, 52.0112149 8.5297888, 52.0926733 8.5329308 +251 +20 mph, 20 mph, 20 mph, 20 mph, 20 mph, 20 mph +yes +no +33 +Vendôme +1 +no +1 +10.474760204172419 +3 and 55.9276315 -3.2611513, 55.9481163 -3.2005051, 55.9480729 -3.2006300 +Mo-Sa 9:00 +146 +yes +Currie RFC, Broughton Rugby Club +yes +49.4132459 8.7086805 +yes +http://www.carondebeaumarchais.com/, http://www.paris-hotel-lion.com, http://edenhotel-montmartre.com, http://www.solmelia.com, http://www.accorhotels.com/fr/hotel-1400-ibis-paris-tour-eiffel-cambronne-15eme/index.shtml, http://www.citadines.com, http://www.hotelbelorangerparis.com/, http://www.hovicha.com, http://hallehotel.fr/, http://www.bestwestern-folkestoneopera.com/, http://www.hotelsydneyopera.com/, http://lewaltparis.com/fr, http://www.pershinghall.com, http://hotelmonnalisa.com/fr, http://www.hotel-faubourg-216-214-paris.federal-hotel.com/, http://www.marcianohotel-garedunord.com, http://www.paris-hotel-americain.com/, http://www.hotelgeorgette.com, http://www.raphael-hotel.com/, http://www.colordesign-hotel-paris.com, http://www.foch-paris-hotel.com/, http://www.hotel-studio.com/, http://hotelderbyalma.com/fr, http://www.hotel-leswann.com/, http://www.astotel.com/hotel-acadia-opera-paris.php, http://www.hotelroncerayopera.fr, http://www.hoteldamiens.com/, http://www.paris-hotel-desarts.com, http://www.hotel-delos-vaugirard-paris.com/, avalonparis.com, www.paris-saint-honore.com, http://www.hipotel.info/fr/hipotel-paris-nation, hotel-11.html, www.parishotellittleregina.com/, http://www.plaza-opera-paris.com/, http://www.villaoperalamartineparis.com/, http://www.hotel-montmartre-duperre.com, http://www.hotel-splendid-paris.com, http://www.novotel.com/fr/hotel-1834-novotel-paris-porte-d-orleans, http://www.shangri-la.com/paris, http://www.alesia-paris-hotel.com, http://www.61-paris-nation-hotel.com, http://www.amhotelitalie.com, http://hotelarian.com, http://www.hotel-meridional-paris.com/, http://www.pvhotel.com, http://www.clarisse-paris-hotel.com, http://parisportedeversailles.medianhotels.com, http://www.villa-royale-montsouris-paris.com, http://www.hotelvirgina.com, http://www.parishotelmontsouris.com, http://www.cecil-hotel-montparnasse.com, http://www.parc-hotel-paris.com, http://www.hotelduparcstcharles.com, http://www.sourcehotel.fr, http://www.hotel-turenne.com, http://www.hotel-petit-belloy-saint-germain.com/, http://www.hotel-paris-belloy.com/, http://www.cordelia-paris-hotel.com/, http://www.astotel.com/hotel-bergere-opera-paris.php, http://www.jardindevilliers.com, http://www.pavillon-monceau-etoile.com, http://www.leshotelsdeparis.com/fr/nos-hotels/fiche/20/pavillon-villiers-etoile.html, www.beausejour-montmartre.com, http://lemarquisparis.com/fr, http://www.hotelroyalsaintmichel.com/, http://www.hotelchopin.fr/, www.hotelparispaix.com, http://www.perreyve-hotel-paris-luxembourg.com, http://www.hoteldelavenir.com/fr/, http://www.hotel-istria-paris.com/, http://www.paris-hotel-lavallee.com, http://hotellabourdonnais.fr/, http://www.villa-montparnasse.com/, http://www.accorhotels.com/de/hotel-8465-ibis-styles-paris-pigalle-montmartre/index.shtml, www.hotelfertel.com, http://www.hotelnovanox.com/, http://www.radissonblu.com/dokhanhotel-paristrocadero, www.academiehotel.com, http://www.hoteldutriangledor.com/, http://www.hoteldesers-paris.com, http://www.hotelbelami-paris.com, http://www.hoteledouard7-paris.com, http://paris.peninsula.com, http://www.amadeus-hotel-paris.com/, http://www.pinkhotel.fr/en, hotelajiel.com, http://lerobinetdor.com, http://www.hoteldevenise.fr/, http://www.hotel-josephine.com, http://www.kipling-hotel.com/, http://www.midi-hotel-paris.com/, www.hotel-bb.com/fr/-/hotelByName.htm?id=4560, http://www.hotelelyseesmonceau.com/, http://www.hotelneworient.com/, http://www.timhotel.com/fr/nos-hotels-paris-opera-st-lazare.htm, http://www.fred-hotel.com/, www.mltr.fr/en/, http://www.hotelsophiegermain.com/, http://www.hotel-paris-saint-germain.com/, http://www.hoteltourmaubourgparis.com/, http://hotelbearnais.e-monsite.com/, http://hotel-mimosa.parishotelinn.com/, http://www.new-hotel.com/fr/hotels-paris/candide, http://hotel-paris-rougemont.com, www.hotel-bresil-opera.com, http://www.hdroubaix.fr/, http://1eretage.com, http://www.splendid-hotel-paris.com/, http://www.hotelalyss.fr/, novotelparis.com, http://www.pullmanhotels.com/, http://www.timhotel.com/, http://www.hotel-diana-paris.com/, http://www.hotelpratic.com, http://www.hotel-bastille-speria.com/, http://www.paris-hotel-senlis.com/, https://www.facebook.com/pages/H%C3%B4tel-Pavillon-Op%C3%A9ra/196645590444280, http://www.bristolnord.fr/, http://www.hotel-provinces-opera.com/fr/hotel-provinces-opera-paris/index/index, http://www.hotelmontanalafayette.com/, http://www.hoteldescomedies.com/, http://www.st-christophers.co.uk, http://www.albert1erhotel.com/, http://www.hotelhorloge.fr/, http://www.ibishotel.com/gb/hotel-1399-ibis-paris-bastille-opera-11eme/index.shtml, http://www.choicehotels.fr/fr/comfort-hotel-fr260, http://www.ibishotel.com/fr/hotel-1401-ibis-paris-la-villette-cite-des-sciences-19eme/location.shtml, http://www.hoteloperamarignyparis.com, http://www.hotelducollectionneur.com/, http://www.hotel-rotary.fr/, http://www.lecardinal.fr/, http://www.hotel-touring.fr/, www.hotel-monterosa-opera.com, http://www.hotelvernet.com/, http://www.lilas-gambetta.com/, http://eldoradohotel.fr/notre-hotel/, http://www.mercure.com/fr/hotel-0934-mercure-paris-austerlitz-bibliotheque/index.shtml, hotelroyalfromentin.com, http://www.solarhotel.fr/, http://www.paris-orleans-hotel.com, http://www.acropole-paris-hotel.com/, http://www.leshotelsdeparis.com/fr/hotel/paris-batignolles-villa-eugenie.8.html, www.hotel-opera-batignolles-paris.com, http://www.accorhotels.com/fr/hotel-3546-novotel-paris-tour-eiffel/, http://www.accorhotels.com/fr/hotel-6790-adagio-paris-tour-eiffel/, http://www.hotel-lilas-blanc-paris.fr/, http://www.hotel-hor.com/, http://www.paris-hotel-tourville.com/fr +yes +55.9455830 -3.1876260 +48.8373758 2.2723483, 48.8479197 2.3992555, 48.8480669 2.2646701, 48.8336197 2.4448135, 48.8374741 2.2964370, 48.8426769 2.2964541, 48.8447051 2.3110485, 48.8418578 2.3031404, 48.8356667 2.3025546, 48.8418917 2.2973124, 48.8375362 2.2963597, 48.8371698 2.2968218, 48.8411351 2.2996815, 48.8513729 2.3428143, 48.8267972 2.3644166, 48.8266959 2.3418366, 48.8313237 2.3160082, 48.8276961 2.3323037, 48.8526158 2.3471643, 48.8536884 2.3438503, 48.8465209 2.3169152, 48.8223603 2.3376975, 48.8333496 2.3122320, 48.8468908 2.3696558, 48.8422395 2.3861184, 48.8463028 2.3793259, 48.8399294 2.4045970, 48.8448378 2.4051177, 48.8474520 2.4048594, 48.8473395 2.4060719, 48.8350796 2.4339399, 48.8357403 2.4304678, 48.8375477 2.4255552, 48.8346793 2.4193483, 48.8554435 2.3595073, 48.8529019 2.3430541, 48.8502442 2.3485713, 48.8410791 2.3878034, 48.8364073 2.3595567, 48.8325568 2.3113862, 48.8326306 2.3560783, 48.8397407 2.3618144, 48.8430681 2.3643136, 48.8548336 2.3455606, 48.8552512 2.3476157, 48.8553803 2.3476867, 48.8554064 2.3475533, 48.8552816 2.3474675, 48.8316089 2.3555656, 48.8578487 2.2776036, 48.8561596 2.2803320, 48.8587309 2.2850498, 48.8503867 2.2499063, 48.8474160 2.2734653, 48.8578293 2.2627189, 48.8522460 2.2310858, 48.8561113 2.3406430, 48.8359176 2.2934497, 48.8415640 2.2914435, 48.8321096 2.3027626, 48.8488952 2.2875621, 48.8450063 2.2934495, 48.8428146 2.3128644, 48.8584946 2.2687106, 48.8582201 2.2684874, 48.8580507 2.2679638, 48.8477318 2.3279086, 48.8587970 2.2574756, 48.8462050 2.3548474, 48.8445578 2.3478015, 48.8397766 2.3563951, 48.8439889 2.3550231, 48.8400361 2.3581380, 48.8403571 2.3507117, 48.8374935 2.3535342, 48.8379182 2.3556557, 48.8392719 2.3386499, 48.8382351 2.3417326, 48.8501724 2.3668483, 48.8551549 2.3558324, 48.8554797 2.2377372, 48.8509506 2.2377234, 48.8553933 2.4000637, 48.8276950 2.3526554, 48.8480846 2.3334838, 48.8451543 2.3325456, 48.8474379 2.3363959, 48.8503580 2.3831342, 48.8570290 2.3204791, 48.8321351 2.3486444, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8293528 2.3802852, 48.8298995 2.3795486, 48.8188018 2.3371410, 48.8185040 2.3384113, 48.8181578 2.3401279, 48.8370007 2.3812275, 48.8204882 2.3602086, 48.8203447 2.3628121, 48.8199857 2.3627088, 48.8339810 2.3847461, 48.8353141 2.3838347, 48.8352990 2.3814978, 48.8418885 2.2735712, 48.8428738 2.2978005, 48.8243977 2.3360819, 48.8297310 2.3179488, 48.8516782 2.3146314, 48.8365930 2.3046690, 48.8363767 2.4236251, 48.8295071 2.4201091, 48.8212233 2.4336070, 48.8300361 2.4231832, 48.8295708 2.4234828, 48.8384857 2.3139931, 48.8425610 2.3055230, 48.8291280 2.4377720, 48.8488720 2.3128820, 48.8345717 2.3321583, 48.8350776 2.4353579, 48.8517060 2.3188780, 48.8430906 2.4215578, 48.8322990 2.3969380, 48.8397680 2.3287550, 48.8562087 2.3767474, 48.8556820 2.3852020, 48.8238387 2.3531949, 48.8315645 2.4109263, 48.8312210 2.4129893, 48.8532780 2.2711410, 48.8311370 2.3128840, 48.8555310 2.3895370, 48.8551080 2.3942800, 48.8459400 2.2689590, 48.8270122 2.3540304, 48.8424551 2.3888122, 48.8501704 2.3439958, 48.8398489 2.2904585, 48.8585128 2.2948820, 48.8525988 2.4088082, 48.8307590 2.3592040, 48.8526713 2.3815527, 48.8417000 2.3374070, 48.8210197 2.3568688, 48.8523510 2.2944030, 48.8383280 2.2782440, 48.8433760 2.3364170, 48.8504870 2.3502540, 48.8289169 2.3068462, 48.8530930 2.2487630, 48.8483008 2.3594250, 48.8510180 2.2721570, 48.8417750 2.2766630, 48.8581770 2.2475410, 48.8559797 2.2830925, 48.8304600 2.4499760, 48.8366079 2.4625007, 48.8185772 2.3545050, 48.8221640 2.3407800, 48.8229962 2.3483008, 48.8548880 2.3860580, 48.8334140 2.3198533, 48.8342986 2.3307561, 48.8512040 2.3336860, 48.8519135 2.2527965, 48.8211700 2.3525560, 48.8412050 2.4011810, 48.8325969 2.4424252, 48.8280471 2.4193059, 48.8341687 2.4613030, 48.8521115 2.2541524, 48.8319760 2.4160891, 48.8322537 2.4156461, 48.8385501 2.4606113, 48.8237496 2.4396773, 48.8234381 2.4570355, 48.8302710 2.4501255, 48.8515696 2.2338766, 48.8272306 2.4306540, 48.8308745 2.4295234, 48.8404327 2.4302364, 48.8351339 2.4507573, 48.8355228 2.4555897, 48.8270280 2.4256131, 48.8523056 2.3854632, 48.8283394 2.3695038, 48.8316594 2.3202088, 48.8515687 2.3455917, 48.8221234 2.3755099, 48.8501856 2.3598181, 48.8543340 2.3134030, 48.8479841 2.3021348, 48.8381900 2.2706380, 48.8373130 2.3123540, 48.8319794 2.3254293, 48.8285390 2.2936320, 48.8581731 2.4063523, 48.8581782 2.3488219, 48.8252925 2.3693389, 48.8528480 2.3236680, 48.8366880 2.3168190, 48.8311305 2.3217527, 48.8281910 2.2975610, 48.8224115 2.3234656, 48.8563720 2.3423640, 48.8488580 2.3354220, 48.8323838 2.3266258, 48.8302050 2.3165310, 48.8578985 2.3627922, 48.8338684 2.3623631, 48.8186719 2.3602335, 48.8311679 2.3698529, 48.8353270 2.3472350, 48.8512390 2.2749420, 48.8389116 2.2802003, 48.8435250 2.3852390, 48.8239822 2.3186264, 48.8268397 2.3045308, 48.8582469 2.3636013, 48.8411853 2.3632232, 48.8432899 2.3273991, 48.8501986 2.3439620, 48.8295130 2.2974440, 48.8505319 2.3140947, 48.8513900 2.2954500, 48.8519585 2.3815373, 48.8486812 2.4047540, 48.8186727 2.3590770, 48.8422355 2.3539722, 48.8509163 2.4000959, 48.8399790 2.2978655, 48.8569010 2.3829850, 48.8394056 2.4219004, 48.8491125 2.4034753, 48.8387600 2.3533490, 48.8570556 2.3709415, 48.8446043 2.3875639, 48.8544710 2.3306000, 48.8444200 2.2902970, 48.8482791 2.3738928, 48.8541916 2.4013975, 48.8477459 2.4005894, 48.8401440 2.3004225, 48.8315105 2.3698744, 48.8377715 2.3234750, 48.8451934 2.3802706, 48.8437212 2.3551124, 48.8313290 2.3203574, 48.8450099 2.3109341, 48.8243135 2.3638527, 48.8412410 2.2855118, 48.8219932 2.3234435, 48.8211670 2.3407757, 48.8536514 2.3489902, 48.8408330 2.4201155, 48.8337204 2.3201626, 48.8338246 2.3197979, 48.8548000 2.3455200, 48.8527000 2.3492200, 48.8518000 2.3475300, 48.8242821 2.4231989, 48.8387842 2.4064887, 48.8321456 2.3262397, 48.8449387 2.4418585, 48.8563416 2.2955451, 48.8516633 2.4098056, 48.8559569 2.4014635, 48.8264004 2.4327560, 48.8189971 2.3575128, 48.8323795 2.3620094, 48.8520536 2.4091515, 48.8198844 2.3619743, 48.8195477 2.3338738, 48.8569678 2.3519723, 48.8499865 2.3481714, 48.8420092 2.4240851, 48.8232610 2.3543235, 48.8232751 2.3542283, 48.8359580 2.3022176, 48.8237907 2.3314831, 48.8303745 2.3751493, 48.8296235 2.3814150, 48.8300792 2.4152641, 48.8419664 2.3871201, 48.8283387 2.3766344, 48.8238319 2.3396086, 48.8441811 2.3576296, 48.8310374 2.3779683, 48.8226090 2.3400474, 48.8239560 2.3366723, 48.8527614 2.3515044, 48.8577082 2.3492535, 48.8564552 2.3511205, 48.8421923 2.2737321, 48.8386247 2.2767307, 48.8276674 2.3600431, 48.8279422 2.3594556, 48.8281470 2.3775133, 48.8585066 2.2446643, 48.8316089 2.3555656, 48.8316089 2.3555656, 48.8243136 2.4192238, 48.8365007 2.3061630, 48.8408118 2.2763450, 48.8487971 2.2855992, 48.8305375 2.3580300, 48.8527458 2.3514040, 48.8340933 2.3218873, 48.8342849 2.3425292, 48.8361094 2.3872805, 48.8563876 2.4098516, 48.8479507 2.3346295, 48.8531320 2.3882360, 48.8548595 2.4101096, 48.8572052 2.2975105, 48.8287592 2.3789983, 48.8289978 2.3792237, 48.8324901 2.4167426, 48.8325371 2.4171377, 48.8528020 2.4110674, 48.8220651 2.3497136, 48.8402419 2.2911223, 48.8556477 2.3481362, 48.8379924 2.3573249, 48.8506007 2.3684957, 48.8279269 2.3606649, 48.8281328 2.3608761, 48.8284210 2.3605021, 48.8290169 2.3599418, 48.8313949 2.3614586, 48.8502691 2.3768309, 48.8514077 2.3619724, 48.8557425 2.3657180, 48.8557863 2.3654533, 48.8405076 2.4080728, 48.8407300 2.4111999, 48.8420117 2.4099305, 48.8435586 2.3837116, 48.8463579 2.4045679, 48.8467508 2.4047042, 48.8481084 2.4046457, 48.8358697 2.3734634, 48.8362808 2.3737861, 48.8444058 2.3789793, 48.8307541 2.4193421, 48.8209696 2.4454995, 48.8453348 2.3532344, 48.8223127 2.4420635, 48.8279008 2.3224596, 48.8446258 2.3602639, 48.8458322 2.3604678, 48.8584687 2.3716161, 48.8519327 2.2866969, 48.8442777 2.3588710, 48.8394931 2.3179481, 48.8363713 2.3098813, 48.8541415 2.3560013, 48.8311641 2.3746022, 48.8542855 2.3695398, 48.8528043 2.2296278, 48.8333281 2.4112207, 48.8262202 2.3382130, 48.8558055 2.3475517, 48.8274926 2.3487405, 48.8569072 2.3367906, 48.8578391 2.3144195, 48.8322747 2.4077869, 48.8360719 2.3733952, 48.8448709 2.3364362, 48.8416099 2.3879001 +48.8816147 2.3662734 +49.4281511 8.6459692, 49.4125367 8.6855473 +no +yes +yes +yes +memorial +49.3739107 8.6909097, 49.3713314 8.7028037, 49.3850544 8.7330464, 49.4097122 8.7046791, 49.4098081 8.7046720, 49.4099450 8.7051253, 49.3723815 8.7071343, 49.3754626 8.7070625, 49.3797626 8.7037146, 49.3801897 8.7070339, 49.3932880 8.6714724, 49.4222073 8.6781335, 49.3974038 8.6518946, 49.4096830 8.7101016, 49.3800437 8.6930515, 49.3802524 8.6929817, 49.3764832 8.7075953, 49.4155629 8.6774631, 49.4155606 8.6773033, 49.3800114 8.6723563, 49.3763838 8.6668059, 49.3780150 8.6574828, 49.3750204 8.6640543, 49.3722470 8.6819223, 49.3891416 8.6884199, 49.3891062 8.6883661, 49.3891536 8.6883629, 49.4155672 8.6773731, 49.4174902 8.7604367 +84 +48.8484038 2.3977491, 48.8512856 2.2781094, 48.8467839 2.2854077, 48.8332389 2.3329284, 48.8526288 2.3385336, 48.8925057 2.3450965, 48.8536039 2.3444118, 48.8515050 2.3430786, 48.8473294 2.3412516, 48.8312038 2.3565530, 48.8806072 2.3538936, 48.8347711 2.3321841, 48.8278860 2.3709325, 48.8695890 2.2848365, 48.8581077 2.3801470, 48.8317286 2.3137879, 48.8668650 2.2788566, 48.8697674 2.2857979, 48.8424148 2.4052197, 48.8448799 2.3727316, 48.8815590 2.3150046, 48.8903495 2.3201315, 48.8941941 2.3135794, 48.8704998 2.3049572, 48.8854539 2.2915179, 48.8898626 2.3035373, 48.8774012 2.4069914, 48.8980267 2.3289128, 48.8844761 2.2976487, 48.8584436 2.3037809, 48.8795960 2.3896580, 48.8827367 2.3814655, 48.8420110 2.3206428, 48.8615010 2.3537550, 48.8645112 2.3981788, 48.8798173 2.3215782, 48.8747412 2.3049062, 48.8700986 2.3070512, 48.8687272 2.2986811, 48.8764317 2.3015489, 48.8748073 2.2956078, 48.8679763 2.2954876, 48.8666447 2.2899845, 48.8714962 2.2934996, 48.8659060 2.2863973, 48.8634029 2.2863046, 48.8617450 2.2859062, 48.8586868 2.2849457, 48.8482990 2.2647021, 48.8776228 2.3708847, 48.8780030 2.3781296, 48.8873966 2.3492159, 48.8831639 2.3275572, 48.8374622 2.2575596, 48.8527859 2.4060423, 48.8764243 2.3592623, 48.8663059 2.3244457, 48.8579055 2.3100803, 48.8655795 2.3559318, 48.8473587 2.3122933, 48.8766198 2.3392717, 48.8832546 2.3471915, 48.8460393 2.3780826, 48.8383701 2.3607602, 48.8320548 2.3861467, 48.8432250 2.4013484, 48.8226361 2.3257162, 48.8429514 2.3751858, 48.8597360 2.3466694, 48.8606298 2.3466023, 48.8445008 2.4411062, 48.8502906 2.3928948, 48.8715042 2.3426369, 48.8721397 2.3393564, 48.8538475 2.3325263, 48.8975838 2.3287233, 48.8937759 2.3363457, 48.8391806 2.3825585, 48.8672161 2.3065357, 48.8652369 2.3013632, 48.8616106 2.3019528, 48.8622551 2.3149819, 48.8538751 2.3124512, 48.8650500 2.3013405, 48.8541706 2.3068705, 48.8699915 2.3014172, 48.8713160 2.3009696, 48.8756033 2.3260400, 48.8630530 2.3526294, 48.8462434 2.3767506, 48.8793033 2.3034301, 48.8682598 2.4015540, 48.8567698 2.3537979, 48.8257810 2.3469176, 48.8600781 2.3465254, 48.8325620 2.3618635, 48.8284670 2.3264398, 48.8666879 2.3641696, 48.8679052 2.3646802, 48.8679443 2.3620076, 48.8606611 2.3260607, 48.8307729 2.3768467, 48.8494789 2.3371871, 48.8521348 2.3393496, 48.8772711 2.3269492, 48.8764858 2.3319975, 48.8846924 2.3795882, 48.8306144 2.2924114, 48.8767391 2.3608267, 48.8643491 2.2725788, 48.8982278 2.3591507, 48.8607328 2.3456697, 48.8236433 2.3530302, 48.8643981 2.3303564, 48.8891585 2.3938039, 48.8577770 2.3473733, 48.8634279 2.3351782, 48.8680916 2.3299623, 48.8691985 2.3546294, 48.8659300 2.3408572, 48.8662586 2.3612125, 48.8553209 2.3603751, 48.8369707 2.3521360, 48.8500790 2.3487204, 48.8432193 2.3520318, 48.8498863 2.3550274, 48.8434713 2.3236014, 48.8530282 2.3354092, 48.8402189 2.3365313, 48.8505206 2.3272579, 48.8512092 2.3331634, 48.8390765 2.3825241, 48.8795760 2.3490326, 48.8705443 2.3327006, 48.8383042 2.3198337, 48.8674579 2.3471327, 48.8312696 2.3876594, 48.8739447 2.3858048, 48.8586994 2.3420105, 48.8774490 2.3940074, 48.8698623 2.3116804, 48.8773384 2.2845223, 48.8196076 2.3652124, 48.8507063 2.3842333, 48.8499085 2.2830749, 48.8374271 2.2573332, 48.8449422 2.3117076 +yes +69 +yes +49.4093101 8.6901583, 49.4143869 8.6899597, 49.4139013 8.6749258, 49.4248386 8.6500213, 49.4288946 8.6862100, 49.4093409 8.7060374, 49.4327974 8.6870571, 49.4120976 8.7096738, 49.3881468 8.6882271, 49.4265924 8.6873755, 49.4085805 8.6761541, 49.3735956 8.7030427, 49.4184415 8.6866326, 49.4137573 8.6875431, 49.4153849 8.6793794, 49.4179555 8.6907278, 49.3742423 8.6884112, 49.3900974 8.6883942, 49.4039055 8.6875262, 49.3802640 8.6848463, 49.3939262 8.6891470, 49.3808161 8.6905517, 49.4107678 8.7077166, 49.4109456 8.7019862, 49.4084979 8.6820569, 49.4221852 8.6481987, 49.4021663 8.6853834, 49.4241320 8.6487812, 49.4135832 8.7467488, 49.4150755 8.7624400, 49.4009918 8.6487321, 49.4179683 8.6470075, 49.4086991 8.6956172, 49.4241298 8.7517914, 49.4094426 8.7049844, 49.3847829 8.6684390, 49.3741112 8.6828543, 49.4187468 8.7410394, 49.4190608 8.6828828, 49.4215697 8.7459451, 49.4178193 8.7615639, 49.4232075 8.7514541, 49.3772124 8.6950909, 49.3996303 8.6483178, 49.4148094 8.6905503, 49.4147513 8.7446806, 49.4507187 8.6805587, 49.4123406 8.7658191, 49.3806294 8.6690978, 49.3774636 8.6689696, 49.4425562 8.7519151, 49.4089016 8.6607853, 49.4092616 8.7016317, 49.3945251 8.6755375 +43.7664929 18.3535825, 44.2896741 15.6537867, 44.3264780 15.6433627, 45.2337684 15.2892971, 44.5101841 15.3495223, 44.4705608 15.4173313, 44.4751372 15.4385411, 44.7733183 15.3869753, 44.4910625 15.3782271, 44.0724807 15.3130756, 21.3360353 -16.9459997, 20.9492813 15.9726608, 21.8492245 16.8967277, 20.9750733 17.7334272, 20.9094174 16.8685063, 20.4523631 16.1290912, 22.4530928 15.4363980, 21.7754508 18.1805126, 21.3743204 18.4383005, 22.1296163 17.8504124, 22.1904408 15.5147673, 21.4505738 15.6305549, 22.6133280 17.6370485, 22.3151509 17.4188694, 21.3686150 15.9276802, 20.1854999 16.2879988, 21.3599348 -14.9204289, 21.3650445 -14.8973307, 21.3668635 -14.8744984, 21.3635091 -14.8571239, 21.3636398 -14.8389932, 21.3707952 -14.8205624, 21.3853801 -14.8028273, 21.4013151 -14.7870649 +yes +chaplin.cine.allocine.fr/ +31 +yes +48.8431940 2.3077472, 48.8626842 2.3440139, 48.8420601 2.3893615, 48.8712781 2.3788190, 48.8833055 2.3634273, 48.8928628 2.3852622, 48.8432854 2.3234991, 48.8604940 2.3703861, 48.8778547 2.3450664, 48.8945576 2.3189168, 48.8718145 2.3694849, 48.8663395 2.3827900, 48.8519343 2.3358691, 48.8590336 2.4068235, 48.8450131 2.3275380, 48.8641166 2.2565095, 48.8641719 2.2560642, 48.8845953 2.3994143, 48.8805352 2.3776953, 48.8824472 2.3896512, 48.8754975 2.4067088, 48.8589726 2.4117533, 48.8424436 2.3891943, 48.8271228 2.3523768, 48.8306882 2.3630641, 48.8662977 2.2354791, 48.8663590 2.2353455, 48.8725599 2.2603094, 48.8941767 2.3635473, 48.8451052 2.2533915, 48.8487418 2.2847647, 48.8269156 2.3528936, 48.8361129 2.3760717, 48.8416334 2.4125661, 48.8268674 2.3526069, 48.8996348 2.3424245, 48.8886701 2.2955676, 48.8451517 2.2531130, 48.8319309 2.2752879, 48.8312772 2.2751131 +60 +Source qui soudre en forêt +no +47.0113110 -2.2691251, 46.7888250 -2.0576251, 46.9063870 -1.9950580, 46.7024790 -1.9759189, 46.6867850 -1.9285797, 46.6966810 -1.9273174, 46.8035650 -1.8961811, 46.8405360 -1.8726865, 46.6938800 -1.8117144, 46.7558570 -1.7355998, 46.5149670 -1.6891804, 46.9304349 -1.5206185, 46.4262130 -1.5082338, 46.5657450 -1.4701344, 46.6910210 -1.4334116, 46.4132690 -1.3877876, 46.4601690 -1.3413189, 46.5127790 -1.1751825, 46.9978370 -1.1655148, 46.5520070 -1.1342267, 46.6453850 -1.0722638, 46.9952790 -1.0430830, 46.6295260 -1.0412963, 46.9037440 -0.9942434, 46.6402830 -0.9598096, 47.0003470 -0.9492418, 46.7958500 -0.9316523, 46.6135270 -0.9203828, 46.4864950 -0.9105599, 46.5563530 -0.8909747, 46.9667010 -0.8904510, 46.6332960 -0.8687770, 46.4770990 -0.8109751, 46.6951950 -0.7588256, 46.4960120 -0.7610636, 46.6519810 -0.7403554, 46.6399960 -0.6698064, 46.7509880 -0.8158071, 46.6549032 -1.7890389, 46.6483446 -1.7984566, 46.6635776 -0.6478515, 46.5620795 -1.2928868, 46.6784703 -0.8898247, 46.7393647 -0.9469686, 47.0113178 -2.2691592, 46.9078487 -2.1592365, 46.3891348 -0.5715320, 46.3689327 -0.6006326, 46.8405362 -1.8726852, 46.8035665 -1.8961881, 46.9667151 -0.8904418, 46.9952839 -1.0430730, 46.9063629 -1.9950999, 46.6910145 -1.4334220, 46.6651720 -1.4082438, 46.7101125 -1.9579731, 46.7475420 -2.0092790, 46.7888235 -2.0576175, 46.6867835 -1.9285740, 46.4655970 -0.7764925, 46.7558193 -1.7355336, 46.3435185 -1.3964455, 46.3561397 -1.4181112, 46.4601624 -1.3413233, 46.9304308 -1.5206087, 46.7210217 -2.3581710, 46.6454360 -1.0723820, 46.6452995 -1.0722905, 46.6454225 -1.0721615, 46.6446631 -1.0091057, 46.6713375 -0.8225665, 46.9978405 -1.1655045, 46.5149635 -1.6891766, 46.7042785 -1.3097150, 46.5657750 -1.4701450, 46.5090285 -1.3892430, 46.6135448 -0.9204642, 46.6332970 -0.8687770, 46.7958598 -0.9317600 +242 ++49-6221-166461 +49.4250029 8.6441990, 49.4212804 8.6803337, 49.4178839 8.7566479, 49.3953931 8.6437984, 49.4060392 8.6913843, 49.4074324 8.6892711, 49.4055107 8.6883378, 49.3773316 8.6645506, 49.4250839 8.6878203, 49.4118508 8.7104220, 49.3733279 8.6800078, 49.3795399 8.6903079, 49.4015196 8.6910446, 49.3992360 8.6881358, 49.4050807 8.6859162, 49.4059641 8.6906715, 49.3673207 8.6856127, 49.4075160 8.6918700, 49.4141377 8.6856530, 49.4089906 8.6954114, 49.4017125 8.6915435, 49.4106324 8.6935186, 49.4078980 8.6887347, 49.4056236 8.6605012, 49.3641182 8.7046318, 49.4114125 8.7047336, 49.4059449 8.6866169, 49.4188039 8.6517483, 49.4142758 8.6885716, 49.4105444 8.6933671, 49.3851547 8.6741428, 49.4041507 8.6461773, 49.4359593 8.6807111, 49.4370376 8.6794523, 49.4365028 8.6798184, 49.4366380 8.6786346, 49.3798699 8.6783416, 49.4288530 8.6831190, 49.3839783 8.6664023, 49.4249970 8.6423683, 49.4045725 8.6815467, 49.4137654 8.7752617, 49.4165905 8.6918076, 49.4044754 8.6679758, 49.4262037 8.6391801, 49.3786588 8.6643603, 49.3838340 8.6784060, 49.3829832 8.6783801 +Galerie Vivienne, passages des Princes, Brentano's, Marché U, Marché U, Brentano's, Carrefour City, Franprix, Vélo Electro, Monoprix, Passage des Panoramas, Franprix, Fiat, Franprix, Déco Relief, COPY-TOP Pyramides - Palais Royal, A2 Pas, Dubail, Gaetan Romp, Intermarché Express, Coiffure Auffray Jérôme, Dia, Sajou, Mona Lisait, Franprix, Naturalia, Carrefour City, Jossé, Optic 2000, Chocolatier Pierre Marcolini, Point Soleil, Arnaud DELMONTEL, Pâtisserie Hubert, JouéClub, Papeterie Perjac, Lidl, Moisan, Intermarché Express, Picard, Detrad, Monoprix, Del Duca, H&M, Dynamic Sports, Jean Louis David, La Prestigieuse, Talents - Gallerie d'art, Librairie Gourmande, Au Levain des Martyrs, Droguerie des Martyrs, Frank Provost, Sergent Major, Qee, En Selle Marcel, optigal, Aki boulanger, K-mart, Digixo, Centre Faguet Optique, Liz & lorens, Charly Coup'Hair, Divini Kreol, Jean-Claude Biguine, Les Opticiens Mutualistes, Meubles & Atmosphère, PA Design, Pharmacie Sebag-Meimoun, Retoucherie, Optique Job, kitClope, Dharma Sangh, Jean Louis David, L'Ouvre-Boîte, Levi's Store, Marché Franprix, Motus, Optique d'Hauteville, designOptic, espace SFR, Veetha, Bocoray, Cordonnier, Naturalia, Bio c'Bon, Ace Mart, Copy-Top, Nicolas, Opera Market, Shop, Basler, Monoprix Gourmet Lafayette, Daily Monop, H&M, Mango, Minelli, Juji Ya, Kioko, Monoprix, Home Hair, AppleStore, Burma, Lancel, Mango, Promod, Zara, Stohrer, Legrand Filles et Fils, Kiosque à journaux, Village JouéClub, CKAB -- hackable:Devices, De Fursac, A la Mère de Famille, A la mère de Famille, Franck Provost, Aux Tenailles d'Or, Devialet, monop', Carrefour City, La Cure Gourmande, N.Y.P. Supermarche, DIA, J.C.K. Beauty, Yilpa Telecom, Ting Supermarché Chinois, Hôtel des Ventes Richelieu Drouot, Appear Coiffure, Du Vin et des Bulles, Garden Optique, Institut Trinité, Jardin de Trinité, La Bonbonnière, Pronuptia, Royal Coiffure, Smart Store, Tapis d'Orient, cylia l., Atmosp'Hair, Châteaudun Reprographie, Agences Vaneau, Planitour, i ♥ optic, Le Nouveau Calumet, Boutique SNCF, La Grande Récré, Orange, Le Boulevard du Scooter, AJC, André, Arnaud Dalens, Aux Merveilles de Paris, Boutique SNCF, Carré Soleil, Citadium, Citron Vert, Degrif des Stocks, Délices de Fleurs, Image de France, Itinéraires Lointains, L'Atelier du Sourcil, Mika & Elle, Cadoceur, Cours des Halles, Laverie Éclat, Laverie, Mademoiselle Bio, Majuscule, Monceau Fleurs, Na Na, Nana, New Star, Optical Service, Pampilles, Paris-France Immobilier, Slim Price, À Fleurs et à Mesure, 5 à Sec, Franprix, Uniqlo, Âme et esprit du vin, DLM Paris, E. Dehillerin, Jardin du Louvre, Au Cœur Immaculé de Marie, Librairie Saint-Paul, Miss Papillon, monop’, DIA, Vacant, Le Fournil de Paris, Carrefour City, Minelli, Copilote, L'Orée de Montmartre, Junkudo, librairie japonaise, Naturalia, Franprix, Naturalia, Paul, Paul, Monoprix, Monsieur Fernand, Short Cut, Bio Génération, Chabrol Pressing, A2 pas, Paris Mixte, Van Cleef & Arpels, Gant store, Midoré, Franprix, Macway, vacant, Antoine & Lili, Bel Air, Berenice, COS, Carréblanc, Coccinelle, Cocoon, Colin Régis, Cotélac, Dans le noir, Free Lance, Fleurs de Rhum, Foie Gras Luxe, HO+X, Istella forest, JONAK, Laforêt, Lola Keim, MAX & Co., Marithé François GIRBAUD, Optic 2000, REDSKINS, REPLAY, Richard Gampel, Un amour de Lingerie, Wine Sitting, Yaya-Store, Zadig & Voltaire, a. simon, a. simon, minelli, 50m., Vapostore, Vapostore, Cigartex, Acuitis, Eram, Foncia, Gabor, Gentleman Gallery, Gigi, Générale d'Optique, Hong Lien, Isambert, Jacqueline Riu, La Vaissellerie, Princesse Tam-Tam, Un Jour Ailleurs, marché franprix, Coton Doux, 1001 Piles, Josy Coiffure, Laverie Trevisse, Book-Off, Le Panier Gourmet - Franprix, Le Boudoir de Joséphine, Librairie J.N. Santon, M&G Segas, Nicolas, Le Grenier à Pain "La Fayette", Frank L., Magma, Léopold Coiffure, Van Hoods & Sons, Le Boulanger de Monge, Anne Sémonin, Cyrillus, Le Moulin de la Vierge, Maison Bleue, Orchi Déiste, Au Bonheur du Jour, Polo, Scott & Fox, Yuka, Chic Life, Biguine, Carnaval des Affaires, Celianthe Medus, Conversons, Telecom, Timbres Monnaies, Un deux trois, Edelweiss, Etam, Parashop, Madlyne, Tab, Orchestra, Sergent Major, eclop, René Coudari, Bréal, Caprices d'Antin, Stradivarius, Gigi, Catherine Gérard, Optic 2000, Morgan, Eurodif, Calzedonia, La Chausseria, Empire du Mariage, Sinéquanone, Carys, Shirley, Lola Jones, Maracamicie, Copy Self, Valege, Antonelle, Narda, Me, Optic d'Antin, Du pareil au même, Sephora, C ma vision, Nicolas, Miss Bolsos, Tradition des Vosges, Jeff de Bruges, Shangaï, Reality Pear, Optic 2000, Boutique Debauve et Gallais, Carrefour Market, A2pas, Terra Corsa, Lindt, Claudie Pierlot, Eric Kayser, Le Mille Pâtes, Le Pain Quotidien, XO, Agnès B, Marie sixtine, Jones + Jones, Antoine et Lili, Sail bags, Anne Élisabeth, Princesse tam-tam, Manoush, Les Petites, Le coq sportif, Aux Stocks Permanents, Le Mayol, Nicolas, Franck Provost, Camille albane, HEMA, Manoukian, Bucherer, Librairie Théâtrale, Evolution, Viksen, Exaltation, Mora, La Libreria, La Dimension Fantastique, L'Œil du Huit, Optic 2000, Optic 2000, Tommy Hilfiger, Lacoste, Aigle, Gap, Manfield, Ikks, Desigual, Boulangerie Mariel, Cendrillon Chaussure, G20, Optical Discount, Sunshine, Valéry Lacroix, Letmeknow, La Mie Câline, Audi Bauer, Blouet, Collet, Éric Kayser, Grand Optical, Évolution, Fragonard, Afwosh, Arthur Joaillier, Ata, Bienvenue, Bio C Bon, Bruno, Candy, Carré Voyage, Ceda Eclairage, Cyclo de ville, Balibert, Did'Ho, Jamin Puech, L'Atelier De Pablo, La maison du sans gluten, Liliane de Matos, Lin Zen, Mekerbeche, Miss Victorya, Picard, Poppy, Shanghai Zen, Stop Papeterie, Tulipe, Planète Optic, Enolia, Fromagerie Beaufils, Julhès Paris, Cartier, Boucheron, Lauren Vidal, Maison Landemaine, Episode, Louis Pion, Leonidas, Palais du Stylo, Librairie Flamberge, Librairie Fiduciaire, Galerie Martel, Boucherie André, Franprix, Lav' Club, Sauveur Man, Vacant, Pressing Alaska, Yves Rocher, Yves Rocher, Camper, Blancpain, Yves Rocher, Bulgari, Cartier, Chanel, Jaquet Droz, Korloff, Louis Vuitton, Lorenz Baumer, Martin Du Daffoy, Mellerio dits Meller, Montblanc, Krypton Collections, Le Bonheur, Officine Panerai, Piaget, Galerie Lavayette, IO&ES, American Apparel, Initial, Copytop, Color Forever, Zor Créations, Velan, Monceau, nail bar, Brighton, body minute, labri, Carrefour City, Mélanie Coiffure, Martel Immobilier, Franprix, Copy-Top, Copy-Top, Copy-Top, Copy-Top, Des marques et vous, Copy-Top, Maty, Desigual, Okaïdi, Guess, Galerie Vivienne, Passage Jouffroy, Passage Verdeau, Boulanger, Bally, Harmont & Blaine (ouverture prochaine), Omega, Au Fou Rire, Dada, Bay Ganio, Cinemachine, La Marché de l'Opéra, Le Comptoir des Cotonniers, Alfred Dunhil, Massimo Dutti, Du Bout du Monde, Bottazzi, Marmara, Élite Optique, Styl'Net, Van Gold, Brixton, Toscane, Baloon, Armand Thierry, La Bouffarde Opéra, Izac, L'Open Tour, Optic'Aventure, Créations d'Ici et d'Ailleurs, Poiray, C&A, Espressamente, Allo Vélo, L'Artisan Lafayette, Maroquinerie Lafayette, Vivre Mobile, Stena, Comptoirs Richard, Le Damier de l'Opéra, Naturalia, Bruno Saint Hilaire, Benetton, Ylinne, Pattes à Strass, Chez Meunier, 2plumes, L'Ongle Fantastic, Totem, Linda, Girls Nails Bar, Maquis Megastore, Avanez, Boutonnerie Saint-Denis, Le Coiffman, Atelier de l'Eclair, La Bovida, Le Panier Gourmet - Franprix, Marché Saint-Honoré, R Canelle, monop’, La Halle, Galeries Lafayette Haussmann, Printemps Jouet, Printemps, Printemps, Marks & Spencer Food, L'Oeuf Chaussures, L'Oeuf, Orange, Séphora, Crèmerie Rochechouart, Comptoir des Abbayes, Nicolas, Eva Koshka, Fruits Legumes Fleurs, Joker, La carte Chance, Rôtisserie Dufrenoy, Self Bazar, JT 26, Bazar, Kiosque, Printemps +36 +52.0583801 8.5520281, 52.0441674 8.5341281, 52.0148098 8.5415843, 51.9930698 8.6117053, 51.9530548 8.6019656, 52.0238436 8.5234911, 52.0555549 8.5378820, 52.0051281 8.5264278, 52.0498292 8.5592441, 51.9862274 8.6330968, 52.0292398 8.6021218, 52.0292227 8.6009951, 52.0272514 8.5957092, 52.0306293 8.6106186, 52.0473461 8.5908186, 52.0469513 8.5887087, 52.0231198 8.6053870, 52.0580464 8.6142089, 51.9489161 8.5784781, 52.0005000 8.5830563, 52.0312632 8.5407538, 52.0319234 8.5420151, 51.9922699 8.5821902, 52.0462690 8.6409561, 52.0191448 8.5779535, 52.0184508 8.5657079, 51.9986701 8.5845091, 52.0743431 8.6025251, 52.0111171 8.6060838, 52.0110252 8.6075822, 52.0386901 8.5655696, 52.0318962 8.5656184, 51.9526831 8.5894518, 51.9478258 8.5866769, 52.0273349 8.5382436, 52.0542712 8.5439409, 52.0181631 8.5466796, 52.0522750 8.5245659, 52.0456077 8.5212121, 52.0418895 8.5307595, 52.0327138 8.5227649, 52.0157211 8.5484732, 52.0137803 8.5492099, 52.0226396 8.5511428, 52.0223364 8.5495579, 52.0233884 8.5519795, 52.0234840 8.5536985, 52.0119814 8.5542137, 52.0265557 8.5458287, 52.0185875 8.5275250, 52.0186597 8.5289951, 51.9475967 8.5920756, 51.9289095 8.5529507, 52.0209783 8.5457695, 52.0459901 8.5425345, 52.0682897 8.5224152, 52.0719588 8.5498716, 52.0442328 8.5433584, 52.0113082 8.5270214, 52.0563214 8.5500007, 52.0094113 8.5265262, 52.0037833 8.5215969, 52.0065591 8.5759589, 51.9846427 8.5287592, 51.9854958 8.5280680, 51.9843934 8.5268438, 51.9417125 8.5793602, 51.9423426 8.5802746, 51.9600857 8.5281274, 52.0045344 8.5226673, 51.9609763 8.5280751, 52.0048839 8.5221348, 52.0147217 8.5248646, 51.9568591 8.5479920, 52.0024451 8.5653246, 52.0017368 8.5684745, 52.0018299 8.5675837, 52.0020334 8.5669169, 51.9570094 8.5337027, 51.9681157 8.5499373, 52.0005457 8.5605587, 52.0207414 8.5292478, 51.9568731 8.5465415, 51.9333689 8.5654391, 52.0112149 8.5297888, 52.0261491 8.6392547, 52.0341466 8.5270978, 52.0345204 8.5277213, 52.0223837 8.5432316, 52.0013439 8.5671531, 52.0008115 8.5610395, 52.0926733 8.5329308, 52.0104876 8.6080033, 52.0065198 8.5259435, 52.0327367 8.5222372, 52.0719981 8.5498472, 52.0184308 8.5473987, 51.9932306 8.6111247, 52.0208485 8.5454983, 52.0586804 8.5511665, 52.0228461 8.5508389, 52.0207097 8.5292682, 51.9567876 8.5472991, 52.0111837 8.5268995, 52.0261594 8.5241174, 52.0312156 8.5405749, 52.0272333 8.5379784, 52.0315859 8.5423180, 52.0526516 8.5253447, 52.0468920 8.5467931, 52.0186691 8.5656553, 52.0472610 8.5893105, 52.0391042 8.5656841, 52.0315635 8.5657826, 51.9527696 8.6018036, 51.9528793 8.5894680, 51.9484298 8.5873772, 52.0543651 8.5447212, 51.9487421 8.5784654, 51.9923909 8.5822547, 51.9863326 8.6322964, 52.0010559 8.5831633, 51.9990577 8.5845337, 52.0462867 8.6407281, 52.0579586 8.6142179, 52.0743547 8.6022238, 52.0206646 8.5676682, 52.0270594 8.5966793, 52.0323486 8.6056893, 52.0230896 8.6059771, 52.0500810 8.5586981, 52.0421608 8.5307615, 52.0586088 8.5516394, 52.0156406 8.5480803, 52.0137807 8.5496365, 52.0558267 8.5374208, 52.0114804 8.5539410, 52.0262032 8.6392966, 52.0265579 8.5454510, 52.0152026 8.5416301, 52.0184126 8.5282924, 51.9415031 8.5795673, 52.0459863 8.5425744, 52.0679871 8.5225119, 52.0051548 8.5262133, 52.0039093 8.5212500, 51.9847292 8.5279812, 52.0047086 8.5224081, 52.0191158 8.5773854, 51.9603119 8.5285761, 51.9475733 8.5919114, 51.9568818 8.5332831, 51.9487080 8.5862850, 51.9493095 8.5874506, 51.9483907 8.5883941, 51.9478782 8.5876688, 51.9478908 8.5859766, 51.9482758 8.5858662, 51.9474419 8.5860889, 51.9475824 8.5870706, 52.0104310 8.6074498, 51.9680531 8.5506649, 52.0297068 8.6015894, 51.9862135 8.6337019, 51.9926177 8.6119379, 52.0201494 8.5681889, 52.0186450 8.5755408, 52.0232011 8.5539890, 52.0237894 8.5555069, 51.9285763 8.5528956, 52.0339819 8.5272111, 52.0347237 8.5273506, 52.0327248 8.5359890 +no +55.9486773 -3.2003994 +Ambassade de l'Union du Myanmar, Consulat de Libye, Ambassade de Tanzanie, Service VISA de l'ambassade de la République Populaire de Chine, Consulat général de Colombie, Ambassade d'Ouzbékistan, Consulat de Grande-Bretagne, Ambassade du Qatar, Ambassade de Suède, Consulat général du Mali, Ambassade de la République de Serbie, Ambassade de Chine - Service consulaire, Ambassade de l’Île Maurice, Annexe ambassade de Tunisie, Residence du senegal, Ambassade du Népal, Embassade de la Serbie, Ambassade de Géorgie, Bureau de Représentation de Taipei en France, Ambassade d'Australie, Ambassade du Japon, Ambassade de Malte, Ambassade du Paraguay, Ambassade du Mexique, Ambassade du Burundi, Embassy Of The United States, Ambassade de Suisse, Ambassade de la République de Pologne, Ambassade d'Israël, Ambassade de Colombie, Ambassade des États-Unis d'Amérique, Ambassade de Belgique, Ambassade du Sri Lanka, Ambassade de Guinée Equatoriale, Ambassade de l'Équateur, Ambassade de Corée du Sud, Ambassade de Syrie, Ambassade d’Italie, Ambassade d'Algérie, Ambassade de Singapour, Ambassade du Burkina Faso, Ambassade d'Ukraine, Ambassade d'Ethiopie, Ambassade de Finlande, Ambassade des Émirats Arabes Unis, Ambassade d'Afrique du sud, Ambassade d'Autriche, Ambassade du Luxembourg, Ambassade de Bulgarie, Ambassade du Canada, Ambassade d'Allemagne, Ambassade du Brésil, Ambassade de Chine, Ambassade d'Espagne, Ambassade de Roumanie, Ambassade du Pakistan, Ambassade du Saint-Siège, Ambassade de la République Islamique d'Iran, Ambassade d'Égypte, Ambassade du Yémen, Ambassade du Sultanat d'Oman, Ambassade du Danemark, Ambassade de la République Démocratique de Somalie, Ambassade de Chypre, Ambassade de Grèce, Ambassade d'Uruguay, Ambassade de l'État du Barhein, Ambassade du Koweit, Ambassade d'Argentine, Ambassade du Vénézuéla, Ambassade du Mexique, Ambassade du Kenya, Ambassade du Bénin, Ambassade du Liban, Ambassade du Pérou, Ambassade du Laos, Ambassade de Nouvelle-Zélande, Ambassade de Côte d’Ivoire, Ambassade d'Angola, Ambassade d'Irlande, Ambassade de la République du Congo, Ambassade des Comores, Ambassade d'Allemagne, Embassy of Latvia in France, Délégation Générale du Québec, Ambassade du Ghana, Ambassade de Hongrie, Ambassade du Tchad, Ambassade de Libye, Ambassade de Djibouti, Ambassade d'Albanie, Ambassade du Portugal, Ambassade du Pakistan, Ambassade du Maroc, Chancellerie de l'Ambassade de Malaisie, Ambassade du Niger, Ambassade de Guinée, Ambassade de Mauritanie, Services Consulaires des Émirats Arabes Unis, Ambassade du Nigéria, Ambassade d'Ouganda, Consulat du Bangladesh, Ambassade d'Indonésie, Ambassade du Cambodge, Ambassade de la Fédération de Russie, Ambassade de l'Inde, Ambassade de Madagascar, Ambassade d'Afghanistan, Ambassade de Monaco, Ambassade du Gabon, Ambassade de Slovaquie, Ambassade des Philippines, Ambassade des Seychelles, Ambassade du Maroc, Ambassade de Turquie, Ambassade de Belgique, Ambassade de la République Togolaise, Ambassade de la République d'Arménie, Ambassade du Zimbabwé, Délégation de la Russie auprès de l'Unesco, Ambassade du Liberia, Ambassade de Lituanie, Ambassade du Portugal, Ambassade du Cameroun, Ambassade d'Algérie, Ambassade du Vietnam, Ambassade du Chili, Ambassade d'Afrique du Sud, Ambassade du Sénégal, Ambassade de Tunisie, Ambassade des Pays-Bas, Ambassade de Norvège, Ambassade de Grande Bretagne, Ambassade du Mali, Ambassade du Rwanda, Ambassade de Russie +Cité des Sciences et de l'Industrie, Maison de Victor Hugo, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin, Musée national d'art moderne, Musée Cernuschi, Musée d'Art Moderne de la Ville de Paris, Maison de Balzac, Musée Bourdelle, Musée Carnavalet, Petit Palais +197 +37 +monument, memorial, castle, ruins, battlefield, archaeological site, cannon, police box, boundary stone, tomb, yes, Brewary, brewrey, citywalls, building, house, ship, One time A listed, tower house +65 +4 +yes and 55.9546676 -3.3637002, 55.9222410 -3.1492085 +Halle Saint-Pierre +180 +2 +yes +yes +4231 +yes +yes +128 +48.8631692 2.3329513, 48.8660977 2.3554138, 48.8643016 2.3480523, 48.8779237 2.3345515, 48.8626245 2.3025393, 48.8662844 2.3817490, 48.8864800 2.3399022, 48.8957518 2.3879761, 48.8651191 2.3417893, 48.8695018 2.3546892, 48.8957352 2.3886935, 48.8616153 2.3542965, 48.8836865 2.3338083, 48.8660456 2.3145051, 48.8602845 2.3247488, 48.8677629 2.2935696, 48.8625016 2.3453019, 48.8705899 2.3500828, 48.8629386 2.2890051, 48.8618163 2.2873421, 48.8749151 2.3431481, 48.8703234 2.2765175, 48.8716440 2.2881063, 48.8716204 2.2814131, 48.8677268 2.3223990, 48.8591945 2.2851420, 48.8830345 2.3077236, 48.8718820 2.3312120, 48.8656784 2.3307909, 48.8603240 2.3522598, 48.8672999 2.3221942, 48.8960350 2.3884154, 48.8678618 2.3225499, 48.8762675 2.3826909, 48.8640279 2.3450171, 48.8704435 2.3261996, 48.8622099 2.2873776, 48.8961521 2.3880996, 48.8609823 2.2977973, 48.8848436 2.3445206, 48.8614768 2.3351677, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8614029 2.3519903, 48.8590015 2.3547571, 48.8661515 2.3122667, 48.8612650 2.3554176, 48.8601858 2.3588061, 48.8590543 2.3618044, 48.8598775 2.3620895, 48.8599188 2.3265259, 48.8613305 2.3197359, 48.8707890 2.3259075, 48.8791676 2.3124361, 48.8794667 2.3125380, 48.8755169 2.3105465, 48.8655978 2.2993165, 48.8643054 2.2977930, 48.8641085 2.2964123, 48.8653887 2.2935591, 48.8715060 2.2814214, 48.8594040 2.2672517, 48.8812030 2.3335190, 48.8880654 2.3406347, 48.8612559 2.3587824, 48.8662091 2.3108575, 48.8766546 2.2633259, 48.8657061 2.2966614, 48.8660437 2.3149694, 48.8611474 2.3358637 +yes +48.8761391 2.3683073, 48.8722806 2.3695753, 48.8681927 2.3630580, 48.8710381 2.3610667, 48.8757644 2.3562329, 48.8667885 2.3495539, 48.8683427 2.3501494, 48.8770173 2.3640220, 48.8717450 2.3763419, 48.8757565 2.3604345, 48.8680319 2.3652462, 48.8668874 2.3528247, 48.8669313 2.3543718, 48.8763445 2.3614950, 48.8684955 2.3674002, 48.8700037 2.3666404, 48.8725652 2.3640736, 48.8738041 2.3703747, 48.8705409 2.3514636, 48.8707624 2.3546578, 48.8690121 2.3562318, 48.8735031 2.3753876, 48.8683870 2.3633979, 48.8745891 2.3627432, 48.8754929 2.3615609, 48.8769804 2.3588987, 48.8693907 2.3535655, 48.8718474 2.3654888, 48.8749571 2.3636986, 48.8682917 2.3606483, 48.8757767 2.3558590, 48.8668278 2.3572924 +yes +111 +3 +55.9509457 -3.2714871, 55.9440812 -3.1618330, 55.9230568 -3.1946835, 55.8825130 -3.2371499, 55.9510042 -3.1642474, 55.9429880 -3.1595009, 55.9455214 -3.1515881, 55.9210841 -3.2304150, 55.8803945 -3.2546213, 55.8919644 -3.2565320, 55.8933312 -3.2694699, 55.9174462 -3.2363371, 55.9127712 -3.2038639, 55.9156137 -3.1964307, 55.8191953 -3.3924956, 55.8830619 -3.2214017, 55.9480863 -3.1576318, 55.9919155 -3.3568399, 55.8933347 -3.2822591, 55.9556357 -3.1823678, 55.9458711 -3.1740706, 55.9425607 -3.1620707, 55.8878252 -3.3839342, 55.9836455 -3.3447505, 55.9900950 -3.3422624, 55.9525207 -3.2734605, 55.9484295 -3.2678386, 55.9542867 -3.2739969, 55.8887192 -3.2422954 +pawnbroker, finance, pawn, gift, yes, electronics, second hand, cash, variety store, pawn shop, Second hand store, supermarket +yes +Dalmeny Primary School, Pirniehall Primary School, Haywired, Bun-sgoil Taobh na Pairce, Blackhall Primary School, St David's RC Primary School, Kirkliston Nursery School, Mannafields Christian School, Dalmeny Nursery School, Currie Community High School, Queensferry High School, EDETA Training Services, Craigour Park Primary School, Liberton Primary School, St Thomas of Aquins, James Gillespie's High School, George Watson's College, South Morningside Primary School, Granton Primary School, Fettes College, Murrayburn Primary School, Westburn Primary School (Closed July 2009), Flora Stevenson's Primary School, Firrhill High School, Craigroyston Community High School, George Heriot's School, Niddrie Mill Primary School (Closed), Hermitage Park Primary School, Leith Academy, Lorne Primary School, Drummond Community High School, Stewart's Melville College, Craigentinny Primary School, St Ninians RC Primary School, Bruntsfield Primary School, George Watson's College Primary, Currie Primary School, Tynecastle High School, St Peter's Primary School, Gracemount High School, Liberton High School, Lismore Primary School‎ (Closed July 2009), Fox Covert Primary School and RC Primary School, Greengables Nursery, Leith Primary School, Craigmillar Childrens Centre, Prestonfield Primary School, St Francis and Niddrie Mills Primary schools Campus, Holy Rood High School, Brunstane Primary School, Royal High Primary School, Newcraighall Primary School, Merchiston Castle School, Towerbank Primary School, The Mary Erskine School, Ratho Primary School, Colinton Primary, Hillwood Primary School, Canal View Primary School, The Yard, Sighthill Primary School, Royal Blind School, Royal Blind School, Duddingston Primary School, East Craigs Primary, Royal Mile Primary School, Edinburgh School of English, Panmure St Anne's, Trinity Academy, Gorgie Mills School, Sciennes Primary School, Victoria Primary School, Broughton High School, The Royal High School, Queensferry Primary School, Longston Primary School, Edinburgh Academy, Stockbridge Primary School, Broughton Primary School, Rowanfield School, St Mary's Leith Primary School, Tollcross Primary School, Prospect Bank School, Abbeyhill Primary School, St Mary's RC Primary School, Leith Walk Primary School, St Johns RC Primary School, Portobello High School, St. George's (Upper School), Balgreen Primary School, Preston Street Primary School, Davidson's Mains Primary School, Dalry Primary School, Ferryhill Primary School, School, Oaklands School, Craigroyston Primary School, Pilrig Park School, Arbor Green Nursery, St Augustine's RC High School, Forrester High School, Broomhouse Primary School, Edinburgh Academy Junior School, Corstorphine Primary, St. John Vianney Roman Catholic Primary, Darroch Annex, Cargilfield School, Forthview Primary School, St. George's (Lower School), Juniper Green Primary, Clovenstone Primary School, Kaimes School, Stenhouse Primary, Balerno High School, Bonaly Primary School, Dean Park Primary School Annexe, Gylemuir Primary School, Boroughmuir High School, Rudolf Steiner School, St Cuthbert's RC Primary School, Craiglockhart Primary, Wardie Primary School, St Margaret's R C Primary School, Dean Park School, Trinity Primary school, Fort Primary, Cramond Primary School, Holy Cross Primary School +360 +55.9352993 -3.1317667, 55.9476580 -3.2047113, 55.9312295 -3.1720873, 55.9557171 -3.1922868, 55.9474180 -3.1841339, 55.9604895 -3.1695316, 55.9465677 -3.1864515, 55.9419529 -3.2027946, 55.9411994 -3.1818116, 55.9462373 -3.1906430, 55.9470175 -3.2043154, 55.9326301 -3.2093563, 55.9757015 -3.1804762, 55.9472535 -3.2048824, 55.9567217 -3.1849347, 55.9463848 -3.1871749 +700 +49.4055107 8.6883378, 49.4250839 8.6878203, 49.4050807 8.6859162, 49.4059641 8.6906715, 49.4017125 8.6915435, 49.4106324 8.6935186, 49.4078980 8.6887347, 49.4142758 8.6885716, 49.4359593 8.6807111 +49.4276186 8.6855844, 49.4038333 8.6771587, 49.4171595 8.6617457, 49.4147558 8.6660779, 49.4134202 8.6738393, 49.4192295 8.7567625, 49.4082107 8.6921228, 49.4091698 8.6936091, 49.4041276 8.6763300, 49.4172710 8.6921830, 49.4124311 8.7120085, 49.3804963 8.6875192, 49.4031182 8.6470339, 49.3989298 8.6889417, 49.4107830 8.7059189, 49.4065233 8.6910827, 49.4013623 8.6726870, 49.4101932 8.7062396, 49.4089481 8.7124297, 49.4121807 8.6993722, 49.3656248 8.6889494 +yes +22 +Chapelle Saint-Vincent de Paul, Chapelle de l'Agneau de Dieu, Chapelle Saint-Bernard, Aumônerie des Grands Moulins, Chapelle Saint-Martin de Porrès, Chapelle des Franciscaines, Centre Saint-Paul, Chapelle Notre-Dame de la Confiance, Église Sainte-Colette des Buttes-Chaumont, Chapelle, Chapelle Saint-André, Chapelle Saint-Louis, Crypte du Martyrium de Saint-Denis, Chapelle, Chapelle, Chapelle Saint-Patrick, Église Saint-Lambert de Vaugirard, Église Saint-Léon, Église Saint-Sulpice, Église Saint-Pierre de Montrouge, Église Saint-Séverin, Église Saint-Julien-le-Pauvre, Basilique du Sacré-Cœur, Église Saint-Jean-Baptiste de Grenelle, Église Saint-Pierre de Montmartre, Église Notre-Dame de l'Arche d'Alliance, Église Saint-Ignace, Église Saint-Médard, Église Notre-Dame-de-Lorette, Église Notre-Dame de Clignancourt, Église Saint-Roch, Chapelle de la Compassion, Église Sainte-Hélène, Église de la Sainte-Trinité, Église Saint-Eugène Sainte-Cécile, Chapelle Ozanam, Église luthérienne de la Résurrection, Église Saint-Christophe de Javel, Église Saint-Eustache, Église Saint-Germain l'Auxerrois, Église Saint-Leu - Saint-Gilles, Chapelle Notre-Dame de Grâce, Église Polonaise Notre-Dame de l'Assomption, Église de la Madeleine, Basilique Notre-Dame-des-Victoires, Église Notre-Dame-de-Bonne-Nouvelle, Église Saint-Louis-en-l'Île, Église Saint-Étienne-du-Mont, Église Saint-Éphrem-le-Syriaque, Église Saint-Gervais, Église Saint-Merry, Église Notre-Dame-des-Blancs-Manteaux, Église Saint-Paul - Saint-Louis, Église Saint-Nicolas des Champs, Ancienne Église Saint-Martin des Champs, Église Sainte-Élisabeth, Chapelle de la congrégation du Saint-Esprit, Cathédrale Arménienne Sainte-Croix, Église Saint-Denis du Saint-Sacrement, Église du Val-de-Grâce, Église Saint-Jacques-du-Haut-Pas, Église Saint-Germain des Prés, Chapelle Notre-Dame de la Sagesse, Église Saint-Vincent-de-Paul, Chapelle de l'hôpital Saint-Louis, Église Saint-Martin des Champs, Église Saint-Joseph-Artisan, Église Saint-Jean-Baptiste de Belleville, Église Notre-Dame-de-l'Assomption des Buttes-Chaumont, Église Notre-Dame-de-Fatima, Église Saint-François-d'Assise, Église Sainte-Claire d'Assise, Église Saint-Georges de la Villette, Église Saint-Joseph des Carmes, Église Saint-Thomas d'Aquin, Église Saint-Ambroise, Chapelle Notre-Dame-Réconciliatrice de la Salette, Basilique Notre-Dame du Perpétuel Secours, Église Notre-Dame d'Espérance, Église Saint-Jacques Saint-Christophe, Église Notre-Dame des Foyers, Église Notre-Dame des Champs, Basilique Sainte-Clothilde, Cathédrale Saint-Louis des Invalides, Chapelle de Jésus-Enfant, Église Saint-Augustin, Chapelle Expiatoire, Église Saint-André de l'Europe, Église Saint-Philippe du Roule, Chapelle Baltard, Église Saint-François-Xavier, Chapelle Notre-Dame de l'Annonciation, Église Saint-Pierre du Gros Caillou, Église Saint-Louis-d'Antin, Chapelle Notre-Dame de Consolation, Église Notre-Dame-des-Otages, Église Notre-Dame-de-la-Croix, Église du Cœur Eucharistique de Jésus, Église Saint-Germain-de-Charonne, Église Saint-Gabriel, Église Saint-Cyrille et Saint-Méthode, Chapelle du Corpus-Christi, Saint-Joseph's Church (mission anglophone), Chapelle Saint-Pierre - Saint-Paul, Église Saint-Jospeh des Épinettes, Église Saint-Michel des Batignolles, Église Sainte-Marie des Batignolles, Église de l'Immaculée Conception, Église Sainte-Geneviève des Grandes-Carrières, Église Saint-Jean de Montmartre, Église Saint-Bernard de La Chapelle, Chapelle Notre-Dame de la Paix, Église Saint-Éloi, Église Notre-Dame du Bon Conseil, Église Notre-Dame de Bercy, Église Saint-Albert le Grand, Église Sainte-Anne de la Maison Blanche, Chapelle Saint-Louis de la Salpêtrière, Église Notre-Dame de Chine, Église Notre-Dame de la Gare, Église Saint-Hippolyte, Église Saint-Pierre de Chaillot, Chapelle Sainte-Anne, Église Saint-Dominique, Église Notre-Dame-du-Rosaire, Église de Saint-Antoine de Padoue, Église Notre-Dame-Réconciliatrice, Chapelle Notre-Dame-du-Lys, Église Saint-Jean-Baptiste-de-La-Salle, Église Saint-Honoré d'Eylau, Mission Catholique Espagnole - Iglesia Española, Église Notre-Dame-de-l'Assomption de Passy, Église Notre-Dame de Grâce de Passy, Église Saint-Denys de la Chapelle, Chapelle Sainte-Thérèse, Église Saint-François-de-Sales (ancienne église), Église Sainte-Odile, Église Saint-Charles-de-Monceau, Église Saint-Ferdinand des Ternes, Église Saint-François-de-Sales (nouvelle église), Église Notre-Dame d'Auteuil, Chapelle Sainte-Bernadette, Église Saint-François de Molitor, Église Polonaise Sainte-Geneviève, Église Sainte-Jeanne-de-Chantal, Chapelle de la Visitation, Église Saint-Antoine des Quinze-Vingts, Chapelle Sainte-Ursule, Chapelle de l'Épiphanie, Église Notre-Dame-de-Grâce de Passy, Chapelle Laennec, Église Notre-Dame-de-Nazareth, Église nouvelle Saint-Honoré d'Eylau, Chapelle Saint-François d'Assise, Chapelle Sainte-Rita, Basilique Sainte-Jeanne-d’Arc, Église du dôme, Chapelle Notre-Dame-du-Saint-Sacrement, Église Notre-Dame-de-Lourdes, Église Saint-Joseph des Nations, Église Sainte-Marguerite, Église Sainte-Marguerite, Chapelle Sainte-Jeanne-d'Arc, Église du Saint-Esprit, Chapelle, Prieuré Saint-Benoît, Chapelle de la clinique Blomet, Église du Bon Pasteur, Église Saint-Jean des Deux Moulins, Chapelle, Chapelle, Chapelle Saint-Yves, Chapelle, Chapelle, Chapelle du Sacré-Cœur-de-Jésus-Roi-de-France, Chapelle Saint-Charles, Chapelle, Église Saint-Luc, Église Notre-Dame-de-La-Salette, Chapelle Sainte-Marie, Chapelle Saint-Vincent, Chapelle de la Vierge, Chapelle du Bon Pasteur, Chapelle Sainte Geneviève +187 +Quick +49.4134519 8.6731458 +Centre de rétention administrative Paris 1 and fr:Redoute de Gravelle, Maison d'Arrêt de la Santé and fr:Prison de la Santé +Bonner Pfeiffen- & Cigarrenhaus, Rossmann, Vodafone, Juwelier Vassiliou, chocolat, Nokia, Vollmar, Kultuhr, Douglas, E-Plus, mymuesli-Laden Bonn, Close Up, Hörsch Reformhaus, O2, Claire's, Geox, Leonardo, Netcologne, Zwo, ht.goldkauf, eterna, Close up Shop, Star Nail's Nagel Studio, Dancker, dm, Yves Rocher, L'OCCITANE, WMF +48 +Casimir Perier and fr:Casimir Perier, René Mouchotte and fr:René Mouchotte, Augustin Fresnel and fr:Augustin Fresnel, Amedeo Modigliani and fr:Amedeo Modigliani, Auguste Comte and fr:Auguste Comte, Camille Pissarro and fr:Camille Pissarro, Édith Piaf and fr:Édith Piaf, Eugène Delacroix and fr:Eugène Delacroix, Frédéric Chopin and fr:Tombe de Frédéric Chopin, Ferdinand de Lesseps and fr:Ferdinand de Lesseps, Georges Bizet and fr:Georges Bizet, Georges Cuvier and fr:Georges Cuvier, Georges Seurat and fr:Georges Seurat, Gilbert Bécaud and fr:Gilbert Bécaud, Guillaume Apollinaire and fr:Guillaume Apollinaire, Honoré de Balzac and fr:Honoré de Balzac, Isadora Duncan and fr:Isadora Duncan, Joseph Fourier and fr:Joseph Fourier, Jean-François Champollion and fr:Jean-François Champollion, Jim Morrison and fr:Jim Morrison, Marcel Proust and fr:Marcel Proust, Max Ernst and fr:Max Ernst, Miguel Ángel Asturias and fr:Miguel Ángel Asturias, Oscar Wilde and fr:Tombe d'Oscar Wilde, Dominique Vivant Denon and fr:Dominique Vivant Denon, Léon Gaumont and fr:Léon Gaumont, Louis Verneuil and fr:Louis Verneuil, Elvire Popesco and fr:Elvire Popesco, Fulgence Bienvenüe and fr:Fulgence Bienvenüe, Sadegh Hedayat and fr:Sadegh Hedayat, Léon Jouhaux and fr:Léon Jouhaux, Marie Laurencin and fr:Marie Laurencin, Georges Courteline and fr:Georges Courteline, Jean Nohain and fr:Jean Nohain, Jean-Antoine Chaptal and fr:Jean-Antoine Chaptal, Victor Noir and fr:Victor Noir, Achille Zavatta and fr:Achille Zavatta, Pierre Dac and fr:Pierre Dac, Max Ophüls and fr:Max Ophüls, Jules Guesde and fr:Jules Guesde, Stéphane Grappelli and fr:Stéphane Grappelli, Silvia Monfort and fr:Silvia Monfort, Zénobe Gramme and fr:Zénobe Gramme, Bonne Maman, Piero Gobetti and fr:Piero Gobetti, Gertrude Stein and fr:Gertrude Stein, Andranik Ozanian and fr:Andranik Ozanian, Alain and fr:Alain (philosophe), Paul Vaillant-Couturier and fr:Paul Vaillant-Couturier, Paul Éluard and fr:Paul Éluard, Maurice Thorez and fr:Maurice Thorez, Marcel Cachin and fr:Marcel Cachin, Jacques Duclos and fr:Jacques Duclos, Georges Marchais and fr:Georges Marchais, Pierre Georges and fr:Pierre Georges, Christian Pineau and fr:Christian Pineau, Henri Salvador and fr:Henri Salvador, Bruno Coquatrix and fr:Bruno Coquatrix, Henri Barbusse and fr:Henri Barbusse, Adolphe Chérioux and fr:Adolphe Chérioux, Henri de Lubac, Jean Daniélou, Henri de Lubac, Jean Daniélou, Jean Langlais, Frédéric Cournet and fr:Frédéric Cournet, André Gill and fr:André Gill, Jules Joffrin and fr:Jules Joffrin, Auguste Blanqui and fr:Auguste Blanqui, Sarah Bernhardt and fr:Sarah Bernhardt, Jean-Louis Baudelocque and fr:Jean-Louis Baudelocque, Ticky Holgado and fr:Ticky Holgado, Sophie Daumier and fr:Sophie Daumier, Daniel Toscan du Plantier and fr:Daniel Toscan du Plantier, Marie Trintignant and fr:Marie Trintignant, Jacques Plante and fr:Jacques Plante (parolier), Yves Montand et Simone Signoret and fr:Yves Montand, Simone Signoret, Henry de Triqueti and fr:Henry de Triqueti, Marcel Mouloudji and fr:Marcel Mouloudji, Téo Hernandez, Alphonse Lavallée and fr:Alphonse Lavallée, Jean-Henry-Louis Greffulhe and fr:Jean-Henry-Louis Greffulhe, Eugène Scribe and fr:Eugène Scribe, Nadar and fr:Nadar, Jean-Adolphe Beaucé and fr:Jean-Adolphe Beaucé, Gérard de Nerval and fr:Gérard de Nerval, Charles Crozatier and fr:Charles Crozatier, Annie Girardot and fr:Annie Girardot, Jules Michelet and fr:Jules Michelet, Maurice Merleau-Ponty and fr:Maurice Merleau-Ponty, Cino Del Duca and fr:Cino Del Duca, Pierre Cartellier and fr:Monument funéraire de Cartellier-Heim, Gustave Caillebotte and fr:Gustave Caillebotte, Édouard Daladier and fr:Édouard Daladier, Georges Méliès and fr:Georges Méliès, Georges Enesco and fr:Georges Enesco, Jacques-Louis David and fr:Jacques-Louis David, Jean-Charles Alphand and fr:Jean-Charles Alphand, Jules Vallès and fr:Jules Vallès, Louis Blanc and fr:Louis Blanc, Pierre Brasseur and fr:Pierre Brasseur, Jules Romains and fr:Jules Romains, François Arago and fr:François Arago, Alexandre Ledru-Rollin and fr:Alexandre Ledru-Rollin, Thomas Couture and fr:Thomas Couture, Félix Faure and fr:Félix Faure, Alexandre Falguière and fr:Alexandre Falguière, Georges Eugène Haussmann and fr:Georges Eugène Haussmann, Alfred de Musset and fr:Alfred de Musset, Gioachino Rossini and fr:Gioachino Rossini, Louis Visconti and fr:Louis Visconti, Colette and fr:Colette, Ignace Hoff and fr:Ignace Hoff, Victor Schœlcher and fr:Victor Schœlcher, Théodore Géricault and fr:Théodore Géricault, Jean-Auguste-Dominique Ingres and fr:Jean-Auguste-Dominique Ingres, Philippe Khorsand and fr:Philippe Khorsand, Jean-Baptiste Camille Corot and fr:Jean-Baptiste Camille Corot, Honoré Daumier and fr:Honoré Daumier, James Pradier and fr:James Pradier, Louis Pierre Quentin de Champcenetz, Famille d'Aboville and fr:Famille d'Aboville, François Marie d'Aboville, Augustin Marie d'Aboville, Augustin Gabriel d'Aboville, Jean de La Fontaine and fr:Jean de La Fontaine, Molière and fr:Molière, Antoine Parmentier and fr:Antoine Parmentier, Jean-Jacques-Régis de Cambacérès and fr:Jean-Jacques-Régis de Cambacérès, Joachim Murat and fr:Joachim Murat, Louis-Gabriel Suchet and fr:Louis-Gabriel Suchet, Émile Oberkampf and fr:Émile Oberkampf, Jacques Nicolas Gobert and fr:Jacques Nicolas Gobert, Jean-Pierre-Louis de Fontanes and fr:Louis de Fontanes, Charles-Étienne-François Ruty and fr:Charles-Étienne-François Ruty, Guillaume Dupuytren and fr:Guillaume Dupuytren, Malik Oussekine, Jean-François Lyotard and fr:Jean-François Lyotard, Francis Poulenc and fr:Francis Poulenc, Charles-François Lebrun and fr:Charles-François Lebrun, Étienne-Gaspard Robert and fr:Étienne-Gaspard Robert, James de Rothschild and fr:James de Rothschild, Rachel Félix and fr:Rachel Félix, David Sintzheim and fr:David Sintzheim, Jacob Roblès, Pierre et Hélène Lazareff and fr:Pierre Lazareff, Hélène Lazareff, François d'Astier de La Vigerie and fr:François d'Astier de La Vigerie, Édouard Branly and fr:Édouard Branly, Mano Solo and fr:Mano Solo, Pierre Desproges and fr:Pierre Desproges, Ignace Joseph Pleyel and fr:Ignace Joseph Pleyel, Vincenzo Bellini and fr:Vincenzo Bellini, Alexandre Brongniart and fr:Alexandre Brongniart, Jacques-Henri Bernardin de Saint-Pierre and fr:Jacques-Henri Bernardin de Saint-Pierre, Michel Petrucciani and fr:Michel Petrucciani, Luigi Cherubini and fr:Luigi Cherubini, Alain Bashung and fr:Alain Bashung, Claude Bernard and fr:Claude Bernard, Gaspard Monge and fr:Gaspard Monge, François-Vincent Raspail and fr:François-Vincent Raspail, François Étienne Kellermann and fr:François Étienne Kellermann, Emmanuel-Joseph Sieyès and fr:Emmanuel-Joseph Sieyès, Alphonse Daudet and fr:Alphonse Daudet, Louis Joseph Gay-Lussac and fr:Louis Joseph Gay-Lussac, Martin Michel Charles Gaudin and fr:Martin Michel Charles Gaudin, Joseph Léopold Sigisbert Hugo and fr:Joseph Léopold Sigisbert Hugo, Gaston Tissandier and fr:Gaston Tissandier, Samuel Hahnemann and fr:Samuel Hahnemann, Louis-Antoine Garnier-Pagès and fr:Louis-Antoine Garnier-Pagès, Georges Guët and fr:Monument funéraire de Georges Guët, Étienne Geoffroy Saint-Hilaire and fr:Étienne Geoffroy Saint-Hilaire, Yves du Manoir and fr:Yves du Manoir, Claude Chappe and fr:Claude Chappe, Benjamin Constant and fr:Benjamin Constant, Michel Ney and fr:Michel Ney, Tombe du Dragon and fr:Tombe du Dragon, Maximilien Sébastien Foy and fr:Maximilien Sébastien Foy, Jean Anthelme Brillat-Savarin and fr:Jean Anthelme Brillat-Savarin, Claude-Henri de Rouvroy, comte de Saint-Simon and fr:Claude Henri de Rouvroy, comte de Saint Simon, André Masséna and fr:André Masséna, Louis Nicolas Davout and fr:Louis Nicolas Davout, François-Joseph Lefebvre et Madame Sans-Gêne and fr:Monument funéraire de François Joseph Lefebvre, Pierre-Augustin Caron de Beaumarchais and fr:Pierre-Augustin Caron de Beaumarchais, Anna de Noailles and fr:Anna de Noailles, Paul Barras and fr:Paul Barras, François-Antoine de Boissy d'Anglas and fr:François-Antoine de Boissy d'Anglas, Richard Wallace and fr:Richard Wallace (collectionneur), Juliette Dodu and fr:Juliette Dodu, Vania Vilers and fr:Vania Vilers, Aubert Lemeland and fr:Aubert Lemeland, Claude Brosset and fr:Claude Brosset, Claude Chabrol and fr:Claude Chabrol, Édith Lefel and fr:Édith Lefel, France Clidat and fr:France Clidat, Frank Alamo and fr:Frank Alamo, Jack Vanarsky and fr:Jack Vanarsky, Karel Appel and fr:Karel Appel, Lucas Dolega and fr:Lucas Dolega, Marcel Marceau and fr:Marcel Marceau, Olivier Raoux and fr:Olivier Raoux, Patrice Chéreau and fr:Patrice Chéreau, Pierre Bourdieu and fr:Pierre Bourdieu, Roger Planchon and fr:Roger Planchon, Ugür Hüküm, Willy Rizzo and fr:Willy Rizzo, Adolphe Itasse and fr:Adolphe Itasse, Anne-François-Charles Trelliard and fr:Anne-François-Charles Trelliard, Antoine Balthazar Joseph d'André and fr:Antoine Balthazar Joseph d'André, Antoine-Marie Peyre and fr:Antoine-Marie Peyre, Charles-Joseph Panckoucke and fr:Charles-Joseph Panckoucke, Claude-Victor Perrin and fr:Claude-Victor Perrin, Désiré Dalloz and fr:Désiré Dalloz, Julien Vallou de Villeneuve and fr:Julien Vallou de Villeneuve, Laurent de Gouvion-Saint-Cyr and fr:Laurent de Gouvion-Saint-Cyr, Louis Hersent and fr:Louis Hersent, Étienne-Hippolyte Godde and fr:Étienne-Hippolyte Godde, Étienne-Jacques-Joseph Macdonald and fr:Étienne Macdonald, Antoine Marie Chamans de Lavalette and fr:Antoine Marie Chamans de Lavalette, Horace Say and fr:Horace Émile Say, Jean Melchior Dabadie de Bernet and fr:Jean Melchior Dabadie de Bernet, Julien Bessières and fr:Julien Bessières, Nicolas Ponce and fr:Nicolas Ponce, Tony Noël and fr:Tony Noël, Henri Krasucki and fr:Henri Krasucki, Célestine Galli-Marié and fr:Célestine Galli-Marié, Emmanuel de Grouchy and fr:Emmanuel de Grouchy, Jean Topart and fr:Jean Topart, Vincent Ansquer and fr:Vincent Ansquer, Caroline Miolan-Carvalho and fr:Caroline Miolan-Carvalho, Charles André Pozzo di Borgo and fr:Charles André Pozzo di Borgo, Christian Fechner and fr:Christian Fechner, Ange-Marie d'Eymar and fr:Ange Marie d'Eymar, Félix Galipaux and fr:Félix Galipaux, Georges Deherme and fr:Georges Deherme, Bazar de la Charité and fr:Bazar de la Charité, Charles Degeorge and fr:Charles Degeorge, Frédéric Soulié and fr:Frédéric Soulié, Jules Cornély and fr:Jules Cornély, Pierre Lachambeaudie and fr:Pierre Lachambeaudie, Pierre Marinovitch and fr:Pierre Marinovitch, Tony Aubin and fr:Tony Aubin, Émile Souvestre and fr:Émile Souvestre, Étienne Lamy and fr:Étienne Lamy, Vol 604 Flash Airlines and fr:Vol 604 Flash Airlines, Raymond de Sèze and fr:Raymond de Sèze, Octave de Béhague and fr:Octave de Béhague, Albert Rapilly, Favard du Bourg de Bozas, Alexandre Moline de Saint-Yon and fr:Alexandre Moline de Saint-Yon, Antoine Louis Boissière and fr:Antoine Louis Boissière, Ponsat, Dubel et Guillard, Barry, Jean-Paul Sartre, Simone de Beauvoir, Serge Gainsbourg, Joris Ivens, Urbain Le Verrier, Bruno Cremer, Susan Sontag, Jacques Demy, Tignous and fr:Tignous, Raymond ARON, Jean-Jacques Rousseau, Marie Curie, Pierre Curie, Voltaire, Cartonnage du Barbier d'Amon Ânkhpakhéred, Cuve de sarcophage de Djedhor, Ensemble funéraire de Tamoutnéfret, Le Sarcophage du Grec d'Egypte Dioskoridès, Sarcophage de Iniouya, Cercueil extérieur de l'intendant Sopi, Le cercueil de Ânkhapy, prêtre du roi Snéfrou et du dieu Ptah, Sarcophage contenant encore sa momie de chat, Sarcophage d'Ibis, Sarcophage de chat, Sarcophage de chat, Sarcophage de chat, Sarcophage de chat, Sarcophage de chat, Sarcophage de chat, Sarcophage de chat, ouverture par-dessous, Sarcophage de scarabée, Sarcophage de serpent, Sarcophage de serpent, Le cercueil de Mesrê, Jean-Baptiste Teste and fr:Jean-Baptiste Teste, Adolphe Thiers and fr:Adolphe Thiers, Élisabeth Alexandrovna Stroganoff and fr:Élisabeth Alexandrovna Stroganoff, Allan Kardec et Amélie Gabrielle Boudet and fr:Allan Kardec, Amélie Boudet, Félix de Beaujour and fr:Félix de Beaujour, René Panhard and fr:René Panhard, Sarcophage d'Abou Roach, Héloïse et Abélard and fr:Monument funéraire d'Héloïse et Abélard +Sebastopol Grenata - 12 Rue Grenata - 75002 Paris, Plantes-Moulin Vert, Repos - 41, rue du Repos 75020 Paris, Bourdon, Bastille, Beaumarchais, Gaité Lyrique, Bassin de l'Arsenal, Quai de la Rapée, Diderot Bercy, Chabrol, Saint-Ambroise - 2 Rue Lacharrière - 75011 Paris, Montorgueil Rue Montmartre version 2, Réaumur Montorgueil, Boulainvilliers, Rue François Ponsard, Helie - 4, 6 rue Faustin Helie - 75016 Paris, Rue de Siam, Avenue Henri Martin, Abbé carton, Henri Martin, Aboukir, La Fayette Provence, Lafitte Rossini, Allée Pierre Lazareff, Conservatoire - 57 Rue des Petites Écuries - 75010 Paris, Italiens Laffite, Quatre Septembre, Petites Écuries, Gare de l'Est Saint-Laurent, Taitbout Châteaudun, Chapelle Louis Blanc, André Malraux Musée du Louvre, Bonne Nouvelle – Saint-Fiacre, Rougemont - 3 Rue Rougemont - 75009 Paris, Bonne nouvelle prop2, Cirque d'hiver, Chemin Vert Beaumarchais, Bourse, Charonne Saint-Antoine, Groult, Théatre - 60 Rue du Théâtre - 75015 Paris, Linois, Fontaine Raynouard, Porte de Passy, Bois de Boulogne / Porte de La Muette 2, Ternes Courcelles, Wagram Courcelles, Houssaye, Washington, Avia, Argentine, Friedland - Place Georges Guillaumin - 75008 Paris, Place Pigalle, Pigalle Germain Pillon, Monceau, Place de Levis, Millet - Jean de la Fontaine, Plaisance Alesia, Place Adolphe Cherioux, Convention, Rennequin pereire, Porte de Champeret, Berthier Stuart Merril, Alfred roll, Porte de Saint-Cloud, Avenue de la Porte d'Asnières, Place de Wagram, Pereire levallois, Malesherbes, Jasmin, George Sand, Métro Rome, Pont Cardinet, Saussure, Pereire Saussure, Legendre, Ranelagh, Octave Feuillet, Dupleix, Grenelle Violet (prop3), Molitor - Michel-Ange, Porte Molitor, Stade Français, Michel Ange, Église d'Auteuil, Galilée Kléber - 1 Rue Galilée - 75016 Paris, Chernovitz - 1 Rue Chernovitz - 75016 Paris, Sèvres Babylone - Bvd Raspail - 75007 Paris, Raspail Varenne - Boulevard Raspail - 75007 Paris, Saint-Augustin - 18 Place Henri Bergson - 75008 Paris, Rocher - 14 Rue Rocher - 75008 Paris, Messine - 2 Avenue Messine - 75008 Paris, Narvick, Malsherbes Monceau - 75 Rue de Monceau - 75008 Paris, Dublin - 1 Rue Clapeyron - 75008 Paris, Danton, Square Bela Bartok - Quai Grenelle - 75015 Paris, Emeriau, Violet, Place Etienne Pernet, Commerce, Zola, Mairie du 15ème, Rivoli Musée du Louvre, Saint-Philippe du Roule, Matignon, Square Louis XVI, Roquepine, Van Dyck, Haussmann Courcelles, Boétie Ponthieu, Colisée, Humbert, Javel, Porte Maillot, Vélib' station, Stade Charléty, Rond-Point des Champs-Élysées, 18 Boulevard d'Aurelle de Paladines - 75017 Paris, Auriol Quai de la Gare, Weiss, Chevaleret Tolbiac, Monclar, J. Dupré, Parc de Belleville, Porte des Lilas, Etienne Dolet - 29 Rue Etienne Dolet - 75020 Paris, Thorel, Bluets République - 20 Rue Guillaume Bertrand - 75011 Paris, Chemin Vert Saint-Maur - 105 Rue du Chemin Vert - 75011 Paris, Hôpital Beaujon (2), Dunant, Place Dunant, Porte de Vincennes bis, Porte de Vincennes, Porte de Saint-Mandé, Hector Malot, Gare de Lyon Châlon, Charenton Prague - 89ter rue de Charenton - 75012 Paris, Diderot, Gare de Lyon Van Gogh, Porte d'Arcueil, Saint-Germain Dante, Château de Vincennes, Ségur Estrées, Censier, Censier Buffon, Saint-Antoine Gonnet, Rue des Boulets, Pyramide Artillerie, Pyramide Entrée Parc Floral, Ivry Bruneseau, Desault - Porte de Vitry, Romain Rolland, Plaine, Saint-Jacques - Ferrus, Saint-Jacques - Tombe Issoire, Denfert-Rochereau, Cimetière de Gentilly, Mazagrand-Coubertin, Rennes Sabot, Saint-Sulpice, Saint-Germain Copeau, Malakoff-Pinard, André Maurois, Sablons Maillot, Muette Neuilly, Boucicaut Faure, Mondrian, Square des Cévennes, Citroën, Hôpital Georges Pompidou (Prop 2), Place Robert Guillemard, Vasco de Gama, Desnouettes, Rollet, Chandon, Blanc, Boulevard Victor, Charonne Frot, Charonne Valles, Faidherbe Chaligny - 223 Rue du Faubourg Saint-Antoine - 75011 Paris, Nation Voltaire - 5 Place de la Nation - 75011 Paris, Ledru Rollin Basfroi, Square Nordling, Berthier Porte de Clichy, Porche Pouchet, Bodin Avenue de Clichy, Joncquière, Guy Môquet, Liège, Place de Budapest (2), Place d'Estienne d'Orves, Trinité, Place de Budapest, Saint-Lazare RER, Haussmann Rome, Victoire Chaussée d'Antin, Faubourg Saint-Honoré Anjou, Madeleine, François 1er, Alma, François 1er Lincoln, Champs-Élysées Lincoln, Place du Canada, Petit Palais, 39 rue de Bassano - 75016 Paris, Bassano, Auber, Havre Caumartin, Mathurins, Amette, Suffren Tour Eiffel, Maraichers, Maraichers, Pyrénées Vitruve, Réunion, Charonne Avron, Alexandre Dumas, Denfert-Rochereau - Cassini, Port Royal, Place Trefouel, Vaugirard - Pasteur, Saint-Maur Oberkampf - 80 rue Oberkampf 75011 Paris, Metallos - 81 bis Rue Jean-Pierre Timbaud - 75011 Paris, Saint-Maur Avenue de la République - 87 Rue Saint-Maur - 75011 Paris, Buisson Saint-Louis - 2 Rue du Buisson Saint-Louis - 75010 Paris, Sambre et Meuse - 37 Rue Sambre et Meuse - 75010 Paris, Colonel Fabien - 69 Rue de la Grange Aux Belles - 75010 Paris, Louis Blanc Prop 2 - 10 Rue Louis Blanc - 75010 Paris, Dodu - 1, 3 Rue des Ecluses Saint-Martin - 75010 Paris, Hôpital Saint-Louis - 12 bis Rue de la Grange Aux Belles - 75010 Paris, Jemmapes, Saint-Louis - 2 Rue Alibert - 75010 Paris, Parmentier Louvel-Tessier - 151 Avenue Parmentier - 75011 Paris, Herschel, Boulard-Daguerre, Croix Nivert, Nationale, Place d'Italie - Auriol, Italie-Rosalie, Bobillot Mery, Bobillot Verlaine, Gérando - Rochechouard, Dunkerque - Trudaine, Place de roubaix, Gare du nord denan, Lariboisiere, Station Vélib' numéro 19037 / 304 Rue de Belleville, Porte des lilas, Télégraphe - 265 Rue de Belleville - 75019 Paris, Pré Saint-Gervais Version 2 - 109 Bvd Serurier - 75019 Paris, Alexander Fleming, Pré Saint-Gervais - 27 Rue du Pré Saint-Gervais - 75019 Paris, Noisy Le Sec, Léon Frapie, Conservation, Cardinal Lavigerie, Avenue de Paris - Gravelle (Charenton), Porte de Charenton, Dom Pérignon - Gravelle, Quai de la Loire - 4 Quai de la Loire - 75019 Paris, Moselle Jaurès - 6 Passage de Melun - 75019 Paris, Place de Catalogne, Beaubourg Rambuteau, Etienne Marcel - 2 Rue Turbigo - 75001 Paris, Française - 6 Rue Française - 75001 Paris, Mouchotte, Les Halles Berger - 29 Rue Berger - 75001 Paris, Les Halles Sébastopol - Rue de la Cossonnerie 75001 Paris, Les Halles Pierre Lescot - 91 Rue Rambuteau - 75001 Paris, Marguerite de Navarre, Rivoli Saint-Denis, Beaubourg Saint-Merri, Place de l'Hôtel de Ville, Lobau - 3 Rue Lobau - 75004 Paris, Turbigo - 55 Rue Turbigo - 75003 Paris, Turbigot Sainte-Elisabeth - 7 Rue Saint-Elisabeth - 75003 Paris, Jules Ferry Faubourg du Temple - Face au 28 Rue Jules Ferry - 75011 Paris, République Ferry - Face au 140 Boulevard Richard Lenoir - 75011 Paris, Jules Ferry République - Face au 141 Boulevard Richard Lenoir - 75011 Paris, Richard Lenoir Voltaire Nord, Face au 86 Boulevard Richard Lenoir - 75011 Paris, Richard Lenoir - 21 Rue Pelée - 75011 Paris, Breguet Sabin - Face au 23 Boulevard Richar Lenoir - 75011 Paris, Bastille richard lenoir, République Pierre Levée - 1 Rue de la Pierre Levée - 75011 Paris, Parmentier - 1 Rue Jacquard - 75011 Paris, Père Lachaise - 25 Boulevard Ménilmontant - 75020 Paris, Ménilmontant Oberkampf - 137 Bvd Ménilmontant - 75011 Paris, Couronnes - 44 Bvd de Belleville - 75020 Paris, Belleville - 116 Bvd de Belleville - 75020 Paris, Belleville - 8 Bvd de la Villette - 75010 Paris, Parc de Belleville - 30 Rue Piat - 75020 Paris, Square de menilmontant, Pelleport - 121 Avenue Gambetta - 75020 Paris, Mairie du XXème - 44 Avenue Gambetta - 75020, Gambetta Père Lachaise - 11 Rue Malte Brun - 75020, Gambetta Gâtines - 13 Rue des Gâtines - 75020 Paris, Gambetta Martin Nadeau - 2 Rue Orfila - 75020 Paris, Amandiers - 55 Rue des Cendriers - 75020 Paris, Duris - 33 Rue Duris - 75020 Paris, Pyrénées - 262 Rue des Pyrénées - 75020 Paris, L'Isle Adam Pyrenées - 60 Rue Villiers de l'Isle Adam - 75020 Paris, Saint-Fargeau - 177 Avenue Gambetta - 75020 Paris, Pixérécourt - 65 Rue Pixérécourt - 75020 Paris, Belleville Pré Saint-Gervais - 195 Rue de Belleville - 75019 Paris, Jourdain - 9 Rue Lassus - 75019 Paris, Jourdain - 3 Rue Jourdain - 75020 Paris, Place des Fêtes - 17 Rue Des Fêtes - 75019 Paris, Pyrénées Version 2 - 101 Rue de Belleville - 75019 Paris, Square Bolivar, Manin Simon Bolivar - 1 Rue Manin - 75019 Paris, Buttes Chaumont - 28 Rue Botzaris - 75019 Paris, Botzaris Version 2 - Face 80 Rue Botzaris - 75019 Paris, Alouettes - 20 Rue Carducci - 75019 Paris, Danube - 53 Rue Michel Hidalgo - 75019 Paris, Manin Secretan - 31 Rue Manin - 75019 Paris, Pailleron - 6 Rue Edouard Pailleron - 75019 Paris, Bolivar - 53 Rue de Meaux - 75019 Paris, Lally Tollendal - 5 Rue Lally Tollendal - 75019 Paris, Laumière & Laumière bis - 8 Rue Petit - 75019 Paris, Euryale Dehaynin - 22 Rue Euryale Dehaynin - 75019 Paris, Lorraine - 28 Rue de Lorraine - 75019 Paris, Thionville - 24 Rue de Thionville - 75019 Paris, Bolivar Burnouf, Belleville Rampal, République Parmentier - 82 Avenue Parmentier - 75011 Paris, Saint-Ambroise Parmentier - 17 Rue Saint-Ambroise - 75011 Paris, Boulevard Voltaire - 82 Rue Sedaine - 75011 Paris, Léon Blum Roquette - 142 Rue de la Roquette 75011 Paris, Froment Breguet - 9 Rue Froment - 75011 Paris, Rue du Commerce - 20 Rue du Commerce - 75015 Paris, Montorgueil Etienne Marcel - 32 Rue Etienne Marcel - 75002 Paris, Louvre Coq Héron - 20 Rue Coquillère - 75001 Paris, Francs-Bourgeois - 50 Rue Vieille du Temple - 75004 Paris, Mairie du 3e, Archives Pastourelle - 67 Rue des Archives -75003 Paris, Temple 113 - 76 Rue du Temple - 75003 Paris, Turenne Bretagne - 4 Rue des Filles du Calvaire - 75003 Paris, Rivoli Sebastopol - 1 Rue Saint-Bon, Archives Blancs Manteaux, Bourse du Travail - 3 Rue du Château d'Eau - 75010 Paris, Johann Strauss - 50 Rue René Boulanger - 75001 Paris, Boulevard Montmartre - 21 Rue d'Uzès - 75002 Paris, Bleue - 5 Rue Bleue - 75009 Paris, Bachaumont, Château d'Eau - 57 Rue du Château d'Eau - 75010 Paris, Saint-Sébastien Froissard - 12 Bvd des Filles du Calvaire - 75011 Paris, Temple Jean Pierre Timbaud - 18 Bvd du Temple - 75011 Paris, Temple République - 44 Bvd du Temple - 75011 Paris, Oberkampf - 1 Rue du Grand Prieuré - 75011 Paris, Parmentier Fontaine au Roi - 124 Avenue Parmentier - 75011 Paris, Goncourt - 144 Avenue Parmentier - 75011 Paris, Dodu - 12-14 Rue Claude Vellefaux - 75010 Paris, Recollets - 46 Rue Lucien Sampaix - 75010 Paris, Jacques Bonsergent, Villemin, Gare de l'Est, Verdun, Chabrol Saint-Quentin - 124 Rue du Faubourg Saint-Denis - 75010 Paris, Alban Satragne - 110 Rue du Faubourg Saint-Denis - 75010 Paris, Hittorf - Rue Hittorf - 75010 Paris, Porte Saint-Martin - 62 Rue Meslay - 75003 Paris, Strasbourg - 3 Bvd de Strasbourg - 75010 Paris, Beaubourg - 46 Rue Beaubourg - 75003 Paris, Grenier Saint-Lazare - 34 Rue Grenier Saint-Lazare - 75003 Paris, Hôtel de Ville - 1 Rue des Archives, Perle - 22 Rue de la Perle - 75003 Paris, Saint-Gilles - 26 Rue Saint-Gilles - 75003 Paris, Écouffes Rivoli, Place Monge, Dunkerque, Gare du Nord 1, Sorbonne, Saint-Jacques, Lamenais Washington, Place de la porte de chatillon, Place de la porte de chatillon, Palais des Sports, Porte d'Orléans, Vavin, Michelet Assas, Assas Luxembourg, Paul Doumer La Tour - 53 avenue Paul Doumer 75016 Paris, Decaen-Canebière, Lamé, Saint-Émilion, Pirogues de Bercy, Decaen, Reuilly, Michel Bizot, Porte de Bagnolet - 1 rue Géo Chavez 75020 Paris, Porte de Bagnolet - 102 rue Louis Lumière 75020 Paris, Fourche, Rue Louis Lumière - 68 rue Louis Lumière 75020 Paris, Hospice Debrousse - 142 rue de Bagnolet 75020 Paris, Prairie L'Indre - 2 rue de l'Indre 75020 Paris, Palais Omnisports, Baron Leroy Truffaut, Parc de Bercy, Saint-Jacques - Val de Grâce, Saint-Jacques Soufflot, Port Royal-Cochin, Saint-Marcel, Place Charles Vallin, Charles Vallin, Odessa, Raspail Schoelcher, Arago 2, Bibliothèque François Mitterrand, Parc de Bercy - Deuxième partie, Charenton Jardinier, Station mobile 7, Île de la Cité Pont Neuf, Tolbiac Nationale, Saint-Michel Danton, Saint-Séverin, Sablons, Belles Feuilles, Avenue des Portugais, Montgallet Charenton, Maison de Radio France, Rue Jean Bologne, Buzenval, Place de Passy, Mirabeau, Lacuee - 17, rue Lacuée - 75012 Paris, Traversière - 76, rue Traversière - 75012 Paris, Godard, Victor Hugo Rue de la Pompe, Traktir, Poincaré Victor Hugo, Clichy, Square Roquette - 176, rue de la Roquette 75011 Paris, Philippe Auguste 20e Arr. - 212, bd de Charonne 75020 Paris, Madagascar, Dugommier, Quai François Mauriac - Tolbiac, Blanche, L'Isly, Montaigne, Bois de Boulogne / Porte de La Muette 1, Porte Dorée, Porte d'Italie, Gare du nord 2, Gare du nord 3, Place des Abbesses, Damrémont - Caulaincourt, Virage Lepic, Flandrin, Crozatier, Tombe-Issoire, Porte de Choisy, Morland, Sully Morland, Village Saint-Paul, Barbès - Rochechouard, Goutte d'Or, Clignancourt - Sofia, Square Viviani, Boulevard Port Royal, Sevigné, Saint-Paul, Boulevard de l'Hopital, Nation Trône, Place de la Nation, Rue montgallet, Rue Pau Casals, Maryse Bastié, Porte de Versailles, Hôpital Bichat, Porte de Saint-Ouen, Rue Moncey, Michel Ange Auteuil, 13 Place Balard, Italie Tolbiac, Parc de Choisy, Gare d'Austerlitz 2, Choisy Vistule, Choisy Point d'Ivry, Dareau, Charenton, renan, Matignon, Italie Maison Blanche, 28 RUE J.B.PIGALLE, FACE 112 BOULEVARD DE ROCHECHOUART, Stade Georges Carpentier, Place du Docteur Yersin, Porte d'Ivry, Italie, Ternes pereire, Vélib': 112 av Felix Faure, 75015, Rue Chabanais, Metz - 7 Rue de Metz - 75010 Paris, Orteaux, Davout Vitruve, Saint-Germain Harpe, Saint-Michel Sarrazin, Marché Saint-Germain - Mabillon, Odéon Quatre Vents, Quai Malaqais, Gare de Lyon - Parvis, Rue du Cherche-Midi, Guynemer luxembourg, Montparnasse Chevreuse, Gare d'Austerlitz, Cléry, Pont Neuf - 14, Jourdan le Brix et Mesnin, Courcelles, Rivoli - Mairie du 1er, Temple de l'Oratoire, Rue Notre-Dame des Champs, Gare de Paris-Bercy, Louis Blanc, Aqueduc, Rue de Richelieu, Mouffetard Saint-Médard, Gide, Charles Hermite, Chapelle Marx Dormoy, Rue Thérese, Rue Daniel Casanova, Herbert, Rue de la Chapelle, Carpeaux, Clignancourt Marcadet, Evangile, Poissonniers Ordener, Binet, Station Velib' Simplon, Francis de Croisset, Tardieu, Feliz Ziem, Doudeauville Stephenson, Ruisseau Ordener, Station Velib' Moskowa, Square Léon, Rond-Point de la Chapelle, Ganneron, Doudeauville Leon, Ruisseau, Porte Montmartre, Joseph de Maistre - Lepic, Marx Dormoy, Station Velib' Championnet, Pecqueur, Saint-Ouen Lamarck, Chartres, Barbès Marcadet, Lepic Veron, Station Velib' Poteau, Département, Montcalm, Mairie du 18e (Velib), Riquet Pajol, Porte de Clignancourt, Station Velib' Albert Kahn, Amiraux, Marché Saint-Pierre, Château Rouge, Damrémont Ordener, Leibniz, Lépine, Eole, Francoeur Caulaincourt, Béliard Poissonniers, Custine, Marcadet - Ramey, Vauvenargues, Orteaux Mouraud, Notre-Dame - 75004 Paris, 1 quai aux Fleurs - 75004 Paris, Belfort, rue de Bercy, Square montholon, Rue Henri Barboux, Rue Sarette, Alleray, Dutot, Rue Lamartine, Léon Frot - Alexandre Dumas, Vélib' bicycle rental, Porte de Villiers, Avenue de ternes, Vélib' station, Place du Bataillon Français de l'ONU, Chatelet - 14 AVENUE VICTORIA, Boulevard Jourdan, Avenue Rene Coty, Velib Rue Pierre Demours, Rue Choron, Tour d'Auvergne, Jean moulin, Glacière, Italie - Tolbiac, Marchand Santé, 9104 - CAUMARTIN PROVENCE, Boussingault - Tolbiac, Tolbiac - Wurtz, Faubourg Saint-Jacques - Cassini, Porte d'Italie, Rue de la Fonataine a Mulard, Rue Brillat Savarin, Rue Bobillot, Rue de la Butte aux Cailles, Rue du Docteur Leray et Landouzy, Boulevard Auguste Blanqui, Rue de Croulebarbe, Avenue des Gobelins, Rue Saint-Séverin, Place Louis Lépine, Rue Saint-Honoré, Rue de la Banque, Rue d'Aboukir, Rue Liard, Avenue de la Sibelle, Rue d'Assas, Rue Gouthière, Rue Taitbout, Rue de Provence, Rue Louis Le Grand, Rue d'Assas, Rue de la Convention, Rue de la Convention, Boulevard Garibaldi, Rue de l'Ouest, Rue Mouton Duvernet, Rue de Cordelières, Rue Le Brun, Rue Bruant, Rue Leredde, Rue du Regard, 84 Rue de la Fédération, 42 allée Vivaldi, Château landon, Vinaigriers - 58 Rue des Vinaigriers - 75010 Paris, Station Mobile 6, Rue Lauriston, 2 rue Lacépède, Roland Barthes, Saint-Fargeau, Hauteville - Bonne Nouvelle, Boutroux -Porte de Vitry, Stade Didot, Rue de Londres, Guy Môquet, Vivienne, Clichy Parme, Manin hautpoul, Ourcq, Station Velib, Pyrenees ermitage, Cadet la fayette, Legrendre - Rome, Procession, 19011, Vélib-19008, 19011, avenue Marceau, Télégraphe - 265 Rue de Belleville - 75019 Paris, Église de la Gare, Condorcet, Vercingetorix, Jacques Callot, Pont de Lodi, rue Saint-Benoit, Saint-pères, velib-19033, Menilmontant Boyer, Vélib Station n°15026, station Velib 5012, Aubervilliers, 89 Boulevard de l'Hôpital, République - Faubourg du Temple, République - Rue du Temple, Hôpital Georges Pompidou, 9 Rue Coquillère, Cadet, Mendes France, Paris Bike Tour, Station n° 17024, Dauphine, Quai de seine, Seine flandre, Porte de la Chapelle, Hôpital Saint-Louis - 12 bis Rue de la Grange Aux Belles - 75010 Paris, Alexandre Charpentier, Chapelle, Courteline, Place Fernand Forest, 55 Bd Arago, La Pitié-Salpetrière, Favart, Drouot - Grange Batelière, Olivier de serre, Daumesnil, Gare saint Lazare - cour du havre, Frodevaux, Tremblay - INSEP, Rio, V'lib, Barruel - Vaugirard, Volontaires, Caire Dussoubs, 12 rue cité Riverin / angle rue du Château d'Eau, Montempoivre, Sahel, 2 rue Haxo - 75020 Paris, 1 rue Vidal de la Blache / Angle 78 boulevard Mortier - 75020 PARIS, Philippe Auguste, Batignolles, Beaubourg-Place Michelet, Bel Air, Bizot, Bourdelle, Brancion, Brune, Champt de Mars - Suffren, Chaptal, Desaix, Espace Champerret, Falguière Lebrun, Gare d'Austerlitz, Gare du Montparnasse, Mac Mahon, Mahatma Gandhi, Mairie du 4ème, Mazet - Saint-André des Arts, Mutualité, Mézières Rennes, Nicaragua, Place Fernad Mourlot, Place de la Réunion, Quai Maurica - Pont de Bercy, Raspail Quinet, Saint-Placide - Cherche Midi, Square Berlioz, Trudain - Martyrs, Vaugirard - Desgoffe, Vaugirard, Wagram, Écoles Carmes, Sahel, Nogent - Porte Jaune, Route de la pyramide - École du Breuil, Daumesnil Hébrard, 09039 - CHAUSSEE D'ANTIN, Pont Neuf, Boulevard de Reims, Maubeuge condorcet, Rochechouart maubeuge, Poissonniere, Pado - croix nivert, Hippodrome d'Auteuil, Porte d'Auteuil, Rosa Parks - Gare RER E, Rosa Parks - Gaston Tessier, Sèvres Lecourbe, Alésia-Gergovie, Vaillant-Couturier, Raymond Losserand, Raymond Losserand, Beaubourg place michelet, Sébastopol Rambuteau +1 +http://www.eco-public.com/public2/?id=100117706, http://www1.infracontrol.com/cykla/bikedata.asp?system=karlstad, http://vmz.bremen.de/radzaehlstationen.html, http://www.bicyclecounter.dk/BicycleCounter/BC KBH.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC KBH DRLOUISE.jsp, http://hr-langestr.visio-tools.com/, http://hr-amstrande.visio-tools.com/, http://www.bicyclecounter.dk/BicycleCounter/BC Reykjavik.jsp, http://www.rowerowygdansk.pl/start, 169, 67.html, http://www.vejle.dk/Borger/Trafik-veje-og-groenne-omraader/Trafiktal/Cykelbarometer.aspx, http://www.eco-public.com/public2/?id=100117704, http://www.eco-public.com/public2/?id=100117712, http://www.eco-public.com/public2/?id=100117732, http://eco-public.com/Public/?id=100009931, http://ottawa-laurier.visio-tools.com/, http://laurier.montreal.visio-tools.com/, http://portagebridge.ottawa.visio-tools.com/, http://www.bicyclecounter.dk/BicycleCounter/BC Naestved Jernbanegade.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC AALB II.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC AALB 3 Hobrovej.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC AALB.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC AALB 4 Soenderbro.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Hjoerring Banestien.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC FRED.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Hadsund Stationvej.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Esbjerg 1.jsp, http://www.fredericiacykelby.dk/Cykelbarometer, http://www.fredericiacykelby.dk/Cykelbarometer, http://www.fredericiacykelby.dk/Cykelbarometer, http://www.fredericia.dk/cykel/Paacykelibyen/Sider/Cykelbarometer.aspx, http://www.bicyclecounter.dk/BicycleCounter/BC Helsingor Stubbedamsvej.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Helsingor Bramstraede.jsp, http://www.cyclistcounter.com/StandardPage.asp?PgID=138&mID=184, http://www.cyclistcounter.com/StandardPage.asp?PgID=181&mID=233, http://www.vejle.dk/Borger/Trafik-veje-og-groenne-omraader/Trafiktal/Cykelbarometer.aspx, http://www.bicyclecounter.dk/BicycleCounter/BC Viborg Randersvej.jsp, http://www1.infracontrol.com/cykla/barometer/barometer fi.asp?system=helsinki&mode=, http://www.eco-public.com/public2/?id=100117730, http://www.eco-public.com/public2/?id=100117731, http://www.eco-public.com/public2/?id=100117703, http://legacytrail.canmore.visio-tools.com/, http://www.eco-public.com/public2/?id=100117728, http://www.freiburg.de/pb/, Lde/336245.html, http://www.eco-public.com/public2/?id=100117687, http://eco-public.com/Public/?id=100004692, http://contador-ciclista-reforma-222-ciudad-de-mexico.visio-tools.com/, http://www.eco-public.com/public2/?id=100117729, http://www.bicyclecounter.dk/BicycleCounter/BC DUBLIN 2.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC DUBLIN.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Luxembourg.jsp, http://www.eco-public.com/public2/?id=100117685, http://eco-public.com/public2/?id=100001393, http://www.eco-public.com/public2/?id=100117723, http://www.eco-public.com/public2/?id=100117724, http://www.el-traffic.pl/statystyki, http://www.el-traffic.pl/statystyki, http://www.bicyclecounter.dk/BicycleCounter/BC Apeldorn BC1 Apeldorn.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Apeldorn BC2 Twello.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Apeldorn BC3 Teuge.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Apeldorn BC4 Deventer.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Apeldorn BC5 Twello.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Scotland BC9.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Scotland BC3.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Scotland BC7.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Scotland BC6.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Scotland BC1.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Scotland BC8.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Scotland BC4.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Scotland BC2.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Scotland BC5.jsp, http://news.hackney.gov.uk/cycle-counter/, http://www.bicyclecounter.dk/BicycleCounter/BC Brighton Mouselcoumb.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Brighton Surrenden.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Cardiff North Road.jsp, http://madison-monroe.visio-tools.com/, http://www.eco-public.com/public2/?id=100117688, http://www.eco-public.com/public2/?id=100117689, http://asker-stasjon.visio-tools.com/, http://www.eco-public.com/public2/?id=100010274, http://www.eco-public.com/public2/?id=100010271, http://www.eco-public.com/public2/?id=100010268, http://www.eco-public.com/public2/?id=100011852, http://www.bicyclecounter.dk/BicycleCounter/BC Oslo Munkedamsveien.jsp, http://www.eco-public.com/public2/?id=100010273, http://www.eco-public.com/public2/?id=100010269, http://www.bicyclecounter.dk/BicycleCounter/BC Oslo Sorkedalsveien.jsp, http://www.eco-public.com/public2/?id=100011851, http://www.eco-public.com/public2/?id=100010270, http://www.eco-public.com/public2/?id=100011854, http://www.eco-public.com/public2/?id=100011853, http://www.eco-public.com/public2/?id=100010265, http://www.eco-public.com/public2/?id=100010264, http://www.eco-public.com/public2/?id=100117676, http://www.eco-public.com/public2/?id=100117710, http://www.eco-public.com/public2/?id=100117715, http://www.eco-public.com/public2/?id=100117700, http://www.eco-public.com/public2/?id=100117699, https://www1.infracontrol.com/cykla/ndata2.asp?system=drammen, http://www.eco-public.com/public2/?id=100117699, http://www.bicyclecounter.dk/BicycleCounter/BC Trondheim.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Hamar Bryggerigata.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Hamar Stangevegen.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Sandnes.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Stavanger.jsp, http://www.bicyclecounter.dk/BicycleCounter/BC Kristianssand.jsp, http://portagebridge.ottawa.visio-tools.com/, http://www.eco-public.com/public2/?id=100117719, http://www.eco-public.com/public2/?id=100117707, http://www.eco-public.com/public2/?id=100117718, http://eco-public.com/public2/?id=100005630, http://www.eco-public.com/public2/?id=100117683, http://totem-eb-market.sanfrancisco.visio-tools.com/, http://ucla-strathmore-bike-counter.visio-tools.com/, http://boulder13th.visio-tools.com/, http://www.eco-public.com/public2/?id=100117726, http://portland-hawthorne-bridge.visio-tools.com/, http://www.eco-public.com/public2/?id=100117711, http://www.eco-public.com/public2/?id=100117722, http://www.eco-public.com/public2/?id=100117721, http://www.eco-public.com/public2/?id=100117677, http://www.eco-public.com/public2/?id=100117684, http://www.eco-public.com/public2/?id=100117708, http://www.bicyclecounter.dk/BicycleCounter/BC Stockholm Stockholm.jsp, http://www.eco-public.com/public2/?id=100117709, http://www.boras.se/forvaltningar/tekniskaforvaltningen/tekniskaforvaltningen/gatorochvagar/cyklaiboras/cykelstatistik.4.4d290882129b65b4da0800062393.html, http://www.boras.se/forvaltningar/tekniskaforvaltningen/tekniskaforvaltningen/gatorochvagar/cyklaiboras/cykelstatistik.4.4d290882129b65b4da0800062393.html, http://www.boras.se/forvaltningar/tekniskaforvaltningen/tekniskaforvaltningen/gatorochvagar/cyklaiboras/cykelstatistik.4.4d290882129b65b4da0800062393.html, http://www.boras.se/forvaltningar/tekniskaforvaltningen/tekniskaforvaltningen/gatorochvagar/cyklaiboras/cykelstatistik.4.4d290882129b65b4da0800062393.html, http://www1.infracontrol.com/cykla/bikedata.asp?system=Danderyd, http://www.eco-public.com/ParcPublic/?id=3651, http://www1.infracontrol.com/cykla/bikedata.asp?system=harryda, http://www1.infracontrol.com/cykla/bikedata.asp?system=Jonkoping, http://www1.infracontrol.com/cykla/bikedata.asp?system=Jonkoping, http://www1.infracontrol.com/cykla/bikedata.asp?system=Jonkoping, http://www1.infracontrol.com/cykla/bikedata.asp?system=karlstad, http://www1.infracontrol.com/cykla/bikedata.asp?system=kungalv, http://www1.infracontrol.com/cykla/bikedata.asp?system=lulea, http://www1.infracontrol.com/cykla/bikedata.asp?system=molndal, http://www1.infracontrol.com/cykla/bikedata.asp?system=norrkoping, http://www1.infracontrol.com/cykla/bikedata.asp?system=orebro, http://www1.infracontrol.com/cykla/bikedata.asp?system=orebro, http://www1.infracontrol.com/cykla/bikedata.asp?system=ornskoldsvik, http://www1.infracontrol.com/cykla/bikedata.asp?system=ornskoldsvik, http://www1.infracontrol.com/cykla/bikedata.asp?system=ostersund, http://www.framtidsvagen.net/cykelbarometer.html, http://www1.infracontrol.com/cykla/bikedata.asp?system=sodertalje, http://www1.infracontrol.com/cykla/bikedata.asp?system=sundsvall, http://www1.infracontrol.com/cykla/bikedata.asp?system=sundsvall, http://www1.infracontrol.com/cykla/bikedata.asp?system=Vaxjo, http://www1.infracontrol.com/cykla/bikedata.asp?system=Vaxjo, http://www.bicyclecounter.dk/BicycleCounter/BC Apeldorn BC5 Twello.jsp, http://eco-public.com/public2/?id=100023038 +yes +30 and 48.1280556 11.6085449, 48.1330014 11.6896930, 48.1369439 11.6212658, 48.1326620 11.5460069, 48.1532363 11.5375666, 48.1333465 11.5280605, 48.1563136 11.5749819, 48.1446564 11.5577649, 48.1560591 11.5549218, 48.1875182 11.5531779, 48.1857331 11.5728826, 48.0883280 11.5050421, 48.1890971 11.5738285, 48.1893184 11.5703479, 48.1594532 11.5568430, 48.1859274 11.5581572, 48.1769117 11.5574620, 48.1732462 11.5324016, 48.1326162 11.5725116, 48.1243551 11.5828982, 48.1175192 11.6018298, 48.1414091 11.5622937, 48.1486728 11.4618438, 48.1284088 11.6104886, 48.1181464 11.5975894, 48.1967775 11.6008702, 48.1997131 11.6019487, 48.1334286 11.5170383, 48.1719670 11.5329410, 48.1175235 11.5740965 +40 +3528 +46.3554455 -0.6680522, 46.3458003 -0.6849917, 48.0169900 0.1529468, 48.1846137 0.6536841, 48.1857639 0.6528687, 48.1853805 0.6538558, 48.1877586 0.6535933, 47.2661765 -0.5769410, 47.0326315 -0.6067364, 46.9193815 -0.8487945, 47.9936287 0.1902660, 47.2001295 -0.0915538, 47.1129029 -0.6325854, 48.2195485 0.6367839, 47.5306968 -0.1184749, 48.0660784 -0.1560527, 48.2411687 -0.6198366, 46.3702547 -0.7025105, 46.5229325 -0.7565522, 46.4677815 -0.7739333, 48.4390727 -0.1176280, 48.1829382 -0.3020747, 48.0411951 -0.0567503, 47.2661676 -0.5769699, 48.0991378 0.7992432, 48.2409377 0.2693865, 47.2737624 -0.0625629, 47.0818312 -0.8260868, 47.2346479 -0.4859183, 47.4745987 -0.5551031, 47.4507380 -0.5875344, 48.0717155 -0.7527385, 48.0713777 -0.7539122, 48.0713575 -0.7538841, 48.1320111 0.2933997, 48.0238361 0.2048137, 47.2451626 -0.7699908, 47.3398280 -0.0333965, 48.2525786 0.3126753 +100 +Regard de la Roquette, Thermes de Cluny, L'enceinte de Philippe Auguste, Cavae des Arènes de Lutèce +55.9351932 -3.1010341, 55.9501318 -3.1886125, 55.9623527 -3.1790390, 55.9713786 -3.1713983, 55.9708769 -3.1716878, 55.9508780 -3.2095210, 55.9373728 -3.2396057 +86 +55.9517532 -3.2076351, 55.9496445 -3.2139341, 55.9552766 -3.2114803, 55.9554933 -3.1127441, 55.9460715 -3.1853558, 55.9544114 -3.1796606, 55.9229935 -3.1644934, 55.9475112 -3.1927420, 55.9439779 -3.2072434, 55.9747241 -3.1909717, 55.9519777 -3.1041094, 55.9228448 -3.1879796, 55.9046953 -3.2387239, 55.9420318 -3.2003269, 55.9472228 -3.1971414, 55.9822842 -3.1767544, 55.9250719 -3.2093337, 55.9488817 -3.1964228, 55.9308499 -3.2092267, 55.9805861 -3.2996706, 55.9547373 -3.1818091, 55.9325864 -3.1383719, 55.9509906 -3.2723561, 55.9571047 -3.1371623, 55.9523683 -3.1932627, 55.9496431 -3.1901820, 55.9533516 -3.1857544, 55.9109094 -3.2176755, 55.9613185 -3.1710995, 55.9382730 -3.1931565, 55.9371945 -3.2067011, 55.9350483 -3.2011995, 55.9531736 -3.2075942, 55.9529750 -3.1956000, 55.9542131 -3.1931571, 55.9561206 -3.1871786, 55.9539186 -3.1904727, 55.9543557 -3.1826295, 55.9534356 -3.1783191, 55.9250332 -3.2101503 +6 +48.8613883 2.3754494, 48.8534376 2.3881152 +49.3819891 8.7064791, 49.4052183 8.7807063, 49.4095083 8.7002566, 49.4109969 8.7018271 +yes +yes +1952, 1978, 1969 +11 +26 +83 +49 and 53.9900182 -1.1048507, 54.0107391 -1.0814402, 53.9695593 -1.1044687, 53.9783035 -1.1064726, 53.9659202 -1.1066465, 53.9852880 -1.1561727, 54.0307341 -1.0382265, 53.9755492 -1.0707896, 54.0146884 -1.0718957, 53.9877014 -1.1050782, 53.9871441 -1.0473926, 53.9859898 -1.0651562, 53.9990117 -1.1284252, 54.0411661 -1.0300613, 54.0118558 -1.0595910, 53.9793720 -1.0633348, 53.9673959 -1.0714738, 53.9874393 -1.1204313, 53.9868873 -1.1220633, 53.9776740 -1.0644274, 53.9671473 -1.1196181, 54.0421058 -1.0253387, 53.9731081 -1.0720236, 53.9728750 -1.0718855, 53.9891412 -1.0750065, 53.9697935 -1.0788931, 54.0031479 -1.0620491, 53.9761008 -1.0866567, 54.0086708 -1.0590792, 53.9771511 -1.1335660, 53.9679082 -1.0462940, 53.9787147 -1.0614117, 53.9675172 -1.0774716, 54.0175617 -1.0838151, 53.9955927 -1.0554353, 53.9872557 -1.1137428, 53.9773826 -1.0941901, 53.9781054 -1.0952493, 53.9719535 -1.0928503, 53.9799100 -1.0663846, 53.9735958 -1.2046224, 53.9663972 -1.1227394, 53.9838702 -1.1222527, 53.9889063 -1.1110964, 53.9862724 -1.1105539, 53.9744987 -1.0900125, 54.0299745 -1.0344258, 54.0284637 -1.0347685, 54.0224401 -1.0399706 +yes and 49.4318310 8.6836270, 49.4121450 8.6987768, 49.4124321 8.7010303, 49.4128030 8.7033256, 49.4269801 8.6859008, 49.4105855 8.7141628, 49.4220915 8.6571134, 49.4121181 8.6777333, 49.3881014 8.6984145, 49.4073511 8.6950858, 49.4067775 8.6875474, 49.4072453 8.6935383, 49.3832213 8.6907187, 49.4111661 8.7179791, 49.4093634 8.6798229, 49.4097101 8.7003135, 49.3894911 8.6886503, 49.4210818 8.6584912, 49.4153769 8.7011671, 49.3990263 8.6893550, 49.4047822 8.6792564, 49.4053466 8.6826194, 49.4039594 8.6787735, 49.4043672 8.6800807, 49.3879387 8.7394118, 49.4141047 8.7179330, 49.4107561 8.6925391, 49.4255204 8.6463717, 49.4279410 8.6825955, 49.3766255 8.7047203, 49.4087768 8.6688678, 49.4085477 8.6698841, 49.4093244 8.6714826, 49.3863330 8.6986191, 49.4061925 8.7091454, 49.4137983 8.6515848, 49.4285005 8.6860866, 49.4240113 8.6489002, 49.4117904 8.7026026, 49.4022061 8.6448435, 49.4119136 8.6685624, 49.4270021 8.6876407, 49.3725953 8.6872497, 49.4099780 8.7146811, 49.4053167 8.6384700, 49.4263576 8.6874187, 49.3739094 8.6903811, 49.4200878 8.6891023, 49.4198841 8.6890807, 49.3985345 8.6858211 +yes +48.8660027 2.3646613, 48.8573191 2.3660431, 48.8580708 2.3643313, 48.8577587 2.3607290, 48.8630297 2.3612527, 48.8483622 2.3739893, 48.8648222 2.3475072, 48.8609918 2.3544137, 48.8557612 2.3561274, 48.8533876 2.3620076, 48.8575825 2.3562566, 48.8577181 2.3586116, 48.8555900 2.3628380, 48.8437435 2.3544856, 48.8498300 2.3549148, 48.8446680 2.3483159, 48.8705409 2.3532213, 48.8711564 2.3649322, 48.8755778 2.3590863, 48.8759060 2.3588881, 48.8727960 2.3635124, 48.8636179 2.3671410, 48.8660128 2.3794462, 48.8638290 2.3670497, 48.8679153 2.3737355, 48.8656744 2.3707975, 48.8683924 2.3793396, 48.8645151 2.3730525, 48.8679409 2.3754781, 48.8554631 2.3741053, 48.8533962 2.3787654, 48.8554359 2.3744522, 48.8533316 2.3759759, 48.8561021 2.3751898, 48.8667776 2.3826288, 48.8263535 2.3601541, 48.8263671 2.3595230, 48.8278970 2.3505521, 48.8234665 2.3685489, 48.8596461 2.3534386, 48.8449146 2.3734371, 48.8523799 2.4036853, 48.8795968 2.3519355, 48.8544589 2.4006544, 48.8475463 2.3713427, 48.8673444 2.3739608, 48.8632240 2.3875689, 48.8570811 2.3559832, 48.8527753 2.4059315, 48.8551966 2.4016334, 48.8540343 2.4058858, 48.8694050 2.3549341, 48.8693462 2.3552659, 48.8461967 2.3783357, 48.8671351 2.3657118, 48.8667808 2.3656961, 48.8666591 2.3656152, 48.8684771 2.3626799, 48.8666678 2.3662969, 48.8657085 2.3712657, 48.8655987 2.3744866, 48.8630511 2.3852954, 48.8780431 2.3720976, 48.8360044 2.3574926, 48.8237611 2.3626525, 48.8477330 2.3484405, 48.8415272 2.3511512, 48.8718873 2.3570864, 48.8288139 2.3506397, 48.8566933 2.4002542, 48.8374507 2.3523064, 48.8334170 2.3554490, 48.8537402 2.4056302, 48.8538057 2.4056125, 48.8484568 2.3995601, 48.8478160 2.3975417, 48.8828817 2.3596543, 48.8641255 2.3676318, 48.8742283 2.3755427, 48.8882137 2.3785003, 48.8723344 2.3492288, 48.8514886 2.3986829, 48.8630061 2.3625592, 48.8628927 2.3617428, 48.8528282 2.4062488, 48.8474511 2.3483430, 48.8880361 2.3910565, 48.8518790 2.3487080, 48.8620045 2.3484135, 48.8621883 2.3485126, 48.8696045 2.3711651, 48.8718241 2.3676242, 48.8719097 2.3674864, 48.8664224 2.3652804, 48.8663460 2.3644859, 48.8674473 2.3626414, 48.8675118 2.3625438, 48.8652993 2.3734818, 48.8639802 2.3867074, 48.8642946 2.3862990, 48.8662357 2.3840946, 48.8667100 2.3812708, 48.8661982 2.3800386, 48.8650645 2.3775756, 48.8657840 2.3770479, 48.8661962 2.3766789, 48.8669356 2.3763865, 48.8680369 2.3754008, 48.8676267 2.3787920, 48.8598744 2.3476273, 48.8514969 2.3476094, 48.8378680 2.3520336, 48.8491407 2.3785568, 48.8467150 2.3839386, 48.8479594 2.3771753, 48.8468326 2.3790947, 48.8509991 2.3778569, 48.8484434 2.3726021, 48.8490503 2.3712312, 48.8477004 2.3736634, 48.8500746 2.3738623, 48.8447706 2.3779554, 48.8451286 2.3836536, 48.8541269 2.3674250, 48.8622962 2.3522413, 48.8645313 2.3550653, 48.8627431 2.3531218, 48.8628573 2.3522080, 48.8613333 2.3538187, 48.8489304 2.3762840, 48.8462620 2.3786885, 48.8453283 2.3813011, 48.8446100 2.3833680, 48.8477398 2.3888781, 48.8476122 2.3930340, 48.8420168 2.3896839, 48.8367142 2.3522749, 48.8297431 2.3515115, 48.8681798 2.3714175, 48.8722393 2.3651243, 48.8275755 2.3532310, 48.8748569 2.3825637, 48.8741633 2.3754482, 48.8664641 2.3722308, 48.8361883 2.4001628, 48.8361733 2.3992550, 48.8355057 2.3978609, 48.8381280 2.3966112, 48.8385750 2.3962263, 48.8644029 2.4080476, 48.8361097 2.4056728, 48.8400454 2.3808140, 48.8347357 2.3876562, 48.8396394 2.3801031, 48.8394044 2.3805434, 48.8465303 2.3834704, 48.8463112 2.3834371, 48.8396241 2.4024373, 48.8477852 2.3980971, 48.8485668 2.3983079, 48.8514297 2.3722999, 48.8544625 2.3823250, 48.8507756 2.3816053, 48.8367172 2.3924117, 48.8366661 2.3926576, 48.8366787 2.3933514, 48.8432799 2.3892766, 48.8450336 2.3825955, 48.8453967 2.3826032, 48.8470342 2.3868537, 48.8469567 2.3869061, 48.8466891 2.3824558, 48.8467101 2.3827554, 48.8508333 2.3797344, 48.8494049 2.3783024, 48.8481949 2.3766544, 48.8482849 2.3767134, 48.8499216 2.3737700, 48.8456109 2.3933509, 48.8410573 2.3873134, 48.8478582 2.3735429, 48.8483311 2.3741932, 48.8462275 2.3737111, 48.8458407 2.3720988, 48.8459184 2.3726478, 48.8491474 2.3746104, 48.8471402 2.3725177, 48.8490161 2.3747617, 48.8470772 2.3727405, 48.8475609 2.3752480, 48.8469814 2.3726034, 48.8459741 2.3725698, 48.8459507 2.3730386, 48.8458244 2.3719271, 48.8464740 2.3718667, 48.8501253 2.3762844, 48.8493623 2.3902888, 48.8497475 2.3788828, 48.8468146 2.3805349, 48.8442266 2.3492264, 48.8252128 2.3624715, 48.8251313 2.3623868, 48.8248667 2.3622623, 48.8687850 2.3594780, 48.8462167 2.3753959, 48.8460708 2.3770013, 48.8458391 2.3749747, 48.8469247 2.3730534, 48.8472565 2.3708817, 48.8471819 2.3707631, 48.8467280 2.3702882, 48.8465554 2.3692393, 48.8463534 2.3689294, 48.8456188 2.3700692, 48.8453198 2.3707747, 48.8457141 2.3704736, 48.8905909 2.3820031, 48.8920861 2.3792943, 48.8922518 2.3794780, 48.8487705 2.3484391, 48.8488367 2.3472494, 48.8759394 2.3585316, 48.8522230 2.3849242, 48.8510651 2.3842956, 48.8525445 2.3847726, 48.8452457 2.3838856, 48.8239780 2.3622896, 48.8368051 2.3525786, 48.8524629 2.4041332, 48.8576438 2.3546760, 48.8577293 2.3547383, 48.8578549 2.3549208, 48.8343850 2.3935686, 48.8331731 2.3864450, 48.8330278 2.3862477, 48.8330119 2.3635033, 48.8322800 2.3612312, 48.8331196 2.3540446, 48.8321701 2.3590298, 48.8319327 2.3582100, 48.8330825 2.3614982, 48.8332640 2.3561912, 48.8321364 2.3546768, 48.8355997 2.3589131, 48.8353091 2.3587223, 48.8534095 2.3799147, 48.8723362 2.3823271, 48.8253500 2.3613456, 48.8392195 2.3712618, 48.8321878 2.3587424, 48.8375203 2.3917674, 48.8830692 2.3825494, 48.8839003 2.3840684, 48.8590672 2.3498178, 48.8671282 2.3756094, 48.8496002 2.3981379, 48.8528829 2.3864220, 48.8530453 2.3745559, 48.8504050 2.3701018, 48.8517234 2.3993213, 48.8652123 2.3628985, 48.8646132 2.3569121, 48.8650523 2.3569392, 48.8730380 2.3797045, 48.8461025 2.3834255, 48.8878588 2.3596648, 48.8472505 2.3480517, 48.8583659 2.3474922, 48.8542020 2.3503178, 48.8599442 2.3474167, 48.8601724 2.3488956, 48.8619643 2.3491461, 48.8625821 2.3483927, 48.8635373 2.3490562, 48.8631582 2.3498973, 48.8629810 2.3484703, 48.8744252 2.3738880, 48.8496754 2.3496176, 48.8647371 2.3502921, 48.8696741 2.3519506, 48.8703899 2.3484689, 48.8518091 2.3568234, 48.8519507 2.3561108, 48.8517989 2.3564163, 48.8575762 2.3501043, 48.8555040 2.3574259, 48.8590577 2.3501929, 48.8593929 2.3493115, 48.8583173 2.3517204, 48.8595480 2.3490548, 48.8616594 2.3501884, 48.8794020 2.3884400, 48.8274198 2.3518171, 48.8572208 2.3551092, 48.8571117 2.3550358, 48.8571384 2.3549764, 48.8569458 2.3554337, 48.8646409 2.3536613, 48.8635758 2.3531607, 48.8636089 2.3534360, 48.8640231 2.3502159, 48.8581626 2.3561038, 48.8579512 2.3567221, 48.8564037 2.3572215, 48.8569706 2.3578174, 48.8570944 2.3576266, 48.8573873 2.3589592, 48.8575151 2.3587307, 48.8574097 2.3590501, 48.8422251 2.3519017, 48.8259202 2.3471664, 48.8569391 2.3587226, 48.8562824 2.3592731, 48.8562386 2.3592343, 48.8558049 2.3600410, 48.8402209 2.3517797, 48.8555549 2.3612781, 48.8559169 2.3603985, 48.8556266 2.3621786, 48.8554990 2.3630220, 48.8550149 2.3631694, 48.8556083 2.3627374, 48.8552888 2.3629682, 48.8553171 2.3630156, 48.8552064 2.3625817, 48.8555544 2.3581927, 48.8549470 2.3612543, 48.8557611 2.3570094, 48.8556412 2.3606593, 48.8260343 2.3476244, 48.8540797 2.3659063, 48.8562566 2.3646932, 48.8549472 2.3633131, 48.8537619 2.3675235, 48.8549776 2.3673407, 48.8540510 2.3686163, 48.8538949 2.3685489, 48.8554539 2.3579276, 48.8548402 2.3583739, 48.8551687 2.3602451, 48.8543977 2.3599670, 48.8521583 2.3613070, 48.8525480 2.3641850, 48.8532015 2.3640647, 48.8544815 2.3628958, 48.8536886 2.3643812, 48.8545334 2.3627527, 48.8519412 2.3645366, 48.8498781 2.3644772, 48.8477690 2.3654853, 48.8626959 2.3521061, 48.8619134 2.3509953, 48.8671336 2.3577810, 48.8657120 2.3565756, 48.8645093 2.3542545, 48.8644805 2.3545447, 48.8646620 2.3539239, 48.8644591 2.3546214, 48.8682730 2.3614921, 48.8674734 2.3577982, 48.8661285 2.3594408, 48.8655917 2.3595983, 48.8651109 2.3571532, 48.8649701 2.3570435, 48.8751228 2.3939970, 48.8724707 2.3776998, 48.8717657 2.3765997, 48.8714128 2.3768852, 48.8189632 2.3613966, 48.8208495 2.3637354, 48.8235845 2.3656863, 48.8262413 2.3615997, 48.8237603 2.3652263, 48.8613715 2.3542462, 48.8635569 2.3610435, 48.8630524 2.3640855, 48.8640247 2.3639954, 48.8615020 2.3620520, 48.8449381 2.3496655, 48.8594649 2.3600214, 48.8602716 2.3621222, 48.8590981 2.3594568, 48.8526479 2.3470482, 48.8617960 2.3778943, 48.8624536 2.3800165, 48.8560432 2.3669557, 48.8559327 2.3681748, 48.8881390 2.3534840, 48.8636510 2.3505320, 48.8643222 2.3548396, 48.8644140 2.3547850, 48.8382008 2.3515664, 48.8651140 2.3778720, 48.8821123 2.3666359, 48.8790715 2.3649117, 48.8792236 2.3665452, 48.8820420 2.3678327, 48.8820416 2.3661137, 48.8818956 2.3658787, 48.8782055 2.3656749, 48.8788300 2.3662059, 48.8815137 2.3659229, 48.8777011 2.3652544, 48.8803699 2.3667330, 48.8808723 2.3646162, 48.8760311 2.3700774, 48.8610790 2.3535900, 48.8417641 2.3556159, 48.8429787 2.3633417, 48.8359676 2.3585104, 48.8536730 2.3797768, 48.8671314 2.3577761, 48.8668458 2.3586800, 48.8668914 2.3584627, 48.8670160 2.3581568, 48.8670538 2.3582562, 48.8668315 2.3590233, 48.8668006 2.3582106, 48.8647030 2.3567983, 48.8647921 2.3568339, 48.8643639 2.3541873, 48.8668657 2.3585775, 48.8801119 2.3535250, 48.8487629 2.3975462, 48.8632239 2.3566007, 48.8685410 2.3894417, 48.8396584 2.3567615, 48.8706337 2.3954670, 48.8788328 2.3896914, 48.8600728 2.4041262, 48.8597085 2.4049673, 48.8583918 2.4006119, 48.8390096 2.3532786, 48.8389664 2.3530576, 48.8384933 2.3512141, 48.8614760 2.3530830, 48.8885830 2.3930712, 48.8831626 2.3618001, 48.8829824 2.3614134, 48.8827589 2.3595149, 48.8835628 2.3609310, 48.8733935 2.3902484, 48.8739298 2.3893471, 48.8821165 2.3636110, 48.8787523 2.3641791, 48.8775739 2.3642408, 48.8800819 2.3647141, 48.8801565 2.3594651, 48.8797114 2.3574552, 48.8804717 2.3578445, 48.8784279 2.3643183, 48.8826930 2.3668426, 48.8193723 2.3655267, 48.8754103 2.3500663, 48.8702381 2.3689388, 48.8827554 2.3649189, 48.8296408 2.3826067, 48.8296130 2.3809208, 48.8282557 2.3802729, 48.8314453 2.3762846, 48.8434466 2.3895932, 48.8802074 2.3638169, 48.8828408 2.3670033, 48.8831548 2.3679716, 48.8397944 2.3818660, 48.8799198 2.3624384, 48.8801632 2.3624358, 48.8490162 2.3701002, 48.8740698 2.3727422, 48.8498772 2.3811118, 48.8495091 2.3797387, 48.8463681 2.3733407, 48.8542991 2.3674061, 48.8538841 2.3681040, 48.8479223 2.3736079, 48.8445537 2.3572323, 48.8438344 2.3546970, 48.8951764 2.3824259, 48.8801236 2.3667122, 48.8799930 2.3669160, 48.8815607 2.3646012, 48.8286456 2.3651923, 48.8604905 2.3677993, 48.8505335 2.3887324, 48.8453467 2.3836640, 48.8369274 2.3592628, 48.8513298 2.3837511, 48.8765522 2.3574684, 48.8709201 2.3740599, 48.8710092 2.3742679, 48.8592147 2.3578986, 48.8475082 2.3756380, 48.8866286 2.3612403, 48.8902851 2.3688154, 48.8463464 2.3945644, 48.8559760 2.3666852, 48.8485371 2.3779078, 48.8511475 2.3804023, 48.8515005 2.3480197, 48.8505010 2.3475831, 48.8656690 2.3706000, 48.8663775 2.3472549, 48.8485654 2.3482310, 48.8496798 2.3526713, 48.8515559 2.3496810, 48.8472106 2.3483382, 48.8471676 2.3484712, 48.8575636 2.3501179, 48.8430442 2.3495364, 48.8431709 2.3494420, 48.8428285 2.3484260, 48.8450551 2.3490236, 48.8455001 2.3492453, 48.8449589 2.3493182, 48.8452352 2.3492038, 48.8453933 2.3492411, 48.8452357 2.3490360, 48.8451938 2.3492149, 48.8449425 2.3498446, 48.8449041 2.3498515, 48.8384619 2.3563683, 48.8384169 2.3562199, 48.8387726 2.3573303, 48.8395766 2.3564711, 48.8580509 2.3613022, 48.8603491 2.3508475, 48.8841171 2.3650610, 48.8359122 2.3596749, 48.8507370 2.3741124, 48.8500040 2.3740125, 48.8516089 2.3778622, 48.8503505 2.3762126, 48.8465347 2.3810262, 48.8452145 2.3770818, 48.8247155 2.3622282, 48.8245453 2.3629329, 48.8217881 2.3649842, 48.8299382 2.3626544, 48.8567106 2.3947298, 48.8717034 2.3766791, 48.8516581 2.3996110, 48.8512398 2.3832978, 48.8502779 2.3906229, 48.8503887 2.3930028, 48.8502002 2.3918245, 48.8507491 2.3956735, 48.8657517 2.3712388, 48.8655880 2.3691209, 48.8399742 2.3934259, 48.8366296 2.4029905, 48.8385089 2.3991495, 48.8426310 2.3854954, 48.8347163 2.4076218, 48.8390560 2.3924535, 48.8378894 2.3906889, 48.8397585 2.3884230, 48.8390438 2.3923714, 48.8470660 2.3954688, 48.8714920 2.3541352, 48.8774236 2.4101645, 48.8458069 2.3492233, 48.8791462 2.3541109, 48.8796589 2.3543864, 48.8792363 2.3631395, 48.8734790 2.3750462, 48.8732283 2.3745203, 48.8605552 2.3544304, 48.8503634 2.3868517, 48.8726908 2.3752657, 48.8674203 2.3758861, 48.8682312 2.3751770, 48.8655345 2.3775152, 48.8693522 2.3713516, 48.8692142 2.3714534, 48.8694819 2.3712557, 48.8673820 2.3728092, 48.8673041 2.3731992, 48.8333957 2.3653856, 48.8678500 2.3687750, 48.8649857 2.3752785, 48.8660987 2.3722759, 48.8663125 2.3723460, 48.8661552 2.3797640, 48.8656909 2.3777859, 48.8670939 2.3749249, 48.8644002 2.3730285, 48.8677794 2.3780026, 48.8646865 2.3738115, 48.8674715 2.3750082, 48.8632185 2.3775523, 48.8637330 2.3792298, 48.8254617 2.3652375, 48.8826774 2.3602875, 48.8569621 2.3721314, 48.8567777 2.3726141, 48.8545688 2.3719378, 48.8536042 2.3707268, 48.8538783 2.3707951, 48.8546993 2.3708799, 48.8345104 2.3934103, 48.8455102 2.3829497, 48.8553433 2.3747935, 48.8538434 2.3724806, 48.8418339 2.3497835, 48.8549268 2.3539661, 48.8570588 2.3798634, 48.8524031 2.3825246, 48.8958659 2.3827194, 48.8303551 2.3540212, 48.8546913 2.3857584, 48.8503931 2.3688912, 48.8506208 2.3689945, 48.8493300 2.3749472, 48.8224620 2.3587564, 48.8502257 2.3782954, 48.8503235 2.3783645, 48.8495013 2.3784402, 48.8850543 2.3872280, 48.8401706 2.3924398, 48.8290830 2.3743921, 48.8847919 2.3672165, 48.8283217 2.3816212, 48.8444522 2.3901640, 48.8443813 2.3902545, 48.8260323 2.3598011, 48.8226689 2.3629591, 48.8432368 2.3854870, 48.8713001 2.3766068, 48.8704762 2.3775322, 48.8704356 2.3764056, 48.8712066 2.3768241, 48.8470725 2.4064857, 48.8391796 2.3955829, 48.8387420 2.3963264, 48.8390768 2.3942535, 48.8370556 2.3918823, 48.8372166 2.3915674, 48.8387373 2.3961225, 48.8516698 2.3805401, 48.8703131 2.3487884, 48.8731247 2.3808610, 48.8649854 2.3569095, 48.8645459 2.3566348, 48.8635544 2.3694256, 48.8634434 2.3691079, 48.8734969 2.3525798, 48.8721862 2.3501755, 48.8708723 2.3480533, 48.8704690 2.3480544, 48.8751154 2.3557100, 48.8749802 2.3559340, 48.8744702 2.3552896, 48.8773577 2.3564531, 48.8785393 2.3568626, 48.8767619 2.3563475, 48.8786854 2.3569358, 48.8779934 2.3562593, 48.8782144 2.3566970, 48.8799927 2.3591789, 48.8812174 2.3638517, 48.8796296 2.3553194, 48.8800642 2.3523843, 48.8809546 2.3510669, 48.8751402 2.3514767, 48.8277214 2.3493461, 48.8582656 2.3882446, 48.8543675 2.3835627, 48.8658986 2.3742587, 48.8663671 2.3715603, 48.8648305 2.3731176, 48.8972266 2.3855240, 48.8796615 2.3550800, 48.8798780 2.3540920, 48.8613780 2.3495790, 48.8526640 2.3534610, 48.8530320 2.3533850, 48.8523740 2.3670920, 48.8805044 2.3746913, 48.8697793 2.3750857, 48.8537952 2.4109052, 48.8598419 2.3677964, 48.8498873 2.3503879, 48.8377658 2.3556217, 48.8752927 2.3875604, 48.8403734 2.3690860, 48.8388484 2.3702978, 48.8376057 2.3732965, 48.8365782 2.3714028, 48.8397347 2.3696009, 48.8359107 2.3720037, 48.8732552 2.3604924, 48.8731705 2.3596985, 48.8720524 2.3605991, 48.8469541 2.4077243, 48.8910970 2.3741558, 48.8911479 2.3740014, 48.8907671 2.3759930, 48.8912248 2.3734447, 48.8476438 2.3479747, 48.8735546 2.3841519, 48.8495928 2.3812853, 48.8911373 2.3471492, 48.8907355 2.3482159, 48.8295186 2.3712567, 48.8420173 2.3480157, 48.8431426 2.3492259, 48.8428742 2.3485446, 48.8430296 2.3492151, 48.8430013 2.3491186, 48.8528026 2.3743383, 48.8691880 2.3617720, 48.8694980 2.3633099, 48.8693445 2.3635411, 48.8697450 2.3637220, 48.8686940 2.3597770, 48.8686410 2.3599800, 48.8689770 2.3602190, 48.8690369 2.3600697, 48.8701370 2.3610220, 48.8718820 2.3623620, 48.8721550 2.3626770, 48.8724460 2.3632870, 48.8726535 2.3631861, 48.8732160 2.3629280, 48.8508024 2.3768778, 48.8502524 2.3764928, 48.8417557 2.3487402, 48.8566955 2.3731518, 48.8570910 2.3727607, 48.8407873 2.3491103, 48.8446176 2.3491298, 48.8529638 2.3701915, 48.8521273 2.3846642, 48.8724927 2.3528401, 48.8436740 2.3495038, 48.8451117 2.3493401, 48.8449670 2.3488185, 48.8448364 2.3492811, 48.8448928 2.3492758, 48.8445379 2.3489273, 48.8445159 2.3485397, 48.8434406 2.3494268, 48.8432628 2.3494718, 48.8447332 2.3491164, 48.8446591 2.3491299, 48.8437358 2.3472026, 48.8384430 2.3563154, 48.8447791 2.3492894, 48.8435770 2.3493886, 48.8377834 2.3909830, 48.8911748 2.3607925, 48.8683505 2.3748549, 48.8442707 2.3492157, 48.8412056 2.3941921, 48.8799295 2.3575665, 48.8418196 2.3905033, 48.8441758 2.3479878, 48.8445200 2.3486356, 48.8445253 2.3488180, 48.8570416 2.3726643, 48.8615810 2.3783255, 48.8475785 2.4004192, 48.8743786 2.3636125, 48.8535259 2.4120078, 48.8439446 2.3493055, 48.8438873 2.3493114, 48.8739830 2.3725892, 48.8742654 2.3727129, 48.8566315 2.4020574, 48.8476850 2.4080780, 48.8508424 2.4062247, 48.8356633 2.3751497, 48.8556147 2.3867624, 48.8560496 2.3884378, 48.8531504 2.3773721, 48.8513051 2.3765410, 48.8349006 2.3856248, 48.8795704 2.3522406, 48.8793693 2.3525786, 48.8404972 2.3950481, 48.8661411 2.3671105, 48.8914883 2.3506742, 48.8286998 2.3507416, 48.8286000 2.3506267, 48.8332740 2.3869138, 48.8736230 2.3526886, 48.8789434 2.3780844, 48.8717406 2.3715881, 48.8276701 2.3500783, 48.8732745 2.3532186, 48.8727613 2.3519183, 48.8727251 2.3521315, 48.8526377 2.4062734, 48.8817044 2.3525759, 48.8488761 2.3682264, 48.8211831 2.3635911, 48.8752613 2.3705179, 48.8509701 2.3489635, 48.8476389 2.3773813, 48.8708172 2.3482539, 48.8380973 2.3926743, 48.8395564 2.3497363, 48.8400881 2.3806431, 48.8517277 2.3664938, 48.8515069 2.4066855, 48.8304114 2.3551772, 48.8641319 2.3484339, 48.8883991 2.3510703, 48.8869141 2.3514696, 48.8635290 2.3631763, 48.8825806 2.3672397, 48.8245312 2.3763864, 48.8830046 2.3650381, 48.8830637 2.3612591, 48.8728704 2.3813019, 48.8834736 2.3604504, 48.8902288 2.3476015, 48.8248510 2.3607452, 48.8514101 2.4052556, 48.8515061 2.4064299, 48.8491856 2.4063562, 48.8480831 2.4040261, 48.8222536 2.3618120, 48.8221935 2.3616081, 48.8221264 2.3613884, 48.8222287 2.3611417, 48.8221688 2.3609429, 48.8221335 2.3607766, 48.8221897 2.3589982, 48.8219714 2.3582637, 48.8220277 2.3582482, 48.8685541 2.3683047, 48.8234610 2.3537855, 48.8752485 2.3690581, 48.8298312 2.3567979, 48.8500822 2.3477323, 48.8420674 2.3760001, 48.8496451 2.3534642, 48.8625297 2.3799298, 48.8570961 2.3998935, 48.8590223 2.4024858, 48.8590692 2.4058632, 48.8571003 2.4079730, 48.8793921 2.3895039, 48.8371809 2.3497368, 48.8516647 2.3719912, 48.8973173 2.3848230, 48.8972521 2.3847586, 48.8970881 2.3845721, 48.8648559 2.3969632, 48.8713070 2.3479965, 48.8522713 2.3728858, 48.8743665 2.3618973, 48.8742228 2.3624553, 48.8727849 2.3634181, 48.8617849 2.3518205, 48.8616656 2.3513122, 48.8619390 2.3509944, 48.8595904 2.4050515, 48.8594938 2.4051634, 48.8708913 2.3580857, 48.8687802 2.3624897, 48.8692034 2.3573399, 48.8692739 2.3564386, 48.8699288 2.3950557, 48.8598245 2.3479142, 48.8592985 2.3479258, 48.8601373 2.3481716, 48.8625488 2.3540088, 48.8600406 2.3484986, 48.8600556 2.3483497, 48.8601051 2.3500266, 48.8591455 2.3478511, 48.8602833 2.3482093, 48.8611395 2.3539719, 48.8592067 2.3534078, 48.8620249 2.3537411, 48.8621174 2.3535204, 48.8634709 2.3500130, 48.8601905 2.3476020, 48.8601948 2.3475156, 48.8596378 2.3474576, 48.8629250 2.3487647, 48.8636829 2.3493064, 48.8637680 2.3499140, 48.8634421 2.3485303, 48.8633388 2.3485138, 48.8654002 2.3689374, 48.8363755 2.3920736, 48.8363401 2.3920991, 48.8476343 2.3974001, 48.8452414 2.3792066, 48.8388762 2.3961905, 48.8440274 2.3842239, 48.8614835 2.3771934, 48.8217455 2.3523997, 48.8221973 2.3554703, 48.8495790 2.3543056, 48.8310317 2.3791154, 48.8519848 2.3846342, 48.8643014 2.4002976, 48.8294367 2.3791321, 48.8288886 2.3760435, 48.8720371 2.3481740, 48.8732358 2.3613894, 48.8732268 2.3622695, 48.8239202 2.3655030, 48.8579931 2.4032941, 48.8396713 2.3471300, 48.8610880 2.3512876, 48.8614615 2.3514586, 48.8515798 2.3992009, 48.8515911 2.3992945, 48.8720846 2.3660947, 48.8716623 2.3681061, 48.8448238 2.3691876, 48.8471374 2.3947373, 48.8416499 2.3895371, 48.8447328 2.3894590, 48.8462215 2.3870803, 48.8470847 2.3868148, 48.8603639 2.3478222, 48.8603388 2.3480663, 48.8599384 2.3522973, 48.8412254 2.3738186, 48.8701201 2.3491659, 48.8609895 2.3473093, 48.8655913 2.3471265, 48.8238476 2.3506828, 48.8207235 2.3507707, 48.8199467 2.3483675, 48.8233348 2.3532089, 48.8480339 2.3711696, 48.8515203 2.3696022, 48.8537094 2.3705397, 48.8537227 2.3702879, 48.8534314 2.3706101, 48.8502098 2.3923579, 48.8497025 2.3932209, 48.8494363 2.3945868, 48.8385781 2.3705346, 48.8392685 2.3708042, 48.8221895 2.3632536, 48.8223064 2.3631664, 48.8222916 2.3627648, 48.8222392 2.3628073, 48.8223782 2.3631115, 48.8223716 2.3627130, 48.8230753 2.3626307, 48.8234533 2.3618634, 48.8229485 2.3577916, 48.8229254 2.3569509, 48.8202708 2.3594105, 48.8202117 2.3594306, 48.8195166 2.3596336, 48.8193606 2.3601238, 48.8506918 2.3841353, 48.8258771 2.3495257, 48.8258284 2.3486459, 48.8255453 2.3475405, 48.8771963 2.3513091, 48.8764165 2.3555503, 48.8764781 2.3553328, 48.8764892 2.3552357, 48.8463247 2.3542973, 48.8673359 2.3991033, 48.8665408 2.3996952, 48.8675264 2.4005840, 48.8729522 2.4050353, 48.8722236 2.4047280, 48.8772063 2.4094486, 48.8769898 2.4054164, 48.8711865 2.4001138, 48.8768593 2.4057793, 48.8762568 2.4026044, 48.8692292 2.3966523, 48.8690126 2.3971718, 48.8726193 2.3990837, 48.8723933 2.3993546, 48.8758552 2.4019932, 48.8645296 2.3999995, 48.8643290 2.3977966, 48.8641688 2.3976584, 48.8642835 2.3981370, 48.8650741 2.3972853, 48.8333333 2.3556520, 48.8661899 2.3718762, 48.8226287 2.3606739, 48.8226746 2.3608366, 48.8226533 2.3607500, 48.8229131 2.3618148, 48.8231151 2.3621098, 48.8209801 2.3644246, 48.8243498 2.3621084, 48.8244278 2.3621405, 48.8244847 2.3621306, 48.8245544 2.3621635, 48.8239970 2.3618533, 48.8245778 2.3614015, 48.8250784 2.3610028, 48.8247279 2.3612848, 48.8249548 2.3611007, 48.8257664 2.3605166, 48.8257097 2.3600718, 48.8253582 2.3607812, 48.8254715 2.3606886, 48.8256982 2.3612634, 48.8255348 2.3609777, 48.8256127 2.3614328, 48.8254727 2.3611014, 48.8255281 2.3616006, 48.8254308 2.3611848, 48.8253116 2.3614221, 48.8249807 2.3620807, 48.8250256 2.3619913, 48.8387916 2.3812873, 48.8526953 2.3470942, 48.8622322 2.3573881, 48.8890315 2.3624318, 48.8909716 2.3611648, 48.8913537 2.3623037, 48.8912306 2.3619236, 48.8913500 2.3613552, 48.8684859 2.3702604, 48.8904554 2.3613786, 48.8911316 2.3641074, 48.8911480 2.3638611, 48.8709751 2.3584442, 48.8816643 2.3664685, 48.8521711 2.3714010, 48.8901098 2.3596369, 48.8909114 2.3604949, 48.8909059 2.3606042, 48.8763474 2.3877275, 48.8900400 2.3632191, 48.8281212 2.3500641, 48.8278444 2.3497300, 48.8682148 2.3979085, 48.8309319 2.3809995, 48.8339877 2.3859431, 48.8370765 2.3521704, 48.8751593 2.3701002, 48.8280428 2.3570384, 48.8300765 2.3566608, 48.8741225 2.3893282, 48.8748365 2.3888937, 48.8511496 2.3478020, 48.8909898 2.3608038, 48.8922565 2.3879668, 48.8896721 2.3596605, 48.8890437 2.3606481, 48.8890487 2.3604033, 48.8897921 2.3604602, 48.8910188 2.3609138, 48.8897517 2.3604732, 48.8329514 2.3692712, 48.8608088 2.3799487, 48.8605689 2.3786648, 48.8762181 2.3718774, 48.8854958 2.3656011, 48.8735521 2.3649705, 48.8288049 2.3816393, 48.8306308 2.3813385, 48.8861995 2.3567861, 48.8360293 2.3987610, 48.8901495 2.3592264, 48.8352730 2.3987266, 48.8358656 2.3983311, 48.8329971 2.3865539, 48.8798304 2.3575115, 48.8891501 2.3600864, 48.8264604 2.3691548, 48.8867265 2.3692541, 48.8487274 2.3758510, 48.8292102 2.3745186, 48.8749302 2.3555936, 48.8936132 2.3841788, 48.8659386 2.3788507, 48.8849455 2.3527050, 48.8850090 2.3595929, 48.8918519 2.3634768, 48.8916614 2.3634553, 48.8690083 2.3564593, 48.8760446 2.3484651, 48.8295957 2.3746853, 48.8678207 2.3478985, 48.8667602 2.3505401, 48.8644981 2.3502872, 48.8736385 2.3889782, 48.8739867 2.3864968, 48.8718150 2.3717657, 48.8727815 2.3712192, 48.8729660 2.3702046, 48.8617341 2.3650289, 48.8554103 2.3643002, 48.8542640 2.3651059, 48.8537965 2.3646707, 48.8563379 2.3653392, 48.8555655 2.3665858, 48.8549123 2.3654914, 48.8740700 2.3880327, 48.8580971 2.3653667, 48.8889949 2.3583055, 48.8470631 2.3700997, 48.8471459 2.3702456, 48.8474998 2.3708712, 48.8482512 2.3721967, 48.8471795 2.3719974, 48.8874196 2.3791285, 48.8911601 2.3472858, 48.8905525 2.3481725, 48.8654434 2.3665508, 48.8614479 2.3729830, 48.8469506 2.3967840, 48.8450981 2.4030570, 48.8445374 2.4047983, 48.8459401 2.3981714, 48.8469580 2.4075011, 48.8431170 2.4096136, 48.8181346 2.3609207, 48.8193633 2.3602971, 48.8193706 2.3607627, 48.8641784 2.3663950, 48.8472632 2.3686633, 48.8539102 2.3699317, 48.8470293 2.3690164, 48.8462686 2.3631462, 48.8624763 2.3635921, 48.8466386 2.3740238, 48.8467985 2.3747872, 48.8222822 2.3596195, 48.8510597 2.3686542, 48.8637283 2.3634669, 48.8576256 2.3683245, 48.8573074 2.3684033, 48.8648741 2.3568648, 48.8647148 2.3556662, 48.8647064 2.3557113, 48.8744006 2.3588789, 48.8598587 2.3506021, 48.8899908 2.3632081, 48.8611575 2.3689699, 48.8638679 2.3648260, 48.8890796 2.3723602, 48.8731075 2.3603509, 48.8748935 2.3811373, 48.8798222 2.3536407, 48.8689100 2.3859683, 48.8389034 2.3510109, 48.8728060 2.3646742, 48.8722199 2.3662906, 48.8493078 2.3774714, 48.8381318 2.3517955, 48.8387946 2.3486773, 48.8818730 2.3810389, 48.8528114 2.3539541, 48.8924455 2.3635357, 48.8208030 2.3633818, 48.8274435 2.3705955, 48.8205400 2.3633918, 48.8205631 2.3634931, 48.8545629 2.3851571, 48.8498132 2.3518796, 48.8926082 2.3632978, 48.8647712 2.3664594, 48.8606121 2.3677689, 48.8607123 2.3679772, 48.8845024 2.3699867, 48.8817691 2.3705494, 48.8497401 2.3508144, 48.8494708 2.3495778, 48.8243545 2.3680684, 48.8957541 2.3476530, 48.8957586 2.3475660, 48.8654497 2.3690938, 48.8709594 2.3479984, 48.8330093 2.3868281, 48.8731139 2.3807450, 48.8690065 2.3742189, 48.8437820 2.3881621, 48.8485041 2.3805544, 48.8646705 2.3697151, 48.8222398 2.3591920, 48.8444922 2.3906935, 48.8322518 2.3505076, 48.8274091 2.3702950, 48.8302211 2.3529383, 48.8490054 2.3495877, 48.8461901 2.3512999, 48.8754797 2.3480757, 48.8776068 2.3489868, 48.8235887 2.3709824, 48.8878510 2.3535887, 48.8366915 2.3872945, 48.8378379 2.3473550, 48.8678023 2.3499020, 48.8465954 2.3717420, 48.8837963 2.3717833, 48.8471376 2.3781538, 48.8805026 2.3961626, 48.8532271 2.3906633, 48.8532124 2.3749112, 48.8593876 2.3489534, 48.8593594 2.3494831, 48.8592324 2.3496685, 48.8591582 2.3498992, 48.8587506 2.3498885, 48.8585618 2.3501138, 48.8584400 2.3500508, 48.8582310 2.3499150, 48.8586577 2.3512239, 48.8585324 2.3516236, 48.8584636 2.3518059, 48.8589383 2.3514814, 48.8594394 2.3491586, 48.8815660 2.3478333, 48.8762025 2.3710966, 48.8295801 2.3570095, 48.8310133 2.3479849, 48.8362085 2.3507215, 48.8902734 2.3546516, 48.8277176 2.3503583, 48.8914921 2.3613348, 48.8303310 2.3543233, 48.8304313 2.3542566, 48.8301931 2.3538796, 48.8550776 2.3606106, 48.8538565 2.3611419, 48.8539037 2.3621825, 48.8493157 2.3784984, 48.8312746 2.3688607, 48.8295989 2.3477981, 48.8546823 2.3502166, 48.8802997 2.3577529, 48.8280833 2.3518785, 48.8345869 2.4046238, 48.8489944 2.3476761, 48.8339315 2.3535154, 48.8343358 2.3532328, 48.8334871 2.3538301, 48.8343901 2.3531943, 48.8968374 2.3787112, 48.8971449 2.3819951, 48.8706152 2.3532598, 48.8281734 2.3581151, 48.8281213 2.3581379, 48.8282088 2.3580869, 48.8298944 2.3567517, 48.8279789 2.3582481, 48.8306371 2.3542033, 48.8301553 2.3526298, 48.8304963 2.3537726, 48.8488823 2.3702261, 48.8468258 2.4090233, 48.8701642 2.3537129, 48.8590400 2.3622970, 48.8907611 2.3619378, 48.8458824 2.3754339, 48.8850869 2.3651538, 48.8396674 2.3497245, 48.8416725 2.3497548, 48.8417916 2.3497766, 48.8418859 2.3497875, 48.8419165 2.3497914, 48.8418378 2.3496214, 48.8420720 2.3498351, 48.8421234 2.3498351, 48.8424378 2.3496767, 48.8426012 2.3496389, 48.8427514 2.3496042, 48.8429464 2.3495590, 48.8440708 2.3494232, 48.8445679 2.3496772, 48.8445191 2.3496762, 48.8383528 2.3897390, 48.8604075 2.3556155, 48.8601740 2.3563013, 48.8571765 2.3589357, 48.8517041 2.3505648, 48.8574751 2.3504537, 48.8265747 2.3745807, 48.8375722 2.4445310, 48.8723494 2.3607849, 48.8447679 2.3497792, 48.8310938 2.3750078, 48.8303039 2.3757207, 48.8306843 2.3753807, 48.8310107 2.3759336, 48.8471340 2.3864431, 48.8467506 2.3832061, 48.8329435 2.4149758, 48.8323315 2.4178175, 48.8312852 2.3735705, 48.8311337 2.3738972, 48.8549171 2.3551866, 48.8383546 2.3930656, 48.8394477 2.3924756, 48.8394195 2.3921135, 48.8531969 2.3783676, 48.8886086 2.3780545, 48.8862020 2.3612523, 48.8421984 2.3516249, 48.8765293 2.3766762, 48.8765381 2.3785538, 48.8831467 2.3852056, 48.8526874 2.3539909, 48.8793441 2.3856452, 48.8912644 2.3784340, 48.8481127 2.3756890, 48.8492365 2.3739525, 48.8495930 2.3774565, 48.8495450 2.3787201, 48.8500160 2.3788251, 48.8496527 2.3779307, 48.8465400 2.3811858, 48.8503285 2.3781973, 48.8481611 2.3766463, 48.8460012 2.3764202, 48.8553144 2.3878881, 48.8434604 2.4022375, 48.8496167 2.3700570, 48.8535356 2.3706586, 48.8481689 2.3925595, 48.8469569 2.3847760, 48.8464179 2.3800872, 48.8753759 2.3739351, 48.8751695 2.3739029, 48.8746244 2.3809330, 48.8781141 2.3843466, 48.8779190 2.3852619, 48.8778925 2.3854242, 48.8782848 2.3854140, 48.8789083 2.3856186, 48.8789361 2.3851519, 48.8806716 2.3738195, 48.8820002 2.3711763, 48.8490915 2.3487987, 48.8899434 2.3710251, 48.8803750 2.3978486, 48.8811706 2.3719906, 48.8641699 2.4083715, 48.8567608 2.3945887, 48.8747966 2.3861271, 48.8757475 2.3857007, 48.8753418 2.3815392, 48.8747347 2.3813029, 48.8752868 2.3817360, 48.8755279 2.3821599, 48.8372979 2.3511170, 48.8516564 2.3473784, 48.8590582 2.3811072, 48.8335564 2.3869198, 48.8334907 2.3868335, 48.8337569 2.3871813, 48.8329726 2.3861326, 48.8338510 2.3872594, 48.8740264 2.3839194, 48.8206809 2.3635646, 48.8207494 2.3637471, 48.8203146 2.3640270, 48.8552012 2.3739399, 48.8546611 2.3726793, 48.8746078 2.3810324, 48.8739520 2.3822179, 48.8735701 2.3830856, 48.8736839 2.3828415, 48.8787477 2.3711783, 48.8819062 2.3741667, 48.8841883 2.3779754, 48.8845623 2.3786634, 48.8851670 2.3806432, 48.8852067 2.3807525, 48.8855935 2.3818316, 48.8805386 2.3751052, 48.8806753 2.3748196, 48.8807035 2.3747471, 48.8808173 2.3744896, 48.8808967 2.3743140, 48.8830777 2.3876231, 48.8723326 2.3483178, 48.8431753 2.3523678, 48.8337390 2.3618054, 48.8343386 2.3607778, 48.8481870 2.3541570, 48.8485630 2.3547360, 48.8486600 2.3548950, 48.8488030 2.3550960, 48.8868177 2.3744113, 48.8849000 2.3707095, 48.8883341 2.3761366, 48.8585600 2.3535180, 48.8359828 2.3592084, 48.8582564 2.3530692, 48.8579136 2.3528123, 48.8527723 2.3849647, 48.8528254 2.3852671, 48.8439032 2.3546898, 48.8859211 2.3934465, 48.8847791 2.3925318, 48.8848752 2.3926673, 48.8862192 2.3936382, 48.8754744 2.3873297, 48.8754373 2.3874893, 48.8651610 2.3726873, 48.8643547 2.3728587, 48.8629966 2.3731715, 48.8495520 2.3551790, 48.8495960 2.3546780, 48.8493090 2.3539520, 48.8470580 2.3520490, 48.8468240 2.3516360, 48.8756732 2.3873298, 48.8209363 2.3710302, 48.8712502 2.3797702, 48.8708280 2.3787238, 48.8791599 2.3910656, 48.8827997 2.3733397, 48.8830186 2.3740035, 48.8826853 2.3804864, 48.8729547 2.3799476, 48.8755208 2.3906946, 48.8619535 2.4014538, 48.8828915 2.3811913, 48.8830697 2.3810418, 48.8840675 2.3805918, 48.8758598 2.4006983, 48.8583141 2.3549137, 48.8606889 2.3547690, 48.8607780 2.3544920, 48.8579708 2.3528081, 48.8612688 2.3578488, 48.8659762 2.3835715, 48.8353583 2.4058762, 48.8460163 2.3825296, 48.8754888 2.3889719, 48.8716073 2.3573055, 48.8300192 2.3572538, 48.8589855 2.3540028, 48.8545486 2.3843630, 48.8752800 2.3929026, 48.8752271 2.3936912, 48.8751574 2.3942236, 48.8636766 2.3671249, 48.8426923 2.3634778, 48.8744920 2.3729505, 48.8741051 2.3720932, 48.8739847 2.3718055, 48.8738359 2.3717117, 48.8735359 2.3710279, 48.8741858 2.3715930, 48.8745316 2.3721362, 48.8716669 2.3719109, 48.8736209 2.3748630, 48.8878559 2.3534540, 48.8541359 2.3719456, 48.8542108 2.3674171, 48.8544265 2.3673700, 48.8555777 2.3673888, 48.8558432 2.3674030, 48.8643515 2.3547358, 48.8612139 2.3668885, 48.8596062 2.3680483, 48.8595048 2.3686879, 48.8591538 2.3688576, 48.8416174 2.3913852, 48.8624274 2.3726970, 48.8618723 2.3729155, 48.8582177 2.3718944, 48.8620506 2.3780323, 48.8940948 2.3515003, 48.8684431 2.3706044, 48.8643081 2.3688079, 48.8612224 2.3648477, 48.8734440 2.3641694, 48.8731976 2.3643351, 48.8714362 2.3657352, 48.8567447 2.3780076, 48.8568956 2.3783832, 48.8768960 2.3534930, 48.8665545 2.3603936, 48.8926611 2.3805354, 48.8707266 2.3515964, 48.8904606 2.3790788, 48.8910196 2.3779829, 48.8907119 2.3781803, 48.8906831 2.3786293, 48.8559378 2.3789593, 48.8709792 2.3597736, 48.8711489 2.3601690, 48.8572892 2.3686817, 48.8592341 2.3681415, 48.8593853 2.3683292, 48.8584332 2.3828373, 48.8586116 2.3834178, 48.8541661 2.3685390, 48.8557389 2.3682126, 48.8603823 2.3676665, 48.8565630 2.3686073, 48.8584554 2.3675609, 48.8389090 2.3816630, 48.8357533 2.3521704, 48.8597890 2.4027381, 48.8599301 2.4026085, 48.8593962 2.4050659, 48.8577162 2.3793963, 48.8413733 2.3746037, 48.8780937 2.3647247, 48.8681030 2.4033390, 48.8609577 2.3809480, 48.8609312 2.3814496, 48.8614810 2.3806105, 48.8592165 2.3828435, 48.8666042 2.3853196, 48.8614427 2.3780898, 48.8614740 2.3781608, 48.8610647 2.3776241, 48.8615428 2.3776813, 48.8610635 2.3813235, 48.8611094 2.3814550, 48.8945524 2.3527710, 48.8623796 2.3727706, 48.8621106 2.3774234, 48.8626682 2.3786586, 48.8622688 2.3799159, 48.8623261 2.3800798, 48.8633879 2.3618031, 48.8488626 2.3712412, 48.8594276 2.3683212, 48.8547937 2.3759343, 48.8995733 2.3524962, 48.8537976 2.3699213, 48.8537389 2.3700602, 48.8471804 2.3954861, 48.8642207 2.3684794, 48.8646300 2.3665505, 48.8661085 2.3669813, 48.8547424 2.3544531, 48.8549834 2.3538154, 48.8547359 2.3551293, 48.8570133 2.3782712, 48.8566264 2.3772226, 48.8563976 2.3765843, 48.8560776 2.3757039, 48.8558645 2.3750846, 48.8609420 2.3686815, 48.8590641 2.3684194, 48.8620902 2.3661764, 48.8617952 2.3647367, 48.8633340 2.3613891, 48.8624021 2.3651667, 48.8627385 2.3662233, 48.8614257 2.3704934, 48.8615823 2.3706250, 48.8647430 2.3818722, 48.8620751 2.3672533, 48.8644915 2.3656032, 48.8690385 2.3639054, 48.8679245 2.3658481, 48.8650522 2.3663679, 48.8656106 2.3572726, 48.8626714 2.3636420, 48.8627659 2.3625185, 48.8615523 2.3705150, 48.8633878 2.3694245, 48.8611575 2.3674679, 48.8626333 2.3674542, 48.8642921 2.3657377, 48.8617786 2.3730898, 48.8617681 2.3611646, 48.8630387 2.3518815, 48.8632610 2.3511168, 48.8635550 2.3471565, 48.8587772 2.3712220, 48.8659600 2.3653216, 48.8665862 2.3667443, 48.8661620 2.3675630, 48.8666335 2.3665296, 48.8663602 2.3680223, 48.8643746 2.3685025, 48.8641963 2.3679144, 48.8646177 2.3690280, 48.8628373 2.3675537, 48.8623150 2.3663735, 48.8620751 2.3658156, 48.8637424 2.3671066, 48.8580013 2.3652526, 48.8584347 2.3637448, 48.8614253 2.3643489, 48.8593585 2.3673596, 48.8586082 2.3675198, 48.8578247 2.3662529, 48.8578018 2.3672245, 48.8575285 2.3645936, 48.8567071 2.3672138, 48.8599776 2.3643195, 48.8581319 2.3686779, 48.8731027 2.3586476, 48.8580112 2.3685170, 48.8640444 2.3658805, 48.8641120 2.3658485, 48.8535896 2.3766260, 48.8548638 2.3756068, 48.8611118 2.3693564, 48.8440870 2.4099235, 48.8654853 2.3686016, 48.8279596 2.3690455, 48.8643587 2.3712393, 48.8739968 2.3863516, 48.8621517 2.3740712, 48.8630245 2.3790430, 48.8639488 2.3703133, 48.8650592 2.3652757, 48.8622868 2.3667169, 48.8760379 2.3474334, 48.8512608 2.3557825, 48.8527721 2.3537633, 48.8540362 2.3623674, 48.8633935 2.3689645, 48.8633529 2.3688465, 48.8615323 2.3686143, 48.8646787 2.3558594, 48.8644799 2.3569191, 48.8829561 2.3882121, 48.8804364 2.3909641, 48.8780831 2.3977598, 48.8763376 2.3928795, 48.8759989 2.3919521, 48.8628024 2.3492324, 48.8286889 2.3529053, 48.8645903 2.3718381, 48.8647000 2.3723457, 48.8649871 2.3711423, 48.8598038 2.3550656, 48.8620675 2.3639108, 48.8649026 2.3629604, 48.8649556 2.3628423, 48.8647818 2.3633384, 48.8639382 2.3623895, 48.8641888 2.3633140, 48.8646311 2.3593875, 48.8643829 2.3635375, 48.8792674 2.3924164, 48.8792753 2.3925036, 48.8795232 2.3915635, 48.8757708 2.3732086, 48.8614963 2.3660517, 48.8842426 2.3535987, 48.8553317 2.3737743, 48.8555334 2.3742149, 48.8569521 2.3559048, 48.8653836 2.3574562, 48.8639079 2.3545467, 48.8654028 2.3619785, 48.8937077 2.3508320, 48.8621299 2.3511204, 48.8715322 2.3782825, 48.8714475 2.3785400, 48.8710382 2.3789263, 48.8559854 2.3944716, 48.8673806 2.3847823, 48.8690612 2.3581146, 48.8719853 2.3667390, 48.8741288 2.3623407, 48.8713669 2.3626508, 48.8701720 2.3657126, 48.8677318 2.3596603, 48.8573688 2.3547540, 48.8574138 2.3546799, 48.8570633 2.3551401, 48.8574390 2.3545800, 48.8571737 2.3548765, 48.8735793 2.3550497, 48.8773768 2.3515939, 48.8597151 2.3678389, 48.8657815 2.3471408, 48.8732540 2.3608358, 48.8655841 2.3616231, 48.8623856 2.3637772, 48.8621474 2.3731938, 48.8799666 2.3508222, 48.8556162 2.3630412, 48.8556754 2.3628716, 48.8621014 2.3636145, 48.8557140 2.3630523, 48.8609723 2.3678841, 48.8620444 2.3635743, 48.8622191 2.3629205, 48.8292890 2.3827479, 48.8667214 2.3740769, 48.8266091 2.3593388, 48.8269314 2.3590856, 48.8523778 2.3470388, 48.8515225 2.3470249, 48.8515711 2.3472131, 48.8803017 2.3513038, 48.8647006 2.3580265, 48.8643054 2.3579192, 48.8642504 2.3578896, 48.8644687 2.3579073, 48.8628005 2.3713562, 48.8633624 2.3704332, 48.8627558 2.3714312, 48.8674941 2.3845084, 48.8685628 2.3685960, 48.8468797 2.3518136, 48.8466990 2.3540136, 48.8467952 2.3538782, 48.8622923 2.3631874, 48.8690077 2.3683815, 48.8676507 2.3828530, 48.8449568 2.4059557, 48.8707889 2.3567692, 48.8708986 2.3568414, 48.8511933 2.3505104, 48.8712435 2.3782107, 48.8795270 2.3564524, 48.8795400 2.3563567, 48.8795641 2.3560902, 48.8796330 2.3554913, 48.8796682 2.3551473, 48.8469658 2.3519512, 48.8849962 2.3715251, 48.8637549 2.3626184, 48.8637125 2.3625755, 48.8652327 2.3851410, 48.8614701 2.3608326, 48.8618729 2.3587495, 48.8627385 2.3596843, 48.8652300 2.3566643, 48.8617124 2.3623064, 48.8531336 2.3637219, 48.8578716 2.3815256, 48.8591095 2.3674255, 48.8636670 2.3631192, 48.8719458 2.3478111, 48.8649403 2.3546311, 48.8629917 2.3486012, 48.8651151 2.3550922, 48.8726616 2.3794472, 48.8726783 2.3795015, 48.8715434 2.3807894, 48.8471265 2.3778627, 48.8632800 2.3800281, 48.8642792 2.3630057, 48.8753261 2.3672560, 48.8429464 2.3483818, 48.8547153 2.3722204, 48.8729112 2.3593539, 48.8724267 2.3592410, 48.8641694 2.3686406, 48.8651440 2.3631259, 48.8651915 2.3632720, 48.8652987 2.3631700, 48.8388865 2.3811523, 48.8645308 2.4003185, 48.8630067 2.3884535, 48.8629785 2.3883247, 48.8698382 2.3799777, 48.8627927 2.3599257, 48.8622711 2.3595454, 48.8628804 2.3600120, 48.8792827 2.3556589, 48.8788783 2.3543907, 48.8538306 2.3993936, 48.8579662 2.3531583, 48.8580620 2.3532663, 48.8574895 2.3571997, 48.8587806 2.3545747, 48.8578490 2.3571632, 48.8588486 2.3540437, 48.8580087 2.3580443, 48.8680112 2.3607306, 48.8689542 2.3550295, 48.8688455 2.3557193, 48.8687443 2.3560423, 48.8687789 2.3580377, 48.8989295 2.3723887, 48.8707205 2.3552252, 48.8445540 2.3545770, 48.8661069 2.3646351, 48.8732283 2.3581935, 48.8732823 2.3579211, 48.8662690 2.3645400, 48.8657515 2.3648587, 48.8367280 2.3487200, 48.8367280 2.3487200, 48.8353170 2.3478860, 48.8458679 2.3533248, 48.8702521 2.3687545, 48.8378270 2.3494780, 48.8606590 2.3543661, 48.8660386 2.3519725, 48.8655236 2.3518622, 48.8654654 2.3518340, 48.8390748 2.4006273, 48.8778724 2.3471465, 48.8637960 2.3626600, 48.8632005 2.3642711, 48.8551846 2.3683407, 48.8492442 2.3663097, 48.8440240 2.3472518, 48.8613672 2.3505534, 48.8677324 2.3479327, 48.8677775 2.3480997, 48.8343803 2.4319409, 48.8670225 2.3471209, 48.8720064 2.3540339, 48.8264183 2.3594835, 48.8265292 2.3594023, 48.8512133 2.3476661, 48.8477856 2.3484509, 48.8582210 2.3520080, 48.8253525 2.3720476, 48.8512133 2.3476661, 48.8647269 2.3560907, 48.8580917 2.3673244, 48.8769722 2.3514761, 48.8769498 2.3512624, 48.8620567 2.3541153, 48.8497700 2.3469745, 48.8612553 2.3752008, 48.8632177 2.3758485, 48.8640105 2.3752729, 48.8644275 2.3749645, 48.8647588 2.3751173, 48.8608416 2.3800761, 48.8596321 2.3806824, 48.8597322 2.3805901, 48.8595923 2.3807177, 48.8867750 2.3846748, 48.8591551 2.3864296, 48.8724968 2.3802510, 48.8520425 2.3727672, 48.8609390 2.3783004, 48.8627395 2.3470879, 48.8775308 2.3517179, 48.8761530 2.3512685, 48.8772423 2.3515577, 48.8773603 2.3513705, 48.8732411 2.3502402, 48.8773292 2.3515789, 48.8753788 2.3510407, 48.8779161 2.3521895, 48.8774311 2.3513901, 48.8709370 2.3498907, 48.8729782 2.3503653, 48.8595665 2.3672855, 48.8308245 2.3748433, 48.8304658 2.3751862, 48.8477685 2.3654087, 48.8721867 2.3803594, 48.8508134 2.3857979, 48.8505324 2.3866725, 48.8916024 2.3506910, 48.8638501 2.3526821, 48.8765916 2.3487324, 48.8721752 2.3541115, 48.8715942 2.3786219, 48.8713331 2.3785958, 48.8716046 2.3779577, 48.8536387 2.3823255, 48.8791330 2.3846707, 48.8712500 2.3520810, 48.8702796 2.3656790, 48.8539772 2.3672599, 48.8349936 2.3767308, 48.8516535 2.3572091, 48.8515672 2.3574567, 48.8515407 2.3575307, 48.8520358 2.3566034, 48.8522159 2.3567550, 48.8524240 2.3569408, 48.8527399 2.3603182, 48.8285549 2.3526652, 48.8532868 2.3705392, 48.8569948 2.3687863, 48.8645930 2.3989610, 48.8683157 2.3749138, 48.8766633 2.3487736, 48.8242461 2.3702515, 48.8603504 2.3485177, 48.8566547 2.3800710, 48.8643922 2.3495404, 48.8620495 2.3487209, 48.8629736 2.3479786, 48.8628009 2.3480997, 48.8522736 2.3601056, 48.8532920 2.3672601, 48.8537757 2.3672319, 48.8483797 2.3742370, 48.8485977 2.3744032, 48.8522022 2.3713690, 48.8239414 2.3680343, 48.8535973 2.3809063, 48.8536026 2.3810610, 48.8680698 2.3899407, 48.8681500 2.3898597, 48.8576761 2.3645851, 48.8658643 2.3584113, 48.8677169 2.3546846, 48.8689009 2.3537616, 48.8694294 2.3523136, 48.8658564 2.3574132, 48.8401363 2.4001170, 48.8404087 2.3999123, 48.8595266 2.3864960, 48.8620909 2.3845968, 48.8620047 2.3852499, 48.8772155 2.3697281, 48.8771466 2.3700908, 48.8732101 2.3820509, 48.8733593 2.3819219, 48.8630437 2.3604149, 48.8560939 2.3585197, 48.8566017 2.3566308, 48.8561161 2.3584293, 48.8564583 2.3573913, 48.8599783 2.3569074, 48.8613481 2.3581776, 48.8618290 2.3836224, 48.8252015 2.3720127, 48.8371629 2.3559666, 48.8370058 2.3559801, 48.8388582 2.3488365, 48.8387938 2.3509383, 48.8651501 2.3948352, 48.8651105 2.3957767, 48.8636186 2.3975684, 48.8651701 2.3946452, 48.8555654 2.3715734, 48.8556688 2.3718087, 48.8555912 2.3708780, 48.8604624 2.3615398, 48.8650696 2.3670244, 48.8827391 2.3593305, 48.8815415 2.3580405, 48.8809060 2.3580751, 48.8822787 2.3588762, 48.8815054 2.3580226, 48.8808657 2.3580528, 48.8813749 2.3579541, 48.8864163 2.3479153, 48.8675747 2.3757418, 48.8328188 2.3708042, 48.8832302 2.3617502, 48.8553697 2.3706003, 48.8556142 2.3707029, 48.8594445 2.3529167, 48.8591317 2.3536104, 48.8547706 2.3693854, 48.8485317 2.3720297, 48.8512913 2.3846401, 48.8649433 2.3721825, 48.8638646 2.3721728, 48.8641035 2.3716585, 48.8463104 2.3716432, 48.8594624 2.3504272, 48.8594253 2.3504176, 48.8596944 2.3507464, 48.8617511 2.3539414, 48.8693361 2.3640955, 48.8705736 2.3619015, 48.8693033 2.3625870, 48.8850777 2.3783225, 48.8850559 2.3782723, 48.8658307 2.3705921, 48.8659653 2.3699783, 48.8849226 2.3788960, 48.8855374 2.3800532, 48.8691873 2.3664852, 48.8636317 2.4038600, 48.8548651 2.3630193, 48.8548528 2.3625713, 48.8693693 2.3570835, 48.8691511 2.3577313, 48.8689604 2.3584706, 48.8685362 2.3603611, 48.8642783 2.3600268, 48.8692538 2.3562991, 48.8692202 2.3580262, 48.8241984 2.3723240, 48.8244851 2.3719243, 48.8648545 2.3758564, 48.8644737 2.3719749, 48.8646237 2.3732155, 48.8649513 2.3745102, 48.8633433 2.3797454, 48.8631587 2.3793438, 48.8644597 2.3719159, 48.8637933 2.3810877, 48.8635949 2.3806268, 48.8633857 2.3798403, 48.8648431 2.3759306, 48.8645407 2.3775170, 48.8635552 2.3805450, 48.8632201 2.3794764, 48.8624456 2.3781632, 48.8451240 2.3820686, 48.8450821 2.3814682, 48.8399332 2.3814668, 48.8395951 2.3820031, 48.8388480 2.3877154, 48.8394060 2.3878024, 48.8451080 2.3813725, 48.8457402 2.3799671, 48.8837032 2.3600741, 48.8440551 2.3807061, 48.8432866 2.3832660, 48.8452868 2.3790952, 48.8388348 2.3812326, 48.8668830 2.3485533, 48.8522115 2.3547191, 48.8522699 2.3547676, 48.8838575 2.3590700, 48.8839295 2.3590810, 48.8450978 2.3822089, 48.8311618 2.3751930, 48.8320219 2.3789968, 48.8316352 2.3782454, 48.8333790 2.3696370, 48.8344179 2.3677184, 48.8343314 2.3678570, 48.8296787 2.3771822, 48.8296787 2.3771822, 48.8279603 2.3795362, 48.8293770 2.3829863, 48.8245921 2.3766187, 48.8336992 2.3704367, 48.8335806 2.3701245, 48.8337227 2.3700220, 48.8347669 2.3695324, 48.8345736 2.3676408, 48.8347111 2.3680593, 48.8346577 2.3678932, 48.8566043 2.3732320, 48.8572868 2.3732076, 48.8554057 2.3739758, 48.8577963 2.3582331, 48.8195003 2.3649063, 48.8571463 2.3596101, 48.8567007 2.3604839, 48.8563782 2.3611155, 48.8576365 2.3584032, 48.8578041 2.3579820, 48.8578694 2.3580283, 48.8702362 2.3714708, 48.8567851 2.3809084, 48.8555276 2.3843963, 48.8729499 2.3807339, 48.8625088 2.3482422, 48.8625379 2.3480954, 48.8625575 2.3479520, 48.8684609 2.3540316, 48.8876907 2.3895732, 48.8559553 2.3863880, 48.8751618 2.3513606, 48.8731389 2.3531386, 48.8582720 2.3546441, 48.8599253 2.3542896, 48.8514160 2.3746780, 48.8609320 2.3788190, 48.8587657 2.3813608, 48.8732120 2.3625540, 48.8505710 2.3490338, 48.8507085 2.3490872, 48.8507865 2.3491165, 48.8400942 2.3634468, 48.8436968 2.4021337, 48.8566387 2.3564827, 48.8272380 2.3739098, 48.8739316 2.3642949, 48.8654372 2.3773868, 48.8577807 2.3606532, 48.8479870 2.3710527, 48.8652666 2.3505396, 48.8653042 2.3505623, 48.8742290 2.3701302, 48.8726773 2.3664509, 48.8758651 2.3683358, 48.8760870 2.3680227, 48.8738255 2.3510086, 48.8646328 2.3503127, 48.8652116 2.3502483, 48.8646959 2.3500774, 48.8636723 2.3503952, 48.8659073 2.3506008, 48.8659359 2.3508645, 48.8657593 2.3505128, 48.8400443 2.3945040, 48.8233478 2.3739572, 48.8323596 2.3507129, 48.8662355 2.3574699, 48.8664564 2.3609351, 48.8681552 2.3599058, 48.8687915 2.3579448, 48.8647975 2.3479339, 48.8644464 2.3497330, 48.8259283 2.3648732, 48.8256470 2.3650793, 48.8468373 2.3601741, 48.8462135 2.3676679, 48.8477461 2.3511419, 48.8659951 2.3472997, 48.8596787 2.3549361, 48.8566620 2.3563500, 48.8554458 2.3617217, 48.8408224 2.3556248, 48.8388681 2.3562783, 48.8384220 2.4593519, 48.8305866 2.4133509, 48.8201104 2.4442417, 48.8395574 2.4439548, 48.8739698 2.3502828, 48.8807650 2.3809540, 48.8772540 2.3793034, 48.8875403 2.3892859, 48.8768300 2.4049587, 48.8573667 2.3785302, 48.8532758 2.3834775, 48.8681170 2.3702881, 48.8768273 2.4061935, 48.8641014 2.4040313, 48.8840298 2.3497933, 48.8408375 2.3874300, 48.8330343 2.3541878, 48.8280243 2.3513291, 48.8303084 2.3537927, 48.8302539 2.3536052, 48.8255087 2.3537284, 48.8289425 2.3568654, 48.8422835 2.3705897, 48.8623556 2.3500864, 48.8367701 2.3930789, 48.8376458 2.3597357, 48.8377834 2.3597919, 48.8380568 2.3599624, 48.8534305 2.3611806, 48.8419025 2.3689354, 48.8832218 2.3770399, 48.8645929 2.3574911, 48.8778259 2.3969489, 48.8769600 2.3706426, 48.8873550 2.3868767, 48.8565883 2.3770985, 48.8660080 2.3494045, 48.8448754 2.3733160, 48.8596679 2.3619976, 48.8455345 2.3864379, 48.8346712 2.3775992, 48.8354828 2.3766566, 48.8372520 2.3747580 +http://www.100blumen.de/, http://kiga-aussenmuehle.de/, http://www.elbkinder-kitas.de/de/kita finder/kita/316, http://hh-hamm.de/kinderschlupf/kinder.html, http://www.musikkindergarten-hamburg.com/, http://www.kinderhaus-fliewatuut.de/, http://www.kita-sandkamp.de/, http://www.paulaundmax.de/wandsbeker.html, www.kindergaerten-finkenau.de, http://www.elbkinder-kitas.de, www.kitas-hamburg.de/kita-hospitalstrasse, http://www.luettjenwelt.de, www.kita-ifflandstrasse.de, www.kitas-hamburg.de/kita-erich-ziegel-ring, http://www.elbkinder-kitas.de/de/kita finder/kita/140, http://www.wabe-hamburg.de, http://www.kita-glueckliche-kids.de, http://www.kita-kleinewissenschaftler.de/, http://www.sternipark.de, http://www.kita-paulus.de/, 184.eva-kita.de, http://www.falkennest.de/, http://www.wabe-hamburg.de/de/kindertagesstaetten/hamburg/allermoehe.html, http://schlossinsel.kita-hamburg-harburg.de/startseite.html, http://www.ohrnsweg.de/eltern-infos/hort-und-kindertagesheim/, http://www.kinderzimmer-kita.de/hamburg-city-sued, http://www.frosch-kita.de, http://www.elbpiraten-kita.de/standorte/kita-hafencampus.html, http://www.kita.de/kita/20048, http://neuenfelde.kita-hamburg-neuenfelde.de/, http://hamburger-spielhaeuser.de/spielhaeuser/harburg, http://hamburger-spielhaeuser.de/spielhaeuser/kennedyhaus/, http://www.paulaundmax.de/august-luetgens-park.html, http://www.paulaundmax.de/eilbeker.html, http://www.paulaundmax.de/hoheluft.html, http://www.paulaundmax.de/oelkersallee.html, http://www.kita-natur-kinderladen-pinocchio.de/, http://washingtonallee.eva-kita.de, http://www.kinderzimmer-stubbenhuk.de, http://www.uke.de/zentrale-dienste/betriebskindergarten/, http://laemmersieth.eva-kita.de/start.html, www.elbkinder-kitas.de/de/kita finder/kita/309, http://www.xn--spielgelnde-gleiwitzer-bogen-dnc.de/kitahome.html, http:www.kita-bauikinder.de, http://www.eva-kita.de/cmain/kitas unit.html?id=206&c, http://www.kita-marzipanfabrik.de/, http://www.elbkinder-kitas.de/de/kita finder/kita/418, www.kindergaerten-finkenau.de, www.ameisenhaufen.de, http://www.elbkinder-kitas.de/de/kita finder/kita/413, http://waki-hamburg.de, http://www.elbkinder-kitas.de/de/kita finder/kita/223, http://www.kindergarten-volksdorf.de, www.kiga-heilig-kreuz.de, www.wabe-hamburg.de/de/kindertagesstaetten/hamburg/iserbrook.html, http://www.bernadotties.com, http://www.kindergarten-rolfincken.de, http://www.kitahimmelblau.de, http://www.elbkinder-kitas.de/de/kita finder/kita/129, http://www.kindergarten-schaukelpferd.de/, http://www.elbkinder-kitas.de/de/kita finder/kita/130, http://www.kinderwelt-hamburg.de/Willkommen-Kontakt.415.0.html, http://www.hamburg-kita.de/standorte/im-volkspark/, http://www.pedia-bildung.de/, http://www.pedia-bildung.de/de/kita rehrstieg.php, http://www.flachsland-hamburg.de/Kita-Alstertal.137.0.html, http://www.elbkinder-kitas.de/de/kita finder/kita/105, http://www.alsterkinder.de/, www.kth-silberpappelstieg.de, http://www.elbkinder-kitas.de/de/kita finder/kita/505, http://kita-volksdorf.de, http://schwalbenstr.eva-kita.de, http://www.wabe-hamburg.de/de/kindertagesstaetten/hamburg/billstedt.html, http://www.drk-kiju.de/einrichtungen/wirbelwind, www.kindergaerten-finkenau.de/kita/alter-gueterbahnhof/ +48.8657499 2.3411790 +53 +asphalt, asphalt, asphalt +55.9519194 -3.1206685 +55.9415684 -3.1813171, 55.9412241 -3.1809783, 55.9598493 -3.1256101, 55.9637153 -3.1286106, 55.9399243 -3.1804596 ++49 9192 348, +49 9197 221, +49 (9274) 909019, 09194/9253, 09545 7461, +44 (0) 1340 820 373, 09199 697071, +49-911-2449859, +49 482646301, 09194/262, +49 35024 7900, +49 7633 8320, +43 522348114, +49 8677 6699242, 09737 1318, +49 (0)9133 3500, +49 (0)9244 920201, 09199 366, 09197 917, 09199 208, 09199 485, 09199 697404, 09199 385, 09199 1804, +49 (0)9191 5767, 09191 13852, +49 (0)9194 7961-92, +49 (0)9194 1256, +49 (0)9196 394, +49 (0)9196 325, +49 (0)9196 372, +49 (9196) 205, +49(0)9131 32884, +49 (0)9191 1832, +49(0)9191 9629, +49(0)9191 6969695, 09199 279, +49 9199 465, 09196-9987248, +49(0)9199 234, +49(0)9196 1345, +49(0)9573 6154, +49(0)9199 267, +49 9199 695759, 09177/1642, 09552/ 980 386, +49 9383 2689, 09383/ 377, 09192-997656, +49(0)9246 494, 07144/6806, 09194 209, 09545 442382, 09543 7397, 09281 3514, 09199 245, 09199 6969991, 09199 353, 09243 1568, 09192 8473, 06023-8427, 09363 1602, 09363 1407, +36-20/335-2012, +4962838238, +49 (0)36202 884-0, +49 9199 416, +49 (0)9194 9355, +49865295360, +49 6023 1391, 09546 352, 0391 405150, +39 0473 24 10 75, +49 9192 7494, 09543 1393, 09502/ 74 59, +43 5523 53546, +33 6 70 02 03 24, +33 3 84 49 13 66, 01540 672219, +49 9375 92880, +1-503-222-5910, +49 9227 73275, +39 3939633833, 09545 950264, +49-9868-9500, +49(0)9199 363, +49(0)9199 350, +1 (510) 769-1601, +33 0131650811, 09264 9716, +49 9197593, +49 6295 9298273, 01631 572004, +44 (0)1496 302418, +44 (0) 1496 840646, 09175/79780, 01631 572004, (207) 865-4828, +44 (0)1496 850 011 +Musée en Herbe, Musée en Herbe, Môm'artre, Studio des Islettes, Maison Européenne de la Photographie, Centre d'animation Reuilly, Conservatoire municipal Claude Debussy - Site de la Jonquière, Atelier de Restauration et de Conservation des Photographies de la Ville de Paris, Le Local, Espace Château Landon, Barbara Fleury, ADAC, Le Lucernaire, La Générale Nord-Est, Le 100, Le Chantier, Le Plateau, La Bellevilloise, Centre culturel italien, Centre Culturel la Jonquière, Shakirail, La Péniche cinéma, cité des arts, La Métisse, Conservatoire municipal Jean-Philippe Rameau, Antenne FRAC Île-de-France, FRAC Antenne culturelle, Centre culturel franlasie, Conservatoire libre du cinema francais, Centre culturel Pouya, Auditorium, La scène du canal, Galerie Xippas, Bétonsalon, Galérie Artes, La Manufacture 111, Collège des Bernardins, Conservatoire du Centre, Centre Georges Pompidou, Centre Wallonie-Bruxelles, Espace des Blancs-Manteaux, La Gaîté lyrique, Espace Jemmapes, Conservatoire Hector Berlioz, Institut hongrois, Galerie J. Kugel, Grande Halle de la Villette, Cours Florent, WIP Villette, Espace Fondation EDF, Conservatoire Municipal Nadia et Lili Boulanger, Conservatoire municipal Georges Bizet, Pavillon Carré de Baudouin, Le BAL, Centre d'Animation "Les Abbesses", Maison des ensembles, La Maison des Cinq Sens, Conservatoire Francis Poulenc, Centre Culturel Irlandais, Maison de l’Amérique latine, Maison des Pratiques Artistiques Amateurs, Point - Afrique, Centre Culturel Suédois, Ancien Conservatoire Maurice Ravel, Le Cent Quatre, Institut culturel italien, Espace Louise Michel, Maison des Métallos +no +28 +yes +14 +55.9525959 -3.1925077 +49.6390443 8.7586809, 49.6491519 8.7786154, 49.4116697 8.9271085, 49.5273884 8.7489962, 49.4092087 8.6986249, 49.2941943 8.6972230, 49.2959309 8.7014509, 49.3883245 9.0081746, 49.2919399 8.7027015, 49.4109553 8.9356774, 49.3761026 8.8885302, 49.5299064 8.7421002, 49.5270569 8.7608652, 49.3884820 8.8036758, 49.3868016 8.8070952, 49.4138643 8.6938468, 49.3948331 8.7964522, 49.3864018 8.8001781, 49.4378457 8.7519531, 49.6041485 8.7393504, 49.4178015 8.7607560, 49.3597431 8.8120515, 49.6229182 8.6958850, 49.4280459 8.7495006, 49.4333074 8.7472561, 49.4280490 8.7464328, 49.4220544 8.7604986, 49.3359862 8.7908021, 49.4160940 8.7161473, 49.3872630 8.7975398, 49.5976216 8.7371486, 49.5990671 8.7380614, 49.6233348 8.7592105, 49.6239213 8.7540220, 49.5693320 8.7183717, 49.5799659 8.7150421, 49.5836852 8.7060844, 49.5668665 8.7346098, 49.5987193 8.7329887, 49.5900011 8.7564846, 49.5824512 8.7701378, 49.5505849 8.8129790, 49.5497942 8.8086360, 49.3957980 8.8231207, 49.6147886 8.7162592, 49.3973451 8.7978476, 49.4132108 8.7429246, 49.3774319 8.6987045, 49.5819364 8.7454907, 49.5973081 8.7352102, 49.5596089 8.7845832, 49.3594020 8.8046809, 49.3605252 8.8038440, 49.3574669 8.7787048, 49.3930158 8.7827624, 49.6043110 8.7457135, 49.6044250 8.7292229, 49.3811510 8.8033879, 49.3914947 8.7854488, 49.4021057 8.8481051, 49.4118979 8.8312113, 49.4038331 8.8435805, 49.4062892 8.8436208, 49.4144602 8.7186269, 49.4152010 8.7617225, 49.3946293 8.7926321, 49.3933559 8.7992739, 49.3841017 8.8059323, 49.4113731 8.7119281, 49.3640565 8.7056980, 49.4869999 8.7367276, 49.4105030 8.6976792, 49.5660788 8.7990762, 49.4426247 8.8954326, 49.4460345 8.8970944, 49.5697702 8.7099088, 49.5637955 8.7072905, 49.4149595 8.6974870, 49.6118535 8.7753135, 49.6050755 8.7600210, 49.4943601 8.7246887, 49.6020099 8.7677160, 49.4141843 8.7705509, 49.4287124 8.6962608, 49.4701183 8.7543958, 49.4371781 8.8098188, 49.3177272 8.7571254, 49.6150231 8.9143821, 49.5455206 8.7291779, 49.4760467 8.6993112, 49.4014645 8.7791091, 49.6726030 8.7316620, 49.6759656 8.7650417, 49.6696052 8.7669330, 49.3739972 8.7036051, 49.6677528 8.7451867, 49.6562702 8.7547711, 49.4531341 8.7233872, 49.6469373 8.7735990, 49.5909727 8.7236941, 49.3766430 8.7660668, 49.3724852 8.7711188, 49.6209834 8.9451249, 49.3947439 8.7943731, 49.3038290 8.6957242, 49.2994313 8.6999334, 49.4658430 8.7607179, 49.4666292 8.7723687, 49.4982324 8.7655052, 49.4565194 8.8077226, 49.6445901 8.7362064, 49.5793143 8.7544635, 49.4719100 8.7593425, 49.4736565 8.7562226, 49.4609471 8.7703480, 49.5411759 8.6979134, 49.3197938 8.8658341, 49.2984869 8.8269633, 49.2966768 8.8256330, 49.3219717 8.8193319, 49.5150489 8.7482457, 49.3871024 8.8383024, 49.3935723 8.8416570, 49.3383714 8.7389507, 49.3413963 8.7549260, 49.3873851 8.7356455, 49.3234229 8.6953622, 49.3189808 8.8881137, 49.3159750 8.8865005, 49.3201069 8.8909232, 49.4601670 8.9883620, 49.6476051 8.7947973, 49.6429053 8.7968483, 49.3613242 8.7824149, 49.3945103 8.9294461, 49.6642107 8.7970938, 49.5208026 8.6986241, 49.4622522 8.9867984, 49.5261504 8.8636211, 49.5138673 8.8528216, 49.4658456 8.9916527, 49.4646813 8.9846233, 49.4352605 8.8040578, 49.3994611 8.8459544, 49.5464780 8.7680625, 49.6098312 8.8122662, 49.3375623 8.9113070, 49.3394809 8.9087893, 49.5862746 8.8146330, 49.6518562 8.7848309, 49.5517497 8.8515418, 49.5661178 8.7025227, 49.4506689 8.9797021, 49.4557598 8.9786722, 49.5832325 8.7940521, 49.5638706 8.7714332, 49.4769206 8.7595228, 49.5578177 8.7067432, 49.5486105 8.7553751, 49.5852926 8.7016688, 49.5785870 8.7199786, 49.4157065 8.7287628, 49.3033175 8.7047451, 49.3661785 8.7507929, 49.6669516 8.8112186, 49.6589466 8.8013252, 49.4619385 8.7690269, 49.5110988 8.7443994, 49.4260082 8.9560462, 49.4736174 8.9865378, 49.6388516 8.7691296, 49.6269184 8.7623574, 49.6592860 8.8414793, 49.5613325 9.0150075, 49.5995733 8.8345813, 49.6212544 8.7673967, 49.4136791 8.7136022, 49.3684471 8.7452563, 49.6251009 8.7584019, 49.2817542 8.7809947, 49.3925682 9.0026920, 49.3520218 8.7810118, 49.6273416 8.7269432, 49.4133592 8.7082594, 49.4089964 8.7017641, 49.4102662 8.7019427, 49.4112926 8.7027584, 49.4085432 8.6937616, 49.4085582 8.6937574, 49.3519718 8.8684674, 49.4853591 8.7967688, 49.4113476 8.7118706, 49.4119316 8.6969837, 49.5676732 8.9734875, 49.4484967 8.8940967, 49.3511417 8.7028368, 49.4630647 8.9967854, 49.3930705 8.9242735, 49.4183221 8.7563527, 49.4156725 8.7421792, 49.3452536 8.6991775, 49.3975439 8.8370531, 49.5302210 8.8617403, 49.3793989 8.8384026, 49.3882338 8.8576904, 49.3501718 8.7751677, 49.4146742 8.8811104, 49.3640808 8.7047444, 49.4633785 8.9898784, 49.4644476 8.9848049, 49.4652335 8.9747254, 49.4689588 8.9843908, 49.4701629 8.9950777, 49.6439529 8.7235692, 49.4049630 8.8411931, 49.4180547 8.8517835, 49.4136635 8.7632703, 49.5109298 8.7312150, 49.5049826 8.7665026, 49.3945750 8.7947057, 49.3955485 8.7094154, 49.4223460 8.7539976, 49.3638609 8.8379309, 49.3230182 8.8180605, 49.5933244 8.9889913, 49.3406676 8.7984974, 49.4174077 8.7485344, 49.3205042 8.6940169, 49.5901501 8.8932495, 49.3539619 8.7231541, 49.4103481 8.7060341, 49.4895692 8.7961728, 49.3541404 8.7763439, 49.5648285 8.9707209, 49.3441177 8.7981134, 49.3346708 8.8495091, 49.2910285 8.6964310, 49.3216876 8.8227396, 49.2944966 8.6988503, 49.4011539 8.8031551, 49.2928401 8.6954419, 49.5201448 8.8563305, 49.4662579 8.8031314, 49.4749249 8.7513754, 49.4444798 8.7541253, 49.4691464 8.7850375, 49.4119277 8.7117685, 49.4457778 8.8970177, 49.3691520 8.7041610, 49.3659990 8.7045061, 49.3737125 8.7065938, 49.5636208 8.7168661, 49.5801469 8.7147853, 49.2991444 8.7120201, 49.2831386 8.7390235, 49.4175517 9.0035683, 49.3781229 8.9876089, 49.4538785 8.9532854, 49.4663513 8.9779137, 49.3276412 8.7287660, 49.4189546 8.8362872, 49.5666871 8.8436816, 49.5651816 8.8298309, 49.5681912 8.8297470, 49.4491452 8.9035229, 49.4079094 8.8370041 +Geschwister-Scholl-Schule, Julius-Springer-Schule, Johannes-Kepler-Realschule, Mönchhof-Grundschule, Freie Christliche Schule, Friedrich-Ebert-Grundschule, Hölderlin-Gymnasium, Musik- und Singschule, Geschwister-Scholl Grund- und Hauptschule, aula Sprachen, Elisabeth von Thadden-Schule, Waldorfschule Heidelberg, Bunsen-Gymnasium, Neckarschule, Heidelberg College, Internationale Gesamtschule Heidelberg, Primarstufe, Stauffenberg-Schule, Englisches Institut Heidelberg, Theodor-Heuss-Realschule, Eichendorff-Grundschule, Technikzentrum, Carl-Bosch-Schule, Emmertsgrundschule, Lehr- und Versuchsanstalt für Gartenbau, Fröbelschule, Marie-Baum-Schule, Waldparkschule, Käthe-Kollwitz-Förderschule, Wilckensschule, Kurfürst-Friedrich-Gymnasium, Internationale Gesamtschule Heidelberg, Grundschule der Elisabeth-von-Thadden-Schule, Grundschule Schlierbach, Steinbachschule, Johannes-Gutenberg-Schule, Ecole Pierre & Marie Curie Heidelberg, Heidelberg International School, Helmholtz-Gymnasium, Julius-Springer-Schule, Pestalozzi-Schule, Willy-Hellpach-Schule, Tiefburgschule, Gregor-Mendel-Realschule +yes +55.9554953 -3.1694437, 55.9554007 -3.1697309 +Best Western Plus Bruntsfield Hotel, Braid Hills Hotel, Britannia Hotel Edinburgh, Hilton Edinburgh Airport Hotel, Peffermill House, Premier Inn, Prestonfield House, Premier Inn Leith, Brooks Hotel, Holiday Inn Express, Ardmillan Hotel, Links Hotel, Apex Edinburgh International, Apex Edinburgh City, Travelodge, Holiday Inn Express, Malmaison, Le Monde, DoubleTree by Hilton Hotel Edinburgh City Centre, Premier Inn, Novotel, Ten Hill Place, Hot-el Apartments, Jurys Inn, The Carlton, The Salisbury, Apex Waterloo Place Hotel, Travelodge Edinburgh Central Waterloo Place, Radisson Blu Hotel, Macdonald Holyrood Hotel, The King James, Ocean Apartments, Lady Nairne Premier Inn, The Glasshouse, Six Marys Place, Travelodge Rose Street, Mercure Hotel, Old Waverley Hotel, Royal British Hotel, Hotel du Vin, Travelodge Edinburgh Central Queen Street, Travelodge Edinburgh Learmonth, Fraser Suites Edinburgh, Nira Caledonia, The Bonham Hotel, G & V Royal Mile, EasyHotel Prince Street West, Premier Inn, cityroomz, Hotel Ceilidh-Donia, Cumberland Hotel, Dunstane House, Murrayfield Hotel, Hampton Hotel, Murrayfield Park Hotel, Grosvenor Gardens Hotel, Thistle Hotel, The Chester Residence, Fountain Court, Grassmarket Hotel, Motel One, Frederick House Hotel, Regent House Hotel, Hotel Indigo, The Place, York House Hotel, 28 York Place, Fountain Court, Pollock Halls, Ibis, Travelodge Princes Street, The Scotsman Hotel, Holyrood Aparthotel, Rutland Hotel, Twelve Picardy Place, Northumberland Hotel, Minto Hotel, Kildonan Lodge Hotel, Cairn Hotel, Ballantrae Hotel, Terrace Hotel, Ailsa Craig Hotel, Crowne Plaza, Abbey Hotel, The Inverleith Hotel, Merith House Hotel, Culane House Hotel, ritz, Ellwyn Hotel, Hotel Twenty, Rosehall Hotel, Seahaven Hotel, Old Town Chambers, Albany Hotel, Motel One, Parliament House Hotel, Edinburgh House Hotel, Royal Mile Mansions, The Royal Scots Club, Royal Mile Apartments, St. Giles Apartments, The Guards Hotel, Travelodge Haymarket, The Staghead Hotel, Ibis Style, Abbot's House Hotel, Adelphi Hotel, Princes Street Suites, Number 11 Brunswick Street Hotel, Corstorphine Hotel, Corstorphine Lodge Hotel, Royal Ettrick Hotel, Claremont Hotel, Travelodge Cameron Toll, Westend Hotel, Novotel Edinburgh Park, Sheraton Hotel, Kings Manor Hotel, Northfield House Hotel, Dundas Castle, Norton House Hotel, Dalmahoy Hotel & Country Club, Travelodge Edinburgh Central, Holiday Inn Express Edinburgh, Ibis Edinburgh Centre South Bridge, Stay Central, Residence Inn, Fountain Court EQ2, Holiday Inn Corstorphine, Capital Hotel, Balmoral Hotel, Premier Inn, Dakota, Holiday Inn Edinburgh City West, Victoria Park House Hotel, Edinburgh City Hotel, Premier Inn, Apex European Hotel, Waldorf Astoria Edinburgh - The Caledonian, Edinburgh Marriott Hotel, The Edinburgh Residence, Hilton Edinburgh Grosvenor, Tune Hotel, The Dunstane, The Original Raj Hotel, Duthus Lodge, The Murrayfield House, Staycity Edinburgh, Mercure Edinburgh Quay, Toby Carvery, White Lady, Ellersly House Hotel, Rockville Hotel, Travelodge, Twin Lions Hotel, Premier Inn, Premier Inn Edinburgh Park, Channings Hotel, Park View House Hotel, Ibis Budget Edinburgh Park, Angels Share Hotel, George Hotel, The Roxburghe, Butterstone House, Park View House Hotel, Rockville Hotel, Rockville Hotel, Rockville Hotel, Rockville Hotel +48.8832844 2.3022074 +1 +49.4129429 8.7045098, 49.4185953 8.7563610, 49.4180224 8.7572019, 49.4078352 8.6858842, 49.4076413 8.6872936, 49.4060867 8.6916832, 49.4058917 8.6902904, 49.4046222 8.6868381, 49.4032452 8.6845637, 49.3783665 8.6932651, 49.4146832 8.6923348, 49.4144086 8.6920334, 49.4131784 8.7101075, 49.4074762 8.6879253, 49.4129225 8.7239221, 49.4136373 8.6927118, 49.4112725 8.7119074, 49.4095367 8.7037082, 49.3778590 8.6930131, 49.3777697 8.6932265, 49.4169935 8.6914785, 49.4146001 8.7738410, 49.4376003 8.7518747, 49.4127909 8.7133593, 49.4135426 8.7142038, 49.4288015 8.6872183, 49.4142986 8.6902743, 49.4136357 8.6943202, 49.4040525 8.6844956, 49.3994957 8.6878826, 49.4139051 8.6920559, 49.4162757 8.6922037, 49.4104204 8.7158634, 49.4055996 8.6889278, 49.3813154 8.6894351, 49.4139993 8.6932058, 49.4131782 8.7072377, 49.4129985 8.7075880, 49.4128971 8.7089006, 49.4121728 8.7080504, 49.4123763 8.7095125, 49.4127246 8.7091094, 49.4132139 8.7078103, 49.4079479 8.6956416, 49.4121887 8.7014037, 49.4119811 8.7001029, 49.4130878 8.7091392, 49.4131986 8.7088233, 49.4007776 8.6911061, 49.4035568 8.6922425, 49.4058460 8.6924951, 49.4078621 8.6921619, 49.4083996 8.6927648, 49.4055314 8.6924048, 49.4014846 8.6914932, 49.4118964 8.7088012, 49.4115665 8.7029371, 49.4115772 8.7046048, 49.4117306 8.7084869, 49.4000859 8.6904108, 49.3997565 8.6902626, 49.4091521 8.6979357, 49.3995142 8.6850002, 49.4092258 8.7140567, 49.4070439 8.6949350, 49.4117441 8.7092576, 49.3742086 8.7031163, 49.4110740 8.7008373, 49.4114705 8.7022980, 49.4115939 8.7046894, 49.4116275 8.7051425, 49.4119604 8.7038095, 49.4118295 8.7066501, 49.4116479 8.7066124, 49.4117726 8.7067669, 49.4117492 8.7058025, 49.4117230 8.7087903, 49.4122865 8.7059453, 49.4124292 8.7105976, 49.4111189 8.7110358, 49.4131432 8.7133745, 49.4062164 8.6906512, 49.4041500 8.6845214, 49.4060715 8.6915874, 49.4129103 8.7014032, 49.4106930 8.7058334, 49.4003850 8.6920257, 49.4247718 8.6874951, 49.4203662 8.7396345, 49.4087049 8.7054045, 49.4136428 8.6936066, 49.4130575 8.7096585, 49.4115837 8.7106378, 49.4114414 8.7034059, 49.4079188 8.6896894, 49.4082939 8.6917604, 49.4179298 8.7611063, 49.4132974 8.7097572, 49.4125123 8.7110100, 49.4071802 8.6893369, 49.4078499 8.6884637, 49.4181047 8.7566116, 49.4104061 8.7157086, 49.4108151 8.7149178, 49.4094481 8.7011221, 49.3790377 8.6919226, 49.3786163 8.6868257, 49.3810339 8.6888988, 49.3799295 8.6843446, 49.3727648 8.7034774, 49.3744103 8.7047986, 49.4118680 8.7106616, 49.4085554 8.6900358, 49.3787743 8.6924168, 49.4077588 8.6883819, 49.3788201 8.6875397, 49.3670568 8.6855701, 49.4097188 8.6964711, 49.4113450 8.7459022, 49.4143434 8.6882102, 49.4113674 8.7086976, 49.3845905 8.7090625, 49.4127842 8.7096999, 49.4129263 8.7138084, 49.4119103 8.7090896, 49.4117205 8.7083215, 49.4121545 8.7119807, 49.4123356 8.7097176, 49.4128323 8.7139647, 49.4115613 8.7086989, 49.3654480 8.6869739, 49.3865134 8.7038130, 49.3796123 8.6875344, 49.4282302 8.6874448, 49.4255887 8.6891453, 49.4254663 8.6892002, 49.4284964 8.6877953, 49.4280495 8.6869299, 49.4298363 8.6853708, 49.4235631 8.6886029, 49.4179208 8.7599422, 49.4139598 8.6937014, 49.4217923 8.7056451, 49.4384096 8.6837127, 49.3887612 8.6898215, 49.3896117 8.6900353, 49.4143279 8.6877116, 49.4145768 8.6900311, 49.4114477 8.7117426, 49.4179324 8.7578275, 49.4447844 8.7558449, 49.4134141 8.7156909, 49.4127437 8.7131641, 49.4278544 8.6884082 +Regard de la Roquette, L'enceinte de Philippe Auguste, Cavae des Arènes de Lutèce +55.9359122 -3.2099909, 55.9809058 -3.1784709 +49.4276186 8.6855844, 49.4038333 8.6771587, 49.4171595 8.6617457, 49.4147558 8.6660779, 49.4134202 8.6738393, 49.4192295 8.7567625, 49.4082107 8.6921228, 49.4091698 8.6936091, 49.4041276 8.6763300, 49.4172710 8.6921830, 49.4124311 8.7120085, 49.3804963 8.6875192, 49.4031182 8.6470339, 49.3989298 8.6889417, 49.4107830 8.7059189, 49.4065233 8.6910827, 49.4013623 8.6726870, 49.4101932 8.7062396, 49.4089481 8.7124297, 49.4121807 8.6993722, 49.3656248 8.6889494 +Ibis +9 +yes +Fahrschule Formel 1 and 06221 834117, Fahrschule Lechner, Fahrschule Gölz and 0177/310 650 4, Fahrschule i-drive, Fahrschule Jung +yes +396 +stadtmobil, Stadtmobil, stadtmobil Rhein-Neckar, Stadtmobil Rhein-Neckar, Stadtmobil Rhein-Neckar AG +48.8628907 2.3351275, 48.8699382 2.3403209, 48.8697525 2.3517557, 48.8728847 2.2989591, 48.8732083 2.2979398, 48.8606768 2.3486445, 48.8728311 2.3429546, 48.8612868 2.3461069, 48.8804310 2.3540947, 48.8801870 2.3552631, 48.8738880 2.3330270, 48.8818218 2.3582022, 48.8741593 2.3567202, 48.8609735 2.3437850, 48.8613752 2.3532868, 48.8759526 2.3241920, 48.8714760 2.3040923, 48.8715977 2.3051329 +yes +10 +16.431036060698442 +Musée de l'Armée, Parc des Expositions de Paris - Porte de Versailles, Hôtel Vivienne, Musée national des Arts et Métiers, Hôtel Ibis Paris Avenue d'Italie, Cité des Sciences et de l'Industrie, Hôtel Ibis Cambronne, Le Grand Hôtel Intercontinental, Cité des Enfants (5-12 ans), Hôtel deVillas, Citadines Place d'Italie, Hôtel Kyriad, Novotel Paris Bercy, Hôtel Ibis Styles Paris-Bercy, Mercure, Hôtel Marriott, Musée du Petit Palais, Hôtel de la Trémoille, Hôtel Le Walt, Hôtel Le Monna Lisa, Holiday Inn Express : Hôtel Paris-Canal De La Villette, Hôtel Pullman Paris Bercy, Park Suites, Holliday Inn, Musée de la Poste, galerie-musée Baccarat, Salle des collections, Jules Cesar, Hôtel Le Derby Alma, Choco-Story - Le musée gourmand du chocolat, Le Meurice, Musée de la Marine, Franprix, AVALON HOTEL, Hôtellerie Paris Saint-Honoré, Ibis Paris Brancion parc des expositions, Oops hostel, Hôtel ibis, Hôtel Belambra Magendie (Touring Hotel), Holliday Inn Garden Court, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin, Musée national d'art moderne, Auberge de jeunesse Yves Robert, Carrefour Numérique², Buste de Marc Seguin, Mercure et la Musique, L'Agriculture et l'Industrie, Beauséjour Montmartre, Hôtel Paris Le Marquis Eiffel, Hôtel Saint-Charles, Ibis Style, Grille du Coq, Bureau de Gustave Eiffel, Musée d'Histoire contemporaine, Musée des Plans-reliefs, Ballon GENERALI de Paris, Sous le plus grand chapiteau du monde, Information Hall 2, Hôtel Les Jardins d'Eiffel, Tour Eiffel, Tour Montparnasse, Panthéon, Musée du quai Branly, Hôtel Pullman Montparnasse, Galeries de Paléontologie et d'Anatomie comparée, Institut du Monde Arabe, FIAP, Le Louvre, Hôtel Mercure, Pullman Paris Tour Eiffel, Église de la Madeleine, Jeu de Paume, Musée de l'Orangerie, Centre Georges Pompidou, Grand Palais, Pavillon de l'Arsenal, Musée d'Orsay, Ibis Style, Mercure Paris Opera Grands Boulevards, IBIS, Ibis, Musée Cernuschi, Musée Rodin, Musée Jacquemart-André, Mercure Blanqui Place d'Italie, Ibis Styles Tolbiac Bibliothèque, Fondation Cartier, Marriott Rive Gauche, Grande Galerie de l'Évolution, Hôtel Méridien, Hôtel Novotel Paris Tour Eiffel, Manufacture des Gobelins, Cavae des Arènes de Lutèce, Cathédrale Notre-Dame de Paris, Hôtel Le Tourville, Musée Galliera, Musée Bourdelle, Musée Carnavalet, Musée du Louvre and 48.8570374 2.3118779, 48.8318676 2.2884097, 48.8711661 2.3415044, 48.8660977 2.3554138, 48.8301361 2.3564885, 48.8957518 2.3879761, 48.8471379 2.3013512, 48.8706664 2.3304172, 48.8957352 2.3886935, 48.8400155 2.3612991, 48.8305203 2.3549865, 48.8351933 2.3876342, 48.8388012 2.3804572, 48.8384022 2.3811331, 48.8444405 2.3728366, 48.8710747 2.3050358, 48.8660456 2.3145051, 48.8668308 2.3028826, 48.8547458 2.3065559, 48.8715217 2.3076937, 48.8884053 2.3785210, 48.8318013 2.3866661, 48.8278673 2.3796510, 48.8383119 2.3229285, 48.8414574 2.3172246, 48.8677629 2.2935696, 48.8842887 2.2891352, 48.8625016 2.3453019, 48.8481468 2.3720124, 48.8604399 2.3007825, 48.8705899 2.3500828, 48.8652754 2.3282212, 48.8618163 2.2873421, 48.8300211 2.3348369, 48.8811174 2.3514426, 48.8727937 2.3157855, 48.8302782 2.3020187, 48.8340255 2.3533911, 48.8323604 2.3867916, 48.8340571 2.3460780, 48.8888344 2.3331457, 48.8404563 2.3198526, 48.8603240 2.3522598, 48.8886172 2.3628833, 48.8960350 2.3884154, 48.8463118 2.2767991, 48.8626607 2.3011910, 48.8671200 2.3540478, 48.8670465 2.3537266, 48.8672803 2.3538862, 48.8836722 2.3257995, 48.8627607 2.3126146, 48.8628559 2.3126091, 48.8516696 2.2978180, 48.8502770 2.2933596, 48.8812883 2.3374059, 48.8684553 2.3152488, 48.8582952 2.2945329, 48.8566677 2.3132514, 48.8564589 2.3132374, 48.8413588 2.2739982, 48.8610147 2.3358498, 48.8446886 2.3763972, 48.8590356 2.3074168, 48.8405787 2.3211783, 48.8582609 2.2944990, 48.8421128 2.3219796, 48.8461888 2.3460786, 48.8609823 2.2977973, 48.8383845 2.3209532, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8305359 2.3382127, 48.8614768 2.3351677, 48.8548250 2.2922891, 48.8555019 2.2928356, 48.8700303 2.3244833, 48.8658156 2.3240829, 48.8637655 2.3226594, 48.8605119 2.3524278, 48.8661515 2.3122667, 48.8505164 2.3621847, 48.8599188 2.3265259, 48.8791508 2.3620731, 48.8740739 2.3501524, 48.8576463 2.3728295, 48.8920187 2.3847925, 48.8794667 2.3125380, 48.8553042 2.3158566, 48.8755169 2.3105465, 48.8301934 2.3530001, 48.8289147 2.3741373, 48.8373190 2.3319319, 48.8316304 2.3400175, 48.8421181 2.3562419, 48.8795379 2.2855888, 48.8496595 2.2837044, 48.8344502 2.3520875, 48.8450745 2.3528309, 48.8529376 2.3498716, 48.8297544 2.3774620, 48.8450626 2.3738144, 48.8394603 2.2710054, 48.8298809 2.3774502, 48.8542680 2.3078406, 48.8657061 2.2966614, 48.8432079 2.3186583, 48.8576820 2.3627148, 48.8611474 2.3358637 +Fahrschule Formel 1 and 06221 834117, Fahrschule Gölz and 0177/310 650 4, Fahrschule Finkenzeller +Au créateur | de l'Union philarmonique de NANTES en 1903 | Émile FRITSCH | 1847-1925 | L'Association du Quartier SAINT-PASQUIER | L'Union philarmonique de NANTES | 8 Février 1992 and Plaque à Émile Fritsch, COURS CAMBRONNE Ouvert en 1791, dans l’enclos des capucins, par l’architecte Mathurin Crucy, cet îlot de verdure dans le centre historique baptisé cours de la République à sa création [...] and Plaque au Cours Cambronne, Ch. Lebourg Paris 1904 Fondu par Le Val d’Osne Paris and Statue équestre de Jeanne d'Arc, Jacques Cassard 1679 - 1740 and Monument à Jacques Cassard, Santa Anna Britannorum patrona nautis et navibus nostris semper faveas + LAPIDE . DICTO . NANNE . TENSI ÆDILES . CIVITATIS ET . PAROCHUS . SANCTÆ POSUERUNT . HOC . MONUMENTUM DIE . XXI a . APRILES ANNI . MDCCCLI i and Statue de Sainte-Anne, A Guépin ses concitoyens 1805-1873 and Buste d'Ange Guépin, Anne Duchesse de Bretagne Reine de France 1476-1514 1822-1896 and Statue d'Anne de Bretagne, Arthur III Connétable de France Duc de Bretagne 1393-1457 1822-1896 and Statue d'Arthur III, A Ecorchard et ses amis. 1809 - 1882. Directeur Créateur du Jardin des Plantes de Nantes and Buste du Docteur Écorchard, Jules Verne and Statue de Jules Verne, Nantes 24 Juin 1809 - Paris 7 Janvier 1835 - Qu'importe un jour de pleurs. L'avenir du génie est l'immortalité and Plaque à Élisa Mercoeur, Olivier de Clisson, connétable de France 1336-1407 1900 and Statue d'Olivier V de Clisson, Bertrand Du Guesclin connétable de France 1320 - 1380 1900 and Statue de Bertrand Du Guesclin, Général Philippe Leclerc de Hautecloque, Maréchal de France, 1902-1947. Jurez de ne déposer les armes que lorsque nos couleurs, nos belles couleurs, flotteront sur la cathédrale de Strasbourg and Statue du Général Leclerc de Hautecloque, Le 8 Février 1828 Jules Verne, romancier, précurseur des découvertes modernes est né dans cette maison. and Maison natale de Jules Verne, Louis-Charles | Comte DUCHAFFAULT de BESNE | Amiral de la Marine Royale (1708-1794) and Statue de Louis Charles du Chaffault de Besné, Charles de Gaulle 1890-1970 Le Général de Gaulle est venu officiellement à Nantes le 14 janvier 1945 remettre la Croix de la Libération décernée le 11 Novembre 1944 and Statue du Général Charles De Gaulle, Sequoia sempervirens Don du peuple américain au peuple français à l'occasion du bicentenaire de la Déclaration des Droits de l'Homme et du Citoyen et du Bill of Rights of the United States. 1789-1989 Témoignage de deux siècles d'amitié and Sequoia sempervirens, 1775-1785 À la mémoire des acadiens déportés du Canada par les anglais et réfugiés à Nantes attendant pour la plupart leur embarquementt pour la Louisiane and Plaque aux Acadiens, René Théophile-Hyacinthe LAËNNEC Né à Quimper le 17 Février 1781 Mort à Ploaré le 13 Aout 1826. A vécu dans cette maison au foyer de son oncle Guillaume LAËNNEC Recteur de l'Ecole de Médecine de NANTES Du 15 Mai 1788 au 24 JUIN 1793. [...] and Maison de René Laënnec, MADAME G CADOU NÉE ANNA BENOISTON 1889 1932 - Mr GEORGES CADOU 1884 1940 - RENÉ-GUY CADOU 1920 1951 | HOMMAGE de la VILLE de NANTES AU POÈTE NANTAIS RENÉ-GUY CADOU - Concession perpétuelle - 1958 - Les amis de René-Guy Cadou and René-Guy Cadou, Serge Danot 1931-1990 LE MANÈGE ENCHANTÉ and Serge Danot, ARMEL DE BLOCQUEL DE CROIX Baron de WISMES 1922-2009 and Armel de Wismes, CI GIT VENERABLE PRETRE PIERRE RENE REVEILLE DE BEAUREGARD SUCCESSIVEMENT VICAIRE DE SAINT DENIS CURE DE Psse DE LIEGE DE CELLE DE Ste CROIX DE CETTE VILLE, ET ENFIN VICAIRE GENERAL DU DIOCESE. IL TERMINA SA CARRIERE PLEINE DE BONNES OEUVRES ... and Pierre-René Réveillé de Beauregard, Familles Colombel et Monnier du Pavillon and Georges-Évariste Colombel, Vincent FOREST décédé le 1er Janvier 1882 dans sa soixante quatorzième année - Caroline Julie LEBON Veuve Vincent FOREST Née à Pau le 3 Aout 1818 décédée à Nantes le 28 Mars 1893 ... and Vincent Forest, Ange Guépin La démocratie nantaise 1874 and Ange Guépin, Alan Barvek da dad ar vro breiz ha naoned adsavet 937 1937 - Ici en 937 ALAIN BARBEORTE DÉFIT LES NORMANDS ET DÉLIVRA LA BRETAGNE and Plaque à Alain Barbetorte, La République Française en hommage aux Victimes des Persécutions Racistes et Antisémites et des Crimes contre l'Humanité commis sous l'autorité de fait dite "Gouvernement de l'État Français" 1940-1944 N'oublions jamais and Plaque aux victimes des persécutions racistes et antisémites, Au cours de l'été 1955 un dur conflit dans la métallurgie et le bâtiment engage le mouvement ouvrier nantais. Ici, le 19 AOÛT, JEAN RIGOLLET est mortellement blessé lors d'affrontements violents entre forces de l'ordre et grévistes. [...] and Plaque à Jean Rigollet, ICI DE PAR LA VOLONTE D'ANNE DUCHESSE DE BRETAGNE REINE DE FRANCE FUT EDIFIE LE PALAIS DE LA CHAMBRE DES COMPTES DE BRETAGNE and Emplacement de la Chambre des Comptes de Bretagne, ICI HABITAIT LE GÉNÉRAL DE DIVISION DE TORQUAT DE LA COULERIE 1873 - 1944 Grand Officier de la Légion d'Honneur (Ancien Comt du 18e Bon de Chasseurs) Fusillé par les Allemands le 30 juillet 1944 à KERFANY près QUIMPERLÉ [...] and Maison du Général de Torquat de la Coulerie, Les Anciens de la 2eme Division Blindée de Loire Atlantique A la mémoire de leur chef le Général LECLERC de HAUTECLOQUE Maréchal de France 1902 - 1947 Nantes 10.10.1987 and Plaque au Général Leclerc, ICI EXISTAIT VN JEV DE PAVME DÉTRVIT EN 1836, DANS LEQVEL J.B.POQVELIN DIT MOLIERE A JOVE LA COMEDIE EN 1648 and Plaque à Molière, 1877 - 1977 EN HOMMAGE AUX HOMMES ET AUX FEMMES QUI ONT LUTTE POUR UNE ECOLE PUBLIQUE ET LAIQUE - LA VILLE DE NANTES 26 NOVEMBRE 1977 and Plaque aux défenseurs de l'école publique et laïque, 22/10/1847 12/02/1917 and Charles Brunelière, illisible and François-Marie Bonaventure du fou, Ci-gît Legoff de Fontainegal. OTIUS MORI QUA OEDARI and Legoff de Fontainegal, 25/04/1886 - 11/04/1911 and René Cornulier-Lucinière, décédé le 3 octobre 1892 dans sa 75ème année. La démocratie nantaise. and Victor Coudrain, Dans cette rue est la chapelle des Minimes dite de l'Immaculée, qui fut fondée en 1469 par le duc François II, père d'Anne de Bretagne. 1980 Don de la société historique et archéologique de Nantes et de Loire-Atlantique. and Chapelle des Minimes, Ici vécut le compositeur Paul LADMIRAULT 1877-1944 Né à NANTES le 8 décembre 1877 il fit ses études musicales à NANTES puis à PARIS dans la classe de Gabriel FAURÉ où il obtint les plus hautes distinctions D'écriture classique sa musique s'inspire [...] and Maison de Paul Ladmirault, MARIE CAROLINE GRIMAUD 1859-1860 - EMILE GRIMAUD 1831-1901 - MADAME EMILE GRIMAUD née CAROLINE LAMORE 1838-1919 - CAMILLE GRIMAUD 1861-1936 and Émile Grimaud, Familles Colombel et Monnier du Pavillon and Évariste Colombel, GÉNÉRAL BEDEAU 1804-1863 UNE PRIÈRE S.V.P. and Marie Alphonse Bedeau, MORIN - JEAN PEINTRE-GRAVEUR ARCHÉOLOGUE 1877-1940 and Jean Alexis Morin, Joseph Michel CAILLÉ STATUAIRE décédé le 11 Août 1881 agé de 48 ans and Joseph-Michel Caillé, EMILE DEZAUNAY ARTISTE PEINTRE 1854-1938 and Émile Dezaunay, ICI PRES A EU LIEU UNE LUTTE SANGLANTE ENTRE LES OPPRESSEURS ET LES OPPRIMES LE 30 JUILLET 1830. “DES LABOUREURS ET OUVRIERS ANGLAIS ONT FAIT POSER CETTE INSCRIPTION EN TEMOIGNAGE DE LEUR ADMIRATION POUR LA BRAVOURE, LA VALEUR ET L’INTREPIDITE NANTAISES.” and Plaque aux victimes de Juillet 1830, HONNEUR ET PATRIE Réseau d’Estienne d’Orves D’ici fut établie le 25-12-40 la première liaison par radio entre la FRANCE occupée et la FRANCE libre 29 Août 1941 and Hommage à la liaison radio résistance 1941, Pierre Joseph Colin, né à Nantes en 1785, crée en 1824 au 5 et au 9 rue des Salorges la première usine de conserves alimentaires (...) Sinistré en 1943, le musée est depuis transféré au Chateau des Ducs de Bretagne. (...) and Déplacement du musée des Salorges en 1943, ECOLE PUBLIQUE DE GARÇONS ALPHONSE BRAUD INSTITUTEUR DEPORTE POLITIQUE MORT A AUSCHWITZ EN 1942 and Hommage à Alphonse Braud, 1877 - 1977 EN HOMMAGE AUX FEMMES ET AUX HOMMES QUI ONT LUTTE POUR UNE ECOLE PUBLIQUE ET LAIQUE LA VILLE DE NANTES 26 NOVEMBRE 1977 and hommage à l'école publique et laïque, LE 15 SEPTEMBRE 1858 LE 3 MATS MAURICE DE LA MAISON LA BOTERF ET GRESLÉ DE NANTES SAUVE 67 NAUFRAGÉS DU STEAMER ALLEMAND AUSTRIA INCENDIÉ EN MER. ÉQUIPAGE DU MAURICE. RENAUD PHILIPPE ACHARD ERNEST. CAPITAINE. (...) and hommage aux naufragés du steamer Austria, ANCIEN ENTREPOT DES CAFES PENDANT LA TERREUR, DURANT L’HIVER 1793 - 1794, LORS DE LA MISSION DE J.B. CARRIER (...) 8 À 9.000 “VENDÉENS”, D’ANJOU, DU PAYS NANTAIS, DU POITOU, HOMMES, FEMMES, ENFANTS FURENT ENTASSÉS À L’ENTREPÔT. PRESQUE TOUS PÉRIRENT.(...) and Aux victimes de la Terreur (1793-94), ECOLE PUBLIQUE DE GARCONS ANDRE LERMITE INSTITUTEUR DEPORTE POLITIQUE MORT A AUSCHWITZ EN 1942 and hommage à André Lermite, JULES VERNE ROMANCIER - PRECURSEUR A HABITE CETTE MAISON and Jules Verne, RÉSEAU COHORS - ASTURIES BASSE-LOIRE A SES CAMARADES FUSILLÉS ET MORTES EN DÉPORTATION VICTIMES DE LA BARBARIE ALLEMANDE 1942 - 1945 (suivent 30 noms) and Hommage au Réseau COHORS - ASTURIES, ICI S’ELEVAIT LA MAISON OU EST ARISTIDE BRIAND HOMME D’ETAT PRIX NOBEL DE LA PAIX DÉCÉDÉ LE 7 MARS 1932 and Hommage à Aristide Briand, ICI SIÈGE DE L’UNION NATIONALE DES MUTILES ET REFORMES FUT ORGANISE DES 1940 UN RESEAU D’EVASION DE PRISONNIERS DE GUERRE LE PRESIDENT LEON FORT ET SES CAMARADES FURENT ARRETES POUR LEUR ACTION ET FUSILLES LE 22 OCTOBRE 1941 and Hommage réseau d'évasion 1940, PREMIERE GUERRE MONDIALE 70ÈME ANNIVERSAIRE DE L’ENTREE EN GUERRE DES ETATS-UNIS D’AMERIQUE 1917 - 1987 BATAILLE DE ST MIHIEL SEPTEMBRE 1918 11 NOVEMBRE 1987 and anniversaire entrée en guerre E-U 1917, 1940 - 1944 ICI SOUFFRIRENT ET MOURURENT DES PATRIOTES TORTURÉS PAR LA GESTAPO and hommage aux torturés par la Gestapo, AUX COMBATTANTS DU SUFFRAGE UNIVERSEL. AUX OUVRIERS DU CLUB DE L’ORATOIRE. — 1848 — and Suffrage universel, Le CHATEAV des DVCS de BRETAGNE | est cédé et remis par l'ÉTAT | à la VILLE de NANTES | 10 Décembre 1910 | Gabriel GVIST'HAV | MAIRE - 29 Sepembre 1915 | Pavl BELLAMY | MAIRE and Cession du château à la ville de Nantes, EN CE CHATEAV DES DVCS DE BRETAGNE L'AN 1532 AV MOIS D'AOVT FRANÇOIS 1, ROI DE FRANCE, VSVFRVCTVAIRE DV DVCHÉ DONNA L'ÉDIT PRONONÇANT SVR LA REQVÊTE DES ETATS ASSEMBLÉS A VANNES L'VNION PERPETVELLE DES PAYS ET DVCHÉ DE BRETAGNE AVEC LE ROYAVME DE FRANCE and Commémoration de l'union de la Bretagne et de la France, LE 19 JUILLET 1789, ALORS QUE LES NANTAIS APPRENAIENT LA PRISE DE LA BASTILLE, ANDRIEUX, OFFICIER DE LA GARDE NATIONALE, MARCHE SUR LE CHATEAU A LA TETE DE 200 HOMMES. LE COMMANDANT DE LA PLACE FORTE, LE GOUVERNEUR DU GOYON, N'OSERA GUERE RESISTER. and Plaque à Andrieux, Marc ELDER | ( 1884 - 1933 ) | LITTÉRATEUR ET ROMANCIER | CONSERVATEUR DU CHÂTEAU | DE 1924 À 1933 and Plaque à Marc Elder, PASSANT SOUVIENS-TOI | EN CETTE VILLE DE NANTES | HENRI IV ROY DE FRANCE | SIGNA LE 13 AVRIL 1598 | L'EDIT DE TOLERANCE | PERPETUEL & IRREVOCABLE | ACCORDANT LA LIBERTE | DE RELIGION AUX PROTESTANTS and Signature de l'Édit de Nantes, Le 21 Juin 1940 | sont glorieusement | tombés | de leur AVION en FLAMMES | Le Lieutenant Pilote | André MARTY | Le Sous Lieutenant | Jean AUGE | Le Sergent THIERRY | ils ont voulu | que leur sacrifice | ne soit pas vain and Chute d'un Potez 63-11, L'église Sainte-Marie, rebâtie au Xe siècle par Alain Barbe-Torte, érigée au XIVe siècle en Collégiale Notre-Dame de Nantes, s'élevait à cet endroit.| Paroisse jusqu'en 1790, elle fut démolie au XIXe siècle. [...] and Emplacement de l'église Sainte-Marie, Sur cette place s'élevait jusqu'en 1793 | l'église Sainte-Radegonde | Paroisse du Château des Ducs de Bretagne | Don du Lion's Club | 20 Mars 2005 and Emplacement de l'église Sainte-Radegonde, DANS CETTE MAISON | EST NE LE 8 NOVEMBRE 1855 | LE GENERAL DE DIVISION DE CAVALERIE | VICOMTE Gve DE CORNULIER LUCINIERE Il commanda avec une audace inouïe les 8, 9 et 10 Septembre 1914 le raid héroïque de la 5ème division de cavalerie qui détermina [...] and Maison natale du Général de Cornulier Lucinière, HOTEL DE Mr DE GRASLIN | Ecuyer | Receveur général des fermes du Roy | Economiste Fondateur du Quartier, de la Place et du Théâtre qui portent son nom. | 1728-1790 NANTES and Hôtel de Monsieur de Graslin, Antenne Européenne du Mémorial de Gorée | Siège inauguré par Jean-Marc AYRAULT Député-Maire de Nantes et Abdoulaye Elimane KANE Ministre de la Culture du Sénégal Le 14 Juillet 1999 and Inauguration de l'antenne européenne du Mémorial de Gorée, CAMBRONNE NÉ A NANTES Le 26 Décembre 1770 est mort dans cette maison le 29 Janvier 1842 and Maison de Cambronne, Dans cette maison est né le 22 Avril 1852 | Fernand XAU | Journaliste | Fondateur du quotidien LE JOURNAL | Le 28 Septembre 1892 and Maison natale de Fernand Xau, Crue 1872 and Niveau maximal de la crue de 1872, EN CE LIEU A EXISTE | DE 1688 A 1877 | LE JARDIN DES APOTHCAIRES | fondé par lettres patentes de Louis XIV | sur un terrain acquis par la ville en 1471, | dénommé "Jardin de la Butte", utilisé par les | tireurs à l'arc avant d'être concédé à la | [...] and Emplacement du Jardin des Apothicaires, HOMMAGE DE LA VILLE DE NANTES | AUX VOLONTAIRES DE LA DEFENSE PASSIVE | POUR LEUR COURAGE ET LEUR DEVOUEMENT | LORS DE LA SECONDE GUERRE MONDIALE | VICTIMES DU DEVOIR | FUSILLES LE 22 OCT 1941 | HEVIN MARCEL | GLOU JEAN-PIERRE | [...] and Plaque aux victimes de la défense passive, Ici se trouvait le cabinet dentaire de | PIERRE AUDIGE | résistant, responsable pour NANTES | et la Région de Basse Loire du Mouvement Liberation-Nord, puis du Reseau Cohors-Asturies | Nommé en 1942 par Jean CAVAILLES, Fondateur de ces [...] and Plaque à Pierre Audigé, ARBRE | DES DROITS DE L'HOMME | 21 MARS 1989 and Arbre des droits de l'Homme, J.B. DAVIAIS | 1878-1945 | MORT AU CAMP DE DACHAU | MEMBRE FONDATEUR | DE "LIBERATION" | MEMBRE DU C.D.L. | CLANDESTIN | PRESIDENT FONDATEUR | DE LA FEDERATION DES | AMICALES LAIQUES DE LA | LOIRE INFERIEURE | PRESIDENT FONDATEUR DE LA | MATERNELLE [...] and Buste de Jean-Baptiste Daviais, A la mémoire de Guillaume HAROUYS Maire de Nantes en 1572 et à celle de ses échevins qui refusèrent d'obéir à la lettre du Duc de Bourbon-Montpensier les invitant au lendemain de la St Barthélémy à massacrer les protestants. and Plaque à Guillaume Harouys, RENE DUNAN | (1793 - 1885) | 1er DIRECTEUR SOURD | DE L'ECOLE DES SOURDS | SITUEE 1, RUE CREBILLON | RECONNUE LE 20 DECEMBRE 1824 and Plaque à René Dunan, SUR CETTE PLACE | QUE DOMINAIT LA TOUR DU BOUFFAY | FURENT EXÉCUTÉS COMME CONSPIRATEURS | LE 19 AOÛT 1626, | HENRI DE TALLEYRAND COMTE DE CHALAIS | LE 26 MARS 1720, | LES QUATRE GENTILSHOMMES BRETONS, | PONTCALLEC, DU COUEDIC, | MONTLOUIS, [...] and Exécutions de la place du Bouffay, Ici est née Hélène de Chappotin | (en religion Marie de la Passion, 1839-1904) | Elle fonde en 1877 | les Franciscaines Missionaires de Marie | Béatifiée par le Pape Jean-Paul II | le 20 Octobre 2002 and Maison natale d' Hélène de Chappotin, DE 1852 A 1858, | GEORGES CLEMENCEAU | FUT ELEVE DU LYCEE | QUI, DANS CETTE RUE, PORTE SON NOM, | PAR DECRET DU 4 FEVRIER 1919. | 1979 - Don de la société d'histoire et d'archéologie de Nantes et de Loire-Atlantique. and Plaque à Georges Clemenceau, GUILLAUME LAENNEC 1781-1981 RENE THEOPHILE LAENNEC and Buste de René Laënnec, Le 6 Juin 1981 | M. Pierre MAUROY, premier ministre a inauguré le boulevard René CASSIN prix Nobel de la paix, en présence de MM.Alain CHENARD député maire de la ville de Nantes, et Gérard MORVAN président national de l'U.F.A.C and Inauguration du boulevard René Cassin, Ici le Général AUDIBERT | a commencé l'Organisation | de l'Armée Secrète de l'Ouest | de la France | Départements: Loire Inférieure | Morbihan Finistère Côtes du Nord | Ille et Vilaine Mayenne Deux Sèvres | Maine et Loire Vendée | 1943 and Plaque au Général Audibert, A AIME DELRUE | 4-10-1902 25-3-1951 | AUTEUR-ACTEUR | RENOVATEUR DES FESTIVITES | NANTAISES | ET PHILANTHROPE | SES AMIS and Plaque à Aimé Delrue, Jean de LATTRE de TASSIGNY | Maréchal de FRANCE | 1889 - 1952 | Commandant en chef de la 1ère Armée Française, | il la mena à la Victoire de la PROVENCE, au RHIN et au DANUBE. | Il signa, pour la France, l'acte de capitulation de l'Allemagne à BERLIN[...] and Stèle du Maréchal de Lattre de Tassigny, EUGÈNE LIVET | Né le 13 Août 1820, décédé le 22 Août 1913, fonda à NANTES en 1846 une Institution qu'il dirigea pendant 60 années. Son but principal fut la préparation aux Carrières de l'Industrie et du Commerce, puis aux Ecoles d'ARTS ET METIERS [...] and Buste d'Eugène Livet, Hôtel de la Villestreux | Cet hôtel fut construit | entre 1740 et 1750, sur les plans de l'architecte | LAUNAIS | pour l'armateur | NICOLAS PERRÉE DE LA VILLESTREUX. | CARRIER y séjourna. | Don de la société d'Histoire et d'Archéologie de Nantes [...] and Hôtel de la Villestreux, Regina Coeli and Statue de la Vierge, Conseil municipal du 9 Décembre 2006 | Présidé par Jean-Marc AYRAULT maire de Nantes | Hommage de la ville de Nantes aux | 1463 nantais victimes civiles des bombardements | des 16 et 23 septembre 1943, morts pour la France | et aux orphelins de guerre ... and Plaque aux victimes des bombardements de 1943, Ici se dressait le pont transbordeur qui | reliait le quai de la fosse aux chantiers. | De l'ouvrage, construit en 1903 et démoli en | 1958, seuls subsistent des quais et des piles | maçonnées. Ces ouvrages difficilement | accessibles étaient là [...] and Emplacement du pont transbordeur, Le Mémorial de l'Abolition de l'Esclavage | a été inauguré le 25 Mars 2012 par | Jean-Marc Ayrault, | député-maire de Nantes, président de Nantes Métropole | La conception artistique du monument est l'oeuvre de Krzysztof Wodiczko et de Julian Bonder[...] and Inauguration du Mémorial de l'Abolition de l'Esclavage, MARCEL PLANIOL | (1853 - 1931) | Juriste, | Historien de la Bretagne | est né | dans cet immeuble | Don de la société archéologique et historique de Nantes et de Loire-Atlantique - 1984 and Maison natale de Marcel Planiol, STENDHAL | (Henri Beyle) | Résida en Juin 1837 dans cet immeuble, | Ancien Hôtel Henri IV | Inauguré en Juin 1788 | Devenu l'Hôtel de France après la Révolution. | D'illustres touristes furent accueillis | Dans cet établissement | En Septembre 1788 [...] and Plaque à Stendhal, Ici a vécu le poete RENE GUY CADOU | DE 1931 à 1939 dans ce qui était | alors une école primaire dont | son père était le directeur. | C'est ici qu'a l'âge de seize ans | il composa son premier recueil de poèmes | "Brancardiers de l'aube" and Maison de René-Guy Cadou, Centenaire de la fondation de l'école | 1834-1934 and Centenaire de l'École, Anciens élèves de l'école | 1914-1918 | Morts pour la patrie and Plaque aux anciens élèves morts pour la patrie, Anciens élèves de l'école | 1914-1918 | Morts pour la patrie and Plaque aux anciens élèves morts pour la patrie, Anciens élèves | Victimes de la guerre | 1939-1945 and Plaque aux anciens élèves victimes de la guerre, Anciens élèves | Victimes de la guerre | 1939-1945 and Plaque aux anciens élèves victimes de la guerre, Société Amicale des Anciens Elèves | Cinquantenaire | 1876-1926 and Société Amicale des Anciens Elèves, breiz da vir.... ICI les Défenseurs des libertés bretonnes Furent décapités sur ordre royal souvenez-vous des Portellec Talhouët Couëdic Montlouis 26 mars 1720 Dalchomp-sonj ! mars 1979 copie de Tulloy and Plaque aux décapités de 1720, Emplacement du | Collège des Irlandais | Colàiste na nGael | 1695 - 1793 and Emplacement du Collège des Irlandais, CETTE VIGNE FUT PLANTÉE LE 21 MARS 1976 PAR LES MAIRES DE : LA VILLE DE NANTES LA COMMUNE LIBRE DE MONTMARTRE LA COMMUNE LIBRE DU BOUFFAY and Célébration de la plantation, SAINT FÉLIX Evêque de Nantes de 549 À 583 CONSTRUCTEUR DE LA PREMIÈRE CATHÉDRALE DÉFENSEUR DE LA CITÉ IL DONNA UN ÉLAN DÉCISIF À L’ÉVANGÉLISATION DES CAMPAGNES DU PAYS NANTAIS and plaque à l'Evèque Saint Felix, JE DÉFENDS LA RÉVOLUTION L’AVÉNEMENT DE LA LOI LA RÉSURRECTION DU DROIT LA RÉACTION DE LA JUSTICE J. MICHELET 1976 RÉNOVÉ PAR LA SOCIÉTÉ HISTORIQUE ET ARCHÉOLOGIQUE DE NANTES ET DE LOIRE ATLANTIQUE and Plaque à Jules Michelet, 1898-1948 L’institution fondée par Eugène Livet en 1846, devint en octobre 1898 l’Ecole Nationale Professionnelle Livet Le cinquantenaire de cette nationalisation a été célébrée le 27 juin 1948 en présence d’André Morice [...] and Plaque à la nationnalisation de l'école, En ce manoir | le 28 Aout 1442 | mourut | JEAN V | Duc de Bretagne and Plaque à Jean V de Bretagne, A la mémoire de | Thomas DOBRÉE | (1810.1895) | Dernier représentant d'une famille | d'armateurs nantais. | Sa demeure, achevée en 1896, | ses collections | et le Manoir de la Touche (XVe s.) | furent donnés au département. | 1983 Don de la [...] and Plaque à Thomas Dobrée, Ici | se trouve la prison des Rochettes | où ont été incarcérés en 1941 | les premiers résistants nantais | au nazisme and Emplacement de la prison des Rochettes, De ce quartier | est parti | le 2 Aout 1914 | Le 3me Regt de dragons and Lieu de départ du 3ème Régiment de Dragons, Guerre 1939-1945 | Ecole Nationale de la Marine Marchande | EN SOUVENIR | des faits de résistance accomplis par |Sylvain CROSNIER Directeur | Emile LAGARDE Professeur | Pierre COLLET Professeur | Pierre MAROT Professeur | Yvon KERBRAT Elève and Plaque aux résistants de l'École d'Hydrographie, Dans ce carré militaire | reposent 1781 soldats | Français, Anglais, | Belges, Russes, | Polonais et Allemands | victimes de la guerre | 1914-1918 and Plaque aux soldats de 1914-1918, Indochine | 1945-1954 | Aux hommes des | Cinq continents | qui ont combattu | Pour nos couleurs and Stèle aux morts de la guerre d'Indochine, A la mémoire des victimes des théâtres d'opérations extérieurs and Stèle aux morts des théâtres d'opérations extérieurs, Aux français | D'outre-mer | Morts pour | La France au | Champ d'honneur and Stèle aux morts français d'Outre-Mer, Auf diesem gräberfeld ruhen | 226 deutsche soldaten | 1914-1918 | Dans ce carré militaire reposent | 226 soldats allemands and Plaque aux prisonniers allemands de 1914-1918, 1856, EDMOND BIRÉ | Historien et critique littéraire | habita dans cette maison | LUÇON 1829 - NANTES 1907 and Maison d'Edmond Biré, Jules Verne enfant a vécu | ici de 1829 à 1840. and Maison d'enfance de Jules Verne, 1877 - 1977 EN HOMMAGE AUX HOMMES ET AUX FEMMES QUI ONT LUTTE POUR UNE ECOLE PUBLIQUE ET LAIQUE - LA VILLE DE NANTES 26 NOVEMBRE 1977 and Plaque aux défenseurs de l'école publique et laïque, A la mémoire de | Michel Dabat | Elève de Saint-Stanislas | et résistant | de la première heure | Fusillé à 20 ans | pour avoir posé | le drapeau français | le 11 novembre 1940 | au sommet de la | cathédrale de Nantes. and Plaque à Michel Dabat, A la mémoire du Docteur Marion CAHOUR | (1908-2000) | Médecin des pauvres | Une vie entière au service des déshérités | Le député-maire | Jean-Marc AYRAULT and Plaque à Marion Cahour, MISSION | DE | NANTES | A L'OCCASION DU JUBILE | 1827 | MISSION | 1948 || O.CHRISTE.DVM.FIXVS.CRVCI | EXPANDIS.ORBI.BRACHIA. | A MARE.DA.CRVCEM.TVO. | DA.NOS.IN.AMPLEXV.MORI., En hommage à Jules Verne, la société russe KHANTYMANSYISKGEOPHYSIKA | a contribué à la mise en valeur des manuscrits originaux de l'écrivain | conservés par la ville de Nantes. | A Jules Verne, fils éminent de la France, penseur, explorateur, ingénieur[...] and Plaque à Jules Verne, Le Personnel des P.T.T | aux Anciens Combattants | et Victimes Civiles | Morts pour la France and Plaque aux morts des PTT, Cette plaque a été apposée | le 24 AVRIL 1920 | pour RAPPELER le CENTENAIRE | de l'ÉCOLE MUTUELLE | Fondée le 18 Novembre 1817 | par des Donateurs Nantais and Centenaire de l'École Mutuelle, Dans cette rue au XVème siècle | existait LA COUR CATUIT | Repos de chasse des DUCS De BRETAGNE | St Louis Marie GRIGNION de MONTFORT | y créa au XVIIIème siècle | le premier LOGEMENT des INCURABLES and Emplacement de la cour Catuit, Ici vécut MARION CAHOUR | "médecin des pauvres" | qui fonda Un Brin de Causette | pour l'accueil et l'écoute des plus démunis | Plaque apposée en 2008 à l'occasion | du centième anniversaire de sa naissance and Maison de Marion Cahour, U.C.T S.V.R.C.O. F.N.C.R | Paul BIRIEN | Fusillé le 22 Octobre 1941 | par les Allemands | Croix de Guerre Médaille de la Résistance | Mort pour la FRANCE et la République | HOMMAGE de ses CONCITOYENS and Maison de Paul Birien, 1877 - 1977 EN HOMMAGE AUX HOMMES ET AUX FEMMES QUI ONT LUTTE POUR UNE ECOLE PUBLIQUE ET LAIQUE - LA VILLE DE NANTES 26 NOVEMBRE 1977 and Plaque aux défenseurs de l'école publique et laïque, Ici meme, le 29 Juin 1793 | Les Armees de la Republique brisent l'attaque des troupes vendeennes | qui encerclent Nantes et donnent l'assaut. | Decide a ne pas livrer la Ville, le Maire Baco de la Chapelle | mobilise la population. Les Generaux, [...] and Bataille de Nantes, Cette stele | fut erigee en 1934 | sous les hauts patronnages | de Albert LEBRUN | President de la Republique | Gaston DOUMERGUE | Ancien President de la Republique | President du conseil des ministres | Du Marechal PETAIN | Ministre de la Guerre [...] and Stèle de Louis Schloessinger, La Resistance et la S.N.C.F. | A | MARIN POIRIER | premier fusille de Nantes | pour son action contre | l'occupant nazi. and Buste de Marin Poirier, A | Jules Durand | Une ombre... | Toute l'infortune du monde | Et mon amour dessus | Comme une bête nue. - Paul Eluard | Sans rancune | Mourir de ne pas mourir and Socle de la statue de Jules Durand, Mission 1930, L'A.N.F.F.M. | de la | RÉSISTANCE FRANÇAISE | A | SES GLORIEUX MARTYRS | FUSILLES EN CES LIEUX DE 1941 A 1944 | ADAM H. | ALLANO M. | AUBERT C. | BALE L. | BARBEAU C. | BIRIEN P. | BLOT J. | BLOUIN A. | BLANCO B. | BLASCO M. | BOISSARD M. | [...] and Plaque aux fusillés du champ de tir du Bêle, Dans cet immeuble est mort | Le 30 Juin 1811 | Le grand Architecte | Jean-Baptiste CEINERAY | qui a contribué | à l'embelissement de la ville and Maison de Jean-Baptiste Ceineray, GENERAL BUAT || MAX-BLONDAT et LANDOWSKI and Buste du Général Buat, PREMIERE PIERRE POSEE | PAR | Mr MICHEL CHAUTY | SENATEUR MAIRE DE NANTES | Mr CHARLES-HENRI DE COSSE-BRISSAC | PRESIDENT DU CONSEIL GENERAL | DE LOIRE-ATLANTIQUE | Mr OLIVIER GUICHARD | PRESIDENT DU CONSEIL REGIONAL | DES PAYS DE LA LOIRE 14 FEVRIER 1986 and Première pierre de l'I.R.E.S.T.E., PASSANT, RAPPELLE-TOI L'AUMONERIE | de TOUSSAINTS | OU LES PAUVRES ET LES MALADES | ONT TROUVE UN ABRI | PENDANT | TROIS SIECLES. | - 1362 - 1656 - and Emplacement de l'aumônerie de Toussaints, LOUIS POMMERAYE 1806-1850 | Sur l'initiative de Louis Pommeraye, notaire, les architectes | Jean-Baptiste Buron & Hippolyte Durand-Gasselin | conçurent les plans de ce passage ouvert en 1843 | la décoration fut l'oeuvre des sculpteurs | Jean Debay & [...] and Plaque à Louis Pommeraye, 1939-1945| A LA MEMOIRE DES AGENTS SNCF RESISTANTS | ARRONDISSEMENTS DE NANTES | FUSILLES | ADAM Henri LEFOL MAurice | BERTHELOT GABRIEL LEVANT Pierre | DOUET Pierre PERON Georges | HEVIN Marcel POIRIER Marin | ROBERT Mathieu | MORTS EN DEPORTATION [...] and Plaque aux agents SNCF résistants, 1939 1945 | A LA MEMOIRE DES AGENTS S.N.C.F. DES ARRONDISSEMENTS DE NANTES TUES PAR FAITS DE GUERRE | TRACTION [...] and Plaque aux agents SNCF tués par faits de guerre, AUX CHEMINOTS DE NANTES ETAT | MORTS POUR LA FRANCE | GUERRE 1914 - 1918 | VOIE et S.E. | DEQUILBEC L. | GABORIAU A. | TRACTION | BACHELIER J. | BETIN F. | BLANCHARD L. | GAGNAGE M. | GRAYO E. | HALBERT J. | RICHARD A. | RICORDEL A. | SOURGET F. | [...] and Plaque aux cheminots de Nantes État morts pour la France, A LA MEMOIRE DE | Monique GUYON | Yvette GUYON | Alice LE NY | Enfants de 9 et 13 ans victimes des | bombardements du 16 septembre 1943 | au passage à niveau des Bourderies | à Saint-Herblain. and Plaque aux enfants victimes des bombardements de 1943, A | LA MEMOIRE DE | PIERRE SEMARD | Secrétaire général | de la Fédération des cheminots | Arreté à LOCHES le 20 septembre 1939 | Fusillé à EVREUX par les nazis | le 7 Mars 1942 and Plaque à Pierre Semard, Le 30 avril 1825 | CHARLES MONSELET | est né | dans cette maison. and Plaque à Charles Monselet, En hommage aux victimes des | accidents du travail et en | particulier à Michel Langlois | mortellement blessé sur le | chantier du pont Haudaudine | le 25 septembre 1978 | La ville de Nantes | 1979 and Plaque à Michel Langlois, Dans ce théâtre, | ETIENNE DESTRANGES, | 1863-1915 | musicien clairvoyant, | introduisit WAGNER | et | défendit | les chefs d'oeuvre | lyriques. and Plaque à Étienne Destranges, LE TEMPLE DU GOÛT | Cet hôtel fut construit | vers 1750, | sur les plans de l'architecte | PIERRE ROUSSEAU, | pour l'armateur | GUILLAUME GROU. | Sa décoration est attribuée à | GABRIEL. | 1980.Don de la société archéologique et historique de Nantes [...] and Temple du Goût, LUCIE AUBRAC (1912-2007) | Enseignante et résistante | "RESISTER SE CONJUGE AU PRESENT" | Pour rendre hommage à cette militante de la memoire, | Son nom fut donne au groupe scolaire Plessis Gautron, | le 20 octobre 2007, lors d'une ceremonie presidee [...] and Plaque à Lucie Aubrac, EN CE CHATEAU | EST NEE LE 25 JANVIER 1477 | ANNE | DUCHESSE DE BRETAGNE | REINE DE FRANCE and Plaque à Anne de Bretagne, Jean-Joseph-Louis Graslin | 1727-1790 | Receveur des Finances à Nantes | Urbaniste et philanthrope | Il dota la ville d'un quartier nouveau | et offrit l'emplacement de ce théâtre | qui fut inauguré le 23 Mars 1788. | Société archéologique et [...] and Plaque à Jean-Joseph-Louis Graslin, PONT GEORGES CLEMENCEAU | 1841-1929 | ELEVE DU LYCEE DE NANTES | HOMME D'ETAT FRANCAIS | GRAND ARTISAN DE LA VICTOIRE | DE 1918 | MEMBRE DE L'ACADEMIE FRANCAISE and Pont Georges Clemenceau, "Dans cette Eglise, | des centaines d'acadiens déportés en 1755 | de la Nouvelle France en Amérique du Nord, | pratiquèrent leur religion | avant leur départ en grand nombre | pour la Louisiane, en 1785" and Plaque aux Acadiens, CLINIQUE CHIRURGICALE | fondée par | le Docteur ALFRED BOIFFIN | Ancien Prosecteur de la Faculté de Médecine de PARIS | Professeur à l'École de Médecine de Nantes | Chirurgien des Hôpitaux | 28 avril 1896 and Clinique Notre-Dame de Lorette, De cette caserne est parti | Le 5 Aout 1914 | Et le 1er Septembre 1939 | Le 65ème Régiment d'Infanterie | "Nantais souviens-toi" and Lieu de départ du 65ème Régiment d'Infanterie, Dans cette maison vécut | de Juillet 1918 à Juillet 1919 | OLIVIER MESSIAEN | 1908-1992 | Compositeur, organiste, | pédagogue, grand | humaniste de la | plus haute spiritualité. and Maison d'Olivier Messiaen, MONASTERE DE LA VISITATION | Fondé en 1630 | Ancien HÔPITAL MILITAIRE | de la FRATERNITÉ | sous la RÉVOLUTION | C'est ici que LAËNNEC | inaugura sa brillante carrière | comme médecin militaire | 1796-1800 and Monastère de la Visitation, PONT ARISTIDE BRIAND | HOMME D'ETAT FRANCAIS | PRIX NOBEL DE LA PAIX | PRECURSEUR DE L'IDEE MODERNE | DE L'EUROPE | NE A NANTES LE 28 MARS 1862 | DECEDE LE 7 MARS 1932 and Pont Aristide Briand, 1939-1945 | REZE | A LA MEMOIRE | DE SES ENFANTS | MORTS POUR LA FRANCE || 1914 | INDOCHINE | 1946-1954 || 1870-1871 | AUX DEFENSEURS DE LA PATRIE || 1918 | AFRIQUE DU NORD | 1954 - 1962 and Monument aux Morts, FUSILLÉS ET DÉPORTÉS | MORTS | POUR LA LIBERTÉ | 1940-1945 and Plaque aux fusillés et déportés, A Jean MOULIN | A SES CAMARADES | DEPORTES | ET RESISTANTS | REZE | RECONNAISSANTE and Stèle de Jean Moulin et de ses camarades, Aux Veuves et Orphelins | Victimes des Guerres | et des Déportations and Plaque aux veuves et orphelins de guerre, PARC DE PROCÉ | Créé par Monsieur Gustave Caillé | a été acheté par la ville | EN MIL NEUF CENT DOUZE | Monsieur Paul Bellamy étant maire | ICI LA POÉSIE A CHARMÉ MA JEUNESSE | Dominique Caillé | 1913 - S. DE BOISHÉRAUD and Achat du parc de Procé, Rucher École Jacques Baudrillart | Inauguré par Mr Jean Marc Ayrault | Député Maire de Nantes le 4 Mai 2002 and Inauguration du Rucher École Jacques Baudrillart, Nantes, peut-être avec Paris, la seule ville de France où j'ai | l'impression que pêut m'arriver quelque chose qui en vaut la peine, où | certains regards brûlent pour eux-mêmes de trop de feux... où pour moi la | cadence de la vie n'est pas la même [...] and Parc de Procé, Cette demeure | appartint à la famille de | Julie Bouchaud des Hérettes | (Madame Charles) | 1784-1817 | Que Lamartine immortalisa | sous le nom d'ELVIRE | Dans les Méditations poétiques | 1983 Don de la Société Archéologique et Historique de Nantes [...] and Plaque à Julie Bouchaud, VOUS ETES ICI DANS L'UNE DES FOLIES DE BARBIN. | Ces embarcadères ont été édifiés sur chaque rive au débouché d'une ancienne chaussée | qui barrait l'Erdre en cet endroit. | Cette chaussée de Barbin fut creee, dit-on, par Saint-Felix, au VIème siècle[...] and Folie de Barbin, Le 4 Septembre 1904 | 34e Anniversaire de la proclamation de la république | Emile LOUBET étant Président de la RÉPUBLIQUE | Ce monument a été inauguré | par Camille PELLETAN, Miniustre de la Marine | avec le concours de: Emile HÉLITAS, Préfet de la [...] and Inauguration de la Mairie, L'AN MDCCCXCIII | CE MONVMENT A ETE ERIGE | SADI-CARNOT ÉTANT PRÉSIDENT DE LA RÉPVBLIQVE | G. CLEIFTIE PRÉFET DE LA LOIRE-INFÉRIEVRE | ALFRED RIOM MAIRE DE NANTES | ROCH.MONTFORT.LETOVRNEVX.LIEBAVLT.MALHERBE.ETIENNEZ ADJOINTS | C.M JOSSO ARCHITECTE and Musée des Beaux Arts, L'édification de cette Mairie a été votée le 21 8bre 1900 | Le projet a été approuvé le 20 Octobre 1901. | La premiere pierre a été posée le 30 Novembre 1902. | La Municipalité en a pris possession le 1er Août 1903. | Étaient : | Maire Paul GRIVEAUD [...] and Édification de la Mairie, FACULTE DE CHIRURGIE DENTAIRE | Première pierre posée | PAR | Monsieur Olivier GUICHARD | Député de Loire-Atlantique | Président du Conseil Régional | des Pays de La Loire | Monsieur Jean-Marc AYRAULT | Député de Loire-Atlantique | Maire de Nantes [...] and Pose de la première pierre de la Faculté de Chirurgie Dentaire, Sur les bases: Groupe "Pour le drapeau": Georges BAREAU 1895 | Fantassin: CH. LEBOURG | Fusillier colonial: H. ALLOUARD 1896 | Statues du bas: LEBLANC-BARBEDIENNE Fondeur Paris | Devant : AUX ENFANTS | DE LA LOIRE-INFÉRIEURE | MORTS POUR LA PATRIE and Monument aux morts de 1870, A cet endroit | Le 21 juin 1940, vers 16H00, | alors qu'ils survolaient la Loire à bord d'un Potez 63 II pour | effectuer une mission de reconnaissance, | Le lieutenant Pilote MARTY | Le Sous-Lieutenant AUGÉ | et | Le Sergent THIERRY | ont été [...] and Plaque à l'équipage d'un Potez 63-11, 1837 1900 | A LEON BUREAU | SES.AMIS.DE.LA.LOIRE.NAVIGABLE.ET.DE.LA.MARINE.MARCHANDE . NANTES . | deBoishéraud and Léon Bureau, Philippe | GENGEMBRE | 1767 1838 | Philippe GENGEMBRE | Inspecteur Général des Monnaies | - sous L'Empire - | Fondateur et Directeur de | l'Établissement Royal d'Indret. and Philippe Gengembre, Famille | Yves GUILLOU | POUZIN et MALEGUE || Priez DIEU pour eux | Ici reposent| Yvonne POUZIN | Epouse de Joseph MALÈGUE| décédée le 15 Avril 1947 | Agée de 63 ans and Yvonne Pouzin, Ici repose dans la paix éternelle | Michel Charles Edouard | DUFOUR | Directeur du Muséum | d'Histoire Naturelle de Nantes. | né le 14 mai 1829 | décédé le 25 Octobre 1889. and Édouard Dufour, Frédéric CAILLIAUD | CHEVALIER de la LÉGION D'HONNEUR| Conservateur du Muséum d'Histoire | Naturelles de Nantes, naturaliste et | voyageur distingué. Membre de | plusieurs sociétés savantes, | décédé le 1er Mai 1869. Agé de 82 ans. [...] and Frédéric Cailliaud, Ambroise François LAËNNEC | Docteur en Médecine | Professeur à l'École de Médecine et de Pharmacie | Médecin de L'Hôtel Dieu de Nantes | Décédé le 12 Décembre 1839 | a l'Age de 49 Ans. || et son Épouse, Marie Fanny LEVESQUE | [...] and Ambroise Laënnec, A | Camille Berruyer | Ami | des humbles | et des malheureux | Ses | concitoyens | reconnaissants and Camille Berruyer, Docteur | louis Marcellin BUREAU | né le 18 Novembre 1847 | décédé le 14 Décembre 1936 | C.A P. N°9376 5m20 and Louis Bureau, Docteur | Théophile | LAËNNEC | Directeur honoraire de l'École | de plein exercice de Médecine | et de Pharmacie de Nantes. | Médecin honoraire des Hôpitaux | Membre correspondant | de l'Académie nationale de Médecine | et de la Société [...] and Théophile Laënnec, Les 16 et 23 septembre 1943, | NANTES sous les bombes. | des milliers de Nantais périrent, | victimes des bombardements alliés | luttant contre le nazisme. | Ce lieu en est l'un des symboles. and Plaque aux victimes des bombardements, Près d'ici dans les carrières appelées | la fosse du chemin de Rennes, où furent enfouis | les restes de milliers de victimes de la Révolution, | a été déposé au soir de son exécution, le 29 mars 1796, | le corps du Général CHARETTE. 23 février 1997[...] and Plaque à Charette, En souvenir | DU JUMELAGE DES MEMORIALS ACADIENS | DE NANTES, FRANCE | ET DE ST. MARTINVILLE, LOUISIANE USA | 9 Novembre 1993 | Donated by | St. Martin Bank & Trust Teche Bank & Trust | St. Martinville Lions Club Rotary International [...] and Jumelage des mémorials acadiens de Nantes et St Martinville, Dans ce cimetière, | où les corps des martyrs | Donatien et Rogatien | avaient été déposés au IVe siecle, | l'évêque Epiphane fit élever | au début du VIe siècle, | une chapelle dédiée à St Etienne, | Cette chapelle est le plus ancien | monument de Nantes. and Chapelle Saint-Étienne, Suivant d'Anciennes Traditions | ICI | Reçurent la palme du martyre vers l'an 289 | les Bienheureux Frères DONATIEN et ROGATIEN | Patrons de la Ville et du Diocèse de NANTES. | Ces deux croix de granit remplacent | les Croix de bois érigées | [...] and Plaque aux Enfants Nantais, Cette pierre de granit provient | du phare de l'île de Sein lequel a | été détruit le 3 Août 1944 par | les nazis avant leur départ de | l'île pour le chemin de la | retraite et de la capitulation | COMMUNES | << COMPAGNON DE LA LIBERATION >> | [...] and Pierre du phare de l'ile de Sein, ICI ONT ÉTÉ DÉPOSÉS | LES RESTES DE 4000 | NANTAIS ET VENDÉENS | MARTYRS DE LEUR FOI | EMPRISONNÉS DANS LES | ENTREPOTS DES SALORGES | FUSILLÉS DANS LES CARRIÈRES | DE GIGANT PAR LA LÉGION | GERMANIQUE EN EXÉCUTION | DES ORDRES DES TRIBUNAUX | [...] and Stèles aux victimes des fusillades de Nantes, 1793 | 1794 | PASSANTS | PRIEZ POUR EUX, CE MONUMENT A ÉTÉ | ACQUIS ET RESTAURÉ | EN 1910 AU MOYEN | DE SOUSCRIPTIONS | PUBLIQUES ET VOLONTAIRES | PAR UN GROUPE | D'HABITANTS DE NANTES | QUI EN DEMEURENT | PROPRIETAIRES, ......POUR CONNAITRE PAR VOUS-MÊMES, | SANS ATTENDRE L'AVENIR, | LA FORTUNE DE VOS EFFORTS, | RETROUSSEZ RÉSOLUMENT VOS MANCHES, | ET FAITES VOTRE DESTINÉE. | Fin du didcours prononcé dans cette cour le 27 Mai 1922 | par Georges CLEMENCEAU. and Discours de Clemenceau, PAVILLONS | Chef d'escadron FROT | 1860 - 1914 and Plaque au chef d'escadron Frot, LIBÉRATION-NORD | Groupe des "CLOCHES des HALLES" | de Paris | A leur regretté camarade | Luc DENIS | Mort pour la France | le 18 Janvier 1945 and Plaque à Luc Denis, 1808 2008 | NANTES - BICENTENAIRE DU LYCEE CLEMENCEAU and Bicentenaire du Lycée Clemenceau, 1908 | LYCÉE de NANTES | CENTENAIRE | organisé par la société amicale | des anciens élèves | CÉLÉBRÉ | Le 5 avril 1908 | DOUMERGUE ministre de l'inst on publique | RAULT préfet | LARONZE recteur | SARRADIN maire | DE CAUMONT proviseur | [...] and Centenaire du Lycée de Nantes, 1808 | LYCÉE de NANTES | ÉTABLI | Par arrêté du Ier Vendémiaire | an XII de la republique | OUVERT | le 1er avril 1808 | CRÉTET ministre de l'intérieur | FOURCROY directr de l'inston publique | de CELLES préfet | BERTRAND GESLIN maire | [...] and Centenaire du Lycée de Nantes, 1958 | LYCÉE CLEMENCEAU | SESQUI-CENTENAIRE | Célébré le 27 Mars 1958 | BILLERES, Ministre de l'Éducation Nationale | BRUNOLD, Directeur général de l'Enseignement du 2ème Degré | TROUILLE Préfet ORRION Maire | HENRY Recteur GOCHE Proviseur and Sesqui-centenaire du Lycée Georges Clemenceau, L'AN MDCCCLVI | Mr FERDINAND FAVRE MAIRE | Mrs P CUISSART GRESLÉ | GUILLEMET CHESNEAU | CHAUVET - ADJOINTS | J. CHENANTAIS ARCHITECTE and Inauguration de l'asile Sainte-Anne, GEORGES CLEMENCEAU | Elève du Lycée de NANTES | 1852-1858 | Le Citoyen GEORGES CLEMENCEAU | Président du Conseil, Ministre de la Guerre | a bien mérité de la Patrie | Loi du 17 Novembre 1918 | Le Lycée de NANTES prendra le nom de | Lycée CLEMENCEAU [...] and Dénomination du Lycée Georges Clemenceau, Nantes accueillit en MCDXCIII | son premier imprimeur, | ESTIENNE LARCHER, | et conserve aujourd'hui encore | le premier livre qu'il imprima | "Les lunettes des princes". and Plaque à Étienne Larcher, À LA MÉMOIRE DE | Jean-Marie DURAND-GASSELIN | François FOLTZ 1923-1943 | Philippe RANSON 1909-194... | MORTS POUR LA FRANCE and Plaque à Jean-Marie Durand-Gasselin, François Foltz et Philippe Ranson, HENRI | LE NAVIGATEUR | 1394-1460 | Francisco Franco de Suza | 1931 and Statue d'Henri le Navigateur, A Monsieur A. de CAUMONT | Proviseur du Lycée de Nantes | 1858 - 1911 | SES AMIS | 14 JUIN 1913 and Buste d'Auguste de Caumont, Abbé FOLLIOLEY | 1836 - 1902 | Proviseur des lycées de | LAVAL.CAEN.NANTES | ses élèves - ses amis | 29 JUILLET 1904 and Buste de l'abbé Follioley, Moulage 2009 | Boisgard / Lioux | N° 3/3 and Buste de Philippe Gengembre, Hommage au poète réunionnais | Auguste LACAUSSADE | (8 février 1815, Saint-Denis de la Réunion-31 juillet 1897, Paris) | Pour son combat en faveur des esclaves | des colonies françaises, et à la | Ville de Nantes | qui a permis à ce fils | [...] and Plaque à Auguste Lacaussade, Camille Mellinet | Imprimeur | (1795-1843) | Fils d'un général d'Empire et héritier d'une famille d'imprimeurs, les Malassis. | Il joua un grand rôle culturel important par la presse qu'il dirigeait. <> et par une [...] and Plaque à Camille Mellinet, PAVILLONS | Colonel DESGREES du LOU | 1860-1915 and Plaque au colonel Desgrées du Loû, 1914 1918 | A NOS MORTS | DE LA GRANDE GUERRE | Paul ALLOGNY | Gustave ARNAUD | Edmond AUGER | Léger BASPEYERE | Adolphe BAUDOUIN | Pierre BENIZÉ | Léon BERNARD | Jérémie BESSONNET | Francis BIZER | LOUIS BLAISE | Charles BLANCHARD | [...] and Plaque aux soldats de 1914-1918, Gratitude et Hommage | au personnel civil et | militaire de l'Hopital | des Armées BROUSSAIS | qui servit en ces | lieux avec compétence | et dévouement de | 1914 à 1984 and Plaque au personnel de l'Hôpital des Armées Broussais, SOUVENEZ-VOUS DANS VOS PRIÈRES | DES ENFANTS DE TOUTES AIDES | MORTS POUR LA FRANCE | 1916 | J. HERVÉ | M. JULIOT | F. MACÉ | L. MARIET | E. MARTIN | G. LE MERLE | A. OLIVIER | T. RETIÈRE | P. SAILLOUR | A. SPARFEL | A. SURGET | J. TAVERSON | 1917 | [...] and Plaque aux soldats de 1914-1918, SOUVENEZ-VOUS DANS VOS PRIÈRES | DES ENFANTS DE TOUTES AIDES | MORTS POUR LA FRANCE | 1914 | L. BERGONIOUX Lt | H. BIGEARD | H. BOISMAIN | A. CHARPENTIER | J.M FRAUD | P. GALPIN | H. GEFFRAY | J. LE JOLY | P. LEBRETON | A. LORET | J. POILANE | [...] and Plaque aux soldats de 1914-1918, TOMBEAU DE FRANÇOIS DEUX | Dernier Duc de Bretagne Mort à Coueron le Neuf Septembre 1488 | De Marguerite de Bretagne Sa premiere Femme | et de | Marguerite de Foix sa Seconde Femme. | Les Restes d'Arthur III Duc de Bretagne, Comte de Richemont [...] and Tombeau de François II et Marguerite de Foix, DONNEZ LEUR SEIGNEUR | LE REPOS ETERNEL | LA PAROISSE NOTRE DAME DE BON PORT | A SES ENFANTS MORTS POUR LA FRANCE | MCMXIV - MCMXVIII and Plaque aux soldats de 1914-1918, DONNEZ LEUR SEIGNEUR | LE REPOS ETERNEL | LA PAROISSE NOTRE DAME DE BON PORT | A SES ENFANTS MORTS POUR LA FRANCE | MCMXIV - MCMXVIII | 1916-1917 | René LUMINAIS | Constant DUGAST | Charles CHAIDERON and Plaque aux soldats de 1914-1918, LES MUTILÉS DU TRAVAIL | EN RECONNAISSANCE | A LEUR DÉVOUÉ DÉFENSEUR | NANTES LE 19-3-67 and Plaque à Baptiste Marcet, ESPACE LEON THOMAS | 1921-1999 | <> | DIRECTEUR AU <> | 1958-1977 | MILITANT SYNDICAL | MUTUALISTE PRESIDENT MGEN44 | INAUGURE PAR JEAN-MARC AYRAULT DEPUTE-MAIRE DE NANTES | LE 4 JUILLET 2005 and Plaque à Léon Thomas, Chêne planté le 10 mai 2006 à l'occasion de la Première commémoration de l'abolition de l'esclavage., ECOLE SAINT STANISLAS | MORTS POUR LA FRANCE | GUILLON Rogatien Pharmacien | GUINÉE Émile | [...] HÉMION MARCEL Capitaine | HIDIER Maurice | HOUIS Gabriel | HUAULY Pierre Brancardier | HUCHET Joseph | HUTIN Joseph | HUTIN Marcel | JACQUIER André [...] and Plaque aux morts de l'école Saint Stanislas, 1914 1918 | ECOLE SAINT STANISLAS | MORTS POUR LA FRANCE | PROFESSEURS | Abbé CHOIMET Gabriel Aumônier | Abbé GUILLET Georges Capitaine | Abbé MOUSSAIS François | Anné LANDAIS Pierre Lieutenant | Abbé BIORET Edmond Aumônier | ANCIENS ELEVES | [...] and Plaque aux morts de l'école Saint Stanislas, Chanoine P.GUILLOU | 1853 - 1926 | SUPÉRIEUR DE L'ÉCOLE St STANISLAS | de 1891 à 1919 and Stèle du chanoine Guillou, Blois 1871 - Boshof 1900 - Au colonel Villebois Mareuil né à Nantes le 22 mars 1847 mort au Champ d'honneur. À Boshof Transvaal le 5 avril 1900. and Statue de Georges de Villebois-Mareuil, Général Mellinet 1798 - 1894 Leblanc Barbedienne Fondeur Paris Marqueste 1897 and Statue du Général Mellinet, La garde meurt et ne se rend pas. A Cambronne and Statue du Général Cambronne, À D'HAVELOOSE LE BIENFAITEUR DES PAUVRES - LA BIENFAISANCE ET LA CHARITÉ LUI RENDENT HOMMAGE and Stèle d'Haveloose, À l'Armée - Honneur et Patrie and Ossuaire militaire, JUILLET 1830 A NOS CONCITOYENS morts pour la défense de nos droits. | LA NATION QUI N’HONORE PAS les martyrs de sa liberté n’est pas digne de rester libre. | Le pouvoir viole la constitution signe lui-même l’arrêt de sa déchéance. | LA DÉFENSE DE LA [...] and Colonne de Juillet 1830, A NOS CAMARADES MORTS POUR LA PATRIE | 1914 - 1918 and Monument aux Morts du lycée Georges Clemenceau, A | Georges CLEMENCEAU | 1841 - 1929 and Stèle de Georges Clemenceau +yes +Bruntsfield Place +44 +REpower, Vestas, Enercon, NEG Micon, Nordex +111 +51.0314650 13.7060792, 51.0476641 13.7923415, 51.0813022 13.6914169, 51.0761832 13.6854700, 51.0531342 13.7070918, 51.0301256 13.7603362, 51.0158602 13.7682213, 51.0484348 13.7907288, 51.0026862 13.7951099, 51.0129678 13.7811896, 51.0133169 13.7545602, 51.0743089 13.6985362, 51.0739544 13.7586196, 51.0306245 13.7016945, 51.0117598 13.7985344, 50.9917031 13.7974045, 50.9916908 13.7974778, 51.0473259 13.8091135, 51.0308817 13.7016925, 51.0306353 13.7016025, 51.0307674 13.7015445, 51.0029038 13.8026801, 51.0301067 13.7605035, 51.0306483 13.7017773, 51.0307733 13.7018143, 51.0478027 13.7924906, 51.0477517 13.7923615, 51.0477169 13.7924663, 51.0473166 13.8090331, 51.0158295 13.7683219, 51.0157005 13.7682524, 51.0157602 13.7683420, 51.0157055 13.7681405, 51.0158344 13.7681178, 51.0157673 13.7680862, 51.0742678 13.6986495, 51.0743339 13.6986159, 51.0742512 13.6985401, 50.9984173 13.8180317, 50.9985671 13.8179957, 50.9984805 13.8178950, 50.9985026 13.8181299, 51.0298689 13.6478846, 51.0477363 13.7924103, 51.0301131 13.7604231, 51.0307524 13.7016675 +Hopfingerbräu im Palais +RATP +yes +yes +recreation ground, grass, retail, construction, school, cemetery, commercial, forest, basin, military, village green, allotments, reservoir, railway, industrial, meadow, residential, brownfield, orchard, vineyard, greenhouse horticulture, greenfield, religious, Groupe Scolaire, gravel, plaza, plants, flowers, traffic island, churchyard, urban agriculture +208 +0 +511 +0 +48.8373758 2.3176784, 48.8671035 2.3471909, 48.8379602 2.2583959, 48.8410120 2.3066005, 48.8570028 2.3007925, 48.8579137 2.3005660, 48.8782645 2.3740462, 48.8774801 2.3700505, 48.8318670 2.3144693, 48.8689224 2.3335350, 48.8395609 2.3021892, 48.8375207 2.2967192, 48.8375266 2.2960585, 48.8276825 2.3271004, 48.8501002 2.3428094, 48.8327092 2.3625620, 48.8304784 2.3562767, 48.8334332 2.3545467, 48.8326050 2.3544168, 48.8530182 2.4058632, 48.8554073 2.3268543, 48.8697474 2.3709540, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8703950 2.3709651, 48.8778698 2.3509743, 48.8529470 2.3434116, 48.8535279 2.3681762, 48.8488712 2.2873446, 48.8189960 2.3382666, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8521024 2.4034631, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8695951 2.3715600, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8653000 2.3752307, 48.8673441 2.3627982, 48.8651925 2.3758399, 48.8629074 2.3860380, 48.8668485 2.3837377, 48.8672012 2.3825153, 48.8645121 2.3683814, 48.8318807 2.3568124, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8501765 2.3792170, 48.8507286 2.3779068, 48.8509545 2.3780414, 48.8502726 2.3811628, 48.8330519 2.3316747, 48.8732053 2.3585526, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8367776 2.2983375, 48.8357338 2.3020633, 48.8605667 2.3751425, 48.8637354 2.3705262, 48.8642296 2.2884865, 48.8644747 2.2879509, 48.8645963 2.2880351, 48.8649321 2.2883111, 48.8654525 2.2886812, 48.8667948 2.2896169, 48.8677281 2.2909720, 48.8369085 2.4021711, 48.8370521 2.4018326, 48.8396803 2.3945209, 48.8400366 2.3946968, 48.8397862 2.3968956, 48.8368227 2.4037506, 48.8368339 2.3917853, 48.8393074 2.3970077, 48.8744139 2.3574128, 48.8482696 2.3715140, 48.8470790 2.3740473, 48.8469009 2.3721664, 48.8461048 2.3740873, 48.8477030 2.3740290, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8457782 2.3745532, 48.8574421 2.3793069, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8717354 2.3404728, 48.8344235 2.3052236, 48.8750824 2.3241658, 48.8831845 2.3273339, 48.8563547 2.3050003, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8546797 2.3051724, 48.8870475 2.3139527, 48.8896917 2.3219420, 48.8840239 2.3218519, 48.8830031 2.2877361, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8374001 2.2957684, 48.8402359 2.3617231, 48.8649004 2.4054084, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8806821 2.3741833, 48.8789432 2.3031398, 48.8815632 2.3004421, 48.8844267 2.2977130, 48.8855270 2.2969790, 48.8849249 2.2981974, 48.8846750 2.2981530, 48.8773919 2.3395256, 48.8737979 2.3160522, 48.8384262 2.2988961, 48.8841082 2.3224492, 48.8379252 2.2975063, 48.8384650 2.2984232, 48.8386614 2.2988499, 48.8388963 2.2993041, 48.8807958 2.3003045, 48.8423511 2.2814155, 48.8591202 2.3475207, 48.8529207 2.3436323, 48.8386703 2.2822723, 48.8633059 2.3340632, 48.8647135 2.3426384, 48.8648693 2.3427189, 48.8630681 2.3412176, 48.8634071 2.3418915, 48.8660175 2.3407258, 48.8673651 2.3318225, 48.8656306 2.3303026, 48.8743117 2.3760048, 48.8690399 2.3387540, 48.8697491 2.3403685, 48.8695691 2.3402609, 48.8686697 2.3421738, 48.8689050 2.3327814, 48.8578234 2.2746494, 48.8583112 2.2754219, 48.8660916 2.3526753, 48.8645295 2.3512403, 48.8685043 2.3498910, 48.8641253 2.3698504, 48.8518531 2.3567202, 48.8612900 2.3499825, 48.8612937 2.3537009, 48.8560141 2.3571788, 48.8595710 2.3565976, 48.8549508 2.3624309, 48.8552557 2.3616146, 48.8538346 2.3644665, 48.8543409 2.3691660, 48.8650455 2.3535907, 48.8669898 2.3620443, 48.8667188 2.3611850, 48.8662353 2.3610229, 48.8518893 2.3417124, 48.8633000 2.3620149, 48.8632099 2.3622012, 48.8626247 2.3633483, 48.8621296 2.3644112, 48.8614452 2.3647591, 48.8630803 2.3510377, 48.8421221 2.3217245, 48.8592743 2.3796462, 48.8521680 2.3314230, 48.8447287 2.3244719, 48.8427041 2.3238548, 48.8809308 2.3651881, 48.8812888 2.3651008, 48.8808303 2.3650793, 48.8883530 2.3917794, 48.8489183 2.3392705, 48.8506265 2.3304803, 48.8485082 2.3285161, 48.8508389 2.3266905, 48.8568213 2.3685042, 48.8427653 2.3300120, 48.8420145 2.3302544, 48.8904247 2.3760144, 48.8440612 2.3225950, 48.8442156 2.3244262, 48.8473522 2.3183754, 48.8296478 2.3789647, 48.8711649 2.3221410, 48.8726629 2.3106385, 48.8732419 2.3115596, 48.8744495 2.3205466, 48.8752230 2.3264851, 48.8740876 2.3267342, 48.8778017 2.3225743, 48.8797413 2.3271672, 48.8831584 2.3268974, 48.8833400 2.3254009, 48.8813674 2.3151235, 48.8810818 2.3162341, 48.8786152 2.3156839, 48.8767711 2.3179268, 48.8778569 2.3059734, 48.8794539 2.3032046, 48.8749659 2.3041948, 48.8745760 2.3048788, 48.8687291 2.3014159, 48.8664956 2.3016793, 48.8677909 2.2995151, 48.8686254 2.2992361, 48.8725861 2.3019868, 48.8784635 2.2987871, 48.8698436 2.3061758, 48.8382010 2.3505000, 48.8378958 2.3507127, 48.8377870 2.3508117, 48.8378570 2.3515198, 48.8376483 2.3516414, 48.8727273 2.3786615, 48.8284670 2.3791901, 48.8287894 2.3821387, 48.8293931 2.3783272, 48.8444634 2.4058653, 48.8806637 2.3648615, 48.8822323 2.3662711, 48.8720243 2.2934411, 48.8684366 2.2915095, 48.8714262 2.2899337, 48.8689351 2.2833107, 48.8696967 2.2845776, 48.8694565 2.2845446, 48.8700723 2.2857876, 48.8690091 2.2852941, 48.8691634 2.2851996, 48.8749903 2.2860127, 48.8759692 2.2834989, 48.8748643 2.2834193, 48.8690546 2.2835943, 48.8655496 2.2837039, 48.8657006 2.2836110, 48.8667831 2.2790363, 48.8459991 2.3734585, 48.8664481 2.2772490, 48.8659840 2.2742050, 48.8633053 2.2742098, 48.8624073 2.2760147, 48.8593999 2.2774250, 48.8583220 2.2745520, 48.8584493 2.2748476, 48.8580404 2.2776736, 48.8411414 2.3136506, 48.8533487 2.3667989, 48.8557164 2.2701238, 48.8417733 2.3185097, 48.8559683 2.2711042, 48.8369684 2.2533009, 48.8394820 2.3097854, 48.8502874 2.2762982, 48.8949842 2.3821818, 48.8781855 2.2878593, 48.8362844 2.3061932, 48.8535026 2.2653555, 48.8846806 2.3623964, 48.8797648 2.3567638, 48.8491712 2.2665706, 48.8810016 2.3640265, 48.8233119 2.3260789, 48.8475928 2.2669653, 48.8484138 2.2647127, 48.8478601 2.2637874, 48.8485576 2.2650178, 48.8454405 2.2582420, 48.8485516 2.2751179, 48.8606979 2.3554288, 48.8605259 2.3552067, 48.8765046 2.3790929, 48.8415500 2.2669376, 48.8717642 2.3765169, 48.8399984 2.2627388, 48.8390983 2.2821736, 48.8307191 2.3193023, 48.8304006 2.3192272, 48.8824125 2.3814642, 48.8758150 2.2867065, 48.8505969 2.3487384, 48.8465904 2.3434584, 48.8481836 2.3416278, 48.8504365 2.3250405, 48.8439434 2.3420437, 48.8461211 2.3404463, 48.8388735 2.3499896, 48.8430873 2.3523909, 48.8433167 2.3520295, 48.8446194 2.3521389, 48.8387237 2.3571215, 48.8480122 2.2605847, 48.8555518 2.3602965, 48.8585424 2.3554995, 48.8661318 2.3536080, 48.8590582 2.3031212, 48.8417910 2.3293787, 48.8474457 2.3180776, 48.8478498 2.3111276, 48.8685310 2.3627215, 48.8645339 2.3458426, 48.8664790 2.3612544, 48.8671863 2.3624934, 48.8452289 2.2582589, 48.8809021 2.3403319, 48.8471366 2.3867728, 48.8382469 2.3985623, 48.8356227 2.4057366, 48.8417549 2.3864187, 48.8455537 2.3108109, 48.8450445 2.3104567, 48.8474933 2.3107909, 48.8394375 2.2918836, 48.8514163 2.3135568, 48.8426729 2.3023971, 48.8431492 2.3040014, 48.8431097 2.3128917, 48.8673662 2.3064825, 48.8592377 2.3714158, 48.8256887 2.3653770, 48.8695383 2.3950747, 48.8263809 2.3414522, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8953387 2.3825799, 48.8388287 2.2816271, 48.8397112 2.3025357, 48.8396385 2.3018330, 48.8234162 2.3578095, 48.8223317 2.3587958, 48.8230555 2.3585643, 48.8283319 2.3249564, 48.8500696 2.2886536, 48.8454338 2.3886185, 48.8560015 2.3425743, 48.8544203 2.3257043, 48.8503640 2.3847349, 48.8446673 2.3830913, 48.8488537 2.3789042, 48.8459220 2.4058540, 48.8588998 2.2749555, 48.8585344 2.2751198, 48.8768988 2.3387135, 48.8383753 2.3982048, 48.8620598 2.2758197, 48.8632226 2.2764809, 48.8643683 2.2780086, 48.8682336 2.2816544, 48.8683009 2.2818137, 48.8636110 2.3699568, 48.8716652 2.3369422, 48.8724813 2.3352798, 48.8768502 2.3324723, 48.8715356 2.3340932, 48.8707193 2.3495070, 48.8761304 2.3564812, 48.8756147 2.3563557, 48.8834234 2.3734013, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8751634 2.3407635, 48.8696664 2.3354448, 48.8640573 2.3358570, 48.8580367 2.3228472, 48.8570504 2.3810504, 48.8468273 2.3109956, 48.8727906 2.3327950, 48.8540420 2.4102463, 48.8631677 2.3877376, 48.8465399 2.3518782, 48.8371620 2.2788430, 48.8256754 2.3500062, 48.8260463 2.3458083, 48.8275711 2.3258960, 48.8274068 2.3262715, 48.8312357 2.3775548, 48.8731847 2.3591245, 48.8902005 2.3757322, 48.8390681 2.2569423, 48.8706166 2.3614024, 48.8549374 2.3061290, 48.8433668 2.3494422, 48.8709866 2.3363950, 48.8570621 2.3817062, 48.8372502 2.3914765, 48.8789794 2.3539524, 48.8848997 2.3377794, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8481085 2.4036760, 48.8509779 2.2927923, 48.8550471 2.2699500, 48.8418785 2.2997087, 48.8442816 2.3244689, 48.8482530 2.4016764, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8857946 2.3099771, 48.8276838 2.3319307, 48.8701182 2.3328493, 48.8416006 2.3224232, 48.8337153 2.3863338, 48.8430431 2.3223965, 48.8850396 2.3205857, 48.8860872 2.3177587, 48.8468610 2.3536998, 48.8201698 2.3641255, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8804253 2.3287401, 48.8743336 2.3345374, 48.8301847 2.3456951, 48.8425418 2.2920002, 48.8340558 2.2901416, 48.8330244 2.2891177, 48.8334343 2.2890580, 48.8642191 2.3423423, 48.8638673 2.3421689, 48.8692088 2.4085611, 48.8815429 2.2914706, 48.8838961 2.3274356, 48.8889565 2.3226941, 48.8937935 2.3362303, 48.8915892 2.3347229, 48.8959308 2.3457254, 48.8906192 2.3344868, 48.8929700 2.3402831, 48.8938006 2.3360065, 48.8928237 2.3276058, 48.8927037 2.3270855, 48.8950865 2.3279515, 48.8927798 2.3416901, 48.8357045 2.2898603, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8507185 2.3452276, 48.8506024 2.2921760, 48.8434041 2.2832488, 48.8441583 2.2814225, 48.8601040 2.2800860, 48.8525041 2.4054710, 48.8358361 2.3959436, 48.8620103 2.3504016, 48.8555902 2.2705124, 48.8709674 2.2927276, 48.8701195 2.2926560, 48.8607663 2.2829855, 48.8742509 2.3267610, 48.8674435 2.3066185, 48.8760737 2.3314470, 48.8776629 2.3503063, 48.8607520 2.3551307, 48.8599332 2.3492544, 48.8616973 2.3497749, 48.8314530 2.3131078, 48.8366420 2.3235880, 48.8798460 2.2882480, 48.8706907 2.3018397, 48.8711468 2.3021857, 48.8442760 2.3236880, 48.8443641 2.3231615, 48.8808570 2.3744052, 48.8816465 2.3719957, 48.8810026 2.3740798, 48.8809708 2.3734937, 48.8808782 2.3736050, 48.8412683 2.3182655, 48.8750168 2.2842019, 48.8271902 2.3689921, 48.8274443 2.3054531, 48.8456435 2.3883893, 48.8467978 2.3874491, 48.8463910 2.3878730, 48.8240842 2.3636888, 48.8226659 2.3580445, 48.8642610 2.2877420, 48.8259715 2.3507845, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8260781 2.3450782, 48.8257972 2.3453018, 48.8690375 2.4018799, 48.8681245 2.4017154, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8709768 2.4035156, 48.8718932 2.4046138, 48.8711831 2.4041560, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8650286 2.3978764, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8661206 2.3993734, 48.8647416 2.4000331, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8646156 2.3980291, 48.8385802 2.3568194, 48.8575448 2.3507955, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8260853 2.3604941, 48.8265662 2.3114209, 48.8266741 2.3089333, 48.8276987 2.3717961, 48.8348018 2.2835149, 48.8898740 2.3601766, 48.8289555 2.3008177, 48.8309472 2.3666202, 48.8900866 2.3603615, 48.8425217 2.2605998, 48.8399979 2.2631418, 48.8393773 2.2626930, 48.8445716 2.2773781, 48.8457722 2.3952172, 48.8423827 2.2779816, 48.8315085 2.3570011, 48.8423678 2.2814812, 48.8393433 2.2612518, 48.8382522 2.2590990, 48.8294497 2.3691497, 48.8911754 2.3596165, 48.8912089 2.3601196, 48.8556190 2.3071441, 48.8267862 2.3639559, 48.8275456 2.3565272, 48.8292182 2.3568482, 48.8895540 2.3596572, 48.8601780 2.3784708, 48.8918470 2.3497087, 48.8394408 2.3901626, 48.8634536 2.3668626, 48.8621900 2.3647601, 48.8643476 2.3599313, 48.8304465 2.3780998, 48.8561136 2.3566520, 48.8740405 2.3857795, 48.8749608 2.3892009, 48.8739345 2.3878755, 48.8794344 2.3881410, 48.8536688 2.3651544, 48.8801930 2.3906171, 48.8750094 2.3896199, 48.8755856 2.3816591, 48.8358783 2.3528351, 48.8737724 2.3861774, 48.8469948 2.3720795, 48.8741080 2.3859246, 48.8448082 2.4018695, 48.8831104 2.3242250, 48.8776217 2.3939651, 48.8777323 2.3952759, 48.8775224 2.3930979, 48.8577037 2.3677906, 48.8547650 2.3703199, 48.8522552 2.3385407, 48.8419262 2.3651705, 48.8370898 2.3512464, 48.8439360 2.3521362, 48.8466920 2.2861937, 48.8464464 2.2864898, 48.8462140 2.2863069, 48.8471256 2.2857626, 48.8467862 2.2850085, 48.8687439 2.3725567, 48.8737876 2.3254797, 48.8757911 2.3276502, 48.8853087 2.2914432, 48.8666300 2.3441053, 48.8751073 2.3063372, 48.8473180 2.3512660, 48.8761128 2.3302242, 48.8760136 2.3310108, 48.8628914 2.2767409, 48.8836091 2.3810186, 48.8326928 2.3011680, 48.8434103 2.2931530, 48.8367477 2.3065081, 48.8396815 2.2927792, 48.8364615 2.3516931, 48.8759800 2.3435799, 48.8602282 2.3444320, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8442882 2.3080071, 48.8528372 2.2900682, 48.8524061 2.2912571, 48.8529003 2.2907372, 48.8331060 2.3547764, 48.8275383 2.3571726, 48.8504014 2.2929658, 48.8781331 2.2973879, 48.8466594 2.4106749, 48.8474387 2.3948976, 48.8475088 2.4104704, 48.8293214 2.3692986, 48.8558171 2.3591925, 48.8310392 2.3425080, 48.8843398 2.3684081, 48.8294964 2.3565503, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8605440 2.3490975, 48.8235069 2.3253377, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8314166 2.3251141, 48.8747610 2.3399353, 48.8610529 2.3020976, 48.8742737 2.3172451, 48.8551235 2.3603692, 48.8788807 2.2940470, 48.8790502 2.2932877, 48.8787213 2.2930870, 48.8335336 2.4018517, 48.8344090 2.3538607, 48.8329666 2.3548590, 48.8860790 2.2927720, 48.8862920 2.2922300, 48.8860610 2.2916910, 48.8524475 2.3894597, 48.8815650 2.2950420, 48.8816640 2.2951850, 48.8698720 2.3253770, 48.8426479 2.3496281, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8767675 2.3414635, 48.8801010 2.2887410, 48.8518237 2.3263371, 48.8518410 2.3270180, 48.8520482 2.3269387, 48.8896590 2.3042630, 48.8459597 2.3544163, 48.8523174 2.3400938, 48.8370786 2.3520317, 48.8480411 2.3409988, 48.8487519 2.3414295, 48.8763180 2.3309180, 48.8260443 2.3266660, 48.8255907 2.3265438, 48.8570274 2.3983184, 48.8851905 2.3788177, 48.8694492 2.3546663, 48.8803860 2.3748678, 48.8843962 2.3388368, 48.8841050 2.3049810, 48.8840570 2.3045230, 48.8835710 2.3045840, 48.8837420 2.3043460, 48.8493470 2.3529650, 48.8747781 2.3879795, 48.8755246 2.3943562, 48.8315966 2.3304662, 48.8828185 2.3827206, 48.8753559 2.3919799, 48.8752306 2.3934592, 48.8818980 2.3374100, 48.8497330 2.3457635, 48.8491590 2.3498700, 48.8485190 2.3493440, 48.8401997 2.3954293, 48.8448871 2.2941778, 48.8452118 2.2941040, 48.8454696 2.2946866, 48.8651944 2.3554408, 48.8650138 2.3556963, 48.8895142 2.3498344, 48.8702024 2.2869885, 48.8578346 2.3793123, 48.8711617 2.3300722, 48.8403727 2.3337448, 48.8349994 2.3046409, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8313376 2.3296145, 48.8619859 2.3647571, 48.8664714 2.3673929, 48.8625029 2.3716831, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8455488 2.4110597, 48.8388128 2.3226987, 48.8339484 2.3183045, 48.8409661 2.2878933, 48.8412556 2.2872804, 48.8410949 2.2882264, 48.8651981 2.3604798, 48.8768640 2.3922696, 48.8304463 2.3288405, 48.8314813 2.3271321, 48.8734980 2.3143172, 48.8737373 2.3138101, 48.8737700 2.3140366, 48.8421217 2.3299033, 48.8470111 2.3265176, 48.8675297 2.3843310, 48.8685607 2.3669629, 48.8715677 2.3606317, 48.8721816 2.3600284, 48.8815323 2.3165760, 48.8590343 2.3461496, 48.8690920 2.3544517, 48.8683922 2.3581580, 48.8874646 2.3257792, 48.8873604 2.3254496, 48.8768740 2.3473056, 48.8830109 2.3460324, 48.8785250 2.3535336, 48.8734651 2.3583097, 48.8747915 2.3570787, 48.8791742 2.3482838, 48.8760765 2.3450995, 48.8843391 2.3213355, 48.8372237 2.3221630, 48.8657983 2.3663325, 48.8743700 2.3192643, 48.8527018 2.3349473, 48.8406978 2.3744965, 48.8449540 2.2895406, 48.8452657 2.2845482, 48.8446514 2.2839876, 48.8442772 2.2836818, 48.8597693 2.3772029, 48.8762972 2.3015994, 48.8525574 2.4047510, 48.8577757 2.4073141, 48.8538895 2.2941282, 48.8286359 2.3240592, 48.8641842 2.3992653, 48.8535488 2.3673835, 48.8532580 2.3674767, 48.8419523 2.3375746, 48.8627281 2.3878662, 48.8389478 2.3497359, 48.8573584 2.3900374, 48.8862870 2.3823994, 48.8615860 2.3413149, 48.8479392 2.3716919, 48.8704997 2.3615121, 48.8757756 2.3401123, 48.8330591 2.3871082, 48.8698251 2.3102577, 48.8649934 2.3332593, 48.8646077 2.3788387, 48.8705497 2.3546686, 48.8761690 2.3558059, 48.8740824 2.3480430, 48.8708529 2.3346161, 48.8312382 2.3775605, 48.8804820 2.3161857, 48.8494428 2.2974856, 48.8438388 2.3063057, 48.8512725 2.3428163, 48.8440910 2.2831411, 48.8433595 2.2833923, 48.8413554 2.2888602, 48.8413772 2.2882287, 48.8761824 2.3002522, 48.8513497 2.3992002, 48.8726650 2.3293531, 48.8709492 2.3282127, 48.8722908 2.3280789, 48.8722605 2.3300398, 48.8371175 2.3176252, 48.8725589 2.3098007, 48.8725939 2.3370941, 48.8772970 2.3488717, 48.8774911 2.3492552, 48.8774769 2.3495261, 48.8783431 2.3528360, 48.8816257 2.3653592, 48.8726909 2.3396328, 48.8740775 2.3377311, 48.8794635 2.3364478, 48.8932628 2.3267927, 48.8476121 2.2664327, 48.8931883 2.3272746, 48.8435649 2.3891604, 48.8448189 2.3202573, 48.8794618 2.3547465, 48.8753162 2.3572500, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8648399 2.3394096, 48.8778905 2.3549883, 48.8488552 2.3942325, 48.8489972 2.3942887, 48.8505758 2.3948498, 48.8494165 2.3948501, 48.8726368 2.3332498, 48.8733021 2.3461422, 48.8717746 2.2995211, 48.8910317 2.3197585, 48.8866292 2.3186693, 48.8449899 2.4047731, 48.8347313 2.3458453, 48.8351835 2.3533874, 48.8791073 2.2907296, 48.8766198 2.2875734, 48.8406761 2.3933858, 48.8359858 2.3961013, 48.8680414 2.3235560 +15 +yes +fr:Pech de Bugarach, ca:Carlit, ca:Montfalgars, ca:Pic d'Eina, ca:Pic de Noufonts, ca:Pic de Noucreus, ca:Puigpedrós, ca:Pic de la Dona, ca:Tosseta de l'Esquella, ca:Pic de Finestrelles, ca:Puig Peric, ca:Pic de Portapàs, ca:Puig de Tres Vents, ca:Roc del Pou, ca:Puig de Coma Ermada (Setcases), ca:Puig d'Ombriaga, ca:Pic de l'Infern, fr:Signal de Mailhebiau, ca:Pic dels Gorgs (Conflent), ca:Comanegra, ca:Puig de la Llibertat, ca:Puig Peric, ca:Roc de la Campana, ca:Puig de les Pedrisses, ca:Roc de la Sentinella, ca:Puig del Boixer, ca:Puig Negre, ca:Puig Forcadell, ca:Puig Forcat, ca:Puig Neulós, ca:Puig de Calmelles, ca:Puig de la Puja, ca:Puig dels Pruners +663 +3 +1 +Dicker Turm +9 +817 +Le Fournil de Lourmel, La Boul'Ange, La Boulenge d'Antan, Boulangerie - Pâtisserie Méri, Les Sourires de Dante, Du Pain et des Idées, La Fournée des Gourmets, La Gerbe d'Or, Boulangerie Hélène et Bernard Dorange, Les compagnons de Voltaire, Guesdon, Aux délices de Saint-Antoine, Boulangerie Jacques Bazin, Aux Délices de Manon, Céline et Étienne, Les Moissons, Vitry d'Aubigny, Boulangerie Thierry Renard, Moisan, Le Grenier à Pain, Nature de pain, Le chant du pain, A. et H. Jourdan, Le Pain d'Auguste, Boulangerie Topaze, Boulanger Pâtissier Julien, Chez Paco, La baguette des Pyrenees, Gaetan Romp, Boulangerie Patisserie, Boulangerie Pâtisserie des Deux ponts, Aux délices de Jussieu, Gwen Choc, Boulangerie Julien, Boulangerie Pâtisserie Gaumer, Boulangerie Kahn, Boulangerie Blin, Boulangerie Patrick et Christine, Tout Autour du Pain, Le Fournil du Maine, Boulanger Patissier, Maison Coët, Le Moulin de la Vierge, L'Univers du Pain, Bread & Roses, Au Saint-Honoré, Boulangerie "Les Caprices de Charlotte", Le Boulanger des Invalides, Julien, Boulangerie de l'Entr'acte, Le Boulanger de Monge, Maison Bichon, Aux Gamins de Ménilmontant, L'Epi d'Or, Boulangerie Yan Chantelle, Boulangerie Bonon, Maison Dault, La Grignotière, Joséphine, Le Badine de Martine, Bechu, Boulangerie Schou, Des Gâteaux et du Pain, Jossé, Boulangerie Saint-Louis, Le Fournil Du Village, Aux Sucreries de ma Mie, Le Quai du Pain, Huré Boulanger Patissier, Boulangerie Thevenin, Boulangerie Pascal & Sylvie Robin, Aux délices du palais, Boulangerie Gontier, Boulangerie Laurent Roperh, Les petits mitrons, Patisserie des Sultans, Autour du Fournil, La Tlemcenienne, Le Grenier de Félix, Arnaout, Paul, Boulangerie Patisserie, Boulangerie du 37, Le boulanger du parc, Les Délices Vauvenargues, Boulangerie, Boulangerie du Val de Grâce, Aux délices de Christine, Le Pain au Naturel, Blé sucré, Christian et Myckie, Patisserie de Choisy, Patisserie Saison, Arnaud DELMONTEL, Pâtisserie Hubert, Au Bec Sucré, Boulangerie Eric Kayser, Michel Deschamps, Leduc, Pains et Gourmandises, Les Saveurs de Charenton, Au Pain d'Autrefois, Landemaine, Maison Ellini, Zerzour, Pichard, Dossemont, Moisan, La Truffe Noire, Le Saint-Georges, Les Gourmandises D'Eiffel, Eric Kayser, Paul Soulabaille, Boulangerie Gwendoline et Bruno, La Prestigieuse, Au Coin de la Rue, Hissine, Boulangerie Patisserie de la Villette, Dominique Saibron, La fournée d'Augustine, Le Pain de Jacques, Au Plaisir du Pain, Boulangerie Feu de Bois, Au Levain des Martyrs, Paul, La Pompadour, La Ruche Gourmande, Aki boulanger, Boulangerie du Fauborg, Boulanger Patissier, Les Bannetons de Charonne, Boulangerie Magnelli, La Parisienne, Maison Kayser, Boulangerie des Epinettes, Aux Epis d'Or, Boulangerie Basso, Boulangerie F. Comyn, Boulangerie Pâtisserie L'Escale, Boulanger Ounissi, Christophe & Muriel, Le petit creux, Cousin, La Miche qui Fume, Au Grain de Blé, Baguépi, Le Notre, Festival des Pains, Maison Landemaine, Stohrer, Le fournil d'Andrézieux, Friends, Boulangerie Jean-Olivier Rondot, L'impérial, Coquelicot, Le 41, Boulangerie Fantasiiia, Au Levain de Pyrénées, A la baguette de Mozart, Au Duc de la Chapelle, L'ami du pain, La Boulange du 12e, Le pain d'antan, Sadaharu Aoki, Eric Kayser, La Gourmandise, La Flûte Enchantée, Midoré, La Tranche Dorée, Artisan Boulanger, Maison Landemaine, La Gobelinoise, Boulangerie Akiko et Philippe Bruere, Paul, Lebon, Tembely, La Vitryenne, Aux armes de Niel, Le Grenier à Pains, Au pain complet de Paris, La Moulinoise, Maison Legendre, Boulangerie, Delmontel, Boulangerie, Festival des pains, Artisan boulanger, Vaudron, Les Sept Épis, Pains et Passion, Les Délices du Fournil, francesca, Boulangerie Alsacienne Benoît Maeder, Bernard Delattre, Poilane, Rouiller, La Tradition, Le Bel Épi, La Gerbe de Blé, La boulangerie des buttes Chaumont, L'Atelier des Pains, Paul, Fournil de Wattignies, Huré, La Chocolatine, L'Art du Pain, By Cyril Lignac, Boulangerie Patisserie, Aux delices des Lilas, Boulangerie Benoist, Boulangerie Patisserie, Le Fournil de Paris, Le pétrin alsacien, Le pain retrouvé, Robin, Au Fournil Gaité, Au Chardon d'Argent, Boulangerie des Lombards, Le Fournil de Paris, Millie's Cookies, La Boul'Ange, Paul, Paul, Boulangeir Pâtisserie Kellerman, Amorino, Yv Nghy, Boulangerie Patisserie SAS Penain, L'Artisan du Pain, Boulangerie Patisserie Sainte-Anne, La Crac'ante, Monsieur Fernand, La Gambette à Pain, Maison Hébert, Maison Kevest, Boulangerie Patisserie Sandwicherie, Le fournil du moulin, La vicomte, Bonjour Backery, Paul, Fifty Fifty, Laurent Duchêne, La Bretagne, Boulangerie Brune 77, Boulangerie L. Paulin, Le fournil de Vanves, Maison Lefaure, Le Jardin des Pains, Boulangerie Pâtisserie Yelles, Annie & Gilles Boulangerie, Aux Délices de la Roquette, La tradition du pain, La saveur du pain, La Huche Normande, Square de Belleville, Les jardins de Paul'ha, Le grenier à pain, Boulangerie Saint-Charles, Boulangerie Flandrin, L'Angelus, Guillaume Delcourt, Boulangerie de Mogador, Boulangerie Patisserie, Patisserie Poncet, Eric Kayser, Boulangerie Pascal Chevret, Le Grenier à Pain, Boulangerie, Boulangerie, Le Fournil Parmentier, Les délices de la Chapelle, Boulangerie Marceaux, Ernest & Valentin, Aux Péchés Normands, La Baguette Sedaine, Le pain d'autrefois, Rudy Père Et Fils, Boulangerie Poilâne, La Boulangerie, Boulangerie Patisserie, Midoré, Boulangerie Patisserie au 140, Au bel arôme, Boulangerie Saint-Antoine, Bernard Telhier, Eugène, Le Pain d'Autrefois, Le Pain des Lys, La flûte Gana, Colisée Gourmet, La Boulange Ve, Sud Tunisien, Artisan Boulanger, Aux Péchés Normands BIO, La Fournée d'Augustine, Le bon Panneton, Boulangerie, Au petit Versailles du Marais, Patisserie Bonjour - 你好, Au Blé d'or, Colin Régis, Gérard Mulot, Maison Guénard, Boulangerie Metayer, Artisan boulanger pâtissier, Banette, Le blé royal, Délice Pain, Le Moulin De la vierge, Golden Bread, EVA, La Boulangerie de Papa, Ciel, Aux Délices de Manon, Foulon, Au Plaisir du Pain, Brioche Dorée, Paul, Desgranges, Paul, Le Grenier à Pain "La Fayette", Boulangerie Patisserie, Boulangerie Patisserie, Au Plaisir du Pain, Yves Thuriès Chocolat, Au Paradis du Gourmand, Ladurée, Boulangerie Alsacienne, Les délices de taine, Aux Gourmandises d'Arago, Festival des Pains, Boulangerie Evrard, Le Boulanger de Monge, Eric Kayser, Paul, Pou, Sara Lina, La baguette, Le Moulin de la Vierge, Asselin, Joséphine Bakery, Paul, Maison Morange, Les Chants de Blé, La Panetière, Paul QUAI, La Pâtisserie, Mottier, Le quartier du pain, Morieux, Au royaume du pain, Boulangerie, Le Gay Choc, Pains & Friandises, La Pyramide du prince, Le Pain Au Naturel, Maison Hardel, Boulangerie Ricquer, Thevenin, Au Petit Duc, Aux Surprises, Laurent Duchêne, La caverne aux pains, L'essentiel, Le pain du faubourg, Boulangerie Estaëlle, Contini, Gosselin, Paul, Pabois, Café Pouchkine, Eric Kayser, Boulangerie Patistory, La Truffe Noire, Maison Hilaire, Aux delices d'Oceane, La flute de Meaux, L'artisan boulanger Maison Maaned, Le Fournil de Kuss, La Croquandise, La grange aux pains, Le XXV, Boulangerie Malineau, Boulangerie Patisserie, La delicieuse, Boulangerie Patisserie, Boulangerie Patisserie, Vieille France, Boulangerie Patisserie, Le fournil de Paris, Boulangerie Patisserie, Le paradis du pain, Les Fées Pâtissières, Stanz, Pralus, Le dépot de pain de l'autre Boulange, La délicieuse, Le puits d'amour, Nicolle, Boulangerie Patisserie Gregory Desfoux, Boulangerie Patisserie, Boulangerie Patisserie, Boulangerie, Eric Kayser, Éric Kayser, Boulangerie Patisserie Chocolaterie, Sazanka, Boulangerie Patisserie, Le paradis des gourmands, Gaia, La coeur des pains, Tout chaud, Le petit poucet, Paul, Paul, Les Chants de Blé, Boulangerie Patisserie Chocolatier, Utopie, Antoine Artisan Boulanger Pâtissier, Le gâteau battu, Aux Délices de Sèvres, Eric Kayser, Eric Kayser, Le Pain Quotidien, Lohezic, L'atmosphère, AM Martinno, Au levain d'antan, Mireille, Boulangerie Patisserie, Boulangerie-Pâtisserie, Passion Forest, Sarrazins, Boulangerie Patisserie, Bakery's, Boulangerie Patisserie, Chez manon, Boulangerie patisserie le grand siècle, Le fournil de Paris, Démoulin, Monoprix, La Tradition de Murat, Le fournil d'eugénie, Pezeril, Pains Gourmands, La Parisienne, Angélique et Nicolas, Aux délices du moulin, La Bellevilloise, Le pain quotidien, P'tit Pains et Gourmandises, Ammy, Brioche Dorée, Liberté, Nani, Festival des pains, La Bagette Dorée, KSC, Tout, Autour du Pain, Parisylla, Broche dorée, L'Epi d'Or de Clichy, Boulangerie Mariel, Agadipain, Boulangerie Gontrand Chérier, La Mie Câline, Maison Lallement, Boulangerie Moderne, Boulangerie Patisserie, Blouet, Collet, Éric Kayser, Les Saveurs de la Grande Armée, Paris Baguette, Candy, Mekerbeche, Paul, Maison Landemaine, Boulangerie Pearl, La Galette des Moulins, Le Fournil d'Alésia, Aux Pains des Bourbons, Dupain, His, Boulangerie Jeanne d'Arc, Les Moulins de Rosa, Les Saveurs de Batignolles, La boulangerie des artistes, Mets Caprices, chemin vert, au temps des tartines, saines saveurs, Chez Benoit, Ganesha Sweets, Hot Breads, Sri Sai RAM Sweets, Pierre Hermé, Souma et Christophe, Onfroy, Paul, La mie câline, Chambelland, gana, Maison Landemaine, Baje, Carton, Le Grenier à Pain, Éric Kayser, Éric & Olivier Belle, Muriciano, Sacha Finkelstein, Aux Merveilleux, L'Artisan des gourmands, Dalloyau, Boulangerie Patisserie, Boulangerie Patisserie, Boulangerie Patisserie, O' Délices, Maison Lendemaine, Midoré, F and JM, Mi Do Ré, Moisan, Boulangerie Patisserie, Jaune & Rouge, E. Kayser, La Mie de Pain, Chez Meunier, Festival des Pains, Au Naturel, Le Damier Gourmand, R Canelle, Miss Manon, Boulangerie Pichard, Boulangerie Patisserie, Chez Raphaelle, L'Épi de Blé, Paul, Boulanger Patissier, Brioche Dorée, Pain à la Ligne, Paul, Mason Pradier, Paul +Darmstädter Hof Centrum, Freizeitzentrum Köpfel, ISSW Hallenbad, Schwimmbad, Planschbecken, Hallenbad Köpfel Heidelberg, Thermalbad +22 +Heidelberg Marriott Hotel +502 +49.4058676 8.6845278, 49.3755036 8.6875476, 49.4114903 8.6527163, 49.4084682 8.7011215, 49.4282350 8.6834880, 49.4080165 8.6707602, 49.3970257 8.6721772 +48.8334063 2.2896356 +Edinburgh Print & Sign Centre, Hobs Repro, Signage, Pace Print, Cowan Print, Prontaprint, Minuteman Press, Digital Print Centre, Edinburgh Copy Shop, Call Print, Green Print, Events Armoury Design and print, Crescent print LTD, Paragon Print Co., Print Sponge, Leith Print & Copy, Mail Boxes Etc., 3D Laser Print, Signs Made, Image Printers, Signarama and 55.9439169 -3.2183396, 55.9462494 -3.2139894, 55.9375330 -3.1783784, 55.9412734 -3.1810442, 55.9430993 -3.2022568, 55.9561282 -3.2018779, 55.9603840 -3.1815809, 55.9514798 -3.2123746, 55.9496059 -3.1832770, 55.9470259 -3.1864063, 55.9431447 -3.1798704, 55.9452540 -3.1836161, 55.9489667 -3.1843829, 55.9645712 -3.1735576, 55.9609417 -3.1806709, 55.9754249 -3.1674641, 55.9328557 -3.2102916, 55.9461888 -3.2013444, 55.9460060 -3.2189545, 55.9789429 -3.1842912, 55.9379369 -3.1787758 +48.8375550 2.3183632, 48.8275755 2.3065523, 48.8541336 2.3057378, 48.8396227 2.3212958, 48.8587994 2.2848408, 48.8506951 2.3463689 +0.32565524347099412 +Gasthaus Linden-Brauerei, Brauerei Gasthaus Seitz (Elch-Bräu), Moritz - Wirts- und Kaffeehaus, Old Bushmills Distillery, Gasthof-Pension Brennerei Mühlhäuser, Blaue Maus, Glenfiddich Distillery, Brennerei-Gasthaus Sponsel "Zum Schwarzen Adler", Talisker Distillery, Glen Ord Distillery, Bladnoch Distillery, Arran Distillery, Spirit of Hven Distillery, Weingut Klaus Simon, Weinstube Simon, Schöttlinger Kornbrennerei, Felsenbrand GbR Abfindungsbrennerei, Geist-Reich Brennerei und Terassencafe, Fränkische Edelbrennerei Theiler, Destillerie Gottesgabe, Weingut Fröhlich, Dalmore Distilery Visitor Centre, Hausbrauerei Altstadthof, Erste Dresdner Spezialitätenbrennerei GmbH Augustus Rex, Metzgerei-Gasthof Richter, 't nieuwe diep, Brennerei Ernst Ziegler, Drei Linden, Schweizer Keller, Destillerie "Geist von Rathen", Fa. Gert Scheithauer (Dipl.-Ing. FH) Brennereispezialitäten, Hoermann, guildive-caracol, Kornbrennerei Schilling, Painted Stave Distilling, Schladerer, Lantenhammer, Strathisla Distillery, Hofbrennerei Ortler, Château Cugnac Armagnac, La Maison Ryst-Dupeyron, Callwood Distillery, Brennerei und Hofladen Kormann, Schnapsbrennerei Steinlechner, Trapiche, Nestville Park, Lindelberg Brennerei Zeiss, Birgitta Rust Piekfeine Brände, Männlins Straußwirtschaft, Weingut Huck-Wagner, Gutshof Andres, Brennstüberl Geistreich, SPREEWALDINI, Obstbrennerei Schraml, Steinwälder Hausbrennerei Schraml, Obstbrennerei Schlötzer, Feiner Kappler, Edelbrennerei Bischof, Brennerei Kaiser Edle Brände, Schloßbrennerei Betzenstein, Preuschens Edelbrandbrennerei Familie Erlwein, Brennerei Fahner, Brennerei Feesenhof, Brennerei Peterhof, Dahlman-Schmidt Edelbrände, Obsthof und Brennerei Weisel, Obstbrennerei Oßmann, Brennerei Siebenhaar, Brennerei Singer, Bio-Hof Wilibald Schmidt, Brennerei Hack, Schnaps- und Edelbrennerei Heilmann, Edeldestilleriei P. und G.Müller, Edelbrennerei Haas, Brennerei Wunder, Adlerbrennerei M.Pircher, Brennerei Pension Seybert, Edelbrennerei Walch, Edelbrennerei Erich Lang, Brennerei Manfred Wilhelm, Edelbrennerei Heilmann, Brennerei Waldenhof, Brennerei Rumpler, Brennerei Salb, Brennerei Schilling, Edelbrennerei "Schnaps-Bartel", Brennerei Beck, Alte Kurhausbrennerei Hans Hertlein, Likörfabrikation Leonard Herbst, Edelobstbrennerei Schulz, Vroni`s Edelbrennerei, Brennerei Leicht, Brauerei Alt Dietzhof, Simmerlein, Edelbrennerei Schmidt, "Schwarzbrennerei" Georg Schwarz, Weinbau und Obstbrennerei Hans Meyer, Edelobstbrennerei Jochen Fischer KG, Wölfersdorfer Brennerei mit Safterei, Felsenbrand GbR Abfindungsbrennerei, Brennerei Popp, Destille an der Stadtmauer, Palírna Velké Losiny, Brennerei Blaufelder, Chevalier de Villarçon distillery ruins, Habitation Clement, Habitation St-Etienne, distillerie du Simon, Schwanen-Brennerei Dotterweich, Fränkische Hausbrennerei Erlwein, Brennerei Fleischmann, Meinel's Hofbrennerei, Brennerei Fritz Wohlhöfer, Alder Gaak GbR, Brennerei Weisel, Brennerei Schmitt, Obstbrennerei Polster, Brennerei Rossmann, Alte Hausbrennerei Alfred Wecklein, Vecsei Pálinkafőzde, Brennerei Reiter, Mosterei Übele, Ye Old Grog Distillery, Michters Distillery & Tour Center, Thumb Butte Distillery, Bendistillery, Distillerie Saint James, THE DUKE Destillerie, Ardnamurchan Distillery, Barrel House Distillery, Edelbrennerei Reus, L'Ones, Pálenice (palírna slivovice), Old Gamundia Whisky, Obstbrennerei Heffner, Tennessee Stillhouse, AROMATIQUE GmbH Spirituosenfabrik, Grafenwald, Palírna Stařeč, Gasthaus Kroder, Mackmyra Destilleri, Distilleria Driussi, Edelbrennerei Otto Ammon, Edelschnapsbrennerei Held, Alte Brennerei, Enzianbrennerei Grassl, Pestovateľská Pálenica, Altländer Brennerei, Distillerie de Bois-Roche, Deanston Distillery, Zum Schwanen, Linkwood Distillery, Glenmoray Distillery, Benriach-Glenlivet Distillery, Glen Elgin Distillery, Mannochmore Distillery, Glenlossie Distillery, Distillerie des Terres Rouges, Ben Nevis Distillery, Glenrothes Distillery, Glen Grant distillery, Steigerwälder Brennerei Güttler, Abtshof, Frienhof in Hirtengärtl / Genusshof Pingold, Brennerei M. Eichhorn, Edelbrennerei Höllein, Gerbermann, Brennerei Inge Blank, Aberlour Distillery, Benromach Distillery, Glenmorangie Distillery, Penderyn Distillery, Braeval Distillery, Isle of Aaron Distillery, Knockando Distillery, Tamdhu Distillery, Macallan Distilery, Glenfarclas Distillery, Винзавод АП "Садовод", Винзавод Качинский, The Glenlivet, Broger Privatbrennerei, Blair Athol Distillery, Saint George's Distillery, Tullibardine Distillery, Clynelish Distillery, Glengoyne Distillery, Tobermory Distillery, Tomatin Distillery, Isle of Jura Distillery, Glenkinchie Distillery, Queens Arms, Les Vergers d'Auvillars, Distilleria Schiavo, Braunhof-Brennerei, Distillerie Lemercier, Sauerländer Edelbrand GmbH, Pálenica, Dalwhinnie Distilliery, Destille Erfurt, Edelobstbrennerei Ziegler, Brennerei Betz, Rogue Distillery & Public House, Gasthof-Brennerei Steinlein, The Glenlivet Distillery, Distilleria Le Crode, Landgasthof Zehner, Eversbusch, Die Post, Pulteney Distillery, Brennerei Josef Häfner, Edelbrennerei Kern, Brennerei Albin Meixner, St. George Spirits, Mestská pálenica, Sack's Destille seit 1864, Distilleria Fratelli Brunello, Château du Breuil, Château de Breuil, Hammerschmiede, Karl Schötker, Kleinprinzbauer, Roser Hausbrennerei, Pálenica, Kingsbarns Distillery, Brennerei und Pension Brück, The Dingle Whiskey Distillery, CopperMuse Distillery, Alt Enderle Edelbrände Bauland Brennerei, Stokerij De Molenberg, Full Throttle Distillery, Stokerij Wilderen, Abhainn Dearg Distillery, Brennerei Ebenhack, The Tormore Distillery, Ardbeg Distillery, Lagavulin Distillery, Laphroaig Distillery, Cragganmore Distillery, Glenallachie distillery, Benrinnes distillery, Benrinnes distillery, Bunnahabhain Distillery, Flor de Cana, Zum Schnapsbrenner, Du Nord Craft Spirits, La Mauny, 金車威士忌酒廠, Fruchtsaftkellerei-Getränkemarkt-Brennerei Michael Schmitt, Oban Distillery, Aberfeldy Distillery, Distillerie Bagnoli, Ardmore Distillery, Ardmore Distillery, Maine Distilleries - Cold River Vodka, Torabhaig Distillery (under construction), Bowmore Distillery, Bruichladdich Distillery, Kilchoman Distillery, Glen Garioch Distillery, Caol Ila Distillery, Consorzio Alambicco, Cotswold Distillery, Takara Sake, Ancienne Distillerie Chevalier de Villarcon, Isle of Harris Distillers, Beenleigh Rum Artisan Distillery, Sallandt, Gartbreck Distillery +limited +0.67791489450712539 +308.47650642274357 +no +fr:Roc de Peyre, fr:Moure de la Gardille, fr:Pic d'Anjeau, fr:Rocher de Saint-Guiral, fr:Salasc, fr:Truc de Grèzes +2.993911286706529 +Clinique Paris V - Centre Médico Chirurgical, Clinique de Vinci (fermée), Clinique Geoffroy Saint-Hilaire, Centre municipal de santé, Clinique de la Muette, Institut Curie, Centre du Luxembourg (Consultations pluri-disciplinaires), Hôpital Marmottan, Centre de Bilan de Santé DEPSE, Laboratoire de biologie médicale, Centre de santé médical et dentaire, Hôpital Cognacq-Jay, Centre biologique chemin vert, COSEM Rome, Imagerie Médicale, Centres de dépistage anonymes et gratuits, Clinique Médicales, Médecine Physique Réadaptation, Clinique Canal de l'Ourcq, Hôpital de jour pour enfants, Hôpital de jour Georges Vacola, Hôpital Maison Blanche, Hôpital Sainte-Périne - Rossini - Chardon-Lagache, Hôpital Tenon, Hôpital Sainte-Anne, Fondation ophtalmologique Adolphe de Rothschild, Hôpital du Val de Grâce, Hôpital Cochin, Maternité Port Royal et Baudelocque, Hôpital des Quinze-Vingts, Hôpital Saint-Joseph, Hôpital de la Rochefoucauld, Institut Mutualiste Montsouris, Hôpital Européen Georges Pompidou, Hôpital Privé des Peupliers, Hôpital Saint-Jacques, Hôpital Trousseau, Hôpital Lariboisière, Hopital Vaugirard, Hôpital Saint-Michel, Hôpital Fernand Widal, Hôpital Broca, Hôpital Saint-Louis, Hôpital Robert Debré, Hôpital National de Saint Maurice, Hopital Bichat, Maison médicale Jeanne Garnier, Hôpital Henri Dunant, Clinique Jouvenet, Clinique Edouard Rist, Notre-Dame de Bon Secours, Hôpital des Diaconnesses, Hôtel-Dieu, Maternité Sainte-Félicité, Centre de dépistage anonyme et gratuit, Hôpital Léopold Bellan, Les Cariatides d'Abbeville, Hôpital Jean Jaurès, Clinique des Buttes-Chaumont, Clinique Maussins-Nollet, Hôpital Mère-Enfant de l'Est Parisien, Hôpital Tarnier, Clinique du Parc de Belleville, Centre post-cure de la Métairie, Hôpital Pierre Rouquès - Les Bluets, Maternité Les Bluets, Urgences, Institut de Cardiologie, Clinique Arago, Clinique Alleray Labrouste, Clinique Chirurgicale Victor Hugo, Climique Rémusat, Hôpital Sainte-Périne - Rossini - Chardon Lagache, Hôpital Croix Saint-Simon, Clinique Saint-Jean de Dieu, Hôpital Necker Enfants Malades, Hôpital Saint-Antoine, Hôpital Rothschild, Hôpital Esquirol, Clinique de la Jonquière, Clinique Rémy de Gourmont, Hôpital La Collégiale, Hôpital Bretonneau, Maternité Port Royal et Baudelocque, Hôpital des Gardiens de la Paix, Hôpital de la Pitié Salpétrière, Hôpital Maison-Blanche, Hôpital Léopold Bellan, Aura, Hôpital Henri Ey +49.4048641 8.6772256 +43 and 53.9360281 -1.0702516, 54.0307341 -1.0382265, 53.9755492 -1.0707896, 53.9629477 -0.9755778, 53.9303232 -1.0689686, 53.9642135 -1.0653371, 53.9871441 -1.0473926, 53.9859898 -1.0651562, 54.0411661 -1.0300613, 54.0118558 -1.0595910, 53.9575241 -1.0493096, 53.9793720 -1.0633348, 53.9673959 -1.0714738, 53.9563077 -1.0554740, 53.9776740 -1.0644274, 54.0421058 -1.0253387, 53.9579066 -1.0615711, 53.9578916 -1.0384236, 53.9411331 -1.0453008, 53.9402545 -1.0628004, 53.9412901 -1.0485025, 54.0031479 -1.0620491, 54.0086708 -1.0590792, 53.9679082 -1.0462940, 53.9511412 -1.0357185, 53.9787147 -1.0614117, 53.9417894 -1.0651445, 53.9955927 -1.0554353, 53.9605571 -1.0416518, 53.8979156 -0.9664321, 53.9564001 -1.0614879, 53.9602131 -1.0579907, 53.9598297 -1.0582374, 53.9799100 -1.0663846, 53.9622142 -1.0110749, 53.9586201 -1.0293671, 54.0299745 -1.0344258, 54.0284637 -1.0347685, 54.0224401 -1.0399706, 53.9390567 -0.9870193, 53.9389076 -0.9874202, 53.9249592 -0.9466464, 53.9640155 -1.0652996 +W.H. Smith, Librairie Galignani, Shakespeare and Company, Brentano's, Brentano's, Aapoum Bapoum, Gibert Joseph, Gibert Joseph, La Terrasse de Gutenberg, Page 189, Librairie Compagnie, Gibert Jeune - Sciences Humaines, Gibert Jeune, Gibert Jeune, Equipages, L'Atelier, L’atelier d’en face, Dhouailly et Cie, Youfeng (友风书店), Librairie La Brèche, Papéterie-librairie de l'École militaire, Fnac, Librairie Nation, Lezarts, CFFC, Mona Lisait, Librairie Epona, Editions Guy Trédaniel, Le monde en tique, À Livr'Ouvert, Librairie des jardins, Litote en Tête, L'Invit' à-lire, Éditions Franciscaines, Librairie Fontaine Passy, Librairie des Orphelins Apprentis d'Auteuil, Longtemps..., Les Guetteurs De Vent, La Friche, Librairie Dalloz, Librairie Beaujean, L'Arbre à Lettres - Mouffetard, Les Alizés, Paul Beuscher, Livres Anciens, Editions Eyrolles, Le Monde des cartes, L'Alinéa, Librairie Forhom, Librairie de Sèvres, Rue de l'échiquier, Librairie Ancienne du Parnasse, L'Herbe Rouge, Papeterie librairie, Librairie journaux, Detrad, Del Duca, L'Arbre à Lettres - Bastille, Fontaine Kléber, Itinéraires, Fontaine Haussmann, Dédale, Imagigraphe, L'Arbre à Lettres - Denfert, Comme un Roman, BD Net, Autant en Emporte le Vent, Librairie Droit Economie Lettres, Atout Livre, L'Acacia, L'Ecume des Pages, L'Arbre du Voyageur, L'Oeil Ecoute, La Plume Vagabonde, La Boucherie, La 25e Heure, L'Attrape-Coeurs, L'Œil au Vert, La Manoeuvre, Le Chat Pitre, Lamartine, Le Livre Ecarlate, Libralire, Librairie des Abbesses, Violette and Co, Village Voice, Voyelle, Le Phénix, Les editeurs associés, Librairie Gourmande, Librairie Nation, Librairie du Temple, Librairie Vigot Maloine, Les Mots à la Bouche, Librairie Nordest, Le Rideau Rouge, Palimpseste, Le Roi Livre, Les Buveurs d'Encre, Librairie Maritime et Outremer, Les Cahiers de Colette, Librairie des Orgues, Librairie des Arts et Métiers, Lipsy, Librairie du Globe, Librairie de l'Escalier, Le Pied de biche, BD 16, San Francisco Book Company, Librairie Fontaine, L'Ouvre-Boîte, Librairie Henri IV, Arcane Livres, Maison d'Europe et d'Orient, Charybde, Librairie-presse, L'humeur vagabonde, occasion, Bulles en tête !, Au point du jour, Librairie/Papeterie/tabac, Le Monte en l’Air, Point Presse, Byblos, Le Merle Moqueur, L'Usage du Monde, Boulinier Jourdan, Graphi Dessin, Climats, Un Temps Pour Tout, Au Cœur Immaculé de Marie, Librairie de Paris, La nef des fous, Culture et bibliothèques pour tous, Librairie Saint-Paul, Légis France, A. Pedone Éditeur, Jacques Gabay, Album, Le Temps Retrouvé, Librairie EYROLLES, Librairie philosophique J. Vrin, Page à page, Le Comptoir des Mots, Essalam, Le comptoir de Mathilde, Design Librairie, L'humeur vagabonde (jeunesse), ESPERANTO - langue internationale, Gibert Joseph, Librairie Jonas, Junkudo, librairie japonaise, Centre Wallonie-Bruxelles, Le XXe Siècle & ses Sources, Librairie Emmanuel Lhermitte, Librairie - Papeterie, Librairie Ithaque, Librairie Nicole Maruani, Attica - La librairie des langues, Khai Tri, Libramoto, La Balustrade, Loisir & Culture, L'Attrape-Coeurs, Album, Terres Nouvelles, L'Atelier d'à côté, Publico, Maison d'Ennour, La Cartouche, Librairie Gallimard, France Loisir, Librairie Notre-Dame de France, Book-Off, Pages après pages, Boulinier, Librairie des Loisirs, BD et Compagnie, Abbey bookshop, Librairie J.N. Santon, Tome 7, Librairie Mona Lisait, Boutique des Cahiers, Art Religieux, Diane Selliers Éditeur, La Vie du Rail, Le Merle Moqueur, La bande des cinés, Pierre Brunet, Le Dilettante, I Love My Blender, Librairie Julliard, Librairie Polonaise, Fnac, Frankodech, Librairie de l'Orient, Bedi Thomas, Le Passé Composé, Librairie Relais La Procure, Livres anciens, Chine-Asie Diffusion, L'Harmattan, Librairie Fontaine, Pop Culture, Librairie - Caisses, Librairie du Compagnonage, Librairie Michèle Ignazi, Delamain, Appel, L'enfant lyre, Jean Maisonneuve, La rubrique à bulles, Librairie Guillaume Budé - Les Belles Lettres, Librairie Portugaise & Brésilienne, Boutique de l'Histoire, Libairie Internationale, Librairie Ulysse, Librairie Epsilon, La Librairie Rouge, Le Cabanon, Librairie Théâtrale, L'Iris noir, Avicenne, Pulp's Comics, Comics Records, La Libreria, La Dimension Fantastique, Librairie des Petits Platons, Librairie Duchemin, Librairie Lgdj, Ma Librairie de Droit, Chapitre 20, Librairie Flamberge, Librairie Fiduciaire, Le Genre Urbain, Le petit zodiaque, Les Oiseaux Rares, Librairie opéra, La Sirène, zic& bul, Gibert Jeune, Aaapoum Bapoum, La maison de la Bible, La Lucarne, Le Bail, Librairie Allemande, Librairie Tropiques, Librairie Presse du Trocadéro, Sanfitea, Librairie des Batignolles, BDphil, D'Un Livre L'Autre, Harmattan, L'ivre d'Antan, La Procure, Librairie Cler, Marché du Livre ancien et d'occasion de Paris, Librairie Flammarion Centre, Fnac, Fnac +1231 and Pech de Bugarach, 2921 and Pic Carlit, 1211 and Pic de Nore, 1663.38 and Montfalgars, 2784.66 and Pic du Canigou, 2572 and Puig Farinós, 2414.8 and Roca de Colom, 2692.4 and Puig Pedró de la Tossa, 1091 and Le Caroux, 2412 and Pic du Bernard Sauvage, 845, 2292 and Puig d'Escoutou, 2362 and Pic Joffre, 1778 and Puig de l'Estelle, 1581.3, 2691, Mourral Blanc, 685 and Roc de l'Aigle, Mont Cayroux, 925 and Mont Sarrat, Roc du Couillou, 773 and Pic de la Matalena, 646 and Moun Camp, 682 and Moun Simel, 585 and Roc d'Agnel, Mont Péril, Pic de San Marti, Pic de Rey, Roc du Tonnerre, Mont Redon, 978 and Serre d'Alaric, 2786 and Pic d’Eyne, 2861 and Pic de les Nou Fonts, 2800 and Pic de Noucreus, 2651 and Pic des Sept Hommes, 2714 and Puig del Roc Negre, 2266 and Pic de Cincreus, 2507 and Roca Colom, 2690 and Petit Péric, 2818 and Pic d'Engorgs, 2915 and Puigpedrós, 2880 and Piolet de Bastiments, 2702 and Pic de la Dona, 2504.1 and Puig de la Llosa, 1640.9 and Puig de l'Artiga del Rei, 1640.7 and Puig Pedrissa, 1654.4 and Puig de la Clapa, 2863 and Tosseta de l'Esquella, Roc Sant Julia, Roc du Duc, 2039 and Roc des Trépassats, 1126 and Pic de la Falguerosa, 1062 and Pic de la Pena, Puig d'En Carol, 2827 and Pic de Finestrelles, 1009 and Pic de l'Alzina, Roc Rouge, 2469.4 and Pic de Madrès, 1430.4 and Roc du Casteldos, 1843.5 and Pic Dourmidou, 1555.93 and Serre de Caillong, 2027.4 and Picaucel, 707.28 and Montolier de Perellos, 433.46 and Caja, 685.83 and Roc de Nabant, 298.55 and Plan du Pal, 589.96 and Serre de Quintillan, 1220.7 and Le Karimal, 1595.4 and Montagne de Crabixa, 843.03 and Roque de Méric, 1494.8 and Pic d'Estable, 1143.2 and Tuc de Gaubeille, 1342 and Pech dels Escarabatets, 57, 878.85 and Montagne de Tauch, 916.52 and Pech de Fraysse, 702.71, 104 and Puech de Grange, 55.4 and L'Esquino de Camel, 764.94, 623.2, 788.03, 764.06, 564 and Pic de Brau, 1014.63 and Pic Saint-Christophe, 1234.63 and Roc Saint-Sauveur, 2810.2 and Pic Péric, 2325.5 and Roc d'Aude, 2376 and Mont Llaret, 2804.3 and Pic Oriental de Coll Roig, 2671 and Puig de la Grava, 583.95 and Serre de Vergès, 532.8 and Roc Rodon, 982.5 and Pic de Sailfort, 1279.72 and Pilon de Belmatx, 1706.4 and Serrat dels Cabanats, 1995.2 and Serra de Clavera, 714.6 and Puig de la Calma, 322.5 and Martal, 130.52 and Puig de les Redoleres, 395.93 and Pic Haut, 377.37 and Pic Estelle, 695.46 and Puig de Boc, 774.67 and Mont Héléna, 345.98 and Serrat d'En Bougader, 265.98 and Serrat de la Devesa, 1024.72 and Pic de Bau, 1626.7 and Serrat del Cortal, 633.41 and Le Néret, 323.46 and Peyro d'Arquo, 540.52 and Pic Aubeill, 2112.6 and Pic de Dona Pa, 718.25 and Roc de l'Hirondelle, 903.7 and Tuc d'En Guinxe, 674.54 and Pic de la Garsa, 1333.31 and Pic de les Salines, 1092.64 and Pic de Fontfrède, 725.17 and Pic Mirailles, 247.11 and Puig Oriol, 291.56 and Montou, 794.1 and Serrat d'En Parrot, 930.08 and Puig de Sant Miquel, 2288.31 and Pic de Mollet, 339.45 and Pedra Blanca, 2581.1 and El Punxo, 1773.28 and Pic de Bena, 2349.83 and La Tossa d’Err, 2098.8 and Tres Esteles, 100.86 and Serrat de la Devesa, 1211.2 and Puig des Moros, 1159.9 and L'Estanyol, 2831 and La Tour d’Eyne, 2711.45 and Cambre d’Aze, 573.8 and Pic Lazerou, 1105.4 and Roc d'En Peillofo, 2726.79 and Pic Moneliet, 2624.11 and Pic du Gallinas, 2412.4 and Serra de Mauri, 2470.12 and Puig del Pam, 2061.72 and Roc de les Perxes Blanques, 925.85 and Puig de les Feixes, 2172.2 and Mont Coronat, 500.57 and Roch de Lansac, 424.5 and Sarrat del Coude, 2662.83 and Pic de la Serre Gallinière, 2456.61 and Cime de Pomarole, 2042.3 and El Dormidor, 2093.31 and Pic Bastard, 507.17 and Força Réal, 437.55 and Puig Pedrous, 448.31 and Roc del Mut, 1632.3 and Pic del Torn, 1723.8 and Serra d'Escales, 1376.8 and Serrat de Mirailles, 1313.9 and Pic du Roussillon, 200.16 and Roc Calbeil, 2345.4 and Pic de la Rouquette, 1797.8 and Pic de Portepas, 1451.2 and Pic de la Moscatosa, 2204.1 and Roc de la Calma, 424.41 and Mont Plat, 2051.9 and La Llabanère, 1655.9 and Lloumet, 2309.47 and Serrat de l'Escaldat, 2736.56 and Pic de Font Freda, 2876.87 and Pics de Font Negra, 1687 and Cim de Portavella, 1766.02 and Puig Caga Llops, 2403.29 and Puig de la Collada Verde, 1642.09 and Puig Sec, 1830.31 and Puig dels Sarraïs, 1313.85 and Puig Ferreol, 1147.06 and Puig Fabre, 770.6 and Roc del Nissol, 899.57 and Roc Paradet, 2134.8 and Serrat de la Mente, 1356.4 and Roc des Quarante Croix, 2006.46 and Puig d'Esquena d'Ase, 1450.26 and Roc de Frausa ou Roc de France (1409m), 1030.09 and Peyre Basse, 530.25 and La Cougoulère, 823.33 and La Redoute, 1211.88 and Serre de la Garsa, 1194.41 and Mont Capell, 2059.74 and Pic d'Estaques, 597.5 and Le Devès, 566.43 and Serre de l'Artigue del Baurien, 2369.7 and Pic de la Pelade, 2034.18 and Pic de la Tossa, 1790.2 and La Tartera, 1425.26 and Mont Nègre (1425m), 871.97 and Serra del Bouchet, 794 and Garrabet, 2137.69 and Pic dels Moros, 2044.2 and La Soucarrade, 225.08 and Montrodon, 2731 and Puig dels Tres Vents, 1383.1, 800.63 and Sarrat d'Espinets, 1730.9 and Puig dels Bessis, 2461.4 and Pic Gallinasse, 2060.5 and Roc des Bassouses, 194.37 and Puig Janer, 454.95 and Mont d'Espira, 1309.9 and Sarrat Naout, 2108, 517 and Pic de Tantajo, 1901 and Roc Mosquit, 2006 and Pic de la Socarrada, 582 and Pioch de Briandes, 677 and Cap Nègre, 685 and Le Moulières, 786 and Mont Méguillou, 738 and La Fréguière, 521 and Pioch Lintil, Coll de la Fareille, 701 and Puech Caubel, 670 and Madeloc, Roc de Journac, 2683 and Pic de la Mina, 1288.2 and Roc del Pou, Roc de Jocavell, Roque d'Egassiés, Roc de Salimanes, Roc Punchut, 2547 and Pic Mercader, Roc du Maure, 2495.7 and Puig de Coma Ermada, 2532 and Puig de Terrers, 2597 and Pic de la Portella, 2333 and Roc de Nou Fonts, Roc Mary, Roc Campagna, 2673 and Tossal Colomer, 2450 and Roc Negre, Salt del Burro, Pic de la Fajolle, 60 and Mour, Roc de l'Aigle, El Roc Gros, 1073 and Roc du Nouret, 1060 and Roquo d'Astié, 2638 and Puig d'Ombriaga, 2869.5 and Pic de l'Infern, 207 and Le Pech, 180 and La Roche Trouée, 125 and Pech Tenarel, 250 and Mont Grand, 155 and Pech Aigu, 225 and Saint-Jacques, Pech de l'Auzine, Pech des Combarelles, 65 and Pech Na Redorte, 200 and Plo de Maurou, Pech Tignoux, La Buissonière, 500 and Le Castelas, 430 and Roque Fumade, La Pique, Pech d'Aragnou, Pech Sarda, Pech de Brens, 1098.01 and Plo des Brus, 1123.5 and Sommet de l'Espinouse, 703.53 and Quiocs, 2013, Redoun, 500 and Roc de l'Aigle, 1918 and Pic de l'Orry, 1936 and Pic des Agrellons, Le Roc Troué, Sarrat de Labade, La Camarié, 2206 and Pic de la Calma, 1271 and Puech Saint-Geniez, Four à Chaux, Sarrat Montahut, La Capsole, Coste Rouge, Plateau de Lacamp, 396 and Roc de la Vella (de l'abeille), 1469 and Signal de Mailhebiau, pech de laure, 300, 1034 and Roc du Caroux, Roc de l'Escriban, Pech Counille, Pech Ginestié, Roc Rouge, La Cioutat, Milobre de Massac, Roc de Matefagine, Rocher de Béraud, La Clape, L'Aïrole, Pech Berles, Pech Lagardie, Pech de Bourrel, La Pique, Pech de Gouache, 793 and Massane, Truc du Coucut, 2826 and Pic Inferior de la Vaca, 795 and Pech Cardou, 1081 and La Pique Grosse, Roc d'En Benoit, Roc Serret, 576 and La Serre, 356, 520, Pic du Porteil du Bech d'Ourteil, Roc de la Couillade del Peyroulet, Roc du Taillat del Bossut, Serrat du Roc Mary, Pic du Pla de Bernard, Pic de la Rouquette, Courtalets, Pic Barbet, Pic Bas del Canigo, Collet des Bessis, Roc Roig, Roc de Cardenius, Mont Courounat, Pic de la Créou, Roc Rodon, Roc Cante Lloups, Roc del Barry d'en Naudy, Roc del Soula de Mollere, Roc del Soula del Mix, Roc dit la Soucaillousse, Roc du Coll Diagre, Roc du Mont Courounat, Puig de Passadong, Roc dals Clots del Gourg, Roc des Cimbeils, Pic del Signor, Roc de la Roquette, Roc del Cim des Cums, Roc dels Lladres, 2040 and Pic de l'Orry, Crête des Sept Hommes, 2637 and Pic de Bassibès, Pic de Soule de Ramounet, Pic de la Solane de l'Ours, Pic des Gourgs, Pic du Bois de la Ville, Pic du Quazemi, Puig Sec, Roc de Mariailles, Roc de Terrellou, Roc de l'Aigle, 2724 and Pic Rougeat, Pic de Coumeille, Pic de Gallinasse, Pic de Serre Bernet, Puig Coulomb, Puig de las Coubynes, Roc Pointu de Coll Roig, Roc de la Cabane en Ribe, Pic Pastous, Roque Coucoulière, Pic de Pel de Ca, Pilon du Pla de la Pilote, Puig d'el Boulet, Roc Redou, Sarrat de Font Frede, Puig del Traucadou, Roc de la Roquette, Roc de Calamiche, Rocher du Palet de Rouland, 1168 and Le Truc de Viala, Pech en Barthe, Montpeyrous, Au Mont Cal, Au Mont Long, 1557.7 and Coma Negra, 1289.4 and Puig de la Llibertat, Pech de la Vigne, Pech de l'Homme, Pech del Bousquet, Pech du Seigneur, Pech de Mont-Carretou, Roque Vacquière, Pech de Rie, 147, 187, 690 and Pic de la Coquillade, 2801 and Puigmal de Llo, 772 and Pic de la Caumette, 2663, 520 and Roc Traucat, 1276 and Places Hautes, 1324, 1268 and Le Barthas, 1629 and Castell Vidre, 2596 and Les Abelletes, 2714 and Pic dels Pedrons, 1015, 1182 and Pic des Sarrasis, 1179 and Pic du Midi, 1453 and Pic des Rives, 670, 283, 590 and Signal d'Alaric, 504, 455, 280, quiersboutou, roc du bougre, La Roque Danseuse, 252 and Mont Counil, Roc de Saint-Bauzille, 530 and Le Castella, 631 and Pech de Guilloumet, Pech de Caunettes, Mont Peyrous, Pech Mage, Mont Redon, Pech de Terri, Le Pied de Charlemagne, Courcouyol, Roc du Causse, Pech de la Bade, Roc Gris, Puig Peric, Mont Tressou, Pic del Poul, Roc de l'Escriban, Le Grand Bosc, Serre de Quinquillan, Coste Bentouse, Roque Blanche, 2844.4 and Pic de Prat de Bacivers, 2723 and Roc Colom, 2647 and Peiraforca, 2597 and Les Abelletes, 728.98, 811 and Faulat, 1438.2 and Roc de la Campana, 1424.0, 1330.6 and Puig de les Pedrisses, 1379.6 and Roc de la Sentinella, 975.6 and Puig del Boixer, 590 and Les Prades, 399 and Piémal, 459 and L'Évès, 561 and Lestan, 502 and Mont Soulages, 759.1 and Puig Negre, 945.2 and Puig Forcadell, 815.3 and Puig Forcat, 1257.1 and Puig Neulós, 1047.8 and Puig Pregon, 735.5 and Puig de Calmelles, 607.1 and Puig de la Parreguera, 672.8 and Puig de la Puja, 687.6 and Puig del Teixó, 831.6 and Puig dels Pruners, 1009.7 and Puig de l'Orri, Pech de Luc-sur-Aude, 1105 and Roca Gelera +53.2967577 -4.5897852, 39.8578782 -76.7805271, 40.7597792 -82.6121178, 41.0217641 -73.7967995, 43.5736936 -70.4517181, 39.1234420 -76.6780235, 32.9570996 -82.0687302, 54.2245920 -7.0002051, 54.2631642 -1.6021054, -33.8002702 121.8020587, 51.5117840 -0.1726756, 30.3791301 -84.6864394, 55.7233076 -4.8798956, 51.0868658 -0.3469034, 51.7963909 0.4625999, 40.6869120 -73.5127167, 57.7599515 11.9814729, 57.4023967 -2.2184401, 41.5399140 -81.4721388, 33.8117856 -117.9222594, 39.7989671 -85.9259915, 43.0600771 -77.3991473 +yes +3 +Heidelberg Marriott Hotel +320 +700 +Standing Stone, Caiy Stane, Standing Stone, Balm Well, Cup and Ring Marked Rocks, Stone, Hanging Stanes, The Buckstane, Cat Stane, Ravenswood Avenue Standing Stone, Physic Well, Fort, Bonnington Weir, Hatton House +18 +37.7500651 -122.4340964, 37.7494950 -122.4338475, 37.7481784 -122.4318047, 37.7482870 -122.4317704, 37.7879001 -122.4032530, 37.7879882 -122.4037767, 37.7876404 -122.4065068, 37.7873775 -122.4085239, 37.7869825 -122.4117339, 37.7868400 -122.4132360, 37.7867454 -122.4133988, 37.7865280 -122.4151500, 37.7863839 -122.4147044, 37.8074857 -122.4122331, 37.8065738 -122.4141681, 37.7858381 -122.4208295, 37.7860823 -122.4213101, 37.7858443 -122.4215600, 37.8058156 -122.4201928, 37.8061825 -122.4173877, 37.8050741 -122.4248113, 37.8049424 -122.4251017, 37.8047238 -122.4253684, 37.8049272 -122.4254027, 37.8053138 -122.4240294, 37.8024234 -122.4249055, 37.8002533 -122.4244764, 37.7986934 -122.4241845, 37.7964948 -122.4237345, 37.7949360 -122.4234292, 37.7914294 -122.4227083, 37.7873203 -122.4218983, 37.7872205 -122.4163915, 37.7873494 -122.4149152, 37.7874377 -122.4147865, 37.7878071 -122.4133072, 37.7876377 -122.4131357, 37.7878614 -122.4114361, 37.7883158 -122.4080030, 37.7885668 -122.4059259, 37.7894553 -122.4072305, 37.7892383 -122.4089471, 37.7890348 -122.4105779, 37.7888245 -122.4122344, 37.7887296 -122.4136334, 37.7886349 -122.4137618, 37.7882480 -122.4150753, 37.7884387 -122.4153902, 37.7882006 -122.4170495, 37.7936864 -122.4231765, 37.7895224 -122.4223268, 37.8077705 -122.4105938, 37.7858278 -122.4058393, 37.7866147 -122.4049381, 37.7864654 -122.4047321, 37.7874083 -122.4036077, 37.7879204 -122.4029268, 37.7885919 -122.4024548, 37.7884698 -122.4023003, 37.7894632 -122.4012427, 37.7904738 -122.3996977, 37.7909147 -122.3992085, 37.7912199 -122.3990282, 37.7915447 -122.3981096, 37.7919524 -122.3981442, 37.7926895 -122.3975313, 37.7925538 -122.3970849, 37.7942766 -122.3948018, 37.7920324 -122.3977043, 37.7944131 -122.3950607, 37.8075184 -122.4123666, 37.8065215 -122.4134910, 37.8059994 -122.4172590, 37.8056529 -122.4205190, 37.8054155 -122.4221927, 37.8052527 -122.4234200, 37.8051442 -122.4236947, 37.8044396 -122.4250053, 37.8025001 -122.4246362, 37.8006419 -122.4242586, 37.7984038 -122.4237608, 37.7960775 -122.4233316, 37.7940496 -122.4227651, 37.7942082 -122.4229370, 37.7923946 -122.4225591, 37.7913958 -122.4222349, 37.8056122 -122.4218837, 37.7992825 -122.4189061, 37.7991130 -122.4192065, 37.7955320 -122.4181508, 37.7945850 -122.4183350, 37.7946664 -122.4163695, 37.7938050 -122.4096919, 37.7930318 -122.4092112, 37.7853492 -122.4055185, 37.7843469 -122.4045150, 37.7846454 -122.4039142, 37.7847539 -122.4037597, 37.7842316 -122.4041030, 37.7835261 -122.4025151, 37.7829902 -122.4025495, 37.7821627 -122.4008414, 37.7818193 -122.4010039, 37.7806363 -122.3999660, 37.7784384 -122.3966529, 37.7781331 -122.3964297, 37.7771698 -122.3952195, 37.7769255 -122.3950736, 37.7772943 -122.3949229, 37.7772672 -122.3946225, 37.7777963 -122.3939702, 37.7768533 -122.3945023, 37.7755323 -122.3971419, 37.7764838 -122.3985209, 37.7761242 -122.4022631, 37.7779104 -122.4000014, 37.7793078 -122.4020012, 37.7789483 -122.4020957, 37.7771439 -122.4044132, 37.7757191 -122.4064044, 37.7754274 -122.4065417, 37.7739280 -122.4084815, 37.7724490 -122.4103612, 37.7708168 -122.4125663, 37.7703632 -122.4123180, 37.7716591 -122.4138973, 37.7719508 -122.4138029, 37.7721001 -122.4141720, 37.7729006 -122.4154423, 37.7733145 -122.4156912, 37.7741303 -122.4169989, 37.7741981 -122.4173765, 37.7752700 -122.4184494, 37.7754464 -122.4183893, 37.7757381 -122.4191960, 37.7754939 -122.4189385, 37.7736011 -122.4186209, 37.7782225 -122.4194551, 37.7786688 -122.4197882, 37.7798628 -122.4200286, 37.7799849 -122.4198998, 37.7821995 -122.4204866, 37.7828778 -122.4204179, 37.7830062 -122.4205011, 37.7830848 -122.4206947, 37.7849708 -122.4210499, 37.7889845 -122.4026340, 37.7901947 -122.4014023, 37.7896588 -122.4037282, 37.7897402 -122.4049985, 37.7863305 -122.4167890, 37.7861298 -122.4184176, 37.7855735 -122.4228551, 37.7854718 -122.4252669, 37.7851733 -122.4278504, 37.7847663 -122.4281594, 37.7843186 -122.4315412, 37.7848206 -122.4309318, 37.7844196 -122.4328463, 37.7843178 -122.4330266, 37.7845281 -122.4332841, 37.7840872 -122.4333871, 37.7835504 -122.4375282, 37.7839167 -122.4376655, 37.7834826 -122.4392963, 37.7836386 -122.4394164, 37.7831231 -122.4396482, 37.7829535 -122.4395280, 37.7828042 -122.4423433, 37.7829874 -122.4431329, 37.7827913 -122.4458030, 37.7827599 -122.4459811, 37.7823299 -122.4459653, 37.7825329 -122.4467635, 37.7820784 -122.4472957, 37.7820558 -122.4476543, 37.7821802 -122.4476390, 37.7820053 -122.4498532, 37.7822868 -122.4499499, 37.7818988 -122.4530106, 37.7815563 -122.4534053, 37.7798354 -122.4931351, 37.7799168 -122.4934183, 37.7794962 -122.4932037, 37.7794826 -122.4933926, 37.7798191 -122.4936557, 37.7795573 -122.4935814, 37.7799507 -122.4932381, 37.7796794 -122.4963537, 37.7794148 -122.4967056, 37.7792724 -122.4998814, 37.7796794 -122.5028254, 37.7791570 -122.5025164, 37.7798610 -122.5049869, 37.7797389 -122.5052873, 37.7800577 -122.5076563, 37.7798949 -122.5074503, 37.7799221 -122.5099050, 37.7797796 -122.5096304, 37.7791216 -122.5094930, 37.7756617 -122.5003177, 37.7754785 -122.5007383, 37.7754989 -122.5035793, 37.7753293 -122.5039398, 37.7751597 -122.5057852, 37.7750986 -122.5059311, 37.7891981 -122.4152653, 37.7893134 -122.4150078, 37.7910097 -122.4156423, 37.7922029 -122.4157974, 37.7924132 -122.4141495, 37.7927048 -122.4118492, 37.7934544 -122.4078526, 37.7932474 -122.4075663, 37.7934120 -122.4063181, 37.7936086 -122.4047989, 37.7938053 -122.4031510, 37.8070654 -122.4103449, 37.8068551 -122.4106453, 37.8066448 -122.4120271, 37.8065364 -122.4122160, 37.8050377 -122.4118813, 37.8047668 -122.4116465, 37.8027867 -122.4114233, 37.8006774 -122.4105478, 37.8004101 -122.4099889, 37.8002162 -122.4105649, 37.8004332 -122.4105306, 37.7991379 -122.4088569, 37.7992532 -122.4090286, 37.7991922 -122.4087624, 37.7993480 -122.4086509, 37.7971439 -122.4085909, 37.7967709 -122.4082646, 37.7962894 -122.4082732, 37.7953670 -122.4082476, 37.7937799 -122.4077582, 37.8063855 -122.4232325, 37.8036726 -122.4232484, 37.8035574 -122.4233771, 37.8016788 -122.4230252, 37.8014415 -122.4228020, 37.7989229 -122.4224728, 37.7987940 -122.4226445, 37.7986719 -122.4225157, 37.7990178 -122.4223012, 37.7977224 -122.4220351, 37.7970239 -122.4220608, 37.7962210 -122.4217512, 37.7957734 -122.4218285, 37.7952240 -122.4215366, 37.7951087 -122.4214336, 37.7949934 -122.4212963, 37.7942338 -122.4212620, 37.7934741 -122.4211933, 37.7931961 -122.4213478, 37.7923618 -122.4206697, 37.7919217 -122.4210500, 37.7915343 -122.4211418, 37.7908357 -122.4206440, 37.7907543 -122.4207813, 37.7894452 -122.4205410, 37.7895062 -122.4203951, 37.7877969 -122.4203780, 37.7878987 -122.4202148, 37.7879258 -122.4200518, 37.7865827 -122.4199745, 37.7867116 -122.4198114, 37.7868068 -122.4194985, 37.7850972 -122.4196741, 37.8073496 -122.4079591, 37.8072682 -122.4075728, 37.8022905 -122.4029208, 37.8014157 -122.4027320, 37.7996185 -122.4023972, 37.7977263 -122.4020024, 37.7947114 -122.4015355, 37.7951558 -122.4014788, 37.7946810 -122.4013501, 37.7926335 -122.3958328, 37.7943350 -122.3945488, 37.7932952 -122.3934198, 37.7924067 -122.3943554, 37.7919997 -122.3948618, 37.7910162 -122.3961063, 37.7901209 -122.3969646, 37.7899445 -122.3975054, 37.7878245 -122.4001786, 37.7878381 -122.3998524, 37.7864031 -122.4017275, 37.7861318 -122.4023197, 37.7829558 -122.4066225, 37.7827998 -122.4067084, 37.7825217 -122.4068886, 37.7825488 -122.4065625, 37.7823996 -122.4070345, 37.7811378 -122.4083649, 37.7808122 -122.4090258, 37.7793876 -122.4105793, 37.7790281 -122.4113003, 37.7775322 -122.4128952, 37.7771862 -122.4129896, 37.7773219 -122.4134703, 37.7764060 -122.4143114, 37.7761075 -122.4150066, 37.7727900 -122.4191952, 37.7731428 -122.4182596, 37.7703747 -122.4197788, 37.7707614 -122.4203453, 37.7680204 -122.4200621, 37.7670705 -122.4197531, 37.7663920 -122.4198732, 37.7653010 -122.4195354, 37.7651503 -122.4193840, 37.7649400 -122.4199505, 37.7648246 -122.4197531, 37.7618662 -122.4197445, 37.7620562 -122.4192896, 37.7616287 -122.4194612, 37.7605363 -122.4191351, 37.7600545 -122.4193153, 37.7584056 -122.4191522, 37.7589009 -122.4189892, 37.7573130 -122.4188433, 37.7568991 -122.4189892, 37.7557658 -122.4186802, 37.7551890 -122.4188518, 37.7541440 -122.4185343, 37.7535875 -122.4186630, 37.7524610 -122.4183540, 37.7523117 -122.4181566, 37.7521692 -122.4186716, 37.7520334 -122.4185343, 37.7494003 -122.4180794, 37.7490202 -122.4178648, 37.7488845 -122.4182253, 37.7482533 -122.4186802, 37.7468756 -122.4191608, 37.7469774 -122.4188862, 37.7452468 -122.4202165, 37.7702405 -122.4456788, 37.7815477 -122.4557681, 37.7812324 -122.4564824, 37.7814265 -122.4586356, 37.7811374 -122.4585605, 37.7810466 -122.4587536, 37.7815096 -122.4590144, 37.7813234 -122.4609038, 37.7810177 -122.4612687, 37.7811823 -122.4641071, 37.7807956 -122.4641973, 37.7807845 -122.4643617, 37.7808764 -122.4644255, 37.7807541 -122.4671566, 37.7809983 -122.4678003, 37.7808931 -122.4704703, 37.7805778 -122.4708931, 37.7810594 -122.4721634, 37.7803132 -122.4724209, 37.7804958 -122.4725340, 37.7807715 -122.4726936, 37.7806388 -122.4759657, 37.7803132 -122.4764378, 37.7804922 -122.4791912, 37.7801791 -122.4795855, 37.7800298 -122.4827784, 37.7798738 -122.4845980, 37.7803080 -122.4848555, 37.7802469 -122.4845465, 37.7799349 -122.4849328, 37.7801045 -122.4877394, 37.7797924 -122.4881085, 37.7800027 -122.4899024, 37.7796974 -122.4902800, 37.7795957 -122.4919966, 37.7799552 -122.4923228, 37.7850328 -122.4240337, 37.7846530 -122.4214931, 37.7845512 -122.4213300, 37.7850919 -122.4181325, 37.7850396 -122.4177938, 37.7853788 -122.4158712, 37.7854466 -122.4144979, 37.7855823 -122.4142146, 37.7858650 -122.4121391, 37.7860368 -122.4097600, 37.7863556 -122.4081893, 37.7866812 -122.4056144, 37.7870169 -122.4179793, 37.7866235 -122.4210522, 37.7861695 -122.4245155, 37.7859114 -122.4264595, 37.7857487 -122.4278070, 37.7867524 -122.4285794, 37.7866167 -122.4285538, 37.7864675 -122.4297640, 37.7865965 -122.4297039, 37.7861826 -122.4330771, 37.7860469 -122.4330340, 37.7859385 -122.4331370, 37.7858910 -122.4333344, 37.7859723 -122.4346907, 37.7857893 -122.4350941, 37.7855452 -122.4380551, 37.7853687 -122.4384070, 37.7852332 -122.4395228, 37.7852534 -122.4393683, 37.7853485 -122.4396517, 37.7854773 -122.4398147, 37.7850228 -122.4399262, 37.7849142 -122.4430247, 37.7847380 -122.4433766, 37.7844192 -122.4458487, 37.7841884 -122.4463035, 37.7846498 -122.4461747, 37.7864066 -122.4400121, 37.7826267 -122.4209352, 37.7821927 -122.4192077, 37.7831831 -122.4189845, 37.7830542 -122.4189502, 37.7833323 -122.4177486, 37.7831356 -122.4174224, 37.7832848 -122.4172336, 37.7834951 -122.4156457, 37.7837190 -122.4139463, 37.7839225 -122.4123155, 37.7333439 -122.4341146, 37.7336018 -122.4339773, 37.7333778 -122.4337627, 37.7306904 -122.4313129, 37.7285513 -122.4313423, 37.7286056 -122.4315569, 37.7287414 -122.4310075, 37.7285928 -122.4310211, 37.7164063 -122.4407726, 37.7162841 -122.4412790, 37.7147304 -122.4426465, 37.7296110 -122.4331926, 37.7261179 -122.4335362, 37.7725629 -122.4271208, 37.7724886 -122.4271971, 37.7727613 -122.4255587, 37.7728240 -122.4254941, 37.7750096 -122.4193518, 37.7752830 -122.4191695, 37.7237397 -122.4527763, 37.8026615 -122.4058342, 37.7602500 -122.4381220, 37.8000731 -122.4427175, 37.8000773 -122.4429777, 37.8002766 -122.4410592, 37.8001123 -122.4413201, 37.7998569 -122.4443992, 37.7991938 -122.4517479, 37.7982490 -122.4474040, 37.7938960 -122.3962630, 37.7350442 -122.4750296, 37.7348192 -122.4745190, 37.7348959 -122.4718603, 37.7826712 -122.4715165, 37.7900779 -122.3973324, 37.8063946 -122.4755980, 37.8066743 -122.4754598, 37.8073122 -122.4750992, 37.8077451 -122.4747013, 37.7985742 -122.4470382, 37.8003316 -122.4468364, 37.8015284 -122.4299080, 37.8163406 -122.3719841, 37.8159189 -122.3712035, 37.8198117 -122.3663991, 37.8240897 -122.3725534, 37.8217995 -122.3675153, 37.8251277 -122.3701037, 37.8251958 -122.3698336, 37.8282634 -122.3718811, 37.8298005 -122.3733581, 37.7698835 -122.4483879, 37.7696842 -122.4487848, 37.7734369 -122.4495198, 37.7736095 -122.4491588, 37.7759209 -122.4462621, 37.7754086 -122.4499596, 37.7753704 -122.4494447, 37.7750352 -122.4531023, 37.7749600 -122.4525772, 37.7744927 -122.4582852, 37.7742595 -122.4580599, 37.7743273 -122.4587090, 37.7752263 -122.4651517, 37.7770368 -122.4639232, 37.8051033 -122.4322388, 37.8070241 -122.4071695, 37.7268052 -122.4756978, 37.7270758 -122.4757595, 37.7273213 -122.4751556, 37.7767196 -122.4262286, 37.7877082 -122.4066920, 37.7877749 -122.4435048, 37.7875969 -122.4435646, 9.9906840 -84.1504287, 37.7853936 -122.4093312, 37.7621911 -122.4352428, 37.7623119 -122.4350524, 37.7624107 -122.4359472, 37.7623663 -122.4355805, 37.7624148 -122.4374826, 37.7628952 -122.4350231, 37.7638864 -122.4332716, 37.7639457 -122.4336524, 37.7677871 -122.4291506, 37.7676579 -122.4291238, 37.7672427 -122.4291913, 37.7678942 -122.4291010, 37.7672911 -122.4288313, 37.7678572 -122.4287240, 37.7882810 -122.4034650, 37.7920316 -122.4158514, 37.7890998 -122.4166329, 37.7929197 -122.4160112, 37.7956283 -122.4167948, 37.7623781 -122.3973643, 37.7659491 -122.4499203, 37.7777491 -122.4166993, 37.7784932 -122.4145772, 37.7996086 -122.4360904, 37.7997022 -122.4362285, 37.7995695 -122.4391803, 37.8004874 -122.4475303, 37.7990605 -122.4430620, 37.7999719 -122.4359078, 37.7988819 -122.4428431, 37.8006033 -122.4309704, 37.7993017 -122.4395074, 37.7920664 -122.4230774, 37.7939521 -122.4233809, 37.7984888 -122.4242871, 37.7228751 -122.4492993, 37.7843417 -122.4083799, 37.7732193 -122.5094719, 37.7730526 -122.5100823, 37.7713376 -122.5094780, 37.7730623 -122.5099524, 37.7736359 -122.5098469, 37.7510820 -122.4365124, 37.7902660 -122.4225849, 37.7809200 -122.4207186, 37.7734715 -122.4716467, 37.7732222 -122.4720004, 37.7767410 -122.4722999, 37.7845288 -122.4729578, 37.7730544 -122.4719870, 37.7769513 -122.4723886, 37.7765902 -122.4721548, 37.7843461 -122.4727748, 37.7733124 -122.4719545, 37.7824738 -122.4731577, 37.7772126 -122.4718860, 37.7846952 -122.4724611, 37.7842309 -122.4726881, 37.7653711 -122.4768439, 37.7637253 -122.4773406, 37.7651265 -122.4774410, 37.7651763 -122.4771473, 37.7655195 -122.4775619, 37.7981369 -122.4040437, 37.7984038 -122.4019150, 37.7864698 -122.3980058, 37.7898678 -122.4007776, 37.7846489 -122.4070405, 37.7841266 -122.4084047, 37.7559775 -122.4764013, 37.7601283 -122.4767065, 37.7483732 -122.4761739, 37.7599874 -122.4769846, 37.7526487 -122.4761825, 37.7487336 -122.4758329, 37.7562359 -122.4767119, 37.7503718 -122.4760331, 37.7451990 -122.4756672, 37.7464646 -122.4760287, 37.7540793 -122.4765228, 37.7502718 -122.4762798, 37.7485093 -122.4758701, 37.7485547 -122.4762718, 37.7521106 -122.4764229, 37.7577989 -122.4768064, 37.7450879 -122.4759346, 37.7466328 -122.4757654, 37.7578031 -122.4765444, 37.7540943 -122.4762690, 37.7373068 -122.4751533, 37.7271849 -122.4746491, 37.7413368 -122.4756969, 37.7414759 -122.4754270, 37.7391897 -122.4752419, 37.7309279 -122.4747158, 37.7433289 -122.4758221, 37.7263033 -122.4752117, 37.7433139 -122.4754986, 37.7391607 -122.4755616, 37.7376007 -122.4754212, 37.7311504 -122.4746276, 37.7310304 -122.4745228, 37.7312595 -122.4750192, 37.7216548 -122.4754813, 37.7173134 -122.4730047, 37.7645489 -122.4431699, 37.7774736 -122.4588050, 37.7769033 -122.4586521, 37.7771471 -122.4583141, 37.7693989 -122.4293944, 37.7934341 -122.3952982, 37.7860637 -122.4568864, 37.7875574 -122.4467799, 37.7875773 -122.4469696, 37.7865288 -122.4532785, 37.7879454 -122.4407257, 37.7862633 -122.4553541, 37.7863128 -122.4536142, 37.7846320 -122.4644747, 37.7869618 -122.4499244, 37.7871212 -122.4472522, 37.7856633 -122.4588196, 37.7881142 -122.4408796, 37.7508325 -122.4439701, 37.7511656 -122.4385830, 37.7471736 -122.4441832, 37.7704174 -122.4452853, 37.7741217 -122.4463069, 37.7757135 -122.4466914, 37.7669041 -122.4479460, 37.7700367 -122.4454051, 37.7673187 -122.4464799, 37.7739565 -122.4465032, 37.7702021 -122.4449433, 37.7788494 -122.4469825, 37.7672489 -122.4466451, 37.7718076 -122.4457938, 37.7719176 -122.4456066, 37.7756581 -122.4463390, 37.7785087 -122.4472714, 37.7671329 -122.4465199, 37.7786914 -122.4474453, 37.7774219 -122.4469247, 37.7670424 -122.4462687, 37.7670868 -122.4479048, 37.7739120 -122.4458712, 37.7675684 -122.4448406, 37.7787954 -122.4472048, 37.7673422 -122.4448799, 37.7146481 -122.4719381, 37.7244830 -122.4024083, 37.7169648 -122.3891600, 37.8014600 -122.4315507, 37.8015624 -122.4313898, 37.7353189 -122.5046077, 37.7351796 -122.5004996, 37.7353189 -122.5026175, 37.7098977 -122.3930198, 37.7167597 -122.4413933, 37.7165622 -122.4408255, 37.7324082 -122.4059021, 37.7293737 -122.4150047, 37.7692570 -122.4291174, 37.7291475 -122.4193716, 37.7339634 -122.3907499, 37.7343056 -122.3907340, 37.8269448 -122.3774052, 37.8219781 -122.3678899, 37.8183698 -122.3702624, 37.8299019 -122.3752682, 37.8283168 -122.3771872, 37.7900667 -122.3942010, 37.7904673 -122.3932275, 37.7885774 -122.3909566, 37.7899382 -122.3923940, 37.7892706 -122.3935798, 37.8199566 -122.3664933, 37.8231753 -122.3748357, 37.8241714 -122.3754505, 37.7485022 -122.4589160, 37.7467379 -122.4583284, 37.7689281 -122.4356947, 37.7721358 -122.4307953, 37.7720055 -122.4303556, 37.7722134 -122.4305711, 37.7720894 -122.4301052, 37.7920140 -122.4815698, 37.7378001 -122.4514647, 37.7377651 -122.4517551, 37.7716459 -122.5036197, 37.7535905 -122.4954095, 37.7532925 -122.4955658, 37.7607702 -122.4960244, 37.7844955 -122.3952726, 37.7628573 -122.3908626, 37.7877434 -122.4216333, 37.7587055 -122.4631292, 37.7585995 -122.4640519, 37.7584595 -122.4639124, 37.7582899 -122.4638427, 39.4661054 -6.3676957, 39.4692595 -6.3692342, 37.7605076 -122.4406247, 37.7240697 -122.4522341, 37.7259918 -122.4522582, 37.7240485 -122.4524859, 37.7254488 -122.4525023, 37.7208496 -122.4474323, 37.7211045 -122.4473020, 37.7345842 -122.4719275, 37.7675843 -122.4355739, 37.7730240 -122.4528432, 37.7732066 -122.4524004, 37.8056765 -122.4371753, 37.7791532 -122.5129411, 37.7653828 -122.4156514, 37.7655458 -122.4128777, 37.7758058 -122.4971516, 37.7770300 -122.4640939, 37.7771635 -122.4636541, 37.7773038 -122.4642640, 37.7811799 -122.4122670, 37.7901405 -122.3932844, 37.7897441 -122.3935526, 37.7900769 -122.3938342, 37.7900303 -122.3929249, 37.7898479 -122.3929436, 37.7900153 -122.3936678, 37.7902698 -122.3932093, 37.7897844 -122.3938369, 37.7896339 -122.3928472, 37.7895788 -122.3933326, 37.7902549 -122.3935874, 37.7896742 -122.3936921, 37.7899687 -122.3930777, 37.7898459 -122.3936974, 37.7901977 -122.3934346, 37.7895215 -122.3929732, 37.7645161 -122.4327886, 37.7774211 -122.4160269, 37.7646988 -122.4244233, 9.9857757 -84.1100058, 37.7517598 -122.4254173, 37.7518770 -122.4255434, 37.7518932 -122.4231645, 37.7520190 -122.4226923, 37.7520780 -122.4202115, 37.7521821 -122.4204097, 37.7846325 -122.4668493, 37.7848927 -122.4647404, 37.7847936 -122.4669432, 37.7848461 -122.4651260, 37.7850597 -122.4648309, 37.7687493 -122.4030378, 37.7661987 -122.4028340, 37.7698985 -122.4034375, 37.7664574 -122.4026543, 37.7674763 -122.4028943, 37.7685627 -122.4028608, 37.7672368 -122.4026933, 37.7697585 -122.4032336, 37.7933155 -122.4011185, 37.7940361 -122.4014297, 37.7948174 -122.4012457, 37.7937309 -122.4011453, 37.7941718 -122.4012902, 37.7953841 -122.3969718, 37.7945999 -122.4030014, 37.7951679 -122.3989406, 37.7946423 -122.4047127, 37.7943922 -122.4045947, 37.7945109 -122.3977014, 37.7957783 -122.4035808, 37.7932052 -122.4012151, 37.7941845 -122.4002602, 37.7409957 -122.4661951, 37.7412300 -122.4662434, 37.7420207 -122.4942784, 37.7423984 -122.4946065, 37.7481450 -122.4139340, 37.7485740 -122.4136090, 37.7483690 -122.4140740, 37.7470478 -122.4135113, 37.8015930 -122.4295070, 37.7693241 -122.4529187, 37.7691502 -122.4531333, 37.7779590 -122.4382840, 37.7486563 -122.4707231, 37.7779013 -122.4381208, 37.7488826 -122.4686623, 37.7490207 -122.4684000, 37.7764755 -122.4261860, 37.7624054 -122.4149348, 37.7985693 -122.4243300, 37.7452070 -122.4133817, 37.7988554 -122.4523659, 37.7229652 -122.4525001, 37.7237354 -122.4562527, 37.7479625 -122.4589779, 37.7316164 -122.4533024, 37.7236887 -122.4560891, 37.7585862 -122.4660394, 37.7583654 -122.4701243, 37.7340666 -122.4990233, 37.7339718 -122.4968714, 37.7368504 -122.4537673, 37.7729932 -122.4769430, 37.7728380 -122.4764588, 37.7748147 -122.4548948, 37.7767640 -122.4757735, 37.7766315 -122.4760914, 37.7655815 -122.4152362, 37.7650043 -122.4193576, 37.7652037 -122.4161172, 37.7618958 -122.4151034, 37.7650786 -122.4153876, 37.7337604 -122.4934171, 37.7339214 -122.4896757, 37.7338345 -122.4917168, 37.7869084 -122.4565151, 37.7529699 -122.4341555, 37.7316291 -122.4513250, 37.7299803 -122.4512285, 37.7314275 -122.4532403, 37.8082789 -122.4141009, 37.7693980 -122.4521124, 37.7734254 -122.4663049, 37.8005296 -122.4475648, 37.7997086 -122.4362667, 37.8008427 -122.4276089, 37.7881551 -122.4090877, 37.7904499 -122.4055375, 37.7927644 -122.3927085, 37.8084123 -122.4100480, 37.8071167 -122.4156479, 37.8004525 -122.4105821, 37.7950657 -122.3999088, 37.7874729 -122.4078678, 37.7857365 -122.4096385, 37.7800009 -122.4167733, 37.8167937 -122.3722982, 37.7761697 -122.4215410, 37.7745791 -122.4341180, 37.7936998 -122.4213961, 37.7707344 -122.4660864, 37.8020728 -122.4125753, 37.7902111 -122.4076489, 37.7899758 -122.4071611, 37.7763563 -122.3958020, 37.7844521 -122.4711623, 37.7846142 -122.4708404, 37.7818385 -122.4923290, 37.7834186 -122.4924440, 37.7836006 -122.4901440, 37.7836650 -122.4884266, 37.7839554 -122.4820021, 37.7837954 -122.4853763, 37.7840959 -122.4787941, 37.7929233 -122.4178901, 37.7814696 -122.4933616, 37.7834210 -122.4925857, 37.7837098 -122.4905627, 37.7838163 -122.4880702, 37.7839687 -122.4848702, 37.7841139 -122.4816301, 37.7818213 -122.4924756, 37.7815116 -122.4935222, 37.7716631 -122.4016977, 37.7980264 -122.4502029, 37.7684770 -122.4199182, -31.4348336 -62.0871169, 37.7483700 -122.4141900 ++44 131 228 2588 +49.3974932 8.6821302, 49.4045387 8.6755501, 49.4083170 8.6927870, 49.4117492 8.7058025, 49.4037018 8.6767168, 49.4073803 8.6919832, 49.4125629 8.7095384, 49.4119103 8.7090896, 49.3999110 8.6783652, 49.3593236 8.6883407 +The Witchery +http://www.zum-seppl.de +yes +0 +yes +no +28 +Volksbank Kurpfalz H+G Bank +48.8373758 2.2723483, 48.8480669 2.2646701, 48.8672033 2.3175552, 48.8794780 2.2911520, 48.8374741 2.2964370, 48.8426769 2.2964541, 48.8447051 2.3110485, 48.8418578 2.3031404, 48.8356667 2.3025546, 48.8418917 2.2973124, 48.8375362 2.2963597, 48.8371698 2.2968218, 48.8411351 2.2996815, 48.8513729 2.3428143, 48.8266959 2.3418366, 48.8313237 2.3160082, 48.8276961 2.3323037, 48.8536884 2.3438503, 48.8465209 2.3169152, 48.8223603 2.3376975, 48.8333496 2.3122320, 48.8662853 2.3197532, 48.8659622 2.3186038, 48.8679910 2.3372848, 48.8529019 2.3430541, 48.8844724 2.3214773, 48.8848286 2.2981665, 48.8815112 2.2955182, 48.8637584 2.2404391, 48.8684582 2.2651973, 48.8652473 2.2754857, 48.8325568 2.3113862, 48.8548336 2.3455606, 48.8724857 2.2964468, 48.8578487 2.2776036, 48.8561596 2.2803320, 48.8587309 2.2850498, 48.8503867 2.2499063, 48.8474160 2.2734653, 48.8645482 2.2749436, 48.8798361 2.2946562, 48.8867832 2.3174727, 48.8834250 2.3133443, 48.8832839 2.3261502, 48.8620110 2.2617158, 48.8578293 2.2627189, 48.8522460 2.2310858, 48.8561113 2.3406430, 48.8359176 2.2934497, 48.8415640 2.2914435, 48.8321096 2.3027626, 48.8488952 2.2875621, 48.8450063 2.2934495, 48.8428146 2.3128644, 48.8584946 2.2687106, 48.8590276 2.2701439, 48.8582201 2.2684874, 48.8580507 2.2679638, 48.8621864 2.2858577, 48.8627962 2.2854972, 48.8620791 2.2848191, 48.8477318 2.3279086, 48.8587970 2.2574756, 48.8844757 2.3382719, 48.8859435 2.3414431, 48.8392719 2.3386499, 48.8382351 2.3417326, 48.8805089 2.3247630, 48.8795193 2.3372522, 48.8860003 2.3379474, 48.8871034 2.3395432, 48.8994594 2.3456310, 48.8881990 2.3259122, 48.8775035 2.3271975, 48.8554797 2.2377372, 48.8509506 2.2377234, 48.8480846 2.3334838, 48.8451543 2.3325456, 48.8474379 2.3363959, 48.8570290 2.3204791, 48.8188018 2.3371410, 48.8185040 2.3384113, 48.8181578 2.3401279, 48.8418885 2.2735712, 48.8640823 2.3242375, 48.8428738 2.2978005, 48.8243977 2.3360819, 48.8297310 2.3179488, 48.8516782 2.3146314, 48.8706300 2.2979200, 48.8365930 2.3046690, 48.8954660 2.3118560, 48.9006880 2.3443120, 48.8726523 2.2991152, 48.8384857 2.3139931, 48.8880790 2.3433440, 48.8425610 2.3055230, 48.8606880 2.2465600, 48.8488720 2.3128820, 48.8345717 2.3321583, 48.8517060 2.3188780, 48.8630654 2.2649414, 48.8635021 2.2620126, 48.8963810 2.3139000, 48.8852454 2.3310516, 48.8397680 2.3287550, 48.8893940 2.3388820, 48.8954560 2.3210460, 48.8532780 2.2711410, 48.8311370 2.3128840, 48.8898960 2.2981300, 48.8871960 2.3058630, 48.8459400 2.2689590, 48.8856451 2.3276786, 48.8501704 2.3439958, 48.8398489 2.2904585, 48.8585128 2.2948820, 48.8691890 2.2731280, 48.8417000 2.3374070, 48.8523510 2.2944030, 48.8383280 2.2782440, 48.8433760 2.3364170, 48.8289169 2.3068462, 48.8530930 2.2487630, 48.8510180 2.2721570, 48.8417750 2.2766630, 48.8909945 2.3180223, 48.8581770 2.2475410, 48.8559797 2.2830925, 48.8789680 2.3090890, 48.8221640 2.3407800, 48.8861910 2.3437000, 48.8334140 2.3198533, 48.8782185 2.2703461, 48.8342986 2.3307561, 48.8512040 2.3336860, 48.8519135 2.2527965, 48.8617560 2.2470009, 48.8876610 2.2899050, 48.8521115 2.2541524, 48.8736560 2.2651653, 48.8634236 2.2498140, 48.8715892 2.2642560, 48.8515696 2.2338766, 48.8670116 2.2393588, 48.8589309 2.2291849, 48.8683594 2.2629205, 48.8728525 2.2727107, 48.8992390 2.3401270, 48.8814860 2.3253960, 48.8890670 2.3382500, 48.8316594 2.3202088, 48.8515687 2.3455917, 48.8832242 2.3300482, 48.8543340 2.3134030, 48.8479841 2.3021348, 48.8381900 2.2706380, 48.8921127 2.3319234, 48.8373130 2.3123540, 48.8929520 2.3468380, 48.8319794 2.3254293, 48.8285390 2.2936320, 48.8937910 2.3254410, 48.8878070 2.3168387, 48.8528480 2.3236680, 48.8954540 2.3265480, 48.8366880 2.3168190, 48.8311305 2.3217527, 48.8281910 2.2975610, 48.8646712 2.2945788, 48.8224115 2.3234656, 48.8563720 2.3423640, 48.8976745 2.3255573, 48.8488580 2.3354220, 48.8323838 2.3266258, 48.8302050 2.3165310, 48.8512390 2.2749420, 48.8940810 2.3257310, 48.8389116 2.2802003, 48.8239822 2.3186264, 48.8268397 2.3045308, 48.8927720 2.3393440, 48.8708650 2.3267180, 48.8759177 2.3199403, 48.8985920 2.3386760, 48.8973940 2.3352610, 48.8432899 2.3273991, 48.8501986 2.3439620, 48.8892960 2.3080360, 48.8295130 2.2974440, 48.8505319 2.3140947, 48.8513900 2.2954500, 48.8829640 2.2906840, 48.8865497 2.3367162, 48.8990940 2.3343970, 48.8991980 2.3373340, 48.8399790 2.2978655, 48.8765790 2.3317425, 48.8866310 2.2931960, 48.8885760 2.3372580, 48.8544710 2.3306000, 48.8444200 2.2902970, 48.8401440 2.3004225, 48.8682815 2.2937862, 48.8377715 2.3234750, 48.8691909 2.3123689, 48.8313290 2.3203574, 48.8686720 2.3127647, 48.8671021 2.3110061, 48.8450099 2.3109341, 48.8412410 2.2855118, 48.8219932 2.3234435, 48.8211670 2.3407757, 48.8337204 2.3201626, 48.8338246 2.3197979, 48.8548000 2.3455200, 48.8321456 2.3262397, 48.8608218 2.3464552, 48.8685507 2.2728757, 48.8563416 2.2955451, 48.8724483 2.2489997, 48.8687857 2.2448905, 48.8735492 2.2502871, 48.8706241 2.2491259, 48.8705077 2.2469076, 48.8729282 2.2477712, 48.8734222 2.2509255, 48.8670602 2.2431900, 48.8688615 2.2471136, 48.8902559 2.3155823, 48.8895081 2.3152790, 48.8909868 2.3143418, 48.8916562 2.3142685, 48.8644583 2.3274519, 48.8879169 2.3153097, 48.8879452 2.3155854, 48.8914702 2.3147632, 48.8697228 2.2704730, 48.8195477 2.3338738, 48.8643128 2.3266632, 48.8359580 2.3022176, 48.8237907 2.3314831, 48.8238319 2.3396086, 48.8612225 2.3119810, 48.8625039 2.3009824, 48.8880273 2.3373781, 48.8226090 2.3400474, 48.8239560 2.3366723, 48.8421923 2.2737321, 48.8386247 2.2767307, 48.8585066 2.2446643, 48.8869922 2.3168829, 48.8365007 2.3061630, 48.8408118 2.2763450, 48.8487971 2.2855992, 48.8340933 2.3218873, 48.8342849 2.3425292, 48.8479507 2.3346295, 48.8737508 2.2552546, 48.8572052 2.2975105, 48.8402419 2.2911223, 48.8647970 2.3376815, 48.8279008 2.3224596, 48.8519327 2.2866969, 48.8394931 2.3179481, 48.8363713 2.3098813, 48.8623200 2.3438199, 48.8771084 2.3468708, 48.8621089 2.3439580, 48.8528043 2.2296278, 48.8623709 2.3444850, 48.8731766 2.2682180, 48.8641938 2.3374224, 48.8652237 2.3379487, 48.8628504 2.3436130, 48.8262202 2.3382130, 48.8613910 2.3424070, 48.8860573 2.3439762, 48.8569072 2.3367906, 48.8578391 2.3144195, 48.8448709 2.3364362 +49.4423686 8.7523225, 49.4193055 8.7566134, 49.4243544 8.7433985, 49.4107056 8.6497352, 49.3640123 8.7056514, 49.4280568 8.6821889, 49.3768611 8.6887922, 49.3909523 8.6618014, 49.4348207 8.6783577, 49.4373520 8.6781032, 49.3822208 8.6838537, 49.4034192 8.6873184, 49.4339492 8.6785798, 49.3896591 8.6874142, 49.3888889 8.6875000, 49.3802134 8.6735968, 49.3804699 8.6775416, 49.4107484 8.7061452, 49.4136995 8.7142286, 49.4089621 8.7022268, 49.4079105 8.6965175, 49.3737385 8.6825043, 49.3820375 8.6822639, 49.3771878 8.6772091, 49.3794686 8.6784008, 49.3795755 8.6786005, 49.4171575 8.7606858, 49.4125678 8.7457320, 49.4004143 8.6826744, 49.4084040 8.6996182, 49.3841060 8.6837074, 49.4151132 8.7617395, 49.4151843 8.7603553, 49.3842811 8.6648356, 49.3841632 8.6715765, 49.3834567 8.6610378, 49.3822796 8.6627256, 49.4332243 8.6805482, 49.4114686 8.7705695, 49.4088119 8.7067204, 49.4110514 8.6464958, 49.4053000 8.6681351, 49.4097279 8.6406748, 49.4076641 8.6388219, 49.4084390 8.6682963, 49.4300480 8.6797843, 49.3643568 8.6799031, 49.4070078 8.6681584 +48.8376960 2.3062844, 48.8831159 2.3425480, 48.8865976 2.3588510, 48.8481953 2.3419715, 48.8467471 2.3717077, 48.8668168 2.3257587, 48.8737055 2.3062317, 48.8726755 2.3049470, 48.8717742 2.2984126, 48.8668308 2.3028826, 48.8686655 2.2984695, 48.8549543 2.3045853, 48.8547458 2.3065559, 48.8715217 2.3076937, 48.8884053 2.3785210, 48.8278673 2.3796510, 48.8664199 2.2892440, 48.8604399 2.3007825, 48.8710343 2.3234791, 48.8730243 2.3445449, 48.8606580 2.3469337, 48.8234693 2.3306543, 48.8562375 2.3660049, 48.8516696 2.2978180, 48.8528343 2.3441184, 48.8504482 2.2926945, 48.8518053 2.3448347, 48.8549752 2.3046163, 48.8487972 2.3410105, 48.8683305 2.3330172, 48.8478009 2.3422541, 48.8820490 2.3316649, 48.8731949 2.3435448, 48.8721229 2.3033103, 48.8723588 2.3088888, 48.8383845 2.3209532, 48.8609042 2.3467975, 48.8662424 2.3373468, 48.8555019 2.2928356, 48.8664339 2.3251380, 48.8719873 2.3493219, 48.8510976 2.3274782, 48.8737030 2.3201997, 48.8714238 2.3278025, 48.8713002 2.3277769, 48.8718146 2.3278778, 48.8778519 2.3276641, 48.8813884 2.3274308, 48.8814057 2.3282568, 48.8495763 2.3798752, 48.8238179 2.3241127, 48.8781774 2.2948939, 48.8827304 2.2981476, 48.8871244 2.3142231, 48.8870568 2.3143431, 48.8848968 2.3034428, 48.8542680 2.3078406 +18 +yes and 48.8351292 2.3562281, 48.8878308 2.3891184, 48.8464236 2.3893031, 48.8373537 2.3964048, 48.8331488 2.4001376, 48.8330078 2.3998567, 48.8332677 2.4004089, 48.8867895 2.2885547, 48.8633622 2.3735762, 48.8354139 2.3821586, 48.8432434 2.3596915, 48.8450848 2.3534295, 48.8500540 2.3441227, 48.8616892 2.3790811, 48.8496560 2.3680272, 48.8305377 2.2720167, 48.8395514 2.3065295, 48.8420600 2.3053955, 48.8401918 2.3006179, 48.8450282 2.2929507, 48.8398848 2.2979896, 48.8374487 2.3105347, 48.8377201 2.3133283, 48.8297062 2.3047398, 48.8440427 2.2897951, 48.8408478 2.2793259, 48.8434931 2.2758364, 48.8367393 2.2909774, 48.8359451 2.2933502, 48.8360274 2.3050768, 48.8286953 2.2978023, 48.8285373 2.2931025, 48.8296919 2.2940863, 48.8511056 2.2855775, 48.8676670 2.3681730, 48.8638778 2.3925953, 48.8656404 2.4002693, 48.8659412 2.3694804, 48.8634040 2.3715086, 48.8622029 2.3723267, 48.8302203 2.3168888, 48.8408346 2.3236435, 48.8347191 2.3318056, 48.8512248 2.2957731, 48.8521944 2.2943621, 48.8488726 2.2860228, 48.8579130 2.3487608, 48.8523360 2.3243813, 48.8486366 2.2721669, 48.8751482 2.3618270, 48.8481127 2.3024942, 48.8484406 2.3018807, 48.8644561 2.3607493, 48.8398756 2.3189805, 48.8763166 2.2807983, 48.8530500 2.3593937, 48.8920708 2.3904695, 48.8942774 2.3891609, 48.8817945 2.3985077, 48.8507689 2.3440015, 48.8516815 2.3455023, 48.8523775 2.3503425, 48.8519946 2.3522409, 48.8513517 2.3618565, 48.8184362 2.3552754, 48.8362221 2.3162881, 48.8330074 2.3494626, 48.8392009 2.4064731, 48.8769805 2.3464647, 48.8422649 2.3540627, 48.8355612 2.3366126, 48.8337517 2.3624196, 48.8446471 2.3876397, 48.8367494 2.3222577, 48.8505912 2.3500301, 48.8538795 2.3578768, 48.8351969 2.3143487, 48.8335509 2.3135841, 48.8317737 2.3132112, 48.8304603 2.3134095, 48.8310322 2.3142435, 48.8311554 2.3133491, 48.8300284 2.3081849, 48.8287886 2.3067783, 48.8281837 2.3095506, 48.8336730 2.3122360, 48.8321861 2.3101270, 48.8252893 2.3049173, 48.8263485 2.3036981, 48.8296871 2.3448788, 48.8263702 2.3378879, 48.8208919 2.3574747, 48.8202295 2.3605820, 48.8767521 2.3316112, 48.8474726 2.3606487, 48.8455556 2.2766342, 48.8527840 2.3280405, 48.8493982 2.4039131, 48.8483824 2.4046099, 48.8199080 2.3560004, 48.8185108 2.3588380, 48.8577042 2.2861053, 48.8542167 2.4012607, 48.8671726 2.3537967, 48.8391938 2.2827695, 48.8313641 2.3701044, 48.8346201 2.2931405, 48.8409081 2.3633286, 48.8367295 2.3083829, 48.8358496 2.3084018, 48.8260642 2.3750876, 48.8679735 2.2942228, 48.8940527 2.3521987, 48.8440650 2.2804391, 48.8287965 2.3678309, 48.8496773 2.3806672, 48.8943660 2.3265850, 48.8372087 2.2728424, 48.8343019 2.3315561, 48.8547344 2.3532107, 48.8387146 2.2804997, 48.8679732 2.3375739, 48.8658741 2.3882235, 48.8542571 2.3339531, 48.8636490 2.3890076, 48.8780700 2.3658796, 48.8779110 2.3661939, 48.8861503 2.2900421, 48.8875427 2.2932723, 48.8476565 2.2703202, 48.8918920 2.3044865, 48.8819402 2.2839212, 48.8930339 2.3465149, 48.8442493 2.3618713, 48.8904794 2.3148008, 48.8360361 2.3736338, 48.8282683 2.3772591, 48.8286996 2.3495963, 48.8707535 2.3833223, 48.8783688 2.3517697, 48.8520789 2.3911492, 48.8684326 2.3835891, 48.8861122 2.3560831, 48.8953201 2.3642267, 48.8889585 2.3791325, 48.8347523 2.3305612, 48.8705109 2.4120037, 48.8656133 2.4102352, 48.8520048 2.4096163, 48.8620098 2.4069056, 48.8999881 2.3668831, 48.8992676 2.3707231, 48.8326739 2.2880933, 48.8499068 2.3597039, 48.8280720 2.3602842, 48.8509647 2.3132006, 48.8821787 2.3443674, 48.8670362 2.3915837, 48.8654230 2.3940998, 48.8987412 2.3383160, 48.8319801 2.3615094, 48.8729141 2.4118958, 48.8922809 2.3383088, 48.8373105 2.4444105, 48.8706396 2.3966301, 48.8860689 2.3534507, 48.8260181 2.3300185, 48.8409618 2.3923863, 48.8278872 2.3662217, 48.8411562 2.3876284, 48.8591648 2.4000813, 48.8360513 2.4015270, 48.8323483 2.3874831, 48.8316250 2.2997138, 48.8853618 2.3438234, 48.8941071 2.3183132, 48.8433533 2.3274434, 48.8745269 2.3581995, 48.8703285 2.2473980, 48.8564818 2.3425186, 48.8574039 2.3402068, 48.8541136 2.3514875, 48.8824872 2.2905821, 48.8842267 2.2958761, 48.8834177 2.2943884, 48.8825183 2.2927200, 48.8813406 2.2905313, 48.8805623 2.2890302, 48.8791435 2.2864472, 48.8636611 2.3266770, 48.8632971 2.3399434, 48.8698572 2.3499616, 48.8536880 2.3586041, 48.8537103 2.3583919, 48.8535362 2.3584735, 48.8537763 2.3584128, 48.8535482 2.3585727, 48.8536355 2.3583397, 48.8537217 2.3584917, 48.8536284 2.3584811, 48.8536734 2.3587034, 48.8534826 2.3585509, 48.8536229 2.3586219, 48.8536260 2.3584904, 48.8535844 2.3582601, 48.8535700 2.3583598, 48.8586993 2.3580083, 48.8479245 2.3445569, 48.8541350 2.3592271, 48.8537316 2.3594219, 48.8541524 2.3597661, 48.8539572 2.3595068, 48.8541683 2.3595383, 48.8581939 2.3626749, 48.8579686 2.3627347, 48.8583563 2.3631779, 48.8580448 2.3627882, 48.8580806 2.3626739, 48.8582721 2.3635065, 48.8580240 2.3627498, 48.8584649 2.3632890, 48.8580033 2.3626182, 48.8786418 2.4080281, 48.8755522 2.3550917, 48.8751615 2.3544328, 48.8230915 2.3643090, 48.8569321 2.3368280, 48.8536974 2.3345069, 48.8573993 2.3362477, 48.8495279 2.3376503, 48.8732975 2.3675484, 48.8854008 2.3771779, 48.8513374 2.3255916, 48.8512468 2.3253199, 48.8512782 2.3254145, 48.8512118 2.3260711, 48.8515585 2.3257353, 48.8503130 2.3274684, 48.8512584 2.3258038, 48.8504490 2.3274370, 48.8386523 2.3889151, 48.8545907 2.3309327, 48.8652201 2.3108977, 48.8652766 2.3107272, 48.8650627 2.3106421, 48.8655629 2.3112670, 48.8650739 2.3108669, 48.8653377 2.3111403, 48.8651682 2.3114083, 48.8653829 2.3117589, 48.8651929 2.3117131, 48.8650934 2.3111686, 48.8654196 2.3110307, 48.8659593 2.3176961, 48.8678332 2.3112451, 48.8688971 2.3128023, 48.8673349 2.3172538, 48.8755008 2.3828940, 48.8739928 2.3230341, 48.8740320 2.3230629, 48.8735809 2.3233998, 48.8735779 2.3229937, 48.8739615 2.3235538, 48.8760409 2.3203279, 48.8759763 2.3201282, 48.8757691 2.3198438, 48.8759840 2.3210144, 48.8758052 2.3200540, 48.8758462 2.3206481, 48.8758771 2.3198323, 48.8765224 2.3182782, 48.8753193 2.3027355, 48.8677108 2.3125120, 48.8201105 2.3625285, 48.8225832 2.3649019, 48.8220432 2.3642673, 48.8226415 2.3622255, 48.8693255 2.3668597, 48.8289562 2.3792247, 48.8449152 2.3044654, 48.8300198 2.3796377, 48.8755170 2.3694090, 48.8853450 2.3561989, 48.8471006 2.3769323, 48.8655155 2.2971441, 48.8652948 2.2971715, 48.8652823 2.2967167, 48.8654841 2.2962849, 48.8652479 2.2962681, 48.8683188 2.2930354, 48.8604525 2.2880625, 48.8605267 2.2880008, 48.8627696 2.2916697, 48.8698930 2.2899388, 48.8716220 2.2749197, 48.8690899 2.2727856, 48.8687423 2.2723416, 48.8689108 2.2741672, 48.8648971 2.2751646, 48.8998976 2.3893835, 48.8630124 2.2677048, 48.8629051 2.2680397, 48.8633140 2.2666168, 48.8636323 2.2682044, 48.8615851 2.2864292, 48.8615794 2.2867731, 48.8616911 2.2869132, 48.8588924 2.2683263, 48.8587414 2.2692019, 48.8590933 2.2688225, 48.8586749 2.2680700, 48.8588767 2.2680306, 48.8593199 2.2684054, 48.8575990 2.2677108, 48.8583571 2.2683595, 48.8581135 2.2692243, 48.8576707 2.2696195, 48.8581046 2.2675956, 48.8601343 2.2700283, 48.8596268 2.2653877, 48.8557318 2.2836801, 48.8551825 2.2807231, 48.8519099 2.2752742, 48.8529532 2.2707036, 48.8529002 2.2708132, 48.8529916 2.2706479, 48.8527792 2.2706246, 48.8530423 2.2705255, 48.8553159 2.2626202, 48.8552063 2.2625500, 48.8551894 2.2629495, 48.8550245 2.2628356, 48.8528483 2.2614326, 48.8550956 2.2624788, 48.8553828 2.2622678, 48.8531452 2.2607633, 48.8552194 2.2621567, 48.8531719 2.2611272, 48.8529486 2.2609794, 48.8530452 2.2611270, 48.8530341 2.2615476, 48.8507008 2.2599244, 48.8509619 2.2596975, 48.8508609 2.2596331, 48.8509929 2.2593792, 48.8510477 2.2596554, 48.8508195 2.2595030, 48.8509003 2.2599092, 48.8509216 2.2600752, 48.8507990 2.2598438, 48.8508207 2.2599787, 48.8493697 2.2587931, 48.8502593 2.2592782, 48.8498167 2.2590625, 48.8876549 2.3662110, 48.8474639 2.2555696, 48.8467061 2.2526391, 48.8453758 2.2661190, 48.8455852 2.2664514, 48.8974507 2.3425297, 48.8859281 2.2938410, 48.8351248 2.3367476, 48.8382466 2.2544534, 48.8373075 2.2625642, 48.8372169 2.2541442, 48.8356347 2.2548227, 48.8370038 2.2552072, 48.8368363 2.2545512, 48.8361719 2.2547833, 48.8370647 2.2544954, 48.8361382 2.2544636, 48.8362975 2.2551966, 48.8358411 2.2554380, 48.8364551 2.2542017, 48.8369437 2.2543040, 48.8374203 2.2544441, 48.8369453 2.2546760, 48.8372631 2.2543120, 48.8377362 2.2545946, 48.8370739 2.2541744, 48.8364710 2.2553514, 48.8382416 2.2532683, 48.8378409 2.2540230, 48.8372742 2.2538709, 48.8378364 2.2533430, 48.8378424 2.2533197, 48.8382456 2.2529161, 48.8378018 2.2531847, 48.8372557 2.2535240, 48.8378883 2.2534656, 48.8382541 2.2525868, 48.8382501 2.2532082, 48.8487899 2.3793188, 48.8477573 2.3803729, 48.8217424 2.4565575, 48.8463599 2.3494865, 48.8464717 2.3496513, 48.8473102 2.3497086, 48.8471272 2.3492826, 48.8470942 2.3497031, 48.8464506 2.3494656, 48.8473491 2.3493744, 48.8472362 2.3504442, 48.8463754 2.3496755, 48.8448630 2.3888016, 48.8412767 2.3446263, 48.8418986 2.3448319, 48.8430285 2.3457320, 48.8499400 2.3439999, 48.8500889 2.3439112, 48.8500543 2.3442977, 48.8501932 2.3441839, 48.8390797 2.3159696, 48.8491484 2.3459550, 48.8493382 2.3452413, 48.8489868 2.3463430, 48.8478743 2.3501785, 48.8473060 2.3509143, 48.8481166 2.3499634, 48.8475035 2.3507573, 48.8479660 2.3497343, 48.8477977 2.3505300, 48.8480530 2.3496667, 48.8474869 2.3505183, 48.8431403 2.3401946, 48.8434620 2.3397215, 48.8432351 2.3396888, 48.8433813 2.3403305, 48.8435966 2.3400886, 48.8396950 2.3506224, 48.8397466 2.3505403, 48.8595609 2.4061357, 48.8464572 2.2555444, 48.8387444 2.3536989, 48.8592098 2.3120859, 48.8577775 2.3104707, 48.8605291 2.3122248, 48.8591470 2.3139691, 48.8619290 2.3123778, 48.8604807 2.3141063, 48.8618975 2.3141498, 48.8575867 2.3107745, 48.8566572 2.3144108, 48.8503174 2.3136601, 48.8615696 2.3157605, 48.8615461 2.3162154, 48.8617384 2.3165555, 48.8588648 2.3195828, 48.8591991 2.3198386, 48.8589516 2.3199326, 48.8591104 2.3194881, 48.8590317 2.3197093, 48.8516509 2.4114806, 48.8856628 2.3274123, 48.8785098 2.3366780, 48.8831619 2.3298581, 48.8771711 2.3279603, 48.8598335 2.4007863, 48.8341286 2.4672601, 48.8847174 2.3600292, 48.8846714 2.3586794, 48.8702970 2.3751231, 48.8492918 2.3790002, 48.8489882 2.3952688, 48.8490263 2.3964375, 48.8481054 2.3948858, 48.8486252 2.3956295, 48.8483991 2.3947937, 48.8486225 2.3969352, 48.8491077 2.3957761, 48.8485746 2.3962730, 48.8481524 2.3961969, 48.8481973 2.3955582, 48.8487629 2.3968430, 48.8476824 2.3961677, 48.8477494 2.3954067, 48.8479139 2.3967703, 48.8603366 2.3852102, 48.8596119 2.3846977, 48.8622353 2.3721828, 48.8360411 2.3173742, 48.8560581 2.3767899, 48.8521163 2.3812457, 48.8526519 2.3815603, 48.8411342 2.2856427, 48.8539515 2.3908187, 48.8503522 2.3834594, 48.8548949 2.3945985, 48.8253516 2.3692146, 48.8452398 2.3678042, 48.8504058 2.3771320, 48.8390546 2.3311733, 48.8577820 2.3204968, 48.8575323 2.3205785, 48.8575371 2.3206176, 48.8576650 2.3209936, 48.8507503 2.3582429, 48.8508750 2.3597899, 48.8508136 2.3598209, 48.8507942 2.3597182, 48.8508264 2.3598972, 48.8507417 2.3598443, 48.8472198 2.3495064, 48.8467141 2.3363649, 48.8435465 2.3852894, 48.8442970 2.4004073, 48.8441393 2.4002029, 48.8442799 2.3992758, 48.8441345 2.4008734, 48.8462482 2.4043824, 48.8449582 2.4022524, 48.8440647 2.4019207, 48.8445792 2.4021085, 48.8412134 2.4097979, 48.8420942 2.4102434, 48.8352063 2.4075103, 48.8358723 2.4081721, 48.8345779 2.4067954, 48.8509192 2.4001701, 48.8504898 2.4015516, 48.8423893 2.3858725, 48.8584020 2.4148408, 48.8277592 2.3828762, 48.8320347 2.3782213, 48.8315098 2.4346896, 48.8848595 2.3386885, 48.8412236 2.3969052, 48.8453157 2.3799237, 48.8435493 2.3837453, 48.8877554 2.3437578, 48.8875022 2.3418023, 48.8709905 2.3876186, 48.8940855 2.3497583, 48.8769717 2.3933007, 48.8758148 2.3945290, 48.8658251 2.3553640, 48.8413198 2.2748064, 48.8278323 2.3521871, 48.8882224 2.3372429, 48.8292572 2.3801210, 48.8715545 2.3849798, 48.8962254 2.3430597, 48.8408464 2.4027871, 48.8410642 2.3999536, 48.8687332 2.3881130, 48.8649511 2.2530414, 48.8225778 2.3575432, 48.8628338 2.3442528, 48.8372405 2.3042256, 48.8999988 2.3452350, 48.8997261 2.3383715, 48.8419590 2.3450234, 48.8417733 2.3449103, 48.8420266 2.3447466, 48.8418461 2.3446370, 48.8419269 2.3449043, 48.8418815 2.3447553, 48.8418569 2.3448693, 48.8419534 2.3447916, 48.8607017 2.4053074, 48.8615336 2.4005433, 48.8579598 2.4061305, 48.8193306 2.3478518, 48.8211963 2.3546179, 48.8239248 2.3187110, 48.8283030 2.3054034, 48.8346932 2.2839353, 48.8863780 2.3370391, 48.8561889 2.4010520, 48.8559855 2.4016766, 48.8228204 2.3479528, 48.8795426 2.3838037, 48.8568463 2.3622093, 48.8874917 2.3163563, 48.8926891 2.3614786, 48.8514129 2.2617896, 48.8553965 2.2667281, 48.8874288 2.3249629, 48.8381941 2.2769278, 48.8761664 2.4066619, 48.8956323 2.3750100, 48.8940037 2.3842068, 48.8895053 2.2986099, 48.8698167 2.3982143, 48.8850845 2.3820568, 48.8867647 2.3706778, 48.8215755 2.3231347, 48.8922801 2.2985255, 48.8277209 2.3673728, 48.8866190 2.3622374, 48.8919490 2.3611955, 48.8993353 2.3751905, 48.8924402 2.3618464, 48.8250526 2.3031349, 48.8394527 2.2887713, 48.8397526 2.2892403, 48.8304951 2.3579059, 48.8439509 2.3464037, 48.8444056 2.3818903, 48.8463200 2.3778508, 48.8896291 2.3809948, 48.8562680 2.2897148, 48.8623543 2.2993705, 48.8916885 2.3316437, 48.8514171 2.2950534, 48.8521282 2.3474875, 48.8442489 2.2687302, 48.8753294 2.3995485, 48.8936357 2.3633580, 48.8734518 2.3963074, 48.8699317 2.3936039, 48.8958220 2.3610383, 48.8505098 2.2973259, 48.8184109 2.3602454, 48.8186634 2.3606140, 48.8187490 2.3602341, 48.8238391 2.3533046, 48.8277279 2.3525754, 48.8275462 2.3652745, 48.8463173 2.2778146, 48.8449428 2.3048536, 48.8363188 2.3596767, 48.8360399 2.3600461, 48.8362252 2.3599768, 48.8361032 2.3597862, 48.8361026 2.3599631, 48.8362619 2.3597483, 48.8647260 2.3907516, 48.8950355 2.3535477, 48.8602550 2.4037142, 48.8363205 2.3181423, 48.8859798 2.3610072, 48.8608375 2.4099106, 48.8716353 2.3952381, 48.8682927 2.4085101, 48.8722712 2.4129546, 48.8553708 2.4093495, 48.8344135 2.2848971, 48.8815777 2.4002187, 48.8793948 2.4006775, 48.8753046 2.3029139, 48.8826210 2.3950114, 48.8894871 2.3736631, 48.8880610 2.3986423, 48.8433823 2.4106521, 48.8399096 2.2916834, 48.8660296 2.3806446, 48.8785130 2.3934603, 48.8655220 2.3810316, 48.8739040 2.3733848, 48.8487850 2.4157805, 48.8495781 2.4138864, 48.9000729 2.3736729, 48.8780150 2.3926470, 48.8924116 2.3120541, 48.8926842 2.3110463, 48.8919306 2.3133343, 48.8922415 2.3131983, 48.8919686 2.3126774, 48.8857748 2.3927149, 48.8206218 2.3326544, 48.8558991 2.3855866, 48.8745221 2.3770847, 48.8574471 2.3878731, 48.8599530 2.4116314, 48.8583622 2.3631779, 48.8322169 2.3195123, 48.8881743 2.3411511, 48.8867631 2.3936665, 48.8218787 2.3483024, 48.8712574 2.3865699, 48.8571403 2.4016755, 48.8850713 2.3255265, 48.8892411 2.3381541, 48.8884891 2.3395705, 48.8599815 2.3588292, 48.8465740 2.2666910, 48.8579842 2.3620019, 48.8906938 2.2983000, 48.8891820 2.2952018, 48.8863781 2.2889761, 48.8866422 2.2894774, 48.8421922 2.3874461, 48.8592380 2.3653790, 48.8571225 2.3603727, 48.8778096 2.2823488, 48.8572946 2.3602420, 48.8374943 2.3191812, 48.8941101 2.3248058, 48.8410170 2.3235055, 48.8338119 2.3327247, 48.7854039 2.2942040, 48.8793706 2.3088907, 48.8887726 2.3631601, 48.8428700 2.2923037, 48.8486015 2.3919565, 48.8204716 2.3351483, 48.8222361 2.3380093, 48.8617898 2.3160689, 48.8759893 2.3541053, 48.8557649 2.3521431, 48.8421753 2.2967966, 48.8849411 2.2973016, 48.8642016 2.2519087, 48.8561630 2.2978323 +Ocean Kitchen Bar and Grill +yes +Cambridge Street, Mayfield Gardens, York Place, Roxburgh Place, Sunnyside, Nicolson Street, Bristo Place, Morningside Road, Potterrow + +yes +Björn Steiger Stiftung, Sparkasse Rhein Neckar Nord, Björn-Steiger-Stiftung, Straßenmeisterei, Deutsche Telekom AG, Rettungsstiftung Jürgen Pegler e.V., Autobahnmeisterei, Volksbank, Deutsche Telekom, T-Com, Heidenheimer Zeitung, Björn-Steiger Stiftung, EnBW, Karlsruher Institut für Technologie +Synagogue Beit Yossef, Synagogue, Ohaley Yaakov, Chapelle Saint-Vincent de Paul, Chapelle de l'Agneau de Dieu, Église Adventiste du 7e jour Paris-Sud, Amicale des Teo Chew en France, Synagogue Avoth Ouvanim, Chapelle Saint-Bernard, Mosquée 'Ali Ibn Al Khattab, Mosquée Al-Fatih, Mosquée de Paris 15ème, Association Culturelle des Musulmans, Maison Verte, Aumônerie des Grands Moulins, Union Libérale Israélite de France, Chapelle Sainte-Marie, Église Notre-Dame de Chaldée, Temple Sri Manicka Vinayakar, Chapelle Orthodoxe, Chapelle, Autel de culte du Bouddha, Centre Évangélique Philadelphia, Synagogue Saint-Lazare, synagogue Chivté Israël, Église Orthodoxe Grecque, synaguogue cadet, Adath Shalom, Église évangélique du tabernacle, Calvary Chapel, Espace Boudhiste Tibétain, Église Protestante - Paris Alésia, Chapelle Saint-Paul, Église baptiste du centre, Salle du Royaume des Témoins de Jéhovah de Paris Clichy, Chapelle Saint-Martin de Porrès, Chapelle catholique des 4 Évangélistes, Or-Hahaim, Synagogue Beth-El Nevé chalom, Synagogue. Oratoire de la fondation Rothschild, Synagogue Etz Haim-Beit Hamidrach, Autel de culte du Bouddha, Chapelle des Franciscaines, Centre Saint-Paul, Chapelle Notre-Dame de la Confiance, Église protestante évangélique des Ternes, Église Adventiste du 7ème Jour, Église Sainte-Colette des Buttes-Chaumont, Centre Rambam, Beth Hamidrach Lamed, Foyer Culturel Myriam Zana, Abdoulmajid, Mosquée A Daawa, Église Catholique Russe, Beth Habad, Chapelle, Église Mariavite Sainte-Marie, Chapelle Saint-André, Chapelle Saint-Louis, Crypte du Martyrium de Saint-Denis, Chapelle, masjid la Villette, Chapelle, Notre Dame sous Terre, Traces historiques de Cluny, masjid Alrahmen, Association islamique en France, Michkenot Yaacov, Chapelle Saint-Patrick, Parohia Ortodoxă Română "Sfânta Parascheva" și "Sfânta Genoveva" Paris 2, Parohia Ortodoxă Română "Sfânta Genoveva" și "Sfântul Martin" Paris 3, Parohia Ortodoxă Română "Sfântul Ioan Casian" și "Sfânta Genoveva" Paris 4, Église Saint-Lambert de Vaugirard, Église Saint-Léon, Église Saint-Sulpice, Église Saint-Pierre de Montrouge, Église Saint-Séverin, Église Saint-Julien-le-Pauvre, Basilique du Sacré-Cœur, Église Saint-Jean-Baptiste de Grenelle, Église Saint-Pierre de Montmartre, Église Notre-Dame de l'Arche d'Alliance, Église Saint-Ignace, Église Saint-Médard, Église Notre-Dame-de-Lorette, Temple de l'Oratoire du Louvre, Église Notre-Dame de Clignancourt, Église Saint-Roch, Saint-Nicolas du Chardonnet, Chapelle de la Compassion, Église Sainte-Hélène, Synagogue Charles Liché, Église de la Sainte-Trinité, Église Saint-Eugène Sainte-Cécile, Chapelle Ozanam, Église luthérienne de la Résurrection, Église Saint-Christophe de Javel, Église Saint-Eustache, Église Saint-Germain l'Auxerrois, Église Saint-Leu - Saint-Gilles, Chapelle Notre-Dame de Grâce, Église Polonaise Notre-Dame de l'Assomption, Église de la Madeleine, Basilique Notre-Dame-des-Victoires, Église Notre-Dame-de-Bonne-Nouvelle, Église Saint-Louis-en-l'Île, Église Saint-Étienne-du-Mont, Église Saint-Éphrem-le-Syriaque, Église Orthodoxe Roumaine des Saints Archanges, Église Saint-Gervais, Église Saint-Merry, Église luthérienne des Billettes, Grande Mosquée de Paris, Église Notre-Dame-des-Blancs-Manteaux, Synagogue, Église Saint-Paul - Saint-Louis, Chapelle, Temple Sainte-Marie, Église Saint-Nicolas des Champs, Ancienne Église Saint-Martin des Champs, Synagogue Nazareth, Église Sainte-Élisabeth, Synagogue Vauquelin, Chapelle de la congrégation du Saint-Esprit, Cathédrale Arménienne Sainte-Croix, Église Saint-Denis du Saint-Sacrement, Église du Val-de-Grâce, Église Luthérienne Saint-Marcel, Église Saint-Jacques-du-Haut-Pas, Église Saint-Germain des Prés, Cathédrale Ukrainienne Saint-Vladimir-le-Grand, Chapelle Notre-Dame de la Sagesse, Pagode de Vincennes, Église Saint-Vincent-de-Paul, Centre Culturel Islamique, Association Culturelle Islamique Kurdes, Église Saint-Laurent, Chapelle de l'hôpital Saint-Louis, Église Saint-Martin des Champs, Église Saint-Joseph-Artisan, Temple de la Rencontre, Église Saint-Jean-Baptiste de Belleville, Église Notre-Dame-de-l'Assomption des Buttes-Chaumont, Église luthérienne Saint-Pierre, Église Notre-Dame-de-Fatima, Église Saint-François-d'Assise, Église Sainte-Claire d'Assise, Temple antoiniste, Église Saint-Serge, Église Saint-Georges de la Villette, Église Saint-Joseph des Carmes, Église Saint-Thomas d'Aquin, Église Saint-Ambroise, Association Foi et Pratique - Mosquée OMAR, Chapelle Notre-Dame-Réconciliatrice de la Salette, Synagogue Don Isaac Abravanel, Basilique Notre-Dame du Perpétuel Secours, Mosquée Abou Baker Assiddiq, Église protestante chinoise de Paris, Église Notre-Dame d'Espérance, Temple protestant du Foyer de l'Âme, Église Réformée du Luxembourg, Église Saint-Jacques Saint-Christophe, Église Notre-Dame des Foyers, Église Notre-Dame des Champs, Basilique Sainte-Clothilde, Cathédrale Saint-Louis des Invalides, Chapelle de Jésus-Enfant, Église Anglicane Saint-Michel, Église Réformée du Saint-Esprit, Temple de Pentemont, Église Saint-Augustin, Chapelle Expiatoire, Église Saint-André de l'Europe, Église Saint-Philippe du Roule, Chapelle Baltard, Église Saint-François-Xavier, Chapelle Notre-Dame de l'Annonciation, Église Américaine, Église Saint-Pierre du Gros Caillou, Église Saint-Louis-d'Antin, Deutsche Evangelische Christuskirche Paris, Church of Scotland, Chapelle Notre-Dame de Consolation, Cathédrale Arménienne Saint-Jean-Baptiste, Grande Synagogue de la Victoire, Consistoire, Synagogue Buffault, Cathédrale Américaine de la Sainte-Trinité, Église Luthérienne Saint-Jean, Église Réformée chinoise de Belleville, Église Notre-Dame-des-Otages, Église Notre-Dame-de-la-Croix, Église du Cœur Eucharistique de Jésus, Synagogue, Église Saint-Germain-de-Charonne, Église Saint-Gabriel, Église Saint-Jean-Bosco, Chapelle de l'Est, Église Saint-Cyrille et Saint-Méthode, Chapelle du Corpus-Christi, Église Protestante Danoise, Cathédrale Orthodoxe Russe Saint-Alexandre Nevsky, Saint-Joseph's Church (mission anglophone), Chapelle Saint-Pierre - Saint-Paul, Église Saint-Jospeh des Épinettes, Temple des Batignolles, Église Saint-Michel des Batignolles, Église Sainte-Marie des Batignolles, Église de l'Immaculée Conception, Église Sainte-Geneviève des Grandes-Carrières, Église Sainte-Rita, Église Saint-Jean de Montmartre, Église Saint-Bernard de La Chapelle, Khalid Ibn Walid, Institut des Cultures d'Islam, Chapelle Notre-Dame de la Paix, Église Saint-Éloi, Église Notre-Dame du Bon Conseil, Église Serbe Saint-Sava, Église Notre-Dame de Bercy, Église Orthodoxe de France, Église réformée Port-Royal Quartier Latin, Église Sainte-Rosalie, Église Saint-Albert le Grand, Église Sainte-Anne de la Maison Blanche, Temple Antoiniste de Paris, Église Luthérienne de la Trinité, Église Saint-Marcel, Chapelle Saint-Louis de la Salpêtrière, Église Notre-Dame de Chine, Église Notre-Dame de la Gare, Église Saint-Hippolyte, Cathédrale Saint-Étienne, Église Saint-Pierre de Chaillot, Église Anglicane Saint-Georges, Chapelle Sainte-Anne, Église Saint-Dominique, Église Notre-Dame-du-Travail, Paroisse de Plaisance, Église Notre-Dame-du-Rosaire, Église Évangélique Libre, Église de Saint-Antoine de Padoue, Église Notre-Dame-Réconciliatrice, Chapelle Notre-Dame-du-Lys, Église Orthodoxe Saint-Séraphin de Sarov, Église Saint-Jean-Baptiste-de-La-Salle, Église Saint-Honoré d'Eylau, Église Réformée de l'Annonciation, Mission Catholique Espagnole - Iglesia Española, Église Notre-Dame-de-l'Assomption de Passy, Église Notre-Dame de Grâce de Passy, Église Saint-Denys de la Chapelle, Chapelle Sainte-Thérèse, Église Saint-François-de-Sales (ancienne église), Église Luthérienne de l'Ascension, Temple Réformé de l'Etoile, Église Sainte-Odile, Église Saint-Charles-de-Monceau, Église Saint-Ferdinand des Ternes, Église du Christ, Église Saint-François-de-Sales (nouvelle église), Église Notre-Dame d'Auteuil, Chapelle Sainte-Bernadette, Église Saint-François de Molitor, Église Polonaise Sainte-Geneviève, Église Sainte-Jeanne-de-Chantal, Chapelle de la Visitation, Église Saint-Antoine des Quinze-Vingts, Chapelle Sainte-Ursule, Notre-Dame-du-Liban, Chapelle de l'Épiphanie, Église Notre-Dame-de-Grâce de Passy, Chapelle Laennec, Église Notre-Dame-de-Nazareth, Église nouvelle Saint-Honoré d'Eylau, Chapelle Saint-François d'Assise, Chapelle Sainte-Rita, Basilique Sainte-Jeanne-d’Arc, Église du dôme, Chapelle Notre-Dame-du-Saint-Sacrement, Église Notre-Dame-de-Lourdes, Église Saint-Joseph des Nations, Église Sainte-Marguerite, Église Sainte-Marguerite, MJLF, Chapelle Sainte-Jeanne-d'Arc, Église du Bon Secours, Église du Saint-Esprit, Chapelle, Prieuré Saint-Benoît, Église Orthodoxe des Trois-Saints-Docteurs, Église Protestante Suéduoise, Chapelle de la clinique Blomet, Église du Bon Pasteur, Église Saint-Jean des Deux Moulins, Chapelle, Église luthérienne Saint-Paul, Chapelle, Chapelle Saint-Yves, Chapelle, Chapelle, Chapelle du Sacré-Cœur-de-Jésus-Roi-de-France, Kagyu-Dzong, Cathédrale Notre-Dame de Paris, Chapelle Saint-Charles, Chapelle, Chapelle Notre-Dame des Anges, Chapelle Notre-Dame de la Médaille Miraculeuse, Chapelle des Catéchismes, Communauté évangélique Paris Daumesnil, Église Saint-Luc, Église Notre-Dame-de-La-Salette, Synagogue Kedouchat Levy, Chapelle Sainte-Marie, Chapelle Saint-Vincent, Chapelle de la Vierge, Chapelle du Bon Pasteur, Chapelle Sainte Geneviève, Sainte-Chapelle +Römischer Tempel, Dicker Turm and 49.4258222 8.7062319, 49.4107384 8.7158348, 49.4107663 8.7140684 +yes +5 +Iwo Jima, Annobón Province, Cocos (Keeling) Islands, Bear Island, Cocos Island, Uyedineniya Island, Tromelin Island, Clipperton Island, Bouvet Island, Saint Helena, Ascension, Atlasov Island, Saint-Kilda, Rudolf Island, Howland Island, Easter Island, Robinson Crusoe Island +55.9652866 -3.3173288, 55.9474486 -3.1859655, 55.9547783 -3.1976132, 55.9512066 -3.1850870, 55.9426657 -3.2801929, 55.9426063 -3.2085087, 55.9348214 -3.0945488, 55.9366417 -3.1570870, 55.9549932 -3.1109797, 55.9733698 -3.1917230, 55.9446070 -3.1860121, 55.9444906 -3.1858127, 55.9395492 -3.2038813, 55.9355709 -3.2102528, 55.9386232 -3.2288990, 55.9395738 -3.2207070, 55.9396013 -3.2205959, 55.9317083 -3.2375695, 55.9282620 -3.2003920, 55.9445252 -3.1859176, 55.9480977 -3.1860003, 55.9471995 -3.1855061, 55.9470671 -3.1857568, 55.9468154 -3.1855780, 55.9440261 -3.1820823, 55.9406312 -3.2039275, 55.9402760 -3.2038110, 55.9434664 -3.1831055, 55.9425019 -3.1793852, 55.9434240 -3.1801919, 55.9774285 -3.1719154, 55.9627814 -3.1995758, 55.9630986 -3.2001715, 55.9479312 -3.1940298, 55.9488004 -3.1932865, 55.9488010 -3.1925834, 55.9619662 -3.2352523, 55.9503936 -3.1748495, 55.9500635 -3.1892496, 55.9534622 -3.1963003, 55.9810888 -3.1948604, 55.9813469 -3.1948497, 55.9775639 -3.1689368, 55.9763635 -3.1706985, 55.9610381 -3.1807131, 55.9760230 -3.1696703, 55.9771581 -3.1733472, 55.9825548 -3.1951570, 55.9770294 -3.1725826, 55.9770823 -3.1729052, 55.9757237 -3.1680744, 55.9768212 -3.1696962, 55.9696704 -3.1601774, 55.9746544 -3.1708033, 55.9754457 -3.1703672, 55.9748068 -3.1719428, 55.9764442 -3.1712312, 55.9612894 -3.1714220, 55.9651802 -3.1900260, 55.9734916 -3.1731211, 55.9734370 -3.1678545, 55.9766362 -3.1692569, 55.9581662 -3.2088898, 55.9584860 -3.2082072, 55.9585295 -3.2049192, 55.9561318 -3.2024897, 55.9607716 -3.1994845, 55.9624799 -3.1788559, 55.9721688 -3.1727029, 55.9734119 -3.1676688, 55.9545214 -3.1981041, 55.9542551 -3.1979757, 55.9356483 -3.2096691, 55.9364991 -3.2084171, 55.9453065 -3.1835012, 55.9457155 -3.2031429, 55.9450484 -3.2047027, 55.9463009 -3.2016068, 55.9468875 -3.2026394, 55.9467764 -3.2027315, 55.9459875 -3.2052600, 55.9461895 -3.1912537, 55.9642340 -3.2119376, 55.9760874 -3.1678906, 55.9751258 -3.1658656, 55.9460137 -3.1821143, 55.9587464 -3.2103338, 55.9455352 -3.1866707, 55.9456867 -3.1862318, 55.9445434 -3.1856701, 55.9478899 -3.1920092, 55.9477659 -3.1919316, 55.9443056 -3.2708233, 55.9438150 -3.2706214, 55.9540924 -3.1857179, 55.9807113 -3.1953762, 55.9525178 -3.1990765, 55.9527244 -3.1978512, 55.9796500 -3.3006918, 55.9458222 -3.1851240, 55.9456630 -3.1864521, 55.9506084 -3.1874617, 55.9500934 -3.1836054, 55.9498204 -3.1834215, 55.9508055 -3.1777162, 55.9527611 -3.2030077, 55.9690121 -3.1681747, 55.9567027 -3.2027842, 55.9466421 -3.1371546, 55.9567499 -3.1986451, 55.9811460 -3.1776490, 55.9806886 -3.1784936, 55.9809733 -3.1781568, 55.9809041 -3.1782848, 55.9820170 -3.1763600, 55.9465573 -3.2166040, 55.9570779 -3.1884191, 55.9480209 -3.1999685, 55.9477134 -3.1957934, 55.9436221 -3.1937179, 55.9492755 -3.2122776, 55.9337528 -3.2109407, 55.9335062 -3.1782145, 55.9382383 -3.1924215, 55.9506835 -3.1901263, 55.9488068 -3.1956257, 55.9436384 -3.2027881, 55.9329934 -3.3152155, 55.9777657 -3.1686490, 55.9899019 -3.3868462, 55.9426119 -3.2218340, 55.9559071 -3.2028055, 55.9374422 -3.2067350, 55.9368190 -3.2080761, 55.9391854 -3.2049304, 55.9403048 -3.2042415, 55.9354188 -3.2098186, 55.9357089 -3.2095799, 55.9517073 -3.1096947, 55.9524705 -3.1146567, 55.9519351 -3.1106711, 55.9524356 -3.1964223, 55.9454558 -3.1847776, 55.9567479 -3.1931126, 55.9435851 -3.1847147, 55.9444992 -3.1839329, 55.9462089 -3.1892186, 55.9449737 -3.1886697, 55.9620925 -3.1793630, 55.9654977 -3.1757974, 55.9537919 -3.1943636, 55.9265106 -3.2094010, 55.9371166 -3.1786816, 55.9373587 -3.1783299, 55.9435115 -3.2193949, 55.9437549 -3.2193403, 55.9453892 -3.2171020, 55.9452977 -3.2171685, 55.9463186 -3.2159103, 55.9462644 -3.2147801, 55.9460056 -3.2124627, 55.9463269 -3.2059968, 55.9465542 -3.2158573, 55.9463549 -3.2017288, 55.9464387 -3.2035789, 55.9486361 -3.2062189, 55.9485519 -3.2140339, 55.9467972 -3.2050617, 55.9469991 -3.2045993, 55.9467213 -3.2047418, 55.9485678 -3.1946201, 55.9486421 -3.1944619, 55.9489611 -3.1926806, 55.9457412 -3.2099832, 55.9495552 -3.2091699, 55.9506675 -3.2089125, 55.9505668 -3.2093105, 55.9505921 -3.2087450, 55.9582298 -3.2268150, 55.9434367 -3.2195949, 55.9460045 -3.2187935, 55.9462622 -3.2145897, 55.9586309 -3.1903764, 55.9465828 -3.2144286, 55.9458930 -3.2127420, 55.9462614 -3.2149075, 55.9469392 -3.2157459, 55.9466500 -3.2155710, 55.9489596 -3.2105228, 55.9460203 -3.2206990, 55.9505780 -3.2098209, 55.9508641 -3.2099881, 55.9575799 -3.2074392, 55.9580520 -3.2065578, 55.9591363 -3.2144382, 55.9582634 -3.2095901, 55.9581540 -3.2094323, 55.9580230 -3.2092431, 55.9585716 -3.1897695, 55.9578403 -3.1887677, 55.9439438 -3.2188704, 55.9436651 -3.2196309, 55.9425916 -3.2009298, 55.9427446 -3.2017235, 55.9420620 -3.2036946, 55.9418227 -3.2036511, 55.9416745 -3.2030588, 55.9460150 -3.1908920, 55.9470537 -3.1917202, 55.9473009 -3.1911302, 55.9411590 -3.2032805, 55.9392330 -3.2127435, 55.9460210 -3.2291854, 55.9460528 -3.2226765, 55.9410190 -3.2179980, 55.9579133 -3.2068151, 55.9577295 -3.2066473, 55.9572260 -3.2056240, 55.9537733 -3.2038799, 55.9507047 -3.1827880, 55.9510404 -3.1846922, 55.9502539 -3.1878479, 55.9475890 -3.2135160, 55.9479040 -3.2136850, 55.9578281 -3.2064585, 55.9461791 -3.2053213, 55.9569075 -3.1939006, 55.9530794 -3.2035262, 55.9486670 -3.1956973, 55.9442121 -3.2179551, 55.9546639 -3.1975541, 55.9544395 -3.1974380, 55.9542190 -3.1973239, 55.9541769 -3.1973021, 55.9540060 -3.1972137, 55.9541028 -3.1972638, 55.9541197 -3.1979103, 55.9530164 -3.2013793, 55.9523991 -3.2052223, 55.9522681 -3.2060091, 55.9522441 -3.2061536, 55.9499431 -3.2078244, 55.9429692 -3.2046543, 55.9430026 -3.2042435, 55.9516199 -3.2027318, 55.9518670 -3.2035606, 55.9518994 -3.2028955, 55.9536150 -3.1883131, 55.9499018 -3.1935768, 55.9498329 -3.1910920, 55.9496897 -3.1897241, 55.9500792 -3.1891087, 55.9497794 -3.1891002, 55.9498847 -3.1884170, 55.9507029 -3.1895380, 55.9510625 -3.1882551, 55.9511343 -3.1876851, 55.9504690 -3.1879562, 55.9508281 -3.1833677, 55.9499013 -3.1834760, 55.9480205 -3.1941463, 55.9475711 -3.1964625, 55.9475446 -3.1965793, 55.9474740 -3.1968911, 55.9468534 -3.2055566, 55.9465560 -3.2054548, 55.9461881 -3.2059419, 55.9459465 -3.2061086, 55.9535003 -3.2044865, 55.9535044 -3.2004011, 55.9537081 -3.2003007, 55.9540962 -3.2002450, 55.9537909 -3.1998247, 55.9538415 -3.1995340, 55.9540148 -3.1994866, 55.9526921 -3.1998924, 55.9514403 -3.2044562, 55.9513975 -3.2047070, 55.9460065 -3.2126069, 55.9456584 -3.2094933, 55.9440144 -3.2064642, 55.9764272 -3.1711191, 55.9803418 -3.1792151, 55.9804368 -3.1789769, 55.9435020 -3.2024352, 55.9432539 -3.2025774, 55.9518969 -3.2025598, 55.9570492 -3.1932499, 55.9466922 -3.2046189, 55.9529509 -3.1973404, 55.9524364 -3.1984379, 55.9526199 -3.1984725, 55.9522016 -3.2030725, 55.9571910 -3.2077708, 55.9446418 -3.1854453, 55.9898690 -3.3921144, 55.9901625 -3.3961304, 55.9509598 -3.2058075, 55.9579896 -3.1895662, 55.9562957 -3.1887858, 55.9581296 -3.1899414, 55.9343180 -3.1037178, 55.9649789 -3.1762500, 55.9555667 -3.1925204, 55.9540378 -3.1993360, 55.9423653 -3.2037351, 55.9407524 -3.2038350, 55.9416963 -3.2026683, 55.9265332 -3.2084291, 55.9430311 -3.2839568, 55.9426809 -3.2803231, 55.9414320 -3.2180926, 55.9391841 -3.2128654, 55.9233856 -3.1748328, 55.9398689 -3.2196084, 55.9400709 -3.2188789, 55.9398073 -3.2198459, 55.9582032 -3.2095515, 55.9497095 -3.2073063, 55.9514958 -3.2041313, 55.9400291 -3.1697303, 55.9413945 -3.1836207, 55.9529201 -3.1893290, 55.9477347 -3.1956994, 55.9534027 -3.1920297, 55.9544769 -3.1974573, 55.9539860 -3.1972034, 55.9420361 -3.2670729, 55.9459485 -3.2060162, 55.9561918 -3.1852745, 55.9478903 -3.1915085, 55.9459447 -3.1909020, 55.9485947 -3.1945597, 55.9484900 -3.1938871, 55.9457476 -3.1909342, 55.9485587 -3.1943530, 55.9483248 -3.1864306, 55.9476976 -3.1919549, 55.9494442 -3.2078565, 55.9522731 -3.2016642, 55.9530413 -3.1976567, 55.9474107 -3.1857005, 55.9388452 -3.1790659, 55.9405122 -3.2247254, 55.9506503 -3.1887550, 55.9459157 -3.2048309, 55.9544956 -3.1996255, 55.9537345 -3.1902975, 55.9248346 -3.2543275, 55.9374976 -3.1806164, 55.9389517 -3.1803682, 55.9419979 -3.1791165, 55.9578375 -3.1855691, 55.9577009 -3.1853926, 55.9570718 -3.1867391, 55.9573509 -3.1857841, 55.9574003 -3.1857205, 55.9578226 -3.1852754, 55.9572831 -3.1858711, 55.9580954 -3.1850322, 55.9574839 -3.1856131, 55.9582192 -3.1849767, 55.9576457 -3.1858045, 55.9320111 -3.2097789, 55.9608511 -3.1806444, 55.9514989 -3.2098689, 55.9644679 -3.1766608, 55.9456603 -3.2057801, 55.9736032 -3.1729794, 55.9312746 -3.1719521, 55.9338048 -3.1784443, 55.9492753 -3.1855034, 55.9410964 -3.1808815, 55.9375777 -3.1779460, 55.9378124 -3.1781642, 55.9354709 -3.1798259, 55.9504193 -3.1866153, 55.9490741 -3.1893997, 55.9529899 -3.1973604, 55.9567702 -3.1807456, 55.9323166 -3.2101798, 55.9321089 -3.2101997, 55.9308794 -3.2100746, 55.9500237 -3.1859641, 55.9437591 -3.2187146, 55.9504916 -3.1861886, 55.9506853 -3.1853773, 55.9710344 -3.2100024, 55.9396258 -3.1829811, 55.9596581 -3.1714061, 55.9466096 -3.2157282, 55.9489839 -3.1929807, 55.9169756 -3.2120428, 55.9488427 -3.3624818, 55.9482570 -3.3655019, 55.9469467 -3.1868746, 55.9349914 -3.1790260, 55.9501695 -3.1909428, 55.9426772 -3.2016327, 55.9459543 -3.2110196, 55.9803312 -3.1788000, 55.9702196 -3.1702168, 55.9467924 -3.1855561, 55.9438132 -3.2185860, 55.9457016 -3.1899747, 55.9453485 -3.2171316, 55.9486496 -3.1940701, 55.9224491 -3.2107749, 55.9906648 -3.3973688, 55.9579836 -3.1811283, 55.9426269 -3.1823902, 55.9441244 -3.1834199, 55.9429144 -3.1826352, 55.9387155 -3.1789608, 55.9416801 -3.1819013, 55.9566001 -3.1617669, 55.9497766 -3.1880920, 55.9348643 -3.1686663, 55.9382875 -3.1812525, 55.9387673 -3.1815841, 55.9418959 -3.1837485, 55.9418211 -3.1837096, 55.9511723 -3.1075996, 55.9562823 -3.1983948, 55.9418000 -3.1789399, 55.9591452 -3.2145692, 55.9501282 -3.1886800, 55.9501474 -3.1919776, 55.9584216 -3.1835648, 55.9563144 -3.1853375, 55.9563929 -3.1855108, 55.9560587 -3.1853594, 55.9566044 -3.1856275, 55.9542648 -3.1862231, 55.9603650 -3.1816054, 55.9539559 -3.1864291, 55.9595116 -3.1827051, 55.9506624 -3.1904103, 55.9492455 -3.1893451, 55.9498216 -3.1888060, 55.9579923 -3.1851333, 55.9489961 -3.1873020, 55.9492301 -3.1869105, 55.9498654 -3.1872300, 55.9495368 -3.1870648, 55.9503997 -3.1842260, 55.9490417 -3.1857303, 55.9498761 -3.1930603, 55.9694744 -3.1724296, 55.9489892 -3.2104514, 55.9428623 -3.2034086, 55.9494976 -3.1832041, 55.9570561 -3.1868309, 55.9474907 -3.1912396, 55.9455586 -3.1906923, 55.9473547 -3.1907578, 55.9385351 -3.1788147, 55.9420479 -3.1791611, 55.9423618 -3.1840431, 55.9512610 -3.1800100, 55.9512749 -3.1799374, 55.9443287 -3.1812574, 55.9520043 -3.1768950, 55.9468472 -3.1856084, 55.9473137 -3.1851136, 55.9487553 -3.1962659, 55.9493042 -3.1940688, 55.9466056 -3.1912464, 55.9479651 -3.1920564, 55.9522129 -3.2063407, 55.9382413 -3.1927495, 55.9379861 -3.1928020, 55.9514215 -3.2038997, 55.9895667 -3.3989278, 55.9645701 -3.1765707, 55.9648300 -3.1763865, 55.9545797 -3.1975105, 55.9595598 -3.1714455, 55.9733312 -3.1670719, 55.9524366 -3.1994110, 55.9720484 -3.1727281, 55.9541108 -3.2007911, 55.9463993 -3.2054011, 55.9469840 -3.2072235, 55.9682750 -3.1678746, 55.9556814 -3.1924910, 55.9508000 -3.2089911, 55.9509363 -3.2096447, 55.9685040 -3.1738921, 55.9459122 -3.2050109, 55.9568316 -3.1854823, 55.9576388 -3.1845365, 55.9581968 -3.1716934, 55.9459161 -3.2047332, 55.9437740 -3.1934870, 55.9536366 -3.1881820, 55.9592372 -3.1902998, 55.9516721 -3.1954693, 55.9521526 -3.1969507, 55.9460880 -3.1902547, 55.9552399 -3.1545394, 55.9549886 -3.1524019, 55.9549401 -3.1509666, 55.9549290 -3.1483069, 55.9400201 -3.1805523, 55.9626517 -3.1592160, 55.9427627 -3.2911646, 55.9444352 -3.2057104, 55.9500762 -3.2087008, 55.9492493 -3.1821929, 55.9429207 -3.2827642, 55.9429672 -3.2868741, 55.9587280 -3.1832716, 55.9452936 -3.2339601, 55.9450405 -3.1853560, 55.9349687 -3.1057811, 55.9350718 -3.1057363, 55.9355871 -3.1055118, 55.9354840 -3.1055567, 55.9351748 -3.1056914, 55.9348657 -3.1058260, 55.9377112 -3.2170224, 55.9373959 -3.2166076, 55.9423015 -3.2037122, 55.9315505 -3.2517416, 55.9388946 -3.1813406, 55.9389130 -3.1809911, 55.9416787 -3.1839399, 55.9691129 -3.1844317, 55.9600784 -3.2960791, 55.9498132 -3.2085294, 55.9469808 -3.1906363, 55.9475575 -3.1918577, 55.9434619 -3.1842245, 55.9462530 -3.1899813, 55.9506277 -3.1883790, 55.9486261 -3.1871655, 55.9732265 -3.1683769, 55.9618841 -3.1951099, 55.9618945 -3.1951500, 55.9269151 -3.2467035, 55.9727826 -3.3512226, 55.9487803 -3.1950974, 55.9230657 -3.2475227, 55.9436516 -3.2079845, 55.9534174 -3.1955088, 55.9782920 -3.1800335, 55.9420689 -3.2954758, 55.9428183 -3.2938163, 55.9205723 -3.1672281, 55.9379137 -3.3141798, 55.9424726 -3.2928349, 55.9475057 -3.2948807, 55.9827935 -3.3988683, 55.9332260 -3.1067315 +48.8649421 2.2829335 +Église nouvelle Saint-Honoré d'Eylau and 48.8684100 2.2864027 +53 +49.3909631 8.7016171, 49.4064795 8.6918220, 49.4089660 8.6724358, 49.4093704 8.6694528, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4040432 8.6789769, 49.3967059 8.6771597, 49.4214832 8.6754845, 49.4222429 8.6632708, 49.4140422 8.6704577, 49.4135858 8.6925458, 49.4228639 8.6764796, 49.4080031 8.6948451, 49.4066316 8.6698002, 49.4187759 8.6518124, 49.4213087 8.7559845, 49.4274296 8.7499398, 49.4064148 8.6829502, 49.4075168 8.6823374, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4096879 8.6920076, 49.4092764 8.6965977, 49.3981873 8.7240534, 49.3852907 8.7099594, 49.3851124 8.7094749, 49.3850107 8.7103387, 49.3658579 8.7017579, 49.3873038 8.7530780, 49.4393137 8.6872204, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.3961482 8.6893926, 49.3812527 8.6805909, 49.3824770 8.6806146, 49.4132914 8.7081342, 49.4088903 8.6938003, 49.4126713 8.7118726, 49.4079250 8.6968388, 49.4124163 8.7017576, 49.4102465 8.6977902, 49.4186616 8.6453088, 49.4191927 8.6451544, 49.4186552 8.6479768, 49.4145019 8.7188097, 49.4160079 8.6527300, 49.3891220 8.7350663, 49.4108612 8.6928690, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4101694 8.6916552, 49.4062230 8.6893127, 49.4080954 8.6910116, 49.4070199 8.6810452, 49.4078155 8.6801715, 49.4081699 8.6801714, 49.4086991 8.6905430, 49.4072067 8.6789696, 49.4083342 8.6789231, 49.4088561 8.6818330, 49.4145805 8.6901438, 49.4184970 8.6911640, 49.4186633 8.6871792, 49.4035002 8.6810379, 49.4049652 8.6871845, 49.4156885 8.7217025, 49.4122130 8.6411554, 49.4119501 8.7000203, 49.4132187 8.7653935, 49.4096598 8.6875604, 49.4056131 8.6868331, 49.3834712 8.6608409, 49.4108200 8.6949938, 49.4110761 8.6917261, 49.3984302 8.6785250, 49.3746449 8.7037167, 49.4133505 8.7120800, 49.4138751 8.7153222, 49.4199653 8.6582181, 49.4263449 8.6614024, 49.4114202 8.6969720, 49.3708802 8.6232738, 49.4204769 8.7052380, 49.4221172 8.7055780, 49.4360737 8.6793655, 49.4329720 8.6805360, 49.4063251 8.6755799, 49.4372140 8.6797393, 49.4378001 8.6797566, 49.4405259 8.6652199, 49.4376306 8.6777982, 49.4376906 8.6382495, 49.4390127 8.6342324, 49.4259196 8.6392005, 49.4228908 8.6416101, 49.4287948 8.6836146, 49.4282796 8.6827973, 49.4047972 8.6739218, 49.4278804 8.6861552, 49.4082062 8.6763355, 49.4043425 8.6463902, 49.3798890 8.6777329, 49.4271018 8.6801686, 49.4098483 8.6605879, 49.4214767 8.6751246, 49.4157016 8.6528859, 49.4146237 8.6497864, 49.4188268 8.6440266, 49.4189470 8.6438987, 49.4189844 8.6459909, 49.4194808 8.6452628, 49.4204267 8.6756874, 49.4201046 8.6719577, 49.4203138 8.6703791, 49.4210841 8.6683206, 49.4200492 8.6683293, 49.4315265 8.6397474, 49.4149913 8.6535552, 49.4039134 8.6767400, 49.4058861 8.6897741, 49.4060206 8.6905436, 49.4061504 8.6912857, 49.4088332 8.6757532, 49.4034240 8.6790856, 49.4281720 8.6837347, 49.3965511 8.6771437, 49.4252379 8.6441041, 49.3935396 8.6817411, 49.3952870 8.6836845, 49.3958629 8.6832887, 49.4227238 8.6738472, 49.4162298 8.6755281, 49.4154291 8.6756221, 49.4145364 8.6757808, 49.4212459 8.6738490, 49.4210596 8.6732314, 49.4093831 8.6738552, 49.4089529 8.6602625, 49.4115623 8.6538584, 49.4132855 8.6517669, 49.4143102 8.6502249, 49.4316541 8.6450403, 49.4313242 8.6461047, 49.4234435 8.6409833, 49.4233100 8.6410792, 49.4239493 8.6417679, 49.4236187 8.6419798, 49.4167321 8.6742199, 49.4139089 8.6729704, 49.4135711 8.6685440, 49.4133710 8.6685603, 49.4229672 8.6628733, 49.4253832 8.6563505, 49.4244918 8.6574290, 49.4183168 8.6570383, 49.4129687 8.6642981, 49.4140561 8.6650241, 49.4194911 8.6655520, 49.4308516 8.6533759, 49.4306864 8.6534803, 49.4215359 8.6818834, 49.4188910 8.6769323, 49.4211075 8.6775566, 49.4211894 8.6670319, 49.4130810 8.6699968, 49.4134398 8.6714192, 49.4137439 8.6769747, 49.4155869 8.6784841, 49.4139913 8.6704329, 49.4136024 8.6776951, 49.3962000 8.7085445, 49.4234080 8.6595192, 49.4226921 8.6586119, 49.4229974 8.6608946, 49.4236303 8.6561909, 49.4240515 8.6571965, 49.4260202 8.6577463, 49.4200690 8.6616681, 49.4204248 8.6636381, 49.4194488 8.6605899, 49.4192298 8.6640734, 49.4175057 8.6611975, 49.4177856 8.6598202, 49.4162074 8.6584117, 49.4166299 8.6607801, 49.4140546 8.6667870, 49.4145234 8.6662068, 49.4337847 8.6803905, 49.4337620 8.6799996, 49.4135603 8.6745102, 49.4126377 8.6749116, 49.4063838 8.6765104, 49.4085613 8.6631372, 49.4062302 8.6697073, 49.3910080 8.6741013, 49.3913345 8.6763079, 49.3900958 8.6760409, 49.3966746 8.6792043, 49.3850197 8.6741885, 49.4188931 8.6520438, 49.4176786 8.7568038, 49.4174427 8.7569407, 49.4180751 8.7587556, 49.4192777 8.7566081, 49.4226110 8.7421281, 49.3956471 8.6433881, 49.4373949 8.6243093, 49.4122797 8.6422114, 49.4171569 8.6846986, 49.4162022 8.6847312, 49.4092092 8.6812299, 49.4081243 8.6917754, 49.4077406 8.6904605, 49.4072247 8.6518134, 49.4179566 8.6425794, 49.4208702 8.6400167, 49.4255068 8.6365369, 49.4255235 8.6391482, 49.4250577 8.6394699, 49.4247037 8.6403906, 49.4289421 8.6416397, 49.4279117 8.6424382, 49.4266397 8.6436737, 49.3978801 8.6820904, 49.3985527 8.6521355, 49.4028377 8.6472474, 49.3658723 8.6857452, 49.3768283 8.6892364, 49.3803262 8.7254433, 49.3848261 8.7330761, 49.4591437 8.7517850, 49.4242592 8.7437691, 49.3640196 8.7042365, 49.4173756 8.7606525, 49.4132295 8.7757064, 49.4090739 8.7026883, 49.4379341 8.6355167, 49.4368769 8.6375428, 49.4378331 8.6340499, 49.4380724 8.6364145, 49.4367065 8.6380751, 49.4336146 8.6429127, 49.4337427 8.6416185, 49.4310651 8.6431859, 49.4223148 8.6746219, 49.3855445 8.7101353, 49.3955620 8.7095700, 49.4254888 8.6894928, 49.4344969 8.6847782, 49.4335894 8.6853414, 49.4316276 8.7053393, 49.3762717 8.6811562, 49.3840303 8.7319662, 49.3674584 8.6818087, 49.3667510 8.6822513, 49.3912799 8.7348521, 49.3844874 8.7079169, 49.4348723 8.6798701, 49.4106260 8.7736249, 49.4084789 8.7749854, 49.4096676 8.7745973, 49.4095334 8.7745510, 49.4098505 8.7747042, 49.4080891 8.7753050, 49.4083774 8.7757304, 49.4080179 8.7726262, 49.4085339 8.7718738, 49.4096105 8.7716436, 49.4092528 8.7710028, 49.4095481 8.7715804, 49.4099675 8.7718266, 49.4075671 8.7731906, 49.4103044 8.7719162, 49.3608824 8.6865231, 49.3774963 8.6644366, 49.3783068 8.6644302, 49.3893649 8.6662793, 49.3911203 8.6725794, 49.3608741 8.6878660, 49.3779232 8.6642931, 49.3872918 8.7341917, 49.3872364 8.7346514, 49.3871999 8.7349917, 49.4121422 8.7045081, 49.4088000 8.6984868, 49.3814817 8.6779564, 49.3814977 8.6777918, 49.3783015 8.6783409, 49.3989016 8.6746355, 49.4069892 8.6573118, 49.4395485 8.6274097, 49.4038660 8.6717206, 49.4102258 8.6449740, 49.4326600 8.6805997, 49.4277051 8.6823985, 49.4070420 8.6761280, 49.4262545 8.6874841, 49.3742388 8.6142440, 49.4186852 8.6638016, 49.4063560 8.6836519, 49.3768893 8.6944349, 49.3789415 8.6315668, 49.3795291 8.6296406, 49.3809089 8.6292200, 49.3816994 8.6338065, 49.3824332 8.6325032, 49.3803611 8.6327538, 49.3709046 8.6267823, 49.3808692 8.6779525, 49.4287155 8.6446215, 49.4135814 8.6490096, 49.4147938 8.6365486, 49.3966514 8.6718493, 49.3876649 8.6616646, 49.3890461 8.6840215, 49.4017367 8.6821163, 49.3968926 8.6802735, 49.4021904 8.6790167, 49.4237056 8.6475076, 49.4041352 8.6479584, 49.4154951 8.7332007, 49.4025929 8.6757151, 49.3552099 8.6265645, 49.4150598 8.7727094, 49.4045783 8.6829102, 49.4096951 8.6835813, 49.4093258 8.6843524, 49.3980621 8.7294523, 49.3725258 8.6835334, 49.4083901 8.6511890, 49.3920857 8.6526205, 49.3917052 8.6539344, 49.3918943 8.6540133, 49.3921200 8.6532604, 49.3917059 8.6542576, 49.4092038 8.7122223, 49.3960044 8.6709715, 49.3949788 8.6699146, 49.3960436 8.6718019, 49.3962304 8.6722292, 49.3957517 8.6718870, 49.3953878 8.6756074, 49.4097966 8.7064065, 49.4084468 8.7003941, 49.4152843 8.7204818, 49.3732176 8.7472812, 49.3813905 8.7643802, 49.3839185 8.7575944, 49.3923472 8.7466824, 49.3875208 8.7503390, 49.3894532 8.7370456, 49.3895678 8.7370642, 49.3892768 8.7345923, 49.3763693 8.6786037, 49.3743158 8.6653093, 49.4033414 8.7287167, 49.3660992 8.6836946, 49.3667671 8.6829203, 49.3967792 8.7245614, 49.3751983 8.6822853, 49.3748496 8.6823310, 49.3748601 8.6802550, 49.3740330 8.6823974, 49.4009150 8.7298557, 49.4007196 8.7297407, 49.4035389 8.7279297, 49.4026240 8.7278681, 49.4010872 8.7131843, 49.4094204 8.7462519, 49.3869006 8.6646067, 49.4026441 8.7802131, 49.3724384 8.6788819, 49.3733706 8.6798275, 49.3734520 8.6794397, 49.3734573 8.6772872, 49.3750322 8.6781318, 49.3761353 8.6779495, 49.3742557 8.6782780, 49.3748097 8.6779817, 49.3750429 8.6784800, 49.3743359 8.6792464, 49.4047494 8.6753390, 49.4010237 8.6542634, 49.4185616 8.6687042, 49.3961629 8.6968177, 49.3949506 8.7165457, 49.4056935 8.6753617, 49.3748682 8.6806324, 49.3757650 8.6783828, 49.3745216 8.6786266, 49.3804111 8.6763117, 49.3802672 8.6770459, 49.3938241 8.6885892, 49.3770953 8.6659476, 49.4218342 8.7455830, 49.3763084 8.6806674, 49.3925736 8.6762381, 49.3878242 8.6663099, 49.3865054 8.6978078, 49.3870220 8.6985183, 49.3924188 8.7407366, 49.3967229 8.7250259, 49.4247929 8.6422301, 49.4098176 8.7062855, 49.4085106 8.7758557, 49.3958169 8.6851383, 49.4132893 8.6956239, 49.4085000 8.6939571, 49.4078262 8.6941716, 49.4096788 8.7079007, 49.4096785 8.7074005, 49.4101311 8.6910837, 49.4101822 8.6884713, 49.4099175 8.6890057, 49.4169024 8.6774545, 49.4170457 8.6775259, 49.4134444 8.6918647, 49.4082046 8.6830699, 49.4088779 8.6792701, 49.4080222 8.6834597, 49.4090566 8.6852681, 49.4092900 8.6865331, 49.4086943 8.6845447, 49.4017089 8.6846814, 49.4079604 8.6841153, 49.4083191 8.6856688, 49.4080645 8.6851672, 49.4073436 8.6889011, 49.4069433 8.6836102, 49.4063023 8.6913206, 49.4063263 8.6908480, 49.4114775 8.7195875, 49.4090814 8.7182703, 49.4086229 8.7202663, 49.4033869 8.7279290, 49.4142260 8.7704357, 49.3894370 8.6884317, 49.3895530 8.6884195, 49.4183417 8.6445113, 49.4151056 8.6533976, 49.4000215 8.6915677, 49.4070728 8.7039593, 49.4057605 8.7102504, 49.4069654 8.7032895, 49.4051156 8.7101114, 49.3967708 8.6950821, 49.4100264 8.7102106, 49.4133774 8.7093673, 49.4104648 8.7110643, 49.4090884 8.7121174, 49.4145963 8.7424363, 49.4146285 8.7415734, 49.4158248 8.7336485, 49.4159290 8.7336568, 49.4208144 8.7400015, 49.4202707 8.7392359, 49.4195583 8.7389992, 49.3966895 8.6864231, 49.3675101 8.6831306, 49.3862241 8.7044324, 49.4089685 8.7125699, 49.3907835 8.7032534, 49.3914706 8.7026871, 49.3806555 8.7065541, 49.4157208 8.7418677, 49.4156600 8.7430138, 49.4152079 8.7442967, 49.4071432 8.7078562, 49.4088934 8.7133144, 49.4115392 8.7128522, 49.4105472 8.7780302, 49.4208463 8.6738282, 49.4171772 8.7603354, 49.4178582 8.7604307, 49.4131989 8.7239585, 49.4058690 8.6604558, 49.4048929 8.6675943, 49.4148153 8.6642766, 49.4079515 8.6376494, 49.3774547 8.7085656, 49.3762592 8.7055890, 49.4119166 8.6961489, 49.4317346 8.7061263, 49.3951217 8.6436838, 49.4322270 8.6909619, 49.4124413 8.7456969, 49.4150047 8.7453868, 49.4147956 8.7444452, 49.4143823 8.7483441, 49.4232907 8.7529822, 49.3756772 8.6859026, 49.3743793 8.6854003, 49.4181519 8.7605105, 49.4165526 8.6912073, 49.3625227 8.7053511, 49.4277972 8.6793663, 49.4186343 8.6608593, 49.3745870 8.6933185, 49.3745512 8.6931398, 49.4141951 8.6773802, 49.4131983 8.6501872, 49.4256553 8.7393946, 49.4076774 8.6896431, 49.4075308 8.6897346, 49.4190729 8.6890667, 49.4187521 8.6903307, 49.4187110 8.6904478, 49.4159739 8.6732323, 49.4067994 8.6931128, 49.4067874 8.6935163, 49.4070263 8.6953186, 49.4088402 8.7022464, 49.4086281 8.7004350, 49.4083266 8.6988134, 49.4084032 8.6992511, 49.4086930 8.7008503, 49.4082856 8.6993919, 49.4400488 8.6895399, 49.4126031 8.7205963, 49.4123897 8.7201796, 49.4108875 8.7198273, 49.4121174 8.7199537, 49.3603818 8.6878989, 49.3600563 8.6882539, 49.3628080 8.6883118, 49.3631708 8.6882854, 49.3933484 8.7760935, 49.4211179 8.6800477, 49.4210927 8.6788357, 49.3822054 8.6779650, 49.4155910 8.6745461, 49.4170433 8.6458718, 49.3846497 8.6817785, 49.3846976 8.6847175, 49.3844191 8.6849082, 49.3847543 8.6816927, 49.3845422 8.6811475, 49.3844361 8.6812945, 49.3844812 8.6833063, 49.3843655 8.6831352, 49.3844693 8.6838984, 49.3847140 8.6828075, 49.3846153 8.6826858, 49.3916379 8.6832393, 49.4030467 8.6777744, 49.4081347 8.6490831, 49.4246394 8.6387347, 49.4092190 8.6404481, 49.4055522 8.6437619, 49.4094106 8.6390237, 49.4030705 8.6445930, 49.4048859 8.6407136, 49.4028534 8.6414838, 49.4054385 8.6407094, 49.4039477 8.6409153, 49.4053038 8.6446041, 49.3564840 8.7059999, 49.4104659 8.6372089, 49.4129533 8.6375987, 49.4022627 8.6383494, 49.4023560 8.6416227, 49.4279195 8.6840395, 49.4266417 8.6834045, 49.4149614 8.7627536, 49.4147153 8.7636838, 49.4148588 8.7631440, 49.4151372 8.7619776, 49.3819023 8.6610923, 49.4067406 8.6760466, 49.4209716 8.7395001, 49.4148681 8.7627574, 49.4177775 8.7408198, 49.4179019 8.7409040, 49.4210951 8.7398188, 49.4178687 8.7405082, 49.4150957 8.7621532, 49.4151231 8.7620372, 49.4150216 8.7723676, 49.4051851 8.7806376, 49.4094999 8.7187995, 49.4111655 8.7708208, 49.4112671 8.7706090, 49.4105710 8.7718536, 49.3741369 8.6601792, 49.3761483 8.6586686, 49.3759252 8.6577043, 49.3758479 8.6580990, 49.3813055 8.6605630, 49.3970019 8.6746884, 49.3670694 8.7066732, 49.3730737 8.6870049, 49.3744052 8.6641024, 49.3812274 8.6633431, 49.3835356 8.6668475, 49.3837115 8.6668223, 49.3839082 8.6668065, 49.3832557 8.6668961, 49.3834049 8.6789517, 49.3844996 8.6647503, 49.3815326 8.6607340, 49.4132859 8.6908940, 49.4155322 8.6699617, 49.4068263 8.6680762, 49.4072646 8.6691321, 49.4072916 8.6693315, 49.4049477 8.7776001, 49.4064182 8.7775809, 49.4132935 8.6911529, 49.4161156 8.6703451, 49.4159611 8.6705524, 49.4161026 8.6692956, 49.4113226 8.6592808, 49.3646064 8.7060731, 49.4131958 8.7122978, 49.4117341 8.6467543, 49.4161732 8.7555546, 49.4160191 8.6700610, 49.4161314 8.6706351, 49.4187135 8.7240892, 49.4182654 8.7234671, 49.4063399 8.6900996, 49.4063668 8.6902286, 49.4065511 8.6906922, 49.4056965 8.6856838, 49.3914904 8.6905020, 49.4446785 8.7641829, 49.4000181 8.6782987, 49.3931737 8.6788679, 49.4197733 8.6455869, 49.3816319 8.6588060, 49.3818822 8.6587490, 49.4198205 8.7343539, 49.4101553 8.6911774, 49.4066779 8.7141416, 49.4113423 8.7195551, 49.4110748 8.7197211, 49.3945690 8.6743519, 49.3943175 8.6754654, 49.3973820 8.6940966, 49.3987446 8.6923402, 49.3986523 8.6924283, 49.3972671 8.6941625, 49.3799065 8.7239334, 49.4275954 8.6823123, 49.3963113 8.6748861, 49.4264733 8.7602041, 49.3916824 8.6702885, 49.4237291 8.6461040, 49.4383671 8.7404676, 49.4373853 8.7411725, 49.4014026 8.6800343, 49.4166596 8.6925736, 49.4124274 8.7117362, 49.4274540 8.6971831, 49.4278787 8.6910220, 49.4036097 8.6814705, 49.4068513 8.7741286, 49.4089598 8.7753014, 49.4098482 8.7727462, 49.4097413 8.7748414, 49.4090822 8.7715798, 49.4084225 8.7720223, 49.4103070 8.7730431, 49.4101172 8.7731558, 49.4284212 8.6802828, 49.4587266 8.7510591, 49.3759317 8.6579426, 49.3916964 8.6675353, 49.4438944 8.7593506, 49.4439646 8.7584327, 49.4135373 8.6724241, 49.3898829 8.7370634, 49.3903181 8.7378228, 49.4128834 8.7053652, 49.3697468 8.7054575, 49.3738556 8.7059603, 49.3738641 8.7062020, 49.4160234 8.6600287, 49.4025607 8.6761200, 49.4096861 8.6914112, 49.4035317 8.6460205, 49.4031521 8.6452664, 49.4004010 8.6986103, 49.3966624 8.6785518, 49.3976810 8.6780375, 49.3973402 8.6783701, 49.3972673 8.6784981, 49.3971957 8.6786302, 49.3971215 8.6787583, 49.3970486 8.6788777, 49.3979602 8.6788301, 49.3978718 8.6789173, 49.4106247 8.7042757, 49.4066626 8.6939736, 49.4088130 8.7065871, 49.3675122 8.6841701, 49.4210933 8.7038394, 49.4030621 8.7276422, 49.4023293 8.7276702, 49.4130005 8.6887393 +2080 +49.3967496 8.6929283, 49.3758602 8.6941971, 49.4014041 8.6551906, 49.3924724 8.6994716, 49.3743420 8.6581351 +53.3319610 10.4398412, 53.3260626 10.4620972, 53.3271011 10.4588956, 53.3273695 10.4580341, 53.3289883 10.4535116, 53.3293350 10.4543020, 53.3299844 10.4512449, 53.3304208 10.4526393, 53.3306855 10.4502582, 53.3308572 10.4515559, 53.3312651 10.4504954, 53.3315607 10.4523776, 53.3322887 10.4472060, 53.3333269 10.4480161 +55.9536238 -3.2048494, 55.9555985 -3.1886444, 55.9274489 -3.2091168, 55.9502944 -3.1837408, 55.9538164 -3.1996783, 55.9522492 -3.2005426, 55.9519418 -3.2014042 +0 +yes +1 +yes +no +Theater im Kulturzentrum Karlstorbahnhof, Städtische Bühne, Theater und Philharmonisches Orchester, Zwinger1 und Zwinger3 +55.9370396 -3.1787450, 55.9818728 -3.3731190, 55.8966045 -3.3087404, 55.9385614 -3.1040020, 55.9468901 -3.1364489, 55.9268574 -3.2089248, 55.9781491 -3.1930844, 55.9373031 -3.2494985, 55.9650659 -3.2695228, 55.9313511 -3.2524977, 55.9094475 -3.2331028, 55.9497063 -3.1833447, 55.9435848 -3.2191643, 55.9374270 -3.2345667, 55.9345081 -3.1227754, 55.9429636 -3.2899680, 55.9426468 -3.2800495, 55.9654324 -3.1550862, 55.9560338 -3.4034937, 55.9397228 -3.2201715, 55.9721574 -3.2632148, 55.9713670 -3.2529113, 55.9135865 -3.1358664, 55.9535517 -3.1141391, 55.9534137 -3.2961564, 55.9085287 -3.2095473, 55.9327621 -3.1376599, 55.9119230 -3.1635497, 55.9391525 -3.4055165, 55.9217585 -3.3820776, 55.8835896 -3.3387395, 55.9532918 -3.2008836, 55.9763771 -3.1661542, 55.9264851 -3.2464048, 55.9672796 -3.2454147, 55.9592253 -3.2129434, 55.9073484 -3.2575010, 55.9669716 -3.1745593, 55.9725304 -3.1753943, 55.9245781 -3.2764272, 55.9573540 -3.2494949, 55.9623670 -3.1996983, 55.9436486 -3.1175019, 55.9342633 -3.2768558, 55.9196988 -3.2952545, 55.9467290 -3.2153860, 55.9220580 -3.1538560, 55.9615113 -3.3057885, 55.9283784 -3.2791498, 55.9237183 -3.2367632, 55.9368144 -3.2072231, 55.9012634 -3.1566868, 55.9744305 -3.1846747, 55.9425068 -3.1827300, 55.9458687 -3.1913239, 55.9513520 -3.2049738, 55.9527120 -3.1911888, 55.9429241 -3.2034274, 55.9588905 -3.1831161, 55.9563594 -3.1380651, 55.9061591 -3.1333593, 55.9894876 -3.3987581, 55.9751151 -3.2193081, 55.9747107 -3.2382500, 55.9763561 -3.2451182, 55.9573948 -3.1710345, 55.9058521 -3.2220302, 55.9046398 -3.1329007, 55.9274742 -3.1872251 +48.8464653 2.2801018, 48.9007525 2.3748724, 48.8519985 2.2908966, 48.8936152 2.3152934, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.8380740 2.3312952, 48.8449642 2.2715165, 48.8532253 2.3080493, 48.8720375 2.2998901, 48.8738003 2.2922634, 48.8751861 2.3096416, 48.8380740 2.3312952, 48.8449642 2.2715165, 48.8532253 2.3080493, 48.8720375 2.2998901, 48.8738003 2.2922634, 48.8751861 2.3096416, 48.8941507 2.3733344, 48.8679452 2.4057911, 48.8711283 2.4085012, 48.8565470 2.3790561, 48.8457849 2.4008634, 48.8414869 2.3732320, 48.8350223 2.3575595, 48.9000199 2.3292825, 48.8997229 2.3300618 +49.3819891 8.7064791, 49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.3696474 8.7091898, 49.4157261 8.7004521, 49.4532799 8.7620678, 49.3877298 8.7446960, 49.4209333 8.7223854, 49.3946455 8.7166681, 49.4221949 8.7060036, 49.4157681 8.7006398, 49.4052183 8.7807063, 49.4390162 8.7105044, 49.4210179 8.7198036, 49.4272716 8.7035465, 49.4305777 8.6928339, 49.4497133 8.7157120, 49.4428768 8.7011414, 49.4300341 8.7265054, 49.4040547 8.7550178, 49.3925114 8.7464235, 49.3936499 8.7467333, 49.4005231 8.7520710, 49.4095083 8.7002566, 49.4109969 8.7018271, 49.4103323 8.7353954 +10 +no +55.9782920 -3.1800335 +55.9509120 -3.1684417, 55.9505684 -3.1636997, 55.9409571 -3.1518694, 55.9414904 -3.1501988, 55.9414101 -3.1510969, 55.9303650 -3.2001800 +48.8484038 2.3977491, 48.8512856 2.2781094, 48.8467839 2.2854077, 48.8332389 2.3329284, 48.8526288 2.3385336, 48.8925057 2.3450965, 48.8536039 2.3444118, 48.8515050 2.3430786, 48.8473294 2.3412516, 48.8312038 2.3565530, 48.8806072 2.3538936, 48.8347711 2.3321841, 48.8278860 2.3709325, 48.8695890 2.2848365, 48.8581077 2.3801470, 48.8317286 2.3137879, 48.8668650 2.2788566, 48.8697674 2.2857979, 48.8424148 2.4052197, 48.8448799 2.3727316, 48.8815590 2.3150046, 48.8903495 2.3201315, 48.8941941 2.3135794, 48.8704998 2.3049572, 48.8854539 2.2915179, 48.8898626 2.3035373, 48.8774012 2.4069914, 48.8980267 2.3289128, 48.8844761 2.2976487, 48.8584436 2.3037809, 48.8795960 2.3896580, 48.8827367 2.3814655, 48.8420110 2.3206428, 48.8615010 2.3537550, 48.8645112 2.3981788, 48.8798173 2.3215782, 48.8747412 2.3049062, 48.8700986 2.3070512, 48.8687272 2.2986811, 48.8764317 2.3015489, 48.8748073 2.2956078, 48.8679763 2.2954876, 48.8666447 2.2899845, 48.8714962 2.2934996, 48.8659060 2.2863973, 48.8634029 2.2863046, 48.8617450 2.2859062, 48.8586868 2.2849457, 48.8482990 2.2647021, 48.8776228 2.3708847, 48.8780030 2.3781296, 48.8873966 2.3492159, 48.8831639 2.3275572, 48.8374622 2.2575596, 48.8527859 2.4060423, 48.8764243 2.3592623, 48.8663059 2.3244457, 48.8579055 2.3100803, 48.8655795 2.3559318, 48.8473587 2.3122933, 48.8766198 2.3392717, 48.8832546 2.3471915, 48.8460393 2.3780826, 48.8383701 2.3607602, 48.8320548 2.3861467, 48.8432250 2.4013484, 48.8226361 2.3257162, 48.8429514 2.3751858, 48.8597360 2.3466694, 48.8606298 2.3466023, 48.8445008 2.4411062, 48.8502906 2.3928948, 48.8715042 2.3426369, 48.8721397 2.3393564, 48.8538475 2.3325263, 48.8975838 2.3287233, 48.8937759 2.3363457, 48.8391806 2.3825585, 48.8672161 2.3065357, 48.8652369 2.3013632, 48.8616106 2.3019528, 48.8622551 2.3149819, 48.8538751 2.3124512, 48.8650500 2.3013405, 48.8541706 2.3068705, 48.8699915 2.3014172, 48.8713160 2.3009696, 48.8756033 2.3260400, 48.8630530 2.3526294, 48.8462434 2.3767506, 48.8793033 2.3034301, 48.8682598 2.4015540, 48.8567698 2.3537979, 48.8257810 2.3469176, 48.8600781 2.3465254, 48.8325620 2.3618635, 48.8284670 2.3264398, 48.8666879 2.3641696, 48.8679052 2.3646802, 48.8679443 2.3620076, 48.8606611 2.3260607, 48.8307729 2.3768467, 48.8494789 2.3371871, 48.8521348 2.3393496, 48.8772711 2.3269492, 48.8764858 2.3319975, 48.8846924 2.3795882, 48.8306144 2.2924114, 48.8767391 2.3608267, 48.8643491 2.2725788, 48.8982278 2.3591507, 48.8607328 2.3456697, 48.8236433 2.3530302, 48.8643981 2.3303564, 48.8891585 2.3938039, 48.8577770 2.3473733, 48.8634279 2.3351782, 48.8680916 2.3299623, 48.8691985 2.3546294, 48.8659300 2.3408572, 48.8662586 2.3612125, 48.8553209 2.3603751, 48.8369707 2.3521360, 48.8500790 2.3487204, 48.8432193 2.3520318, 48.8498863 2.3550274, 48.8434713 2.3236014, 48.8530282 2.3354092, 48.8402189 2.3365313, 48.8505206 2.3272579, 48.8512092 2.3331634, 48.8390765 2.3825241, 48.8795760 2.3490326, 48.8705443 2.3327006, 48.8383042 2.3198337, 48.8674579 2.3471327, 48.8312696 2.3876594, 48.8739447 2.3858048, 48.8586994 2.3420105, 48.8774490 2.3940074, 48.8698623 2.3116804, 48.8773384 2.2845223, 48.8196076 2.3652124, 48.8507063 2.3842333, 48.8499085 2.2830749, 48.8374271 2.2573332, 48.8449422 2.3117076 +Säulenweg, Speyerer Straße, Speyerer Straße, Eppelheimer Straße, Eppelheimer Straße, Eppelheimer Straße, Traumannswald, Franz-Knauff-Straße, Blumenstraße, Carl-Benz-Straße, Langlachweg, Langlachweg, Mannheimer Straße, Carl-Benz-Straße, Carl-Benz-Straße, Am Ochsenhorn, Englerstraße, Englerstraße, Mannheimer Straße, Markircher Straße, Langlachweg, Alte Mannheimer Landstraße, In der Gabel, In der Gabel, Neckarhauser Straße, Ruhrorter Straße, Wichernstraße, Traumannswald, Mannheimer Straße, Bürgermeister-Helmling-Straße, Friedrichstraße, Bruchhäuser Straße, Rudolf-Diesel-Straße, Wieblinger Weg, Elsa-Brändström-Straße +49.4083031 8.6962179 +Le B.H.V. and Mo-Fr 08:00-20:00, Sa 10:00-20:00, Les Brassins de Saint-Malo, Le Ziggy, Brasserie An Alarc'h, Bosco, Le Korrigan, Le Petit Refuge, Brasserie Artisanale "D'istribilh", Philomenn - Brasserie Artisanale, Bar de la Place and Lu 8:00-20:00, Ma 8:00-20:00, Me 8:00-20:00, Je 8:00-20:00, Ve 8:00-20:00, Sa 8:00-20:00, +Burger King +48.8794220 2.3546823 +55.9232575 -3.2877434, 55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9579565 -3.2439627, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9372727 -3.3656602, 55.9344345 -3.1791228, 55.9377502 -3.4029754, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9365550 -3.3142140, 55.9826346 -3.1875882, 55.9247496 -3.2493835, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9297028 -3.2566262, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9694813 -3.2293505, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9447450 -3.3593706, 55.9781076 -3.1743896, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9243498 -3.2526320, 55.9835994 -3.3988708, 55.9397193 -3.2934475 +46 +48.8375550 2.3183632, 48.8275755 2.3065523, 48.8358842 2.3867689, 48.8541336 2.3057378, 48.8396227 2.3212958, 48.8587994 2.2848408, 48.8506951 2.3463689 +49.4064795 8.6918220, 49.4089660 8.6724358, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4040432 8.6789769, 49.4214832 8.6754845, 49.4140422 8.6704577, 49.4228639 8.6764796, 49.4080031 8.6948451, 49.4187759 8.6518124, 49.4064148 8.6829502, 49.4075168 8.6823374, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.4124163 8.7017576, 49.4186616 8.6453088, 49.4191927 8.6451544, 49.4186552 8.6479768, 49.4108612 8.6928690, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4101694 8.6916552, 49.4119501 8.7000203, 49.4096598 8.6875604, 49.4056131 8.6868331, 49.4108200 8.6949938, 49.4138751 8.7153222, 49.3962000 8.7085445, 49.4174427 8.7569407, 49.4088000 8.6984868, 49.4154951 8.7332007, 49.4093258 8.6843524, 49.3748097 8.6779817, 49.4056935 8.6753617, 49.4073436 8.6889011 +49.3909631 8.7016171, 49.4064795 8.6918220, 49.4089660 8.6724358, 49.4093704 8.6694528, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4040432 8.6789769, 49.3967059 8.6771597, 49.4214832 8.6754845, 49.4222429 8.6632708, 49.4140422 8.6704577, 49.4135858 8.6925458, 49.4228639 8.6764796, 49.4080031 8.6948451, 49.4066316 8.6698002, 49.4187759 8.6518124, 49.4213087 8.7559845, 49.4274296 8.7499398, 49.4064148 8.6829502, 49.4075168 8.6823374, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4096879 8.6920076, 49.4092764 8.6965977, 49.3981873 8.7240534, 49.3852907 8.7099594, 49.3851124 8.7094749, 49.3850107 8.7103387, 49.3658579 8.7017579, 49.3873038 8.7530780, 49.4393137 8.6872204, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.3961482 8.6893926, 49.3812527 8.6805909, 49.3824770 8.6806146, 49.4132914 8.7081342, 49.4088903 8.6938003, 49.4126713 8.7118726, 49.4079250 8.6968388, 49.4124163 8.7017576, 49.4102465 8.6977902, 49.4186616 8.6453088, 49.4191927 8.6451544, 49.4186552 8.6479768, 49.4145019 8.7188097, 49.4160079 8.6527300, 49.3891220 8.7350663, 49.4108612 8.6928690, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4101694 8.6916552, 49.4062230 8.6893127, 49.4080954 8.6910116, 49.4070199 8.6810452, 49.4078155 8.6801715, 49.4081699 8.6801714, 49.4086991 8.6905430, 49.4072067 8.6789696, 49.4083342 8.6789231, 49.4088561 8.6818330, 49.4145805 8.6901438, 49.4184970 8.6911640, 49.4186633 8.6871792, 49.4035002 8.6810379, 49.4049652 8.6871845, 49.4156885 8.7217025, 49.4122130 8.6411554, 49.4119501 8.7000203, 49.4132187 8.7653935, 49.4096598 8.6875604, 49.4056131 8.6868331, 49.3834712 8.6608409, 49.4108200 8.6949938, 49.4110761 8.6917261, 49.3984302 8.6785250, 49.3746449 8.7037167, 49.4133505 8.7120800, 49.4138751 8.7153222, 49.4199653 8.6582181, 49.4263449 8.6614024, 49.4114202 8.6969720, 49.3708802 8.6232738, 49.4204769 8.7052380, 49.4221172 8.7055780, 49.4360737 8.6793655, 49.4329720 8.6805360, 49.4063251 8.6755799, 49.4372140 8.6797393, 49.4378001 8.6797566, 49.4405259 8.6652199, 49.4376306 8.6777982, 49.4376906 8.6382495, 49.4390127 8.6342324, 49.4259196 8.6392005, 49.4228908 8.6416101, 49.4287948 8.6836146, 49.4282796 8.6827973, 49.4047972 8.6739218, 49.4278804 8.6861552, 49.4082062 8.6763355, 49.4043425 8.6463902, 49.3798890 8.6777329, 49.4271018 8.6801686, 49.4098483 8.6605879, 49.4214767 8.6751246, 49.4157016 8.6528859, 49.4146237 8.6497864, 49.4188268 8.6440266, 49.4189470 8.6438987, 49.4189844 8.6459909, 49.4194808 8.6452628, 49.4204267 8.6756874, 49.4201046 8.6719577, 49.4203138 8.6703791, 49.4210841 8.6683206, 49.4200492 8.6683293, 49.4315265 8.6397474, 49.4149913 8.6535552, 49.4039134 8.6767400, 49.4058861 8.6897741, 49.4060206 8.6905436, 49.4061504 8.6912857, 49.4088332 8.6757532, 49.4034240 8.6790856, 49.4281720 8.6837347, 49.3965511 8.6771437, 49.4252379 8.6441041, 49.3935396 8.6817411, 49.3952870 8.6836845, 49.3958629 8.6832887, 49.4227238 8.6738472, 49.4162298 8.6755281, 49.4154291 8.6756221, 49.4145364 8.6757808, 49.4212459 8.6738490, 49.4210596 8.6732314, 49.4093831 8.6738552, 49.4089529 8.6602625, 49.4115623 8.6538584, 49.4132855 8.6517669, 49.4143102 8.6502249, 49.4316541 8.6450403, 49.4313242 8.6461047, 49.4234435 8.6409833, 49.4233100 8.6410792, 49.4239493 8.6417679, 49.4236187 8.6419798, 49.4167321 8.6742199, 49.4139089 8.6729704, 49.4135711 8.6685440, 49.4133710 8.6685603, 49.4229672 8.6628733, 49.4253832 8.6563505, 49.4244918 8.6574290, 49.4183168 8.6570383, 49.4129687 8.6642981, 49.4140561 8.6650241, 49.4194911 8.6655520, 49.4308516 8.6533759, 49.4306864 8.6534803, 49.4215359 8.6818834, 49.4188910 8.6769323, 49.4211075 8.6775566, 49.4211894 8.6670319, 49.4130810 8.6699968, 49.4134398 8.6714192, 49.4137439 8.6769747, 49.4155869 8.6784841, 49.4139913 8.6704329, 49.4136024 8.6776951, 49.3962000 8.7085445, 49.4234080 8.6595192, 49.4226921 8.6586119, 49.4229974 8.6608946, 49.4236303 8.6561909, 49.4240515 8.6571965, 49.4260202 8.6577463, 49.4200690 8.6616681, 49.4204248 8.6636381, 49.4194488 8.6605899, 49.4192298 8.6640734, 49.4175057 8.6611975, 49.4177856 8.6598202, 49.4162074 8.6584117, 49.4166299 8.6607801, 49.4140546 8.6667870, 49.4145234 8.6662068, 49.4337847 8.6803905, 49.4337620 8.6799996, 49.4135603 8.6745102, 49.4126377 8.6749116, 49.4063838 8.6765104, 49.4085613 8.6631372, 49.4062302 8.6697073, 49.3910080 8.6741013, 49.3913345 8.6763079, 49.3900958 8.6760409, 49.3966746 8.6792043, 49.3850197 8.6741885, 49.4188931 8.6520438, 49.4176786 8.7568038, 49.4174427 8.7569407, 49.4180751 8.7587556, 49.4192777 8.7566081, 49.4226110 8.7421281, 49.3956471 8.6433881, 49.4373949 8.6243093, 49.4122797 8.6422114, 49.4171569 8.6846986, 49.4162022 8.6847312, 49.4092092 8.6812299, 49.4081243 8.6917754, 49.4077406 8.6904605, 49.4072247 8.6518134, 49.4179566 8.6425794, 49.4208702 8.6400167, 49.4255068 8.6365369, 49.4255235 8.6391482, 49.4250577 8.6394699, 49.4247037 8.6403906, 49.4289421 8.6416397, 49.4279117 8.6424382, 49.4266397 8.6436737, 49.3978801 8.6820904, 49.3985527 8.6521355, 49.4028377 8.6472474, 49.3658723 8.6857452, 49.3768283 8.6892364, 49.3803262 8.7254433, 49.3848261 8.7330761, 49.4591437 8.7517850, 49.4242592 8.7437691, 49.3640196 8.7042365, 49.4173756 8.7606525, 49.4132295 8.7757064, 49.4090739 8.7026883, 49.4379341 8.6355167, 49.4368769 8.6375428, 49.4378331 8.6340499, 49.4380724 8.6364145, 49.4367065 8.6380751, 49.4336146 8.6429127, 49.4337427 8.6416185, 49.4310651 8.6431859, 49.4223148 8.6746219, 49.3855445 8.7101353, 49.3955620 8.7095700, 49.4254888 8.6894928, 49.4344969 8.6847782, 49.4335894 8.6853414, 49.4316276 8.7053393, 49.3762717 8.6811562, 49.3840303 8.7319662, 49.3674584 8.6818087, 49.3667510 8.6822513, 49.3912799 8.7348521, 49.3844874 8.7079169, 49.4348723 8.6798701, 49.4106260 8.7736249, 49.4084789 8.7749854, 49.4096676 8.7745973, 49.4095334 8.7745510, 49.4098505 8.7747042, 49.4080891 8.7753050, 49.4083774 8.7757304, 49.4080179 8.7726262, 49.4085339 8.7718738, 49.4096105 8.7716436, 49.4092528 8.7710028, 49.4095481 8.7715804, 49.4099675 8.7718266, 49.4075671 8.7731906, 49.4103044 8.7719162, 49.3608824 8.6865231, 49.3774963 8.6644366, 49.3783068 8.6644302, 49.3893649 8.6662793, 49.3911203 8.6725794, 49.3608741 8.6878660, 49.3779232 8.6642931, 49.3872918 8.7341917, 49.3872364 8.7346514, 49.3871999 8.7349917, 49.4121422 8.7045081, 49.4088000 8.6984868, 49.3814817 8.6779564, 49.3814977 8.6777918, 49.3783015 8.6783409, 49.3989016 8.6746355, 49.4069892 8.6573118, 49.4395485 8.6274097, 49.4038660 8.6717206, 49.4102258 8.6449740, 49.4326600 8.6805997, 49.4277051 8.6823985, 49.4070420 8.6761280, 49.4262545 8.6874841, 49.3742388 8.6142440, 49.4186852 8.6638016, 49.4063560 8.6836519, 49.3768893 8.6944349, 49.3789415 8.6315668, 49.3795291 8.6296406, 49.3809089 8.6292200, 49.3816994 8.6338065, 49.3824332 8.6325032, 49.3803611 8.6327538, 49.3709046 8.6267823, 49.3808692 8.6779525, 49.4287155 8.6446215, 49.4135814 8.6490096, 49.4147938 8.6365486, 49.3966514 8.6718493, 49.3876649 8.6616646, 49.3890461 8.6840215, 49.4017367 8.6821163, 49.3968926 8.6802735, 49.4021904 8.6790167, 49.4237056 8.6475076, 49.4041352 8.6479584, 49.4154951 8.7332007, 49.4025929 8.6757151, 49.3552099 8.6265645, 49.4150598 8.7727094, 49.4045783 8.6829102, 49.4096951 8.6835813, 49.4093258 8.6843524, 49.3980621 8.7294523, 49.3725258 8.6835334, 49.4083901 8.6511890, 49.3920857 8.6526205, 49.3917052 8.6539344, 49.3918943 8.6540133, 49.3921200 8.6532604, 49.3917059 8.6542576, 49.4092038 8.7122223, 49.3960044 8.6709715, 49.3949788 8.6699146, 49.3960436 8.6718019, 49.3962304 8.6722292, 49.3957517 8.6718870, 49.3953878 8.6756074, 49.4097966 8.7064065, 49.4084468 8.7003941, 49.4152843 8.7204818, 49.3732176 8.7472812, 49.3813905 8.7643802, 49.3839185 8.7575944, 49.3923472 8.7466824, 49.3875208 8.7503390, 49.3894532 8.7370456, 49.3895678 8.7370642, 49.3892768 8.7345923, 49.3763693 8.6786037, 49.3743158 8.6653093, 49.4033414 8.7287167, 49.3660992 8.6836946, 49.3667671 8.6829203, 49.3967792 8.7245614, 49.3751983 8.6822853, 49.3748496 8.6823310, 49.3748601 8.6802550, 49.3740330 8.6823974, 49.4009150 8.7298557, 49.4007196 8.7297407, 49.4035389 8.7279297, 49.4026240 8.7278681, 49.4010872 8.7131843, 49.4094204 8.7462519, 49.3869006 8.6646067, 49.4026441 8.7802131, 49.3724384 8.6788819, 49.3733706 8.6798275, 49.3734520 8.6794397, 49.3734573 8.6772872, 49.3750322 8.6781318, 49.3761353 8.6779495, 49.3742557 8.6782780, 49.3748097 8.6779817, 49.3750429 8.6784800, 49.3743359 8.6792464, 49.4047494 8.6753390, 49.4010237 8.6542634, 49.4185616 8.6687042, 49.3961629 8.6968177, 49.3949506 8.7165457, 49.4056935 8.6753617, 49.3748682 8.6806324, 49.3757650 8.6783828, 49.3745216 8.6786266, 49.3804111 8.6763117, 49.3802672 8.6770459, 49.3938241 8.6885892, 49.3770953 8.6659476, 49.4218342 8.7455830, 49.3763084 8.6806674, 49.3925736 8.6762381, 49.3878242 8.6663099, 49.3865054 8.6978078, 49.3870220 8.6985183, 49.3924188 8.7407366, 49.3967229 8.7250259, 49.4247929 8.6422301, 49.4098176 8.7062855, 49.4085106 8.7758557, 49.3958169 8.6851383, 49.4132893 8.6956239, 49.4085000 8.6939571, 49.4078262 8.6941716, 49.4096788 8.7079007, 49.4096785 8.7074005, 49.4101311 8.6910837, 49.4101822 8.6884713, 49.4099175 8.6890057, 49.4169024 8.6774545, 49.4170457 8.6775259, 49.4134444 8.6918647, 49.4082046 8.6830699, 49.4088779 8.6792701, 49.4080222 8.6834597, 49.4090566 8.6852681, 49.4092900 8.6865331, 49.4086943 8.6845447, 49.4017089 8.6846814, 49.4079604 8.6841153, 49.4083191 8.6856688, 49.4080645 8.6851672, 49.4073436 8.6889011, 49.4069433 8.6836102, 49.4063023 8.6913206, 49.4063263 8.6908480, 49.4114775 8.7195875, 49.4090814 8.7182703, 49.4086229 8.7202663, 49.4033869 8.7279290, 49.4142260 8.7704357, 49.3894370 8.6884317, 49.3895530 8.6884195, 49.4183417 8.6445113, 49.4151056 8.6533976, 49.4000215 8.6915677, 49.4070728 8.7039593, 49.4057605 8.7102504, 49.4069654 8.7032895, 49.4051156 8.7101114, 49.3967708 8.6950821, 49.4100264 8.7102106, 49.4133774 8.7093673, 49.4104648 8.7110643, 49.4090884 8.7121174, 49.4145963 8.7424363, 49.4146285 8.7415734, 49.4158248 8.7336485, 49.4159290 8.7336568, 49.4208144 8.7400015, 49.4202707 8.7392359, 49.4195583 8.7389992, 49.3966895 8.6864231, 49.3675101 8.6831306, 49.3862241 8.7044324, 49.4089685 8.7125699, 49.3907835 8.7032534, 49.3914706 8.7026871, 49.3806555 8.7065541, 49.4157208 8.7418677, 49.4156600 8.7430138, 49.4152079 8.7442967, 49.4071432 8.7078562, 49.4088934 8.7133144, 49.4115392 8.7128522, 49.4105472 8.7780302, 49.4208463 8.6738282, 49.4171772 8.7603354, 49.4178582 8.7604307, 49.4131989 8.7239585, 49.4058690 8.6604558, 49.4048929 8.6675943, 49.4148153 8.6642766, 49.4079515 8.6376494, 49.3774547 8.7085656, 49.3762592 8.7055890, 49.4119166 8.6961489, 49.4317346 8.7061263, 49.3951217 8.6436838, 49.4322270 8.6909619, 49.4124413 8.7456969, 49.4150047 8.7453868, 49.4147956 8.7444452, 49.4143823 8.7483441, 49.4232907 8.7529822, 49.3756772 8.6859026, 49.3743793 8.6854003, 49.4181519 8.7605105, 49.4165526 8.6912073, 49.3625227 8.7053511, 49.4277972 8.6793663, 49.4186343 8.6608593, 49.3745870 8.6933185, 49.3745512 8.6931398, 49.4141951 8.6773802, 49.4131983 8.6501872, 49.4256553 8.7393946, 49.4076774 8.6896431, 49.4075308 8.6897346, 49.4190729 8.6890667, 49.4187521 8.6903307, 49.4187110 8.6904478, 49.4159739 8.6732323, 49.4067994 8.6931128, 49.4067874 8.6935163, 49.4070263 8.6953186, 49.4088402 8.7022464, 49.4086281 8.7004350, 49.4083266 8.6988134, 49.4084032 8.6992511, 49.4086930 8.7008503, 49.4082856 8.6993919, 49.4400488 8.6895399, 49.4126031 8.7205963, 49.4123897 8.7201796, 49.4108875 8.7198273, 49.4121174 8.7199537, 49.3603818 8.6878989, 49.3600563 8.6882539, 49.3628080 8.6883118, 49.3631708 8.6882854, 49.3933484 8.7760935, 49.4211179 8.6800477, 49.4210927 8.6788357, 49.3822054 8.6779650, 49.4155910 8.6745461, 49.4170433 8.6458718, 49.3846497 8.6817785, 49.3846976 8.6847175, 49.3844191 8.6849082, 49.3847543 8.6816927, 49.3845422 8.6811475, 49.3844361 8.6812945, 49.3844812 8.6833063, 49.3843655 8.6831352, 49.3844693 8.6838984, 49.3847140 8.6828075, 49.3846153 8.6826858, 49.3916379 8.6832393, 49.4030467 8.6777744, 49.4081347 8.6490831, 49.4246394 8.6387347, 49.4092190 8.6404481, 49.4055522 8.6437619, 49.4094106 8.6390237, 49.4030705 8.6445930, 49.4048859 8.6407136, 49.4028534 8.6414838, 49.4054385 8.6407094, 49.4039477 8.6409153, 49.4053038 8.6446041, 49.3564840 8.7059999, 49.4104659 8.6372089, 49.4129533 8.6375987, 49.4022627 8.6383494, 49.4023560 8.6416227, 49.4279195 8.6840395, 49.4266417 8.6834045, 49.4149614 8.7627536, 49.4147153 8.7636838, 49.4148588 8.7631440, 49.4151372 8.7619776, 49.3819023 8.6610923, 49.4067406 8.6760466, 49.4209716 8.7395001, 49.4148681 8.7627574, 49.4177775 8.7408198, 49.4179019 8.7409040, 49.4210951 8.7398188, 49.4178687 8.7405082, 49.4150957 8.7621532, 49.4151231 8.7620372, 49.4150216 8.7723676, 49.4051851 8.7806376, 49.4094999 8.7187995, 49.4111655 8.7708208, 49.4112671 8.7706090, 49.4105710 8.7718536, 49.3741369 8.6601792, 49.3761483 8.6586686, 49.3759252 8.6577043, 49.3758479 8.6580990, 49.3813055 8.6605630, 49.3970019 8.6746884, 49.3670694 8.7066732, 49.3730737 8.6870049, 49.3744052 8.6641024, 49.3812274 8.6633431, 49.3835356 8.6668475, 49.3837115 8.6668223, 49.3839082 8.6668065, 49.3832557 8.6668961, 49.3834049 8.6789517, 49.3844996 8.6647503, 49.3815326 8.6607340, 49.4132859 8.6908940, 49.4155322 8.6699617, 49.4068263 8.6680762, 49.4072646 8.6691321, 49.4072916 8.6693315, 49.4049477 8.7776001, 49.4064182 8.7775809, 49.4132935 8.6911529, 49.4161156 8.6703451, 49.4159611 8.6705524, 49.4161026 8.6692956, 49.4113226 8.6592808, 49.3646064 8.7060731, 49.4131958 8.7122978, 49.4117341 8.6467543, 49.4161732 8.7555546, 49.4160191 8.6700610, 49.4161314 8.6706351, 49.4187135 8.7240892, 49.4182654 8.7234671, 49.4063399 8.6900996, 49.4063668 8.6902286, 49.4065511 8.6906922, 49.4056965 8.6856838, 49.3914904 8.6905020, 49.4446785 8.7641829, 49.4000181 8.6782987, 49.3931737 8.6788679, 49.4197733 8.6455869, 49.3816319 8.6588060, 49.3818822 8.6587490, 49.4198205 8.7343539, 49.4101553 8.6911774, 49.4066779 8.7141416, 49.4113423 8.7195551, 49.4110748 8.7197211, 49.3945690 8.6743519, 49.3943175 8.6754654, 49.3973820 8.6940966, 49.3987446 8.6923402, 49.3986523 8.6924283, 49.3972671 8.6941625, 49.3799065 8.7239334, 49.4275954 8.6823123, 49.3963113 8.6748861, 49.4264733 8.7602041, 49.3916824 8.6702885, 49.4237291 8.6461040, 49.4383671 8.7404676, 49.4373853 8.7411725, 49.4014026 8.6800343, 49.4166596 8.6925736, 49.4124274 8.7117362, 49.4274540 8.6971831, 49.4278787 8.6910220, 49.4036097 8.6814705, 49.4068513 8.7741286, 49.4089598 8.7753014, 49.4098482 8.7727462, 49.4097413 8.7748414, 49.4090822 8.7715798, 49.4084225 8.7720223, 49.4103070 8.7730431, 49.4101172 8.7731558, 49.4284212 8.6802828, 49.4587266 8.7510591, 49.3759317 8.6579426, 49.3916964 8.6675353, 49.4438944 8.7593506, 49.4439646 8.7584327, 49.4135373 8.6724241, 49.3898829 8.7370634, 49.3903181 8.7378228, 49.4128834 8.7053652, 49.3697468 8.7054575, 49.3738556 8.7059603, 49.3738641 8.7062020, 49.4160234 8.6600287, 49.4025607 8.6761200, 49.4096861 8.6914112, 49.4035317 8.6460205, 49.4031521 8.6452664, 49.4004010 8.6986103, 49.3966624 8.6785518, 49.3976810 8.6780375, 49.3973402 8.6783701, 49.3972673 8.6784981, 49.3971957 8.6786302, 49.3971215 8.6787583, 49.3970486 8.6788777, 49.3979602 8.6788301, 49.3978718 8.6789173, 49.4106247 8.7042757, 49.4066626 8.6939736, 49.4088130 8.7065871, 49.3675122 8.6841701, 49.4210933 8.7038394, 49.4030621 8.7276422, 49.4023293 8.7276702, 49.4130005 8.6887393 +yes +173 +Bernhard Christel Wiechmann, Dr. Ernst Jacobson, Else Jacobson, Margarete Jacobson geb. Mosheim, Rudolf Jacobson +Maison de Gyros, L'Odyssée, Les Olympiades, La Crete, Athenais, L'île de Crête, Mavrommatis, Maison de Gyros, Taverne Grecque, Le Fil d'Ariane, Le Souvlaki Athénien, Maison de Gyros, Meteora, Acropolis, Hellenis, Olympie, Le Y, Extra Grec 1987, Thalassa, Le Gourmet, Mimosa, Dimitris, Apollon, Alexandros, Doner King, Apollon, Miami, Mezz, Tzeferakos Café + +4 +30, 30, 30, 30 +yes +yes +217 +yes +17 +49.4507074 8.6677476 +48.8671035 2.3471909, 48.8782645 2.3740462, 48.8774801 2.3700505, 48.8689224 2.3335350, 48.8697474 2.3709540, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8703950 2.3709651, 48.8778698 2.3509743, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8695951 2.3715600, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8653000 2.3752307, 48.8673441 2.3627982, 48.8651925 2.3758399, 48.8629074 2.3860380, 48.8668485 2.3837377, 48.8672012 2.3825153, 48.8645121 2.3683814, 48.8732053 2.3585526, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8605667 2.3751425, 48.8637354 2.3705262, 48.8642296 2.2884865, 48.8644747 2.2879509, 48.8645963 2.2880351, 48.8649321 2.2883111, 48.8654525 2.2886812, 48.8667948 2.2896169, 48.8677281 2.2909720, 48.8744139 2.3574128, 48.8717354 2.3404728, 48.8750824 2.3241658, 48.8831845 2.3273339, 48.8870475 2.3139527, 48.8896917 2.3219420, 48.8840239 2.3218519, 48.8830031 2.2877361, 48.8649004 2.4054084, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8806821 2.3741833, 48.8789432 2.3031398, 48.8815632 2.3004421, 48.8844267 2.2977130, 48.8855270 2.2969790, 48.8849249 2.2981974, 48.8846750 2.2981530, 48.8773919 2.3395256, 48.8737979 2.3160522, 48.8841082 2.3224492, 48.8807958 2.3003045, 48.8591202 2.3475207, 48.8633059 2.3340632, 48.8647135 2.3426384, 48.8648693 2.3427189, 48.8630681 2.3412176, 48.8634071 2.3418915, 48.8660175 2.3407258, 48.8673651 2.3318225, 48.8656306 2.3303026, 48.8743117 2.3760048, 48.8690399 2.3387540, 48.8697491 2.3403685, 48.8695691 2.3402609, 48.8686697 2.3421738, 48.8689050 2.3327814, 48.8660916 2.3526753, 48.8645295 2.3512403, 48.8685043 2.3498910, 48.8641253 2.3698504, 48.8612900 2.3499825, 48.8612937 2.3537009, 48.8595710 2.3565976, 48.8650455 2.3535907, 48.8669898 2.3620443, 48.8667188 2.3611850, 48.8662353 2.3610229, 48.8633000 2.3620149, 48.8632099 2.3622012, 48.8626247 2.3633483, 48.8621296 2.3644112, 48.8614452 2.3647591, 48.8630803 2.3510377, 48.8592743 2.3796462, 48.8809308 2.3651881, 48.8812888 2.3651008, 48.8808303 2.3650793, 48.8883530 2.3917794, 48.8904247 2.3760144, 48.8711649 2.3221410, 48.8726629 2.3106385, 48.8732419 2.3115596, 48.8744495 2.3205466, 48.8752230 2.3264851, 48.8740876 2.3267342, 48.8778017 2.3225743, 48.8797413 2.3271672, 48.8831584 2.3268974, 48.8833400 2.3254009, 48.8813674 2.3151235, 48.8810818 2.3162341, 48.8786152 2.3156839, 48.8767711 2.3179268, 48.8778569 2.3059734, 48.8794539 2.3032046, 48.8749659 2.3041948, 48.8745760 2.3048788, 48.8687291 2.3014159, 48.8664956 2.3016793, 48.8677909 2.2995151, 48.8686254 2.2992361, 48.8725861 2.3019868, 48.8784635 2.2987871, 48.8698436 2.3061758, 48.8727273 2.3786615, 48.8806637 2.3648615, 48.8822323 2.3662711, 48.8720243 2.2934411, 48.8684366 2.2915095, 48.8714262 2.2899337, 48.8689351 2.2833107, 48.8696967 2.2845776, 48.8694565 2.2845446, 48.8700723 2.2857876, 48.8690091 2.2852941, 48.8691634 2.2851996, 48.8749903 2.2860127, 48.8759692 2.2834989, 48.8748643 2.2834193, 48.8690546 2.2835943, 48.8655496 2.2837039, 48.8657006 2.2836110, 48.8667831 2.2790363, 48.8664481 2.2772490, 48.8659840 2.2742050, 48.8633053 2.2742098, 48.8624073 2.2760147, 48.8593999 2.2774250, 48.8949842 2.3821818, 48.8781855 2.2878593, 48.8846806 2.3623964, 48.8797648 2.3567638, 48.8810016 2.3640265, 48.8606979 2.3554288, 48.8605259 2.3552067, 48.8765046 2.3790929, 48.8717642 2.3765169, 48.8824125 2.3814642, 48.8758150 2.2867065, 48.8661318 2.3536080, 48.8590582 2.3031212, 48.8685310 2.3627215, 48.8645339 2.3458426, 48.8664790 2.3612544, 48.8671863 2.3624934, 48.8809021 2.3403319, 48.8673662 2.3064825, 48.8592377 2.3714158, 48.8695383 2.3950747, 48.8953387 2.3825799, 48.8588998 2.2749555, 48.8768988 2.3387135, 48.8620598 2.2758197, 48.8632226 2.2764809, 48.8643683 2.2780086, 48.8682336 2.2816544, 48.8683009 2.2818137, 48.8636110 2.3699568, 48.8716652 2.3369422, 48.8724813 2.3352798, 48.8768502 2.3324723, 48.8715356 2.3340932, 48.8707193 2.3495070, 48.8761304 2.3564812, 48.8756147 2.3563557, 48.8834234 2.3734013, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8751634 2.3407635, 48.8696664 2.3354448, 48.8640573 2.3358570, 48.8727906 2.3327950, 48.8631677 2.3877376, 48.8731847 2.3591245, 48.8902005 2.3757322, 48.8706166 2.3614024, 48.8709866 2.3363950, 48.8789794 2.3539524, 48.8848997 2.3377794, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8857946 2.3099771, 48.8701182 2.3328493, 48.8850396 2.3205857, 48.8860872 2.3177587, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8804253 2.3287401, 48.8743336 2.3345374, 48.8642191 2.3423423, 48.8638673 2.3421689, 48.8692088 2.4085611, 48.8815429 2.2914706, 48.8838961 2.3274356, 48.8889565 2.3226941, 48.8937935 2.3362303, 48.8915892 2.3347229, 48.8959308 2.3457254, 48.8906192 2.3344868, 48.8929700 2.3402831, 48.8938006 2.3360065, 48.8928237 2.3276058, 48.8927037 2.3270855, 48.8950865 2.3279515, 48.8927798 2.3416901, 48.8601040 2.2800860, 48.8620103 2.3504016, 48.8709674 2.2927276, 48.8701195 2.2926560, 48.8607663 2.2829855, 48.8742509 2.3267610, 48.8674435 2.3066185, 48.8760737 2.3314470, 48.8776629 2.3503063, 48.8607520 2.3551307, 48.8599332 2.3492544, 48.8616973 2.3497749, 48.8798460 2.2882480, 48.8706907 2.3018397, 48.8711468 2.3021857, 48.8808570 2.3744052, 48.8816465 2.3719957, 48.8810026 2.3740798, 48.8809708 2.3734937, 48.8808782 2.3736050, 48.8750168 2.2842019, 48.8642610 2.2877420, 48.8690375 2.4018799, 48.8681245 2.4017154, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8709768 2.4035156, 48.8718932 2.4046138, 48.8711831 2.4041560, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8650286 2.3978764, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8661206 2.3993734, 48.8647416 2.4000331, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8646156 2.3980291, 48.8898740 2.3601766, 48.8900866 2.3603615, 48.8911754 2.3596165, 48.8912089 2.3601196, 48.8895540 2.3596572, 48.8601780 2.3784708, 48.8918470 2.3497087, 48.8634536 2.3668626, 48.8621900 2.3647601, 48.8643476 2.3599313, 48.8740405 2.3857795, 48.8749608 2.3892009, 48.8739345 2.3878755, 48.8794344 2.3881410, 48.8801930 2.3906171, 48.8750094 2.3896199, 48.8755856 2.3816591, 48.8737724 2.3861774, 48.8741080 2.3859246, 48.8831104 2.3242250, 48.8776217 2.3939651, 48.8777323 2.3952759, 48.8775224 2.3930979, 48.8687439 2.3725567, 48.8737876 2.3254797, 48.8757911 2.3276502, 48.8853087 2.2914432, 48.8666300 2.3441053, 48.8751073 2.3063372, 48.8761128 2.3302242, 48.8760136 2.3310108, 48.8628914 2.2767409, 48.8836091 2.3810186, 48.8759800 2.3435799, 48.8602282 2.3444320, 48.8781331 2.2973879, 48.8843398 2.3684081, 48.8605440 2.3490975, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8747610 2.3399353, 48.8610529 2.3020976, 48.8742737 2.3172451, 48.8788807 2.2940470, 48.8790502 2.2932877, 48.8787213 2.2930870, 48.8860790 2.2927720, 48.8862920 2.2922300, 48.8860610 2.2916910, 48.8815650 2.2950420, 48.8816640 2.2951850, 48.8698720 2.3253770, 48.8767675 2.3414635, 48.8801010 2.2887410, 48.8896590 2.3042630, 48.8763180 2.3309180, 48.8851905 2.3788177, 48.8694492 2.3546663, 48.8803860 2.3748678, 48.8843962 2.3388368, 48.8841050 2.3049810, 48.8840570 2.3045230, 48.8835710 2.3045840, 48.8837420 2.3043460, 48.8747781 2.3879795, 48.8755246 2.3943562, 48.8828185 2.3827206, 48.8753559 2.3919799, 48.8752306 2.3934592, 48.8818980 2.3374100, 48.8651944 2.3554408, 48.8650138 2.3556963, 48.8895142 2.3498344, 48.8702024 2.2869885, 48.8711617 2.3300722, 48.8619859 2.3647571, 48.8664714 2.3673929, 48.8625029 2.3716831, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8651981 2.3604798, 48.8768640 2.3922696, 48.8734980 2.3143172, 48.8737373 2.3138101, 48.8737700 2.3140366, 48.8675297 2.3843310, 48.8685607 2.3669629, 48.8715677 2.3606317, 48.8721816 2.3600284, 48.8815323 2.3165760, 48.8590343 2.3461496, 48.8690920 2.3544517, 48.8683922 2.3581580, 48.8874646 2.3257792, 48.8873604 2.3254496, 48.8768740 2.3473056, 48.8830109 2.3460324, 48.8785250 2.3535336, 48.8734651 2.3583097, 48.8747915 2.3570787, 48.8791742 2.3482838, 48.8760765 2.3450995, 48.8843391 2.3213355, 48.8657983 2.3663325, 48.8743700 2.3192643, 48.8597693 2.3772029, 48.8762972 2.3015994, 48.8641842 2.3992653, 48.8627281 2.3878662, 48.8862870 2.3823994, 48.8615860 2.3413149, 48.8704997 2.3615121, 48.8757756 2.3401123, 48.8698251 2.3102577, 48.8649934 2.3332593, 48.8646077 2.3788387, 48.8705497 2.3546686, 48.8761690 2.3558059, 48.8740824 2.3480430, 48.8708529 2.3346161, 48.8804820 2.3161857, 48.8761824 2.3002522, 48.8726650 2.3293531, 48.8709492 2.3282127, 48.8722908 2.3280789, 48.8722605 2.3300398, 48.8725589 2.3098007, 48.8725939 2.3370941, 48.8772970 2.3488717, 48.8774911 2.3492552, 48.8774769 2.3495261, 48.8783431 2.3528360, 48.8816257 2.3653592, 48.8726909 2.3396328, 48.8740775 2.3377311, 48.8794635 2.3364478, 48.8932628 2.3267927, 48.8931883 2.3272746, 48.8794618 2.3547465, 48.8753162 2.3572500, 48.8648399 2.3394096, 48.8778905 2.3549883, 48.8726368 2.3332498, 48.8733021 2.3461422, 48.8717746 2.2995211, 48.8910317 2.3197585, 48.8866292 2.3186693, 48.8791073 2.2907296, 48.8766198 2.2875734, 48.8680414 2.3235560 +49.3950346 8.6818528, 49.3929123 8.6731183, 49.4169850 8.7622264, 49.4283831 8.7619069, 49.4225490 8.6474419, 49.4171494 8.6793155, 49.4149894 8.6777848, 49.4148485 8.6775333, 49.4188910 8.6930237, 49.4177616 8.6901926, 49.4162828 8.6903739, 49.4118566 8.7016009, 49.4107725 8.7025797, 49.4195856 8.6828954, 49.4192171 8.6617263, 49.4179033 8.6815927, 49.4086544 8.6824072, 49.4074650 8.6753838, 49.4088642 8.6826038, 49.4071241 8.6769474, 49.3829491 8.6688513, 49.3761273 8.6786897, 49.3930859 8.6886712, 49.4085032 8.6760080, 49.4140297 8.6502362, 49.4146530 8.6531618, 49.3847089 8.6685712, 49.4174588 8.7442165, 49.4177904 8.7599764, 49.4252008 8.6863559, 49.4045235 8.6882943, 49.3900486 8.6883781, 49.3881762 8.6886005, 49.4058639 8.6880015, 49.4234062 8.6494903, 49.4093727 8.7028215, 49.4238657 8.7521528, 49.3773034 8.7036202, 49.3646414 8.7039144, 49.4197519 8.6452297, 49.4191043 8.6617726, 49.4130970 8.6671099, 49.4400347 8.6325613, 49.3761111 8.6786235, 49.3777133 8.6806931, 49.4080730 8.7732147, 49.4401607 8.6321511, 49.4340707 8.6790422, 49.4290351 8.6868546, 49.3806654 8.6783120, 49.3853400 8.6756239, 49.3765839 8.6665923, 49.4261283 8.6876606, 49.4252895 8.6896450, 49.4151862 8.6795007, 49.4233025 8.6807132, 49.4131304 8.7665767, 49.3805355 8.6849043, 49.4086350 8.6786376, 49.4225854 8.6476266, 49.4007675 8.6494912, 49.3731436 8.7032594, 49.3781496 8.6583234, 49.4067775 8.7075784, 49.4113511 8.7130776, 49.4350143 8.7097094, 49.4070226 8.7014890, 49.4337050 8.6982644, 49.4386376 8.6862454, 49.4140695 8.6872232, 49.4327755 8.6997170, 49.4134479 8.7473282, 49.3777846 8.6947087, 49.4290349 8.6871594, 49.3990473 8.6713284, 49.4129121 8.7129795, 49.3753173 8.6635900, 49.4127565 8.7719234, 49.4174569 8.7484520, 49.4144394 8.6710078, 49.3745609 8.6764013, 49.3982248 8.6703696, 49.4428896 8.7531257, 49.3700477 8.7046132, 49.3629489 8.7038885, 49.3627226 8.7046690 +Wiesloch, Schifferstadt, Walldorf, Sinsheim, Speyer, Bad Schönborn, Philippsburg, Eppelheim, Leimen, Waghäusel, Sandhausen, Östringen, Neckargemünd, Hockenheim, Schwetzingen, Waibstadt +126 +60 +49.4151455 8.7001711, 49.4225019 8.7339703, 49.4288900 8.7151923, 49.4195004 8.7042268, 49.4168493 8.7062479, 49.4169490 8.7088282, 49.4106369 8.7231657, 49.4072736 8.7042584, 49.4034969 8.7041978, 49.4045029 8.6964906, 49.4198220 8.7244339, 49.4173492 8.7353905, 49.4185272 8.7072229, 49.4056987 8.6995970, 49.4175623 8.7007760, 49.4167281 8.7088746, 49.4154931 8.7003343, 49.4176067 8.6981096, 49.4163249 8.7711792, 49.4140674 8.7816577, 49.4198876 8.7454600, 49.4289824 8.7668173, 49.4210240 8.7483509, 49.4059745 8.7040467, 49.3853863 8.7331303, 49.4039479 8.7271770, 49.3938637 8.6974644, 49.4211223 8.7663746, 49.4153640 8.7225444, 49.4069619 8.7115707, 49.4356320 8.7140171, 49.4228760 8.7420142, 49.4164724 8.6578375, 49.4149682 8.6593179, 49.4156567 8.6585628, 49.4155767 8.7022603, 49.3982697 8.7723650, 49.3954974 8.7713116, 49.3991247 8.7677457, 49.4145759 8.7379393, 49.3940922 8.7708327, 49.3828862 8.6974785, 49.4127828 8.7178451, 49.4192233 8.7166853, 49.4323860 8.6958344, 49.4326326 8.6907659, 49.4330634 8.6937607, 49.4354359 8.7188705, 49.4488719 8.7503142, 49.4196542 8.7232011, 49.4206449 8.7223455, 49.4214402 8.7213892, 49.4563800 8.7469357, 49.4090664 8.7817607, 49.4137378 8.7763609, 49.4151549 8.7088601, 49.4424098 8.7023993, 49.4065595 8.7317602, 49.3850144 8.7326813, 49.4081525 8.7138310, 49.4092585 8.7240169, 49.4094742 8.7169174, 49.4213028 8.7431528, 49.4331789 8.6977162, 49.4262331 8.7441437, 49.4232032 8.6974269, 49.4253948 8.6962672, 49.4067527 8.7749223, 49.4361502 8.7472505, 49.4374275 8.7488733, 49.3646156 8.7047874, 49.3772639 8.7006232, 49.4174403 8.7087359, 49.4178755 8.7072140, 49.4070632 8.7127517, 49.4161327 8.6999750, 49.4195920 8.7041879, 49.4111147 8.7149590, 49.4120872 8.7092424, 49.4258745 8.7058932 +Chapelle Saint-Vincent de Paul, Chapelle de l'Agneau de Dieu, Église Adventiste du 7e jour Paris-Sud, Chapelle Saint-Bernard, Maison Verte, Aumônerie des Grands Moulins, Chapelle Sainte-Marie, Église Notre-Dame de Chaldée, Chapelle Orthodoxe, Chapelle, Centre Évangélique Philadelphia, Église Orthodoxe Grecque, Église évangélique du tabernacle, Calvary Chapel, Église Protestante - Paris Alésia, Chapelle Saint-Paul, Église baptiste du centre, Salle du Royaume des Témoins de Jéhovah de Paris Clichy, Chapelle Saint-Martin de Porrès, Chapelle catholique des 4 Évangélistes, Chapelle des Franciscaines, Centre Saint-Paul, Chapelle Notre-Dame de la Confiance, Église protestante évangélique des Ternes, Église Adventiste du 7ème Jour, Église Sainte-Colette des Buttes-Chaumont, Église Catholique Russe, Chapelle, Église Mariavite Sainte-Marie, Chapelle Saint-André, Chapelle Saint-Louis, Crypte du Martyrium de Saint-Denis, Chapelle, Chapelle, Notre Dame sous Terre, Chapelle Saint-Patrick, Parohia Ortodoxă Română "Sfânta Parascheva" și "Sfânta Genoveva" Paris 2, Parohia Ortodoxă Română "Sfânta Genoveva" și "Sfântul Martin" Paris 3, Parohia Ortodoxă Română "Sfântul Ioan Casian" și "Sfânta Genoveva" Paris 4, Église Saint-Lambert de Vaugirard, Église Saint-Léon, Église Saint-Sulpice, Église Saint-Pierre de Montrouge, Église Saint-Séverin, Église Saint-Julien-le-Pauvre, Basilique du Sacré-Cœur, Église Saint-Jean-Baptiste de Grenelle, Église Saint-Pierre de Montmartre, Église Notre-Dame de l'Arche d'Alliance, Église Saint-Ignace, Église Saint-Médard, Église Notre-Dame-de-Lorette, Temple de l'Oratoire du Louvre, Église Notre-Dame de Clignancourt, Église Saint-Roch, Saint-Nicolas du Chardonnet, Chapelle de la Compassion, Église Sainte-Hélène, Église de la Sainte-Trinité, Église Saint-Eugène Sainte-Cécile, Chapelle Ozanam, Église luthérienne de la Résurrection, Église Saint-Christophe de Javel, Église Saint-Eustache, Église Saint-Germain l'Auxerrois, Église Saint-Leu - Saint-Gilles, Chapelle Notre-Dame de Grâce, Église Polonaise Notre-Dame de l'Assomption, Église de la Madeleine, Basilique Notre-Dame-des-Victoires, Église Notre-Dame-de-Bonne-Nouvelle, Église Saint-Louis-en-l'Île, Église Saint-Étienne-du-Mont, Église Saint-Éphrem-le-Syriaque, Église Orthodoxe Roumaine des Saints Archanges, Église Saint-Gervais, Église Saint-Merry, Église luthérienne des Billettes, Église Notre-Dame-des-Blancs-Manteaux, Église Saint-Paul - Saint-Louis, Chapelle, Temple Sainte-Marie, Église Saint-Nicolas des Champs, Ancienne Église Saint-Martin des Champs, Église Sainte-Élisabeth, Chapelle de la congrégation du Saint-Esprit, Cathédrale Arménienne Sainte-Croix, Église Saint-Denis du Saint-Sacrement, Église du Val-de-Grâce, Église Luthérienne Saint-Marcel, Église Saint-Jacques-du-Haut-Pas, Église Saint-Germain des Prés, Cathédrale Ukrainienne Saint-Vladimir-le-Grand, Chapelle Notre-Dame de la Sagesse, Église Saint-Vincent-de-Paul, Église Saint-Laurent, Chapelle de l'hôpital Saint-Louis, Église Saint-Martin des Champs, Église Saint-Joseph-Artisan, Temple de la Rencontre, Église Saint-Jean-Baptiste de Belleville, Église Notre-Dame-de-l'Assomption des Buttes-Chaumont, Église luthérienne Saint-Pierre, Église Notre-Dame-de-Fatima, Église Saint-François-d'Assise, Église Sainte-Claire d'Assise, Temple antoiniste, Église Saint-Serge, Église Saint-Georges de la Villette, Église Saint-Joseph des Carmes, Église Saint-Thomas d'Aquin, Église Saint-Ambroise, Chapelle Notre-Dame-Réconciliatrice de la Salette, Basilique Notre-Dame du Perpétuel Secours, Église protestante chinoise de Paris, Église Notre-Dame d'Espérance, Temple protestant du Foyer de l'Âme, Église Réformée du Luxembourg, Église Saint-Jacques Saint-Christophe, Église Notre-Dame des Foyers, Église Notre-Dame des Champs, Basilique Sainte-Clothilde, Cathédrale Saint-Louis des Invalides, Chapelle de Jésus-Enfant, Église Anglicane Saint-Michel, Église Réformée du Saint-Esprit, Temple de Pentemont, Église Saint-Augustin, Chapelle Expiatoire, Église Saint-André de l'Europe, Église Saint-Philippe du Roule, Chapelle Baltard, Église Saint-François-Xavier, Chapelle Notre-Dame de l'Annonciation, Église Américaine, Église Saint-Pierre du Gros Caillou, Église Saint-Louis-d'Antin, Deutsche Evangelische Christuskirche Paris, Church of Scotland, Chapelle Notre-Dame de Consolation, Cathédrale Arménienne Saint-Jean-Baptiste, Cathédrale Américaine de la Sainte-Trinité, Église Luthérienne Saint-Jean, Église Réformée chinoise de Belleville, Église Notre-Dame-des-Otages, Église Notre-Dame-de-la-Croix, Église du Cœur Eucharistique de Jésus, Église Saint-Germain-de-Charonne, Église Saint-Gabriel, Église Saint-Jean-Bosco, Chapelle de l'Est, Église Saint-Cyrille et Saint-Méthode, Chapelle du Corpus-Christi, Église Protestante Danoise, Cathédrale Orthodoxe Russe Saint-Alexandre Nevsky, Saint-Joseph's Church (mission anglophone), Chapelle Saint-Pierre - Saint-Paul, Église Saint-Jospeh des Épinettes, Temple des Batignolles, Église Saint-Michel des Batignolles, Église Sainte-Marie des Batignolles, Église de l'Immaculée Conception, Église Sainte-Geneviève des Grandes-Carrières, Église Sainte-Rita, Église Saint-Jean de Montmartre, Église Saint-Bernard de La Chapelle, Chapelle Notre-Dame de la Paix, Église Saint-Éloi, Église Notre-Dame du Bon Conseil, Église Serbe Saint-Sava, Église Notre-Dame de Bercy, Église Orthodoxe de France, Église réformée Port-Royal Quartier Latin, Église Sainte-Rosalie, Église Saint-Albert le Grand, Église Sainte-Anne de la Maison Blanche, Temple Antoiniste de Paris, Église Luthérienne de la Trinité, Église Saint-Marcel, Chapelle Saint-Louis de la Salpêtrière, Église Notre-Dame de Chine, Église Notre-Dame de la Gare, Église Saint-Hippolyte, Cathédrale Saint-Étienne, Église Saint-Pierre de Chaillot, Église Anglicane Saint-Georges, Chapelle Sainte-Anne, Église Saint-Dominique, Église Notre-Dame-du-Travail, Paroisse de Plaisance, Église Notre-Dame-du-Rosaire, Église Évangélique Libre, Église de Saint-Antoine de Padoue, Église Notre-Dame-Réconciliatrice, Chapelle Notre-Dame-du-Lys, Église Orthodoxe Saint-Séraphin de Sarov, Église Saint-Jean-Baptiste-de-La-Salle, Église Saint-Honoré d'Eylau, Église Réformée de l'Annonciation, Mission Catholique Espagnole - Iglesia Española, Église Notre-Dame-de-l'Assomption de Passy, Église Notre-Dame de Grâce de Passy, Église Saint-Denys de la Chapelle, Chapelle Sainte-Thérèse, Église Saint-François-de-Sales (ancienne église), Église Luthérienne de l'Ascension, Temple Réformé de l'Etoile, Église Sainte-Odile, Église Saint-Charles-de-Monceau, Église Saint-Ferdinand des Ternes, Église du Christ, Église Saint-François-de-Sales (nouvelle église), Église Notre-Dame d'Auteuil, Chapelle Sainte-Bernadette, Église Saint-François de Molitor, Église Polonaise Sainte-Geneviève, Église Sainte-Jeanne-de-Chantal, Chapelle de la Visitation, Église Saint-Antoine des Quinze-Vingts, Chapelle Sainte-Ursule, Notre-Dame-du-Liban, Chapelle de l'Épiphanie, Église Notre-Dame-de-Grâce de Passy, Chapelle Laennec, Église Notre-Dame-de-Nazareth, Église nouvelle Saint-Honoré d'Eylau, Chapelle Saint-François d'Assise, Chapelle Sainte-Rita, Basilique Sainte-Jeanne-d’Arc, Église du dôme, Chapelle Notre-Dame-du-Saint-Sacrement, Église Notre-Dame-de-Lourdes, Église Saint-Joseph des Nations, Église Sainte-Marguerite, Église Sainte-Marguerite, Chapelle Sainte-Jeanne-d'Arc, Église du Bon Secours, Église du Saint-Esprit, Chapelle, Prieuré Saint-Benoît, Église Orthodoxe des Trois-Saints-Docteurs, Église Protestante Suéduoise, Chapelle de la clinique Blomet, Église du Bon Pasteur, Église Saint-Jean des Deux Moulins, Chapelle, Église luthérienne Saint-Paul, Chapelle, Chapelle Saint-Yves, Chapelle, Chapelle, Chapelle du Sacré-Cœur-de-Jésus-Roi-de-France, Cathédrale Notre-Dame de Paris, Chapelle Saint-Charles, Chapelle, Chapelle Notre-Dame des Anges, Chapelle Notre-Dame de la Médaille Miraculeuse, Chapelle des Catéchismes, Communauté évangélique Paris Daumesnil, Église Saint-Luc, Église Notre-Dame-de-La-Salette, Chapelle Sainte-Marie, Chapelle Saint-Vincent, Chapelle de la Vierge, Chapelle du Bon Pasteur, Chapelle Sainte Geneviève, Sainte-Chapelle +54 and 49.3956377 8.7003866, 49.4129054 8.7286879, 49.4295755 8.7759899, 49.4071892 8.6937962, 49.4277949 8.6859759, 49.4244330 8.7116834, 49.4177407 8.7617228, 49.4104996 8.6975401, 49.4126850 8.7049420, 49.4040784 8.7535968, 49.3907840 8.7281080, 49.4097481 8.7070938, 49.3735076 8.7471790, 49.4112622 8.7059705, 49.3878352 8.7614044, 49.4122224 8.7127594, 49.3893232 8.7371550, 49.4069167 8.6886211, 49.3893869 8.7367041, 49.4256538 8.6475866, 49.4072012 8.6930407, 49.4106747 8.7780519, 49.4180857 8.7571952, 49.4187291 8.7567160, 49.4093534 8.7128936, 49.4093935 8.7114074, 49.4102478 8.7191369, 49.4092653 8.7127841, 49.4156539 8.7141859, 49.4121300 8.6990129, 49.4113466 8.7459929, 49.4277478 8.7478736, 49.4179564 8.7608483, 49.4020821 8.7437959, 49.4116784 8.7028078, 49.4187580 8.7405498, 49.4221411 8.6971096, 49.3947519 8.7087503, 49.4105292 8.7152167, 49.4101555 8.6521855, 49.4105161 8.7190962, 49.4097080 8.7160380, 49.4263861 8.7616530, 49.4103490 8.7069722, 49.4122079 8.7094870, 49.4094522 8.7736231, 49.3759633 8.7051186, 49.3986608 8.6709646, 49.4050466 8.6815538, 49.4121130 8.7104783, 49.4120223 8.7062092, 49.4102627 8.6928342, 49.4146460 8.6905719, 49.4106087 8.7156269 +Collège Privé Saint-Louis, École maternelle publique Souzy, École primaire, École primaire Fernand Léger, École maternelle Le Vau, École élémentaire B, École maternelle Olivier de Serre, École primaire, École maternelle des Grands Champs, Collège Léon Gambetta, Lycée Dorian, Collège Georges Courteline, École maternelle, École élémentaire, École Primaire, Collège César Franck, École élémentaire Compans, École élémentaire Brunet, École maternelle Brunet, Lycée général et technologique Henri Bergson, École maternelle, École privée Saint-Laurent, Conservatoire de musique du 14e Arrondissement, École élémentaire Chernoviz, École maternelle, École Polyvalente Pajol, École primaire, École primaire, École Normale Catholique Blomet, École primaire publique Duquesne, Cours Diderot, Lisaa, EIPDCE, École maternelle Élisa Lemonnier, École primaire, École élémentaire privée L'Immaculée-Conception, Colegio Español Frederico Garcia Lorca, École Élémentaire Hyppolite Maindron, École maternelle Maurice Ripoche, École élémentaire Beaudricourt, College Lycée Stanislas, École Primaire Publique Lancry, Actif Tutor, École élémentaire de l'Évangile, École maternelle Tchaïkovski, École élémentaire Maurice Genevoix, École élémentaire de Torcy, École maternelle de Torcy, École Élémentaire Doudeauville, École maternelle Marx Dormoy, École polyvalente de la Goutte d'Or, École maternelle Goutte d'Or, École polyvalente des Poissonniers, Collège Chaptal, Collège Jules Ferry, Section d'enseignement général et professionnel adapté du Collège Vincent d'Indy, École élémentaire Lamoricière, École élémentaire Lamoricière Eb, École Montenpoivre, École élémentaire de la Plaine, École primaire Publique Laugier, Wall Street Institute, Collège Henri Bergson, Collège privé Lucien de Hirsch, Section d'enseignement général et professionnel adapté du Collège Edouard Pailleron, École maternelle, École primaire, École élémentaire privée Lucien de Hirsch, Cours Clapeyron, IPAG Paris, École maternelle, École primaire Mathis, École primaire Tandou, École maternelle Belliard, École élémentaire Belliard, Collège Hector Berlioz, École maternelle Paul Abadie, Polynotes, l'école de musiques, École primaire, École maternelle, École Maternelle Bruxelles, École Élémentaire Bruxelles, EFAP Paris, Lycée professionnel Suzanne Valadon, Lycée Camille Jenatzy, École maternelle, École maternelle, École primaire, École primaire, Lycée général et technologique privé Les Petits Champs, École élémentaire privée Montessori Kids, École primaire Privé École du Cerene, Collège privé Soeur Rosalie, Lycée général privé Louise de Marillac, École élémentaire privée Soeur Rosalie, Collège Victor Hugo, École primaire B, École maternelle, École maternelle, Collège Georges Duhamel, École maternelle Volontaires, École maternelle, École élémentaire Télégraphe, École maternelle Auguste Perret, École élémentaire Auguste Perret, Section d'enseignement professionnel du Lycée polyvalent Elisa Lemonnier, École privée française d'Enseigement technique, Collège Lucie Faure, École maternelle publique Maraîchers, École primaire publique Pyrénées T, Collège privé Saint-Louis de Gonzague, École maternelle, Collège Paul Valéry, Lycée général Paul Valéry, Collège Buffon, Collège privé Saint-Jean de Passy, Lycée des métiers de l'optique FRESNEL, Lycée privé Saint-Jean de Passy, École Active bilingue Jeannine Manuel (École élémentaire privée), Collège de Staël, Lycée général Buffon, École primaire, École maternelle, École maternelle Brochant, Inlingua, École élémentaire Lemercier, École élémentaire, École maternelle Simon Bolivar, École maternelle et primaire Henri Schili, Paris II - Panthéon Assas - Centre Vaugirard, École maternelle Eugénie Cotton, École élémentaire Eugénie Cotton EA, École élémentaire, Collège Camille Sée, Lycée général Camille Sée, École maternelle, Lycée professionnel privé Marcel Lamy, École Maternelle des Renaudes, Sup career, École Ganénou, Collège Honoré de Balzac, Lycée général et technologique Honoré de Balzac, Collège Maurice Ravel, Lycée général et technologique Maurice Ravel, Cours Tocqueville, Lycée Municipal d'Adultes Philippe Leclerc de Hauteclocque, École privée Bossuet, Collège Jacques Prévert, École maternelle, École primaire, Collège privé Notre-Dame de France, École élémentaire privée Notre-Dame de France, École maternelle, École primaire, École primaire privée Notre-Dame de France, École maternelle Pierre Foncin, École maternelle Surmelin, École primaire Bretonneau, Collège Victor Duruy, Collège d'Hulst (École secondaire privée ), Collège privé d'Hulst, Cours Montaigne (École secondaire privée), Cours Thérèse Chappuis (École secondaire privée), Lycée polyvalent Maximilien Vox-Art-Dessin, Lycée polyvalent privé Albert de Mun, Section d'enseignement professionnel du Lycée polyvalent Maximilien Vox, Section d'enseignement professionnel du Lycée polyvalent privé Saint-Nicolas, École maternelle, École primaire privée Saint-Jean Bosco, Collège Guillaume Apollinaire, Collège Privé L'Alma, Collège privé La Rochefoucauld, Collège privé Sainte-Elisabeth, Cours Fidès (École secondaire privée), Institut Privé de l'Alma (École Secondaire Privée ), L'École (École secondaire privée), Lycée général et technologique Roger Verlomme, Lycée général privé La Rochefoucauld, Lycée général privé Sainte-Elisabeth, Section d'enseignement général et professionnel adapté du Collège Guillaume Apollinaire, Section d'enseignement professionnel du Lycée polyvalent privé Albert de Mun, École élementaire privée the lennen bilingual school, École Active Bilingue Jeannine Manuel (Collège privé), École Active Bilingue Jeannine Manuel (Lycée général privé), École du Champ de Mars (École secondaire privée), École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École primaire, École primaire, École primaire, École primaire, École primaire, École primaire, École Élémentaire Privée L'Alma, École élémentaire privée La Rochefoucauld, Lycée professionnel, École polyvalente Bernard Buffet, École maternelle, École Maternelle Sarrette, École privée Saint-Jean-Baptiste de Belleville - Maternelle et Primaires, École Multimedia, École et Collège Saint-Georges (privé), École maternelle et primaire Saint-Georges (privé), École Dentaire Française, École maternelle Prévoyance, École de Boulangerie et de Pâtisserie, École maternelle Delambre, École élémentaire Delambre, École privée catholique Sainte-Marguerite, Collége privé Notre-Dame de Lourdes, École primaire privée Notre-Dame de Lourdes, École privée Sainte-Marthe, Living school, École élémentaire du Clos, École élémentaire 14 Riblette, École élémentaire 16 Riblette, École primaire privée Montessori, Lycée technologique École Nationale Supérieure des Arts Appliqués, Collège privé Saint-Pierre-Fourier, Lycée privé Saint-Pierre-Fourier, École Maternelle Thionville, École primaire des Grands Moulins, École Privée Charles Peguy, Cours Molière (École secondaire privée), École élémentaire privée Cours Molière, École Saint-John Perse, progress com, Collège Turgot, Collège privé Saint-Germain de Charonne, Lycée technologique Duperré École Supérieure des Arts Appliqués, Section d'enseignement général et professionnel adapté du Collège Robert Doisneau, Section d'enseignement professionnel du Lycée polyvalent Martin Nadaud, Section d'enseignement professionnel du Lycée polyvalent Paul Poiret, École Maternelle, École Maternelle, École Maternelle, École Primaire, École primaire, École primaire, École élémentaire privée Eugène Napoléon, École élémentaire privée Saint-Germain de Charonne, École Primaire, Collège Claude Bernard, Collège Jean de La Fontaine, Collège Jean-Baptiste Say, Collège Molière, Cours Beauséjour (École secondaire privée), Lycée Jean-Baptiste Say, Lycée général Jean de La Fontaine, Lycée général Molière, Lycée général et technologique Claude Bernard, École maternelle, École maternelle, École primaire d'application, École primaire, École élémentaire privée Lamazou, Collège privé Gerson, Collège privé Notre-Dame des Oiseaux, Etablissement privé Notre-Dame des Oiseaux (École secondaire privée), Institut de La Tour (École secondaire privée), Lycée polyvalent privé Sainte-Thérèse, Lycée privé Gerson, Section d'enseignement professionnel du Lycée polyvalent privé Sainte-Thérèse, École maternelle d'application, École maternelle d'application, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École primaire d'application, École primaire d'application, École primaire, École primaire, École Élementaire Privée École Galilée, École élémentaire privée Gerson, École élémentaire privée La Providence, École élémentaire privée Le Cours du Soleil, École élémentaire privée Notre-Dame des Oiseaux, École élémentaire privée Saint-Louis de Gonzague, Collège Carnot, Collège Pierre de Ronsard, Collège Privé Sainte-Ursule-Louise de Bettignies, Lycée général Carnot, École des Techniciens Supérieurs (École secondaire professionnelle privée), École maternelle, École maternelle, École primaire, École Élémentaire Privée Sainte-Ursule-Louise de Bettignies, Collège Janson de Sailly, Collège Privé Pascal, Collège privé GASTON TENOUDJI, Collège privé L'Assomption, Collège privé Saint-Honoré d'Eylau, Cours Carnot (École secondaire privée), International School of Paris (École secondaire privée), Lycée Privé Pascal, Lycée Professionnel Hôtelier, Lycée général Janson de Sailly, Lycée privé Sainte-Ursule-Louise de Bettignies, lycee gen. et technol. prive gaston tenoudji, École Active Bilingue Monceau (Collège privé), École Gaston Tenoudji, École Hôtelière Jean Drouant, École Maternelle Privée Stuart School-Petite École Bilingue, École Primaire d'Application, École Privée Françoise Morice Esthétique-Cosmétique, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École primaire, École primaire, École primaire, École primaire, École primaire, École primaire, École Élementaire Privée Ohr Kitov (Sinai), École Élementaire Privée École Ejm, École Élémentaire Privée Eurécole, École Élémentaire Privée Gabriel, École Élémentaire Privée L'Assomption, École Élémentaire Privée Les Moineaux, École Élémentaire Privée Pascal, École Élémentaire Privée Saint-FranÇois d'Heylau, École élémentaire privée Gaston Tenoudji, Collège Marx Dormoy, Collège Yvonne Le Tac, École Elementaire Simon Bolivar, École des Récollets, École maternelle, École maternelle, École maternelle, École maternelle, École maternelle, École primaire A, École primaire d'application, École primaire, École primaire, École maternelle, Lycée Privé de l'Assomption, École Maternelle Publique Bougainvilliers, École Maternelle Publique Tapisseries, École Maternelle Publique Jouffroy, École Élémentaire Publique Jouffroy, École Élémentaire Publique Saussure, École Privée Marbeuf Esthétique Élysées, École secondaire privée Eurécole, Collège privé Fénelon-Sainte-Marie, École Élémentaire Privée Fénelon-Sainte-Marie, École Élémentaire Privée Sainte-Marie des Batignolles, Collège Privé Saint-Michel des Batignolles, Lycée Privé Saint-Michel des Batignolles, École Élémentaire Privée Le Sacré-Coeur, École Élémentaire Privée Saint-Thomas d'Aquin, École Élémentaire Publique Saint-Ouen, IRIS - Institut des Ressources Informatiques Supérieur, Lycée technologique École Nationale de Commerce, École 2d Degré Général Privée École Privee Akiba, École Francaise Privée des Hautes Études Commerciales, École Primaire Privée Hattemer, École Professionnelle Privée Régine Ferrère Esthétique-Cosmétique, École Secondaire Privée Ohr Kitov, École Technique Privée AKIBA, École primaire d application, École Maternelle, École élémentaire Eugénie Cotton EB, Collège privé pour handicapés Regain Tournesol, Collège privé Notre-Dame de Sion, Collège privé Saint-Sulpice, Collège privé Sainte-Geneviève, Lycée des métiers des activités sociales et commerciales, Lycée général et technologique privé Notre-Dame de Sion, Lycée général et technologique privé Sainte-Geneviève, Lycée privé Saint-Sulpice, École primaire privée Sainte-Geneviève, Collège Montaigne, Collège privé École Alsacienne, Lycée général Montaigne, École Alsacienne (Lycée général privé), École primaire privée Alsacienne, Lycée général et technologique Simone Weil, École primaire privée Sainte-Jeanne-Elisabeth, École Primaire, École Primaire, Lycée des métiers du génie chimique et des procédés industriels N.L Vauquelin, École primaire Saint-Victor, École primaire Littré, École primaire Balanchine, Collège Camille Claudel, École Élémentaire, Lycée polyvalent privé Catherine Labouré, École et Collège Modigliani, École maternelle, École Lacordaire, Lycée général et technologique Chaptal, Collège Edouard Pailleron, Lycée Paul Bert, Lycée général Paul Bert, École Maternelle Alain Fournier, Lycée François Villon, Collège et Lycée Stanislas, École Wurtz, École Élémentaire, École, Collège Georges Braque, École Glacière, Lycée Lazare Ponticelli, École primaire, École primaire publique Kuss, Lycée Professionnel Tolbiac, Collège Gabriel Fauré, École primaire, École primaire, École primaire, École maternelle, Lycée Autogéré de Paris, École primaire Saint-Jean, École maternelle, Collège Saint-Exupéry, Collège George Sand, Collège Marie Curie, Parmentier, Lycée Lavoisier, École élémentaire de la Victoire, Lycée professionnel Pierre Lescot, École maternelle Eupatoria, Collège Henri Matisse, Collège La Grange aux Belles, École primaire d'application, École maternelle Domrémy, École Saint-Jacques, École maternelle privée Diwan, Collège Georges Rouault, École élémentaire Cheminets, Lycée Technique Diderot, École maternelle Fagon, Collège Edmond Michelet, Lycée professionnel Hector Guimard, Collège Guillaume Budé, École maternelle, Groupe scolaire La Salle Saint-Nicolas, Collège Flora Tristan, Lycée Professionnel Maria Deraismes, École élémentaire Curial, École élémentaire Ourq, Section d'enseignement professionnel du Lycée polyvalent D'Alembert, Collège Maurice Utrillo, Lycée Rabelais, École primaire d'application, École maternelle, Lycée général et technologique Arago, Lycée général Fénelon, École primaire Convention, École Jongkind, École Élémentaire d'Argenteuil, École primaire, École maternelle, Groupe Scolaire Beauregard, École maternelle et primaire, École primaire Saint-Louis-en-l'Île, Lycée général et technologique Sophie Germain, École élémentaire Saint-Merri, École primaire Moussy, Groupe Scolaire Archives, École Élémentaire Hospitalière Saint-Gervais, Lycée général Louis Le Grand, Collège Charlemagne, École primaire Charlemagne, École Massillon, École élémentaire privée Massillon, École primaire, École des Francs-Bourgeois, École primaire, École Élémentaire, École maternelle Chapon, Annexe Lycée Professionnel Nicolas Flamel, École maternelle Paul Dubois, École élémentaire Béranger, Lycée et Collège Henri IV, Lycée général Saint-Louis, École primaire des Quatre Fils, École Maternelle Perle, Collège Victor Hugo - Annexe, Lycée général Victor Hugo, École primaire Turenne, École Maternelle et Élémentaire, École primaire, École maternelle Legouvé, Lycée Georges Brassens, École Internationale Algérienne, Conservatoire municipal du XIXe Jacques Ibert, École maternelle et primaire Madame, École élémentaire Froment, École maternelle Tandou, Collège Georges Méliès, École Élémentaire, École primaire Surène, Lycée général et technologique Racine, École Élémentaire, Collège Octave Gréard, Lycée Polyvalent Racine (Annexe), École Active Bilingue Monceau (École élémentaire privée), École maternelle, La Rochefoucauld, Lycée étranger privé Léonard de Vinci, Lycée Jules Ferry, École Élementaire Privée The Lennen Bilingual School, École maternelle Bretonneau, École primaire Pelleport, Collège Colette Besson, Collège Jean-Baptiste Clément, Centre des Formations Industrielles, École élémentaire Alquier-Debrousse, Lycée professionnel Charles de Gaulle, École primaire Pierre Girard, École maternelle Dautancourt, École élémentaire Truffaut, École polonaise, Lycée Technologique Bachelard, Lycée technologique Jules Siegfried, Écoles maternelle et élémentaire Miollis, Institut National des Jeunes Aveugles, Lycée professionnel Gustave Ferrié, École de Sage-Femme de Saint-Antoine, Cité scolaire Rodin, Lycée Jean Lurçat, Lycée privé Notre-Dame de France, Collège Valmy, École Élémentaire Faubourg-Saint-Denis, École Sainte-Anne Sainte-Marie, École maternelle Château des Rentiers, École élémentaire avenue d'Ivry (école B), École Château des Rentiers, École primaire Dunois, Lycée Professionnel Galilée, Collège Gustave Flaubert, Atelier beaux-arts Montparnasse, Saint-Lambert - Théodore deck, Lycée technique du Bâtiment, École primaire Prisse d'Avennes, École Élémentaire Porte Brancion, École Maternelle Porte Brancion, École Saint-Honoré d'Eylau, École Polyvalente, Groupe Scolaire, Collège Eugène Delacroix, Lycée privé Saint-Louis de Gonzague, École Élémentaire, Groupe Scolaire, Groupe Scolaire Molière, École Maternelle Gros, École Élémentaire, Lycée général et technologique privé Charles de Foucauld, École suédoise de Paris, Cours Sainte-Ursule, École privée catholique Blanche de Castille, École de Paris des Métiers de la Table, École maternelle publique Bayen, École élémentaire publique Berthier, École élémentaire Vigée-Lebrun, École Léman-Belleville, École publique élémentaire, École maternelle, Groupe Scolaire du Parc des Princes, École Universelle, Lycée professionnel René Cassin, Institut National des Jeunes Sourds, École primaire publique Frères Voisin, École Maternelle Privée Montessori Rive Gauche, Lycée général Victor Duruy, École primaire, Lycée professionnel Gustave Eiffel, Collège Paul Gauguin, Lycée Edgar Quinet, École maternelle Cour des Noues, Section d'enseignement professionnel du Lycée polyvalent Fresnel, École Élémentaire Eugène Varlin, Collège Georges Brassens, École Maternale et Élémentaire Parmentier, École Sainte-Elisabeth, Cours Hattemer (École secondaire privée), École Robert Estienne, École Saint-Pierre de Chaillot, Collège Aimé Césaire, Collège Jean Moulin, École Élémentaire Severo, Lycée professionnel Erik Satie, Collège Alphonse Daudet, Collège François Couperin, Lycée général Charlemagne, Collège Pierre Alviset, École Élémentaire Gerty-Archimède, Collège Jean François Oeben, École élémentaire privée Saint-Michel de Picpus, Lycée Condorcet, Groupe scolaire Lamoricière-Carnot, Collège Vincent d'Indy, École primaire privée Sainte-Geneviève, Lycée polyvalent Elisa Lemonnier, École primaire, Lycée général et technologique Passy-Saint-Honoré, Collège privé Rocroy Saint-Vincent-de-Paul, École primaire privée Saint-Vincent-de-Paul, École élémentaire Dussoubs, Collège Thomas Mann, École Élémentaire Belzunce, École élémentaire publique Clichy, Section d'enseignement professionnel du Lycée polyvalent Lucas de Nehou, École du Mont Cenis, École publique Sainte-Isaure, Collège et Lycée Jacques Decour, Collège Bossuet - Notre-Dame, Lycée Bossuet - Notre-Dame, École des Enfants du spectacle, École maternelle, École élémentaire, École primaire, École maternelle, Lycée polyvalent Jacques Monod, École maternelle, Groupe scolaire, École primaire, École primaire, Collège Raymond-Queneau, Annexe du collège Pierre-Alviset, École primaire, École maternelle, École maternelle Couronnes, École élémentaire Levert, Lycée Théophile Gautier, École Primaire privée Sainte-Marie de Sion, Annexe du lycée Maximilien-Vox, Lycée Carcado-Saisseval, École élémentaire, École maternelle, École élémentaire, École Maternelle et Élementaire Publique Vandrezanne, Groupe Scolaire Privé Saint-Vincent-de-Paul, École Élémentaire Ricaut, École Maternelle Ricaut, École nationale de chimie physique et biologie de Paris, Groupe scolaire Saint-Jean de Montmartre, École élémentaire Belleville, Collège Françoise Dolto, Collège Lycée Stéphane Mallarmé, École primaire Pouchet, École Primaire Publique Marguerite Long, Collège Boris Vian, Groupe Scolaire Ferdinand Faucon, École élémentaire Hermel, Lycée général Colbert, École élémentaire Gerbert, École primaire Primo Levi, École élémentaire Buffault, Collège Jules Verne, École Élémentaire, École élémentaire, École maternelle Roquette, École maternelle Popincourt, Lycée professionnel Marcel Deprez, École élémentaire Étienne Dolet, École maternelle, Lycée général et technologique Voltaire, École maternelle et élémentaire Louis-Blanc, Lycée général Claude Monet, École élémentaire Cavé, École maternelle Saint-Luc, École René Binet, Groupe Scolaire Saint-Germain de Charonne, Groupe Scolaire des Pyrénées, École privée de la Providence, École polyvalente Champagne, École élémentaire privée Fénelon-Sainte-Marie, École maternelle Richomme, Collège Georges Clemenceau, École primaire, Groupe scolaire Jeanne d'Arc, École Saint-Éloi, Collège privé Sainte-Clotilde, École Saint-Éloi, École primaire Blanche, École élémentaire, Collège Lycée Saint-Louis, Groupe scolaire Milton, École Notre-Dame de Lorette, École primaire Pommard, École élémentaire, École élémentaire, École élémentaire, Annexe du Lycée Fénelon, Lycée polyvalent Lucas de Nehou, Écoles élémentaire et maternelle Chaptal, École élémentaire privée Sainte-Clotilde, Lycée privé catholique Fénelon-Sainte-Marie, École Suzanne Valadon, École primaire d'application Houdon, École Élémentaire Asseline, École élémentaire Jean-François Lépine, École maternelle Charlemagne, École élémentaire Pierre Budin, Collège École Decroly, École Élémentaire Mairie de Paris, École Varet, Collège Jules Romains, École Maternelle Saint-Dominique, École maternelle Roquepine, École Monceau, ENSCI - Les Ateliers, École primaire Tournelles, École primaire, Collège Roland Dorgelès, École primaire, École Active bilingue Lamartine, École primaire, École primaire, École primaire d'application, École primaire, École élémentaire privée du Saint-Esprit, Collège Guy Flavien, École maternelle, Cité Scolaire Henri Bergson, Lycée général et technologique jacquard, Lycée polyvalent l'Initiative, École élémentaire privée Saint-Marcel, Collège André Citroën, École maternelle Ballard, École primaire Balard, École élémentaire de la Guadeloupe, Lycée polyvalent privé Saint-Nicolas, Conservatoire municipal du 13ème Maurice Ravel, Collège Condorcet, Collège Bernard Palissy, École maternelle, Écoles Grégoire-Ferrandi CCIP (École secondaire professionnelle privée), École Joseph de Maistre, Collège Antoine Coysevox, Lycée Professionnel Étienne Dolet, Lycée Turgot, École élémentaire Philippe de Girard, École Polyvalente du Moulin de la Pointe, École primaire, École maternelle Alphonse Baudin, Collège Paul Verlaine, Ateliers des beaux-arts de la ville de Paris - Centre Sévigné, École Primaire Fagon, École maternelle Vincent Auriol, École primaire, École Polyvalente Publique Reims, École maternelle Sarrette A, École primaire privée Saint-Joseph, Groupe scolaire Saint-Jean-Gabriel, Collège privé Thérèse Chappuis, Lycée général privé Saint-Thomas d'Aquin, Lycée professionnel Beaugrenelle, École primaire, École élémentaire privée Fidès, École Maternelle des Longues Raies, École élémentaire Belleville H, Collège Moulin des Prés, École maternelle Bobillot, Collège et Lycée Hélène Boucher, École du Soleil, École élémentaire privée La Trinité, École polyvalente Olivier Métra, École élémentaire Olivier Métra, EREA Édith Piaf, École maternelle Retrait, École élémentaire Pyrénées Eb, École élémentaire Pyrénées, Collège et lycée privés Sainte-Louise, École primaire privée Sainte-Louise, École maternelle Darius Milhaud, École maternelle Manin, École élémentaire Manin Eb, École polyvalente Émile Duployé, École Saint-Paul, École maternelle 7e Art, École élémentaire Tourelles, École maternelle Championnet D, École élémentaire Championnet, École élémentaire Claude Vellefaux, École maternelle Gambetta, Lycée professionnel Théophile Gautier, École élémentaire Charenton, École élémentaire 11 Lesseps, École élémentaire 9 Lesseps, Collège Robert Doisneau, École maternelle Amandiers, École élémentaire Amandiers, Collège Alain Fournier, École maternelle Reuilly X, École élémentaire Reuilly A, École élémentaire Reuilly B, École élementaire Villette, Lycée Louis Amand, Lycée Polyvalent Paul Poiret, École maternelle Charles Baudelaire, Collège Paul-Verlaine (annexe), École maternelle, École maternelle, École élémentaire Tlemcen, Collège Charles Péguy, École primaire privée Sainte-Catherine, Lycée professionnel Abbé Grégoire, École Blanche Jeanne d'Arc, SEGPA du Collège Jean-Baptiste Clément, École polyvalente Davout, École élémentaire Sorbier, École polyvalente Forest, École élémentaire Voltaire, Lycée polyvalent Martin Nadaud, Collège Lucie et Raymond Aubrac, Collège Anne Frank, Lycée Général Lamartine, Rocroy Saint-Vincent-de-Paul, École primaire Cugnot, Collège Daniel Mayer, École Massillon, École primaire privée Notre-Dame de la Croix, Lycée Technologique d'Arts Appliqués Auguste Renoir +41 +ruins and 55.6293002 -2.4084288 +48.8707489 2.3907280, 48.8506016 2.3432743, 48.8459665 2.3500377, 48.8535359 2.3481924, 48.8450745 2.3528309 +1565 and Mont Aigoual, 845, 1685, 1179 and Roc de Peyre, 221.79 and Dent de Marcoule, 702.71, 1067.87 and Mont Mimat, 1101.8, 1417.39 and Mont Grand, 620 and Guidon du Bouquet, 398 and Le Coutach, 470 and Leiris, 848 and Mont Saint-Baudille, 582 and Pioch de Briandes, 677 and Cap Nègre, 685 and Le Moulières, 786 and Mont Méguillou, 738 and La Fréguière, 521 and Pioch Lintil, 701 and Puech Caubel, 1562 and Le Rocher des Laubies, 1503 and Le Moure de la Gardille, 1680 and Pic Cassini, 1247 and Mont Gargo, 1001 and Mont Milan, 752 and Roc Castel, 864 and Pic d'Anjeau, 940 and La Seranne, 1551 and Truc de Fortunio, 1366 and Saint-Guiral, 822 and Mauripe, Sauque Rounde, 1123.5 and Sommet de l'Espinouse, 703.53 and Quiocs, Gratassac, 914 and Pic de la Tourette, 1271 and Puech Saint-Geniez, 1469 and Signal de Mailhebiau, Truc du Coucut, 330 and La Pourcaresse, 1008 and Truc de Grèzes, 325 and La Suque, 1168 and Le Truc de Viala, 1192 and Pic d'Usclat, 1203.8, 1174, 1211.1 and Le Tourrel, 1127.7, 1106.55 and Mont Chabrio, 1657.41 and Signal des Laubies, 1674.3, 1031.1 and La Chaumette, 1421.47 and Signal du Bouges, 662 and Pic Saint-Loup, 1421 and Montagne du Liconès, 1151 and Puech d'Alluech, 1057.6, 1699.27 and Signal de Finiels, 525 and Mont Haut, 782 and Peyre Martine, 772 and Pic de la Caumette, Puech Bartelié, 1276 and Places Hautes, 1324, 1268 and Le Barthas, 1233.2 and Esquino d'Aze, 1075.97 and Serre de Pauparelle, 1152.68, 1219.84, 1239.07, 695 and Signal de Saint Pierre, 1688, 815 and Mont Brion, 567 and Pic d'Arbousse, 1111 and Serre de Montgros, La Pène, 728.98, 811 and Faulat, Bloc de la Capelle, 399 and Piémal, 459 and L'Évès, 561 and Lestan, 502 and Mont Soulages, 487 and Puech Ferrié, 722 and L'Oiselette, 420 and Puech Auras +700 +yes +40 +49.4296874 8.6826637, 49.4147764 8.6710359, 49.3974030 8.6486853, 49.3977437 8.6485764, 49.4045638 8.6759283, 49.3746833 8.6826514, 49.3790412 8.6689354, 49.3792964 8.6699345, 49.4048779 8.6827341, 49.4227158 8.6483350, 49.3840770 8.6710133, 49.3809325 8.6701888, 49.4168755 8.6790034, 49.3992315 8.6710140, 49.4228152 8.6504004 +yes +739 and 55.9340759 -3.0969078, 55.9519539 -3.1884083, 55.9479503 -3.1917952, 55.9253583 -3.4147034, 55.9245412 -3.3113504, 55.9530134 -3.2142910, 55.9838701 -3.4034761, 55.9996908 -3.3883162, 55.9478002 -3.2081413, 55.9386935 -3.2182790, 55.9400293 -3.2218656, 55.9448031 -3.2122001, 55.9455517 -3.2319996, 55.9536641 -3.2412247, 55.9794069 -3.3763041, 55.9393708 -3.2226169, 55.9879261 -3.3873321, 55.9339951 -3.2242895, 55.9812940 -3.3771341, 55.9485590 -3.1984660, 55.9527795 -3.1830101, 55.9215769 -3.3071515, 55.9168700 -3.2880088, 55.9233928 -3.2495641, 55.9171955 -3.2788783, 55.9203337 -3.4338594, 55.9136481 -3.2924112, 55.9223025 -3.3173373, 55.9245077 -3.4143882, 55.9342483 -3.2886138, 55.9185433 -3.2719005, 56.0005355 -3.4042125, 56.0005266 -3.4040011, 55.9115356 -3.3190780, 55.9119727 -3.3136012, 55.9168780 -3.2879061, 55.9216109 -3.3071885, 55.9187028 -3.3241409, 55.9194248 -3.3250354, 55.9201949 -3.2568968, 55.9260122 -3.3234292, 55.9201070 -3.3153239, 55.9173013 -3.2758036, 55.9127039 -3.3185766, 55.9178228 -3.2883067, 55.9177320 -3.2883616, 55.9177084 -3.2885519, 55.9168518 -3.2881725, 55.9208989 -3.3111331, 55.9235850 -3.2498898, 55.9234055 -3.2496291, 55.9234261 -3.3789665, 55.9284947 -3.3843026, 55.9347497 -3.3921486, 55.9399416 -3.4022022, 55.9424898 -3.4014836, 55.9173663 -3.2847091, 55.9291086 -3.1622145, 55.9287712 -3.1607042, 55.9191333 -3.2651206, 55.9258250 -3.2453116, 55.9195196 -3.2618447, 55.9282449 -3.2552516, 55.9383057 -3.2503683, 55.9415254 -3.1004964, 55.9487280 -3.1868685, 55.9658983 -3.2653178, 55.9681946 -3.2394189, 55.9749839 -3.1786455, 56.0005670 -3.4038864, 56.0005711 -3.4043334, 55.9386987 -3.3913489, 55.9727101 -3.1970488, 55.9264863 -3.4288285, 55.9603081 -3.2107045, 55.9363357 -3.2986518, 55.9277719 -3.3059687, 55.9162943 -3.2965876, 55.9198806 -3.3512702, 55.9625350 -3.2037987, 55.9623678 -3.2065428, 55.9736483 -3.1827628, 55.9514109 -3.3422820, 55.9675425 -3.1917851, 55.9688726 -3.1950695, 55.9725744 -3.1878307, 55.9666580 -3.2682414, 55.9764194 -3.1968732, 55.9757382 -3.1965357, 55.9709295 -3.2290845, 55.9606871 -3.2487338, 55.9536622 -3.1872425, 55.9565123 -3.2442957, 55.9559374 -3.2438911, 55.9203523 -3.3017825, 55.9245498 -3.4144094, 55.9202937 -3.4339025, 55.9689317 -3.1949769, 55.9628443 -3.2000159, 55.9696454 -3.2006076, 55.9679404 -3.1368303, 55.9338588 -3.2867051, 55.9245026 -3.2462826, 55.9245495 -3.2462640, 55.9232175 -3.2481049, 55.9303574 -3.2858444, 55.9325097 -3.2743332, 55.9192286 -3.1386957, 55.9197007 -3.1380226, 55.9137536 -3.1474495, 55.9156308 -3.2780598, 55.9272696 -3.2320395, 55.9515768 -3.2367550, 55.9430287 -3.2292834, 55.9149135 -3.2153765, 55.9126347 -3.2166853, 55.9403043 -3.3172893, 55.9402068 -3.3174470, 55.9715342 -3.2396512, 55.9253227 -3.2038950, 55.9130257 -3.2893735, 55.9120000 -3.2937704, 55.9138082 -3.2861312, 55.9409626 -3.2385035, 55.9409129 -3.2364482, 55.9614176 -3.2176893, 55.9563828 -3.1500518, 55.9567793 -3.1501599, 55.9640660 -3.1617691, 55.9711047 -3.1519140, 55.9700990 -3.1476178, 55.9699103 -3.1473612, 55.9794597 -3.1720782, 55.9791297 -3.1704934, 55.9776702 -3.1930546, 55.9271391 -3.1870984, 55.9312243 -3.1716568, 55.9217665 -3.1317079, 55.9196528 -3.1357238, 55.9452306 -3.0932586, 55.9763714 -3.1700979, 55.9727178 -3.2084635, 55.9731820 -3.2057650, 55.9458946 -3.2359826, 55.9476467 -3.2333076, 55.9890893 -3.3836019, 55.9421078 -3.2471068, 55.9892088 -3.3844692, 55.9787745 -3.1699744, 55.9447609 -3.2434052, 55.9498076 -3.2219942, 55.9579663 -3.2088053, 55.9368480 -3.2372057, 55.9659135 -3.1340343, 55.9672545 -3.1958578, 55.9519136 -3.2180305, 55.9148733 -3.2566448, 55.9889521 -3.3925230, 55.9347488 -3.3917488, 55.9357638 -3.2272989, 55.9412282 -3.2280878, 55.9501207 -3.2294132, 55.9527001 -3.1828037, 55.9494023 -3.2030602, 55.9592735 -3.2449240, 55.9637680 -3.2418855, 55.9526920 -3.1833146, 55.9560012 -3.1381828, 55.9551419 -3.4188844, 55.9303434 -3.3644399, 55.9374478 -3.3332124, 55.9792112 -3.3468255, 55.9260992 -3.4016020, 55.9259958 -3.4015235, 55.9259530 -3.4071702, 55.9287081 -3.4030907, 55.9258312 -3.4073098, 55.9520267 -3.1910592, 55.9574350 -3.4170582, 55.9574829 -3.4172555, 55.9643486 -3.4027677, 55.9644590 -3.4027248, 55.9275914 -3.3074492, 55.9614168 -3.1711787, 55.9188285 -3.2753539, 55.9124646 -3.2769931, 55.9367364 -3.1436706, 55.9352189 -3.1425272, 55.9509175 -3.2218773, 55.9516061 -3.2220318, 55.9443411 -3.1018614, 55.9523386 -3.2166925, 55.9328704 -3.2359316, 55.9316516 -3.2342827, 55.9314129 -3.2338599, 55.9197117 -3.2569286, 55.9119663 -3.2594709, 55.9177949 -3.2736100, 55.9305774 -3.2544337, 55.9172400 -3.2773632, 55.9501605 -3.1999414, 55.9606818 -3.1685748, 55.9662929 -3.1561624, 55.9580618 -3.1583013, 55.9663264 -3.1333091, 55.9409529 -3.2239038, 55.9344797 -3.2675638, 55.9293469 -3.2915960, 55.9287029 -3.3161849, 55.9408387 -3.4098588, 55.9275707 -3.3441434, 55.9275101 -3.2238190, 55.9600201 -3.3539411, 55.9641042 -3.3163667, 55.9355488 -3.2470879, 55.9719464 -3.2186362, 55.9336260 -3.2302083, 55.9388981 -3.2376677, 55.9389643 -3.2370370, 55.9129956 -3.2891261, 55.9396630 -3.3213183, 55.9168391 -3.2882289, 55.9340400 -3.0971256, 55.9439226 -3.3293194, 55.9505782 -3.1643798, 55.9364742 -3.1442593, 55.9364251 -3.1442736, 55.9251316 -3.4146061, 55.9254779 -3.4147399, 55.9513463 -3.1915316, 55.9182088 -3.2391527, 55.9460336 -3.2355680, 55.9415110 -3.1008429, 55.9414446 -3.1006519, 55.9485114 -3.1092515, 55.9185755 -3.2543017, 55.9381683 -3.1188638, 55.9245837 -3.2400577, 55.9256006 -3.2109986, 55.9676379 -3.1938318, 55.9329461 -3.2747956, 55.9383639 -3.2504417, 55.9722323 -3.2146044, 55.9724565 -3.2118885, 55.9612213 -3.2440717, 55.9308244 -3.1518837, 55.9297330 -3.1533386, 55.9316562 -3.1507078, 55.9318718 -3.1463329, 55.9277241 -3.1234427, 55.9720416 -3.2015689, 55.9466298 -3.0986934, 55.9574952 -3.1234468, 55.9197247 -3.1913944, 55.9244601 -3.3114765, 55.9252699 -3.3105658, 55.9396484 -3.3214441, 55.9241965 -3.3130785, 55.9192182 -3.3037407, 55.9198673 -3.3046957, 55.9258851 -3.2241566, 55.9413787 -3.0870066, 55.9449606 -3.0819338, 55.9455754 -3.0809719, 55.9334961 -3.4103614, 55.9398933 -3.4112294, 55.9659972 -3.3621260, 55.9346898 -3.4222766, 55.9638152 -3.1833546, 55.9225607 -3.4008937, 55.9377687 -3.0829248, 55.9562912 -3.1167564, 55.9553136 -3.1347966, 55.9523526 -3.1216124, 55.9212176 -3.3415207, 55.9396282 -3.4022402, 55.9387262 -3.4018519, 55.9121454 -3.2269756, 55.9793041 -3.3762804, 55.9617180 -3.4132830, 55.9617222 -3.4130523, 55.9559888 -3.1381085, 55.9386713 -3.2294016, 55.9408297 -3.2281101, 55.9313859 -3.2266750, 55.9374211 -3.3332788, 55.9719796 -3.1819990, 55.9729029 -3.1796943, 55.9781105 -3.2484770, 55.9776368 -3.1715747, 55.9866870 -3.3794986, 55.9129316 -3.2587696, 55.9481854 -3.1327032, 55.9497070 -3.1282573, 55.9505802 -3.1256311, 55.9315629 -3.0896016, 55.9316842 -3.0896474, 55.9524152 -3.1898271, 55.9614118 -3.4422153, 55.9472029 -3.4080139, 55.9470811 -3.4083701, 55.9471370 -3.4081966, 55.9219763 -3.4203941, 55.9201516 -3.3152932, 55.9223314 -3.3172895, 55.9517230 -3.1626551, 55.9195263 -3.1315612, 55.9204725 -3.1296564, 55.9271847 -3.2322346, 55.9752701 -3.1721362, 55.9370202 -3.1150617, 55.9498130 -3.1278824, 55.9335311 -3.2460168, 55.9654945 -3.1987511, 55.9414195 -3.2607368, 55.9491933 -3.2339726, 55.9491916 -3.2340269, 55.9265981 -3.3165664, 55.9401509 -3.1051771, 55.9185615 -3.2564239, 55.9182467 -3.2558059, 55.9255939 -3.2592967, 55.9212342 -3.3024056, 55.9203734 -3.3017859, 55.9204463 -3.3018734, 55.9627829 -3.3296636, 55.9621338 -3.2357562, 55.9551141 -3.1716795, 55.9554953 -3.1694437, 55.9557105 -3.1678403, 55.9198790 -3.2500668, 55.9491095 -3.1886633, 55.9261709 -3.2650765, 55.9483181 -3.1921400, 55.9147477 -3.3175730, 55.9347539 -3.0927986, 55.9390304 -3.3915516, 55.9388624 -3.3914362, 55.9475607 -3.2661403, 55.9309334 -3.3150690, 55.9331552 -3.3165436, 55.9264385 -3.2440961, 55.9545824 -3.1235823, 55.9502050 -3.1185776, 55.9503672 -3.1183641, 55.9502919 -3.1184525, 55.9514019 -3.1213054, 55.9515864 -3.1214448, 55.9337041 -3.3712199, 55.9347207 -3.2664128, 55.9384573 -3.2506124, 55.9781398 -3.2041489, 55.9384983 -3.1011659, 55.9383994 -3.1013350, 55.9360595 -3.0997430, 55.9360181 -3.0994647, 55.9352687 -3.0936685, 55.9301069 -3.2856870, 55.9277603 -3.3107484, 55.9277821 -3.3107229, 55.9604081 -3.1692015, 55.9287128 -3.3160778, 55.9385531 -3.2456125, 55.9203652 -3.2493989, 55.9523063 -3.2197090, 55.9410985 -3.2191428, 55.9800561 -3.1685204, 55.9186017 -3.2133163, 55.9197518 -3.1694474, 55.9195114 -3.1713437, 55.9189800 -3.1809284, 55.9200112 -3.1691248, 55.9201390 -3.1981185, 55.9191575 -3.2099986, 55.9203639 -3.1969606, 55.9265636 -3.1932019, 55.9188974 -3.1826016, 55.9189683 -3.1842309, 55.9202821 -3.1940116, 55.9398002 -3.2220426, 55.9784658 -3.2466154, 55.9789098 -3.2447800, 55.9679775 -3.1369332, 55.9717821 -3.1844100, 55.9716908 -3.1860434, 55.9717113 -3.1875051, 55.9681145 -3.1895803, 55.9441698 -3.2693328, 55.9465305 -3.2693949, 55.9453130 -3.2700572, 55.9441175 -3.2720063, 55.9442882 -3.1018500, 55.9399651 -3.2399588, 55.9394933 -3.2453748, 55.9559491 -3.1383617, 55.9572454 -3.1673651, 55.9374126 -3.4329432, 55.9426504 -3.4419958, 55.9516224 -3.1908957, 55.9150903 -3.3211208, 55.9147213 -3.3164547, 55.9670513 -3.1881007, 55.9843921 -3.4038630, 55.9733736 -3.3721666, 55.9615149 -3.4204840, 55.9566510 -3.4260417, 55.9565322 -3.4260555, 55.9151194 -3.2550825, 55.9122377 -3.2233399, 55.9114742 -3.3289109, 55.9622789 -3.2011859, 55.9421647 -3.2470797, 55.9354120 -3.1193612, 55.9393811 -3.2455628, 55.9383946 -3.2504900, 55.9382808 -3.2503344, 55.9303232 -3.2858245, 55.9277363 -3.3059625, 55.9293125 -3.2915775, 55.9407555 -3.1334453, 55.9536161 -3.1183473, 55.9522235 -3.1196956, 55.9523435 -3.1199743, 55.9389764 -3.2564267, 55.9343717 -3.3380326, 55.9336909 -3.3354767, 55.9403251 -3.1711216, 55.9559118 -3.1688770, 55.9457633 -3.1036022, 55.9471038 -3.1039051, 55.9501220 -3.1187317, 55.9512778 -3.1212874, 55.9506598 -3.1233359, 55.9372017 -3.1058578, 55.9553192 -3.1595172, 55.9524698 -3.3734976, 55.9650158 -3.2055812, 55.9639608 -3.2050152, 55.9640506 -3.2037879, 55.9644488 -3.2053085, 55.9768122 -3.1695301, 55.9460133 -3.0786259, 55.9641775 -3.2051492, 55.9698924 -3.2368261, 55.9414184 -3.0989528, 55.9784045 -3.1624012, 55.9436659 -3.0898885, 55.9714848 -3.1856041, 55.9644884 -3.2607345, 55.9651737 -3.3161001, 55.9528004 -3.1190589, 55.9474170 -3.4010655, 55.9531953 -3.4004826, 55.9495735 -3.2250446, 55.9360819 -3.0998763, 55.9869438 -3.3819439, 55.9116079 -3.2325243, 55.9499764 -3.4058056, 55.9495739 -3.4048963, 55.9439064 -3.4138957, 55.9254219 -3.4280602, 55.9255253 -3.4280577, 55.9792933 -3.1868121, 55.9196416 -3.2758298, 55.9175481 -3.2816550, 55.9211105 -3.4253433, 55.9206868 -3.4296551, 55.9214106 -3.3084104, 55.9185066 -3.2720477, 55.9301289 -3.1759929, 55.9171117 -3.3421022, 55.9715066 -3.2804764, 55.9714808 -3.2806451, 55.9712166 -3.2803296, 55.9888757 -3.3973222, 55.9340984 -3.4004483, 55.9339794 -3.4004240, 55.9523218 -3.1219972, 55.9523473 -3.1218286, 55.9237523 -3.2486106, 55.9667609 -3.1986965, 55.9527147 -3.1829537, 55.9629385 -3.4032441, 55.9623104 -3.4309700, 55.9612608 -3.2180586, 55.9328281 -3.2746596, 55.9328551 -3.2746954, 55.9329730 -3.2748287, 55.9394512 -3.2452451, 55.9431085 -3.2293645, 55.9430025 -3.2292568, 55.9409323 -3.2384857, 55.9430616 -3.2293168, 55.9395239 -3.2453984, 55.9393795 -3.2453481, 55.9394029 -3.2453236, 55.9323864 -3.2871966, 55.9427303 -3.4223013, 55.9819465 -3.1774958, 55.9172683 -3.2148101, 55.9733347 -3.1998701, 55.9387086 -3.4018441, 55.9347390 -3.4004629, 55.9347350 -3.4006735, 55.9408977 -3.3783402, 55.9418888 -3.3745067, 55.9370417 -3.3589684, 55.9369366 -3.3589993, 55.9226886 -3.1659385, 55.9289069 -3.2483973, 55.9254934 -3.4147419, 55.9596457 -3.1649121, 55.9518266 -3.2180597, 55.9713657 -3.3285830, 55.9139843 -3.3266712, 55.9138724 -3.3283900, 55.9138281 -3.3289507, 55.9404913 -3.2132648, 55.9563336 -3.3977999, 55.9702651 -3.3747743, 55.9793984 -3.3747839, 55.9795013 -3.3748245, 55.9402898 -3.3231801, 55.9404637 -3.3353169, 56.0030485 -3.4136632, 56.0029942 -3.4133582, 55.9575192 -3.4174461, 55.9551170 -3.4187252, 55.9412112 -3.2385524, 55.9395609 -3.2454472, 55.9433784 -3.2295944, 55.9415382 -3.3356085, 55.9761578 -3.3786363, 55.9409548 -3.4098374, 55.9206332 -3.3019882, 55.9867511 -3.3817443, 55.9867527 -3.3819155, 55.9865602 -3.3817051, 55.9203199 -3.1339112, 55.9300778 -3.2856656, 55.9434087 -3.2296013, 55.9291865 -3.2914547, 55.9324790 -3.2743161, 55.9384884 -3.2506410, 55.9291523 -3.2914405, 55.9410200 -3.2385372, 55.9395943 -3.2454714, 55.9404906 -3.3353136, 55.9412402 -3.2385785, 55.9399375 -3.2400031, 55.9409900 -3.2385210, 55.9347120 -3.2664838, 55.9410979 -3.2385587, 55.9117266 -3.2935809, 55.9173632 -3.2824005, 55.9156210 -3.2832169, 55.9565035 -3.4260650, 55.9566866 -3.4260323, 55.9330752 -3.2518749, 55.9195813 -3.1706208, 55.9352633 -3.0935375, 55.9347337 -3.0928281, 55.9171429 -3.1435645, 55.9174253 -3.1426070, 55.9509169 -3.4494853, 55.9501752 -3.1186403, 55.9502514 -3.1185072, 55.9594452 -3.3187542, 55.9389592 -3.2630360, 55.9379992 -3.2629489, 55.9386082 -3.2629238, 55.9388046 -3.2630111, 55.9734237 -3.1921831, 55.9481275 -3.2086529, 55.9486427 -3.2079483, 55.9413168 -3.2110594, 55.9128992 -3.3173628, 55.9142511 -3.3254009, 55.9562630 -3.2104579, 55.9710708 -3.3853507, 55.9712667 -3.3862514, 55.9527474 -3.1872395, 55.9639719 -3.2292745, 55.9431363 -3.2293927, 55.9431629 -3.2294198, 55.9432761 -3.2295356, 55.9432343 -3.2294925, 55.9431947 -3.2294521, 55.9347006 -3.2665504, 55.9563108 -3.2104273, 55.9198136 -3.1910370, 55.9198330 -3.1912323, 55.9519638 -3.1893845, 55.9444560 -3.2438143, 55.9276018 -3.1242863, 55.9193447 -3.3215440, 55.9401029 -3.2459404, 55.9400420 -3.2458821, 55.9144679 -3.3441278, 55.9199272 -3.3046850, 55.9212736 -3.3299833, 55.9556775 -3.1678207, 55.9554007 -3.1697309, 55.9550351 -3.1719805, 55.9563502 -3.1500510, 55.9552887 -3.1595205, 55.9550536 -3.1721411, 55.9231423 -3.1317251, 55.9263765 -3.1245977, 55.9320392 -3.1186143, 55.9587192 -3.3919290, 55.9230920 -3.1288480, 55.9264003 -3.1245253, 55.9238791 -3.1301288, 55.9249092 -3.1317835, 55.9574584 -3.1234473, 55.9294189 -3.4153351, 55.9279524 -3.4223584, 55.9450441 -3.0797032, 55.9442320 -3.1018081, 55.9699278 -3.1455846, 55.9881960 -3.3897624, 55.9392936 -3.3235726, 55.9392655 -3.3236898, 55.9231803 -3.2480077, 55.9164084 -3.1849654, 55.9177937 -3.1846644, 55.9240254 -3.2490676, 55.9370530 -3.1415506, 55.9517404 -3.2180889, 55.9446501 -3.0880025, 55.9121932 -3.1484610, 55.9239852 -3.3778710, 55.9148989 -3.2814860, 55.9661699 -3.3763106, 55.9469951 -3.1020335, 55.9600478 -3.3539062, 55.9660032 -3.3620577, 55.9334622 -3.4103647, 55.9340641 -3.4004428, 55.9120235 -3.2937870, 55.9138395 -3.2861579, 55.9130615 -3.2893982, 55.9149233 -3.2814984, 55.9408433 -3.2281719, 55.9195246 -3.2619701, 55.9258506 -3.2453444, 55.9386713 -3.2294652, 55.9316728 -3.2343298, 55.9236107 -3.2499213, 55.9643068 -3.3786468, 55.9293834 -3.4153028, 55.9264502 -3.4287984, 55.9279123 -3.4223325, 55.9339469 -3.4004134, 55.9932311 -3.4213582, 55.9851481 -3.4224341, 55.9846056 -3.4221843, 55.9794519 -3.3961580, 55.9147359 -3.2813285, 55.9506990 -3.1783969, 55.9902549 -3.4029695, 55.9513642 -3.1213511, 55.9436387 -3.0899418, 55.9776667 -3.1692632, 55.9773820 -3.1693260, 55.9772501 -3.1693673, 55.9766189 -3.1695907, 55.9777727 -3.1692450, 55.9774929 -3.1693026, 55.9996794 -3.3883864, 55.9869295 -3.3820116, 55.9256594 -3.2520596, 55.9346516 -3.4223004, 55.9522338 -3.4284125, 55.9750850 -3.3739613, 55.9751354 -3.3739217, 55.9297266 -3.2084328, 55.9624869 -3.2031288, 55.9541500 -3.1863978, 55.9161544 -3.2784586, 55.9119787 -3.2185675, 55.9529445 -3.1871277, 55.9547367 -3.1871003, 55.9517145 -3.2168733, 55.9516104 -3.2171239, 55.9481248 -3.3606422, 55.9480840 -3.3606557, 55.9335665 -3.2301068, 55.9851895 -3.2288638, 55.9848232 -3.2292501, 55.9508226 -3.3981450, 55.9527384 -3.1830711, 55.9527092 -3.1828278, 55.9527213 -3.1833724, 55.9527280 -3.1833793, 55.9528735 -3.1872831, 55.9290689 -3.1622585, 55.9287341 -3.1607101, 55.9388821 -3.2377253, 55.9368436 -3.2372698, 55.9369848 -3.1150579, 55.9275073 -3.2236133, 55.9275449 -3.2240159, 55.9274742 -3.2239695, 55.9247052 -3.3200351, 55.9350677 -3.3303702, 55.9614221 -3.2179944, 55.9215480 -3.3071147, 55.9244602 -3.4143583, 55.9202507 -3.4339357, 55.9475046 -3.2015110, 55.9198302 -3.1373243, 55.9141652 -3.2846493, 55.9141882 -3.2846708, 55.9236747 -3.3220366, 55.9700060 -3.1923639, 55.9761370 -3.3785895, 55.9629034 -3.4032323, 55.9312242 -3.3587166, 55.9312383 -3.3586227, 55.9517074 -3.1917116, 55.9519919 -3.1918536, 55.9346349 -3.2323382, 55.9446635 -3.3578459, 55.9444504 -3.3576432, 55.9548342 -3.1729534, 55.9549105 -3.1724623, 55.9523992 -3.1195987, 55.9426820 -3.2697777, 55.9515016 -3.1889995, 55.9515990 -3.1890502, 55.9525338 -3.1894550, 55.9517985 -3.1891003, 55.9514012 -3.1889631, 55.9503297 -3.3618837, 55.9497743 -3.3614623, 55.9546481 -3.3661710, 55.9545808 -3.3464702 +155 +italian +47 +420 +434 and 53.2306579 10.4274344, 53.2514965 10.3906909, 53.2381958 10.3944837, 53.2358185 10.4619107, 53.2344519 10.4427159, 53.2482281 10.4264291, 53.2376960 10.4325560, 53.2464094 10.4325320, 53.2463632 10.4288812, 53.2464306 10.4307655, 53.2466243 10.4273478, 53.2470137 10.4284433, 53.2477825 10.4302354, 53.2353691 10.4518885, 53.2353999 10.4486849, 53.2354548 10.4510422, 53.2360726 10.4487415, 53.2361414 10.4516016, 53.2364389 10.4502565, 53.2364974 10.4521568, 53.2374203 10.4521229, 53.2374681 10.4505104, 53.2324589 10.4494652, 53.2332900 10.4491819, 53.2336333 10.4480214, 53.2338477 10.4502845, 53.2339187 10.4459007, 53.2342824 10.4473529, 53.2347052 10.4496245, 53.2374793 10.4489675, 53.2594390 10.4168953, 53.2557457 10.4265304, 53.2557575 10.4282082, 53.2557160 10.4301049, 53.2557182 10.4319373, 53.2556659 10.4336625, 53.2556725 10.4354274, 53.2555984 10.4369689, 53.2552274 10.4297702, 53.2567749 10.4250120, 53.2557886 10.4248316, 53.2547174 10.4246533, 53.2538933 10.4233900, 53.2553121 10.4238026, 53.2562437 10.4240312, 53.2404791 10.4262237, 53.2429519 10.4008019, 53.2480010 10.4868028, 53.2748772 10.4279071, 53.2760590 10.4277894, 53.2697006 10.4281536, 53.2723907 10.4272186, 53.2749561 10.4189260, 53.2812663 10.4225674, 53.2812786 10.4231167, 53.2576784 10.4677211, 53.2578471 10.4649552, 53.2580921 10.4710561, 53.2584940 10.4720382, 53.2585333 10.4636309, 53.2591360 10.4753109, 53.2593004 10.4665742, 53.2596843 10.4692332, 53.2599695 10.4748172, 53.2599982 10.4673232, 53.2600019 10.4715583, 53.2600305 10.4731543, 53.2606052 10.4703320, 53.2609464 10.4587271, 53.2611048 10.4647618, 53.2612997 10.4707444, 53.2613988 10.4599940, 53.2616182 10.4682951, 53.2617010 10.4647235, 53.2619134 10.4613162, 53.2624884 10.4602395, 53.2628284 10.4619872, 53.2632944 10.4630635, 53.2636301 10.4641984, 53.2677387 10.4671458, 53.2688701 10.4648114, 53.2476784 10.4310532, 53.2620616 10.4431441, 53.2627637 10.4434730, 53.2631120 10.4487988, 53.2466525 10.4367183, 53.2470863 10.4350133, 53.2423876 10.4420320, 53.2613938 10.4401269, 53.2569745 10.4269350, 53.2461399 10.4438514, 53.2524395 10.4301336, 53.2472738 10.4442136, 53.2507096 10.4062956, 53.2511739 10.4045475, 53.2518601 10.4079106, 53.2474685 10.4101348, 53.2476602 10.4100841, 53.2478879 10.4090087, 53.2483319 10.4089512, 53.2488889 10.4089334, 53.2491268 10.4089370, 53.2493605 10.4089617, 53.2503326 10.4098874, 53.2513612 10.4091098, 53.2519746 10.4091802, 53.2496895 10.4273813, 53.2751411 10.3914676, 53.2754405 10.3930396, 53.2753134 10.3903724, 53.2758660 10.3923041, 53.2767893 10.3927209, 53.2636307 10.4245916, 53.2646531 10.4167896, 53.2661977 10.4171066, 53.2664837 10.4159812, 53.2668560 10.4148126, 53.2674026 10.4135964, 53.2708861 10.4183448, 53.2498454 10.4453711, 53.2451127 10.4580505, 53.2447753 10.4496377, 53.2444416 10.4521675, 53.2466541 10.4481968, 53.2439985 10.4511707, 53.2433365 10.4529522, 53.2450298 10.4511910, 53.2508028 10.4320024, 53.2493169 10.4424974, 53.2484897 10.4445314, 53.2425054 10.4050319, 53.2431809 10.4118645, 53.2448429 10.4150692, 53.2434711 10.4097803, 53.2457985 10.4135773, 53.2439041 10.4080892, 53.2443070 10.4133285, 53.2334502 10.4193616, 53.2606051 10.4115429, 53.2608526 10.4090210, 53.2615042 10.4087478, 53.2617387 10.4096613, 53.2619464 10.4110216, 53.2621622 10.4084304, 53.2623548 10.4121160, 53.2629281 10.4085972, 53.2631305 10.4106459, 53.2647205 10.4091444, 53.2649416 10.4117421, 53.2662385 10.4061297, 53.2662434 10.4110725, 53.2664851 10.4092302, 53.2680052 10.4073621, 53.2709483 10.4062063, 53.2515483 10.4121280, 53.2514905 10.4110508, 53.2505232 10.4112946, 53.2477910 10.4117278, 53.2480514 10.4133703, 53.2604633 10.4017644, 53.2555883 10.3926045, 53.2614502 10.4013265, 53.2623791 10.4029792, 53.2431248 10.4511554, 53.2438666 10.4480715, 53.2592925 10.4092962, 53.2473935 10.4062501, 53.2473799 10.4075262, 53.2473916 10.4080959, 53.2474107 10.4052637, 53.2494840 10.4300953, 53.2481670 10.4346215, 53.2458125 10.4518070, 53.2439025 10.4768601, 53.2434731 10.4697735, 53.2470823 10.4613186, 53.2472460 10.4597458, 53.2482467 10.4079450, 53.2483432 10.4096472, 53.2483822 10.4101723, 53.2493813 10.4105157, 53.2467508 10.4063593, 53.2469707 10.4075598, 53.2473474 10.4079990, 53.2469673 10.4043045, 53.2500593 10.4078320, 53.2501555 10.4057429, 53.2500368 10.4082329, 53.2491048 10.4061063, 53.2504202 10.4086255, 53.2504100 10.4085736, 53.2503178 10.4082778, 53.2504601 10.4080188, 53.2500232 10.4084882, 53.2500749 10.4087996, 53.2503959 10.4087306, 53.2500906 10.4076015, 53.2501331 10.4078625, 53.2500632 10.4074607, 53.2468602 10.4400314, 53.2408081 10.4086237, 53.2383950 10.4044231, 53.2441643 10.4118430, 53.2458636 10.4067670, 53.2370206 10.4120269, 53.2388072 10.4118368, 53.2383343 10.4100362, 53.2464568 10.4091614, 53.2520457 10.4140117, 53.2463801 10.4161401, 53.2334051 10.4312145, 53.2356302 10.4249094, 53.2287405 10.4167992, 53.2343563 10.4263896, 53.2354748 10.4313973, 53.2354347 10.4262096, 53.2448327 10.4441934, 53.2470689 10.4280468, 53.2098814 10.4094226, 53.2270304 10.4055514, 53.2317482 10.4071928, 53.2259271 10.4070499, 53.2277424 10.4069142, 53.2235946 10.4057242, 53.2282035 10.4056925, 53.2368105 10.4578213, 53.2395337 10.4582663, 53.2309539 10.4419181, 53.2314967 10.4463242, 53.2308848 10.4492264, 53.2323355 10.4471542, 53.2272126 10.4439771, 53.2339035 10.4416727, 53.2306586 10.4606055, 53.2315780 10.4627704, 53.2320425 10.4588783, 53.2379454 10.4649031, 53.2338844 10.4563044, 53.2352421 10.4646459, 53.2360363 10.4647665, 53.2368785 10.4645527, 53.2338417 10.4550219, 53.2364360 10.4608447, 53.2355574 10.4632641, 53.2388126 10.4650372, 53.2375897 10.4637237, 53.2372645 10.4609571, 53.2372520 10.4666979, 53.2291945 10.4477457, 53.2314682 10.4429273, 53.2300774 10.4458006, 53.2247784 10.4032230, 53.2458943 10.4092073, 53.2492415 10.4243569, 53.2495394 10.4257241, 53.2268354 10.3992910, 53.2415081 10.4414674, 53.2447042 10.4488951, 53.2591541 10.4228734, 53.2531193 10.4289225, 53.2536231 10.4312934, 53.2535919 10.4341019, 53.2530772 10.4329754, 53.2520289 10.4329519, 53.2503250 10.4439631, 53.2368841 10.3866655, 53.2377268 10.3860606, 53.2416417 10.3940583, 53.2376043 10.3810798, 53.2387823 10.3860177, 53.2367082 10.3912326, 53.2380630 10.3840673, 53.2378794 10.3826948, 53.2407555 10.4007535, 53.2404717 10.3997546, 53.2395944 10.3985421, 53.2458923 10.4400033, 53.2535244 10.4019801, 53.2633543 10.4045372, 53.2534711 10.4006830, 53.2549894 10.4061091, 53.2543851 10.4082661, 53.2543804 10.4060248, 53.2540093 10.4023440, 53.2573312 10.4009660, 53.2559564 10.4017902, 53.2533435 10.3995289, 53.2559452 10.3987908, 53.2562857 10.3954771, 53.2570138 10.3927220, 53.2559204 10.3882040, 53.2561297 10.3964899, 53.2570467 10.3940277, 53.2569395 10.3955723, 53.2536801 10.3966334, 53.2531696 10.3988523, 53.2569368 10.3965959, 53.2562339 10.3936391, 53.2568583 10.3913970, 53.2568318 10.3877182, 53.2684063 10.3867529, 53.2692811 10.3869036, 53.2694151 10.3814748, 53.2694886 10.3885844, 53.2695934 10.4026124, 53.2699408 10.3874623, 53.2701291 10.3838584, 53.2702473 10.4022888, 53.2703738 10.3817945, 53.2707057 10.3800640, 53.2708391 10.3853051, 53.2708483 10.3883143, 53.2711477 10.3786936, 53.2714200 10.3875657, 53.2714919 10.3866581, 53.2719613 10.3836590, 53.2720682 10.3912095, 53.2724827 10.3902882, 53.2731467 10.3941091, 53.2740632 10.3910205, 53.2741833 10.3828456, 53.2747945 10.3890874, 53.2748489 10.4015756, 53.2749890 10.3879326, 53.2753625 10.3796426, 53.2761921 10.3854859, 53.2762217 10.3814291, 53.2762904 10.3802840, 53.2775875 10.3842757, 53.2784923 10.3886185, 53.2789133 10.3858079, 53.2495203 10.3995705, 53.2493671 10.3858430, 53.2526624 10.4118844, 53.2517767 10.4001823, 53.2522463 10.3902101, 53.2500720 10.4011059, 53.2475169 10.4005259, 53.2484006 10.4021774, 53.2523889 10.4132605, 53.2469181 10.3963257, 53.2438651 10.4005927, 53.2446208 10.4024979, 53.2471780 10.3950082, 53.2467293 10.3940752, 53.2473055 10.4086941, 53.2444293 10.4038319, 53.2458461 10.4007459, 53.2472146 10.3937709, 53.2440361 10.4059309, 53.2447827 10.4016712, 53.2440611 10.4020762, 53.2832009 10.3964773, 53.2479075 10.4187359, 53.2538347 10.4354390, 53.2548627 10.4330521, 53.2570429 10.4150602, 53.2564388 10.4170875, 53.2552365 10.4159898, 53.2382359 10.3992805, 53.2390485 10.3985253, 53.2398936 10.4000290, 53.2376172 10.3929051, 53.2414340 10.4026714, 53.2312843 10.3957315, 53.2380081 10.3967438, 53.2331212 10.3964182, 53.2384392 10.3957472, 53.2354407 10.3993932, 53.2325225 10.3978456, 53.2388447 10.3997875, 53.2326260 10.3962404, 53.2560316 10.4156506, 53.2480744 10.3929536, 53.2518935 10.3930105, 53.2439921 10.3909494, 53.2436299 10.3904803, 53.2420695 10.3917720, 53.2435642 10.4066933, 53.2482778 10.3951370, 53.2265999 10.3979016, 53.2394682 10.4275377, 53.2350984 10.3864932, 53.2364395 10.3842833, 53.2336693 10.3958656, 53.2353473 10.3842978, 53.2360653 10.3868876, 53.2349954 10.3812279, 53.2350735 10.3855185, 53.2361762 10.3856308, 53.2502126 10.4025512, 53.2329777 10.3866801, 53.2367155 10.3891559, 53.2302152 10.3917581, 53.2496922 10.4032318, 53.2618812 10.4194258, 53.2592619 10.3994228, 53.2510922 10.4277484, 53.2251404 10.4016869, 53.2262103 10.4015113, 53.2272064 10.4008157, 53.2423504 10.3981724, 53.2408478 10.3988156, 53.2379751 10.4604354, 53.2583358 10.4192036, 53.2394120 10.4349197, 53.2300124 10.3904961, 53.2318145 10.3889304, 53.2324908 10.3897045, 53.2450267 10.4298087, 53.2452270 10.4304645, 53.2628169 10.4148805, 53.2551876 10.4198691, 53.2561742 10.4207026, 53.2529609 10.4186268, 53.2541758 10.4192373, 53.2348155 10.4665998, 53.2275976 10.4020864, 53.2229107 10.4053264, 53.2252011 10.4034373, 53.2267760 10.4034076, 53.2233070 10.3997136, 53.2499423 10.4104600, 53.2457295 10.4095309, 53.2459083 10.4134890, 53.2353803 10.4461767, 53.2474511 10.4164036, 53.2494155 10.4068085, 53.2489892 10.4102065, 53.2384496 10.4037058, 53.2245472 10.4019934, 53.2433270 10.4421369, 53.2490884 10.4076301, 53.2435686 10.4131109 +yes +1 +48.8428024 2.3024212, 48.8535124 2.3349428, 48.8496184 2.3521690, 48.8494725 2.3556898, 48.8502265 2.3482852, 48.8532985 2.3263609, 48.8542722 2.4004111, 48.8434181 2.2997690, 48.8477803 2.3019256, 48.8454862 2.3697712, 48.8504228 2.4065330, 48.8469227 2.2856922, 48.8452324 2.2978409, 48.8473002 2.3015819, 48.8455718 2.3018823, 48.8469870 2.2957572, 48.8491104 2.3034797, 48.8521565 2.3266646, 48.8515210 2.3266631, 48.8365442 2.2948691, 48.8380635 2.3056765, 48.8403553 2.3038378, 48.8523905 2.3413027, 48.8489616 2.3391032, 48.8643067 2.3348568, 48.8283871 2.3766017, 48.8921108 2.3751961, 48.8342726 2.3085148, 48.8700731 2.3844758, 48.8702594 2.3860980, 48.8715301 2.3874968, 48.8726817 2.3841494, 48.8690010 2.3856816, 48.8696528 2.3800869, 48.8725516 2.3783579, 48.8673835 2.3830489, 48.8949604 2.3648581, 48.8489374 2.3729446, 48.8482032 2.3715312, 48.8471107 2.3753997, 48.8472510 2.2961847, 48.8802443 2.3966361, 48.8406418 2.3541771, 48.8460249 2.3758514, 48.8460309 2.3745805, 48.8491257 2.3916769, 48.8505550 2.3903815, 48.8526340 2.3885654, 48.8398577 2.3474231, 48.8460504 2.3085941, 48.8525976 2.3324258, 48.8478855 2.3676795, 48.8167450 2.3551427, 48.8516101 2.2915432, 48.8513195 2.3984311, 48.8312997 2.3580965, 48.8505980 2.3756315, 48.8711195 2.3582079, 48.8662217 2.3895964, 48.8583034 2.3677354, 48.8369621 2.3916125, 48.8347131 2.2679977, 48.8344977 2.3055217, 48.8266395 2.3631137, 48.8265936 2.3638347, 48.8428127 2.2979483, 48.8522343 2.3401016, 48.8421330 2.3862159, 48.8412077 2.3889160, 48.8343648 2.2961921, 48.8293299 2.3654239, 48.8252614 2.3574047, 48.8318943 2.3051920, 48.8419766 2.3631327, 48.8466424 2.3872245, 48.8735428 2.3899274, 48.8748438 2.3895179, 48.8740584 2.3761419, 48.8256891 2.3501301, 48.8296848 2.3541069, 48.8278037 2.3523028, 48.8256293 2.3483441, 48.8632105 2.3998501, 48.8189768 2.3657077, 48.8234454 2.3709722, 48.8227762 2.3624835, 48.8214034 2.3722415, 48.8207003 2.3640557, 48.8260744 2.3543019, 48.8244936 2.3379891, 48.8222464 2.3552235, 48.8233563 2.3542079, 48.8246704 2.3465277, 48.8251740 2.3417242, 48.8238645 2.3485192, 48.8238988 2.3446115, 48.8761919 2.3607846, 48.8681145 2.3380654, 48.8482882 2.3806325, 48.8863319 2.3711222, 48.8890319 2.3744326, 48.8948588 2.3721971, 48.8862739 2.3595599, 48.8893604 2.3711944, 48.8872523 2.3728586, 48.8862555 2.3564214, 48.8920710 2.3616583, 48.8759981 2.2888804, 48.8422545 2.3231808, 48.8452718 2.3398200, 48.8444782 2.3522777, 48.8456601 2.2559176, 48.8580164 2.3548706, 48.8449427 2.2615550, 48.8647002 2.3457111, 48.8454415 2.2585494, 48.8432331 2.3835289, 48.8475339 2.3882237, 48.8378794 2.4004320, 48.8380872 2.3994343, 48.8476871 2.3901194, 48.8471042 2.3852055, 48.8479792 2.3931721, 48.8391909 2.3969895, 48.8368962 2.4026322, 48.8359135 2.4058277, 48.8391569 2.3892705, 48.8499851 2.3083895, 48.8499808 2.3116300, 48.8453270 2.3106657, 48.8445654 2.3175610, 48.8767887 2.2836342, 48.8437701 2.2985039, 48.8356160 2.2812969, 48.8413849 2.3139125, 48.8354238 2.3118648, 48.8389372 2.3163214, 48.8370148 2.3027175, 48.8386344 2.3143780, 48.8431975 2.3125168, 48.8648963 2.3741522, 48.8491145 2.2975673, 48.8668379 2.3438017, 48.8682924 2.3433350, 48.8908797 2.3744767, 48.8910821 2.3734196, 48.8255689 2.3215157, 48.8414118 2.3440069, 48.8491151 2.3992867, 48.8434985 2.3253726, 48.8606245 2.4045354, 48.8435431 2.2957955, 48.8427332 2.2953960, 48.8395612 2.3011065, 48.8508395 2.3843514, 48.8674944 2.3533853, 48.8392213 2.3299129, 48.8705697 2.3483676, 48.8398721 2.3821834, 48.8426958 2.2923414, 48.8233770 2.3091846, 48.8637180 2.3427315, 48.8917401 2.3351281, 48.8589783 2.4022376, 48.8538143 2.3069683, 48.8379393 2.3947080, 48.8540822 2.2756588, 48.8592780 2.2771936, 48.8607801 2.2824478, 48.8632739 2.2864034, 48.8645288 2.2881993, 48.8680698 2.2907642, 48.8625131 2.3505652, 48.8630774 2.3526152, 48.8637423 2.3492027, 48.8448439 2.3826317, 48.8505114 2.3788484, 48.8377454 2.3971411, 48.8449475 2.3800256, 48.8489499 2.3971094, 48.8359723 2.2905286, 48.8377769 2.2913038, 48.8221069 2.3505029, 48.8716148 2.4042110, 48.8673402 2.4006763, 48.8688371 2.4017940, 48.8702353 2.4031395, 48.8738942 2.4051527, 48.8707130 2.3991468, 48.8753906 2.3990200, 48.8758525 2.4010202, 48.8758784 2.4027378, 48.8763320 2.4034081, 48.8581459 2.3478668, 48.8254226 2.3745533, 48.8371903 2.3528204, 48.8374941 2.3543561, 48.8298207 2.3497671, 48.8481308 2.2902306, 48.8279668 2.3644980, 48.8282434 2.3565433, 48.8291460 2.3577224, 48.8327614 2.3622482, 48.8264163 2.3598711, 48.8301159 2.3017971, 48.8889239 2.3604830, 48.8326504 2.3120265, 48.8925714 2.3595715, 48.8342510 2.3976866, 48.8467389 2.3809082, 48.8291352 2.3608175, 48.8292408 2.3741640, 48.8903282 2.3600864, 48.8895811 2.3597672, 48.8214630 2.3588696, 48.8226985 2.3584907, 48.8445762 2.2871211, 48.8687984 2.3727205, 48.8932747 2.3631869, 48.8763654 2.3316481, 48.8311042 2.2923152, 48.8330785 2.2996031, 48.8410498 2.2912651, 48.8272993 2.3681039, 48.8711337 2.2759964, 48.8884174 2.3778947, 48.8442066 2.3901213, 48.8490587 2.2877877, 48.8666717 2.3501829, 48.8919944 2.3633128, 48.8462045 2.2779667, 48.8264147 2.3262238, 48.8613553 2.3023359, 48.8250855 2.3258682, 48.8295109 2.3563809, 48.8636448 2.3397088, 48.8933156 2.3933426, 48.8298567 2.3572407, 48.8603983 2.4043015, 48.8584497 2.3533925, 48.8495908 2.3740611, 48.8431456 2.3520626, 48.8265625 2.3417322, 48.8632163 2.3883806, 48.8315409 2.2673026, 48.8938670 2.3342302, 48.8553510 2.3999628, 48.8608326 2.3673920, 48.8708850 2.3612168, 48.8627096 2.3667135, 48.8620219 2.3644654, 48.8628357 2.3504795, 48.8620925 2.3591139, 48.8375642 2.3108322, 48.8853976 2.3266652, 48.8644368 2.3657531, 48.8349210 2.3465080, 48.8443642 2.3453057, 48.8614189 2.3776680, 48.8393060 2.3511670, 48.8372400 2.3470690, 48.8331070 2.3327870, 48.8603750 2.3672854, 48.8597707 2.3490144, 48.8648292 2.3598938, 48.8651409 2.3579371, 48.8652087 2.3547347, 48.8696370 2.3531899, 48.8877595 2.3369938, 48.8656822 2.3653043, 48.8611084 2.3743800, 48.8397070 2.3995035, 48.8812268 2.3423773, 48.8724483 2.3978125, 48.8860226 2.3762694, 48.8329259 2.3872524, 48.8396202 2.3210806, 48.8396517 2.3217256, 48.8903441 2.3583572, 48.8524904 2.2862109, 48.8757415 2.3562203, 48.8348750 2.2688001, 48.8327500 2.3614988, 48.8754439 2.4120443 +yes and 4 and 49.4146957 8.7191257, 49.4069978 8.6788659, 49.4077784 8.6939263, 49.4070387 8.6723984 +48.8865976 2.3588510, 48.8467471 2.3717077, 48.8884053 2.3785210, 48.8278673 2.3796510, 48.8562375 2.3660049, 48.8719873 2.3493219, 48.8495763 2.3798752 +16 +19 +yes +Jettenhöhle, Lichtenstein Höhle, Marthahöhle and 51.6842335 10.2727562, 51.7242991 10.1737349, 51.6895943 10.2692656 +55.9507953 -3.3038276 +48.8818218 2.3582022 +49.4081091 8.6783361, 49.3819891 8.7064791, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.3805076 8.6913796, 49.3779472 8.6930196, 49.3791086 8.6917106, 49.4092087 8.6986249, 49.4123589 8.7022987, 49.4113938 8.7045200, 49.4129429 8.7045098, 49.4098890 8.7063691, 49.4122875 8.7109014, 49.4091661 8.6877412, 49.3967232 8.6719507, 49.4459821 8.7648025, 49.3821317 8.6823070, 49.3988716 8.6899921, 49.3974932 8.6821302, 49.4492216 8.7243852, 49.4531888 8.7235012, 49.4277884 8.6857649, 49.4274974 8.6861291, 49.4275110 8.6857082, 49.4300935 8.6879524, 49.4276186 8.6855844, 49.4276034 8.6855513, 49.4311523 8.7053142, 49.4295856 8.6906085, 49.4483906 8.6895518, 49.4479618 8.6899205, 49.4477023 8.6901845, 49.4131404 8.6917345, 49.4147215 8.6903017, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.4330929 8.6855356, 49.4117519 8.7056037, 49.4293551 8.6825053, 49.4436254 8.6706107, 49.4425555 8.6690983, 49.4125622 8.6856608, 49.4054825 8.6765974, 49.4347876 8.6782371, 49.4366610 8.6792178, 49.4081527 8.6735594, 49.4055014 8.6766845, 49.3909631 8.7016171, 49.4042825 8.6824570, 49.4057157 8.6651962, 49.4091995 8.6766242, 49.4064795 8.6918220, 49.4089660 8.6724358, 49.4093704 8.6694528, 49.4296874 8.6826637, 49.4224911 8.6767719, 49.4224495 8.6747845, 49.4038333 8.6771587, 49.4040432 8.6789769, 49.4278935 8.6837354, 49.3967059 8.6771597, 49.3950346 8.6818528, 49.4314127 8.6827484, 49.4214832 8.6754845, 49.4147764 8.6710359, 49.4222429 8.6632708, 49.4375432 8.6750439, 49.4373370 8.6752446, 49.4140422 8.6704577, 49.4212437 8.6801942, 49.4211992 8.6798616, 49.4273577 8.6827188, 49.4277404 8.6832670, 49.4227761 8.6601495, 49.4046422 8.6758721, 49.4138643 8.6938468, 49.4135858 8.6925458, 49.4188030 8.6627721, 49.4192290 8.6602188, 49.4194387 8.6613408, 49.4189577 8.6619444, 49.4228639 8.6764796, 49.4215394 8.6751324, 49.4220712 8.6747880, 49.4338914 8.6803397, 49.4085411 8.6936835, 49.4080031 8.6948451, 49.4182538 8.6677103, 49.4171595 8.6617457, 49.4170463 8.6614946, 49.4176558 8.6587085, 49.4147558 8.6660779, 49.4147276 8.6656258, 49.4165055 8.6594547, 49.4149136 8.6636299, 49.4148711 8.6635210, 49.4230903 8.6848004, 49.4134202 8.6738393, 49.4136945 8.6745160, 49.4091460 8.6764482, 49.4091105 8.6763838, 49.4090551 8.6763871, 49.4090132 8.6764515, 49.4046600 8.6759269, 49.4064743 8.6682317, 49.4079268 8.6756843, 49.4187406 8.6629762, 49.4049387 8.6756077, 49.4066316 8.6698002, 49.4054500 8.6641225, 49.4300762 8.6800795, 49.4100320 8.6641372, 49.4236766 8.6795068, 49.4300270 8.6823902, 49.4344109 8.6821910, 49.4428690 8.7525902, 49.4423686 8.7523225, 49.4378457 8.7519531, 49.3945090 8.6898249, 49.3851489 8.6733031, 49.3929123 8.6731183, 49.4085142 8.6937354, 49.3945410 8.6897403, 49.4116089 8.6773078, 49.4178015 8.7607560, 49.4178953 8.7603401, 49.4191809 8.7564457, 49.4192023 8.7564431, 49.4193055 8.7566134, 49.4343094 8.7486730, 49.4290349 8.7492005, 49.4280459 8.7495006, 49.4333074 8.7472561, 49.4243544 8.7433985, 49.4280490 8.7464328, 49.4177271 8.7604388, 49.4178011 8.7610141, 49.4169850 8.7622264, 49.4185953 8.7563610, 49.4203094 8.7595272, 49.4213087 8.7559845, 49.4192295 8.7567625, 49.4191345 8.7567831, 49.4182411 8.7571777, 49.4220544 8.7604986, 49.4278053 8.7495282, 49.4274296 8.7499398, 49.4180224 8.7572019, 49.4180456 8.7418856, 49.4160940 8.7161473, 49.4178891 8.7605933, 49.4178128 8.7606370, 49.4092772 8.6861846, 49.3961047 8.6875838, 49.4471459 8.6743543, 49.4044948 8.6757156, 49.4109403 8.6922240, 49.4110870 8.6924326, 49.3804141 8.6876241, 49.3814460 8.6902772, 49.3835628 8.6905633, 49.3830248 8.6904678, 49.3827519 8.6904897, 49.4166123 8.6762717, 49.4192248 8.6761936, 49.4279699 8.6834041, 49.4078352 8.6858842, 49.4048610 8.6759830, 49.4153134 8.6703781, 49.3779008 8.6888758, 49.4064148 8.6829502, 49.4075168 8.6823374, 49.4082107 8.6921228, 49.4064958 8.6846006, 49.4073079 8.6861306, 49.4102743 8.6522076, 49.4085158 8.6613374, 49.4276366 8.6827967, 49.4045387 8.6755501, 49.4093367 8.7736769, 49.4128139 8.6783720, 49.4125400 8.6856817, 49.4361923 8.6791675, 49.4150455 8.6905930, 49.4127956 8.6763587, 49.4135202 8.6810847, 49.4374337 8.6803411, 49.4132997 8.6919729, 49.4128517 8.6762931, 49.4127055 8.6863854, 49.4145419 8.6920206, 49.4128117 8.6763560, 49.4164261 8.6646525, 49.4504533 8.6801425, 49.4504593 8.6801215, 49.4504473 8.6800305, 49.4457554 8.6751092, 49.4248554 8.6842438, 49.4132108 8.7429246, 49.3774319 8.6987045, 49.4155076 8.6710423, 49.4134633 8.6692638, 49.4077259 8.6716871, 49.4081513 8.6723497, 49.4077131 8.6727872, 49.4077166 8.6770507, 49.4076700 8.6845836, 49.4085533 8.6680811, 49.4045638 8.6759283, 49.4046591 8.6759088, 49.4044978 8.6767013, 49.4077532 8.6729299, 49.4081511 8.6736745, 49.4076619 8.6829409, 49.4076304 8.6840506, 49.4075919 8.6845735, 49.4077623 8.6851094, 49.4076413 8.6872936, 49.4082928 8.6883838, 49.4088113 8.6917735, 49.4092377 8.6921207, 49.4092752 8.6923105, 49.4096328 8.6933428, 49.4084767 8.6927500, 49.4078943 8.6929172, 49.4082491 8.6928194, 49.4075510 8.6929555, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4078050 8.6969103, 49.4060867 8.6916832, 49.4059932 8.6908195, 49.4058917 8.6902904, 49.4046222 8.6868381, 49.4042648 8.6869832, 49.4033250 8.6872272, 49.4032452 8.6845637, 49.4015990 8.6856698, 49.4004115 8.6865494, 49.4001133 8.6852761, 49.4208516 8.6802894, 49.4126316 8.7096807, 49.4280212 8.6833987, 49.4027640 8.6874789, 49.4028079 8.6877203, 49.3783665 8.6932651, 49.4464395 8.6740012, 49.4463084 8.6739060, 49.4460841 8.6742010, 49.4459135 8.6744348, 49.4457373 8.6747240, 49.4456252 8.6749889, 49.4460698 8.6746540, 49.4176655 8.6680194, 49.4174201 8.6867704, 49.4146832 8.6923348, 49.4144086 8.6920334, 49.4138985 8.6913696, 49.4132155 8.6897493, 49.4131959 8.6910756, 49.4132392 8.6920033, 49.4133000 8.6933906, 49.4158218 8.6922416, 49.4283831 8.7619069, 49.4247099 8.7567624, 49.4140666 8.7816898, 49.4515436 8.6904460, 49.4497186 8.6912225, 49.4113622 8.7085349, 49.4079450 8.6902090, 49.4072954 8.6910173, 49.4067868 8.6924316, 49.4080084 8.6940492, 49.4083097 8.6980232, 49.4082662 8.6915918, 49.4078093 8.6923599, 49.4144602 8.7186269, 49.4152010 8.7617225, 49.4113731 8.7119281, 49.4131784 8.7101075, 49.3936659 8.6859388, 49.3808049 8.6889505, 49.3828843 8.6904877, 49.4065153 8.6711132, 49.4049730 8.6689317, 49.3967376 8.6789586, 49.3960740 8.6778734, 49.3954125 8.6771858, 49.3728927 8.7038472, 49.3743033 8.7032524, 49.3747286 8.7033441, 49.3743933 8.7035372, 49.4280568 8.6821889, 49.4074762 8.6879253, 49.4066800 8.6851295, 49.4088454 8.6939907, 49.4100961 8.6955200, 49.4103872 8.6968762, 49.4103403 8.6975369, 49.4105030 8.6976792, 49.4105186 8.6976921, 49.3887590 8.6996752, 49.3892618 8.7001391, 49.3895296 8.7003797, 49.3898172 8.7006269, 49.3899965 8.7007636, 49.3900865 8.7008556, 49.3902289 8.7009766, 49.3905174 8.7011989, 49.3916584 8.7085101, 49.4031962 8.7278159, 49.4001829 8.6904551, 49.4002513 8.6905301, 49.4001303 8.6911226, 49.3922296 8.6900792, 49.3899502 8.6903806, 49.3958062 8.6897645, 49.3773826 8.6871138, 49.3767361 8.6877880, 49.4079380 8.6845118, 49.4079749 8.6809749, 49.4079623 8.6804555, 49.4502212 8.6815814, 49.4501822 8.6816117, 49.4016967 8.6842645, 49.4016050 8.6845129, 49.4013428 8.6847761, 49.4541401 8.7204700, 49.4216384 8.6891687, 49.4157261 8.7004521, 49.4149595 8.6974870, 49.4152930 8.6919888, 49.4374429 8.7488517, 49.4048641 8.6772256, 49.3956377 8.7003866, 49.4015591 8.7130811, 49.4093101 8.6901583, 49.4222140 8.7184598, 49.4316530 8.7205113, 49.4225166 8.7339927, 49.4430151 8.7520519, 49.4429378 8.6685786, 49.4435019 8.6698855, 49.4096879 8.6920076, 49.3803804 8.6888305, 49.4091366 8.6592347, 49.3877298 8.7446960, 49.4129054 8.7286879, 49.4129225 8.7239221, 49.4136373 8.6927118, 49.4165191 8.6921856, 49.4170562 8.6921340, 49.4166719 8.6922486, 49.4101353 8.6927154, 49.4102017 8.6918170, 49.4112725 8.7119074, 49.4095367 8.7037082, 49.4095406 8.7032850, 49.4065033 8.6930393, 49.4057026 8.6893745, 49.3768611 8.6887922, 49.3788109 8.6919767, 49.3778590 8.6930131, 49.3777697 8.6932265, 49.4176024 8.7064673, 49.4182087 8.7084837, 49.4188431 8.7096873, 49.4354694 8.7188860, 49.4359909 8.7141285, 49.3799268 8.6968432, 49.3815882 8.6963561, 49.3849977 8.6950043, 49.3866803 8.6945620, 49.3903214 8.6953737, 49.3908296 8.6953451, 49.3912367 8.6951518, 49.3954992 8.6978754, 49.4295755 8.7759899, 49.4141843 8.7705509, 49.4330029 8.6825757, 49.4221470 8.6890033, 49.4154766 8.6922694, 49.3964575 8.6935605, 49.4287124 8.6962608, 49.4225883 8.7018634, 49.4209333 8.7223854, 49.4206982 8.7220100, 49.3999683 8.6915979, 49.3946455 8.7166681, 49.4192152 8.7568050, 49.4222478 8.7540345, 49.4280231 8.7495057, 49.4174437 8.7631519, 49.4175155 8.6749548, 49.4488525 8.7503084, 49.4514526 8.7484218, 49.4419775 8.6682704, 49.4290781 8.6856826, 49.4071892 8.6937962, 49.4504135 8.7017546, 49.4507535 8.7067448, 49.4051089 8.6861000, 49.4277949 8.6859759, 49.4277769 8.6859863, 49.4277687 8.6860001, 49.4280288 8.6874096, 49.4226519 8.6906789, 49.4186263 8.6906417, 49.4584045 8.7322317, 49.4579813 8.7191374, 49.4574095 8.7281316, 49.4465971 8.6839436, 49.4474992 8.6852461, 49.4477513 8.6901279, 49.4459861 8.6912063, 49.4460595 8.6869719, 49.4448045 8.6867772, 49.4092764 8.6965977, 49.4169935 8.6914785, 49.4159250 8.6904299, 49.4134716 8.7106064, 49.4221949 8.7060036, 49.4198801 8.7112146, 49.4197171 8.6977012, 49.4178197 8.7004883, 49.4177799 8.7006163, 49.4256712 8.7169706, 49.4244330 8.7116834, 49.4207953 8.7168901, 49.4260504 8.7196647, 49.4292184 8.7152661, 49.4290130 8.7153753, 49.4143869 8.6899597, 49.4060887 8.6538694, 49.4117748 8.7095659, 49.4169622 8.7088362, 49.4169662 8.7088186, 49.4154783 8.7003356, 49.4157681 8.7006398, 49.4159368 8.7004445, 49.4167407 8.7002188, 49.4176075 8.6981061, 49.4181925 8.6982743, 49.4195018 8.7041669, 49.4152829 8.7108795, 49.4153147 8.7113299, 49.4153573 8.7121233, 49.4153819 8.7125956, 49.3955045 8.7713305, 49.3981873 8.7240534, 49.4144764 8.6904813, 49.4144903 8.6905928, 49.4186611 8.7633544, 49.4172685 8.7689843, 49.4158233 8.7717567, 49.4153766 8.7742503, 49.4140292 8.7817285, 49.4052183 8.7807063, 49.4014645 8.7791091, 49.3943337 8.7784226, 49.4157971 8.7658081, 49.4171749 8.7614432, 49.4177407 8.7617228, 49.4107799 8.7058515, 49.4107798 8.7061328, 49.4179956 8.7415149, 49.4146001 8.7738410, 49.4102169 8.7892078, 49.4140696 8.7184550, 49.4264438 8.7443513, 49.4457651 8.6845350, 49.4418584 8.6979767, 49.4390162 8.7105044, 49.4376003 8.7518747, 49.4278793 8.6839291, 49.4245929 8.6880170, 49.4275702 8.6866250, 49.4286417 8.6857904, 49.4301457 8.6907454, 49.4297702 8.6934487, 49.4048779 8.6827341, 49.4117597 8.7091143, 49.4115311 8.7084606, 49.4114011 8.7077896, 49.4123926 8.7103200, 49.4123693 8.7101620, 49.4119354 8.7117634, 49.4124188 8.7130024, 49.4127909 8.7133593, 49.4126895 8.7130608, 49.4135426 8.7142038, 49.4135025 8.7139566, 49.4120923 8.7117858, 49.4114223 8.7106815, 49.4106532 8.6984612, 49.4107313 8.6985417, 49.4096542 8.7001493, 49.4288015 8.6872183, 49.3852907 8.7099594, 49.4142986 8.6902743, 49.4121585 8.7121348, 49.3851124 8.7094749, 49.3850107 8.7103387, 49.4094471 8.6926160, 49.4104996 8.6975401, 49.4151801 8.6903524, 49.4157557 8.6904057, 49.4107395 8.6927434, 49.4091698 8.6936091, 49.4044791 8.6965502, 49.4336004 8.6907661, 49.3904944 8.6883092, 49.3915440 8.6790012, 49.3915993 8.6903930, 49.4149451 8.7199680, 49.4126850 8.7049420, 49.4124142 8.7039688, 49.3739972 8.7036051, 49.4201840 8.7450745, 49.4203121 8.7448719, 49.4278654 8.7486231, 49.4315786 8.7636417, 49.4289498 8.7668446, 49.4224724 8.7728618, 49.4218746 8.7723730, 49.4208164 8.7718076, 49.4318898 8.7785081, 49.4269884 8.7777486, 49.4279723 8.7777473, 49.3869602 8.7092367, 49.4139013 8.6749258, 49.4332443 8.6805201, 49.4348207 8.6783577, 49.4373520 8.6781032, 49.4264257 8.6835404, 49.4381480 8.7005157, 49.4134671 8.6923500, 49.4210179 8.7198036, 49.4292684 8.7115908, 49.4272716 8.7035465, 49.4305777 8.6928339, 49.4331982 8.7089234, 49.4337922 8.7095528, 49.4343847 8.6975926, 49.4393283 8.7105842, 49.4398232 8.7110203, 49.4497133 8.7157120, 49.4496410 8.7157170, 49.4508572 8.6988545, 49.4271531 8.7573965, 49.4317611 8.7510630, 49.4292880 8.7510341, 49.4368079 8.7593525, 49.4531341 8.7233872, 49.4536219 8.7240940, 49.4536047 8.7240417, 49.4262156 8.6996156, 49.4247671 8.7003161, 49.4371110 8.7181849, 49.4395946 8.7219636, 49.4041276 8.6763300, 49.4306618 8.6920230, 49.4307092 8.6924155, 49.4333213 8.6941083, 49.4366751 8.6939775, 49.4428768 8.7011414, 49.4370307 8.6898816, 49.4400552 8.6984687, 49.4419967 8.6995749, 49.4414189 8.6985111, 49.4387622 8.6820017, 49.4413002 8.6846886, 49.4423182 8.6882775, 49.4448305 8.6803468, 49.4447796 8.6803708, 49.4450341 8.6802865, 49.4451393 8.6802443, 49.4446086 8.6841466, 49.4456769 8.6799985, 49.4440847 8.6831472, 49.4454846 8.6869733, 49.4483365 8.6890738, 49.4137427 8.6924811, 49.3822208 8.6838537, 49.4136357 8.6943202, 49.4040784 8.7535968, 49.3968650 8.6891799, 49.4071068 8.6898761, 49.4175366 8.6821006, 49.4172221 8.6817577, 49.4172710 8.6921830, 49.3828278 8.7123002, 49.4108200 8.6918918, 49.4124311 8.7120085, 49.4147712 8.6919997, 49.4147330 8.6907756, 49.3906225 8.7063573, 49.3922709 8.7076343, 49.4597910 8.7149359, 49.4213023 8.6891575, 49.4515211 8.6902632, 49.4515491 8.6902632, 49.4574977 8.7042491, 49.4580924 8.7055097, 49.4085251 8.6921424, 49.3791896 8.6905086, 49.4510769 8.6863025, 49.4524536 8.7094050, 49.4555860 8.7112865, 49.4550185 8.7158458, 49.4554329 8.7173979, 49.4424691 8.6898697, 49.4040525 8.6844956, 49.4095978 8.6941472, 49.4316641 8.7049585, 49.4315759 8.7050063, 49.4315556 8.7050403, 49.4314361 8.7051308, 49.4314510 8.7051352, 49.4314223 8.7051172, 49.4316086 8.7052243, 49.4315615 8.7053740, 49.4317823 8.7047605, 49.4316384 8.7047890, 49.4316797 8.7049147, 49.4316279 8.7051895, 49.4317027 8.7050818, 49.4316896 8.7051301, 49.4316955 8.7051052, 49.4318072 8.7058967, 49.4378776 8.7051273, 49.4400403 8.7053776, 49.4389787 8.7112352, 49.4420379 8.7114388, 49.4440339 8.7026721, 49.4493375 8.7170707, 49.3778512 8.7581574, 49.3873038 8.7530780, 49.4258813 8.6617121, 49.4096905 8.6870861, 49.4094130 8.6857745, 49.4100169 8.6878988, 49.3804963 8.6875192, 49.4192835 8.7164572, 49.4248580 8.7374083, 49.4202654 8.7499719, 49.4059443 8.7040458, 49.3919237 8.7218634, 49.3921500 8.7220781, 49.3930507 8.7227282, 49.4044206 8.6749529, 49.4202236 8.6846109, 49.4205029 8.6846704, 49.4174372 8.6854637, 49.4175511 8.6857342, 49.4184776 8.6853453, 49.4173344 8.6816721, 49.4173389 8.6817450, 49.3987036 8.6859892, 49.4044555 8.6967109, 49.3994957 8.6878826, 49.4171164 8.6729011, 49.4421787 8.6656329, 49.3840770 8.6710133, 49.3811656 8.7483210, 49.4393137 8.6872204, 49.3847437 8.7334252, 49.3853323 8.7330985, 49.3848201 8.7416287, 49.3850204 8.7416036, 49.3972761 8.7308772, 49.4031431 8.7287410, 49.4160126 8.6922256, 49.4139051 8.6920559, 49.4167279 8.6721344, 49.4162757 8.6922037, 49.3868620 8.7371112, 49.3868527 8.7371044, 49.3871382 8.7376463, 49.3873346 8.7390471, 49.3872538 8.7384841, 49.3873362 8.7390575, 49.3872554 8.7384907, 49.3876003 8.7417204, 49.3876009 8.7417105, 49.3875718 8.7411975, 49.3875006 8.7405190, 49.3874182 8.7396996, 49.3880128 8.7449026, 49.3778485 8.7581822, 49.4441500 8.7151826, 49.3850068 8.7105357, 49.4339270 8.6786101, 49.4346897 8.6793603, 49.4350172 8.6792597, 49.4348214 8.6811117, 49.4350000 8.6816364, 49.3838650 8.7092400, 49.4104204 8.7158634, 49.4049159 8.6848567, 49.4068385 8.6866471, 49.3865894 8.7624809, 49.3909171 8.7566521, 49.3995340 8.7305709, 49.3989338 8.7327290, 49.3977932 8.7345873, 49.3975770 8.7365674, 49.3976474 8.7365747, 49.3954785 8.7463349, 49.4278746 8.6871277, 49.4245194 8.6873395, 49.4186207 8.6905302, 49.4277708 8.6843289, 49.4004100 8.6866529, 49.4129911 8.6528439, 49.4136043 8.6538078, 49.4121631 8.6534172, 49.4130105 8.6554404, 49.4119860 8.6544036, 49.4129302 8.6534040, 49.4004267 8.6871877, 49.4083031 8.6962179, 49.4300341 8.7265054, 49.4034192 8.6873184, 49.4022609 8.6800427, 49.4038073 8.6922073, 49.3825748 8.6819524, 49.4147206 8.7190868, 49.4055996 8.6889278, 49.4175570 8.6865031, 49.3928959 8.7767409, 49.4040547 8.7550178, 49.3989753 8.7629392, 49.4029783 8.7509752, 49.4000084 8.7469446, 49.3883681 8.7636001, 49.4040516 8.7550941, 49.3882422 8.7638714, 49.3963741 8.7568926, 49.4041282 8.7535478, 49.4018935 8.7380088, 49.4040511 8.7533571, 49.4148114 8.7196509, 49.4040268 8.7533880, 49.4041566 8.7536140, 49.4040221 8.7537244, 49.4038420 8.7533968, 49.3882615 8.7637884, 49.4040317 8.7536908, 49.3882160 8.7639567, 49.3857554 8.7311380, 49.3906745 8.7281338, 49.3818122 8.7467986, 49.3871791 8.7350466, 49.3906767 8.7281096, 49.3818206 8.7438491, 49.3845976 8.7320662, 49.3818392 8.7437472, 49.3846318 8.7321713, 49.3873851 8.7356455, 49.3846726 8.7322609, 49.3849816 8.7416218, 49.3778528 8.7582142, 49.3907840 8.7281080, 49.3813154 8.6894351, 49.3789105 8.7606559, 49.3864285 8.6696286, 49.3961482 8.6893926, 49.3802778 8.6816667, 49.3821274 8.6823829, 49.4339492 8.6785798, 49.4133345 8.6939826, 49.3896591 8.6874142, 49.3888889 8.6875000, 49.3889397 8.6874933, 49.3796893 8.6821058, 49.4257744 8.6577657, 49.4011499 8.6909716, 49.3869606 8.7635695, 49.3956888 8.7699779, 49.3891214 8.7668533, 49.3932296 8.7696039, 49.4109497 8.7171649, 49.3737816 8.7169321, 49.3754560 8.7157067, 49.4102178 8.7150766, 49.4189919 8.6724909, 49.4163242 8.6709589, 49.4184386 8.6731024, 49.4168333 8.6710769, 49.4176281 8.6686596, 49.4160594 8.6702239, 49.4179870 8.6685214, 49.4190025 8.6711938, 49.4190342 8.6719873, 49.3845955 8.7081656, 49.4175667 8.6749443, 49.4186849 8.6679251, 49.4195133 8.6677572, 49.3952827 8.7243898, 49.3799604 8.6807464, 49.3812527 8.6805909, 49.3824770 8.6806146, 49.3827231 8.6805749, 49.3827650 8.6797160, 49.3818450 8.6782283, 49.3811106 8.6779339, 49.3818450 8.6783061, 49.3804699 8.6775416, 49.3794484 8.6789797, 49.3819205 8.6782467, 49.3818463 8.6779827, 49.3818450 8.6781558, 49.3819210 8.6783181, 49.3818539 8.6780747, 49.3819218 8.6781599, 49.4027279 8.7338848, 49.4004115 8.7371736, 49.4026498 8.7348911, 49.3894790 8.7240732, 49.4002409 8.7358193, 49.3824444 8.7505086, 49.4027874 8.7324418, 49.4005717 8.7385980, 49.3978086 8.7361369, 49.4017338 8.7382465, 49.4010156 8.7384780, 49.3977634 8.7286227, 49.3870539 8.7281754, 49.4152723 8.7238969, 49.4150119 8.7236673, 49.4153624 8.7225666, 49.3832469 8.6809643, 49.3990303 8.6762703, 49.4111908 8.7189811, 49.4098495 8.7167148, 49.4098666 8.7169733, 49.4099427 8.7180130, 49.4103257 8.7193735, 49.3795527 8.6902336, 49.3797606 8.6903682, 49.4107587 8.7191644, 49.4106414 8.7191879, 49.3715548 8.7204885, 49.3772018 8.7233643, 49.3762150 8.7230185, 49.3707354 8.7163237, 49.4139993 8.6932058, 49.4031806 8.6757447, 49.4031915 8.6757146, 49.4033570 8.6759427, 49.4033783 8.6758929, 49.4052607 8.6659933, 49.4013876 8.6762755, 49.4055766 8.6654953, 49.4061345 8.6593850, 49.4086793 8.6922677, 49.4088859 8.6920687, 49.4139940 8.6537020, 49.3936938 8.6882137, 49.3956761 8.6692210, 49.4532165 8.6852728, 49.4513839 8.6831919, 49.4485476 8.7256593, 49.4225418 8.6752439, 49.4132914 8.7081342, 49.4088903 8.6938003, 49.4126713 8.7118726, 49.4079250 8.6968388, 49.4124163 8.7017576, 49.4102465 8.6977902, 49.4116285 8.6967738, 49.4112877 8.7120306, 49.4124821 8.7116749, 49.4105746 8.7045338, 49.4088982 8.6985594, 49.4171494 8.6793155, 49.4149894 8.6777848, 49.4148485 8.6775333, 49.4131782 8.7072377, 49.4123643 8.7093621, 49.4129985 8.7075880, 49.4128971 8.7089006, 49.4125822 8.7091321, 49.4121225 8.7074329, 49.4122807 8.7082455, 49.4119959 8.7065282, 49.4121728 8.7080504, 49.4123763 8.7095125, 49.4133232 8.7072699, 49.4127246 8.7091094, 49.4131657 8.7074358, 49.4121834 8.7069263, 49.4123513 8.7089916, 49.4132139 8.7078103, 49.4111401 8.6995045, 49.4077846 8.6948300, 49.4101395 8.6935335, 49.4114505 8.6946751, 49.4078498 8.6943897, 49.4079479 8.6956416, 49.4103548 8.6934956, 49.4188910 8.6930237, 49.4177616 8.6901926, 49.4137599 8.6926714, 49.4162828 8.6903739, 49.4137947 8.6907151, 49.4092738 8.6989364, 49.4095235 8.7029839, 49.4121887 8.7014037, 49.4117856 8.6982500, 49.4092513 8.6997348, 49.4089611 8.6957225, 49.4088607 8.6969406, 49.4119811 8.7001029, 49.4104791 8.6972285, 49.4089749 8.7019860, 49.4088528 8.6965343, 49.4163332 8.6877784, 49.4102879 8.6948503, 49.4118566 8.7016009, 49.4107725 8.7025797, 49.4195856 8.6828954, 49.4095637 8.7046228, 49.4192171 8.6617263, 49.4109129 8.6948067, 49.4100861 8.7047725, 49.4126467 8.7116432, 49.4179033 8.6815927, 49.4082980 8.6979183, 49.4092888 8.7006167, 49.4125480 8.7059407, 49.4105744 8.6916465, 49.4062671 8.6797009, 49.4088091 8.7068231, 49.4109623 8.6909012, 49.4089627 8.6813526, 49.4109261 8.7125920, 49.4122797 8.7133174, 49.4129579 8.7027579, 49.4090650 8.6813526, 49.4136080 8.7136083, 49.4129132 8.7053546, 49.4061093 8.6758875, 49.4134315 8.7103016, 49.4146455 8.7188499, 49.4062514 8.6917698, 49.4107484 8.7061452, 49.4056528 8.6927157, 49.4136995 8.7142286, 49.4043812 8.6796436, 49.4089621 8.7022268, 49.4083809 8.6986013, 49.4080333 8.6763139, 49.4079105 8.6965175, 49.4072113 8.6916915, 49.4103365 8.7039131, 49.4086544 8.6824072, 49.4084428 8.6787563, 49.4074650 8.6753838, 49.4088642 8.6826038, 49.4071241 8.6769474, 49.4083562 8.6885086, 49.4122041 8.7090164, 49.4130878 8.7091392, 49.4131986 8.7088233, 49.4076691 8.6751190, 49.4007776 8.6911061, 49.4043288 8.6924798, 49.4023297 8.6917804, 49.4061836 8.6921935, 49.4035568 8.6922425, 49.4080541 8.6920020, 49.4058460 8.6924951, 49.4083170 8.6927870, 49.4078621 8.6921619, 49.4028742 8.6919803, 49.4052064 8.6927545, 49.4083996 8.6927648, 49.4055314 8.6924048, 49.4014846 8.6914932, 49.4105461 8.7233169, 49.4089235 8.7239799, 49.4062755 8.7318753, 49.4115547 8.7328601, 49.4088449 8.7267716, 49.4113138 8.7328292, 49.4063230 8.7317506, 49.3989298 8.6889417, 49.4119030 8.7090336, 49.4118964 8.7088012, 49.4118772 8.7087363, 49.4115582 8.7044459, 49.4115665 8.7029371, 49.4095677 8.7040601, 49.4115772 8.7046048, 49.4117306 8.7084869, 49.4115288 8.7077973, 49.4118371 8.7082749, 49.4006324 8.6910529, 49.4000859 8.6904108, 49.3997565 8.6902626, 49.3998769 8.6903120, 49.4097481 8.7070938, 49.4317554 8.6724319, 49.3828823 8.6974195, 49.3828586 8.6974227, 49.4091521 8.6979357, 49.4307088 8.6826152, 49.4069536 8.7134033, 49.4076889 8.6847603, 49.4157065 8.7287628, 49.4168778 8.7249065, 49.4131305 8.6546204, 49.4020273 8.6710958, 49.4145019 8.7188097, 49.4160079 8.6527300, 49.4106668 8.7195394, 49.4105303 8.7195730, 49.4149039 8.6659572, 49.4152046 8.6662691, 49.4150186 8.6660022, 49.4149621 8.6659764, 49.4152043 8.6661050, 49.4151660 8.6660644, 49.4148467 8.6657599, 49.4164627 8.6646192, 49.4148865 8.6633752, 49.4144262 8.6605991, 49.4140289 8.6610942, 49.4157782 8.6615636, 49.3982405 8.6891686, 49.4150965 8.6664535, 49.4150888 8.6660280, 49.4150208 8.6663808, 49.4154939 8.6674299, 49.4152045 8.6661871, 49.4151465 8.6664909, 49.4178759 8.6766696, 49.4047754 8.6846789, 49.4174738 8.6820188, 49.4156624 8.6585755, 49.4164776 8.6578526, 49.4149739 8.6593306, 49.4032429 8.6876802, 49.4031102 8.6876641, 49.4029811 8.6876534, 49.4032429 8.6873315, 49.4029915 8.6873208, 49.4031172 8.6873261, 49.3995142 8.6850002, 49.3866972 8.7681314, 49.3906813 8.7690094, 49.3876668 8.7714570, 49.3971453 8.7695949, 49.3882343 8.7754545, 49.3970452 8.6830144, 49.4112622 8.7059705, 49.3878352 8.7614044, 49.4106423 8.7232003, 49.4072676 8.7325889, 49.4106196 8.7231813, 49.4064913 8.7386810, 49.4033073 8.7447336, 49.4117826 8.7294584, 49.4149916 8.6663630, 49.4148513 8.6651363, 49.4110738 8.7466347, 49.4109732 8.7462479, 49.4111824 8.7467386, 49.4115142 8.7468423, 49.3956607 8.7675583, 49.4109786 8.7462230, 49.4171023 8.7276310, 49.4109714 8.7462700, 49.4018588 8.7712935, 49.4110534 8.7466181, 49.4133316 8.7381491, 49.4012745 8.7715593, 49.3991393 8.7676414, 49.4111611 8.7467273, 49.3978168 8.7676498, 49.4119786 8.7462157, 49.4172059 8.7276487, 49.4181324 8.7293243, 49.4133844 8.7468484, 49.4169905 8.7246654, 49.4043163 8.6750911, 49.4037937 8.6758118, 49.4043577 8.6758756, 49.4012431 8.7094358, 49.4018143 8.7127778, 49.4014077 8.7090021, 49.4001508 8.7098871, 49.4004203 8.7103091, 49.4005295 8.7107408, 49.4005748 8.7099398, 49.3854702 8.7517346, 49.4155782 8.6689215, 49.4237194 8.7426235, 49.4213757 8.6586938, 49.4060966 8.6847540, 49.4193326 8.6742240, 49.4188747 8.6746615, 49.3985275 8.6890932, 49.3984918 8.6889404, 49.3909283 8.7331493, 49.4092258 8.7140567, 49.3926229 8.7303800, 49.3923117 8.7307059, 49.3904128 8.7410912, 49.3892474 8.7357050, 49.3885878 8.7381138, 49.3888077 8.7391060, 49.3988684 8.7285671, 49.3901554 8.7403484, 49.3891888 8.7356179, 49.3893945 8.7352351, 49.4226030 8.6895511, 49.4244226 8.6879745, 49.4185216 8.6704497, 49.4197235 8.6766060, 49.4181936 8.6739962, 49.4224691 8.6894885, 49.4347006 8.6819337, 49.4225331 8.6895176, 49.4223934 8.6894683, 49.4275117 8.6831905, 49.4196417 8.6694271, 49.4189698 8.6760286, 49.4222653 8.6894258, 49.4249703 8.6863835, 49.4219203 8.6893430, 49.4221212 8.6893922, 49.4177747 8.6690561, 49.4163577 8.6686492, 49.4174980 8.6687653, 49.4179060 8.6686309, 49.4180660 8.6682820, 49.4174626 8.6687152, 49.4150725 8.6664167, 49.4139804 8.6668520, 49.4136878 8.6671227, 49.4155211 8.6676755, 49.4136571 8.6671084, 49.4155891 8.6676755, 49.4146634 8.6664310, 49.4140866 8.6673605, 49.4128509 8.6667672, 49.4130842 8.6668825, 49.4128068 8.6670431, 49.4157404 8.6712736, 49.4131056 8.6680418, 49.4126825 8.6678074, 49.4173371 8.6738318, 49.4170607 8.6768911, 49.4126952 8.6699440, 49.4134424 8.6679610, 49.4165443 8.6709680, 49.4134657 8.6678164, 49.4169024 8.6778674, 49.4171297 8.6738951, 49.4145377 8.6712997, 49.4142973 8.6712224, 49.4162063 8.6713780, 49.4171308 8.6741457, 49.4126713 8.6675754, 49.4146104 8.6715231, 49.4129993 8.6676842, 49.4125591 8.6685224, 49.4038678 8.6826012, 49.4080959 8.6940082, 49.4132083 8.7150483, 49.4098909 8.7063523, 49.4092833 8.6937547, 49.4136521 8.7166234, 49.4147825 8.7194810, 49.4146757 8.7188519, 49.4099904 8.6934756, 49.4137247 8.7168421, 49.4114575 8.7112332, 49.4117561 8.7110802, 49.4130935 8.7055063, 49.4085662 8.6938769, 49.4082925 8.6939399, 49.4049071 8.6846843, 49.4050950 8.6832018, 49.4046753 8.6751003, 49.4049813 8.6825344, 49.4047830 8.6748233, 49.4079701 8.6806978, 49.4081724 8.6765377, 49.3800680 8.6869647, 49.3803092 8.6877522, 49.3800398 8.6875371, 49.4133013 8.6913417, 49.4514996 8.7287116, 49.4090936 8.6974650, 49.4122066 8.7085943, 49.3991167 8.6880237, 49.4003093 8.6865238, 49.3994136 8.6901411, 49.4125736 8.6667755, 49.4190267 8.7248849, 49.3971048 8.6828185, 49.3997775 8.6782516, 49.3958031 8.6837214, 49.3961205 8.6812878, 49.4156475 8.7425316, 49.4144368 8.6680539, 49.4412552 8.7715331, 49.4153976 8.6683913, 49.4153546 8.6684139, 49.4155467 8.6683947, 49.4154380 8.6683671, 49.4151161 8.6685335, 49.4150659 8.6685579, 49.4154076 8.6684526, 49.4152917 8.6687763, 49.4154597 8.6686971, 49.4152602 8.6687924, 49.4154902 8.6686325, 49.4154630 8.6689975, 49.4154749 8.6685519, 49.4150922 8.6688775, 49.4151285 8.6688599, 49.4151648 8.6688408, 49.4153275 8.6691937, 49.4151774 8.6691870, 49.4154589 8.6688159, 49.4152369 8.6692466, 49.4152963 8.6692120, 49.4151981 8.6692552, 49.4151593 8.6691206, 49.4152687 8.6692283, 49.4173599 8.7570392, 49.4173659 8.7564419, 49.4173666 8.7564094, 49.4173671 8.7566484, 49.4373589 8.7518399, 49.4076180 8.6891919, 49.4173208 8.6768607, 49.4560129 8.7272698, 49.4070439 8.6949350, 49.4089916 8.6801238, 49.3950297 8.7337960, 49.3960602 8.7333909, 49.3964251 8.7434145, 49.3965680 8.7438930, 49.3942172 8.6898680, 49.4001704 8.6873707, 49.4008461 8.6862974, 49.4015034 8.6855723, 49.4018481 8.6853596, 49.4140326 8.6921865, 49.4147881 8.6920796, 49.4161519 8.6920141, 49.4164194 8.6920050, 49.3771070 8.6871386, 49.3805914 8.6884912, 49.3956314 8.6891619, 49.4064459 8.6893600, 49.4076652 8.6925139, 49.4146958 8.6922296, 49.4122224 8.7127594, 49.4117441 8.7092576, 49.4135237 8.7132879, 49.4031638 8.6920740, 49.3893232 8.7371550, 49.4147605 8.6683021, 49.4069167 8.6886211, 49.4212552 8.6802799, 49.4201358 8.6806591, 49.4211077 8.6784794, 49.4181588 8.6814978, 49.4183470 8.6872741, 49.4197789 8.6871221, 49.4207750 8.6845900, 49.4220217 8.6830623, 49.4248833 8.6877871, 49.4285458 8.6851837, 49.4312787 8.6910498, 49.3925114 8.7464235, 49.3856352 8.7552185, 49.3856945 8.7551489, 49.3891220 8.7350663, 49.3891575 8.7362367, 49.3891834 8.7362292, 49.3899672 8.7378636, 49.3928385 8.7310462, 49.4086409 8.7182230, 49.4109895 8.7175452, 49.4126569 8.7158654, 49.4108612 8.6928690, 49.4073649 8.6958229, 49.4210304 8.7484074, 49.4210555 8.7483630, 49.4208880 8.7281629, 49.4105302 8.7055678, 49.4122789 8.7128482, 49.4107830 8.7059189, 49.4136791 8.7136022, 49.4127227 8.7032897, 49.4127285 8.7033836, 49.4127326 8.7034813, 49.4128474 8.7032806, 49.4124235 8.7142523, 49.4126441 8.7142846, 49.3875195 8.7389174, 49.3881112 8.7384845, 49.3893869 8.7367041, 49.4167026 8.6926975, 49.4167080 8.6927532, 49.4171340 8.6924519, 49.4171426 8.6925123, 49.3744418 8.7035505, 49.3743030 8.7032001, 49.3742086 8.7031163, 49.4126385 8.6691299, 49.4058353 8.6807799, 49.4102246 8.6969187, 49.4105485 8.6996434, 49.4098204 8.6952928, 49.4102630 8.6956367, 49.4100675 8.6958351, 49.4102926 8.6972916, 49.4103729 8.6964923, 49.4103380 8.6945772, 49.4100840 8.6954392, 49.4095422 8.6938315, 49.4106977 8.6986329, 49.3887250 8.7490272, 49.4089553 8.6951085, 49.4110740 8.7008373, 49.4109973 8.7015195, 49.4112000 8.7018905, 49.4110117 8.7014165, 49.4106673 8.7017443, 49.4113056 8.7025839, 49.4114705 8.7022980, 49.4114791 8.7037794, 49.4110400 8.7037007, 49.4115939 8.7046894, 49.4115238 8.7042989, 49.4116275 8.7051425, 49.4119604 8.7038095, 49.4116488 8.7052641, 49.4116445 8.7062771, 49.4104788 8.7037801, 49.4103985 8.7029994, 49.4118295 8.7066501, 49.4117816 8.7062296, 49.4116271 8.7069102, 49.4116479 8.7066124, 49.4117726 8.7067669, 49.4117492 8.7058025, 49.4121327 8.7076792, 49.4122378 8.7076408, 49.4122262 8.7073364, 49.4123530 8.7087690, 49.4118146 8.7077756, 49.4118235 8.7079159, 49.4117230 8.7087903, 49.4122865 8.7059453, 49.4114670 8.7085214, 49.4124292 8.7105976, 49.4118138 8.7113092, 49.4131661 8.7104077, 49.4128557 8.7051696, 49.4111189 8.7110358, 49.4131432 8.7133745, 49.4087106 8.6981262, 49.3843560 8.6801691, 49.4073655 8.6761401, 49.4071070 8.6765209, 49.4099529 8.7084620, 49.4101152 8.7081077, 49.4081055 8.6756660, 49.4062164 8.6906512, 49.4116879 8.7096216, 49.4075986 8.6919687, 49.4104389 8.7086905, 49.4128719 8.7286955, 49.4041500 8.6845214, 49.3999258 8.6784895, 49.4060715 8.6915874, 49.4175773 8.6740734, 49.4179402 8.6696532, 49.4180276 8.6704533, 49.4129103 8.7014032, 49.4128315 8.7094842, 49.3777902 8.7429899, 49.3820375 8.6822639, 49.4200520 8.6693809, 49.4084645 8.6841392, 49.4159348 8.6708164, 49.4202779 8.6844332, 49.4202046 8.6844657, 49.4105445 8.7052085, 49.4106930 8.7058334, 49.4112050 8.6978662, 49.4106423 8.6974807, 49.4112207 8.6981194, 49.4111306 8.6979715, 49.4072012 8.6930407, 49.4114393 8.7049112, 49.4105716 8.7092257, 49.4142103 8.6533273, 49.4141256 8.6534735, 49.4101694 8.6916552, 49.4101101 8.6935285, 49.4037018 8.6767168, 49.4038715 8.6762894, 49.4003850 8.6920257, 49.3900090 8.6927551, 49.3900370 8.6927298, 49.3900505 8.6927189, 49.3900663 8.6927110, 49.3956537 8.7091525, 49.3969926 8.7070350, 49.4166963 8.6728921, 49.4329833 8.6806293, 49.4333509 8.6811006, 49.4333774 8.6810937, 49.4334081 8.6810857, 49.4075531 8.6947989, 49.4075470 8.6947239, 49.4072696 8.6944710, 49.4073244 8.6944681, 49.4073527 8.6944672, 49.4076185 8.6953263, 49.4075829 8.6952288, 49.4075619 8.6949094, 49.4296174 8.6819785, 49.4097773 8.6939787, 49.4100037 8.6951825, 49.4179937 8.7574277, 49.3930859 8.6886712, 49.4106747 8.7780519, 49.3804529 8.6874252, 49.4080641 8.6904292, 49.3804750 8.6879205, 49.3805432 8.6880302, 49.4054553 8.6752473, 49.4085032 8.6760080, 49.4054299 8.6767260, 49.4054501 8.6767490, 49.3783483 8.7229086, 49.4113532 8.7105806, 49.4117072 8.7120923, 49.4117728 8.7099861, 49.4109653 8.7121813, 49.4150050 8.6640330, 49.4127554 8.6742068, 49.4031950 8.6874941, 49.4089758 8.6983974, 49.4146871 8.6904760, 49.4279033 8.6862724, 49.4081811 8.6762559, 49.4293751 8.6828504, 49.3792005 8.6914759, 49.4114203 8.7578946, 49.4044470 8.6760982, 49.4044947 8.6757073, 49.4062230 8.6893127, 49.4187340 8.6766656, 49.4113889 8.7076937, 49.4105563 8.7059593, 49.3939556 8.7738779, 49.4101441 8.7052242, 49.4112034 8.7047612, 49.4089283 8.6982133, 49.4089648 8.6986876, 49.4093783 8.7008163, 49.4094359 8.7023071, 49.4089641 8.6955780, 49.4093310 8.6934805, 49.4096811 8.6934485, 49.4107724 8.7039613, 49.4135210 8.6982920, 49.4135236 8.6983348, 49.4136532 8.6995522, 49.4136586 8.6995874, 49.4136653 8.6996273, 49.4136704 8.6996657, 49.4136784 8.6997032, 49.4147926 8.7058931, 49.4148824 8.7063419, 49.4148871 8.7065669, 49.4149309 8.7068882, 49.4149475 8.7066797, 49.4149479 8.7071687, 49.4149919 8.7071051, 49.4149927 8.7074241, 49.4150256 8.7081913, 49.4150258 8.7078285, 49.4150661 8.7002381, 49.4150903 8.7004870, 49.4150921 8.7002894, 49.4150951 8.7008826, 49.4151219 8.7003450, 49.4151264 8.7002313, 49.4151345 8.7096675, 49.4151436 8.7000359, 49.4151777 8.7100283, 49.4151780 8.7001091, 49.4152021 8.7004488, 49.4152124 8.7001791, 49.4152148 8.7006510, 49.4152225 8.7007316, 49.4152342 8.7008332, 49.4152346 8.7100630, 49.4152382 8.7009821, 49.4152388 8.7101049, 49.4152399 8.7002439, 49.4152431 8.7101480, 49.4152610 8.7003151, 49.4152767 8.7003947, 49.4152793 8.7108153, 49.4152805 8.7108510, 49.4152818 8.7109028, 49.4152835 8.7109393, 49.4152853 8.7116465, 49.4153120 8.7112655, 49.4153138 8.7113003, 49.4153150 8.7113538, 49.4153174 8.7113912, 49.4153359 8.7010405, 49.4153517 8.7120597, 49.4153529 8.7120937, 49.4153538 8.7011477, 49.4153580 8.7121489, 49.4153581 8.7121854, 49.4153767 8.7125295, 49.4153790 8.7125660, 49.4153819 8.7126204, 49.4153843 8.7126560, 49.4154931 8.7015005, 49.4155882 8.7022442, 49.4155908 8.7021984, 49.4156212 8.7022867, 49.4167778 8.7060775, 49.4168014 8.7061607, 49.4168210 8.7062291, 49.4168346 8.7062779, 49.4168538 8.7063376, 49.4168695 8.7063960, 49.4168894 8.7064668, 49.4169090 8.7065366, 49.4169314 8.7066251, 49.4169507 8.7067031, 49.4171469 8.7083456, 49.4171545 8.7083064, 49.4174329 8.7086778, 49.4174385 8.7087119, 49.4174472 8.7087500, 49.4174541 8.7087854, 49.4115434 8.6778206, 49.4115719 8.6781093, 49.4116018 8.6783728, 49.4116636 8.6788246, 49.4116683 8.6788615, 49.4116892 8.6790212, 49.4117304 8.6792756, 49.4117642 8.6794854, 49.4117809 8.6795878, 49.4118179 8.6797843, 49.4118243 8.6798157, 49.4119051 8.6802066, 49.4119175 8.6802546, 49.4120239 8.6806991, 49.4120359 8.6807451, 49.4120534 8.6808168, 49.4121483 8.6812195, 49.4121611 8.6812683, 49.4123521 8.6861916, 49.4123603 8.6861595, 49.4124038 8.6832462, 49.4124084 8.6832971, 49.4124141 8.6833654, 49.4124183 8.6834114, 49.4124235 8.6834819, 49.4124287 8.6835272, 49.4124409 8.6836716, 49.4124451 8.6837162, 49.4124512 8.6837845, 49.4124563 8.6838326, 49.4124602 8.6838968, 49.4124649 8.6839456, 49.4124752 8.6840649, 49.4124785 8.6841137, 49.4124860 8.6841841, 49.4124898 8.6842343, 49.4125014 8.6843375, 49.4125043 8.6843842, 49.4125099 8.6844533, 49.4125137 8.6844986, 49.4125203 8.6845704, 49.4125288 8.6846932, 49.4125339 8.6847406, 49.4125414 8.6848040, 49.4125438 8.6848543, 49.4125448 8.6858946, 49.4125467 8.6859301, 49.4125496 8.6859685, 49.4125517 8.6849205, 49.4125551 8.6849700, 49.4125576 8.6860815, 49.4125600 8.6861275, 49.4125659 8.6850934, 49.4125705 8.6851402, 49.4125748 8.6852113, 49.4125752 8.6866215, 49.4125790 8.6866675, 49.4125791 8.6852587, 49.4125823 8.6867073, 49.4125851 8.6867519, 49.4125867 8.6858957, 49.4125896 8.6859382, 49.4125967 8.6860457, 49.4125986 8.6860924, 49.4126490 8.6868721, 49.4126762 8.6870059, 49.4127269 8.6872338, 49.4127361 8.6872693, 49.4128419 8.6876817, 49.4129289 8.6880328, 49.4129625 8.6881728, 49.4130142 8.6884328, 49.4130359 8.6885561, 49.4130704 8.6888343, 49.4130808 8.6889780, 49.4130969 8.6892249, 49.4131000 8.6893686, 49.4131099 8.6896616, 49.4131211 8.6899148, 49.4131314 8.6901896, 49.4131457 8.6906061, 49.4131567 8.6908911, 49.4131677 8.6911593, 49.4132849 8.6932346, 49.4132985 8.6935078, 49.4081416 8.6940339, 49.4097177 8.7079709, 49.4097754 8.7076634, 49.4100334 8.7081249, 49.4094319 8.6910307, 49.4095376 8.6908723, 49.4096347 8.6903912, 49.4098329 8.6894963, 49.4098809 8.6909403, 49.4099807 8.6890051, 49.4101452 8.6899150, 49.4102122 8.6904965, 49.4103847 8.6887271, 49.4105137 8.6896038, 49.4105215 8.6905059, 49.4106282 8.6901065, 49.4126702 8.6805338, 49.4159805 8.6920165, 49.4164705 8.6920883, 49.4172314 8.6911451, 49.4173345 8.6841594, 49.4090153 8.6964726, 49.4367405 8.6791812, 49.4328280 8.6823664, 49.4279082 8.6839585, 49.4125009 8.7107250, 49.4125153 8.7096801, 49.4126246 8.7095306, 49.4090210 8.6862339, 49.4091822 8.6858735, 49.4095605 8.6872645, 49.4088652 8.6800974, 49.4098279 8.6817194, 49.4083809 8.6789361, 49.4056745 8.6881477, 49.4061925 8.6915180, 49.4063357 8.6898884, 49.4072240 8.6872972, 49.4075178 8.6824857, 49.4075631 8.6890160, 49.4079188 8.6902159, 49.4088250 8.6844653, 49.4080954 8.6910116, 49.4092527 8.6744372, 49.4111078 8.7122962, 49.4127595 8.6732173, 49.4127839 8.6732119, 49.4182810 8.6660747, 49.4183048 8.6660724, 49.4121786 8.7068654, 49.4167698 8.6778109, 49.4279197 8.6839271, 49.4276958 8.6865270, 49.3822707 8.6904099, 49.3825429 8.6904169, 49.4112474 8.7086700, 49.4111071 8.7086876, 49.4105656 8.7086725, 49.4139871 8.6920400, 49.4140135 8.6829496, 49.4133592 8.7082594, 49.3795300 8.6822909, 49.4306638 8.6826578, 49.4156948 8.6877018, 49.4186333 8.6903397, 49.3816846 8.6868958, 49.4095154 8.7028510, 49.4089964 8.7017641, 49.4102662 8.7019427, 49.4112926 8.7027584, 49.3778358 8.6889772, 49.3790081 8.6915773, 49.3790124 8.6916319, 49.4085307 8.6937659, 49.4079584 8.6938874, 49.4085432 8.6937616, 49.4085582 8.6937574, 49.4096346 8.6933512, 49.4026410 8.6888163, 49.4047864 8.6845518, 49.4044750 8.6884416, 49.4044472 8.6883811, 49.4062695 8.6913666, 49.4062653 8.6913679, 49.4024626 8.6846545, 49.4084987 8.6926236, 49.4054839 8.6767486, 49.4046686 8.6677777, 49.4054638 8.6767142, 49.4013548 8.6761651, 49.4015292 8.6757972, 49.3989037 8.6901330, 49.4052845 8.6757308, 49.4146829 8.7477829, 49.4070199 8.6810452, 49.4078155 8.6801715, 49.4081699 8.6801714, 49.4086991 8.6905430, 49.4072067 8.6789696, 49.4083342 8.6789231, 49.4032543 8.7276844, 49.4088561 8.6818330, 49.4145805 8.6901438, 49.4184970 8.6911640, 49.4186633 8.6871792, 49.4035002 8.6810379, 49.4049652 8.6871845, 49.4032621 8.7278132, 49.4038250 8.7271649, 49.4039352 8.7271984, 49.4039835 8.7272201, 49.4039935 8.7273740, 49.4113476 8.7118706, 49.4119316 8.6969837, 49.4060908 8.6592832, 49.4042384 8.6839808, 49.3892847 8.6884090, 49.3893235 8.6878156, 49.3893265 8.6878805, 49.3893320 8.6880301, 49.3893346 8.6880937, 49.3893986 8.6884022, 49.3894342 8.6883983, 49.3894847 8.6889392, 49.3895497 8.6883873, 49.3895536 8.6889339, 49.3895906 8.6884286, 49.3896428 8.6885709, 49.3896441 8.6886103, 49.3896495 8.6887115, 49.3896508 8.6887509, 49.4098993 8.7063506, 49.3992318 8.6882048, 49.3827614 8.6820305, 49.4146530 8.6531618, 49.4054977 8.7174647, 49.4072288 8.7090672, 49.3884593 8.6987270, 49.4095152 8.7099575, 49.4122790 8.7132837, 49.4182320 8.7110293, 49.4182836 8.7111173, 49.4183230 8.7111822, 49.4183415 8.7112183, 49.4183583 8.7109497, 49.4183664 8.7109735, 49.4183905 8.7111913, 49.4185184 8.7111579, 49.4185723 8.7111685, 49.4223249 8.7271853, 49.4063266 8.6902067, 49.4063552 8.6903884, 49.4063792 8.6900717, 49.4063892 8.6905679, 49.4064095 8.6902520, 49.4064200 8.6907397, 49.4064422 8.6904266, 49.4064468 8.6909242, 49.4064703 8.6906048, 49.4064794 8.6910996, 49.4065030 8.6907801, 49.4065233 8.6910827, 49.4065329 8.6909604, 49.4194326 8.7389868, 49.4216508 8.7398273, 49.4216690 8.7397967, 49.4232008 8.7432750, 49.4232090 8.7433909, 49.4234452 8.7433599, 49.4235418 8.7433376, 49.4235505 8.7432308, 49.4235798 8.7432908, 49.4236624 8.7430358, 49.4236620 8.7430756, 49.4236630 8.7429788, 49.4238333 8.7431001, 49.4238350 8.7430648, 49.4239065 8.7430707, 49.4239066 8.7431079, 49.4240661 8.7431297, 49.4240849 8.7431006, 49.4247718 8.6874951, 49.3763204 8.7553840, 49.3890080 8.7292327, 49.3840283 8.7386112, 49.4080952 8.6906263, 49.3935639 8.7203131, 49.3972627 8.7212433, 49.4091999 8.7130968, 49.4092020 8.7130604, 49.4021774 8.6927377, 49.4044832 8.6759837, 49.4044221 8.6760066, 49.3814251 8.7215945, 49.3815367 8.7216036, 49.3831944 8.7403011, 49.3869970 8.7195906, 49.3869974 8.7195445, 49.3870298 8.7195343, 49.3870427 8.7195770, 49.3894885 8.7102578, 49.3951713 8.7036865, 49.3954603 8.7127592, 49.3786538 8.7295186, 49.4046408 8.7179651, 49.4047363 8.7172296, 49.4174534 8.7630975, 49.4175289 8.7506012, 49.4177338 8.7497360, 49.4179209 8.7590031, 49.4180857 8.7571952, 49.4181684 8.7572914, 49.4182397 8.7479412, 49.4234422 8.7433751, 49.4187291 8.7567160, 49.4116996 8.7081109, 49.4122929 8.7084018, 49.4203662 8.7396345, 49.4083367 8.6887571, 49.4036198 8.6878647, 49.4148759 8.6920045, 49.4148404 8.6920032, 49.4148581 8.6920035, 49.3925051 8.7465066, 49.3936499 8.7467333, 49.4093534 8.7128936, 49.4093971 8.7121991, 49.4098919 8.7173407, 49.4099678 8.7144797, 49.4099731 8.7184425, 49.4100699 8.7141070, 49.4100786 8.7194216, 49.4101316 8.7144342, 49.4101411 8.7141426, 49.4101988 8.7141381, 49.4102039 8.7193974, 49.4103050 8.7168773, 49.4103129 8.7143794, 49.4103608 8.7141258, 49.4104710 8.7168764, 49.4104859 8.7143310, 49.4106648 8.7191828, 49.4107429 8.7170959, 49.4107823 8.7191620, 49.4136457 8.7090100, 49.4112833 8.6739247, 49.4097258 8.6726725, 49.4127246 8.6919926, 49.4130025 8.7021651, 49.4080147 8.7070194, 49.4064043 8.7093237, 49.4069912 8.7081431, 49.4070106 8.7081409, 49.4084132 8.7069017, 49.4073131 8.7082381, 49.4093935 8.7114074, 49.4058518 8.7089388, 49.4058771 8.7090021, 49.4058928 8.7090643, 49.4060909 8.7094006, 49.4061921 8.7087272, 49.4062967 8.7088405, 49.4065461 8.7084278, 49.4090353 8.7089034, 49.4091540 8.7112307, 49.4091709 8.7112356, 49.4096725 8.7137353, 49.4098179 8.7137279, 49.4099150 8.7125621, 49.4099230 8.7126396, 49.4099251 8.7126625, 49.4099313 8.7127121, 49.4099549 8.7127305, 49.4100813 8.7133948, 49.4100883 8.7130583, 49.4101802 8.7111524, 49.4102297 8.7132317, 49.4102478 8.7191369, 49.4102848 8.7111824, 49.4102927 8.7111997, 49.4109655 8.7126880, 49.4109674 8.7126985, 49.4143251 8.7187531, 49.4091076 8.7127307, 49.4091485 8.7127837, 49.4091615 8.7128493, 49.4092653 8.7127841, 49.4072810 8.7116507, 49.4120895 8.7117401, 49.4095383 8.7258139, 49.4057183 8.6993035, 49.4156885 8.7217025, 49.4382046 8.6794526, 49.4373993 8.6752453, 49.4156539 8.7141859, 49.4056328 8.6759129, 49.3794364 8.7572777, 49.4005231 8.7520710, 49.4520317 8.7210462, 49.4533642 8.7231386, 49.4539239 8.7233059, 49.4067167 8.7749002, 49.4059372 8.6756498, 49.4116311 8.7072953, 49.4064506 8.7754194, 49.4071160 8.7756052, 49.4106569 8.7780589, 49.4106890 8.7780404, 49.4146302 8.6907419, 49.3715121 8.7203769, 49.3854627 8.6732681, 49.3769857 8.6847203, 49.3763424 8.6904918, 49.3806318 8.6903397, 49.3845467 8.6890952, 49.3867100 8.6889664, 49.3940819 8.6861279, 49.3995012 8.6869038, 49.4087049 8.7054045, 49.4095083 8.7002566, 49.4092054 8.6986720, 49.4095075 8.7003178, 49.4095086 8.7003605, 49.4096306 8.7001578, 49.4098521 8.7001275, 49.4135211 8.6950922, 49.4135230 8.6952172, 49.4136428 8.6936066, 49.4117690 8.6780601, 49.4117749 8.6780703, 49.4117809 8.6780806, 49.4139081 8.7008061, 49.4139258 8.7009358, 49.4139425 8.7009741, 49.4178699 8.7606013, 49.4179065 8.7609930, 49.4196081 8.6977385, 49.4387572 8.6820263, 49.4118037 8.7180807, 49.4121881 8.7183730, 49.4124287 8.7180384, 49.4124516 8.7184053, 49.4124711 8.7181158, 49.4124828 8.7183175, 49.4125484 8.7179385, 49.4126276 8.7179222, 49.4127021 8.7179082, 49.4127329 8.7179408, 49.4115944 8.7188677, 49.4059942 8.6597446, 49.3983567 8.6891918, 49.4130575 8.7096585, 49.4023964 8.6765116, 49.4115837 8.7106378, 49.4114414 8.7034059, 49.4079188 8.6896894, 49.4080292 8.6761951, 49.4072190 8.7145767, 49.4052150 8.6872450, 49.4082939 8.6917604, 49.3818915 8.7204190, 49.4176657 8.7007942, 49.4192490 8.7166625, 49.4298438 8.7274314, 49.4084511 8.6746131, 49.4061961 8.6789422, 49.4039868 8.7655190, 49.4116009 8.6936854, 49.4116366 8.6939477, 49.4119847 8.6964756, 49.4120403 8.6968678, 49.4120737 8.6971143, 49.4121300 8.6990129, 49.4124654 8.6991004, 49.4125032 8.6994371, 49.4125305 8.6996150, 49.4126496 8.7004551, 49.4139587 8.7760375, 49.4152443 8.7101617, 49.4152812 8.7105934, 49.4152922 8.7117185, 49.4152947 8.7117927, 49.4153713 8.7130701, 49.4169656 8.7675928, 49.4171575 8.7606858, 49.4171606 8.7606666, 49.4171643 8.7606441, 49.4174978 8.7655448, 49.4175068 8.7655614, 49.4175156 8.7606234, 49.4183221 8.7563527, 49.4183613 8.7567318, 49.4179298 8.7611063, 49.4131467 8.7041307, 49.4132296 8.7046438, 49.4280601 8.6876310, 49.4139314 8.6860294, 49.4358192 8.7140535, 49.4061410 8.6849453, 49.4217033 8.7362487, 49.4289947 8.7222566, 49.4354328 8.7189439, 49.4185367 8.7071970, 49.4056017 8.6751788, 49.4302838 8.6879053, 49.4326149 8.6908032, 49.4326288 8.6908232, 49.4295713 8.6928758, 49.4297956 8.6933545, 49.4312402 8.7049673, 49.4313194 8.7048672, 49.4313215 8.7053386, 49.4315747 8.7012829, 49.4316086 8.7052965, 49.4317007 8.7059223, 49.4317379 8.7056901, 49.4318419 8.7053139, 49.4344754 8.6863785, 49.4347400 8.6862802, 49.4440417 8.7607029, 49.4440688 8.7606213, 49.4149008 8.6641860, 49.4149077 8.6641649, 49.4180002 8.7565605, 49.4137201 8.7475448, 49.4137332 8.7475363, 49.4137486 8.7475349, 49.4137615 8.7475448, 49.4137797 8.7474059, 49.4138029 8.7474016, 49.4148831 8.7497404, 49.4148868 8.7479978, 49.4151527 8.7563640, 49.4151832 8.7505051, 49.4155510 8.7428157, 49.4155544 8.7427972, 49.4155562 8.7428419, 49.4155982 8.7589848, 49.4156021 8.7589619, 49.4156152 8.7415910, 49.4156686 8.7426209, 49.4156725 8.7421792, 49.4156785 8.7425746, 49.4148726 8.7469187, 49.4112520 8.7462829, 49.4112724 8.7462973, 49.4113466 8.7459929, 49.4125678 8.7457320, 49.4128251 8.7456405, 49.4147095 8.7445952, 49.4151180 8.7605724, 49.4155490 8.7546778, 49.4234637 8.7522347, 49.4235281 8.7521732, 49.4248546 8.7504451, 49.4275324 8.7480598, 49.4277478 8.7478736, 49.4278819 8.7486168, 49.4321934 8.7465197, 49.4179564 8.7608483, 49.4151355 8.7622636, 49.4151544 8.7622039, 49.4151589 8.7619214, 49.4151672 8.7619353, 49.4151703 8.7621819, 49.4151716 8.7621468, 49.4151858 8.7621002, 49.4152411 8.7620209, 49.4193176 8.7611788, 49.4194443 8.7638623, 49.4211542 8.7663970, 49.4211638 8.7663807, 49.4361147 8.7471955, 49.4503971 8.7540258, 49.4505498 8.7548707, 49.4150982 8.6920129, 49.4128834 8.6763430, 49.4045542 8.6747275, 49.4046504 8.6746959, 49.4047736 8.6742349, 49.4042326 8.6765306, 49.4042591 8.6764899, 49.4042651 8.6766048, 49.4042806 8.6764879, 49.4042865 8.6766028, 49.4043021 8.6764859, 49.4043080 8.6766008, 49.4042758 8.6769736, 49.3764527 8.7503330, 49.3832310 8.7635477, 49.3850177 8.7598521, 49.3967294 8.6784456, 49.4277498 8.6794326, 49.4376060 8.6778079, 49.4109969 8.7018271, 49.4135622 8.7123456, 49.4135669 8.7123752, 49.4135720 8.7124026, 49.4138154 8.7145470, 49.4138294 8.7145607, 49.4138443 8.7145799, 49.4138789 8.7147380, 49.4138846 8.7147882, 49.4138920 8.7148371, 49.4210047 8.7197754, 49.4212544 8.7211149, 49.4214724 8.7212627, 49.4215003 8.7213772, 49.4195317 8.7042414, 49.4253449 8.7062774, 49.4274261 8.7150016, 49.4064375 8.6918384, 49.4075653 8.6902108, 49.4168755 8.6790034, 49.4174588 8.7442165, 49.4291086 8.6831848, 49.4563906 8.7469187, 49.4214385 8.7430129, 49.4216935 8.7426109, 49.4298773 8.7406510, 49.4314052 8.7205319, 49.4314637 8.7207288, 49.4314709 8.7207701, 49.4004143 8.6826744, 49.4103811 8.6974826, 49.4078085 8.6911371, 49.4224261 8.6791231, 49.3990722 8.6890995, 49.4071931 8.6946238, 49.4071949 8.6946447, 49.4071953 8.6946670, 49.4072038 8.6948346, 49.4072056 8.6948709, 49.4072063 8.6948526, 49.4072127 8.6950113, 49.4072144 8.6950309, 49.4072145 8.6950487, 49.4072403 8.6944723, 49.4073302 8.6951246, 49.4073498 8.6952644, 49.4073616 8.6951274, 49.4073796 8.6944660, 49.4073889 8.6952944, 49.4074110 8.6951213, 49.4074113 8.6953062, 49.4074376 8.6951102, 49.4076208 8.6955166, 49.4085567 8.6984721, 49.4085838 8.6986718, 49.4086914 8.6984200, 49.4087341 8.6986320, 49.4088395 8.6983628, 49.4088807 8.6985932, 49.4084040 8.6996182, 49.4084216 8.6996088, 49.4084408 8.6995987, 49.4183241 8.7109660, 49.4183534 8.7112773, 49.4185461 8.7111646, 49.4214848 8.6781702, 49.4215415 8.6781082, 49.4215513 8.6781535, 49.3992315 8.6710140, 49.4072938 8.6914379, 49.4066555 8.6904427, 49.4113362 8.6758006, 49.4128313 8.7018360, 49.4061585 8.6903063, 49.4063133 8.6910718, 49.4062193 8.6902164, 49.4062509 8.6913187, 49.4062642 8.6913883, 49.4062712 8.6914200, 49.4065256 8.6894680, 49.4221499 8.7232034, 49.4184811 8.6699057, 49.4151221 8.7620371, 49.4087408 8.6948581, 49.4057652 8.6829089, 49.3770570 8.7037872, 49.4050779 8.6763506, 49.4145642 8.6791001, 49.4135694 8.6925166, 49.4159532 8.6836921, 49.4156740 8.6813317, 49.4204972 8.6680274, 49.3862379 8.6927467, 49.4093291 8.6596550, 49.4162144 8.6702242, 49.4155972 8.6663847, 49.4132974 8.7097572, 49.4040883 8.7365303, 49.3794075 8.6800350, 49.3753020 8.7105644, 49.3774350 8.7110455, 49.3841273 8.7139546, 49.4125123 8.7110100, 49.4151012 8.6731211, 49.4158568 8.6728207, 49.4000303 8.6917151, 49.4000488 8.6917225, 49.3947281 8.7165182, 49.4112276 8.7030451, 49.3718129 8.7285170, 49.3719890 8.7321161, 49.4285342 8.6860967, 49.4279736 8.6864593, 49.4280012 8.6865692, 49.4283321 8.6836841, 49.4042867 8.6760445, 49.4046185 8.6759242, 49.4020821 8.7437959, 49.4020681 8.7444081, 49.4039410 8.6759975, 49.4040475 8.6759775, 49.4041302 8.6755556, 49.4041420 8.6755374, 49.4010895 8.6737918, 49.4037999 8.6762631, 49.4048319 8.6776675, 49.4075656 8.6930731, 49.4116784 8.7028078, 49.4436332 8.6767203, 49.4045128 8.6751651, 49.4462367 8.6752509, 49.4467163 8.6741899, 49.4466446 8.6742587, 49.4071802 8.6893369, 49.4080003 8.6887809, 49.4045734 8.6760561, 49.4360761 8.6814958, 49.4365473 8.6813729, 49.4268495 8.6858867, 49.4268685 8.6858709, 49.4268959 8.6865750, 49.4269168 8.6865652, 49.4269288 8.6853519, 49.4269485 8.6853552, 49.4269485 8.6858925, 49.4269660 8.6858873, 49.4270429 8.6858538, 49.4270484 8.6854051, 49.4270655 8.6858472, 49.4270698 8.6854222, 49.4271253 8.6864141, 49.4271441 8.6855759, 49.4271441 8.6863891, 49.4078499 8.6884637, 49.3841060 8.6837074, 49.4018418 8.6726917, 49.4013623 8.6726870, 49.4035624 8.6765204, 49.4425096 8.6694040, 49.4023324 8.6670234, 49.4127255 8.7132864, 49.4135174 8.7817164, 49.4286563 8.7824937, 49.4533762 8.7238315, 49.4148310 8.7192634, 49.4103323 8.7353954, 49.4279707 8.6838908, 49.4150560 8.7716803, 49.4150601 8.7716627, 49.4150642 8.7716451, 49.4159877 8.7643853, 49.4159965 8.7643447, 49.4048445 8.6761839, 49.4049471 8.6762314, 49.4049557 8.6756478, 49.4050321 8.6758169, 49.4030610 8.6811985, 49.4035642 8.6819831, 49.4136635 8.7632703, 49.4122451 8.7658820, 49.4181525 8.7414701, 49.4181608 8.7414829, 49.4185349 8.7408142, 49.4187580 8.7405498, 49.4121743 8.7517032, 49.4124159 8.7495130, 49.4124293 8.7494807, 49.4125175 8.7494611, 49.4125707 8.7494540, 49.4126622 8.7498917, 49.4127069 8.7496113, 49.4127078 8.7496600, 49.4134521 8.7382933, 49.4142223 8.7555186, 49.4147744 8.7633585, 49.4149096 8.7628777, 49.4149572 8.7582791, 49.4150115 8.7622237, 49.4150702 8.7619163, 49.4054812 8.7836435, 49.4158001 8.7657818, 49.4158018 8.7655150, 49.4158079 8.7654703, 49.4160363 8.7642679, 49.4160425 8.7642396, 49.4094855 8.7182657, 49.4114591 8.7705882, 49.4111435 8.7704752, 49.4111900 8.7704641, 49.4119501 8.7000203, 49.4119964 8.6988133, 49.4120018 8.6989349, 49.4120072 8.6990566, 49.3934396 8.7806213, 49.3934443 8.7806502, 49.3934469 8.7806752, 49.4094639 8.7149578, 49.4088380 8.6918600, 49.4151132 8.7617395, 49.4181047 8.7566116, 49.4177904 8.7599764, 49.4173760 8.7603090, 49.4101378 8.7039303, 49.4180271 8.7582998, 49.4151843 8.7603553, 49.4078640 8.6914271, 49.4138174 8.7705256, 49.4221411 8.6971096, 49.4132187 8.7653935, 49.4252154 8.6874565, 49.4252008 8.6863559, 49.4128944 8.7096398, 49.3955485 8.7094154, 49.3947519 8.7087503, 49.4102265 8.6939011, 49.4091216 8.7132311, 49.4113896 8.7119508, 49.4273780 8.6782001, 49.3891812 8.6768465, 49.3979127 8.6724262, 49.3981734 8.6718714, 49.3981825 8.6718508, 49.3982573 8.6716829, 49.3982938 8.6709113, 49.3983375 8.6715026, 49.3983475 8.6708983, 49.3983556 8.6707639, 49.3983559 8.6708854, 49.3983669 8.6709310, 49.3983902 8.6707765, 49.3983965 8.6713702, 49.3984099 8.6713401, 49.3984225 8.6713117, 49.3984390 8.6707561, 49.3984404 8.6706863, 49.3984425 8.6708661, 49.3984851 8.6708428, 49.3985095 8.6706982, 49.3985367 8.6709364, 49.3985499 8.6709062, 49.3985548 8.6710778, 49.3985610 8.6708811, 49.3985635 8.6710476, 49.3985692 8.6708624, 49.3985795 8.6707479, 49.3987236 8.6710256, 49.3987464 8.6709695, 49.3987552 8.6711432, 49.3987609 8.6709337, 49.3987942 8.6711331, 49.3988039 8.6711102, 49.3988048 8.6713733, 49.3988165 8.6714003, 49.3988172 8.6710791, 49.3988287 8.6714284, 49.3988333 8.6710412, 49.3988441 8.6710159, 49.3989254 8.6710285, 49.3989431 8.6710341, 49.3989669 8.6710415, 49.3991080 8.6718293, 49.3992934 8.6715103, 49.3993188 8.6714735, 49.3993395 8.6714433, 49.3993496 8.6714287, 49.3993664 8.6714043, 49.4104061 8.7157086, 49.4108151 8.7149178, 49.4105292 8.7152167, 49.3769656 8.7551097, 49.4113551 8.7116070, 49.4092130 8.6930903, 49.4045235 8.6882943, 49.4137144 8.6921269, 49.4280965 8.6875928, 49.4281382 8.6876771, 49.4281430 8.6876704, 49.3903198 8.7340553, 49.3872710 8.7354484, 49.3873929 8.7356478, 49.4223460 8.7539976, 49.4094481 8.7011221, 49.3802219 8.6868984, 49.3944379 8.6770158, 49.3904225 8.6819080, 49.4230545 8.6906504, 49.3793306 8.6910847, 49.3804723 8.6884268, 49.3798148 8.6903816, 49.3900486 8.6883781, 49.3790377 8.6919226, 49.3857312 8.6902141, 49.3881762 8.6886005, 49.4062901 8.6603224, 49.4065445 8.6597206, 49.4068117 8.6707467, 49.3721232 8.7129859, 49.4171231 8.7603742, 49.4133991 8.6740344, 49.4135596 8.6740236, 49.4161640 8.6686617, 49.4101645 8.7749164, 49.4112852 8.7102152, 49.4138118 8.6719647, 49.4101724 8.7749101, 49.4132788 8.7650492, 49.4174077 8.7485344, 49.4148281 8.6710977, 49.3841629 8.6716409, 49.3841632 8.6715765, 49.4085491 8.6801439, 49.4182525 8.6662118, 49.4156460 8.6666103, 49.4157103 8.6706413, 49.4116946 8.6715847, 49.4038758 8.6913357, 49.4213239 8.7627154, 49.4235077 8.7668512, 49.4235470 8.7668294, 49.4239402 8.7651827, 49.4181982 8.6672239, 49.4156419 8.6661970, 49.4133739 8.6940979, 49.4108048 8.6946155, 49.4017075 8.6672838, 49.4072203 8.6719856, 49.4076501 8.6726936, 49.4077117 8.6665043, 49.4083820 8.6677978, 49.4088053 8.6626673, 49.4088194 8.6626550, 49.4101363 8.6521754, 49.4101469 8.6522088, 49.4101555 8.6521855, 49.4102538 8.6521520, 49.3991176 8.6681880, 49.4137233 8.7111570, 49.4137348 8.7113230, 49.4137449 8.7114559, 49.4137550 8.7116406, 49.4137706 8.7118503, 49.4137793 8.7119624, 49.4077695 8.6948215, 49.4077800 8.6949583, 49.4018269 8.6852302, 49.4018057 8.6852432, 49.4143283 8.7699002, 49.3839947 8.6801414, 49.4069883 8.6681608, 49.4400410 8.7054293, 49.4403610 8.6901185, 49.4427770 8.7010917, 49.4428904 8.7011248, 49.4436522 8.7046253, 49.4447313 8.7167032, 49.4493136 8.7170904, 49.4501646 8.6816001, 49.4504996 8.7105690, 49.4510659 8.7137824, 49.4512705 8.7130890, 49.4513632 8.7130041, 49.4576955 8.7024629, 49.4175256 8.6906313, 49.4133107 8.7103589, 49.3786163 8.6868257, 49.3810339 8.6888988, 49.3799295 8.6843446, 49.4157129 8.7420168, 49.4157085 8.7420436, 49.3727648 8.7034774, 49.3744103 8.7047986, 49.4070381 8.6724331, 49.3765321 8.7073134, 49.3789910 8.7062655, 49.3790486 8.7061511, 49.3813337 8.7061950, 49.3843800 8.7049644, 49.4096598 8.6875604, 49.4161193 8.6695151, 49.4192446 8.6670292, 49.4190187 8.6670533, 49.4228034 8.7562833, 49.4186267 8.7633174, 49.4110019 8.6963668, 49.4095775 8.6928963, 49.4066118 8.6751595, 49.4151780 8.7091101, 49.4130490 8.7132403, 49.4454895 8.6843415, 49.4467774 8.6821383, 49.4470349 8.6856331, 49.4457295 8.6845885, 49.4457484 8.6845653, 49.4465007 8.6867256, 49.4474791 8.6852872, 49.4475191 8.6852251, 49.4541654 8.6930399, 49.4541922 8.6931063, 49.4058639 8.6880015, 49.4055473 8.6869151, 49.4056131 8.6868331, 49.4059837 8.6870296, 49.4255601 8.7054853, 49.4459612 8.7647881, 49.4492841 8.7244927, 49.4570546 8.7373690, 49.4570654 8.7374318, 49.4073424 8.6881133, 49.4225444 8.7608270, 49.4456911 8.7252542, 49.4474507 8.6816983, 49.4476801 8.7230986, 49.4477434 8.6815891, 49.4494285 8.6858551, 49.4514906 8.6903165, 49.4118496 8.7084081, 49.4118356 8.7081944, 49.4120407 8.7101017, 49.4117760 8.7068775, 49.4117663 8.7064409, 49.4116256 8.7077404, 49.3998478 8.6788359, 49.3992533 8.6773657, 49.4200540 8.6567921, 49.4061587 8.6617527, 49.4120722 8.7104053, 49.4120974 8.7105730, 49.4121297 8.7103849, 49.4121549 8.7105527, 49.4118680 8.7106616, 49.4013072 8.6721502, 49.4014465 8.6714876, 49.4015849 8.6707968, 49.4016021 8.6707184, 49.4017318 8.6700873, 49.4013697 8.6715978, 49.3993472 8.6710771, 49.4009632 8.6658836, 49.4009959 8.6658140, 49.4011343 8.6655103, 49.4011633 8.6654446, 49.4019197 8.6692954, 49.4019718 8.6690844, 49.4135324 8.6916012, 49.3807734 8.6884609, 49.4135955 8.7092288, 49.4085554 8.6900358, 49.4085894 8.6902323, 49.4471590 8.6743455, 49.3822408 8.7123134, 49.4051458 8.6859422, 49.3787743 8.6924168, 49.4197888 8.6714328, 49.4056433 8.6875742, 49.4233507 8.7642696, 49.4426344 8.6927752, 49.4447928 8.6895290, 49.4118150 8.7020910, 49.4455647 8.7378006, 49.4104001 8.6975805, 49.4332243 8.6805482, 49.4059012 8.7242277, 49.4052285 8.7315097, 49.4093727 8.7028215, 49.4067051 8.7142475, 49.4098558 8.7167639, 49.4098722 8.7170163, 49.4098973 8.7173837, 49.4099475 8.7180563, 49.4099786 8.7184857, 49.4099950 8.7170975, 49.4100534 8.7194225, 49.4101050 8.7187620, 49.4121627 8.7182119, 49.4121842 8.7181162, 49.4122296 8.7184488, 49.4105161 8.7190962, 49.4127360 8.7206023, 49.3854871 8.7172741, 49.3877953 8.7164964, 49.3885396 8.7164124, 49.3798101 8.7239219, 49.3889269 8.7394096, 49.3925735 8.7149710, 49.3969482 8.6948600, 49.3977254 8.7093393, 49.4010648 8.6650738, 49.4098380 8.7162564, 49.4099390 8.7165322, 49.4103299 8.7168762, 49.4103829 8.7192261, 49.4105964 8.7178042, 49.4105993 8.7195552, 49.4107456 8.7191253, 49.4107807 8.7155977, 49.4109716 8.7182381, 49.4109986 8.7147633, 49.4110079 8.7147929, 49.4111457 8.7151424, 49.4112128 8.7185068, 49.4114128 8.7181597, 49.4114288 8.7181572, 49.4097556 8.7156766, 49.4098280 8.7162338, 49.4101613 8.7153622, 49.4104752 8.7182390, 49.4104821 8.7168792, 49.4104877 8.7194657, 49.4097080 8.7160380, 49.4097217 8.7160197, 49.4099981 8.7191416, 49.4099988 8.7191803, 49.4100422 8.7153160, 49.4104064 8.7192234, 49.4104274 8.7192173, 49.4104415 8.7182486, 49.4106064 8.7173521, 49.4106272 8.7194392, 49.4106563 8.7181095, 49.4108853 8.7156490, 49.4110515 8.7148230, 49.4110551 8.7148607, 49.4110636 8.7148870, 49.4110720 8.7149133, 49.4115566 8.7152637, 49.4116103 8.7153334, 49.4116341 8.7181133, 49.4116378 8.7153197, 49.4109333 8.7154205, 49.4109379 8.7175902, 49.4109596 8.7182382, 49.4110919 8.7149751, 49.4111004 8.7150014, 49.4111088 8.7150277, 49.4111288 8.7150897, 49.4111320 8.7182111, 49.4111372 8.7151160, 49.4116536 8.7181114, 49.4116665 8.7153655, 49.4116823 8.7184156, 49.4116844 8.7154301, 49.4187077 8.7063438, 49.3709028 8.7109422, 49.4114686 8.7705695, 49.4253133 8.7614921, 49.4186335 8.7565871, 49.4188251 8.7567040, 49.4190140 8.7566290, 49.4190352 8.7566560, 49.4185940 8.7565551, 49.4197463 8.7604605, 49.4207104 8.7596133, 49.4207411 8.7595905, 49.4219259 8.7602991, 49.4219385 8.7603183, 49.4263861 8.7616530, 49.4206435 8.7565048, 49.4204665 8.7578129, 49.4207717 8.7595677, 49.4220708 8.7603329, 49.4298831 8.7657770, 49.4283041 8.7622011, 49.4526605 8.7512185, 49.4526605 8.7512413, 49.4265953 8.7562127, 49.4191215 8.7177315, 49.4371482 8.7630409, 49.4226907 8.7555486, 49.4065083 8.6677562, 49.4065929 8.6671666, 49.4084287 8.6611769, 49.4085181 8.6612070, 49.4094265 8.6529245, 49.4095597 8.6522897, 49.4343854 8.6821967, 49.4349136 8.6820812, 49.4381532 8.7268706, 49.4230250 8.7421400, 49.4230396 8.7421350, 49.4257707 8.7387430, 49.4356381 8.7252531, 49.4379769 8.7389567, 49.4205459 8.7466924, 49.4228858 8.7420621, 49.3935785 8.6951043, 49.4334525 8.7382891, 49.4382468 8.6952598, 49.4383218 8.6951379, 49.3961494 8.6963931, 49.4306546 8.6920133, 49.4189955 8.7248358, 49.4215246 8.7428804, 49.4242588 8.7379921, 49.4271608 8.7342548, 49.3982281 8.6679666, 49.4082103 8.6913456, 49.4082494 8.6913249, 49.4103490 8.7069722, 49.3843618 8.6952816, 49.4083514 8.6761325, 49.4042191 8.6751648, 49.4041278 8.6759022, 49.4041286 8.6759159, 49.4043579 8.6758813, 49.4043622 8.6758754, 49.4043623 8.6758812, 49.4043666 8.6758752, 49.4043667 8.6758810, 49.4043689 8.6758780, 49.4035398 8.6753065, 49.4035524 8.6753223, 49.4036499 8.6754541, 49.4036573 8.6754602, 49.4037022 8.6754667, 49.4037371 8.6758205, 49.4038959 8.6757618, 49.4040408 8.6759780, 49.4040510 8.6758571, 49.4040942 8.6759069, 49.4040950 8.6759205, 49.4043554 8.6758786, 49.4124828 8.7148310, 49.4117022 8.7115271, 49.4117363 8.7115060, 49.4117978 8.7118760, 49.4118218 8.7118576, 49.4118443 8.7114390, 49.4118631 8.7118261, 49.4118667 8.7114251, 49.4118869 8.7118078, 49.4119117 8.7113972, 49.4119342 8.7113833, 49.4122382 8.7129316, 49.4095387 8.6933681, 49.4095499 8.6933429, 49.4095581 8.6933826, 49.4102931 8.6927198, 49.4103305 8.6929293, 49.4103421 8.6928960, 49.4102259 8.6925667, 49.4102390 8.6925587, 49.4102518 8.6925507, 49.4102120 8.6935885, 49.4109528 8.6922372, 49.4109654 8.6922504, 49.4110751 8.6923977, 49.4110810 8.6924151, 49.4123496 8.7119283, 49.4099021 8.7003337, 49.4108200 8.6949938, 49.4150291 8.7081692, 49.4040132 8.6738468, 49.4040195 8.6738532, 49.4040200 8.6738315, 49.4040263 8.6738379, 49.4040563 8.6743517, 49.4040626 8.6743580, 49.4040631 8.6743363, 49.4040694 8.6743427, 49.4041965 8.6740312, 49.4042027 8.6745027, 49.4042029 8.6740376, 49.4038325 8.6760552, 49.4030063 8.6756393, 49.4035897 8.6743213, 49.4035960 8.6743276, 49.4035964 8.6743060, 49.4038725 8.6741646, 49.4038789 8.6741709, 49.4038793 8.6741493, 49.4038856 8.6741556, 49.4030126 8.6756456, 49.4030131 8.6756239, 49.4030194 8.6756303, 49.4036028 8.6743123, 49.4042033 8.6740159, 49.4042091 8.6745090, 49.4042095 8.6744874, 49.4042096 8.6740222, 49.4042158 8.6744937, 49.4043441 8.6741825, 49.4043504 8.6741889, 49.4043508 8.6741672, 49.4043572 8.6741735, 49.4050523 8.6856736, 49.4084782 8.6937498, 49.4085211 8.6937683, 49.4220320 8.6976552, 49.4232372 8.6974657, 49.4232429 8.6974457, 49.4236711 8.6964872, 49.4055366 8.6885094, 49.4016204 8.6845377, 49.4051006 8.6848847, 49.4086553 8.6936567, 49.4132994 8.6919481, 49.4234494 8.6968852, 49.4234619 8.6968588, 49.4239644 8.6962809, 49.4239766 8.6962803, 49.4244382 8.6964563, 49.4248126 8.6965047, 49.4266516 8.6900922, 49.4279337 8.6910758, 49.4233185 8.6972468, 49.4244184 8.6964491, 49.4252472 8.6964019, 49.4254448 8.6963121, 49.4256648 8.6961988, 49.4256814 8.6961886, 49.4276688 8.6971645, 49.4276844 8.6971713, 49.4277077 8.6893931, 49.4287041 8.6962502, 49.4073803 8.6919832, 49.4164842 8.6731406, 49.4170921 8.6706966, 49.4103481 8.7060341, 49.4091845 8.7064854, 49.4092097 8.7065440, 49.4092511 8.7065936, 49.4092519 8.7055133, 49.4092866 8.7055210, 49.4092886 8.7066170, 49.4093711 8.7055248, 49.4094097 8.7065708, 49.4094423 8.7065117, 49.4094546 8.7056754, 49.4094551 8.7057307, 49.4094561 8.7057637, 49.4094675 8.7064511, 49.4094851 8.7063368, 49.4100227 8.7063415, 49.4101932 8.7062396, 49.4103550 8.7060333, 49.4104740 8.7059723, 49.4107428 8.7060098, 49.4111765 8.7038352, 49.4122079 8.7094870, 49.4122326 8.7093282, 49.4122389 8.7095117, 49.4124591 8.7112897, 49.4043963 8.6796349, 49.4052846 8.6871711, 49.4082787 8.6926614, 49.4110261 8.7067416, 49.4033559 8.6811865, 49.4036252 8.6814280, 49.4103276 8.6976025, 49.4105730 8.6977244, 49.4105869 8.6978108, 49.4106002 8.6978942, 49.4060965 8.6874091, 49.4070739 8.6673627, 49.4164475 8.6716079, 49.4152620 8.6703370, 49.4176113 8.6683395, 49.4176415 8.6688927, 49.4493553 8.7171138, 49.4076976 8.7753217, 49.4077088 8.7753296, 49.4094522 8.7736231, 49.4074074 8.7759159, 49.4032950 8.6750959, 49.4088119 8.7067204, 49.4124111 8.7104952, 49.4502246 8.6810470, 49.4503705 8.6871588, 49.4525568 8.6840630, 49.4125629 8.7095384, 49.4136659 8.7131746, 49.4133742 8.7132947, 49.4125138 8.7111069, 49.4077588 8.6883819, 49.4020140 8.6647402, 49.3788201 8.6875397, 49.4136717 8.7132013, 49.4136665 8.7131499, 49.3746840 8.7029220, 49.3970909 8.6827127, 49.4095037 8.6954205, 49.4110761 8.6917261, 49.4478554 8.6810697, 49.4082548 8.6882735, 49.4053000 8.6681351, 49.4238657 8.7521528, 49.4207342 8.7562631, 49.4177527 8.6683741, 49.4163331 8.6705560, 49.4120292 8.7118471, 49.4097188 8.6964711, 49.3984302 8.6785250, 49.4076714 8.6838740, 49.4076749 8.6837480, 49.4133587 8.7087607, 49.4133605 8.7082310, 49.4133667 8.7086551, 49.4133289 8.7083814, 49.4180557 8.7564882, 49.4185094 8.7565909, 49.4182677 8.7568931, 49.4182690 8.7569164, 49.4198840 8.7454678, 49.4299253 8.7494853, 49.4299187 8.7494813, 49.4181443 8.7612063, 49.4078248 8.6855570, 49.4078213 8.6854792, 49.4183384 8.7563392, 49.4173449 8.7492759, 49.4173520 8.7480297, 49.4192669 8.7567976, 49.4174224 8.7528902, 49.4183292 8.7564175, 49.4186205 8.7565510, 49.4190237 8.7566558, 49.4226161 8.7537388, 49.4220840 8.7547031, 49.4251189 8.7519932, 49.4253911 8.7515226, 49.4291412 8.7501949, 49.4292799 8.7500875, 49.4292909 8.7500809, 49.4148489 8.6949782, 49.4146823 8.6933541, 49.4175193 8.7438935, 49.4174207 8.7440370, 49.4148098 8.6951639, 49.4051944 8.6891550, 49.4127804 8.7095036, 49.4192402 8.7353433, 49.4280435 8.7494692, 49.4220066 8.6890970, 49.4220091 8.6891529, 49.4220292 8.6890896, 49.4220559 8.6890846, 49.4220599 8.6891442, 49.4084390 8.6682963, 49.4300480 8.6797843, 49.4466283 8.6747555, 49.4147490 8.6942441, 49.4149434 8.6951464, 49.4185053 8.7492663, 49.4199966 8.7455000, 49.4231677 8.7537186, 49.4147005 8.6932830, 49.4146319 8.6955546, 49.4183403 8.7276446, 49.4099535 8.7063761, 49.4150343 8.6951789, 49.4022554 8.6690852, 49.3788940 8.6917496, 49.3789010 8.6918146, 49.3792588 8.6918317, 49.3792621 8.6911851, 49.3791331 8.6915527, 49.3791942 8.6913797, 49.3792262 8.6914012, 49.3793106 8.6918289, 49.3793331 8.6917618, 49.3793471 8.6918824, 49.3793972 8.6911497, 49.3792984 8.6912041, 49.4191242 8.7569997, 49.4292772 8.7498149, 49.4289667 8.7492128, 49.4296715 8.7492899, 49.4169270 8.7611249, 49.4169686 8.7610920, 49.4193614 8.7579640, 49.4170074 8.7611316, 49.4177835 8.7613329, 49.4178155 8.7605950, 49.4178346 8.7612859, 49.4179644 8.7589268, 49.4132864 8.6917954, 49.4153140 8.7092735, 49.4182361 8.7567555, 49.4183145 8.7562617, 49.4225247 8.7608033, 49.4225378 8.7608047, 49.4274734 8.6863680, 49.4184660 8.6905365, 49.4047867 8.6755693, 49.3981238 8.6875001, 49.3981257 8.6875557, 49.3981912 8.6882348, 49.3981997 8.6882889, 49.3982704 8.6887717, 49.3982740 8.6887857, 49.3747993 8.7032734, 49.3744997 8.7030955, 49.3746449 8.7037167, 49.3876920 8.7427357, 49.4033924 8.7277790, 49.4032284 8.7291569, 49.4146148 8.6933443, 49.4184359 8.6677471, 49.4129924 8.6739955, 49.3993096 8.6716403, 49.4030356 8.6747793, 49.4153068 8.7610184, 49.4199390 8.7665929, 49.3951758 8.6836065, 49.4016888 8.6813233, 49.4070167 8.6720384, 49.4081205 8.6928550, 49.4155874 8.7433546, 49.4182612 8.7275142, 49.4191914 8.7566303, 49.4185509 8.7277964, 49.4424504 8.7518366, 49.4425184 8.7524066, 49.4425286 8.7524147, 49.4426361 8.7519044, 49.4426362 8.7522754, 49.4426386 8.7523059, 49.4432058 8.7523426, 49.4432260 8.7523594, 49.4432385 8.7523228, 49.4438707 8.7583986, 49.4426258 8.7522404, 49.4443340 8.7577317, 49.4443606 8.7557759, 49.4444798 8.7541253, 49.4447347 8.7556102, 49.4113450 8.7459022, 49.4104713 8.6996680, 49.4120288 8.7197438, 49.4097316 8.7184777, 49.4097383 8.7185692, 49.4097802 8.7191846, 49.4096850 8.7178616, 49.4096917 8.7179471, 49.4111993 8.7185074, 49.4102471 8.6997255, 49.4111802 8.7137969, 49.4115075 8.7148494, 49.4115474 8.7149351, 49.4119277 8.7117685, 49.4120067 8.6991463, 49.4245567 8.6872608, 49.4301975 8.6910655, 49.3901106 8.7373369, 49.3871635 8.7350834, 49.3836445 8.6785428, 49.4157446 8.6679037, 49.4157263 8.6884035, 49.4149603 8.6903977, 49.4180547 8.7575018, 49.3989549 8.6891760, 49.3990066 8.6894876, 49.3990124 8.6894996, 49.3990449 8.6895525, 49.3990508 8.6895639, 49.3990970 8.6892578, 49.3991009 8.6892802, 49.3773034 8.7036202, 49.4114789 8.7040885, 49.4059290 8.6902747, 49.4013516 8.6913121, 49.3770373 8.7181946, 49.3878293 8.6985599, 49.3716364 8.7049329, 49.3716479 8.7049271, 49.3716594 8.7049213, 49.3729874 8.7046811, 49.3729973 8.7046765, 49.3755139 8.7063347, 49.3757353 8.7051876, 49.3757498 8.7051915, 49.4073715 8.6816459, 49.4242500 8.7431843, 49.3806424 8.6885835, 49.3737125 8.7065938, 49.3739729 8.7063029, 49.3739877 8.7062918, 49.3743762 8.7067258, 49.3738994 8.7066907, 49.3759633 8.7051186, 49.3759706 8.7051928, 49.3767359 8.6997257, 49.3767461 8.6997424, 49.3767584 8.7016250, 49.3767766 8.7016218, 49.3759261 8.7051400, 49.3759299 8.7047534, 49.3759510 8.7051767, 49.3771964 8.7040191, 49.3804592 8.6880163, 49.3804908 8.6884054, 49.4143434 8.6882102, 49.4113674 8.7086976, 49.4118517 8.7084738, 49.4151910 8.7101086, 49.4179632 8.7419406, 49.4134545 8.7133418, 49.4124581 8.7131526, 49.3845905 8.7090625, 49.4164839 8.7654880, 49.4150774 8.7002616, 49.4151013 8.6999977, 49.4151053 8.7003151, 49.4151223 8.7009839, 49.4152478 8.7009763, 49.4153038 8.7006192, 49.4153106 8.7006561, 49.4154174 8.7008859, 49.4155144 8.6998794, 49.4159997 8.6999873, 49.4160002 8.6999422, 49.4161897 8.7000918, 49.4151934 8.7005986, 49.4152199 8.7001975, 49.4167301 8.7001622, 49.4169195 8.7065860, 49.4155205 8.7016249, 49.4155357 8.6998719, 49.4155605 8.6998647, 49.4156018 8.7022717, 49.4156877 8.7003539, 49.4156878 8.7003287, 49.4157546 8.7006069, 49.4157705 8.7006775, 49.4158372 8.7024001, 49.4159423 8.7019583, 49.4148466 8.6998067, 49.4148611 8.6998219, 49.4148765 8.6998382, 49.4149073 8.6973416, 49.4142527 8.6986590, 49.4142660 8.6986696, 49.4147969 8.6997094, 49.4148050 8.6997332, 49.4148140 8.6997575, 49.4099756 8.7084058, 49.4102711 8.7082977, 49.4127842 8.7096999, 49.4329035 8.7423176, 49.4385626 8.7343864, 49.4080812 8.6748720, 49.4059368 8.6924965, 49.4158531 8.6624137, 49.3979762 8.7114814, 49.3979762 8.7114814, 49.4167321 8.7088894, 49.3991863 8.6882104, 49.3994161 8.6879728, 49.3776494 8.7559842, 49.3776559 8.7560961, 49.4180801 8.6695142, 49.3735463 8.7364901, 49.4151298 8.6922925, 49.4090830 8.6799842, 49.4090800 8.6803324, 49.4092802 8.6805751, 49.4094606 8.6799850, 49.4094579 8.6803401, 49.4123422 8.7119333, 49.4016741 8.7277682, 49.4023174 8.7276615, 49.4001879 8.7341924, 49.4003174 8.7353553, 49.4010232 8.7316235, 49.4008032 8.7410687, 49.4086829 8.6938220, 49.4028996 8.6875247, 49.4088718 8.6936606, 49.4018638 8.6725783, 49.3986608 8.6709646, 49.4070078 8.6681584, 49.4092858 8.6796229, 49.4077958 8.6921753, 49.3993345 8.6696597, 49.4000506 8.6678938, 49.4000938 8.6678046, 49.4001410 8.6679973, 49.4001842 8.6679080, 49.4008992 8.6661535, 49.4009424 8.6660643, 49.4009896 8.6662570, 49.4010328 8.6661678, 49.3992008 8.6696454, 49.3992440 8.6695562, 49.3992913 8.6697489, 49.4282885 8.6835188, 49.4129623 8.6762887, 49.4149227 8.6648005, 49.4225893 8.6725966, 49.4270321 8.6876651, 49.4270345 8.6876189, 49.4278367 8.6835388, 49.4294117 8.6894813, 49.4158674 8.6700664, 49.4094230 8.7003276, 49.4100843 8.7018210, 49.4066473 8.6935470, 49.4129263 8.7138084, 49.3824623 8.6753775, 49.4119103 8.7090896, 49.4117205 8.7083215, 49.4229883 8.7467317, 49.4226586 8.7469463, 49.4121545 8.7119807, 49.4123356 8.7097176, 49.4133505 8.7120800, 49.4138751 8.7153222, 49.4044309 8.6765463, 49.4131256 8.6917935, 49.4131267 8.6918313, 49.4131525 8.6916452, 49.4131525 8.6916812, 49.4131589 8.6917912, 49.4131211 8.6916403, 49.4131223 8.6916824, 49.4131236 8.6917266, 49.4198445 8.7112116, 49.4128323 8.7139647, 49.4112335 8.7080570, 49.4157609 8.6919440, 49.4117197 8.7074508, 49.4133831 8.6959685, 49.4133975 8.6961120, 49.4134402 8.6965472, 49.4134449 8.6965667, 49.4105388 8.6975050, 49.4110622 8.7057852, 49.4111760 8.7057380, 49.4114111 8.7034588, 49.4116298 8.7060315, 49.4116380 8.7060985, 49.4116431 8.7061549, 49.4117165 8.7073714, 49.4093229 8.6775325, 49.4102472 8.6857625, 49.4102673 8.6859876, 49.4102994 8.6862250, 49.4103044 8.6862525, 49.4116975 8.6715536, 49.4093515 8.6773295, 49.4094166 8.6777263, 49.4094288 8.6777541, 49.4094459 8.6771275, 49.4094799 8.6780788, 49.4094824 8.6780927, 49.4095245 8.6787659, 49.4095865 8.6788237, 49.4096010 8.6788472, 49.4096159 8.6788607, 49.4100385 8.6836897, 49.4100459 8.6839043, 49.4101209 8.6836445, 49.4102253 8.6852943, 49.4103261 8.6864553, 49.4103476 8.6868268, 49.4123579 8.6861781, 49.4124118 8.6833334, 49.4124219 8.6834457, 49.4124500 8.6837499, 49.4043932 8.6766952, 49.4044360 8.6766430, 49.4088134 8.6715943, 49.4124610 8.6838655, 49.4124832 8.6841488, 49.4125083 8.6844208, 49.4125180 8.6845345, 49.4125383 8.6847745, 49.4125484 8.6848890, 49.4131382 8.6916090, 49.4012656 8.6725606, 49.3788062 8.6917517, 49.4015618 8.7789934, 49.4150209 8.6722376, 49.4148916 8.6721314, 49.4143577 8.6721732, 49.4088323 8.6922369, 49.4122884 8.7080124, 49.4114742 8.7040324, 49.4114411 8.7040993, 49.4114442 8.7041307, 49.4114700 8.7047892, 49.4201226 8.7301763, 49.4114765 8.7047707, 49.4114818 8.7048063, 49.4117254 8.7086275, 49.4117587 8.7086237, 49.4165926 8.7624099, 49.4206743 8.7327257, 49.4175865 8.7593719, 49.4105674 8.7040917, 49.4105924 8.7039957, 49.4105946 8.7040938, 49.4106054 8.7039935, 49.4106133 8.7042893, 49.4106494 8.7043409, 49.4106699 8.7043384, 49.4107091 8.7043319, 49.4107175 8.7039657, 49.4107300 8.7039654, 49.4107387 8.7040873, 49.4107525 8.7042670, 49.4107576 8.7042963, 49.4112117 8.7026968, 49.4112164 8.7027255, 49.4112638 8.7085579, 49.4112864 8.7031659, 49.4112911 8.7031946, 49.4181332 8.7565080, 49.4115613 8.7086989, 49.4145671 8.6688970, 49.4080063 8.6870730, 49.4087415 8.6912046, 49.4162268 8.6693359, 49.3991538 8.7488759, 49.4234073 8.7067694, 49.4234596 8.7058936, 49.4236429 8.7068323, 49.4238389 8.7068711, 49.4238952 8.7059193, 49.4179494 8.7077022, 49.4076191 8.6934622, 49.4104551 8.6978754, 49.4104767 8.6979270, 49.4104802 8.6979445, 49.4107247 8.6993580, 49.4107355 8.6994233, 49.4108430 8.7002042, 49.4108506 8.7001648, 49.4108592 8.7002186, 49.4118483 8.7097386, 49.4118499 8.7097653, 49.4118535 8.7099691, 49.4199653 8.6582181, 49.4263449 8.6614024, 49.4114202 8.6969720, 49.3999110 8.6783652, 49.3998036 8.6780609, 49.4483155 8.6893337, 49.4204769 8.7052380, 49.4221172 8.7055780, 49.4360737 8.6793655, 49.4329720 8.6805360, 49.4434767 8.6720046, 49.4431652 8.6709311, 49.4419297 8.6688858, 49.4063251 8.6755799, 49.4372140 8.6797393, 49.4378001 8.6797566, 49.4421821 8.6650097, 49.4405259 8.6652199, 49.4376306 8.6777982, 49.4287948 8.6836146, 49.4282796 8.6827973, 49.4047972 8.6739218, 49.4278804 8.6861552, 49.4082062 8.6763355, 49.3798890 8.6777329, 49.4271018 8.6801686, 49.4098483 8.6605879, 49.4214767 8.6751246, 49.4157016 8.6528859, 49.4204267 8.6756874, 49.4201046 8.6719577, 49.4203138 8.6703791, 49.4210841 8.6683206, 49.4200492 8.6683293, 49.4149913 8.6535552, 49.4039134 8.6767400, 49.4058861 8.6897741, 49.4060206 8.6905436, 49.4061504 8.6912857, 49.4088332 8.6757532, 49.4034240 8.6790856, 49.4281720 8.6837347, 49.3965511 8.6771437, 49.3935396 8.6817411, 49.3952870 8.6836845, 49.3958629 8.6832887, 49.4202026 8.6693547, 49.4225207 8.6751194, 49.4221340 8.6753895, 49.4218537 8.6754364, 49.4227238 8.6738472, 49.4162298 8.6755281, 49.4154291 8.6756221, 49.4145364 8.6757808, 49.4162187 8.6774400, 49.4212459 8.6738490, 49.4210596 8.6732314, 49.4093831 8.6738552, 49.4089529 8.6602625, 49.4115623 8.6538584, 49.4132855 8.6517669, 49.4167321 8.6742199, 49.4156100 8.6707017, 49.4139089 8.6729704, 49.4135711 8.6685440, 49.4133710 8.6685603, 49.4229672 8.6628733, 49.4253832 8.6563505, 49.4244918 8.6574290, 49.4201274 8.6592504, 49.4183168 8.6570383, 49.4129687 8.6642981, 49.4140561 8.6650241, 49.4194911 8.6655520, 49.4177447 8.6641338, 49.4215359 8.6818834, 49.4188910 8.6769323, 49.4211075 8.6775566, 49.4211894 8.6670319, 49.4130779 8.6696042, 49.4130810 8.6699968, 49.4134398 8.6714192, 49.4137439 8.6769747, 49.4155869 8.6784841, 49.4139913 8.6704329, 49.4136024 8.6776951, 49.3962000 8.7085445, 49.4234080 8.6595192, 49.4226921 8.6586119, 49.4229974 8.6608946, 49.4236303 8.6561909, 49.4240515 8.6571965, 49.4260202 8.6577463, 49.4200690 8.6616681, 49.4191043 8.6617726, 49.4204248 8.6636381, 49.4194488 8.6605899, 49.4192298 8.6640734, 49.4194061 8.6615040, 49.4175471 8.6615820, 49.4175057 8.6611975, 49.4177856 8.6598202, 49.4162074 8.6584117, 49.4162564 8.6598696, 49.4166299 8.6607801, 49.4141965 8.6658413, 49.4140546 8.6667870, 49.4145234 8.6662068, 49.4130970 8.6671099, 49.4337847 8.6803905, 49.4337620 8.6799996, 49.4133488 8.6736185, 49.4135603 8.6745102, 49.4126377 8.6749116, 49.4063838 8.6765104, 49.4085613 8.6631372, 49.4062302 8.6697073, 49.4071975 8.6762084, 49.3910080 8.6741013, 49.3913345 8.6763079, 49.3900958 8.6760409, 49.3966746 8.6792043, 49.3850197 8.6741885, 49.4193992 8.6682836, 49.4188931 8.6520438, 49.4187945 8.6519285, 49.4176786 8.7568038, 49.4174427 8.7569407, 49.4180751 8.7587556, 49.4192777 8.7566081, 49.4195655 8.7564736, 49.4226110 8.7421281, 49.4129370 8.6731498, 49.4152120 8.7062933, 49.4491425 8.6751887, 49.4288946 8.6862100, 49.4171569 8.6846986, 49.4162022 8.6847312, 49.4092092 8.6812299, 49.4081243 8.6917754, 49.4077406 8.6904605, 49.4067223 8.6865145, 49.4149163 8.6654747, 49.4507236 8.6784217, 49.4446326 8.6743638, 49.4449864 8.6741832, 49.3978801 8.6820904, 49.3848739 8.7095776, 49.4458920 8.6742896, 49.4143085 8.6953118, 49.4143538 8.6955138, 49.4146629 8.6946010, 49.4147014 8.6950938, 49.4144404 8.6947195, 49.4148906 8.6954429, 49.3768283 8.6892364, 49.4200609 8.6890566, 49.3803262 8.7254433, 49.3848261 8.7330761, 49.4242592 8.7437691, 49.4173756 8.7606525, 49.4505924 8.6845900, 49.4274397 8.6858018, 49.4275397 8.6861496, 49.4429091 8.6690474, 49.4106949 8.7084283, 49.4101399 8.7080219, 49.4076637 8.6962887, 49.4132295 8.7757064, 49.4486141 8.6746777, 49.3931903 8.6817010, 49.4124311 8.7045745, 49.4113122 8.7063997, 49.4113519 8.7065985, 49.4114521 8.7051514, 49.4124626 8.7053703, 49.4122564 8.7038180, 49.4121742 8.7052011, 49.4115601 8.7060978, 49.4113137 8.7064091, 49.4184413 8.6639178, 49.4129542 8.7044420, 49.4090739 8.7026883, 49.4094981 8.7015823, 49.4096566 8.7077333, 49.4098303 8.7083950, 49.4119021 8.6975187, 49.4114288 8.6979435, 49.4110943 8.6975331, 49.4108113 8.6980101, 49.4104199 8.6981041, 49.4099354 8.6980398, 49.4096933 8.6987803, 49.4127121 8.7144583, 49.4440385 8.6717215, 49.4444804 8.6709604, 49.4089831 8.6905347, 49.4091109 8.6881253, 49.4093760 8.6882266, 49.4083960 8.6871399, 49.4083523 8.6868745, 49.4073626 8.6961046, 49.4086236 8.7038493, 49.4094475 8.6872459, 49.4093412 8.6870318, 49.3974193 8.7796900, 49.4130703 8.7151662, 49.4133463 8.7163552, 49.4132424 8.7160458, 49.4076995 8.6755084, 49.3996504 8.6757886, 49.4157663 8.7123712, 49.4223148 8.6746219, 49.3878476 8.7080970, 49.3855445 8.7101353, 49.4177435 8.6877403, 49.3955620 8.7095700, 49.4254888 8.6894928, 49.4554917 8.7108449, 49.4344969 8.6847782, 49.4335894 8.6853414, 49.4493342 8.7171521, 49.4316276 8.7053393, 49.4092373 8.6934403, 49.3840303 8.7319662, 49.4166489 8.6721031, 49.4168939 8.6715527, 49.4176915 8.6881314, 49.4182453 8.6691484, 49.4201336 8.6838883, 49.4198183 8.6845408, 49.4210994 8.6858608, 49.4044484 8.6901151, 49.4044158 8.6910541, 49.4157344 8.6715300, 49.3849958 8.7327247, 49.3912799 8.7348521, 49.3844874 8.7079169, 49.4348723 8.6798701, 49.4084567 8.7744272, 49.4106260 8.7736249, 49.4084789 8.7749854, 49.4096676 8.7745973, 49.4095334 8.7745510, 49.4098505 8.7747042, 49.4080891 8.7753050, 49.4083774 8.7757304, 49.4080179 8.7726262, 49.4080730 8.7732147, 49.4085339 8.7718738, 49.4096105 8.7716436, 49.4092528 8.7710028, 49.4095481 8.7715804, 49.4099675 8.7718266, 49.4075671 8.7731906, 49.4103044 8.7719162, 49.3893649 8.6662793, 49.3911203 8.6725794, 49.4039746 8.7551200, 49.4041196 8.7536943, 49.3883810 8.7635234, 49.3872918 8.7341917, 49.3872364 8.7346514, 49.3818065 8.7467095, 49.3871999 8.7349917, 49.4121422 8.7045081, 49.4088000 8.6984868, 49.3801022 8.6812091, 49.3814817 8.6779564, 49.3814977 8.6777918, 49.4100113 8.7016140, 49.3989016 8.6746355, 49.4069892 8.6573118, 49.4038660 8.6717206, 49.4482877 8.6822129, 49.4297095 8.6822901, 49.4340707 8.6790422, 49.4326600 8.6805997, 49.4277051 8.6823985, 49.4089070 8.7072077, 49.4093409 8.7060374, 49.4331905 8.6827771, 49.4327974 8.6870571, 49.4146957 8.7191257, 49.4120976 8.7096738, 49.4128930 8.6937401, 49.3879687 8.6879096, 49.3881468 8.6882271, 49.4070420 8.6761280, 49.4290351 8.6868546, 49.4283062 8.6867403, 49.4121386 8.7104648, 49.4265924 8.6873755, 49.4278888 8.6873471, 49.4262545 8.6874841, 49.3962619 8.6860719, 49.3806654 8.6783120, 49.4085805 8.6761541, 49.3735956 8.7030427, 49.3890846 8.6883954, 49.3853400 8.6756239, 49.4207600 8.7562394, 49.4184415 8.6866326, 49.3953953 8.7086103, 49.4130467 8.7057660, 49.4097479 8.7051515, 49.4137573 8.6875431, 49.4261283 8.6876606, 49.4255958 8.6877467, 49.4252895 8.6896450, 49.4151862 8.6795007, 49.4153849 8.6793794, 49.4233025 8.6807132, 49.4234428 8.6840685, 49.4243891 8.6864373, 49.4239240 8.6817311, 49.4179555 8.6907278, 49.4127689 8.7147799, 49.4060671 8.6838346, 49.3935295 8.6896217, 49.4131304 8.7665767, 49.4100029 8.6521047, 49.3900974 8.6883942, 49.3800297 8.6925810, 49.4039055 8.6875262, 49.3802640 8.6848463, 49.3805355 8.6849043, 49.3939262 8.6891470, 49.3808161 8.6905517, 49.3807025 8.6902232, 49.4067734 8.6837136, 49.4187857 8.6768219, 49.4187809 8.6767384, 49.4186852 8.6638016, 49.4063560 8.6836519, 49.4239610 8.6793566, 49.4107678 8.7077166, 49.4109456 8.7019862, 49.4084979 8.6820569, 49.4096282 8.6811489, 49.4103493 8.6912088, 49.4086350 8.6786376, 49.4075765 8.6864605, 49.4083411 8.6839428, 49.4108377 8.6591604, 49.4110589 8.6579553, 49.3768893 8.6944349, 49.3808692 8.6779525, 49.4429209 8.6665224, 49.4332162 8.6832690, 49.4021663 8.6853834, 49.3966514 8.6718493, 49.3890461 8.6840215, 49.4017367 8.6821163, 49.3968926 8.6802735, 49.4021904 8.6790167, 49.4154951 8.7332007, 49.4135832 8.7467488, 49.4045486 8.6762865, 49.4025929 8.6757151, 49.3976293 8.6709378, 49.4069978 8.6788659, 49.4081624 8.6806522, 49.4150598 8.7727094, 49.4006359 8.6759248, 49.3964318 8.6793231, 49.4176645 8.6590769, 49.4119567 8.6571348, 49.4050466 8.6815538, 49.4045783 8.6829102, 49.4085882 8.6941458, 49.3713386 8.7202477, 49.4096951 8.6835813, 49.4093258 8.6843524, 49.4097961 8.7016387, 49.3980621 8.7294523, 49.4016680 8.6740567, 49.4150755 8.7624400, 49.4150320 8.7620828, 49.3896278 8.7352655, 49.4472384 8.6758226, 49.4470879 8.6757617, 49.4092038 8.7122223, 49.3960044 8.6709715, 49.3949788 8.6699146, 49.3950680 8.6800049, 49.3960436 8.6718019, 49.3962304 8.6722292, 49.3957517 8.6718870, 49.3953878 8.6756074, 49.4097966 8.7064065, 49.4084468 8.7003941, 49.4152843 8.7204818, 49.3813905 8.7643802, 49.3839185 8.7575944, 49.3923472 8.7466824, 49.3875208 8.7503390, 49.4449871 8.6705662, 49.4125007 8.6537640, 49.4224157 8.6786831, 49.3894532 8.7370456, 49.3895678 8.7370642, 49.3892768 8.7345923, 49.4171332 8.6926969, 49.3766447 8.7050079, 49.3731436 8.7032594, 49.3725250 8.7041745, 49.3723135 8.7032611, 49.4077784 8.6939263, 49.4082673 8.6863585, 49.4086991 8.6956172, 49.3932314 8.7507117, 49.4241298 8.7517914, 49.4159017 8.6697995, 49.4250581 8.7507586, 49.4094426 8.7049844, 49.4029808 8.6788786, 49.4109590 8.7049760, 49.4040413 8.7365764, 49.3799456 8.7244856, 49.4019049 8.7713017, 49.3865134 8.7038130, 49.3888980 8.7077795, 49.4063624 8.7315995, 49.3982175 8.7723404, 49.3954989 8.7710690, 49.3975902 8.7366726, 49.3873682 8.7504612, 49.4105874 8.7233315, 49.4007958 8.7275016, 49.4421834 8.6768545, 49.3918705 8.7219432, 49.4033414 8.7287167, 49.3967792 8.7245614, 49.4111026 8.7024580, 49.4009150 8.7298557, 49.4007196 8.7297407, 49.4035389 8.7279297, 49.4026240 8.7278681, 49.4072266 8.7144207, 49.4010872 8.7131843, 49.4094204 8.7462519, 49.4026441 8.7802131, 49.4087288 8.6979862, 49.4094023 8.6982765, 49.4141463 8.6944093, 49.4148467 8.6967256, 49.4150572 8.6984209, 49.4084892 8.6860597, 49.4086175 8.6796932, 49.4086214 8.6802758, 49.4112044 8.6938341, 49.4047494 8.6753390, 49.4185616 8.6687042, 49.3937975 8.7087043, 49.3961629 8.6968177, 49.3870196 8.7195842, 49.3949506 8.7165457, 49.4166546 8.6730099, 49.4056935 8.6753617, 49.3827794 8.6823789, 49.3829709 8.6804553, 49.4137241 8.6932149, 49.3799388 8.6863729, 49.3810973 8.6895578, 49.3809588 8.6898013, 49.3796123 8.6875344, 49.3938241 8.6885892, 49.4218342 8.7455830, 49.4194809 8.7033801, 49.3925736 8.6762381, 49.3878242 8.6663099, 49.3865054 8.6978078, 49.3870220 8.6985183, 49.4091727 8.6930892, 49.4094455 8.6930370, 49.4094946 8.6930779, 49.4095409 8.6928955, 49.4155403 8.7434262, 49.4112854 8.7578332, 49.4032430 8.7448100, 49.3924188 8.7407366, 49.3967229 8.7250259, 49.3744080 8.7048547, 49.4126021 8.6894511, 49.4124594 8.6881444, 49.4098176 8.7062855, 49.4085106 8.7758557, 49.3919273 8.7779993, 49.3958169 8.6851383, 49.3937100 8.6855417, 49.4282302 8.6874448, 49.4132893 8.6956239, 49.4085000 8.6939571, 49.4078262 8.6941716, 49.4096788 8.7079007, 49.4096785 8.7074005, 49.4101311 8.6910837, 49.4101822 8.6884713, 49.4099175 8.6890057, 49.4169024 8.6774545, 49.4170457 8.6775259, 49.4134444 8.6918647, 49.4082046 8.6830699, 49.4088779 8.6792701, 49.4080222 8.6834597, 49.4090566 8.6852681, 49.4092900 8.6865331, 49.4086943 8.6845447, 49.4017089 8.6846814, 49.4079604 8.6841153, 49.4083191 8.6856688, 49.4080645 8.6851672, 49.4060576 8.6902372, 49.4073436 8.6889011, 49.4069433 8.6836102, 49.4063023 8.6913206, 49.4063263 8.6908480, 49.4265994 8.6890159, 49.4255887 8.6891453, 49.4254663 8.6892002, 49.4284964 8.6877953, 49.4299617 8.6876137, 49.4280495 8.6869299, 49.4243518 8.6812639, 49.4427904 8.7010610, 49.4114775 8.7195875, 49.4090814 8.7182703, 49.4086229 8.7202663, 49.4298363 8.6853708, 49.4324477 8.6828324, 49.4317284 8.6827286, 49.4033869 8.7279290, 49.4141616 8.7704635, 49.4142260 8.7704357, 49.4235631 8.6886029, 49.3894370 8.6884317, 49.3892845 8.6883551, 49.3895530 8.6884195, 49.4120646 8.7134735, 49.4151056 8.6533976, 49.4000215 8.6915677, 49.4070728 8.7039593, 49.4057605 8.7102504, 49.4069654 8.7032895, 49.4051156 8.7101114, 49.4056643 8.6999181, 49.4003872 8.6990544, 49.4012936 8.7089277, 49.3912677 8.7018883, 49.3967708 8.6950821, 49.4078597 8.7085627, 49.4121130 8.7104783, 49.4100264 8.7102106, 49.4133774 8.7093673, 49.4104648 8.7110643, 49.4090884 8.7121174, 49.4158331 8.7024618, 49.4215135 8.7213252, 49.4198837 8.7110673, 49.4145963 8.7424363, 49.4146285 8.7415734, 49.4158248 8.7336485, 49.4159290 8.7336568, 49.4199542 8.7402035, 49.4187468 8.7410394, 49.4180468 8.7420026, 49.4208144 8.7400015, 49.4202707 8.7392359, 49.4195583 8.7389992, 49.3966895 8.6864231, 49.4190608 8.6828828, 49.3862997 8.7039562, 49.3862241 8.7044324, 49.4089481 8.7124297, 49.4089685 8.7125699, 49.4090107 8.7127458, 49.3899857 8.7053174, 49.3907835 8.7032534, 49.3914706 8.7026871, 49.3806555 8.7065541, 49.4122679 8.7142811, 49.4075656 8.6766123, 49.3948947 8.7018296, 49.4042490 8.7188969, 49.4215697 8.7459451, 49.4178193 8.7615639, 49.4179208 8.7599422, 49.4157208 8.7418677, 49.4156600 8.7430138, 49.4152079 8.7442967, 49.4071432 8.7078562, 49.4067775 8.7075784, 49.3991614 8.6713811, 49.4070645 8.7127391, 49.4113511 8.7130776, 49.4088934 8.7133144, 49.4115392 8.7128522, 49.4120223 8.7062092, 49.4232075 8.7514541, 49.4531615 8.7230749, 49.4105472 8.7780302, 49.4045675 8.6848235, 49.4096864 8.6929826, 49.4099326 8.6928092, 49.4097527 8.6932084, 49.4096327 8.6929459, 49.4102627 8.6928342, 49.4208463 8.6738282, 49.4090781 8.7054333, 49.4088637 8.7053912, 49.4139598 8.6937014, 49.4131244 8.6897970, 49.4122418 8.6816335, 49.4171772 8.7603354, 49.4178582 8.7604307, 49.4355093 8.7254841, 49.4175872 8.7007866, 49.4350143 8.7097094, 49.4316519 8.7052478, 49.4377365 8.6957804, 49.4196545 8.6977706, 49.4290723 8.7151671, 49.4497278 8.7149660, 49.4217923 8.7056451, 49.4070226 8.7014890, 49.4384096 8.6837127, 49.4337050 8.6982644, 49.4386376 8.6862454, 49.4131989 8.7239585, 49.4497066 8.6783352, 49.4058690 8.6604558, 49.4048929 8.6675943, 49.4084589 8.6609835, 49.4064864 8.6678500, 49.4085569 8.6610137, 49.4049473 8.6755921, 49.4048677 8.6759756, 49.4066719 8.6669747, 49.4050106 8.6759322, 49.4051023 8.6755057, 49.4148153 8.6642766, 49.4163511 8.7711778, 49.3772124 8.6950909, 49.4140695 8.6872232, 49.4172010 8.6768150, 49.4187293 8.6769856, 49.3930474 8.6832081, 49.3774547 8.7085656, 49.3762592 8.7055890, 49.4328627 8.7783319, 49.4119166 8.6961489, 49.4093271 8.6843529, 49.4327755 8.6997170, 49.4317346 8.7061263, 49.4322270 8.6909619, 49.4176061 8.6615500, 49.4148094 8.6905503, 49.4146460 8.6905719, 49.4266687 8.7639549, 49.4151150 8.7494524, 49.4134479 8.7473282, 49.4147513 8.7446806, 49.4124413 8.7456969, 49.4150047 8.7453868, 49.4147956 8.7444452, 49.4143823 8.7483441, 49.4232907 8.7529822, 49.4175762 8.7619090, 49.4150603 8.7612435, 49.4181519 8.7605105, 49.4165526 8.6912073, 49.4277972 8.6793663, 49.4186343 8.6608593, 49.4121807 8.6993722, 49.4195637 8.7042135, 49.3777846 8.6947087, 49.3887612 8.6898215, 49.3896117 8.6900353, 49.3745870 8.6933185, 49.3745512 8.6931398, 49.4141951 8.6773802, 49.4060071 8.6831370, 49.4256553 8.7393946, 49.4253980 8.7402529, 49.4299277 8.7407836, 49.4143279 8.6877116, 49.4145768 8.6900311, 49.4076774 8.6896431, 49.4075308 8.6897346, 49.4190729 8.6890667, 49.4187521 8.6903307, 49.4187110 8.6904478, 49.4159754 8.6729830, 49.4158552 8.6727509, 49.4159739 8.6732323, 49.4067994 8.6931128, 49.4067874 8.6935163, 49.4070263 8.6953186, 49.4088402 8.7022464, 49.4086281 8.7004350, 49.4083266 8.6988134, 49.4084032 8.6992511, 49.4086930 8.7008503, 49.4082856 8.6993919, 49.4400488 8.6895399, 49.4032249 8.6746009, 49.4071473 8.6720042, 49.4126031 8.7205963, 49.4123897 8.7201796, 49.4108875 8.7198273, 49.4121174 8.7199537, 49.3933484 8.7760935, 49.4168236 8.6627821, 49.4168236 8.6627821, 49.4168236 8.6627821, 49.4211179 8.6800477, 49.4210927 8.6788357, 49.3822054 8.6779650, 49.4155910 8.6745461, 49.4094350 8.6528632, 49.4043967 8.6769160, 49.4076047 8.6749349, 49.3999783 8.6914430, 49.4126654 8.7038051, 49.4128948 8.7051740, 49.4290349 8.6871594, 49.4288599 8.6868212, 49.4458011 8.6752086, 49.4457825 8.6750883, 49.4070387 8.6723984, 49.4259339 8.6618748, 49.4507187 8.6805587, 49.4489035 8.6762140, 49.4267357 8.6857211, 49.3846497 8.6817785, 49.3846976 8.6847175, 49.3844191 8.6849082, 49.3847543 8.6816927, 49.3845422 8.6811475, 49.3844361 8.6812945, 49.3844812 8.6833063, 49.3843655 8.6831352, 49.3844693 8.6838984, 49.3847140 8.6828075, 49.3846153 8.6826858, 49.3916379 8.6832393, 49.3986872 8.6742906, 49.3990473 8.6713284, 49.4019576 8.6811178, 49.4019323 8.6807736, 49.4019771 8.6810189, 49.4019064 8.6809317, 49.4030467 8.6777744, 49.4403049 8.7370650, 49.4278253 8.6839436, 49.4279195 8.6840395, 49.4266417 8.6834045, 49.4149614 8.7627536, 49.4147153 8.7636838, 49.4148588 8.7631440, 49.4151372 8.7619776, 49.4074520 8.6739607, 49.4068864 8.6742272, 49.4066831 8.6742637, 49.4065288 8.6742965, 49.4074304 8.6738082, 49.4070673 8.6742200, 49.4072326 8.6739688, 49.4071113 8.6739332, 49.4071745 8.6739715, 49.4068234 8.6739182, 49.4068406 8.6742290, 49.4065740 8.6742948, 49.4067619 8.6739416, 49.4063755 8.6743398, 49.4063435 8.6743250, 49.4071878 8.6744576, 49.4064083 8.6743389, 49.4070217 8.6742218, 49.4067925 8.6739306, 49.4068540 8.6739069, 49.4067956 8.6742307, 49.4072178 8.6742893, 49.4075113 8.6739379, 49.4073401 8.6739636, 49.4074310 8.6738414, 49.4069770 8.6742236, 49.4073533 8.6740777, 49.4070461 8.6739348, 49.4075274 8.6742330, 49.4073911 8.6739622, 49.4071584 8.6742164, 49.4067497 8.6742326, 49.4074299 8.6737756, 49.4063104 8.6743095, 49.4074931 8.6738733, 49.4066188 8.6742931, 49.4069166 8.6738920, 49.4070675 8.6739342, 49.4069322 8.6742254, 49.4069478 8.6738909, 49.4074009 8.6740750, 49.4062796 8.6742939, 49.4071123 8.6742182, 49.4070894 8.6739337, 49.4074938 8.6739384, 49.4072034 8.6742480, 49.4068853 8.6738947, 49.4064567 8.6743367, 49.4073274 8.6744523, 49.4075006 8.6742374, 49.4072016 8.6742146, 49.4045857 8.6750253, 49.4035865 8.6820059, 49.4030383 8.6811813, 49.4067406 8.6760466, 49.4069553 8.6902031, 49.4209716 8.7395001, 49.4148681 8.7627574, 49.4178026 8.7412411, 49.4177775 8.7408198, 49.4179019 8.7409040, 49.4210951 8.7398188, 49.4178687 8.7405082, 49.4150957 8.7621532, 49.4151231 8.7620372, 49.4150216 8.7723676, 49.4051851 8.7806376, 49.4094999 8.7187995, 49.4123406 8.7658191, 49.4111655 8.7708208, 49.4112671 8.7706090, 49.4105710 8.7718536, 49.4114477 8.7117426, 49.4179324 8.7578275, 49.4447844 8.7558449, 49.4134141 8.7156909, 49.4129121 8.7129795, 49.4127437 8.7131641, 49.3970019 8.6746884, 49.4127565 8.7719234, 49.4106087 8.7156269, 49.3834049 8.6789517, 49.4098213 8.6924212, 49.4174569 8.7484520, 49.4025693 8.6891404, 49.4036138 8.7270753, 49.4278064 8.7495089, 49.4288764 8.7498520, 49.4410069 8.6652065, 49.4422747 8.6663944, 49.4422553 8.6672498, 49.4177652 8.6880875, 49.4136416 8.6736287, 49.4085738 8.6928851, 49.4086523 8.6933648, 49.4425562 8.7519151, 49.4132859 8.6908940, 49.4155322 8.6699617, 49.3924005 8.7782292, 49.4278544 8.6884082, 49.4068263 8.6680762, 49.4072646 8.6691321, 49.4072916 8.6693315, 49.4049477 8.7776001, 49.4064182 8.7775809, 49.4172829 8.7456066, 49.3931588 8.7767282, 49.4102644 8.7748807, 49.4102824 8.7752511, 49.4161354 8.7550944, 49.4153906 8.7473234, 49.4152029 8.7091123, 49.4134479 8.6924308, 49.4144394 8.6710078, 49.4141167 8.6710146, 49.4138185 8.6710206, 49.4132935 8.6911529, 49.4131725 8.7092512, 49.4131247 8.7097212, 49.4083996 8.6921523, 49.4161156 8.6703451, 49.4159611 8.6705524, 49.4161026 8.6692956, 49.4104796 8.6607802, 49.4113226 8.6592808, 49.4145907 8.6663489, 49.4136723 8.7107377, 49.4135796 8.7138390, 49.4136153 8.7141506, 49.4137093 8.7167419, 49.4088095 8.6613580, 49.4085674 8.6625073, 49.4089016 8.6607853, 49.4131958 8.7122978, 49.4158062 8.7426899, 49.4152783 8.7629876, 49.4155272 8.7610820, 49.4576975 8.7025488, 49.4000585 8.6765799, 49.4161732 8.7555546, 49.4153272 8.7608768, 49.4152918 8.7608610, 49.4153534 8.7601741, 49.4102210 8.7748343, 49.4101629 8.7746784, 49.4094958 8.6684506, 49.4476354 8.6808109, 49.4476337 8.6811172, 49.4479946 8.6811792, 49.4160191 8.6700610, 49.4161314 8.6706351, 49.3924444 8.7782060, 49.3922131 8.7798986, 49.4187135 8.7240892, 49.4182654 8.7234671, 49.4063399 8.6900996, 49.4063668 8.6902286, 49.4065511 8.6906922, 49.4056965 8.6856838, 49.4209713 8.6746499, 49.3917631 8.6910070, 49.3914904 8.6905020, 49.4133894 8.7101136, 49.4446785 8.7641829, 49.4000181 8.6782987, 49.3931737 8.6788679, 49.4257900 8.6887426, 49.4092616 8.7016317, 49.4504867 8.6872115, 49.4198205 8.7343539, 49.4101553 8.6911774, 49.4066779 8.7141416, 49.4113423 8.7195551, 49.4110748 8.7197211, 49.3945251 8.6755375, 49.3945690 8.6743519, 49.3943175 8.6754654, 49.3973820 8.6940966, 49.3987446 8.6923402, 49.3986523 8.6924283, 49.3972671 8.6941625, 49.3799065 8.7239334, 49.4061766 8.6754688, 49.4064397 8.6761648, 49.4275954 8.6823123, 49.3963113 8.6748861, 49.4103125 8.7748332, 49.4264733 8.7602041, 49.3916824 8.6702885, 49.4383671 8.7404676, 49.4373853 8.7411725, 49.4048709 8.6753023, 49.4014026 8.6800343, 49.3982248 8.6703696, 49.4166596 8.6925736, 49.4033925 8.6748011, 49.4036554 8.6741638, 49.4030818 8.6755033, 49.4030690 8.6754897, 49.4036681 8.6741773, 49.4033797 8.6747876, 49.4039602 8.6739790, 49.4041427 8.6741682, 49.4042899 8.6743214, 49.4124274 8.7117362, 49.4031240 8.6758606, 49.4029422 8.6757784, 49.4033073 8.6760596, 49.4029550 8.6757921, 49.4034582 8.6762131, 49.4035925 8.6763415, 49.4029835 8.6757044, 49.4274540 8.6971831, 49.4278787 8.6910220, 49.4036097 8.6814705, 49.4068513 8.7741286, 49.4089598 8.7753014, 49.4098482 8.7727462, 49.4097413 8.7748414, 49.4096671 8.7744209, 49.4090822 8.7715798, 49.4097801 8.7743109, 49.4084225 8.7720223, 49.4103070 8.7730431, 49.4101172 8.7731558, 49.4102913 8.7737465, 49.4284212 8.6802828, 49.4096112 8.7061878, 49.4055755 8.6828385, 49.4132035 8.7055809, 49.4173828 8.7440688, 49.4230775 8.7427761, 49.4086236 8.6853083, 49.4091303 8.6886788, 49.4095563 8.6859189, 49.4098659 8.6891488, 49.4129558 8.6762878, 49.4171169 8.7608571, 49.3982649 8.6887359, 49.3916964 8.6675353, 49.4428896 8.7531257, 49.4438944 8.7593506, 49.4182831 8.7275463, 49.4183219 8.7276907, 49.4439646 8.7584327, 49.4162390 8.6664533, 49.4211850 8.6816458, 49.4135373 8.6724241, 49.3898829 8.7370634, 49.3903181 8.7378228, 49.3953016 8.7092595, 49.4128834 8.7053652, 49.3738556 8.7059603, 49.3738641 8.7062020, 49.3804256 8.6879749, 49.3804697 8.6882307, 49.3766342 8.6876673, 49.3767075 8.6877891, 49.4132590 8.7121161, 49.4160242 8.6602643, 49.4160234 8.6600287, 49.4025607 8.6761200, 49.4096861 8.6914112, 49.4004010 8.6986103, 49.3966624 8.6785518, 49.3976810 8.6780375, 49.3973402 8.6783701, 49.3972673 8.6784981, 49.3971957 8.6786302, 49.3971215 8.6787583, 49.3970486 8.6788777, 49.3979602 8.6788301, 49.3978718 8.6789173, 49.4106247 8.7042757, 49.4064815 8.6612299, 49.3955588 8.6885532, 49.3978371 8.6880069, 49.3971156 8.6878230, 49.3974000 8.6863380, 49.4039405 8.6883323, 49.4066626 8.6939736, 49.4088130 8.7065871, 49.4191415 8.6622333, 49.4288011 8.6854247, 49.4210933 8.7038394, 49.4180756 8.6744912, 49.4178561 8.6661108, 49.4177600 8.6624888, 49.4138580 8.6676018, 49.4099343 8.7058477, 49.4187185 8.6769009, 49.4104424 8.6919840, 49.3893705 8.7373749, 49.3810576 8.6896077, 49.4030621 8.7276422, 49.4023293 8.7276702, 49.4101768 8.7066874, 49.4060475 8.6885018, 49.4130005 8.6887393, 49.4095417 8.6933025, 49.4021987 8.6807616, 49.4162402 8.6597540 +49.4211992 8.6798616, 49.4249905 8.6447827, 49.4065033 8.6930393, 49.4046185 8.6759242, 49.3689363 8.7051527, 49.4092373 8.6934403, 49.4089070 8.7072077, 49.4067734 8.6837136, 49.3789847 8.6763771 +48.8379931 2.3270595, 48.8224797 2.3195383, 48.8875758 2.3303180, 48.8413274 2.2797801, 48.8384087 2.2847485, 48.8979156 2.3166483, 48.8890374 2.3392767, 48.8624937 2.2850289, 48.8410409 2.2593377, 48.8868716 2.3419216 +1 +49.3811108 8.6608351, 49.3829231 8.6669185, 49.3639284 8.7055803, 49.3644625 8.7048475, 49.3691842 8.7047124, 49.3788104 8.6917294, 49.3923746 8.6760835 +0 +13 +257 +3 +yes +49.4592060 8.7521809, 49.4031563 8.7288155, 49.4032526 8.7289874, 49.4010156 8.7133745, 49.4012714 8.7099451, 49.4035347 8.7270885, 49.4353405 8.6845100, 49.4386622 8.6819436, 49.4198190 8.7257180, 49.4318454 8.7057299, 49.3784315 8.6932171, 49.4588749 8.7510057, 49.4085824 8.7204400 +yes +48.1367914 11.5764002, 52.0291860 8.5142550, 49.2330740 6.9973444, 50.1074307 8.7650055, 50.1072273 8.7647436, 53.4593415 9.9824597, 51.1120248 13.0448680, 54.2989855 9.6672704, 51.3433804 12.3777713, 53.0816826 8.7668217, 53.0785270 8.7790946, 51.3662367 12.7354244, 53.0763731 8.7814702, 53.0749711 8.7854362, 53.5870543 9.8523197, 53.0736960 8.8113880, 53.0776511 8.7744885, 53.0798099 8.7656249, 53.0749514 8.8058188, 53.0700008 8.8578411, 53.0722317 8.8027783, 53.0660402 8.8603661, 52.1492696 8.6409588, 49.4448734 7.7697663, 53.0836993 8.7681259, 52.4938477 13.3811864, 49.2351223 8.4528471, 52.6401090 9.2041528, 52.6429039 9.2056691, 50.6909067 6.6458012, 53.1226519 8.7627701, 52.4859871 13.4239241, 51.1738592 11.4244641, 51.1733178 11.4239529, 51.1752559 11.4191939, 51.1770761 11.4206127, 53.0791955 8.8052958, 53.1368542 8.7413622, 51.5144694 12.1668357, 48.1089044 11.7307630, 49.0119269 8.4164669, 53.5499631 10.0055917, 48.6734280 8.3527547, 49.0102350 8.4115848, 47.5517728 7.9493424, 47.5517791 7.9493221, 52.4535708 13.6208250, 52.4540617 13.6208695, 49.2814715 8.4738830, 49.0116061 8.4175225, 49.5728224 8.8088691, 53.4468284 8.1108128, 48.1460671 11.5730439, 52.5052299 13.3223327, 47.5516748 7.9495248, 47.5529679 7.9494813, 47.5526278 7.9486973, 52.6387209 9.2078173, 48.5259755 12.1889570, 47.5513440 7.9500035, 49.0150801 8.4207568, 51.2675538 7.1607310, 50.6635320 11.5677944, 51.0527543 13.7389809, 49.4719088 8.4843272, 50.9602455 6.9768291, 48.5135683 9.0540270, 48.5136496 9.0546591, 48.5166244 9.0588300, 49.4711729 8.4842984, 49.2423920 8.4730477, 49.2421672 8.4730766, 49.2421984 8.4729072, 49.2422946 8.4732007, 49.2423402 8.4728779, 52.6396913 9.2078891, 48.1066006 11.7222562, 52.6440907 9.2020649, 52.5449088 12.3430742, 52.5447248 12.3472627, 49.4040536 8.6759122, 49.0144606 8.4169085, 49.2862243 8.5603333, 49.2863028 8.5602592, 49.2862473 8.5601351, 52.5310792 12.3379562, 52.5293652 12.3419150, 48.0099205 7.8218526, 52.4710777 13.7855324, 51.4460054 7.3628248, 49.0141897 8.4198721, 52.5212359 13.4163432 +Premier Inn Leith, Mercure Hotel, Old Waverley Hotel, Royal British Hotel, Thistle Hotel +33 +1 +yes +Karlstorkino +997 +55.9904468 -3.3968883 +78 and 12 +BNP Paribas and 48.8737979 2.3160522 +8 +48.8700842 2.3190066 +yes +144 +en:Talbot Rice Gallery +55.9373944 -3.2348187 +2 +yes and 48.8769555 2.2661355, 48.8365051 2.4433783 +36 +yes +391 +yes +48.8403064 2.3155776 +79 +Theater im Kulturzentrum Karlstorbahnhof, Städtische Bühne, Theater und Philharmonisches Orchester, Taeter Theater, Zimmertheater, Zwinger1 und Zwinger3, Theater im Romanischen Keller, Hebelhalle +yes +49.4124594 8.6881444 +9 +Dynastie, Tiger and Dragon's, Onnoz, Asia Bistro, Thai Gourmet +1742 +49.4296874 8.6826637, 49.4278935 8.6837354, 49.4147764 8.6710359, 49.4278053 8.7495282, 49.4178891 8.7605933, 49.3974030 8.6486853, 49.3977437 8.6485764, 49.4045638 8.6759283, 49.4075919 8.6845735, 49.4092752 8.6923105, 49.4084767 8.6927500, 49.4078943 8.6929172, 49.4082491 8.6928194, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4015990 8.6856698, 49.4158218 8.6922416, 49.4072954 8.6910173, 49.4082662 8.6915918, 49.3808049 8.6889505, 49.3746833 8.6826514, 49.3656861 8.7051775, 49.3743033 8.7032524, 49.3747286 8.7033441, 49.3743933 8.7035372, 49.4103403 8.6975369, 49.4165191 8.6921856, 49.3790412 8.6689354, 49.3792964 8.6699345, 49.4048779 8.6827341, 49.4120923 8.7117858, 49.4071068 8.6898761, 49.4108200 8.6918918, 49.4227158 8.6483350, 49.3840770 8.6710133, 49.4160126 8.6922256, 49.3809325 8.6701888, 49.4168755 8.6790034, 49.3992315 8.6710140, 49.4283321 8.6836841, 49.3804723 8.6884268, 49.3807734 8.6884609, 49.4228152 8.6504004, 49.4082494 8.6913249, 49.4060965 8.6874091, 49.4081205 8.6928550, 49.4114742 8.7040324, 49.4207600 8.7562394, 49.4278253 8.6839436 +no +77 +34 +Heinstein's +3.0024997669605269 +53.0485839 8.6313511, 53.0485936 8.6313802, 53.0486037 8.6314063, 53.0494724 8.6335621, 53.0494578 8.6335286, 53.0494852 8.6335943, 53.0494998 8.6336225, 53.0520881 8.6325667, 53.0516940 8.6297814, 53.0516682 8.6297841, 53.0516456 8.6297895, 53.0516214 8.6297922, 53.0517785 8.6077513, 53.0516366 8.6078318, 53.0518496 8.6077245, 53.0517108 8.6078050, 53.0590251 8.6234072, 53.0589009 8.6234019, 53.0589848 8.6234019, 53.0590605 8.6234046, 53.0589429 8.6233965, 53.0505000 8.6353079, 53.0289027 8.6383844, 53.0479116 8.6346100, 53.0289689 8.6384139, 53.0478728 8.6346395, 53.0478342 8.6346610, 53.0506008 8.6353450, 53.0505388 8.6353321, 53.0505678 8.6353106, 53.0505340 8.6352731, 53.0574582 8.5994310, 53.0575115 8.5993612, 53.0575002 8.5994283, 53.0574775 8.5993317, 53.0525977 8.6321456 +48.8678615 2.3515176, 48.8681982 2.3520494, 48.8742181 2.3379134, 48.8797487 2.3564752, 48.8827832 2.3594133, 48.8327554 2.3711889, 48.8294224 2.3758727, 48.8322707 2.3582796, 48.8704428 2.3883722, 48.8703637 2.3893764, 48.8695013 2.3822447, 48.8701522 2.3848448, 48.8705756 2.3882952, 48.8726648 2.3889559, 48.8692544 2.3857069, 48.8732512 2.3826034, 48.8719640 2.3809798, 48.8715747 2.3812545, 48.8707876 2.3814258, 48.8701383 2.3797607, 48.8703047 2.3816624, 48.8689756 2.3829202, 48.8674758 2.3831632, 48.8681056 2.3856641, 48.8692096 2.3486800, 48.8675048 2.3473847, 48.8702235 2.3490322, 48.8818782 2.3342987, 48.8404563 2.3540242, 48.8457501 2.3710340, 48.8507318 2.3902220, 48.8273026 2.3137753, 48.8321419 2.3413424, 48.8330200 2.3329456, 48.8529986 2.3973185, 48.8537772 2.3960030, 48.8411229 2.3744020, 48.8713839 2.3723624, 48.8720555 2.3717928, 48.8725878 2.3713798, 48.8734747 2.3704890, 48.8741515 2.3743018, 48.8747572 2.3721336, 48.8756416 2.3688091, 48.8761685 2.3706316, 48.8767824 2.3701809, 48.8766895 2.3672800, 48.8750608 2.3672145, 48.8735860 2.3650243, 48.8717399 2.3675792, 48.8714321 2.3669323, 48.8715550 2.3681089, 48.8696638 2.3693259, 48.8715040 2.3760459, 48.8687232 2.3723495, 48.8683112 2.3698916, 48.8680322 2.3727849, 48.8631317 2.3869263, 48.8640310 2.3863813, 48.8665041 2.3812744, 48.8656858 2.3776485, 48.8674450 2.3750281, 48.8686005 2.3800123, 48.8681319 2.3792398, 48.8520050 2.3739783, 48.8456295 2.4033753, 48.8663147 2.3719752, 48.8769811 2.4048559, 48.8758342 2.4011315, 48.8703695 2.3665503, 48.8748068 2.3638809, 48.8753882 2.3643616, 48.8831646 2.3720227, 48.8833551 2.3721300, 48.8836055 2.3731171, 48.8836902 2.3740022, 48.8840147 2.3752146, 48.8844169 2.3762767, 48.8849729 2.3784198, 48.8850377 2.3791735, 48.8851153 2.3790072, 48.8855033 2.3809706, 48.8856762 2.3815928, 48.8865051 2.3847954, 48.8873411 2.3873650, 48.8876230 2.3883824, 48.8890494 2.3945176, 48.8827251 2.3816969, 48.8725474 2.3766326, 48.8739080 2.3960132, 48.8775377 2.3857736, 48.8831878 2.3714050, 48.8640393 2.3755646, 48.8706620 2.3611950, 48.8732736 2.3584401, 48.8755934 2.3832701, 48.8756530 2.3832155, 48.8482774 2.3428253, 48.8784345 2.3578878, 48.8703209 2.2825197, 48.8268477 2.3647861, 48.8541564 2.4000911, 48.8465229 2.3686904, 48.8463083 2.3680521, 48.8470474 2.3726397, 48.8467819 2.3725108, 48.8459580 2.3724556, 48.8455779 2.3697051, 48.8663510 2.3672959, 48.8658303 2.3698488, 48.8657851 2.3771616, 48.8665079 2.3800178, 48.8653617 2.3809810, 48.8760867 2.3599561, 48.8829095 2.3591741, 48.8834606 2.3606563, 48.8826329 2.3615224, 48.8854259 2.3538571, 48.8884161 2.3532369, 48.8841015 2.3597869, 48.8874152 2.3671866, 48.8853281 2.3720155, 48.8905441 2.3545731, 48.8902032 2.3626104, 48.8896626 2.3678766, 48.8830418 2.3799420, 48.8839897 2.3776750, 48.8839192 2.3777877, 48.8793674 2.3913866, 48.8642121 2.3813367, 48.8549764 2.3705401, 48.8491281 2.3756993, 48.8907340 2.3442268, 48.8482547 2.3739915, 48.8476489 2.3756562, 48.8505462 2.3785256, 48.8495764 2.3778022, 48.8488506 2.3771667, 48.8490151 2.3766595, 48.8493081 2.3747820, 48.8485986 2.3761016, 48.8466357 2.3723850, 48.8376761 2.3448921, 48.8355075 2.3583356, 48.8464369 2.3792454, 48.8584489 2.3792058, 48.8945048 2.3474462, 48.8929338 2.3489373, 48.8919373 2.3499061, 48.8943845 2.3506181, 48.8938805 2.3498536, 48.8953235 2.3467399, 48.8953754 2.3495531, 48.8909128 2.3454738, 48.8916063 2.3445324, 48.8921962 2.3448571, 48.8923204 2.3442537, 48.8902437 2.3476818, 48.8906398 2.3495092, 48.8907675 2.3495020, 48.8923427 2.3461089, 48.8949846 2.3408277, 48.8842461 2.3613088, 48.8840672 2.3616073, 48.8841745 2.3614072, 48.8882926 2.3599384, 48.8845099 2.3646309, 48.8856332 2.3659515, 48.8920952 2.3613649, 48.8883041 2.3506540, 48.8883196 2.3501401, 48.8883144 2.3520272, 48.8883763 2.3527059, 48.8886896 2.3559132, 48.8886090 2.3548159, 48.8889395 2.3584021, 48.8890178 2.3582290, 48.8890523 2.3595116, 48.8866144 2.3504214, 48.8858198 2.3551215, 48.8863622 2.3561844, 48.8878527 2.3515748, 48.8872861 2.3561221, 48.8839769 2.3509507, 48.8850544 2.3495979, 48.8857811 2.3496248, 48.8861021 2.3496301, 48.8863490 2.3496462, 48.8876294 2.3496373, 48.8885253 2.3496748, 48.8890580 2.3496748, 48.8887476 2.3496695, 48.8889098 2.3496802, 48.8841020 2.3522661, 48.8840538 2.3519670, 48.8840388 2.3514774, 48.8892343 2.3496802, 48.8896364 2.3496856, 48.8847017 2.3493780, 48.8847898 2.3493834, 48.8848569 2.3493834, 48.8852449 2.3493834, 48.8851108 2.3493834, 48.8863243 2.3494209, 48.8860562 2.3494048, 48.8857987 2.3494048, 48.8866171 2.3494388, 48.8873464 2.3494796, 48.8876365 2.3494656, 48.8887125 2.3494781, 48.8889239 2.3494603, 48.8891003 2.3494710, 48.8884971 2.3494495, 48.8880001 2.3494761, 48.8904052 2.3495068, 48.8897932 2.3494533, 48.8892625 2.3494710, 48.8830632 2.3383743, 48.8857316 2.3349375, 48.8857096 2.3352645, 48.8854435 2.3359469, 48.8859008 2.3346803, 48.8853035 2.3363355, 48.8851642 2.3366575, 48.8843335 2.3382618, 48.8886961 2.3390540, 48.8851431 2.3383441, 48.8865032 2.3356719, 48.8885778 2.3354686, 48.8888861 2.3383196, 48.8842610 2.3413414, 48.8845571 2.3411073, 48.8847258 2.3403346, 48.8849081 2.3418344, 48.8895658 2.3377576, 48.8850086 2.3604185, 48.8907312 2.3639595, 48.8961106 2.3318024, 48.8991268 2.3345829, 48.8952517 2.3371563, 48.8962344 2.3344485, 48.8965875 2.3360980, 48.8956272 2.3391536, 48.8965966 2.3385842, 48.8983862 2.3383214, 48.8944354 2.3403228, 48.8944213 2.3442287, 48.9000243 2.3455555, 48.8996339 2.3501097, 48.8837052 2.3395939, 48.8832400 2.3421635, 48.8834792 2.3421669, 48.8839647 2.3413568, 48.8865870 2.3452064, 48.8832262 2.3499505, 48.8846010 2.3470099, 48.8881281 2.3463794, 48.8883520 2.3487355, 48.8869557 2.3324658, 48.8869663 2.3326053, 48.8890733 2.3333345, 48.8903665 2.3341127, 48.8903277 2.3330237, 48.8903732 2.3369030, 48.8916416 2.3355004, 48.8908322 2.3375902, 48.8908023 2.3394033, 48.8910048 2.3400771, 48.8912851 2.3396007, 48.8926693 2.3356185, 48.8934479 2.3366141, 48.8928829 2.3373736, 48.8929557 2.3385657, 48.8923455 2.3400044, 48.8904263 2.3404251, 48.8913682 2.3472930, 48.8603661 2.3754100, 48.8901143 2.3611781, 48.8314088 2.3488132, 48.8487505 2.3777984, 48.8503027 2.3774477, 48.8626941 2.3877054, 48.8785891 2.3856103, 48.8810145 2.3891669, 48.8321125 2.3499256, 48.8774636 2.3705618, 48.8682585 2.2932381, 48.8782580 2.3987300, 48.8832583 2.3346263, 48.8832465 2.3341658, 48.8831954 2.3348376, 48.8842151 2.3311538, 48.8830070 2.3349691, 48.8833032 2.3455032, 48.8841705 2.3313488, 48.8826156 2.3432538, 48.8834306 2.3335452, 48.8841164 2.3315750, 48.8824079 2.3419280, 48.8834666 2.3339320, 48.8831738 2.3344061, 48.8821954 2.3389929, 48.8836632 2.3332864, 48.8831695 2.3452574, 48.8824739 2.3367661, 48.8829388 2.3356827, 48.8831317 2.3458945, 48.8843696 2.3305004, 48.8842302 2.3305121, 48.8826517 2.3426287, 48.8827762 2.3362216, 48.8839947 2.3320999, 48.8842717 2.3309204, 48.8824891 2.3425994, 48.8830995 2.3449030, 48.8829578 2.3351297, 48.8832939 2.3340079, 48.8830087 2.3354500, 48.8840806 2.3311362, 48.8827159 2.3359415, 48.8828527 2.3354881, 48.8840902 2.3316931, 48.8911573 2.3437849, 48.8841548 2.3308314, 48.8839884 2.3315392, 48.8827419 2.3443694, 48.8824955 2.3419279, 48.8842291 2.3288540, 48.8840681 2.3286855, 48.8841801 2.3289398, 48.8859483 2.3285578, 48.8851713 2.3293553, 48.8576992 2.2797776, 48.8298513 2.2961748, 48.8373832 2.3826403, 48.8799725 2.3588623, 48.8800272 2.3588101, 48.8829349 2.3636381, 48.8829772 2.3594750, 48.8826392 2.3667648, 48.8772474 2.3640950, 48.8809351 2.3625812, 48.8809545 2.3624632, 48.8831311 2.3654083, 48.8830941 2.3655236, 48.8839358 2.3671407, 48.8289706 2.3807621, 48.8280472 2.3808170, 48.8292763 2.3823041, 48.8294437 2.3827214, 48.8290930 2.3833191, 48.8297040 2.3791490, 48.8809954 2.3651002, 48.8812463 2.3652224, 48.8827050 2.3670033, 48.8465800 2.3730993, 48.8839900 2.3286046, 48.8839605 2.3284938, 48.8763431 2.4041075, 48.8880685 2.3769540, 48.8888236 2.3460678, 48.8955600 2.3458430, 48.8909736 2.3451546, 48.8857875 2.3376754, 48.8856834 2.3380986, 48.8908443 2.3617886, 48.8850609 2.3402076, 48.8569556 2.3980459, 48.8564650 2.4027024, 48.8892956 2.3534520, 48.8883918 2.3276047, 48.8433038 2.3543255, 48.8418031 2.3029041, 48.8414214 2.2514890, 48.8665787 2.3687395, 48.8672442 2.3624249, 48.8919172 2.3436860, 48.8917691 2.3440528, 48.8423698 2.3854379, 48.8469303 2.3075499, 48.8475588 2.3088840, 48.8486504 2.3085581, 48.8448872 2.3142661, 48.8446342 2.3148283, 48.8488629 2.3113707, 48.8752295 2.2843527, 48.8531440 2.3776869, 48.8595596 2.2753644, 48.8595734 2.2750496, 48.8616150 2.2754832, 48.8659680 2.2795955, 48.8672885 2.2809372, 48.8680280 2.2809252, 48.8683971 2.2825564, 48.8473600 2.3864659, 48.8698073 2.3749191, 48.8698594 2.3755160, 48.8624876 2.3424711, 48.8650939 2.3440997, 48.8652964 2.3432812, 48.8659653 2.3433342, 48.8683868 2.3418763, 48.8671550 2.3566053, 48.8751636 2.4061686, 48.8904492 2.3770876, 48.8384989 2.2572066, 48.8396082 2.2579126, 48.8398593 2.2580096, 48.8651590 2.3511287, 48.8751432 2.3825052, 48.8750868 2.3823845, 48.8425813 2.3448154, 48.8940561 2.3541965, 48.8917696 2.3461211, 48.8918716 2.3465917, 48.8751867 2.4062512, 48.8968424 2.3818049, 48.8499326 2.3631550, 48.8688265 2.2482135, 48.8462126 2.4118560, 48.8437424 2.2986106, 48.8455688 2.3253845, 48.8459243 2.3259674, 48.8460036 2.3258028, 48.8464844 2.3265135, 48.8917516 2.3438452, 48.8911967 2.3437988, 48.8933614 2.3614463, 48.8861681 2.3474404, 48.8462352 2.3927786, 48.8935766 2.3294235, 48.8878878 2.3544913, 48.8880271 2.3560550, 48.8812030 2.3284499, 48.8742437 2.3321727, 48.8942439 2.3352879, 48.8988973 2.3399388, 48.8997428 2.3522502, 48.8921164 2.3345008, 48.8911613 2.3319378, 48.8921939 2.3316488, 48.8856755 2.3448166, 48.8930350 2.3633966, 48.8900140 2.3602197, 48.8762979 2.3397799, 48.8766916 2.3405068, 48.8933200 2.3491176, 48.8246903 2.3553751, 48.8377773 2.3494970, 48.8895988 2.3163725, 48.8825981 2.3645629, 48.8928809 2.3504734, 48.8920706 2.3346881, 48.8933750 2.3385392, 48.8413779 2.3118977, 48.8433854 2.3736074, 48.8510517 2.3092163, 48.8518484 2.3096816, 48.8369959 2.3933620, 48.8545431 2.2743043, 48.8589523 2.2771588, 48.8599813 2.3497684, 48.8968971 2.3856504, 48.8278579 2.3057957, 48.8302062 2.3335779, 48.8254006 2.3802275, 48.8984327 2.3695091, 48.8394454 2.3963015, 48.8605989 2.3512022, 48.8983279 2.3618983, 48.8983261 2.3617173, 48.8983518 2.3649038, 48.8982617 2.3563907, 48.8750935 2.3351732, 48.8436342 2.3043290, 48.8431682 2.3046133, 48.8918524 2.3632899, 48.8919900 2.3631317, 48.8756176 2.3432285, 48.8760560 2.3438036, 48.8762724 2.3440214, 48.8429539 2.4085434, 48.8443890 2.4068429, 48.8418110 2.4082929, 48.8257982 2.3468029, 48.8266018 2.3354681, 48.8272551 2.3352458, 48.8330622 2.3958487, 48.8336114 2.3861569, 48.8337322 2.3983467, 48.8337623 2.3951877, 48.8342999 2.3975412, 48.8343797 2.3963938, 48.8345191 2.3966361, 48.8348254 2.3934365, 48.8348947 2.3972942, 48.8349022 2.3933477, 48.8349654 2.3960429, 48.8358704 2.3961786, 48.8359891 2.3974455, 48.8360813 2.3872238, 48.8361353 2.3948924, 48.8361988 2.3988969, 48.8364221 2.3949270, 48.8364309 2.3988951, 48.8365523 2.3982569, 48.8366252 2.3929585, 48.8366508 2.3952223, 48.8366989 2.3943677, 48.8369456 2.4019945, 48.8370471 2.3917506, 48.8375850 2.3971765, 48.8376090 2.3907850, 48.8380876 2.3941069, 48.8382060 2.3900510, 48.8382377 2.3966077, 48.8384334 2.3930799, 48.8392532 2.4005400, 48.8393971 2.4089227, 48.8394590 2.3963160, 48.8398776 2.4385198, 48.8401062 2.4087456, 48.8403121 2.4025153, 48.8403240 2.3922740, 48.8404000 2.3925410, 48.8405290 2.3878980, 48.8406298 2.4087338, 48.8408716 2.4093998, 48.8408973 2.4043894, 48.8411011 2.3894090, 48.8411636 2.4011997, 48.8412990 2.3878120, 48.8414464 2.4049212, 48.8415076 2.4114849, 48.8415328 2.3867030, 48.8416660 2.4012796, 48.8419094 2.4012356, 48.8421054 2.4051399, 48.8422686 2.4130852, 48.8427012 2.4099683, 48.8430070 2.4049900, 48.8432746 2.4053848, 48.8435321 2.4018263, 48.8435985 2.3849459, 48.8438772 2.4055537, 48.8438822 2.4018602, 48.8441184 2.4107116, 48.8445290 2.4022130, 48.8445690 2.3838350, 48.8447684 2.4039094, 48.8450108 2.3819449, 48.8449722 2.4058543, 48.8451489 2.3992116, 48.8456490 2.4058577, 48.8458140 2.3781933, 48.8460195 2.4011318, 48.8464795 2.3973596, 48.8468250 2.3761200, 48.8469175 2.3998635, 48.8470370 2.3752130, 48.8473365 2.3968804, 48.8475637 2.3772093, 48.8476803 2.3969131, 48.8478107 2.3769587, 48.8486250 2.3761890, 48.8486464 2.3760764, 48.8486500 2.3759526, 48.8486995 2.3922091, 48.8488565 2.3718825, 48.8491107 2.3914645, 48.8491891 2.3706453, 48.8492039 2.3749537, 48.8493182 2.3945344, 48.8494100 2.3666950, 48.8495420 2.3885630, 48.8496199 2.3992270, 48.8496430 2.3879630, 48.8497090 2.3874500, 48.8499140 2.3738580, 48.8500548 2.3704157, 48.8501440 2.3736032, 48.8501956 2.3990356, 48.8507639 2.3673484, 48.8517110 2.3618880, 48.8517771 2.3894115, 48.8518450 2.3616490, 48.8521525 2.3608127, 48.8522346 2.3609020, 48.8526930 2.3593190, 48.8527195 2.3598976, 48.8527480 2.3589640, 48.8531388 2.3585705, 48.8532690 2.3582420, 48.8535826 2.3671894, 48.8536386 2.3574595, 48.8536840 2.3653980, 48.8540083 2.3867106, 48.8542800 2.3558000, 48.8543900 2.3585670, 48.8546430 2.3624970, 48.8551500 2.3611171, 48.8551661 2.3610199, 48.8553710 2.3839922, 48.8554533 2.3526702, 48.8555080 2.3530370, 48.8557740 2.3511230, 48.8557940 2.3561690, 48.8559788 2.3536549, 48.8576042 2.3453235, 48.8576673 2.3795437, 48.8578611 2.3794239, 48.8580233 2.3793056, 48.8588686 2.3399492, 48.8593222 2.3528610, 48.8597358 2.3468419, 48.8618647 2.3406148, 48.8659038 2.3352738, 48.8664823 2.3650887, 48.8680548 2.3339763, 48.8682365 2.3599800, 48.8683243 2.3611065, 48.8693195 2.3570045, 48.8692824 2.3567025, 48.8701819 2.3507724, 48.8703411 2.3499916, 48.8703632 2.3498715, 48.8704864 2.3493477, 48.8705032 2.3492529, 48.8716194 2.3500035, 48.8721225 2.3499157, 48.8721226 2.3502025, 48.8722370 2.3500383, 48.8737185 2.3504412, 48.8741816 2.3506318, 48.8747445 2.3507850, 48.8752900 2.3395820, 48.8758873 2.3483293, 48.8779921 2.3512114, 48.8784568 2.3428425, 48.8787058 2.3506082, 48.8792051 2.3494881, 48.8792478 2.3478686, 48.8794000 2.3508120, 48.8795410 2.3488399, 48.8798786 2.3436312, 48.8799663 2.3473845, 48.8339632 2.2872487, 48.8359881 2.2902310, 48.8372786 2.2895116, 48.8449733 2.3955604, 48.8452920 2.3209130, 48.8452821 2.3979496, 48.8463896 2.3943133, 48.8471562 2.3938782, 48.8489640 2.3916850, 48.8493880 2.3888810, 48.8496070 2.3873440, 48.8502461 2.3827334, 48.8504940 2.3815430, 48.8505009 2.3846476, 48.8513150 2.3816100, 48.8518018 2.3280805, 48.8525120 2.3807800, 48.8533500 2.3805110, 48.8537880 2.3957560, 48.8541520 2.3797770, 48.8561260 2.3783390, 48.8576484 2.3771545, 48.8584759 2.3764078, 48.8603270 2.3754070, 48.8618492 2.3647130, 48.8621758 2.3636326, 48.8622764 2.3665452, 48.8633235 2.3689417, 48.8645757 2.3597362, 48.8671223 2.3513757, 48.8700760 2.3506120, 48.8736310 2.3479604, 48.8755325 2.3482416, 48.8758100 2.3397850, 48.8760265 2.3400514, 48.8760800 2.3403660, 48.8768678 2.3487512, 48.8389060 2.3767670, 48.8390010 2.3874480, 48.8396552 2.3779295, 48.8543680 2.3547701, 48.8239017 2.3229235, 48.8242472 2.3213940, 48.8245758 2.3199505, 48.8255285 2.3158189, 48.8256468 2.3482018, 48.8258238 2.3144135, 48.8260929 2.3588377, 48.8261054 2.3131480, 48.8275286 2.3318231, 48.8290970 2.2993460, 48.8296899 2.2967192, 48.8300150 2.2961350, 48.8325027 2.2889045, 48.8366313 2.2763322, 48.8431275 2.2603574, 48.8451702 2.3983100, 48.8475546 2.3889290, 48.8478588 2.3908091, 48.8482240 2.3808030, 48.8482720 2.3787290, 48.8490260 2.3810470, 48.8492020 2.3781220, 48.8498208 2.3768806, 48.8499970 2.3791060, 48.8520364 2.3739698, 48.8540329 2.3736919, 48.8545885 2.3714719, 48.8546118 2.3729736, 48.8546280 2.3710930, 48.8550337 2.3704743, 48.8574091 2.3612872, 48.8577110 2.3608910, 48.8618100 2.3539090, 48.8627772 2.3535227, 48.8646021 2.3531390, 48.8700440 2.3507020, 48.8726232 2.2763923, 48.8737450 2.3479740, 48.8738400 2.3446450, 48.8761660 2.3441530, 48.8791390 2.3535520, 48.8798180 2.3528100, 48.8820870 2.3509300, 48.8861322 2.3494762, 48.8866800 2.3495020, 48.8876420 2.3494764, 48.8878870 2.3494964, 48.8906598 2.3495186, 48.8909454 2.3495172, 48.8988341 2.3238069, 48.8715019 2.4045081, 48.8762240 2.4062991, 48.8763811 2.4061703, 48.8769447 2.4050363, 48.8776734 2.4065084, 48.8779210 2.4059297, 48.8781032 2.4108393, 48.8782650 2.4058287, 48.8657823 2.3994721, 48.8572967 2.3515291, 48.8522308 2.3678097, 48.8242892 2.3764902, 48.8243395 2.3766423, 48.8259590 2.3538780, 48.8333535 2.3991671, 48.8378748 2.3573539, 48.8367172 2.3580385, 48.8370906 2.3578084, 48.8469222 2.3993098, 48.8490463 2.3989425, 48.8563665 2.3939744, 48.8572552 2.3854799, 48.8572776 2.3855905, 48.8576754 2.3919847, 48.8594350 2.3870127, 48.8722210 2.3643307, 48.8261039 2.3582769, 48.8468249 2.4104107, 48.8468448 2.4101919, 48.8468528 2.4101033, 48.8471654 2.4071583, 48.8472069 2.4066764, 48.8513516 2.4062448, 48.8517143 2.4071448, 48.8664981 2.3243419, 48.8941417 2.3326946, 48.8715688 2.4022351, 48.8949489 2.3601209, 48.8911550 2.3633069, 48.8394801 2.3713759, 48.8391251 2.3715959, 48.8378949 2.3555704, 48.8240305 2.3234209, 48.8275253 2.3261423, 48.8295090 2.3482501, 48.8296744 2.3329116, 48.8296889 2.3480032, 48.8300287 2.3471023, 48.8306286 2.3439710, 48.8307741 2.3363033, 48.8308821 2.3552981, 48.8309560 2.3563203, 48.8313659 2.3419868, 48.8314521 2.3413377, 48.8337067 2.3652426, 48.8343505 2.3671081, 48.8349875 2.3690185, 48.8369558 2.3731388, 48.8372547 2.3741922, 48.8389808 2.3876834, 48.8400503 2.3966865, 48.8405435 2.3976638, 48.8419125 2.3931180, 48.8425378 2.3971712, 48.8431422 2.3868843, 48.8438225 2.3907961, 48.8438274 2.3883763, 48.8441353 2.3903995, 48.8448504 2.3956453, 48.8449655 2.3825373, 48.8450610 2.3817030, 48.8455335 2.4059659, 48.8457371 2.3744755, 48.8458882 2.3745674, 48.8460421 2.3746885, 48.8461407 2.3758102, 48.8461570 2.3756299, 48.8462020 2.3762720, 48.8463517 2.4060121, 48.8463588 2.3819651, 48.8469945 2.3695400, 48.8469983 2.3840650, 48.8470022 2.3692654, 48.8493154 2.3681094, 48.8494375 2.3698324, 48.8497678 2.3690872, 48.8499439 2.3739778, 48.8502341 2.3736347, 48.8502976 2.3687576, 48.8538513 2.4054931, 48.8636158 2.3993948, 48.8639863 2.3992574, 48.8652421 2.3951007, 48.8655085 2.3946733, 48.8677329 2.3907031, 48.8684805 2.3898741, 48.8688786 2.3895491, 48.8702670 2.3890490, 48.8704853 2.3883060, 48.8714250 2.3861474, 48.8717558 2.3890342, 48.8994665 2.3362669, 48.9005443 2.3357066, 48.8320164 2.4039323, 48.8320207 2.4038132, 48.8341445 2.4013757, 48.8351942 2.4016328, 48.8372220 2.4037368, 48.8314328 2.3873778, 48.8317821 2.3857254, 48.8320640 2.3883288, 48.8350055 2.3874833, 48.8358666 2.3847168, 48.8373190 2.3826641, 48.8374528 2.3917533, 48.8380369 2.3818677, 48.8387612 2.3810831, 48.8388667 2.3937811, 48.8389421 2.3806421, 48.8394110 2.3802556, 48.8573040 2.3514977, 48.8614181 2.3533893, 48.8616790 2.3513642, 48.8617384 2.3511100, 48.8617679 2.3509583, 48.8619491 2.3505495, 48.8620204 2.3499051, 48.8620520 2.3497369, 48.8638474 2.3430292, 48.8643157 2.3474095, 48.8648065 2.3458024, 48.8810201 2.3499806, 48.8472316 2.4033307, 48.8474060 2.3985801, 48.8475134 2.3982539, 48.8476893 2.3944332, 48.8480152 2.3982806, 48.8523912 2.3718273, 48.8678628 2.3622500, 48.8682145 2.3624441, 48.8753496 2.3569996, 48.8757151 2.3564916, 48.8759340 2.3562965, 48.8763508 2.3558909, 48.8769505 2.3553665, 48.8776793 2.3547127, 48.8779306 2.3546949, 48.8779709 2.3544608, 48.8789523 2.3541157, 48.8798131 2.3564484, 48.8287082 2.3506786, 48.8296935 2.3756700, 48.8297238 2.3756448, 48.8302476 2.3763292, 48.8302804 2.3763891, 48.8303177 2.3764541, 48.8554738 2.3844934, 48.8558003 2.3750398, 48.8563070 2.3766560, 48.8563443 2.3735148, 48.8563892 2.3736140, 48.8573040 2.3791655, 48.8575988 2.3723727, 48.8580871 2.3720646, 48.8599833 2.3751511, 48.8606643 2.3672378, 48.8612261 2.3646636, 48.8612423 2.3694822, 48.8615175 2.3633665, 48.8620657 2.3606971, 48.8625682 2.3596478, 48.8658847 2.3446913, 48.8659713 2.3446586, 48.8669646 2.3445039, 48.8486198 2.2907379, 48.8241171 2.3356096, 48.8251709 2.3747800, 48.8262146 2.3732825, 48.8265738 2.3354498, 48.8270035 2.3668285, 48.8275378 2.3738779, 48.8276171 2.3715500, 48.8279608 2.3733287, 48.8280357 2.3734257, 48.8303701 2.3343029, 48.8324259 2.3797103, 48.8328426 2.3359068, 48.8348268 2.3999659, 48.8363410 2.4027533, 48.8363547 2.4029753, 48.8367250 2.4043293, 48.8367567 2.3928042, 48.8375039 2.3386695, 48.8380611 2.4053828, 48.8381721 2.4055291, 48.8420689 2.3415277, 48.8298782 2.3572786, 48.8517163 2.4061866, 48.8523080 2.4042254, 48.8534161 2.4030439, 48.8310093 2.3571815, 48.8268348 2.3665087, 48.8272788 2.3567770, 48.8282237 2.3563309, 48.8285149 2.3563221, 48.8291592 2.3654668, 48.8296502 2.3647788, 48.8268291 2.3641616, 48.8522322 2.3898977, 48.8524976 2.3895606, 48.8539546 2.3825521, 48.8544392 2.3816128, 48.8569327 2.3799755, 48.8585657 2.3781777, 48.8633818 2.3710966, 48.8671029 2.3655043, 48.8683370 2.3634922, 48.8699682 2.3607540, 48.8706171 2.3596295, 48.8708012 2.3598095, 48.8712575 2.3602178, 48.8713074 2.3601361, 48.8718731 2.3599327, 48.8724770 2.3594063, 48.8730997 2.3588306, 48.8734420 2.3585204, 48.8742775 2.3577777, 48.8785606 2.3557407, 48.8481543 2.3934076, 48.8542868 2.3877696, 48.8569986 2.3852716, 48.8575346 2.3847601, 48.8580303 2.3809765, 48.8581695 2.3807581, 48.8583918 2.3804386, 48.8608624 2.3805635, 48.8611746 2.3809999, 48.8452169 2.4120881, 48.8461924 2.4121067, 48.8466376 2.4114577, 48.8473580 2.4106924, 48.8473835 2.4103563, 48.8524722 2.4106454, 48.8526979 2.4111873, 48.8557704 2.4107086, 48.8574629 2.4101809, 48.8581256 2.4099841, 48.8587706 2.4100076, 48.8592004 2.4098008, 48.8608587 2.4094863, 48.8649243 2.4085167, 48.8651848 2.4086243, 48.8669825 2.4087455, 48.8681301 2.4072046, 48.8708179 2.4047157, 48.8748416 2.4030830, 48.8800875 2.3982376, 48.8801636 2.3979290, 48.8822748 2.3961932, 48.8897519 2.3898235, 48.8897859 2.3901176, 48.8900562 2.3906182, 48.8908981 2.3898028, 48.8924246 2.3879304, 48.8928662 2.3878039, 48.8931913 2.3928220, 48.8332843 2.3172595, 48.8257570 2.3480755, 48.8257663 2.3482098, 48.8276817 2.3715635, 48.8277542 2.3314326, 48.8277569 2.3294975, 48.8325094 2.3123346, 48.8338839 2.3082929, 48.8340082 2.3078231, 48.8347282 2.3054035, 48.8361022 2.3004952, 48.8362679 2.2934700, 48.8376932 2.4037117, 48.8397308 2.3978085, 48.8420906 2.3894385, 48.8425267 2.3896625, 48.8445646 2.3180923, 48.8470920 2.3268174, 48.8521103 2.3659956, 48.8555817 2.3636375, 48.8592929 2.3562507, 48.8596838 2.3565776, 48.8618200 2.3569043, 48.8746673 2.3308647, 48.8735099 2.3310689, 48.8323649 2.4042508, 48.8319766 2.3145168, 48.8325060 2.3158066, 48.8334834 2.3173462, 48.8338586 2.3183718, 48.8340668 2.3182365, 48.8341266 2.3177915, 48.8347650 2.3425150, 48.8349068 2.3452703, 48.8350373 2.3453379, 48.8350577 2.3457523, 48.8350801 2.3462140, 48.8361574 2.3222159, 48.8383431 2.2893686, 48.8389031 2.3587665, 48.8392803 2.3599626, 48.8394354 2.3604664, 48.8442862 2.2943443, 48.8444182 2.2937030, 48.8469994 2.2956834, 48.8472148 2.3034083, 48.8527070 2.3336447, 48.8228812 2.3586455, 48.8250947 2.3203976, 48.8266929 2.3240664, 48.8276258 2.3263944, 48.8366568 2.3904615, 48.8377732 2.2978996, 48.8390555 2.3541961, 48.8391729 2.3879459, 48.8393615 2.3547196, 48.8394955 2.3009500, 48.8395273 2.3563297, 48.8403152 2.3627036, 48.8403428 2.3600459, 48.8403121 2.3615285, 48.8421501 2.3099414, 48.8431512 2.3481982, 48.8442099 2.3456920, 48.8451757 2.3455730, 48.8457102 2.3460054, 48.8488355 2.3252187, 48.8506988 2.3354533, 48.8254520 2.3540117, 48.8320288 2.2933775, 48.8330901 2.2875209, 48.8338287 2.2951996, 48.8352845 2.3006101, 48.8353138 2.3004808, 48.8355333 2.3008990, 48.8375177 2.3108660, 48.8377213 2.3092594, 48.8381274 2.3040720, 48.8383431 2.3045795, 48.8384042 2.3046605, 48.8386443 2.3051222, 48.8396738 2.3028038, 48.8403607 2.4028757, 48.8406684 2.3153202, 48.8409914 2.3133930, 48.8414293 2.3136925, 48.8419801 2.3147584, 48.8471459 2.3017502, 48.8529188 2.3087416, 48.8560088 2.3152292, 48.8584188 2.3146004, 48.8664898 2.3645091, 48.8669961 2.3635905, 48.8670152 2.3630804, 48.8670361 2.3631640, 48.8674351 2.3629732, 48.8679849 2.3651178, 48.8686416 2.3633147, 48.8686663 2.3632144, 48.8488706 2.4054308, 48.8489816 2.4056570, 48.8494687 2.4051936, 48.8600707 2.3247081, 48.8297510 2.3778979, 48.8250371 2.3884441, 48.8274964 2.3762942, 48.8295399 2.3793050, 48.8312902 2.3804965, 48.8535184 2.3767685, 48.8567309 2.3731009, 48.8567919 2.3727131, 48.8596630 2.4036667, 48.8597113 2.4032404, 48.8672556 2.3729520, 48.8678310 2.3962785, 48.8712975 2.3932942, 48.8736717 2.3893707, 48.8752326 2.3699504, 48.8785201 2.3757987, 48.8785987 2.3756111, 48.8839930 2.3680663, 48.8841702 2.3653361, 48.8809813 2.3738144, 48.8813033 2.3729918, 48.8330219 2.3641260, 48.8337653 2.3094048, 48.8342723 2.3283804, 48.8354533 2.3258265, 48.8357486 2.3110952, 48.8366678 2.3127785, 48.8368862 2.3126418, 48.8408789 2.3214931, 48.8475924 2.3949477, 48.8480651 2.3944560, 48.8484606 2.3943801, 48.8489226 2.3946004, 48.8530598 2.3535567, 48.8552774 2.3345202, 48.8555651 2.3608523, 48.8570886 2.3297266, 48.8585185 2.3298224, 48.8586963 2.3287531, 48.8761034 2.3355444, 48.8762920 2.3325923, 48.8217293 2.3329753, 48.8342289 2.3218797, 48.8343205 2.2844154, 48.8348748 2.2829273, 48.8355558 2.2807022, 48.8360155 2.2791843, 48.8366129 2.3508583, 48.8372702 2.3535459, 48.8379882 2.3433930, 48.8382061 2.3565243, 48.8385318 2.3366177, 48.8396083 2.3376405, 48.8411746 2.3066119, 48.8412714 2.3397958, 48.8414201 2.3390745, 48.8452811 2.3694044, 48.8246139 2.3297884, 48.8248448 2.3309724, 48.8248677 2.3167742, 48.8249619 2.3287697, 48.8249980 2.3313844, 48.8257400 2.3120275, 48.8259545 2.3126700, 48.8260495 2.3309436, 48.8285948 2.3330627, 48.8290174 2.3328655, 48.8326036 2.3623992, 48.8334174 2.3642162, 48.8359245 2.3856627, 48.8401447 2.3704675, 48.8403742 2.3701490, 48.8409627 2.3362290, 48.8415305 2.3538584, 48.8419422 2.3357262, 48.8430208 2.3525662, 48.8432035 2.3315463, 48.8441253 2.3305131, 48.8452074 2.3522138, 48.8467725 2.3266058, 48.8484788 2.3326047, 48.8493788 2.3389951, 48.8500333 2.3399942, 48.8445302 2.3291617, 48.8496464 2.3378520, 48.8462036 2.2991334, 48.8466880 2.3668924, 48.8504922 2.3892597, 48.8506002 2.3865799, 48.8508572 2.3411144, 48.8515666 2.3400541, 48.8517508 2.3398717, 48.8521001 2.3863956, 48.8528464 2.3842636, 48.8529129 2.3851769, 48.8532221 2.3833883, 48.8545205 2.3824395, 48.8560866 2.3825736, 48.8610854 2.3101169, 48.8742389 2.3553630, 48.8744853 2.3555219, 48.8767135 2.3539984, 48.8767602 2.3536655, 48.8773020 2.3497131, 48.8780538 2.3450154, 48.8222079 2.3512623, 48.8221465 2.3506206, 48.8403122 2.2839206, 48.8421802 2.2856456, 48.8446133 2.2871390, 48.8459908 2.2882261, 48.8465650 2.3875568, 48.8481839 2.2902622, 48.8868930 2.3555588, 48.8332913 2.3012392, 48.8319028 2.3045724, 48.8763704 2.3313223, 48.8813097 2.3805063, 48.8407025 2.2998297, 48.8408105 2.3005583, 48.8428691 2.2953585, 48.8691839 2.3358994, 48.8419850 2.2935384, 48.8420971 2.3007593, 48.8432807 2.3001298, 48.8435688 2.2937775, 48.8452755 2.2974744, 48.8469016 2.2922005, 48.8469813 2.2932207, 48.8470332 2.2925959, 48.8471729 2.2924922, 48.8481405 2.2934613, 48.8488766 2.3550116, 48.8489122 2.3193174, 48.8489272 2.3523931, 48.8491216 2.3136783, 48.8491775 2.3141515, 48.8492908 2.3146445, 48.8493554 2.3527922, 48.8499990 2.3166689, 48.8508919 2.2958074, 48.8511850 2.2966292, 48.8454208 2.2917026, 48.8473674 2.2962615, 48.8475073 2.2831429, 48.8477824 2.2824011, 48.8351811 2.4063529, 48.8389376 2.2789040, 48.8416959 2.2795090, 48.8450469 2.2801242, 48.8454304 2.2845227, 48.8459998 2.2813073, 48.8462807 2.2851535, 48.8894150 2.3628554, 48.8850120 2.3563702, 48.8762217 2.3586964, 48.8433449 2.3251164, 48.8550540 2.3941000, 48.8560955 2.3926896, 48.8578050 2.3996283, 48.8582358 2.3823367, 48.8586186 2.3835107, 48.8592411 2.3830225, 48.8601008 2.3822123, 48.8626812 2.3797075, 48.8630453 2.3672473, 48.8635008 2.3671098, 48.8634092 2.3790356, 48.8644595 2.3839203, 48.8648530 2.3666639, 48.8657480 2.3705095, 48.8680948 2.3655417, 48.8682070 2.3654610, 48.8687325 2.3631261, 48.8740998 2.3453668, 48.8903381 2.3486643, 48.8905361 2.3482493, 48.8481499 2.3941327, 48.8277079 2.3495286, 48.8314922 2.3442625, 48.8320979 2.3443846, 48.8367757 2.3452596, 48.8548426 2.3031870, 48.8548827 2.3032421, 48.8567726 2.3001849, 48.8568344 2.3001716, 48.8569127 2.2999765, 48.8577877 2.3006194, 48.8596013 2.3072329, 48.8600760 2.3280535, 48.8612403 2.3243984, 48.8615577 2.3576761, 48.8617439 2.2982592, 48.8626940 2.3099487, 48.8627569 2.3393126, 48.8629258 2.3030795, 48.8629949 2.3080187, 48.8630650 2.3165032, 48.8635613 2.3394544, 48.8265121 2.3465625, 48.8321818 2.3392750, 48.8508705 2.3623119, 48.8512015 2.3822530, 48.8514794 2.3101353, 48.8540997 2.3239460, 48.8541902 2.3194979, 48.8550561 2.3402771, 48.8600928 2.3731117, 48.8535790 2.3638481, 48.8571030 2.3539440, 48.8571580 2.2667766, 48.8573414 2.3540716, 48.8574462 2.3575428, 48.8584854 2.2792832, 48.8597267 2.2821320, 48.8630086 2.3362399, 48.8631579 2.3415886, 48.8632373 2.3412593, 48.8653506 2.3423662, 48.8670831 2.3356438, 48.8682396 2.2933172, 48.8697732 2.2938530, 48.8744871 2.3117910, 48.8747123 2.3133715, 48.8747243 2.3027090, 48.8759626 2.2965087, 48.8308265 2.3530126, 48.8359247 2.2814968, 48.8381961 2.2812162, 48.8466206 2.4134552, 48.8530692 2.4125589, 48.8569190 2.4110486, 48.8647596 2.4089845, 48.8671280 2.4091658, 48.8673068 2.4087318, 48.8678522 2.4092408, 48.8718692 2.4084946, 48.8729156 2.4089018, 48.8730227 2.4088436, 48.8774817 2.4062578, 48.8799062 2.4010873, 48.8808314 2.4005187, 48.8827476 2.3997867, 48.8837604 2.3973570, 48.8853759 2.3967693, 48.8891501 2.3919739, 48.8921011 2.3883839, 48.8939074 2.3869648, 48.8950741 2.3853043, 48.8965893 2.3846935, 48.8974790 2.3852300, 48.8355408 2.3093378, 48.8413240 2.2886217, 48.8592270 2.3236594, 48.8624657 2.3115669, 48.8779515 2.3440896, 48.8380661 2.2876899, 48.8454913 2.3116790, 48.8455110 2.3111536, 48.8669202 2.3834926, 48.8689269 2.3715327, 48.8759321 2.3727655, 48.8984073 2.3709403, 48.8526033 2.3136415, 48.8357816 2.3023056, 48.8363872 2.3030756, 48.8365194 2.3011778, 48.8368720 2.3025022, 48.8369553 2.3024373, 48.8370310 2.3025696, 48.8388883 2.3004061, 48.8489669 2.2876751, 48.8689288 2.3715403, 48.8402950 2.3002166, 48.8404916 2.2780605, 48.8424961 2.3064436, 48.8433477 2.2798969, 48.8440160 2.3238242, 48.8471428 2.2860305, 48.8474003 2.2951465, 48.8480350 2.2869182, 48.8490968 2.2877519, 48.8249781 2.3039567, 48.8257243 2.3052770, 48.8265928 2.3048244, 48.8213106 2.3411460, 48.8239590 2.3308277, 48.8239711 2.3514442, 48.8239998 2.3510117, 48.8241733 2.3533935, 48.8244865 2.3278048, 48.8245804 2.3396886, 48.8246044 2.3382584, 48.8248799 2.3536513, 48.8256032 2.3217938, 48.8260622 2.3105582, 48.8266135 2.3534752, 48.8269262 2.3513163, 48.8281250 2.3216386, 48.8281819 2.3155262, 48.8289185 2.3222763, 48.8296026 2.3178273, 48.8322116 2.2883420, 48.8324706 2.3133021, 48.8329583 2.2774040, 48.8330016 2.2770756, 48.8330898 2.2768283, 48.8331174 2.2765291, 48.8333400 2.3145004, 48.8337885 2.3608913, 48.8356331 2.4060202, 48.8360628 2.4058718, 48.8367584 2.3566102, 48.8368296 2.3568351, 48.8459364 2.3679712, 48.8488033 2.3687487, 48.8384611 2.3605477, 48.8671353 2.3480000, 48.8938413 2.3472931, 48.8942404 2.3460471, 48.8942255 2.3458385, 48.8466055 2.3466048, 48.8934234 2.3381216, 48.8929811 2.3381482, 48.8839216 2.3271785, 48.8839775 2.3271608, 48.8839670 2.3273081, 48.8841275 2.3270884, 48.8845343 2.3268965, 48.8846683 2.3268418, 48.8855156 2.3264429, 48.8862771 2.3262148, 48.8861526 2.3261584, 48.8865223 2.3259623, 48.8869014 2.3259253, 48.8871792 2.3257982, 48.8875030 2.3256728, 48.8874194 2.3255802, 48.8189427 2.3623110, 48.8193375 2.3442401, 48.8193930 2.3452226, 48.8200280 2.3394747, 48.8202391 2.3395613, 48.8205079 2.3556087, 48.8205508 2.3372668, 48.8205989 2.3495983, 48.8211121 2.3347051, 48.8215967 2.3323735, 48.8292229 2.3255814, 48.8292882 2.2971394, 48.8313803 2.3349575, 48.8316633 2.3221401, 48.8325886 2.3203616, 48.8357379 2.3250590, 48.8369802 2.2739149, 48.8386159 2.3222156, 48.8344865 2.4691570, 48.8357568 2.3008708, 48.8360131 2.3100586, 48.8369650 2.3090961, 48.8375624 2.3080571, 48.8385808 2.3067130, 48.8395895 2.3092578, 48.8714897 2.3427273, 48.8205058 2.3593321, 48.8505602 2.3001391, 48.8427552 2.2924068, 48.8434280 2.2929776, 48.8518541 2.2999378, 48.8526008 2.2998174, 48.8526618 2.2999032, 48.8560465 2.2944608, 48.8561074 2.2945466, 48.8566822 2.2923833, 48.8568355 2.2938443, 48.8582848 2.3558481, 48.8595125 2.3524319, 48.8608732 2.2962429, 48.8610323 2.2965408, 48.8613476 2.2971959, 48.8630993 2.3180109, 48.8348722 2.4086899, 48.8358883 2.4089442, 48.8360619 2.4087881, 48.8425612 2.3139626, 48.8475557 2.4085227, 48.8415102 2.4131166, 48.8416826 2.4130896, 48.8319771 2.3979134, 48.8323454 2.3551969, 48.8974525 2.3959552, 48.8678050 2.3496900, 48.8681841 2.3484645, 48.8682787 2.3487909, 48.8685115 2.3495915, 48.8690548 2.3514051, 48.8293741 2.3599170, 48.8312247 2.3581349, 48.8225167 2.3571540, 48.8897765 2.3719886, 48.8437894 2.2772811, 48.8441585 2.2771994, 48.8485264 2.2810711, 48.8487304 2.2813632, 48.8489564 2.2816880, 48.8512111 2.3987159, 48.8512690 2.4044346, 48.8514506 2.4058799, 48.8514709 2.3995095, 48.8515803 2.4001141, 48.8543196 2.3962849, 48.8568402 2.4046511, 48.8580682 2.3877975, 48.8600706 2.3886064, 48.8604792 2.4008059, 48.8611195 2.3880530, 48.8631905 2.3883955, 48.8650677 2.3956244, 48.8651291 2.3943708, 48.8654133 2.3895489, 48.8660045 2.3873365, 48.8662887 2.3905433, 48.8682334 2.3864308, 48.8686568 2.3866090, 48.8690384 2.3861855, 48.8704416 2.3841005, 48.8704583 2.3841770, 48.8726164 2.3842276, 48.8734281 2.3825503, 48.8735409 2.3833038, 48.8274881 2.3770197, 48.8883372 2.3743635, 48.8966561 2.3798725, 48.8301525 2.3594415, 48.8465069 2.4099879, 48.8757435 2.3262717, 48.8836814 2.3499178, 48.8201088 2.3481923, 48.8201319 2.3478823, 48.8202012 2.3481361, 48.8205445 2.3494030, 48.8233285 2.3741842, 48.8217463 2.3258742, 48.8219887 2.3306289, 48.8349501 2.4072247, 48.8351659 2.4069054, 48.8708394 2.3465254, 48.8736212 2.2769315, 48.8816472 2.3154087, 48.8824542 2.2862966, 48.8837737 2.2909262, 48.8843309 2.2884576, 48.8853037 2.2956381, 48.8892808 2.2928055, 48.8346342 2.3606245, 48.8550678 2.3246859, 48.8843190 2.3697260, 48.8849215 2.3709154, 48.8871420 2.3755550, 48.8488878 2.4063145, 48.8826421 2.3444926, 48.8618141 2.3222918, 48.8649047 2.3105605, 48.8649598 2.3105563, 48.8707207 2.3458677, 48.8710108 2.3455226, 48.8748858 2.3191940, 48.8814710 2.3009002, 48.8836868 2.2986830, 48.8845223 2.3081683, 48.8848975 2.3067652, 48.8871423 2.3009349, 48.8873797 2.3010160, 48.8688331 2.3251265, 48.8871184 2.2983257, 48.8887957 2.2976069, 48.8833935 2.3195861, 48.8845689 2.3194756, 48.8847283 2.3200247, 48.8848321 2.3192257, 48.8854073 2.2987197, 48.8862629 2.3178705, 48.8862908 2.3178312, 48.8874366 2.3136254, 48.8418848 2.2853423, 48.8507831 2.3944957, 48.8518835 2.3934531, 48.8520017 2.3935558, 48.8523499 2.3931181, 48.8617792 2.3745107, 48.8622369 2.3739210, 48.8623819 2.3639950, 48.8740920 2.3388296, 48.8754273 2.3247309, 48.8612936 2.3581608, 48.8394875 2.2840062, 48.8397475 2.2846463, 48.8427503 2.2863046, 48.8468131 2.2904315, 48.8500437 2.3954755, 48.8391079 2.3390778, 48.8422773 2.3762540, 48.8391187 2.4008037, 48.8397181 2.4041355, 48.8423773 2.3977129, 48.8432024 2.3913685, 48.8449650 2.3837024, 48.8526582 2.2904698, 48.8577122 2.2791705, 48.8581675 2.2754001, 48.8516727 2.3995074, 48.8317848 2.3580564, 48.8331084 2.3230703, 48.8629913 2.4001471, 48.8332462 2.4027150, 48.8422716 2.3666416, 48.8425115 2.3664241, 48.8425602 2.3663854, 48.8432847 2.3745921, 48.8611021 2.3537247, 48.8459524 2.3314941, 48.8467856 2.2815796, 48.8473038 2.3299657, 48.8822077 2.3636469, 48.8822937 2.3628730, 48.8826834 2.3615248, 48.8842662 2.3384857, 48.8843570 2.3383511, 48.8843580 2.3554674, 48.8855628 2.3868905, 48.8973410 2.3866230, 48.8480167 2.2901082, 48.8654197 2.3615883, 48.8659969 2.3276111, 48.8455361 2.2879377, 48.8511656 2.2918014, 48.8516745 2.2912562, 48.8619109 2.3023193, 48.8706613 2.3081543, 48.8650528 2.3603618, 48.8651208 2.3506212, 48.8476557 2.4073288, 48.8521365 2.4011863, 48.8535107 2.3984631, 48.8543651 2.4004082, 48.8549033 2.3991563, 48.8554579 2.4009305, 48.8898322 2.3630151, 48.8879186 2.3618545, 48.8198018 2.3378923, 48.8196733 2.3393782, 48.8194043 2.3405063, 48.8188325 2.3408390, 48.8184256 2.3419067, 48.8186884 2.3425003, 48.8186360 2.3430082, 48.8189215 2.3438558, 48.8179357 2.3423853, 48.8177750 2.3424496, 48.8176743 2.3436137, 48.8176500 2.3360501, 48.8176561 2.3358653, 48.8203267 2.3373700, 48.8208968 2.3323023, 48.8213376 2.3305144, 48.8216173 2.3310795, 48.8307176 2.3336597, 48.8307282 2.3338267, 48.8585619 2.3617793, 48.8361012 2.3067804, 48.8370117 2.3056189, 48.8371245 2.3054619, 48.8376650 2.3010309, 48.8377402 2.3012212, 48.8377416 2.3017034, 48.8413425 2.3652072, 48.8302778 2.3399791, 48.8322774 2.3210471, 48.8377505 2.2985678, 48.8453367 2.3772879, 48.9000932 2.3358853, 48.8930812 2.3271799, 48.8929996 2.3279230, 48.8934982 2.3273635, 48.8913377 2.3270343, 48.8890318 2.3625198, 48.8385809 2.2760467, 48.8391660 2.2753163, 48.8424520 2.4098573, 48.8424857 2.4095701, 48.8259883 2.3455054, 48.8272205 2.3617938, 48.8273986 2.3619739, 48.8328002 2.4147823, 48.8330462 2.4142455, 48.8292797 2.3113663, 48.8640760 2.3711926, 48.8686215 2.3677037, 48.8865423 2.3744088, 48.8871015 2.3755517, 48.8874259 2.3761952, 48.8879389 2.3772336, 48.8882498 2.3778555, 48.8514698 2.3700116, 48.8872981 2.3760451, 48.8665165 2.3683479, 48.8694157 2.3590847, 48.8682902 2.3596238, 48.8678311 2.3593666, 48.8672074 2.3625921, 48.8667957 2.3616365, 48.8665822 2.3611873, 48.8664154 2.3613483, 48.8683330 2.3613789, 48.8695843 2.3619338, 48.8702528 2.3615935, 48.8690474 2.3626629, 48.8704302 2.3646700, 48.8691323 2.3642484, 48.8692179 2.3644883, 48.8690735 2.3645106, 48.8692386 2.3642586, 48.8697500 2.3660372, 48.8696778 2.3660972, 48.8706124 2.3655057, 48.8694303 2.3634932, 48.8695071 2.3630968, 48.8692731 2.3634968, 48.8702835 2.3620952, 48.8705613 2.3638521, 48.8713642 2.3601890, 48.8705252 2.3633357, 48.8711719 2.3607711, 48.8710414 2.3599919, 48.8728103 2.3592741, 48.8721819 2.3598636, 48.8721578 2.3608292, 48.8730710 2.3614410, 48.8770896 2.3562735, 48.8725656 2.3610975, 48.8740822 2.3581488, 48.8742604 2.3579932, 48.8784331 2.3584349, 48.8758489 2.3565569, 48.8757713 2.3594937, 48.8759182 2.3592349, 48.8777771 2.3618573, 48.8786221 2.3622165, 48.8786839 2.3642852, 48.8787652 2.3620625, 48.8791639 2.3631429, 48.8791832 2.3622961, 48.8793613 2.3629572, 48.8784953 2.3643169, 48.8781974 2.3647593, 48.8327047 2.3707777, 48.8761411 2.3506599, 48.8761885 2.3503881, 48.8762353 2.3501240, 48.8680926 2.3610021, 48.8695011 2.3633940, 48.8746456 2.3609364, 48.8744745 2.3553973, 48.8732099 2.3603812, 48.8779410 2.3615512, 48.8312476 2.3692666, 48.8282070 2.3117648, 48.8709890 2.3479479, 48.8612331 2.3307752, 48.8772530 2.3684287, 48.8555642 2.4099582, 48.8693111 2.4053516, 48.8693458 2.4054393, 48.8700399 2.3997726, 48.8759391 2.3978752, 48.8778074 2.3962431, 48.8783525 2.3970152, 48.8784425 2.4031985, 48.8792691 2.3969644, 48.8795219 2.3994918, 48.8795356 2.3982191, 48.8796083 2.3963611, 48.8802166 2.3988280, 48.8803390 2.3964590, 48.8572951 2.3046553, 48.8576872 2.3057939, 48.8589015 2.3030720, 48.8598304 2.3026176, 48.8602954 2.3025663, 48.8662018 2.3313095, 48.8555997 2.3574881, 48.8557109 2.3601000, 48.8559022 2.3548777, 48.8562284 2.3535332, 48.8567415 2.3537794, 48.8573155 2.3512430, 48.8573892 2.3512851, 48.8252160 2.3417519, 48.8224474 2.3475967, 48.8229613 2.3467212, 48.8219138 2.3504264, 48.8452095 2.3545995, 48.8270974 2.3073235, 48.8284991 2.3004553, 48.8436002 2.3079842, 48.8441466 2.3088151, 48.8269175 2.3384014, 48.8212937 2.3464680, 48.8567779 2.2992342, 48.8570024 2.2995661, 48.8572851 2.2993540, 48.8275500 2.3524043, 48.8275876 2.3526683, 48.8278715 2.3527270, 48.8382373 2.3652401, 48.8388299 2.3633571, 48.8397555 2.3662914, 48.8403120 2.3648539, 48.8353850 2.3628972, 48.8370232 2.3622198, 48.8380447 2.3651672, 48.8395521 2.3656977, 48.8406525 2.3654951, 48.8212773 2.3484096, 48.8212833 2.3478488, 48.8214566 2.3483919, 48.8214582 2.3485034, 48.8214603 2.3486734, 48.8314949 2.3464003, 48.8446576 2.4023708, 48.8446711 2.4022645, 48.8863030 2.3629244, 48.8347963 2.4081651, 48.8263279 2.3477604, 48.8267258 2.3480552, 48.8438274 2.3883763, 48.8451702 2.3983100, 48.8452821 2.3979496, 48.8612713 2.3434005, 48.8618647 2.3406148, 48.8675113 2.3263048, 48.8688331 2.3251265, 48.8743834 2.3157963, 48.8970752 2.3747307, 48.8971135 2.3748889, 48.8522697 2.3672667, 48.8526671 2.3672168, 48.8463203 2.2792657, 48.8471893 2.2793406, 48.8168872 2.3337518, 48.8534314 2.2864512, 48.8471350 2.2790676, 48.8453920 2.3132117, 48.8602828 2.3469501, 48.8771319 2.3510066, 48.8431362 2.3363642, 48.8778732 2.3448763, 48.8372540 2.3630681 +yes ++33 1 44 68 08 16 +1.8891064157971758 +49.4212804 8.6803337, 49.4075160 8.6918700 +yes +yes +8 +1 + +280 +yes +50.0728540 8.2223309, 49.4881299 8.5054980, 50.1427837 8.8829934, 49.4538388 7.5818814, 49.4465012 7.5754817, 49.4499742 7.5668379, 48.6825839 9.0561177 +Musée de l'Armée, Musée de l'Assistance Publique Hôpitaux de Paris and 01.40.27.50.05, Musée des Arts Décoratifs - Musée de la Publicité and 01.44.55.57.50, Musée national des Arts et Métiers and +33 1 53 01 82 00, Tour de Jean-sans-Peur, Musée Gustave Moreau and 01.48.74.38.50, Les Égouts de Paris and 01.53.68.27.81, Musée Pasteur and 01.45.68.82.83, Espace Dali and 01.42.64.40.10, Musée de la Carte à Jouer et Galerie d'Histoire de la Ville, Musée en Herbe and 01.40.67.97.66, Maison Européenne de la Photographie and +33 1 44 78 75 00, Musée de l'Eventail and 01.42.08.90.20, Musée de la Poupée and 01.44.54.04.48, Catacombes de Paris and +33 1 43224763, Musée de l'Érotisme and 01.42.58.28.73, Musée des années 30, Musée du Petit Palais and 01.53.43.40.00, Musée de la Légion d'Honneur et des Ordres de Chevalerie and 01.40.62.84.25, Conciergerie, Musée du Vin and 01.45.25.63.26, Musée de la Poste and +33 1 42 79 24 24, galerie-musée Baccarat and +33 1 40 22 11 00, Salle des collections, Musée du Service de Santé des Armées, Choco-Story - Le musée gourmand du chocolat and 00.33.(0)1.42.29.68.60, Musée-Jardin Paul Landowski, Cité de l'architecture et du patrimoine and 01.58.51.52.00, Musée de la Marine and +33 (0)1 53 65 69 69, +33 (0)1 53 65 69 53, Musée de la franc-maçonnerie and 01.45.23.74.09, Espace des Sciences Pierre-Gilles de Gennes, Deyrolle, Fondation Le Corbusier and 01.42.88.41.53, Musée de la Contrefaçon and +33 1 56 26 14 03, Musée Dapper and 01.45.00.91.75, Musée Adzak - Espace d'Art International and 01.45.43.06.98, Musée d'Anatomie Delmas-Orfila-Rouvière and 01.42.86.20.47, Musée Arménien de France, Musée Boleslas Biegas - Musée Adam Mickiewicz and 01.43.54.35.61, Musée Bible et Terre Sainte and 01.45.44.09.55, Musée Bouilhet-Christofle - Musée d'Orfèvrerie and 01.49.22.41.15, Musée Clemenceau and 01.45.20.53.41, Musée-Librairie du Compagnonnage and 01.43.26.25.03, Musée d'Anatomie Pathologique Dupuytren and 01.42.34.68.60, Musée Valentin Haüy, Musée Henner and 01.47.63.42.73, Musée d'histoire de la Médecine, Musée Maillol and 01.42.22.59.58, Musée des Lettres et Manuscrits and +33 1 42 22 48 48, Musée du Montparnasse and +33 1 42229196, Musée de Minéralogie and 01.40.51.92.90, Musée Moissan, Crypte Archéologique du Parvis Notre-Dame and 01.55.42.50.10, Bibliothèque-Musée de l'Opéra and 01.53.79.37.47, Musée Pierre Marly - Lunettes et Lorgnettes, Musée de la Préfecture de Police and 01.44.41.52.50, Centre Culturel Suisse, Tour de la Cathédrale and 01.53.10.07.00, Maison de la Pêche et de la Nature, Le trésor de Notre-Dame de Paris, Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin and 01.40.64.39.44, Musée national d'art moderne, Maxim's Art Nouveau "Collection 1900" and 01.42.65.30.47, Collection des minéraux - Jussieu, Fondation Henri Cartier-Bresson and +33156802700, Galerie Royale, Musée du Barreau and +33 1 44 32 47 48, Institut des Lettres et Manuscrits, Anciens Elèves (Musée), Musée d'Histoire contemporaine and 01.44.42.54.91, Musée de l'Ordre de la Libération, Musée des Plans-reliefs and 01.45.51.95.05, Catacombes de Paris, Pinacothèque de Paris 2, Musée de l'Homme and +33144057272, Musée du quai Branly and 01.56.61.70.00, Galerie de Minéralogie et de Géologie and 01.40.79.54.79, Institut du Monde Arabe and 01.40.51.38.38, Jardin Tino Rossi - Musée de la Sculpture en Plein Air, Halle Saint-Pierre and +33 1 42 58 72 89, Hôtel de Sully, Le Louvre and +33 1 40205050, Jeu de Paume and +33 1 47031250, Musée de l'Orangerie and 01.44.50.43.00, Atelier Brancusi, Futur Fondation Galeries Lafayette, Musée Curie and 01.56.24.55.33, Grand Palais, Pavillon de l'Arsenal and 01.42.76.33.97, 01.42.76.26.32, Musée National du Moyen Âge and 01.53.73.78.13, Musée d'Art et d'Histoire du Judaïsme and 01.53.01.86.53, Archives Nationales and 01.40.27.60.96, Musée de la Serrure, Musée Picasso and 01.85.56.00.36, Musée Cognacq-Jay and 01.40.27.07.21, Musée national Eugène Delacroix and 01.44.41.86.50, Orangerie du Sénat, Musée d'Orsay, Musée national Ernest-Hébert, Institut Néerlandais and 01.53.59.12.40, Immeuble Molitor, Pinacothèque de Paris and 01.42.68.02.01, Musée Nissim de Camondo and 01.44.55.57.50, Musée Cernuschi and 01.53.96.21.50, Musée Rodin and 01.44.18.61.10, Musée Jacquemart-André and 01.45.42.11.59, Musée De Dion-Bouton, Musée Renault and 01.46.05.21.58, Pavillon de Vendôme and 01 .47 .15 .31 .05, Musée Paul-Belmondo, Fondation Pierre Bergé Yves Saint-Laurent, Musée d'Art Moderne de la Ville de Paris and 01.53.67.40.00, Palais de Tokyo and 01.47.23.54.01, Fondation Cartier and 01.42.18.56.50, Musée Guimet and 01.58.52.53.00, Maison Chana Orloff, Musée d'Ennery and +33 1 45535796, Musée Roybet Fould, Musée Marmottan and 01.44.96.50.33, Grande Galerie de l'Évolution and 01.40.79.54.79, 01.40.79.56.01, Musée de la Vie Romantique and 01.55.31.95.67, Maison de Balzac and +33 1 55744180, Pavillon de l'eau and 01.42.24.54.02, Mémorial de la Shoah and +33 1 42 77 44 72, Maison de la Culture du Japon and 01.44.37.95 .01, Musée Zadkine and 01.55.42.77.20, Musée de Montmartre and 01.49.25.89.39, Musée de la chasse et de la nature and 01.53.01.92.40, Manufacture des Gobelins, Musée du Luxembourg and 01.40.13.62.00, Palais de la Découverte, Centre Culturel Suédois and 01.44.78.80.20, Musée de la magie, Fondation Louis Vuitton and 01.40.69.96.00, Hôtel des Monnaies, Musée Galliera and 01.56.52.86.00, Musée Bourdelle and 01.49.54.73.73, Musée Carnavalet and 01.44.59.58.58, Petit Palais and 01.53.43.40.00, Sainte-Chapelle and 01.53.40.60.80, Musée du Louvre +yes +52.5154199 13.4105362, 52.5190924 13.3555706, 52.5201452 13.4091755, 52.5101563 13.3900661, 52.3882604 13.5184385, 52.4592360 13.3138055, 52.5166434 13.3871073, 52.5190463 13.4025073, 52.5197220 13.4037775, 52.5199288 13.4041583, 52.5242445 13.3468542, 48.4940023 9.2123679, 52.5170619 13.3862073, 52.5202282 13.4029683, 52.5109757 13.3933475, 52.5527674 13.2919571, 52.5202568 13.4100287 +19 and Rue des Petits Carreaux, 79-81 and Avenue du Général Leclerc, 106 and Rue Saint-Dominique, 24 and Rue de la Py, 112 and Avenue de Villiers, 105 and Avenue de Villiers, Boulevard Saint-Michel, 19 and Rue du Louvre, 21 and Rue du Louvre, 34 and Boulevard de Sébastopol, 201 and Rue du Temple, 110 and Boulevard Saint-Germain, 45 and Avenue de Versailles, 172 and Rue de Lourmel, 47 and Rue de Sèvres, 16t and Avenue Bosquet, 202, 45 and Avenue de Saxe, 190 and Avenue Daumesnil, Rue Lecourbe, 41 and Avenue Montaigne, 1 and Avenue Reille, 1 and Rue de l'Amiral Mouchez, 20 and Rue de Harlay, 71 and Avenue du Docteur Arnold Netter, Boulevard Voltaire, 90 and Avenue du Général Leclerc, 119 and Boulevard Voltaire, 27, 6 and Place Lachambeaudie, 2 and Place de l'Opéra, 41  and Rue de l'Ambroisie, 370 and Rue de Vaugirard, 403 bis and Rue de Vaugirard, 376 and Rue de Vaugirard, 86, 43 and Avenue Montaigne, 73 and Rue Saint-Lazare, 100 and Rue La Fayette, 2 and Square Desnouettes, 163 and Boulevard Lefebvre, 17 and Rue Balard, 19 and Rue Cauchy, 156 and Rue Saint-Charles, 76 and Avenue Émile Zola, 40b and Rue des Entrepreneurs, 2 and Place Charles Michels, 40 and Rue Lecourbe, 26 and Boulevard de Grenelle, 44 and Rue La Fayette, 121 and Rue Saint-Antoine, 16 and Place de la Madeleine, 79 and Rue du Commerce, 69 and Rue du Commerce, 51 and Avenue de Clichy, 27 and Avenue Hoche, 91 and Rue de Monceau, 26 and Avenue Hoche, 144 and Avenue de Clichy +1.034897728230403 +Musée du quai Branly +3 +yes +Playfair Monument and 55.9547899 -3.1830721 +48.0169900 0.1529468, 48.1846137 0.6536841, 48.1857639 0.6528687, 48.1853805 0.6538558, 48.1877586 0.6535933, 47.6623642 -1.9999542, 47.5178122 -2.0364437, 47.5658346 -1.6168284, 47.6376411 -1.0473284, 47.7331874 -1.1600826, 47.9936287 0.1902660, 47.7547948 -1.0018843, 48.2195485 0.6367839, 47.5306968 -0.1184749, 47.6084592 -1.7444525, 48.0660784 -0.1560527, 48.2411687 -0.6198366, 48.4390727 -0.1176280, 48.1829382 -0.3020747, 48.0411951 -0.0567503, 48.0991378 0.7992432, 48.2409377 0.2693865, 47.4578833 -1.4623417, 47.4745987 -0.5551031, 47.4507380 -0.5875344, 47.4428820 -2.1370181, 48.0717155 -0.7527385, 48.0713777 -0.7539122, 48.0713575 -0.7538841, 48.1320111 0.2933997, 48.0238361 0.2048137, 48.2525786 0.3126753, 48.0991355 -0.9348945, 48.0979775 -0.9340890, 47.5198359 -1.7468198, 47.4973570 -1.5172570 +49.4142758 8.6885716 +33.8661283 -78.5157683, 52.1426060 0.1191839, 52.3899293 9.7456087, 52.3934773 9.6850598, 53.0007196 -1.0610480, 9.9190691 -84.1043455, 52.8910516 -1.0904130, 52.3709371 9.7283593, 51.9594248 8.6582026, 50.9428960 6.9361472, 52.3124684 9.7892519, 48.8914595 2.1980228, 48.2019393 16.3451033, 52.3754502 9.7958551, 50.0617005 8.8069017, 48.7891048 9.3416015, 50.8806816 6.8913792, 49.0015128 8.4069493, 50.0423356 8.1953445, 52.3773463 9.6848238, 48.2168271 16.3433150, 49.0072332 8.4072855, 50.0814853 8.2262302, 50.0123236 8.2655463, 50.7167530 7.1535569, 50.7367740 7.1138600, 52.3622070 9.7537523, 52.3421344 9.7138144, 50.9916985 7.1310202, 50.8309647 12.9229769, 51.5240224 9.9465123, -37.3266975 -59.1377620, 50.2550748 8.6389994, 50.7300818 7.0983201, 50.1225806 8.6459770, 50.9822729 7.0253267, 43.0682876 -89.4237330, 50.0870455 8.2421548, 51.4365388 7.3338115, 52.3756167 9.7069653, 49.4296174 8.6819785, 49.4100037 8.6951825, 49.4179937 8.7574277, 52.3716452 9.7353393, 51.2563697 7.1401768, 51.2988383 9.4703150, 10.1617859 -67.3958503, 51.2128024 6.7685462, 52.3850094 9.7244420, 40.5505038 -105.0588116, 52.3926776 9.8225337, 51.4118502 7.2019251, 49.8443941 9.6031306, 51.4454315 7.3366202, 48.5492145 9.0343004, 49.4146302 8.6907419, 53.0947167 8.8021129, 50.9239816 6.9667201, 49.5944628 11.0050254, 51.3125593 7.0894157, 50.5567290 6.2397596, 52.9020391 -1.0984462, 50.0025831 8.2722855, 52.3092512 10.5048372, 48.9973387 8.3997219, 50.1212852 8.6802109, 50.9313910 6.9368757, 50.7850779 6.0823413, 52.3383710 9.6273484, 47.8800544 7.7308829, 53.7709959 7.7003378, 51.0397965 -1.6089470, 52.4005177 9.7751797, 52.3947666 9.7612615, 49.9693861 8.8386678, 50.9961034 11.0262074, 50.0587051 8.2911880, 51.4322369 6.7692110, 54.1459583 9.2922797, 48.2098216 16.3357541, 45.7085310 9.3582093, 48.6243483 8.9685438, 49.6007506 11.0018818, 48.5582221 9.0502038, 47.0790266 15.4489017, 53.8581580 10.6640647, 47.5543376 7.9490825, 47.6015569 7.6640209, 49.9388957 8.1974312, 50.9138068 7.1970173, 54.5060917 36.2528393, 51.6758618 6.1695034, 49.0167204 8.4440427, 51.6603461 6.9669169, 54.5124473 36.2594056, 54.5156985 36.2728523, 50.9330194 7.2886085, 50.9299219 7.0410660, 51.9040802 7.6420735, 51.1098867 13.7610089, 51.4545146 7.0120954, 51.4627522 6.9800867, 50.6475033 6.1955847, 50.7214683 7.0993311, 48.5409087 9.0773047, 54.5147248 36.2749471, 54.5162688 36.2481615, 40.3261445 -6.2893698, 52.2824530 9.7813509, 48.9988806 8.4732752, 51.7747521 6.4592520, 49.0601604 8.8023558, 52.6693016 9.1571580, 49.0866720 8.7820246, 52.6138372 6.7443143, 54.4988312 36.2789211, 52.1822624 4.5175206, 37.8921647 -122.2875029, 50.6824177 6.2098451, 54.5011360 36.2636123, 54.5045881 36.2573040, 51.2530947 6.3920944, 51.5524262 9.8713368, 45.4833460 -122.6973901, 52.9840975 9.8388027, 34.8699075 -82.4217196, 46.6913593 11.1536534, 50.8174222 7.1481750, 50.8151391 7.1569796, 50.8068274 8.7688998, 45.6985360 4.8847481, 52.6191817 10.0709001, 52.6214429 10.0695743, 52.6238303 10.0860562, 50.6887158 6.4832830, 37.8309388 -122.2534367, 45.4738904 -122.6944691, 53.4464050 8.5212223, 52.2999759 7.1341267, 48.9761256 8.4074460, 52.3117275 9.3565659, 45.4689193 -122.6998986, 53.0677539 8.7912280, 36.5480751 136.6768741, 50.9034328 8.7243284, 52.4411251 9.1901684, 48.8703817 12.5829460, 51.4576218 7.2711498, 47.6348285 -122.3678767, 47.6352291 -122.3611254, 47.6354371 -122.3691588, 47.6360161 -122.3632067, 47.6360563 -122.3635408, 47.6380056 -122.3597605, 47.6397472 -122.3703871, 47.6423122 -122.3596549, 47.6433235 -122.3564015, 47.6590651 -122.3309314, 47.6627918 -122.3260786, 51.1246272 6.6602442, 47.6331595 -122.3557352, 47.6332355 -122.3485177, 47.6340544 -122.3497776, 47.6356366 -122.3526532, 47.6390715 -122.3556740, 47.6394988 -122.3558193, 48.3870168 18.3861348, 47.6398796 -122.3039421, 48.9883180 8.3793809, 50.9428752 6.9468548, 53.8661151 10.7034431, 52.4876911 13.2632817, 47.6312368 -122.3607318, 47.6780965 -122.3654225, 47.6791839 -122.2918082, 47.6812405 -122.3658989, 47.6848247 -122.3640519, 47.6851819 -122.3663810, 47.6875899 -122.3508686, 47.6877530 -122.3513310, 49.2295911 9.1621085, 47.5759861 -122.3895807, 54.2931879 12.3312166, 48.9233266 8.4756921, 37.3533651 -122.0192511, 54.0862892 12.1092185, 45.4681427 -122.7123412, 45.4714889 -122.7085161, 45.4724924 -122.7139019, 48.2677757 10.9871455, 47.6793976 -122.3151326, 45.4840253 -122.6919901, 37.3696542 -122.0610695, 45.7220703 4.8588749, 45.6968805 4.8618317, 47.6729304 -122.3822712, 45.7735867 3.0869733, 45.4909900 -122.6808017, 50.2597325 10.9668032, 50.7784193 6.0819141, 51.4887528 9.1481905, 49.4989286 8.4669566, 48.4240865 -122.3041378, 41.8802785 12.4756244, 43.0837020 -89.3630813, 45.4700947 -122.7140540, 24.1365487 120.6847372, 24.1364264 120.6848012, 48.7800847 8.2695681, 50.7752933 7.2842904, 54.5162440 36.2514168, 49.6835949 8.3883429, 49.6856843 8.4540704, 51.4422807 7.3101694, 48.2096551 14.2586377, 47.6579151 -122.3398155, 51.7664795 8.9431728, 53.1182492 9.7875281, 48.6765290 10.1531586, 47.7068039 -122.3136815, 40.5421826 -105.0926619, 40.5881599 -105.0859558, 40.5046766 -105.0763670, 40.5402661 -105.0568005, 40.5406510 -105.1197369, 40.5510115 -105.1281838, 40.5569822 -105.1058599, 40.5613313 -105.0603891, 40.5726317 -105.1313133, 40.5949375 -105.1149659, 49.2049849 8.0374037, 51.5606684 9.9030774, 52.3129755 9.6006209, 47.6413320 -122.3607444, -23.3354177 -69.8454819, 45.5313084 -73.5663196, 45.5205527 -73.8548441, 45.4288519 -73.6386740, 45.4296620 -73.6332480, 45.4212210 -73.6364625, 45.4837011 -73.5767996, 45.4226913 -73.6480121, 45.4213471 -73.6294566, 45.4307218 -73.5944806, 45.5249930 -73.5847874, 45.5139656 -73.5567183, 45.5686581 -73.5986567, 45.5719684 -73.6275751, 45.4678555 -73.5487821, 45.5423101 -73.6239441, 45.5747645 -73.6836766, 45.5592809 -73.6772557, 45.5360011 -73.5699325, 45.6503675 -73.5775808, 36.7217343 -4.4386362, 49.4512959 11.0534123, -39.0344407 -67.5389173, 49.1157459 9.1682917, 50.9056422 7.4081487, 54.0891092 9.0738864, 14.1867832 -91.3053447, 47.5834883 13.5253867, 47.5850727 13.5356179, 48.9278838 8.5680529, 51.0763032 13.7499741, 48.7604571 8.1652640, 48.9319761 8.9571654, 52.5040184 9.4612449, 49.2790240 9.4798323, 50.0634607 8.2542956, 50.0802690 8.2452197, 50.8844555 7.0580309, 49.9464208 11.5765480, 50.1700608 8.6961463, 50.1766486 8.6294170, 50.1836952 8.6660344, 50.1945851 8.8041122, 51.3122058 7.2036863, 51.3125673 7.0894414, 49.9711742 9.1479485, 49.9733393 9.1512666, 49.9746615 9.1504036, 49.9771602 9.1435557, 49.9800624 9.1410398, 48.9605081 10.9153295, 50.3584122 7.6106090, 48.1600276 11.5633914, 48.4275436 10.1223390, 51.7642516 6.3892283, 51.3266476 6.9698740, 50.8972242 14.8042950, 54.3542046 12.7183686, 52.4772010 13.4225984, 48.2826289 11.1481794, 47.1555968 9.8198954, 47.2808034 9.5907886, 51.9705597 7.6240933, 49.8458955 11.6262394, 50.4825136 11.6642046, 51.1903516 6.5134492, 52.3742465 9.7612717, 50.7299331 6.1769144, 47.3362154 9.6464641, 52.2805551 8.2394695, 52.2352939 8.1691723, 49.9284405 7.8320296, 50.1666031 8.6802011, 51.9335107 8.8765602, 51.0582476 8.7950734, 52.9105327 13.9607509, 52.3885273 8.0620123, 52.4179200 8.0597532, 50.7417836 12.7472070, 50.8072454 4.9329197, 49.3560176 8.7761636, 49.3392715 8.7999047, 49.3391430 8.8000149, 49.3724010 8.7709725, 49.3930489 8.7993959, 55.8333570 12.0908450, 47.9196926 7.6932470, 47.7306633 7.5560184, 47.6145000 7.6610026, 52.9672077 11.1558534, 50.1378539 8.4509242, 49.9761096 8.1914570, 48.1748223 14.5327273, 48.1788666 14.5222291, 51.4761911 6.8599826, 47.7940026 13.0558663, 47.7769333 13.0404440, 47.7968969 13.0542525, 47.8089239 13.0307866, 51.2772029 7.1991874, 51.2731452 7.1515419, 51.2479173 7.0959443, 51.2696500 7.2369949, 51.2259115 7.1441887, 47.8821895 7.7302532, 47.8838797 7.7324937, 45.5101571 -73.5508775, 45.5110669 -73.5671424, 45.5137509 -73.5557592, 45.5204867 -73.5510170, 45.5110188 -73.5513353, 45.5089717 -73.5591084, 45.5069198 -73.5576086, 54.0775602 12.1065146, 54.0912911 12.1230818, 54.0930741 12.0978031, 54.0930972 12.0975926, 51.8285938 9.4455937, 52.2013467 8.5722113, 52.1559127 11.6324209, 52.5381110 13.4193706, 45.0473455 6.0446998, 48.9377849 8.2729904, 50.1400132 8.9026026, 48.5541330 12.8084507, 51.4215077 6.7526023, 48.7460836 9.2325712, 51.6721352 8.3474920, 51.4626289 6.9799864, 29.7200281 -84.7499100, 54.7819077 9.4351628, 54.3204089 10.1336451, 50.0258880 8.8841874, 51.6254951 7.5119843, 58.3790513 26.7468963, 51.1678054 6.9343580, 51.1698923 6.9358147, 45.4782620 -122.7246306, 48.8358883 9.2247950, 50.7745368 7.0711829, 53.3108627 10.2849824, 49.3351734 8.8503689, 52.4627479 13.3895475, 50.5556090 6.7650904, 49.7125059 8.6925201, 53.2808212 9.7140963, 52.0098148 4.3476945, 50.8745953 8.0174493, 52.0031079 4.3340067, 52.0043097 4.3662315, 54.6813926 8.7565234, 51.4421227 7.3176077, 47.6221801 -122.3318128, 50.8239901 6.9866133, 50.8248540 6.9816957, 52.3223041 -0.1189947, 51.5741591 9.3097592, 44.4563636 -73.2139044, 50.5856997 8.6831647, 49.7593825 11.5458971, 48.4658333 9.2257983, 51.6640914 9.3747581, 47.5665287 7.9145453, 47.5511989 7.9488036, 52.6320000 10.0442167, 51.0149047 7.0822359, -26.5678201 -54.7664945, 54.1218750 13.8414648, 54.1199886 13.8370056, 50.0091443 8.2185012, 42.3809297 -2.0588023, 45.4850463 -122.7281510, 47.1589698 9.8215544, 51.3068051 9.4854149, 51.3230352 9.4459656, 51.3021239 9.5030093, 18.4123975 -66.3301084, 51.5392551 7.2562055, 52.5287035 12.3385254, 53.5005463 7.0940227, 51.9712215 7.6134519, 51.9057426 7.6648622, 48.9002613 8.1990106, 51.3341759 7.2791030, 51.4748713 9.9290184, 50.8276566 7.1178052, 51.4779253 7.2263630, 52.4029056 9.7988354, 43.3580981 -8.4171615, 49.4485555 1.0940480, 38.2723039 -4.3245857, 49.1451956 9.2174140, 41.0529923 -83.6503835, 51.7684371 6.8382611, 54.1779521 12.0794872, 51.7173401 9.1822390, 53.8324853 10.6940482, 53.7449512 9.6999324, 48.0669930 7.8832820, 47.9948480 7.8444800, 47.9877250 7.9053700, 47.9656500 7.8563830, 50.8221800 4.3451222, 45.7558135 4.8478320, 52.4200874 9.7997158, -38.5267065 -70.3695118, -38.5572170 -58.7389424, 50.5924581 10.0633566, 50.5909334 10.0650281, 50.9322950 6.8568659, 45.4635749 -122.6942153, 48.5626080 16.0788157, 48.5634033 16.0791056, 45.4632550 -122.7129177, 45.4796245 -122.6927696, 52.4131922 13.2664622, 51.9091439 10.4264418, -31.4135921 -64.1702113, 25.0164685 121.4655036, 54.5045747 36.3009185, 50.6871009 7.3368469, 53.1852848 8.2426951, 51.8421230 12.4231299, 53.4766416 9.7020280, 47.0713329 15.4253441, 47.0716276 15.4363388, 47.0728198 15.4010293, 50.1297543 14.4687291, 51.5314010 9.2850698, 42.1071896 24.8498963, 54.5026576 9.5417184, 37.1257324 -5.4464191, -34.7660388 -61.8921789, 39.9321249 116.4497695, 54.5137620 36.2802831, 47.8823612 7.7315052, 49.4751233 8.6651478, 49.9908749 8.0235994, 45.4660951 -122.6841482, 50.8884889 8.7707044, 49.3169313 8.4381704, 41.7485276 1.9080833, 49.4797967 10.9875741, 51.4726447 7.2141858, 52.3467781 71.8793420, 52.3542375 71.8926866, 47.6649352 -122.3525860, 47.5779686 7.9874500, 51.4521355 7.0386162, 39.9336949 116.4562033, 51.3220038 9.5049612, 51.3154071 9.4735270, 51.3723903 7.2331683, 50.0225891 8.2199053, 52.0413329 4.3959382, 49.4892731 7.0315382, 39.9223560 116.4383658, 45.4641198 -122.6551186, 48.2535400 7.8098015, 43.4398606 -5.8514605, 51.6748443 8.3464763, 51.4052570 8.0669383, 51.4427786 8.3551144, -32.9204327 -62.4553342, 52.1505785 9.9295700, 54.5085398 36.2851802, -33.1328801 -64.3340832, 53.8642320 10.7200275, 52.3992156 13.0582846, 54.0621354 13.9558361, 6.1737085 -75.6426148, 45.2928860 11.5375776, -33.3830869 -64.7217634, -30.8659791 -60.9690041, 48.8908129 8.7011281, -38.9360383 -68.0870831, -53.7696740 -67.7252920, -53.7868740 -67.6992357, -33.1328654 -64.3341580, 55.7615449 37.6351919, 41.3554717 -8.7476780, 49.4255320 8.6477931, 51.3481473 8.2829812, 50.6976721 7.1245718, 42.9760109 -76.3362960, -31.5355176 -68.5392717, 51.4209182 6.9606496, 46.5200190 -94.2886313, 46.5214433 -94.2893446, 44.9360154 -93.0945604, 39.9448809 -0.0633585, 9.9177824 -84.0870274, 39.5281256 -0.4885612, 49.1049608 16.7574691, 47.8115873 10.8975155, 49.9981164 8.8661543, 50.9580264 7.1167230, 50.9580226 7.1166872, -2.8988040 -79.0041980, 49.5378705 7.4060152, 51.0199400 4.4598128, -16.4987475 -68.1969586, -16.4793644 -68.1758499, -16.5575197 -68.1929803, -16.5542797 -68.1951450, 20.0756399 -103.5491219, 43.3544285 1.6242815, 43.3572774 1.6234255, 49.2590850 13.8949620, 37.7924005 126.9868878, 48.7910453 9.1933500, 39.9556451 -75.1010119, 51.2132191 6.2729384, 19.3082261 -100.1429360, 53.2085929 9.1611298, 18.8790023 -71.7062418, 43.1672742 -2.6302988, 53.0600275 8.8094072, 53.1079582 8.8539526, 46.1940893 6.2039158, 46.1940978 6.2044525, 46.1936165 6.2009277, 46.1940978 6.1985657, 46.1914214 6.1960207, 46.2048074 6.2016205, 46.1890852 6.1917526, 46.1842124 6.1746191, 46.1963866 6.1862353, 46.1996849 6.1753037, 52.6375458 9.2060731, 50.0151940 8.2983204, 20.1448369 -101.1839145, -35.0538221 -58.7628395, 51.4414351 6.9945036, 52.3400532 9.7632793, 53.9705544 8.9626685, 36.5848700 2.1246054, 53.0705346 7.6973629, 46.2338815 -63.1267798, 46.2338299 -63.1267879, 46.2352679 -63.1238031, 46.2360703 -63.1303618, 47.6910046 -122.2939249, 32.7186227 51.5309889, 52.4115380 9.7520825, 52.2056892 10.9162723, 47.6221388 -122.3120812, -35.5154506 -58.3184979, 50.1006795 8.7243886, 49.7015018 9.2578914, 55.8215597 37.3214167, 45.3415748 5.5825675, -16.4817023 -68.2198025, 42.8271624 -1.6447866, 43.0708859 -89.4239939, 44.8484018 -0.5773178, 44.8518607 -0.5711192, 55.7446783 37.6267648, 18.8987390 -96.9979693, 43.0711964 -89.4269965, 45.1528170 1.5287810, 51.1626488 6.9982545, 19.2098038 -98.7559652, 51.0358411 6.6960445, 52.4893092 13.3195004, 37.7651411 -122.4546866, 50.7861088 8.7774587, 43.0652885 -89.4197511, 51.9906405 9.1159989, 36.4692659 -6.1968886, 36.4582799 -6.2031631, 41.9874748 -8.7635276, -31.4416323 -61.2608946, 53.3625914 10.5622673, 37.7617905 -122.4053743, 50.9192081 6.9647726, 50.9078226 6.9711709, 50.9197790 6.9540083, -29.1446849 -59.6500170, 45.4696858 -122.7048108, 39.5122764 16.2855090, -39.1541443 -66.7876023, 41.5787228 24.6933900, 52.5571352 13.4700828, 51.2857166 9.4686180, -31.6426633 -60.7055068, 1.2198052 -77.2814483, 1.2191128 -77.2817376, 1.3367257 -77.5927785, 55.3845795 36.7231222, 47.8295843 9.0954187, 47.7701195 9.2148903, 49.3251402 8.9750624, 8.6479043 -72.7389921, 51.4421255 7.3170617, 54.5850564 10.0230418, 43.0303820 -76.1171098, 38.5760312 -0.1308119, -31.2308847 -64.3145770, -34.8789669 -58.3788057, 43.0936088 -89.3484038, 45.5667913 5.9190304, 49.4028996 8.6875247, 45.9415035 10.6403804, 45.9845879 10.6744916, -32.3984450 -59.7875744, 54.5201982 36.2884145, 54.5204384 36.2902867, 47.2185367 -1.5414124, 48.0658247 -0.7700055, 48.2848087 6.9493465, 10.6663929 -63.2476240, 47.8075230 -122.3774645, -38.7591156 -72.6344099, 48.4468420 -1.9873710, 48.4557152 -2.0274870, 48.1814751 -1.6410671, 53.0838879 8.8546977, 50.8123714 6.9711955, 52.4747757 9.2297412, 48.1306523 15.1387953, 52.5383977 13.3864413, 38.9288340 -77.0274444, 43.0633532 -89.4254535, 43.0629225 0.1494659, 43.0650193 0.1445145, 43.0779276 0.1565295, 43.0588366 0.1468829, 48.0839438 16.2839346, 43.0881348 -89.4878429, -15.8354846 -47.9770906, -15.8434868 -47.9758733, 38.8403855 -77.0602194, 38.8247927 -77.0563828, 38.8236160 -77.0722055, 40.4705934 0.4731155, 48.0856143 16.2827915, 48.8016981 9.7962988, 51.7379322 7.5293693, 48.8078295 9.3208218, 54.7296884 37.1789401, 52.3722877 13.6155938, 52.0380847 4.3866476, 47.3782243 0.5994032, 50.0076902 8.7755906, 50.9687557 1.9092802, 42.7239253 -0.2827388, 50.1036224 8.6299113, 43.2449649 -2.9879851, 48.9409387 8.4079380, 46.5128443 6.6018315, 55.7601793 12.5719657, -33.8896428 -61.6961088, -38.9403722 -68.0902119, 51.9269859 7.8450740, -34.0092356 -63.9239523, -34.5240680 -58.7522000, 45.4582113 -122.7189270, 39.2701381 9.1241204, -39.1868051 -65.9557930, -31.6501723 -60.7102054, 50.1472545 9.0132328, 60.1090261 19.8437059, -33.5159864 -60.6099999, -37.1671674 -63.4121956, -40.8168300 -63.0061251, 48.0058434 7.8471089, -37.3226002 -59.1270841, 51.2059315 10.4515343, 43.0700338 -89.4198280, 53.5202369 8.5796043, -24.7978141 -65.4406408, -33.1276793 -64.3495660, 53.8731794 9.8843126, 47.9917509 7.8473909, 50.8859545 14.1138102, 49.0368509 8.7086877, 42.2284609 -2.1014650, 41.5217885 0.3363488, 51.2341626 6.1357802, 51.0680621 13.7586525, 51.0688218 13.7163235, 48.7602341 8.2388460, 48.7615308 8.2413769, 47.8650930 1.9013895, 48.8752028 2.1777333, 43.3615926 -3.4257764, 53.4668943 9.9633139, 48.6152775 9.8552006, 52.0357494 8.5061297, 44.9466685 -93.1153511, 51.9528428 7.9865996, 45.9406398 -0.9543190, 54.3631346 10.2886384, 49.3788062 8.6917517, 43.2154711 -8.6930125, 9.9115590 -67.3577241, 9.9136394 -67.3550644, 50.1397787 8.3589817, 35.2240902 -80.8037961, 35.2257793 -80.7978165, 35.2255810 -80.7990550, 51.5747115 6.5103462, 41.7241568 -0.9535063, 52.6782991 13.5880892, 42.9852252 -76.1434897, 37.4973568 -3.5084123, 53.0545844 8.2553881, 49.1838384 8.9815995, 49.2035052 8.9659079, 49.1432441 9.1242794, 50.1286306 8.7110841, 50.0531096 8.8845771, 55.6489725 12.1973914, 51.2711027 7.2241114, 39.9042513 -3.6224467, 50.8272789 6.9050302, 52.2528151 12.8352013, -16.4954546 -68.1330005, 51.8476696 8.9696298, 49.4079434 8.8356672, -34.7435204 -58.3904817, 42.4647882 1.8909271, 45.5757089 5.8990003, 41.3882340 2.1346473, 43.4432253 -5.8220005, 9.8464846 -84.3142159, 9.9898034 -83.0340313, 18.4769799 -69.8995354, 43.5633866 -6.6470727, -33.5702568 -70.6321304, 51.9653006 7.6215589, 10.0794015 -69.1300939, 41.4163885 2.2116093, -37.8011791 -73.4012679, 41.6660063 0.5574919, 10.9785637 -74.7819280, 38.3891246 -4.9657208, 43.2881513 -2.6900656, 37.3146510 -6.8402219, 37.2064621 -3.6300760, 38.4285187 -4.7632050, 48.2955893 16.4519123, 38.4448332 -4.8972917, 4.5950418 -74.3417260, 39.1023875 -94.5848408, 37.1256705 -5.4463775, 11.6884695 -84.4573671, 47.1309069 24.4904023, 43.4016319 -5.8088185, 39.9321796 116.4391677, 40.8136719 0.5233514, -41.0424311 -62.8265924, 41.3555181 -8.7476217, -11.0197418 -68.7583579, -37.4790155 -73.3416764, 39.5819744 -3.8697574, 40.3863452 -3.7001581, 9.1203661 -79.5544695, -16.4906771 -68.2092927, -16.4914322 -68.2348824, -16.5655774 -68.1934277, -16.5645488 -68.1949844, -16.5305833 -68.2056835, -16.5820863 -68.1876364, -16.5557693 -68.2234231, -13.0756386 -76.3868080, 18.8790429 -71.7062606, 40.9360698 -4.1039332, 7.6419550 -72.2789029, 9.6534798 -83.9702206, -34.5900858 -60.9351991, 9.9774300 -84.3840516, 6.0166868 -73.6732886, 10.6018590 -72.9846370, -16.5295455 -68.1598687, -40.6833080 -72.6007825, 40.2069225 -3.5689675, 36.9156809 -6.0716630, 41.1438167 1.1176153, 17.0471110 -96.7118378, 50.7253522 4.6269451, 50.7246728 4.6252543, 40.2760958 -4.3058971, 42.7334571 -0.3118011, 42.7725674 -0.3317598, 41.6219119 -0.9231769, 29.0997919 -110.9579973 +534 +L'Atelier SFR, Phone 2000, The Phone House, espace SFR, Al Madina, Orange, Espace SFR, Orange, SFR, Yilpa Telecom, Orange, The Phone House, Stop Phone, Kremlin Phone, Allo Phone, Phone House, Orange, Vivre Mobile, Argana, Riquet Phone, Numéricable, Allo La Place, Phone House, Comtel, Riquet Phone, Torcy House, Orange, SFR, SFR, Bouygues, Orange, SFR, Docteur iPhone, France 4G Télécom, Orange, Bouygues Telecom, SFR, Bouygues Telecom, Orange, Orange, Satelex Services, Bangla Trade International, Bouygues Telecom, Orange, Orange, espace SFR, S.P.S., Mobil S, Orange, Bouygues Telecom, Numericable, Free Center, Rubinya, Orange, Club Bouygues Telecom, Jaks multimedia, Orange, SFR, SFR, Club Bouygues, Espace SFR, Orange, Orange, Paris Media Com, Home Telecom, Dora Phone Shop, Vivre Mobile, Phuong Telecom, Vivre Mobile, Orange, La Clinique du Smartphone, Orange, Numericable, Club Bouygues, Internity, Photo Service, Bouygues Telecom, SFR, Fnac +55.9466868 -3.1916914, 55.9536028 -3.1862725, 55.9535015 -3.1860396, 55.9533184 -3.1857689, 55.9535200 -3.1862811, 55.9536488 -3.1864671, 55.9491980 -3.1907060, 55.9534123 -3.1861097 +118 +15 +yes +yes +46.6167350 -1.8692222, 47.4157721 -1.8539595, 47.6623642 -1.9999542, 47.5178122 -2.0364437, 47.2053637 -2.0487648, 46.6646452 -1.7570749, 46.6625119 -1.7637588, 46.4072147 -1.4060013, 47.5658346 -1.6168284, 47.6376411 -1.0473284, 47.7331874 -1.1600826, 47.1117065 -2.1078804, 47.7547948 -1.0018843, 47.1027718 -1.1206474, 47.1002886 -1.1228630, 47.2757188 -2.4265544, 46.7916310 -2.0633590, 47.6084592 -1.7444525, 46.5333900 -1.7720741, 47.3427522 -2.4270051, 46.5890791 -1.1245053, 46.5894219 -1.1237864, 46.8367326 -0.8835602, 46.4906051 -1.7945377, 46.7700629 -1.5054141, 47.1854515 -1.9446521, 47.3447411 -2.5085747, 47.3639737 -1.0215598, 47.4578833 -1.4623417, 47.3275906 -2.1564248, 47.4428820 -2.1370181, 46.8469856 -1.4865231, 47.0791770 -2.0387346, 47.1335252 -2.2132604, 47.0386689 -1.6404213, 47.2194968 -1.5498408, 47.0319306 -1.0922135, 48.0991355 -0.9348945, 48.0979775 -0.9340890, 47.5198359 -1.7468198, 47.4973570 -1.5172570 +yes +1020 +yes and 2 +Galérie Artes +0 +52.0697919 5.1300054, 52.1131523 20.8243402, 52.1115433 20.8262068, 48.5327832 11.5123530, 48.5281180 11.5079474, 51.3788469 -1.3479857, 49.3707442 10.9941112, 53.9317836 27.4391329, 53.9118999 27.4311503, 53.9182464 27.4637649, 53.8890822 10.6556899, 53.8891364 10.6556766, 53.8891893 10.6556637, 53.8890285 10.6557029, 53.8892427 10.6556507, 55.6079563 12.9930215, 53.8546818 27.4821209, 53.8567690 27.4867759, 53.8544375 27.4835610, 53.8552436 27.4813708, 48.4635434 135.0843335, 48.4726508 135.0897167, 48.4721528 135.0887979, 48.5364269 135.0604026, 48.5357113 135.0609107, 50.9761939 2.9287573, 48.4996820 135.1153412, 48.5012031 135.1148856, 48.5007220 135.1143628, 48.5001631 135.1158640, 48.4996742 135.1163669, 48.5007141 135.1153885, 53.9426242 27.4623583, 53.9426222 27.4610721, 49.0695384 8.4769683, 48.0932847 11.5017335, 48.0937299 11.5018776, 54.4713551 18.5103748, 54.4717318 18.5107845, 54.4717837 18.5101861, 54.4714100 18.5097282, 54.4716809 18.5114724, 54.4718427 18.5095209, 54.4713116 18.5110862, 48.0939111 11.5021066, 48.1565869 11.4252515, 48.1561302 11.4238277, 48.1561411 11.4243217, 48.1564745 11.4257025, 48.1566886 11.4256573, 48.1565574 11.4261767, 48.1564587 11.4247394, 48.1563658 11.4243492, 48.1562610 11.4247677, 48.1563419 11.4252642, 53.9539923 27.6665433, 53.9537073 27.6653737, 53.8758597 27.5451387, 53.8758415 27.5457516, 49.0349180 8.3507957, 49.0346723 8.3509862, 49.0344956 8.3507054, 51.5031833 3.4809628 +Königreichssaal, Kirche am Markt, Angehörigen Kapelle, Freie evangelische Gemeinde, Christliche Baptistengemeinde, Evangelische Friedenskirche, Peterskirche, Heiliggeistkirche, St. Michael, St. Vitus, St. Albert, Sankt Paul, St. Raphael, Neuapostolische Kirche, Jakobuskirche, Johanneskirche, Adventgemeinde Heidelberg, Markushaus, St. Bonifatius, Evangelisches Gemeindezentrum, Hoffnungskirche, St. Johannes, Jesuitenkirche, Providenzkirche, Lutherkirche, Chapel, Neuapostolische Kirche, St. Bartholomäus, Kreuzkirche, Christuskirche, Alte Kirche - St. Bartholomäus, Bergkirche, Gutleuthofkapelle, Emmaus-Gemeinde, Lukaskirche, Sankt Anna, Versöhnungskirche, Evangelische Studierendengemeinde (Karl-Jaspers-Haus), Die ARCHE - Evangelische Wichern-Gemeinde, St. Thomas, Abteikirche Stift Neuburg, St. Laurentius, St. Teresa Kirche, Melanchthonkirche, St. Marien, St. Johann der Täufer, St. Laurentius, Sankt Peter, Peterskirche, St. Peter, Kirche Jesu Christi, Erlöserkirche +173 +yes +35 +no +tertiary, tertiary, tertiary, tertiary +yes +55.9579565 -3.2439627 +Ciao Roma, Zizzi, Cafe Arista, Osteria Del Tempo Perso, Entwine, Piatto Verde, Pizza Express, Prezzo, Giuliano's, Cafe Domenico's, Vittoria, De Niro, Al Dente, Papillo, Il Castello, Anima, Valvona & Crolla, Vittoria, Italian Connection, Inca, Bella Italia, OriganoGo, Eatalia's, Amarone Pizzeria, Caffe e Cucina, Mia, Zucca, Quattero Zero, Zizzi, Caffe Centro, La Bruschetta, Gali, Veritas, Locanda De Gusti, Rigatoni's, Bella Italia, La Lanterna, Gusto, Strada, Milano, Bar Italia, Al Borgo, Pizza Hut, Jamie's Italian, La Barca, Asti, Pizza Express, Gennaro, Civerinos, The Hispanola, Sambuca, The Sicilian Restaurant, Al Fresco, Mamma Roma, Giuliano's, La Favorita, Nonna's, Dantes, La Favorita, Rigatoni, Positano, Cucina, The New Bell, Zizzi, Jolly, Moratti, Lucano's Kitchen, GAIA Italian Delicatessen, Tani Modi, Frizzante, Pizza Bar, Taste of Italy, Enjoy - Gusto Italiano, Deli Di Rollo, Tony Macaroni, Ask Italian, Fabio's +yes +yes +508 +0.3066907550557873 +Picardy Place +Maison Verte, Calvary Chapel, Temple de l'Oratoire du Louvre, Temple Sainte-Marie, Temple de la Rencontre, Église protestante chinoise de Paris, Temple protestant du Foyer de l'Âme, Église Réformée du Luxembourg, Église Réformée du Saint-Esprit, Temple de Pentemont, Deutsche Evangelische Christuskirche Paris, Église Réformée chinoise de Belleville, Église Protestante Danoise, Temple des Batignolles, Paroisse de Plaisance, Église Réformée de l'Annonciation, Église Luthérienne de l'Ascension, Temple Réformé de l'Etoile, Église Protestante Suéduoise +48.8876919 2.3789669 +yes +80 +1565 and Mont Aigoual, 1685, 1179 and Roc de Peyre, 175 and Mont Saint-Clair, 221.79 and Dent de Marcoule, 1067.87 and Mont Mimat, 1101.8, 1417.39 and Mont Grand, 620 and Guidon du Bouquet, 398 and Le Coutach, 470 and Leiris, 848 and Mont Saint-Baudille, 1562 and Le Rocher des Laubies, 1503 and Le Moure de la Gardille, 1680 and Pic Cassini, 1247 and Mont Gargo, 185 and Mont Saint-Bauzille, 1001 and Mont Milan, 752 and Roc Castel, 481 and Pic de Vissou, 864 and Pic d'Anjeau, 940 and La Seranne, 1551 and Truc de Fortunio, 1366 and Saint-Guiral, 535 and Mont Liausson, 502 and Mont Mars, 822 and Mauripe, Sauque Rounde, Gratassac, 914 and Pic de la Tourette, 330 and La Pourcaresse, 1008 and Truc de Grèzes, 325 and La Suque, 1192 and Pic d'Usclat, 1203.8, 1174, 1211.1 and Le Tourrel, 1127.7, 1106.55 and Mont Chabrio, 1657.41 and Signal des Laubies, 1674.3, 1031.1 and La Chaumette, 1421.47 and Signal du Bouges, 662 and Pic Saint-Loup, 1421 and Montagne du Liconès, 1151 and Puech d'Alluech, 1057.6, 1699.27 and Signal de Finiels, 525 and Mont Haut, 782 and Peyre Martine, Puech Bartelié, 1233.2 and Esquino d'Aze, 1075.97 and Serre de Pauparelle, 1152.68, 1219.84, 1239.07, 695 and Signal de Saint Pierre, 1688, 815 and Mont Brion, 112 and Mont Saint-Loup, 333, 567 and Pic d'Arbousse, 1111 and Serre de Montgros, La Pène, Bloc de la Capelle, 487 and Puech Ferrié, 722 and L'Oiselette, 420 and Puech Auras, 388 and Pic de Vissounel, 205 and Le Céressou +48.8316281 2.3594731, 48.8535333 2.4151180, 48.8256612 2.4077565, 48.8801709 2.3706981, 48.8556200 2.3068506, 48.8652569 2.3516674, 48.8950280 2.3447570, 48.8315802 2.3158225, 48.8300663 2.3232285, 48.8314449 2.3165689, 48.8298344 2.3228877, 48.8311423 2.3178852, 48.8319942 2.3245602, 48.8758196 2.3557131, 48.8304021 2.3248398, 48.8673061 2.3458878, 48.8595728 2.3896050, 48.8730354 2.3533915, 48.8702836 2.3508959, 48.8721968 2.3539367, 48.8510673 2.3670936, 48.8569549 2.3497208, 48.8562998 2.3535246, 48.8569724 2.3588681, 48.8570939 2.3592300, 48.8706615 2.3508326, 48.8417539 2.3228265, 48.8417906 2.3194104, 48.8373758 2.3176784, 48.8494146 2.3482770, 48.8514966 2.3009053, 48.8534705 2.3029031, 48.8528568 2.3020177, 48.8494772 2.3513322, 48.8521302 2.3358217, 48.8525398 2.3683116, 48.8513092 2.3691996, 48.8555874 2.3684232, 48.8769065 2.3805802, 48.8794107 2.3753630, 48.8553332 2.3464366, 48.8537039 2.3474380, 48.8389743 2.3594500, 48.8528715 2.3435491, 48.8513763 2.3250565, 48.8393301 2.3500747, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8688161 2.3275703, 48.8618492 2.3434997, 48.8624039 2.3374638, 48.8663165 2.3370822, 48.8672925 2.3255509, 48.8616428 2.3359304, 48.8659000 2.3372420, 48.8615254 2.3440287, 48.8586437 2.3458501, 48.8674660 2.3326727, 48.8663449 2.3382902, 48.8663903 2.3380844, 48.8660027 2.3646613, 48.8573191 2.3660431, 48.8580708 2.3643313, 48.8654622 2.3553300, 48.8577587 2.3607290, 48.8630297 2.3612527, 48.8644553 2.3543144, 48.8363545 2.3536716, 48.8522718 2.3406371, 48.8376679 2.3201690, 48.8483622 2.3739893, 48.8491606 2.4165683, 48.8391922 2.3168608, 48.8346500 2.3172863, 48.8319392 2.3309271, 48.8453963 2.3255943, 48.8445352 2.3242726, 48.8414313 2.3069539, 48.8674536 2.3536254, 48.8648091 2.3411291, 48.8687993 2.3373273, 48.8648222 2.3475072, 48.8689038 2.3422059, 48.8643869 2.3503038, 48.8695611 2.3317879, 48.8691942 2.3321035, 48.8663658 2.3442726, 48.8609918 2.3544137, 48.8562397 2.3610652, 48.8557612 2.3561274, 48.8533876 2.3620076, 48.8575825 2.3562566, 48.8577181 2.3586116, 48.8555900 2.3628380, 48.8577346 2.3566096, 48.8553135 2.3591057, 48.8536147 2.3682805, 48.8533255 2.3540705, 48.8573914 2.3563278, 48.8574318 2.3576301, 48.8572146 2.3577144, 48.8577212 2.3576336, 48.8563923 2.3573717, 48.8608795 2.3526163, 48.8437435 2.3544856, 48.8498300 2.3549148, 48.8446680 2.3483159, 48.8526137 2.3467084, 48.8429884 2.3495493, 48.8423393 2.3498473, 48.8474495 2.3471573, 48.8527413 2.3333559, 48.8405040 2.3347917, 48.8556694 2.3399888, 48.8555375 2.3409454, 48.8537528 2.3324105, 48.8533939 2.3394107, 48.8493501 2.3391528, 48.8546811 2.3332029, 48.8497831 2.3401650, 48.8441458 2.3298957, 48.8468341 2.3265156, 48.8550882 2.3414828, 48.8442966 2.3310034, 48.8510774 2.3385693, 48.8540787 2.3330795, 48.8541444 2.3326307, 48.8680799 2.3215688, 48.8710439 2.3094204, 48.8702443 2.3283595, 48.8732490 2.3415929, 48.8476672 2.3527426, 48.8460795 2.3742445, 48.8468043 2.3696423, 48.8438489 2.3721964, 48.8714582 2.3357136, 48.8719507 2.3429771, 48.8718710 2.3418144, 48.8705409 2.3532213, 48.8711564 2.3649322, 48.8755778 2.3590863, 48.8759060 2.3588881, 48.8727960 2.3635124, 48.8526670 2.3323656, 48.8494031 2.3370695, 48.8445885 2.3722564, 48.8439502 2.3728916, 48.8636179 2.3671410, 48.8660128 2.3794462, 48.8638290 2.3670497, 48.8679153 2.3737355, 48.8656744 2.3707975, 48.8683924 2.3793396, 48.8645151 2.3730525, 48.8679409 2.3754781, 48.8554631 2.3741053, 48.8533962 2.3787654, 48.8554359 2.3744522, 48.8533316 2.3759759, 48.8561021 2.3751898, 48.8667776 2.3826288, 48.8656637 2.3778893, 48.8658803 2.3779414, 48.8657344 2.3781951, 48.8655073 2.3763355, 48.8659834 2.3791601, 48.8663909 2.3810388, 48.8525909 2.3744869, 48.8567799 2.3773631, 48.8249137 2.3571341, 48.8260261 2.3459422, 48.8473223 2.3735841, 48.8263535 2.3601541, 48.8263671 2.3595230, 48.8278970 2.3505521, 48.8349997 2.3270026, 48.8332286 2.3157120, 48.8234665 2.3685489, 48.8840787 2.3324082, 48.8865294 2.3408144, 48.8869322 2.3399586, 48.8847049 2.3404648, 48.8267459 2.3664051, 48.8615333 2.3574473, 48.8596461 2.3534386, 48.8501935 2.3250319, 48.8470403 2.3693549, 48.8452383 2.3641683, 48.8523143 2.3350471, 48.8755021 2.3103942, 48.8516415 2.3185465, 48.8482525 2.3194882, 48.8604171 2.3059560, 48.8537038 2.3235630, 48.8449146 2.3734371, 48.8421585 2.3029483, 48.8406684 2.3041928, 48.8437952 2.3734663, 48.8695170 2.4328399, 48.8536740 2.4053556, 48.8523799 2.4036853, 48.8559899 2.3159343, 48.8554206 2.3183101, 48.8488472 2.3218448, 48.8514780 2.3379065, 48.8683478 2.4330037, 48.8545251 2.3212715, 48.8526298 2.3263322, 48.8521100 2.3268827, 48.8528896 2.3356791, 48.8514207 2.3433804, 48.8795968 2.3519355, 48.8522486 2.3480461, 48.8513208 2.3334888, 48.8516658 2.3278801, 48.8486899 2.3209398, 48.8474544 2.3181308, 48.8433635 2.3051384, 48.8227135 2.3260702, 48.8189756 2.3612028, 48.8469142 2.3813987, 48.8464198 2.3775114, 48.8442218 2.3811783, 48.8444155 2.3816924, 48.8469709 2.3171693, 48.8504070 2.3475208, 48.8499365 2.3494237, 48.8508359 2.3253843, 48.8522270 2.3302639, 48.8469113 2.3137238, 48.8454762 2.3120307, 48.8455138 2.3102008, 48.8413443 2.3078397, 48.8453869 2.3708665, 48.8444301 2.3181336, 48.8435094 2.3104432, 48.8459721 2.3236611, 48.8479947 2.3295614, 48.8484226 2.3426974, 48.8517684 2.3387959, 48.8507495 2.3326789, 48.8455266 2.3019080, 48.8465149 2.3169266, 48.8496947 2.3229620, 48.8529756 2.3361563, 48.8513821 2.3427739, 48.8842024 2.3388617, 48.8475761 2.3025411, 48.8477633 2.3023462, 48.8560670 2.3097025, 48.8734018 2.3235239, 48.8712726 2.3703692, 48.8477136 2.3011375, 48.8430732 2.3244918, 48.8424588 2.3289261, 48.8434993 2.3257407, 48.8420387 2.3244015, 48.8384698 2.3158768, 48.8395778 2.3094998, 48.8430511 2.3069675, 48.8427695 2.3027722, 48.8425061 2.3025319, 48.8428313 2.3024426, 48.8416259 2.3030314, 48.8416654 2.3032066, 48.8420231 2.3029260, 48.8550776 2.3535796, 48.8568920 2.3534398, 48.8568210 2.3523008, 48.8441911 2.3082755, 48.8428872 2.3031638, 48.8473525 2.3160099, 48.8544589 2.4006544, 48.8435952 2.3057630, 48.8424518 2.3053432, 48.8425946 2.3237083, 48.8432872 2.3245561, 48.8437904 2.3249468, 48.8437882 2.3156320, 48.8616525 2.3535093, 48.8532432 2.3117287, 48.8490001 2.3033585, 48.8446716 2.3110739, 48.8532560 2.3307851, 48.8541427 2.3314320, 48.8475203 2.3650738, 48.8476495 2.3658974, 48.8459217 2.3669243, 48.8461560 2.3704219, 48.8475463 2.3713427, 48.8480731 2.3678319, 48.8537482 2.3105482, 48.8500524 2.3076923, 48.8510323 2.3074986, 48.8536610 2.3238906, 48.8500734 2.3482448, 48.8501755 2.3620809, 48.8501676 2.3621707, 48.8579355 2.3103822, 48.8579412 2.3104681, 48.8578708 2.3103454, 48.8593908 2.3144172, 48.8585003 2.3229386, 48.8770907 2.3512337, 48.8505668 2.3455319, 48.8492048 2.3556646, 48.8452432 2.3693333, 48.8330905 2.3364353, 48.8244377 2.4128671, 48.8425359 2.3619057, 48.8428025 2.3037927, 48.8361460 2.3103122, 48.8364203 2.3067894, 48.8374026 2.3058911, 48.8594450 2.4361085, 48.8596579 2.4367736, 48.8583758 2.4318504, 48.8582168 2.4316682, 48.8576232 2.4273765, 48.8572770 2.4234848, 48.8585303 2.4270690, 48.8585303 2.4271390, 48.8587147 2.4278326, 48.8586655 2.4271302, 48.8595368 2.4236590, 48.8617417 2.4314904, 48.8595521 2.4310009, 48.8586441 2.4359228, 48.8485711 2.3284734, 48.8506902 2.3304172, 48.8463195 2.3671559, 48.8513330 2.3624841, 48.8535846 2.3574562, 48.8452225 2.3735396, 48.8448045 2.3735389, 48.8569169 2.3216982, 48.8558498 2.3207071, 48.8543421 2.3306133, 48.8566284 2.3271644, 48.8406788 2.3548958, 48.8510369 2.3288914, 48.8500011 2.3270079, 48.8477830 2.3233449, 48.8454622 2.3188063, 48.8596007 2.4367605, 48.8595599 2.4367534, 48.8225672 2.4097572, 48.8598508 2.3183041, 48.8597204 2.3183152, 48.8457331 2.3099256, 48.8472412 2.3109555, 48.8476453 2.3135075, 48.8500676 2.3175242, 48.8540017 2.3240619, 48.8517950 2.3250816, 48.8517770 2.3252172, 48.8516223 2.3251656, 48.8427713 2.3209171, 48.8441669 2.3200259, 48.8607606 2.3756443, 48.8299268 2.3465439, 48.8383937 2.3485348, 48.8403879 2.3515598, 48.8398105 2.3061597, 48.8586271 2.3007824, 48.8449916 2.3240393, 48.8460429 2.3238386, 48.8697560 2.3414883, 48.8690961 2.3437971, 48.8797179 2.3570269, 48.8253815 2.3947492, 48.8197981 2.4160056, 48.8649605 2.3450799, 48.8670451 2.3482613, 48.8671035 2.3471909, 48.8451704 2.3284896, 48.8691369 2.3682501, 48.8813252 2.3220105, 48.8274124 2.3148434, 48.8524729 2.3738150, 48.8673444 2.3739608, 48.8672350 2.3692879, 48.8826925 2.3828693, 48.8662404 2.3855356, 48.8632240 2.3875689, 48.8570811 2.3559832, 48.8588049 2.3266129, 48.8334988 2.3198962, 48.8276899 2.3209286, 48.8527753 2.4059315, 48.8445460 2.4150005, 48.8551966 2.4016334, 48.8540343 2.4058858, 48.8413622 2.3437999, 48.8415875 2.3505588, 48.8403969 2.3564692, 48.8523285 2.3288972, 48.8651191 2.3417893, 48.8551322 2.4190472, 48.8550176 2.4194858, 48.8553049 2.4152098, 48.8545966 2.4174281, 48.8546120 2.4176273, 48.8526512 2.4178210, 48.8528087 2.4179553, 48.8527870 2.4179611, 48.8526158 2.4179109, 48.8525735 2.4179149, 48.8525881 2.4179488, 48.8549902 2.4154032, 48.8523892 2.4174521, 48.8530297 2.4225414, 48.8531799 2.4227035, 48.8528780 2.4238693, 48.8529118 2.4245808, 48.8536761 2.4245154, 48.8536539 2.4244823, 48.8528640 2.4239020, 48.8526561 2.4238459, 48.8528444 2.4236233, 48.8518298 2.4239552, 48.8489614 2.4262759, 48.8491888 2.4232171, 48.8506435 2.4183607, 48.8509170 2.4210877, 48.8509252 2.4212226, 48.8494689 2.4189858, 48.8492857 2.4177520, 48.8493804 2.4178251, 48.8517003 2.4182236, 48.8546953 2.4230965, 48.8686452 2.3957029, 48.8728505 2.3993800, 48.8724174 2.3980455, 48.8686944 2.3502259, 48.8709590 2.3477192, 48.8410120 2.3066005, 48.8751549 2.3379848, 48.8733432 2.3379745, 48.8297742 2.3340925, 48.8317381 2.3369416, 48.8352367 2.3263118, 48.8495920 2.3118988, 48.8652332 2.3505855, 48.8661215 2.3507823, 48.8678615 2.3515176, 48.8681982 2.3520494, 48.8739628 2.3483713, 48.8742224 2.3396921, 48.8742897 2.3390843, 48.8761301 2.3377037, 48.8488951 2.3254247, 48.8488333 2.3253506, 48.8545441 2.4229761, 48.8544631 2.4223445, 48.8542523 2.4219270, 48.8570028 2.3007925, 48.8386496 2.3228171, 48.8374062 2.4163948, 48.8647212 2.3469127, 48.8694050 2.3549341, 48.8693462 2.3552659, 48.8626842 2.3440139, 48.8535511 2.4188088, 48.8536584 2.4195641, 48.8461967 2.3783357, 48.8657442 2.3458247, 48.8658103 2.3452891, 48.8717201 2.3371530, 48.8699489 2.3360007, 48.8728819 2.3542143, 48.8745507 2.3567836, 48.8763320 2.3353305, 48.8742181 2.3379134, 48.8840331 2.3599166, 48.8797487 2.3564752, 48.8827832 2.3594133, 48.8346693 2.3672842, 48.8428024 2.3024212, 48.8337013 2.3466308, 48.8331651 2.3445213, 48.8634544 2.3348757, 48.8707881 2.3459106, 48.8713990 2.3457625, 48.8566023 2.4025142, 48.8561996 2.4042235, 48.8655369 2.4143919, 48.8655234 2.4149389, 48.8448495 2.3836596, 48.8463962 2.3870738, 48.8302539 2.3458528, 48.8323134 2.3554348, 48.8588835 2.3307705, 48.8697776 2.3105917, 48.8686679 2.3066263, 48.8701667 2.3511661, 48.8626616 2.3670401, 48.8581081 2.3677623, 48.8687918 2.3397996, 48.8520874 2.3738549, 48.8582001 2.3497997, 48.8583079 2.3497964, 48.8535124 2.3349428, 48.8534242 2.3334679, 48.8496184 2.3521690, 48.8494725 2.3556898, 48.8502265 2.3482852, 48.8499990 2.3688118, 48.8622352 2.3395906, 48.8621947 2.3416613, 48.8671351 2.3657118, 48.8667808 2.3656961, 48.8666591 2.3656152, 48.8664563 2.3643496, 48.8667250 2.3639036, 48.8684771 2.3626799, 48.8666678 2.3662969, 48.8665492 2.3669492, 48.8666829 2.3679194, 48.8657085 2.3712657, 48.8655987 2.3744866, 48.8637682 2.3814854, 48.8632649 2.3858206, 48.8630511 2.3852954, 48.8632411 2.3861008, 48.8633561 2.3882344, 48.8626607 2.3872306, 48.8786773 2.3755952, 48.8785775 2.3753580, 48.8782645 2.3740462, 48.8779867 2.3739646, 48.8781966 2.3734146, 48.8782398 2.3737861, 48.8774801 2.3700505, 48.8781543 2.3710006, 48.8774751 2.3738895, 48.8782178 2.3740370, 48.8740973 2.3752962, 48.8811959 2.3730150, 48.8822577 2.3705521, 48.8784404 2.3739693, 48.8783411 2.3725952, 48.8780431 2.3720976, 48.8783247 2.3732090, 48.8838984 2.3707556, 48.8841289 2.3719174, 48.8479197 2.3992555, 48.8426264 2.3901753, 48.8484038 2.3977491, 48.8463128 2.3945522, 48.8759764 2.3707416, 48.8532985 2.3263609, 48.8420601 2.3893615, 48.8563247 2.3152562, 48.8820575 2.3366575, 48.8827175 2.3362016, 48.8798316 2.3403839, 48.8821984 2.3397918, 48.8721672 2.3266440, 48.8360044 2.3574926, 48.8237611 2.3626525, 48.8815299 2.3159881, 48.8813511 2.3153761, 48.8317250 2.3147515, 48.8318670 2.3144693, 48.8311601 2.3117228, 48.8587218 2.4028880, 48.8521928 2.4013589, 48.8542722 2.4004111, 48.8884003 2.3790168, 48.8823672 2.3208340, 48.8822341 2.3195753, 48.8829037 2.3179094, 48.8456068 2.3428904, 48.8477330 2.3484405, 48.8415272 2.3511512, 48.8718873 2.3570864, 48.8288139 2.3506397, 48.8477803 2.3019256, 48.8477295 2.3020629, 48.8845714 2.3233053, 48.8844355 2.3243334, 48.8851266 2.3251655, 48.8867718 2.3236539, 48.8847610 2.3245933, 48.8879876 2.3341073, 48.8889479 2.3316294, 48.8689224 2.3335350, 48.8454862 2.3697712, 48.8835953 2.3233585, 48.8492934 2.3349249, 48.8504228 2.4065330, 48.8611046 2.3413657, 48.8610917 2.3414339, 48.8517156 2.3336409, 48.8858410 2.3405929, 48.8891314 2.3403708, 48.8717809 2.3937884, 48.8685166 2.3920862, 48.8876134 2.3796187, 48.8580038 2.3999627, 48.8595367 2.4030888, 48.8600086 2.4039364, 48.8566933 2.4002542, 48.8387954 2.3034409, 48.8844316 2.3506830, 48.8491445 2.3035292, 48.8188844 2.3237502, 48.8178584 2.3299165, 48.8609633 2.3016431, 48.8609068 2.3015143, 48.8542989 2.3051382, 48.8473002 2.3015819, 48.8466733 2.3017106, 48.8457695 2.3018737, 48.8455718 2.3018823, 48.8649951 2.3377982, 48.8491104 2.3034797, 48.8475898 2.3031985, 48.8522469 2.3266487, 48.8531701 2.3263925, 48.8521565 2.3266646, 48.8515210 2.3266631, 48.8762160 2.3198347, 48.8759240 2.3229225, 48.8751239 2.3193212, 48.8752707 2.3164208, 48.8754510 2.3155141, 48.8777916 2.3180541, 48.8765765 2.3175668, 48.8766173 2.3130385, 48.8766073 2.3132319, 48.8796223 2.3145554, 48.8795914 2.3183667, 48.8806320 2.3194004, 48.8818486 2.3225844, 48.8809530 2.3244796, 48.8380635 2.3056765, 48.8403553 2.3038378, 48.8523905 2.3413027, 48.8524074 2.3414445, 48.8456039 2.3547969, 48.8453724 2.3548312, 48.8489616 2.3391032, 48.8637261 2.3340606, 48.8639768 2.3341784, 48.8643067 2.3348568, 48.8728127 2.3145756, 48.8727422 2.3099714, 48.8727355 2.3082352, 48.8716299 2.3140084, 48.8730075 2.3164825, 48.8736476 2.3204627, 48.8736614 2.3208856, 48.8706262 2.3242484, 48.8724892 2.3267639, 48.8722561 2.3259576, 48.8732165 2.3236650, 48.8735008 2.3203236, 48.8700637 2.3230592, 48.8715224 2.3074911, 48.8704701 2.3076472, 48.8415760 2.3664732, 48.8414831 2.3661485, 48.8712783 2.3155587, 48.8605866 2.3617807, 48.8835954 2.3291657, 48.8820013 2.3330275, 48.8455384 2.3288228, 48.8536478 2.3380576, 48.8276825 2.3271004, 48.8290423 2.3331547, 48.8519626 2.3388319, 48.8526502 2.3390840, 48.8536059 2.3382770, 48.8538386 2.3384740, 48.8539544 2.3370609, 48.8533551 2.3356842, 48.8276087 2.3346707, 48.8300397 2.3310990, 48.8332389 2.3329284, 48.8526288 2.3385336, 48.8415160 2.3436440, 48.8445750 2.3454978, 48.8450073 2.3757975, 48.8442783 2.3769332, 48.8538018 2.3337187, 48.8193344 2.3436498, 48.8697269 2.3107378, 48.8923205 2.3416630, 48.8925057 2.3450965, 48.8374507 2.3523064, 48.8364602 2.3723041, 48.8365958 2.3740207, 48.8351429 2.3731146, 48.8326142 2.3712146, 48.8327554 2.3711889, 48.8324164 2.3712490, 48.8322017 2.3717812, 48.8320209 2.3720902, 48.8302972 2.3730300, 48.8296716 2.3756826, 48.8294477 2.3759592, 48.8294224 2.3758727, 48.8287187 2.3763882, 48.8284793 2.3763149, 48.8283871 2.3766017, 48.8424152 2.3276286, 48.8413725 2.3310575, 48.8319838 2.3583000, 48.8579325 2.3515044, 48.8904568 2.3984851, 48.8874715 2.3994717, 48.8858277 2.3979326, 48.8892044 2.3949432, 48.8536039 2.3444118, 48.8535412 2.3444065, 48.8515050 2.3430786, 48.8501002 2.3428094, 48.8499611 2.3431466, 48.8497535 2.3430298, 48.8497377 2.3428278, 48.8481900 2.3416831, 48.8473294 2.3412516, 48.8461467 2.3400524, 48.8307271 2.3566617, 48.8307708 2.3567939, 48.8308701 2.3570791, 48.8327092 2.3625620, 48.8317439 2.3618766, 48.8566767 2.3570162, 48.8569081 2.3579840, 48.8329491 2.3541747, 48.8335351 2.3537862, 48.8304784 2.3562767, 48.8312038 2.3565530, 48.8333114 2.3539298, 48.8336129 2.3544305, 48.8334332 2.3545467, 48.8326050 2.3544168, 48.8322707 2.3582796, 48.8921108 2.3751961, 48.8920516 2.3752857, 48.8770457 2.4050940, 48.8770622 2.4052339, 48.8527942 2.4060014, 48.8334170 2.3554490, 48.8522066 2.3483892, 48.8524157 2.3382646, 48.8457103 2.3192202, 48.8544496 2.3557731, 48.8523526 2.3444419, 48.8568120 2.3062305, 48.8342726 2.3085148, 48.8341153 2.3087657, 48.8338554 2.3083709, 48.8537402 2.4056302, 48.8538057 2.4056125, 48.8530182 2.4058632, 48.8484568 2.3995601, 48.8478160 2.3975417, 48.8422244 2.3415804, 48.8540277 2.3358692, 48.8551205 2.3589562, 48.8390776 2.3214724, 48.8828817 2.3596543, 48.8641255 2.3676318, 48.8692451 2.3919892, 48.8554073 2.3268543, 48.8503222 2.3325549, 48.8682344 2.3721212, 48.8718838 2.3720170, 48.8336932 2.3094058, 48.8697474 2.3709540, 48.8716445 2.3921866, 48.8704428 2.3883722, 48.8729609 2.3894775, 48.8703637 2.3893764, 48.8807957 2.3680128, 48.8659081 2.3781743, 48.8612701 2.3773844, 48.8612386 2.3747133, 48.8643442 2.3783526, 48.8593821 2.3790898, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8412432 2.3252996, 48.8409061 2.3218163, 48.8814427 2.3685496, 48.8743311 2.3737383, 48.8703950 2.3709651, 48.8694860 2.3821154, 48.8695013 2.3822447, 48.8700223 2.3840638, 48.8702788 2.3842745, 48.8700731 2.3844758, 48.8701522 2.3848448, 48.8702594 2.3860980, 48.8702820 2.3863469, 48.8705756 2.3882952, 48.8715131 2.3862265, 48.8715301 2.3874968, 48.8726817 2.3841494, 48.8726253 2.3842524, 48.8613883 2.3754494, 48.8726648 2.3889559, 48.8690010 2.3856816, 48.8692544 2.3857069, 48.8778698 2.3509743, 48.8782964 2.4109300, 48.8529470 2.3434116, 48.8573363 2.3574834, 48.8575522 2.3577300, 48.8534187 2.3767493, 48.8732512 2.3826034, 48.8719640 2.3809798, 48.8715747 2.3812545, 48.8707876 2.3814258, 48.8701383 2.3797607, 48.8701349 2.3796773, 48.8696528 2.3800869, 48.8703047 2.3816624, 48.8725516 2.3783579, 48.8724783 2.3782205, 48.8689756 2.3829202, 48.8689555 2.3855043, 48.8673835 2.3830489, 48.8674758 2.3831632, 48.8680300 2.3851169, 48.8681056 2.3856641, 48.8694555 2.3406786, 48.8522494 2.3344508, 48.8742283 2.3755427, 48.8683745 2.3500412, 48.8806072 2.3538936, 48.8692096 2.3486800, 48.8675048 2.3473847, 48.8702235 2.3490322, 48.8700483 2.3490020, 48.8535279 2.3681762, 48.8404976 2.3244044, 48.8431992 2.3244536, 48.8547827 2.4053007, 48.8638253 2.3808706, 48.8611898 2.3813091, 48.8845723 2.4081565, 48.8949604 2.3648581, 48.8950049 2.3648565, 48.8948520 2.3651050, 48.8489374 2.3729446, 48.8482032 2.3715312, 48.8484200 2.3719584, 48.8482427 2.3721197, 48.8484636 2.3724140, 48.8471107 2.3753997, 48.8890111 2.3798549, 48.8455069 2.3806458, 48.8630805 2.4151688, 48.8523266 2.4155894, 48.8470542 2.4160413, 48.8470892 2.4158499, 48.8659368 2.3775981, 48.8464606 2.4154979, 48.8462106 2.4156776, 48.8439439 2.4149475, 48.8416186 2.4152244, 48.8415917 2.4151604, 48.8347493 2.4131753, 48.8467984 2.3769382, 48.8456871 2.3741212, 48.8483053 2.3759065, 48.8482055 2.3763201, 48.8462392 2.3793434, 48.8442424 2.3717797, 48.8818782 2.3342987, 48.8882137 2.3785003, 48.8723344 2.3492288, 48.8838281 2.3984467, 48.8813616 2.3964237, 48.8802443 2.3966361, 48.8842507 2.3842625, 48.8211748 2.3337795, 48.8336473 2.4129352, 48.8370031 2.4203543, 48.8446086 2.4216697, 48.8414397 2.4307042, 48.8509876 2.3461191, 48.8533987 2.4060810, 48.8570374 2.4045098, 48.8573212 2.4038990, 48.8305048 2.3677879, 48.8498852 2.3079985, 48.8510833 2.3092502, 48.8512789 2.3096976, 48.8513322 2.3097491, 48.8405382 2.3537295, 48.8404563 2.3540242, 48.8406418 2.3541771, 48.8411143 2.3555601, 48.8460249 2.3758514, 48.8459315 2.3760161, 48.8460309 2.3745805, 48.8457501 2.3710340, 48.8243871 2.4184684, 48.8491257 2.3916769, 48.8492146 2.3916803, 48.8505550 2.3903815, 48.8507318 2.3902220, 48.8518448 2.3890950, 48.8521875 2.3889688, 48.8517486 2.3881145, 48.8515667 2.3867566, 48.8523206 2.3894881, 48.8526340 2.3885654, 48.8354329 2.4314376, 48.8250001 2.3885505, 48.8211687 2.3786713, 48.8202354 2.3234198, 48.8273026 2.3137753, 48.8321419 2.3413424, 48.8314413 2.3409219, 48.8332267 2.3368964, 48.8330200 2.3329456, 48.8331702 2.3326392, 48.8398137 2.3124499, 48.8387859 2.3504803, 48.8387241 2.3502199, 48.8398577 2.3474231, 48.8182194 2.3532369, 48.8176870 2.3444409, 48.8162346 2.3441572, 48.8163362 2.3406043, 48.8460504 2.3085941, 48.8525976 2.3324258, 48.8525749 2.3316556, 48.8516359 2.3307926, 48.8533286 2.3346314, 48.8528637 2.3346429, 48.8478855 2.3676795, 48.8167450 2.3551427, 48.8212529 2.3213669, 48.8823390 2.3402606, 48.8742044 2.3259209, 48.8472243 2.3185062, 48.8841355 2.3287497, 48.8889153 2.3930360, 48.8882804 2.3908204, 48.8860526 2.3426933, 48.8826497 2.3364419, 48.8346575 2.3330609, 48.8181616 2.3296906, 48.8848011 2.3248579, 48.8514886 2.3986829, 48.8549220 2.3872314, 48.8543661 2.3848507, 48.8538830 2.3825811, 48.8504767 2.3825850, 48.8503080 2.3839716, 48.8499521 2.3844522, 48.8504791 2.3876698, 48.8492760 2.3949290, 48.8574923 2.3804674, 48.8564633 2.3790389, 48.8525384 2.3807630, 48.8796218 2.3265596, 48.8779635 2.3272883, 48.8781948 2.3299908, 48.8767294 2.3305305, 48.8765720 2.3325312, 48.8768744 2.3327773, 48.8777601 2.3273644, 48.8741098 2.3268289, 48.8747962 2.3265054, 48.8754796 2.3249611, 48.8742093 2.3255963, 48.8813849 2.3314972, 48.8751600 2.3319950, 48.8605695 2.4368663, 48.8693736 2.3204383, 48.8691297 2.3202320, 48.8698925 2.3226128, 48.8691755 2.3245526, 48.8690381 2.3244370, 48.8682809 2.3089380, 48.8675830 2.3075899, 48.8668994 2.3066488, 48.8662025 2.3081844, 48.8649899 2.3027111, 48.8652497 2.3101782, 48.8668521 2.3157882, 48.8672033 2.3175552, 48.8672812 2.3170088, 48.8189432 2.3244643, 48.8181334 2.3302614, 48.8721604 2.3295724, 48.8728406 2.3283120, 48.8729832 2.3294159, 48.8510874 2.3007761, 48.8300837 2.3230365, 48.8296810 2.3218792, 48.8296720 2.3219044, 48.8295085 2.3227327, 48.8297359 2.3228829, 48.8630061 2.3625592, 48.8628927 2.3617428, 48.8198243 2.3386394, 48.8189960 2.3382666, 48.8142814 2.3410360, 48.8528282 2.4062488, 48.8617353 2.4310729, 48.8535709 2.4057993, 48.8532189 2.4059066, 48.8570643 2.4044749, 48.8514868 2.4001157, 48.8516562 2.4009396, 48.8517240 2.4013602, 48.8474511 2.3483430, 48.8572672 2.4160273, 48.8583893 2.4147064, 48.8532082 2.4034787, 48.8521024 2.4034631, 48.8522256 2.4039240, 48.8525358 2.4040103, 48.8520446 2.4018024, 48.8517989 2.4013336, 48.8513195 2.3984311, 48.8513939 2.3984124, 48.8514736 2.3982217, 48.8516489 2.3984431, 48.8529986 2.3973185, 48.8533079 2.3971045, 48.8538176 2.3967148, 48.8539232 2.3938833, 48.8537772 2.3960030, 48.8542199 2.3960813, 48.8547572 2.3940413, 48.8553405 2.3950264, 48.8672258 2.3079158, 48.8332144 2.3333365, 48.8375393 2.3360135, 48.8402279 2.3373018, 48.8838613 2.3277184, 48.8849265 2.3336510, 48.8861318 2.3340926, 48.8892891 2.3930976, 48.8880361 2.3910565, 48.8518790 2.3487080, 48.8427433 2.3125629, 48.8405803 2.3153009, 48.8411229 2.3744020, 48.8573006 2.4349186, 48.8535844 2.4342564, 48.8547894 2.4359043, 48.8553838 2.4327661, 48.8556487 2.4310475, 48.8564412 2.4331210, 48.8539672 2.4318288, 48.8540737 2.4317427, 48.8540666 2.4317775, 48.8542034 2.4314571, 48.8533412 2.4300922, 48.8524727 2.4347296, 48.8572619 2.4331507, 48.8575091 2.4334478, 48.8530468 2.4262525, 48.8515893 2.4297267, 48.8489798 2.4265183, 48.8506149 2.4262653, 48.8540380 2.4258844, 48.8581334 2.4372472, 48.8587552 2.4372314, 48.8586961 2.4368858, 48.8584141 2.4368718, 48.8620045 2.3484135, 48.8621883 2.3485126, 48.8172559 2.3274565, 48.8630203 2.3869392, 48.8625050 2.3855570, 48.8699640 2.3713345, 48.8696045 2.3711651, 48.8697201 2.3714649, 48.8695951 2.3715600, 48.8689708 2.3720110, 48.8687657 2.3721495, 48.8663599 2.3735117, 48.8660888 2.3735141, 48.8651391 2.3742697, 48.8653000 2.3752307, 48.8653041 2.3760609, 48.8679081 2.3779048, 48.8642583 2.3781838, 48.8658521 2.3778040, 48.8658893 2.3773900, 48.8672490 2.3760970, 48.8671899 2.3758377, 48.8672858 2.3755373, 48.8398102 2.3636157, 48.8713839 2.3723624, 48.8717635 2.3722590, 48.8720555 2.3717928, 48.8725878 2.3713798, 48.8734747 2.3704890, 48.8743760 2.3738893, 48.8741515 2.3743018, 48.8747572 2.3721336, 48.8754558 2.3702131, 48.8756416 2.3688091, 48.8761391 2.3683073, 48.8750213 2.3693259, 48.8740565 2.3704295, 48.8761685 2.3706316, 48.8767824 2.3701809, 48.8775727 2.3697840, 48.8775235 2.3696933, 48.8762486 2.3684489, 48.8766895 2.3672800, 48.8793418 2.3684468, 48.8774951 2.3660254, 48.8761335 2.3680786, 48.8755898 2.3677238, 48.8750608 2.3672145, 48.8746849 2.3665197, 48.8736428 2.3646883, 48.8735860 2.3650243, 48.8734003 2.3641075, 48.8727632 2.3665793, 48.8718713 2.3655305, 48.8717399 2.3675792, 48.8718241 2.3676242, 48.8719097 2.3674864, 48.8710868 2.3661930, 48.8714321 2.3669323, 48.8715032 2.3674435, 48.8715550 2.3681089, 48.8722806 2.3695753, 48.8700477 2.3689483, 48.8696638 2.3693259, 48.8713012 2.3699655, 48.8712614 2.3699654, 48.8710595 2.3701442, 48.8706915 2.3704032, 48.8701426 2.3706965, 48.8699145 2.3712122, 48.8698774 2.3708946, 48.8718449 2.3766037, 48.8717641 2.3760651, 48.8715040 2.3760459, 48.8705991 2.3727035, 48.8690397 2.3729073, 48.8687232 2.3723495, 48.8683203 2.3721799, 48.8693186 2.3741284, 48.8683112 2.3698916, 48.8680322 2.3727849, 48.8682174 2.3737692, 48.8688510 2.3761882, 48.8679859 2.3782324, 48.8663091 2.3713917, 48.8664224 2.3652804, 48.8663460 2.3644859, 48.8673441 2.3627982, 48.8674473 2.3626414, 48.8675118 2.3625438, 48.8676022 2.3623822, 48.8677049 2.3622367, 48.8677682 2.3620989, 48.8681927 2.3630580, 48.8667141 2.3660388, 48.8667966 2.3673783, 48.8661992 2.3687088, 48.8652993 2.3734818, 48.8654797 2.3747464, 48.8653692 2.3748561, 48.8651925 2.3758399, 48.8648400 2.3777430, 48.8647413 2.3853844, 48.8629074 2.3860380, 48.8631317 2.3869263, 48.8641296 2.3859610, 48.8639802 2.3867074, 48.8640310 2.3863813, 48.8641439 2.3864843, 48.8642946 2.3862990, 48.8650417 2.3850337, 48.8652815 2.3850044, 48.8661032 2.3840553, 48.8661736 2.3841890, 48.8662357 2.3840946, 48.8663260 2.3839916, 48.8666248 2.3838571, 48.8668485 2.3837377, 48.8670348 2.3836519, 48.8672012 2.3825153, 48.8670092 2.3824038, 48.8666938 2.3828675, 48.8667481 2.3822535, 48.8666129 2.3816919, 48.8667100 2.3812708, 48.8665041 2.3812744, 48.8666422 2.3812622, 48.8664000 2.3800354, 48.8661582 2.3798761, 48.8661982 2.3800386, 48.8662789 2.3801569, 48.8656428 2.3768934, 48.8656858 2.3776485, 48.8656937 2.3771252, 48.8650645 2.3775756, 48.8657840 2.3770479, 48.8659421 2.3769020, 48.8661373 2.3770649, 48.8661962 2.3766789, 48.8668329 2.3764659, 48.8669356 2.3763865, 48.8177134 2.3731023, 48.8176237 2.3728869, 48.8179174 2.3755720, 48.8182874 2.3752474, 48.8177834 2.3739688, 48.8442805 2.3494077, 48.8460777 2.3542886, 48.8680369 2.3754008, 48.8681892 2.3749537, 48.8676415 2.3754429, 48.8674450 2.3750281, 48.8674891 2.3754429, 48.8689352 2.3802352, 48.8687538 2.3799490, 48.8686917 2.3798288, 48.8686005 2.3800123, 48.8681319 2.3792398, 48.8679866 2.3783803, 48.8680763 2.3782066, 48.8679182 2.3781466, 48.8676267 2.3787920, 48.8445017 2.3247331, 48.8598744 2.3476273, 48.8514969 2.3476094, 48.8463542 2.3546880, 48.8518241 2.3377078, 48.8719922 2.3643316, 48.8770310 2.3879568, 48.8680340 2.3867035, 48.8645121 2.3683814, 48.8641829 2.3687115, 48.8433627 2.3377702, 48.8343356 2.3292251, 48.8378680 2.3520336, 48.8324374 2.3619273, 48.8325468 2.3622967, 48.8315083 2.3567419, 48.8319231 2.3546881, 48.8317268 2.3568922, 48.8321515 2.3564215, 48.8318807 2.3568124, 48.8309612 2.3573410, 48.8312997 2.3580965, 48.8306130 2.3545699, 48.8302998 2.3547708, 48.8298912 2.3542467, 48.8284954 2.3531059, 48.8262675 2.3569739, 48.8259948 2.3570144, 48.8491407 2.3785568, 48.8465072 2.3789570, 48.8491774 2.3781154, 48.8455640 2.3806988, 48.8463307 2.3795208, 48.8468005 2.3839097, 48.8467150 2.3839386, 48.8454696 2.3871278, 48.8459092 2.3777264, 48.8515628 2.3840327, 48.8601187 2.3790729, 48.8483419 2.3941371, 48.8505980 2.3756315, 48.8479594 2.3771753, 48.8486594 2.3777375, 48.8480388 2.3805151, 48.8468326 2.3790947, 48.8489783 2.3772212, 48.8494401 2.3773810, 48.8468335 2.3820503, 48.8532825 2.3792329, 48.8508436 2.3784137, 48.8509991 2.3778569, 48.8511896 2.3757690, 48.8497953 2.3742831, 48.8494366 2.3743781, 48.8484434 2.3726021, 48.8490503 2.3712312, 48.8477004 2.3736634, 48.8500746 2.3738623, 48.8447706 2.3779554, 48.8466461 2.3799067, 48.8451286 2.3836536, 48.8446020 2.3775270, 48.8460766 2.3773448, 48.8541269 2.3674250, 48.8534078 2.3591424, 48.8497380 2.3851348, 48.8500278 2.3840780, 48.8501150 2.3831061, 48.8500450 2.3839320, 48.8502585 2.3814712, 48.8482880 2.3932662, 48.8522803 2.3779953, 48.8516730 2.3781826, 48.8516520 2.3783332, 48.8504188 2.3794482, 48.8465865 2.3816584, 48.8466308 2.3820511, 48.8615762 2.3523794, 48.8622962 2.3522413, 48.8505616 2.3818961, 48.8499708 2.3841427, 48.8471042 2.3871676, 48.8471871 2.3870859, 48.8505497 2.3846148, 48.8505497 2.3842151, 48.8739244 2.3454201, 48.8645313 2.3550653, 48.8627431 2.3531218, 48.8628573 2.3522080, 48.8613333 2.3538187, 48.8624613 2.3594619, 48.8653627 2.3620515, 48.8650045 2.3627574, 48.8651033 2.3625625, 48.8489304 2.3762840, 48.8489281 2.3761561, 48.8462285 2.3784270, 48.8462717 2.3788092, 48.8462620 2.3786885, 48.8453283 2.3813011, 48.8446100 2.3833680, 48.8466239 2.3790653, 48.8465753 2.3786147, 48.8501765 2.3792170, 48.8507286 2.3779068, 48.8509545 2.3780414, 48.8502726 2.3811628, 48.8498437 2.3844726, 48.8529864 2.3827830, 48.8492104 2.3895170, 48.8477398 2.3888781, 48.8478628 2.3928249, 48.8476122 2.3930340, 48.8441929 2.3885529, 48.8424054 2.3895404, 48.8420168 2.3896839, 48.8830400 2.3466469, 48.8826393 2.3448094, 48.8821036 2.3462700, 48.8806743 2.3516188, 48.8803621 2.3527476, 48.8808367 2.3523965, 48.8767124 2.4051857, 48.8754784 2.4059676, 48.8756268 2.3994827, 48.8805125 2.3980130, 48.8818468 2.4029049, 48.8778919 2.3959017, 48.8786295 2.4120287, 48.8787438 2.4166396, 48.8823605 2.4189638, 48.8817509 2.4206632, 48.8753427 2.4241351, 48.8738114 2.4278172, 48.8705682 2.4241651, 48.8684736 2.4178051, 48.8731764 2.4132389, 48.8733436 2.4105571, 48.8745312 2.4152731, 48.8277658 2.4184354, 48.8328402 2.4028704, 48.8294130 2.4015885, 48.8312754 2.3988833, 48.8254543 2.4099127, 48.8470593 2.4352005, 48.8464464 2.4335921, 48.8461449 2.4297430, 48.8472801 2.4313018, 48.8475005 2.4314767, 48.8475560 2.4312363, 48.8474484 2.4340404, 48.8475422 2.4332316, 48.8477917 2.4256379, 48.8461955 2.4262494, 48.8479545 2.4245283, 48.8486562 2.4231910, 48.8480541 2.4217350, 48.8486810 2.4264213, 48.8488480 2.4263142, 48.8448592 2.4292748, 48.8438505 2.4310874, 48.8437295 2.4312317, 48.8497167 2.4355576, 48.8487565 2.4308541, 48.8487420 2.4316492, 48.8464257 2.4312063, 48.8528975 2.4241718, 48.8487774 2.3429251, 48.8520050 2.3739783, 48.8456295 2.4033753, 48.8663147 2.3719752, 48.8769811 2.4048559, 48.8758342 2.4011315, 48.8703695 2.3665503, 48.8748068 2.3638809, 48.8753882 2.3643616, 48.8466750 2.4313535, 48.8463023 2.4206617, 48.8366376 2.3507046, 48.8367310 2.3500387, 48.8367142 2.3522749, 48.8311541 2.3565888, 48.8833656 2.3710732, 48.8831646 2.3720227, 48.8833551 2.3721300, 48.8836055 2.3731171, 48.8836902 2.3740022, 48.8840147 2.3752146, 48.8844169 2.3762767, 48.8837907 2.3764722, 48.8849729 2.3784198, 48.8850377 2.3791735, 48.8851153 2.3790072, 48.8854643 2.3799694, 48.8855033 2.3809706, 48.8856762 2.3815928, 48.8865051 2.3847954, 48.8873411 2.3873650, 48.8876230 2.3883824, 48.8890494 2.3945176, 48.8330843 2.3545682, 48.8332943 2.3549487, 48.8329033 2.3622084, 48.8330139 2.3615547, 48.8372899 2.3175774, 48.8711195 2.3582079, 48.8350396 2.3318427, 48.8347711 2.3321841, 48.8332031 2.3317979, 48.8303495 2.3339288, 48.8613834 2.3525372, 48.8635331 2.3476629, 48.8640524 2.3476114, 48.8392766 2.3208448, 48.8329640 2.3315905, 48.8330519 2.3316747, 48.8644935 2.3509011, 48.8300228 2.3559482, 48.8297431 2.3515115, 48.8318964 2.3563061, 48.8318054 2.3563929, 48.8317279 2.3564905, 48.8316149 2.3566107, 48.8314963 2.3566536, 48.8827251 2.3816969, 48.8617066 2.3445035, 48.8612681 2.3493661, 48.8624112 2.3480599, 48.8617033 2.3441258, 48.8599405 2.3466434, 48.8589421 2.3475982, 48.8588348 2.3518897, 48.8572632 2.3514945, 48.8561847 2.3532145, 48.8655904 2.3564268, 48.8661173 2.3596343, 48.8683793 2.3679055, 48.8664719 2.3693573, 48.8658257 2.3693390, 48.8634351 2.3712286, 48.8633521 2.3710595, 48.8616617 2.3727419, 48.8600810 2.3710999, 48.8569493 2.3706558, 48.8538990 2.3697241, 48.8663247 2.3710849, 48.8644965 2.3730964, 48.8632938 2.3872069, 48.8664996 2.3830714, 48.8686598 2.3815066, 48.8711417 2.3782119, 48.8727055 2.3764695, 48.8725474 2.3766326, 48.8719039 2.3850869, 48.8701140 2.3966278, 48.8700610 2.3963739, 48.8706874 2.3989838, 48.8678503 2.4009656, 48.8653208 2.3990687, 48.8643044 2.3982089, 48.8653996 2.3977973, 48.8651813 2.3944221, 48.8665630 2.3915757, 48.8666928 2.3914298, 48.8662217 2.3895964, 48.8662129 2.3890609, 48.8649496 2.3880757, 48.8656935 2.3876189, 48.8694311 2.3950347, 48.8673252 2.3964509, 48.8672461 2.3965024, 48.8673873 2.3963565, 48.8712622 2.4039026, 48.8739080 2.3960132, 48.8737273 2.3960303, 48.8753136 2.3924598, 48.8754660 2.3929490, 48.8754434 2.3890467, 48.8739926 2.3894557, 48.8764991 2.3923568, 48.8743201 2.3860568, 48.8750539 2.3826407, 48.8764595 2.3793277, 48.8761604 2.3801173, 48.8761999 2.3804521, 48.8777890 2.3812354, 48.8779272 2.3814563, 48.8778573 2.3813972, 48.8796002 2.3888045, 48.8777466 2.3856191, 48.8774643 2.3860740, 48.8775377 2.3857736, 48.8819518 2.3925799, 48.8791126 2.3785037, 48.8797928 2.3748927, 48.8814004 2.3733460, 48.8827127 2.3746701, 48.8826601 2.3752883, 48.8827392 2.3752196, 48.8847298 2.3801436, 48.8862604 2.3774382, 48.8862942 2.3825537, 48.8862880 2.3831916, 48.8862492 2.3830897, 48.8862210 2.3829609, 48.8864942 2.3848741, 48.8831878 2.3714050, 48.8891556 2.3835322, 48.8904705 2.3869396, 48.8771673 2.3743225, 48.8731252 2.3798302, 48.8638482 2.3754413, 48.8640393 2.3755646, 48.8645976 2.3751492, 48.8621139 2.3771509, 48.8588447 2.3789316, 48.8612874 2.3810745, 48.8579887 2.3818494, 48.8586573 2.3836132, 48.8586656 2.3839098, 48.8586939 2.3840128, 48.8587510 2.3841928, 48.8570456 2.3728609, 48.8645209 2.3464137, 48.8637982 2.3425857, 48.8585540 2.3586704, 48.8645325 2.3616659, 48.8625383 2.3596046, 48.8616570 2.3566882, 48.8621158 2.3649459, 48.8580787 2.3502718, 48.8594346 2.3558245, 48.8691099 2.3622572, 48.8685184 2.3599117, 48.8707796 2.3431008, 48.8758064 2.3472929, 48.8661857 2.3449657, 48.8724202 2.3554241, 48.8212165 2.3424964, 48.8191551 2.3383937, 48.8583034 2.3677354, 48.8613324 2.3672902, 48.8644708 2.3660442, 48.8657197 2.3652646, 48.8646365 2.3693357, 48.8678878 2.3727490, 48.8691580 2.3718028, 48.8727830 2.3700050, 48.8740363 2.3624556, 48.8716766 2.3645864, 48.8706620 2.3611950, 48.8709568 2.3611877, 48.8707002 2.3614113, 48.8732736 2.3584401, 48.8732053 2.3585526, 48.8750670 2.3596454, 48.8756963 2.3594622, 48.8761479 2.3608784, 48.8767569 2.3560938, 48.8755329 2.3562073, 48.8720809 2.3576446, 48.8686256 2.3557047, 48.8696775 2.3543727, 48.8610006 2.3534840, 48.8631013 2.3527609, 48.8571905 2.3539864, 48.8599108 2.3609341, 48.8581811 2.3646296, 48.8557177 2.3579066, 48.8791705 2.3859215, 48.8278860 2.3709325, 48.8146542 2.3918514, 48.8681798 2.3714175, 48.8683391 2.3714311, 48.8722393 2.3651243, 48.8785040 2.4149491, 48.8683233 2.3660938, 48.8275755 2.3532310, 48.8245681 2.3401310, 48.8411613 2.3524312, 48.8427458 2.3524509, 48.8451570 2.4339974, 48.8758235 2.3834309, 48.8748569 2.3825637, 48.8753656 2.3823741, 48.8738274 2.3848673, 48.8743779 2.3850894, 48.8755934 2.3832701, 48.8756530 2.3832155, 48.8747784 2.3848811, 48.8482774 2.3428253, 48.8793536 2.3584016, 48.8784345 2.3578878, 48.8783181 2.3578049, 48.8795963 2.3570245, 48.8716036 2.3858474, 48.8497477 2.3435781, 48.8502811 2.3449753, 48.8489015 2.3412990, 48.8474669 2.3424422, 48.8473878 2.3433434, 48.8391823 2.3706120, 48.8685757 2.4338571, 48.8638367 2.3749471, 48.8725482 2.3581799, 48.8778514 2.3157284, 48.8657219 2.3739666, 48.8654326 2.3745496, 48.8581077 2.3801470, 48.8224407 2.4125856, 48.8200888 2.4152531, 48.8217832 2.4141390, 48.8215566 2.4133556, 48.8214215 2.4136841, 48.8239534 2.3165091, 48.8244892 2.3184730, 48.8243938 2.3190309, 48.8839948 2.3588579, 48.8710381 2.3610667, 48.8663456 2.4118041, 48.8668186 2.4119143, 48.8673098 2.4121289, 48.8683117 2.4115585, 48.8647712 2.4045352, 48.8667000 2.4069400, 48.8643970 2.4096690, 48.8227462 2.3249989, 48.8470909 2.4366979, 48.8451391 2.4342025, 48.8627754 2.4202931, 48.8582023 2.4176462, 48.8579293 2.4178018, 48.8494965 2.3428666, 48.8369621 2.3916125, 48.8363262 2.3866379, 48.8824469 2.4148265, 48.8427362 2.3297851, 48.8425183 2.3350723, 48.8440936 2.3330640, 48.8851298 2.3208036, 48.8857055 2.3215074, 48.8839773 2.3197792, 48.8741633 2.3754482, 48.8664641 2.3722308, 48.8742514 2.3675121, 48.8914177 2.4053946, 48.8361883 2.4001628, 48.8374501 2.3974695, 48.8361733 2.3992550, 48.8375744 2.3973236, 48.8357501 2.3998388, 48.8361649 2.3976709, 48.8322048 2.3854989, 48.8365312 2.3932203, 48.8351057 2.3855326, 48.8337350 2.3866004, 48.8323315 2.3862257, 48.8361823 2.3989988, 48.8355057 2.3978609, 48.8347892 2.4008341, 48.8366987 2.3918047, 48.8375906 2.3974847, 48.8391490 2.3938241, 48.8381280 2.3966112, 48.8398751 2.3939229, 48.8403103 2.3946599, 48.8394177 2.3984809, 48.8392370 2.3959499, 48.8390556 2.3959183, 48.8385750 2.3962263, 48.8361512 2.3875057, 48.8354853 2.3854944, 48.8377492 2.3970006, 48.8375405 2.4016838, 48.8584087 2.4363958, 48.8646486 2.4083438, 48.8644029 2.4080476, 48.8463152 2.4205352, 48.8647135 2.4083257, 48.8645193 2.4105979, 48.8640304 2.4090580, 48.8640250 2.4084155, 48.8636820 2.4079099, 48.8646806 2.4060380, 48.8467254 2.4174208, 48.8879678 2.3259712, 48.8623679 2.4111234, 48.8615965 2.4057488, 48.8626997 2.4034148, 48.8350620 2.4078967, 48.8354775 2.4060799, 48.8361097 2.4056728, 48.8352503 2.3857030, 48.8400454 2.3808140, 48.8347357 2.3876562, 48.8393156 2.3801287, 48.8398654 2.3799031, 48.8401087 2.3804879, 48.8396394 2.3801031, 48.8394044 2.3805434, 48.8393185 2.3806604, 48.8337437 2.3886482, 48.8375435 2.3824463, 48.8374325 2.3912706, 48.8192778 2.3740096, 48.8157795 2.3678212, 48.8206897 2.3639393, 48.8420158 2.3412105, 48.8465305 2.3431266, 48.8384599 2.3406020, 48.8395192 2.3610330, 48.8798495 2.4167430, 48.8827568 2.4191077, 48.8801655 2.4233038, 48.8785177 2.4146019, 48.8447051 2.3110485, 48.8418578 2.3031404, 48.8891565 2.3974249, 48.8884623 2.4082739, 48.8853628 2.4039648, 48.8863445 2.4073385, 48.8843356 2.4082993, 48.8680246 2.4170870, 48.8697950 2.4160906, 48.8513729 2.3428143, 48.8427677 2.3244722, 48.8411388 2.3244182, 48.8394501 2.3295825, 48.8368320 2.3312845, 48.8350879 2.3415777, 48.8350103 2.3759945, 48.8376967 2.3825388, 48.8337873 2.3947302, 48.8323342 2.4046376, 48.8570745 2.3418077, 48.8189430 2.3746452, 48.8309113 2.3795463, 48.8305282 2.3779956, 48.8269199 2.3653028, 48.8268477 2.3647861, 48.8268904 2.3650970, 48.8267972 2.3644166, 48.8268013 2.3644366, 48.8266395 2.3631137, 48.8265936 2.3638347, 48.8267042 2.3418398, 48.8266959 2.3418366, 48.8313314 2.3159690, 48.8313237 2.3160082, 48.8276961 2.3323037, 48.8492197 2.4218652, 48.8526158 2.3471643, 48.8506752 2.3329343, 48.8536884 2.3438503, 48.8465209 2.3169152, 48.8223603 2.3376975, 48.8333496 2.3122320, 48.8468908 2.3696558, 48.8422395 2.3861184, 48.8463028 2.3793259, 48.8399294 2.4045970, 48.8448378 2.4051177, 48.8474520 2.4048594, 48.8473395 2.4060719, 48.8357403 2.4304678, 48.8375477 2.4255552, 48.8346793 2.4193483, 48.8684023 2.3502078, 48.8662853 2.3197532, 48.8659622 2.3186038, 48.8679910 2.3372848, 48.8554435 2.3595073, 48.8474970 2.3970587, 48.8372431 2.4025512, 48.8372480 2.4035465, 48.8465303 2.3834704, 48.8463112 2.3834371, 48.8537247 2.3438855, 48.8532253 2.3431503, 48.8529019 2.3430541, 48.8528829 2.3425509, 48.8531182 2.3429777, 48.8522343 2.3401016, 48.8502442 2.3485713, 48.8519093 2.3341886, 48.8844724 2.3214773, 48.8421330 2.3862159, 48.8417493 2.3866178, 48.8426501 2.3861170, 48.8410791 2.3878034, 48.8411331 2.3881993, 48.8412077 2.3889160, 48.8510126 2.4018663, 48.8364073 2.3595567, 48.8708308 2.4178082, 48.8325651 2.3114089, 48.8325568 2.3113862, 48.8326373 2.3560872, 48.8326306 2.3560783, 48.8397551 2.3618303, 48.8397407 2.3618144, 48.8430740 2.3643198, 48.8430681 2.3643136, 48.8504321 2.3997456, 48.8504192 2.3990241, 48.8518769 2.4008958, 48.8396241 2.4024373, 48.8517859 2.4015820, 48.8477852 2.3980971, 48.8485668 2.3983079, 48.8512318 2.4017230, 48.8374817 2.3437947, 48.8309119 2.3434856, 48.8284622 2.3428564, 48.8548336 2.3455606, 48.8552512 2.3476157, 48.8553803 2.3476867, 48.8554064 2.3475533, 48.8552816 2.3474675, 48.8316089 2.3555656, 48.8319371 2.3141252, 48.8327575 2.3159370, 48.8317286 2.3137879, 48.8315258 2.3151731, 48.8315542 2.3147243, 48.8319092 2.3145268, 48.8327180 2.3158597, 48.8327519 2.3161172, 48.8329370 2.3161042, 48.8330455 2.3162946, 48.8332491 2.3170528, 48.8332152 2.3169841, 48.8333903 2.3171214, 48.8340458 2.3163660, 48.8338366 2.3181857, 48.8799540 2.4164057, 48.8362254 2.3224012, 48.8364089 2.3224024, 48.8324709 2.3200140, 48.8321640 2.3202607, 48.8321178 2.3204396, 48.8324257 2.3207007, 48.8324031 2.3208037, 48.8323749 2.3209067, 48.8514297 2.3722999, 48.8544625 2.3823250, 48.8507756 2.3816053, 48.8558275 2.3755799, 48.8615019 2.3742714, 48.8603556 2.3761167, 48.8611405 2.3748465, 48.8602505 2.3758377, 48.8591105 2.3760080, 48.8491930 2.3705959, 48.8507729 2.3759001, 48.8840850 2.3374869, 48.8832613 2.3264678, 48.8833347 2.3264334, 48.8833178 2.3262875, 48.8832839 2.3261502, 48.8595820 2.3876147, 48.8592458 2.3868272, 48.8583848 2.3904386, 48.8605667 2.3751425, 48.8615812 2.3729669, 48.8615468 2.3727192, 48.8867306 2.3464815, 48.8663999 2.3328148, 48.8346976 2.3971134, 48.8388270 2.3896712, 48.8390942 2.3895101, 48.8367172 2.3924117, 48.8366661 2.3926576, 48.8366787 2.3933514, 48.8362289 2.3950798, 48.8490892 2.3707721, 48.8603910 2.3760420, 48.8611991 2.3750738, 48.8620210 2.3732276, 48.8637354 2.3705262, 48.8649181 2.3685344, 48.8327416 2.3788209, 48.8835907 2.3332827, 48.8748312 2.3255471, 48.8673311 2.3076664, 48.8390731 2.4174218, 48.8361576 2.4188383, 48.8437046 2.4178928, 48.8456987 2.4235796, 48.8227507 2.4056073, 48.8203310 2.4085683, 48.8219082 2.4130009, 48.8238413 2.4099086, 48.8371199 2.3900909, 48.8561113 2.3406430, 48.8428146 2.3128644, 48.8428238 2.3126866, 48.8687535 2.4330161, 48.8576592 2.4373995, 48.8353914 2.4079102, 48.8199090 2.3593459, 48.8296212 2.3650676, 48.8309699 2.3641295, 48.8293299 2.3654239, 48.8291983 2.3649157, 48.8844475 2.3427325, 48.8833424 2.3495594, 48.8822817 2.3504868, 48.8481405 2.4285935, 48.8285361 2.3802860, 48.8283928 2.3842593, 48.8827033 2.3434430, 48.8822885 2.3414974, 48.8820176 2.3394460, 48.8817974 2.3532647, 48.8771098 2.3551079, 48.8477369 2.3279061, 48.8477318 2.3279086, 48.8252614 2.3574047, 48.8249557 2.3571699, 48.8258127 2.3576619, 48.8217484 2.4144762, 48.8883776 2.3495011, 48.8866559 2.3493852, 48.8192641 2.3597593, 48.8214983 2.3589309, 48.8440277 2.3895259, 48.8432799 2.3892766, 48.8450336 2.3825955, 48.8453967 2.3826032, 48.8463781 2.3796937, 48.8466733 2.3823365, 48.8470342 2.3868537, 48.8469567 2.3869061, 48.8436920 2.3879237, 48.8465001 2.3808215, 48.8466891 2.3824558, 48.8467101 2.3827554, 48.8501888 2.3787984, 48.8508333 2.3797344, 48.8505704 2.3800670, 48.8506115 2.3813881, 48.8494049 2.3783024, 48.8481949 2.3766544, 48.8482849 2.3767134, 48.8502082 2.3780865, 48.8499216 2.3737700, 48.8456109 2.3933509, 48.8410573 2.3873134, 48.8922817 2.3443080, 48.8700107 2.4026455, 48.8896848 2.3792648, 48.8538990 2.3696060, 48.8757644 2.3562329, 48.8745856 2.3876774, 48.8745188 2.3863253, 48.8791100 2.3541841, 48.8791806 2.3542322, 48.8796019 2.3544582, 48.8844476 2.3388182, 48.8872379 2.3326374, 48.8875505 2.3343018, 48.8102599 2.3581802, 48.8544166 2.3926353, 48.8369085 2.4021711, 48.8370521 2.4018326, 48.8345868 2.4005135, 48.8344550 2.4007736, 48.8440435 2.4057776, 48.8436827 2.4056942, 48.8444753 2.4055101, 48.8396803 2.3945209, 48.8400366 2.3946968, 48.8424148 2.4052197, 48.8397862 2.3968956, 48.8368227 2.4037506, 48.8367633 2.4038970, 48.8411703 2.4049568, 48.8368339 2.3917853, 48.8393074 2.3970077, 48.8241006 2.3358465, 48.8843283 2.3861616, 48.8744139 2.3574128, 48.8482696 2.3715140, 48.8844757 2.3382719, 48.8859435 2.3414431, 48.8343080 2.3572209, 48.8492375 2.3711135, 48.8568075 2.3541182, 48.8503975 2.3429508, 48.8602512 2.3502694, 48.8546459 2.3450877, 48.8478582 2.3735429, 48.8483311 2.3741932, 48.8470790 2.3740473, 48.8492375 2.3751897, 48.8448799 2.3727316, 48.8506309 2.3733225, 48.8493959 2.3750250, 48.8495128 2.3751092, 48.8462275 2.3737111, 48.8466535 2.3736929, 48.8459797 2.3731971, 48.8484928 2.3740738, 48.8469009 2.3721664, 48.8461048 2.3740873, 48.8458407 2.3720988, 48.8459184 2.3726478, 48.8491474 2.3746104, 48.8471402 2.3725177, 48.8490161 2.3747617, 48.8464256 2.3723704, 48.8460157 2.3736299, 48.8465693 2.3723121, 48.8474806 2.3718625, 48.8470772 2.3727405, 48.8461202 2.3724487, 48.8532023 2.3707747, 48.8539688 2.3699642, 48.8475609 2.3752480, 48.8458613 2.3547220, 48.8462262 2.3548763, 48.8462050 2.3548474, 48.8447140 2.3479947, 48.8445578 2.3478015, 48.8446768 2.3494263, 48.8397766 2.3563951, 48.8439693 2.3547644, 48.8439889 2.3550231, 48.8400361 2.3581380, 48.8403571 2.3507117, 48.8469814 2.3726034, 48.8489233 2.3748786, 48.8460336 2.3725445, 48.8459741 2.3725698, 48.8459507 2.3730386, 48.8458244 2.3719271, 48.8464740 2.3718667, 48.8477030 2.3740290, 48.8473830 2.3423380, 48.8482524 2.3418405, 48.8483010 2.3417712, 48.8472783 2.3856965, 48.8516200 2.3836674, 48.8504806 2.3788351, 48.8447794 2.3825189, 48.8516180 2.4015641, 48.8539136 2.4024675, 48.8539293 2.4000508, 48.8541564 2.4000911, 48.8304077 2.3343316, 48.8478209 2.3770331, 48.8497251 2.3785877, 48.8501253 2.3762844, 48.8477171 2.3873421, 48.8493623 2.3902888, 48.8489954 2.3908138, 48.8497475 2.3788828, 48.8468146 2.3805349, 48.8511987 2.3837123, 48.8442266 2.3492264, 48.8459544 2.3720668, 48.8843315 2.3304472, 48.8310200 2.3347804, 48.8274915 2.3316869, 48.8252128 2.3624715, 48.8251313 2.3623868, 48.8248667 2.3622623, 48.8246283 2.3669508, 48.8281581 2.3663065, 48.8199327 2.3650855, 48.8687850 2.3594780, 48.8777755 2.4052173, 48.8863208 2.3451631, 48.8864916 2.3449490, 48.8865096 2.3452428, 48.8490580 2.3745060, 48.8486432 2.3745061, 48.8471159 2.3736501, 48.8461663 2.3747391, 48.8461596 2.3749160, 48.8462033 2.3752807, 48.8462167 2.3753959, 48.8460166 2.3767039, 48.8460708 2.3770013, 48.8458957 2.3755864, 48.8458632 2.3752950, 48.8458391 2.3749747, 48.8458024 2.3747494, 48.8457782 2.3745532, 48.8456771 2.3745689, 48.8461276 2.3743237, 48.8465674 2.3746137, 48.8469247 2.3730534, 48.8466746 2.3729742, 48.8466393 2.3727596, 48.8470632 2.3766059, 48.8568469 2.3792392, 48.8569719 2.3793107, 48.8574421 2.3793069, 48.8569643 2.3788933, 48.8566439 2.3791151, 48.8471577 2.3715454, 48.8472565 2.3708817, 48.8471819 2.3707631, 48.8467280 2.3702882, 48.8467932 2.3690947, 48.8465554 2.3692393, 48.8463534 2.3689294, 48.8465229 2.3686904, 48.8463589 2.3683266, 48.8463083 2.3680521, 48.8460104 2.3669740, 48.8470474 2.3726397, 48.8467819 2.3725108, 48.8459580 2.3724556, 48.8454329 2.3684999, 48.8455779 2.3697051, 48.8456188 2.3700692, 48.8453198 2.3707747, 48.8453260 2.3706140, 48.8457759 2.3715126, 48.8458427 2.3706835, 48.8457141 2.3704736, 48.8431185 2.3716816, 48.8274146 2.3319952, 48.8269211 2.3322906, 48.8267472 2.3324515, 48.8274542 2.3356985, 48.8260575 2.3569948, 48.8263215 2.3595541, 48.8286985 2.3607276, 48.8308857 2.3767781, 48.8269269 2.3666605, 48.8840058 2.3529245, 48.8374833 2.3535202, 48.8374935 2.3535342, 48.8379005 2.3555967, 48.8379182 2.3556557, 48.8392719 2.3386499, 48.8392465 2.3387222, 48.8382197 2.3418042, 48.8382351 2.3417326, 48.8515184 2.3695612, 48.8500437 2.3697078, 48.8503770 2.3164290, 48.8896403 2.3358780, 48.8717482 2.3408661, 48.8717354 2.3404728, 48.8531236 2.3680462, 48.8529971 2.3680045, 48.8502113 2.3668644, 48.8501724 2.3668483, 48.8500136 2.3667732, 48.8499590 2.3632112, 48.8513238 2.3624304, 48.8526693 2.3608308, 48.8836715 2.3491968, 48.8852026 2.3499755, 48.8852293 2.3471969, 48.8516794 2.3474841, 48.8752261 2.3252146, 48.8768733 2.3217840, 48.8778075 2.3226060, 48.8750824 2.3241658, 48.8756710 2.3261070, 48.8752761 2.3255792, 48.8752120 2.3251191, 48.8750862 2.3247240, 48.8771445 2.3224363, 48.8756940 2.3269533, 48.8835297 2.3282798, 48.8842985 2.3268322, 48.8838538 2.3270648, 48.8831845 2.3273339, 48.8765103 2.3232267, 48.8795372 2.3214211, 48.8670106 2.4227092, 48.8453226 2.3377425, 48.8504481 2.3735499, 48.8498111 2.3438572, 48.8376830 2.3448082, 48.8516341 2.3471068, 48.8554611 2.3836770, 48.8905909 2.3820031, 48.8566083 2.3533348, 48.8471162 2.4365305, 48.8602357 2.3722066, 48.8474704 2.3718474, 48.8666829 2.3665357, 48.8663510 2.3672959, 48.8658303 2.3698488, 48.8663441 2.3693939, 48.8657851 2.3771616, 48.8665079 2.3800178, 48.8653617 2.3809810, 48.8760867 2.3599561, 48.8829095 2.3591741, 48.8834606 2.3606563, 48.8826329 2.3615224, 48.8854259 2.3538571, 48.8884161 2.3532369, 48.8841015 2.3597869, 48.8874152 2.3671866, 48.8853281 2.3720155, 48.8905441 2.3545731, 48.8902032 2.3626104, 48.8896626 2.3678766, 48.8830418 2.3799420, 48.8839897 2.3776750, 48.8839192 2.3777877, 48.8793674 2.3913866, 48.8570613 2.4225369, 48.8642121 2.3813367, 48.8549764 2.3705401, 48.8563547 2.3050003, 48.8491281 2.3756993, 48.8907340 2.3442268, 48.8482547 2.3739915, 48.8476489 2.3756562, 48.8505462 2.3785256, 48.8495764 2.3778022, 48.8488506 2.3771667, 48.8490151 2.3766595, 48.8493081 2.3747820, 48.8485986 2.3761016, 48.8483197 2.4205769, 48.8466357 2.3723850, 48.8805089 2.3247630, 48.8920861 2.3792943, 48.8922518 2.3794780, 48.8920861 2.3791828, 48.8919041 2.3801340, 48.8906427 2.3820001, 48.8909556 2.3819203, 48.8895378 2.3833861, 48.8795193 2.3372522, 48.8860003 2.3379474, 48.8871034 2.3395432, 48.8872913 2.3493292, 48.8849270 2.3525804, 48.8925222 2.3614454, 48.8681911 2.4172149, 48.8881990 2.3259122, 48.8881036 2.3258701, 48.8551549 2.3558324, 48.8670855 2.3530694, 48.8648656 2.3631280, 48.8775035 2.3271975, 48.8674954 2.3585735, 48.8847672 2.3248422, 48.8574215 2.3681791, 48.8862612 2.3438540, 48.8548590 2.3685707, 48.8549249 2.3685762, 48.8533482 2.3683534, 48.8531999 2.3682676, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8585847 2.3032822, 48.8570811 2.3046405, 48.8567473 2.3041925, 48.8562200 2.3044115, 48.8560475 2.3045247, 48.8555290 2.3047711, 48.8555382 2.3054236, 48.8553164 2.3055412, 48.8551046 2.3056319, 48.8549906 2.3050099, 48.8547805 2.3051304, 48.8546797 2.3051724, 48.8549635 2.3057177, 48.8547343 2.3058060, 48.8544128 2.3063400, 48.8546400 2.3064825, 48.8546463 2.3053441, 48.8487705 2.3484391, 48.8488367 2.3472494, 48.8454096 2.3428012, 48.8473867 2.3183769, 48.8451686 2.3207087, 48.8759394 2.3585316, 48.8559133 2.3670811, 48.8522230 2.3849242, 48.8525692 2.3830882, 48.8510651 2.3842956, 48.8525445 2.3847726, 48.8463782 2.3799128, 48.8452457 2.3838856, 48.8455904 2.3558120, 48.8381135 2.3571067, 48.8364909 2.3591271, 48.8363055 2.3583190, 48.8239780 2.3622896, 48.8239587 2.3634647, 48.8368051 2.3525786, 48.8360471 2.3592963, 48.8357999 2.3591086, 48.8445009 2.3753880, 48.8833658 2.3279263, 48.8836330 2.3284520, 48.8840239 2.3218519, 48.8845426 2.3213297, 48.8635971 2.3376992, 48.8412568 2.3561020, 48.8802722 2.3675063, 48.8714048 2.3070491, 48.8346913 2.3085180, 48.8349885 2.3078024, 48.8364186 2.3103935, 48.8375167 2.3079044, 48.8369162 2.3060561, 48.8570345 2.3629840, 48.8549662 2.3612793, 48.8376761 2.3448921, 48.8355075 2.3583356, 48.8354147 2.3582479, 48.8464369 2.3792454, 48.8524629 2.4041332, 48.8475869 2.3900296, 48.8472771 2.3956036, 48.8488604 2.3968465, 48.8483749 2.3994783, 48.8443280 2.3896931, 48.8390850 2.3568747, 48.8584562 2.3550423, 48.8582859 2.3552011, 48.8577895 2.3548000, 48.8575194 2.3544616, 48.8576438 2.3546760, 48.8577293 2.3547383, 48.8578549 2.3549208, 48.8582377 2.3548214, 48.8576530 2.3575640, 48.8586846 2.3536545, 48.8589115 2.3534861, 48.8598365 2.3549664, 48.8602520 2.3534175, 48.8572292 2.3551661, 48.8875232 2.3252141, 48.8956591 2.3766927, 48.8953890 2.3744930, 48.8743118 2.3204772, 48.8138944 2.3912196, 48.8105896 2.3842711, 48.8632334 2.3399229, 48.8463269 2.4174467, 48.8576477 2.3541855, 48.8591132 2.3538810, 48.8844890 2.3447472, 48.8841058 2.3521880, 48.8142568 2.3910625, 48.8343459 2.3060180, 48.8343850 2.3935686, 48.8331731 2.3864450, 48.8330278 2.3862477, 48.8330467 2.3860133, 48.8109531 2.3911089, 48.8105994 2.3914147, 48.8146337 2.3919376, 48.8142465 2.3904242, 48.8345376 2.3968492, 48.8333803 2.3954357, 48.8463967 2.3722583, 48.8468486 2.3717970, 48.8776102 2.3938459, 48.8333091 2.3546040, 48.8493535 2.3714981, 48.8335479 2.3631531, 48.8330119 2.3635033, 48.8322800 2.3612312, 48.8331196 2.3540446, 48.8330807 2.3564517, 48.8329329 2.3563708, 48.8321701 2.3590298, 48.8829327 2.3181031, 48.8609908 2.3480933, 48.8319327 2.3582100, 48.8633934 2.3347841, 48.8651992 2.3333992, 48.8536005 2.3428569, 48.8344171 2.3656055, 48.8330825 2.3614982, 48.8542764 2.3406582, 48.8555347 2.4004378, 48.8553933 2.4000637, 48.8341628 2.3648150, 48.8333280 2.3647429, 48.8332640 2.3561912, 48.8703112 2.3424791, 48.8707741 2.3411912, 48.8705661 2.3420906, 48.8706517 2.3426340, 48.8709334 2.3427566, 48.8556682 2.4008139, 48.8648503 2.4014328, 48.8702685 2.3939738, 48.8584489 2.3792058, 48.8945048 2.3474462, 48.8929338 2.3489373, 48.8919373 2.3499061, 48.8943845 2.3506181, 48.8938805 2.3498536, 48.8953235 2.3467399, 48.8953754 2.3495531, 48.8321364 2.3546768, 48.8305388 2.3568213, 48.8505276 2.3447826, 48.8513045 2.3459712, 48.8496287 2.3490842, 48.8345373 2.3537698, 48.8332913 2.3338394, 48.8388048 2.4168757, 48.8379927 2.4176004, 48.8387275 2.4173701, 48.8371907 2.4184718, 48.8375203 2.4169158, 48.8359170 2.3591570, 48.8355997 2.3589131, 48.8353091 2.3587223, 48.8351976 2.3586346, 48.8573507 2.3496668, 48.8323948 2.3645635, 48.8324644 2.3651997, 48.8312574 2.3772566, 48.8243928 2.3770244, 48.8451544 2.3536617, 48.8534095 2.3799147, 48.8565989 2.4064934, 48.8723362 2.3823271, 48.8582851 2.4065730, 48.8257038 2.3749538, 48.8253500 2.3613456, 48.8661377 2.3353287, 48.8384805 2.3113686, 48.8584702 2.3501538, 48.8585293 2.3496680, 48.8594701 2.3526678, 48.8774012 2.4069914, 48.8909128 2.3454738, 48.8916063 2.3445324, 48.8921962 2.3448571, 48.8923204 2.3442537, 48.8902437 2.3476818, 48.8906398 2.3495092, 48.8907675 2.3495020, 48.8923427 2.3461089, 48.8872790 2.3272010, 48.8871654 2.3269257, 48.8861847 2.3270688, 48.8392195 2.3712618, 48.8321878 2.3587424, 48.8842461 2.3613088, 48.8840672 2.3616073, 48.8841745 2.3614072, 48.8882926 2.3599384, 48.8845099 2.3646309, 48.8856332 2.3659515, 48.8920952 2.3613649, 48.8705772 2.3552836, 48.8883041 2.3506540, 48.8883196 2.3501401, 48.8883144 2.3520272, 48.8883763 2.3527059, 48.8886896 2.3559132, 48.8886090 2.3548159, 48.8889395 2.3584021, 48.8890178 2.3582290, 48.8890523 2.3595116, 48.8866144 2.3504214, 48.8858198 2.3551215, 48.8863622 2.3561844, 48.8878527 2.3515748, 48.8872861 2.3561221, 48.8839769 2.3509507, 48.8850544 2.3495979, 48.8857811 2.3496248, 48.8861021 2.3496301, 48.8863490 2.3496462, 48.8876294 2.3496373, 48.8885253 2.3496748, 48.8890580 2.3496748, 48.8887476 2.3496695, 48.8889098 2.3496802, 48.8841020 2.3522661, 48.8840538 2.3519670, 48.8840388 2.3514774, 48.8892343 2.3496802, 48.8896364 2.3496856, 48.8146308 2.3939665, 48.8121614 2.3920250, 48.8360799 2.3104119, 48.8375203 2.3917674, 48.8794653 2.4161392, 48.8437124 2.4182167, 48.8432691 2.4180076, 48.8406700 2.4178437, 48.8405998 2.4181025, 48.8407538 2.4174120, 48.8539965 2.3047055, 48.8278209 2.3706492, 48.8438654 2.3518035, 48.8847017 2.3493780, 48.8847898 2.3493834, 48.8848569 2.3493834, 48.8852449 2.3493834, 48.8851108 2.3493834, 48.8863243 2.3494209, 48.8860562 2.3494048, 48.8857987 2.3494048, 48.8866171 2.3494388, 48.8873464 2.3494796, 48.8876365 2.3494656, 48.8887125 2.3494781, 48.8889239 2.3494603, 48.8891003 2.3494710, 48.8884971 2.3494495, 48.8880001 2.3494761, 48.8904052 2.3495068, 48.8897932 2.3494533, 48.8892625 2.3494710, 48.8830632 2.3383743, 48.8857316 2.3349375, 48.8857096 2.3352645, 48.8854435 2.3359469, 48.8859008 2.3346803, 48.8853035 2.3363355, 48.8851642 2.3366575, 48.8843335 2.3382618, 48.8886961 2.3390540, 48.8851431 2.3383441, 48.8865032 2.3356719, 48.8885778 2.3354686, 48.8888861 2.3383196, 48.8842610 2.3413414, 48.8845571 2.3411073, 48.8847258 2.3403346, 48.8849081 2.3418344, 48.8895658 2.3377576, 48.8799574 2.3862219, 48.8850086 2.3604185, 48.8907312 2.3639595, 48.8826461 2.3813790, 48.8402359 2.3617231, 48.8944354 2.3403228, 48.8944213 2.3442287, 48.8538840 2.3375740, 48.8837052 2.3395939, 48.8832400 2.3421635, 48.8834792 2.3421669, 48.8839647 2.3413568, 48.8865870 2.3452064, 48.8832262 2.3499505, 48.8846010 2.3470099, 48.8881281 2.3463794, 48.8883520 2.3487355, 48.8869557 2.3324658, 48.8869663 2.3326053, 48.8890733 2.3333345, 48.8903665 2.3341127, 48.8903277 2.3330237, 48.8903732 2.3369030, 48.8916416 2.3355004, 48.8908322 2.3375902, 48.8908023 2.3394033, 48.8910048 2.3400771, 48.8912851 2.3396007, 48.8926693 2.3356185, 48.8928829 2.3373736, 48.8929557 2.3385657, 48.8923455 2.3400044, 48.8904263 2.3404251, 48.8913682 2.3472930, 48.8808823 2.3404014, 48.8804958 2.3402435, 48.8784082 2.3429043, 48.8801859 2.3312932, 48.8188024 2.3258578, 48.8542757 2.3194575, 48.8570901 2.3152530, 48.8515609 2.3146168, 48.8649004 2.4054084, 48.8695840 2.4023587, 48.8675480 2.4092194, 48.8645440 2.4097670, 48.8678875 2.4087032, 48.8661368 2.4057912, 48.8450873 2.4015561, 48.8455770 2.3958841, 48.8468380 2.4001158, 48.8603661 2.3754100, 48.8833930 2.3812455, 48.8830692 2.3825494, 48.8839003 2.3840684, 48.8478151 2.3161845, 48.8470337 2.3212693, 48.8856788 2.3405124, 48.8534880 2.3040058, 48.8803039 2.3798878, 48.8575059 2.3526422, 48.8605714 2.3454975, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8806821 2.3741833, 48.8806125 2.3769485, 48.8825820 2.3812532, 48.8286167 2.3222750, 48.8291859 2.3226894, 48.8765664 2.4182091, 48.8590672 2.3498178, 48.8695049 2.3065969, 48.8901143 2.3611781, 48.8768016 2.3394255, 48.8768660 2.3356326, 48.8773919 2.3395256, 48.8445390 2.3211809, 48.8305262 2.3381265, 48.8411654 2.3324666, 48.8475509 2.3775378, 48.8259800 2.3574792, 48.8259306 2.3602462, 48.8233030 2.3659003, 48.8246654 2.3631367, 48.8279577 2.3586262, 48.8419264 2.3635292, 48.8236413 2.3615505, 48.8219370 2.3633250, 48.8437079 2.3657319, 48.8563005 2.3020494, 48.8564205 2.3021781, 48.8560717 2.3021776, 48.8569411 2.3035154, 48.8550972 2.3053909, 48.8560924 2.3046935, 48.8567518 2.3043714, 48.8584436 2.3037809, 48.8583176 2.3038374, 48.8586100 2.3037057, 48.8586338 2.3034705, 48.8590703 2.3034761, 48.8615949 2.3022747, 48.8615612 2.3022878, 48.8627174 2.3794641, 48.8671282 2.3756094, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.8242173 2.3882310, 48.8306926 2.3359923, 48.8248112 2.3677360, 48.8561576 2.4045951, 48.8496002 2.3981379, 48.8541960 2.4019145, 48.8513139 2.3817099, 48.8528829 2.3864220, 48.8524264 2.3887673, 48.8493781 2.3785737, 48.8530453 2.3745559, 48.8504050 2.3701018, 48.8517234 2.3993213, 48.8503838 2.3895178, 48.8469782 2.3850371, 48.8652123 2.3628985, 48.8625821 2.3543114, 48.8647871 2.3552146, 48.8649151 2.3552894, 48.8646132 2.3569121, 48.8650523 2.3569392, 48.8623935 2.3593935, 48.8530035 2.3827478, 48.8499264 2.3748210, 48.8570725 2.3615477, 48.8239910 2.3632719, 48.8470031 2.3813757, 48.8517886 2.3889465, 48.8523104 2.4012993, 48.8276417 2.3303431, 48.8289443 2.3298857, 48.8289302 2.3293063, 48.8288878 2.3328361, 48.8319530 2.3307976, 48.8735413 2.3799338, 48.8609931 2.4003293, 48.8720701 2.3773641, 48.8722640 2.3780359, 48.8730380 2.3797045, 48.8448840 2.3824674, 48.8737065 2.3769426, 48.8405555 2.3621060, 48.8402568 2.3634668, 48.8412107 2.3625935, 48.8420852 2.3631705, 48.8419766 2.3631327, 48.8420084 2.3635501, 48.8421166 2.3637562, 48.8431538 2.3637431, 48.8435679 2.3643122, 48.8453908 2.3674378, 48.8454429 2.3715868, 48.8519783 2.3698258, 48.8737979 2.3160522, 48.8737596 2.3158539, 48.8708265 2.3779442, 48.8466424 2.3872245, 48.8463168 2.3872077, 48.8836808 2.4033633, 48.8461025 2.3834255, 48.8485516 2.3780692, 48.8211710 2.3587038, 48.8505179 2.3931013, 48.8841470 2.3223431, 48.8841082 2.3224492, 48.8841654 2.3220842, 48.8794250 2.3337401, 48.8794405 2.3338166, 48.8821959 2.3406004, 48.8430137 2.3209354, 48.8849719 2.3794107, 48.8858346 2.3758518, 48.8735428 2.3899274, 48.8852235 2.3791945, 48.8734784 2.3900562, 48.8857448 2.3756657, 48.8748438 2.3895179, 48.8737442 2.3897852, 48.8812335 2.3681216, 48.8314088 2.3488132, 48.8878588 2.3596648, 48.8753301 2.3889995, 48.8204792 2.3667808, 48.8185097 2.3744183, 48.8202218 2.3721389, 48.8217969 2.3688453, 48.8291806 2.3561302, 48.8451034 2.3492462, 48.8472505 2.3480517, 48.8472832 2.3477251, 48.8470809 2.3486565, 48.8553731 2.3435125, 48.8565275 2.3420348, 48.8568716 2.3421327, 48.8563329 2.3422554, 48.8569183 2.3418674, 48.8594652 2.3441791, 48.8577895 2.3468656, 48.8582957 2.3474796, 48.8583659 2.3474922, 48.8584398 2.3475072, 48.8590591 2.3475385, 48.8592361 2.3476099, 48.8592775 2.3476294, 48.8591202 2.3475207, 48.8594544 2.3471922, 48.8595548 2.3473567, 48.8595754 2.3474694, 48.8865040 2.3276000, 48.8551784 2.3460397, 48.8552141 2.3463416, 48.8557679 2.3464388, 48.8538879 2.3474900, 48.8529207 2.3436323, 48.8536129 2.3494706, 48.8542243 2.3500208, 48.8542384 2.3498773, 48.8542020 2.3503178, 48.8600943 2.3451124, 48.8604674 2.3454225, 48.8593562 2.3461342, 48.8594808 2.3467106, 48.8595507 2.3467483, 48.8597005 2.3469841, 48.8599442 2.3474167, 48.8598564 2.3477249, 48.8598395 2.3478001, 48.8603899 2.3475800, 48.8609975 2.3482090, 48.8597051 2.3483832, 48.8608470 2.3488026, 48.8601724 2.3488956, 48.8600139 2.3442832, 48.8609295 2.3450073, 48.8612791 2.3423684, 48.8613359 2.3426577, 48.8612560 2.3431916, 48.8613382 2.3448649, 48.8617216 2.3432877, 48.8628456 2.3420046, 48.8639344 2.3425970, 48.8637021 2.3430520, 48.8602965 2.3418540, 48.8588694 2.3415282, 48.8588810 2.3417760, 48.8596955 2.3406333, 48.8608773 2.3423534, 48.8590688 2.3432789, 48.8618530 2.3408621, 48.8616909 2.3518430, 48.8617494 2.3405457, 48.8617157 2.3404593, 48.8632704 2.3339882, 48.8633059 2.3340632, 48.8628907 2.3351275, 48.8631557 2.3352468, 48.8636678 2.3350046, 48.8637726 2.3355646, 48.8626095 2.3362830, 48.8625470 2.3362555, 48.8624056 2.3372600, 48.8620104 2.3390904, 48.8622902 2.3393649, 48.8620988 2.3398606, 48.8622685 2.3398888, 48.8626050 2.3395217, 48.8620047 2.3412336, 48.8626905 2.3414763, 48.8629625 2.3415806, 48.8177880 2.3249332, 48.8196164 2.3234545, 48.8615068 2.3488951, 48.8611512 2.3495492, 48.8613828 2.3490415, 48.8616954 2.3482560, 48.8619643 2.3491461, 48.8622727 2.3492718, 48.8625411 2.3496651, 48.8625160 2.3495885, 48.8625821 2.3483927, 48.8635373 2.3490562, 48.8631582 2.3498973, 48.8629810 2.3484703, 48.8644969 2.3453886, 48.8633332 2.3460793, 48.8633690 2.3462612, 48.8634242 2.3462790, 48.8641188 2.3464674, 48.8641678 2.3467038, 48.8636473 2.3431563, 48.8640959 2.3415983, 48.8640954 2.3438023, 48.8647135 2.3426384, 48.8648693 2.3427189, 48.8648458 2.3445503, 48.8625475 2.3407883, 48.8629462 2.3411925, 48.8629792 2.3415194, 48.8630681 2.3412176, 48.8634426 2.3400377, 48.8630447 2.3413417, 48.8639239 2.3401572, 48.8634071 2.3418915, 48.8647612 2.3406523, 48.8646538 2.3408552, 48.8659486 2.3400023, 48.8644737 2.3401639, 48.8644890 2.3404697, 48.8655554 2.3403846, 48.8660175 2.3407258, 48.8660668 2.3390095, 48.8661019 2.3389239, 48.8629745 2.3357764, 48.8635380 2.3355250, 48.8650200 2.3366293, 48.8656093 2.3369261, 48.8663099 2.3374684, 48.8664907 2.3376599, 48.8627666 2.3376540, 48.8671663 2.3347590, 48.8645744 2.3350797, 48.8660066 2.3354463, 48.8669921 2.3366321, 48.8669846 2.3362939, 48.8652120 2.3344828, 48.8661000 2.3337438, 48.8660278 2.3340077, 48.8663175 2.3340111, 48.8663930 2.3354840, 48.8663406 2.3354494, 48.8666001 2.3357750, 48.8672190 2.3346698, 48.8646841 2.3338346, 48.8647572 2.3326227, 48.8652752 2.3332993, 48.8666053 2.3338903, 48.8660273 2.3312781, 48.8658325 2.3324895, 48.8658744 2.3325173, 48.8659399 2.3325614, 48.8663779 2.3317318, 48.8669595 2.3323778, 48.8671333 2.3324843, 48.8670401 2.3324272, 48.8673651 2.3318225, 48.8676684 2.3316870, 48.8673997 2.3319574, 48.8674379 2.3324048, 48.8671882 2.3325179, 48.8675087 2.3324647, 48.8675328 2.3323476, 48.8672699 2.3325679, 48.8674622 2.3325601, 48.8656306 2.3303026, 48.8656453 2.3303694, 48.8669041 2.3315149, 48.8667074 2.3326398, 48.8678727 2.3316533, 48.8680817 2.3307073, 48.8656430 2.3278956, 48.8677297 2.3303206, 48.8676486 2.3245195, 48.8687717 2.3252969, 48.8690559 2.3243639, 48.8480970 2.3469090, 48.8487505 2.3777984, 48.8503027 2.3774477, 48.8674009 2.3345287, 48.8687712 2.3355475, 48.8743117 2.3760048, 48.8721807 2.3777353, 48.8722165 2.3778752, 48.8722562 2.3773810, 48.8745796 2.3732477, 48.8740584 2.3761419, 48.8741651 2.3760614, 48.8763000 2.3770222, 48.8741807 2.3751108, 48.8744252 2.3738880, 48.8687898 2.3338477, 48.8689710 2.3345642, 48.8496754 2.3496176, 48.8693146 2.3347338, 48.8698110 2.3346634, 48.8696005 2.3358328, 48.8695636 2.3360181, 48.8773553 2.3492240, 48.8708415 2.3535560, 48.8690695 2.3343056, 48.8702877 2.3349212, 48.8781128 2.3689171, 48.8703066 2.3348742, 48.8704060 2.3348727, 48.8706473 2.3343669, 48.8707437 2.3338850, 48.8679928 2.3379544, 48.8670925 2.3387264, 48.8690399 2.3387540, 48.8690592 2.3388180, 48.8704283 2.3371521, 48.8712809 2.3371470, 48.8704581 2.3373664, 48.8705949 2.3395281, 48.8714078 2.3378085, 48.8714851 2.3377970, 48.8115398 2.3841166, 48.8121283 2.3863423, 48.8105676 2.3884401, 48.8108414 2.3911974, 48.8692036 2.3392113, 48.8690729 2.3399905, 48.8691872 2.3393294, 48.8693708 2.3397160, 48.8691071 2.3397858, 48.8692514 2.3401242, 48.8626941 2.3877054, 48.8716597 2.3407937, 48.8717230 2.3394983, 48.8716938 2.3397200, 48.8716249 2.3410422, 48.8717356 2.3405719, 48.8717946 2.3395399, 48.8696799 2.3415731, 48.8697491 2.3403685, 48.8696136 2.3403891, 48.8695691 2.3402609, 48.8688297 2.3421626, 48.8686859 2.3420376, 48.8675928 2.3409167, 48.8664997 2.3400225, 48.8686697 2.3421738, 48.8672176 2.3404674, 48.8687628 2.3297223, 48.8688935 2.3334536, 48.8700309 2.3292678, 48.8685956 2.3322485, 48.8689537 2.3327977, 48.8689050 2.3327814, 48.8702717 2.3306225, 48.8690262 2.3325457, 48.8691969 2.3433101, 48.8698000 2.3425335, 48.8687745 2.3432434, 48.8662163 2.3412156, 48.8667156 2.3435590, 48.8671849 2.3441863, 48.8652915 2.3440961, 48.8654099 2.3443331, 48.8688392 2.3442391, 48.8707568 2.3429733, 48.8676499 2.3455667, 48.8441325 2.3546669, 48.8444395 2.3549581, 48.8448060 2.3546073, 48.8445996 2.3549442, 48.8448383 2.3550622, 48.8457867 2.3553999, 48.8705145 2.3428931, 48.8709276 2.3429934, 48.8704558 2.3474977, 48.8706525 2.3468928, 48.8674968 2.3472550, 48.8766283 2.3394115, 48.8668920 2.3473928, 48.8645135 2.3468506, 48.8654683 2.3468972, 48.8646153 2.3468169, 48.8660916 2.3526753, 48.8657334 2.3566710, 48.8666598 2.3498307, 48.8667885 2.3495539, 48.8645295 2.3512403, 48.8647371 2.3502921, 48.8639502 2.3511027, 48.8648587 2.3516262, 48.8644149 2.3508382, 48.8625665 2.3522237, 48.8684235 2.3536158, 48.8680177 2.3532845, 48.8677443 2.3535117, 48.8686982 2.3541762, 48.8670418 2.3496240, 48.8683427 2.3501494, 48.8685043 2.3498910, 48.8681440 2.3484373, 48.8696741 2.3519506, 48.8641253 2.3698504, 48.8127956 2.3610646, 48.8146549 2.3613384, 48.8700666 2.3501189, 48.8704497 2.3486046, 48.8701362 2.3501207, 48.8704075 2.3483529, 48.8703899 2.3484689, 48.8521023 2.3568721, 48.8518091 2.3568234, 48.8518760 2.3566725, 48.8518531 2.3567202, 48.8515137 2.3573254, 48.8520260 2.3557283, 48.8447284 2.3419203, 48.8425031 2.3446224, 48.8095766 2.3626796, 48.8519507 2.3561108, 48.8517989 2.3564163, 48.8514200 2.3437555, 48.8515128 2.3437930, 48.8529293 2.3446424, 48.8521424 2.3569051, 48.8523357 2.3568707, 48.8530396 2.3537559, 48.8575762 2.3501043, 48.8558532 2.3515975, 48.8563140 2.3504800, 48.8612900 2.3499825, 48.8615937 2.3514953, 48.8595402 2.3527444, 48.8614606 2.3537904, 48.8613508 2.3533982, 48.8612937 2.3537009, 48.8613539 2.3526643, 48.8593262 2.3559033, 48.8558397 2.3555062, 48.8914586 2.3497646, 48.8276950 2.3526554, 48.8544169 2.3554757, 48.8555040 2.3574259, 48.8560190 2.3572778, 48.8560559 2.3572415, 48.8560141 2.3571788, 48.8563329 2.3553132, 48.8834373 2.3324889, 48.8590577 2.3501929, 48.8595433 2.3489177, 48.8575096 2.3479041, 48.8593929 2.3493115, 48.8583173 2.3517204, 48.8577035 2.3502326, 48.8595480 2.3490548, 48.8573638 2.3512963, 48.8590250 2.3503203, 48.8583244 2.3499582, 48.8591774 2.3488521, 48.8589164 2.3485650, 48.8592685 2.3488863, 48.8591080 2.3500160, 48.8600408 2.3499857, 48.8616594 2.3501884, 48.8617621 2.3502461, 48.8597261 2.3540740, 48.8591328 2.3525765, 48.8824587 2.3401820, 48.8794020 2.3884400, 48.8796442 2.3890696, 48.8795960 2.3896580, 48.8600862 2.3565927, 48.8605623 2.3551334, 48.8560385 2.4049110, 48.8605425 2.4091699, 48.8256891 2.3501301, 48.8296848 2.3541069, 48.8278037 2.3523028, 48.8268925 2.3513505, 48.8274198 2.3518171, 48.8533299 2.3424383, 48.8119106 2.3570184, 48.8572208 2.3551092, 48.8571117 2.3550358, 48.8571384 2.3549764, 48.8571292 2.3541619, 48.8570142 2.3541389, 48.8569458 2.3554337, 48.8271315 2.3323734, 48.8274828 2.3325351, 48.8638719 2.3519655, 48.8646409 2.3536613, 48.8635758 2.3531607, 48.8636089 2.3534360, 48.8640231 2.3502159, 48.8640386 2.3503538, 48.8641785 2.3510736, 48.8581626 2.3561038, 48.8596070 2.3565697, 48.8595710 2.3565976, 48.8577487 2.3576815, 48.8579512 2.3567221, 48.8577587 2.3558712, 48.8564037 2.3572215, 48.8573858 2.3575923, 48.8569706 2.3578174, 48.8570944 2.3576266, 48.8573873 2.3589592, 48.8567788 2.3558116, 48.8575151 2.3587307, 48.8586071 2.3585283, 48.8574097 2.3590501, 48.8422251 2.3519017, 48.8422550 2.3522128, 48.8433232 2.3528098, 48.8633842 2.3464893, 48.8256293 2.3483441, 48.8259202 2.3471664, 48.8257885 2.3477809, 48.8569391 2.3587226, 48.8562824 2.3592731, 48.8562386 2.3592343, 48.8558049 2.3600410, 48.8402209 2.3517797, 48.8555549 2.3612781, 48.8559169 2.3603985, 48.8411303 2.3546717, 48.8549508 2.3624309, 48.8556266 2.3621786, 48.8563675 2.3643268, 48.8554990 2.3630220, 48.8549153 2.3623782, 48.8550149 2.3631694, 48.8565540 2.3642255, 48.8553861 2.3625173, 48.8556083 2.3627374, 48.8553790 2.3625438, 48.8552888 2.3629682, 48.8553171 2.3630156, 48.8552064 2.3625817, 48.8552557 2.3616146, 48.8552125 2.3615428, 48.8555544 2.3581927, 48.8549470 2.3612543, 48.8557611 2.3570094, 48.8556412 2.3606593, 48.8451155 2.4345033, 48.8260343 2.3476244, 48.8538346 2.3644665, 48.8540797 2.3659063, 48.8538463 2.3645345, 48.8540284 2.3650261, 48.8562566 2.3646932, 48.8549472 2.3633131, 48.8537619 2.3675235, 48.8538727 2.3672318, 48.8549776 2.3673407, 48.8540510 2.3686163, 48.8538949 2.3685489, 48.8540837 2.3685677, 48.8542760 2.3691388, 48.8543409 2.3691660, 48.8416734 2.3481104, 48.8398659 2.3475405, 48.8540659 2.3616249, 48.8549238 2.3592860, 48.8554369 2.3580795, 48.8554539 2.3579276, 48.8548402 2.3583739, 48.8551687 2.3602451, 48.8543977 2.3599670, 48.8540729 2.3612004, 48.8508419 2.3621258, 48.8513526 2.3628780, 48.8521583 2.3613070, 48.8525480 2.3641850, 48.8527075 2.3633017, 48.8532015 2.3640647, 48.8544815 2.3628958, 48.8536886 2.3643812, 48.8545334 2.3627527, 48.8542200 2.3635020, 48.8542835 2.3633155, 48.8532791 2.3664896, 48.8521321 2.3650946, 48.8519412 2.3645366, 48.8521775 2.3663665, 48.8507856 2.3671256, 48.8507596 2.3670235, 48.8498781 2.3644772, 48.8477690 2.3654853, 48.8629367 2.3522066, 48.8621665 2.3511124, 48.8626959 2.3521061, 48.8622789 2.3510860, 48.8619134 2.3509953, 48.8621598 2.3537564, 48.8657000 2.3535311, 48.8650633 2.3535236, 48.8650455 2.3535907, 48.8652453 2.3533870, 48.8659520 2.3532863, 48.8647008 2.3554661, 48.8651231 2.3557678, 48.8671336 2.3577810, 48.8657120 2.3565756, 48.8643855 2.3550009, 48.8645093 2.3542545, 48.8644586 2.3544256, 48.8644805 2.3545447, 48.8646620 2.3539239, 48.8644591 2.3546214, 48.8679243 2.3618751, 48.8682730 2.3614921, 48.8678851 2.3621385, 48.8674036 2.3627826, 48.8669898 2.3620443, 48.8832730 2.3880012, 48.8830654 2.3856822, 48.8517088 2.3431054, 48.8667033 2.3609857, 48.8667188 2.3611850, 48.8674734 2.3577982, 48.8658122 2.3570399, 48.8656157 2.3570603, 48.8609575 2.3483442, 48.8607500 2.3491700, 48.8658006 2.3578626, 48.8660231 2.3581385, 48.8664919 2.3600081, 48.8662353 2.3610229, 48.8723040 2.3535120, 48.8661285 2.3594408, 48.8655917 2.3595983, 48.8651109 2.3571532, 48.8649701 2.3570435, 48.8751228 2.3939970, 48.8777176 2.3937456, 48.8724707 2.3776998, 48.8717657 2.3765997, 48.8714128 2.3768852, 48.8189632 2.3613966, 48.8208495 2.3637354, 48.8235845 2.3656863, 48.8262413 2.3615997, 48.8232934 2.3654521, 48.8237603 2.3652263, 48.8518893 2.3417124, 48.8516010 2.3437321, 48.8508150 2.3422269, 48.8530176 2.3445259, 48.8521687 2.3444775, 48.8609387 2.3545725, 48.8609056 2.3546714, 48.8613715 2.3542462, 48.8636674 2.3608969, 48.8635569 2.3610435, 48.8649302 2.3623393, 48.8658753 2.3611105, 48.8665805 2.3619623, 48.8664891 2.3643204, 48.8662147 2.3645043, 48.8516511 2.3354386, 48.8517582 2.3381629, 48.8463274 2.3476351, 48.8533184 2.3416729, 48.8704217 2.3232384, 48.8632446 2.3614945, 48.8633000 2.3620149, 48.8632099 2.3622012, 48.8626247 2.3633483, 48.8625296 2.3635149, 48.8630524 2.3640855, 48.8621296 2.3644112, 48.8620957 2.3644902, 48.8612625 2.3644482, 48.8619291 2.3641444, 48.8640247 2.3639954, 48.8645550 2.3645938, 48.8615020 2.3620520, 48.8604574 2.3618940, 48.8794183 2.3843978, 48.8785891 2.3856103, 48.8810145 2.3891669, 48.8449381 2.3496655, 48.8465258 2.3513354, 48.8594649 2.3600214, 48.8598192 2.3606888, 48.8602716 2.3621222, 48.8590981 2.3594568, 48.8583524 2.3594541, 48.8639803 2.3651991, 48.8520518 2.3465211, 48.8526479 2.3470482, 48.8488337 2.3480608, 48.8614452 2.3647591, 48.8617960 2.3778943, 48.8624536 2.3800165, 48.8575642 2.3677839, 48.8560432 2.3669557, 48.8840145 2.3317743, 48.8800693 2.3538016, 48.8559327 2.3681748, 48.8942160 2.3873171, 48.8658583 2.3522098, 48.8630587 2.3508787, 48.8541575 2.3560098, 48.8605292 2.3572991, 48.8562137 2.3535054, 48.8580180 2.3499733, 48.8496476 2.3511453, 48.8494771 2.3555409, 48.8443282 2.3605939, 48.8495427 2.3537859, 48.8495364 2.3666202, 48.8544692 2.3379604, 48.8620353 2.3503145, 48.8612709 2.3498777, 48.8525082 2.3679448, 48.8552582 2.3605246, 48.8635347 2.3512387, 48.8630803 2.3510377, 48.8610000 2.3810929, 48.8542985 2.3783997, 48.8421221 2.3217245, 48.8881390 2.3534840, 48.8476074 2.3428362, 48.8718710 2.3683060, 48.8848656 2.3830530, 48.8827367 2.3814655, 48.8716043 2.3645626, 48.8694570 2.3635710, 48.8468855 2.3408953, 48.8636510 2.3505320, 48.8107198 2.3845021, 48.8103452 2.3853505, 48.8107593 2.3865273, 48.8101027 2.3896175, 48.8099429 2.3893929, 48.8139661 2.3907253, 48.8592743 2.3796462, 48.8589937 2.3814395, 48.8625209 2.3796607, 48.8618044 2.3781115, 48.8470420 2.3413880, 48.8471180 2.3410080, 48.8470620 2.3413100, 48.8474500 2.3412160, 48.8513211 2.3556751, 48.8575593 2.3848465, 48.8459422 2.3434742, 48.8630735 2.3791446, 48.8629401 2.3792630, 48.8628392 2.3793646, 48.8478202 2.3402069, 48.8406645 2.3219283, 48.8409458 2.3211307, 48.8418918 2.3218739, 48.8420110 2.3206428, 48.8422162 2.3202513, 48.8438796 2.3245430, 48.8521680 2.3314230, 48.8571890 2.3477470, 48.8566870 2.3553310, 48.8447287 2.3244719, 48.8479918 2.3275469, 48.8427041 2.3238548, 48.8549793 2.3291241, 48.8427198 2.3420521, 48.8805625 2.3348575, 48.8813024 2.3361254, 48.8643222 2.3548396, 48.8644140 2.3547850, 48.8687006 2.3354843, 48.8382008 2.3515664, 48.8786073 2.3705829, 48.8796835 2.3722606, 48.8688813 2.3296955, 48.8701584 2.3299506, 48.8689120 2.3292609, 48.8644425 2.3302320, 48.8640110 2.3357070, 48.8699070 2.3321250, 48.8845456 2.3332998, 48.8855390 2.3346124, 48.8860180 2.3351210, 48.8861637 2.3381011, 48.8819220 2.3375560, 48.8651140 2.3778720, 48.8821123 2.3666359, 48.8789675 2.3644250, 48.8790715 2.3649117, 48.8792236 2.3665452, 48.8820420 2.3678327, 48.8820416 2.3661137, 48.8816895 2.3656251, 48.8818956 2.3658787, 48.8779726 2.3655032, 48.8782055 2.3656749, 48.8788300 2.3662059, 48.8809308 2.3651881, 48.8812888 2.3651008, 48.8808303 2.3650793, 48.8814582 2.3647576, 48.8812021 2.3647160, 48.8807422 2.3649558, 48.8801571 2.3666317, 48.8800594 2.3668295, 48.8815137 2.3659229, 48.8777011 2.3652544, 48.8803699 2.3667330, 48.8831690 2.3710377, 48.8817976 2.3657678, 48.8815272 2.3646569, 48.8813513 2.3657268, 48.8808723 2.3646162, 48.8811695 2.3646071, 48.8760311 2.3700774, 48.8610790 2.3535900, 48.8615010 2.3537550, 48.8394781 2.3518278, 48.8416802 2.3556271, 48.8417641 2.3556159, 48.8411075 2.3561671, 48.8411617 2.3562621, 48.8430777 2.3636948, 48.8429787 2.3633417, 48.8419172 2.3589420, 48.8359676 2.3585104, 48.8400778 2.3373997, 48.8392433 2.3391037, 48.8520344 2.3993968, 48.8803135 2.3898477, 48.8801882 2.3901266, 48.8802834 2.3902661, 48.8811978 2.3776297, 48.8420207 2.3411311, 48.8643886 2.3546594, 48.8643090 2.3532130, 48.8642700 2.3531320, 48.8413087 2.3389738, 48.8413263 2.3391080, 48.8382571 2.3458273, 48.8437946 2.3390709, 48.8883530 2.3917794, 48.8864637 2.3771916, 48.8536730 2.3797768, 48.8398800 2.3609348, 48.8373167 2.3491914, 48.8480846 2.3334838, 48.8454837 2.3329497, 48.8451543 2.3325456, 48.8475334 2.3382332, 48.8474379 2.3363959, 48.8335617 2.3141734, 48.8370268 2.3124692, 48.8336111 2.3147957, 48.8767367 2.4093454, 48.8854169 2.3658931, 48.8852688 2.3676204, 48.8694004 2.3648970, 48.8321125 2.3499256, 48.8329194 2.3512077, 48.8238740 2.3180838, 48.8326642 2.3800258, 48.8566054 2.3397822, 48.8577865 2.3371140, 48.8632105 2.3998501, 48.8618768 2.4014860, 48.8645112 2.3981788, 48.8647595 2.3990532, 48.8627531 2.4005845, 48.8671314 2.3577761, 48.8668458 2.3586800, 48.8668914 2.3584627, 48.8670160 2.3581568, 48.8670538 2.3582562, 48.8668315 2.3590233, 48.8662924 2.3577679, 48.8668006 2.3582106, 48.8664997 2.3601015, 48.8680162 2.3548820, 48.8667335 2.3540236, 48.8647030 2.3567983, 48.8647921 2.3568339, 48.8643639 2.3541873, 48.8668657 2.3585775, 48.8774636 2.3705618, 48.8775915 2.3706404, 48.8780661 2.3700636, 48.8543308 2.3402565, 48.8537741 2.3390379, 48.8536188 2.3393161, 48.8551444 2.3395098, 48.8782580 2.3987300, 48.8572964 2.3373427, 48.8576139 2.3354110, 48.8533950 2.3355231, 48.8533506 2.3334547, 48.8546132 2.3335075, 48.8546432 2.3327719, 48.8546484 2.3333477, 48.8533032 2.3340213, 48.8521594 2.3307743, 48.8529586 2.3360296, 48.8516089 2.3354609, 48.8516697 2.3388251, 48.8519539 2.3394857, 48.8491904 2.3391833, 48.8494085 2.3375661, 48.8494338 2.3377819, 48.8476948 2.3714376, 48.8575400 2.3362149, 48.8576071 2.3358845, 48.8480587 2.3392944, 48.8489183 2.3392705, 48.8477108 2.3407718, 48.8481339 2.3411979, 48.8801119 2.3535250, 48.8688629 2.3592316, 48.8703048 2.3508014, 48.8796462 2.3557937, 48.8709985 2.3535865, 48.8590770 2.3279978, 48.8756316 2.3991077, 48.8455626 2.3726390, 48.8511931 2.3304049, 48.8506265 2.3304803, 48.8487297 2.3287519, 48.8485082 2.3285161, 48.8514421 2.3272954, 48.8502811 2.3276257, 48.8508389 2.3266905, 48.8516407 2.3251860, 48.8551090 2.3306870, 48.8698923 2.3755947, 48.8602777 2.3728143, 48.8487629 2.3975462, 48.8503580 2.3831342, 48.8568213 2.3685042, 48.8469960 2.3301669, 48.8427653 2.3300120, 48.8426139 2.3298989, 48.8439265 2.3302977, 48.8469707 2.3323837, 48.8466468 2.3323592, 48.8447355 2.3323563, 48.8406025 2.3362353, 48.8425197 2.3348793, 48.8426574 2.3347286, 48.8426551 2.3348501, 48.8416922 2.3314753, 48.8416177 2.3314774, 48.8396688 2.3373962, 48.8418958 2.3302251, 48.8419379 2.3304718, 48.8420145 2.3302544, 48.8827520 2.3817592, 48.8904247 2.3760144, 48.8944147 2.3812747, 48.8899953 2.3754730, 48.8422661 2.3280738, 48.8424306 2.3290349, 48.8699280 2.3499165, 48.8651036 2.3570995, 48.8632239 2.3566007, 48.8440612 2.3225950, 48.8438384 2.3223092, 48.8471137 2.3267431, 48.8442156 2.3244262, 48.8485184 2.3248051, 48.8489974 2.3252251, 48.8473682 2.3262422, 48.8460135 2.3197443, 48.8469097 2.3213077, 48.8499302 2.3238399, 48.8685410 2.3894417, 48.8707153 2.3567140, 48.8367623 2.3463790, 48.8570290 2.3204791, 48.8391455 2.3957152, 48.8180996 2.3286545, 48.8443992 2.3820174, 48.8478715 2.3198313, 48.8477564 2.3193946, 48.8467204 2.3172126, 48.8469920 2.3172024, 48.8473522 2.3183754, 48.8321351 2.3486444, 48.8313804 2.3480743, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8564288 2.3346389, 48.8467363 2.3268420, 48.8473592 2.3309027, 48.8530169 2.3313456, 48.8513553 2.3348681, 48.8558131 2.3388661, 48.8521220 2.3374608, 48.8555910 2.3384582, 48.8556378 2.3385568, 48.8537453 2.3365413, 48.8557427 2.3387366, 48.8534529 2.3385450, 48.8691076 2.3112127, 48.8293528 2.3802852, 48.8296687 2.3796004, 48.8298995 2.3795486, 48.8299140 2.3786838, 48.8296478 2.3789647, 48.8701795 2.3108738, 48.8701112 2.3111019, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8673734 2.3222301, 48.8643001 2.3323292, 48.8695610 2.3204803, 48.8693756 2.3206236, 48.8705692 2.3211241, 48.8701399 2.3208052, 48.8706806 2.3211802, 48.8703312 2.3232727, 48.8714664 2.3224733, 48.8711649 2.3221410, 48.8079896 2.3576969, 48.8086083 2.3629931, 48.8414485 2.3654773, 48.8712520 2.3169520, 48.8712577 2.3176917, 48.8729875 2.3210140, 48.8727654 2.3210286, 48.8731588 2.3180736, 48.8726568 2.3215983, 48.8726629 2.3106385, 48.8727071 2.3105863, 48.8703638 2.3102774, 48.8723435 2.3099599, 48.8727117 2.3106761, 48.8725939 2.3104452, 48.8723529 2.3102456, 48.8714188 2.3150011, 48.8806819 2.3876000, 48.8732419 2.3115596, 48.8737653 2.3157653, 48.8740832 2.3160181, 48.8728071 2.3158911, 48.8738587 2.3163169, 48.8729521 2.3158478, 48.8740946 2.3177657, 48.8737509 2.3196440, 48.8744903 2.3184375, 48.8744495 2.3205466, 48.8755838 2.3199456, 48.8750678 2.3201909, 48.8396584 2.3567615, 48.8397067 2.3568218, 48.8776040 2.3524312, 48.8738325 2.3224396, 48.8735529 2.3223447, 48.8736367 2.3223675, 48.8712562 2.3235785, 48.8732102 2.3244787, 48.8713058 2.3233311, 48.8732551 2.3241335, 48.8729576 2.3236844, 48.8713495 2.3232715, 48.8726217 2.3262164, 48.8722237 2.3257923, 48.8731505 2.3255205, 48.8724761 2.3240966, 48.8721839 2.3251685, 48.8719895 2.3260176, 48.8279138 2.3225247, 48.8832583 2.3346263, 48.8832465 2.3341658, 48.8831954 2.3348376, 48.8842151 2.3311538, 48.8830070 2.3349691, 48.8833032 2.3455032, 48.8841705 2.3313488, 48.8826156 2.3432538, 48.8834306 2.3335452, 48.8841164 2.3315750, 48.8824079 2.3419280, 48.8834666 2.3339320, 48.8831738 2.3344061, 48.8821954 2.3389929, 48.8836632 2.3332864, 48.8831695 2.3452574, 48.8824739 2.3367661, 48.8829388 2.3356827, 48.8831317 2.3458945, 48.8843696 2.3305004, 48.8842302 2.3305121, 48.8826517 2.3426287, 48.8827762 2.3362216, 48.8839947 2.3320999, 48.8842717 2.3309204, 48.8824891 2.3425994, 48.8830995 2.3449030, 48.8829578 2.3351297, 48.8832939 2.3340079, 48.8830087 2.3354500, 48.8840806 2.3311362, 48.8827159 2.3359415, 48.8828527 2.3354881, 48.8840902 2.3316931, 48.8911573 2.3437849, 48.8841548 2.3308314, 48.8839884 2.3315392, 48.8827419 2.3443694, 48.8824955 2.3419279, 48.8842291 2.3288540, 48.8840681 2.3286855, 48.8841801 2.3289398, 48.8859483 2.3285578, 48.8851713 2.3293553, 48.8461325 2.3412680, 48.8674254 2.3444285, 48.8744933 2.3211100, 48.8755889 2.3237433, 48.8743886 2.3211490, 48.8746980 2.3252714, 48.8750673 2.3239545, 48.8751646 2.3250295, 48.8753759 2.3236510, 48.8748826 2.3266542, 48.8752230 2.3264851, 48.8753241 2.3259291, 48.8752570 2.3254427, 48.8741256 2.3249605, 48.8740876 2.3267342, 48.8741599 2.3254911, 48.8741556 2.3274201, 48.8759721 2.3267452, 48.8741206 2.3250025, 48.8742483 2.3248090, 48.8780124 2.3180149, 48.8761914 2.3213046, 48.8754293 2.3236426, 48.8758310 2.3206114, 48.8769049 2.3214132, 48.8760340 2.3235512, 48.8765466 2.3235471, 48.8762683 2.3234720, 48.8778017 2.3225743, 48.8771550 2.3220451, 48.8869689 2.3475030, 48.8604478 2.3444956, 48.8777590 2.3228786, 48.8803557 2.3235567, 48.8801220 2.3241052, 48.8776805 2.3267977, 48.8778520 2.3265712, 48.8770026 2.3270417, 48.8796202 2.3268466, 48.8785701 2.3268262, 48.8797765 2.3268873, 48.8794888 2.3267113, 48.8766444 2.3270121, 48.8797413 2.3271672, 48.8831584 2.3268974, 48.8831024 2.3264980, 48.8820671 2.3242802, 48.8821564 2.3257619, 48.8808916 2.3244418, 48.8807077 2.3245325, 48.8835944 2.3283960, 48.8832767 2.3277563, 48.8834770 2.3281748, 48.8837504 2.3286298, 48.8840835 2.3286332, 48.8834171 2.3280471, 48.8836613 2.3266118, 48.8833400 2.3254009, 48.8829277 2.3256156, 48.8829212 2.3254797, 48.8831342 2.3236837, 48.8830214 2.3238111, 48.8801215 2.3203120, 48.8793007 2.3221454, 48.8796822 2.3216553, 48.8799079 2.3202876, 48.8798173 2.3215782, 48.8799360 2.3212877, 48.8805205 2.3183206, 48.8813689 2.3170128, 48.8810818 2.3162341, 48.8799932 2.3179419, 48.8779762 2.3183300, 48.8786152 2.3156839, 48.8798040 2.3153072, 48.8785087 2.3157093, 48.8781681 2.3163408, 48.8223980 2.3278952, 48.8794469 2.3138766, 48.8769627 2.3148350, 48.8791820 2.3141155, 48.8766669 2.3130694, 48.8767157 2.3178938, 48.8767711 2.3179268, 48.8753406 2.3169637, 48.8749225 2.3191966, 48.8754098 2.3151509, 48.8749869 2.3172752, 48.8749238 2.3194549, 48.8752650 2.3165061, 48.8558538 2.3252896, 48.8738521 2.3147064, 48.8225465 2.3277499, 48.8751556 2.3094294, 48.8749212 2.3089779, 48.8731957 2.3115713, 48.8188018 2.3371410, 48.8733445 2.3091989, 48.8745431 2.3093666, 48.8237172 2.3265140, 48.8477369 2.3121791, 48.8496728 2.3082844, 48.8185040 2.3384113, 48.8181578 2.3401279, 48.8221841 2.3293882, 48.8729879 2.3074334, 48.8724450 2.3072214, 48.8700986 2.3070512, 48.8699553 2.3082890, 48.8707572 2.3085752, 48.8696331 2.3067786, 48.8707001 2.3083322, 48.8694999 2.3072253, 48.8703856 2.3070023, 48.8715518 2.3062553, 48.8715784 2.3063992, 48.8715219 2.3073286, 48.8713131 2.3073190, 48.8629714 2.3463765, 48.8666488 2.3440729, 48.8708475 2.3057806, 48.8674712 2.3054788, 48.8657528 2.3040463, 48.8669256 2.3076130, 48.8668818 2.3076173, 48.8672769 2.3062806, 48.8670111 2.3076126, 48.8313695 2.3205695, 48.8770626 2.3411440, 48.8602188 2.3423098, 48.8613591 2.3400077, 48.8583933 2.3023795, 48.8675571 2.3965533, 48.8689212 2.3954887, 48.8697942 2.3944982, 48.8711155 2.4001775, 48.8716186 2.4041500, 48.8706337 2.3954670, 48.8713425 2.4039078, 48.8788328 2.3896914, 48.8600728 2.4041262, 48.8526933 2.4056082, 48.8597085 2.4049673, 48.8635035 2.4085486, 48.8583918 2.4006119, 48.8448202 2.3293072, 48.8433715 2.3266113, 48.8370007 2.3812275, 48.8646790 2.4054480, 48.8461742 2.4105318, 48.8465849 2.4113407, 48.8648400 2.4152310, 48.8646770 2.3992490, 48.8819322 2.3258693, 48.8159221 2.3770557, 48.8697412 2.3069468, 48.8701205 2.3072750, 48.8698436 2.3061758, 48.8694849 2.3077729, 48.8696809 2.3071292, 48.8699522 2.3058242, 48.8704110 2.3068932, 48.8384390 2.3511134, 48.8382010 2.3505000, 48.8382672 2.3505293, 48.8382699 2.3505108, 48.8378958 2.3507127, 48.8377870 2.3508117, 48.8378105 2.3508549, 48.8891960 2.3333376, 48.8893758 2.3334530, 48.8375022 2.3543890, 48.8390096 2.3532786, 48.8389834 2.3506256, 48.8386419 2.3508748, 48.8930467 2.3394449, 48.8799166 2.3359231, 48.8389664 2.3530576, 48.8384933 2.3512141, 48.8382170 2.3510056, 48.8379492 2.3512092, 48.8376898 2.3513509, 48.8378570 2.3515198, 48.8376483 2.3516414, 48.8204882 2.3602086, 48.8203447 2.3628121, 48.8199857 2.3627088, 48.8199140 2.3618618, 48.8202391 2.3951491, 48.8191259 2.3966796, 48.8339810 2.3847461, 48.8373832 2.3826403, 48.8353141 2.3838347, 48.8397720 2.3826569, 48.8352990 2.3814978, 48.8135137 2.3767015, 48.8108413 2.3796908, 48.8158216 2.3770018, 48.8614760 2.3530830, 48.8604416 2.3503543, 48.8598478 2.3513855, 48.8139181 2.3758182, 48.8737739 2.3354553, 48.8824947 2.3773446, 48.8885223 2.3927021, 48.8884941 2.3926163, 48.8885364 2.3928738, 48.8885830 2.3930712, 48.8886474 2.3929269, 48.8888115 2.3939896, 48.8233195 2.3476283, 48.8557793 2.4084458, 48.8935929 2.3994808, 48.8189768 2.3657077, 48.8234454 2.3709722, 48.8227762 2.3624835, 48.8214034 2.3722415, 48.8207003 2.3640557, 48.8260744 2.3543019, 48.8762458 2.4177548, 48.8787743 2.4087695, 48.8790383 2.4084495, 48.8782046 2.4088226, 48.8793770 2.4082476, 48.8785854 2.4080833, 48.8244936 2.3379891, 48.8222464 2.3552235, 48.8233563 2.3542079, 48.8246704 2.3465277, 48.8251740 2.3417242, 48.8239192 2.3485650, 48.8238645 2.3485192, 48.8242035 2.3397900, 48.8244362 2.3385188, 48.8238988 2.3446115, 48.8246212 2.3416597, 48.8819609 2.3610276, 48.8831626 2.3618001, 48.8832736 2.3614499, 48.8829824 2.3614134, 48.8835841 2.3602483, 48.8839950 2.3594946, 48.8833936 2.3599667, 48.8828988 2.3592335, 48.8828405 2.3615206, 48.8827589 2.3595149, 48.8835628 2.3609310, 48.8840217 2.3614210, 48.8829252 2.3616011, 48.8829454 2.3619100, 48.8828267 2.3620896, 48.8824542 2.3621063, 48.8735147 2.3546804, 48.8725743 2.3544129, 48.8679601 2.3808000, 48.8733935 2.3902484, 48.8739298 2.3893471, 48.8821165 2.3636110, 48.8787523 2.3641791, 48.8775739 2.3642408, 48.8770173 2.3640220, 48.8800819 2.3647141, 48.8803249 2.3646120, 48.8802620 2.3643405, 48.8937287 2.3847900, 48.8952805 2.3850234, 48.8799725 2.3588623, 48.8800272 2.3588101, 48.8801565 2.3594651, 48.8806816 2.3601083, 48.8815776 2.3583327, 48.8817822 2.3584614, 48.8829349 2.3636381, 48.8727865 2.3799743, 48.8727273 2.3786615, 48.8912148 2.3413495, 48.8829772 2.3594750, 48.8796109 2.3574120, 48.8795879 2.3575096, 48.8796495 2.3570308, 48.8797114 2.3574552, 48.8804717 2.3578445, 48.8608729 2.3451379, 48.8482752 2.3934752, 48.8784279 2.3643183, 48.8605186 2.3511396, 48.8607908 2.3512861, 48.8934866 2.3992947, 48.8936838 2.3993233, 48.8826930 2.3668426, 48.8826392 2.3667648, 48.8772474 2.3640950, 48.8601059 2.3247967, 48.8599671 2.3250425, 48.8601182 2.3248078, 48.8640823 2.3242375, 48.8832324 2.3637211, 48.8820288 2.3635484, 48.8822211 2.3634868, 48.8753587 2.3261663, 48.8760417 2.3267034, 48.8549710 2.3707330, 48.8796547 2.3374136, 48.8794368 2.3375133, 48.8219547 2.3608058, 48.8193723 2.3655267, 48.8196355 2.3653170, 48.8669641 2.3142243, 48.8651920 2.3140147, 48.8670174 2.3136289, 48.8657282 2.3139318, 48.8651787 2.3134167, 48.8659279 2.3136078, 48.8763139 2.3563480, 48.8754103 2.3500663, 48.8702381 2.3689388, 48.8705380 2.3685763, 48.8809351 2.3625812, 48.8809545 2.3624632, 48.8807358 2.3629915, 48.8827554 2.3649189, 48.8831311 2.3654083, 48.8830941 2.3655236, 48.8832881 2.3655987, 48.8833481 2.3657221, 48.8839354 2.3678464, 48.8838331 2.3670954, 48.8839358 2.3671407, 48.8296408 2.3826067, 48.8296130 2.3809208, 48.8289706 2.3807621, 48.8279788 2.3803521, 48.8280472 2.3808170, 48.8284670 2.3791901, 48.8292763 2.3823041, 48.8294437 2.3827214, 48.8290930 2.3833191, 48.8287894 2.3821387, 48.8286476 2.3812047, 48.8282557 2.3802729, 48.8293963 2.3789703, 48.8297040 2.3791490, 48.8299030 2.3769431, 48.8293931 2.3783272, 48.8289723 2.3785733, 48.8281852 2.3793614, 48.8283787 2.3805676, 48.8314453 2.3762846, 48.8310681 2.3765997, 48.8321522 2.3756247, 48.8332346 2.3745478, 48.8340181 2.3740832, 48.8511260 2.3460443, 48.8580602 2.3089956, 48.8517830 2.3177917, 48.8595784 2.3072201, 48.8597452 2.3084577, 48.8746858 2.3662628, 48.8425329 2.3202995, 48.8677570 2.3369680, 48.8318780 2.3674139, 48.8444634 2.4058653, 48.8903045 2.3534684, 48.8434466 2.3895932, 48.8804027 2.3645128, 48.8809954 2.3651002, 48.8807643 2.3648588, 48.8808736 2.3650414, 48.8807784 2.3649259, 48.8806639 2.3647867, 48.8806637 2.3648615, 48.8809755 2.3651656, 48.8795889 2.3635682, 48.8782154 2.3621471, 48.8790673 2.3627937, 48.8775877 2.3615896, 48.8781096 2.3616482, 48.8776297 2.3614015, 48.8764602 2.3609294, 48.8765025 2.3607095, 48.8763120 2.3610528, 48.8765925 2.3611628, 48.8761919 2.3607846, 48.8762341 2.3608075, 48.8905790 2.4065144, 48.8847598 2.3507721, 48.8846886 2.3508402, 48.8802074 2.3638169, 48.8792090 2.3625482, 48.8812463 2.3652224, 48.8806571 2.3643506, 48.8813045 2.3655093, 48.8822323 2.3662711, 48.8821920 2.3662947, 48.8828408 2.3670033, 48.8831548 2.3679716, 48.8830789 2.3673359, 48.8827050 2.3670033, 48.8475310 2.3871419, 48.8397944 2.3818660, 48.8243977 2.3360819, 48.8649222 2.3994933, 48.8297310 2.3179488, 48.8516782 2.3146314, 48.8677797 2.3773892, 48.8365930 2.3046690, 48.8363767 2.4236251, 48.8295071 2.4201091, 48.8300361 2.4231832, 48.8295708 2.4234828, 48.8384857 2.3139931, 48.8880790 2.3433440, 48.8425610 2.3055230, 48.8488720 2.3128820, 48.8817158 2.3974038, 48.8345717 2.3321583, 48.8517060 2.3188780, 48.8430906 2.4215578, 48.8600697 2.3723040, 48.8322990 2.3969380, 48.8852454 2.3310516, 48.8397680 2.3287550, 48.8893940 2.3388820, 48.8562087 2.3767474, 48.8556820 2.3852020, 48.8238387 2.3531949, 48.8315645 2.4109263, 48.8312210 2.4129893, 48.8311370 2.3128840, 48.8778330 2.3934820, 48.8555310 2.3895370, 48.8551080 2.3942800, 48.8599920 2.3625150, 48.8270122 2.3540304, 48.8424551 2.3888122, 48.8856451 2.3276786, 48.8501704 2.3439958, 48.8525988 2.4088082, 48.8316177 2.3780517, 48.8898369 2.3739136, 48.8307590 2.3592040, 48.8526713 2.3815527, 48.8417000 2.3374070, 48.8210197 2.3568688, 48.8951024 2.3643279, 48.8433760 2.3364170, 48.8504870 2.3502540, 48.8654640 2.3863600, 48.8702780 2.3853090, 48.8684460 2.3844060, 48.8483008 2.3594250, 48.8743960 2.3620000, 48.8590555 2.3853281, 48.8708487 2.3842762, 48.8808400 2.3880660, 48.8185772 2.3545050, 48.8221640 2.3407800, 48.8861910 2.3437000, 48.8229962 2.3483008, 48.8548880 2.3860580, 48.8334140 2.3198533, 48.8342986 2.3307561, 48.8649444 2.4051523, 48.8711656 2.3608619, 48.8683392 2.3860944, 48.8512040 2.3336860, 48.8211700 2.3525560, 48.8412050 2.4011810, 48.8957085 2.3611060, 48.8280471 2.4193059, 48.8319760 2.4160891, 48.8322537 2.4156461, 48.8404327 2.4302364, 48.8523056 2.3854632, 48.8827393 2.3748215, 48.8649924 2.3911518, 48.8283394 2.3695038, 48.8814860 2.3253960, 48.8890670 2.3382500, 48.8713595 2.3858455, 48.8756264 2.3549455, 48.8316594 2.3202088, 48.8940100 2.3515980, 48.8515687 2.3455917, 48.8606179 2.4048647, 48.8221234 2.3755099, 48.8501856 2.3598181, 48.8832242 2.3300482, 48.8543340 2.3134030, 48.8479841 2.3021348, 48.8783392 2.3518796, 48.8672620 2.3546160, 48.8373130 2.3123540, 48.8929520 2.3468380, 48.8319794 2.3254293, 48.8876110 2.3980200, 48.8581731 2.4063523, 48.8581782 2.3488219, 48.8701720 2.3941990, 48.8252925 2.3693389, 48.8528480 2.3236680, 48.8366880 2.3168190, 48.8311305 2.3217527, 48.8760549 2.4066379, 48.8224115 2.3234656, 48.8563720 2.3423640, 48.8785620 2.3603690, 48.8656244 2.4005700, 48.8678880 2.4110180, 48.8782870 2.3930910, 48.8687996 2.3670827, 48.8488580 2.3354220, 48.8323838 2.3266258, 48.8302050 2.3165310, 48.8578985 2.3627922, 48.8338684 2.3623631, 48.8186719 2.3602335, 48.8311679 2.3698529, 48.8353270 2.3472350, 48.8435250 2.3852390, 48.8239822 2.3186264, 48.8847495 2.3583714, 48.8680920 2.3674820, 48.8749920 2.3693880, 48.8691100 2.3880580, 48.8927720 2.3393440, 48.8582469 2.3636013, 48.8847394 2.3599665, 48.8708650 2.3267180, 48.8851070 2.3774500, 48.8759177 2.3199403, 48.8411853 2.3632232, 48.8766520 2.3471580, 48.8432899 2.3273991, 48.8863250 2.3533990, 48.8501986 2.3439620, 48.8937263 2.3632365, 48.8505319 2.3140947, 48.8866720 2.3745570, 48.8519585 2.3815373, 48.8735974 2.3763609, 48.8486812 2.4047540, 48.8186727 2.3590770, 48.8422355 2.3539722, 48.8865497 2.3367162, 48.8940029 2.3839514, 48.8509163 2.4000959, 48.8737600 2.4116660, 48.8608430 2.4112060, 48.8729910 2.3967970, 48.8569010 2.3829850, 48.8670820 2.3921970, 48.8394056 2.4219004, 48.8491125 2.4034753, 48.8387600 2.3533490, 48.8650341 2.4104986, 48.8939970 2.3494640, 48.8765790 2.3317425, 48.8570556 2.3709415, 48.8861355 2.3561753, 48.8446043 2.3875639, 48.8780460 2.3546040, 48.8885760 2.3372580, 48.8544710 2.3306000, 48.8482791 2.3738928, 48.8541916 2.4013975, 48.8671567 2.3104167, 48.8674916 2.3104095, 48.8653971 2.3105177, 48.8678026 2.3100770, 48.8656474 2.3104264, 48.8799198 2.3624384, 48.8804191 2.3624653, 48.8801632 2.3624358, 48.8806906 2.3621407, 48.8807012 2.3618242, 48.8807735 2.3621112, 48.8477459 2.4005894, 48.8682247 2.3381270, 48.8681145 2.3380654, 48.8167343 2.3794519, 48.8365374 2.3516855, 48.8815009 2.3685984, 48.8124881 2.3760676, 48.8155517 2.3934471, 48.8319137 2.3445927, 48.8143542 2.3787887, 48.8471866 2.3534537, 48.8491388 2.3559696, 48.8406432 2.3520718, 48.8408454 2.3523400, 48.8407413 2.3515357, 48.8390129 2.3499462, 48.8315105 2.3698744, 48.8387533 2.3310982, 48.8395777 2.3302123, 48.8490162 2.3701002, 48.8523614 2.3398708, 48.8521302 2.3389535, 48.8450075 2.3104549, 48.8249480 2.3573521, 48.8401996 2.3509062, 48.8403358 2.3506549, 48.8928215 2.3985124, 48.8740698 2.3727422, 48.8432745 2.3153982, 48.8463451 2.3737061, 48.8498772 2.3811118, 48.8495091 2.3797387, 48.8495044 2.3793334, 48.8465065 2.3730628, 48.8463681 2.3733407, 48.8459991 2.3734585, 48.8465800 2.3730993, 48.8465204 2.3733044, 48.8433254 2.3023574, 48.8435384 2.3065535, 48.8150286 2.3456431, 48.8148511 2.3492039, 48.8366110 2.3126681, 48.8700086 2.3302941, 48.8579822 2.4214970, 48.8580629 2.4214275, 48.8781954 2.4224230, 48.8580080 2.4216253, 48.8905420 2.3939914, 48.8953649 2.3864414, 48.8772168 2.4062867, 48.8921927 2.3896612, 48.8707204 2.3239555, 48.8705451 2.3238330, 48.8706016 2.3238683, 48.8377715 2.3234750, 48.8406208 2.3129284, 48.8411414 2.3136506, 48.8388721 2.3164471, 48.8384100 2.3116290, 48.8401231 2.3149792, 48.8542991 2.3674061, 48.8538841 2.3681040, 48.8533487 2.3667989, 48.8536236 2.3667526, 48.8537034 2.3664740, 48.8536267 2.3664311, 48.8193627 2.3266599, 48.8396268 2.3145492, 48.8404224 2.3130691, 48.8430176 2.3242123, 48.8388336 2.3158922, 48.8408422 2.3172666, 48.8415445 2.3143815, 48.8412580 2.3079007, 48.8425778 2.3218874, 48.8410422 2.3148300, 48.8749075 2.3418631, 48.8740990 2.3471708, 48.8759825 2.3462270, 48.8739914 2.3464038, 48.8760665 2.3440322, 48.8741142 2.3446221, 48.8742352 2.3423076, 48.8752606 2.3418409, 48.8751282 2.3408094, 48.8760583 2.3441230, 48.8762130 2.3456817, 48.8757020 2.3437474, 48.8741222 2.3448869, 48.8766243 2.3463455, 48.8752057 2.3418014, 48.8737830 2.3446276, 48.8750436 2.3412323, 48.8747398 2.3467172, 48.8741144 2.3424987, 48.8738360 2.3447471, 48.8756838 2.3435083, 48.8761473 2.3456662, 48.8770209 2.3458704, 48.8769144 2.3458107, 48.8479223 2.3736079, 48.8451934 2.3802706, 48.8362921 2.4047413, 48.8758907 2.3810965, 48.8325290 2.3252190, 48.8276699 2.3261967, 48.8326630 2.3254130, 48.8724084 2.3639647, 48.8516854 2.3468389, 48.8417733 2.3185097, 48.8411418 2.3133493, 48.8454167 2.4283163, 48.8485184 2.4348611, 48.8485081 2.4353061, 48.8368728 2.3346505, 48.8482882 2.3806325, 48.8413530 2.3568801, 48.8442705 2.3560097, 48.8424181 2.3609453, 48.8447026 2.3568665, 48.8435512 2.3549103, 48.8448858 2.3578698, 48.8445537 2.3572323, 48.8460917 2.3593780, 48.8446377 2.3567328, 48.8419222 2.3590115, 48.8438344 2.3546970, 48.8437534 2.3546611, 48.8450203 2.3575273, 48.8460448 2.3594929, 48.8437555 2.3548025, 48.8439256 2.3553329, 48.8413724 2.3560171, 48.8455890 2.3583924, 48.8437212 2.3551124, 48.8429819 2.3631352, 48.8428723 2.3552404, 48.8442344 2.3557221, 48.8427689 2.3623241, 48.8419694 2.3616061, 48.8420406 2.3624430, 48.8421125 2.3625595, 48.8421654 2.3615859, 48.8394820 2.3097854, 48.8904147 2.3597111, 48.8839900 2.3286046, 48.8839605 2.3284938, 48.8949842 2.3821818, 48.8947991 2.3827102, 48.8951764 2.3824259, 48.8785492 2.3318734, 48.8911227 2.4028435, 48.8689109 2.3408822, 48.8275263 2.3351820, 48.8584723 2.4148023, 48.8899959 2.3389104, 48.8763431 2.4041075, 48.8362844 2.3061932, 48.8413551 2.3134214, 48.8406209 2.3131425, 48.8408995 2.3133856, 48.8366118 2.3066363, 48.8360799 2.3099828, 48.8377889 2.3112404, 48.8801236 2.3667122, 48.8799930 2.3669160, 48.8256117 2.3156483, 48.8846736 2.3626003, 48.8845801 2.3625895, 48.8846083 2.3626888, 48.8842378 2.3608157, 48.8833010 2.3854417, 48.8846806 2.3623964, 48.8797648 2.3567638, 48.8906387 2.3764631, 48.8867364 2.3716195, 48.8787241 2.3620455, 48.8855864 2.3701866, 48.8917841 2.3754089, 48.8910215 2.4011225, 48.8909532 2.3762481, 48.8716440 2.3678590, 48.8810608 2.3640684, 48.8810016 2.3640265, 48.8815607 2.3646012, 48.8817018 2.3639112, 48.8842012 2.3591315, 48.8842153 2.3560766, 48.8880139 2.3770318, 48.8880685 2.3769540, 48.8243361 2.3260774, 48.8235176 2.3258353, 48.8235582 2.3253743, 48.8233119 2.3260789, 48.8225768 2.3276097, 48.8229502 2.3248811, 48.8413446 2.3177334, 48.8410150 2.3160260, 48.8412041 2.3167359, 48.8408951 2.3161732, 48.8412756 2.3177202, 48.8436874 2.3302939, 48.8888236 2.3460678, 48.8955600 2.3458430, 48.8909736 2.3451546, 48.8878856 2.3659310, 48.8733204 2.3254505, 48.8845445 2.3602834, 48.8848152 2.3606854, 48.8846300 2.3608651, 48.8664544 2.3344768, 48.8667755 2.3343748, 48.8676389 2.3332399, 48.8691704 2.3325104, 48.8315183 2.3664031, 48.8314132 2.3666206, 48.8280956 2.3585627, 48.8293080 2.3652192, 48.8271491 2.3665620, 48.8286456 2.3651923, 48.8291187 2.3655696, 48.8308432 2.3659695, 48.8173865 2.3727529, 48.8265805 2.3302230, 48.8269224 2.3285268, 48.8604905 2.3677993, 48.8505335 2.3887324, 48.8414876 2.3868742, 48.8453467 2.3836640, 48.8903952 2.3301771, 48.8369274 2.3592628, 48.8513298 2.3837511, 48.8655911 2.3030514, 48.8657369 2.3033357, 48.8765522 2.3574684, 48.8240570 2.3358712, 48.8928637 2.3634518, 48.8962560 2.3589998, 48.8907716 2.3308685, 48.8914267 2.3486643, 48.8950968 2.3687029, 48.8912142 2.3513181, 48.8937350 2.3474870, 48.8841667 2.3418884, 48.8894575 2.3334080, 48.8888295 2.3559941, 48.8928646 2.3401075, 48.8866760 2.3532946, 48.8951369 2.3599640, 48.8866165 2.3262539, 48.8883502 2.3535905, 48.8910569 2.3398224, 48.8864478 2.3329208, 48.8901247 2.3605177, 48.8954760 2.3497870, 48.8896461 2.3382212, 48.8846860 2.3536867, 48.8904472 2.3492576, 48.8852757 2.3345602, 48.8944930 2.3415130, 48.8867353 2.3613685, 48.8918730 2.3354310, 48.8928650 2.3444840, 48.8895980 2.3628765, 48.8957920 2.3455810, 48.8944869 2.3522760, 48.8846342 2.3441510, 48.8877079 2.3504076, 48.8861209 2.3568514, 48.8870108 2.3668702, 48.8899467 2.3427294, 48.8885796 2.3472110, 48.8908959 2.3450395, 48.8708908 2.3743059, 48.8703845 2.3744929, 48.8665002 2.3708740, 48.8594585 2.3560654, 48.8606979 2.3554288, 48.8608937 2.3534909, 48.8602163 2.3530380, 48.8587314 2.3571857, 48.8605259 2.3552067, 48.8776228 2.3708847, 48.8781735 2.3715144, 48.8784859 2.3741475, 48.8786657 2.3782387, 48.8780030 2.3781296, 48.8765046 2.3790929, 48.8790979 2.3742637, 48.8774152 2.3742123, 48.8769989 2.3740996, 48.8873966 2.3492159, 48.8875689 2.3536169, 48.8875165 2.3520499, 48.8508625 2.3961635, 48.8831639 2.3275572, 48.8609081 2.3309365, 48.8437364 2.3392987, 48.8713120 2.3736247, 48.8714742 2.3750525, 48.8713989 2.3748429, 48.8717746 2.3758883, 48.8717450 2.3763419, 48.8717642 2.3765169, 48.8719061 2.3762543, 48.8870068 2.3868037, 48.8715920 2.3753803, 48.8710718 2.3739992, 48.8701850 2.3766208, 48.8702060 2.3709819, 48.8701630 2.3708030, 48.8701560 2.3711369, 48.8705298 2.3731250, 48.8464713 2.3870797, 48.8408726 2.3875568, 48.8857875 2.3376754, 48.8856834 2.3380986, 48.8908443 2.3617886, 48.8850609 2.3402076, 48.8707630 2.3736928, 48.8709201 2.3740599, 48.8710092 2.3742679, 48.8710893 2.3748362, 48.8562928 2.4086751, 48.8555569 2.4090964, 48.8535427 2.4096248, 48.8661570 2.3251630, 48.8648196 2.3294492, 48.8569556 2.3980459, 48.8564650 2.4027024, 48.8495059 2.3954641, 48.8484892 2.3941720, 48.8495831 2.3952770, 48.8549101 2.3613791, 48.8592147 2.3578986, 48.8624940 2.3445634, 48.8846348 2.3590969, 48.8477882 2.3978367, 48.8949558 2.3870960, 48.8475082 2.3756380, 48.8480088 2.3759639, 48.8863319 2.3711222, 48.8932223 2.3631390, 48.8920738 2.3615515, 48.8907907 2.3766980, 48.8933960 2.3636868, 48.8857831 2.3704180, 48.8851652 2.3594355, 48.8882670 2.3737456, 48.8890319 2.3744326, 48.8842463 2.3674355, 48.8929330 2.3634606, 48.8933928 2.3736857, 48.8896780 2.3752100, 48.8842985 2.3684154, 48.8873865 2.3724047, 48.8948588 2.3721971, 48.8862739 2.3595599, 48.8942132 2.3657813, 48.8886939 2.3740545, 48.8955459 2.3703338, 48.8862598 2.3626862, 48.8860205 2.3612559, 48.8897668 2.3683274, 48.8874695 2.3672750, 48.8873800 2.3672402, 48.8872163 2.3671561, 48.8856917 2.3661401, 48.8850074 2.3674278, 48.8842940 2.3538553, 48.8893604 2.3711944, 48.8830609 2.3674369, 48.8909176 2.3600891, 48.8819509 2.3660462, 48.8890567 2.3712581, 48.8872523 2.3728586, 48.8833210 2.3677773, 48.8859966 2.3713041, 48.8862555 2.3564214, 48.8920710 2.3616583, 48.8837594 2.3683249, 48.8835852 2.3687084, 48.8874192 2.3730547, 48.8843277 2.3553188, 48.8865440 2.3719981, 48.8862163 2.3564628, 48.8892956 2.3534520, 48.8493037 2.3948863, 48.8883918 2.3276047, 48.8527859 2.4060423, 48.8532174 2.4087275, 48.8134004 2.3591607, 48.8467534 2.3735713, 48.8672772 2.3368959, 48.8296616 2.3177920, 48.8283684 2.3161973, 48.8855880 2.3605114, 48.8857312 2.3605852, 48.8859173 2.3606402, 48.8866286 2.3612403, 48.8902851 2.3688154, 48.8900187 2.3629443, 48.8899933 2.3641060, 48.8899894 2.3635134, 48.8347149 2.3277467, 48.8354063 2.3258802, 48.8358672 2.3242187, 48.8355698 2.3250292, 48.8348588 2.3273891, 48.8350846 2.3267608, 48.8341036 2.3294199, 48.8324180 2.3247172, 48.8342294 2.3264332, 48.8307191 2.3193023, 48.8269809 2.3245691, 48.8304006 2.3192272, 48.8323241 2.3308583, 48.8320415 2.3248498, 48.8709233 2.3331660, 48.8712559 2.3345380, 48.8708176 2.3345200, 48.8701868 2.3794253, 48.8565125 2.3947303, 48.8564548 2.3947397, 48.8463464 2.3945644, 48.8297820 2.3470870, 48.8694854 2.4165551, 48.8320767 2.3388679, 48.8587145 2.3573966, 48.8707845 2.3750862, 48.8700714 2.3755537, 48.8565035 2.3940625, 48.8689943 2.4151668, 48.8955070 2.3483656, 48.8951815 2.3483062, 48.8465689 2.3814277, 48.8470280 2.3414730, 48.8599466 2.3277279, 48.8470055 2.3415722, 48.8603993 2.3262152, 48.8478006 2.3440011, 48.8471492 2.3421620, 48.8535250 2.3447123, 48.8472967 2.3417837, 48.8368961 2.3177487, 48.8367758 2.3180171, 48.8375805 2.3194622, 48.8396082 2.3324972, 48.8539346 2.3493079, 48.8529322 2.3520857, 48.8559760 2.3666852, 48.8499857 2.3459367, 48.8626827 2.3523046, 48.8182992 2.3784546, 48.8169487 2.3795873, 48.8485371 2.3779078, 48.8511475 2.3804023, 48.8510187 2.3802119, 48.8506286 2.3783987, 48.8184928 2.3783255, 48.8642832 2.3420572, 48.8824125 2.3814642, 48.8824238 2.3812690, 48.8534825 2.3444519, 48.8533661 2.3445967, 48.8527928 2.3463041, 48.8758609 2.3285927, 48.8530250 2.3465982, 48.8527336 2.3464352, 48.8526210 2.3463757, 48.8526089 2.3464638, 48.8511726 2.3459012, 48.8510655 2.3458688, 48.8510285 2.3479160, 48.8505969 2.3487384, 48.8515005 2.3480197, 48.8505010 2.3475831, 48.8507465 2.3484894, 48.8512339 2.3482344, 48.8506193 2.3486612, 48.8515100 2.3477222, 48.8656690 2.3706000, 48.8465904 2.3434584, 48.8482231 2.3417751, 48.8470699 2.3417135, 48.8466322 2.3434321, 48.8481836 2.3416278, 48.8467301 2.3428821, 48.8498704 2.3434646, 48.8764243 2.3592623, 48.8757565 2.3604345, 48.8757885 2.3583741, 48.8760791 2.3593001, 48.8757202 2.3603702, 48.8754673 2.3591581, 48.8422628 2.3136097, 48.8427362 2.3122657, 48.8414932 2.3132873, 48.8429440 2.3130453, 48.8426877 2.3123128, 48.8418232 2.3130030, 48.8425813 2.3133329, 48.8425822 2.3123874, 48.8420308 2.3127675, 48.8425225 2.3124389, 48.8718579 2.3184821, 48.8718922 2.3185257, 48.8719013 2.3184579, 48.8613479 2.3294517, 48.8728991 2.3179333, 48.8718323 2.3192183, 48.8659123 2.3250771, 48.8712346 2.3211809, 48.8712198 2.3210983, 48.8848552 2.3794020, 48.8850887 2.3797004, 48.8849782 2.3792829, 48.8663059 2.3244457, 48.8423192 2.3232600, 48.8433038 2.3543255, 48.8296114 2.3182270, 48.8422545 2.3231808, 48.8495867 2.3963351, 48.8691909 2.3123689, 48.8694759 2.3127917, 48.8520513 2.3398772, 48.8773456 2.3157482, 48.8504365 2.3250405, 48.8566502 2.3266740, 48.8433085 2.3563833, 48.8437841 2.3555072, 48.8437869 2.3553777, 48.8437047 2.3566102, 48.8432890 2.3553540, 48.8433150 2.3563738, 48.8432457 2.3560311, 48.8437851 2.3554321, 48.8433394 2.3563627, 48.8436728 2.3566486, 48.8437841 2.3554689, 48.8611575 2.3438966, 48.8663775 2.3472549, 48.8696963 2.3404343, 48.8696864 2.3404289, 48.8690173 2.3420166, 48.8696240 2.3403949, 48.8690828 2.3406045, 48.8692220 2.3422745, 48.8687999 2.3403122, 48.8686596 2.3417521, 48.8684512 2.3417404, 48.8712109 2.3430984, 48.8696608 2.3393758, 48.8648568 2.3224814, 48.8226335 2.3469267, 48.8488005 2.3485576, 48.8485654 2.3482310, 48.8496798 2.3526713, 48.8497262 2.3529879, 48.8452718 2.3398200, 48.8460712 2.3400150, 48.8455667 2.3397339, 48.8461975 2.3400915, 48.8441700 2.3392159, 48.8446501 2.3392294, 48.8445289 2.3394114, 48.8444122 2.3394917, 48.8446486 2.3394898, 48.8464390 2.3404727, 48.8441471 2.3389604, 48.8878847 2.3259177, 48.8506128 2.3526191, 48.8500084 2.3546558, 48.8511253 2.3510912, 48.8515559 2.3496810, 48.8509952 2.3511014, 48.8521095 2.3485408, 48.8313290 2.3203574, 48.8316539 2.3201884, 48.8472106 2.3483382, 48.8466399 2.3489993, 48.8471676 2.3484712, 48.8472384 2.3483071, 48.8471167 2.3485711, 48.8463190 2.3519261, 48.8451702 2.3458299, 48.8452340 2.3448440, 48.8414796 2.3258678, 48.8407751 2.3245796, 48.8439434 2.3420437, 48.8415876 2.3435962, 48.8420353 2.3432522, 48.8420505 2.3432527, 48.8438494 2.3420774, 48.8460312 2.3413867, 48.8431709 2.3416539, 48.8448275 2.3423892, 48.8426788 2.3414503, 48.8433479 2.3414598, 48.8575636 2.3501179, 48.8496043 2.3739078, 48.8462789 2.3405322, 48.8460866 2.3403696, 48.8463554 2.3405710, 48.8461211 2.3404463, 48.8459922 2.3409379, 48.8394458 2.3383398, 48.8389350 2.3403744, 48.8376389 2.3465515, 48.8375784 2.3462734, 48.8378226 2.3456909, 48.8388735 2.3499896, 48.8388061 2.3500511, 48.8393158 2.3503572, 48.8414062 2.3496761, 48.8430873 2.3523909, 48.8428744 2.3519560, 48.8430442 2.3495364, 48.8433167 2.3520295, 48.8425969 2.3517238, 48.8429501 2.3517845, 48.8432657 2.3515822, 48.8431709 2.3494420, 48.8428564 2.3519895, 48.8433377 2.3523278, 48.8425907 2.3519394, 48.8415362 2.3502718, 48.8428285 2.3484260, 48.8428073 2.3483266, 48.8446194 2.3521389, 48.8444782 2.3522777, 48.8450551 2.3490236, 48.8445658 2.3524623, 48.8455001 2.3492453, 48.8449589 2.3493182, 48.8452352 2.3492038, 48.8453933 2.3492411, 48.8452357 2.3490360, 48.8451938 2.3492149, 48.8449425 2.3498446, 48.8450354 2.3496519, 48.8449041 2.3498515, 48.8448216 2.3496568, 48.8589666 2.4059365, 48.8389864 2.3510927, 48.8421262 2.3534706, 48.8384619 2.3563683, 48.8375628 2.3535312, 48.8384169 2.3562199, 48.8387726 2.3573303, 48.8387237 2.3571215, 48.8384808 2.3564239, 48.8411226 2.3622939, 48.8395766 2.3564711, 48.8403889 2.3609058, 48.8608198 2.3503260, 48.8520115 2.3467331, 48.8885709 2.3479030, 48.8386423 2.3498590, 48.8555518 2.3602965, 48.8580509 2.3613022, 48.8602119 2.3561984, 48.8603491 2.3508475, 48.8585424 2.3554995, 48.8578946 2.3548830, 48.8580164 2.3548706, 48.8168431 2.3604808, 48.8170906 2.3594427, 48.8371125 2.4029059, 48.8584177 2.3025456, 48.8342318 2.3319172, 48.8343455 2.3319342, 48.8344349 2.3317649, 48.8344566 2.3316949, 48.8342256 2.3318425, 48.8344078 2.3318296, 48.8343773 2.3318884, 48.8589842 2.3037923, 48.8571424 2.3046100, 48.8589692 2.3031638, 48.8559597 2.3045704, 48.8214576 2.3411303, 48.8562829 2.3019390, 48.8597553 2.3011269, 48.8661318 2.3536080, 48.8841171 2.3650610, 48.8546108 2.3061433, 48.8569221 2.3035938, 48.8590582 2.3031212, 48.8417910 2.3293787, 48.8368456 2.3591245, 48.8359122 2.3596749, 48.8600034 2.3094820, 48.8623669 2.3098112, 48.8602874 2.3097025, 48.8624426 2.3091556, 48.8602217 2.3097138, 48.8579055 2.3100803, 48.8593696 2.3144127, 48.8595020 2.3116861, 48.8474359 2.3956182, 48.8530145 2.3117479, 48.8517091 2.3142208, 48.8616904 2.3160412, 48.8568826 2.3152071, 48.8418031 2.3029041, 48.8897504 2.3908138, 48.8501505 2.3397562, 48.8563141 2.3830600, 48.8507370 2.3741124, 48.8500040 2.3740125, 48.8516089 2.3778622, 48.8503505 2.3762126, 48.8498722 2.3743592, 48.8510250 2.3756065, 48.8464376 2.3805388, 48.8465347 2.3810262, 48.8452145 2.3770818, 48.8453323 2.3768682, 48.8456974 2.3753974, 48.8445706 2.3835054, 48.8896373 2.3480452, 48.8612999 2.3312271, 48.8622873 2.3343842, 48.8620274 2.3339571, 48.8610641 2.3333414, 48.8615378 2.3364753, 48.8658377 2.3554835, 48.8622606 2.3343531, 48.8619976 2.3337949, 48.8619195 2.3335781, 48.8606634 2.3346215, 48.8655795 2.3559318, 48.8621856 2.3342654, 48.8621093 2.3341739, 48.8610858 2.3333141, 48.8612130 2.3332141, 48.8608811 2.3333659, 48.8619635 2.3336827, 48.8609084 2.3333829, 48.8608024 2.3333169, 48.8622110 2.3342946, 48.8623363 2.3344445, 48.8620231 2.3339156, 48.8612415 2.3331972, 48.8621347 2.3342032, 48.8619759 2.3337185, 48.8620069 2.3338355, 48.8613711 2.3348960, 48.8611609 2.3332471, 48.8608303 2.3333339, 48.8623642 2.3344747, 48.8676735 2.3543284, 48.8619368 2.3336139, 48.8611373 2.3332669, 48.8584322 2.3229184, 48.8178358 2.3756647, 48.8159967 2.3676943, 48.8702176 2.3497792, 48.8702611 2.3495657, 48.8565160 2.3269654, 48.8439160 2.3088973, 48.8474457 2.3180776, 48.8474428 2.3181013, 48.8247155 2.3622282, 48.8231634 2.3625006, 48.8245453 2.3629329, 48.8245788 2.3669133, 48.8215997 2.3632601, 48.8245519 2.3668617, 48.8247113 2.3669079, 48.8257036 2.3662660, 48.8250539 2.3658028, 48.8245418 2.3643383, 48.8217881 2.3649842, 48.8214455 2.3651681, 48.8365061 2.3589584, 48.8494402 2.3154249, 48.8473587 2.3122933, 48.8462262 2.3142889, 48.8299382 2.3626544, 48.8597545 2.4033363, 48.8567106 2.3947298, 48.8563540 2.3948325, 48.8594767 2.3890495, 48.8468991 2.3122150, 48.8495716 2.3129987, 48.8478053 2.3133841, 48.8478498 2.3111276, 48.8733076 2.3256182, 48.8714072 2.3293794, 48.8710024 2.3294337, 48.8719199 2.3288943, 48.8724460 2.3296815, 48.8515887 2.3004692, 48.8717034 2.3766791, 48.8540230 2.3997826, 48.8519846 2.4014456, 48.8538606 2.4025990, 48.8554207 2.4011828, 48.8529453 2.4006573, 48.8516581 2.3996110, 48.8513810 2.3980258, 48.8491906 2.3784376, 48.8512398 2.3832978, 48.8508003 2.3840730, 48.8505456 2.3863685, 48.8503732 2.3908375, 48.8503573 2.3914142, 48.8502779 2.3906229, 48.8503926 2.3895903, 48.8503887 2.3930028, 48.8502002 2.3918245, 48.8507491 2.3956735, 48.8664040 2.3693590, 48.8664987 2.3684919, 48.8665787 2.3687395, 48.8672613 2.3653112, 48.8676617 2.3646892, 48.8680319 2.3652462, 48.8678242 2.3628446, 48.8645657 2.3465079, 48.8672442 2.3624249, 48.8685310 2.3627215, 48.8645339 2.3458426, 48.8682358 2.3624700, 48.8663164 2.3596590, 48.8665784 2.3618269, 48.8647002 2.3457111, 48.8665669 2.3611510, 48.8664790 2.3612544, 48.8658574 2.3525391, 48.8660852 2.3706279, 48.8671863 2.3624934, 48.8665083 2.3616710, 48.8660165 2.3525131, 48.8672351 2.3624899, 48.8670533 2.3622765, 48.8657517 2.3712388, 48.8655880 2.3691209, 48.8418032 2.3767741, 48.8734234 2.3305255, 48.8943819 2.3405045, 48.8919172 2.3436860, 48.8917691 2.3440528, 48.8715078 2.3339896, 48.8752166 2.3329602, 48.8784002 2.3375553, 48.8759120 2.3269790, 48.8772426 2.3277376, 48.8830873 2.3292402, 48.8809872 2.3359307, 48.8812329 2.3301337, 48.8827025 2.3280076, 48.8821024 2.3331994, 48.8824281 2.3336567, 48.8831967 2.3294138, 48.8766198 2.3392717, 48.8792406 2.3346510, 48.8795478 2.3371494, 48.8796385 2.3372131, 48.8717823 2.3424721, 48.8809484 2.3370198, 48.8769401 2.3393848, 48.8770249 2.3413662, 48.8832546 2.3471915, 48.8809300 2.3404709, 48.8809021 2.3403319, 48.8821086 2.3394912, 48.8818258 2.3395224, 48.8499483 2.4348207, 48.8651635 2.3419355, 48.8840421 2.3326829, 48.8766106 2.3457504, 48.8765185 2.3448908, 48.8739328 2.3406145, 48.8716545 2.3432165, 48.8718967 2.3415625, 48.8853691 2.3353615, 48.8857113 2.3355174, 48.8855561 2.3353079, 48.8855279 2.3354474, 48.8861381 2.3353884, 48.8480589 2.3805939, 48.8356055 2.4057969, 48.8360885 2.4045153, 48.8379895 2.3992701, 48.8373037 2.4015452, 48.8432331 2.3835289, 48.8471366 2.3867728, 48.8359385 2.4061399, 48.8381251 2.3989722, 48.8438778 2.3820130, 48.8382469 2.3985623, 48.8475339 2.3882237, 48.8472696 2.3870269, 48.8402240 2.3925825, 48.8407841 2.3912112, 48.8368349 2.4023336, 48.8469648 2.3841028, 48.8417221 2.3867120, 48.8416280 2.3866804, 48.8367677 2.4029493, 48.8399742 2.3934259, 48.8356227 2.4057366, 48.8486352 2.3946941, 48.8364138 2.4038057, 48.8371301 2.4025386, 48.8469016 2.3834720, 48.8407749 2.3897142, 48.8472885 2.3869957, 48.8349917 2.4065581, 48.8359164 2.4062185, 48.8366296 2.4029905, 48.8426339 2.3847145, 48.8406474 2.3907616, 48.8364626 2.4043651, 48.8398239 2.3944271, 48.8378794 2.4004320, 48.8480677 2.3925076, 48.8412536 2.3886959, 48.8417549 2.3864187, 48.8484449 2.3942334, 48.8380872 2.3994343, 48.8477051 2.3885456, 48.8460393 2.3780826, 48.8371231 2.4019810, 48.8470892 2.3842101, 48.8476871 2.3901194, 48.8385089 2.3991495, 48.8400576 2.3948756, 48.8443902 2.3815803, 48.8471042 2.3852055, 48.8471787 2.3866836, 48.8426310 2.3854954, 48.8479792 2.3931721, 48.8449275 2.3804850, 48.8473748 2.3861373, 48.8391909 2.3969895, 48.8475231 2.3881137, 48.8368962 2.4026322, 48.8347163 2.4076218, 48.8359135 2.4058277, 48.8391579 2.3963790, 48.8389784 2.3959056, 48.8384252 2.3989983, 48.8423698 2.3854379, 48.8813769 2.3721944, 48.8475270 2.3021767, 48.8476742 2.3009702, 48.8479740 2.3007339, 48.8477423 2.3011339, 48.8468451 2.3046139, 48.8464494 2.3063550, 48.8455537 2.3108109, 48.8459424 2.3060603, 48.8468885 2.3042494, 48.8450445 2.3104567, 48.8479639 2.3012878, 48.8474822 2.3019418, 48.8475414 2.3012068, 48.8468990 2.3044201, 48.8467540 2.3049111, 48.8476230 2.3013276, 48.8447637 2.3102862, 48.8410891 2.3368145, 48.8473611 2.3081232, 48.8470685 2.3072875, 48.8473569 2.3077931, 48.8471976 2.3076608, 48.8470152 2.3071391, 48.8469054 2.3075203, 48.8469303 2.3075499, 48.8472092 2.3070017, 48.8218802 2.3268475, 48.8250195 2.3264168, 48.8476662 2.3078147, 48.8475588 2.3088840, 48.8474933 2.3107909, 48.8478638 2.3111059, 48.8474398 2.3107795, 48.8809105 2.3400348, 48.8377870 2.3917644, 48.8390532 2.3961644, 48.8388419 2.3895552, 48.8390560 2.3924535, 48.8378894 2.3906889, 48.8381405 2.3924690, 48.8391569 2.3892705, 48.8385292 2.3895336, 48.8394601 2.3890683, 48.8397585 2.3884230, 48.8389160 2.3896782, 48.8390438 2.3923714, 48.8384650 2.3928000, 48.8392544 2.3893624, 48.8730035 2.3534809, 48.8654085 2.3767039, 48.8627451 2.3395900, 48.8484357 2.3094387, 48.8482418 2.3105178, 48.8485448 2.3086944, 48.8486504 2.3085581, 48.8512285 2.3098214, 48.8503424 2.3089610, 48.8499851 2.3083895, 48.8504098 2.3090292, 48.8505805 2.3092017, 48.8510836 2.3097113, 48.8518742 2.3103492, 48.8517546 2.3104073, 48.8773925 2.3384012, 48.8514424 2.3108980, 48.8503908 2.3115133, 48.8517685 2.3133289, 48.8513975 2.3107849, 48.8512872 2.3111153, 48.8510873 2.3111882, 48.8514163 2.3135568, 48.8498367 2.3124580, 48.8499808 2.3116300, 48.8517506 2.3131416, 48.8504632 2.3490208, 48.8503408 2.3483420, 48.8570795 2.3793482, 48.8569128 2.3780314, 48.8527591 2.3685273, 48.8630663 2.3527335, 48.8470660 2.3954688, 48.8601693 2.3891491, 48.8599140 2.3909353, 48.8446026 2.3117965, 48.8792942 2.4149624, 48.8795658 2.4161587, 48.8792801 2.4138949, 48.8792448 2.4147210, 48.8857975 2.3651047, 48.8858404 2.3652834, 48.8709065 2.3498477, 48.8828690 2.3183304, 48.8829889 2.3183223, 48.8829344 2.3176705, 48.8710357 2.3522560, 48.8714920 2.3541352, 48.8716725 2.3535841, 48.8799989 2.4165267, 48.8788312 2.4158401, 48.8796268 2.4148076, 48.8804360 2.4177825, 48.8774236 2.4101645, 48.8795262 2.4150247, 48.8786231 2.4180717, 48.8805352 2.4178356, 48.8805634 2.4182863, 48.8789194 2.4131901, 48.8442654 2.3304438, 48.8451205 2.3179540, 48.8787372 2.3542451, 48.8445056 2.3203943, 48.8446279 2.3203361, 48.8845852 2.3601492, 48.8973913 2.3849076, 48.8458069 2.3492233, 48.8481138 2.3765844, 48.8503695 2.3874778, 48.8792727 2.3541794, 48.8800493 2.3536899, 48.8794561 2.3542776, 48.8791462 2.3541109, 48.8796589 2.3543864, 48.8788491 2.3549176, 48.8794660 2.3569589, 48.8819418 2.3521616, 48.8820806 2.3518696, 48.8368662 2.3071536, 48.8383079 2.3085101, 48.8773954 2.3705030, 48.8774256 2.3694794, 48.8839135 2.3676289, 48.8792363 2.3631395, 48.8812245 2.3639751, 48.8815039 2.3649120, 48.8734790 2.3750462, 48.8732283 2.3745203, 48.8787212 2.3698437, 48.8458629 2.3710158, 48.8605552 2.3544304, 48.8460660 2.3742687, 48.8426729 2.3023971, 48.8431492 2.3040014, 48.8503634 2.3868517, 48.8503643 2.3849720, 48.8454432 2.3124549, 48.8457318 2.3137224, 48.8615137 2.3197027, 48.8578293 2.3192199, 48.8474837 2.3126225, 48.8512536 2.3251315, 48.8556397 2.3256421, 48.8590997 2.3185547, 48.8486555 2.3203894, 48.8521505 2.3019919, 48.8569538 2.3096130, 48.8614149 2.3094414, 48.8606986 2.3148434, 48.8583091 2.3237904, 48.8566893 2.3067753, 48.8588632 2.3319175, 48.8597138 2.3258235, 48.8436549 2.3146779, 48.8438107 2.3152002, 48.8437516 2.3150319, 48.8726908 2.3752657, 48.8698134 2.3700786, 48.8678130 2.3782397, 48.8673989 2.3038079, 48.8705420 2.3773342, 48.8701060 2.3758709, 48.8757327 2.3977989, 48.8655296 2.3772848, 48.8674203 2.3758861, 48.8682312 2.3751770, 48.8655345 2.3775152, 48.8693522 2.3713516, 48.8692142 2.3714534, 48.8694819 2.3712557, 48.8685558 2.3695906, 48.8673820 2.3728092, 48.8673041 2.3731992, 48.8690400 2.3726204, 48.8431097 2.3128917, 48.8431692 2.3127228, 48.8333957 2.3653856, 48.8678500 2.3687750, 48.8649857 2.3752785, 48.8702549 2.3098514, 48.8673662 2.3064825, 48.8768924 2.3218191, 48.8733783 2.3097112, 48.8660987 2.3722759, 48.8631169 2.3708919, 48.8663125 2.3723460, 48.8661552 2.3797640, 48.8656909 2.3777859, 48.8670939 2.3749249, 48.8671390 2.3755303, 48.8644441 2.3741599, 48.8644002 2.3730285, 48.8677794 2.3780026, 48.8646865 2.3738115, 48.8509100 2.3440225, 48.8765188 2.3353132, 48.8767451 2.3353322, 48.8764727 2.3353018, 48.8764220 2.3352962, 48.8766354 2.3353309, 48.8765638 2.3353212, 48.8453270 2.3106657, 48.8453817 2.3105262, 48.8448328 2.3107301, 48.8448872 2.3142661, 48.8446342 2.3148283, 48.8445654 2.3175610, 48.8449195 2.3183472, 48.8446117 2.3178842, 48.8445698 2.3179499, 48.8465728 2.3168133, 48.8453227 2.3190283, 48.8455384 2.3189591, 48.8452520 2.3184602, 48.8452353 2.3184253, 48.8454872 2.3119300, 48.8760923 2.3383718, 48.8745269 2.3383294, 48.8751673 2.3379807, 48.8766241 2.3397060, 48.8751689 2.3383360, 48.8750574 2.3385110, 48.8820895 2.3193350, 48.8686720 2.3127647, 48.8671021 2.3110061, 48.8696061 2.3103371, 48.8219925 2.3300366, 48.8244091 2.3255676, 48.8314280 2.3555815, 48.8408412 2.3543039, 48.8322217 2.3293463, 48.8595500 2.3794207, 48.8674715 2.3750082, 48.8632185 2.3775523, 48.8637330 2.3792298, 48.8450099 2.3109341, 48.8460501 2.3109746, 48.8612759 2.3785003, 48.8771800 2.3394491, 48.8671825 2.3131358, 48.8668030 2.3107239, 48.8543533 2.3962677, 48.8668874 2.3528247, 48.8680937 2.3485890, 48.8592377 2.3714158, 48.8592072 2.3714462, 48.8626137 2.3716303, 48.8366253 2.3205727, 48.8323092 2.3130666, 48.8345539 2.3173489, 48.8251412 2.3653488, 48.8251368 2.3656211, 48.8254617 2.3652375, 48.8256887 2.3653770, 48.8257690 2.3653555, 48.8243135 2.3638527, 48.8826774 2.3602875, 48.8571479 2.3729822, 48.8577490 2.3740410, 48.8569621 2.3721314, 48.8567777 2.3726141, 48.8545688 2.3719378, 48.8536042 2.3707268, 48.8570802 2.3784715, 48.8536882 2.3708103, 48.8538783 2.3707951, 48.8546993 2.3708799, 48.8557897 2.3753324, 48.8573966 2.3799370, 48.8576277 2.3796210, 48.8545778 2.3710477, 48.8544587 2.3716617, 48.8488608 2.3113318, 48.8488629 2.3113707, 48.8480733 2.3112387, 48.8472345 2.3091715, 48.8431101 2.4168376, 48.8446622 2.3729559, 48.8933245 2.3887800, 48.8941743 2.3916574, 48.8542690 2.3799429, 48.8345104 2.3934103, 48.8455102 2.3829497, 48.8553433 2.3747935, 48.8538434 2.3724806, 48.8535111 2.3704631, 48.8418339 2.3497835, 48.8835420 2.3320949, 48.8509424 2.3779382, 48.8695383 2.3950747, 48.8517580 2.3565980, 48.8549268 2.3539661, 48.8264546 2.3410881, 48.8263809 2.3414522, 48.8260610 2.3415721, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8260540 2.3415206, 48.8263361 2.3414409, 48.8261927 2.3418257, 48.8266751 2.3420292, 48.8260655 2.3415482, 48.8250885 2.3208185, 48.8327381 2.3245435, 48.8329043 2.3245191, 48.8575297 2.3795048, 48.8528709 2.3486106, 48.8862540 2.3333605, 48.8570588 2.3798634, 48.8576289 2.3848279, 48.8539335 2.3775047, 48.8531848 2.3778720, 48.8524031 2.3825246, 48.8565451 2.3836259, 48.8568830 2.3829069, 48.8958659 2.3827194, 48.8966206 2.3871195, 48.8953387 2.3825799, 48.8928628 2.3852622, 48.8219932 2.3234435, 48.8506577 2.3948665, 48.8231861 2.3549946, 48.8232299 2.3543424, 48.8792690 2.3823512, 48.8211670 2.3407757, 48.8303551 2.3540212, 48.8528721 2.3890596, 48.8546913 2.3857584, 48.8555740 2.3904061, 48.8712861 2.3349203, 48.8713129 2.3350843, 48.8639822 2.3355945, 48.8963398 2.3844708, 48.8543018 2.3064024, 48.8564566 2.3025481, 48.8311615 2.3425606, 48.8314493 2.3411256, 48.8315129 2.3409781, 48.8306954 2.3438443, 48.8864724 2.3248425, 48.8865355 2.3247648, 48.8853340 2.3271479, 48.8865796 2.3246830, 48.8856946 2.3275147, 48.8854389 2.3273189, 48.8854208 2.3272834, 48.8865668 2.3247279, 48.8853732 2.3272103, 48.8856651 2.3275744, 48.8853573 2.3271741, 48.8865584 2.3246320, 48.8856885 2.3274765, 48.8453215 2.4289446, 48.8649900 2.3816769, 48.8472498 2.3715912, 48.8460948 2.3709948, 48.8468117 2.3696539, 48.8471469 2.3697404, 48.8473444 2.3778677, 48.8502019 2.3688037, 48.8503931 2.3688912, 48.8506208 2.3689945, 48.8507314 2.3754330, 48.8461255 2.3694043, 48.8469964 2.3690772, 48.8493300 2.3749472, 48.8341870 2.3157058, 48.8216474 2.3653328, 48.8232565 2.3578824, 48.8230746 2.3579144, 48.8229667 2.3585907, 48.8234162 2.3578095, 48.8224620 2.3587564, 48.8225668 2.3587247, 48.8235590 2.3584151, 48.8223317 2.3587958, 48.8230555 2.3585643, 48.8230325 2.3585712, 48.8280214 2.3265442, 48.8283319 2.3249564, 48.8236808 2.3308088, 48.8520072 2.3570804, 48.8532674 2.3539562, 48.8744843 2.3304643, 48.8200408 2.3479644, 48.8212446 2.3690189, 48.8226584 2.3668672, 48.8190929 2.3443682, 48.8195872 2.3642183, 48.8407510 2.3161284, 48.8408847 2.3255233, 48.8357296 2.3158704, 48.8323111 2.3252588, 48.8289690 2.3280388, 48.8296366 2.3263748, 48.8240050 2.3260887, 48.8257339 2.3264008, 48.8256825 2.3151865, 48.8574201 2.3243023, 48.8459313 2.3090188, 48.8457977 2.3185660, 48.8505096 2.3274022, 48.8311741 2.3447143, 48.8330426 2.3312889, 48.8330416 2.3357290, 48.8304042 2.3289496, 48.8347199 2.3367751, 48.8348054 2.3320949, 48.8346868 2.3410351, 48.8376293 2.3387512, 48.8369790 2.3350851, 48.8349554 2.3463747, 48.8394809 2.3371526, 48.8417537 2.3377112, 48.8416250 2.3485540, 48.8281988 2.3566483, 48.8239378 2.3581173, 48.8340823 2.3537029, 48.8240665 2.3530961, 48.8297239 2.3690723, 48.8404168 2.3535555, 48.8520468 2.3397933, 48.8558630 2.3465049, 48.8528153 2.3347150, 48.8544526 2.3311094, 48.8580548 2.3474799, 48.8623038 2.3502010, 48.8625013 2.3507772, 48.8636772 2.3510372, 48.8579636 2.3465114, 48.8623046 2.3423204, 48.8603000 2.3464643, 48.8636409 2.3426454, 48.8631553 2.3418265, 48.8650306 2.3407360, 48.8549469 2.3729734, 48.8477025 2.3536570, 48.8658631 2.3695102, 48.8610722 2.3670951, 48.8655959 2.3652444, 48.8655010 2.3522216, 48.8669313 2.3543718, 48.8613680 2.3530523, 48.8626723 2.3594550, 48.8600506 2.3607005, 48.8649717 2.3601088, 48.8437230 2.4019904, 48.8445383 2.3775163, 48.8405196 2.4047985, 48.8395307 2.3783327, 48.8405642 2.3920854, 48.8387954 2.3810242, 48.8537699 2.3826458, 48.8556078 2.3835929, 48.8541941 2.3777992, 48.8495092 2.3936775, 48.8521926 2.3936896, 48.8532589 2.3878909, 48.8504312 2.3841184, 48.8460954 2.3766582, 48.8455898 2.3850416, 48.8649600 2.3947898, 48.8648944 2.3762643, 48.8657274 2.3810297, 48.8575027 2.3926652, 48.8608171 2.3885376, 48.8571820 2.3811598, 48.8582893 2.3802180, 48.8622924 2.3792422, 48.8642354 2.3795451, 48.8634043 2.3873675, 48.8635967 2.3838899, 48.8662870 2.3897869, 48.8490543 2.4025492, 48.8548100 2.3960622, 48.8556270 2.4100482, 48.8544541 2.4122493, 48.8600077 2.4010312, 48.8641235 2.4090336, 48.8649012 2.4008295, 48.8649070 2.3998063, 48.8699848 2.3287478, 48.8750248 2.3145888, 48.8851026 2.3266307, 48.8856655 2.3275184, 48.8833981 2.3265291, 48.8815640 2.3207727, 48.8727102 2.3345720, 48.8689234 2.3406303, 48.8712959 2.3437499, 48.8844160 2.3292308, 48.8835474 2.3336949, 48.8816820 2.3456299, 48.8832578 2.3459960, 48.8834110 2.3475269, 48.8837284 2.3488082, 48.8763445 2.3614950, 48.8684955 2.3674002, 48.8700037 2.3666404, 48.8762256 2.3723091, 48.8725652 2.3640736, 48.8738041 2.3703747, 48.8774841 2.3709987, 48.8705409 2.3514636, 48.8707624 2.3546578, 48.8690121 2.3562318, 48.8794220 2.3546823, 48.8850648 2.3549532, 48.8818932 2.3663627, 48.8917794 2.3352127, 48.8957759 2.3460150, 48.8891775 2.3451972, 48.8904593 2.3545937, 48.8950801 2.3589964, 48.8751448 2.3735780, 48.8685956 2.3900339, 48.8735031 2.3753876, 48.8722991 2.3766565, 48.8703700 2.3791942, 48.8770727 2.3925548, 48.8736809 2.3897517, 48.8719517 2.3920209, 48.8891494 2.3933914, 48.8822173 2.3934544, 48.8872647 2.3758855, 48.8888297 2.3790479, 48.8829941 2.3814519, 48.8786649 2.3784063, 48.8855727 2.3811520, 48.8834799 2.3835649, 48.8863045 2.3939114, 48.8706984 2.4090842, 48.8755313 2.3977586, 48.8706206 2.3982918, 48.8759333 2.4069996, 48.8839109 2.3979467, 48.8502257 2.3782954, 48.8503235 2.3783645, 48.8495013 2.3784402, 48.8524128 2.3716564, 48.8792880 2.3773054, 48.8245289 2.3642446, 48.8515963 2.3430149, 48.8704365 2.3414021, 48.8831571 2.3884076, 48.8833528 2.3881059, 48.8850543 2.3872280, 48.8454338 2.3886185, 48.8362694 2.3592046, 48.8369033 2.3593290, 48.8376257 2.3602554, 48.8383701 2.3607602, 48.8634173 2.3547815, 48.8632423 2.3546660, 48.8538420 2.3492906, 48.8536514 2.3489902, 48.8537524 2.3572131, 48.8540777 2.3579438, 48.8515470 2.3572626, 48.8536419 2.3531333, 48.8479782 2.3529858, 48.8416546 2.3484221, 48.8415381 2.3513578, 48.8760884 2.3441492, 48.8592087 2.3525980, 48.8560015 2.3425743, 48.8315512 2.3198720, 48.8720949 2.3323339, 48.8705731 2.3103284, 48.8580159 2.3469052, 48.8406306 2.3924750, 48.8401706 2.3924398, 48.8408330 2.4201155, 48.8290830 2.3743921, 48.8241209 2.3870877, 48.8241325 2.3878869, 48.8549579 2.3931564, 48.8846283 2.3670547, 48.8843707 2.3678261, 48.8847919 2.3672165, 48.8847056 2.3671187, 48.8845782 2.3669813, 48.8685677 2.3920616, 48.8489936 2.3797035, 48.8467974 2.3756328, 48.8494222 2.3777750, 48.8274992 2.3424210, 48.8467447 2.3755957, 48.8480172 2.3808332, 48.8481089 2.3765510, 48.8481759 2.3764337, 48.8484871 2.3802731, 48.8487838 2.3807914, 48.8570855 2.3550986, 48.8201860 2.3400152, 48.8248017 2.3362648, 48.8243806 2.3892291, 48.8735064 2.3141502, 48.8707525 2.3240257, 48.8858230 2.3749446, 48.8558868 2.4042383, 48.8500456 2.3533390, 48.8544203 2.3257043, 48.8435306 2.3879731, 48.8283217 2.3816212, 48.8274933 2.3708430, 48.8680115 2.3865009, 48.8685471 2.3894222, 48.8320548 2.3861467, 48.8348284 2.3879340, 48.8527619 2.4312139, 48.8503640 2.3847349, 48.8502152 2.3848125, 48.8503348 2.3847070, 48.8449330 2.3838312, 48.8376243 2.3186409, 48.8351017 2.3201496, 48.8351935 2.3203079, 48.8218202 2.3423613, 48.8444522 2.3901640, 48.8443813 2.3902545, 48.8441304 2.3900727, 48.8441332 2.3900872, 48.8441406 2.3900780, 48.8443950 2.3840945, 48.8444028 2.3766004, 48.8444172 2.3902043, 48.8444988 2.3768719, 48.8828920 2.3240924, 48.8840667 2.3535149, 48.8703495 2.3238202, 48.8675028 2.3316819, 48.8691092 2.3404299, 48.8816573 2.3446676, 48.8933604 2.3480566, 48.8941850 2.3732201, 48.8894834 2.3802541, 48.8880227 2.3896758, 48.8836546 2.3973646, 48.8772808 2.3938276, 48.8750529 2.3991679, 48.8707626 2.3933673, 48.8690447 2.4092159, 48.8735092 2.3750458, 48.8260323 2.3598011, 48.8226689 2.3629591, 48.8552277 2.3952797, 48.8475537 2.4030007, 48.8655330 2.3844487, 48.8698655 2.3794311, 48.8719508 2.3687341, 48.8649647 2.3703759, 48.8316444 2.3266871, 48.8563765 2.3554581, 48.8473573 2.3704877, 48.8445644 2.3839569, 48.8432368 2.3854870, 48.8448130 2.3836511, 48.8446673 2.3830913, 48.8446804 2.3831393, 48.8425065 2.3895916, 48.8390807 2.3911401, 48.8459410 2.3879568, 48.8357609 2.3867807, 48.8357070 2.4058099, 48.8635536 2.3457667, 48.8315141 2.3780681, 48.8336684 2.3642546, 48.8241785 2.3576816, 48.8231239 2.3475899, 48.8295076 2.3485033, 48.8267596 2.3417744, 48.8383346 2.3427083, 48.8430603 2.3517476, 48.8403876 2.3625569, 48.8319284 2.3270407, 48.8315363 2.3171405, 48.8369539 2.3208269, 48.8414863 2.3240339, 48.8490817 2.3275344, 48.8497031 2.3273499, 48.8467518 2.3915036, 48.8566373 2.3809209, 48.8847666 2.3373500, 48.8887917 2.3829835, 48.8875690 2.3372942, 48.8399992 2.3240094, 48.8597779 2.3530954, 48.8697908 2.3549967, 48.8394650 2.3235600, 48.8702624 2.3461888, 48.8829861 2.3333274, 48.8393259 2.3231092, 48.8837701 2.3265034, 48.8597455 2.3531991, 48.8692693 2.3318524, 48.8597303 2.3459285, 48.8295361 2.3515265, 48.8794685 2.3296284, 48.8530200 2.3453773, 48.8828282 2.3366019, 48.8810211 2.3348222, 48.8840055 2.3266609, 48.8442922 2.3305405, 48.8275596 2.3774365, 48.8622030 2.3518225, 48.8723016 2.3429996, 48.8785619 2.3313946, 48.8415099 2.3244398, 48.8843397 2.3320078, 48.8436363 2.3254799, 48.8721414 2.3433983, 48.8577976 2.3569319, 48.8407733 2.3243516, 48.8713709 2.3448748, 48.8685182 2.3898030, 48.8472463 2.3959684, 48.8734883 2.3453635, 48.8288148 2.3446816, 48.8678179 2.3891525, 48.8601015 2.3815463, 48.8788666 2.3193694, 48.8701566 2.3787268, 48.8714333 2.3421383, 48.8483455 2.3489543, 48.8475212 2.3521266, 48.8412698 2.3495453, 48.8530650 2.3443173, 48.8701190 2.3487548, 48.8508083 2.3417802, 48.8533984 2.3421350, 48.8484020 2.3408453, 48.8544954 2.3401739, 48.8418546 2.3307104, 48.8747486 2.3240211, 48.8755636 2.3279594, 48.8713796 2.3448127, 48.8717708 2.3553091, 48.8545349 2.3691603, 48.8704786 2.3546023, 48.8436131 2.3220274, 48.8338600 2.3309675, 48.8531440 2.3776869, 48.8487929 2.3780969, 48.8488537 2.3789042, 48.8426136 2.3860555, 48.8462737 2.3755090, 48.8469638 2.3755868, 48.8713001 2.3766068, 48.8704762 2.3775322, 48.8712948 2.3768375, 48.8704356 2.3764056, 48.8712066 2.3768241, 48.8466539 2.3999463, 48.8465081 2.4010506, 48.8459220 2.4058540, 48.8470725 2.4064857, 48.8426319 2.3973692, 48.8396015 2.3958093, 48.8408405 2.3894586, 48.8404388 2.3885071, 48.8391796 2.3955829, 48.8449573 2.4022523, 48.8432250 2.4013484, 48.8434535 2.4014222, 48.8423480 2.4023598, 48.8461317 2.4105193, 48.8462230 2.4111019, 48.8497121 2.3553355, 48.8476483 2.3769905, 48.8777522 2.3178837, 48.8716241 2.3914872, 48.8319641 2.3766161, 48.8319830 2.3768014, 48.8420844 2.4108250, 48.8597885 2.3387650, 48.8598288 2.3386151, 48.8599042 2.3391076, 48.8599686 2.3379896, 48.8599978 2.3378565, 48.8600039 2.3391566, 48.8602353 2.3376837, 48.8603309 2.3377357, 48.8604134 2.3393753, 48.8605050 2.3394196, 48.8607293 2.3379406, 48.8607384 2.3392453, 48.8607716 2.3391030, 48.8608290 2.3379926, 48.8609095 2.3384821, 48.8609437 2.3383429, 48.8539886 2.4120537, 48.8776662 2.3398701, 48.8765486 2.3385813, 48.8777824 2.3398244, 48.8791352 2.3437478, 48.8768988 2.3387135, 48.8775239 2.3395383, 48.8382747 2.4058132, 48.8382837 2.4058464, 48.8383375 2.4059297, 48.8376044 2.4083554, 48.8383753 2.3982048, 48.8387420 2.3963264, 48.8390768 2.3942535, 48.8371288 2.3917395, 48.8370556 2.3918823, 48.8372166 2.3915674, 48.8387373 2.3961225, 48.8516698 2.3805401, 48.8764828 2.3370142, 48.8755310 2.3372367, 48.8766560 2.3371844, 48.8768851 2.3377701, 48.8766806 2.3400707, 48.8352841 2.3987932, 48.8370920 2.3937052, 48.8356474 2.3972691, 48.8706953 2.3490853, 48.8703131 2.3487884, 48.8278377 2.4034794, 48.8266511 2.4059312, 48.8277778 2.4042796, 48.8255688 2.4051308, 48.8269901 2.4055393, 48.8284062 2.4034364, 48.8266758 2.4052443, 48.8277070 2.4036725, 48.8533507 2.4016216, 48.8662293 2.3379767, 48.8686345 2.3376621, 48.8390600 2.3102329, 48.8917953 2.3346857, 48.8257108 2.3218692, 48.8594342 2.4029865, 48.8687850 2.3380000, 48.8413849 2.3139125, 48.8444671 2.3954139, 48.8491922 2.3899823, 48.8481288 2.3939309, 48.8703423 2.3428105, 48.8710339 2.3430453, 48.8703870 2.3428247, 48.8705105 2.3428082, 48.8731247 2.3808610, 48.8508939 2.3012223, 48.8305422 2.3206552, 48.8304290 2.3205552, 48.8331435 2.3229221, 48.8514993 2.3988476, 48.8500661 2.3838221, 48.8433920 2.3865369, 48.8340319 2.3194403, 48.8337840 2.3198864, 48.8337204 2.3201626, 48.8338246 2.3197979, 48.8314491 2.3414315, 48.8732343 2.3096141, 48.8691716 2.3247431, 48.8696360 2.3251272, 48.8566013 2.3030438, 48.8363741 2.3098652, 48.8447537 2.3186687, 48.8364783 2.3062501, 48.8376916 2.3077038, 48.8366211 2.3097495, 48.8365310 2.3099065, 48.8354238 2.3118648, 48.8356242 2.3114974, 48.8361292 2.3106080, 48.8362908 2.3104294, 48.8386677 2.3065876, 48.8395590 2.3060143, 48.8662137 2.3353607, 48.8660390 2.3352910, 48.8657884 2.3351488, 48.8649854 2.3569095, 48.8645459 2.3566348, 48.8667391 2.3539859, 48.8651242 2.3554369, 48.8640464 2.3692790, 48.8635118 2.3697267, 48.8634094 2.3694766, 48.8635544 2.3694256, 48.8634434 2.3691079, 48.8636313 2.3699957, 48.8637107 2.3697771, 48.8636110 2.3699568, 48.8528319 2.3709145, 48.8716652 2.3369422, 48.8719692 2.3361261, 48.8724813 2.3352798, 48.8715773 2.3365388, 48.8714095 2.3355863, 48.8713898 2.3354731, 48.8714562 2.3349266, 48.8712985 2.3353269, 48.8716006 2.3368692, 48.8716019 2.3368770, 48.8716120 2.3368171, 48.8716165 2.3368125, 48.8725191 2.3353232, 48.8752025 2.3376055, 48.8751468 2.3355442, 48.8750628 2.3386203, 48.8750364 2.3392304, 48.8766742 2.3373282, 48.8766460 2.3368602, 48.8768502 2.3324723, 48.8769295 2.3383704, 48.8769349 2.3331592, 48.8766672 2.3325273, 48.8767858 2.3369975, 48.8768033 2.3372248, 48.8766547 2.3369547, 48.8768072 2.3364970, 48.8768567 2.3359301, 48.8758550 2.3388379, 48.8767868 2.3367967, 48.8767450 2.3377873, 48.8768931 2.3327041, 48.8769081 2.3380397, 48.8389372 2.3163214, 48.8156713 2.3582001, 48.8142658 2.3585488, 48.8131105 2.3575134, 48.8715356 2.3340932, 48.8710457 2.3357596, 48.8710628 2.3358464, 48.8717139 2.3340286, 48.8710277 2.3356624, 48.8708929 2.3349679, 48.8710045 2.3355038, 48.8715206 2.3340424, 48.8716898 2.3334554, 48.8720026 2.3359899, 48.8735786 2.3648071, 48.8554556 2.3256454, 48.8386344 2.3143780, 48.8305349 2.3455551, 48.8258967 2.3573107, 48.8288239 2.3418815, 48.8740909 2.3274858, 48.8431975 2.3125168, 48.8707193 2.3495070, 48.8716416 2.3409433, 48.8734969 2.3525798, 48.8711315 2.3440128, 48.8706004 2.3472072, 48.8706911 2.3467398, 48.8709873 2.3449321, 48.8707711 2.3461822, 48.8712885 2.3431427, 48.8721862 2.3501755, 48.8708723 2.3480533, 48.8706525 2.3467197, 48.8737308 2.3505948, 48.8704690 2.3480544, 48.8713484 2.3428832, 48.8716176 2.3411379, 48.8707327 2.3464923, 48.8714861 2.3419548, 48.8705588 2.3479808, 48.8715441 2.3499745, 48.8716074 2.3412011, 48.8716782 2.3500401, 48.8647153 2.3341053, 48.8751154 2.3557100, 48.8749802 2.3559340, 48.8744702 2.3552896, 48.8742779 2.3554847, 48.8784174 2.3564644, 48.8761304 2.3564812, 48.8788443 2.3570270, 48.8753708 2.3561756, 48.8769831 2.3560361, 48.8775010 2.3561316, 48.8773577 2.3564531, 48.8770495 2.3560410, 48.8759259 2.3559201, 48.8785393 2.3568626, 48.8767619 2.3563475, 48.8756147 2.3563557, 48.8786854 2.3569358, 48.8796001 2.3577149, 48.8779934 2.3562593, 48.8782144 2.3566970, 48.8759988 2.3559438, 48.8792586 2.3573016, 48.8789525 2.3570837, 48.8768603 2.3560228, 48.8761180 2.3564486, 48.8761263 2.3564411, 48.8769179 2.3560295, 48.8783334 2.3564225, 48.8261137 2.3420629, 48.8264627 2.3442784, 48.8358630 2.3380882, 48.8172529 2.3602221, 48.8799927 2.3591789, 48.8822759 2.3688196, 48.8811904 2.3637372, 48.8826836 2.3705827, 48.8828802 2.3713360, 48.8835025 2.3736534, 48.8827558 2.3708586, 48.8828255 2.3711188, 48.8812174 2.3638517, 48.8834234 2.3734013, 48.8813765 2.3652818, 48.8817998 2.3666492, 48.8827937 2.3706294, 48.8828326 2.3719171, 48.8828533 2.3714104, 48.8834463 2.3733288, 48.8900402 2.3918023, 48.8912248 2.3930476, 48.8914158 2.3933740, 48.8914454 2.3932139, 48.8946014 2.3912450, 48.8224891 2.3474392, 48.8222126 2.3504401, 48.8256278 2.3503006, 48.8275490 2.3490346, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8750088 2.3393609, 48.8757800 2.3396684, 48.8751634 2.3407635, 48.8233280 2.3543382, 48.8299328 2.3501105, 48.8311758 2.3480989, 48.8371959 2.3514837, 48.8527113 2.3442100, 48.8552739 2.3473751, 48.8624252 2.3386199, 48.8674261 2.3406263, 48.8659581 2.3419245, 48.8664385 2.3508954, 48.8681380 2.3453696, 48.8676791 2.3454560, 48.8212269 2.3421677, 48.8266942 2.3386593, 48.8493100 2.3284272, 48.8205245 2.3513062, 48.8796296 2.3553194, 48.8800642 2.3523843, 48.8809546 2.3510669, 48.8689508 2.3362959, 48.8700724 2.3349268, 48.8662573 2.3370528, 48.8667422 2.3365735, 48.8699611 2.3351928, 48.8682398 2.3365168, 48.8696120 2.3356753, 48.8676561 2.3370904, 48.8675328 2.3370273, 48.8696664 2.3354448, 48.8698393 2.3358297, 48.8708380 2.3349612, 48.8672079 2.3368573, 48.8688219 2.3359090, 48.8688160 2.3362566, 48.8688035 2.3365534, 48.8707797 2.3349624, 48.8666564 2.3369830, 48.8666406 2.3370669, 48.8695217 2.3356845, 48.8669153 2.3365074, 48.8702359 2.3349223, 48.8688150 2.3361103, 48.8676983 2.3366997, 48.8681903 2.3364995, 48.8682794 2.3373819, 48.8686158 2.3366832, 48.8696855 2.3354998, 48.8699075 2.3352050, 48.8678747 2.3364447, 48.8733496 2.3352682, 48.8742744 2.3329601, 48.8705692 2.3341202, 48.8482512 2.3292214, 48.8476438 2.3027692, 48.8361875 2.3193936, 48.8315372 2.3291516, 48.8354101 2.3485767, 48.8351279 2.3535099, 48.8348276 2.3668095, 48.8225642 2.3920382, 48.8290039 2.3742797, 48.8751402 2.3514767, 48.8719812 2.3356533, 48.8648963 2.3741522, 48.8626586 2.3715845, 48.8476750 2.3269685, 48.8648642 2.3746542, 48.8649075 2.3746200, 48.8640573 2.3358570, 48.8658609 2.3370619, 48.8641660 2.3361960, 48.8656996 2.3366338, 48.8651667 2.3364852, 48.8652254 2.3367395, 48.8658764 2.3368066, 48.8659797 2.3371165, 48.8640682 2.3359120, 48.8644947 2.3361361, 48.8439514 2.4312009, 48.8599096 2.3178151, 48.8698972 2.3290820, 48.8703362 2.3315753, 48.8710076 2.3200209, 48.8597079 2.3182507, 48.8666350 2.3099131, 48.8703978 2.3225405, 48.8706039 2.3262245, 48.8710247 2.3249533, 48.8702620 2.3312290, 48.8702706 2.3312786, 48.8706031 2.3221827, 48.8577488 2.3222584, 48.8580367 2.3228472, 48.8580518 2.3227826, 48.8609239 2.3145274, 48.8669596 2.3113451, 48.8703163 2.3309310, 48.8707016 2.3218346, 48.8548000 2.3455200, 48.8527000 2.3492200, 48.8518000 2.3475300, 48.8239147 2.4001430, 48.8275825 2.3495237, 48.8275665 2.3493951, 48.8277214 2.3493461, 48.8278072 2.3494399, 48.8747866 2.3414819, 48.8582656 2.3882446, 48.8432795 2.4310714, 48.8781729 2.3383243, 48.8455210 2.3927387, 48.8570504 2.3810504, 48.8570892 2.3809592, 48.8881295 2.3773067, 48.8764332 2.3253672, 48.8468273 2.3109956, 48.8699382 2.3403209, 48.8543675 2.3835627, 48.8658986 2.3742587, 48.8663671 2.3715603, 48.8648305 2.3731176, 48.8371729 2.3726157, 48.8972266 2.3855240, 48.8543455 2.3561847, 48.8473600 2.3864659, 48.8796615 2.3550800, 48.8798267 2.3542435, 48.8799598 2.3538754, 48.8818140 2.3525350, 48.8798780 2.3540920, 48.8798990 2.3540330, 48.8795907 2.3547699, 48.8613430 2.3487510, 48.8613780 2.3495790, 48.8575110 2.3466500, 48.8549950 2.3458720, 48.8543860 2.3452440, 48.8538530 2.3437110, 48.8526640 2.3534610, 48.8530320 2.3533850, 48.8529300 2.3536810, 48.8546430 2.3547940, 48.8523740 2.3670920, 48.8472625 2.3418020, 48.8822817 2.3707138, 48.8823434 2.3703224, 48.8801409 2.3753984, 48.8838484 2.3703052, 48.8805044 2.3746913, 48.8419411 2.3897697, 48.8361075 2.3240698, 48.8738314 2.3297043, 48.8727906 2.3327950, 48.8735301 2.3302675, 48.8533006 2.4091489, 48.8537801 2.4114641, 48.8246134 2.4085703, 48.8245079 2.4087393, 48.8263541 2.4052937, 48.8261912 2.4060202, 48.8257011 2.4068892, 48.8697793 2.3750857, 48.8694594 2.3740498, 48.8695851 2.3744330, 48.8698073 2.3749191, 48.8698594 2.3755160, 48.8702910 2.3769090, 48.8616152 2.3446790, 48.8616509 2.3443800, 48.8609430 2.3453853, 48.8624876 2.3424711, 48.8639231 2.3448506, 48.8650409 2.3443222, 48.8650939 2.3440997, 48.8652964 2.3432812, 48.8658825 2.3432946, 48.8659653 2.3433342, 48.8668379 2.3438017, 48.8674613 2.3438214, 48.8682924 2.3433350, 48.8683330 2.3418525, 48.8683712 2.3423646, 48.8683868 2.3418763, 48.8683986 2.3428322, 48.8240781 2.3667729, 48.8537952 2.4109052, 48.8540420 2.4102463, 48.8535604 2.4103242, 48.8533426 2.4103453, 48.8260577 2.4069482, 48.8533437 2.4110062, 48.8258219 2.4066625, 48.8258786 2.4044670, 48.8530681 2.4104272, 48.8259571 2.4071178, 48.8257808 2.4073707, 48.8251812 2.4076886, 48.8220684 2.4142656, 48.8220695 2.4139829, 48.8230229 2.4110104, 48.8252959 2.4075229, 48.8261537 2.4058090, 48.8261120 2.4067185, 48.8275343 2.4045775, 48.8671550 2.3566053, 48.8598419 2.3677964, 48.8586303 2.3897622, 48.8580224 2.3896621, 48.8631677 2.3877376, 48.8631678 2.3876687, 48.8498873 2.3503879, 48.8758431 2.3240197, 48.8758446 2.3239509, 48.8758449 2.3239844, 48.8796269 2.3891937, 48.8576517 2.3848585, 48.8553399 2.3867625, 48.8792482 2.3624736, 48.8967561 2.3835805, 48.8732753 2.3592374, 48.8141320 2.3909081, 48.8150893 2.3923296, 48.8147961 2.3980803, 48.8146937 2.4024630, 48.8144872 2.3840460, 48.8169351 2.3814871, 48.8144872 2.3840460, 48.8376093 2.3551119, 48.8377658 2.3556217, 48.8484590 2.3503760, 48.8465399 2.3518782, 48.8462637 2.3522618, 48.8584947 2.3265348, 48.8640655 2.3345802, 48.8256754 2.3500062, 48.8260463 2.3458083, 48.8257509 2.3631735, 48.8707547 2.3780072, 48.8248377 2.3236483, 48.8238612 2.3234793, 48.8239653 2.3231923, 48.8243856 2.3234123, 48.8246116 2.3235303, 48.8238600 2.3236681, 48.8244668 2.3237073, 48.8242408 2.3233372, 48.8270872 2.3248231, 48.8280919 2.3264056, 48.8274776 2.3257190, 48.8277229 2.3261642, 48.8275711 2.3258960, 48.8277248 2.3271996, 48.8280760 2.3273229, 48.8284080 2.3276636, 48.8274068 2.3262715, 48.8291215 2.3276639, 48.8290544 2.3276046, 48.8291991 2.3278057, 48.8290246 2.3277468, 48.8236221 2.3247553, 48.8234694 2.3234788, 48.8234387 2.3236225, 48.8234660 2.3229699, 48.8236938 2.3240481, 48.8226361 2.3257162, 48.8491992 2.3746133, 48.8752927 2.3875604, 48.8387842 2.4064887, 48.8403734 2.3690860, 48.8388484 2.3702978, 48.8376057 2.3732965, 48.8365782 2.3714028, 48.8397347 2.3696009, 48.8359107 2.3720037, 48.8312357 2.3775548, 48.8458375 2.4227748, 48.8315850 2.3242790, 48.8314815 2.3264103, 48.8732552 2.3604924, 48.8731705 2.3596985, 48.8731847 2.3591245, 48.8720524 2.3605991, 48.8509963 2.3562136, 48.8434040 2.3889105, 48.8429335 2.3895933, 48.8425187 2.3899605, 48.8722045 2.3371834, 48.8521286 2.3374207, 48.8489464 2.3974432, 48.8450801 2.3278995, 48.8441269 2.3312094, 48.8216180 2.3421128, 48.8892175 2.3514659, 48.8891328 2.3517824, 48.8487334 2.3940682, 48.8759986 2.3816785, 48.8469541 2.4077243, 48.8469268 2.4080604, 48.8675732 2.3338667, 48.8337665 2.3191153, 48.8341125 2.3181604, 48.8901469 2.3557510, 48.8907562 2.3403810, 48.8757608 2.4266674, 48.8725873 2.4297686, 48.8726339 2.4297509, 48.8755256 2.4254652, 48.8913122 2.3504296, 48.8824856 2.3440987, 48.8558178 2.3536690, 48.8378904 2.3224575, 48.8751636 2.4061686, 48.8544686 2.3341824, 48.8830455 2.3398008, 48.8823251 2.3397496, 48.8873987 2.3561308, 48.8910970 2.3741558, 48.8907094 2.3763123, 48.8911479 2.3740014, 48.8912509 2.3733007, 48.8907671 2.3759930, 48.8912248 2.3734447, 48.8902798 2.3758317, 48.8914269 2.3723843, 48.8912652 2.3732218, 48.8907239 2.3762320, 48.8912388 2.3733672, 48.8913438 2.3727883, 48.8907416 2.3761340, 48.8904492 2.3770876, 48.8905238 2.3761696, 48.8905385 2.3761863, 48.8906015 2.3762702, 48.8906402 2.3763268, 48.8906505 2.3759000, 48.8907110 2.3761517, 48.8907565 2.3751966, 48.8908100 2.3757534, 48.8908797 2.3744767, 48.8908896 2.3744217, 48.8909033 2.3743272, 48.8909178 2.3742399, 48.8910821 2.3734196, 48.8910858 2.3739625, 48.8911318 2.3731636, 48.8915094 2.3724074, 48.8902005 2.3757322, 48.8658704 2.3983197, 48.8485558 2.3279413, 48.8763666 2.3587710, 48.8625473 2.3875787, 48.8682496 2.3663122, 48.8682866 2.3661153, 48.8689587 2.3676791, 48.8451014 2.4322443, 48.8456035 2.4284431, 48.8410700 2.4300006, 48.8532340 2.3831638, 48.8778422 2.3273653, 48.8476438 2.3479747, 48.8264889 2.3633645, 48.8647821 2.3501454, 48.8651590 2.3511287, 48.8662221 2.3520174, 48.8786096 2.3782351, 48.8751432 2.3825052, 48.8750868 2.3823845, 48.8750284 2.3815228, 48.8780545 2.3715328, 48.8735546 2.3841519, 48.8743059 2.3351845, 48.8743099 2.3348778, 48.8436817 2.3546669, 48.8532919 2.3476372, 48.8704694 2.3212950, 48.8703892 2.3212386, 48.8495928 2.3812853, 48.8618926 2.3832643, 48.8615272 2.3827496, 48.8618255 2.3830658, 48.8617144 2.3826179, 48.8433357 2.3750393, 48.8429514 2.3751858, 48.8441122 2.3786311, 48.8446111 2.3755813, 48.8909515 2.3479396, 48.8908275 2.3460063, 48.8905461 2.3453913, 48.8911373 2.3471492, 48.8907355 2.3482159, 48.8287894 2.3699667, 48.8281729 2.3156151, 48.8295186 2.3712567, 48.8328070 2.3117312, 48.8328362 2.3117649, 48.8677158 2.3837011, 48.8851558 2.3360026, 48.8815254 2.3543330, 48.8352398 2.3696811, 48.8420173 2.3480157, 48.8431426 2.3492259, 48.8428742 2.3485446, 48.8430296 2.3492151, 48.8430013 2.3491186, 48.8428672 2.3484588, 48.8334354 2.3313239, 48.8945691 2.3441669, 48.8946670 2.3443629, 48.8949500 2.3433680, 48.8944316 2.3452559, 48.8937094 2.3473994, 48.8938461 2.3475036, 48.8687716 2.3221560, 48.8935750 2.3428010, 48.8508859 2.3775576, 48.8528026 2.3743383, 48.8935060 2.3426870, 48.8936382 2.3429021, 48.8948080 2.3430620, 48.8652953 2.3815900, 48.8937760 2.3429130, 48.8940560 2.3431940, 48.8941520 2.3429690, 48.8943730 2.3432450, 48.8951370 2.3433760, 48.8943990 2.3447720, 48.8943100 2.3457250, 48.8942700 2.3458810, 48.8941300 2.3458060, 48.8941720 2.3462340, 48.8941340 2.3463850, 48.8940340 2.3461900, 48.8939590 2.3470250, 48.8937040 2.3474530, 48.8936100 2.3477290, 48.8928950 2.3433840, 48.8930400 2.3435230, 48.8931490 2.3433290, 48.8934680 2.3423420, 48.8255689 2.3215157, 48.8256253 2.3214943, 48.8945330 2.3413180, 48.8321456 2.3262397, 48.8732200 2.3544917, 48.8712159 2.3580210, 48.8706729 2.3594270, 48.8703827 2.3595938, 48.8704589 2.3594512, 48.8703260 2.3596800, 48.8703260 2.3600480, 48.8697612 2.3611035, 48.8694260 2.3613550, 48.8694730 2.3616430, 48.8692910 2.3615800, 48.8691880 2.3617720, 48.8694980 2.3633099, 48.8693445 2.3635411, 48.8693670 2.3632040, 48.8690220 2.3633990, 48.8688800 2.3629980, 48.8689960 2.3630690, 48.8691892 2.3631763, 48.8697450 2.3637220, 48.8686940 2.3597770, 48.8686410 2.3599800, 48.8689770 2.3602190, 48.8690369 2.3600697, 48.8694340 2.3601620, 48.8695100 2.3602240, 48.8695809 2.3602770, 48.8702429 2.3608766, 48.8701370 2.3610220, 48.8703390 2.3609580, 48.8704690 2.3610130, 48.8706166 2.3614024, 48.8709730 2.3613960, 48.8710750 2.3612300, 48.8713600 2.3621720, 48.8715680 2.3620320, 48.8718800 2.3626150, 48.8718820 2.3623620, 48.8719160 2.3626809, 48.8721550 2.3626770, 48.8722430 2.3630420, 48.8724460 2.3632870, 48.8726535 2.3631861, 48.8726860 2.3635650, 48.8732160 2.3629280, 48.8313478 2.3132516, 48.8841589 2.3322157, 48.8710589 2.3336208, 48.8300641 2.3145322, 48.8549374 2.3061290, 48.8264682 2.3299850, 48.8285724 2.3161086, 48.8546324 2.3061937, 48.8554617 2.3069499, 48.8555640 2.3069164, 48.8555848 2.3069195, 48.8722679 2.3371342, 48.8722687 2.3371875, 48.8723421 2.3369877, 48.8499500 2.3769797, 48.8508024 2.3768778, 48.8502524 2.3764928, 48.8679829 2.3864573, 48.8684217 2.3859196, 48.8681803 2.3861104, 48.8313000 2.3882082, 48.8315037 2.3662884, 48.8145900 2.3605822, 48.8417557 2.3487402, 48.8726701 2.4079021, 48.8433668 2.3494422, 48.8559235 2.3925572, 48.8722479 2.3978396, 48.8566955 2.3731518, 48.8570910 2.3727607, 48.8914347 2.3494118, 48.8943280 2.3442500, 48.8937040 2.3443030, 48.8931040 2.3440780, 48.8929850 2.3440490, 48.8927220 2.3440920, 48.8926550 2.3442290, 48.8937130 2.3451630, 48.8937300 2.3449020, 48.8939200 2.3452590, 48.8709866 2.3363950, 48.8731527 2.3385700, 48.8505156 2.3091488, 48.8433391 2.3495909, 48.8664049 2.3413812, 48.8687508 2.3345042, 48.8692412 2.3299818, 48.8468527 2.4170511, 48.8466083 2.4182804, 48.8465656 2.4185668, 48.8469632 2.4166417, 48.8470284 2.4077647, 48.8707775 2.3387098, 48.8689281 2.3302927, 48.8695802 2.3230555, 48.8533051 2.4010825, 48.8570621 2.3817062, 48.8407873 2.3491103, 48.8446979 2.3491285, 48.8446176 2.3491298, 48.8664844 2.3389311, 48.8700770 2.3223918, 48.8696595 2.3052249, 48.8662502 2.3285392, 48.8739879 2.3430920, 48.8147908 2.3897357, 48.8419574 2.3290304, 48.8529638 2.3701915, 48.8634808 2.3437738, 48.8226529 2.4101092, 48.8608218 2.3464552, 48.8111920 2.3780919, 48.8110754 2.3780355, 48.8133230 2.3888709, 48.8135916 2.3885631, 48.8136375 2.3886678, 48.8718416 2.3144851, 48.8696738 2.3309961, 48.8725161 2.3281305, 48.8628275 2.3277881, 48.8521273 2.3846642, 48.8913400 2.3514860, 48.8914220 2.3515420, 48.8915940 2.3516290, 48.8917510 2.3517290, 48.8919510 2.3518460, 48.8928400 2.3529200, 48.8933290 2.3479650, 48.8947860 2.3445300, 48.8956620 2.3457420, 48.8955250 2.3458800, 48.8957270 2.3457050, 48.8716249 2.3434418, 48.8941134 2.3651745, 48.8941408 2.3643965, 48.8942739 2.3608266, 48.8910520 2.3649118, 48.8910731 2.3646543, 48.8888458 2.3595338, 48.8885019 2.3596679, 48.8849463 2.3516964, 48.8849657 2.3509440, 48.8969913 2.3529624, 48.8724800 2.3404835, 48.8724927 2.3528401, 48.8714038 2.3104401, 48.8644111 2.3256564, 48.8435991 2.3495369, 48.8436740 2.3495038, 48.8116214 2.3850943, 48.8715946 2.3262057, 48.8669510 2.3270370, 48.8706950 2.3313289, 48.8445643 2.3491518, 48.8451117 2.3493401, 48.8449670 2.3488185, 48.8448364 2.3492811, 48.8448928 2.3492758, 48.8447887 2.3491498, 48.8426449 2.3435197, 48.8431091 2.3419694, 48.8406254 2.3514242, 48.8406978 2.3515047, 48.8679841 2.3255481, 48.8704636 2.3297136, 48.8693141 2.3323713, 48.8414118 2.3440069, 48.8425813 2.3448154, 48.8424224 2.3451614, 48.8440817 2.3394081, 48.8424630 2.3156606, 48.8636829 2.3283540, 48.8547085 2.3620151, 48.8680526 2.3287936, 48.8684086 2.3268250, 48.8546899 2.3251122, 48.8372850 2.3106653, 48.8662803 2.3394262, 48.8710959 2.3416366, 48.8651186 2.3284372, 48.8699813 2.3246311, 48.8423313 2.3428566, 48.8445379 2.3489273, 48.8445159 2.3485397, 48.8433693 2.3513433, 48.8624680 2.3549738, 48.8555111 2.3595266, 48.8421636 2.3432160, 48.8597985 2.4338358, 48.8596785 2.4338680, 48.8193240 2.3236972, 48.8189508 2.3234810, 48.8191333 2.3230642, 48.8597088 2.3086607, 48.8529580 2.3375756, 48.8501520 2.3419436, 48.8687853 2.3250184, 48.8443095 2.3492103, 48.8434406 2.3494268, 48.8432628 2.3494718, 48.8447332 2.3491164, 48.8446591 2.3491299, 48.8824430 2.3395146, 48.8697266 2.3414020, 48.8704552 2.3394761, 48.8437358 2.3472026, 48.8384430 2.3563154, 48.8954044 2.3511534, 48.8373350 2.3058145, 48.8372006 2.3061816, 48.8751011 2.3616070, 48.8660415 2.3361004, 48.8240127 2.3580960, 48.8240888 2.3580723, 48.8883787 2.3534523, 48.8447791 2.3492894, 48.8435770 2.3493886, 48.8629947 2.3545853, 48.8728991 2.3470277, 48.8372502 2.3914765, 48.8377834 2.3909830, 48.8940561 2.3541965, 48.8917696 2.3461211, 48.8918716 2.3465917, 48.8939174 2.3431529, 48.8911748 2.3607925, 48.8683505 2.3748549, 48.8645120 2.4161498, 48.8629399 2.4155168, 48.8437872 2.3493332, 48.8442707 2.3492157, 48.8597360 2.3466694, 48.8606298 2.3466023, 48.8632351 2.3477979, 48.8794294 2.4156069, 48.8806999 2.4220224, 48.8240428 2.3967972, 48.8401572 2.3240577, 48.8751867 2.4062512, 48.8412056 2.3941921, 48.8799295 2.3575665, 48.8418196 2.3905033, 48.8968424 2.3818049, 48.8864168 2.3442029, 48.8866377 2.3443434, 48.8481277 2.4272151, 48.8866611 2.3713511, 48.8899236 2.3398500, 48.8865304 2.3443480, 48.8305691 2.3437858, 48.8441758 2.3479878, 48.8445200 2.3486356, 48.8445253 2.3488180, 48.8445218 2.3487080, 48.8438395 2.3493280, 48.8459828 2.3741796, 48.8477463 2.3951627, 48.8447240 2.3729528, 48.8789794 2.3539524, 48.8562896 2.3705562, 48.8570416 2.3726643, 48.8583199 2.3756060, 48.8582954 2.3754987, 48.8604940 2.3703861, 48.8939381 2.3543052, 48.8189033 2.3228824, 48.8535516 2.3746079, 48.8707816 2.3496418, 48.8499326 2.3631550, 48.8290907 2.3609632, 48.8287266 2.3577412, 48.8615810 2.3783255, 48.8857166 2.3381509, 48.8848997 2.3377794, 48.8841301 2.3388858, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8846283 2.3377325, 48.8849290 2.3370700, 48.8851813 2.3369680, 48.8846072 2.3383226, 48.8475785 2.4004192, 48.8481085 2.4036760, 48.8477834 2.4056017, 48.8478611 2.4055458, 48.8491151 2.3992867, 48.8495350 2.3991507, 48.8754340 2.3230260, 48.8272515 2.3324249, 48.8274320 2.3314214, 48.8743786 2.3636125, 48.8524138 2.4039321, 48.8526347 2.4037316, 48.8690004 2.3384279, 48.8550074 2.4087180, 48.8520184 2.4094142, 48.8535259 2.4120078, 48.8231719 2.3553444, 48.8462126 2.4118560, 48.8558395 2.3835889, 48.8608328 2.3202142, 48.8609201 2.3180354, 48.8555779 2.3258692, 48.8570577 2.3190096, 48.8796310 2.3548543, 48.8516633 2.4098056, 48.8688688 2.3293533, 48.8617696 2.3477277, 48.8439446 2.3493055, 48.8438873 2.3493114, 48.8422145 2.3455341, 48.8434841 2.3451307, 48.8419250 2.3444075, 48.8435640 2.3386465, 48.8485015 2.3421189, 48.8501669 2.3420537, 48.8455001 2.3427289, 48.8663676 2.3860046, 48.8686610 2.3900468, 48.8739830 2.3725892, 48.8742654 2.3727129, 48.8668000 2.3495673, 48.8750802 2.3235709, 48.8561278 2.3314027, 48.8491689 2.3364515, 48.8842925 2.3209233, 48.8602752 2.3525888, 48.8648255 2.3978523, 48.8933357 2.3510120, 48.8878706 2.3493757, 48.8847676 2.3506962, 48.8900150 2.3386297, 48.8722691 2.3468122, 48.8831291 2.3341159, 48.8810244 2.3451276, 48.8251592 2.3753556, 48.8410007 2.3779168, 48.8768622 2.3589369, 48.8758269 2.3554902, 48.8820806 2.3381707, 48.8337651 2.3086915, 48.8334129 2.3092754, 48.8843019 2.3905346, 48.8927700 2.3745823, 48.8839103 2.3739430, 48.8886607 2.3737892, 48.8691728 2.4085455, 48.8580953 2.3988158, 48.8464663 2.3272295, 48.8566315 2.4020574, 48.8436087 2.3253227, 48.8442816 2.3244689, 48.8436931 2.3250669, 48.8433712 2.3246895, 48.8438272 2.3247198, 48.8437155 2.3249989, 48.8439457 2.3244951, 48.8435643 2.3254572, 48.8440394 2.3252776, 48.8434985 2.3253726, 48.8435531 2.3252093, 48.8455688 2.3253845, 48.8458630 2.3256709, 48.8459243 2.3259674, 48.8459484 2.3259864, 48.8460036 2.3258028, 48.8464844 2.3265135, 48.8468021 2.3268954, 48.8828717 2.3288427, 48.8827209 2.3281869, 48.8827606 2.3283572, 48.8482530 2.4016764, 48.8484150 2.3998595, 48.8476850 2.4080780, 48.8600249 2.4009571, 48.8596732 2.4008904, 48.8596966 2.4009450, 48.8598137 2.4007026, 48.8598148 2.4006077, 48.8602450 2.4036827, 48.8602742 2.4037442, 48.8402155 2.3458349, 48.8589058 2.3989762, 48.8606245 2.4045354, 48.8353252 2.3805436, 48.8795681 2.4164781, 48.8508424 2.4062247, 48.8525397 2.4062717, 48.8790996 2.3538362, 48.8659551 2.3738289, 48.8227101 2.3777404, 48.8356633 2.3751497, 48.8489864 2.3403461, 48.8519186 2.3373763, 48.8817068 2.3196827, 48.8838814 2.3289545, 48.8785513 2.3191831, 48.8677168 2.3842251, 48.8917516 2.3438452, 48.8911967 2.3437988, 48.8933614 2.3614463, 48.8556147 2.3867624, 48.8560496 2.3884378, 48.8558032 2.4171869, 48.8425831 2.3967408, 48.8423307 2.3962500, 48.8431786 2.4118113, 48.8433516 2.3972224, 48.8448527 2.4123915, 48.8447201 2.4123031, 48.8401109 2.4071422, 48.8527026 2.3765031, 48.8531504 2.3773721, 48.8511314 2.3762510, 48.8513051 2.3765410, 48.8501042 2.3782626, 48.8352673 2.4018017, 48.8499769 2.3748764, 48.8532457 2.3759666, 48.8511667 2.3770664, 48.8349006 2.3856248, 48.8354795 2.3859524, 48.8350642 2.3845935, 48.8358185 2.3869346, 48.8235339 2.3535561, 48.8231032 2.3543307, 48.8501700 2.4001960, 48.8727210 2.3098530, 48.8583239 2.4334742, 48.8521580 2.3738714, 48.8795704 2.3522406, 48.8793693 2.3525786, 48.8861681 2.3474404, 48.8404972 2.3950481, 48.8823708 2.3546777, 48.8414282 2.3751870, 48.8762899 2.3352405, 48.8603849 2.3722146, 48.8618251 2.3720347, 48.8770700 2.3392078, 48.8462352 2.3927786, 48.8671989 2.3667020, 48.8660229 2.3666774, 48.8661411 2.3671105, 48.8276838 2.3319307, 48.8668369 2.3739208, 48.8667946 2.3743500, 48.8566794 2.3823726, 48.8701182 2.3328493, 48.8714714 2.3280397, 48.8914883 2.3506742, 48.8865819 2.3505079, 48.8867280 2.3409619, 48.8286998 2.3507416, 48.8286000 2.3506267, 48.8332718 2.3868776, 48.8332740 2.3869138, 48.8750750 2.3586783, 48.8695686 2.3540691, 48.8729261 2.3537842, 48.8736230 2.3526886, 48.8729261 2.3542213, 48.8732538 2.3529079, 48.8552626 2.4326105, 48.8570793 2.4330413, 48.8573328 2.4331297, 48.8554303 2.4324705, 48.8527467 2.4312145, 48.8528536 2.4314057, 48.8532404 2.4304022, 48.8554545 2.4329266, 48.8474621 2.4337389, 48.8743650 2.3427007, 48.8412651 2.3237285, 48.8412198 2.3236119, 48.8416006 2.3224232, 48.8417364 2.3228852, 48.8857288 2.3428801, 48.8857182 2.3428332, 48.8410399 2.3210471, 48.8476487 2.4368726, 48.8765542 2.3611207, 48.8337153 2.3863338, 48.8762330 2.3783499, 48.8359076 2.3859497, 48.8789434 2.3780844, 48.8776230 2.3777304, 48.8717406 2.3715881, 48.8772835 2.3756704, 48.8649019 2.3984981, 48.8657031 2.3995395, 48.8183068 2.3303100, 48.8276580 2.3500100, 48.8276701 2.3500783, 48.8429112 2.3235502, 48.8420581 2.3222156, 48.8420075 2.3219512, 48.8423579 2.3222342, 48.8426136 2.3217510, 48.8425995 2.3220085, 48.8424434 2.3219416, 48.8422510 2.3218934, 48.8430431 2.3223965, 48.8426424 2.3222812, 48.8423484 2.3212962, 48.8421833 2.3220777, 48.8779977 2.3266274, 48.8722395 2.3541753, 48.8733312 2.3530300, 48.8732745 2.3532186, 48.8727613 2.3519183, 48.8727251 2.3521315, 48.8508395 2.3843514, 48.8526377 2.4062734, 48.8421090 2.3213512, 48.8418212 2.3214760, 48.8850396 2.3205857, 48.8180278 2.3754108, 48.8180421 2.3753992, 48.8159720 2.3757470, 48.8878878 2.3544913, 48.8880271 2.3560550, 48.8817044 2.3525759, 48.8163844 2.3745100, 48.8674944 2.3533853, 48.8144410 2.3858020, 48.8211226 2.3412820, 48.8196610 2.3252732, 48.8333002 2.3325229, 48.8488761 2.3682264, 48.8496205 2.4036764, 48.8282269 2.3275024, 48.8392213 2.3299129, 48.8708622 2.3349641, 48.8793707 2.3458902, 48.8557457 2.4009907, 48.8559569 2.4014635, 48.8558805 2.4016616, 48.8783213 2.4114864, 48.8487330 2.3561350, 48.8468610 2.3536998, 48.8490828 2.3559798, 48.8449764 2.3549028, 48.8813107 2.3778658, 48.8722815 2.3635605, 48.8795792 2.3764981, 48.8814690 2.3788770, 48.8552161 2.3664464, 48.8714989 2.3580961, 48.8754478 2.3646548, 48.8810188 2.3786602, 48.8745073 2.3650898, 48.8760589 2.3705573, 48.8797439 2.3761658, 48.8201698 2.3641255, 48.8211831 2.3635911, 48.8502906 2.3928948, 48.8753266 2.3704350, 48.8752613 2.3705179, 48.8509701 2.3489635, 48.8476389 2.3773813, 48.8801808 2.3373122, 48.8353533 2.3477721, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8705229 2.3425664, 48.8776130 2.3321167, 48.8767506 2.3327911, 48.8777152 2.3320765, 48.8777130 2.3318740, 48.8769692 2.3323827, 48.8761690 2.3320880, 48.8776233 2.3319343, 48.8758728 2.3354163, 48.8759973 2.3351877, 48.8762282 2.3327974, 48.8752392 2.3359440, 48.8761960 2.3332490, 48.8717348 2.3426744, 48.8717988 2.3422890, 48.8720797 2.3405228, 48.8721385 2.3402693, 48.8720485 2.3407198, 48.8717827 2.3402091, 48.8713165 2.3435900, 48.8715042 2.3426369, 48.8715029 2.3424432, 48.8715088 2.3415405, 48.8715193 2.3423495, 48.8716636 2.3427222, 48.8716892 2.3413115, 48.8717651 2.3403142, 48.8717993 2.3417088, 48.8718366 2.3403543, 48.8721397 2.3393564, 48.8719292 2.3408327, 48.8697525 2.3517557, 48.8708172 2.3482539, 48.8710210 2.3469210, 48.8710350 2.3468353, 48.8696399 2.3521119, 48.8706185 2.3473437, 48.8699131 2.3519891, 48.8701054 2.3514869, 48.8701778 2.3512504, 48.8702314 2.3510796, 48.8703308 2.3501756, 48.8704451 2.3482133, 48.8705697 2.3483676, 48.8708652 2.3474521, 48.8709038 2.3471924, 48.8710522 2.3467304, 48.8388096 2.3823806, 48.8083684 2.3630820, 48.8095183 2.3628255, 48.8092957 2.3621925, 48.8094653 2.3611223, 48.8829700 2.3205585, 48.8712019 2.3413851, 48.8553805 2.3368914, 48.8380973 2.3926743, 48.8816031 2.3282156, 48.8820557 2.3285353, 48.8810393 2.3287050, 48.8780225 2.3319547, 48.8812217 2.3283853, 48.8819211 2.3282925, 48.8815556 2.3282349, 48.8812596 2.3282561, 48.8810901 2.3284438, 48.8804253 2.3287401, 48.8801158 2.3291143, 48.8809390 2.3290257, 48.8816188 2.3284123, 48.8815002 2.3282628, 48.8802806 2.3288294, 48.8814226 2.3285073, 48.8805559 2.3289093, 48.8817375 2.3283675, 48.8812070 2.3286079, 48.8803547 2.3289832, 48.8809958 2.3285271, 48.8812030 2.3284499, 48.8821364 2.3279588, 48.8571157 2.3684747, 48.8579257 2.3463544, 48.8743640 2.3328049, 48.8743336 2.3345374, 48.8743562 2.3331088, 48.8742801 2.3357676, 48.8741989 2.3323945, 48.8742391 2.3333145, 48.8742191 2.3339210, 48.8742326 2.3334984, 48.8742002 2.3321838, 48.8743271 2.3320123, 48.8743326 2.3322873, 48.8741996 2.3346158, 48.8743344 2.3324943, 48.8743369 2.3320794, 48.8742512 2.3330600, 48.8741848 2.3351560, 48.8743601 2.3329097, 48.8742352 2.3331688, 48.8743344 2.3324039, 48.8742439 2.3332327, 48.8742300 2.3335755, 48.8742269 2.3336382, 48.8742148 2.3347299, 48.8742437 2.3321727, 48.8742456 2.3328589, 48.8742469 2.3336448, 48.8742841 2.3351598, 48.8728885 2.3451791, 48.8921164 2.3345008, 48.8911613 2.3319378, 48.8856755 2.3448166, 48.8930350 2.3633966, 48.8900140 2.3602197, 48.8334449 2.3538589, 48.8357356 2.3522840, 48.8301847 2.3456951, 48.8352173 2.3476295, 48.8329777 2.3472248, 48.8765391 2.3394762, 48.8763100 2.3399916, 48.8770037 2.3406740, 48.8762148 2.3400961, 48.8765114 2.3406889, 48.8766343 2.3407712, 48.8765191 2.3406058, 48.8765034 2.3395297, 48.8766574 2.3401427, 48.8763841 2.3396912, 48.8764750 2.3395753, 48.8766336 2.3408729, 48.8766574 2.3405656, 48.8762979 2.3397799, 48.8766916 2.3405068, 48.8767915 2.3372725, 48.8353690 2.3465771, 48.8933200 2.3491176, 48.8395564 2.3497363, 48.8751240 2.3369439, 48.8751258 2.3368667, 48.8761627 2.3401745, 48.8320324 2.3866588, 48.8400881 2.3806431, 48.8396239 2.3824997, 48.8398677 2.3819967, 48.8398721 2.3821834, 48.8402787 2.3799233, 48.8240405 2.3250200, 48.8517277 2.3664938, 48.8359510 2.3274377, 48.8648511 2.3817815, 48.8518481 2.4241323, 48.8445744 2.3876337, 48.8779906 2.3450959, 48.8462888 2.4207873, 48.8246903 2.3553751, 48.8200183 2.3651320, 48.8377773 2.3494970, 48.8763089 2.3364262, 48.8712127 2.3428611, 48.8702093 2.4204687, 48.8490395 2.3485570, 48.8826732 2.3757224, 48.8826652 2.3762351, 48.8826088 2.3768306, 48.8825596 2.3779677, 48.8624965 2.3439076, 48.8523973 2.3894913, 48.8642191 2.3423423, 48.8680574 2.3417881, 48.8655111 2.3426280, 48.8644270 2.3423345, 48.8698783 2.3425685, 48.8691169 2.3422291, 48.8702023 2.3421494, 48.8637180 2.3427315, 48.8637692 2.3426419, 48.8638673 2.3421689, 48.8643025 2.3423599, 48.8650391 2.3428079, 48.8655271 2.3423422, 48.8656506 2.3418330, 48.8675845 2.3413784, 48.8675929 2.3416886, 48.8699035 2.3424435, 48.8089348 2.3648472, 48.8425540 2.3977804, 48.8451294 2.4027346, 48.8515069 2.4066855, 48.8794276 2.4184801, 48.8790836 2.4178465, 48.8800418 2.4142030, 48.8351363 2.3445567, 48.8260954 2.3467344, 48.8304114 2.3551772, 48.8864203 2.3325703, 48.8854403 2.3309916, 48.8641319 2.3484339, 48.8692088 2.4085611, 48.8843107 2.3903306, 48.8863919 2.3865004, 48.8709579 2.3576608, 48.8123757 2.3619529, 48.8819047 2.3985349, 48.8590759 2.4003273, 48.8865801 2.3354932, 48.8872935 2.3361945, 48.8853856 2.3359893, 48.8873045 2.3360309, 48.8858892 2.3361945, 48.8125092 2.3618641, 48.8125171 2.3620133, 48.8095597 2.3594455, 48.8644583 2.3274519, 48.8301165 2.3261956, 48.8881851 2.3480652, 48.8884653 2.3485324, 48.8869647 2.3478228, 48.8867173 2.3477674, 48.8791144 2.3365425, 48.8883991 2.3510703, 48.8869141 2.3514696, 48.8635290 2.3631763, 48.8825806 2.3672397, 48.8541484 2.3323158, 48.8538475 2.3325263, 48.8539666 2.3321106, 48.8539543 2.3320945, 48.8920227 2.3428666, 48.8807365 2.3660941, 48.8245312 2.3763864, 48.8857577 2.3451141, 48.8857859 2.3452590, 48.8544440 2.3312616, 48.8554636 2.3337901, 48.8604940 2.3409119, 48.8702948 2.3422163, 48.8812525 2.3584914, 48.8830672 2.3651696, 48.8825981 2.3645629, 48.8830046 2.3650381, 48.8830637 2.3612591, 48.8728704 2.3813019, 48.8101508 2.3625322, 48.8846517 2.3291078, 48.8847090 2.3292720, 48.8851897 2.3294400, 48.8834736 2.3604504, 48.8896591 2.3426912, 48.8898849 2.3426094, 48.8838961 2.3274356, 48.8857760 2.3287243, 48.8910607 2.3394636, 48.8850010 2.3295757, 48.8902288 2.3476015, 48.8465148 2.4289319, 48.8466235 2.4291176, 48.8461814 2.4288952, 48.8440277 2.3578583, 48.8440733 2.3580327, 48.8441013 2.3580010, 48.8441297 2.3579739, 48.8286085 2.3529303, 48.8429926 2.3485399, 48.8764091 2.3236995, 48.8827601 2.3372823, 48.8248510 2.3607452, 48.8416788 2.3272221, 48.8519424 2.3384522, 48.8628867 2.3292924, 48.8645244 2.3241300, 48.8928809 2.3504734, 48.8728278 2.3909854, 48.8320919 2.3674213, 48.8556751 2.3337849, 48.8918057 2.3347531, 48.8915644 2.3350420, 48.8915892 2.3347229, 48.8919172 2.3352889, 48.8872260 2.3324699, 48.8958920 2.3466158, 48.8960577 2.3464495, 48.8956490 2.3465730, 48.8959308 2.3457254, 48.8904006 2.3349160, 48.8905328 2.3349026, 48.8906192 2.3344868, 48.8894588 2.3334837, 48.8884483 2.3329205, 48.8875488 2.3327381, 48.8917862 2.3347712, 48.8917401 2.3351281, 48.8915716 2.3353225, 48.8920706 2.3346881, 48.8933968 2.3371262, 48.8933750 2.3385392, 48.8934250 2.3386202, 48.8929700 2.3402831, 48.8088930 2.3648168, 48.8089022 2.3647604, 48.8089205 2.3649005, 48.8089311 2.3649722, 48.8089638 2.3650692, 48.8089936 2.3651590, 48.8090161 2.3650023, 48.8090210 2.3652524, 48.8091158 2.3652557, 48.8091279 2.3651391, 48.8396619 2.3229538, 48.8879853 2.3396455, 48.8090382 2.3650851, 48.8521890 2.3465789, 48.8518599 2.3446879, 48.8547555 2.3384628, 48.8526960 2.3467728, 48.8525447 2.3466628, 48.8887735 2.3938208, 48.8522608 2.4040943, 48.8514101 2.4052556, 48.8515061 2.4064299, 48.8491856 2.4063562, 48.8490772 2.4063369, 48.8479595 2.4050367, 48.8480831 2.4040261, 48.8189971 2.3575128, 48.8189926 2.3575382, 48.8192558 2.3573491, 48.8190889 2.3574967, 48.8721179 2.3385859, 48.8859512 2.3781916, 48.8909107 2.3755163, 48.8860470 2.3791509, 48.8222536 2.3618120, 48.8221935 2.3616081, 48.8221264 2.3613884, 48.8222287 2.3611417, 48.8221688 2.3609429, 48.8221335 2.3607766, 48.8315453 2.3647312, 48.8923038 2.3388466, 48.8927798 2.3416901, 48.8931361 2.3423335, 48.8323795 2.3620094, 48.8325490 2.3620175, 48.8328561 2.3610753, 48.8314449 2.3640412, 48.8577690 2.3998080, 48.8446658 2.3899217, 48.8391806 2.3825585, 48.8389227 2.3824998, 48.8383292 2.3826173, 48.8520536 2.4091515, 48.8301517 2.3816300, 48.8221897 2.3589982, 48.8334932 2.3194586, 48.8219714 2.3582637, 48.8221377 2.3582427, 48.8217964 2.3583170, 48.8220277 2.3582482, 48.8685541 2.3683047, 48.8825100 2.3378415, 48.8834581 2.3344321, 48.8234610 2.3537855, 48.8846868 2.3416679, 48.8843749 2.3411643, 48.8846003 2.3411844, 48.8841743 2.3417867, 48.8842759 2.3413619, 48.8198844 2.3619743, 48.8462350 2.4249809, 48.8463637 2.4250747, 48.8466892 2.4264442, 48.8467895 2.4265022, 48.8471582 2.4294551, 48.8195477 2.3338738, 48.8477236 2.3032589, 48.8820510 2.4101920, 48.8886357 2.3901364, 48.8413779 2.3118977, 48.8803114 2.4117221, 48.8803256 2.4120198, 48.8432413 2.3224129, 48.8438502 2.3225577, 48.8912689 2.3395224, 48.8752485 2.3690581, 48.8720517 2.3351032, 48.8304109 2.3569512, 48.8298312 2.3567979, 48.8662620 2.3356061, 48.8670216 2.3359869, 48.8569678 2.3519723, 48.8682806 2.3897258, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8474011 2.3413795, 48.8505220 2.3461000, 48.8507185 2.3452276, 48.8505641 2.3458479, 48.8464932 2.3439185, 48.8484873 2.3463043, 48.8500822 2.3477323, 48.8507620 2.3449853, 48.8463607 2.3432591, 48.8505565 2.3459027, 48.8464051 2.3430548, 48.8464373 2.3431173, 48.8476756 2.3411763, 48.8499865 2.3481714, 48.8501851 2.3484297, 48.8748542 2.3087625, 48.8628332 2.3825028, 48.8302605 2.3138234, 48.8305332 2.3138423, 48.8308414 2.3123480, 48.8308711 2.3136966, 48.8311654 2.3137963, 48.8358896 2.3152881, 48.8375785 2.3184257, 48.8376310 2.3186521, 48.8712517 2.3429020, 48.8748866 2.3088194, 48.8768246 2.3154058, 48.8444941 2.3897502, 48.8471824 2.3866402, 48.8485106 2.4350206, 48.8503916 2.4344973, 48.8376821 2.3457867, 48.8420674 2.3760001, 48.8414550 2.3765636, 48.8419010 2.3761630, 48.8420279 2.3760760, 48.8422603 2.3759362, 48.8433854 2.3736074, 48.8672161 2.3065357, 48.8795791 2.4011974, 48.8794785 2.4002318, 48.8259420 2.3462157, 48.8496451 2.3534642, 48.8453042 2.3498920, 48.8928033 2.3785257, 48.8927495 2.3785104, 48.8525880 2.4184826, 48.8528539 2.4193380, 48.8625297 2.3799298, 48.8620663 2.3803024, 48.8720302 2.3920402, 48.8536582 2.4244058, 48.8576598 2.4272461, 48.8571430 2.4229626, 48.8555424 2.4223833, 48.8562466 2.4264258, 48.8549210 2.4186865, 48.8554898 2.4013519, 48.8564313 2.4002327, 48.8567743 2.4001839, 48.8570961 2.3998935, 48.8574084 2.3993454, 48.8575637 2.3994629, 48.8579395 2.3997934, 48.8590223 2.4024858, 48.8589783 2.4022376, 48.8589383 2.4057326, 48.8590692 2.4058632, 48.8575224 2.4077895, 48.8577147 2.4074098, 48.8571003 2.4079730, 48.8573471 2.4084118, 48.8572287 2.4082747, 48.8569748 2.4079915, 48.8570206 2.4087900, 48.8518332 2.3373498, 48.8514439 2.3380763, 48.8549221 2.4119401, 48.8556888 2.4005126, 48.8539073 2.4012043, 48.8793921 2.3895039, 48.8519052 2.4236470, 48.8516079 2.4261266, 48.8526846 2.4239243, 48.8531236 2.4235386, 48.8537915 2.4244888, 48.8536991 2.4236240, 48.8522009 2.4263143, 48.8520139 2.4238385, 48.8534715 2.4234390, 48.8554053 2.4340312, 48.8571054 2.4314615, 48.8575624 2.4360669, 48.8560712 2.4256465, 48.8574266 2.4331540, 48.8577619 2.4353641, 48.8563589 2.4272504, 48.8548394 2.4175545, 48.8542026 2.4276788, 48.8552221 2.4229206, 48.8895806 2.3929015, 48.8847068 2.3794407, 48.8725254 2.3564163, 48.8720689 2.3560867, 48.8716754 2.3575262, 48.8724942 2.3562527, 48.8725036 2.3562580, 48.8725198 2.3562571, 48.8725473 2.3562826, 48.8753704 2.3575042, 48.8656739 2.3463704, 48.8371809 2.3497368, 48.8371189 2.3502507, 48.8516647 2.3719912, 48.8204649 2.3388910, 48.8443192 2.3900381, 48.8289507 2.3796939, 48.8289537 2.3796898, 48.8292293 2.3804968, 48.8294371 2.3808482, 48.8534987 2.3177448, 48.8973173 2.3848230, 48.8972521 2.3847586, 48.8970881 2.3845721, 48.8648559 2.3969632, 48.8616106 2.3019528, 48.8459096 2.3748745, 48.8622551 2.3149819, 48.8538751 2.3124512, 48.8420157 2.3726058, 48.8430720 2.3835489, 48.8472114 2.3812727, 48.8609194 2.3070577, 48.8591296 2.3194176, 48.8476062 2.3772809, 48.8580602 2.3104534, 48.8541706 2.3068705, 48.8091546 2.3649598, 48.8969286 2.3866620, 48.8577965 2.3842350, 48.8453249 2.3924410, 48.8709110 2.3462011, 48.8526225 2.3605373, 48.8527756 2.3604759, 48.8527916 2.3608490, 48.8529200 2.3600286, 48.8530925 2.3597085, 48.8531602 2.3598156, 48.8532277 2.3589001, 48.8533913 2.3581164, 48.8534869 2.3593371, 48.8535051 2.3580579, 48.8540659 2.3610972, 48.8541003 2.3609648, 48.8731487 2.3445761, 48.8713070 2.3479965, 48.8525041 2.4054710, 48.8505469 2.4061987, 48.8755099 2.3434037, 48.8502723 2.4063088, 48.8526949 2.3089511, 48.8510517 2.3092163, 48.8518484 2.3096816, 48.8529307 2.3090379, 48.8538143 2.3069683, 48.8541796 2.3066834, 48.8493210 2.4123278, 48.8522713 2.3728858, 48.8743665 2.3618973, 48.8742228 2.3624553, 48.8693235 2.3602586, 48.8727849 2.3634181, 48.8339369 2.3145520, 48.8363345 2.3104066, 48.8358696 2.3958145, 48.8358361 2.3959436, 48.8362526 2.3943323, 48.8364609 2.3940728, 48.8369959 2.3933620, 48.8379393 2.3947080, 48.8616349 2.3514454, 48.8620103 2.3504016, 48.8619070 2.3508109, 48.8617849 2.3518205, 48.8618170 2.3506485, 48.8616656 2.3513122, 48.8613154 2.3514779, 48.8618213 2.3511884, 48.8618296 2.3505926, 48.8619390 2.3509944, 48.8673541 2.3180025, 48.8689632 2.3129455, 48.8683826 2.3147872, 48.8567114 2.4103333, 48.8595904 2.4050515, 48.8594938 2.4051634, 48.8283068 2.3264318, 48.8665921 2.3829389, 48.8665427 2.3829818, 48.8742509 2.3267610, 48.8756033 2.3260400, 48.8668276 2.3999886, 48.8708913 2.3580857, 48.8687802 2.3624897, 48.8692034 2.3573399, 48.8692739 2.3564386, 48.8699288 2.3950557, 48.8719573 2.3957786, 48.8734565 2.3909548, 48.8425042 2.4283102, 48.8420092 2.4240851, 48.8408073 2.3218471, 48.8484291 2.4369767, 48.8471950 2.4348566, 48.8464546 2.4345692, 48.8786755 2.3549221, 48.8776027 2.3270929, 48.8751640 2.3321790, 48.8660566 2.3039258, 48.8674435 2.3066185, 48.8760737 2.3314470, 48.8776629 2.3503063, 48.8882304 2.3741760, 48.8880750 2.3740150, 48.8882739 2.3742342, 48.8776378 2.3267921, 48.8933121 2.3848968, 48.8946426 2.3818500, 48.8926684 2.3791196, 48.8932861 2.3844526, 48.8349568 2.3963498, 48.8598245 2.3479142, 48.8592985 2.3479258, 48.8607520 2.3551307, 48.8601373 2.3481716, 48.8625488 2.3540088, 48.8599332 2.3492544, 48.8624420 2.3521861, 48.8600406 2.3484986, 48.8600556 2.3483497, 48.8616973 2.3497749, 48.8610832 2.3541404, 48.8630686 2.3546427, 48.8606162 2.3549537, 48.8601051 2.3500266, 48.8633570 2.3506638, 48.8591455 2.3478511, 48.8593308 2.3476821, 48.8602833 2.3482093, 48.8632736 2.3519950, 48.8611395 2.3539719, 48.8630018 2.3509388, 48.8614419 2.3528860, 48.8589924 2.3475806, 48.8591148 2.3478378, 48.8592067 2.3534078, 48.8597459 2.3542980, 48.8597947 2.3481558, 48.8599813 2.3497684, 48.8601111 2.3484132, 48.8605147 2.3550422, 48.8607150 2.3496929, 48.8607407 2.3533231, 48.8608690 2.3535460, 48.8615861 2.3538350, 48.8619499 2.3529357, 48.8620249 2.3537411, 48.8621174 2.3535204, 48.8624608 2.3528454, 48.8625131 2.3505652, 48.8626553 2.3503813, 48.8627388 2.3544858, 48.8630130 2.3520043, 48.8630530 2.3526294, 48.8630774 2.3526152, 48.8630836 2.3506216, 48.8631431 2.3517067, 48.8634709 2.3500130, 48.8601905 2.3476020, 48.8601948 2.3475156, 48.8596378 2.3474576, 48.8604384 2.3466636, 48.8636482 2.3489320, 48.8637115 2.3501925, 48.8629250 2.3487647, 48.8600209 2.3471788, 48.8636829 2.3493064, 48.8629020 2.3488808, 48.8637680 2.3499140, 48.8620454 2.3494700, 48.8634421 2.3485303, 48.8633388 2.3485138, 48.8603324 2.3474365, 48.8606768 2.3486445, 48.8626544 2.3497602, 48.8628820 2.3480806, 48.8637423 2.3492027, 48.8479468 2.3805001, 48.8448439 2.3826317, 48.8468721 2.3812651, 48.8505114 2.3788484, 48.8450449 2.3494549, 48.8577440 2.4279651, 48.8644061 2.3713501, 48.8288751 2.3167202, 48.8305978 2.3143161, 48.8314530 2.3131078, 48.8654002 2.3689374, 48.8414148 2.4182911, 48.8413945 2.4194391, 48.8412648 2.4178016, 48.8412533 2.4177480, 48.8356746 2.3226602, 48.8355850 2.3240208, 48.8356592 2.3240019, 48.8366420 2.3235880, 48.8364355 2.3230794, 48.8354175 2.3228183, 48.8347274 2.3935263, 48.8348557 2.3933268, 48.8350680 2.3931610, 48.8351044 2.3931231, 48.8354238 2.3929281, 48.8357428 2.3922686, 48.8968971 2.3856504, 48.8365016 2.3919794, 48.8363755 2.3920736, 48.8346667 2.3880981, 48.8363401 2.3920991, 48.8371689 2.3900453, 48.8476343 2.3974001, 48.8446991 2.3828833, 48.8452414 2.3792066, 48.8388762 2.3961905, 48.8377454 2.3971411, 48.8378158 2.3970726, 48.8385395 2.3965024, 48.8432840 2.3834396, 48.8440274 2.3842239, 48.8448359 2.3800635, 48.8449475 2.3800256, 48.8456270 2.3785622, 48.8458965 2.3747978, 48.8462434 2.3767506, 48.8400356 2.3360672, 48.8395556 2.3365605, 48.8277105 2.3319457, 48.8814585 2.3701955, 48.8888444 2.3785107, 48.8461741 2.3758496, 48.8489499 2.3971094, 48.8456047 2.3544832, 48.8192937 2.3232019, 48.8607749 2.3784617, 48.8614835 2.3771934, 48.8555652 2.3871679, 48.8871386 2.4099027, 48.8830788 2.3285289, 48.8832816 2.3287396, 48.8217455 2.3523997, 48.8221973 2.3554703, 48.8100432 2.3621169, 48.8206871 2.3210565, 48.8489126 2.4232463, 48.8304688 2.3747611, 48.8115606 2.3551878, 48.8116199 2.3552423, 48.8643128 2.3266632, 48.8641893 2.3299462, 48.8343920 2.3220856, 48.8822854 2.3399369, 48.8495790 2.3543056, 48.8438948 2.3207191, 48.8693740 2.3077196, 48.8310317 2.3791154, 48.8437332 2.4306786, 48.8439584 2.4314083, 48.8442360 2.3235210, 48.8442760 2.3236880, 48.8443641 2.3231615, 48.8444056 2.3230253, 48.8398650 2.3230690, 48.8398470 2.3238410, 48.8550414 2.4148541, 48.8564616 2.4267765, 48.8525035 2.3849901, 48.8519848 2.3846342, 48.8405177 2.3236190, 48.8756781 2.3992089, 48.8452447 2.4330221, 48.8485257 2.4347426, 48.8442090 2.3857064, 48.8453354 2.3850906, 48.8552492 2.3391068, 48.8643014 2.4002976, 48.8294367 2.3791321, 48.8288886 2.3760435, 48.8616234 2.4058937, 48.8486397 2.3653776, 48.8472637 2.4367867, 48.8474299 2.4344711, 48.8474332 2.4344060, 48.8474354 2.4342492, 48.8474387 2.4341425, 48.8720371 2.3481740, 48.8582338 2.4341820, 48.8810334 2.3731370, 48.8808570 2.3744052, 48.8816465 2.3719957, 48.8818907 2.3720105, 48.8810026 2.3740798, 48.8813934 2.3725805, 48.8815725 2.3721513, 48.8809708 2.3734937, 48.8808782 2.3736050, 48.8808002 2.3729937, 48.8446470 2.4049516, 48.8816605 2.3742025, 48.8743652 2.3625584, 48.8732358 2.3613894, 48.8732268 2.3622695, 48.8733184 2.3615096, 48.8339693 2.3179784, 48.8405572 2.3224049, 48.8713202 2.3658560, 48.8944510 2.3440420, 48.8131067 2.3616397, 48.8142316 2.3612488, 48.8147716 2.3611034, 48.8153143 2.3609359, 48.8139779 2.3613252, 48.8135895 2.3614772, 48.8149985 2.3610400, 48.8417263 2.3245973, 48.8419109 2.3245351, 48.8435173 2.3219294, 48.8407069 2.3164233, 48.8428397 2.3260649, 48.8416495 2.3246134, 48.8433410 2.3248673, 48.8409248 2.3157527, 48.8417952 2.3245691, 48.8430469 2.3258843, 48.8413133 2.3184421, 48.8419805 2.3245034, 48.8414979 2.3246397, 48.8432840 2.3249954, 48.8404349 2.3156482, 48.8429231 2.3260926, 48.8405515 2.3159715, 48.8407506 2.3165877, 48.8427978 2.3210455, 48.8405038 2.3158186, 48.8429071 2.3240641, 48.8415667 2.3196636, 48.8411641 2.3189124, 48.8404090 2.3155450, 48.8408520 2.3154700, 48.8416910 2.3246067, 48.8412683 2.3182655, 48.8415356 2.3248762, 48.8410405 2.3217676, 48.8910090 2.3460570, 48.8098910 2.3635510, 48.8100440 2.3635490, 48.8078290 2.3615060, 48.8085340 2.3587330, 48.8919620 2.3459940, 48.8371723 2.3209043, 48.8125972 2.3621933, 48.8687522 2.3154832, 48.8304057 2.3773491, 48.8341167 2.3339725, 48.8336788 2.3331356, 48.8295616 2.3691128, 48.8288832 2.3693573, 48.8274219 2.3701668, 48.8274304 2.3681740, 48.8271902 2.3689921, 48.8304833 2.3684583, 48.8272432 2.3687533, 48.8342481 2.3734295, 48.8727890 2.3429679, 48.8728311 2.3429546, 48.8727157 2.3429899, 48.8728753 2.3429491, 48.8725590 2.3430087, 48.8726054 2.3430164, 48.8479464 2.4345472, 48.8404449 2.3243133, 48.8393146 2.3237992, 48.8394700 2.3227210, 48.8457158 2.3823706, 48.8219928 2.4027040, 48.8208255 2.4020831, 48.8207628 2.4022990, 48.8234676 2.4058718, 48.8235097 2.4055687, 48.8239202 2.3655030, 48.8231449 2.3164243, 48.8211852 2.3229555, 48.8211334 2.3227542, 48.8211175 2.3226927, 48.8211709 2.3228999, 48.8212005 2.3230152, 48.8211498 2.3228182, 48.8561348 2.4048284, 48.8561119 2.4048766, 48.8579931 2.4032941, 48.8468777 2.4086290, 48.8468470 2.4088515, 48.8479121 2.4058825, 48.8497371 2.3992735, 48.8641210 2.3809737, 48.8641572 2.3808312, 48.8647704 2.3816186, 48.8650199 2.3816335, 48.8668226 2.3830863, 48.8669144 2.3828198, 48.8719957 2.3430238, 48.8717767 2.3429926, 48.8720494 2.3430269, 48.8718412 2.3430035, 48.8719005 2.3430238, 48.8453430 2.3926730, 48.8463490 2.4032630, 48.8502720 2.3963360, 48.8435767 2.3965557, 48.8464210 2.4032480, 48.8498670 2.3962590, 48.8857903 2.3895902, 48.8870531 2.3881311, 48.8729655 2.3432485, 48.8717015 2.3432454, 48.8720339 2.3432916, 48.8723365 2.3433170, 48.8718705 2.3433170, 48.8718024 2.3432812, 48.8649600 2.3207507, 48.8659920 2.3215075, 48.8668835 2.3116323, 48.8686692 2.3103634, 48.8686841 2.3099161, 48.8689059 2.3096161, 48.8690546 2.3106303, 48.8692789 2.3103348, 48.8692931 2.3098862, 48.8525650 2.3914983, 48.8209712 2.3883665, 48.8628314 2.3879208, 48.8446028 2.3805301, 48.8431448 2.3829523, 48.8193061 2.3373740, 48.8302062 2.3335779, 48.8508700 2.3332751, 48.8679715 2.3375806, 48.8390186 2.3533781, 48.8254006 2.3802275, 48.8396713 2.3471300, 48.8397850 2.3575188, 48.8400031 2.3575222, 48.8400384 2.3577299, 48.8407685 2.3562597, 48.8407848 2.3562522, 48.8408017 2.3562465, 48.8575432 2.3631867, 48.8984327 2.3695091, 48.8229131 2.3581886, 48.8230394 2.3580746, 48.8228779 2.3555122, 48.8231701 2.3580518, 48.8232575 2.3580129, 48.8222518 2.3550558, 48.8232610 2.3543235, 48.8226942 2.3582047, 48.8232707 2.3553092, 48.8232751 2.3542283, 48.8237594 2.3538232, 48.8767250 2.3307380, 48.8262144 2.3748087, 48.8103859 2.3634255, 48.8099878 2.3804322, 48.8103162 2.3796972, 48.8610880 2.3512876, 48.8615948 2.3522768, 48.8614615 2.3514586, 48.8484894 2.4372244, 48.8394454 2.3963015, 48.8394576 2.3962737, 48.8605989 2.3512022, 48.8841484 2.3227392, 48.8840872 2.3230100, 48.8495312 2.4181317, 48.8222866 2.3235525, 48.8861392 2.3337047, 48.8518241 2.3982324, 48.8515798 2.3992009, 48.8515911 2.3992945, 48.8983279 2.3618983, 48.8983261 2.3617173, 48.8983518 2.3649038, 48.8720846 2.3660947, 48.8716623 2.3681061, 48.8450977 2.3739478, 48.8448238 2.3691876, 48.8471374 2.3947373, 48.8416499 2.3895371, 48.8573786 2.3543034, 48.8577844 2.3546061, 48.8442166 2.3890513, 48.8445865 2.3900144, 48.8446393 2.3899483, 48.8447328 2.3894590, 48.8460490 2.3883759, 48.8451775 2.3885757, 48.8455384 2.3888508, 48.8456435 2.3883893, 48.8467978 2.3874491, 48.8462215 2.3870803, 48.8463910 2.3878730, 48.8470847 2.3868148, 48.8468937 2.3869270, 48.8470414 2.3872131, 48.8603639 2.3478222, 48.8603388 2.3480663, 48.8606775 2.3486913, 48.8599384 2.3522973, 48.8275287 2.3149795, 48.8597934 2.3508151, 48.8798447 2.3453589, 48.8600048 2.3507638, 48.8846966 2.3919640, 48.8846914 2.3902220, 48.8848153 2.3229754, 48.8714407 2.3097914, 48.8281219 2.3158457, 48.8465012 2.4195559, 48.8461616 2.4192892, 48.8463722 2.4206930, 48.8473303 2.4193760, 48.8473675 2.4193797, 48.8477269 2.4196385, 48.8485180 2.4350298, 48.8733188 2.3446580, 48.8804108 2.3562078, 48.8600106 2.3509612, 48.8735773 2.3706207, 48.8750935 2.3351732, 48.8436342 2.3043290, 48.8431682 2.3046133, 48.8412254 2.3738186, 48.8878312 2.3787631, 48.8918524 2.3632899, 48.8919900 2.3631317, 48.8701201 2.3491659, 48.8415077 2.4307920, 48.8609895 2.3473093, 48.8596119 2.3520509, 48.8568591 2.3538840, 48.8763400 2.3386612, 48.8756176 2.3432285, 48.8760560 2.3438036, 48.8762724 2.3440214, 48.8730582 2.3434334, 48.8730540 2.3435221, 48.8429539 2.4085434, 48.8443890 2.4068429, 48.8418110 2.4082929, 48.8656025 2.3468798, 48.8655913 2.3471265, 48.8613396 2.3430061, 48.8603595 2.3510541, 48.8604654 2.3511118, 48.8605702 2.3511696, 48.8606843 2.3512326, 48.8121539 2.3917982, 48.8120995 2.3913637, 48.8238476 2.3506828, 48.8403098 2.3340328, 48.8207235 2.3507707, 48.8601441 2.3501434, 48.8618770 2.3502017, 48.8689535 2.3541673, 48.8341834 2.3261480, 48.8257982 2.3468029, 48.8266018 2.3354681, 48.8272551 2.3352458, 48.8330622 2.3958487, 48.8336114 2.3861569, 48.8337322 2.3983467, 48.8337623 2.3951877, 48.8342999 2.3975412, 48.8343797 2.3963938, 48.8345191 2.3966361, 48.8348254 2.3934365, 48.8348947 2.3972942, 48.8349022 2.3933477, 48.8349654 2.3960429, 48.8358704 2.3961786, 48.8359891 2.3974455, 48.8360813 2.3872238, 48.8361353 2.3948924, 48.8361988 2.3988969, 48.8364221 2.3949270, 48.8364309 2.3988951, 48.8365523 2.3982569, 48.8366252 2.3929585, 48.8366508 2.3952223, 48.8366989 2.3943677, 48.8369456 2.4019945, 48.8370471 2.3917506, 48.8375850 2.3971765, 48.8376090 2.3907850, 48.8380876 2.3941069, 48.8382060 2.3900510, 48.8382377 2.3966077, 48.8384334 2.3930799, 48.8392532 2.4005400, 48.8393971 2.4089227, 48.8394590 2.3963160, 48.8401062 2.4087456, 48.8403121 2.4025153, 48.8403240 2.3922740, 48.8404000 2.3925410, 48.8405290 2.3878980, 48.8406298 2.4087338, 48.8408716 2.4093998, 48.8408973 2.4043894, 48.8411011 2.3894090, 48.8411636 2.4011997, 48.8412990 2.3878120, 48.8414464 2.4049212, 48.8415076 2.4114849, 48.8415328 2.3867030, 48.8416660 2.4012796, 48.8419094 2.4012356, 48.8421054 2.4051399, 48.8422686 2.4130852, 48.8427012 2.4099683, 48.8430070 2.4049900, 48.8432746 2.4053848, 48.8435321 2.4018263, 48.8435985 2.3849459, 48.8438772 2.4055537, 48.8438822 2.4018602, 48.8441184 2.4107116, 48.8445290 2.4022130, 48.8445690 2.3838350, 48.8447684 2.4039094, 48.8450108 2.3819449, 48.8449722 2.4058543, 48.8451489 2.3992116, 48.8456490 2.4058577, 48.8458140 2.3781933, 48.8460195 2.4011318, 48.8464795 2.3973596, 48.8468250 2.3761200, 48.8469175 2.3998635, 48.8470370 2.3752130, 48.8473365 2.3968804, 48.8475637 2.3772093, 48.8476803 2.3969131, 48.8478107 2.3769587, 48.8486250 2.3761890, 48.8486464 2.3760764, 48.8486500 2.3759526, 48.8486995 2.3922091, 48.8488565 2.3718825, 48.8491107 2.3914645, 48.8491891 2.3706453, 48.8492039 2.3749537, 48.8493182 2.3945344, 48.8494100 2.3666950, 48.8495420 2.3885630, 48.8496199 2.3992270, 48.8496430 2.3879630, 48.8497090 2.3874500, 48.8499140 2.3738580, 48.8500548 2.3704157, 48.8501440 2.3736032, 48.8501956 2.3990356, 48.8507639 2.3673484, 48.8517110 2.3618880, 48.8517771 2.3894115, 48.8518450 2.3616490, 48.8521525 2.3608127, 48.8522346 2.3609020, 48.8526930 2.3593190, 48.8527195 2.3598976, 48.8527480 2.3589640, 48.8531388 2.3585705, 48.8532690 2.3582420, 48.8535826 2.3671894, 48.8536386 2.3574595, 48.8536840 2.3653980, 48.8540083 2.3867106, 48.8542800 2.3558000, 48.8543900 2.3585670, 48.8546430 2.3624970, 48.8551500 2.3611171, 48.8551661 2.3610199, 48.8553710 2.3839922, 48.8554533 2.3526702, 48.8555080 2.3530370, 48.8557740 2.3511230, 48.8557940 2.3561690, 48.8559788 2.3536549, 48.8576042 2.3453235, 48.8576673 2.3795437, 48.8578611 2.3794239, 48.8580233 2.3793056, 48.8588686 2.3399492, 48.8593222 2.3528610, 48.8597358 2.3468419, 48.8618647 2.3406148, 48.8659038 2.3352738, 48.8664823 2.3650887, 48.8680548 2.3339763, 48.8682365 2.3599800, 48.8683243 2.3611065, 48.8693195 2.3570045, 48.8692824 2.3567025, 48.8701819 2.3507724, 48.8703411 2.3499916, 48.8703632 2.3498715, 48.8704864 2.3493477, 48.8705032 2.3492529, 48.8716194 2.3500035, 48.8721225 2.3499157, 48.8721226 2.3502025, 48.8722370 2.3500383, 48.8737185 2.3504412, 48.8741816 2.3506318, 48.8747445 2.3507850, 48.8752900 2.3395820, 48.8758873 2.3483293, 48.8760619 2.3511508, 48.8762014 2.3510147, 48.8762909 2.3511140, 48.8779921 2.3512114, 48.8784568 2.3428425, 48.8787058 2.3506082, 48.8792051 2.3494881, 48.8792478 2.3478686, 48.8794000 2.3508120, 48.8795410 2.3488399, 48.8798786 2.3436312, 48.8799663 2.3473845, 48.8205221 2.3499531, 48.8204523 2.3498034, 48.8518337 2.3885816, 48.8676507 2.3427272, 48.8203353 2.3492312, 48.8199467 2.3483675, 48.8226912 2.3495447, 48.8233348 2.3532089, 48.8120117 2.3871686, 48.8126050 2.3874435, 48.8119187 2.3872169, 48.8480339 2.3711696, 48.8483465 2.3710764, 48.8488787 2.3707634, 48.8515203 2.3696022, 48.8537094 2.3705397, 48.8537227 2.3702879, 48.8534314 2.3706101, 48.8826655 2.3531967, 48.8828483 2.3532440, 48.8823834 2.3531283, 48.8500168 2.3926915, 48.8502098 2.3923579, 48.8497025 2.3932209, 48.8841038 2.3217162, 48.8498626 2.3938772, 48.8840068 2.3219280, 48.8841728 2.3219390, 48.8494363 2.3945868, 48.8385781 2.3705346, 48.8392685 2.3708042, 48.8381652 2.3706674, 48.8449733 2.3955604, 48.8452920 2.3209130, 48.8452821 2.3979496, 48.8463896 2.3943133, 48.8471562 2.3938782, 48.8489640 2.3916850, 48.8493880 2.3888810, 48.8496070 2.3873440, 48.8502461 2.3827334, 48.8504940 2.3815430, 48.8505009 2.3846476, 48.8513150 2.3816100, 48.8518018 2.3280805, 48.8525120 2.3807800, 48.8533500 2.3805110, 48.8537880 2.3957560, 48.8541520 2.3797770, 48.8561260 2.3783390, 48.8576484 2.3771545, 48.8584759 2.3764078, 48.8603270 2.3754070, 48.8618492 2.3647130, 48.8621758 2.3636326, 48.8622764 2.3665452, 48.8633235 2.3689417, 48.8645757 2.3597362, 48.8671223 2.3513757, 48.8700760 2.3506120, 48.8736310 2.3479604, 48.8755325 2.3482416, 48.8758100 2.3397850, 48.8760265 2.3400514, 48.8760800 2.3403660, 48.8768678 2.3487512, 48.8490152 2.3541552, 48.8246333 2.3621995, 48.8240842 2.3636888, 48.8241109 2.3637054, 48.8240998 2.3638457, 48.8237126 2.3653208, 48.8225139 2.3638751, 48.8221895 2.3632536, 48.8223064 2.3631664, 48.8222916 2.3627648, 48.8222392 2.3628073, 48.8223782 2.3631115, 48.8223716 2.3627130, 48.8224283 2.3626633, 48.8230753 2.3626307, 48.8234533 2.3618634, 48.8232058 2.3603599, 48.8728990 2.3346516, 48.8478375 2.3535433, 48.8226659 2.3580445, 48.8229485 2.3577916, 48.8229254 2.3569509, 48.8230185 2.3566795, 48.8222859 2.3473947, 48.8210082 2.3427545, 48.8211212 2.3425439, 48.8211618 2.3417447, 48.8389060 2.3767670, 48.8390010 2.3874480, 48.8396552 2.3779295, 48.8543680 2.3547701, 48.8361400 2.3232008, 48.8221069 2.3505029, 48.8202708 2.3594105, 48.8202117 2.3594306, 48.8195166 2.3596336, 48.8194688 2.3590386, 48.8193689 2.3591044, 48.8193544 2.3597323, 48.8193606 2.3601238, 48.8414957 2.3371064, 48.8417477 2.3371307, 48.8415976 2.3371190, 48.8419834 2.3371310, 48.8418619 2.3371366, 48.8422384 2.3371968, 48.8239017 2.3229235, 48.8242472 2.3213940, 48.8245758 2.3199505, 48.8255285 2.3158189, 48.8256468 2.3482018, 48.8258238 2.3144135, 48.8260929 2.3588377, 48.8261054 2.3131480, 48.8275286 2.3318231, 48.8451702 2.3983100, 48.8475546 2.3889290, 48.8478588 2.3908091, 48.8482240 2.3808030, 48.8482720 2.3787290, 48.8490260 2.3810470, 48.8492020 2.3781220, 48.8498208 2.3768806, 48.8499970 2.3791060, 48.8520364 2.3739698, 48.8540329 2.3736919, 48.8545885 2.3714719, 48.8546118 2.3729736, 48.8546280 2.3710930, 48.8550337 2.3704743, 48.8574091 2.3612872, 48.8577110 2.3608910, 48.8618100 2.3539090, 48.8627772 2.3535227, 48.8646021 2.3531390, 48.8700440 2.3507020, 48.8737450 2.3479740, 48.8738400 2.3446450, 48.8761660 2.3441530, 48.8791390 2.3535520, 48.8798180 2.3528100, 48.8820870 2.3509300, 48.8861322 2.3494762, 48.8866800 2.3495020, 48.8876420 2.3494764, 48.8878870 2.3494964, 48.8906598 2.3495186, 48.8909454 2.3495172, 48.8506402 2.3427239, 48.8511253 2.3446769, 48.8122390 2.3613201, 48.8123520 2.3612691, 48.8123785 2.3612530, 48.8127724 2.3617251, 48.8129614 2.3610733, 48.8131168 2.3610438, 48.8133217 2.3609714, 48.8506918 2.3841353, 48.8145369 2.3614435, 48.8143143 2.3606786, 48.8144556 2.3606173, 48.8145228 2.3613147, 48.8147842 2.3605422, 48.8148230 2.3605315, 48.8151292 2.3601961, 48.8187866 2.3610099, 48.8226770 2.3469702, 48.8237890 2.3481077, 48.8229290 2.3469037, 48.8227998 2.3462308, 48.8226622 2.3461282, 48.8220105 2.3463703, 48.8253834 2.3497343, 48.8259715 2.3507845, 48.8256496 2.3504330, 48.8256632 2.3497741, 48.8258771 2.3495257, 48.8256384 2.3493057, 48.8258284 2.3486459, 48.8258431 2.3481861, 48.8255732 2.3483134, 48.8255453 2.3475405, 48.8256778 2.3462187, 48.8771963 2.3513091, 48.8257731 2.3455104, 48.8260781 2.3450782, 48.8260527 2.3450339, 48.8257972 2.3453018, 48.8258685 2.3448678, 48.8264939 2.3422757, 48.8264077 2.3428246, 48.8256413 2.3500952, 48.8764165 2.3555503, 48.8764781 2.3553328, 48.8765890 2.3553673, 48.8426583 2.3073002, 48.8272380 2.3220817, 48.8423305 2.3075420, 48.8361937 2.3095039, 48.8601247 2.4309498, 48.8764892 2.3552357, 48.8765118 2.3549110, 48.8765499 2.3550110, 48.8768355 2.3527879, 48.8770861 2.3518933, 48.8266961 2.3392484, 48.8268524 2.3383549, 48.8276520 2.3326075, 48.8277073 2.3307027, 48.8279313 2.3307106, 48.8277124 2.3302466, 48.8277018 2.3297638, 48.8277159 2.3298764, 48.8682736 2.3412653, 48.8277088 2.3287499, 48.8277159 2.3275188, 48.8277230 2.3275992, 48.8277300 2.3277843, 48.8273186 2.3263279, 48.8365117 2.3931886, 48.8310720 2.3165259, 48.8309811 2.3172117, 48.8310197 2.3171605, 48.8311173 2.3166315, 48.8090790 2.3607766, 48.8090703 2.3607213, 48.8463247 2.3542973, 48.8474791 2.3523484, 48.8154625 2.3638923, 48.8154122 2.3632391, 48.8647426 2.3979362, 48.8148734 2.3627498, 48.8148743 2.3639179, 48.8098430 2.3618112, 48.8098589 2.3613470, 48.8099103 2.3607553, 48.8091161 2.3610037, 48.8091073 2.3609702, 48.8090993 2.3609380, 48.8124837 2.3871372, 48.8124426 2.3871835, 48.8123663 2.3872619, 48.8123292 2.3873129, 48.8123610 2.3868616, 48.8123190 2.3869052, 48.8122457 2.3869876, 48.8122024 2.3870319, 48.8121539 2.3880498, 48.8121207 2.3880840, 48.8126819 2.3862937, 48.8118566 2.3898327, 48.8122314 2.3870295, 48.8124561 2.3871476, 48.8117474 2.3906746, 48.8115778 2.3903715, 48.8114966 2.3902267, 48.8123444 2.3868994, 48.8123428 2.3872773, 48.8664637 2.4000823, 48.8673359 2.3991033, 48.8674669 2.3990064, 48.8715794 2.4041825, 48.8736876 2.4050632, 48.8690375 2.4018799, 48.8681245 2.4017154, 48.8684845 2.4013925, 48.8665408 2.3996952, 48.8675264 2.4005840, 48.8673402 2.4006763, 48.8679278 2.4013702, 48.8679434 2.4014755, 48.8680495 2.4014213, 48.8680507 2.4015447, 48.8682598 2.4015540, 48.8683712 2.4016940, 48.8688060 2.4017709, 48.8688371 2.4017940, 48.8690675 2.4022654, 48.8149595 2.3483612, 48.8155682 2.3446923, 48.8144404 2.3497005, 48.8147949 2.3488666, 48.8709604 2.4036547, 48.8714459 2.4038421, 48.8734720 2.4052435, 48.8715744 2.4037863, 48.8730171 2.4047378, 48.8772965 2.4093947, 48.8709768 2.4035156, 48.8729522 2.4050353, 48.8718932 2.4046138, 48.8721618 2.4043561, 48.8700499 2.4031251, 48.8748544 2.4054806, 48.8769262 2.4061080, 48.8714551 2.4043701, 48.8716275 2.4045199, 48.8711831 2.4041560, 48.8698381 2.4029325, 48.8722236 2.4047280, 48.8772063 2.4094486, 48.8702353 2.4031395, 48.8705273 2.4034029, 48.8713337 2.4042119, 48.8714440 2.4045360, 48.8715019 2.4045081, 48.8721599 2.4047025, 48.8722019 2.4044780, 48.8736783 2.4050852, 48.8738942 2.4051527, 48.8740366 2.4050675, 48.8762240 2.4062991, 48.8763811 2.4061703, 48.8769898 2.4054164, 48.8774098 2.4070114, 48.8764522 2.4045322, 48.8785492 2.4103634, 48.8756694 2.4011802, 48.8711865 2.4001138, 48.8768593 2.4057793, 48.8762568 2.4026044, 48.8680913 2.3978796, 48.8692292 2.3966523, 48.8725672 2.3992261, 48.8784629 2.4100715, 48.8701577 2.3958401, 48.8690126 2.3971718, 48.8769740 2.4053224, 48.8732754 2.3993407, 48.8780164 2.4108510, 48.8726193 2.3990837, 48.8701445 2.3959121, 48.8702568 2.3970354, 48.8707130 2.3991468, 48.8707754 2.3989361, 48.8708354 2.3989370, 48.8711097 2.4001519, 48.8711850 2.4004090, 48.8712072 2.4001549, 48.8712159 2.4002871, 48.8712217 2.4002298, 48.8723933 2.3993546, 48.8726309 2.3990147, 48.8727647 2.3994633, 48.8728768 2.3993183, 48.8728938 2.3993172, 48.8733527 2.3993062, 48.8734256 2.3990749, 48.8735753 2.3990719, 48.8742140 2.3985840, 48.8753906 2.3990200, 48.8755656 2.3996641, 48.8758525 2.4010202, 48.8758552 2.4019932, 48.8758607 2.4010867, 48.8758784 2.4027378, 48.8758866 2.4011952, 48.8759645 2.4018531, 48.8762275 2.4030379, 48.8763320 2.4034081, 48.8765048 2.4039735, 48.8767145 2.4045468, 48.8768873 2.4052913, 48.8769447 2.4050363, 48.8776734 2.4065084, 48.8777001 2.4053079, 48.8779210 2.4059297, 48.8780658 2.4109854, 48.8781032 2.4108393, 48.8781597 2.4107923, 48.8782650 2.4058287, 48.8783033 2.4112825, 48.8785981 2.4091821, 48.8786831 2.4091366, 48.8646840 2.3980595, 48.8251897 2.3469815, 48.8248691 2.3468871, 48.8250908 2.3464880, 48.8237982 2.3450583, 48.8230883 2.3447901, 48.8237048 2.3451996, 48.8219312 2.3422877, 48.8226168 2.3442269, 48.8240230 2.3413470, 48.8239465 2.3416177, 48.8247674 2.3413234, 48.8248954 2.3414221, 48.8250781 2.3413713, 48.8256029 2.3415131, 48.8645296 2.3999995, 48.8650286 2.3978764, 48.8653038 2.3983748, 48.8648437 2.3973656, 48.8644943 2.3986116, 48.8664565 2.3996388, 48.8647748 2.3993182, 48.8643290 2.3977966, 48.8661206 2.3993734, 48.8647416 2.4000331, 48.8655701 2.3988667, 48.8655819 2.3982331, 48.8645036 2.3983080, 48.8647772 2.3991504, 48.8650490 2.3975315, 48.8653472 2.3979562, 48.8646156 2.3980291, 48.8641688 2.3976584, 48.8642835 2.3981370, 48.8645686 2.3986116, 48.8646661 2.3999637, 48.8648392 2.3978485, 48.8648400 2.3978274, 48.8649034 2.3999292, 48.8649167 2.3996207, 48.8649547 2.4001524, 48.8649879 2.3978217, 48.8650741 2.3972853, 48.8651883 2.3985982, 48.8652188 2.3989491, 48.8653550 2.3980167, 48.8654901 2.3978337, 48.8655753 2.3991180, 48.8657823 2.3994721, 48.8673886 2.3988664, 48.8255787 2.3417572, 48.8245328 2.3394230, 48.8821571 2.3281764, 48.8333333 2.3556520, 48.8462947 2.4215157, 48.8456693 2.4284217, 48.8414468 2.4144659, 48.8438908 2.4240046, 48.8456718 2.4237071, 48.8456998 2.4282037, 48.8457116 2.4279991, 48.8463467 2.4286638, 48.8385555 2.3567522, 48.8385802 2.3568194, 48.8575448 2.3507955, 48.8573962 2.3495429, 48.8583089 2.3478780, 48.8567290 2.3486047, 48.8567698 2.3537979, 48.8569103 2.3479938, 48.8569413 2.3478736, 48.8570693 2.3504424, 48.8572967 2.3515291, 48.8573370 2.3494764, 48.8575113 2.3463267, 48.8576797 2.3474237, 48.8581459 2.3478668, 48.8582478 2.3479213, 48.8582571 2.3473959, 48.8585864 2.3477527, 48.8587983 2.3475129, 48.8661899 2.3718762, 48.8135121 2.3892260, 48.8524191 2.3679142, 48.8522308 2.3678097, 48.8343361 2.3668535, 48.8319649 2.3723199, 48.8344622 2.3673602, 48.8322674 2.3703758, 48.8286369 2.3701162, 48.8288233 2.3698974, 48.8271728 2.3685245, 48.8224197 2.3593888, 48.8226287 2.3606739, 48.8227058 2.3609553, 48.8225825 2.3611738, 48.8226746 2.3608366, 48.8226533 2.3607500, 48.8227567 2.3618443, 48.8229131 2.3618148, 48.8231151 2.3621098, 48.8230552 2.3621472, 48.8214836 2.3639524, 48.8209801 2.3644246, 48.8243498 2.3621084, 48.8242991 2.3620875, 48.8244278 2.3621405, 48.8244847 2.3621306, 48.8245544 2.3621635, 48.8239970 2.3618533, 48.8245778 2.3614015, 48.8241677 2.3617205, 48.8250784 2.3610028, 48.8247279 2.3612848, 48.8249548 2.3611007, 48.8257664 2.3605166, 48.8257097 2.3600718, 48.8253582 2.3607812, 48.8254715 2.3606886, 48.8260853 2.3604941, 48.8256469 2.3607545, 48.8256982 2.3612634, 48.8255348 2.3609777, 48.8256127 2.3614328, 48.8254727 2.3611014, 48.8255281 2.3616006, 48.8254308 2.3611848, 48.8252349 2.3615748, 48.8253116 2.3614221, 48.8249807 2.3620807, 48.8247239 2.3594920, 48.8248051 2.3598326, 48.8250256 2.3619913, 48.8768078 2.4066474, 48.8213603 2.3347178, 48.8216356 2.3337458, 48.8224005 2.3283664, 48.8224332 2.3281893, 48.8232060 2.3266224, 48.8232523 2.3263756, 48.8233935 2.3258237, 48.8232142 2.3265525, 48.8233176 2.3240021, 48.8233300 2.3239779, 48.8242238 2.3224615, 48.8242464 2.3195866, 48.8247112 2.3199067, 48.8240306 2.3209791, 48.8250441 2.3183751, 48.8564210 2.3497120, 48.8147115 2.3918897, 48.8120345 2.3912341, 48.8125282 2.3767154, 48.8124576 2.3767691, 48.8387916 2.3812873, 48.8328265 2.3361398, 48.8303448 2.3338271, 48.8295986 2.3338514, 48.8326497 2.3356190, 48.8334329 2.3320275, 48.8664178 2.3522546, 48.8679582 2.3516149, 48.8674094 2.3516806, 48.8686121 2.3859914, 48.8242892 2.3764902, 48.8243395 2.3766423, 48.8259590 2.3538780, 48.8333535 2.3991671, 48.8342051 2.3135017, 48.8366334 2.4095667, 48.8384694 2.4012891, 48.8177106 2.3982189, 48.8820461 2.3336672, 48.8536438 2.3402017, 48.8591372 2.3430272, 48.8526953 2.3470942, 48.8622322 2.3573881, 48.8600347 2.4024972, 48.8607815 2.3438855, 48.8581223 2.3362437, 48.8690313 2.3433548, 48.8902743 2.3602888, 48.8890315 2.3624318, 48.8889739 2.3623979, 48.8906110 2.3613962, 48.8899355 2.3618064, 48.8911052 2.3611596, 48.8908415 2.3611676, 48.8909716 2.3611648, 48.8899801 2.3617329, 48.8107073 2.3895827, 48.8369513 2.3561959, 48.8378748 2.3573539, 48.8367172 2.3580385, 48.8370906 2.3578084, 48.8304775 2.3673228, 48.8248321 2.3174022, 48.8254202 2.3167049, 48.8252648 2.3158680, 48.8250589 2.3163847, 48.8255124 2.3143296, 48.8256612 2.3136542, 48.8262642 2.3127271, 48.8264426 2.3130329, 48.8469222 2.3993098, 48.8490463 2.3989425, 48.8563665 2.3939744, 48.8572552 2.3854799, 48.8572776 2.3855905, 48.8576754 2.3919847, 48.8594350 2.3870127, 48.8722210 2.3643307, 48.8533715 2.3422551, 48.8310515 2.3425823, 48.8474853 2.3018312, 48.8474881 2.3018494, 48.8264842 2.3599429, 48.8276987 2.3717961, 48.8254226 2.3745533, 48.8260635 2.3616139, 48.8261039 2.3582769, 48.8261271 2.3589262, 48.8281755 2.3735680, 48.8508651 2.4065384, 48.8467079 2.4104905, 48.8440402 2.4107413, 48.8468249 2.4104107, 48.8468448 2.4101919, 48.8468528 2.4101033, 48.8469391 2.4103030, 48.8471654 2.4071583, 48.8472069 2.4066764, 48.8513516 2.4062448, 48.8517143 2.4071448, 48.8664981 2.3243419, 48.8509847 2.4071520, 48.8510074 2.4065270, 48.8913537 2.3623037, 48.8912306 2.3619236, 48.8913500 2.3613552, 48.8898740 2.3601766, 48.8899888 2.3601160, 48.8913687 2.3615676, 48.8781367 2.3447619, 48.8715688 2.4022351, 48.8901550 2.3611961, 48.8900693 2.3622119, 48.8900609 2.3623123, 48.8250029 2.3166081, 48.8272176 2.3831786, 48.8949489 2.3601209, 48.8911550 2.3633069, 48.8164343 2.3285923, 48.8309472 2.3666202, 48.8841496 2.3640114, 48.8684859 2.3702604, 48.8900866 2.3603615, 48.8394801 2.3713759, 48.8391251 2.3715959, 48.8369209 2.3526719, 48.8371903 2.3528204, 48.8372144 2.3529137, 48.8372738 2.3531061, 48.8372893 2.3538086, 48.8374941 2.3543561, 48.8375300 2.3539139, 48.8377816 2.3554257, 48.8378949 2.3555704, 48.8379577 2.3560229, 48.8380217 2.3560121, 48.8904554 2.3613786, 48.8457722 2.3952172, 48.8240305 2.3234209, 48.8275253 2.3261423, 48.8295090 2.3482501, 48.8296744 2.3329116, 48.8296889 2.3480032, 48.8300287 2.3471023, 48.8306286 2.3439710, 48.8307741 2.3363033, 48.8308821 2.3552981, 48.8309560 2.3563203, 48.8313659 2.3419868, 48.8314521 2.3413377, 48.8337067 2.3652426, 48.8343505 2.3671081, 48.8349875 2.3690185, 48.8369558 2.3731388, 48.8372547 2.3741922, 48.8389808 2.3876834, 48.8400503 2.3966865, 48.8405435 2.3976638, 48.8419125 2.3931180, 48.8425378 2.3971712, 48.8431422 2.3868843, 48.8438225 2.3907961, 48.8438274 2.3883763, 48.8441353 2.3903995, 48.8448504 2.3956453, 48.8449655 2.3825373, 48.8450610 2.3817030, 48.8455335 2.4059659, 48.8457371 2.3744755, 48.8458882 2.3745674, 48.8460421 2.3746885, 48.8461407 2.3758102, 48.8461570 2.3756299, 48.8462020 2.3762720, 48.8463517 2.4060121, 48.8463588 2.3819651, 48.8469945 2.3695400, 48.8469983 2.3840650, 48.8470022 2.3692654, 48.8493154 2.3681094, 48.8494375 2.3698324, 48.8497678 2.3690872, 48.8499439 2.3739778, 48.8502341 2.3736347, 48.8502976 2.3687576, 48.8538513 2.4054931, 48.8636158 2.3993948, 48.8639863 2.3992574, 48.8652421 2.3951007, 48.8655085 2.3946733, 48.8677329 2.3907031, 48.8684805 2.3898741, 48.8688786 2.3895491, 48.8702670 2.3890490, 48.8704853 2.3883060, 48.8714250 2.3861474, 48.8717558 2.3890342, 48.8315085 2.3570011, 48.8900224 2.3626977, 48.8900145 2.3627866, 48.8913601 2.3631469, 48.8898494 2.3629189, 48.8899105 2.3620699, 48.8911316 2.3641074, 48.8911480 2.3638611, 48.8367512 2.3562703, 48.8368334 2.3563141, 48.8372824 2.3577423, 48.8277530 2.3505091, 48.8709751 2.3584442, 48.8816643 2.3664685, 48.8817430 2.3657091, 48.8585418 2.3648460, 48.8911935 2.3792213, 48.8521711 2.3714010, 48.8240504 2.3356831, 48.8240627 2.3308903, 48.8237907 2.3314831, 48.8240750 2.3283368, 48.8235152 2.3304799, 48.8241368 2.3280257, 48.8242940 2.3282027, 48.8244671 2.3310137, 48.8241951 2.3294043, 48.8245642 2.3282644, 48.8243293 2.3287472, 48.8245147 2.3285541, 48.8248609 2.3290503, 48.8245871 2.3263627, 48.8250198 2.3200783, 48.8249015 2.3203760, 48.8576869 2.3888826, 48.8901067 2.3618300, 48.8320164 2.4039323, 48.8320207 2.4038132, 48.8341445 2.4013757, 48.8351942 2.4016328, 48.8372220 2.4037368, 48.8803395 2.3738607, 48.8632906 2.3969375, 48.8636364 2.3968839, 48.8597103 2.3998209, 48.8387714 2.4093332, 48.8398694 2.4182884, 48.8490942 2.3396105, 48.8397083 2.4096056, 48.8396415 2.4181892, 48.8314328 2.3873778, 48.8317821 2.3857254, 48.8320640 2.3883288, 48.8350055 2.3874833, 48.8358666 2.3847168, 48.8373190 2.3826641, 48.8374528 2.3917533, 48.8380369 2.3818677, 48.8387612 2.3810831, 48.8388667 2.3937811, 48.8389421 2.3806421, 48.8394110 2.3802556, 48.8573040 2.3514977, 48.8614181 2.3533893, 48.8616790 2.3513642, 48.8617384 2.3511100, 48.8617679 2.3509583, 48.8619491 2.3505495, 48.8620204 2.3499051, 48.8620520 2.3497369, 48.8638474 2.3430292, 48.8643157 2.3474095, 48.8648065 2.3458024, 48.8577225 2.3496460, 48.8552405 2.3375518, 48.8552856 2.3399457, 48.8555538 2.3334871, 48.8542055 2.3303219, 48.8901377 2.3597002, 48.8901098 2.3596369, 48.8174391 2.3251637, 48.8908511 2.3602853, 48.8916443 2.3596030, 48.8904169 2.3596324, 48.8909114 2.3604949, 48.8906117 2.3602364, 48.8909059 2.3606042, 48.8432520 2.3116523, 48.8434173 2.3127954, 48.8280995 2.3190414, 48.8763474 2.3877275, 48.8709254 2.3085765, 48.8810201 2.3499806, 48.8294497 2.3691497, 48.8303745 2.3751493, 48.8303497 2.3751651, 48.8662240 2.3388110, 48.8796743 2.3454738, 48.8783418 2.3453839, 48.8322843 2.3152081, 48.8323761 2.3150659, 48.8835862 2.3696037, 48.8844373 2.3587346, 48.8959172 2.3812055, 48.8717135 2.3253034, 48.8911754 2.3596165, 48.8900400 2.3632191, 48.8907659 2.3596503, 48.8912089 2.3601196, 48.8908932 2.3596443, 48.8472316 2.4033307, 48.8474060 2.3985801, 48.8475134 2.3982539, 48.8476893 2.3944332, 48.8480152 2.3982806, 48.8523912 2.3718273, 48.8678628 2.3622500, 48.8682145 2.3624441, 48.8753496 2.3569996, 48.8757151 2.3564916, 48.8759340 2.3562965, 48.8763508 2.3558909, 48.8769505 2.3553665, 48.8776793 2.3547127, 48.8779306 2.3546949, 48.8779709 2.3544608, 48.8789523 2.3541157, 48.8798131 2.3564484, 48.8201237 2.3643148, 48.8287628 2.3508143, 48.8259411 2.3547905, 48.8281212 2.3500641, 48.8278444 2.3497300, 48.8257450 2.3500109, 48.8257808 2.3487518, 48.8257810 2.3469176, 48.8258180 2.3512599, 48.8258437 2.3479059, 48.8258499 2.3519400, 48.8259193 2.3535805, 48.8260601 2.3538016, 48.8278499 2.3496563, 48.8279309 2.3495913, 48.8287082 2.3506786, 48.8298207 2.3497671, 48.8849791 2.3863829, 48.8296935 2.3756700, 48.8297238 2.3756448, 48.8302476 2.3763292, 48.8302804 2.3763891, 48.8303177 2.3764541, 48.8554738 2.3844934, 48.8558003 2.3750398, 48.8563070 2.3766560, 48.8563443 2.3735148, 48.8563892 2.3736140, 48.8573040 2.3791655, 48.8575988 2.3723727, 48.8580871 2.3720646, 48.8599833 2.3751511, 48.8606643 2.3672378, 48.8612261 2.3646636, 48.8612423 2.3694822, 48.8615175 2.3633665, 48.8620657 2.3606971, 48.8625682 2.3596478, 48.8658847 2.3446913, 48.8659713 2.3446586, 48.8669646 2.3445039, 48.8241171 2.3356096, 48.8251709 2.3747800, 48.8262146 2.3732825, 48.8265738 2.3354498, 48.8270035 2.3668285, 48.8275378 2.3738779, 48.8276171 2.3715500, 48.8279608 2.3733287, 48.8280357 2.3734257, 48.8303701 2.3343029, 48.8324259 2.3797103, 48.8328426 2.3359068, 48.8348268 2.3999659, 48.8363410 2.4027533, 48.8363547 2.4029753, 48.8367250 2.4043293, 48.8367567 2.3928042, 48.8375039 2.3386695, 48.8380611 2.4053828, 48.8381721 2.4055291, 48.8420689 2.3415277, 48.8303346 2.3579037, 48.8303533 2.3580717, 48.8303844 2.3578871, 48.8304203 2.3580788, 48.8304421 2.3578232, 48.8305106 2.3580445, 48.8305699 2.3576824, 48.8305823 2.3579841, 48.8305979 2.3576468, 48.8306330 2.3579676, 48.8306906 2.3579250, 48.8306968 2.3577332, 48.8307140 2.3578646, 48.8307148 2.3577948, 48.8436310 2.3100919, 48.8750791 2.4237831, 48.8435379 2.3114498, 48.8111139 2.3903939, 48.8748132 2.4244291, 48.8105306 2.3899487, 48.8249295 2.3605759, 48.8298782 2.3572786, 48.8121561 2.3455277, 48.8121656 2.3454670, 48.8121922 2.3454324, 48.8121970 2.3456216, 48.8122302 2.3456151, 48.8122379 2.3454280, 48.8122621 2.3456050, 48.8126777 2.3451291, 48.8531717 2.4274580, 48.8482373 2.3469649, 48.8508540 2.3477158, 48.8689060 2.3919843, 48.8416771 2.4282177, 48.8682148 2.3979085, 48.8149242 2.3491947, 48.8141498 2.3492667, 48.8144504 2.3497618, 48.8146703 2.3477824, 48.8140762 2.3495749, 48.8149250 2.3454004, 48.8145973 2.3447291, 48.8145023 2.3445460, 48.8148358 2.3455753, 48.8146719 2.3491005, 48.8147778 2.3479413, 48.8149631 2.3480434, 48.8151173 2.3484075, 48.8301789 2.3802802, 48.8517163 2.4061866, 48.8523080 2.4042254, 48.8534161 2.4030439, 48.8196529 2.3647206, 48.8556190 2.3071441, 48.8555242 2.4213456, 48.8541163 2.3390471, 48.8426080 2.3301580, 48.8222971 2.3590009, 48.8309319 2.3809995, 48.8339877 2.3859431, 48.8457908 2.3539346, 48.8370765 2.3521704, 48.8478098 2.4348432, 48.8473408 2.4348372, 48.8475864 2.4357373, 48.8751593 2.3701002, 48.8585317 2.4337075, 48.8593469 2.4316636, 48.8587081 2.4325702, 48.8593963 2.4317070, 48.8600781 2.3465254, 48.8595293 2.3467856, 48.8841936 2.3491540, 48.8308164 2.3569249, 48.8312806 2.3593713, 48.8304836 2.3566079, 48.8306339 2.3565203, 48.8307798 2.3565461, 48.8308793 2.3564894, 48.8309449 2.3569926, 48.8309482 2.3563554, 48.8310070 2.3563176, 48.8310093 2.3571815, 48.8310613 2.3573344, 48.8310873 2.3571592, 48.8515332 2.3460413, 48.8516027 2.3460829, 48.8283426 2.3654057, 48.8314760 2.3641970, 48.8315017 2.3608865, 48.8324177 2.3616433, 48.8280428 2.3570384, 48.8271111 2.3573127, 48.8257851 2.3598664, 48.8284045 2.3568525, 48.8287545 2.3559409, 48.8262889 2.3423183, 48.8260589 2.3584625, 48.8262056 2.3584116, 48.8263443 2.3617182, 48.8263836 2.3570058, 48.8266597 2.3568935, 48.8268145 2.3634592, 48.8268348 2.3665087, 48.8269226 2.3568292, 48.8269700 2.3568093, 48.8270302 2.3639531, 48.8271184 2.3667517, 48.8272069 2.3567423, 48.8272363 2.3567348, 48.8272788 2.3567770, 48.8274640 2.3567110, 48.8275734 2.3566440, 48.8276061 2.3566713, 48.8279455 2.3568515, 48.8279668 2.3644980, 48.8281960 2.3564573, 48.8282189 2.3564280, 48.8282237 2.3563309, 48.8282434 2.3565433, 48.8283584 2.3562135, 48.8283817 2.3562084, 48.8283770 2.3650543, 48.8283888 2.3655621, 48.8284587 2.3561887, 48.8284729 2.3649999, 48.8284723 2.3655382, 48.8285149 2.3563221, 48.8285359 2.3654369, 48.8284753 2.3561801, 48.8285574 2.3561563, 48.8288668 2.3652562, 48.8289038 2.3651263, 48.8289131 2.3654247, 48.8289299 2.3567254, 48.8290078 2.3655668, 48.8290690 2.3648630, 48.8291460 2.3577224, 48.8291592 2.3654668, 48.8292215 2.3649631, 48.8292354 2.3648894, 48.8294445 2.3643751, 48.8296502 2.3647788, 48.8297218 2.3646366, 48.8299425 2.3645998, 48.8300157 2.3570873, 48.8303572 2.3568440, 48.8305711 2.3641769, 48.8311201 2.3637648, 48.8312150 2.3582218, 48.8312981 2.3583557, 48.8315605 2.3635129, 48.8316683 2.3631977, 48.8317557 2.3604147, 48.8321135 2.3604370, 48.8320852 2.3603455, 48.8321944 2.3622035, 48.8324846 2.3616424, 48.8324918 2.3622519, 48.8325620 2.3618635, 48.8326137 2.3620177, 48.8327614 2.3622482, 48.8261024 2.3594483, 48.8261611 2.3604678, 48.8261735 2.3605547, 48.8261983 2.3593167, 48.8262246 2.3601836, 48.8262818 2.3599933, 48.8262849 2.3606816, 48.8263019 2.3608178, 48.8263699 2.3596644, 48.8264163 2.3598711, 48.8264875 2.3630190, 48.8265354 2.3633525, 48.8266498 2.3632069, 48.8267930 2.3654672, 48.8268029 2.3643460, 48.8268236 2.3644888, 48.8268291 2.3641616, 48.8268903 2.3662147, 48.8269089 2.3652180, 48.8267977 2.3663149, 48.8269435 2.3633896, 48.8269324 2.3638037, 48.8267862 2.3639559, 48.8268539 2.3636108, 48.8269117 2.3634246, 48.8322812 2.3623411, 48.8267971 2.3636208, 48.8272546 2.3651819, 48.8365709 2.3742554, 48.8538843 2.3710891, 48.8275456 2.3565272, 48.8280589 2.3563698, 48.8263842 2.3568786, 48.8303208 2.3570220, 48.8292182 2.3568482, 48.8300765 2.3566608, 48.8153391 2.3448291, 48.8729593 2.3892019, 48.8741225 2.3893282, 48.8748365 2.3888937, 48.8511496 2.3478020, 48.8467824 2.3813171, 48.8411291 2.4320878, 48.8522322 2.3898977, 48.8524976 2.3895606, 48.8539546 2.3825521, 48.8544392 2.3816128, 48.8569327 2.3799755, 48.8585657 2.3781777, 48.8633818 2.3710966, 48.8671029 2.3655043, 48.8683370 2.3634922, 48.8699682 2.3607540, 48.8706171 2.3596295, 48.8708012 2.3598095, 48.8712575 2.3602178, 48.8713074 2.3601361, 48.8718731 2.3599327, 48.8724770 2.3594063, 48.8730997 2.3588306, 48.8734420 2.3585204, 48.8742775 2.3577777, 48.8785606 2.3557407, 48.8206503 2.3210333, 48.8204084 2.3209442, 48.8601919 2.4036487, 48.8900480 2.3607496, 48.8898650 2.3626449, 48.8909898 2.3608038, 48.8904400 2.3637643, 48.8901985 2.3637340, 48.8906438 2.3596534, 48.8909653 2.3596380, 48.8551489 2.3398837, 48.8469115 2.3435159, 48.8922565 2.3879668, 48.8896721 2.3596605, 48.8890437 2.3606481, 48.8895540 2.3596572, 48.8899144 2.3604238, 48.8467226 2.4102506, 48.8821978 2.3665612, 48.8890487 2.3604033, 48.8914345 2.3596388, 48.8897921 2.3604602, 48.8910188 2.3609138, 48.8913355 2.3596375, 48.8897517 2.3604732, 48.8901098 2.3617740, 48.8893542 2.3601189, 48.8329514 2.3692712, 48.8608088 2.3799487, 48.8512675 2.3899326, 48.8605689 2.3786648, 48.8603005 2.3783793, 48.8481543 2.3934076, 48.8519310 2.3891606, 48.8542868 2.3877696, 48.8569986 2.3852716, 48.8575346 2.3847601, 48.8580303 2.3809765, 48.8581695 2.3807581, 48.8583918 2.3804386, 48.8594275 2.3791564, 48.8601780 2.3784708, 48.8604263 2.3782604, 48.8608624 2.3805635, 48.8611746 2.3809999, 48.8858062 2.3345963, 48.8096689 2.3629717, 48.8762181 2.3718774, 48.8420324 2.3637585, 48.8451325 2.3454414, 48.8458811 2.4282677, 48.8459567 2.4286014, 48.8215947 2.3230123, 48.8220619 2.3226785, 48.8210818 2.3222697, 48.8216741 2.3229683, 48.8219451 2.3232523, 48.8219542 2.3232864, 48.8215572 2.3230330, 48.8220346 2.3227025, 48.8219370 2.3232224, 48.8219619 2.3233149, 48.8868550 2.3608645, 48.8237489 2.3639942, 48.8854958 2.3656011, 48.8339745 2.3680517, 48.8888984 2.3604882, 48.8889239 2.3604830, 48.8399414 2.3948970, 48.8421069 2.3896051, 48.8735521 2.3649705, 48.8445983 2.3417212, 48.8452169 2.4120881, 48.8461924 2.4121067, 48.8466376 2.4114577, 48.8473580 2.4106924, 48.8473835 2.4103563, 48.8524722 2.4106454, 48.8526979 2.4111873, 48.8557704 2.4107086, 48.8574629 2.4101809, 48.8581256 2.4099841, 48.8587706 2.4100076, 48.8592004 2.4098008, 48.8608587 2.4094863, 48.8649243 2.4085167, 48.8651848 2.4086243, 48.8669825 2.4087455, 48.8681301 2.4072046, 48.8708179 2.4047157, 48.8748416 2.4030830, 48.8800875 2.3982376, 48.8801636 2.3979290, 48.8822748 2.3961932, 48.8897519 2.3898235, 48.8897859 2.3901176, 48.8900562 2.3906182, 48.8908981 2.3898028, 48.8924246 2.3879304, 48.8928662 2.3878039, 48.8931913 2.3928220, 48.8332843 2.3172595, 48.8930154 2.3876090, 48.8098954 2.3619830, 48.8097660 2.3626731, 48.8098588 2.3620742, 48.8090770 2.3624027, 48.8091027 2.3623940, 48.8845594 2.3650486, 48.8196569 2.3220677, 48.8338132 2.3201157, 48.8296235 2.3814150, 48.8288049 2.3816393, 48.8306308 2.3813385, 48.8843507 2.3642047, 48.8862013 2.3566961, 48.8861995 2.3567861, 48.8257570 2.3480755, 48.8257663 2.3482098, 48.8276817 2.3715635, 48.8277542 2.3314326, 48.8277569 2.3294975, 48.8325094 2.3123346, 48.8326504 2.3120265, 48.8338839 2.3082929, 48.8340082 2.3078231, 48.8376932 2.4037117, 48.8397308 2.3978085, 48.8420906 2.3894385, 48.8425267 2.3896625, 48.8445646 2.3180923, 48.8470920 2.3268174, 48.8521103 2.3659956, 48.8555817 2.3636375, 48.8592929 2.3562507, 48.8596838 2.3565776, 48.8618200 2.3569043, 48.8239032 2.3657211, 48.8461248 2.4233803, 48.8461335 2.4236914, 48.8461392 2.4232057, 48.8610209 2.3105163, 48.8610229 2.3109043, 48.8610190 2.3113026, 48.8920212 2.3617816, 48.8919648 2.3596358, 48.8925714 2.3595715, 48.8977200 2.3586590, 48.8976429 2.3589492, 48.8973798 2.3589436, 48.8284670 2.3264398, 48.8360293 2.3987610, 48.8892547 2.3782943, 48.8545111 2.3633739, 48.8901546 2.3614003, 48.8901565 2.3589941, 48.8901495 2.3592264, 48.8114906 2.3840833, 48.8342510 2.3976866, 48.8346767 2.3969733, 48.8346779 2.3969086, 48.8355574 2.3971295, 48.8355714 2.3970738, 48.8351646 2.3976296, 48.8352730 2.3987266, 48.8358656 2.3983311, 48.8347080 2.3971806, 48.8342927 2.3976622, 48.8343788 2.3972427, 48.8350123 2.3991323, 48.8747013 2.3307416, 48.8738516 2.3311552, 48.8745880 2.3309443, 48.8746180 2.3297594, 48.8736376 2.3310868, 48.8746673 2.3308647, 48.8746733 2.3307385, 48.8746753 2.3305365, 48.8747720 2.3306636, 48.8745933 2.3307016, 48.8745633 2.3314580, 48.8746973 2.3308647, 48.8745893 2.3308470, 48.8740176 2.3311821, 48.8735099 2.3310689, 48.8743253 2.3314260, 48.8746733 2.3307385, 48.8124313 2.3617541, 48.8473899 2.4102789, 48.8484564 2.4353693, 48.8323649 2.4042508, 48.8319766 2.3145168, 48.8325060 2.3158066, 48.8334834 2.3173462, 48.8335457 2.3172542, 48.8338586 2.3183718, 48.8340668 2.3182365, 48.8341266 2.3177915, 48.8347650 2.3425150, 48.8349068 2.3452703, 48.8350373 2.3453379, 48.8350577 2.3457523, 48.8350801 2.3462140, 48.8361574 2.3222159, 48.8389031 2.3587665, 48.8392803 2.3599626, 48.8394354 2.3604664, 48.8472148 2.3034083, 48.8527070 2.3336447, 48.8468848 2.4351107, 48.8470170 2.4351016, 48.8329971 2.3865539, 48.8444665 2.4240626, 48.8454138 2.3449157, 48.8820577 2.3422422, 48.8798304 2.3575115, 48.8911010 2.3515017, 48.8917130 2.3492982, 48.8918470 2.3497087, 48.8878948 2.3493748, 48.8228812 2.3586455, 48.8419273 2.3255444, 48.8419458 2.3253394, 48.8420169 2.3254159, 48.8479230 2.4347878, 48.8392807 2.3902734, 48.8394408 2.3901626, 48.8394886 2.3899208, 48.8393203 2.3908004, 48.8389122 2.3910647, 48.8859544 2.3562670, 48.8863988 2.3563957, 48.8871043 2.3599792, 48.8873089 2.3595500, 48.8875981 2.3596144, 48.8891501 2.3600864, 48.8634536 2.3668626, 48.8292546 2.3609495, 48.8310548 2.3612243, 48.8264604 2.3691548, 48.8867265 2.3692541, 48.8842868 2.3649687, 48.8843386 2.3644627, 48.8843953 2.3649309, 48.8846074 2.3647555, 48.8857802 2.3686094, 48.8862633 2.3689061, 48.8863797 2.3693225, 48.8878961 2.3705889, 48.8880468 2.3703744, 48.8896210 2.3717466, 48.8327810 2.3359512, 48.8487274 2.3758510, 48.8467389 2.3809082, 48.8250947 2.3203976, 48.8266929 2.3240664, 48.8276258 2.3263944, 48.8366568 2.3904615, 48.8390555 2.3541961, 48.8391729 2.3879459, 48.8393615 2.3547196, 48.8395273 2.3563297, 48.8403152 2.3627036, 48.8403428 2.3600459, 48.8403121 2.3615285, 48.8421501 2.3099414, 48.8431512 2.3481982, 48.8442099 2.3456920, 48.8451757 2.3455730, 48.8457102 2.3460054, 48.8488355 2.3252187, 48.8506988 2.3354533, 48.8380011 2.3605213, 48.8531703 2.4233702, 48.8528421 2.4249527, 48.8532657 2.4245289, 48.8497187 2.3083307, 48.8498617 2.3082589, 48.8292102 2.3745186, 48.8516152 2.3183721, 48.8533928 2.3417271, 48.8750168 2.3409909, 48.8757535 2.3399225, 48.8126600 2.3618130, 48.8456711 2.3490720, 48.8452705 2.3491887, 48.8455873 2.3490693, 48.8107781 2.3625562, 48.8210556 2.3567317, 48.8749302 2.3555936, 48.8936132 2.3841788, 48.8659386 2.3788507, 48.8213142 2.3566414, 48.8212987 2.3567515, 48.8213082 2.3566973, 48.8213185 2.3565892, 48.8254520 2.3540117, 48.8375177 2.3108660, 48.8377213 2.3092594, 48.8381274 2.3040720, 48.8383431 2.3045795, 48.8384042 2.3046605, 48.8386443 2.3051222, 48.8403607 2.4028757, 48.8406684 2.3153202, 48.8409914 2.3133930, 48.8414293 2.3136925, 48.8419801 2.3147584, 48.8471459 2.3017502, 48.8529188 2.3087416, 48.8560088 2.3152292, 48.8584188 2.3146004, 48.8300792 2.4152641, 48.8849455 2.3527050, 48.8849667 2.3521042, 48.8848468 2.3565674, 48.8850090 2.3595929, 48.8849808 2.3595500, 48.8448267 2.3832538, 48.8612184 2.3359626, 48.8607940 2.3357198, 48.8611505 2.3363233, 48.8609255 2.3361637, 48.8613287 2.3357359, 48.8606908 2.3360605, 48.8608125 2.3354395, 48.8920141 2.3622108, 48.8918519 2.3634768, 48.8916614 2.3634553, 48.8675820 2.3627052, 48.8681313 2.3656514, 48.8668440 2.3637026, 48.8678874 2.3648918, 48.8662370 2.3646913, 48.8664898 2.3645091, 48.8665592 2.3644087, 48.8666802 2.3641540, 48.8666879 2.3641696, 48.8667598 2.3654966, 48.8667839 2.3637997, 48.8668096 2.3646253, 48.8669108 2.3644467, 48.8669297 2.3636473, 48.8669953 2.3631776, 48.8669961 2.3635905, 48.8670152 2.3630804, 48.8670214 2.3635235, 48.8670355 2.3642267, 48.8670361 2.3631640, 48.8671087 2.3634985, 48.8671452 2.3640332, 48.8673694 2.3650795, 48.8673980 2.3650399, 48.8674058 2.3629347, 48.8674351 2.3629732, 48.8674598 2.3628272, 48.8675385 2.3647969, 48.8676126 2.3647082, 48.8676136 2.3625917, 48.8676252 2.3632445, 48.8677253 2.3630872, 48.8677894 2.3623659, 48.8678337 2.3629170, 48.8678703 2.3621859, 48.8679052 2.3646802, 48.8679322 2.3627623, 48.8679443 2.3620076, 48.8679849 2.3651178, 48.8683870 2.3633979, 48.8684727 2.3632550, 48.8686416 2.3633147, 48.8686663 2.3632144, 48.8690297 2.3627510, 48.8298488 2.3665110, 48.8520717 2.3832753, 48.8481687 2.4345506, 48.8480369 2.4345445, 48.8476526 2.4234794, 48.8903352 2.3587990, 48.8903987 2.3592281, 48.8419215 2.3870862, 48.8419664 2.3871201, 48.8418904 2.3870862, 48.8418677 2.3871280, 48.8418769 2.3871760, 48.8418924 2.3870718, 48.8418649 2.3871388, 48.8418108 2.3875951, 48.8417327 2.3875879, 48.8417636 2.3880006, 48.8418410 2.3880025, 48.8394773 2.3242229, 48.8563545 2.3025991, 48.8562747 2.3028390, 48.8574816 2.3802365, 48.8690083 2.3564593, 48.8160973 2.3511206, 48.8136741 2.3481541, 48.8136670 2.3480361, 48.8482693 2.4357193, 48.8137588 2.3477625, 48.8157688 2.3492591, 48.8146243 2.3477410, 48.8147833 2.3516517, 48.8167437 2.3491143, 48.8153732 2.3510991, 48.8159313 2.3500531, 48.8156381 2.3500048, 48.8155145 2.3504125, 48.8152213 2.3498012, 48.8152566 2.3498870, 48.8155498 2.3505412, 48.8150871 2.3495435, 48.8151294 2.3496561, 48.8150129 2.3494093, 48.8149528 2.3493289, 48.8165671 2.3511903, 48.8159772 2.3514586, 48.8185747 2.3602641, 48.8619692 2.3675752, 48.8614116 2.3675537, 48.8608788 2.3675481, 48.8290841 2.3607574, 48.8291352 2.3608175, 48.8621900 2.3647601, 48.8455039 2.3750047, 48.8455237 2.3764533, 48.8760446 2.3484651, 48.8116397 2.3869564, 48.8557667 2.3453212, 48.8550679 2.3462868, 48.8741216 2.3427260, 48.8117754 2.3855022, 48.8136719 2.3895246, 48.8138417 2.3900307, 48.8593870 2.3702037, 48.8593028 2.3689081, 48.8537623 2.3817697, 48.8108907 2.3840310, 48.8739758 2.3852798, 48.8801837 2.4205403, 48.8790034 2.4238161, 48.8456597 2.3425776, 48.8795946 2.4163042, 48.8785849 2.4122788, 48.8525782 2.3431052, 48.8784205 2.4222948, 48.8855875 2.3531342, 48.8806519 2.4004273, 48.8815514 2.4001315, 48.8924739 2.3853741, 48.8959011 2.3832799, 48.8799452 2.3455279, 48.8488706 2.4054308, 48.8489816 2.4056570, 48.8494687 2.4051936, 48.8643476 2.3599313, 48.8295402 2.3749687, 48.8296723 2.3748324, 48.8599478 2.3246517, 48.8599472 2.3245275, 48.8599536 2.3248067, 48.8599716 2.3245504, 48.8600672 2.3244033, 48.8600707 2.3247081, 48.8600794 2.3243610, 48.8601037 2.3242800, 48.8606611 2.3260607, 48.8606849 2.3259641, 48.8666867 2.3495864, 48.8297510 2.3778979, 48.8297850 2.3779803, 48.8288241 2.3761607, 48.8292720 2.3744791, 48.8304465 2.3780998, 48.8295957 2.3746853, 48.8298780 2.3752270, 48.8291137 2.3762468, 48.8297970 2.3750717, 48.8279572 2.3768662, 48.8283215 2.3766409, 48.8283387 2.3766344, 48.8285334 2.3789780, 48.8287988 2.3787109, 48.8288281 2.3786879, 48.8290475 2.3783458, 48.8292408 2.3741640, 48.8292751 2.3742399, 48.8294522 2.3757168, 48.8300961 2.3775849, 48.8302180 2.3778874, 48.8303144 2.3771365, 48.8305123 2.3782563, 48.8305794 2.3769835, 48.8307729 2.3768467, 48.8768004 2.3899160, 48.8238319 2.3396086, 48.8104087 2.3618647, 48.8106981 2.3617361, 48.8603698 2.3266950, 48.8603951 2.3266114, 48.8604141 2.3265484, 48.8604226 2.3265204, 48.8604418 2.3266906, 48.8604458 2.3264436, 48.8604538 2.3266512, 48.8604593 2.3263987, 48.8604713 2.3265936, 48.8604920 2.3262906, 48.8605022 2.3264917, 48.8605049 2.3262481, 48.8605162 2.3262107, 48.8605165 2.3264448, 48.8605419 2.3263610, 48.8605508 2.3263318, 48.8605662 2.3262810, 48.8606040 2.3261566, 48.8606369 2.3258113, 48.8607182 2.3257806, 48.8802805 2.4173865, 48.8661563 2.3250762, 48.8683478 2.3383121, 48.8124799 2.3759776, 48.8123503 2.3767597, 48.8124991 2.3777755, 48.8126164 2.3761373, 48.8806262 2.4186147, 48.8803431 2.4217569, 48.8111035 2.3798770, 48.8128982 2.3700984, 48.8777259 2.4176779, 48.8678207 2.3478985, 48.8606135 2.3617921, 48.8660965 2.3482633, 48.8549614 2.3379207, 48.8671733 2.3471661, 48.8675818 2.3472683, 48.8667602 2.3505401, 48.8644981 2.3502872, 48.8378943 2.3222768, 48.8286016 2.3219064, 48.8612225 2.3119810, 48.8753313 2.3891688, 48.8754558 2.3899992, 48.8081536 2.3738470, 48.8122567 2.3739058, 48.8127327 2.3707897, 48.8131872 2.3706889, 48.8142377 2.3767508, 48.8146602 2.3787108, 48.8150299 2.3689536, 48.8155924 2.3685119, 48.8561136 2.3566520, 48.8530641 2.3387326, 48.8533052 2.3459080, 48.8533580 2.3457272, 48.8533695 2.3456875, 48.8535061 2.3452281, 48.8535613 2.3450411, 48.8535722 2.3450043, 48.8537320 2.3446401, 48.8537489 2.3446808, 48.8538473 2.3441717, 48.8538563 2.3441477, 48.8538673 2.3441177, 48.8538757 2.3440941, 48.8715766 2.3537539, 48.8914559 2.3448389, 48.8740405 2.3857795, 48.8749608 2.3892009, 48.8736385 2.3889782, 48.8739867 2.3864968, 48.8747724 2.3875276, 48.8739345 2.3878755, 48.8739549 2.3860921, 48.8712919 2.3698711, 48.8718150 2.3717657, 48.8723380 2.3716377, 48.8727815 2.3712192, 48.8726878 2.3710159, 48.8730570 2.3709970, 48.8733970 2.3707413, 48.8734671 2.3704021, 48.8734037 2.3704680, 48.8733502 2.3703282, 48.8731595 2.3702542, 48.8729660 2.3702046, 48.8633424 2.3714600, 48.8617341 2.3650289, 48.8554103 2.3643002, 48.8416283 2.3665291, 48.8416730 2.3664594, 48.8411402 2.3654371, 48.8415221 2.3661615, 48.8415620 2.3662647, 48.8415955 2.3663513, 48.8409358 2.3247136, 48.8794344 2.3881410, 48.8776787 2.3858246, 48.8542640 2.3651059, 48.8542452 2.3648816, 48.8537965 2.3646707, 48.8537744 2.3647227, 48.8536688 2.3651544, 48.8535577 2.3656033, 48.8563379 2.3653392, 48.8555655 2.3665858, 48.8549123 2.3654914, 48.8554404 2.3644187, 48.8801930 2.3906171, 48.8576608 2.3609703, 48.8750094 2.3896199, 48.8751184 2.3890182, 48.8582179 2.3593845, 48.8755856 2.3816591, 48.8616662 2.3146849, 48.8880273 2.3373781, 48.8883177 2.3371911, 48.8727883 2.3630691, 48.8725766 2.3640561, 48.8441811 2.3576296, 48.8445790 2.3614939, 48.8849737 2.3369336, 48.8587148 2.3486171, 48.8358783 2.3528351, 48.8668462 2.3528123, 48.8660061 2.3525045, 48.8737724 2.3861774, 48.8740700 2.3880327, 48.8738683 2.3893369, 48.8785291 2.4120957, 48.8666934 2.3539857, 48.8666590 2.3541047, 48.8725060 2.3265052, 48.8670465 2.3537266, 48.8668410 2.3533605, 48.8672803 2.3538862, 48.8572232 2.3616056, 48.8762128 2.3876684, 48.8903070 2.3600864, 48.8903282 2.3600864, 48.8580971 2.3653667, 48.8142942 2.3915517, 48.8141679 2.3916746, 48.8140287 2.3917998, 48.8540002 2.3615994, 48.8735435 2.3844995, 48.8889949 2.3583055, 48.8891642 2.3597646, 48.8893970 2.3596573, 48.8895811 2.3597672, 48.8616362 2.3492126, 48.8610370 2.3488844, 48.8618630 2.3148367, 48.8470631 2.3700997, 48.8470970 2.3701595, 48.8471459 2.3702456, 48.8472462 2.3704229, 48.8474998 2.3708712, 48.8446534 2.3728628, 48.8447152 2.3728597, 48.8475826 2.3710176, 48.8482512 2.3721967, 48.8484086 2.3718167, 48.8471795 2.3719974, 48.8470564 2.3720521, 48.8469948 2.3720795, 48.8787624 2.3883183, 48.8867304 2.3598075, 48.8417447 2.4330345, 48.8720387 2.3918784, 48.8741080 2.3859246, 48.8736863 2.3900112, 48.8737214 2.3899116, 48.8744280 2.3893709, 48.8886626 2.3599790, 48.8860248 2.3369308, 48.8902739 2.3358959, 48.8748174 2.3787774, 48.8764030 2.3793479, 48.8763176 2.3776123, 48.8743153 2.3863229, 48.8737855 2.3857401, 48.8125184 2.3568857, 48.8124954 2.3569680, 48.8856373 2.3263659, 48.8907179 2.3749478, 48.8931856 2.3736960, 48.8250371 2.3884441, 48.8274964 2.3762942, 48.8295399 2.3793050, 48.8312902 2.3804965, 48.8535184 2.3767685, 48.8567309 2.3731009, 48.8567919 2.3727131, 48.8596630 2.4036667, 48.8597113 2.4032404, 48.8672556 2.3729520, 48.8678310 2.3962785, 48.8712975 2.3932942, 48.8736717 2.3893707, 48.8752326 2.3699504, 48.8785201 2.3757987, 48.8785987 2.3756111, 48.8839930 2.3680663, 48.8841702 2.3653361, 48.8384314 2.3228161, 48.8484966 2.4362364, 48.8746407 2.3851288, 48.8809813 2.3738144, 48.8813033 2.3729918, 48.8779378 2.4190454, 48.8874196 2.3791285, 48.8319874 2.3777146, 48.8767665 2.3719387, 48.8310374 2.3779683, 48.8730284 2.3811633, 48.8733348 2.3779302, 48.8223529 2.3539603, 48.8199141 2.3514732, 48.8199460 2.3513904, 48.8199660 2.3514921, 48.8214630 2.3588696, 48.8226985 2.3584907, 48.8561049 2.4371952, 48.8596856 2.4328716, 48.8917305 2.3461501, 48.8906054 2.3436342, 48.8226090 2.3400474, 48.8911601 2.3472858, 48.8225527 2.3400837, 48.8225214 2.3400967, 48.8905525 2.3481725, 48.8239560 2.3366723, 48.8750217 2.3892571, 48.8198771 2.3422222, 48.8197803 2.3430846, 48.8123843 2.3623469, 48.8921867 2.3354421, 48.8654434 2.3665508, 48.8614479 2.3729830, 48.8448082 2.4018695, 48.8447378 2.4025094, 48.8469506 2.3967840, 48.8441092 2.4022649, 48.8450981 2.4030570, 48.8453425 2.4001936, 48.8445374 2.4047983, 48.8459401 2.3981714, 48.8330219 2.3641260, 48.8337653 2.3094048, 48.8342723 2.3283804, 48.8354533 2.3258265, 48.8357486 2.3110952, 48.8366678 2.3127785, 48.8368862 2.3126418, 48.8408789 2.3214931, 48.8475924 2.3949477, 48.8480651 2.3944560, 48.8484606 2.3943801, 48.8489226 2.3946004, 48.8530598 2.3535567, 48.8552774 2.3345202, 48.8555651 2.3608523, 48.8570886 2.3297266, 48.8585185 2.3298224, 48.8586963 2.3287531, 48.8761034 2.3355444, 48.8762920 2.3325923, 48.8843206 2.3540618, 48.8431553 2.4102659, 48.8469580 2.4075011, 48.8431170 2.4096136, 48.8278448 2.3714158, 48.8576254 2.3808196, 48.8766245 2.3445219, 48.8755665 2.3990398, 48.8765230 2.4035884, 48.8494789 2.3371871, 48.8495030 2.3371323, 48.8496541 2.3374034, 48.8184587 2.3595777, 48.8186142 2.3587533, 48.8186708 2.3587607, 48.8187191 2.3588150, 48.8187388 2.3588956, 48.8188381 2.3590916, 48.8167116 2.3578660, 48.8167195 2.3570640, 48.8167261 2.3577226, 48.8167414 2.3582707, 48.8167473 2.3578447, 48.8167831 2.3578400, 48.8167973 2.3577217, 48.8168164 2.3578793, 48.8168334 2.3579438, 48.8168587 2.3582922, 48.8169402 2.3583037, 48.8169721 2.3571088, 48.8170202 2.3583068, 48.8171700 2.3584699, 48.8172585 2.3582725, 48.8173262 2.3580419, 48.8175126 2.3583256, 48.8175756 2.3580011, 48.8175870 2.3580740, 48.8176040 2.3581574, 48.8176168 2.3582219, 48.8181346 2.3609207, 48.8178167 2.3603607, 48.8184463 2.3602441, 48.8184994 2.3603771, 48.8185793 2.3601108, 48.8186719 2.3601556, 48.8186856 2.3606232, 48.8186904 2.3602619, 48.8186981 2.3603933, 48.8187049 2.3606355, 48.8187285 2.3606540, 48.8187483 2.3604992, 48.8187500 2.3605576, 48.8187561 2.3606557, 48.8187765 2.3601229, 48.8187838 2.3601855, 48.8176532 2.3606248, 48.8193633 2.3602971, 48.8193706 2.3607627, 48.8166550 2.3605732, 48.8189433 2.3610579, 48.8831104 2.3242250, 48.8837964 2.3210243, 48.8527614 2.3515044, 48.8652815 2.4164888, 48.8647219 2.4165307, 48.8776217 2.3939651, 48.8777323 2.3952759, 48.8764364 2.3934657, 48.8765453 2.3938412, 48.8454007 2.4352808, 48.8459620 2.4353156, 48.8450722 2.4349688, 48.8217293 2.3329753, 48.8342289 2.3218797, 48.8366129 2.3508583, 48.8372702 2.3535459, 48.8379882 2.3433930, 48.8382061 2.3565243, 48.8385318 2.3366177, 48.8396083 2.3376405, 48.8411746 2.3066119, 48.8412714 2.3397958, 48.8414201 2.3390745, 48.8452811 2.3694044, 48.8438510 2.4177648, 48.8441609 2.4177686, 48.8349953 2.3170932, 48.8530750 2.3455319, 48.8397730 2.3514917, 48.8787109 2.3950327, 48.8786894 2.3945983, 48.8604285 2.3434854, 48.8775224 2.3930979, 48.8521348 2.3393496, 48.8577082 2.3492535, 48.8608090 2.3675701, 48.8641879 2.3657984, 48.8641784 2.3663950, 48.8628632 2.3665085, 48.8594971 2.3673180, 48.8472632 2.3686633, 48.8577037 2.3677906, 48.8544371 2.3690641, 48.8539102 2.3699317, 48.8568748 2.3684913, 48.8470293 2.3690164, 48.8462686 2.3631462, 48.8465015 2.4365963, 48.8462894 2.4365111, 48.8450252 2.4362761, 48.8465650 2.4366292, 48.8451160 2.4363398, 48.8455873 2.4364340, 48.8511583 2.4295017, 48.8522846 2.4279169, 48.8517171 2.4066230, 48.8246139 2.3297884, 48.8248448 2.3309724, 48.8248677 2.3167742, 48.8249619 2.3287697, 48.8249980 2.3313844, 48.8260495 2.3309436, 48.8285948 2.3330627, 48.8290174 2.3328655, 48.8326036 2.3623992, 48.8334174 2.3642162, 48.8359245 2.3856627, 48.8401447 2.3704675, 48.8403742 2.3701490, 48.8409627 2.3362290, 48.8415305 2.3538584, 48.8419422 2.3357262, 48.8430208 2.3525662, 48.8432035 2.3315463, 48.8441253 2.3305131, 48.8452074 2.3522138, 48.8467725 2.3266058, 48.8484788 2.3326047, 48.8493788 2.3389951, 48.8500333 2.3399942, 48.8624763 2.3635921, 48.8602122 2.3858360, 48.8521732 2.3388298, 48.8854126 2.3770897, 48.8670895 2.4309368, 48.8635520 2.3425906, 48.8591882 2.3451519, 48.8584285 2.3451526, 48.8540476 2.3699964, 48.8543674 2.3701218, 48.8547650 2.3703199, 48.8551427 2.3861181, 48.8597235 2.3725623, 48.8146822 2.4010226, 48.8178841 2.3973945, 48.8176898 2.3969882, 48.8177132 2.3970926, 48.8597150 2.3615075, 48.8156383 2.3936345, 48.8155145 2.3925743, 48.8156913 2.3937315, 48.8156969 2.3928952, 48.8157188 2.3929517, 48.8157650 2.3928334, 48.8157950 2.3933056, 48.8158132 2.3929094, 48.8158716 2.3940584, 48.8158899 2.3940978, 48.8159398 2.3941887, 48.8159967 2.3942966, 48.8163104 2.3947963, 48.8163873 2.3950099, 48.8165036 2.3951262, 48.8165703 2.3950594, 48.8165800 2.3953924, 48.8171706 2.3945058, 48.8172052 2.3945973, 48.8172200 2.3945253, 48.8172473 2.3945006, 48.8172696 2.3944099, 48.8173073 2.3945273, 48.8173163 2.3947834, 48.8173955 2.3947370, 48.8177359 2.3975007, 48.8173492 2.3986584, 48.8182506 2.3980068, 48.8177668 2.3985598, 48.8176337 2.3987282, 48.8179037 2.3978145, 48.8179883 2.3982972, 48.8174526 2.3985388, 48.8165654 2.3949222, 48.8174776 2.3970294, 48.8166547 2.3994601, 48.8178585 2.3980529, 48.8159059 2.3979329, 48.8165641 2.3999418, 48.8166323 2.3999400, 48.8166784 2.3998883, 48.8168960 2.3992051, 48.8169088 2.3992003, 48.8169814 2.3956959, 48.8175265 2.3984534, 48.8175533 2.3971624, 48.8175581 2.3966660, 48.8177590 2.3982629, 48.8183348 2.3978986, 48.8937054 2.3492738, 48.8893918 2.3447704, 48.8466386 2.3740238, 48.8114693 2.3847804, 48.8445302 2.3291617, 48.8448398 2.3291657, 48.8113843 2.3846175, 48.8199882 2.3571489, 48.8215209 2.3576523, 48.8215584 2.3576426, 48.8216084 2.3576348, 48.8216425 2.3576284, 48.8461779 2.3549621, 48.8461716 2.3548935, 48.8459004 2.3547097, 48.8459537 2.3546947, 48.8459381 2.3547739, 48.8459560 2.3548600, 48.8460626 2.3546771, 48.8494488 2.3376165, 48.8496464 2.3378520, 48.8515572 2.3384274, 48.8516756 2.3382308, 48.8522552 2.3385407, 48.8523605 2.3385609, 48.8489414 2.4100282, 48.8564552 2.3511205, 48.8419262 2.3651705, 48.8522264 2.3385705, 48.8213549 2.3576983, 48.8213060 2.3577128, 48.8215751 2.3568192, 48.8215343 2.3568339, 48.8214567 2.3568620, 48.8213706 2.3568881, 48.8213312 2.3569003, 48.8212756 2.3569029, 48.8212158 2.3569268, 48.8211521 2.3569396, 48.8210879 2.3569725, 48.8209687 2.3570081, 48.8206375 2.3571097, 48.8207534 2.3570814, 48.8205136 2.3571727, 48.8208942 2.3576958, 48.8207623 2.3577442, 48.8206411 2.3577804, 48.8205039 2.3578100, 48.8203014 2.3575073, 48.8202111 2.3575247, 48.8212799 2.3568400, 48.8212131 2.3568615, 48.8211562 2.3568740, 48.8210982 2.3568935, 48.8210748 2.3565468, 48.8211205 2.3565517, 48.8211707 2.3565499, 48.8212080 2.3565523, 48.8212630 2.3565456, 48.8213291 2.3565416, 48.8213739 2.3565446, 48.8214357 2.3565482, 48.8214781 2.3565487, 48.8466880 2.3668924, 48.8504922 2.3892597, 48.8506002 2.3865799, 48.8508572 2.3411144, 48.8515666 2.3400541, 48.8517508 2.3398717, 48.8521001 2.3863956, 48.8528464 2.3842636, 48.8529129 2.3851769, 48.8532221 2.3833883, 48.8545205 2.3824395, 48.8560866 2.3825736, 48.8610854 2.3101169, 48.8742389 2.3553630, 48.8744853 2.3555219, 48.8767135 2.3539984, 48.8767602 2.3536655, 48.8773020 2.3497131, 48.8780538 2.3450154, 48.8222079 2.3512623, 48.8222079 2.3513239, 48.8220967 2.3507682, 48.8221004 2.3506702, 48.8221041 2.3505666, 48.8221465 2.3506206, 48.8211392 2.3471688, 48.8517016 2.3285488, 48.8520110 2.3284815, 48.8239919 2.3635306, 48.8240523 2.3628127, 48.8082112 2.3631348, 48.8608697 2.3679199, 48.8467985 2.3747872, 48.8370898 2.3512464, 48.8438542 2.3424632, 48.8523071 2.3446538, 48.8523579 2.3447087, 48.8439360 2.3521362, 48.8222822 2.3596195, 48.8314615 2.3664212, 48.8929579 2.3376602, 48.8930088 2.3377693, 48.8643323 2.3740909, 48.8788116 2.3448907, 48.8249366 2.3622787, 48.8396133 2.3228908, 48.8865752 2.3770595, 48.8888874 2.3790640, 48.8890273 2.3785304, 48.8492061 2.4332485, 48.8496954 2.4344420, 48.8619992 2.3644231, 48.8636991 2.3600389, 48.8510597 2.3686542, 48.8480074 2.4314069, 48.8484639 2.4321756, 48.8477360 2.4309668, 48.8634980 2.3632261, 48.8637283 2.3634669, 48.8465650 2.3875568, 48.8463716 2.4290882, 48.8458973 2.4282742, 48.8464012 2.4287314, 48.8548653 2.3258711, 48.8595988 2.3678599, 48.8578709 2.3682503, 48.8576256 2.3683245, 48.8573074 2.3684033, 48.8566728 2.3031742, 48.8444534 2.3488046, 48.8648741 2.3568648, 48.8647148 2.3556662, 48.8647064 2.3557113, 48.8411112 2.3657854, 48.8788639 2.4164575, 48.8325306 2.3357618, 48.8327372 2.3358964, 48.8326973 2.3358705, 48.8786186 2.4075133, 48.8687439 2.3725567, 48.8687984 2.3727205, 48.8901801 2.3579407, 48.8921834 2.3635197, 48.8733376 2.3225100, 48.8613268 2.3701752, 48.8613847 2.3698793, 48.8273570 2.3419023, 48.8294677 2.3494266, 48.8744006 2.3588789, 48.8598587 2.3506021, 48.8199175 2.3212812, 48.8276674 2.3600431, 48.8279422 2.3594556, 48.8577103 2.3716555, 48.8899908 2.3632081, 48.8687323 2.3745696, 48.8691442 2.3743705, 48.8706706 2.3729576, 48.8690549 2.3744043, 48.8706840 2.3716682, 48.8611575 2.3689699, 48.8638679 2.3648260, 48.8281470 2.3775133, 48.8737876 2.3254797, 48.8738529 2.3254255, 48.8425193 2.3260648, 48.8710277 2.3356624, 48.8110691 2.3833792, 48.8891219 2.3724461, 48.8890796 2.3723602, 48.8759983 2.3280939, 48.8757911 2.3276502, 48.8756697 2.3283966, 48.8756169 2.3280376, 48.8929100 2.3599148, 48.8394722 2.3232687, 48.8395348 2.3235658, 48.8731075 2.3603509, 48.8748935 2.3811373, 48.8868930 2.3555588, 48.8767035 2.3442886, 48.8780982 2.3447722, 48.8782291 2.3451211, 48.8766714 2.3443634, 48.8929554 2.3636687, 48.8930915 2.3631580, 48.8929606 2.3633496, 48.8932747 2.3631869, 48.8322630 2.3676449, 48.8856144 2.3258652, 48.8389598 2.3704270, 48.8569223 2.3642921, 48.8761220 2.3317510, 48.8797698 2.3290246, 48.8798222 2.3536407, 48.8799292 2.3534275, 48.8316089 2.3555656, 48.8316089 2.3555656, 48.8569603 2.3713113, 48.8565579 2.3711226, 48.8769985 2.3602115, 48.8771644 2.3597829, 48.8769967 2.3602263, 48.8771699 2.3597638, 48.8771867 2.3597002, 48.8243136 2.4192238, 48.8317261 2.3100042, 48.8672775 2.3441465, 48.8666300 2.3441053, 48.8661252 2.3444240, 48.8644516 2.3451744, 48.8665424 2.3444859, 48.8656756 2.3448565, 48.8664867 2.3445169, 48.8659496 2.3445011, 48.8650282 2.3451533, 48.8649842 2.3451707, 48.8653520 2.3447568, 48.8657315 2.3448468, 48.8657774 2.3445761, 48.8659315 2.3446745, 48.8660578 2.3446116, 48.8662401 2.3446245, 48.8666928 2.3441000, 48.8585753 2.3796813, 48.8467516 2.3809922, 48.8465163 2.3789989, 48.8455614 2.3805006, 48.8472631 2.3789855, 48.8565920 2.3951782, 48.8589893 2.4016192, 48.8623327 2.3527653, 48.8767283 2.4142630, 48.8629574 2.3670436, 48.8689100 2.3859683, 48.8777936 2.3651771, 48.8758559 2.3196867, 48.8812197 2.3164987, 48.8811807 2.3164846, 48.8177108 2.3246199, 48.8199006 2.3214135, 48.8329457 2.3647065, 48.8214751 2.3576631, 48.8818765 2.3453450, 48.8818977 2.3455167, 48.8809875 2.3406458, 48.8809240 2.3404741, 48.8772738 2.3263243, 48.8772711 2.3269492, 48.8761280 2.3384291, 48.8761937 2.3384548, 48.8762503 2.3384716, 48.8803605 2.3986503, 48.8521921 2.3771906, 48.8580782 2.4154617, 48.8624572 2.3776986, 48.8822051 2.3936533, 48.8796554 2.3966912, 48.8511831 2.3785314, 48.8820102 2.4200172, 48.8087038 2.3623689, 48.8753058 2.3579456, 48.8880878 2.3625470, 48.8246848 2.3401055, 48.8260534 2.3414524, 48.8772487 2.4155903, 48.8153650 2.3609320, 48.8389034 2.3510109, 48.8429170 2.3523355, 48.8507946 2.3484559, 48.8467055 2.3514623, 48.8473180 2.3512660, 48.8444716 2.3118167, 48.8728060 2.3646742, 48.8722199 2.3662906, 48.8705355 2.3858494, 48.8772018 2.3707749, 48.8493078 2.3774714, 48.8392014 2.3497085, 48.8400466 2.3498724, 48.8403852 2.3496532, 48.8405842 2.3504848, 48.8922563 2.3451633, 48.8922743 2.3450572, 48.8770064 2.3684202, 48.8771612 2.3641684, 48.8307007 2.3544853, 48.8523523 2.3354901, 48.8520540 2.3392420, 48.8517216 2.3369453, 48.8538085 2.3382792, 48.8524073 2.3397507, 48.8524893 2.3393624, 48.8523795 2.3394490, 48.8280277 2.3557522, 48.8761128 2.3302242, 48.8755958 2.3283907, 48.8760136 2.3310108, 48.8754564 2.3283800, 48.8758586 2.3298896, 48.8754384 2.3285619, 48.8758779 2.3299633, 48.8763654 2.3316481, 48.8763704 2.3313223, 48.8764858 2.3319975, 48.8304019 2.3341115, 48.8509886 2.3003532, 48.8381318 2.3517955, 48.8387946 2.3486773, 48.8304045 2.3475111, 48.8313480 2.3541827, 48.8303481 2.3510629, 48.8818730 2.3810389, 48.8822335 2.3814925, 48.8804194 2.3766425, 48.8836091 2.3810186, 48.8295968 2.3493740, 48.8298392 2.3491024, 48.8298648 2.3489985, 48.8299110 2.3492795, 48.8301553 2.3507953, 48.8303304 2.3510083, 48.8305184 2.3471025, 48.8310961 2.3541682, 48.8312123 2.3540959, 48.8313570 2.3543595, 48.8777590 2.3707497, 48.8777905 2.3707526, 48.8780028 2.3710523, 48.8787222 2.3744794, 48.8813097 2.3805063, 48.8816032 2.3808594, 48.8824847 2.3815501, 48.8827557 2.3814455, 48.8833951 2.3811772, 48.8834402 2.3811365, 48.8835118 2.3809656, 48.8846924 2.3795882, 48.8847828 2.3802243, 48.8367477 2.3065081, 48.8328697 2.3068297, 48.8342127 2.3084129, 48.8361118 2.3069082, 48.8364649 2.3061455, 48.8365007 2.3061630, 48.8365269 2.3066049, 48.8366412 2.3045647, 48.8386302 2.3085873, 48.8389963 2.3074140, 48.8758373 2.3459265, 48.8795087 2.3434753, 48.8317774 2.3387153, 48.8227114 2.3260174, 48.8228970 2.3250330, 48.8229323 2.3261674, 48.8230576 2.3243884, 48.8236717 2.3228847, 48.8237106 2.3225015, 48.8255735 2.3139108, 48.8782227 2.4227236, 48.8194422 2.3258214, 48.8528114 2.3539541, 48.8662716 2.4063088, 48.8663075 2.4062823, 48.8931864 2.3844167, 48.8917005 2.3612335, 48.8924455 2.3635357, 48.8372250 2.3524442, 48.8364615 2.3516931, 48.8469168 2.3372024, 48.8472894 2.3369695, 48.8472848 2.3371388, 48.8472825 2.3372754, 48.8472786 2.3374342, 48.8471150 2.3377021, 48.8470235 2.3376992, 48.8468998 2.3376922, 48.8467139 2.3376747, 48.8468199 2.3376864, 48.8465610 2.3369240, 48.8465595 2.3370711, 48.8465572 2.3372334, 48.8465533 2.3373735, 48.8467285 2.3366415, 48.8468584 2.3366543, 48.8469406 2.3366566, 48.8470351 2.3366718, 48.8471365 2.3366753, 48.8933622 2.3648120, 48.8225960 2.3611286, 48.8717792 2.3922236, 48.8261724 2.3543313, 48.8892294 2.3935497, 48.8750371 2.3453587, 48.8767354 2.3606489, 48.8767391 2.3608267, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8486339 2.4271392, 48.8486974 2.4273900, 48.8666073 2.3928050, 48.8688670 2.3900956, 48.8689000 2.3365552, 48.8691839 2.3358994, 48.8693989 2.3358078, 48.8694678 2.3358237, 48.8695047 2.3358723, 48.8695875 2.3358342, 48.8126004 2.3703630, 48.8208030 2.3633818, 48.8289063 2.3738456, 48.8282892 2.3724696, 48.8242585 2.3889696, 48.8348880 2.3450609, 48.8278106 2.3717446, 48.8277431 2.3716358, 48.8275512 2.3707206, 48.8274435 2.3705955, 48.8272993 2.3681039, 48.8205400 2.3633918, 48.8205631 2.3634931, 48.8224874 2.3626978, 48.8302412 2.3405881, 48.8759800 2.3435799, 48.8763927 2.3443424, 48.8646081 2.3352596, 48.8647343 2.3355750, 48.8647738 2.3356255, 48.8662103 2.3356323, 48.8759674 2.3436727, 48.8759783 2.3436839, 48.8760560 2.3436865, 48.8719299 2.3413389, 48.8602282 2.3444320, 48.8841247 2.3209960, 48.8832982 2.3234280, 48.8547918 2.3860308, 48.8547565 2.3859396, 48.8548329 2.3856345, 48.8545629 2.3851571, 48.8544138 2.3861508, 48.8539276 2.3869555, 48.8536262 2.3867848, 48.8532664 2.3873257, 48.8498132 2.3518796, 48.8561385 2.3685150, 48.8711280 2.3521453, 48.8498202 2.3789350, 48.8757138 2.3237237, 48.8331033 2.3705524, 48.8593988 2.3759303, 48.8926082 2.3632978, 48.8909612 2.3621700, 48.8273102 2.3225383, 48.8272887 2.3226595, 48.8790612 2.3664752, 48.8647712 2.3664594, 48.8488766 2.3550116, 48.8489122 2.3193174, 48.8489272 2.3523931, 48.8491216 2.3136783, 48.8491775 2.3141515, 48.8492908 2.3146445, 48.8493554 2.3527922, 48.8499990 2.3166689, 48.8615352 2.3424505, 48.8939441 2.3979076, 48.8952195 2.3624062, 48.8445465 2.3089024, 48.8962481 2.3594957, 48.8973562 2.3599476, 48.8947703 2.3652163, 48.8962268 2.3624023, 48.8949090 2.3637139, 48.8955708 2.3634069, 48.8948184 2.3632576, 48.8945415 2.3621745, 48.8948909 2.3621540, 48.8545746 2.3446665, 48.8550316 2.3449206, 48.8550827 2.3439980, 48.8444566 2.3093042, 48.8442882 2.3080071, 48.8487164 2.4345039, 48.8493257 2.4344654, 48.8486398 2.4347259, 48.8461374 2.3068822, 48.8467261 2.3064315, 48.8143845 2.3910545, 48.8143334 2.3910129, 48.8143773 2.3910574, 48.8140452 2.3913943, 48.8140840 2.3913640, 48.8141156 2.3913433, 48.8141376 2.3913145, 48.8142048 2.3912635, 48.8142626 2.3912184, 48.8143100 2.3911776, 48.8143190 2.3908976, 48.8143645 2.3911199, 48.8144044 2.3910816, 48.8144362 2.3910490, 48.8144472 2.3910433, 48.8144561 2.3909396, 48.8144575 2.3910253, 48.8144696 2.3910258, 48.8144879 2.3910104, 48.8146441 2.3908723, 48.8147573 2.3907901, 48.8149714 2.3905584, 48.8606121 2.3677689, 48.8607123 2.3679772, 48.8515765 2.3436771, 48.8203424 2.3209032, 48.8206096 2.3214393, 48.8521735 2.3442731, 48.8520404 2.3443625, 48.8515776 2.3438599, 48.8520835 2.3444093, 48.8518887 2.3442140, 48.8524757 2.3445678, 48.8530106 2.3457721, 48.8529435 2.3456985, 48.8528864 2.3462159, 48.8100238 2.3584472, 48.8099728 2.3598708, 48.8099570 2.3600672, 48.8351811 2.4063529, 48.8893267 2.4064616, 48.8929242 2.4019279, 48.8544579 2.3112189, 48.8654584 2.3691446, 48.8260647 2.3576772, 48.8627357 2.3116723, 48.8627432 2.3119541, 48.8627462 2.3120662, 48.8627508 2.3122393, 48.8627552 2.3124077, 48.8627567 2.3124638, 48.8627612 2.3126344, 48.8627658 2.3128087, 48.8627672 2.3128611, 48.8627732 2.3130879, 48.8627754 2.3131677, 48.8627792 2.3133147, 48.8627836 2.3134772, 48.8627883 2.3136547, 48.8627913 2.3137681, 48.8628323 2.3117173, 48.8628383 2.3119441, 48.8628413 2.3120562, 48.8628473 2.3122842, 48.8628503 2.3123977, 48.8628519 2.3124576, 48.8628563 2.3126244, 48.8628593 2.3127379, 48.8628609 2.3127971, 48.8628623 2.3128511, 48.8628683 2.3130779, 48.8628706 2.3131633, 48.8628744 2.3133047, 48.8628789 2.3134747, 48.8628834 2.3136447, 48.8628848 2.3137002, 48.8628864 2.3137581, 48.8265384 2.3420357, 48.8317429 2.3726646, 48.8325421 2.3667365, 48.8647931 2.3036486, 48.8650426 2.3079320, 48.8651506 2.3100983, 48.8657054 2.3060399, 48.8659467 2.3140142, 48.8659629 2.3037630, 48.8659879 2.3136076, 48.8660568 2.3081676, 48.8660748 2.3071977, 48.8665012 2.3048814, 48.8667360 2.3095710, 48.8668599 2.3158209, 48.8670494 2.3039249, 48.8672708 2.3058045, 48.8672794 2.3077726, 48.8673372 2.3120532, 48.8673797 2.3060703, 48.8674830 2.3038290, 48.8680834 2.3099634, 48.8683760 2.3086635, 48.8693965 2.3135036, 48.8694796 2.3064771, 48.8703477 2.3129777, 48.8706268 2.3098022, 48.8707930 2.3149783, 48.8709820 2.3087502, 48.8710261 2.3085538, 48.8710988 2.3093502, 48.8713220 2.3077780, 48.8713750 2.3160591, 48.8719350 2.3116565, 48.8721008 2.3124301, 48.8723380 2.3069699, 48.8723504 2.3086540, 48.8723813 2.3072537, 48.8726918 2.3152858, 48.8727122 2.3083838, 48.8727738 2.3101160, 48.8729778 2.3099637, 48.8732492 2.3145043, 48.8732979 2.3159042, 48.8734138 2.3132235, 48.8734291 2.3158992, 48.8735169 2.3158936, 48.8736893 2.3107682, 48.8739627 2.3082106, 48.8745355 2.3117236, 48.8763389 2.3111717, 48.8765865 2.3106761, 48.8831706 2.3184525, 48.8834100 2.3191983, 48.8836822 2.3187586, 48.8122399 2.3579504, 48.8108859 2.3580359, 48.8414487 2.3662536, 48.8415133 2.3664560, 48.8197193 2.3223837, 48.8194488 2.3232831, 48.8221288 2.3258121, 48.8845071 2.3703915, 48.8803180 2.3712520, 48.8531325 2.3448283, 48.8529010 2.3458674, 48.8530831 2.3451327, 48.8530967 2.3453771, 48.8532232 2.3449207, 48.8528548 2.3460331, 48.8530912 2.3454025, 48.8529158 2.3458178, 48.8528801 2.3459362, 48.8529135 2.3460822, 48.8530593 2.3452208, 48.8531271 2.3452514, 48.8529444 2.3459453, 48.8530349 2.3453279, 48.8528985 2.3461598, 48.8531949 2.3450333, 48.8531460 2.3451752, 48.8528383 2.3461107, 48.8529227 2.3457849, 48.8531071 2.3449244, 48.8530259 2.3454331, 48.8531325 2.3389945, 48.8528398 2.3392414, 48.8534928 2.3391049, 48.8600564 2.3566318, 48.8674198 2.3346001, 48.8296326 2.3575198, 48.8305375 2.3580300, 48.8845024 2.3699867, 48.8858375 2.3725175, 48.8856874 2.3721590, 48.8867667 2.3745936, 48.8866654 2.3743630, 48.8868944 2.3745974, 48.8876631 2.3761477, 48.8884174 2.3778947, 48.8817691 2.3705494, 48.8936524 2.3592349, 48.8944651 2.3595384, 48.8971804 2.3586921, 48.8982278 2.3591507, 48.8527458 2.3514040, 48.8528590 2.3510623, 48.8525635 2.3513635, 48.8528449 2.3519488, 48.8529095 2.3515447, 48.8497401 2.3508144, 48.8494708 2.3495778, 48.8331060 2.3547764, 48.8894150 2.3628554, 48.8850120 2.3563702, 48.8968947 2.3588877, 48.8984477 2.3690228, 48.8694647 2.3205041, 48.8708297 2.3198162, 48.8708454 2.3213869, 48.8709035 2.3189060, 48.8709852 2.3206588, 48.8711890 2.3169578, 48.8712229 2.3212990, 48.8713402 2.3210564, 48.8714517 2.3217836, 48.8715619 2.3188800, 48.8726833 2.3215369, 48.8733998 2.3194017, 48.8741242 2.3202099, 48.8741894 2.3226422, 48.8744426 2.3203559, 48.8744527 2.3192732, 48.8744579 2.3215681, 48.8746259 2.3170130, 48.8752101 2.3198480, 48.8752415 2.3228642, 48.8754143 2.3163173, 48.8756152 2.3185533, 48.8757410 2.3215885, 48.8758978 2.3194344, 48.8761481 2.3202830, 48.8764319 2.3157243, 48.8767020 2.3196440, 48.8767878 2.3193231, 48.8767945 2.3217772, 48.8768497 2.3189942, 48.8770537 2.3138386, 48.8771501 2.3228854, 48.8774521 2.3210244, 48.8775993 2.3114707, 48.8777530 2.3175110, 48.8777553 2.3150122, 48.8779285 2.3159181, 48.8779366 2.3224574, 48.8783761 2.3196887, 48.8786780 2.3137784, 48.8786980 2.3177660, 48.8789772 2.3189266, 48.8790239 2.3230057, 48.8792000 2.3158994, 48.8793082 2.3186672, 48.8793086 2.3140602, 48.8794483 2.3216115, 48.8795869 2.3214830, 48.8798755 2.3217055, 48.8800328 2.3155796, 48.8800529 2.3240220, 48.8801269 2.3198219, 48.8806145 2.3171109, 48.8807405 2.3153253, 48.8808722 2.3232632, 48.8813966 2.3233284, 48.8815205 2.3231048, 48.8820648 2.3194902, 48.8828840 2.3231572, 48.8832221 2.3217173, 48.8832818 2.3205676, 48.8833184 2.3234782, 48.8836440 2.3205811, 48.8839513 2.3200381, 48.8844774 2.3213549, 48.8917982 2.3501197, 48.8935018 2.3509687, 48.8941706 2.3509487, 48.8948571 2.3526912, 48.8951461 2.3495186, 48.8951672 2.3479407, 48.8954733 2.3497638, 48.8958043 2.3466479, 48.8970813 2.3526284, 48.8797258 2.3725494, 48.8115975 2.3864072, 48.8746584 2.3661215, 48.8414470 2.3175240, 48.8415020 2.3174490, 48.8189028 2.3234055, 48.8837788 2.3266314, 48.8839108 2.3249205, 48.8852020 2.3241350, 48.8853682 2.3292936, 48.8856102 2.3218509, 48.8856679 2.3248815, 48.8857203 2.3261448, 48.8859996 2.3218871, 48.8862175 2.3258772, 48.8862181 2.3241641, 48.8866205 2.3278364, 48.8867531 2.3232716, 48.8876128 2.3272353, 48.8876416 2.3334008, 48.8889318 2.3333614, 48.8890747 2.3323580, 48.8890880 2.3311581, 48.8893150 2.3416436, 48.8894222 2.3383989, 48.8895728 2.3368859, 48.8896888 2.3413595, 48.8899984 2.3294374, 48.8900358 2.3312974, 48.8900668 2.3339317, 48.8901027 2.3401433, 48.8907385 2.3380919, 48.8909771 2.3442157, 48.8909903 2.3390287, 48.8910713 2.3414735, 48.8912076 2.3431058, 48.8912717 2.3412804, 48.8915159 2.3366767, 48.8916237 2.3448218, 48.8916510 2.3345360, 48.8916848 2.3444219, 48.8918050 2.3441336, 48.8922025 2.3425036, 48.8922824 2.3448656, 48.8923980 2.3442772, 48.8924156 2.3412747, 48.8924659 2.3417125, 48.8930627 2.3407026, 48.8932064 2.3396066, 48.8932281 2.3430294, 48.8933595 2.3403151, 48.8934775 2.3440514, 48.8935120 2.3374245, 48.8935711 2.3454461, 48.8935810 2.3458771, 48.8938104 2.3471913, 48.8939486 2.3457817, 48.8943770 2.3440724, 48.8946627 2.3439619, 48.8946961 2.3455850, 48.8948359 2.3447136, 48.8214977 2.3568478, 48.8900962 2.4054925, 48.8901524 2.4054918, 48.8903555 2.4067924, 48.8870925 2.4056057, 48.8275383 2.3571726, 48.8083429 2.3631293, 48.8491265 2.3038627, 48.8507385 2.3006549, 48.8506165 2.3004771, 48.8290807 2.3169825, 48.8676694 2.3433379, 48.8527669 2.3446610, 48.8521288 2.3444359, 48.8526719 2.3446864, 48.8528975 2.3446411, 48.8527110 2.3446730, 48.8528195 2.3446512, 48.8529973 2.3446935, 48.8526334 2.3445601, 48.8177596 2.3252324, 48.8786911 2.3684186, 48.8788154 2.3656788, 48.8447327 2.3911137, 48.8266940 2.3666020, 48.8243545 2.3680684, 48.8539433 2.3435961, 48.8340933 2.3218873, 48.8646344 2.3327860, 48.8655969 2.3308553, 48.8657286 2.3334876, 48.8664929 2.3287391, 48.8673765 2.3262936, 48.8677722 2.3249917, 48.8680096 2.3313520, 48.8680505 2.3267260, 48.8685480 2.3303190, 48.8686100 2.3235942, 48.8687745 2.3254282, 48.8689925 2.3292440, 48.8694014 2.3319283, 48.8697270 2.3263148, 48.8706099 2.3232470, 48.8706166 2.3243388, 48.8709664 2.3234796, 48.8711366 2.3230162, 48.8712363 2.3262154, 48.8718789 2.3272815, 48.8719060 2.3281941, 48.8722322 2.3288404, 48.8723480 2.3324620, 48.8724060 2.3265853, 48.8724193 2.3238584, 48.8726193 2.3262478, 48.8726680 2.3334573, 48.8727354 2.3250721, 48.8727438 2.3329606, 48.8728787 2.3306360, 48.8729284 2.3354060, 48.8730920 2.3308914, 48.8730996 2.3275514, 48.8732548 2.3247994, 48.8736376 2.3310868, 48.8738515 2.3259516, 48.8742680 2.3333269, 48.8747386 2.3248354, 48.8749551 2.3312402, 48.8751747 2.3396132, 48.8752122 2.3357476, 48.8752165 2.3334654, 48.8752649 2.3333896, 48.8752695 2.3330619, 48.8753468 2.3370991, 48.8759733 2.3421392, 48.8762638 2.3331757, 48.8763949 2.3386268, 48.8764861 2.3412119, 48.8765118 2.3416086, 48.8765467 2.3426191, 48.8765525 2.3407254, 48.8766430 2.3274960, 48.8769196 2.3354993, 48.8770614 2.3311360, 48.8770812 2.3318997, 48.8773557 2.3355444, 48.8776934 2.3402110, 48.8778139 2.3394567, 48.8779438 2.3320302, 48.8779976 2.3279206, 48.8780089 2.3443801, 48.8780194 2.3381422, 48.8782930 2.3509068, 48.8783261 2.3299445, 48.8784130 2.3399540, 48.8784144 2.3373688, 48.8784204 2.3453814, 48.8784242 2.3410929, 48.8788021 2.3280473, 48.8788208 2.3450926, 48.8789477 2.3345873, 48.8789540 2.3497944, 48.8789817 2.3364052, 48.8790152 2.3442312, 48.8791524 2.3478308, 48.8792245 2.3364947, 48.8794328 2.3511004, 48.8795428 2.3474051, 48.8797650 2.3410166, 48.8798667 2.3435948, 48.8800118 2.3250967, 48.8801225 2.3511238, 48.8801315 2.3250307, 48.8801686 2.3312200, 48.8802061 2.3257321, 48.8802837 2.3516584, 48.8804027 2.3407672, 48.8805673 2.3491621, 48.8806093 2.3318185, 48.8806276 2.3342233, 48.8806317 2.3259723, 48.8806957 2.3516043, 48.8807210 2.3347923, 48.8807408 2.3286691, 48.8810141 2.3450431, 48.8810221 2.3415214, 48.8810991 2.3364447, 48.8812583 2.3279141, 48.8814171 2.3485814, 48.8815470 2.3244898, 48.8816086 2.3479024, 48.8817961 2.3422508, 48.8819707 2.3296270, 48.8819961 2.3237258, 48.8820155 2.3246949, 48.8820528 2.3236882, 48.8820617 2.3355547, 48.8820804 2.3337251, 48.8820947 2.3287593, 48.8821383 2.3378924, 48.8826150 2.3420785, 48.8827482 2.3396221, 48.8828033 2.3263736, 48.8830059 2.3465855, 48.8830771 2.3312226, 48.8832673 2.3348643, 48.8832945 2.3336845, 48.8834766 2.3297369, 48.8835589 2.3423646, 48.8836138 2.3448442, 48.8836512 2.3319569, 48.8836819 2.3303465, 48.8837839 2.3439078, 48.8839960 2.3307500, 48.8840949 2.3417916, 48.8841601 2.3384809, 48.8841806 2.3395877, 48.8842271 2.3525314, 48.8844041 2.3451523, 48.8844340 2.3551288, 48.8844369 2.3439456, 48.8844672 2.3380435, 48.8845950 2.3470065, 48.8846849 2.3360733, 48.8847614 2.3484352, 48.8848492 2.3379967, 48.8849222 2.3308445, 48.8849553 2.3294255, 48.8850560 2.3541346, 48.8849687 2.3507256, 48.8850502 2.3520744, 48.8851030 2.3511582, 48.8851641 2.3340439, 48.8852210 2.3497901, 48.8855079 2.3541642, 48.8856116 2.3396011, 48.8856228 2.3498339, 48.8857035 2.3557329, 48.8857606 2.3406887, 48.8858871 2.3558589, 48.8860287 2.3397744, 48.8860550 2.3483599, 48.8861046 2.3415390, 48.8861265 2.3464882, 48.8862752 2.3341623, 48.8865084 2.3396743, 48.8865590 2.3442373, 48.8871894 2.3375292, 48.8872573 2.3513205, 48.8873945 2.3433426, 48.8875101 2.3353784, 48.8876064 2.3413781, 48.8878339 2.3486082, 48.8879339 2.3561388, 48.8882096 2.3467457, 48.8881956 2.3421517, 48.8883160 2.3513066, 48.8883534 2.3525373, 48.8885554 2.3540671, 48.8888058 2.3559584, 48.8890100 2.3531280, 48.8893492 2.3449997, 48.8896158 2.3461133, 48.8900020 2.3515230, 48.8903302 2.3535017, 48.8903480 2.3531599, 48.8904285 2.3486604, 48.8905130 2.3500905, 48.8910509 2.3516036, 48.8757681 2.3578797, 48.8758238 2.3578824, 48.8762217 2.3586964, 48.8570381 2.3480446, 48.8575762 2.3494199, 48.8579164 2.3467953, 48.8580648 2.3466748, 48.8586813 2.3485587, 48.8590149 2.3473254, 48.8593750 2.3407877, 48.8595485 2.3436063, 48.8596015 2.3467635, 48.8603309 2.3435680, 48.8609387 2.3448599, 48.8611214 2.3446695, 48.8613203 2.3431014, 48.8613826 2.3399197, 48.8615030 2.3537880, 48.8615771 2.3418562, 48.8616112 2.3441771, 48.8616280 2.3393880, 48.8618802 2.3507259, 48.8623333 2.3389057, 48.8623677 2.3520008, 48.8623818 2.3418636, 48.8626127 2.3542906, 48.8629079 2.3532453, 48.8631055 2.3358246, 48.8631800 2.3527500, 48.8633003 2.3336176, 48.8633189 2.3466557, 48.8633520 2.3337895, 48.8635365 2.3357222, 48.8636998 2.3399068, 48.8639621 2.3420802, 48.8642335 2.3453599, 48.8645472 2.3463386, 48.8646226 2.3426480, 48.8646870 2.3406606, 48.8647941 2.3511884, 48.8648400 2.3355843, 48.8651267 2.3429107, 48.8651708 2.3405472, 48.8652931 2.3537230, 48.8653326 2.3552559, 48.8653611 2.3524876, 48.8654999 2.3423967, 48.8658039 2.3372520, 48.8661711 2.3384355, 48.8662258 2.3403557, 48.8666590 2.3541047, 48.8667309 2.3520789, 48.8668074 2.3494867, 48.8669351 2.3443363, 48.8670834 2.3358592, 48.8673540 2.3406581, 48.8675796 2.3535504, 48.8677334 2.3377298, 48.8678514 2.3362272, 48.8678705 2.3451971, 48.8679636 2.3511355, 48.8679881 2.3352776, 48.8680475 2.3479599, 48.8680796 2.3480760, 48.8681299 2.3505334, 48.8681721 2.3349800, 48.8683093 2.3371647, 48.8683443 2.3411932, 48.8683889 2.3341099, 48.8685980 2.3469430, 48.8688537 2.3494779, 48.8688643 2.3391192, 48.8688978 2.3365035, 48.8688994 2.3348917, 48.8690412 2.3516028, 48.8691748 2.3344736, 48.8692087 2.3515210, 48.8692112 2.3456861, 48.8692485 2.3385287, 48.8693074 2.3454967, 48.8695829 2.3340383, 48.8698140 2.3396216, 48.8699372 2.3487469, 48.8700523 2.3413779, 48.8705156 2.3446299, 48.8706302 2.3373159, 48.8707194 2.3472729, 48.8707212 2.3496908, 48.8707331 2.3434405, 48.8710744 2.3351823, 48.8711554 2.3357637, 48.8711662 2.3521201, 48.8712410 2.3361569, 48.8712698 2.3534684, 48.8713594 2.3457604, 48.8714836 2.3414477, 48.8715326 2.3458904, 48.8723391 2.3467595, 48.8723480 2.3370773, 48.8723487 2.3487518, 48.8723966 2.3449630, 48.8725909 2.3501335, 48.8726445 2.3501474, 48.8727987 2.3405829, 48.8729581 2.3428034, 48.8731471 2.3395601, 48.8735640 2.3406389, 48.8739829 2.3481547, 48.8740470 2.3477340, 48.8740527 2.3421136, 48.8740548 2.3433864, 48.8740592 2.3425436, 48.8741494 2.3421417, 48.8742044 2.3397071, 48.8758785 2.3461185, 48.8761600 2.3483493, 48.8769202 2.3525222, 48.8770470 2.3471076, 48.8773771 2.3538771, 48.8774205 2.3535167, 48.8775902 2.3506534, 48.8776601 2.3553429, 48.8783861 2.3554997, 48.8787287 2.3546414, 48.8791515 2.3558469, 48.8797101 2.3534886, 48.8820092 2.3523456, 48.8823077 2.3510798, 48.8830825 2.3511342, 48.8585765 2.3864186, 48.8516699 2.3435357, 48.8530171 2.3437086, 48.8527079 2.3443015, 48.8518891 2.3436357, 48.8528599 2.3440994, 48.8410792 2.3509139, 48.8542344 2.3429198, 48.8957541 2.3476530, 48.8957586 2.3475660, 48.8539085 2.3086472, 48.8539541 2.3074346, 48.8551010 2.3095913, 48.8551532 2.3028063, 48.8552457 2.3067057, 48.8553363 2.3049928, 48.8553675 2.3068985, 48.8553929 2.3034896, 48.8559676 2.3059142, 48.8561045 2.3013326, 48.8562930 2.3025878, 48.8563056 2.3087302, 48.8563317 2.3096037, 48.8565079 2.3059903, 48.8568139 2.3076562, 48.8568319 2.3281152, 48.8571848 2.3085841, 48.8573852 2.3049322, 48.8574009 2.3030910, 48.8575384 2.3042998, 48.8578092 2.3321558, 48.8578154 2.3085010, 48.8578522 2.3192642, 48.8579820 2.3153470, 48.8580034 2.3086802, 48.8580229 2.3057868, 48.8581278 2.3108897, 48.8582323 2.3294789, 48.8583538 2.3295573, 48.8585346 2.3026259, 48.8585840 2.3199152, 48.8587092 2.3291167, 48.8587126 2.3247215, 48.8587381 2.3315547, 48.8589269 2.3283811, 48.8590443 2.3031744, 48.8590768 2.3305368, 48.8591000 2.3261231, 48.8591132 2.3179817, 48.8591582 2.3049131, 48.8594540 2.3062761, 48.8596508 2.3074975, 48.8596523 2.3226562, 48.8596919 2.3225563, 48.8597389 2.3018836, 48.8599169 2.3108575, 48.8599536 2.3248067, 48.8599563 2.3245226, 48.8600667 2.3148082, 48.8600752 2.3243791, 48.8602078 2.3234366, 48.8604166 2.3095659, 48.8606849 2.3259641, 48.8607318 2.3179448, 48.8607741 2.3023809, 48.8608367 2.3113974, 48.8608588 2.3201641, 48.8610382 2.3054909, 48.8611677 2.3056568, 48.8613121 2.3192107, 48.8622880 2.3059787, 48.8624061 2.3113873, 48.8653840 2.3274850, 48.8540526 2.3381367, 48.8433449 2.3251164, 48.8550540 2.3941000, 48.8560955 2.3926896, 48.8578050 2.3996283, 48.8582358 2.3823367, 48.8586186 2.3835107, 48.8592411 2.3830225, 48.8601008 2.3822123, 48.8626812 2.3797075, 48.8630453 2.3672473, 48.8635008 2.3671098, 48.8634092 2.3790356, 48.8644595 2.3839203, 48.8648530 2.3666639, 48.8657480 2.3705095, 48.8680948 2.3655417, 48.8682070 2.3654610, 48.8687325 2.3631261, 48.8740998 2.3453668, 48.8452783 2.3021757, 48.8822164 2.3337987, 48.8461635 2.4121025, 48.8654497 2.3690938, 48.8709594 2.3479984, 48.8660577 2.3461115, 48.8091638 2.3627988, 48.8350277 2.3205989, 48.8751006 2.3400657, 48.8748884 2.3397356, 48.8757351 2.3405971, 48.8750444 2.3389313, 48.8871638 2.3511635, 48.8315787 2.3542019, 48.8336520 2.3101620, 48.8337528 2.3087365, 48.8347380 2.3111012, 48.8348521 2.3075912, 48.8351341 2.3079342, 48.8354547 2.3057014, 48.8356004 2.3111710, 48.8357565 2.3059665, 48.8358801 2.3060665, 48.8361740 2.3098463, 48.8363383 2.3097267, 48.8366412 2.3045647, 48.8374548 2.3058579, 48.8374548 2.3080728, 48.8379248 2.3111213, 48.8379890 2.3069174, 48.8384950 2.3052994, 48.8385040 2.3067669, 48.8385066 2.3122890, 48.8386486 2.3135249, 48.8386719 2.3078559, 48.8386741 2.3067215, 48.8386877 2.3035456, 48.8386971 2.3115691, 48.8387412 2.3154065, 48.8393646 2.3070353, 48.8394827 2.3080856, 48.8397488 2.3061030, 48.8404963 2.3049668, 48.8405816 2.3086616, 48.8410500 2.3026163, 48.8413523 2.3073527, 48.8415111 2.3021720, 48.8416574 2.3083906, 48.8418418 2.3033696, 48.8419435 2.3093074, 48.8423425 2.3021226, 48.8423676 2.3065419, 48.8435213 2.3080903, 48.8436881 2.3022154, 48.8437389 2.3024471, 48.8438234 2.3069381, 48.8444024 2.3089223, 48.8457141 2.3051500, 48.8458276 2.3037371, 48.8458503 2.3041384, 48.8463648 2.3074017, 48.8465226 2.3068476, 48.8470290 2.3104710, 48.8472268 2.3092341, 48.8472459 2.3076019, 48.8476609 2.3090669, 48.8480234 2.3010758, 48.8485462 2.3085865, 48.8496156 2.3012326, 48.8499794 2.3076988, 48.8501100 2.3060241, 48.8501962 2.3016109, 48.8506514 2.3086796, 48.8507327 2.3114270, 48.8521368 2.3091381, 48.8525064 2.3091028, 48.8525170 2.3003130, 48.8714453 2.3779907, 48.8385936 2.4043447, 48.8419332 2.3977625, 48.8555664 2.3791618, 48.8101600 2.3619450, 48.8926487 2.3594311, 48.8753587 2.3704700, 48.8683317 2.3921668, 48.8794010 2.3973642, 48.8831921 2.3953289, 48.8381765 2.3815493, 48.8435530 2.3220799, 48.8345335 2.3675558, 48.8528174 2.3454656, 48.8524768 2.3451560, 48.8528047 2.3455506, 48.8522237 2.3452202, 48.8528366 2.3455838, 48.8520545 2.3450880, 48.8524991 2.3448569, 48.8523811 2.3455175, 48.8523985 2.3454156, 48.8526936 2.3454400, 48.8518297 2.3444041, 48.8524942 2.3450079, 48.8525154 2.3452198, 48.8525300 2.3444340, 48.8524984 2.3449165, 48.8523948 2.3451403, 48.8526323 2.3452414, 48.8525589 2.3451535, 48.8523556 2.3455883, 48.8527431 2.3454930, 48.8525232 2.3451020, 48.8526255 2.3453560, 48.8524246 2.3449029, 48.8526532 2.3453925, 48.8527658 2.3454086, 48.8524155 2.3453426, 48.8525696 2.3452847, 48.8527323 2.3453722, 48.8482895 2.4084728, 48.8466594 2.4106749, 48.8479317 2.4084678, 48.8443704 2.4109328, 48.8727300 2.4014992, 48.8330093 2.3868281, 48.8956082 2.3863617, 48.8963229 2.3877822, 48.8966783 2.3884868, 48.8717878 2.3638160, 48.8829241 2.3432202, 48.8453825 2.3103100, 48.8507735 2.3622964, 48.8468849 2.3100155, 48.8731139 2.3807450, 48.8903381 2.3486643, 48.8905361 2.3482493, 48.8690065 2.3742189, 48.8437820 2.3881621, 48.8437338 2.3880357, 48.8524106 2.3862003, 48.8485041 2.3805544, 48.8721796 2.3274785, 48.8715853 2.3272917, 48.8694647 2.3205041, 48.8707068 2.3177487, 48.8708297 2.3198162, 48.8708454 2.3213869, 48.8709035 2.3189060, 48.8709852 2.3206588, 48.8711890 2.3169578, 48.8712229 2.3212990, 48.8713402 2.3210564, 48.8714517 2.3217836, 48.8715619 2.3188800, 48.8726833 2.3215369, 48.8733998 2.3194017, 48.8734458 2.3215269, 48.8734490 2.3214676, 48.8737552 2.3223785, 48.8741242 2.3202099, 48.8744426 2.3203559, 48.8744527 2.3192732, 48.8746259 2.3170130, 48.8751010 2.3174803, 48.8752415 2.3228642, 48.8754143 2.3163173, 48.8756152 2.3185533, 48.8760860 2.3210935, 48.8764369 2.3177417, 48.8767945 2.3217772, 48.8770537 2.3138386, 48.8771501 2.3228854, 48.8774521 2.3210244, 48.8775993 2.3114707, 48.8777530 2.3175110, 48.8777553 2.3150122, 48.8779285 2.3159181, 48.8779366 2.3224574, 48.8783761 2.3196887, 48.8786780 2.3137784, 48.8786980 2.3177660, 48.8789772 2.3189266, 48.8790239 2.3230057, 48.8792000 2.3158994, 48.8793082 2.3186672, 48.8793086 2.3140602, 48.8794483 2.3216115, 48.8795869 2.3214830, 48.8798755 2.3217055, 48.8800328 2.3155796, 48.8800529 2.3240220, 48.8801269 2.3198219, 48.8806145 2.3171109, 48.8807405 2.3153253, 48.8808722 2.3232632, 48.8813966 2.3233284, 48.8815205 2.3231048, 48.8820648 2.3194902, 48.8832221 2.3217173, 48.8832818 2.3205676, 48.8833184 2.3234782, 48.8839513 2.3200381, 48.8917982 2.3501197, 48.8935018 2.3509687, 48.8941706 2.3509487, 48.8948571 2.3526912, 48.8951461 2.3495186, 48.8951672 2.3479407, 48.8954733 2.3497638, 48.8958043 2.3466479, 48.8970813 2.3526284, 48.8646705 2.3697151, 48.8543573 2.3136915, 48.8884177 2.3743799, 48.8480006 2.4345439, 48.8243767 2.3882824, 48.8240361 2.3627306, 48.8222398 2.3591920, 48.8474387 2.3948976, 48.8455733 2.3932777, 48.8444922 2.3906935, 48.8475003 2.3947757, 48.8441015 2.3902675, 48.8442066 2.3901213, 48.8442986 2.3903755, 48.8455774 2.3934588, 48.8458523 2.3940231, 48.8458668 2.3928146, 48.8667163 2.3367639, 48.8476545 2.3944723, 48.8481499 2.3941327, 48.8596625 2.3487464, 48.8236296 2.3258107, 48.8183865 2.3239908, 48.8184006 2.3239280, 48.8182338 2.3244286, 48.8274032 2.3423677, 48.8277079 2.3495286, 48.8314922 2.3442625, 48.8320979 2.3443846, 48.8367757 2.3452596, 48.8155824 2.3602430, 48.8155033 2.3602627, 48.8260107 2.3418204, 48.8253534 2.3417072, 48.8275172 2.3481095, 48.8232984 2.3491235, 48.8245450 2.3642314, 48.8649652 2.3469748, 48.8548426 2.3031870, 48.8548827 2.3032421, 48.8577877 2.3006194, 48.8596013 2.3072329, 48.8600760 2.3280535, 48.8612403 2.3243984, 48.8615577 2.3576761, 48.8626940 2.3099487, 48.8627569 2.3393126, 48.8629258 2.3030795, 48.8629949 2.3080187, 48.8630650 2.3165032, 48.8635613 2.3394544, 48.8322518 2.3505076, 48.8274091 2.3702950, 48.8262624 2.3422039, 48.8170719 2.3295227, 48.8171046 2.3289082, 48.8172653 2.3269485, 48.8171141 2.3283805, 48.8172737 2.3276440, 48.8655847 2.3476269, 48.8717156 2.3724284, 48.8682865 2.3740040, 48.8557030 2.3747134, 48.8343678 2.3941240, 48.8457586 2.3270884, 48.8529574 2.3648321, 48.8210463 2.3725549, 48.8258853 2.3768824, 48.8216635 2.3641183, 48.8339084 2.3226213, 48.8394410 2.3322130, 48.8302211 2.3529383, 48.8659387 2.3929440, 48.8475088 2.4104704, 48.8474749 2.4107917, 48.8686052 2.3443989, 48.8187770 2.3236463, 48.8186881 2.3240918, 48.8186575 2.3242610, 48.8184393 2.3244621, 48.8189946 2.3236282, 48.8735457 2.3708331, 48.8265121 2.3465625, 48.8321818 2.3392750, 48.8293214 2.3692986, 48.8508705 2.3623119, 48.8512015 2.3822530, 48.8514794 2.3101353, 48.8540997 2.3239460, 48.8541902 2.3194979, 48.8550561 2.3402771, 48.8600928 2.3731117, 48.8292031 2.3439087, 48.8910518 2.3314128, 48.8907746 2.3312473, 48.8490054 2.3495877, 48.8537886 2.3474561, 48.8454569 2.3021602, 48.8173425 2.3289478, 48.8535790 2.3638481, 48.8571030 2.3539440, 48.8573414 2.3540716, 48.8574462 2.3575428, 48.8630086 2.3362399, 48.8631579 2.3415886, 48.8632373 2.3412593, 48.8653506 2.3423662, 48.8670831 2.3356438, 48.8744871 2.3117910, 48.8747123 2.3133715, 48.8461901 2.3512999, 48.8770585 2.3479815, 48.8558171 2.3591925, 48.8155795 2.3589085, 48.8421369 2.3176494, 48.8422999 2.3174583, 48.8428342 2.3162838, 48.8429747 2.3188550, 48.8433254 2.3137596, 48.8434671 2.3141943, 48.8436537 2.3222563, 48.8444891 2.3116986, 48.8445846 2.3211161, 48.8446144 2.3243851, 48.8452204 2.3187649, 48.8455784 2.3239099, 48.8455809 2.3219769, 48.8459065 2.3118982, 48.8462631 2.3193835, 48.8463396 2.3127780, 48.8466040 2.3190709, 48.8467670 2.3127162, 48.8474660 2.3160188, 48.8474753 2.3165293, 48.8476592 2.3121381, 48.8477851 2.3195679, 48.8479950 2.3233385, 48.8478094 2.3139811, 48.8492009 2.3142460, 48.8497021 2.3197907, 48.8498155 2.3199511, 48.8499241 2.3132717, 48.8501017 2.3175896, 48.8501349 2.3249523, 48.8504140 2.3240365, 48.8503875 2.3142865, 48.8507929 2.3238718, 48.8508108 2.3194005, 48.8508134 2.3132588, 48.8509410 2.3193307, 48.8510338 2.3192879, 48.8513602 2.3137134, 48.8516479 2.3197110, 48.8516519 2.3193545, 48.8516964 2.3160855, 48.8517388 2.3252453, 48.8523746 2.3262806, 48.8524136 2.3173189, 48.8527947 2.3190850, 48.8528415 2.3291596, 48.8530951 2.3262349, 48.8532135 2.3270320, 48.8535574 2.3151657, 48.8535809 2.3141731, 48.8536440 2.3299961, 48.8541301 2.3312281, 48.8544570 2.3287727, 48.8545108 2.3146096, 48.8547795 2.3146348, 48.8550665 2.3191598, 48.8552749 2.3279053, 48.8553640 2.3179921, 48.8554022 2.3301476, 48.8556439 2.3298387, 48.8557141 2.3235223, 48.8559870 2.3271496, 48.8560628 2.3170538, 48.8563335 2.3315077, 48.8563459 2.3239987, 48.8563942 2.3210916, 48.8565349 2.3212197, 48.8566110 2.3416102, 48.8568588 2.3197826, 48.8569854 2.3383301, 48.8570093 2.3414970, 48.8570242 2.3422386, 48.8572420 2.3380131, 48.8577451 2.3350889, 48.8534312 2.3389430, 48.8581170 2.3176186, 48.8518377 2.3336366, 48.8736489 2.3149511, 48.8754797 2.3480757, 48.8466623 2.4348343, 48.8776068 2.3489868, 48.8620665 2.3838398, 48.8879018 2.3544119, 48.8912273 2.3652498, 48.8344271 2.3454806, 48.8344685 2.3455658, 48.8169918 2.3258616, 48.8235887 2.3709824, 48.8190595 2.3486008, 48.8176445 2.3259843, 48.8176444 2.3258395, 48.8173940 2.3297916, 48.8171085 2.3312786, 48.8171734 2.3308750, 48.8429321 2.3245088, 48.8425774 2.3246010, 48.8379338 2.3451570, 48.8669596 2.3540803, 48.8342486 2.3425441, 48.8342162 2.3447405, 48.8343274 2.3449900, 48.8342849 2.3425292, 48.8813835 2.3281151, 48.8878510 2.3535887, 48.8310392 2.3425080, 48.8308265 2.3530126, 48.8275984 2.3335328, 48.8826169 2.3296364, 48.8831199 2.3303330, 48.8834005 2.3305918, 48.8453508 2.4347565, 48.8462119 2.4348196, 48.8462654 2.4348179, 48.8458099 2.4348069, 48.8617117 2.3497830, 48.8261489 2.3578995, 48.8597393 2.3087639, 48.8598677 2.3086797, 48.8366915 2.3872945, 48.8358873 2.3963035, 48.8358890 2.3866572, 48.8359297 2.3867278, 48.8359554 2.3960408, 48.8359725 2.3959740, 48.8359742 2.3867660, 48.8361094 2.3872805, 48.8362994 2.3876544, 48.8363676 2.3944462, 48.8365365 2.3936955, 48.8367867 2.3928240, 48.8367894 2.3928135, 48.8367966 2.3927857, 48.8914513 2.4007092, 48.8347265 2.3446963, 48.8910795 2.4008572, 48.8378379 2.3473550, 48.8348733 2.3446364, 48.8183932 2.3258641, 48.8180636 2.3258685, 48.8192793 2.3258826, 48.8185791 2.3258552, 48.8184872 2.3258565, 48.8191025 2.3258715, 48.8368314 2.3382202, 48.8305790 2.3195353, 48.8430784 2.3847046, 48.8434945 2.3838411, 48.8451050 2.3806444, 48.8451648 2.3805083, 48.8452255 2.3803788, 48.8466206 2.4134552, 48.8530692 2.4125589, 48.8569190 2.4110486, 48.8647596 2.4089845, 48.8671280 2.4091658, 48.8673068 2.4087318, 48.8678522 2.4092408, 48.8718692 2.4084946, 48.8729156 2.4089018, 48.8730227 2.4088436, 48.8774817 2.4062578, 48.8799062 2.4010873, 48.8808314 2.4005187, 48.8827476 2.3997867, 48.8837604 2.3973570, 48.8853759 2.3967693, 48.8891501 2.3919739, 48.8921011 2.3883839, 48.8939074 2.3869648, 48.8950741 2.3853043, 48.8965893 2.3846935, 48.8974790 2.3852300, 48.8484552 2.3315803, 48.8478188 2.3317288, 48.8475857 2.3296611, 48.8470992 2.3320504, 48.8478953 2.3316238, 48.8502142 2.3307201, 48.8661080 2.3480098, 48.8514201 2.3758635, 48.8774505 2.3685222, 48.8678023 2.3499020, 48.8678124 2.3498067, 48.8471588 2.3719205, 48.8504635 2.3752653, 48.8606025 2.3457538, 48.8444091 2.3842831, 48.8600001 2.3452392, 48.8611778 2.3447865, 48.8442555 2.3844474, 48.8601414 2.3453350, 48.8449869 2.3820879, 48.8461498 2.3724726, 48.8465954 2.3717420, 48.8488509 2.3782764, 48.8489671 2.3729974, 48.8500845 2.3748802, 48.8506003 2.3754366, 48.8607328 2.3456697, 48.8612868 2.3461069, 48.8666717 2.3501829, 48.8667659 2.3491772, 48.8355408 2.3093378, 48.8592270 2.3236594, 48.8624657 2.3115669, 48.8779515 2.3440896, 48.8128540 2.3871804, 48.8454913 2.3116790, 48.8455110 2.3111536, 48.8669202 2.3834926, 48.8689269 2.3715327, 48.8759321 2.3727655, 48.8984073 2.3709403, 48.8853124 2.3253739, 48.8110214 2.3782777, 48.8094063 2.3746169, 48.8525740 2.3134937, 48.8525833 2.3135404, 48.8526033 2.3136415, 48.8689288 2.3715403, 48.8424961 2.3064436, 48.8440160 2.3238242, 48.8702188 2.3108394, 48.8919944 2.3633128, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8697269 2.3949223, 48.8375130 2.3651955, 48.8769773 2.3262750, 48.8753264 2.3590187, 48.8799626 2.3536843, 48.8413218 2.3206480, 48.8455223 2.3425685, 48.8536307 2.3312600, 48.8213106 2.3411460, 48.8239590 2.3308277, 48.8239711 2.3514442, 48.8239998 2.3510117, 48.8241733 2.3533935, 48.8244865 2.3278048, 48.8245804 2.3396886, 48.8246044 2.3382584, 48.8248799 2.3536513, 48.8256032 2.3217938, 48.8266135 2.3534752, 48.8269262 2.3513163, 48.8281250 2.3216386, 48.8281819 2.3155262, 48.8289185 2.3222763, 48.8296026 2.3178273, 48.8324706 2.3133021, 48.8333400 2.3145004, 48.8337885 2.3608913, 48.8356331 2.4060202, 48.8360628 2.4058718, 48.8367584 2.3566102, 48.8368296 2.3568351, 48.8459364 2.3679712, 48.8488033 2.3687487, 48.8614046 2.3531748, 48.8594247 2.3541247, 48.8594211 2.3542124, 48.8334174 2.3618852, 48.8360650 2.3596394, 48.8362427 2.3596851, 48.8366167 2.3595885, 48.8366724 2.3596246, 48.8376250 2.3599216, 48.8850419 2.3744732, 48.8838417 2.3719439, 48.8837963 2.3717833, 48.8850102 2.3744075, 48.8853557 2.3751166, 48.8384611 2.3605477, 48.8847187 2.3693992, 48.8843398 2.3684081, 48.8846076 2.3697324, 48.8847187 2.3693992, 48.8407489 2.3325635, 48.8515711 2.3623262, 48.8650085 2.3673694, 48.8629079 2.3673391, 48.8908885 2.3778488, 48.8627650 2.3673900, 48.8671353 2.3480000, 48.8467474 2.3783883, 48.8471376 2.3781538, 48.8420534 2.3270460, 48.8712921 2.3250770, 48.8674112 2.3229787, 48.8718050 2.3260042, 48.8711680 2.3244832, 48.8705122 2.3238078, 48.8704742 2.3237783, 48.8704346 2.3237502, 48.8689760 2.3246971, 48.8699476 2.3254321, 48.8696624 2.3230123, 48.8697219 2.3226142, 48.8116113 2.3888455, 48.8121801 2.3883198, 48.8294964 2.3565503, 48.8291546 2.3568286, 48.8295389 2.3564974, 48.8424086 2.3513701, 48.8519768 2.3740283, 48.8529356 2.3706766, 48.8403450 2.3126650, 48.8938413 2.3472931, 48.8942404 2.3460471, 48.8942255 2.3458385, 48.8548397 2.3327630, 48.8550742 2.3329300, 48.8549423 2.3328154, 48.8297226 2.3219729, 48.8731938 2.3290960, 48.8325364 2.3417797, 48.8314181 2.3371743, 48.8327337 2.3418100, 48.8330472 2.3399437, 48.8339254 2.3432235, 48.8338525 2.3429060, 48.8329977 2.3417898, 48.8563876 2.4098516, 48.8466055 2.3466048, 48.8934234 2.3381216, 48.8929811 2.3381482, 48.8839216 2.3271785, 48.8839775 2.3271608, 48.8839670 2.3273081, 48.8841275 2.3270884, 48.8845343 2.3268965, 48.8846683 2.3268418, 48.8855156 2.3264429, 48.8862771 2.3262148, 48.8861526 2.3261584, 48.8865223 2.3259623, 48.8869014 2.3259253, 48.8871792 2.3257982, 48.8875030 2.3256728, 48.8874194 2.3255802, 48.8572041 2.3519819, 48.8572192 2.3519137, 48.8572350 2.3518428, 48.8572508 2.3517719, 48.8572661 2.3517033, 48.8560656 2.3513775, 48.8560820 2.3513063, 48.8560988 2.3512327, 48.8561157 2.3511592, 48.8561320 2.3510885, 48.8919499 2.3369440, 48.8594141 2.3491854, 48.8605440 2.3490975, 48.8589870 2.3482181, 48.8714017 2.3382665, 48.8732628 2.3407395, 48.8235069 2.3253377, 48.8236544 2.3253945, 48.8529506 2.4178518, 48.8298598 2.3564266, 48.8292574 2.3564506, 48.8299806 2.3563975, 48.8433447 2.3026630, 48.8487244 2.3363303, 48.8839482 2.3865956, 48.8472293 2.4312408, 48.8832359 2.3459108, 48.8603210 2.3564177, 48.8638938 2.3695551, 48.8653632 2.3670966, 48.8146772 2.3838576, 48.8152717 2.3858521, 48.8150606 2.3854262, 48.8306620 2.3114368, 48.8309698 2.3120278, 48.8319648 2.3140431, 48.8344971 2.4006966, 48.8239744 2.3528049, 48.8236433 2.3530302, 48.8741108 2.3436798, 48.8805026 2.3961626, 48.8314166 2.3251141, 48.8321210 2.3246559, 48.8337101 2.3186360, 48.8540626 2.3612455, 48.8436106 2.3422313, 48.8747610 2.3399353, 48.8189427 2.3623110, 48.8193375 2.3442401, 48.8193930 2.3452226, 48.8200280 2.3394747, 48.8202391 2.3395613, 48.8205079 2.3556087, 48.8205508 2.3372668, 48.8205989 2.3495983, 48.8211121 2.3347051, 48.8215967 2.3323735, 48.8236280 2.3761871, 48.8292229 2.3255814, 48.8313803 2.3349575, 48.8316633 2.3221401, 48.8325886 2.3203616, 48.8357379 2.3250590, 48.8386159 2.3222156, 48.8532271 2.3906633, 48.8319258 2.3247528, 48.8718921 2.4037539, 48.8348341 2.3196255, 48.8532124 2.3749112, 48.8593876 2.3489534, 48.8591424 2.3496306, 48.8594147 2.3492122, 48.8593718 2.3493758, 48.8593594 2.3494831, 48.8594723 2.3495716, 48.8598042 2.3498100, 48.8598817 2.3498211, 48.8592624 2.3495841, 48.8592324 2.3496685, 48.8591750 2.3498375, 48.8591459 2.3499381, 48.8591582 2.3498992, 48.8587506 2.3498885, 48.8585618 2.3501138, 48.8584400 2.3500508, 48.8582310 2.3499150, 48.8586577 2.3512239, 48.8585324 2.3516236, 48.8584636 2.3518059, 48.8589383 2.3514814, 48.8594394 2.3491586, 48.8815660 2.3478333, 48.8196478 2.3446330, 48.8206209 2.3503189, 48.8565984 2.4372528, 48.8708417 2.3567986, 48.8701655 2.3796486, 48.8436699 2.3724975, 48.8461007 2.3752397, 48.8467252 2.3767361, 48.8301909 2.3563247, 48.8394868 2.3971498, 48.8365549 2.3948731, 48.8373822 2.3914239, 48.8377537 2.3919934, 48.8393056 2.3967931, 48.8393248 2.3967327, 48.8393449 2.3966796, 48.8394296 2.3967095, 48.8394300 2.3967676, 48.8394300 2.3968352, 48.8397868 2.3974178, 48.8760697 2.3717288, 48.8762025 2.3710966, 48.8668246 2.3443795, 48.8666808 2.3456284, 48.8666058 2.3460447, 48.8665292 2.3464186, 48.8665024 2.3465774, 48.8667552 2.3451020, 48.8804479 2.3766239, 48.8295801 2.3570095, 48.8667159 2.3453933, 48.8274980 2.3718441, 48.8564317 2.3347979, 48.8720337 2.3408590, 48.8160406 2.3835571, 48.8737471 2.3451402, 48.8731623 2.3449978, 48.8725084 2.3448270, 48.8739748 2.3451867, 48.8735309 2.3450913, 48.8460079 2.4246510, 48.8555154 2.3007432, 48.8705878 2.3425842, 48.8483378 2.3594757, 48.8310133 2.3479849, 48.8359481 2.3498941, 48.8362085 2.3507215, 48.8336968 2.3465746, 48.8337957 2.3464960, 48.8348194 2.3458781, 48.8248876 2.3256746, 48.8264147 2.3262238, 48.8686847 2.3475876, 48.8610529 2.3020976, 48.8605209 2.3023944, 48.8613553 2.3023359, 48.8902655 2.3544161, 48.8902734 2.3546516, 48.8907840 2.3529231, 48.8714000 2.4083505, 48.8713019 2.4091675, 48.8570120 2.3850989, 48.8666603 2.4028543, 48.8360131 2.3100586, 48.8369650 2.3090961, 48.8375624 2.3080571, 48.8385808 2.3067130, 48.8395895 2.3092578, 48.8714897 2.3427273, 48.8279631 2.3510342, 48.8276841 2.3501384, 48.8277176 2.3503583, 48.8237415 2.3254034, 48.8234639 2.3253578, 48.8239399 2.3255661, 48.8914921 2.3613348, 48.8679628 2.4027679, 48.8677994 2.4032649, 48.8911449 2.3614088, 48.8250855 2.3258682, 48.8911611 2.3865761, 48.8233730 2.3268718, 48.8304476 2.3543290, 48.8304902 2.3544604, 48.8303310 2.3543233, 48.8304313 2.3542566, 48.8301931 2.3538796, 48.8740637 2.3160837, 48.8742737 2.3172451, 48.8742260 2.3159522, 48.8552215 2.3598904, 48.8551659 2.3601680, 48.8551235 2.3603692, 48.8551245 2.3604541, 48.8550776 2.3606106, 48.8196794 2.3595779, 48.8205058 2.3593321, 48.8208830 2.3590614, 48.8268975 2.3251827, 48.8258340 2.3245387, 48.8274224 2.3261640, 48.8274789 2.3263189, 48.8592190 2.3947920, 48.8597166 2.3945353, 48.8545231 2.3626948, 48.8544579 2.3624454, 48.8543661 2.3625621, 48.8538565 2.3611419, 48.8539037 2.3621825, 48.8624888 2.3394585, 48.8619762 2.3402857, 48.8295109 2.3563809, 48.8651631 2.3471088, 48.8679384 2.3435621, 48.8680096 2.3435345, 48.8642261 2.3500027, 48.8641600 2.3508375, 48.8639977 2.3501757, 48.8641399 2.3507425, 48.8651441 2.3467946, 48.8676664 2.3437165, 48.8679005 2.3435952, 48.8582848 2.3558481, 48.8595125 2.3524319, 48.8630993 2.3180109, 48.8735748 2.3177002, 48.8678347 2.3438681, 48.8493157 2.3784984, 48.8701190 2.3851060, 48.8348722 2.4086899, 48.8358883 2.4089442, 48.8360619 2.4087881, 48.8425612 2.3139626, 48.8475557 2.4085227, 48.8310119 2.3691821, 48.8305746 2.3590826, 48.8312746 2.3688607, 48.8316872 2.3724426, 48.8297680 2.3590749, 48.8300773 2.3581857, 48.8301184 2.3578787, 48.8310054 2.3586192, 48.8313599 2.3721870, 48.8314915 2.3586482, 48.8319196 2.3599107, 48.8321411 2.3674744, 48.8327423 2.3625997, 48.8331514 2.3635943, 48.8335438 2.3646054, 48.8295989 2.3477981, 48.8557761 2.3581437, 48.8630965 2.3391181, 48.8632467 2.3379664, 48.8636448 2.3397088, 48.8631247 2.3342740, 48.8643981 2.3303564, 48.8456633 2.4345253, 48.8216786 2.4131430, 48.8214371 2.4135331, 48.8285566 2.4030554, 48.8205703 2.4147500, 48.8208817 2.4147098, 48.8214129 2.4136675, 48.8231376 2.4114859, 48.8254899 2.4074193, 48.8259819 2.4065518, 48.8263554 2.4059990, 48.8320206 2.3980120, 48.8358990 2.3466845, 48.8733986 2.3215098, 48.8901851 2.3629536, 48.8888376 2.3731738, 48.8546823 2.3502166, 48.8740226 2.3337460, 48.8802997 2.3577529, 48.8804486 2.3543495, 48.8804310 2.3540947, 48.8803768 2.3546246, 48.8801870 2.3552631, 48.8801873 2.3552421, 48.8619404 2.3145726, 48.8796452 2.3570797, 48.8797199 2.3571545, 48.8804330 2.3540743, 48.8334394 2.3321755, 48.8544848 2.3300596, 48.8484830 2.3465489, 48.8516378 2.3234420, 48.8280833 2.3518785, 48.8415102 2.4131166, 48.8416826 2.4130896, 48.8463295 2.4202963, 48.8482348 2.4207871, 48.8693569 2.4230831, 48.8344693 2.4044067, 48.8348210 2.4050151, 48.8322154 2.3982746, 48.8329088 2.4001708, 48.8345869 2.4046238, 48.8319771 2.3979134, 48.8335336 2.4018517, 48.8343346 2.4041298, 48.8489944 2.3476761, 48.8903302 2.3647026, 48.8509791 2.3426696, 48.8758894 2.3683651, 48.8336080 2.3554429, 48.8558979 2.3067417, 48.8566648 2.3063442, 48.8569595 2.3061913, 48.8498557 2.3451858, 48.8631173 2.3365427, 48.8675021 2.3098437, 48.8339315 2.3535154, 48.8344090 2.3538607, 48.8343358 2.3532328, 48.8334871 2.3538301, 48.8342764 2.3539253, 48.8343901 2.3531943, 48.8337767 2.3536196, 48.8329666 2.3548590, 48.8323454 2.3551969, 48.8745891 2.3627432, 48.8754929 2.3615609, 48.8728884 2.3579893, 48.8590580 2.3986870, 48.8598370 2.3974270, 48.8604580 2.3996200, 48.8605160 2.3981120, 48.8620610 2.3984020, 48.8623120 2.3981950, 48.8483435 2.4337996, 48.8973908 2.3817659, 48.8669154 2.3360156, 48.8843844 2.3286648, 48.8968374 2.3787112, 48.8971449 2.3819951, 48.8410900 2.3740378, 48.8706152 2.3532598, 48.8281734 2.3581151, 48.8281213 2.3581379, 48.8282088 2.3580869, 48.8298944 2.3567517, 48.8279789 2.3582481, 48.8284861 2.3582883, 48.8514668 2.3336573, 48.8876146 2.3607162, 48.8874370 2.3698420, 48.8728468 2.4296322, 48.8762168 2.4256559, 48.8306371 2.3542033, 48.8301553 2.3526298, 48.8299498 2.3520500, 48.8304537 2.3536286, 48.8304963 2.3537726, 48.8301901 2.3527078, 48.8306699 2.3543176, 48.8488823 2.3702261, 48.8951201 2.3923772, 48.8678227 2.3369768, 48.8248631 2.3286651, 48.8691288 2.3921028, 48.8250223 2.3283919, 48.8760081 2.3682405, 48.8735347 2.3647853, 48.8678050 2.3496900, 48.8468258 2.4090233, 48.8364949 2.3523935, 48.8761265 2.4133759, 48.8588192 2.3623802, 48.8701642 2.3537129, 48.8590400 2.3622970, 48.8588424 2.3620611, 48.8586471 2.3628035, 48.8594872 2.3600407, 48.8681841 2.3484645, 48.8682787 2.3487909, 48.8685115 2.3495915, 48.8690548 2.3514051, 48.8292095 2.3653864, 48.8293741 2.3599170, 48.8294195 2.3608937, 48.8301355 2.3619849, 48.8301467 2.3580834, 48.8301714 2.3582842, 48.8897544 2.3636094, 48.8907611 2.3619378, 48.8458824 2.3754339, 48.8283995 2.3582668, 48.8289870 2.3575962, 48.8298938 2.3573281, 48.8524475 2.3894597, 48.8527486 2.3889981, 48.8526497 2.3891013, 48.8525392 2.3892934, 48.8529257 2.3887696, 48.8526917 2.3890319, 48.8526385 2.3889177, 48.8528806 2.3888431, 48.8890079 2.3632043, 48.8894148 2.3633280, 48.8440184 2.3516159, 48.8703084 2.3528255, 48.8698720 2.3253770, 48.8471209 2.3451247, 48.8538600 2.3320680, 48.8850869 2.3651538, 48.8895729 2.3670765, 48.8541107 2.3568241, 48.8962126 2.3808930, 48.8965172 2.3798898, 48.8749003 2.3428357, 48.8840985 2.3910764, 48.8849161 2.3956341, 48.8969772 2.3790309, 48.8971217 2.3818511, 48.8423637 2.3259492, 48.8369247 2.3655074, 48.8370392 2.3656876, 48.8366117 2.3660108, 48.8424383 2.3176561, 48.8504757 2.3251066, 48.8524079 2.3158258, 48.8535864 2.3249939, 48.8536256 2.3247887, 48.8503322 2.3249809, 48.8508952 2.3189047, 48.8526041 2.3304466, 48.8518778 2.3321617, 48.8497717 2.3196836, 48.8519794 2.3321639, 48.8466762 2.3247816, 48.8456465 2.3213787, 48.8455993 2.3212150, 48.8455338 2.3209426, 48.8436803 2.3160913, 48.8522398 2.3252710, 48.8406073 2.3127443, 48.8557805 2.3084038, 48.8604452 2.3020032, 48.8594707 2.3055947, 48.8507372 2.3284837, 48.8604641 2.3021394, 48.8596489 2.3055053, 48.8498294 2.3196734, 48.8579529 2.3083225, 48.8560914 2.3029731, 48.8492010 2.3314973, 48.8474620 2.3419998, 48.8489509 2.3315523, 48.8604830 2.3022520, 48.8585004 2.3057333, 48.8396674 2.3497245, 48.8396212 2.3497285, 48.8401276 2.3498418, 48.8403006 2.3496960, 48.8402622 2.3497016, 48.8405554 2.3497762, 48.8410617 2.3495530, 48.8409500 2.3497288, 48.8416725 2.3497548, 48.8417916 2.3497766, 48.8417688 2.3496085, 48.8418859 2.3497875, 48.8419165 2.3497914, 48.8418378 2.3496214, 48.8420720 2.3498351, 48.8421234 2.3498351, 48.8421722 2.3498440, 48.8422841 2.3498549, 48.8424378 2.3496767, 48.8424242 2.3498245, 48.8424716 2.3498216, 48.8425010 2.3496621, 48.8426012 2.3496389, 48.8426479 2.3496281, 48.8427514 2.3496042, 48.8427970 2.3495936, 48.8428394 2.3495838, 48.8428906 2.3495719, 48.8429464 2.3495590, 48.8440708 2.3494232, 48.8441339 2.3494004, 48.8441847 2.3493876, 48.8445679 2.3496772, 48.8445191 2.3496762, 48.8444631 2.3496901, 48.8442543 2.3498651, 48.8237872 2.3194324, 48.8267542 2.3240551, 48.8251055 2.3204216, 48.8266797 2.3240397, 48.8274252 2.3570590, 48.8285987 2.3566668, 48.8286371 2.3566600, 48.8286832 2.3563470, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8466576 2.3407228, 48.8466860 2.3406517, 48.8470438 2.3271132, 48.8475999 2.3286529, 48.8479507 2.3346295, 48.8482683 2.3316141, 48.8212980 2.3643164, 48.8383528 2.3897390, 48.8468650 2.4280959, 48.8507437 2.3370595, 48.8604075 2.3556155, 48.8602435 2.3561333, 48.8603464 2.3558088, 48.8601740 2.3563013, 48.8571765 2.3589357, 48.8964485 2.3809715, 48.8964530 2.3810372, 48.8964631 2.3811828, 48.8964670 2.3812401, 48.8969949 2.3825220, 48.8970885 2.3824702, 48.8751345 2.3951275, 48.8364059 2.4010293, 48.8207702 2.3440653, 48.8767675 2.3414635, 48.8748701 2.3410125, 48.8747214 2.3415841, 48.8766739 2.3412606, 48.8705943 2.3429365, 48.8193733 2.3456600, 48.8194303 2.3460957, 48.8194368 2.3458501, 48.8194507 2.3458999, 48.8194644 2.3459091, 48.8194678 2.3459953, 48.8710996 2.3430459, 48.8727441 2.3433035, 48.8739857 2.3425755, 48.8746840 2.3416410, 48.8749520 2.3408054, 48.8749528 2.3407670, 48.8752190 2.3410094, 48.8763917 2.3411816, 48.8765388 2.3405739, 48.8101445 2.3854008, 48.8699102 2.3115070, 48.8686773 2.3255335, 48.8690272 2.3251599, 48.8700437 2.3257977, 48.8702250 2.3258823, 48.8205142 2.3592990, 48.8312247 2.3581349, 48.8506640 2.3288086, 48.8517041 2.3505648, 48.8408366 2.3037928, 48.8409327 2.3040247, 48.8647800 2.4056236, 48.8107821 2.3842000, 48.8160826 2.3772932, 48.8531320 2.3882360, 48.8215304 2.3647909, 48.8216643 2.3646597, 48.8112060 2.3844119, 48.8106832 2.3843958, 48.8110948 2.3844749, 48.8105637 2.3850918, 48.8106223 2.3844709, 48.8108922 2.3836919, 48.8110444 2.3837900, 48.8112555 2.3845378, 48.8105913 2.3846446, 48.8114348 2.3872609, 48.8106001 2.3850502, 48.8112754 2.3842523, 48.8618356 2.3526300, 48.8323064 2.3247729, 48.8508926 2.3468988, 48.8496394 2.3490781, 48.8548595 2.4101096, 48.8574751 2.3504537, 48.8574049 2.3502723, 48.8574529 2.3505657, 48.8735950 2.3331480, 48.8738880 2.3330270, 48.8265747 2.3745807, 48.8270880 2.3756326, 48.8229081 2.3565023, 48.8225167 2.3571540, 48.8960916 2.3807621, 48.8769049 2.3270113, 48.8757336 2.3266104, 48.8454864 2.3196693, 48.8764040 2.3270060, 48.8768180 2.3270140, 48.8770340 2.3271360, 48.8767510 2.3273100, 48.8766230 2.3273770, 48.8518237 2.3263371, 48.8518277 2.3264706, 48.8518410 2.3270180, 48.8520482 2.3269387, 48.8522732 2.3263458, 48.8520072 2.3255283, 48.8897765 2.3719886, 48.8667290 2.3403192, 48.8892768 2.3755008, 48.8898348 2.3752178, 48.8662363 2.3386378, 48.8251232 2.3579151, 48.8562529 2.3674838, 48.8947397 2.3820270, 48.8950748 2.3539271, 48.8947706 2.3527604, 48.8951621 2.3527628, 48.8950270 2.3539258, 48.8695340 2.3049808, 48.8473882 2.3059953, 48.8338061 2.3177640, 48.8412345 2.3039106, 48.8723494 2.3607849, 48.8893068 2.3728983, 48.8896856 2.3725339, 48.8790855 2.3716088, 48.8933156 2.3933426, 48.8621335 2.3770667, 48.8618250 2.3774424, 48.8285077 2.3612348, 48.8158888 2.3726455, 48.8165177 2.3742219, 48.8169152 2.3717542, 48.8169624 2.3717153, 48.8177049 2.3712848, 48.8189427 2.3917129, 48.8198750 2.3912678, 48.8184578 2.3734558, 48.8164278 2.3757500, 48.8203920 2.3908064, 48.8161970 2.3756628, 48.8087689 2.3775491, 48.8136467 2.3781446, 48.8101028 2.3769528, 48.8194373 2.4079977, 48.8227792 2.3982348, 48.8152711 2.3985665, 48.8097841 2.3776811, 48.8096163 2.3772546, 48.8150663 2.3989774, 48.8118865 2.3827175, 48.8512111 2.3987159, 48.8512690 2.4044346, 48.8514506 2.4058799, 48.8514709 2.3995095, 48.8515803 2.4001141, 48.8543196 2.3962849, 48.8568402 2.4046511, 48.8580682 2.3877975, 48.8600706 2.3886064, 48.8604792 2.4008059, 48.8611195 2.3880530, 48.8631905 2.3883955, 48.8650677 2.3956244, 48.8651291 2.3943708, 48.8654133 2.3895489, 48.8660045 2.3873365, 48.8662887 2.3905433, 48.8682334 2.3864308, 48.8686568 2.3866090, 48.8690384 2.3861855, 48.8704416 2.3841005, 48.8704583 2.3841770, 48.8726164 2.3842276, 48.8734281 2.3825503, 48.8735409 2.3833038, 48.8612245 2.3480050, 48.8558516 2.3966177, 48.8559380 2.3965287, 48.8461374 2.3543608, 48.8459597 2.3544163, 48.8474070 2.3524580, 48.8458615 2.3544188, 48.8461968 2.3543595, 48.8475663 2.3529826, 48.8521193 2.3364208, 48.8519784 2.3354942, 48.8520777 2.3364208, 48.8447679 2.3497792, 48.8681125 2.3487760, 48.8710949 2.4179817, 48.8678076 2.4259286, 48.8715766 2.4253599, 48.8547012 2.4264456, 48.8727664 2.4259058, 48.8745269 2.4247009, 48.8683783 2.4261566, 48.8713416 2.4246815, 48.8710659 2.4245418, 48.8684382 2.4254082, 48.8674203 2.4173859, 48.8550250 2.3290640, 48.8546210 2.3304540, 48.8283034 2.3769268, 48.8284369 2.3773095, 48.8280899 2.3774496, 48.8519979 2.3358911, 48.8310938 2.3750078, 48.8288283 2.3789425, 48.8290147 2.3793621, 48.8485543 2.4344492, 48.8485865 2.4337899, 48.8486571 2.4328554, 48.8485781 2.4339011, 48.8491100 2.4362178, 48.8491307 2.4361939, 48.8303039 2.3757207, 48.8307297 2.3751464, 48.8304085 2.3754325, 48.8305303 2.3753276, 48.8306843 2.3753807, 48.8309309 2.3749232, 48.8310107 2.3759336, 48.8287592 2.3789983, 48.8289978 2.3792237, 48.8290187 2.3790132, 48.8471340 2.3864431, 48.8467506 2.3832061, 48.8909348 2.3617899, 48.8815103 2.3372869, 48.8329435 2.4149758, 48.8323315 2.4178175, 48.8323359 2.4200595, 48.8322107 2.4176394, 48.8330064 2.4147766, 48.8626307 2.3439700, 48.8627212 2.3435074, 48.8629562 2.3448387, 48.8625110 2.3444549, 48.8630210 2.3437930, 48.8624489 2.3440076, 48.8695246 2.3611967, 48.8315841 2.4199815, 48.8325584 2.4173403, 48.8324901 2.4167426, 48.8325371 2.4171377, 48.8328810 2.4170763, 48.8342079 2.4196014, 48.8337431 2.4190611, 48.8931121 2.3632801, 48.8931926 2.3637398, 48.8767476 2.3606011, 48.8767563 2.3605685, 48.8767664 2.3605325, 48.8767737 2.3605042, 48.8768169 2.3603356, 48.8768247 2.3603017, 48.8768458 2.3607271, 48.8769066 2.3606489, 48.8769352 2.3605683, 48.8769653 2.3606480, 48.8769709 2.3606236, 48.8769998 2.3603143, 48.8770077 2.3606684, 48.8770137 2.3606456, 48.8770220 2.3606654, 48.8770343 2.3606738, 48.8770373 2.3607050, 48.8770408 2.3601452, 48.8770432 2.3607309, 48.8771166 2.3603817, 48.8772181 2.3594482, 48.8772350 2.3608623, 48.8767974 2.3607201, 48.8148909 2.3638254, 48.8248862 2.3754798, 48.8251423 2.3760799, 48.8274881 2.3770197, 48.8306653 2.3749989, 48.8312852 2.3735705, 48.8311337 2.3738972, 48.8519590 2.3400717, 48.8523174 2.3400938, 48.8625107 2.3109476, 48.8913564 2.3630079, 48.8906813 2.3639575, 48.8912918 2.3631201, 48.8913356 2.3626442, 48.8549171 2.3551866, 48.8383546 2.3930656, 48.8394477 2.3924756, 48.8394636 2.3926446, 48.8394195 2.3921135, 48.8531969 2.3783676, 48.8498591 2.3399092, 48.8497474 2.3380298, 48.8335611 2.3308711, 48.8403604 2.3787511, 48.8713994 2.3446987, 48.8749826 2.3285546, 48.8928183 2.3927190, 48.8757341 2.3271813, 48.8886086 2.3780545, 48.8883372 2.3743635, 48.8752966 2.3283748, 48.8488007 2.3403871, 48.8113535 2.3854459, 48.8371681 2.3519450, 48.8370786 2.3520317, 48.8485979 2.3413368, 48.8480411 2.3409988, 48.8484401 2.3413672, 48.8478589 2.3407967, 48.8336159 2.3303783, 48.8883876 2.3902362, 48.8891585 2.3938039, 48.8862020 2.3612523, 48.8421984 2.3516249, 48.8336470 2.3315763, 48.8335273 2.3314999, 48.8474158 2.4276466, 48.8450740 2.4234208, 48.8458430 2.4237622, 48.8458464 2.4237715, 48.8460330 2.4236164, 48.8362062 2.3237133, 48.8892282 2.3628734, 48.8347564 2.3296964, 48.8349296 2.3296602, 48.8532503 2.3737978, 48.8670687 2.3793313, 48.8667388 2.3796639, 48.8672848 2.3853206, 48.8671313 2.3852348, 48.8664979 2.3850779, 48.8553007 2.3755708, 48.8357249 2.3282524, 48.8948851 2.3827807, 48.8949003 2.3826544, 48.8949465 2.3824056, 48.8966561 2.3798725, 48.8884687 2.3780615, 48.8899019 2.3601226, 48.8899236 2.3601457, 48.8901122 2.3603976, 48.8911594 2.3596819, 48.8912365 2.3600425, 48.8487519 2.3414295, 48.8485322 2.3419738, 48.8484295 2.3424166, 48.8393457 2.3371003, 48.8888328 2.3605282, 48.8889428 2.3605049, 48.8889995 2.3625923, 48.8893812 2.3628340, 48.8528020 2.4110674, 48.8765293 2.3766762, 48.8765787 2.3774487, 48.8765381 2.3785538, 48.8760857 2.3803012, 48.8760618 2.3804326, 48.8759710 2.3808578, 48.8831467 2.3852056, 48.8526874 2.3539909, 48.8446809 2.3466783, 48.8775011 2.3813787, 48.8767337 2.3866037, 48.8765415 2.3864454, 48.8782248 2.3818123, 48.8784224 2.3821811, 48.8793441 2.3856452, 48.8792550 2.3846850, 48.8794349 2.3875791, 48.8894902 2.3806301, 48.8899352 2.3788791, 48.8798221 2.3894418, 48.8912644 2.3784340, 48.8910965 2.3782517, 48.8516574 2.3385425, 48.8301525 2.3594415, 48.8302709 2.3590981, 48.8485948 2.4261423, 48.8482999 2.4248745, 48.8336698 2.3296041, 48.8337502 2.3300015, 48.8642559 2.3362323, 48.8743681 2.3769994, 48.8749997 2.3784035, 48.8465069 2.4099879, 48.8099646 2.3877087, 48.8486443 2.3753679, 48.8481127 2.3756890, 48.8492365 2.3739525, 48.8478160 2.3772935, 48.8495930 2.3774565, 48.8495450 2.3787201, 48.8500160 2.3788251, 48.8496527 2.3779307, 48.8500419 2.3782003, 48.8465400 2.3811858, 48.8467962 2.3835368, 48.8501437 2.3788464, 48.8504944 2.3783154, 48.8503285 2.3781973, 48.8501185 2.3780311, 48.8481611 2.3766463, 48.8460012 2.3764202, 48.8467987 2.3783255, 48.8553144 2.3878881, 48.8434604 2.4022375, 48.8430061 2.3486842, 48.8497173 2.3704111, 48.8512299 2.3698210, 48.8496167 2.3700570, 48.8534945 2.3706179, 48.8535356 2.3706586, 48.8486058 2.3978799, 48.8481689 2.3925595, 48.8469569 2.3847760, 48.8469044 2.3843200, 48.8468648 2.3840074, 48.8466247 2.3789460, 48.8464179 2.3800872, 48.8467149 2.3826525, 48.8854184 2.3809339, 48.8122223 2.3712034, 48.8133489 2.3703196, 48.8673896 2.3544810, 48.8602996 2.3436624, 48.8603776 2.3434700, 48.8598410 2.3424752, 48.8958679 2.3839964, 48.8958529 2.3839302, 48.8958300 2.3838707, 48.8961624 2.3861000, 48.8961819 2.3857796, 48.8683404 2.3702309, 48.8762491 2.3755713, 48.8765120 2.3753701, 48.8780220 2.3743079, 48.8752119 2.3738600, 48.8753759 2.3739351, 48.8753782 2.3736728, 48.8751695 2.3739029, 48.8754994 2.3737769, 48.8741587 2.3777760, 48.8742151 2.3784198, 48.8746967 2.3796965, 48.8747991 2.3806675, 48.8746244 2.3809330, 48.8765910 2.3232000, 48.8747470 2.3159270, 48.8828751 2.3764954, 48.8719505 2.3412149, 48.8764230 2.3335430, 48.8763180 2.3309180, 48.8720638 2.3998952, 48.8757435 2.3262717, 48.8785795 2.3840106, 48.8847022 2.3794239, 48.8781141 2.3843466, 48.8779190 2.3852619, 48.8778925 2.3854242, 48.8770266 2.3854523, 48.8784073 2.3854415, 48.8777463 2.3853987, 48.8782848 2.3854140, 48.8785273 2.3854630, 48.8789083 2.3856186, 48.8791522 2.3858224, 48.8792668 2.3856534, 48.8789361 2.3851519, 48.8781070 2.3860947, 48.8782913 2.3861269, 48.8800423 2.3744552, 48.8801389 2.3744304, 48.8806716 2.3738195, 48.8859368 2.3931939, 48.8864735 2.3927102, 48.8746937 2.3271509, 48.8746971 2.3271657, 48.8746989 2.3271832, 48.8747046 2.3272041, 48.8747072 2.3272184, 48.8747107 2.3272555, 48.8747115 2.3271483, 48.8747115 2.3272666, 48.8747132 2.3271622, 48.8747132 2.3271788, 48.8747164 2.3272943, 48.8747176 2.3273097, 48.8747200 2.3273362, 48.8747204 2.3273245, 48.8747222 2.3272037, 48.8747226 2.3272205, 48.8747265 2.3272604, 48.8747277 2.3272685, 48.8747285 2.3273763, 48.8747326 2.3272919, 48.8747326 2.3273917, 48.8747330 2.3273067, 48.8747350 2.3271413, 48.8747350 2.3274145, 48.8747356 2.3271561, 48.8747358 2.3273178, 48.8747358 2.3273307, 48.8747367 2.3271701, 48.8747407 2.3271962, 48.8747407 2.3274404, 48.8747436 2.3272145, 48.8747443 2.3274681, 48.8747455 2.3273769, 48.8747460 2.3272518, 48.8747468 2.3273948, 48.8747468 2.3274835, 48.8747472 2.3275026, 48.8747488 2.3274182, 48.8747496 2.3272598, 48.8747500 2.3275193, 48.8747512 2.3274367, 48.8747545 2.3271370, 48.8747548 2.3275509, 48.8747557 2.3272832, 48.8747571 2.3275761, 48.8747573 2.3271492, 48.8747573 2.3271666, 48.8747577 2.3272974, 48.8747585 2.3271919, 48.8747589 2.3273221, 48.8747593 2.3273122, 48.8747599 2.3275979, 48.8747605 2.3274792, 48.8747609 2.3274632, 48.8747609 2.3274952, 48.8747618 2.3273652, 48.8747631 2.3272110, 48.8747638 2.3272469, 48.8747638 2.3272561, 48.8747658 2.3273806, 48.8747662 2.3275137, 48.8747670 2.3272795, 48.8747679 2.3276136, 48.8747695 2.3272968, 48.8747697 2.3275509, 48.8747699 2.3273116, 48.8747708 2.3276860, 48.8747711 2.3273258, 48.8747711 2.3274145, 48.8747714 2.3275753, 48.8747714 2.3276694, 48.8747743 2.3275971, 48.8747748 2.3277086, 48.8747751 2.3274342, 48.8747772 2.3273627, 48.8747776 2.3273818, 48.8747777 2.3277252, 48.8747784 2.3274607, 48.8747788 2.3274749, 48.8747812 2.3274909, 48.8747828 2.3274170, 48.8747834 2.3276093, 48.8747836 2.3275088, 48.8747857 2.3274287, 48.8747880 2.3276650, 48.8747880 2.3276842, 48.8747880 2.3277940, 48.8747903 2.3275421, 48.8747913 2.3274743, 48.8747920 2.3277060, 48.8747920 2.3277243, 48.8747922 2.3274589, 48.8747930 2.3274909, 48.8747942 2.3275076, 48.8747943 2.3275674, 48.8747966 2.3275962, 48.8747978 2.3278672, 48.8748023 2.3275413, 48.8748023 2.3276075, 48.8748041 2.3278411, 48.8748058 2.3277879, 48.8748058 2.3278638, 48.8748069 2.3275831, 48.8748081 2.3275657, 48.8748081 2.3276624, 48.8748092 2.3276860, 48.8748109 2.3279509, 48.8748121 2.3278611, 48.8748127 2.3276023, 48.8748132 2.3277043, 48.8748144 2.3277226, 48.8748161 2.3279866, 48.8748230 2.3276825, 48.8748241 2.3277077, 48.8748241 2.3277836, 48.8748247 2.3276598, 48.8748270 2.3279387, 48.8748276 2.3277234, 48.8748310 2.3279797, 48.8748356 2.3277810, 48.8748356 2.3278489, 48.8748362 2.3278298, 48.8748407 2.3278472, 48.8748476 2.3279352, 48.8748482 2.3278454, 48.8748551 2.3279771, 48.8748625 2.3279309, 48.8748694 2.3279710, 48.8413123 2.4117612, 48.8746841 2.3270910, 48.8746927 2.3271219, 48.8747001 2.3270093, 48.8747109 2.3270107, 48.8747140 2.3270778, 48.8747261 2.3270067, 48.8747269 2.3270475, 48.8747421 2.3270732, 48.8747552 2.3276805, 48.8300301 2.3296176, 48.8817180 2.3718295, 48.8337668 2.3278330, 48.8820002 2.3711763, 48.8354148 2.3235123, 48.8328155 2.3261603, 48.8825006 2.3706159, 48.8296835 2.3597033, 48.8297392 2.3595465, 48.8298567 2.3572407, 48.8490915 2.3487987, 48.8503538 2.3905532, 48.8587751 2.4075335, 48.8586001 2.4078519, 48.8587238 2.4076570, 48.8567853 2.4014546, 48.8135907 2.3828193, 48.8529290 2.3314950, 48.8530850 2.3312320, 48.8676326 2.3499450, 48.8593290 2.3226650, 48.8498887 2.3433647, 48.8502174 2.3432764, 48.8260443 2.3266660, 48.8255907 2.3265438, 48.8921038 2.3612542, 48.8742978 2.3267750, 48.8764651 2.3325771, 48.8782984 2.3583405, 48.8666813 2.3854927, 48.8816483 2.3644514, 48.8267959 2.3271211, 48.8261320 2.3286171, 48.8260648 2.3281689, 48.8899434 2.3710251, 48.8902450 2.3708454, 48.8803750 2.3978486, 48.8528204 2.3535885, 48.8752933 2.3228773, 48.8812111 2.3720335, 48.8811706 2.3719906, 48.8763043 2.3845917, 48.8762214 2.3834089, 48.8746866 2.3850531, 48.8745931 2.3852059, 48.8589381 2.3504712, 48.8570274 2.3983184, 48.8573676 2.3933983, 48.8641699 2.4083715, 48.8567608 2.3945887, 48.8571019 2.3984066, 48.8603983 2.4043015, 48.8646358 2.4081310, 48.8747966 2.3861271, 48.8757475 2.3857007, 48.8753418 2.3815392, 48.8747667 2.3810283, 48.8747347 2.3813029, 48.8752868 2.3817360, 48.8836814 2.3499178, 48.8756291 2.3889686, 48.8752198 2.3890142, 48.8757614 2.3884818, 48.8754458 2.3822605, 48.8755279 2.3821599, 48.8749554 2.3828694, 48.8613833 2.3778963, 48.8372979 2.3511170, 48.8516564 2.3473784, 48.8851905 2.3788177, 48.8525504 2.3377722, 48.8590582 2.3811072, 48.8593223 2.3826385, 48.8604285 2.3815784, 48.8335564 2.3869198, 48.8334907 2.3868335, 48.8337569 2.3871813, 48.8329726 2.3861326, 48.8338510 2.3872594, 48.8740925 2.3837424, 48.8740264 2.3839194, 48.8741834 2.3841850, 48.8851105 2.3800766, 48.8858942 2.3827093, 48.8206809 2.3635646, 48.8207494 2.3637471, 48.8203146 2.3640270, 48.8201394 2.3641828, 48.8202229 2.3641774, 48.8785529 2.3744580, 48.8784427 2.3763167, 48.8784647 2.3757776, 48.8694492 2.3546663, 48.8552012 2.3739399, 48.8550829 2.3733686, 48.8546611 2.3726793, 48.8543470 2.3717003, 48.8746078 2.3810324, 48.8741205 2.3822327, 48.8739520 2.3822179, 48.8735701 2.3830856, 48.8736839 2.3828415, 48.8735251 2.3828952, 48.8201088 2.3481923, 48.8201319 2.3478823, 48.8202012 2.3481361, 48.8205445 2.3494030, 48.8233285 2.3741842, 48.8777223 2.3322319, 48.8642117 2.3138141, 48.8743835 2.3178889, 48.8723341 2.3116489, 48.8491175 2.3039021, 48.8709008 2.3059242, 48.8747420 2.3873713, 48.8783980 2.3708887, 48.8786489 2.3710845, 48.8787477 2.3711783, 48.8792734 2.3714251, 48.8793968 2.3715404, 48.8794339 2.3715793, 48.8793060 2.3719052, 48.8797029 2.3718315, 48.8794939 2.3720809, 48.8796658 2.3717979, 48.8804146 2.3725087, 48.8407193 2.3049672, 48.8418070 2.3034131, 48.8404786 2.3040335, 48.8405254 2.3043125, 48.8406121 2.3051658, 48.8406718 2.3048275, 48.8409660 2.3058020, 48.8445280 2.3226454, 48.8445064 2.3227126, 48.8444718 2.3228200, 48.8442836 2.3233862, 48.8445876 2.3224605, 48.8443285 2.3232584, 48.8445575 2.3225539, 48.8446976 2.3221192, 48.8447148 2.3220336, 48.8446671 2.3222139, 48.8442621 2.3229926, 48.8443405 2.3231060, 48.8445443 2.3220878, 48.8860404 2.3819393, 48.8818625 2.3741104, 48.8819062 2.3741667, 48.8819750 2.3739816, 48.8824966 2.3748996, 48.8831168 2.3764104, 48.8833797 2.3765177, 48.8835128 2.3767725, 48.8832729 2.3770581, 48.8841883 2.3779754, 48.8844335 2.3784113, 48.8843991 2.3787117, 48.8845623 2.3786634, 48.8401634 2.3044521, 48.8412701 2.3081103, 48.8533800 2.3665590, 48.8217463 2.3258742, 48.8219887 2.3306289, 48.8843953 2.3789809, 48.8827047 2.3800827, 48.8827047 2.3803448, 48.8845990 2.3787529, 48.8846696 2.3789004, 48.8849214 2.3800182, 48.8852366 2.3804179, 48.8851670 2.3806432, 48.8852067 2.3807525, 48.8678836 2.3493991, 48.8589178 2.3234187, 48.8589724 2.3234632, 48.8597592 2.3242049, 48.8593703 2.3238812, 48.8588292 2.3233490, 48.8853902 2.3812643, 48.8855353 2.3816653, 48.8855150 2.3816003, 48.8855935 2.3818316, 48.8792836 2.3779317, 48.8794291 2.3770037, 48.8802732 2.3751167, 48.8577770 2.3473733, 48.8634279 2.3351782, 48.8680916 2.3299623, 48.8805386 2.3751052, 48.8803860 2.3748678, 48.8804046 2.3748289, 48.8806436 2.3748947, 48.8806753 2.3748196, 48.8807035 2.3747471, 48.8808173 2.3744896, 48.8808967 2.3743140, 48.8832179 2.3866173, 48.8829957 2.3867138, 48.8830274 2.3870424, 48.8830777 2.3876231, 48.8835398 2.3889119, 48.8832858 2.3874568, 48.8141741 2.3911870, 48.8167779 2.3859022, 48.8177310 2.3846916, 48.8349501 2.4072247, 48.8351659 2.4069054, 48.8708394 2.3465254, 48.8833220 2.3877237, 48.8833431 2.3880013, 48.8832752 2.3888891, 48.8832338 2.3887228, 48.8841585 2.3912481, 48.8723326 2.3483178, 48.8549966 2.4012505, 48.8550533 2.3731077, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8431753 2.3523678, 48.8434679 2.3524207, 48.8437934 2.3525958, 48.8525395 2.3353602, 48.8304113 2.3357952, 48.8307183 2.3365731, 48.8644920 2.3749450, 48.8856585 2.3878153, 48.8860701 2.3911943, 48.8870513 2.3871615, 48.8880598 2.3919611, 48.8333762 2.3513160, 48.8434679 2.3524207, 48.8437934 2.3525958, 48.8525395 2.3353602, 48.8304113 2.3357952, 48.8307183 2.3365731, 48.8423823 2.3027121, 48.8466518 2.3051464, 48.8466756 2.3050730, 48.8471520 2.3050056, 48.8466342 2.3052128, 48.8337390 2.3618054, 48.8343386 2.3607778, 48.8346342 2.3606245, 48.8470236 2.3465004, 48.8550678 2.3246859, 48.8480510 2.3539690, 48.8481540 2.3541110, 48.8481870 2.3541570, 48.8485630 2.3547360, 48.8486230 2.3548460, 48.8486600 2.3548950, 48.8488030 2.3550960, 48.8691985 2.3546294, 48.8659300 2.3408572, 48.8662586 2.3612125, 48.8553209 2.3603751, 48.8369707 2.3521360, 48.8500790 2.3487204, 48.8432193 2.3520318, 48.8498863 2.3550274, 48.8434713 2.3236014, 48.8530282 2.3354092, 48.8402189 2.3365313, 48.8505206 2.3272579, 48.8512092 2.3331634, 48.8220409 2.3498282, 48.8220651 2.3497136, 48.8780330 2.3300310, 48.8790340 2.3294180, 48.8799610 2.3291770, 48.8843190 2.3697260, 48.8849215 2.3709154, 48.8868177 2.3744113, 48.8849000 2.3707095, 48.8849505 2.3709850, 48.8864162 2.3737748, 48.8871420 2.3755550, 48.8883341 2.3761366, 48.8880413 2.3770390, 48.8886151 2.3731039, 48.8887722 2.3738487, 48.8848937 2.3405138, 48.8844100 2.3396601, 48.8843962 2.3388368, 48.8843181 2.3391723, 48.8842803 2.3395848, 48.8846433 2.3402443, 48.8850060 2.3404263, 48.8585600 2.3535180, 48.8359828 2.3592084, 48.8528644 2.3463229, 48.8548128 2.3502457, 48.8582564 2.3530692, 48.8579136 2.3528123, 48.8463199 2.3445065, 48.8546283 2.3500077, 48.8579605 2.3528852, 48.8584497 2.3533925, 48.8596706 2.3613010, 48.8664610 2.3525161, 48.8634663 2.3525372, 48.8675053 2.3352170, 48.8506291 2.3395396, 48.8718009 2.3486390, 48.8216608 2.4049374, 48.8647781 2.3736732, 48.8527039 2.3856412, 48.8527723 2.3849647, 48.8528254 2.3852671, 48.8528091 2.3861979, 48.8532519 2.3874218, 48.8439032 2.3546898, 48.8839109 2.3897638, 48.8838985 2.3895734, 48.8859211 2.3934465, 48.8847791 2.3925318, 48.8849193 2.3927370, 48.8848752 2.3926673, 48.8851636 2.3926190, 48.8853223 2.3928282, 48.8862192 2.3936382, 48.8861530 2.3940741, 48.8754744 2.3873297, 48.8754373 2.3874893, 48.8453436 2.4286606, 48.8537312 2.3325450, 48.8553259 2.3692636, 48.8477315 2.3020959, 48.8497962 2.3008922, 48.8470633 2.3037370, 48.8449521 2.3058381, 48.8473348 2.3028088, 48.8490335 2.3011623, 48.8651610 2.3726873, 48.8643547 2.3728587, 48.8529637 2.3629258, 48.8826325 2.3446975, 48.8488878 2.4063145, 48.8826421 2.3444926, 48.8629966 2.3731715, 48.8618141 2.3222918, 48.8649047 2.3105605, 48.8649598 2.3105563, 48.8707207 2.3458677, 48.8710108 2.3455226, 48.8748858 2.3191940, 48.8707294 2.3587247, 48.8556477 2.3481362, 48.8647970 2.3376815, 48.8495520 2.3551790, 48.8495960 2.3546780, 48.8492860 2.3544000, 48.8493260 2.3534620, 48.8493470 2.3529650, 48.8493090 2.3539520, 48.8470580 2.3520490, 48.8469280 2.3518880, 48.8468240 2.3516360, 48.8462460 2.3515930, 48.8457050 2.3517750, 48.8756732 2.3873298, 48.8765843 2.3876396, 48.8209363 2.3710302, 48.8792457 2.3884047, 48.8793070 2.3884134, 48.8761197 2.3896217, 48.8762026 2.3896150, 48.8712502 2.3797702, 48.8708280 2.3787238, 48.8671652 2.3360497, 48.8672298 2.3360756, 48.8379924 2.3573249, 48.8347529 2.3577560, 48.8488854 2.3676323, 48.8506007 2.3684957, 48.8279269 2.3606649, 48.8281328 2.3608761, 48.8284210 2.3605021, 48.8290169 2.3599418, 48.8492131 2.4119154, 48.8254239 2.3694610, 48.8275075 2.3672605, 48.8313949 2.3614586, 48.8336951 2.3651195, 48.8338003 2.3625255, 48.8502691 2.3768309, 48.8514077 2.3619724, 48.8557425 2.3657180, 48.8557863 2.3654533, 48.8582183 2.3633569, 48.8824243 2.3722767, 48.8813148 2.3745552, 48.8810714 2.3750809, 48.8808394 2.3756442, 48.8806172 2.3761511, 48.8765708 2.3923094, 48.8791599 2.3910656, 48.8395113 2.4061466, 48.8405076 2.4080728, 48.8407300 2.4111999, 48.8409893 2.4021854, 48.8419636 2.4099074, 48.8420117 2.4099305, 48.8428499 2.3882529, 48.8435586 2.3837116, 48.8443380 2.3820200, 48.8463579 2.4045679, 48.8465345 2.4039066, 48.8467508 2.4047042, 48.8481084 2.4046457, 48.8519692 2.3809344, 48.8521453 2.3853886, 48.8358697 2.3734634, 48.8362808 2.3737861, 48.8363138 2.3737506, 48.8444058 2.3789793, 48.8402164 2.3217543, 48.8457339 2.3739189, 48.8633113 2.3469438, 48.8646137 2.3518676, 48.8676375 2.3535364, 48.8677030 2.3535925, 48.8786498 2.3705339, 48.8906019 2.3759113, 48.8688331 2.3251265, 48.8828257 2.3727684, 48.8827997 2.3733397, 48.8830186 2.3740035, 48.8826853 2.3804864, 48.8826632 2.3810175, 48.8834012 2.3711932, 48.8838102 2.3718772, 48.8869962 2.3785022, 48.8874247 2.3786846, 48.8875552 2.3794980, 48.8767105 2.3931022, 48.8623163 2.3093585, 48.8623851 2.3062652, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8840501 2.3678392, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8416423 2.4049657, 48.8461711 2.4107337, 48.8803051 2.3707908, 48.8818881 2.3705534, 48.8768371 2.3719871, 48.8769332 2.3718798, 48.8490614 2.3923936, 48.8272239 2.3760253, 48.8217982 2.3682935, 48.8734806 2.3430215, 48.8728951 2.3773881, 48.8729547 2.3799476, 48.8747080 2.3869254, 48.8747781 2.3879795, 48.8748589 2.3884616, 48.8749063 2.3886098, 48.8755204 2.3905491, 48.8755208 2.3906946, 48.8755204 2.3907408, 48.8755958 2.3919063, 48.8135093 2.3872697, 48.8561953 2.3152892, 48.8570291 2.3152687, 48.8603905 2.4021957, 48.8619535 2.4014538, 48.8459525 2.3549704, 48.8708629 2.3427230, 48.8708013 2.3426831, 48.8707564 2.3426660, 48.8707938 2.3947912, 48.8514526 2.3266647, 48.8531899 2.3355676, 48.8836015 2.3202065, 48.8833935 2.3195861, 48.8847283 2.3200247, 48.8763972 2.3573847, 48.8764451 2.3569589, 48.8764541 2.3569048, 48.8830980 2.4163097, 48.8796992 2.4113946, 48.8826062 2.4128265, 48.8452318 2.4177396, 48.8349942 2.4068310, 48.8702947 2.3763586, 48.8730389 2.3818806, 48.8494503 2.3422354, 48.8600140 2.3493801, 48.8795130 2.3360991, 48.8828915 2.3811913, 48.8830697 2.3810418, 48.8837170 2.3804450, 48.8840675 2.3805918, 48.8753357 2.3819767, 48.8771545 2.4074241, 48.8755246 2.3943562, 48.8755669 2.3981395, 48.8755669 2.3980550, 48.8755731 2.3984479, 48.8759206 2.4001632, 48.8758598 2.4006983, 48.8770434 2.4049148, 48.8770937 2.4058924, 48.8650219 2.3030534, 48.8309262 2.3742782, 48.8308010 2.4194151, 48.8307541 2.4193421, 48.8731446 2.3278704, 48.8284996 2.3727561, 48.8531826 2.4225041, 48.8471786 2.4177925, 48.8576027 2.4341107, 48.8563982 2.4262880, 48.8537590 2.4240997, 48.8529604 2.4248400, 48.8462070 2.4159910, 48.8438984 2.4173675, 48.8461848 2.4163060, 48.8530540 2.4248279, 48.8544196 2.4196917, 48.8534291 2.4261530, 48.8583141 2.3549137, 48.8583876 2.3549851, 48.8606889 2.3547690, 48.8607641 2.3545314, 48.8607780 2.3544920, 48.8315966 2.3304662, 48.8329031 2.3315324, 48.8316986 2.3304675, 48.8330175 2.3316013, 48.8579708 2.3528081, 48.8874433 2.3939300, 48.8837350 2.3944175, 48.8663182 2.3718556, 48.8612688 2.3578488, 48.8542416 2.4171464, 48.8359778 2.3842126, 48.8336856 2.3889510, 48.8659762 2.3835715, 48.8149766 2.3600865, 48.8149201 2.3600274, 48.8146306 2.3598073, 48.8132689 2.3587579, 48.8125738 2.3582741, 48.8421213 2.3285111, 48.8416530 2.3269573, 48.8416037 2.3266135, 48.8378229 2.3513432, 48.8696780 2.3945412, 48.8708961 2.3969286, 48.8353583 2.4058762, 48.8875404 2.3413939, 48.8388851 2.3226121, 48.8278987 2.3720944, 48.8900474 2.3473370, 48.8844548 2.3219231, 48.8665219 2.3404139, 48.8535415 2.3396356, 48.8355980 2.3258432, 48.8821377 2.3372542, 48.8828185 2.3827206, 48.8837364 2.3368191, 48.8829792 2.3828781, 48.8838218 2.3835473, 48.8837306 2.3838350, 48.8840234 2.3842246, 48.8405548 2.4191248, 48.8483073 2.4179954, 48.8420173 2.4175176, 48.8424925 2.4178019, 48.8469224 2.4171317, 48.8474846 2.4178245, 48.8322089 2.3384309, 48.8161845 2.3418945, 48.8507831 2.3944957, 48.8518835 2.3934531, 48.8520017 2.3935558, 48.8523499 2.3931181, 48.8617792 2.3745107, 48.8622369 2.3739210, 48.8623819 2.3639950, 48.8740920 2.3388296, 48.8754273 2.3247309, 48.8400642 2.4091298, 48.8410816 2.4113084, 48.8440626 2.4113218, 48.8452681 2.3730825, 48.8460163 2.3825296, 48.8296846 2.3323901, 48.8340751 2.3295497, 48.8292209 2.3194742, 48.8342025 2.3183393, 48.8574572 2.3810410, 48.8480906 2.3770269, 48.8556943 2.3595261, 48.8410203 2.3184680, 48.8927627 2.3791089, 48.8717681 2.3573818, 48.8567195 2.3532017, 48.8621989 2.3456002, 48.8315415 2.3198573, 48.8869464 2.3678509, 48.8639974 2.3617555, 48.8622381 2.3454960, 48.8754888 2.3889719, 48.8782924 2.3837340, 48.8716073 2.3573055, 48.8547169 2.3804970, 48.8712652 2.3978533, 48.8713525 2.3981536, 48.8434000 2.3693936, 48.8730441 2.3935237, 48.8223085 2.3581722, 48.8847149 2.3814227, 48.8848613 2.3813261, 48.8781088 2.3929314, 48.8300192 2.3572538, 48.8325523 2.3205074, 48.8589855 2.3540028, 48.8606297 2.3503864, 48.8732685 2.3890682, 48.8327672 2.3201392, 48.8868617 2.3693195, 48.8370016 2.4181712, 48.8698031 2.3099017, 48.8311012 2.3195882, 48.8746353 2.3733461, 48.8834996 2.3862037, 48.8745720 2.3872697, 48.8746103 2.3879631, 48.8536817 2.3714996, 48.8545486 2.3843630, 48.8753611 2.3908785, 48.8753638 2.3909416, 48.8752924 2.3915830, 48.8752209 2.3916903, 48.8752527 2.3915803, 48.8753735 2.3917908, 48.8753559 2.3919799, 48.8752112 2.3924936, 48.8751698 2.3943041, 48.8752800 2.3929026, 48.8752306 2.3934592, 48.8752271 2.3936912, 48.8752218 2.3937958, 48.8751574 2.3942236, 48.8811450 2.3367110, 48.8818980 2.3374100, 48.8845920 2.3364580, 48.8815120 2.3375130, 48.8460779 2.4173230, 48.8328125 2.3452788, 48.8320470 2.3201850, 48.8450494 2.4177212, 48.8502351 2.3456241, 48.8497330 2.3457635, 48.8496872 2.3457994, 48.8458439 2.3017831, 48.8864590 2.3404788, 48.8491590 2.3498700, 48.8480400 2.3511660, 48.8485240 2.3499690, 48.8483460 2.3504620, 48.8485190 2.3493440, 48.8458790 2.3508800, 48.8693798 2.3066568, 48.8453348 2.3532344, 48.8454362 2.3531891, 48.8518374 2.3271357, 48.8515626 2.3275283, 48.8527313 2.3035652, 48.8524437 2.3031358, 48.8527246 2.3060632, 48.8840568 2.3401680, 48.8393985 2.4326981, 48.8394024 2.4327415, 48.8394037 2.4326487, 48.8394167 2.4327771, 48.8394180 2.4326091, 48.8394414 2.4325835, 48.8394688 2.4327403, 48.8394693 2.4325716, 48.8394905 2.4327027, 48.8394986 2.4325746, 48.8395122 2.4326697, 48.8395227 2.4325933, 48.8846800 2.3291860, 48.8822080 2.3199230, 48.8844290 2.3287650, 48.8846930 2.3299610, 48.8842216 2.3272838, 48.8822570 2.3201050, 48.8819840 2.3187180, 48.8819360 2.3185630, 48.8809770 2.3152110, 48.8816120 2.3160090, 48.8425038 2.4010062, 48.8694428 2.4054011, 48.8636766 2.3671249, 48.8622276 2.3455805, 48.8622539 2.3455343, 48.8425884 2.3361604, 48.8318948 2.3202576, 48.8822902 2.3395019, 48.8666273 2.3817444, 48.8487000 2.3486680, 48.8473110 2.3482170, 48.8461550 2.3472670, 48.8229490 2.4137641, 48.8231652 2.4161555, 48.8223815 2.4142476, 48.8691390 2.4092451, 48.8680339 2.4109234, 48.8744321 2.3247119, 48.8704232 2.3339330, 48.8426923 2.3634778, 48.8612936 2.3581608, 48.8614005 2.3583195, 48.8169329 2.3955926, 48.8169329 2.3955926, 48.8310513 2.3195553, 48.8325941 2.3183175, 48.8543921 2.3426853, 48.8178811 2.3973542, 48.8727411 2.3545133, 48.8178634 2.3980958, 48.8178175 2.3984901, 48.8174996 2.3988777, 48.8174493 2.3989273, 48.8173963 2.3989984, 48.8172859 2.3991271, 48.8599130 2.4042262, 48.8802753 2.3518849, 48.8500437 2.3954755, 48.8858115 2.3857107, 48.8830402 2.3758122, 48.8732079 2.3741442, 48.8735416 2.3735789, 48.8736276 2.3734622, 48.8738133 2.3731015, 48.8744920 2.3729505, 48.8740245 2.3723480, 48.8743038 2.3728073, 48.8741051 2.3720932, 48.8739847 2.3718055, 48.8738359 2.3717117, 48.8743904 2.3720383, 48.8735359 2.3710279, 48.8737082 2.3705081, 48.8741858 2.3715930, 48.8743556 2.3717325, 48.8745316 2.3721362, 48.8745664 2.3724688, 48.8746023 2.3722673, 48.8751523 2.3731155, 48.8731543 2.3783690, 48.8731711 2.3799152, 48.8732152 2.3799126, 48.8732972 2.3799038, 48.8738742 2.3798465, 48.8740630 2.3798331, 48.8716669 2.3719109, 48.8716356 2.3717654, 48.8711163 2.3700022, 48.8711993 2.3697018, 48.8708528 2.3694611, 48.8709931 2.3689783, 48.8732657 2.3748785, 48.8736209 2.3748630, 48.8731016 2.3747665, 48.8726344 2.3737982, 48.8724447 2.3734415, 48.8721986 2.3733717, 48.8723062 2.3731759, 48.8722780 2.3731048, 48.8721635 2.3733040, 48.8717850 2.3725624, 48.8722491 2.3724459, 48.8718609 2.3727092, 48.8715427 2.3726645, 48.8721222 2.3726001, 48.8721600 2.3725531, 48.8727087 2.3737226, 48.8878559 2.3534540, 48.8540222 2.3721641, 48.8542603 2.3716689, 48.8541774 2.3718475, 48.8541359 2.3719456, 48.8540652 2.3718440, 48.8542657 2.3672153, 48.8542108 2.3674171, 48.8544265 2.3673700, 48.8555777 2.3673888, 48.8558432 2.3674030, 48.8746926 2.3541936, 48.8730916 2.3616811, 48.8384094 2.3844600, 48.8385526 2.3844982, 48.8386357 2.3839268, 48.8386925 2.3845364, 48.8387614 2.3840032, 48.8387719 2.3823784, 48.8387750 2.3824982, 48.8387982 2.3825006, 48.8388060 2.3824677, 48.8388084 2.3835182, 48.8388281 2.3825531, 48.8388498 2.3824569, 48.8388705 2.3825034, 48.8388749 2.3824170, 48.8388793 2.3824585, 48.8388904 2.3840713, 48.8388957 2.3825034, 48.8388968 2.3824835, 48.8389022 2.3824303, 48.8389046 2.3836278, 48.8389126 2.3825734, 48.8389154 2.3824519, 48.8389197 2.3825283, 48.8389329 2.3825383, 48.8389438 2.3824768, 48.8389462 2.3824119, 48.8389505 2.3831677, 48.8390023 2.3825170, 48.8390293 2.3826860, 48.8390336 2.3837125, 48.8390424 2.3833072, 48.8390642 2.3828554, 48.8390765 2.3825241, 48.8390870 2.3827957, 48.8390914 2.3826247, 48.8391178 2.3826278, 48.8391353 2.3825913, 48.8391451 2.3834334, 48.8391555 2.3826741, 48.8391626 2.3829833, 48.8392160 2.3827260, 48.8392468 2.3827607, 48.8392643 2.3831477, 48.8392652 2.3829868, 48.8392969 2.3830748, 48.8393168 2.3827723, 48.8393802 2.3831079, 48.8394217 2.3829185, 48.8394294 2.3830248, 48.8394666 2.3829052, 48.8394850 2.3825217, 48.8395418 2.3827110, 48.8395637 2.3827293, 48.8395680 2.3827027, 48.8395899 2.3827343, 48.8395976 2.3827011, 48.8396107 2.3827459, 48.8396194 2.3827060, 48.8385911 2.3839503, 48.8386283 2.3840101, 48.8386567 2.3838706, 48.8387332 2.3840533, 48.8387595 2.3840832, 48.8387813 2.3839570, 48.8388425 2.3841031, 48.8388757 2.3823899, 48.8388863 2.3841496, 48.8389038 2.3840002, 48.8390167 2.3827620, 48.8390189 2.3825361, 48.8390583 2.3825793, 48.8391501 2.3828699, 48.8628419 2.3413590, 48.8627761 2.3414067, 48.8324237 2.3621092, 48.8339266 2.3625710, 48.8391079 2.3390778, 48.8401997 2.3954293, 48.8403010 2.3953091, 48.8407015 2.3947730, 48.8397385 2.3945362, 48.8397436 2.3945134, 48.8400782 2.3955244, 48.8401040 2.3947627, 48.8401175 2.3947478, 48.8419537 2.3930673, 48.8425023 2.3924372, 48.8753498 2.3460798, 48.8752300 2.3455656, 48.8643515 2.3547358, 48.8950228 2.3876904, 48.8964425 2.3818401, 48.8965429 2.3823604, 48.8659100 2.3367259, 48.8786910 2.4108117, 48.8789442 2.4107087, 48.8796760 2.4100182, 48.8666898 2.3694210, 48.8612139 2.3668885, 48.8909699 2.3839029, 48.8596062 2.3680483, 48.8595048 2.3686879, 48.8591538 2.3688576, 48.8589862 2.3689283, 48.8416174 2.3913852, 48.8599956 2.3704874, 48.8642030 2.3713459, 48.8624274 2.3726970, 48.8624715 2.3726420, 48.8618723 2.3729155, 48.8582177 2.3718944, 48.8632934 2.3705504, 48.8630703 2.3685776, 48.8837500 2.4095627, 48.8422773 2.3762540, 48.8490376 2.4193390, 48.8379149 2.4079230, 48.8453589 2.4044766, 48.8429175 2.3482967, 48.8535911 2.3757106, 48.8693197 2.3050539, 48.8324657 2.3375075, 48.8620506 2.3780323, 48.8940948 2.3515003, 48.8915636 2.3488296, 48.8389953 2.3220254, 48.8524094 2.3465837, 48.8520736 2.3464136, 48.8522889 2.3461766, 48.8522996 2.3459479, 48.8580920 2.3523191, 48.8459395 2.3544549, 48.8684431 2.3706044, 48.8478853 2.4061185, 48.8646259 2.3700342, 48.8643081 2.3688079, 48.8214522 2.3333505, 48.8478200 2.4214587, 48.8487550 2.4232670, 48.8478886 2.4214355, 48.8378588 2.4114608, 48.8214088 2.3309102, 48.8612224 2.3648477, 48.8391187 2.4008037, 48.8397181 2.4041355, 48.8423773 2.3977129, 48.8432024 2.3913685, 48.8449650 2.3837024, 48.8751749 2.3642154, 48.8734440 2.3641694, 48.8731976 2.3643351, 48.8726645 2.3647941, 48.8733461 2.3642358, 48.8725150 2.3656983, 48.8714362 2.3657352, 48.8698453 2.3669656, 48.8690849 2.3675483, 48.8467785 2.3592477, 48.8569847 2.3778145, 48.8567447 2.3780076, 48.8568956 2.3783832, 48.8573775 2.3791140, 48.8357873 2.4065510, 48.8766260 2.3543540, 48.8768960 2.3534930, 48.8410662 2.3658261, 48.8410809 2.3658156, 48.8411047 2.3659329, 48.8411315 2.3657638, 48.8411450 2.3657501, 48.8411688 2.3658790, 48.8411749 2.3658963, 48.8411757 2.3661246, 48.8411784 2.3658643, 48.8411820 2.3659153, 48.8411845 2.3658816, 48.8411885 2.3659325, 48.8411898 2.3658496, 48.8411916 2.3659006, 48.8411956 2.3659515, 48.8411959 2.3658669, 48.8411982 2.3659178, 48.8412030 2.3658859, 48.8412050 2.3659748, 48.8412053 2.3659368, 48.8412095 2.3659032, 48.8412121 2.3659938, 48.8412147 2.3659602, 48.8412166 2.3659222, 48.8412218 2.3659792, 48.8412260 2.3659455, 48.8412311 2.3660249, 48.8412331 2.3659645, 48.8412402 2.3660103, 48.8412439 2.3660479, 48.8412505 2.3660949, 48.8412527 2.3659956, 48.8412553 2.3660284, 48.8412577 2.3661139, 48.8412602 2.3660802, 48.8412604 2.3663509, 48.8412673 2.3660992, 48.8412693 2.3661545, 48.8412716 2.3660655, 48.8412764 2.3661735, 48.8412787 2.3660845, 48.8412790 2.3661398, 48.8412861 2.3661588, 48.8412903 2.3661251, 48.8412921 2.3662106, 48.8412974 2.3661441, 48.8412992 2.3662296, 48.8413018 2.3661959, 48.8413089 2.3662149, 48.8413126 2.3662590, 48.8413131 2.3661813, 48.8413197 2.3662780, 48.8413202 2.3662003, 48.8413222 2.3662490, 48.8413293 2.3662633, 48.8413326 2.3663126, 48.8413336 2.3662296, 48.8413398 2.3663316, 48.8413407 2.3662486, 48.8413423 2.3662979, 48.8413457 2.3665703, 48.8413494 2.3663169, 48.8413537 2.3662833, 48.8413555 2.3663779, 48.8413576 2.3656772, 48.8413602 2.3663932, 48.8413608 2.3663023, 48.8413651 2.3663632, 48.8413661 2.3658576, 48.8413667 2.3664465, 48.8413696 2.3656576, 48.8413722 2.3663822, 48.8413747 2.3658812, 48.8413759 2.3658475, 48.8413765 2.3663485, 48.8413810 2.3658952, 48.8413836 2.3663675, 48.8413860 2.3664123, 48.8413906 2.3658378, 48.8413929 2.3656295, 48.8413941 2.3664571, 48.8413956 2.3658573, 48.8413956 2.3659238, 48.8413993 2.3659178, 48.8414012 2.3664761, 48.8414038 2.3664424, 48.8414058 2.3656149, 48.8414089 2.3664969, 48.8414109 2.3658210, 48.8414109 2.3664614, 48.8414141 2.3658286, 48.8414152 2.3664278, 48.8414165 2.3658384, 48.8414186 2.3664822, 48.8414223 2.3655821, 48.8414223 2.3664468, 48.8414299 2.3664675, 48.8414374 2.3665919, 48.8414428 2.3655648, 48.8414439 2.3664856, 48.8414491 2.3662744, 48.8414620 2.3662573, 48.8414697 2.3657097, 48.8414761 2.3657245, 48.8414314 2.3661953, 48.8414395 2.3662283, 48.8414855 2.3657192, 48.8414861 2.3667249, 48.8414949 2.3657124, 48.8414986 2.3667059, 48.8414997 2.3664149, 48.8415028 2.3657910, 48.8415031 2.3655062, 48.8415062 2.3657452, 48.8415078 2.3664063, 48.8415097 2.3657841, 48.8415165 2.3657823, 48.8415185 2.3666929, 48.8415257 2.3658228, 48.8415287 2.3667361, 48.8415355 2.3667724, 48.8415409 2.3654671, 48.8415412 2.3666774, 48.8415458 2.3657261, 48.8415532 2.3657486, 48.8415617 2.3657684, 48.8415622 2.3666592, 48.8415639 2.3668363, 48.8415708 2.3668587, 48.8415747 2.3666402, 48.8415793 2.3665566, 48.8415938 2.3665700, 48.8416106 2.3669157, 48.8416231 2.3667845, 48.8416299 2.3667983, 48.8416310 2.3668985, 48.8416356 2.3668121, 48.8416407 2.3667266, 48.8416492 2.3668415, 48.8416532 2.3667076, 48.8416538 2.3668570, 48.8416628 2.3668777, 48.8416826 2.3667824, 48.8416847 2.3653584, 48.8417019 2.3668435, 48.8417341 2.3668728, 48.8417630 2.3668925, 48.8418015 2.3668881, 48.8418140 2.3668691, 48.8418254 2.3667586, 48.8418390 2.3667344, 48.8418568 2.3652033, 48.8418584 2.3669002, 48.8419107 2.3668190, 48.8419425 2.3667896, 48.8419645 2.3651129, 48.8420296 2.3650543, 48.8420496 2.3666964, 48.8421812 2.3663714, 48.8421854 2.3649108, 48.8422085 2.3664839, 48.8422257 2.3665562, 48.8422449 2.3664546, 48.8422845 2.3664216, 48.8423370 2.3663548, 48.8423739 2.3663264, 48.8423848 2.3647276, 48.8423938 2.3664019, 48.8424158 2.3661193, 48.8424377 2.3661860, 48.8424585 2.3662362, 48.8425584 2.3645761, 48.8405547 2.4059911, 48.8466055 2.3582174, 48.8466176 2.3581990, 48.8472981 2.3543452, 48.8920550 2.3461008, 48.8651944 2.3554408, 48.8665545 2.3603936, 48.8650138 2.3556963, 48.8190636 2.3378045, 48.8190433 2.3382617, 48.8190668 2.3382704, 48.8192920 2.4116386, 48.8516727 2.3995074, 48.8504308 2.3983982, 48.8301596 2.3342151, 48.8908871 2.3836986, 48.8919157 2.3820974, 48.8919633 2.3816291, 48.8921109 2.3816813, 48.8927269 2.3807490, 48.8927765 2.3805852, 48.8930260 2.3802433, 48.8911877 2.3833706, 48.8926611 2.3805354, 48.8327062 2.3968887, 48.8452732 2.3881818, 48.8707266 2.3515964, 48.8899568 2.3800977, 48.8904606 2.3790788, 48.8910196 2.3779829, 48.8909664 2.3776551, 48.8907115 2.3784896, 48.8902508 2.3794782, 48.8907119 2.3781803, 48.8904805 2.3790357, 48.8903403 2.3788314, 48.8906831 2.3786293, 48.8879464 2.3835928, 48.8895142 2.3498344, 48.8954829 2.3466824, 48.8559378 2.3789593, 48.8554706 2.3787234, 48.8317848 2.3580564, 48.8331084 2.3230703, 48.8414246 2.3661153, 48.8414151 2.3661625, 48.8414164 2.3661534, 48.8414213 2.3661660, 48.8414215 2.3661570, 48.8414974 2.3661442, 48.8415007 2.3661553, 48.8416171 2.3664287, 48.8416189 2.3664324, 48.8416324 2.3664861, 48.8629210 2.3641445, 48.8629885 2.3640093, 48.8516526 2.4192138, 48.8736147 2.3633962, 48.8753891 2.4055942, 48.8747235 2.4028142, 48.8426135 2.3896406, 48.8713746 2.3353089, 48.8301369 2.3291359, 48.8630361 2.3673100, 48.8708335 2.3864170, 48.8709285 2.3597311, 48.8712872 2.3602777, 48.8707054 2.3597617, 48.8709792 2.3597736, 48.8711489 2.3601690, 48.8825369 2.3507603, 48.8649741 2.3359158, 48.8572892 2.3686817, 48.8584243 2.3685727, 48.8592341 2.3681415, 48.8593853 2.3683292, 48.8401058 2.3203271, 48.8401808 2.3201765, 48.8402710 2.3200441, 48.8403040 2.3202632, 48.8403641 2.3198296, 48.8404212 2.3204915, 48.8404392 2.3197109, 48.8404542 2.3199482, 48.8404663 2.3202587, 48.8404813 2.3201263, 48.8405023 2.3202039, 48.8405113 2.3200669, 48.8405264 2.3202222, 48.8405354 2.3201537, 48.8405369 2.3200935, 48.8405384 2.3198204, 48.8405384 2.3202587, 48.8405564 2.3194278, 48.8405564 2.3196880, 48.8405624 2.3201719, 48.8405834 2.3201035, 48.8406045 2.3199985, 48.8406285 2.3203271, 48.8406405 2.3192954, 48.8406589 2.3204914, 48.8407277 2.3199802, 48.8407337 2.3194324, 48.8407787 2.3197474, 48.8407968 2.3204961, 48.8408118 2.3206558, 48.8408569 2.3206923, 48.8409109 2.3197565, 48.8409139 2.3197656, 48.8409320 2.3208110, 48.8409710 2.3196470, 48.8409924 2.3208432, 48.8411543 2.3192589, 48.8411543 2.3198433, 48.8411633 2.3207152, 48.8411753 2.3197291, 48.8412534 2.3198615, 48.8412985 2.3193274, 48.8414577 2.3201674, 48.8841973 2.3741821, 48.8553549 2.3555867, 48.8553224 2.3556518, 48.8360484 2.3486827, 48.8673865 2.3967482, 48.8584332 2.3828373, 48.8580910 2.3814281, 48.8581324 2.3816558, 48.8581768 2.3827711, 48.8586116 2.3834178, 48.8647967 2.3982709, 48.8650431 2.3984901, 48.8594153 2.4063574, 48.8594868 2.4062620, 48.8623435 2.4069746, 48.8629913 2.4001471, 48.8600323 2.4031223, 48.8541661 2.3685390, 48.8557389 2.3682126, 48.8603823 2.3676665, 48.8565630 2.3686073, 48.8584554 2.3675609, 48.8605999 2.4027524, 48.8389090 2.3816630, 48.8357533 2.3521704, 48.8597890 2.4027381, 48.8599301 2.4026085, 48.8599721 2.4037665, 48.8600188 2.4036630, 48.8605866 2.4029849, 48.8590499 2.4002749, 48.8590621 2.4002993, 48.8590948 2.4003587, 48.8591343 2.4001717, 48.8591407 2.4003439, 48.8592420 2.3998807, 48.8592662 2.3999638, 48.8592935 2.4001799, 48.8593042 2.4000745, 48.8593155 2.4001539, 48.8593277 2.4001116, 48.8585563 2.3988775, 48.8586143 2.3988460, 48.8586599 2.3989279, 48.8586903 2.3986088, 48.8587193 2.3989006, 48.8587676 2.3989699, 48.8587800 2.3987327, 48.8588229 2.3989447, 48.8588560 2.3988334, 48.8590355 2.3993435, 48.8590922 2.3994359, 48.8593962 2.4050659, 48.8759892 2.3685271, 48.8283283 2.3558986, 48.8310135 2.3574868, 48.8393688 2.3190560, 48.8395005 2.3187849, 48.8395196 2.3192206, 48.8396280 2.3189592, 48.8396769 2.3194014, 48.8397788 2.3191399, 48.8398234 2.3195725, 48.8399424 2.3193272, 48.8399424 2.3196887, 48.8399892 2.3187397, 48.8400231 2.3183103, 48.8400423 2.3186138, 48.8401124 2.3195337, 48.8401421 2.3189237, 48.8401442 2.3199017, 48.8401697 2.3184976, 48.8402016 2.3187849, 48.8402271 2.3190463, 48.8402656 2.3202127, 48.8402802 2.3197177, 48.8402806 2.3201854, 48.8402836 2.3201488, 48.8402866 2.3186202, 48.8402993 2.3188881, 48.8403032 2.3201077, 48.8403047 2.3201739, 48.8403137 2.3203018, 48.8403152 2.3201465, 48.8403242 2.3201169, 48.8403242 2.3201831, 48.8403392 2.3202059, 48.8403482 2.3201602, 48.8403652 2.3192077, 48.8404527 2.3190723, 48.8404566 2.3193175, 48.8404863 2.3188720, 48.8405100 2.3202842, 48.8406476 2.3190302, 48.8407267 2.3198743, 48.8407586 2.3208814, 48.8407635 2.3203173, 48.8408117 2.3197419, 48.8408287 2.3196806, 48.8408951 2.3199137, 48.8409071 2.3198818, 48.8409236 2.3198567, 48.8409431 2.3198270, 48.8409551 2.3198065, 48.8409604 2.3194385, 48.8409702 2.3197699, 48.8409807 2.3197540, 48.8409867 2.3197471, 48.8409957 2.3197403, 48.8409994 2.3198996, 48.8410077 2.3197197, 48.8410093 2.3193610, 48.8410197 2.3196923, 48.8410591 2.3192909, 48.8410594 2.3202880, 48.8410624 2.3191901, 48.8410648 2.3196010, 48.8410715 2.3207670, 48.8410798 2.3195714, 48.8410806 2.3191550, 48.8411024 2.3195394, 48.8411129 2.3195120, 48.8411194 2.3196532, 48.8411219 2.3194823, 48.8411384 2.3194572, 48.8411549 2.3194161, 48.8411715 2.3193842, 48.8411895 2.3193431, 48.8412135 2.3192952, 48.8412331 2.3192609, 48.8412526 2.3192198, 48.8413238 2.3205114, 48.8414035 2.3200822, 48.8583217 2.4080504, 48.8586330 2.3985247, 48.8586455 2.3985392, 48.8592251 2.3995582, 48.8592403 2.3995818, 48.8592474 2.3994995, 48.8592545 2.3995627, 48.8328552 2.3251354, 48.8651549 2.3952523, 48.8648765 2.3959329, 48.8592565 2.3822340, 48.8589660 2.3811882, 48.8578346 2.3793123, 48.8577162 2.3793963, 48.8630991 2.3664400, 48.8632016 2.3663520, 48.8772319 2.3600699, 48.8772370 2.3600479, 48.8772777 2.3599067, 48.8772828 2.3598847, 48.8773263 2.3597351, 48.8773314 2.3597131, 48.8773505 2.3601304, 48.8773671 2.3595683, 48.8773722 2.3595463, 48.8773963 2.3599672, 48.8774135 2.3594003, 48.8774186 2.3593783, 48.8774448 2.3597956, 48.8774856 2.3596288, 48.8775205 2.3602399, 48.8775321 2.3594608, 48.8775663 2.3600766, 48.8776149 2.3599051, 48.8776557 2.3597383, 48.8777021 2.3595702, 48.8777110 2.3603443, 48.8777568 2.3601810, 48.8778054 2.3600095, 48.8778462 2.3598427, 48.8778841 2.3604516, 48.8778926 2.3596746, 48.8779299 2.3602884, 48.8779785 2.3601168, 48.8780193 2.3599500, 48.8780657 2.3597820, 48.8781114 2.3605795, 48.8781572 2.3604163, 48.8782057 2.3602447, 48.8782465 2.3600780, 48.8782930 2.3599099, 48.8783222 2.3607134, 48.8783680 2.3605501, 48.8784165 2.3603786, 48.8784573 2.3602118, 48.8785038 2.3600437, 48.8785243 2.3608251, 48.8785701 2.3606619, 48.8786186 2.3604903, 48.8786595 2.3603235, 48.8786829 2.3609177, 48.8787059 2.3601555, 48.8787287 2.3607545, 48.8787772 2.3605829, 48.8787902 2.3609824, 48.8788180 2.3604162, 48.8788360 2.3608192, 48.8788645 2.3602481, 48.8788846 2.3606476, 48.8789254 2.3604808, 48.8789718 2.3603128, 48.8598452 2.4030310, 48.8762683 2.3597912, 48.8762732 2.3597662, 48.8762770 2.3597919, 48.8762779 2.3583622, 48.8762799 2.3597728, 48.8762818 2.3583519, 48.8762901 2.3600231, 48.8762969 2.3600298, 48.8763036 2.3582687, 48.8763074 2.3582584, 48.8763268 2.3598842, 48.8763331 2.3595464, 48.8763336 2.3598908, 48.8763360 2.3595309, 48.8763573 2.3597673, 48.8763564 2.3598194, 48.8763641 2.3597739, 48.8764472 2.3591361, 48.8764506 2.3591023, 48.8764511 2.3591258, 48.8764569 2.3591067, 48.8765173 2.3591663, 48.8765207 2.3591508, 48.8766929 2.3585009, 48.8767102 2.3584288, 48.8767119 2.3584226, 48.8767538 2.3606815, 48.8768174 2.3601150, 48.8768259 2.3607168, 48.8768316 2.3600915, 48.8768625 2.3603961, 48.8768683 2.3599353, 48.8768703 2.3599290, 48.8768756 2.3599055, 48.8768780 2.3598978, 48.8768873 2.3607028, 48.8768916 2.3606925, 48.8768938 2.3598430, 48.8768949 2.3599482, 48.8768954 2.3599404, 48.8768960 2.3598353, 48.8768990 2.3599290, 48.8769014 2.3599217, 48.8769043 2.3599118, 48.8769798 2.3599589, 48.8769882 2.3606416, 48.8769995 2.3606479, 48.8770163 2.3593793, 48.8770197 2.3593679, 48.8770350 2.3593225, 48.8770411 2.3593058, 48.8770534 2.3592570, 48.8770685 2.3591935, 48.8770732 2.3591686, 48.8770794 2.3591405, 48.8770828 2.3591208, 48.8770917 2.3590838, 48.8770951 2.3590729, 48.8770980 2.3590833, 48.8770984 2.3590628, 48.8771008 2.3590716, 48.8771047 2.3590490, 48.8771102 2.3590293, 48.8771221 2.3589843, 48.8771249 2.3589741, 48.8771276 2.3589664, 48.8771295 2.3589580, 48.8771324 2.3589492, 48.8771356 2.3589393, 48.8772445 2.3589404, 48.8772462 2.3584873, 48.8772464 2.3589318, 48.8772530 2.3584704, 48.8772549 2.3584910, 48.8772593 2.3584785, 48.8772854 2.3583542, 48.8772873 2.3583682, 48.8772941 2.3583616, 48.8773393 2.3585684, 48.8773832 2.3582596, 48.8774513 2.3582979, 48.8774523 2.3583199, 48.8774620 2.3583045, 48.8772580 2.3953907, 48.8410848 2.3664258, 48.8410911 2.3664428, 48.8410977 2.3664173, 48.8411029 2.3664128, 48.8411167 2.3664179, 48.8411209 2.3663962, 48.8411261 2.3663916, 48.8411499 2.3663736, 48.8411606 2.3663562, 48.8411660 2.3663728, 48.8411736 2.3663492, 48.8412044 2.3663248, 48.8412096 2.3663202, 48.8412145 2.3663161, 48.8412254 2.3662954, 48.8412320 2.3663140, 48.8406763 2.3667807, 48.8406929 2.3669802, 48.8407070 2.3667478, 48.8407257 2.3667467, 48.8407291 2.3667426, 48.8407504 2.3669292, 48.8407642 2.3668988, 48.8407671 2.3667008, 48.8407708 2.3669135, 48.8407934 2.3666650, 48.8408122 2.3668723, 48.8408286 2.3666533, 48.8408368 2.3666401, 48.8408403 2.3666506, 48.8408504 2.3666342, 48.8408556 2.3666297, 48.8408607 2.3668074, 48.8408714 2.3668154, 48.8408754 2.3667963, 48.8408812 2.3668156, 48.8408909 2.3667968, 48.8408934 2.3665981, 48.8408986 2.3665936, 48.8409007 2.3667847, 48.8409079 2.3665841, 48.8409131 2.3665796, 48.8409260 2.3667491, 48.8409312 2.3667655, 48.8409362 2.3667411, 48.8409370 2.3665586, 48.8409410 2.3667545, 48.8409422 2.3665541, 48.8409514 2.3665463, 48.8409566 2.3665418, 48.8409712 2.3665309, 48.8409736 2.3667090, 48.8409784 2.3667209, 48.8409794 2.3665241, 48.8409832 2.3666963, 48.8409846 2.3665196, 48.8409884 2.3667107, 48.8410009 2.3666994, 48.8410034 2.3665012, 48.8410086 2.3664967, 48.8410144 2.3666855, 48.8410178 2.3664828, 48.8410235 2.3666769, 48.8410241 2.3664998, 48.8410247 2.3664825, 48.8410299 2.3664780, 48.8410331 2.3666516, 48.8410379 2.3664723, 48.8410407 2.3666436, 48.8410472 2.3664574, 48.8410517 2.3666344, 48.8410535 2.3664744, 48.8410541 2.3664570, 48.8410545 2.3666502, 48.8410593 2.3664525, 48.8410625 2.3666399, 48.8410673 2.3664468, 48.8410704 2.3666354, 48.8410788 2.3666274, 48.8410819 2.3666025, 48.8410871 2.3666224, 48.8410919 2.3666167, 48.8410979 2.3666099, 48.8411047 2.3666019, 48.8411173 2.3665700, 48.8411213 2.3665876, 48.8411331 2.3665759, 48.8411390 2.3665690, 48.8411509 2.3665621, 48.8411595 2.3665527, 48.8411655 2.3665455, 48.8411899 2.3665199, 48.8411940 2.3665004, 48.8412006 2.3665161, 48.8412099 2.3665037, 48.8412390 2.3662057, 48.8412394 2.3664796, 48.8412457 2.3664714, 48.8412552 2.3664638, 48.8412627 2.3664338, 48.8412707 2.3662865, 48.8412724 2.3664600, 48.8413557 2.3661821, 48.8413630 2.3662008, 48.8414519 2.3660567, 48.8763521 2.3598757, 48.8763675 2.3598186, 48.8764071 2.3600847, 48.8764215 2.3598625, 48.8764890 2.3597768, 48.8766158 2.3601411, 48.8766245 2.3601074, 48.8766438 2.3601646, 48.8766554 2.3601235, 48.8766660 2.3600062, 48.8766689 2.3599402, 48.8766775 2.3599197, 48.8766891 2.3599534, 48.8766959 2.3599300, 48.8767282 2.3584412, 48.8767436 2.3583840, 48.8767783 2.3602122, 48.8767879 2.3586332, 48.8768352 2.3599938, 48.8768419 2.3599659, 48.8769509 2.3583518, 48.8769692 2.3583620, 48.8769846 2.3586875, 48.8769933 2.3586538, 48.8770126 2.3587109, 48.8770242 2.3586699, 48.8770348 2.3585526, 48.8770377 2.3584866, 48.8770464 2.3584661, 48.8770579 2.3584998, 48.8770647 2.3584764, 48.8771312 2.3588444, 48.8771379 2.3588209, 48.8772035 2.3584896, 48.8772180 2.3585028, 48.8411643 2.3739380, 48.8413733 2.3746037, 48.8419974 2.3758364, 48.8503560 2.3786493, 48.8744982 2.3927178, 48.8765820 2.3595712, 48.8766266 2.3596110, 48.8766958 2.3594194, 48.8766976 2.3594210, 48.8766995 2.3594230, 48.8767083 2.3592263, 48.8767554 2.3593440, 48.8767588 2.3593315, 48.8767746 2.3592712, 48.8767800 2.3592598, 48.8768033 2.3596330, 48.8768094 2.3596123, 48.8769671 2.3590165, 48.8769677 2.3590087, 48.8769804 2.3588987, 48.8769870 2.3589002, 48.8771196 2.3601452, 48.8771206 2.3601356, 48.8771346 2.3601320, 48.8771404 2.3601367, 48.8771490 2.3601408, 48.8771616 2.3600228, 48.8771643 2.3600145, 48.8771801 2.3601564, 48.8771934 2.3601658, 48.8772601 2.3599126, 48.8772615 2.3599027, 48.8773286 2.3593696, 48.8773303 2.3593641, 48.8773498 2.3595736, 48.8773673 2.3592246, 48.8773765 2.3592302, 48.8773859 2.3592394, 48.8773927 2.3592431, 48.8774009 2.3592483, 48.8774121 2.3592552, 48.8774189 2.3592578, 48.8296160 2.3801410, 48.8780937 2.3647247, 48.8484242 2.3412319, 48.8559893 2.3328832, 48.8535947 2.3367962, 48.8529909 2.3348298, 48.8548020 2.3362572, 48.8544717 2.3370259, 48.8555653 2.3366336, 48.8581073 2.3283770, 48.8196857 2.3385703, 48.8205940 2.3352040, 48.8332462 2.4027150, 48.8495094 2.4344651, 48.8572542 2.4071947, 48.8571978 2.4071499, 48.8599190 2.4059896, 48.8600274 2.4065899, 48.8470173 2.4162807, 48.8469053 2.4174060, 48.8461651 2.4165192, 48.8461288 2.4169126, 48.8468981 2.4157604, 48.8680595 2.4086915, 48.8681030 2.4033390, 48.8690822 2.4084492, 48.8461904 2.4189051, 48.8465563 2.4186669, 48.8462055 2.4185077, 48.8465106 2.4191624, 48.8732212 2.3630839, 48.8609418 2.3803526, 48.8609577 2.3809480, 48.8611306 2.3809641, 48.8609312 2.3814496, 48.8463130 2.4213215, 48.8463873 2.4205294, 48.8460139 2.4207917, 48.8459377 2.4216165, 48.8614810 2.3806105, 48.8592165 2.3828435, 48.8666042 2.3853196, 48.8338804 2.3681948, 48.8704953 2.3458276, 48.8581195 2.3231884, 48.8614427 2.3780898, 48.8614740 2.3781608, 48.8610647 2.3776241, 48.8615428 2.3776813, 48.8610635 2.3813235, 48.8611094 2.3814550, 48.8611857 2.3816299, 48.8616071 2.3823364, 48.8617059 2.3826218, 48.8945524 2.3527710, 48.8487082 2.3770069, 48.8556111 2.3402066, 48.8623796 2.3727706, 48.8615951 2.3740983, 48.8612824 2.3749463, 48.8621848 2.3775790, 48.8621106 2.3774234, 48.8626682 2.3786586, 48.8626244 2.3797994, 48.8624272 2.3797335, 48.8622688 2.3799159, 48.8623261 2.3800798, 48.8642514 2.3666736, 48.8642037 2.3666897, 48.8770140 2.3668362, 48.8477523 2.3131717, 48.8476019 2.3124307, 48.8633879 2.3618031, 48.8627191 2.3631020, 48.8640746 2.3609523, 48.8459026 2.4220203, 48.8459202 2.4218168, 48.8462824 2.4216452, 48.8422716 2.3666416, 48.8423629 2.3665648, 48.8425115 2.3664241, 48.8425602 2.3663854, 48.8432847 2.3745921, 48.8705363 2.3358361, 48.8785355 2.3996682, 48.8726106 2.3907847, 48.8784996 2.3974229, 48.8442862 2.3237918, 48.8443083 2.3239728, 48.8460103 2.4247575, 48.8703223 2.3421103, 48.8533300 2.4347973, 48.8527506 2.4278305, 48.8728746 2.3289534, 48.8725146 2.3295568, 48.8486800 2.3708566, 48.8488626 2.3712412, 48.8571958 2.3687018, 48.8594276 2.3683212, 48.8721402 2.3254288, 48.8721670 2.3253311, 48.8721199 2.3255281, 48.8519888 2.3423483, 48.8467371 2.3102329, 48.8547937 2.3759343, 48.8588805 2.3286990, 48.8661383 2.3340481, 48.8784033 2.3659429, 48.8803903 2.3673551, 48.8804349 2.3673901, 48.8537976 2.3699213, 48.8537389 2.3700602, 48.8441938 2.3760889, 48.8441062 2.3758566, 48.8441363 2.3758925, 48.8442446 2.3758277, 48.8441934 2.3759131, 48.8442703 2.3755254, 48.8442906 2.3756805, 48.8442914 2.3754927, 48.8442359 2.3759666, 48.8443082 2.3754683, 48.8442248 2.3730778, 48.8442848 2.3755475, 48.8443139 2.3757112, 48.8442584 2.3758503, 48.8443084 2.3755146, 48.8443227 2.3754837, 48.8443371 2.3757419, 48.8442991 2.3755639, 48.8443223 2.3755303, 48.8443604 2.3757725, 48.8443361 2.3755050, 48.8443837 2.3758032, 48.8443788 2.3759993, 48.8443103 2.3761180, 48.8444142 2.3758389, 48.8443244 2.3759317, 48.8443319 2.3732463, 48.8444440 2.3731815, 48.8443694 2.3761369, 48.8444138 2.3762520, 48.8445804 2.3763160, 48.8443942 2.3760196, 48.8444089 2.3763562, 48.8444326 2.3732970, 48.8444368 2.3732889, 48.8444654 2.3754226, 48.8444639 2.3762882, 48.8444752 2.3754306, 48.8444794 2.3763093, 48.8445134 2.3764548, 48.8444632 2.3732415, 48.8445390 2.3755579, 48.8445449 2.3755410, 48.8444459 2.3733049, 48.8446195 2.3732807, 48.8445878 2.3732367, 48.8448178 2.3750170, 48.8446067 2.3758348, 48.8445593 2.3732649, 48.8444802 2.3734081, 48.8444919 2.3733865, 48.8445039 2.3733607, 48.8445243 2.3733264, 48.8446476 2.3758924, 48.8446698 2.3733567, 48.8448459 2.3749653, 48.8446210 2.3735345, 48.8446753 2.3752867, 48.8446861 2.3752714, 48.8446360 2.3735066, 48.8447053 2.3752335, 48.8446984 2.3752478, 48.8446513 2.3734785, 48.8447319 2.3751759, 48.8447276 2.3729690, 48.8447300 2.3762293, 48.8447323 2.3729589, 48.8446613 2.3734571, 48.8446735 2.3734392, 48.8447126 2.3752202, 48.8447140 2.3760444, 48.8447227 2.3752005, 48.8447758 2.3736362, 48.8449743 2.3737603, 48.8447528 2.3763621, 48.8448067 2.3730415, 48.8449029 2.3748593, 48.8448153 2.3730461, 48.8447876 2.3736153, 48.8448040 2.3735875, 48.8448195 2.3750508, 48.8448308 2.3750285, 48.8448470 2.3738795, 48.8448581 2.3738554, 48.8448736 2.3738257, 48.8448894 2.3737965, 48.8450135 2.3746500, 48.8449930 2.3739619, 48.8449838 2.3739796, 48.8448862 2.3731359, 48.8449017 2.3737710, 48.8448931 2.3731443, 48.8449139 2.3737507, 48.8449039 2.3738749, 48.8449143 2.3758655, 48.8449157 2.3738898, 48.8449182 2.3738552, 48.8449238 2.3738469, 48.8449287 2.3738381, 48.8449334 2.3738302, 48.8449375 2.3738230, 48.8449428 2.3738137, 48.8449871 2.3738480, 48.8450990 2.3744913, 48.8449956 2.3738341, 48.8451555 2.3737343, 48.8451637 2.3734748, 48.8451673 2.3737104, 48.8451699 2.3734838, 48.8452179 2.3743667, 48.8452354 2.3735579, 48.8452463 2.3735712, 48.8452664 2.3742524, 48.8452890 2.3738524, 48.8452994 2.3739307, 48.8451414 2.3738142, 48.8453047 2.3737283, 48.8453050 2.3737203, 48.8471804 2.3954861, 48.8457530 2.3959415, 48.8802143 2.4096789, 48.8769502 2.4071482, 48.8904696 2.3392991, 48.8859778 2.3475855, 48.8744634 2.3207611, 48.8667059 2.3800163, 48.8445988 2.3732902, 48.8446870 2.3732181, 48.8446958 2.3731949, 48.8450228 2.3738335, 48.8450836 2.3737458, 48.8451181 2.3737850, 48.8450796 2.3736183, 48.8450404 2.3738411, 48.8451120 2.3737576, 48.8448847 2.3736459, 48.8442317 2.3732994, 48.8442921 2.3731905, 48.8443049 2.3732137, 48.8443364 2.3731031, 48.8443318 2.3731258, 48.8443434 2.3731167, 48.8444014 2.3730030, 48.8432129 2.3749481, 48.8432845 2.3748106, 48.8432937 2.3748216, 48.8432834 2.3750270, 48.8433226 2.3747406, 48.8433281 2.3747516, 48.8433339 2.3747377, 48.8433453 2.3748784, 48.8433540 2.3748950, 48.8433859 2.3746405, 48.8433719 2.3748376, 48.8433749 2.3748513, 48.8433774 2.3748092, 48.8439225 2.3736874, 48.8439337 2.3736400, 48.8439368 2.3736461, 48.8434325 2.3747314, 48.8439392 2.3736287, 48.8439437 2.3736575, 48.8439599 2.3735964, 48.8439632 2.3736010, 48.8439656 2.3736047, 48.8439685 2.3736076, 48.8439708 2.3736108, 48.8439755 2.3737641, 48.8439919 2.3737234, 48.8439922 2.3737053, 48.8439953 2.3735464, 48.8439972 2.3737304, 48.8440063 2.3737461, 48.8440188 2.3736799, 48.8440216 2.3736829, 48.8440238 2.3736874, 48.8440265 2.3736909, 48.8440301 2.3736943, 48.8440483 2.3736230, 48.8440499 2.3734350, 48.8440605 2.3734498, 48.8440613 2.3734176, 48.8440637 2.3736453, 48.8440710 2.3734317, 48.8441106 2.3733071, 48.8441211 2.3733248, 48.8441057 2.3735185, 48.8441165 2.3734962, 48.8441182 2.3735349, 48.8441261 2.3735194, 48.8441660 2.3732459, 48.8441687 2.3733907, 48.8441755 2.3732448, 48.8441821 2.3734107, 48.8441806 2.3732346, 48.8442206 2.3733245, 48.8442260 2.3733132, 48.8442295 2.3731234, 48.8442435 2.3731216, 48.8442847 2.3730293, 48.8442771 2.3730446, 48.8442914 2.3730403, 48.8443475 2.3729232, 48.8434449 2.3750690, 48.8434493 2.3749737, 48.8435649 2.3749705, 48.8434760 2.3752147, 48.8434849 2.3752212, 48.8437039 2.3749633, 48.8436179 2.3747438, 48.8435492 2.3752478, 48.8435808 2.3752978, 48.8435862 2.3753044, 48.8435917 2.3757276, 48.8438280 2.3751221, 48.8436029 2.3751513, 48.8436367 2.3753499, 48.8436770 2.3752434, 48.8436825 2.3753097, 48.8436002 2.3750675, 48.8436902 2.3752987, 48.8436949 2.3752842, 48.8437027 2.3752732, 48.8437070 2.3752620, 48.8437147 2.3752510, 48.8437103 2.3753378, 48.8437270 2.3751959, 48.8437287 2.3753396, 48.8437004 2.3758707, 48.8437324 2.3752026, 48.8437366 2.3752097, 48.8437395 2.3753521, 48.8437510 2.3754037, 48.8437587 2.3753927, 48.8437634 2.3753781, 48.8437711 2.3753671, 48.8437754 2.3753559, 48.8437832 2.3753449, 48.8439132 2.3752328, 48.8438231 2.3756979, 48.8438339 2.3757105, 48.8438084 2.3760076, 48.8438687 2.3753543, 48.8438806 2.3756920, 48.8438879 2.3757020, 48.8438882 2.3756775, 48.8438956 2.3756876, 48.8439874 2.3753262, 48.8439521 2.3757937, 48.8439594 2.3758037, 48.8440234 2.3758015, 48.8440929 2.3754657, 48.8440308 2.3758115, 48.8440887 2.3756252, 48.8442198 2.3761215, 48.8441562 2.3760314, 48.8441940 2.3762374, 48.8442256 2.3761060, 48.8442519 2.3760922, 48.8442465 2.3759817, 48.8443296 2.3760837, 48.8443603 2.3759776, 48.8443727 2.3760561, 48.8443758 2.3762845, 48.8443764 2.3759768, 48.8443805 2.3760451, 48.8443820 2.3762673, 48.8443891 2.3764701, 48.8444007 2.3764479, 48.8444017 2.3760875, 48.8444079 2.3760781, 48.8444167 2.3761589, 48.8444203 2.3761715, 48.8444254 2.3761762, 48.8444365 2.3760695, 48.8444402 2.3760820, 48.8444425 2.3761495, 48.8444453 2.3760867, 48.8445154 2.3758985, 48.8445417 2.3761693, 48.8445862 2.3760202, 48.8446251 2.3760504, 48.8440591 2.3758524, 48.8642446 2.3685746, 48.8642207 2.3684794, 48.8647760 2.3680660, 48.8654588 2.3684836, 48.8654326 2.3690040, 48.8584849 2.4066443, 48.8567808 2.3972893, 48.8847780 2.3839350, 48.8532110 2.3437278, 48.8554043 2.3476213, 48.8576303 2.3483829, 48.8431887 2.3749839, 48.8432104 2.3750497, 48.8432618 2.3750609, 48.8432622 2.3749603, 48.8432772 2.3749271, 48.8433265 2.3748132, 48.8433496 2.3748490, 48.8433860 2.3747058, 48.8434087 2.3747481, 48.8434733 2.3744721, 48.8434821 2.3745702, 48.8435726 2.3743940, 48.8435786 2.3744910, 48.8435975 2.3743426, 48.8436477 2.3741666, 48.8437059 2.3742558, 48.8437260 2.3741054, 48.8437632 2.3739609, 48.8437797 2.3739206, 48.8437833 2.3739251, 48.8437839 2.3739140, 48.8437869 2.3739202, 48.8438008 2.3738421, 48.8438111 2.3740226, 48.8438250 2.3739305, 48.8438362 2.3740243, 48.8438394 2.3740299, 48.8438450 2.3740180, 48.8438529 2.3739931, 48.8438716 2.3737105, 48.8438722 2.3737630, 48.8438722 2.3737630, 48.8438844 2.3738311, 48.8438917 2.3738173, 48.8439101 2.3738974, 48.8439396 2.3737900, 48.8439623 2.3736834, 48.8439714 2.3736949, 48.8440898 2.3734598, 48.8440925 2.3733360, 48.8441473 2.3733668, 48.8441755 2.3731927, 48.8442249 2.3732793, 48.8442324 2.3731992, 48.8442600 2.3731550, 48.8442709 2.3731329, 48.8443032 2.3729639, 48.8443551 2.3730314, 48.8443714 2.3731326, 48.8443723 2.3728636, 48.8443738 2.3730837, 48.8443770 2.3731203, 48.8443821 2.3731124, 48.8444080 2.3729064, 48.8669190 2.3151373, 48.8676892 2.3127232, 48.8471762 2.3107124, 48.8545470 2.4196227, 48.8509679 2.4181100, 48.8750276 2.4027316, 48.8763671 2.3956190, 48.8748082 2.4028457, 48.8698537 2.4025720, 48.8711617 2.3300722, 48.8817452 2.3687501, 48.8518476 2.3933111, 48.8403727 2.3337448, 48.8381865 2.3423327, 48.8421264 2.3288678, 48.8457052 2.3419808, 48.8597756 2.4031330, 48.8603530 2.4031550, 48.8701010 2.3949960, 48.8719770 2.3923271, 48.8646300 2.3665505, 48.8661085 2.3669813, 48.8517123 2.3431217, 48.8241529 2.3887762, 48.8425000 2.3216700, 48.8722123 2.3397120, 48.8412953 2.3075765, 48.8414376 2.3081178, 48.8414906 2.3082385, 48.8423140 2.3102450, 48.8425076 2.3118940, 48.8365104 2.3100891, 48.8341782 2.3066372, 48.8744888 2.4155695, 48.8599164 2.3463862, 48.8471480 2.3172036, 48.8475959 2.3184518, 48.8476473 2.3185907, 48.8831240 2.3238175, 48.8600843 2.3501442, 48.8400060 2.4004934, 48.8408728 2.4043717, 48.8431180 2.3203628, 48.8819276 2.3203338, 48.8386975 2.3110254, 48.8425337 2.3640099, 48.8418066 2.3195355, 48.8493177 2.4179411, 48.8559651 2.3563778, 48.8537639 2.3391067, 48.8484157 2.3501294, 48.8503045 2.3303232, 48.8457103 2.4275167, 48.8414902 2.3233159, 48.8553652 2.3997587, 48.8371072 2.3743837, 48.8392820 2.3298973, 48.8491858 2.3251494, 48.8832127 2.3308278, 48.8810507 2.3407852, 48.8461470 2.3242143, 48.8413329 2.3183133, 48.8489310 2.3471707, 48.8204679 2.3390610, 48.8204884 2.3390711, 48.8205814 2.3395233, 48.8481468 2.3197601, 48.8490626 2.3191414, 48.8501266 2.3186024, 48.8501791 2.3187017, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8478436 2.3190965, 48.8524573 2.3415602, 48.8547424 2.3544531, 48.8549834 2.3538154, 48.8549571 2.3538809, 48.8547359 2.3551293, 48.8569769 2.3781738, 48.8570133 2.3782712, 48.8566264 2.3772226, 48.8568241 2.3777233, 48.8566113 2.3776266, 48.8565121 2.3773882, 48.8563976 2.3765843, 48.8560776 2.3757039, 48.8560048 2.3754787, 48.8558645 2.3750846, 48.8558279 2.3750061, 48.8555572 2.3747522, 48.8534957 2.3378664, 48.8465511 2.3138238, 48.8689558 2.3348921, 48.8575487 2.3495646, 48.8611021 2.3537247, 48.8615808 2.3421921, 48.8609420 2.3686815, 48.8680574 2.3408942, 48.8683838 2.3420677, 48.8741075 2.3445446, 48.8680333 2.3778031, 48.8693650 2.3817579, 48.8677141 2.3819114, 48.8691546 2.3800136, 48.8882663 2.3626035, 48.8590641 2.3684194, 48.8745019 2.3273404, 48.8633731 2.3584422, 48.8346652 2.3301689, 48.8320285 2.3249552, 48.8327169 2.3252508, 48.8336276 2.3316417, 48.8312333 2.3296496, 48.8313376 2.3296145, 48.8602693 2.3889177, 48.8596611 2.3868012, 48.8587152 2.3848271, 48.8620902 2.3661764, 48.8617952 2.3647367, 48.8542765 2.4027546, 48.8515574 2.4003677, 48.8633340 2.3613891, 48.8619859 2.3647571, 48.8624021 2.3651667, 48.8627385 2.3662233, 48.8614257 2.3704934, 48.8615823 2.3706250, 48.8618001 2.3720184, 48.8177909 2.3244221, 48.8647430 2.3818722, 48.8623150 2.3671889, 48.8620751 2.3672533, 48.8623682 2.3671929, 48.8628461 2.3362666, 48.8644915 2.3656032, 48.8643294 2.3657096, 48.8690385 2.3639054, 48.8679245 2.3658481, 48.8664714 2.3673929, 48.8650522 2.3663679, 48.8612440 2.3676094, 48.8378987 2.3453148, 48.8656106 2.3572726, 48.8626714 2.3636420, 48.8635810 2.3667513, 48.8617050 2.3539300, 48.8440903 2.3080654, 48.8434559 2.3050545, 48.8627659 2.3625185, 48.8355630 2.3849120, 48.8357331 2.3846678, 48.8377299 2.3460567, 48.8404873 2.3458931, 48.8428599 2.3414993, 48.8425203 2.3384674, 48.8407969 2.3406144, 48.8406491 2.3343703, 48.8391318 2.3395208, 48.8415293 2.3294177, 48.8440602 2.3292343, 48.8468650 2.3299291, 48.8480547 2.3306456, 48.8615804 2.3711339, 48.8615523 2.3705150, 48.8617572 2.3718073, 48.8625029 2.3716831, 48.8636741 2.3696764, 48.8633878 2.3694245, 48.8633311 2.3692871, 48.8626679 2.3627043, 48.8609892 2.3675162, 48.8611575 2.3674679, 48.8629926 2.3673177, 48.8626333 2.3674542, 48.8629894 2.3679436, 48.8630208 2.3680258, 48.8809048 2.3467209, 48.8642921 2.3657377, 48.8617183 2.3720579, 48.8573825 2.3774991, 48.8615938 2.3734258, 48.8616168 2.3707953, 48.8617786 2.3730898, 48.8617681 2.3611646, 48.8632870 2.3585986, 48.8625980 2.3538387, 48.8630387 2.3518815, 48.8632610 2.3511168, 48.8638516 2.3485040, 48.8637126 2.3478973, 48.8633292 2.3462367, 48.8635550 2.3471565, 48.8635288 2.3441618, 48.8699970 2.3549068, 48.8712181 2.3066750, 48.8673562 2.3530323, 48.8673705 2.3530335, 48.8673789 2.3530370, 48.8673880 2.3530477, 48.8712598 2.3552044, 48.8587772 2.3712220, 48.8659600 2.3653216, 48.8654733 2.3679992, 48.8666410 2.3664307, 48.8665862 2.3667443, 48.8661620 2.3675630, 48.8650347 2.3669146, 48.8650847 2.3656389, 48.8666335 2.3665296, 48.8663602 2.3680223, 48.8643746 2.3685025, 48.8641963 2.3679144, 48.8646177 2.3690280, 48.8629023 2.3681262, 48.8628373 2.3675537, 48.8543300 2.3711983, 48.8749871 2.3593369, 48.8747439 2.3591131, 48.8742167 2.3587245, 48.8585649 2.3784767, 48.8578407 2.3769477, 48.8343023 2.3639410, 48.8602002 2.3647046, 48.8588463 2.3643793, 48.8593740 2.3653569, 48.8623150 2.3663735, 48.8708703 2.3415985, 48.8705728 2.3415832, 48.8711859 2.3417171, 48.8709869 2.3416777, 48.8620751 2.3658156, 48.8637424 2.3671066, 48.8636984 2.3666739, 48.8709973 2.3788109, 48.8586999 2.3627020, 48.8580013 2.3652526, 48.8584347 2.3637448, 48.8453783 2.3929602, 48.8492511 2.3890811, 48.8844918 2.3308338, 48.8808115 2.3349165, 48.8459524 2.3314941, 48.8473038 2.3299657, 48.8822077 2.3636469, 48.8822937 2.3628730, 48.8826834 2.3615248, 48.8842662 2.3384857, 48.8843570 2.3383511, 48.8843580 2.3554674, 48.8855628 2.3868905, 48.8614253 2.3643489, 48.8593585 2.3673596, 48.8586082 2.3675198, 48.8578247 2.3662529, 48.8578018 2.3672245, 48.8575285 2.3645936, 48.8567071 2.3672138, 48.8599776 2.3643195, 48.8581319 2.3686779, 48.8654352 2.3322141, 48.8731027 2.3586476, 48.8738988 2.3585396, 48.8734890 2.3588318, 48.8737268 2.3586272, 48.8580112 2.3685170, 48.8647940 2.3660241, 48.8648526 2.3659926, 48.8640444 2.3658805, 48.8641120 2.3658485, 48.8683810 2.3699359, 48.8682556 2.4180358, 48.8535896 2.3766260, 48.8548638 2.3756068, 48.8534590 2.3792948, 48.8609686 2.3544829, 48.8608428 2.3548591, 48.8607371 2.3551324, 48.8612378 2.3536539, 48.8611118 2.3693564, 48.8495908 2.3740611, 48.8786937 2.4161353, 48.8797544 2.4131416, 48.8279008 2.3224596, 48.8237712 2.3188140, 48.8455488 2.4110597, 48.8440870 2.4099235, 48.8444532 2.4107855, 48.8654197 2.3615883, 48.8484998 2.3412712, 48.8443464 2.4069660, 48.8659969 2.3276111, 48.8711704 2.3532964, 48.8653117 2.3295596, 48.8233460 2.3160166, 48.8490599 2.3130688, 48.8654853 2.3686016, 48.8518466 2.3669275, 48.8279596 2.3690455, 48.8249202 2.3379510, 48.8631383 2.3617868, 48.8298904 2.3797966, 48.8301217 2.3803745, 48.8643587 2.3712393, 48.8636138 2.3718082, 48.8633930 2.3719847, 48.8697632 2.3772756, 48.8698317 2.3768872, 48.8708785 2.3756253, 48.8739968 2.3863516, 48.8712683 2.3762972, 48.8621804 2.3738279, 48.8621181 2.3741150, 48.8621517 2.3740712, 48.8630245 2.3790430, 48.8639488 2.3703133, 48.8303702 2.3562350, 48.8867423 2.3407873, 48.8867012 2.3411084, 48.8869741 2.3412346, 48.8549878 2.3244237, 48.8555367 2.3250127, 48.8566410 2.3268017, 48.8443533 2.3392938, 48.8444446 2.3393446, 48.8444836 2.3391646, 48.8445078 2.3393834, 48.8445487 2.3391954, 48.8445684 2.3394083, 48.8445912 2.3394235, 48.8446299 2.3392446, 48.8446738 2.3394649, 48.8447111 2.3392919, 48.8447747 2.3395210, 48.8448126 2.3393455, 48.8448581 2.3395691, 48.8448973 2.3393885, 48.8449907 2.3396280, 48.8450134 2.3396435, 48.8450244 2.3394705, 48.8450484 2.3394804, 48.8451001 2.3394947, 48.8451076 2.3397114, 48.8451496 2.3395184, 48.8451627 2.3397330, 48.8452013 2.3395546, 48.8452891 2.3397998, 48.8453270 2.3396245, 48.8454103 2.3398666, 48.8454486 2.3396894, 48.8455720 2.3399490, 48.8456016 2.3397733, 48.8456252 2.3399768, 48.8456609 2.3398109, 48.8457580 2.3400604, 48.8457985 2.3398738, 48.8458363 2.3401004, 48.8458512 2.3401061, 48.8458758 2.3399182, 48.8458897 2.3399282, 48.8459096 2.3401381, 48.8459482 2.3399595, 48.8459886 2.3401822, 48.8460277 2.3400013, 48.8461037 2.3402430, 48.8461422 2.3400651, 48.8461427 2.3402621, 48.8461803 2.3400877, 48.8462859 2.3403443, 48.8463123 2.3403577, 48.8463254 2.3401619, 48.8463514 2.3401769, 48.8852964 2.3750552, 48.8861427 2.3706463, 48.8799817 2.3564327, 48.8800005 2.3561747, 48.8800160 2.3560074, 48.8800177 2.3560649, 48.8800194 2.3559734, 48.8800345 2.3581832, 48.8800435 2.3582029, 48.8800570 2.3582677, 48.8800644 2.3582733, 48.8800649 2.3580687, 48.8800650 2.3581466, 48.8800782 2.3582361, 48.8800791 2.3582895, 48.8800822 2.3582361, 48.8800824 2.3582972, 48.8800826 2.3578709, 48.8800893 2.3582467, 48.8800937 2.3578470, 48.8800953 2.3580334, 48.8801022 2.3579983, 48.8801022 2.3583119, 48.8801036 2.3580397, 48.8801082 2.3576969, 48.8801114 2.3583168, 48.8801128 2.3580067, 48.8801131 2.3576796, 48.8801140 2.3576641, 48.8801211 2.3583351, 48.8801216 2.3576125, 48.8801250 2.3575848, 48.8801308 2.3583393, 48.8801313 2.3580551, 48.8801327 2.3582979, 48.8801329 2.3575243, 48.8801382 2.3580621, 48.8801422 2.3574363, 48.8801428 2.3574642, 48.8801428 2.3574801, 48.8801428 2.3583042, 48.8801451 2.3580327, 48.8801473 2.3574222, 48.8801507 2.3565215, 48.8801510 2.3573983, 48.8801511 2.3583554, 48.8801557 2.3560578, 48.8801542 2.3560882, 48.8801543 2.3580418, 48.8801546 2.3574821, 48.8801553 2.3574652, 48.8801572 2.3560273, 48.8801580 2.3583660, 48.8801587 2.3559969, 48.8801640 2.3583196, 48.8801650 2.3580888, 48.8801694 2.3570177, 48.8801719 2.3580993, 48.8801723 2.3583295, 48.8801770 2.3580649, 48.8801786 2.3571769, 48.8801843 2.3580734, 48.8801862 2.3583697, 48.8801864 2.3582273, 48.8801949 2.3584024, 48.8801989 2.3565433, 48.8802046 2.3584045, 48.8802056 2.3581386, 48.8802088 2.3583610, 48.8802129 2.3581063, 48.8802134 2.3581442, 48.8802157 2.3583702, 48.8802208 2.3581113, 48.8802286 2.3581590, 48.8802351 2.3581660, 48.8802388 2.3581316, 48.8802397 2.3565838, 48.8802429 2.3584403, 48.8802490 2.3565108, 48.8802494 2.3581435, 48.8802535 2.3584607, 48.8802540 2.3584038, 48.8802554 2.3581653, 48.8802619 2.3584130, 48.8802670 2.3562165, 48.8802764 2.3581588, 48.8802785 2.3566287, 48.8802794 2.3582144, 48.8802877 2.3582291, 48.8802892 2.3565272, 48.8802914 2.3581891, 48.8802990 2.3561646, 48.8803038 2.3585028, 48.8803039 2.3570599, 48.8803052 2.3581941, 48.8803083 2.3562322, 48.8803140 2.3584782, 48.8803154 2.3585161, 48.8803209 2.3584516, 48.8803242 2.3567081, 48.8803272 2.3570806, 48.8803274 2.3584607, 48.8803283 2.3566512, 48.8803320 2.3582761, 48.8803350 2.3565458, 48.8803399 2.3571615, 48.8803421 2.3582811, 48.8803495 2.3585386, 48.8803518 2.3582432, 48.8803597 2.3582558, 48.8803601 2.3585533, 48.8803638 2.3585189, 48.8803661 2.3583154, 48.8803684 2.3584986, 48.8803711 2.3561707, 48.8803721 2.3582867, 48.8803749 2.3583232, 48.8803781 2.3585084, 48.8803800 2.3565642, 48.8803892 2.3582818, 48.8803947 2.3582867, 48.8804058 2.3583638, 48.8804069 2.3570749, 48.8804094 2.3571372, 48.8804137 2.3583730, 48.8804152 2.3571938, 48.8804266 2.3583217, 48.8804322 2.3571491, 48.8804353 2.3583519, 48.8804358 2.3583323, 48.8804479 2.3572067, 48.8804663 2.3586396, 48.8804718 2.3586501, 48.8804741 2.3571676, 48.8804748 2.3584184, 48.8804824 2.3570593, 48.8804838 2.3572206, 48.8804856 2.3583835, 48.8804893 2.3586024, 48.8804939 2.3586115, 48.8804983 2.3584417, 48.8805015 2.3566080, 48.8805064 2.3586894, 48.8805096 2.3584045, 48.8805105 2.3572880, 48.8805170 2.3587020, 48.8805183 2.3572305, 48.8805220 2.3566194, 48.8805299 2.3586501, 48.8805304 2.3586768, 48.8805357 2.3571665, 48.8805364 2.3586789, 48.8805396 2.3586634, 48.8805439 2.3584802, 48.8805458 2.3572404, 48.8805516 2.3567073, 48.8805555 2.3584474, 48.8805559 2.3571705, 48.8805584 2.3584928, 48.8805692 2.3587350, 48.8805701 2.3584647, 48.8805742 2.3587462, 48.8805773 2.3573666, 48.8805774 2.3571834, 48.8805807 2.3587013, 48.8805853 2.3587105, 48.8805856 2.3572523, 48.8805859 2.3567716, 48.8805990 2.3571784, 48.8805996 2.3585343, 48.8806001 2.3587757, 48.8806038 2.3585252, 48.8806079 2.3585070, 48.8806089 2.3567410, 48.8806093 2.3587820, 48.8806139 2.3587399, 48.8806195 2.3572652, 48.8806250 2.3587497, 48.8806374 2.3587890, 48.8806404 2.3572940, 48.8806416 2.3587792, 48.8806434 2.3588143, 48.8806456 2.3572483, 48.8806460 2.3567537, 48.8806477 2.3585837, 48.8806541 2.3588178, 48.8806554 2.3587813, 48.8806592 2.3585512, 48.8806606 2.3585983, 48.8806610 2.3587904, 48.8806681 2.3568390, 48.8806707 2.3588353, 48.8806728 2.3585663, 48.8806782 2.3587463, 48.8806799 2.3588396, 48.8806803 2.3586156, 48.8806808 2.3588031, 48.8806877 2.3585790, 48.8806896 2.3588094, 48.8806901 2.3567688, 48.8806923 2.3586224, 48.8806938 2.3573208, 48.8806969 2.3568792, 48.8806995 2.3585921, 48.8807003 2.3587105, 48.8807039 2.3588739, 48.8807071 2.3588318, 48.8807123 2.3569546, 48.8807131 2.3586412, 48.8807136 2.3588760, 48.8807205 2.3588403, 48.8807214 2.3586538, 48.8807238 2.3586133, 48.8807274 2.3586403, 48.8807327 2.3586254, 48.8807368 2.3567848, 48.8807367 2.3588971, 48.8807387 2.3586750, 48.8807440 2.3588592, 48.8807448 2.3586824, 48.8807463 2.3589083, 48.8807473 2.3572867, 48.8807512 2.3573377, 48.8807517 2.3586515, 48.8807556 2.3588704, 48.8807566 2.3586738, 48.8807574 2.3586640, 48.8807621 2.3586925, 48.8807644 2.3586824, 48.8807663 2.3571743, 48.8807678 2.3567955, 48.8807681 2.3586714, 48.8807710 2.3586926, 48.8807733 2.3586871, 48.8807836 2.3574859, 48.8807856 2.3587112, 48.8807874 2.3568022, 48.8807883 2.3587027, 48.8807883 2.3589525, 48.8807944 2.3586913, 48.8807961 2.3585253, 48.8807971 2.3568055, 48.8807994 2.3589588, 48.8808027 2.3571779, 48.8808068 2.3589048, 48.8808124 2.3574255, 48.8808141 2.3587441, 48.8808151 2.3572216, 48.8808151 2.3589118, 48.8808216 2.3573315, 48.8808244 2.3587201, 48.8808246 2.3587528, 48.8808338 2.3587277, 48.8808392 2.3574325, 48.8808485 2.3587769, 48.8808529 2.3590044, 48.8808530 2.3571042, 48.8808552 2.3575027, 48.8808558 2.3573455, 48.8808570 2.3574950, 48.8808588 2.3574845, 48.8808593 2.3587465, 48.8808608 2.3587906, 48.8808617 2.3590115, 48.8808700 2.3589525, 48.8808715 2.3587596, 48.8808746 2.3575605, 48.8808761 2.3571406, 48.8808806 2.3589658, 48.8808816 2.3582425, 48.8808853 2.3570901, 48.8808862 2.3587883, 48.8808894 2.3574117, 48.8808968 2.3575745, 48.8809019 2.3571308, 48.8809043 2.3581741, 48.8809059 2.3572922, 48.8809078 2.3572831, 48.8809096 2.3572719, 48.8809110 2.3572649, 48.8809115 2.3574314, 48.8809119 2.3572557, 48.8809142 2.3572452, 48.8809158 2.3570764, 48.8809195 2.3572603, 48.8809242 2.3570159, 48.8809319 2.3571479, 48.8809355 2.3568673, 48.8809386 2.3570874, 48.8809429 2.3574454, 48.8809431 2.3574112, 48.8809457 2.3578588, 48.8809466 2.3575970, 48.8809493 2.3569772, 48.8809503 2.3588774, 48.8809516 2.3570249, 48.8809521 2.3569639, 48.8809569 2.3570951, 48.8809596 2.3578981, 48.8809614 2.3588866, 48.8809639 2.3571859, 48.8809641 2.3588410, 48.8809646 2.3590788, 48.8809702 2.3574690, 48.8809722 2.3570313, 48.8809729 2.3590430, 48.8809747 2.3588473, 48.8809752 2.3590774, 48.8809776 2.3574395, 48.8809821 2.3590507, 48.8809843 2.3574853, 48.8809877 2.3590907, 48.8809909 2.3566315, 48.8809910 2.3578280, 48.8809928 2.3578967, 48.8809954 2.3574416, 48.8809956 2.3578323, 48.8809974 2.3578827, 48.8809992 2.3590964, 48.8810006 2.3590606, 48.8810011 2.3578364, 48.8810012 2.3571171, 48.8810044 2.3571912, 48.8810066 2.3590711, 48.8810078 2.3570764, 48.8810097 2.3574982, 48.8810106 2.3578402, 48.8810115 2.3571012, 48.8810117 2.3589301, 48.8810122 2.3566430, 48.8810127 2.3571575, 48.8810129 2.3570921, 48.8810149 2.3578448, 48.8810186 2.3574735, 48.8810200 2.3589399, 48.8810202 2.3574476, 48.8810241 2.3588936, 48.8810260 2.3571872, 48.8810302 2.3577093, 48.8810320 2.3588978, 48.8810323 2.3574825, 48.8810326 2.3575091, 48.8810336 2.3574765, 48.8810383 2.3571260, 48.8810430 2.3591455, 48.8810459 2.3576388, 48.8810481 2.3572265, 48.8810504 2.3589567, 48.8810518 2.3568392, 48.8810534 2.3570586, 48.8810536 2.3590999, 48.8810537 2.3571760, 48.8810596 2.3589209, 48.8810601 2.3589623, 48.8810619 2.3574664, 48.8810661 2.3589259, 48.8810763 2.3589778, 48.8810813 2.3589848, 48.8810823 2.3589420, 48.8810828 2.3574971, 48.8810832 2.3576587, 48.8810887 2.3569571, 48.8810896 2.3589490, 48.8810907 2.3575262, 48.8810939 2.3571469, 48.8811004 2.3570745, 48.8811026 2.3590101, 48.8811037 2.3572495, 48.8811050 2.3575398, 48.8811083 2.3574924, 48.8811090 2.3575072, 48.8811169 2.3589764, 48.8811170 2.3576669, 48.8811188 2.3570782, 48.8811246 2.3575468, 48.8811357 2.3575001, 48.8811363 2.3575237, 48.8811494 2.3575567, 48.8811589 2.3569851, 48.8811598 2.3573880, 48.8811598 2.3575111, 48.8811601 2.3575440, 48.8811665 2.3575260, 48.8811723 2.3572543, 48.8811723 2.3575392, 48.8811818 2.3571265, 48.8811859 2.3571598, 48.8811939 2.3572714, 48.8811970 2.3571651, 48.8812085 2.3570993, 48.8812087 2.3571707, 48.8812102 2.3577062, 48.8812133 2.3575855, 48.8812136 2.3575296, 48.8812166 2.3572796, 48.8812244 2.3575458, 48.8812270 2.3571201, 48.8812286 2.3572952, 48.8812342 2.3575904, 48.8812361 2.3575488, 48.8812409 2.3571272, 48.8812456 2.3577205, 48.8812459 2.3571826, 48.8812471 2.3575462, 48.8812518 2.3575567, 48.8812531 2.3571261, 48.8812561 2.3573000, 48.8812631 2.3571921, 48.8812677 2.3571358, 48.8812681 2.3576103, 48.8812733 2.3575627, 48.8812734 2.3575895, 48.8812831 2.3577342, 48.8812875 2.3575967, 48.8812893 2.3575903, 48.8812903 2.3575826, 48.8813018 2.3575988, 48.8813060 2.3576222, 48.8813073 2.3571742, 48.8813077 2.3571909, 48.8813082 2.3571615, 48.8813112 2.3575795, 48.8813163 2.3573329, 48.8813168 2.3575923, 48.8813246 2.3573062, 48.8813288 2.3576311, 48.8813425 2.3575885, 48.8813432 2.3571499, 48.8813436 2.3576049, 48.8813438 2.3576381, 48.8813471 2.3573332, 48.8813513 2.3569752, 48.8813523 2.3576063, 48.8813536 2.3572312, 48.8813705 2.3572352, 48.8813716 2.3569864, 48.8813730 2.3576166, 48.8813877 2.3569936, 48.8813880 2.3571685, 48.8814017 2.3576330, 48.8814189 2.3576698, 48.8814195 2.3572332, 48.8814215 2.3576321, 48.8814320 2.3577906, 48.8814379 2.3571809, 48.8814443 2.3572436, 48.8814522 2.3572093, 48.8814632 2.3576917, 48.8814743 2.3576936, 48.8814745 2.3576447, 48.8814763 2.3570377, 48.8814808 2.3572084, 48.8814861 2.3576549, 48.8814888 2.3572624, 48.8814948 2.3572166, 48.8814948 2.3578187, 48.8814994 2.3570489, 48.8815063 2.3577085, 48.8815069 2.3572749, 48.8815097 2.3576653, 48.8815114 2.3570609, 48.8815188 2.3574188, 48.8815200 2.3572193, 48.8815205 2.3572521, 48.8815239 2.3576668, 48.8815317 2.3577036, 48.8815344 2.3577323, 48.8815428 2.3576788, 48.8815451 2.3578437, 48.8815461 2.3577393, 48.8815514 2.3577222, 48.8815525 2.3577085, 48.8815565 2.3576807, 48.8815611 2.3576887, 48.8815611 2.3577068, 48.8815627 2.3574536, 48.8815689 2.3576907, 48.8815701 2.3578563, 48.8815719 2.3574255, 48.8815742 2.3577492, 48.8815787 2.3573146, 48.8815839 2.3572511, 48.8815872 2.3577502, 48.8815891 2.3576990, 48.8815926 2.3578664, 48.8815972 2.3573195, 48.8815990 2.3574598, 48.8815996 2.3577026, 48.8816159 2.3577601, 48.8816224 2.3577165, 48.8816241 2.3571166, 48.8816241 2.3571938, 48.8816350 2.3577261, 48.8816424 2.3574777, 48.8816472 2.3573344, 48.8816553 2.3578888, 48.8816557 2.3572938, 48.8816601 2.3572134, 48.8816629 2.3577482, 48.8816784 2.3573651, 48.8816830 2.3573004, 48.8816849 2.3572293, 48.8816941 2.3574875, 48.8816962 2.3577909, 48.8816965 2.3577202, 48.8817052 2.3579141, 48.8817107 2.3575184, 48.8817112 2.3577383, 48.8817181 2.3572349, 48.8817229 2.3577492, 48.8817293 2.3573848, 48.8817360 2.3578048, 48.8817385 2.3573314, 48.8817386 2.3577561, 48.8817451 2.3578127, 48.8817482 2.3579349, 48.8817530 2.3577532, 48.8817588 2.3577532, 48.8817629 2.3571968, 48.8817638 2.3577370, 48.8817663 2.3573947, 48.8817666 2.3572585, 48.8817725 2.3578533, 48.8817755 2.3573468, 48.8817906 2.3579531, 48.8817945 2.3575725, 48.8817954 2.3578236, 48.8818025 2.3577730, 48.8818033 2.3574101, 48.8818122 2.3572714, 48.8818125 2.3573623, 48.8818161 2.3577691, 48.8818233 2.3575493, 48.8818233 2.3579759, 48.8818373 2.3578019, 48.8818381 2.3575240, 48.8818469 2.3572866, 48.8818573 2.3578078, 48.8818587 2.3577966, 48.8818602 2.3577850, 48.8818657 2.3572181, 48.8818684 2.3578167, 48.8818725 2.3574148, 48.8818730 2.3577859, 48.8818744 2.3573966, 48.8818893 2.3578276, 48.8818906 2.3574039, 48.8818932 2.3573860, 48.8818985 2.3577879, 48.8819060 2.3572403, 48.8819087 2.3576051, 48.8819124 2.3575518, 48.8819318 2.3578044, 48.8819402 2.3578425, 48.8819474 2.3577998, 48.8819698 2.3574636, 48.8819800 2.3573919, 48.8819820 2.3573556, 48.8819949 2.3580488, 48.8819986 2.3578215, 48.8820003 2.3578613, 48.8820087 2.3578206, 48.8820170 2.3574833, 48.8820189 2.3576188, 48.8820244 2.3574073, 48.8820268 2.3573652, 48.8820494 2.3574959, 48.8820623 2.3574158, 48.8820656 2.3572992, 48.8820702 2.3573864, 48.8820813 2.3580710, 48.8821004 2.3576574, 48.8821094 2.3580713, 48.8821137 2.3578664, 48.8821167 2.3573977, 48.8821305 2.3576585, 48.8821314 2.3579159, 48.8821366 2.3578653, 48.8821463 2.3576559, 48.8821464 2.3579219, 48.8821477 2.3574575, 48.8821554 2.3574822, 48.8821666 2.3579225, 48.8821703 2.3578748, 48.8821777 2.3574724, 48.8821819 2.3580977, 48.8821909 2.3576263, 48.8821943 2.3576699, 48.8821943 2.3580881, 48.8821977 2.3576357, 48.8821986 2.3578762, 48.8822012 2.3579288, 48.8822156 2.3579367, 48.8822182 2.3578802, 48.8822201 2.3580993, 48.8822234 2.3574236, 48.8822349 2.3579061, 48.8822382 2.3577002, 48.8822423 2.3577808, 48.8822443 2.3579248, 48.8822533 2.3574286, 48.8822557 2.3573611, 48.8822560 2.3578842, 48.8822581 2.3579249, 48.8822644 2.3576784, 48.8822717 2.3579238, 48.8822720 2.3574959, 48.8822724 2.3578861, 48.8822865 2.3574342, 48.8822908 2.3575466, 48.8822926 2.3579096, 48.8822939 2.3579450, 48.8823105 2.3573809, 48.8823122 2.3578931, 48.8823122 2.3579407, 48.8823185 2.3575508, 48.8823213 2.3575058, 48.8823226 2.3579348, 48.8823235 2.3581386, 48.8823265 2.3579000, 48.8823398 2.3575184, 48.8823401 2.3576896, 48.8823578 2.3575436, 48.8823702 2.3579486, 48.8823781 2.3579109, 48.8823781 2.3579503, 48.8823831 2.3576837, 48.8823904 2.3574002, 48.8823931 2.3575259, 48.8824028 2.3577092, 48.8824120 2.3575319, 48.8824157 2.3579702, 48.8824309 2.3579784, 48.8824440 2.3576113, 48.8824532 2.3574901, 48.8824596 2.3574395, 48.8824600 2.3577148, 48.8824606 2.3579938, 48.8824656 2.3576296, 48.8824786 2.3575410, 48.8824827 2.3582127, 48.8824951 2.3574497, 48.8824991 2.3576665, 48.8825205 2.3580107, 48.8825275 2.3579566, 48.8825276 2.3575607, 48.8825334 2.3580161, 48.8825578 2.3577289, 48.8825713 2.3580191, 48.8825745 2.3575128, 48.8825865 2.3581225, 48.8825960 2.3579764, 48.8825960 2.3580270, 48.8825999 2.3576014, 48.8825999 2.3577426, 48.8826169 2.3576113, 48.8826202 2.3580317, 48.8826446 2.3575268, 48.8826516 2.3576389, 48.8826686 2.3582537, 48.8826697 2.3580469, 48.8826743 2.3576373, 48.8826750 2.3579864, 48.8826913 2.3575434, 48.8826986 2.3582661, 48.8827018 2.3580432, 48.8827030 2.3580902, 48.8827095 2.3580042, 48.8827095 2.3580459, 48.8827166 2.3575549, 48.8827195 2.3576561, 48.8827291 2.3577777, 48.8827572 2.3577766, 48.8827596 2.3575630, 48.8827644 2.3580489, 48.8827696 2.3580092, 48.8827841 2.3576301, 48.8827854 2.3577833, 48.8827945 2.3576663, 48.8828116 2.3575821, 48.8828159 2.3580568, 48.8828183 2.3576357, 48.8828185 2.3580221, 48.8828190 2.3576637, 48.8828383 2.3576802, 48.8828525 2.3576273, 48.8828564 2.3576917, 48.8828808 2.3580797, 48.8828828 2.3576690, 48.8828919 2.3575914, 48.8829340 2.3581342, 48.8829386 2.3580975, 48.8829477 2.3577698, 48.8829686 2.3582084, 48.8829920 2.3579048, 48.8390877 2.3229490, 48.8388128 2.3226987, 48.8391641 2.3230105, 48.8556760 2.3542970, 48.8459900 2.3560250, 48.8420530 2.3768110, 48.8420530 2.3768110, 48.8489960 2.3716050, 48.8650592 2.3652757, 48.8648371 2.3654091, 48.8545431 2.3848577, 48.8181979 2.3705380, 48.8160990 2.3520244, 48.8764978 2.3257538, 48.8338390 2.3310374, 48.8338958 2.3308830, 48.8486709 2.3406612, 48.8487278 2.3406336, 48.8228353 2.3282974, 48.8620609 2.3666954, 48.8622868 2.3667169, 48.8760379 2.3474334, 48.8512608 2.3557825, 48.8360670 2.3218254, 48.8364049 2.3226710, 48.8358830 2.3217919, 48.8353061 2.3208179, 48.8339484 2.3183045, 48.8340446 2.3184550, 48.8529463 2.3520085, 48.8527721 2.3537633, 48.8527168 2.3539477, 48.8540362 2.3623674, 48.8229103 2.3226922, 48.8224578 2.3249084, 48.8257666 2.3264006, 48.8739879 2.4120130, 48.8740147 2.4118240, 48.8825882 2.4087683, 48.8523534 2.3344379, 48.8431456 2.3520626, 48.8407383 2.4105387, 48.8912532 2.3385474, 48.8281511 2.3782997, 48.8282737 2.3782676, 48.8282386 2.3783689, 48.8282430 2.3783785, 48.8284538 2.3784334, 48.8285914 2.3780004, 48.8285958 2.3780099, 48.8286160 2.3779856, 48.8285507 2.3783370, 48.8286576 2.3782147, 48.8286620 2.3782243, 48.8286743 2.3782109, 48.8286840 2.3779199, 48.8286884 2.3779295, 48.8287180 2.3781881, 48.8287241 2.3782046, 48.8287674 2.3781295, 48.8287718 2.3781390, 48.8287787 2.3781210, 48.8287909 2.3781135, 48.8288706 2.3776484, 48.8290834 2.3774457, 48.8290131 2.3780065, 48.8292029 2.3778074, 48.8292359 2.3778710, 48.8292145 2.3780522, 48.8292238 2.3777982, 48.8292342 2.3773072, 48.8293001 2.3778897, 48.8292055 2.3778258, 48.8293180 2.3775599, 48.8292703 2.3771602, 48.8294885 2.3761074, 48.8295141 2.3770453, 48.8293848 2.3775619, 48.8293725 2.3771825, 48.8293706 2.3777838, 48.8294086 2.3777434, 48.8294990 2.3761432, 48.8294755 2.3773992, 48.8294897 2.3773804, 48.8295096 2.3761671, 48.8296332 2.3770392, 48.8294680 2.3760670, 48.8296541 2.3767856, 48.8296062 2.3759381, 48.8296661 2.3765029, 48.8296265 2.3759212, 48.8296172 2.3759286, 48.8296347 2.3759063, 48.8296933 2.3769564, 48.8296197 2.3776754, 48.8296812 2.3774344, 48.8297079 2.3777761, 48.8296764 2.3774393, 48.8296272 2.3770807, 48.8296860 2.3777511, 48.8296957 2.3776284, 48.8296970 2.3777636, 48.8297000 2.3772574, 48.8297922 2.3772698, 48.8297237 2.3777783, 48.8298851 2.3773022, 48.8299265 2.3773926, 48.8299080 2.3777376, 48.8465640 2.3794211, 48.8831239 2.3278854, 48.8615941 2.3786285, 48.8614785 2.3787271, 48.8595571 2.3825257, 48.8615993 2.3829249, 48.8617347 2.3827870, 48.8620382 2.3843502, 48.8622481 2.3853645, 48.8839069 2.3596967, 48.8838754 2.3597520, 48.8839466 2.3596132, 48.8535077 2.3747389, 48.8565113 2.3949030, 48.8899020 2.3385740, 48.8901853 2.3390405, 48.8861060 2.3730477, 48.8764622 2.3239216, 48.8764650 2.3239346, 48.8764676 2.3239284, 48.8764924 2.3241276, 48.8764952 2.3241406, 48.8765173 2.3243106, 48.8765200 2.3243236, 48.8765266 2.3243140, 48.8765435 2.3247068, 48.8765437 2.3244950, 48.8765463 2.3247198, 48.8765465 2.3245079, 48.8765522 2.3247112, 48.8765745 2.3249001, 48.8765773 2.3249131, 48.8765810 2.3249015, 48.8765929 2.3250995, 48.8765957 2.3251125, 48.8765999 2.3251046, 48.8766221 2.3253386, 48.8766249 2.3253515, 48.8766331 2.3253357, 48.8766573 2.3255726, 48.8766600 2.3255856, 48.8766651 2.3255736, 48.8766888 2.3238711, 48.8767039 2.3257583, 48.8767067 2.3257712, 48.8767146 2.3257566, 48.8767157 2.3240372, 48.8767543 2.3242170, 48.8767547 2.3259307, 48.8767594 2.3259418, 48.8767689 2.3259269, 48.8768055 2.3260114, 48.8768171 2.3245581, 48.8768208 2.3243605, 48.8768360 2.3237600, 48.8768533 2.3241133, 48.8768628 2.3261409, 48.8768629 2.3239261, 48.8768663 2.3247308, 48.8768675 2.3261520, 48.8769017 2.3249283, 48.8769231 2.3262768, 48.8769278 2.3262879, 48.8769345 2.3262781, 48.8769565 2.3242528, 48.8769627 2.3251377, 48.8769819 2.3244115, 48.8769829 2.3236556, 48.8770098 2.3238217, 48.8770253 2.3239671, 48.8770382 2.3255525, 48.8770389 2.3245633, 48.8770442 2.3253118, 48.8770549 2.3241690, 48.8770607 2.3268126, 48.8770881 2.3247428, 48.8770917 2.3268110, 48.8770999 2.3250121, 48.8771087 2.3267532, 48.8771091 2.3267698, 48.8771120 2.3267314, 48.8771127 2.3243008, 48.8771127 2.3266319, 48.8771209 2.3268189, 48.8771238 2.3235704, 48.8771507 2.3237364, 48.8771579 2.3252011, 48.8771698 2.3244526, 48.8771716 2.3238758, 48.8771800 2.3264828, 48.8771858 2.3240583, 48.8771969 2.3232581, 48.8771991 2.3232593, 48.8772148 2.3253700, 48.8772190 2.3246321, 48.8772244 2.3242185, 48.8772814 2.3243703, 48.8772859 2.3248505, 48.8772968 2.3232845, 48.8772971 2.3263806, 48.8772972 2.3232838, 48.8772976 2.3232907, 48.8772976 2.3232924, 48.8772990 2.3234548, 48.8773007 2.3234647, 48.8773008 2.3234436, 48.8773026 2.3236119, 48.8773055 2.3235948, 48.8773068 2.3236202, 48.8773076 2.3234513, 48.8773084 2.3237782, 48.8773112 2.3236083, 48.8773115 2.3237708, 48.8773129 2.3237866, 48.8773170 2.3237746, 48.8773268 2.3232236, 48.8773306 2.3245498, 48.8773362 2.3239064, 48.8773364 2.3239287, 48.8773399 2.3250306, 48.8773409 2.3232141, 48.8773418 2.3239360, 48.8773450 2.3239252, 48.8773667 2.3231992, 48.8773690 2.3241026, 48.8773701 2.3240897, 48.8773736 2.3241071, 48.8773776 2.3240991, 48.8773900 2.3231839, 48.8773975 2.3247682, 48.8773980 2.3262800, 48.8773981 2.3242655, 48.8774002 2.3242568, 48.8774047 2.3242699, 48.8774067 2.3242619, 48.8774067 2.3251935, 48.8774199 2.3231670, 48.8774223 2.3238005, 48.8774228 2.3235545, 48.8774272 2.3233874, 48.8774390 2.3249293, 48.8774411 2.3244172, 48.8774428 2.3244292, 48.8774487 2.3244333, 48.8774514 2.3244256, 48.8774561 2.3237002, 48.8774589 2.3231024, 48.8775003 2.3250879, 48.8775185 2.3246270, 48.8775230 2.3246222, 48.8775254 2.3246293, 48.8775271 2.3246235, 48.8775744 2.3247752, 48.8775749 2.3247576, 48.8775830 2.3247717, 48.8775832 2.3247811, 48.8776254 2.3242892, 48.8776339 2.3249090, 48.8776371 2.3249305, 48.8776450 2.3249404, 48.8776457 2.3249269, 48.8776848 2.3250578, 48.8776855 2.3250399, 48.8776934 2.3250542, 48.8776939 2.3250642, 48.8777291 2.3251566, 48.8777294 2.3251706, 48.8777347 2.3251790, 48.8777380 2.3251670, 48.8777844 2.3252969, 48.8777845 2.3253138, 48.8777931 2.3253102, 48.8777933 2.3253204, 48.8778400 2.3254483, 48.8778407 2.3254467, 48.8778428 2.3254448, 48.8778447 2.3254458, 48.8780023 2.3257789, 48.8780055 2.3257347, 48.8780067 2.3257330, 48.8780274 2.3258264, 48.8780496 2.3258675, 48.8780611 2.3258401, 48.8780695 2.3258143, 48.8780871 2.3259071, 48.8780916 2.3258914, 48.8780947 2.3258926, 48.8780974 2.3258220, 48.8765836 2.3264561, 48.8765840 2.3264614, 48.8765863 2.3264920, 48.8765871 2.3264974, 48.8765883 2.3264890, 48.8765901 2.3264976, 48.8765974 2.3264922, 48.8765982 2.3264976, 48.8765996 2.3264898, 48.8766012 2.3264978, 48.8766081 2.3264974, 48.8766098 2.3264911, 48.8766131 2.3264915, 48.8766136 2.3264974, 48.8862241 2.3946584, 48.8762756 2.3239967, 48.8763567 2.3245859, 48.8763582 2.3246068, 48.8763558 2.3239257, 48.8763711 2.3239112, 48.8763921 2.3248815, 48.8763941 2.3248977, 48.8764357 2.3249495, 48.8764399 2.3249939, 48.8764675 2.3250198, 48.8764952 2.3257006, 48.8764977 2.3257200, 48.8765035 2.3254865, 48.8765075 2.3255217, 48.8765203 2.3254521, 48.8765443 2.3237533, 48.8765380 2.3255524, 48.8765648 2.3262021, 48.8765687 2.3262320, 48.8765717 2.3262590, 48.8765736 2.3262815, 48.8765745 2.3263028, 48.8765688 2.3263330, 48.8765713 2.3263525, 48.8766103 2.3264051, 48.8766240 2.3263857, 48.8766437 2.3263704, 48.8766516 2.3236636, 48.8766669 2.3236491, 48.8766696 2.3263626, 48.8767042 2.3263695, 48.8767264 2.3263767, 48.8767431 2.3263902, 48.8767634 2.3264042, 48.8767989 2.3264180, 48.8771205 2.3233442, 48.8778358 2.3230860, 48.8633935 2.3689645, 48.8633529 2.3688465, 48.8615323 2.3686143, 48.8703670 2.4141090, 48.8664155 2.3287146, 48.8646787 2.3558594, 48.8647635 2.3558139, 48.8644799 2.3569191, 48.8812460 2.3970285, 48.8820133 2.3925345, 48.8821844 2.3935524, 48.8828643 2.3886668, 48.8829561 2.3882121, 48.8827471 2.3938810, 48.8833291 2.3947420, 48.8804364 2.3909641, 48.8800033 2.3898697, 48.8799319 2.3904826, 48.8784447 2.4009704, 48.8292853 2.3778606, 48.8293158 2.3777229, 48.8780831 2.3977598, 48.8763376 2.3928795, 48.8759989 2.3919521, 48.8294030 2.3777343, 48.8294362 2.3776122, 48.8829792 2.3898003, 48.8830462 2.3899559, 48.8831953 2.3902831, 48.8842703 2.3944365, 48.8835763 2.3936573, 48.8628024 2.3492324, 48.8286889 2.3529053, 48.8300562 2.3775954, 48.8646229 2.3720615, 48.8645903 2.3718381, 48.8647000 2.3723457, 48.8649871 2.3711423, 48.8646356 2.3695864, 48.8536724 2.3590186, 48.8593193 2.3574587, 48.8514489 2.3578021, 48.8638634 2.3356319, 48.8598038 2.3550656, 48.8639843 2.4166576, 48.8642754 2.4167319, 48.8633861 2.4170457, 48.8635762 2.4172221, 48.8635003 2.4170745, 48.8634055 2.4169948, 48.8636141 2.4170329, 48.8634685 2.4170960, 48.8634650 2.4172408, 48.8634438 2.4171443, 48.8634403 2.4172006, 48.8629591 2.4165602, 48.8741226 2.3444693, 48.8620675 2.3639108, 48.8636710 2.3635746, 48.8649026 2.3629604, 48.8649556 2.3628423, 48.8622561 2.3635312, 48.8519421 2.3567772, 48.8498808 2.3501204, 48.8440473 2.3525590, 48.8451855 2.3490348, 48.8442018 2.3500077, 48.8524286 2.3420470, 48.8534836 2.3410456, 48.8456848 2.3428570, 48.8550528 2.3260617, 48.8539071 2.3387894, 48.8515303 2.3369340, 48.8482112 2.3204309, 48.8518375 2.3258083, 48.8450837 2.3195999, 48.8518585 2.3188633, 48.8576298 2.3176670, 48.8529308 2.3193344, 48.8595364 2.3060761, 48.8578140 2.3074922, 48.8571081 2.3064008, 48.8597581 2.3089643, 48.8600846 2.3104260, 48.8583562 2.3017730, 48.8579304 2.3006577, 48.8524677 2.3434501, 48.8543124 2.3067382, 48.8561384 2.3078760, 48.8484912 2.3028920, 48.8465174 2.3090377, 48.8647818 2.3633384, 48.8265625 2.3417322, 48.8342538 2.3285289, 48.8426625 2.3121024, 48.8308092 2.3297699, 48.8420897 2.3195839, 48.8438998 2.3065923, 48.8317551 2.3279382, 48.8391012 2.3225936, 48.8295474 2.3300309, 48.8414890 2.3075250, 48.8324658 2.3302686, 48.8361011 2.3194903, 48.8295210 2.3216035, 48.8309683 2.3238141, 48.8334909 2.3174992, 48.8349599 2.3202581, 48.8404648 2.3176439, 48.8458269 2.3260465, 48.8465962 2.3273880, 48.8333262 2.3146227, 48.8306221 2.3181154, 48.8283718 2.3248315, 48.8293550 2.3173059, 48.8286172 2.3165992, 48.8336324 2.3094905, 48.8261789 2.3410103, 48.8165826 2.3349080, 48.8355156 2.3316471, 48.8314430 2.3438019, 48.8407094 2.3496012, 48.8391333 2.3498059, 48.8415439 2.3497318, 48.8398678 2.3566388, 48.8365280 2.3502387, 48.8370856 2.3509326, 48.8243871 2.3574705, 48.8260836 2.3528276, 48.8214555 2.3699509, 48.8234438 2.3659965, 48.8376543 2.3732405, 48.8721014 2.3135206, 48.8770027 2.3152869, 48.8779735 2.3156876, 48.8750834 2.3159276, 48.8755374 2.3143555, 48.8750147 2.3190578, 48.8761976 2.3178307, 48.8711049 2.3313779, 48.8718551 2.3283293, 48.8738329 2.3356364, 48.8732432 2.3343795, 48.8726025 2.3342940, 48.8677518 2.3330651, 48.8661454 2.3311130, 48.8689573 2.3392078, 48.8688057 2.3297132, 48.8614006 2.3421423, 48.8639382 2.3623895, 48.8641888 2.3633140, 48.8646311 2.3593875, 48.8794700 2.3335264, 48.8848786 2.3269713, 48.8748196 2.3372788, 48.8864597 2.3278197, 48.8911368 2.3401386, 48.8834860 2.3321884, 48.8803813 2.3401661, 48.8902021 2.3362687, 48.8788794 2.3399522, 48.8893117 2.3377423, 48.8908011 2.3346412, 48.8853672 2.3365529, 48.8925368 2.3433906, 48.8890228 2.3343651, 48.8828138 2.3366668, 48.8925633 2.3452404, 48.8913982 2.3346563, 48.8813839 2.3408821, 48.8779431 2.3424201, 48.8789901 2.3370287, 48.8819337 2.3388813, 48.8808537 2.3375391, 48.8722982 2.3480579, 48.8747809 2.3407405, 48.8667273 2.3470910, 48.8660036 2.3469427, 48.8743528 2.3477982, 48.8651981 2.3604798, 48.8643829 2.3635375, 48.8950758 2.3525434, 48.8782761 2.3932124, 48.8792674 2.3924164, 48.8792753 2.3925036, 48.8795232 2.3915635, 48.8768640 2.3922696, 48.8757708 2.3732086, 48.8748600 2.3639693, 48.8645631 2.3500542, 48.8701234 2.3544757, 48.8714658 2.3533801, 48.8727471 2.3549661, 48.8771691 2.3493880, 48.8520514 2.3648715, 48.8787013 2.3466800, 48.8846795 2.3412006, 48.8734531 2.3550099, 48.8802287 2.3439689, 48.8727993 2.3579430, 48.8556439 2.3579807, 48.8583232 2.3646320, 48.8751088 2.3509692, 48.8704289 2.3551851, 48.8567295 2.3558132, 48.8687618 2.3559159, 48.8658226 2.3606048, 48.8559056 2.3565452, 48.8744321 2.3568584, 48.8638238 2.3585199, 48.8771569 2.3482577, 48.8762065 2.3240154, 48.8762107 2.3240188, 48.8762279 2.3241655, 48.8762289 2.3241721, 48.8762529 2.3242317, 48.8762533 2.3242608, 48.8762575 2.3242643, 48.8762651 2.3241105, 48.8762678 2.3243551, 48.8762776 2.3242247, 48.8762723 2.3243035, 48.8762791 2.3242456, 48.8762860 2.3242882, 48.8762922 2.3246360, 48.8762964 2.3246394, 48.8763162 2.3247407, 48.8763215 2.3248224, 48.8763343 2.3246420, 48.8763545 2.3248122, 48.8763576 2.3248334, 48.8763592 2.3251892, 48.8763634 2.3251926, 48.8763823 2.3252946, 48.8763844 2.3253409, 48.8763886 2.3253444, 48.8763987 2.3251586, 48.8764062 2.3255790, 48.8764087 2.3253048, 48.8764102 2.3253257, 48.8764104 2.3255824, 48.8764231 2.3253538, 48.8764244 2.3257249, 48.8764286 2.3257283, 48.8764498 2.3258094, 48.8764649 2.3259419, 48.8764691 2.3259453, 48.8764663 2.3256966, 48.8764844 2.3262062, 48.8764886 2.3262096, 48.8764892 2.3259058, 48.8764907 2.3259267, 48.8764786 2.3258363, 48.8765026 2.3263521, 48.8765068 2.3263555, 48.8765276 2.3265561, 48.8765318 2.3265595, 48.8765071 2.3263235, 48.8765362 2.3264621, 48.8765404 2.3264655, 48.8765540 2.3263810, 48.8765605 2.3264260, 48.8765620 2.3264469, 48.8765689 2.3264895, 48.8758814 2.3241347, 48.8758829 2.3241556, 48.8759082 2.3243224, 48.8759097 2.3243433, 48.8759335 2.3245369, 48.8759350 2.3245578, 48.8761415 2.3247083, 48.8761597 2.3248790, 48.8759827 2.3242269, 48.8759883 2.3242451, 48.8760367 2.3245546, 48.8760568 2.3247158, 48.8761512 2.3249692, 48.8761459 2.3249670, 48.8762132 2.3251392, 48.8761970 2.3258289, 48.8762250 2.3256115, 48.8762757 2.3255999, 48.8763199 2.3264604, 48.8762635 2.3261236, 48.8762880 2.3265296, 48.8763346 2.3264570, 48.8762718 2.3261629, 48.8762922 2.3265330, 48.8762795 2.3261947, 48.8762722 2.3257597, 48.8762953 2.3259455, 48.8760827 2.3238707, 48.8760590 2.3238497, 48.8760646 2.3238679, 48.8758244 2.3239995, 48.8758348 2.3239901, 48.8759821 2.3240396, 48.8759984 2.3240276, 48.8760705 2.3246116, 48.8760689 2.3244803, 48.8761319 2.3244624, 48.8761550 2.3241133, 48.8761782 2.3251112, 48.8761848 2.3249939, 48.8762194 2.3257162, 48.8762216 2.3257386, 48.8762432 2.3264043, 48.8762348 2.3263336, 48.8762536 2.3255230, 48.8762439 2.3256515, 48.8763052 2.3256515, 48.8762823 2.3256713, 48.8763299 2.3257676, 48.8763321 2.3257900, 48.8763680 2.3262427, 48.8763736 2.3262665, 48.8744168 2.3574610, 48.8614963 2.3660517, 48.8763750 2.3247528, 48.8475558 2.3229755, 48.8328233 2.3148509, 48.8496066 2.3756713, 48.8495620 2.3756776, 48.8842426 2.3535987, 48.8697475 2.3994451, 48.8584067 2.4068152, 48.8631993 2.4041024, 48.8553317 2.3737743, 48.8555334 2.3742149, 48.8569521 2.3559048, 48.8545936 2.3720001, 48.8639586 2.4173390, 48.8638667 2.4173632, 48.8525131 2.3664503, 48.8653836 2.3574562, 48.8659666 2.3487937, 48.8446543 2.4129610, 48.8699888 2.3953990, 48.8673312 2.3966500, 48.8730560 2.3905502, 48.8739030 2.3865832, 48.8667589 2.3978361, 48.8638904 2.3546239, 48.8639079 2.3545467, 48.8304463 2.3288405, 48.8166645 2.3335359, 48.8168174 2.3324555, 48.8164949 2.3331968, 48.8168003 2.3325807, 48.8952176 2.3850474, 48.8563530 2.3535669, 48.8128774 2.3611174, 48.8128979 2.3611078, 48.8391666 2.3608814, 48.8487355 2.3660823, 48.8833277 2.3495725, 48.8878812 2.3493831, 48.8907989 2.3494535, 48.8457933 2.3565607, 48.8460608 2.3561547, 48.8470305 2.3545898, 48.8648516 2.3601559, 48.8654700 2.3607303, 48.8656437 2.3615222, 48.8654028 2.3619785, 48.8656127 2.3609051, 48.8840049 2.3468986, 48.8872631 2.3475866, 48.8832396 2.3472878, 48.8830845 2.3464441, 48.8825500 2.3469245, 48.8868155 2.3478124, 48.8820386 2.3461591, 48.8838417 2.3445363, 48.8856441 2.3472442, 48.8380740 2.3312952, 48.8532253 2.3080493, 48.8751861 2.3096416, 48.8885767 2.3468977, 48.8909628 2.3443799, 48.8898586 2.3432421, 48.8915262 2.3491203, 48.8840049 2.3468986, 48.8795579 2.3535539, 48.8796192 2.3488789, 48.8873744 2.3500266, 48.8795477 2.3496189, 48.8902460 2.3513255, 48.8884769 2.3498615, 48.8926470 2.3491395, 48.8705337 2.3609389, 48.8868000 2.3535164, 48.8832396 2.3472878, 48.8836617 2.3398543, 48.8901952 2.3493195, 48.8830845 2.3464441, 48.8825500 2.3469245, 48.8817514 2.3508051, 48.8732365 2.3616933, 48.8769252 2.3518873, 48.8804444 2.3535727, 48.8880026 2.3512746, 48.8838417 2.3445363, 48.8810556 2.3496319, 48.8787140 2.3553253, 48.8834244 2.3489006, 48.8853902 2.3498085, 48.8946949 2.3474146, 48.8918681 2.3463492, 48.8380740 2.3312952, 48.8532253 2.3080493, 48.8751861 2.3096416, 48.8901334 2.3595521, 48.8858013 2.3591698, 48.8915441 2.3596492, 48.8685260 2.3668860, 48.8845912 2.3779397, 48.8831266 2.3689694, 48.8941894 2.3734712, 48.8839077 2.3750794, 48.8905658 2.3757992, 48.8833351 2.3716094, 48.8928421 2.3777136, 48.8941507 2.3733344, 48.8739344 2.3744972, 48.8732868 2.3752415, 48.8692841 2.3691844, 48.8684964 2.3724151, 48.8723076 2.3713464, 48.8656605 2.3702359, 48.8692841 2.3691844, 48.8723076 2.3713464, 48.8813038 2.3916917, 48.8838456 2.3967316, 48.8258806 2.3446643, 48.8679653 2.4009222, 48.8569651 2.4104184, 48.8767223 2.4073061, 48.8678398 2.3858917, 48.8679452 2.4057911, 48.8711283 2.4085012, 48.8632827 2.3874969, 48.8623150 2.3855996, 48.8570305 2.3818008, 48.8566193 2.3794420, 48.8565470 2.3790561, 48.8509180 2.3989279, 48.8521281 2.3764111, 48.8570029 2.3854109, 48.8530589 2.3773519, 48.8520476 2.4031571, 48.8582685 2.3892738, 48.8526481 2.4065031, 48.8468431 2.4031703, 48.8540407 2.3820722, 48.8537646 2.3822311, 48.8481243 2.4116336, 48.8551544 2.3868498, 48.8527109 2.3745984, 48.8479906 2.4058932, 48.8535362 2.3798034, 48.8535047 2.3930465, 48.8551739 2.3882193, 48.8550180 2.3863592, 48.8503773 2.3902470, 48.8468405 2.3992911, 48.8548702 2.3846652, 48.8545213 2.3710469, 48.8530836 2.4089949, 48.8509304 2.3781186, 48.8545677 2.3963211, 48.8457849 2.4008634, 48.8398366 2.4007072, 48.8651506 2.3949849, 48.8766231 2.3592357, 48.8903971 2.3715296, 48.8884204 2.3816752, 48.8921367 2.3791587, 48.8554367 2.3076800, 48.8181490 2.3783169, 48.8217711 2.3652403, 48.8895292 2.3399573, 48.8384296 2.3723291, 48.8952315 2.3469950, 48.8446258 2.3602639, 48.8458322 2.3604678, 48.8625262 2.4097838, 48.8461336 2.3606308, 48.8930965 2.3505838, 48.8937077 2.3508320, 48.8513957 2.3471934, 48.8525687 2.3419562, 48.8548459 2.3505278, 48.8542631 2.3453229, 48.8558605 2.3541186, 48.8492563 2.3501426, 48.8500477 2.3544706, 48.8478803 2.3509748, 48.8508280 2.3238510, 48.8478611 2.3240246, 48.8470624 2.3321732, 48.8524300 2.3315244, 48.8552445 2.3372308, 48.8509154 2.3318553, 48.8527300 2.3358160, 48.8414989 2.3307043, 48.8499329 2.3442853, 48.8429928 2.3279877, 48.8424941 2.3292781, 48.8487620 2.3286015, 48.8451283 2.3252355, 48.8473650 2.3263657, 48.8545761 2.3303312, 48.8480048 2.3469851, 48.8488694 2.3407197, 48.8396798 2.3477510, 48.8403609 2.3561952, 48.8416766 2.3391861, 48.8401952 2.3626684, 48.8417152 2.3328311, 48.8441650 2.3507729, 48.8452271 2.3547288, 48.8429878 2.3364637, 48.8443621 2.3523143, 48.8410745 2.3519673, 48.8438967 2.3418866, 48.8662794 2.3157646, 48.8658760 2.3083292, 48.8681934 2.3045518, 48.8671359 2.3201252, 48.8314813 2.3271321, 48.8658760 2.3083292, 48.8671342 2.3201252, 48.8588189 2.3448960, 48.8633185 2.3405669, 48.8624871 2.3393236, 48.8553743 2.3591398, 48.8591297 2.3471996, 48.8537800 2.3580890, 48.8557170 2.3563167, 48.8649557 2.3330737, 48.8642939 2.3314856, 48.8579375 2.3467116, 48.8621299 2.3511204, 48.8457042 2.3274104, 48.8715322 2.3782825, 48.8714475 2.3785400, 48.8710382 2.3789263, 48.8165601 2.3352110, 48.8166077 2.3340055, 48.8166692 2.3338891, 48.8166374 2.3338042, 48.8727811 2.3782642, 48.8775345 2.3741232, 48.8633079 2.3885663, 48.8632235 2.3879016, 48.8632163 2.3883806, 48.8560707 2.3944053, 48.8559854 2.3944716, 48.8673806 2.3847823, 48.8598965 2.3075931, 48.8690612 2.3581146, 48.8416157 2.3241646, 48.8357881 2.3244751, 48.8719853 2.3667390, 48.8741288 2.3623407, 48.8314315 2.3294141, 48.8713669 2.3626508, 48.8701720 2.3657126, 48.8459453 2.3434253, 48.8455190 2.3446763, 48.8484791 2.4362509, 48.8497142 2.4357405, 48.8475413 2.4320489, 48.8475462 2.4323573, 48.8475472 2.4318569, 48.8475519 2.4327446, 48.8475525 2.4314916, 48.8483946 2.4362785, 48.8484795 2.4344540, 48.8485513 2.4332663, 48.8882737 2.3820501, 48.8891098 2.3835643, 48.8883500 2.3820041, 48.8879003 2.3814450, 48.8394160 2.4083895, 48.8578247 2.3813422, 48.8677318 2.3596603, 48.8378546 2.3188725, 48.8317018 2.3143304, 48.8353270 2.3208130, 48.8397282 2.3215357, 48.8432904 2.3243576, 48.8736845 2.3221625, 48.8573688 2.3547540, 48.8574138 2.3546799, 48.8572972 2.3549227, 48.8571079 2.3538718, 48.8570633 2.3551401, 48.8568020 2.3549650, 48.8574390 2.3545800, 48.8571737 2.3548765, 48.8735793 2.3550497, 48.8650279 2.3964176, 48.8697071 2.3851108, 48.8676047 2.3904421, 48.8657579 2.3928152, 48.8395961 2.3095374, 48.8387816 2.3087465, 48.8391602 2.3093568, 48.8389373 2.3091572, 48.8398140 2.3098340, 48.8394382 2.3093976, 48.8392571 2.3092329, 48.8392441 2.3094339, 48.8427154 2.3132213, 48.8426287 2.3123537, 48.8737099 2.3141427, 48.8734980 2.3143172, 48.8736678 2.3138962, 48.8737373 2.3138101, 48.8737700 2.3140366, 48.8780639 2.3154492, 48.8754645 2.3159379, 48.8730600 2.4094037, 48.8695633 2.4004206, 48.8676082 2.4020486, 48.8421217 2.3299033, 48.8421556 2.3297775, 48.8412506 2.3295393, 48.8416571 2.3270780, 48.8421577 2.3302112, 48.8416283 2.3300199, 48.8425340 2.3286959, 48.8446309 2.3803603, 48.8420879 2.3286451, 48.8719706 2.3336685, 48.8445572 2.3184851, 48.8470111 2.3265176, 48.8425096 2.3108847, 48.8917251 2.3440010, 48.8925185 2.3433234, 48.8587529 2.3507920, 48.8773768 2.3515939, 48.8787920 2.3543609, 48.8813655 2.3323957, 48.8821120 2.3316747, 48.8827577 2.3319094, 48.8838593 2.3331994, 48.8831858 2.3320915, 48.8813801 2.3323981, 48.8810923 2.3316989, 48.8727542 2.3905801, 48.8817986 2.3939048, 48.8505902 2.3437695, 48.8095300 2.3805020, 48.8095010 2.3804980, 48.8095300 2.3805020, 48.8567275 2.3315486, 48.8672572 2.3455641, 48.8597151 2.3678389, 48.8657815 2.3471408, 48.8799815 2.4004934, 48.8780434 2.3966716, 48.8792386 2.3837546, 48.8807938 2.3976084, 48.8304314 2.3556807, 48.8885818 2.3559192, 48.8650770 2.4318309, 48.8665565 2.4301137, 48.8664548 2.4300695, 48.8657753 2.4316307, 48.8657612 2.4306195, 48.8537038 2.4271884, 48.8731035 2.3613105, 48.8732540 2.3608358, 48.8770020 2.3810578, 48.8655841 2.3616231, 48.8623856 2.3637772, 48.8621474 2.3731938, 48.8425014 2.3760160, 48.8803880 2.3520782, 48.8795760 2.3490326, 48.8799666 2.3508222, 48.8735896 2.3649091, 48.8556162 2.3630412, 48.8556754 2.3628716, 48.8621014 2.3636145, 48.8557140 2.3630523, 48.8609723 2.3678841, 48.8520343 2.3901857, 48.8400449 2.3970276, 48.8394508 2.3921659, 48.8576209 2.3506001, 48.8620444 2.3635743, 48.8622191 2.3629205, 48.8654931 2.4053046, 48.8656911 2.4086723, 48.8393243 2.3876927, 48.8293501 2.3827086, 48.8292890 2.3827479, 48.8667214 2.3740769, 48.8823658 2.3242140, 48.8822955 2.3242327, 48.8825559 2.3241735, 48.8568076 2.3957212, 48.8723223 2.3782436, 48.8785789 2.4130736, 48.8848832 2.4078931, 48.8266091 2.3593388, 48.8269314 2.3590856, 48.8270093 2.3590302, 48.8523778 2.3470388, 48.8523191 2.3469189, 48.8526537 2.3469166, 48.8525022 2.3466367, 48.8524441 2.3462777, 48.8523803 2.3462357, 48.8528696 2.3465730, 48.8517469 2.3467656, 48.8516515 2.3468745, 48.8515470 2.3472871, 48.8517944 2.3467249, 48.8516192 2.3469206, 48.8515225 2.3470249, 48.8515711 2.3472131, 48.8440829 2.3724794, 48.8535002 2.3401314, 48.8536168 2.3389809, 48.8534529 2.3405893, 48.8533371 2.3410727, 48.8533371 2.3424320, 48.8532818 2.3422887, 48.8533026 2.3419951, 48.8533115 2.3417776, 48.8533976 2.3416917, 48.8432025 2.3215730, 48.8431656 2.3215298, 48.8430591 2.3214958, 48.8429562 2.3212651, 48.8430265 2.3213483, 48.8433339 2.3217349, 48.8418894 2.3196117, 48.8431258 2.3214748, 48.8433095 2.3217058, 48.8797552 2.3494151, 48.8803017 2.3513038, 48.8647006 2.3580265, 48.8643054 2.3579192, 48.8642504 2.3578896, 48.8644687 2.3579073, 48.8440092 2.3200413, 48.8432967 2.3202953, 48.8440600 2.3723896, 48.8337820 2.3299151, 48.8338004 2.3298620, 48.8760244 2.4189427, 48.8628005 2.3713562, 48.8633624 2.3704332, 48.8627558 2.3714312, 48.8289516 2.3820071, 48.8745071 2.3771328, 48.8674941 2.3845084, 48.8675297 2.3843310, 48.8672999 2.3844608, 48.8673215 2.3845235, 48.8685628 2.3685960, 48.8468797 2.3518136, 48.8466990 2.3540136, 48.8467952 2.3538782, 48.8281555 2.3764586, 48.8595128 2.3801584, 48.8713664 2.3780814, 48.8608431 2.3677027, 48.8622923 2.3631874, 48.8689911 2.3678193, 48.8688760 2.3680910, 48.8686996 2.3668251, 48.8685022 2.3667684, 48.8684700 2.3665974, 48.8683415 2.3657119, 48.8687159 2.3685066, 48.8690638 2.3680348, 48.8685607 2.3669629, 48.8685781 2.3664947, 48.8684849 2.3661714, 48.8690077 2.3683815, 48.8486725 2.3800070, 48.8471698 2.3758069, 48.8688054 2.3800552, 48.8676507 2.3828530, 48.8619109 2.3023193, 48.8706613 2.3081543, 48.8444349 2.4060748, 48.8449568 2.4059557, 48.8707889 2.3567692, 48.8695571 2.3559657, 48.8708376 2.3567105, 48.8708986 2.3568414, 48.8726242 2.3578427, 48.8741347 2.3586494, 48.8764030 2.3597857, 48.8713449 2.3570305, 48.8767822 2.3583534, 48.8511933 2.3505104, 48.8712435 2.3782107, 48.8716303 2.3777995, 48.8710420 2.3784516, 48.8794962 2.3566489, 48.8795077 2.3565761, 48.8795270 2.3564524, 48.8795400 2.3563567, 48.8795641 2.3560902, 48.8791394 2.3562239, 48.8429300 2.3845957, 48.8223304 2.3473425, 48.8796330 2.3554913, 48.8796682 2.3551473, 48.8315467 2.3138335, 48.8402786 2.3947116, 48.8099977 2.3592474, 48.8467385 2.3520368, 48.8469658 2.3519512, 48.8849962 2.3715251, 48.8848895 2.3713006, 48.8646842 2.3592384, 48.8645539 2.3597709, 48.8650528 2.3603618, 48.8637549 2.3626184, 48.8650392 2.3605920, 48.8637125 2.3625755, 48.8641649 2.3591378, 48.8672368 2.3753758, 48.8678987 2.3354545, 48.8210759 2.4149145, 48.8208614 2.4143918, 48.8650784 2.3505687, 48.8651208 2.3506212, 48.8652327 2.3851410, 48.8278142 2.3777359, 48.8679607 2.3825552, 48.8633505 2.3890607, 48.8637984 2.3908322, 48.8639920 2.3893709, 48.8476557 2.4073288, 48.8521365 2.4011863, 48.8535107 2.3984631, 48.8543651 2.4004082, 48.8549033 2.3991563, 48.8553510 2.3999628, 48.8554010 2.4000885, 48.8554579 2.4009305, 48.8557105 2.4009303, 48.8558018 2.4009648, 48.8908910 2.3395767, 48.8584687 2.3716161, 48.8593542 2.3719793, 48.8557954 2.3717948, 48.8609279 2.3669227, 48.8614701 2.3608326, 48.8618729 2.3587495, 48.8627385 2.3596843, 48.8652300 2.3566643, 48.8635066 2.3585029, 48.8617124 2.3623064, 48.8489709 2.3487810, 48.8560387 2.3690689, 48.8865544 2.3946173, 48.8873512 2.3371414, 48.8849326 2.3248676, 48.8630199 2.3130597, 48.8585731 2.3799965, 48.8603909 2.3820039, 48.8429800 2.4045600, 48.8581752 2.3818149, 48.8599048 2.3846150, 48.8531336 2.3637219, 48.8578716 2.3815256, 48.8599169 2.3845657, 48.8591095 2.3674255, 48.8416520 2.3892125, 48.8611671 2.3653284, 48.8630322 2.3614430, 48.8627514 2.3611092, 48.8623962 2.3674963, 48.8626410 2.3536464, 48.8898322 2.3630151, 48.8879186 2.3618545, 48.8773247 2.3489696, 48.8793698 2.3518510, 48.8444824 2.3483630, 48.8472115 2.3434322, 48.8636670 2.3631192, 48.8634068 2.3624053, 48.8240184 2.3528604, 48.8718894 2.3478122, 48.8719458 2.3478111, 48.8649403 2.3546311, 48.8627658 2.3484656, 48.8629917 2.3486012, 48.8651384 2.3540831, 48.8651151 2.3550922, 48.8772395 2.4134821, 48.8853379 2.4036816, 48.8726616 2.3794472, 48.8726783 2.3795015, 48.8715434 2.3807894, 48.8727289 2.3797150, 48.8556263 2.3923924, 48.8471265 2.3778627, 48.8558403 2.3865089, 48.8675723 2.3830749, 48.8682036 2.3823947, 48.8684236 2.3819214, 48.8791133 2.3432693, 48.8632800 2.3800281, 48.8642792 2.3630057, 48.8636107 2.3663132, 48.8753261 2.3672560, 48.8429464 2.3483818, 48.8547153 2.3722204, 48.8773893 2.3756462, 48.8608326 2.3673920, 48.8853175 2.3257002, 48.8627059 2.3734870, 48.8578074 2.3707699, 48.8708850 2.3612168, 48.8712926 2.3609373, 48.8715677 2.3606317, 48.8717633 2.3603964, 48.8721816 2.3600284, 48.8729112 2.3593539, 48.8724267 2.3592410, 48.8595197 2.3519694, 48.8593768 2.3517682, 48.8629928 2.3496035, 48.8625817 2.3734001, 48.8633352 2.3704841, 48.8630640 2.3709460, 48.8635007 2.3703277, 48.8641694 2.3686406, 48.8651440 2.3631259, 48.8646965 2.3614827, 48.8653430 2.3620895, 48.8654952 2.3617890, 48.8651915 2.3632720, 48.8652987 2.3631700, 48.8954942 2.3885330, 48.8526188 2.3716745, 48.8388865 2.3811523, 48.8645308 2.4003185, 48.8630067 2.3884535, 48.8629785 2.3883247, 48.8628656 2.3879600, 48.8630650 2.3887300, 48.8627096 2.3667135, 48.8719684 2.3680226, 48.8714948 2.3681825, 48.8593762 2.3403098, 48.8610042 2.3446593, 48.8590960 2.3402013, 48.8611097 2.3450773, 48.8591476 2.3413321, 48.8608076 2.3445073, 48.8620219 2.3644654, 48.8628357 2.3504795, 48.8745679 2.3748559, 48.8698382 2.3799777, 48.8699823 2.3797992, 48.8627927 2.3599257, 48.8622711 2.3595454, 48.8628804 2.3600120, 48.8620925 2.3591139, 48.8425167 2.3895544, 48.8794959 2.3557064, 48.8794549 2.3557059, 48.8792827 2.3556589, 48.8787960 2.3554810, 48.8788783 2.3543907, 48.8288640 2.3588574, 48.8293808 2.3599380, 48.8296294 2.3594614, 48.8765071 2.3878183, 48.8292026 2.3825880, 48.8342691 2.3291554, 48.8348913 2.3240947, 48.8291308 2.3823983, 48.8628035 2.3401495, 48.8300313 2.3294841, 48.8198018 2.3378923, 48.8196733 2.3393782, 48.8194043 2.3405063, 48.8188325 2.3408390, 48.8184256 2.3419067, 48.8186884 2.3425003, 48.8186360 2.3430082, 48.8189215 2.3438558, 48.8179357 2.3423853, 48.8177750 2.3424496, 48.8176743 2.3436137, 48.8176500 2.3360501, 48.8176561 2.3358653, 48.8203267 2.3373700, 48.8208968 2.3323023, 48.8213376 2.3305144, 48.8216173 2.3310795, 48.8815762 2.3163770, 48.8815323 2.3165760, 48.8538306 2.3993936, 48.8199908 2.4158156, 48.8199604 2.4157990, 48.8199514 2.4157774, 48.8583708 2.3787891, 48.8590822 2.3798135, 48.8307176 2.3336597, 48.8307282 2.3338267, 48.8680769 2.4194810, 48.8589427 2.3464330, 48.8590343 2.3461496, 48.8579662 2.3531583, 48.8580620 2.3532663, 48.8574895 2.3571997, 48.8603236 2.3412799, 48.8604378 2.3417437, 48.8587806 2.3545747, 48.8578490 2.3571632, 48.8575587 2.3574886, 48.8588486 2.3540437, 48.8586024 2.3546772, 48.8585197 2.3583460, 48.8585619 2.3617793, 48.8583599 2.3584734, 48.8580087 2.3580443, 48.8439673 2.3460288, 48.8441077 2.3459483, 48.8659835 2.3759782, 48.8764155 2.3262726, 48.8764170 2.3262916, 48.8402927 2.3220815, 48.8397407 2.3223166, 48.8395328 2.3223837, 48.8680347 2.3605860, 48.8680112 2.3607306, 48.8695778 2.3523254, 48.8698760 2.3530342, 48.8696614 2.3534575, 48.8679895 2.3610735, 48.8690920 2.3544517, 48.8689542 2.3550295, 48.8688455 2.3557193, 48.8687443 2.3560423, 48.8687056 2.3562086, 48.8687789 2.3580377, 48.8683922 2.3581580, 48.8682613 2.3590719, 48.8609413 2.3681895, 48.8361012 2.3067804, 48.8370117 2.3056189, 48.8371245 2.3054619, 48.8375642 2.3108322, 48.8763255 2.3252492, 48.8763345 2.3253186, 48.8763481 2.3252469, 48.8763586 2.3253125, 48.8763906 2.3257893, 48.8763977 2.3258579, 48.8764137 2.3257840, 48.8764222 2.3258533, 48.8761959 2.3242313, 48.8762052 2.3242981, 48.8762229 2.3242243, 48.8762328 2.3242884, 48.8762487 2.3247210, 48.8762562 2.3247899, 48.8762835 2.3247134, 48.8762916 2.3247754, 48.8760734 2.3241538, 48.8760985 2.3241481, 48.8761568 2.3253004, 48.8761620 2.3253393, 48.8761672 2.3253781, 48.8761917 2.3255562, 48.8763397 2.3256628, 48.8763792 2.3260078, 48.8760773 2.3244021, 48.8762166 2.3259734, 48.8762344 2.3261204, 48.8761781 2.3243752, 48.8761909 2.3258818, 48.8761985 2.3259437, 48.8763366 2.3258209, 48.8763437 2.3258211, 48.8866242 2.3257917, 48.8864120 2.3257820, 48.8413425 2.3652072, 48.8414409 2.3651264, 48.8865655 2.3262035, 48.8861536 2.3260238, 48.8861609 2.3263857, 48.8760673 2.3245711, 48.8760640 2.3245305, 48.8760947 2.3247697, 48.8761310 2.3250560, 48.8761354 2.3250961, 48.8760992 2.3248047, 48.8761270 2.3250206, 48.8762308 2.3258654, 48.8761038 2.3248396, 48.8761981 2.3256005, 48.8762253 2.3258221, 48.8762667 2.3261978, 48.8762045 2.3256447, 48.8762362 2.3259087, 48.8762564 2.3261112, 48.8762616 2.3261545, 48.8630651 2.3681141, 48.8761564 2.3243642, 48.8764554 2.3263320, 48.8764625 2.3264006, 48.8764785 2.3263267, 48.8764870 2.3263960, 48.8707205 2.3552252, 48.8302778 2.3399791, 48.8322774 2.3210471, 48.8453367 2.3772879, 48.8705443 2.3327006, 48.8853976 2.3266652, 48.8617511 2.3524668, 48.8846688 2.3270692, 48.8846255 2.3270920, 48.8838777 2.3274540, 48.8838744 2.3274635, 48.8760918 2.3243992, 48.8761085 2.3246555, 48.8762099 2.3251916, 48.8761495 2.3245921, 48.8760980 2.3248040, 48.8763202 2.3259793, 48.8762808 2.3260846, 48.8763362 2.3260713, 48.8761762 2.3262999, 48.8762080 2.3265145, 48.8762514 2.3265077, 48.8763307 2.3263956, 48.8870290 2.3259790, 48.8874646 2.3257792, 48.8874431 2.3257695, 48.8764580 2.3419193, 48.8766024 2.3419539, 48.8760599 2.3244166, 48.8760904 2.3246200, 48.8761383 2.3249730, 48.8762691 2.3256755, 48.8445540 2.3545770, 48.8429717 2.3918588, 48.8131234 2.3467962, 48.8653148 2.3832038, 48.8618201 2.3879180, 48.8629442 2.3862329, 48.8513123 2.3353958, 48.8376807 2.3193494, 48.8383042 2.3198337, 48.8532259 2.3807405, 48.8815993 2.3349787, 48.8873604 2.3254496, 48.8768740 2.3473056, 48.8768835 2.3474101, 48.8830109 2.3460324, 48.8785250 2.3535336, 48.8734651 2.3583097, 48.8661901 2.3645885, 48.8661069 2.3646351, 48.8829714 2.3435219, 48.8826881 2.3420684, 48.8732283 2.3581935, 48.8828747 2.3429238, 48.8826722 2.3419776, 48.8747915 2.3570787, 48.8732823 2.3579211, 48.8726554 2.3578763, 48.8662690 2.3645400, 48.8657515 2.3648587, 48.8644368 2.3657531, 48.8613141 2.3651313, 48.8110871 2.3875438, 48.8762481 2.3257663, 48.8367280 2.3487200, 48.8367280 2.3487200, 48.8353170 2.3478860, 48.8349210 2.3465080, 48.8343790 2.3452750, 48.8578544 2.4204570, 48.8576893 2.4217772, 48.8571707 2.4221190, 48.8443642 2.3453057, 48.8622694 2.3561308, 48.8614189 2.3776680, 48.8760451 2.3449903, 48.8759406 2.3461978, 48.8873874 2.3254638, 48.8873976 2.3254532, 48.8682308 2.3599200, 48.8465580 2.4033880, 48.8425990 2.3443980, 48.8603590 2.3385384, 48.8448516 2.3782156, 48.8449665 2.4016714, 48.8580829 2.4341808, 48.8576670 2.4332339, 48.8585401 2.4334307, 48.8573686 2.4352187, 48.8574853 2.4262902, 48.8579754 2.4349971, 48.8584380 2.4339730, 48.8333284 2.3318482, 48.8344780 2.3373380, 48.8347600 2.3373890, 48.8388790 2.3400000, 48.8390760 2.3396870, 48.8419160 2.3411320, 48.8442777 2.3588710, 48.8444050 2.3332730, 48.8441210 2.3389360, 48.8426140 2.3296180, 48.8427420 2.3298900, 48.8423170 2.3292890, 48.8417520 2.3277620, 48.8404610 2.3268800, 48.8306510 2.3337050, 48.8458679 2.3533248, 48.8702521 2.3687545, 48.8257723 2.3713124, 48.8248674 2.3697828, 48.8479497 2.3423497, 48.8393060 2.3511670, 48.8372400 2.3470690, 48.8393060 2.3511670, 48.8378270 2.3494780, 48.8372400 2.3470690, 48.8634056 2.3514985, 48.8652741 2.3511562, 48.8597924 2.3546450, 48.8606590 2.3543661, 48.8637825 2.3514050, 48.8622275 2.3413068, 48.8717527 2.3432696, 48.8690458 2.3745897, 48.8331070 2.3327870, 48.8660386 2.3519725, 48.8381888 2.3042257, 48.8732076 2.3095057, 48.8724822 2.3121983, 48.8712639 2.3170765, 48.8739607 2.3084406, 48.8730576 2.3110516, 48.8715844 2.3184256, 48.8712535 2.3215328, 48.8701210 2.3343104, 48.8712053 2.3217779, 48.8703842 2.3328924, 48.8700082 2.3349400, 48.8705967 2.3233815, 48.8710823 2.3168960, 48.8712006 2.3179008, 48.8674579 2.3471327, 48.8678521 2.3451100, 48.8655236 2.3518622, 48.8654654 2.3518340, 48.8603750 2.3672854, 48.8645868 2.3821854, 48.8641316 2.3800144, 48.8692072 2.3925851, 48.8643069 2.3819522, 48.8736906 2.3505450, 48.8890318 2.3625198, 48.8390748 2.4006273, 48.8922517 2.3469515, 48.8542844 2.3069658, 48.8778724 2.3471465, 48.8791742 2.3482838, 48.8825911 2.3395439, 48.8568706 2.3940601, 48.8577629 2.3902031, 48.8637752 2.3992427, 48.8760765 2.3450995, 48.8759453 2.3445955, 48.8757847 2.3439762, 48.8761413 2.3445362, 48.8759620 2.3446972, 48.8618333 2.3511483, 48.8749633 2.3400064, 48.8461703 2.3431295, 48.8462807 2.3429828, 48.8842355 2.3209322, 48.8837644 2.3214224, 48.8838310 2.3216888, 48.8843391 2.3213355, 48.8837360 2.3212646, 48.8841971 2.3215837, 48.8839656 2.3219240, 48.8843369 2.3213831, 48.8840868 2.3224691, 48.8850476 2.3250531, 48.8846112 2.3245897, 48.8849586 2.3249187, 48.8841497 2.3232965, 48.8840070 2.3226361, 48.8852143 2.3252963, 48.8848480 2.3249608, 48.8877657 2.3344311, 48.8798957 2.3611043, 48.8294660 2.3760442, 48.8417540 2.3374890, 48.8289416 2.3778262, 48.8297004 2.3772209, 48.8283134 2.3783602, 48.8283162 2.3783681, 48.8096994 2.3897312, 48.8095414 2.3899126, 48.8095909 2.3898697, 48.8451760 2.4337168, 48.8448903 2.4340636, 48.8449912 2.4330204, 48.8448941 2.4338902, 48.8450520 2.4352487, 48.8101605 2.3864724, 48.8101380 2.3861991, 48.8098329 2.3868844, 48.8102055 2.3857322, 48.8115833 2.3865008, 48.8098028 2.3869300, 48.8116116 2.3871017, 48.8116399 2.3864150, 48.8101490 2.3865008, 48.8101490 2.3865008, 48.8101490 2.3861575, 48.8102056 2.3857713, 48.8637960 2.3626600, 48.8632005 2.3642711, 48.8551846 2.3683407, 48.8492442 2.3663097, 48.8423785 2.4133531, 48.8424520 2.4098573, 48.8424857 2.4095701, 48.8299612 2.3310985, 48.8442729 2.3497388, 48.8126431 2.3852348, 48.8126034 2.3852292, 48.8408808 2.3244034, 48.8403529 2.3239773, 48.8400924 2.3237108, 48.8393869 2.3231702, 48.8372237 2.3221630, 48.8412591 2.3247295, 48.8403081 2.3242278, 48.8406615 2.3245098, 48.8404594 2.3240309, 48.8395438 2.3233136, 48.8393548 2.3234506, 48.8409574 2.3244561, 48.8399097 2.3239054, 48.8389724 2.3231258, 48.8389227 2.3228126, 48.8372675 2.3221391, 48.8424526 2.3235103, 48.8433207 2.3243730, 48.8398794 2.3222566, 48.8428000 2.3239340, 48.8865176 2.3413373, 48.8434981 2.3075930, 48.8440868 2.3089644, 48.8449174 2.3100829, 48.8495006 2.4060883, 48.8259883 2.3455054, 48.8272205 2.3617938, 48.8273986 2.3619739, 48.8632514 2.3706162, 48.8657983 2.3663325, 48.8440240 2.3472518, 48.8449110 2.3453689, 48.8462234 2.3431852, 48.8454218 2.3443032, 48.8460810 2.3433043, 48.8462166 2.3429330, 48.8463265 2.3430162, 48.8467165 2.3430778, 48.8469954 2.3432490, 48.8470189 2.3431051, 48.8471091 2.3427342, 48.8471475 2.3425487, 48.8329372 2.3326610, 48.8251267 2.3698850, 48.8613672 2.3505534, 48.8872421 2.3720224, 48.8686585 2.3478369, 48.8676708 2.3477127, 48.8677324 2.3479327, 48.8677775 2.3480997, 48.8542591 2.3714035, 48.8539758 2.3711138, 48.8538792 2.3707631, 48.8460379 2.4308243, 48.8676067 2.3319418, 48.8471857 2.4315133, 48.8463982 2.4284061, 48.8453975 2.4282757, 48.8454202 2.4275744, 48.8456642 2.4277177, 48.8459425 2.4246638, 48.8463194 2.4203859, 48.8663251 2.3475355, 48.8670225 2.3471209, 48.8658657 2.3436098, 48.8704594 2.3406359, 48.8701731 2.3428600, 48.8703161 2.3479972, 48.8720064 2.3540339, 48.8704461 2.3480164, 48.8734014 2.3205103, 48.8718276 2.3217010, 48.8735547 2.3203322, 48.8713716 2.3220344, 48.8733893 2.3204120, 48.8742079 2.3178376, 48.8743054 2.3188358, 48.8741335 2.3178390, 48.8743700 2.3192643, 48.8743873 2.3191626, 48.8738866 2.3193920, 48.8737427 2.3200575, 48.8735091 2.3204368, 48.8663397 2.3254419, 48.8579392 2.3924174, 48.8585200 2.4027581, 48.8642781 2.3403451, 48.8607050 2.3456030, 48.8603569 2.3495059, 48.8510925 2.3451163, 48.8360476 2.4076947, 48.8328002 2.4147823, 48.8330462 2.4142455, 48.8360980 2.4077181, 48.8527515 2.3349235, 48.8527018 2.3349473, 48.8632077 2.3580799, 48.8264183 2.3594835, 48.8265292 2.3594023, 48.8512133 2.3476661, 48.8477856 2.3484509, 48.8582210 2.3520080, 48.8722749 2.3402976, 48.8253525 2.3720476, 48.8512133 2.3476661, 48.8608991 2.3144181, 48.8476041 2.3967859, 48.8408551 2.4004738, 48.8544368 2.3714977, 48.8572738 2.4176135, 48.8644469 2.3502861, 48.8647269 2.3560907, 48.8646057 2.3500641, 48.8700275 2.3125300, 48.8719832 2.3132303, 48.8295817 2.3761826, 48.8299341 2.3774674, 48.8580917 2.3673244, 48.8778038 2.4269168, 48.8510259 2.3410270, 48.8693183 2.3219957, 48.8785042 2.4032141, 48.8843094 2.3221312, 48.8207875 2.3249534, 48.8585293 2.3496680, 48.8176870 2.3444409, 48.8465788 2.3874042, 48.8769722 2.3514761, 48.8769498 2.3512624, 48.8338169 2.3823515, 48.8728113 2.3697721, 48.8450073 2.3757975, 48.8633378 2.3436056, 48.8690995 2.3384634, 48.8806244 2.3745553, 48.8588343 2.3460244, 48.8586892 2.3462092, 48.8585776 2.3458139, 48.8583433 2.3457410, 48.8582854 2.3457116, 48.8580663 2.3458343, 48.8580112 2.3460493, 48.8597707 2.3490144, 48.8620567 2.3541153, 48.8723234 2.3336348, 48.8648292 2.3598938, 48.8497700 2.3469745, 48.8614687 2.3564778, 48.8651409 2.3579371, 48.8652543 2.3574520, 48.8406978 2.3744965, 48.8587212 2.3462247, 48.8589271 2.3464408, 48.8556719 2.3596836, 48.8615556 2.3822677, 48.8612553 2.3752008, 48.8582612 2.3447141, 48.8584254 2.3445810, 48.8575933 2.3463807, 48.8652087 2.3547347, 48.8648343 2.3738796, 48.8628415 2.3761134, 48.8632177 2.3758485, 48.8640105 2.3752729, 48.8644275 2.3749645, 48.8647588 2.3751173, 48.8608416 2.3800761, 48.8596321 2.3806824, 48.8597322 2.3805901, 48.8595923 2.3807177, 48.8867750 2.3846748, 48.8114815 2.3841013, 48.8110501 2.3825572, 48.8107844 2.3816579, 48.8107835 2.3816914, 48.8849848 2.3432963, 48.8849886 2.3433381, 48.8849924 2.3433799, 48.8849962 2.3434217, 48.8850000 2.3434635, 48.8852046 2.3432606, 48.8852090 2.3433063, 48.8852133 2.3433520, 48.8852177 2.3433977, 48.8852430 2.3432521, 48.8852474 2.3432978, 48.8852518 2.3433435, 48.8852562 2.3433892, 48.8591551 2.3864296, 48.8810529 2.3440743, 48.8724968 2.3802510, 48.8724318 2.3801066, 48.8701197 2.3462588, 48.8678143 2.3469536, 48.8292797 2.3113663, 48.8110892 2.3827855, 48.8110545 2.3822758, 48.8111142 2.3832894, 48.8110418 2.3833001, 48.8594647 2.3443694, 48.8090525 2.3858766, 48.8520532 2.3735428, 48.8520765 2.3734600, 48.8528613 2.3712364, 48.8528204 2.3713104, 48.8520425 2.3727672, 48.8394931 2.3179481, 48.8098769 2.3849527, 48.8747616 2.3479217, 48.8602337 2.3781732, 48.8597693 2.3772029, 48.8611347 2.3782131, 48.8609390 2.3783004, 48.8627395 2.3470879, 48.8707201 2.3498183, 48.8752673 2.3508051, 48.8720795 2.3499307, 48.8719531 2.3499120, 48.8775308 2.3517179, 48.8761530 2.3512685, 48.8726196 2.3504190, 48.8772423 2.3515577, 48.8773603 2.3513705, 48.8732411 2.3502402, 48.8773292 2.3515789, 48.8706550 2.3498440, 48.8780890 2.3511045, 48.8753788 2.3510407, 48.8752131 2.3509962, 48.8779161 2.3521895, 48.8774311 2.3513901, 48.8709370 2.3498907, 48.8729782 2.3503653, 48.8706648 2.3493566, 48.8706655 2.3493474, 48.8778362 2.3510561, 48.8595665 2.3672855, 48.8336619 2.4142064, 48.8434350 2.4170119, 48.8450265 2.4324486, 48.8453079 2.4234834, 48.8748947 2.3255874, 48.8653506 2.3662218, 48.8110879 2.3839174, 48.8113613 2.3837165, 48.8113027 2.3836072, 48.8113381 2.3837350, 48.8114114 2.3838983, 48.8113607 2.3833291, 48.8113821 2.3834508, 48.8114222 2.3836022, 48.8119395 2.3838734, 48.8115562 2.3850040, 48.8116869 2.3851569, 48.8308245 2.3748433, 48.8304658 2.3751862, 48.8640760 2.3711926, 48.8686215 2.3677037, 48.8865423 2.3744088, 48.8871015 2.3755517, 48.8874259 2.3761952, 48.8879389 2.3772336, 48.8882498 2.3778555, 48.8514698 2.3700116, 48.8872981 2.3760451, 48.8525574 2.4047510, 48.8719624 2.4115435, 48.8757560 2.4059095, 48.8608207 2.3462695, 48.8609358 2.3477215, 48.8868368 2.3381841, 48.8353322 2.4002177, 48.8345547 2.4076529, 48.8311261 2.3986254, 48.8352076 2.4000322, 48.8616762 2.3508801, 48.8722827 2.3912387, 48.8207995 2.3369071, 48.8327687 2.3208864, 48.8477685 2.3654087, 48.8560350 2.3961737, 48.8574274 2.4014239, 48.8561714 2.3964283, 48.8885837 2.3477426, 48.8312696 2.3876594, 48.8721867 2.3803594, 48.8691800 2.3922512, 48.8508134 2.3857979, 48.8505324 2.3866725, 48.8816360 2.3374527, 48.8903485 2.3329893, 48.8889248 2.3343299, 48.8916024 2.3506910, 48.8638501 2.3526821, 48.8748464 2.3159127, 48.8693948 2.3431861, 48.8765916 2.3487324, 48.8721752 2.3541115, 48.8715942 2.3786219, 48.8715598 2.3784637, 48.8713331 2.3785958, 48.8714045 2.3785764, 48.8716046 2.3779577, 48.8593517 2.3061027, 48.8584161 2.3039073, 48.8552565 2.3053017, 48.8522792 2.3345573, 48.8538804 2.3682665, 48.8536387 2.3823255, 48.8577757 2.4073141, 48.8791330 2.3846707, 48.8614056 2.3545336, 48.8141681 2.3636281, 48.8141850 2.3636212, 48.8141450 2.3636361, 48.8142628 2.3634257, 48.8142581 2.3634670, 48.8142909 2.3634039, 48.8142515 2.3635321, 48.8141288 2.3634092, 48.8141375 2.3634067, 48.8141129 2.3634167, 48.8143036 2.3632667, 48.8143248 2.3634181, 48.8142679 2.3633980, 48.8142489 2.3635629, 48.8149995 2.3638774, 48.8143089 2.3631633, 48.8149487 2.3642442, 48.8150697 2.3643280, 48.8393126 2.3907145, 48.8712500 2.3520810, 48.8665165 2.3683479, 48.8694157 2.3590847, 48.8682902 2.3596238, 48.8678311 2.3593666, 48.8091963 2.3863285, 48.8092474 2.3862260, 48.8091981 2.3863423, 48.8091279 2.3858909, 48.8091334 2.3859076, 48.8090842 2.3861928, 48.8672074 2.3625921, 48.8667957 2.3616365, 48.8665822 2.3611873, 48.8664154 2.3613483, 48.8683330 2.3613789, 48.8695843 2.3619338, 48.8702528 2.3615935, 48.8690474 2.3626629, 48.8704302 2.3646700, 48.8691323 2.3642484, 48.8692179 2.3644883, 48.8690735 2.3645106, 48.8692386 2.3642586, 48.8697500 2.3660372, 48.8696778 2.3660972, 48.8706124 2.3655057, 48.8694303 2.3634932, 48.8695071 2.3630968, 48.8692731 2.3634968, 48.8702835 2.3620952, 48.8705613 2.3638521, 48.8713642 2.3601890, 48.8705252 2.3633357, 48.8711719 2.3607711, 48.8710414 2.3599919, 48.8728103 2.3592741, 48.8721819 2.3598636, 48.8721578 2.3608292, 48.8730710 2.3614410, 48.8770896 2.3562735, 48.8725656 2.3610975, 48.8740822 2.3581488, 48.8742604 2.3579932, 48.8784331 2.3584349, 48.8758489 2.3565569, 48.8757713 2.3594937, 48.8759182 2.3592349, 48.8777771 2.3618573, 48.8786221 2.3622165, 48.8786839 2.3642852, 48.8787652 2.3620625, 48.8791639 2.3631429, 48.8791832 2.3622961, 48.8793613 2.3629572, 48.8784953 2.3643169, 48.8781974 2.3647593, 48.8327047 2.3707777, 48.8860731 2.3260614, 48.8739447 2.3858048, 48.8139427 2.3845057, 48.8181376 2.3787726, 48.8119134 2.3871734, 48.8120681 2.3880447, 48.8119153 2.3877268, 48.8131365 2.3886460, 48.8131598 2.3886071, 48.8140800 2.3908912, 48.8141050 2.3909282, 48.8144501 2.3840710, 48.8136356 2.3851011, 48.8144768 2.3840517, 48.8144642 2.3840603, 48.8152579 2.3833248, 48.8152305 2.3833449, 48.8150954 2.3866588, 48.8131097 2.3854024, 48.8130602 2.3854614, 48.8107620 2.3861034, 48.8108172 2.3839094, 48.8123939 2.3893316, 48.8123630 2.3893758, 48.8116955 2.3850077, 48.8112032 2.3720938, 48.8121809 2.3710759, 48.8154255 2.3658067, 48.8176235 2.3731868, 48.8177224 2.3734202, 48.8143214 2.4019116, 48.8790778 2.3629174, 48.8791040 2.3625783, 48.8706168 2.3629690, 48.8709974 2.3627608, 48.8761411 2.3506599, 48.8761690 2.3508064, 48.8761885 2.3503881, 48.8762353 2.3501240, 48.8749134 2.3468385, 48.8736890 2.3449321, 48.8550375 2.3005938, 48.8688873 2.3047028, 48.8455015 2.3412656, 48.8774175 2.3499766, 48.8489299 2.3540817, 48.8702796 2.3656790, 48.8539772 2.3672599, 48.8591488 2.3247036, 48.8315954 2.3880807, 48.8584927 2.4369318, 48.8349936 2.3767308, 48.8579947 2.3673544, 48.8516535 2.3572091, 48.8515672 2.3574567, 48.8515407 2.3575307, 48.8521131 2.3566678, 48.8519214 2.3564826, 48.8520358 2.3566034, 48.8522159 2.3567550, 48.8524240 2.3569408, 48.8800932 2.3203737, 48.8800738 2.3204381, 48.8584487 2.4052560, 48.8520439 2.4082008, 48.8588297 2.4106985, 48.8557858 2.4079147, 48.8499048 2.4020933, 48.8527399 2.3603182, 48.8755804 2.3490802, 48.8285549 2.3526652, 48.8500675 2.3687820, 48.8532868 2.3705392, 48.8569948 2.3687863, 48.8573616 2.3697345, 48.8680926 2.3610021, 48.8695011 2.3633940, 48.8746456 2.3609364, 48.8532869 2.3977085, 48.8645930 2.3989610, 48.8533117 2.3978122, 48.8614200 2.4055488, 48.8530589 2.4119803, 48.8552568 2.3983689, 48.8744745 2.3553973, 48.8732099 2.3603812, 48.8779410 2.3615512, 48.8696370 2.3531899, 48.8427803 2.3860754, 48.8434761 2.3875982, 48.8437996 2.3883130, 48.8438755 2.3884804, 48.8444304 2.3897008, 48.8654065 2.3755760, 48.8775479 2.4130636, 48.8784707 2.4151886, 48.8909561 2.4028374, 48.8895480 2.3982342, 48.8913555 2.4047658, 48.8881517 2.4013142, 48.8913586 2.4022448, 48.8908258 2.4015856, 48.8609855 2.4183069, 48.8721500 2.4301294, 48.8885999 2.3888330, 48.8856952 2.3833818, 48.8860319 2.3936567, 48.8693756 2.4155795, 48.8626761 2.4194674, 48.8583660 2.4361236, 48.8558352 2.4229940, 48.8720855 2.4265375, 48.8564907 2.4266236, 48.8549138 2.4165187, 48.8599845 2.4204324, 48.8572098 2.4320357, 48.8456541 2.4288043, 48.8552969 2.4199547, 48.8707249 2.4212177, 48.8557002 2.4221873, 48.8682839 2.4330427, 48.8576111 2.4157152, 48.8689448 2.4323120, 48.8884591 2.3395904, 48.8884820 2.3395150, 48.8885325 2.3396602, 48.8763782 2.3511249, 48.8876946 2.3372076, 48.8877579 2.3373276, 48.8877595 2.3369938, 48.8886386 2.3354758, 48.8234293 2.3967334, 48.8942034 2.3810914, 48.8252511 2.3948100, 48.8202899 2.4154653, 48.8252218 2.4083487, 48.8197354 2.4061196, 48.8211243 2.4147002, 48.8128166 2.3573741, 48.8683157 2.3749138, 48.8766633 2.3487736, 48.8242461 2.3702515, 48.8295783 2.3215231, 48.8286359 2.3240592, 48.8287063 2.3240152, 48.8294636 2.3226190, 48.8092055 2.3867051, 48.8297718 2.3209936, 48.8839822 2.4045835, 48.8839888 2.4043985, 48.8857704 2.4118895, 48.8852904 2.3348276, 48.8851823 2.3346822, 48.8335329 2.3285371, 48.8662415 2.3650038, 48.8656822 2.3653043, 48.8851823 2.3346822, 48.8600274 2.3466734, 48.8600950 2.3462239, 48.8600742 2.3466402, 48.8603504 2.3485177, 48.8859746 2.3287964, 48.8865893 2.3280301, 48.8733106 2.3433422, 48.8735611 2.3437543, 48.8734527 2.3436472, 48.8629655 2.3713184, 48.8846416 2.3213187, 48.8830563 2.3256095, 48.8693907 2.3535655, 48.8595376 2.4336140, 48.8599506 2.4363732, 48.8600040 2.4366182, 48.8641842 2.3992653, 48.8703606 2.3083278, 48.8648257 2.3595883, 48.8654079 2.3819312, 48.8663494 2.3815935, 48.8566547 2.3800710, 48.8516939 2.3807266, 48.8643922 2.3495404, 48.8683806 2.3433504, 48.8670973 2.3631592, 48.8231458 2.3268700, 48.8199183 2.3380671, 48.8171751 2.3369486, 48.8175685 2.3394054, 48.8175808 2.3393902, 48.8175808 2.3394171, 48.8181659 2.3418791, 48.8182696 2.3347290, 48.8182712 2.3347477, 48.8182823 2.3347308, 48.8183342 2.3350779, 48.8184499 2.3420464, 48.8184554 2.3420617, 48.8184623 2.3420406, 48.8185163 2.3421336, 48.8196431 2.3385536, 48.8197525 2.3387109, 48.8617926 2.3492934, 48.8620495 2.3487209, 48.8628407 2.3491265, 48.8629736 2.3479786, 48.8619800 2.3485609, 48.8628796 2.3489660, 48.8630403 2.3482744, 48.8628009 2.3480997, 48.8627989 2.3483063, 48.8627991 2.3482199, 48.8627203 2.3480392, 48.8751609 2.3444855, 48.8750074 2.3444806, 48.8641003 2.3627116, 48.8828352 2.3765207, 48.8617645 2.3674250, 48.8897291 2.3636034, 48.8896905 2.3635926, 48.8896668 2.3635878, 48.8895964 2.3636456, 48.8893767 2.3636011, 48.8895977 2.3633796, 48.8895444 2.3633500, 48.8895308 2.3633411, 48.8895191 2.3633352, 48.8895532 2.3635667, 48.8894682 2.3635428, 48.8894072 2.3632896, 48.8893704 2.3632703, 48.8893256 2.3632449, 48.8892789 2.3632144, 48.8894359 2.3633414, 48.8893282 2.3635031, 48.8892933 2.3634890, 48.8892426 2.3634628, 48.8891985 2.3634441, 48.8892165 2.3631809, 48.8891690 2.3631555, 48.8535488 2.3673835, 48.8522736 2.3601056, 48.8532920 2.3672601, 48.8532580 2.3674767, 48.8537757 2.3672319, 48.8419523 2.3375746, 48.8544403 2.3837698, 48.8544403 2.3837698, 48.8463385 2.3740485, 48.8483797 2.3742370, 48.8485977 2.3744032, 48.8522022 2.3713690, 48.8464155 2.3740530, 48.8506019 2.3893866, 48.8503847 2.3823043, 48.8444318 2.3735608, 48.8445009 2.3736511, 48.8446338 2.3733005, 48.8446070 2.3751280, 48.8445102 2.3736639, 48.8447079 2.3737292, 48.8447160 2.3739231, 48.8450073 2.3739258, 48.8573790 2.3678305, 48.8239414 2.3680343, 48.8445153 2.3737159, 48.8446032 2.3738201, 48.8446450 2.3738785, 48.8447752 2.3739871, 48.8447134 2.3739638, 48.8444681 2.3736567, 48.8445529 2.3737647, 48.8444302 2.3736095, 48.8144474 2.3969105, 48.8144463 2.3967124, 48.8631933 2.3689292, 48.8611084 2.3743800, 48.8448311 2.3740656, 48.8448219 2.3740530, 48.8448942 2.3741491, 48.8448261 2.3740587, 48.8447889 2.3740060, 48.8448617 2.3741515, 48.8896650 2.3424480, 48.8447104 2.3739153, 48.8443836 2.3735489, 48.8445893 2.3737652, 48.8446705 2.3738636, 48.8446761 2.3738713, 48.8444202 2.3735448, 48.8444246 2.3735509, 48.8445053 2.3736572, 48.8445919 2.3737688, 48.8445863 2.3737611, 48.8446735 2.3738677, 48.8447134 2.3739194, 48.8447517 2.3740155, 48.8448224 2.3741010, 48.8443390 2.3734955, 48.8443360 2.3734909, 48.8445960 2.3737746, 48.8443511 2.3734509, 48.8443483 2.3734582, 48.8447815 2.3739957, 48.8444707 2.3733511, 48.8445323 2.3732377, 48.8444767 2.3733377, 48.8445355 2.3732292, 48.8445092 2.3732773, 48.8444631 2.3732583, 48.8445327 2.3733058, 48.8445449 2.3732803, 48.8446044 2.3732598, 48.8447482 2.3732253, 48.8446943 2.3731640, 48.8447169 2.3731845, 48.8445263 2.3761823, 48.8312476 2.3692666, 48.8444816 2.3761204, 48.8445346 2.3760235, 48.8445961 2.3732955, 48.8446065 2.3733139, 48.8446283 2.3733451, 48.8446402 2.3735620, 48.8446591 2.3733839, 48.8446805 2.3734846, 48.8446179 2.3733302, 48.8446445 2.3733655, 48.8446704 2.3735061, 48.8446551 2.3735342, 48.8446926 2.3734668, 48.8450779 2.3736414, 48.8451143 2.3736919, 48.8443447 2.3759506, 48.8281916 2.3122933, 48.8282070 2.3117648, 48.8535973 2.3809063, 48.8536026 2.3810610, 48.8441877 2.3757551, 48.8441009 2.3757948, 48.8445591 2.3761152, 48.8441527 2.3757164, 48.8441754 2.3757451, 48.8426504 2.3095741, 48.8420957 2.3089255, 48.8442550 2.3755706, 48.8446686 2.3766360, 48.8446781 2.3764958, 48.8445170 2.3764583, 48.8448859 2.3759694, 48.8449487 2.3739980, 48.8449928 2.3739163, 48.8449724 2.3739506, 48.8450012 2.3738957, 48.8449604 2.3739764, 48.8450134 2.3738702, 48.8680698 2.3899407, 48.8681500 2.3898597, 48.8303091 2.3336374, 48.8412459 2.3068354, 48.8712514 2.3641666, 48.8649850 2.3604913, 48.8704879 2.3220781, 48.8332821 2.3158571, 48.8709890 2.3479479, 48.8436206 2.3752166, 48.8436173 2.3752251, 48.8436359 2.3751950, 48.8437276 2.3753091, 48.8436878 2.3752590, 48.8437167 2.3753250, 48.8623527 2.3647493, 48.8317988 2.3146939, 48.8363713 2.3098813, 48.8279324 2.3131669, 48.8689869 2.3342909, 48.8576761 2.3645851, 48.8606314 2.3676180, 48.8564706 2.3645354, 48.8576353 2.3645889, 48.8850525 2.3540917, 48.8886275 2.3555669, 48.8903858 2.3548347, 48.8855984 2.3533378, 48.8598582 2.3787067, 48.8699759 2.3529531, 48.8725685 2.3562951, 48.8725936 2.3563087, 48.8535289 2.3331881, 48.8449301 2.3739756, 48.8449418 2.3739540, 48.8449538 2.3739282, 48.8449742 2.3738939, 48.8449826 2.3738733, 48.8449948 2.3738478, 48.8451877 2.3735534, 48.8451904 2.3735485, 48.8548435 2.3848755, 48.8518309 2.3899285, 48.8583332 2.3023009, 48.8583373 2.3023739, 48.8828334 2.3229752, 48.8833822 2.3256632, 48.8826084 2.3240414, 48.8835815 2.3265373, 48.8835817 2.3266914, 48.8824805 2.3211770, 48.8835254 2.3263619, 48.8828636 2.3231025, 48.8827940 2.3228693, 48.8834259 2.3258829, 48.8687194 2.3547308, 48.8658643 2.3584113, 48.8677169 2.3546846, 48.8689009 2.3537616, 48.8694294 2.3523136, 48.8658564 2.3574132, 48.8612331 2.3307752, 48.8541415 2.3560013, 48.8860844 2.3589401, 48.8902247 2.3593640, 48.8401363 2.4001170, 48.8404496 2.3992872, 48.8398389 2.3992986, 48.8394956 2.4004884, 48.8405835 2.4002799, 48.8404087 2.3999123, 48.8397070 2.3995035, 48.8398157 2.3975076, 48.8398257 2.3985490, 48.8400601 2.4003270, 48.8401629 2.4003641, 48.8409900 2.4007056, 48.8299153 2.3773597, 48.8299261 2.3774748, 48.8299421 2.3774600, 48.8296335 2.3759156, 48.8282607 2.3783933, 48.8600151 2.3100847, 48.8762107 2.3687437, 48.8601631 2.3908290, 48.8595266 2.3864960, 48.8623200 2.3438199, 48.8626919 2.3869432, 48.8620563 2.3875237, 48.8620909 2.3845968, 48.8624135 2.3851899, 48.8623980 2.3859094, 48.8600077 2.3895038, 48.8594496 2.3869170, 48.8605216 2.3863150, 48.8620047 2.3852499, 48.8627281 2.3878662, 48.8467826 2.3409996, 48.8772155 2.3697281, 48.8765530 2.3690690, 48.8467457 2.3410229, 48.8771466 2.3700908, 48.8732101 2.3820509, 48.8733593 2.3819219, 48.8733000 2.3816711, 48.8630437 2.3604149, 48.8650075 2.3653036, 48.8600891 2.3646927, 48.8583660 2.3645524, 48.8567335 2.3567289, 48.8560932 2.3590656, 48.8560939 2.3585197, 48.8566017 2.3566308, 48.8561161 2.3584293, 48.8579380 2.3579572, 48.8564583 2.3573913, 48.8567706 2.3570574, 48.8595930 2.3571391, 48.8599783 2.3569074, 48.8613481 2.3581776, 48.8730269 2.3919427, 48.8729574 2.3920259, 48.8694893 2.3893132, 48.8679406 2.3889754, 48.8618290 2.3836224, 48.8564670 2.3064503, 48.8252015 2.3720127, 48.8401255 2.3884289, 48.8371629 2.3559666, 48.8370058 2.3559801, 48.8388147 2.3501978, 48.8389478 2.3497359, 48.8388582 2.3488365, 48.8548501 2.3118920, 48.8387390 2.3509155, 48.8387938 2.3509383, 48.8855727 2.3422510, 48.8808077 2.3403285, 48.8839199 2.3413796, 48.8812268 2.3423773, 48.8808370 2.3417368, 48.8836545 2.3395453, 48.8843804 2.3398419, 48.8843202 2.3398406, 48.8843804 2.3398419, 48.8843202 2.3398406, 48.8844765 2.3412725, 48.8402311 2.4086013, 48.8376230 2.4021417, 48.8407818 2.4096772, 48.8651501 2.3948352, 48.8651105 2.3957767, 48.8635932 2.3898275, 48.8651435 2.3951688, 48.8636186 2.3975684, 48.8634626 2.3893152, 48.8651701 2.3946452, 48.8573584 2.3900374, 48.8585706 2.3901107, 48.8639508 2.3319640, 48.8862870 2.3823994, 48.8874784 2.3887103, 48.8760837 2.3277635, 48.8749312 2.3828157, 48.8764857 2.3876376, 48.8771990 2.3822018, 48.8628568 2.3707845, 48.8300104 2.3786246, 48.8281934 2.3156122, 48.8442718 2.3761782, 48.8442651 2.3761698, 48.8442740 2.3761812, 48.8443123 2.3762402, 48.8442539 2.3763464, 48.8442529 2.3763477, 48.8443572 2.3762887, 48.8443640 2.3762970, 48.8441605 2.3762281, 48.8444502 2.3764071, 48.8444615 2.3764263, 48.8440682 2.3761184, 48.8441202 2.3759946, 48.8441807 2.3760669, 48.8440685 2.3761131, 48.8440867 2.3759485, 48.8441785 2.3760638, 48.8440645 2.3761132, 48.8440833 2.3759433, 48.8441718 2.3760554, 48.8442145 2.3761030, 48.8442166 2.3761095, 48.8296139 2.3219250, 48.8304000 2.3193922, 48.8481962 2.3678021, 48.8516840 2.3693927, 48.8520819 2.3766707, 48.8278615 2.3321030, 48.8436264 2.3757613, 48.8437340 2.3759013, 48.8438437 2.3760391, 48.8692648 2.3715171, 48.8682208 2.4167516, 48.8314561 2.3292848, 48.8752689 2.3614142, 48.8771084 2.3468708, 48.8319553 2.3603847, 48.8314561 2.3292848, 48.8594097 2.3477231, 48.8669174 2.3761410, 48.8510616 2.4184055, 48.8510794 2.4226501, 48.8444897 2.3608253, 48.8503953 2.3596248, 48.8601518 2.3613994, 48.8555654 2.3715734, 48.8429759 2.3300912, 48.8311641 2.3746022, 48.8556688 2.3718087, 48.8555912 2.3708780, 48.8604624 2.3615398, 48.8650696 2.3670244, 48.8461537 2.3193328, 48.8463990 2.3190925, 48.8438479 2.4327852, 48.8444284 2.4343526, 48.8329258 2.3444477, 48.8355841 2.3450105, 48.8320253 2.3443178, 48.8347588 2.3450702, 48.8343258 2.3447659, 48.8351664 2.3449034, 48.8599362 2.3718330, 48.8325489 2.3467144, 48.8306236 2.3486051, 48.8605056 2.4091099, 48.8827391 2.3593305, 48.8827295 2.3591747, 48.8815415 2.3580405, 48.8821155 2.3583738, 48.8809060 2.3580751, 48.8822787 2.3588762, 48.8815054 2.3580226, 48.8808657 2.3580528, 48.8813749 2.3579541, 48.8818218 2.3582022, 48.8864163 2.3479153, 48.8228340 2.3442190, 48.8792265 2.4144788, 48.8675747 2.3757418, 48.8553071 2.3400609, 48.8543364 2.3407100, 48.8724483 2.3978125, 48.8328188 2.3708042, 48.8434798 2.3772051, 48.8440636 2.3761206, 48.8413530 2.3870229, 48.8223693 2.3285512, 48.8381417 2.4080920, 48.8915804 2.3366290, 48.8916215 2.3361250, 48.8915952 2.3364661, 48.8914800 2.3347586, 48.8532066 2.3427171, 48.8617153 2.3535720, 48.8615640 2.3414249, 48.8615860 2.3413149, 48.8586429 2.3422626, 48.8586994 2.3420105, 48.8623979 2.3404212, 48.8726150 2.3085132, 48.8832302 2.3617502, 48.8221180 2.3340140, 48.8237766 2.3324425, 48.8542855 2.3695398, 48.8551471 2.3705000, 48.8553697 2.3706003, 48.8556142 2.3707029, 48.8561815 2.3709781, 48.8594445 2.3529167, 48.8591317 2.3536104, 48.8590192 2.3535078, 48.8588660 2.3539865, 48.8585639 2.3548381, 48.8583304 2.3555074, 48.8580893 2.3567059, 48.8547706 2.3693854, 48.8485317 2.3720297, 48.8479392 2.3716919, 48.8512913 2.3846401, 48.8697567 2.3054528, 48.8508923 2.3667617, 48.8486306 2.3661547, 48.8505540 2.3615036, 48.8564994 2.3613178, 48.8493766 2.3632620, 48.8502767 2.3637175, 48.8524433 2.3670399, 48.8635229 2.3723149, 48.8649433 2.3721825, 48.8638646 2.3721728, 48.8641035 2.3716585, 48.8642687 2.3715020, 48.8648826 2.3722247, 48.8216001 2.3687828, 48.8231325 2.3752839, 48.8958355 2.3855158, 48.8626340 2.3735551, 48.8335131 2.3334913, 48.8739741 2.3435358, 48.8259662 2.4064704, 48.8403736 2.3271606, 48.8656139 2.3307730, 48.8477014 2.3712877, 48.8473632 2.3715330, 48.8463104 2.3716432, 48.8770046 2.3806765, 48.8756279 2.3817035, 48.8768554 2.3805574, 48.8774490 2.3940074, 48.8780896 2.3813489, 48.8781515 2.3839102, 48.8906307 2.3455734, 48.8917825 2.3347744, 48.8449425 2.3799863, 48.8594624 2.3504272, 48.8594253 2.3504176, 48.8596944 2.3507464, 48.8596271 2.3507023, 48.8617511 2.3539414, 48.8614567 2.3706723, 48.8599922 2.3487693, 48.8693361 2.3640955, 48.8691274 2.3627458, 48.8708082 2.3615897, 48.8705736 2.3619015, 48.8658538 2.3655766, 48.8652650 2.3684139, 48.8693033 2.3625870, 48.8672446 2.3647755, 48.8704997 2.3615121, 48.8817435 2.3464114, 48.8688333 2.3457733, 48.8703284 2.3420423, 48.8703606 2.3464059, 48.8860226 2.3762694, 48.8850777 2.3783225, 48.8850559 2.3782723, 48.8850465 2.3782113, 48.8718474 2.3654888, 48.8858174 2.3783666, 48.8658307 2.3705921, 48.8659653 2.3699783, 48.8749571 2.3636986, 48.8849226 2.3788960, 48.8855374 2.3800532, 48.8644404 2.3701571, 48.8710872 2.3444600, 48.8704576 2.3411278, 48.8699249 2.3402179, 48.8349860 2.4061688, 48.8306439 2.3312093, 48.8594125 2.3293427, 48.8292677 2.3193582, 48.8287203 2.3220138, 48.8449568 2.3747549, 48.8451259 2.3744392, 48.8449876 2.3747038, 48.8450440 2.3745968, 48.8447297 2.3752143, 48.8447565 2.3751614, 48.8448742 2.3749114, 48.8449295 2.3748091, 48.8448581 2.3749355, 48.8447593 2.3751216, 48.8447875 2.3750707, 48.8450717 2.3745435, 48.8167151 2.3671375, 48.8161649 2.3675490, 48.8119248 2.3561317, 48.8153783 2.3446967, 48.8752683 2.3407374, 48.8757756 2.3401123, 48.8756987 2.3403004, 48.8751025 2.3398511, 48.8746488 2.3396891, 48.8447544 2.3762888, 48.8313873 2.3097026, 48.8213574 2.3274014, 48.8314163 2.3096789, 48.8232135 2.3664876, 48.8748057 2.3637824, 48.8851028 2.3543503, 48.8206840 2.3682632, 48.8231584 2.3665100, 48.8320392 2.3993230, 48.8385029 2.4114830, 48.8536262 2.3635442, 48.8558668 2.3824226, 48.8564061 2.4121970, 48.8705719 2.3773252, 48.8748146 2.3638072, 48.8760037 2.3422762, 48.8773985 2.3683454, 48.8781781 2.3958424, 48.8842980 2.3540450, 48.8850825 2.3542503, 48.8851267 2.3540155, 48.8854793 2.3797059, 48.8907289 2.3980951, 48.8549627 2.4070820, 48.8187522 2.3574133, 48.8406602 2.3507960, 48.8550043 2.4071640, 48.8872599 2.3719956, 48.8668861 2.3572799, 48.8610669 2.4045762, 48.8649084 2.3620088, 48.8673897 2.3879518, 48.8659235 2.3932609, 48.8544217 2.3746388, 48.8550088 2.4050897, 48.8695088 2.3483031, 48.8773250 2.3403083, 48.8775063 2.3403954, 48.8670021 2.3569496, 48.8693625 2.3483101, 48.8485726 2.3912061, 48.8610141 2.4042324, 48.8674578 2.3745478, 48.8590059 2.3676176, 48.8205678 2.3643611, 48.8520570 2.3143723, 48.8232672 2.3541384, 48.8572660 2.3713476, 48.8545235 2.3700770, 48.8329619 2.3629285, 48.8775588 2.3651282, 48.8692789 2.3666901, 48.8691873 2.3664852, 48.8946214 2.3517900, 48.8887047 2.3596247, 48.8839030 2.3407018, 48.8954139 2.3519858, 48.8796752 2.3740227, 48.8742452 2.3603071, 48.8746348 2.3605034, 48.8821684 2.3627365, 48.8826588 2.3638640, 48.8837031 2.3406970, 48.8913094 2.3454741, 48.8799685 2.3739865, 48.8915844 2.3455833, 48.8823855 2.3623470, 48.8828839 2.3642384, 48.8951071 2.3518301, 48.8955773 2.3520259, 48.8442294 2.3757943, 48.8436719 2.3758019, 48.8440856 2.3759417, 48.8439104 2.3759424, 48.8439655 2.3759728, 48.8443004 2.3762019, 48.8528185 2.3645438, 48.8448544 2.3749558, 48.8719260 2.3102630, 48.8630214 2.3640511, 48.8640928 2.3321663, 48.8592104 2.3400974, 48.8597935 2.3403970, 48.8427363 2.3286605, 48.8449380 2.3737375, 48.8449484 2.3737559, 48.8449767 2.3737522, 48.8449598 2.3737722, 48.8449864 2.3738075, 48.8450010 2.3738259, 48.8448979 2.3737329, 48.8448857 2.3737532, 48.8449554 2.3737201, 48.8450172 2.3735937, 48.8450649 2.3736418, 48.8450644 2.3736409, 48.8448421 2.3738376, 48.8448310 2.3738617, 48.8448733 2.3737786, 48.8448576 2.3738079, 48.8449702 2.3737871, 48.8449932 2.3737736, 48.8438965 2.3753777, 48.8439282 2.3755614, 48.8440220 2.3753706, 48.8438635 2.3754833, 48.8438861 2.3755101, 48.8440085 2.3755014, 48.8440161 2.3754901, 48.8439028 2.3753677, 48.8439104 2.3753565, 48.8440022 2.3755113, 48.8441336 2.3755074, 48.8776821 2.3953962, 48.8804167 2.3964979, 48.8812782 2.3962880, 48.8813589 2.3958602, 48.8765827 2.3675746, 48.8766055 2.3676090, 48.8766197 2.3676176, 48.8772530 2.3684287, 48.8447776 2.3756968, 48.8446850 2.3759075, 48.8447591 2.3757420, 48.8447003 2.3760676, 48.8441447 2.3755323, 48.8440718 2.3754425, 48.8438741 2.3751769, 48.8439250 2.3752469, 48.8439385 2.3752630, 48.8439323 2.3752557, 48.8621852 2.3496314, 48.8618270 2.3436366, 48.8623073 2.3491106, 48.8614893 2.3447073, 48.8616006 2.3440663, 48.8617504 2.3439932, 48.8621089 2.3439580, 48.8636317 2.4038600, 48.8306596 2.3335092, 48.8310287 2.3304393, 48.8300416 2.3298058, 48.8299849 2.3284482, 48.8302061 2.3311185, 48.8448013 2.3762128, 48.8448282 2.3762886, 48.8447899 2.3762357, 48.8439833 2.3756501, 48.8434407 2.3750642, 48.8476121 2.3650289, 48.8436642 2.3752189, 48.8437356 2.3750057, 48.8437871 2.3750710, 48.8436491 2.3749761, 48.8780001 2.3316352, 48.8444269 2.3762091, 48.8444743 2.3763016, 48.8444379 2.3762213, 48.8443389 2.3759336, 48.8445318 2.3762779, 48.8447090 2.3761010, 48.8439638 2.4098959, 48.8756834 2.3414330, 48.8555642 2.4099582, 48.8693111 2.4053516, 48.8693458 2.4054393, 48.8700399 2.3997726, 48.8759391 2.3978752, 48.8778074 2.3962431, 48.8783525 2.3970152, 48.8784425 2.4031985, 48.8792691 2.3969644, 48.8795219 2.3994918, 48.8795356 2.3982191, 48.8796083 2.3963611, 48.8802166 2.3988280, 48.8803390 2.3964590, 48.8443887 2.3755555, 48.8623709 2.3444850, 48.8633792 2.3558935, 48.8637696 2.3501522, 48.8640694 2.3487228, 48.8638723 2.3499270, 48.8639378 2.3501698, 48.8638026 2.3501670, 48.8572951 2.3046553, 48.8576872 2.3057939, 48.8589015 2.3030720, 48.8594978 2.3029531, 48.8598304 2.3026176, 48.8602954 2.3025663, 48.8662018 2.3313095, 48.8330591 2.3871082, 48.8436157 2.3747404, 48.8698623 2.3116804, 48.8696540 2.3110375, 48.8697198 2.3111950, 48.8698251 2.3102577, 48.8632477 2.3671944, 48.8633251 2.3670313, 48.8633428 2.3671653, 48.8632300 2.3670604, 48.8549821 2.3622680, 48.8547342 2.3629269, 48.8552955 2.3633576, 48.8548651 2.3630193, 48.8551540 2.3632490, 48.8548528 2.3625713, 48.8451863 2.3738692, 48.8451619 2.3738380, 48.8450340 2.3738405, 48.8447572 2.3734865, 48.8443787 2.3734018, 48.8688251 2.3593164, 48.8692755 2.3558919, 48.8691340 2.3562998, 48.8693693 2.3570835, 48.8692173 2.3571695, 48.8691511 2.3577313, 48.8691281 2.3578755, 48.8689604 2.3584706, 48.8689702 2.3588895, 48.8689287 2.3590872, 48.8685604 2.3602261, 48.8685362 2.3603611, 48.8680882 2.3603206, 48.8682917 2.3606483, 48.8642783 2.3600268, 48.8684220 2.3611882, 48.8692538 2.3562991, 48.8693027 2.3575225, 48.8692202 2.3580262, 48.8645758 2.3572931, 48.8609265 2.3628538, 48.8260042 2.3691063, 48.8241984 2.3723240, 48.8244851 2.3719243, 48.8442620 2.3733461, 48.8649193 2.3331647, 48.8586241 2.3268636, 48.8586513 2.3287866, 48.8444382 2.3732758, 48.8706320 2.3397734, 48.8445114 2.3732270, 48.8649934 2.3332593, 48.8647290 2.3739545, 48.8648109 2.3746869, 48.8648545 2.3758564, 48.8644737 2.3719749, 48.8646237 2.3732155, 48.8645555 2.3732984, 48.8649513 2.3745102, 48.8647943 2.3761841, 48.8636954 2.3808561, 48.8635869 2.3802750, 48.8633917 2.3802791, 48.8633433 2.3797454, 48.8631587 2.3793438, 48.8644597 2.3719159, 48.8643061 2.3788042, 48.8637933 2.3810877, 48.8635949 2.3806268, 48.8633857 2.3798403, 48.8648431 2.3759306, 48.8648448 2.3775618, 48.8645407 2.3775170, 48.8646077 2.3788387, 48.8635552 2.3805450, 48.8632201 2.3794764, 48.8624456 2.3781632, 48.8622653 2.3777799, 48.8652720 2.3047821, 48.8749149 2.3133925, 48.8735467 2.3093945, 48.8758618 2.3159307, 48.8758161 2.3159384, 48.8805046 2.3152372, 48.8788279 2.3167346, 48.8769798 2.3200190, 48.8771549 2.3199537, 48.8766332 2.3203922, 48.8451240 2.3820686, 48.8450821 2.3814682, 48.8403425 2.3810282, 48.8399332 2.3814668, 48.8395951 2.3820031, 48.8388480 2.3877154, 48.8394060 2.3878024, 48.8451080 2.3813725, 48.8451433 2.3812992, 48.8457402 2.3799671, 48.8457773 2.3798938, 48.8447045 2.3734272, 48.8649231 2.3755432, 48.8595100 2.3674754, 48.8441230 2.4056565, 48.8333281 2.4112207, 48.8552537 2.3301874, 48.8577124 2.3819871, 48.8402845 2.4069021, 48.8832938 2.3851138, 48.8923410 2.3650140, 48.8852405 2.3310874, 48.8941194 2.3721536, 48.8291785 2.3551882, 48.8290035 2.3552444, 48.8348835 2.3592961, 48.8900110 2.3387128, 48.8900257 2.3387891, 48.8317024 2.3886084, 48.8318868 2.3885497, 48.8322620 2.3887692, 48.8331685 2.3836267, 48.8352499 2.3810305, 48.8311232 2.3152438, 48.8837032 2.3600741, 48.8839451 2.3602000, 48.8838722 2.3603502, 48.8838141 2.3598582, 48.8607263 2.3528287, 48.8456669 2.3518360, 48.8776751 2.3384166, 48.8608801 2.3523995, 48.8609620 2.3524085, 48.8445095 2.3768246, 48.8536032 2.3639797, 48.8541085 2.3634886, 48.8549629 2.3625793, 48.8657093 2.4162687, 48.8575368 2.3603524, 48.8440551 2.3807061, 48.8430706 2.3836730, 48.8432866 2.3832660, 48.8449481 2.3798228, 48.8452868 2.3790952, 48.8445910 2.3819733, 48.8655075 2.4161999, 48.8655108 2.4162000, 48.8239209 2.3645800, 48.8388348 2.3812326, 48.8555997 2.3574881, 48.8557109 2.3601000, 48.8557205 2.3600557, 48.8559022 2.3548777, 48.8562284 2.3535332, 48.8566490 2.3537368, 48.8567415 2.3537794, 48.8573155 2.3512430, 48.8573892 2.3512851, 48.8670854 2.3474776, 48.8669398 2.3481896, 48.8668830 2.3485533, 48.8676631 2.3464599, 48.8677333 2.3439283, 48.8676351 2.3439727, 48.8675989 2.3439920, 48.8675084 2.3440305, 48.8674408 2.3440582, 48.8831728 2.3270155, 48.8795621 2.3271373, 48.8795128 2.3268768, 48.8788275 2.3271308, 48.8797527 2.3288634, 48.8808405 2.3282176, 48.8822137 2.3290906, 48.8819370 2.3295478, 48.8705497 2.3546686, 48.8761690 2.3558059, 48.8702350 2.3530359, 48.8240719 2.3723725, 48.8736347 2.3515347, 48.8731747 2.3169165, 48.8614630 2.3534403, 48.8740824 2.3480430, 48.8743112 2.3543212, 48.8741593 2.3567202, 48.8683026 2.3256832, 48.8685365 2.3254094, 48.8684636 2.3254367, 48.8684095 2.3254570, 48.8683489 2.3254707, 48.8641938 2.3374224, 48.8652237 2.3379487, 48.8628504 2.3436130, 48.8749931 2.3353018, 48.8737610 2.3354031, 48.8737867 2.3354992, 48.8732975 2.3352479, 48.8731229 2.3352463, 48.8725232 2.3350346, 48.8725746 2.3346405, 48.8724300 2.3336488, 48.8706901 2.3335642, 48.8708529 2.3346161, 48.8705391 2.3342562, 48.8522115 2.3547191, 48.8520094 2.3545532, 48.8522699 2.3547676, 48.8504626 2.3597749, 48.8838575 2.3590700, 48.8839295 2.3590810, 48.8742021 2.3591001, 48.8446387 2.3750579, 48.8262202 2.3382130, 48.8262166 2.3382475, 48.8792198 2.3491360, 48.8779092 2.3447827, 48.8774858 2.3486102, 48.8329259 2.3872524, 48.8445074 2.3734518, 48.8445191 2.3734302, 48.8445311 2.3734044, 48.8445515 2.3733701, 48.8445599 2.3733495, 48.8445721 2.3733240, 48.8445891 2.3732909, 48.8446832 2.3734265, 48.8443265 2.4342146, 48.8471462 2.4348532, 48.8450978 2.3822089, 48.8448679 2.3802043, 48.8311618 2.3751930, 48.8300153 2.3786454, 48.8296752 2.3789794, 48.8296788 2.3789764, 48.8299763 2.3786976, 48.8320219 2.3789968, 48.8316352 2.3782454, 48.8837715 2.3432241, 48.8837299 2.3429552, 48.8835817 2.3417847, 48.8835570 2.3419972, 48.8836005 2.3422276, 48.8836173 2.3423051, 48.8831290 2.3419110, 48.8681430 2.3350969, 48.8333790 2.3696370, 48.8344179 2.3677184, 48.8343314 2.3678570, 48.8753242 2.3953317, 48.8775045 2.3949738, 48.8802220 2.3940369, 48.8819840 2.3934693, 48.8296787 2.3771822, 48.8296787 2.3771822, 48.8314203 2.3778776, 48.8312382 2.3775605, 48.8314596 2.3779526, 48.8316713 2.3781679, 48.8279603 2.3795362, 48.8277638 2.3796985, 48.8284661 2.3790224, 48.8293607 2.3781941, 48.8804820 2.3161857, 48.8266297 2.3818892, 48.8798414 2.4160815, 48.8293770 2.3829863, 48.8245921 2.3766187, 48.8261311 2.3777406, 48.8344427 2.3693749, 48.8336992 2.3704367, 48.8335806 2.3701245, 48.8337227 2.3700220, 48.8340969 2.3696890, 48.8347669 2.3695324, 48.8346009 2.3677252, 48.8346813 2.3679582, 48.8345736 2.3676408, 48.8347821 2.3682595, 48.8347111 2.3680593, 48.8346577 2.3678932, 48.8798012 2.3271005, 48.8804248 2.3287844, 48.8831828 2.3269056, 48.8832070 2.3272583, 48.8832195 2.3272894, 48.8318827 2.3891652, 48.8461444 2.3837384, 48.8410868 2.3302507, 48.8753041 2.3602466, 48.8831042 2.3348216, 48.8252160 2.3417519, 48.8224474 2.3475967, 48.8229613 2.3467212, 48.8835388 2.3413290, 48.8838716 2.3395954, 48.8838138 2.3391313, 48.8847210 2.3470548, 48.8849252 2.3473840, 48.8848123 2.3473655, 48.8602214 2.3342707, 48.8593317 2.3773766, 48.8566043 2.3732320, 48.8572868 2.3732076, 48.8554057 2.3739758, 48.8701256 2.3277913, 48.8701696 2.3300102, 48.8444005 2.3500527, 48.8443580 2.3502276, 48.8536657 2.3100878, 48.8535986 2.3134446, 48.8102151 2.3851854, 48.8106719 2.3846555, 48.8106790 2.3846340, 48.8116891 2.3623497, 48.8577963 2.3582331, 48.8134837 2.3851524, 48.8151174 2.3867807, 48.8745790 2.3956079, 48.8450156 2.4325540, 48.8739019 2.3254868, 48.8741849 2.3247297, 48.8846734 2.3246756, 48.8562253 2.3674121, 48.8427133 2.3061499, 48.8137546 2.3903590, 48.8136613 2.3903332, 48.8108170 2.3908827, 48.8117259 2.3914690, 48.8115168 2.3910048, 48.8111951 2.3915545, 48.8108553 2.3908262, 48.8108412 2.3909316, 48.8438388 2.3063057, 48.8436234 2.3065874, 48.8448484 2.3106051, 48.8538867 2.3003181, 48.8539092 2.3002823, 48.8490569 2.3926630, 48.8450006 2.3494675, 48.8445329 2.3520712, 48.8534208 2.3432797, 48.8533254 2.3427404, 48.8533294 2.3426761, 48.8534591 2.3433518, 48.8532864 2.3430482, 48.8528242 2.3430244, 48.8525204 2.3429180, 48.8524241 2.3429917, 48.8528802 2.3428782, 48.8526538 2.3430082, 48.8512725 2.3428163, 48.8512050 2.3428663, 48.8195003 2.3649063, 48.8196076 2.3652124, 48.8198885 2.3653297, 48.8283675 2.3564069, 48.8571582 2.3595867, 48.8571463 2.3596101, 48.8570378 2.3598167, 48.8567007 2.3604839, 48.8563782 2.3611155, 48.8576118 2.3586694, 48.8576365 2.3584032, 48.8578041 2.3579820, 48.8578694 2.3580283, 48.8724028 2.3666041, 48.8702362 2.3714708, 48.8632512 2.3153672, 48.8219138 2.3504264, 48.8395785 2.3558424, 48.8706336 2.3498547, 48.8567851 2.3809084, 48.8693088 2.3478663, 48.8447117 2.3549353, 48.8452095 2.3545995, 48.8262878 2.3419988, 48.8263094 2.3419156, 48.8657430 2.3542234, 48.8478481 2.4256890, 48.8558055 2.3475517, 48.8817724 2.3397911, 48.8817799 2.3397884, 48.8212280 2.3639046, 48.8701365 2.3192081, 48.8743940 2.3702342, 48.8737710 2.3650753, 48.8756496 2.3677839, 48.8772713 2.3614386, 48.8751455 2.3631222, 48.8755059 2.3728362, 48.8783558 2.3707742, 48.8756732 2.3673196, 48.8543020 2.4055298, 48.8685946 2.3977648, 48.8613910 2.3424070, 48.8513497 2.3992002, 48.8570619 2.4299797, 48.8570573 2.4299248, 48.8570996 2.4302017, 48.8571145 2.4302952, 48.8572279 2.4308897, 48.8756307 2.3487960, 48.8755394 2.3493209, 48.8555276 2.3843963, 48.8125831 2.3860618, 48.8729499 2.3807339, 48.8102762 2.3855782, 48.8105023 2.3856854, 48.8103893 2.3857713, 48.8103539 2.3856640, 48.8105376 2.3859644, 48.8104105 2.3857284, 48.8746689 2.3319421, 48.8436002 2.3079842, 48.8432683 2.3065957, 48.8430309 2.3065562, 48.8274926 2.3487405, 48.8437666 2.3085434, 48.8441466 2.3088151, 48.8444332 2.3065143, 48.8438207 2.3063937, 48.8455743 2.3050037, 48.8461870 2.3049257, 48.8462738 2.3052530, 48.8625088 2.3482422, 48.8625379 2.3480954, 48.8625575 2.3479520, 48.8458165 2.3050020, 48.8680842 2.3631278, 48.8684609 2.3540316, 48.8647858 2.3644150, 48.8684000 2.3633800, 48.8834570 2.3696140, 48.8437221 2.3070451, 48.8441621 2.3083292, 48.8876907 2.3895732, 48.8266042 2.3466144, 48.8275687 2.3471784, 48.8275994 2.3480254, 48.8454729 2.3086637, 48.8144235 2.3906636, 48.8144235 2.3907709, 48.8143599 2.3907709, 48.8143529 2.3906422, 48.8144376 2.3905993, 48.8144659 2.3908997, 48.8143034 2.3909426, 48.8140844 2.3901701, 48.8137523 2.3905778, 48.8140067 2.3900199, 48.8137382 2.3905993, 48.8559553 2.3863880, 48.8278379 2.3502058, 48.8269175 2.3384014, 48.8787347 2.3280864, 48.8855774 2.3217107, 48.8784585 2.3255482, 48.8720369 2.3071577, 48.8800085 2.3259822, 48.8751618 2.3513606, 48.8818819 2.3836565, 48.8822355 2.3824751, 48.8683063 2.3859255, 48.8827284 2.3435858, 48.8860573 2.3439762, 48.8621822 2.3530287, 48.8521250 2.3408653, 48.8569072 2.3367906, 48.8694215 2.3127592, 48.8578391 2.3144195, 48.8373693 2.3188599, 48.8374050 2.3188363, 48.8463406 2.3116507, 48.8463539 2.3113771, 48.8462665 2.3114696, 48.8462612 2.3115421, 48.8462603 2.3116333, 48.8462718 2.3113811, 48.8458826 2.3113275, 48.8458729 2.3115971, 48.8446258 2.3090469, 48.8457883 2.3026777, 48.8457139 2.3025793, 48.8455040 2.3023585, 48.8455447 2.3025035, 48.8455890 2.3026528, 48.8469667 2.3032763, 48.8454377 2.3027323, 48.8454459 2.3022688, 48.8455823 2.3030305, 48.8472088 2.3033281, 48.8464568 2.3019875, 48.8734250 2.3527847, 48.8731389 2.3531386, 48.8659051 2.3787988, 48.8582720 2.3546441, 48.8599253 2.3542896, 48.8514160 2.3746780, 48.8439111 2.3086168, 48.8212937 2.3464680, 48.8697633 2.3312541, 48.8737215 2.3871878, 48.8738051 2.3867270, 48.8751443 2.3924954, 48.8755381 2.3923668, 48.8726650 2.3293531, 48.8698417 2.3306990, 48.8706955 2.3281598, 48.8709492 2.3282127, 48.8708812 2.3281477, 48.8710932 2.3279935, 48.8711019 2.3282297, 48.8727210 2.3286580, 48.8715670 2.3280513, 48.8716018 2.3280558, 48.8716302 2.3279234, 48.8716624 2.3282815, 48.8717901 2.3283005, 48.8720480 2.3282979, 48.8722908 2.3280789, 48.8724179 2.3281232, 48.8722134 2.3283316, 48.8725187 2.3283618, 48.8722605 2.3300398, 48.8371175 2.3176252, 48.8592749 2.3675514, 48.8609320 2.3788190, 48.8462868 2.3031648, 48.8519034 2.3014932, 48.8522326 2.3019929, 48.8540350 2.3047642, 48.8543256 2.3047818, 48.8275500 2.3524043, 48.8275876 2.3526683, 48.8278715 2.3527270, 48.8704052 2.3401387, 48.8388440 2.3207879, 48.8390280 2.3211131, 48.8823803 2.3237133, 48.8804352 2.3250990, 48.8294004 2.3817559, 48.8403972 2.3213913, 48.8403571 2.3213304, 48.8386241 2.3197577, 48.8396202 2.3210806, 48.8396517 2.3217256, 48.8833129 2.3190225, 48.8395333 2.3217362, 48.8563599 2.3579757, 48.8404521 2.3210539, 48.8389198 2.3212686, 48.8399732 2.3214653, 48.8400287 2.3215280, 48.8301035 2.3774573, 48.8299756 2.3772643, 48.8299860 2.3773544, 48.8628510 2.3529726, 48.8726656 2.3088507, 48.8725589 2.3098007, 48.8722902 2.3086741, 48.8714166 2.3075089, 48.8724582 2.3096142, 48.8587657 2.3813608, 48.8575986 2.4327587, 48.8689074 2.3679772, 48.8719828 2.3769633, 48.8723539 2.3768689, 48.8729023 2.3796998, 48.8852247 2.3255576, 48.8298041 2.3771556, 48.8296201 2.3770601, 48.8406619 2.3213032, 48.8296593 2.3758784, 48.8296694 2.3758736, 48.8296788 2.3758677, 48.8296831 2.3759552, 48.8297667 2.3758043, 48.8732120 2.3625540, 48.8386298 2.3219231, 48.8815298 2.3367363, 48.8816686 2.3369081, 48.8817518 2.3367610, 48.8759920 2.3372262, 48.8760254 2.3369464, 48.8298111 2.3767330, 48.8298119 2.3768940, 48.8298579 2.3769853, 48.8298998 2.3770796, 48.8300754 2.3772372, 48.8301732 2.3771477, 48.8297607 2.3780065, 48.8387388 2.3212781, 48.8388521 2.3212540, 48.8388564 2.3212454, 48.8403375 2.3209860, 48.8403460 2.3209966, 48.8403536 2.3210067, 48.8644286 2.3530679, 48.8634234 2.3526364, 48.8583184 2.3520935, 48.8625162 2.3499548, 48.8625282 2.3499033, 48.8249641 2.3383036, 48.8725939 2.3370941, 48.8772970 2.3488717, 48.8774911 2.3492552, 48.8774769 2.3495261, 48.8783431 2.3528360, 48.8816257 2.3653592, 48.8653406 2.3655160, 48.8295393 2.3776698, 48.8291543 2.3776291, 48.8294434 2.3773641, 48.8295841 2.3772276, 48.8505710 2.3490338, 48.8508732 2.3491554, 48.8507085 2.3490872, 48.8507865 2.3491165, 48.8331438 2.3284598, 48.8631872 2.3879502, 48.8655063 2.3929854, 48.8686033 2.3957116, 48.8686190 2.3956965, 48.8793711 2.3210941, 48.8382373 2.3652401, 48.8388299 2.3633571, 48.8397555 2.3662914, 48.8400942 2.3634468, 48.8403120 2.3648539, 48.8599303 2.3365720, 48.8598950 2.3364823, 48.8776788 2.3937384, 48.8781216 2.3978103, 48.8792496 2.3964689, 48.8802586 2.3980397, 48.8786387 2.3945586, 48.8436968 2.4021337, 48.8566387 2.3564827, 48.8726909 2.3396328, 48.8731147 2.3396353, 48.8740775 2.3377311, 48.8831983 2.3305713, 48.8794635 2.3364478, 48.8353850 2.3628972, 48.8370232 2.3622198, 48.8597659 2.3358960, 48.8951172 2.3725920, 48.8379397 2.3650506, 48.8379585 2.3650722, 48.8380239 2.3651939, 48.8380447 2.3651672, 48.8383877 2.3652007, 48.8384018 2.3655347, 48.8384062 2.3652612, 48.8384238 2.3653183, 48.8384551 2.3651510, 48.8384739 2.3652084, 48.8384929 2.3652669, 48.8384934 2.3655317, 48.8385114 2.3655958, 48.8385309 2.3656570, 48.8385578 2.3654841, 48.8385789 2.3655450, 48.8385845 2.3665494, 48.8385979 2.3656088, 48.8386181 2.3653749, 48.8386308 2.3661219, 48.8386427 2.3633506, 48.8386885 2.3634769, 48.8386909 2.3635062, 48.8387358 2.3632837, 48.8387541 2.3633013, 48.8387822 2.3634428, 48.8388581 2.3633676, 48.8389332 2.3651791, 48.8389629 2.3631517, 48.8390993 2.3631337, 48.8391106 2.3648386, 48.8391445 2.3655514, 48.8391653 2.3649964, 48.8391988 2.3650253, 48.8392002 2.3647875, 48.8392099 2.3647704, 48.8392114 2.3665544, 48.8392247 2.3651040, 48.8392505 2.3651867, 48.8392515 2.3666710, 48.8392518 2.3666937, 48.8392555 2.3649865, 48.8392601 2.3649297, 48.8392702 2.3648899, 48.8392799 2.3648810, 48.8392807 2.3650667, 48.8393043 2.3651483, 48.8393341 2.3648242, 48.8393773 2.3670827, 48.8393798 2.3657486, 48.8393827 2.3652578, 48.8393842 2.3671094, 48.8393947 2.3651993, 48.8394038 2.3640802, 48.8394049 2.3652402, 48.8394107 2.3657521, 48.8394207 2.3652275, 48.8394369 2.3652148, 48.8394634 2.3647428, 48.8394643 2.3641381, 48.8394772 2.3657057, 48.8394999 2.3656317, 48.8395521 2.3656977, 48.8395918 2.3646635, 48.8396181 2.3662884, 48.8396559 2.3647327, 48.8396734 2.3643126, 48.8397463 2.3643773, 48.8397831 2.3642770, 48.8399110 2.3635198, 48.8399572 2.3634878, 48.8399651 2.3626670, 48.8399723 2.3631553, 48.8400918 2.3655385, 48.8401770 2.3633396, 48.8403577 2.3648059, 48.8406525 2.3654951, 48.8474692 2.3800869, 48.8511568 2.3769175, 48.8529972 2.3828570, 48.8530196 2.3828454, 48.8723958 2.3456640, 48.8721443 2.3462235, 48.8721200 2.3465304, 48.8723384 2.3450494, 48.8721929 2.3459204, 48.8212773 2.3484096, 48.8212833 2.3478488, 48.8214566 2.3483919, 48.8214582 2.3485034, 48.8214603 2.3486734, 48.8171415 2.3284109, 48.8195043 2.3233854, 48.8166370 2.3865716, 48.8386930 2.3209191, 48.8900936 2.3613417, 48.8899772 2.3631924, 48.8328599 2.3871449, 48.8332379 2.3878568, 48.8342547 2.3867901, 48.8731493 2.3339822, 48.8732344 2.3342772, 48.8732873 2.3344794, 48.8736060 2.3347993, 48.8735380 2.3345217, 48.8733336 2.3346541, 48.8733567 2.3347461, 48.8734176 2.3350103, 48.8314949 2.3464003, 48.8223084 2.3727446, 48.8837218 2.3265938, 48.8839281 2.3266788, 48.8842558 2.3262816, 48.8842475 2.3261013, 48.8844969 2.3258681, 48.8772087 2.3700162, 48.8770764 2.4156139, 48.8785036 2.4120015, 48.8787966 2.4117180, 48.8805166 2.4186967, 48.8817133 2.4165675, 48.8651963 2.3543268, 48.8655751 2.3534550, 48.8272380 2.3739098, 48.8306423 2.3784940, 48.8588161 2.3844737, 48.8589819 2.3812174, 48.8594014 2.3867242, 48.8632560 2.3857666, 48.8632853 2.3857334, 48.8648126 2.3829513, 48.8308824 2.3308541, 48.8806070 2.3350450, 48.8478066 2.3511652, 48.8652179 2.3576235, 48.8665988 2.3579918, 48.8792695 2.3580176, 48.8125628 2.3858715, 48.8322747 2.4077869, 48.8084737 2.3757613, 48.8091978 2.3740533, 48.8527845 2.3829907, 48.8525813 2.3783727, 48.8500039 2.3829631, 48.8507063 2.3842333, 48.8507329 2.3844032, 48.8520213 2.3782344, 48.8512657 2.3823324, 48.8183873 2.3906477, 48.8183427 2.3906196, 48.8903441 2.3583572, 48.8556294 2.3309525, 48.8161358 2.3883779, 48.8447422 2.3241795, 48.8446015 2.3186457, 48.8757787 2.3952801, 48.8763432 2.3961836, 48.8739316 2.3642949, 48.8300075 2.3766195, 48.8300612 2.3767531, 48.8538347 2.3820812, 48.8300214 2.3766541, 48.8300134 2.3766343, 48.8300468 2.3767174, 48.8300544 2.3767362, 48.8144634 2.3502411, 48.8446576 2.4023708, 48.8446711 2.4022645, 48.8766269 2.3409528, 48.8796151 2.3586339, 48.8295221 2.3770384, 48.8295234 2.3770425, 48.8295942 2.3772157, 48.8295955 2.3772198, 48.8292836 2.3772615, 48.8292849 2.3772656, 48.8291663 2.3773754, 48.8291651 2.3773713, 48.8294735 2.3774560, 48.8294723 2.3774519, 48.8594040 2.3760003, 48.8294486 2.3769892, 48.8294789 2.3769607, 48.8292116 2.3772093, 48.8290535 2.3773587, 48.8196832 2.4062845, 48.8288072 2.3775847, 48.8287029 2.3776801, 48.8285150 2.3778540, 48.8285237 2.3778464, 48.8285819 2.3777994, 48.8284400 2.3779269, 48.8437135 2.3316731, 48.8450585 2.3307964, 48.8456753 2.3306834, 48.8453860 2.3289833, 48.8439283 2.3314439, 48.8456727 2.3304084, 48.8452550 2.3308381, 48.8455885 2.3305792, 48.8439472 2.3353944, 48.8414295 2.3349029, 48.8439446 2.3343193, 48.8412878 2.3343890, 48.8412009 2.3340488, 48.8613057 2.3640175, 48.8618640 2.3636597, 48.8490290 2.3128397, 48.8497334 2.3137180, 48.8791086 2.3296385, 48.8790090 2.3291588, 48.8789990 2.3290598, 48.8791636 2.3296055, 48.8790193 2.3292541, 48.8787660 2.3298574, 48.8795729 2.3273136, 48.8233254 2.4104862, 48.8654372 2.3773868, 48.8627341 2.4152051, 48.8700847 2.3548936, 48.8625582 2.4155041, 48.8622759 2.4159636, 48.8621647 2.4159394, 48.8552298 2.3783364, 48.8507255 2.3786716, 48.8533286 2.3771814, 48.8791705 2.3149410, 48.8791268 2.3149988, 48.8789853 2.3151835, 48.8775697 2.3168932, 48.8212398 2.3424502, 48.8203966 2.3512410, 48.8221476 2.3460160, 48.8227121 2.3439548, 48.8259973 2.3458469, 48.8295582 2.3498479, 48.8863030 2.3629244, 48.8819014 2.3259477, 48.8783248 2.4222811, 48.8796058 2.4163928, 48.8796098 2.4164212, 48.8802557 2.4116258, 48.8814650 2.4217849, 48.8826419 2.4189037, 48.8826586 2.4152907, 48.8833125 2.4162377, 48.8577807 2.3606532, 48.8218971 2.3684420, 48.8215117 2.3697202, 48.8211132 2.3692911, 48.8206735 2.3690721, 48.8209578 2.3698665, 48.8205930 2.3650114, 48.8479870 2.3710527, 48.8238140 2.3768979, 48.8233133 2.3772950, 48.8237603 2.3770246, 48.8219475 2.3757826, 48.8538669 2.3274765, 48.8758199 2.3463986, 48.8702424 2.3272665, 48.8701962 2.3274114, 48.8410843 2.3500396, 48.8469362 2.3533956, 48.8469637 2.3511552, 48.8469233 2.3511876, 48.8652666 2.3505396, 48.8217923 2.4129438, 48.8653042 2.3505623, 48.8606139 2.3327315, 48.8606238 2.3326890, 48.8631689 2.3461176, 48.8486259 2.4110383, 48.8435649 2.3891604, 48.8435408 2.3891960, 48.8360719 2.3733952, 48.8729963 2.3939194, 48.8229783 2.4117392, 48.8225876 2.4117271, 48.8227730 2.4114364, 48.8221641 2.4123857, 48.8906179 2.3769989, 48.8140148 2.3699802, 48.8071504 2.3727967, 48.8073992 2.3733698, 48.8684084 2.3898491, 48.8645971 2.3405666, 48.8742290 2.3701302, 48.8726773 2.3664509, 48.8758651 2.3683358, 48.8759631 2.3688095, 48.8760870 2.3680227, 48.8758159 2.3684389, 48.8515538 2.3446273, 48.8448189 2.3202573, 48.8446250 2.3198690, 48.8449203 2.3214165, 48.8451259 2.3208317, 48.8450555 2.3205977, 48.8457215 2.3235839, 48.8446825 2.3242565, 48.8455240 2.3232332, 48.8450646 2.3233440, 48.8361976 2.3726430, 48.8350006 2.3736896, 48.8364690 2.3735689, 48.8949686 2.3852196, 48.8951417 2.3868255, 48.8738255 2.3510086, 48.8347963 2.4081651, 48.8533264 2.3881957, 48.8534376 2.3881152, 48.8516295 2.3411860, 48.8433202 2.3359232, 48.8325468 2.3991723, 48.8964093 2.3745121, 48.8964159 2.3748831, 48.8964235 2.3745243, 48.8964896 2.3746402, 48.8965125 2.3746237, 48.8968192 2.3743956, 48.8960872 2.3731948, 48.8964553 2.3741855, 48.8966698 2.3747401, 48.8963732 2.3738039, 48.8962652 2.3736908, 48.8963070 2.3736578, 48.8966033 2.3747238, 48.8962741 2.3737191, 48.8963789 2.3738725, 48.8966200 2.3747737, 48.8961343 2.3732955, 48.8961513 2.3733455, 48.8959358 2.3726609, 48.8964239 2.3741734, 48.8963161 2.3736856, 48.8966409 2.3746954, 48.8966557 2.3747462, 48.8959728 2.3728260, 48.8966119 2.3747488, 48.8966488 2.3747210, 48.8964149 2.3741463, 48.8961425 2.3733191, 48.8963704 2.3738452, 48.8959638 2.3727343, 48.8961219 2.3731974, 48.8961859 2.3733158, 48.8963355 2.3739065, 48.8964585 2.3741110, 48.8965047 2.3744206, 48.8959489 2.3726895, 48.8961680 2.3732665, 48.8965467 2.3743880, 48.8961770 2.3732905, 48.8963267 2.3738784, 48.8964678 2.3741399, 48.8967811 2.3752820, 48.8968103 2.3752603, 48.8966652 2.3748440, 48.8968253 2.3753428, 48.8968402 2.3753890, 48.8802130 2.3559387, 48.8263279 2.3477604, 48.8267258 2.3480552, 48.8438274 2.3883763, 48.8451702 2.3983100, 48.8452821 2.3979496, 48.8612713 2.3434005, 48.8618647 2.3406148, 48.8675113 2.3263048, 48.8688331 2.3251265, 48.8743834 2.3157963, 48.8646328 2.3503127, 48.8632634 2.3499246, 48.8634283 2.3503640, 48.8652116 2.3502483, 48.8646959 2.3500774, 48.8649451 2.3503699, 48.8636723 2.3503952, 48.8648819 2.3503512, 48.8654300 2.3503684, 48.8655394 2.3504105, 48.8655897 2.3504299, 48.8662800 2.3508421, 48.8655882 2.3506790, 48.8661394 2.3507468, 48.8659073 2.3506008, 48.8659359 2.3508645, 48.8659789 2.3508912, 48.8657593 2.3505128, 48.8660274 2.3509294, 48.8606916 2.3319568, 48.8559638 2.3740593, 48.8552585 2.3783047, 48.8552658 2.3739323, 48.8970953 2.3747831, 48.8961195 2.3742911, 48.8964592 2.3748398, 48.8970752 2.3747307, 48.8971135 2.3748889, 48.8965435 2.3745992, 48.8260600 2.4063967, 48.8848116 2.3938556, 48.8541004 2.3735901, 48.8324295 2.3777926, 48.8142055 2.3608432, 48.8176783 2.3983260, 48.8400817 2.3808930, 48.8885318 2.3889061, 48.8844520 2.4131062, 48.8845215 2.4110305, 48.8861935 2.4069905, 48.8882994 2.4036514, 48.8897480 2.4032685, 48.8401464 2.3940524, 48.8400443 2.3945040, 48.8403517 2.3931186, 48.8586740 2.3843873, 48.8541153 2.3181466, 48.8522697 2.3672667, 48.8526671 2.3672168, 48.8606942 2.3320405, 48.8143597 2.3410582, 48.8146136 2.3353056, 48.8136835 2.3350607, 48.8423163 2.3230555, 48.8139277 2.3355840, 48.8208201 2.3649651, 48.8448778 2.4361919, 48.8251954 2.3955003, 48.8253288 2.3956305, 48.8254086 2.3953880, 48.8257565 2.3948027, 48.8217396 2.4064735, 48.8216901 2.3588042, 48.8217522 2.3587309, 48.8481462 2.3153959, 48.8462784 2.3181382, 48.8463136 2.3180596, 48.8168872 2.3337518, 48.8634959 2.3341702, 48.8418399 2.3475310, 48.8409878 2.3524614, 48.8413942 2.3539234, 48.8430259 2.3524655, 48.8445531 2.3439738, 48.8659162 2.3699651, 48.8663302 2.3717617, 48.8682279 2.3724309, 48.8862647 2.3364796, 48.8448709 2.3364362, 48.8603946 2.3436809, 48.8604509 2.3437017, 48.8607088 2.3436325, 48.8609735 2.3437850, 48.8609318 2.3437651, 48.8611201 2.3440538, 48.8815563 2.3466326, 48.8810463 2.3373172, 48.8233478 2.3739572, 48.8323596 2.3507129, 48.8296699 2.3512567, 48.8465826 2.3403067, 48.8662355 2.3574699, 48.8666494 2.3608240, 48.8667617 2.3612946, 48.8664564 2.3609351, 48.8666191 2.3606799, 48.8681552 2.3599058, 48.8681541 2.3597860, 48.8685091 2.3575143, 48.8690138 2.3548626, 48.8687915 2.3579448, 48.8692896 2.3576407, 48.8695565 2.3611201, 48.8458206 2.3955136, 48.8443900 2.4070825, 48.8394358 2.3984426, 48.8394377 2.3985093, 48.8396731 2.4004643, 48.8397229 2.4044487, 48.8425807 2.4052623, 48.8449514 2.4014187, 48.8477762 2.3969790, 48.8647975 2.3479339, 48.8644464 2.3497330, 48.8604393 2.3848427, 48.8592131 2.3991113, 48.8594497 2.3924686, 48.8605704 2.3967700, 48.8615389 2.3974070, 48.8732331 2.3706236, 48.8466467 2.3403391, 48.8466188 2.3405190, 48.8466338 2.3403320, 48.8794618 2.3547465, 48.8753162 2.3572500, 48.8792653 2.3546373, 48.8710534 2.3579338, 48.8782951 2.3537083, 48.8709395 2.3577877, 48.8684534 2.3625980, 48.8706341 2.3613598, 48.8714620 2.3606641, 48.8721565 2.3599941, 48.8731026 2.3591486, 48.8731738 2.3586113, 48.8734727 2.3582823, 48.8748601 2.3571000, 48.8748765 2.3570854, 48.8752902 2.3572956, 48.8754818 2.3572083, 48.8755839 2.3564533, 48.8755903 2.3564476, 48.8757415 2.3562203, 48.8757767 2.3558590, 48.8758238 2.3555664, 48.8758334 2.3555696, 48.8789444 2.3540023, 48.8789725 2.3540174, 48.8794953 2.3547346, 48.8795075 2.3547407, 48.8795262 2.3547500, 48.8673504 2.3653444, 48.8259283 2.3648732, 48.8256470 2.3650793, 48.8256883 2.3661914, 48.8253486 2.3664896, 48.8418253 2.3235858, 48.8486365 2.3436088, 48.8282445 2.3185970, 48.8325511 2.3275682, 48.8337519 2.3264533, 48.8330778 2.3268974, 48.8628736 2.3292933, 48.8663636 2.4020052, 48.8514912 2.3706641, 48.8314753 2.3212955, 48.8275165 2.3222495, 48.8334969 2.3204507, 48.8509826 2.3348581, 48.8338228 2.3257312, 48.8287686 2.3270872, 48.8398181 2.3539553, 48.8434500 2.3162551, 48.8520914 2.3457231, 48.8520498 2.3471195, 48.8506800 2.3408743, 48.8469926 2.3443789, 48.8284834 2.3390838, 48.8916001 2.3941173, 48.8426154 2.3558949, 48.8335096 2.3583704, 48.8812606 2.3199181, 48.8782451 2.3776203, 48.8816607 2.3795479, 48.8395681 2.3430437, 48.8370175 2.3399282, 48.8381233 2.3381623, 48.8407613 2.3287967, 48.8412235 2.3288167, 48.8503229 2.3719619, 48.8354145 2.3186821, 48.8308623 2.3104632, 48.8294209 2.3117338, 48.8318593 2.3321176, 48.8448556 2.3266825, 48.8318902 2.3371638, 48.8273372 2.3438244, 48.8279649 2.3334629, 48.8227046 2.3325473, 48.8226277 2.3314456, 48.8264157 2.3400743, 48.8244538 2.3424960, 48.8299282 2.3426712, 48.8232102 2.3460360, 48.8250953 2.3487033, 48.8225891 2.3514200, 48.8233729 2.3520348, 48.8263831 2.3518343, 48.8238254 2.3603106, 48.8490369 2.3777473, 48.8408530 2.3097088, 48.8406966 2.3089635, 48.8710842 2.4098080, 48.8419046 2.4066858, 48.8867960 2.3430272, 48.8336334 2.3956971, 48.8867143 2.3420696, 48.8430010 2.3073788, 48.8829020 2.3533116, 48.8468373 2.3601741, 48.8502092 2.3467124, 48.8500305 2.3469692, 48.8580159 2.4337027, 48.8366699 2.3085489, 48.8366318 2.3091017, 48.8360434 2.3091487, 48.8505880 2.3262612, 48.8399309 2.3505124, 48.8573272 2.3231557, 48.8457219 2.3091127, 48.8291963 2.3484434, 48.8341327 2.3354992, 48.8815039 2.3596777, 48.8254771 2.3560232, 48.8852759 2.3287719, 48.8853098 2.3300207, 48.8934254 2.3502251, 48.8715666 2.3690395, 48.8421078 2.3399259, 48.8753514 2.3391367, 48.8764338 2.3389235, 48.8292274 2.3144138, 48.8603535 2.3450738, 48.8691578 2.3873215, 48.8343403 2.3469900, 48.8573070 2.4005727, 48.8563515 2.4015439, 48.8488289 2.3520343, 48.8738281 2.3676232, 48.8780842 2.3672167, 48.8720076 2.3153410, 48.8719347 2.3252557, 48.8920793 2.3444293, 48.8300943 2.3731691, 48.8514133 2.3453539, 48.8647293 2.3437855, 48.8799231 2.4029140, 48.8102596 2.3537170, 48.8955599 2.3923240, 48.8226001 2.3745365, 48.8970228 2.3778045, 48.8616725 2.3400056, 48.8865460 2.3987110, 48.8873261 2.3987992, 48.8818390 2.3949630, 48.8397989 2.3483799, 48.8335588 2.3347973, 48.8176077 2.3331498, 48.8627769 2.3619724, 48.8793754 2.4181907, 48.8743552 2.4101245, 48.8324637 2.3583124, 48.8459148 2.3453004, 48.8467486 2.3457052, 48.8464858 2.3468868, 48.8931401 2.3450441, 48.8439535 2.4265211, 48.8915823 2.3442872, 48.8487976 2.3453788, 48.8393007 2.4098962, 48.8373806 2.3847107, 48.8521927 2.3428836, 48.8460121 2.3936785, 48.8472608 2.3915475, 48.8259607 2.3577448, 48.8263635 2.3577792, 48.8939404 2.3440201, 48.8939717 2.3760943, 48.8927211 2.3719123, 48.8770270 2.3963669, 48.8478738 2.3417683, 48.8444725 2.3494231, 48.8489020 2.3780492, 48.8653656 2.3326546, 48.8462135 2.3676679, 48.8477461 2.3511419, 48.8465377 2.3511741, 48.8611834 2.4213949, 48.8491582 2.3503166, 48.8586522 2.4048512, 48.8334812 2.3848250, 48.8949154 2.3752834, 48.8931565 2.3752173, 48.8949298 2.3437869, 48.8946703 2.3460196, 48.8881098 2.3937511, 48.8527860 2.3433192, 48.8527117 2.3434535, 48.8677409 2.4118097, 48.8553095 2.3668811, 48.8554490 2.3650796, 48.8553288 2.3657869, 48.8559134 2.3652568, 48.8557971 2.3659661, 48.8773026 2.3313881, 48.8796581 2.3337601, 48.8733469 2.3471633, 48.8453078 2.3279727, 48.8447303 2.3253916, 48.8296365 2.3191749, 48.8271977 2.3186334, 48.8445554 2.3918219, 48.8477056 2.3937576, 48.8530475 2.3402841, 48.8606366 2.3480234, 48.8428465 2.3450125, 48.8836733 2.4009696, 48.8480538 2.4084830, 48.8577970 2.3462635, 48.8572971 2.3480529, 48.8556673 2.3468212, 48.8546261 2.3488485, 48.8934185 2.3476012, 48.8541008 2.3508942, 48.8634023 2.3451770, 48.8595023 2.3413445, 48.8610303 2.3411379, 48.8628813 2.3500673, 48.8640121 2.3431386, 48.8648399 2.3394096, 48.8627063 2.3387713, 48.8621731 2.3396914, 48.8635375 2.3361930, 48.8661384 2.3376341, 48.8646150 2.3358501, 48.8656383 2.3355496, 48.8473922 2.3048904, 48.8648403 2.3335688, 48.8674454 2.3255009, 48.8671208 2.3252153, 48.8700303 2.3244833, 48.8645216 2.3241369, 48.8637900 2.3251989, 48.8631102 2.3305704, 48.8620408 2.3297808, 48.8675585 2.3352443, 48.8683542 2.3354770, 48.8679678 2.3355626, 48.8711116 2.3378434, 48.8701314 2.3413473, 48.8667351 2.3405908, 48.8667853 2.3409551, 48.8720314 2.3317296, 48.8678404 2.3435108, 48.8666540 2.3412809, 48.8677111 2.3436135, 48.8666855 2.3458176, 48.8667840 2.3448980, 48.8643844 2.3481707, 48.8659951 2.3472997, 48.8650604 2.3489492, 48.8676365 2.3495752, 48.8673100 2.3491813, 48.8695324 2.3500407, 48.8694649 2.3483472, 48.8515255 2.3585434, 48.8512805 2.3575796, 48.8513289 2.3571116, 48.8513407 2.3568075, 48.8465485 2.3480584, 48.8468635 2.3476036, 48.8473759 2.3481729, 48.8477242 2.3463368, 48.8471642 2.3459531, 48.8473765 2.3454667, 48.8483547 2.3477114, 48.8494880 2.3471975, 48.8566586 2.3502382, 48.8555103 2.3547440, 48.8605119 2.3524278, 48.8552378 2.3565856, 48.8545545 2.3582739, 48.8547107 2.3575542, 48.8561321 2.3560085, 48.8590777 2.3508458, 48.8609964 2.3511217, 48.8590241 2.3528243, 48.8596787 2.3549361, 48.8505159 2.3511487, 48.8499319 2.3508590, 48.8578675 2.3554896, 48.8580098 2.3551110, 48.8420784 2.3551117, 48.8589606 2.3577912, 48.8588712 2.3563977, 48.8593244 2.3572169, 48.8566620 2.3563500, 48.8581282 2.3585957, 48.8576958 2.3602417, 48.8577535 2.3591589, 48.8445132 2.3434493, 48.8446816 2.3425888, 48.8443593 2.3424477, 48.8568692 2.3618963, 48.8554458 2.3617217, 48.8559322 2.3606794, 48.8559632 2.3610057, 48.8568692 2.3619825, 48.8557916 2.3618145, 48.8546118 2.3614419, 48.8441668 2.3441509, 48.8440444 2.3424842, 48.8438850 2.3436873, 48.8417082 2.3448259, 48.8421678 2.3473559, 48.8336577 2.3758171, 48.8478828 2.3449481, 48.8537719 2.3404642, 48.8538923 2.3602235, 48.8547299 2.3588397, 48.8544250 2.3606301, 48.8542205 2.3613106, 48.8533256 2.3598269, 48.8536180 2.3593838, 48.8517793 2.3624850, 48.8520858 2.3630147, 48.8530912 2.3629578, 48.8535551 2.3630510, 48.8531446 2.3665394, 48.8533048 2.3662366, 48.8530036 2.3653999, 48.8502323 2.3636287, 48.8641131 2.3524347, 48.8654907 2.3542912, 48.8660191 2.3548825, 48.8665653 2.3534157, 48.8677538 2.3619057, 48.8669084 2.3599230, 48.8661006 2.3605374, 48.8640009 2.3580845, 48.8514658 2.3409145, 48.8635084 2.3550623, 48.8628103 2.3567784, 48.8422077 2.3499509, 48.8410206 2.3476178, 48.8652347 2.3615395, 48.8460037 2.3443315, 48.8428826 2.3467101, 48.8665800 2.3637144, 48.8648535 2.3638937, 48.8455024 2.3479009, 48.8495056 2.3411744, 48.8525619 2.3404829, 48.8638757 2.3617724, 48.8618121 2.3636118, 48.8608482 2.3604976, 48.8605513 2.3604636, 48.8593690 2.3611919, 48.8587098 2.3604486, 48.8576812 2.3627207, 48.8599672 2.3652140, 48.8584483 2.3650666, 48.8641419 2.3059394, 48.8408224 2.3556248, 48.8581239 2.4179280, 48.8394063 2.3388487, 48.8405270 2.3419263, 48.8410301 2.3394202, 48.8436908 2.3411284, 48.8377612 2.3526960, 48.8388681 2.3562783, 48.8389698 2.3465251, 48.8540956 2.3386733, 48.8539667 2.3343780, 48.8553564 2.3319123, 48.8547259 2.3309615, 48.8542202 2.3326051, 48.8171104 2.3592722, 48.8205367 2.3517228, 48.8187381 2.3603132, 48.8255436 2.3844578, 48.8270073 2.3831357, 48.8277023 2.3804688, 48.8281365 2.3815637, 48.8289306 2.3834067, 48.8292826 2.3818315, 48.8299445 2.3812798, 48.8341301 2.3741390, 48.8324542 2.3754823, 48.8347819 2.3752986, 48.8324684 2.3762548, 48.8331207 2.3774143, 48.8356931 2.3735362, 48.8524015 2.3378046, 48.8284748 2.4153547, 48.8305866 2.4133509, 48.8269740 2.4220432, 48.8338090 2.4106889, 48.8310494 2.4086736, 48.8482400 2.3355377, 48.8480293 2.3335576, 48.8462040 2.3345315, 48.8474005 2.3405897, 48.8464818 2.3340282, 48.8453579 2.3391670, 48.8484960 2.3353412, 48.8487894 2.3398575, 48.8499369 2.3334247, 48.8506119 2.3322896, 48.8709159 2.3488390, 48.8808624 2.3661835, 48.8798953 2.3658018, 48.8748621 2.3640685, 48.8690687 2.3568989, 48.8714059 2.3746472, 48.8714289 2.3586492, 48.8725005 2.3637491, 48.8765155 2.3697729, 48.8747250 2.3499219, 48.8789795 2.3519205, 48.8745975 2.3638853, 48.8804816 2.3601906, 48.8835038 2.3500486, 48.8758832 2.3621672, 48.8771241 2.3681679, 48.8707111 2.3526824, 48.8742511 2.3562294, 48.8739698 2.3502828, 48.8747740 2.3583086, 48.8740835 2.3661993, 48.8769232 2.3550372, 48.8785401 2.3503089, 48.8690852 2.3564359, 48.8688927 2.3619774, 48.8700416 2.3629456, 48.8738345 2.3619222, 48.8778905 2.3549883, 48.8802394 2.3662696, 48.8707439 2.3581854, 48.8813655 2.3677357, 48.8718061 2.3577803, 48.8714724 2.3582382, 48.8724583 2.3622962, 48.8706573 2.3699999, 48.8712435 2.3585129, 48.8772979 2.3532928, 48.8740236 2.3794333, 48.8756563 2.3893068, 48.8825024 2.3773488, 48.8777778 2.3969518, 48.8798650 2.3717611, 48.8765775 2.3738107, 48.8840257 2.3785053, 48.8810534 2.3798892, 48.8807650 2.3809540, 48.8796317 2.3922145, 48.8782864 2.4003329, 48.8808497 2.3766792, 48.8772540 2.3793034, 48.8839180 2.3908306, 48.8785984 2.4069505, 48.8875554 2.3932245, 48.8766581 2.3845776, 48.8792584 2.4027040, 48.8803350 2.3915400, 48.8832602 2.3897914, 48.8888014 2.3950208, 48.8825097 2.3726639, 48.8777119 2.3829769, 48.8789480 2.3975957, 48.8772899 2.4044967, 48.8763922 2.3924421, 48.8827773 2.3720907, 48.8768476 2.4045269, 48.8823771 2.3827729, 48.8741884 2.3812374, 48.8784240 2.4013187, 48.8734624 2.3794844, 48.8837520 2.3770262, 48.8833592 2.3837676, 48.8758353 2.3818821, 48.8793280 2.4092495, 48.8782636 2.3938847, 48.8875403 2.3892859, 48.8825699 2.3942478, 48.8794623 2.3748343, 48.8768300 2.4049587, 48.8749512 2.3758843, 48.8835228 2.3900932, 48.8775012 2.4053652, 48.8872961 2.3884532, 48.8791033 2.4067884, 48.8762900 2.3881904, 48.8491305 2.3324247, 48.8511246 2.3315183, 48.8507237 2.3305867, 48.8485200 2.3302805, 48.8490897 2.3313163, 48.8516772 2.3301935, 48.8567549 2.3296065, 48.8564112 2.3276604, 48.8616442 2.3214269, 48.8830027 2.3819053, 48.8573070 2.3722448, 48.8573667 2.3785302, 48.8612993 2.3760466, 48.8679659 2.3772772, 48.8580028 2.3886404, 48.8698301 2.3789769, 48.8532758 2.3834775, 48.8655569 2.3834913, 48.8488552 2.3942325, 48.8681170 2.3702881, 48.8556092 2.3748547, 48.8554776 2.3865376, 48.8514007 2.3806923, 48.8489972 2.3942887, 48.8541145 2.3728428, 48.8559242 2.3763609, 48.8505758 2.3948498, 48.8617208 2.3870510, 48.8492288 2.3982130, 48.8687241 2.3739555, 48.8494165 2.3948501, 48.8715904 2.3762695, 48.8667240 2.3744593, 48.8569366 2.3691178, 48.8512296 2.3971013, 48.8644022 2.3721640, 48.8551221 2.3779354, 48.8690173 2.3800602, 48.8700142 2.3783921, 48.8645848 2.3818674, 48.8654147 2.3827693, 48.8587211 2.3792589, 48.8557998 2.3744188, 48.8620888 2.3721843, 48.8635364 2.3675918, 48.8653480 2.3824511, 48.8616901 2.3768726, 48.8558974 2.3697016, 48.8691228 2.3722077, 48.8542270 2.3701448, 48.8526966 2.3797946, 48.8651182 2.3816942, 48.8474963 2.3314096, 48.8433347 2.3291923, 48.8437015 2.3290857, 48.8439866 2.3296791, 48.8440002 2.3289984, 48.8426659 2.3293835, 48.8441827 2.3289470, 48.8415376 2.3358192, 48.8422410 2.3360535, 48.8431501 2.3350178, 48.8431501 2.3350178, 48.8424034 2.3353369, 48.8876497 2.3811928, 48.8898926 2.3938223, 48.8841890 2.3721826, 48.8920038 2.3925843, 48.8942221 2.3932346, 48.8922574 2.3897916, 48.8863782 2.3808169, 48.8909125 2.3908221, 48.8884371 2.3696348, 48.8893083 2.3797923, 48.8922985 2.3808600, 48.8962335 2.3812698, 48.8869224 2.3699944, 48.8849786 2.3714049, 48.8878800 2.3695448, 48.8942892 2.3857311, 48.8914135 2.3730389, 48.8958998 2.3850390, 48.8945682 2.3886565, 48.8434562 2.3271121, 48.8459170 2.3271128, 48.8544027 2.3283123, 48.8542728 2.3281460, 48.8538921 2.3290895, 48.8536841 2.3296836, 48.8523494 2.3282306, 48.8523092 2.3254287, 48.8583168 2.3192030, 48.8555836 2.3125833, 48.8581172 2.3158825, 48.8602703 2.3166848, 48.8591272 2.3154598, 48.8569650 2.3210744, 48.8589684 2.3183256, 48.8659254 2.3169572, 48.8661998 2.3078190, 48.8673922 2.3186960, 48.8692220 2.3131336, 48.8687177 2.3137578, 48.8679417 2.3153003, 48.8695579 2.3118828, 48.8709019 2.3121795, 48.8701045 2.3177100, 48.8706191 2.3164188, 48.8702691 2.3171729, 48.8700842 2.3190066, 48.8677416 2.3203787, 48.8708055 2.3203157, 48.8100412 2.3634094, 48.8148747 2.3622300, 48.8151095 2.3628203, 48.8088380 2.3604124, 48.8100632 2.3609788, 48.8148931 2.3623853, 48.8155498 2.3629729, 48.8123026 2.3568486, 48.8148368 2.3592517, 48.8152863 2.3634838, 48.8144345 2.3595949, 48.8709936 2.3196146, 48.8730514 2.3192651, 48.8712384 2.3204914, 48.8732220 2.3198534, 48.8719889 2.3172447, 48.8568281 2.3240933, 48.8564528 2.3218645, 48.8731641 2.3135886, 48.8761943 2.3188756, 48.8736950 2.3227605, 48.8763793 2.3198786, 48.8764436 2.3227714, 48.8812617 2.3221621, 48.8824166 2.3254431, 48.8815247 2.3258345, 48.8789360 2.3180062, 48.8794612 2.3161827, 48.8774812 2.3175782, 48.8773895 2.3113057, 48.8558406 2.3181691, 48.8565374 2.3198863, 48.8575952 2.3162844, 48.8549799 2.3152238, 48.8546938 2.3151617, 48.8536065 2.3189265, 48.8547914 2.3184454, 48.8544394 2.3206610, 48.8542063 2.3220164, 48.8516333 2.3163937, 48.8733405 2.3105570, 48.8747817 2.3090619, 48.8735777 2.3103416, 48.8506595 2.3134348, 48.8488137 2.3112580, 48.8490218 2.3095386, 48.8621157 2.3068946, 48.8622054 2.3113147, 48.8621650 2.3099650, 48.8620107 2.3121034, 48.8620503 2.3077703, 48.8614652 2.3112185, 48.8598324 2.3057047, 48.8596683 2.3051766, 48.8588398 2.3009565, 48.8616921 2.3017708, 48.8586530 2.3014966, 48.8718575 2.3096862, 48.8745552 2.3434968, 48.8726368 2.3332498, 48.8733021 2.3461422, 48.8724832 2.3412640, 48.8713411 2.3335897, 48.8753730 2.3307359, 48.8745162 2.3280282, 48.8811682 2.3277661, 48.8783949 2.3273509, 48.8839359 2.3295920, 48.8811721 2.3279298, 48.8784480 2.3305067, 48.8785577 2.3276948, 48.8794555 2.3310828, 48.8668072 2.3074982, 48.8669466 2.3052755, 48.8661724 2.3095553, 48.8654950 2.3060890, 48.8657975 2.3070013, 48.8650070 2.3052518, 48.8755092 2.3364892, 48.8757852 2.3369238, 48.8761055 2.3425645, 48.8775032 2.3443702, 48.8759553 2.3424654, 48.8775832 2.3381108, 48.8769406 2.3357171, 48.8788350 2.3363565, 48.8781775 2.3370777, 48.8791560 2.3349351, 48.8784814 2.3330760, 48.8786912 2.3329642, 48.8795687 2.3340594, 48.8580739 2.3032200, 48.8577998 2.3083264, 48.8574433 2.3080496, 48.8591820 2.3057815, 48.8704391 2.4036853, 48.8654752 2.3969034, 48.8675540 2.4033383, 48.8733663 2.3980536, 48.8707745 2.4031842, 48.8664725 2.3994200, 48.8660241 2.3891973, 48.8726445 2.3819387, 48.8667184 2.3845734, 48.8672697 2.4082129, 48.8685113 2.3939018, 48.8700810 2.3939859, 48.8721527 2.4039954, 48.8742474 2.3915343, 48.8692103 2.4060250, 48.8698708 2.3894444, 48.8759531 2.4058126, 48.8707470 2.3890101, 48.8737162 2.3989845, 48.8653099 2.3994450, 48.8741661 2.4028427, 48.8680477 2.3881885, 48.8686123 2.3874809, 48.8717538 2.3778592, 48.8768273 2.4061935, 48.8705165 2.3847431, 48.8706464 2.4029603, 48.8700069 2.3917127, 48.8680271 2.3944885, 48.8677442 2.4064420, 48.8711699 2.3828334, 48.8680108 2.3891033, 48.8661973 2.3852926, 48.8685849 2.3946714, 48.8735079 2.3859895, 48.8531996 2.4008117, 48.8629172 2.4032881, 48.8610622 2.4083874, 48.8565426 2.4011331, 48.8605116 2.4040387, 48.8594997 2.4020465, 48.8486664 2.4060717, 48.8533899 2.4084981, 48.8570749 2.3987484, 48.8578048 2.3927276, 48.8552365 2.3979568, 48.8641014 2.4040313, 48.8612544 2.3928969, 48.8632403 2.4057584, 48.8527000 2.4007320, 48.8646263 2.3995431, 48.8644181 2.3973216, 48.8604193 2.4117833, 48.8591060 2.4071931, 48.8603726 2.4048020, 48.8582173 2.3974031, 48.8551420 2.4074493, 48.8940614 2.3981408, 48.8868970 2.4101629, 48.8897233 2.4048569, 48.8853542 2.4002846, 48.8854121 2.4014868, 48.8820692 2.4047005, 48.8849968 2.4010811, 48.8833482 2.4078477, 48.8829139 2.4028574, 48.8859819 2.4028046, 48.8783976 2.4232741, 48.8799172 2.4243102, 48.8797989 2.4242101, 48.8792217 2.4226421, 48.8793528 2.4158838, 48.8797616 2.4230673, 48.8810422 2.4188889, 48.8771948 2.4154648, 48.8789212 2.4225945, 48.8803531 2.4243624, 48.8818732 2.4197072, 48.8779107 2.4115571, 48.8806144 2.4138073, 48.8804704 2.4244582, 48.8823482 2.4217766, 48.8800161 2.4241722, 48.8817441 2.4200451, 48.8798835 2.4146440, 48.8856358 2.3793460, 48.8456516 2.3465029, 48.8851079 2.3221911, 48.8829281 2.3226645, 48.8845147 2.3220414, 48.8848055 2.3225753, 48.8852691 2.3273520, 48.8840983 2.3280005, 48.8759086 2.3531702, 48.8756263 2.3537558, 48.8757690 2.3542850, 48.8207874 2.3600379, 48.8459792 2.4034956, 48.8449899 2.4047731, 48.8790683 2.3500223, 48.8748204 2.3650641, 48.8440793 2.3007675, 48.8455404 2.3039588, 48.8449008 2.3028262, 48.8473426 2.3154628, 48.8762997 2.3671483, 48.8774278 2.3664806, 48.8769307 2.3675682, 48.8753137 2.3745206, 48.8464207 2.3056421, 48.8452169 2.3065475, 48.8445961 2.3062818, 48.8918931 2.3366089, 48.8929571 2.3377419, 48.8831627 2.3434328, 48.8843322 2.3316646, 48.8852591 2.3385563, 48.8834404 2.3424447, 48.8830878 2.3430268, 48.8842431 2.3378793, 48.8872369 2.3361985, 48.8429738 2.4063211, 48.8425509 2.4150533, 48.8428482 2.4072159, 48.8411871 2.4026989, 48.8860532 2.3549746, 48.8840298 2.3497933, 48.8852850 2.3516529, 48.8873605 2.3541200, 48.8862437 2.3524630, 48.8885339 2.3563367, 48.8442314 2.3972578, 48.8424786 2.3972916, 48.8887487 2.3533400, 48.8398606 2.4036143, 48.8438364 2.3903215, 48.8433066 2.3847100, 48.8453062 2.3897015, 48.8465201 2.3909177, 48.8464060 2.3874300, 48.8446697 2.3887600, 48.8950630 2.3500907, 48.8937115 2.3499835, 48.8943495 2.3510361, 48.8346716 2.3947154, 48.8354779 2.3981863, 48.8343772 2.3967922, 48.8377888 2.3934620, 48.8408375 2.3874300, 48.8421463 2.3851427, 48.8475646 2.3844791, 48.8476359 2.3834813, 48.8501423 2.3827526, 48.8493084 2.3782105, 48.8495759 2.3775495, 48.8499033 2.3749234, 48.8480847 2.3771241, 48.8447461 2.3682946, 48.8414869 2.3732320, 48.8413908 2.3722764, 48.8363395 2.3879989, 48.8363209 2.3872317, 48.8313947 2.3888749, 48.8313842 2.3453082, 48.8353282 2.3443622, 48.8324841 2.3481040, 48.8336874 2.3510049, 48.8340937 2.3527776, 48.8336219 2.3537795, 48.8363739 2.3491795, 48.8337431 2.3536971, 48.8360232 2.3500303, 48.8330343 2.3541878, 48.8347313 2.3458453, 48.8355227 2.3484624, 48.8323314 2.3426818, 48.8300981 2.3497071, 48.8816137 2.3678619, 48.8741592 2.3523399, 48.8709868 2.3539752, 48.8282216 2.3502281, 48.8281048 2.3420248, 48.8280243 2.3513291, 48.8261636 2.3499910, 48.8303084 2.3537927, 48.8273857 2.3453119, 48.8302539 2.3536052, 48.8235980 2.3488324, 48.8232023 2.3480817, 48.8230296 2.3485201, 48.8255087 2.3537284, 48.8318443 2.3578147, 48.8330311 2.3559118, 48.8373800 2.3594717, 48.8374878 2.3592366, 48.8334901 2.3548903, 48.8369808 2.3616318, 48.8378854 2.3611545, 48.8351835 2.3533874, 48.8352545 2.3669997, 48.8389393 2.3641414, 48.8325517 2.3555391, 48.8381409 2.3592686, 48.8350223 2.3575595, 48.8279080 2.3671721, 48.8228260 2.3656656, 48.8278250 2.3617461, 48.8319646 2.3639719, 48.8223014 2.3642343, 48.8243944 2.3698335, 48.8214938 2.3626350, 48.8314555 2.3593311, 48.8298280 2.3683033, 48.8332049 2.3674474, 48.8264091 2.3707059, 48.8255297 2.3755480, 48.8213641 2.3630210, 48.8285287 2.3620065, 48.8204187 2.3630912, 48.8288263 2.3665943, 48.8289425 2.3568654, 48.8251059 2.3629462, 48.8312041 2.3702611, 48.8312988 2.3729351, 48.8172877 2.3936138, 48.8195986 2.3967955, 48.8189408 2.3729378, 48.8156403 2.3741378, 48.8177700 2.3719943, 48.8112635 2.3878134, 48.8171585 2.3942364, 48.8126062 2.3776044, 48.8107354 2.3834282, 48.8105217 2.3862807, 48.8141243 2.3773466, 48.8142641 2.3778953, 48.8161029 2.3946880, 48.8134945 2.3894556, 48.8127084 2.3855208, 48.8109596 2.3828632, 48.8141439 2.3952231, 48.8179649 2.3755932, 48.8139289 2.3888859, 48.8117505 2.3768962, 48.8181033 2.3755390, 48.8116281 2.3880471, 48.8163980 2.3941788, 48.8174654 2.3950189, 48.8124284 2.3821497, 48.8121342 2.3883471, 48.8109809 2.3891689, 48.8175513 2.3722276, 48.8342311 2.3345129, 48.8373961 2.3307530, 48.8429503 2.3255308, 48.8287681 2.3377897, 48.8320894 2.3350179, 48.8295683 2.3277744, 48.8370539 2.3220176, 48.8361561 2.3231047, 48.8369184 2.3203414, 48.8327851 2.3211151, 48.8350181 2.3229459, 48.8359369 2.3170768, 48.8332731 2.3154936, 48.8343750 2.3166882, 48.8256327 2.3320576, 48.8274592 2.3274621, 48.8222354 2.3405407, 48.8263774 2.3402824, 48.8243640 2.3278423, 48.8222813 2.3365890, 48.8251835 2.3280702, 48.8264364 2.3398091, 48.8392359 2.3063319, 48.8430967 2.3047973, 48.8433657 2.3114422, 48.8435148 2.3087965, 48.8426176 2.3045363, 48.8412280 2.3124626, 48.8417016 2.3220312, 48.8444632 2.3113763, 48.8439578 2.3133370, 48.8154777 2.3477956, 48.8154932 2.3515928, 48.8161597 2.3363231, 48.8133077 2.3458032, 48.8139826 2.3454287, 48.8146393 2.3489429, 48.8107971 2.3493081, 48.8140114 2.3337281, 48.8141014 2.3475179, 48.8684042 2.4171067, 48.8627663 2.4212156, 48.8719959 2.4252341, 48.8738886 2.4280275, 48.8614662 2.4171635, 48.8694342 2.4171859, 48.8687124 2.4169341, 48.8780805 2.4216411, 48.8565602 2.4165724, 48.8669518 2.4157723, 48.8568621 2.4163587, 48.8703094 2.4206940, 48.8926493 2.3939585, 48.8891291 2.3907548, 48.8895890 2.3922761, 48.8555569 2.4173211, 48.8594501 2.4339856, 48.8591250 2.4355886, 48.8541526 2.4180854, 48.8538772 2.4228563, 48.8538866 2.4211865, 48.8631858 2.4332983, 48.8569641 2.4290677, 48.8580715 2.4353137, 48.8492868 2.4277484, 48.8583096 2.4323016, 48.8546756 2.4213000, 48.8708239 2.3060540, 48.8167661 2.3285350, 48.8442801 2.4335685, 48.8525069 2.4370059, 48.8480265 2.4191578, 48.8494565 2.4324623, 48.8435807 2.4307677, 48.8476023 2.4344021, 48.8441230 2.3564135, 48.8421743 2.3612670, 48.8913410 2.3603495, 48.8945529 2.3635758, 48.8872133 2.3667612, 48.8868542 2.3590078, 48.8909628 2.3615359, 48.8913834 2.3652307, 48.8928326 2.3611571, 48.8821604 2.3189011, 48.8824285 2.3187962, 48.8391686 2.3109456, 48.8768428 2.4045271, 48.8771585 2.4055681, 48.8778084 2.4030780, 48.8353031 2.3389057, 48.8387179 2.3348410, 48.8539196 2.4084397, 48.8558123 2.3528997, 48.8562804 2.3531597, 48.8385454 2.3357931, 48.8487775 2.3737984, 48.8421105 2.3436246, 48.8484110 2.3432090, 48.8439710 2.3453279, 48.8630799 2.3274936, 48.8636877 2.3279312, 48.8695357 2.3416876, 48.8694697 2.3420289, 48.8696274 2.3412758, 48.8430840 2.3403551, 48.8463229 2.3505900, 48.8438126 2.3454672, 48.8430406 2.3457249, 48.8436918 2.3436451, 48.8407370 2.3407878, 48.8410188 2.3409683, 48.8388621 2.3550275, 48.8573938 2.3095174, 48.8620392 2.3077582, 48.8618590 2.3069789, 48.8626465 2.3146531, 48.8624628 2.3173680, 48.8518519 2.3229864, 48.8517794 2.3223521, 48.8527787 2.3157527, 48.8527385 2.3177505, 48.8573407 2.3204463, 48.8499446 2.3217861, 48.8494123 2.3176366, 48.8465734 2.3127269, 48.8792974 2.3420206, 48.8813464 2.3391817, 48.8677573 2.3108853, 48.8660959 2.3165080, 48.8460758 2.3058827, 48.8416099 2.3879001, 48.8644630 2.4007592, 48.8453035 2.3166071, 48.8452805 2.3165425, 48.8451240 2.3151945, 48.8435383 2.3128395, 48.8798754 2.3582529, 48.8262227 2.3303813, 48.8837717 2.3316956, 48.8915499 2.3605260, 48.8550018 2.3125388, 48.8707520 2.3995332, 48.8784387 2.3649003, 48.8814241 2.3625297, 48.8689638 2.3733836, 48.8844782 2.3868316, 48.8647054 2.3809051, 48.8676853 2.3721562, 48.8632870 2.3824074, 48.8453920 2.3132117, 48.8449041 2.3110205, 48.8452229 2.3155627, 48.8477097 2.3117779, 48.8477196 2.3115767, 48.8480472 2.3947692, 48.8529554 2.3813914, 48.8530153 2.3811684, 48.8786894 2.3257337, 48.8685611 2.3053115, 48.8255156 2.3392912, 48.8519843 2.3866965, 48.8488474 2.3783714, 48.8871565 2.3617049, 48.8273896 2.3281103, 48.8325436 2.3237291, 48.8331839 2.3259257, 48.8279878 2.3254484, 48.8414406 2.3468844, 48.8311720 2.3517200, 48.8338878 2.3397983, 48.8485322 2.3824733, 48.8401462 2.3775676, 48.8552909 2.3565856, 48.8544752 2.3607544, 48.8412904 2.3514244, 48.8447360 2.3478715, 48.8473182 2.3484905, 48.8408215 2.3882583, 48.8406761 2.3933858, 48.8357713 2.3875769, 48.8485627 2.3866691, 48.8440841 2.4014301, 48.8443144 2.4020119, 48.8853349 2.3222678, 48.8748244 2.3276144, 48.8447229 2.4125482, 48.8434609 2.4122583, 48.8552361 2.3583063, 48.8550674 2.3546987, 48.8457500 2.3510261, 48.8361628 2.4101190, 48.8381748 2.3976367, 48.8362030 2.3955646, 48.8351978 2.3967217, 48.8533080 2.4010815, 48.8624814 2.3328937, 48.8601441 2.4200508, 48.8786978 2.3497467, 48.8808791 2.3486190, 48.8789469 2.3509225, 48.8543462 2.3467503, 48.8252592 2.4120396, 48.8297549 2.3118834, 48.8875038 2.3421102, 48.8351793 2.3380648, 48.8524830 2.4248592, 48.8671802 2.3504651, 48.8618634 2.4100811, 48.8670146 2.3438358, 48.8602828 2.3469501, 48.8422835 2.3705897, 48.8489252 2.3299898, 48.8285474 2.3778038, 48.8219001 2.4047422, 48.8433630 2.3993165, 48.8790892 2.3528060, 48.8788393 2.3527377, 48.8778096 2.3307598, 48.8267003 2.4022882, 48.8265228 2.4020725, 48.8436332 2.4194524, 48.8251370 2.3245043, 48.8922752 2.3437961, 48.8940337 2.3446352, 48.8565315 2.3918695, 48.8819684 2.3432262, 48.8306327 2.3612256, 48.8834296 2.3531464, 48.8763644 2.3529474, 48.8743441 2.3510936, 48.8703259 2.3630557, 48.8490871 2.3236292, 48.8432370 2.4191274, 48.8432203 2.4194678, 48.8395437 2.4170098, 48.8397820 2.4149747, 48.8587767 2.3184504, 48.8614879 2.3185384, 48.8571293 2.3338018, 48.8483320 2.3530750, 48.8484974 2.3526026, 48.8427186 2.3626495, 48.8456895 2.3527610, 48.8423716 2.3617786, 48.8476188 2.3419587, 48.8908265 2.3499846, 48.8437371 2.3505713, 48.8438952 2.3497958, 48.8382268 2.3465518, 48.8412736 2.3500786, 48.8441404 2.3412975, 48.8449937 2.3508032, 48.8486810 2.3514754, 48.8381596 2.3548607, 48.8440354 2.3463430, 48.8413879 2.3487400, 48.8681320 2.3278504, 48.8679626 2.3271739, 48.8573467 2.3302809, 48.8720061 2.3822431, 48.8700853 2.3873833, 48.8591092 2.4147190, 48.8565252 2.4147927, 48.8193310 2.4084705, 48.8276460 2.4021405, 48.8214365 2.4054340, 48.8230635 2.4129775, 48.8236705 2.4161685, 48.8270160 2.4018190, 48.8216505 2.4151570, 48.8199820 2.4150210, 48.8222835 2.4103795, 48.8197180 2.4161270, 48.8230105 2.3975875, 48.8767410 2.3938898, 48.8769031 2.3945063, 48.8731814 2.3895118, 48.8763891 2.3888862, 48.8546361 2.3664076, 48.8578354 2.3260972, 48.8575078 2.3253228, 48.8353795 2.3867511, 48.8911262 2.3327854, 48.8554191 2.3476608, 48.8537332 2.3481282, 48.8537755 2.3479955, 48.8536511 2.3483919, 48.8536920 2.3482598, 48.8420711 2.3326418, 48.8429871 2.3328540, 48.8478667 2.3282802, 48.8454077 2.3290637, 48.8461736 2.3290387, 48.8447531 2.3305345, 48.8363194 2.3328942, 48.8300731 2.3686179, 48.8296826 2.3678744, 48.8296675 2.3682384, 48.8357250 2.3472947, 48.8359728 2.3460923, 48.8317406 2.3472366, 48.8305748 2.3490624, 48.8315162 2.3466648, 48.8280267 2.3531166, 48.8279245 2.3535702, 48.8285259 2.3538430, 48.8297241 2.3607269, 48.8301790 2.3615119, 48.8299064 2.3610277, 48.8363951 2.3566406, 48.8369504 2.3538779, 48.8884008 2.3334999, 48.8903822 2.3425462, 48.8534472 2.3516225, 48.8725069 2.3849536, 48.8721688 2.3856239, 48.8272224 2.3648210, 48.8225335 2.4132820, 48.8744105 2.3869092, 48.8741271 2.3869625, 48.8771245 2.3845139, 48.8775277 2.3849275, 48.8771261 2.3849300, 48.8915917 2.3455768, 48.8913003 2.3447131, 48.8827842 2.3630058, 48.8254721 2.3329981, 48.8305364 2.3791567, 48.8763165 2.3427507, 48.8186425 2.4135582, 48.8125486 2.3878550, 48.8230146 2.4096740, 48.8937208 2.3515676, 48.8662682 2.3974540, 48.8415882 2.3994023, 48.8370947 2.3950913, 48.8374679 2.3944825, 48.8370759 2.3941218, 48.8710259 2.3902795, 48.8577583 2.3827298, 48.8571801 2.3768693, 48.8574467 2.3768468, 48.8556298 2.3730832, 48.8077063 2.3626064, 48.8381010 2.3148758, 48.8374220 2.3149466, 48.8683047 2.3853240, 48.8685446 2.3851922, 48.8775846 2.3766713, 48.8206949 2.4090773, 48.8473548 2.4318742, 48.8640100 2.3847026, 48.8228980 2.4048193, 48.8223730 2.4086225, 48.8469061 2.4334223, 48.8943791 2.3502329, 48.8822652 2.3624986, 48.8752853 2.3628019, 48.8752047 2.3623837, 48.8751608 2.3622161, 48.8752872 2.3628395, 48.8752880 2.3628798, 48.8751835 2.3622402, 48.8752137 2.3624236, 48.8752609 2.3621534, 48.8751891 2.3621520, 48.8751637 2.3621795, 48.8754027 2.3622483, 48.8753932 2.3622858, 48.8752263 2.3621430, 48.8753882 2.3625815, 48.8753547 2.3624293, 48.8753095 2.3626486, 48.8753959 2.3625353, 48.8753312 2.3626673, 48.8753820 2.3624394, 48.8752913 2.3626221, 48.8753978 2.3625014, 48.8753941 2.3624679, 48.8753604 2.3626580, 48.8269267 2.3621476, 48.8629572 2.4182375, 48.8866946 2.3663960, 48.8968701 2.3795734, 48.8461952 2.4318193, 48.8465374 2.4319275, 48.8463529 2.4273745, 48.8865278 2.3552444, 48.8857716 2.3541044, 48.8504347 2.4314438, 48.8610254 2.4043644, 48.8829422 2.3389787, 48.8827134 2.3392700, 48.8547353 2.4047571, 48.8540245 2.4041009, 48.8531090 2.4041933, 48.8362746 2.3799012, 48.8548077 2.4024914, 48.8571575 2.3234807, 48.8792849 2.3511581, 48.8379027 2.3622168, 48.8896006 2.3518695, 48.8900462 2.3528052, 48.8864490 2.3514284, 48.8536155 2.4272374, 48.8890423 2.3512616, 48.8304857 2.3687811, 48.8174246 2.3742341, 48.8128368 2.3764192, 48.8120404 2.3773825, 48.8148938 2.3807912, 48.8438184 2.3917913, 48.8437068 2.3928909, 48.8439659 2.3917683, 48.8450727 2.3568909, 48.8780035 2.3314460, 48.8778096 2.3307598, 48.8803348 2.3294897, 48.8774056 2.3403228, 48.8781707 2.3386731, 48.8267667 2.3461780, 48.8815116 2.3323814, 48.8359002 2.3851872, 48.8886875 2.3424733, 48.8889906 2.3376891, 48.8869431 2.3340831, 48.8463601 2.3221321, 48.8527181 2.3396862, 48.8527833 2.3410480, 48.8532112 2.3412359, 48.8417730 2.3427614, 48.8450745 2.3528309, 48.8617532 2.3179590, 48.8618560 2.3159779, 48.8206480 2.3248645, 48.8768623 2.3691229, 48.8772883 2.3695438, 48.8771057 2.3693620, 48.8220818 2.3406030, 48.8128298 2.3994381, 48.8094512 2.3568109, 48.8287694 2.4142981, 48.8809374 2.3160134, 48.8807347 2.3164691, 48.8829009 2.4221515, 48.8811100 2.3337815, 48.8597264 2.3157312, 48.8557139 2.3217298, 48.8553446 2.3231883, 48.8785506 2.3181272, 48.8447796 2.3561187, 48.8845399 2.3422905, 48.8365860 2.4088069, 48.8270369 2.3133478, 48.8834526 2.3381247, 48.8350302 2.3229459, 48.8864240 2.3585025, 48.8535383 2.3599226, 48.8891069 2.3528423, 48.8894333 2.3528954, 48.8383829 2.3526435, 48.8497046 2.3472459, 48.8499208 2.3484960, 48.8357495 2.4201011, 48.8518567 2.4315324, 48.8673886 2.3081022, 48.8598793 2.3418182, 48.8585468 2.3050047, 48.8586724 2.3043036, 48.8930516 2.3823863, 48.8734524 2.3184400, 48.8585495 2.3697593, 48.8551214 2.3667794, 48.8720448 2.3638224, 48.8154257 2.3693478, 48.8880359 2.3475513, 48.8883050 2.3474950, 48.8914330 2.3583288, 48.8531376 2.3591975, 48.8534868 2.3580109, 48.8922367 2.3349043, 48.8900253 2.3304354, 48.8829897 2.3212017, 48.8342316 2.3374870, 48.8340099 2.3429189, 48.8274859 2.3801301, 48.8290524 2.3809204, 48.8266786 2.3831216, 48.8721490 2.3074818, 48.8356655 2.3952828, 48.8309355 2.3188357, 48.8169801 2.3326668, 48.8171862 2.3326710, 48.8435052 2.3798226, 48.8739728 2.3816530, 48.8600229 2.4177244, 48.8099338 2.3549803, 48.8763148 2.3956363, 48.8764185 2.3969372, 48.8843112 2.3942965, 48.8774715 2.4094535, 48.8846727 2.3748818, 48.8450405 2.3861897, 48.8450429 2.3868906, 48.8816883 2.3771346, 48.8808497 2.3766792, 48.8815510 2.3750857, 48.8529376 2.3498716, 48.8668278 2.3572924, 48.8364952 2.3553473, 48.8632940 2.3461861, 48.8601711 2.3501538, 48.8755716 2.4302807, 48.8801143 2.3454788, 48.8799075 2.3455690, 48.8277981 2.3154241, 48.8279032 2.3155377, 48.8460593 2.4202732, 48.8491951 2.3058630, 48.8541404 2.4078003, 48.8298857 2.3251080, 48.8805161 2.3447973, 48.8618144 2.3501671, 48.8272097 2.3758474, 48.8133465 2.3730451, 48.8133396 2.3733200, 48.8771319 2.3510066, 48.8155707 2.3618421, 48.8311061 2.3707956, 48.8309407 2.3710819, 48.8773569 2.4091134, 48.8219955 2.3878984, 48.8662111 2.4021275, 48.8122006 2.3740480, 48.8123343 2.3762589, 48.8468517 2.4341743, 48.8278048 2.3670342, 48.8868564 2.3623354, 48.8909946 2.3627629, 48.8372824 2.3536632, 48.8373216 2.3574246, 48.8750669 2.3536609, 48.8692213 2.3188925, 48.8719584 2.3433543, 48.8686047 2.3172472, 48.8436840 2.4276811, 48.8219190 2.3244450, 48.8219850 2.3247398, 48.8219426 2.3245905, 48.8467850 2.3251369, 48.8462836 2.3235558, 48.8511937 2.3222055, 48.8296942 2.3584768, 48.8299997 2.3587358, 48.8299341 2.3586911, 48.8286079 2.3568587, 48.8327500 2.3614988, 48.8278362 2.3125738, 48.8282836 2.3126823, 48.8955616 2.3520134, 48.8809350 2.3264027, 48.8090657 2.3819449, 48.8773216 2.3529467, 48.8285767 2.3615644, 48.8293819 2.3669467, 48.8090347 2.3632916, 48.8947243 2.3931498, 48.8135760 2.3886946, 48.8932259 2.3829888, 48.8512194 2.3187772, 48.8471019 2.3247687, 48.8470001 2.3226929, 48.8417737 2.3651037, 48.8125853 2.3763373, 48.8073168 2.3732555, 48.8522672 2.3477182, 48.8123506 2.3565837, 48.8903238 2.3823622, 48.8844014 2.3542498, 48.8383195 2.3374280, 48.8571958 2.3391696, 48.8431362 2.3363642, 48.8091636 2.3892128, 48.8102440 2.3887092, 48.8100365 2.3889865, 48.8778732 2.3448763, 48.8078587 2.3635380, 48.8089469 2.3605686, 48.8387116 2.3423289, 48.8160201 2.3517436, 48.8151473 2.3517766, 48.8154702 2.3525844, 48.8787317 2.3451434, 48.8639636 2.3365682, 48.8648781 2.3453619, 48.8654608 2.3452436, 48.8654581 2.3447052, 48.8689660 2.3867820, 48.8664038 2.3589370, 48.8520802 2.3391533, 48.8521150 2.3390689, 48.8219073 2.3680204, 48.8762399 2.3589688, 48.8582260 2.3619639, 48.8631176 2.3370916, 48.8911441 2.4016170, 48.8909995 2.4020035, 48.8508082 2.3229326, 48.8791134 2.3511109, 48.8864169 2.3618208, 48.8864340 2.3614342, 48.8629857 2.3772532, 48.8558814 2.3436259, 48.8823814 2.3993385, 48.8880496 2.3766443, 48.8944990 2.3592670, 48.8964589 2.3589627, 48.8527947 2.3434202, 48.8216373 2.3475784, 48.8330815 2.3668374, 48.8216584 2.3558548, 48.8812622 2.3574706, 48.8609269 2.3698207, 48.8424022 2.3750941, 48.8362418 2.3837098, 48.8576851 2.3638759, 48.8322980 2.3569968, 48.8385002 2.3585546, 48.8339976 2.3637695, 48.8464730 2.3488067, 48.8377337 2.3652831, 48.8281622 2.3666304, 48.8315682 2.3419531, 48.8623556 2.3500864, 48.8616089 2.3496811, 48.8621691 2.3497941, 48.8359536 2.3961945, 48.8369700 2.3923213, 48.8367414 2.3931438, 48.8365131 2.3940686, 48.8368162 2.3928761, 48.8367701 2.3930789, 48.8359858 2.3961013, 48.8364507 2.3941584, 48.8359582 2.3720488, 48.8501312 2.3265665, 48.8937959 2.3754227, 48.8311227 2.3287719, 48.8613752 2.3532868, 48.8310687 2.3580834, 48.8376458 2.3597357, 48.8377834 2.3597919, 48.8380568 2.3599624, 48.8844978 2.3727600, 48.8381491 2.3600725, 48.8386642 2.3604752, 48.8742587 2.3804890, 48.8341673 2.3359552, 48.8575005 2.3472864, 48.8371719 2.3182950, 48.8145327 2.3840043, 48.8214447 2.3591422, 48.8210623 2.3592593, 48.8119797 2.3874943, 48.8218804 2.3245686, 48.8531920 2.3604680, 48.8530404 2.3610674, 48.8745907 2.3898579, 48.8534305 2.3611806, 48.8653830 2.3165628, 48.8296129 2.3926750, 48.8515079 2.3168432, 48.8882215 2.3616899, 48.8250915 2.3272543, 48.8693410 2.3746063, 48.8591586 2.3518205, 48.8889374 2.3632101, 48.8968807 2.3803671, 48.8969639 2.3803583, 48.8509181 2.3189475, 48.8542319 2.3268749, 48.8457364 2.3210560, 48.8592075 2.3037055, 48.8507795 2.3360424, 48.8570162 2.3089249, 48.8108774 2.3899630, 48.8206154 2.3475095, 48.8752457 2.3981892, 48.8827000 2.3887807, 48.8950879 2.3531779, 48.8902445 2.3700712, 48.8541664 2.3157121, 48.8541132 2.3157557, 48.8539619 2.3154328, 48.8540177 2.3153477, 48.8541884 2.3154181, 48.8541406 2.3153587, 48.8540042 2.3157232, 48.8539533 2.3156181, 48.8161288 2.3759434, 48.8559512 2.3968571, 48.8519326 2.3362074, 48.8289311 2.3522542, 48.8290515 2.3543309, 48.8483103 2.4071371, 48.8773298 2.3590519, 48.8771212 2.3598815, 48.8774623 2.3585389, 48.8128779 2.3882875, 48.8118029 2.3877262, 48.8119848 2.3869608, 48.8123331 2.3876651, 48.8104708 2.3836750, 48.8785362 2.3899541, 48.8953032 2.3950120, 48.8146340 2.3862288, 48.8917906 2.3880857, 48.8804474 2.3717724, 48.8236528 2.3578565, 48.8294259 2.3490793, 48.8790551 2.3277605, 48.8269893 2.3812961, 48.8735355 2.3941907, 48.8732271 2.3945941, 48.8759609 2.3987521, 48.8430807 2.3520816, 48.8503036 2.4003405, 48.8739041 2.3803935, 48.8848741 2.3903465, 48.8868864 2.3886278, 48.8141540 2.3817936, 48.8125256 2.3789216, 48.8150126 2.3824014, 48.8138255 2.3839438, 48.8182950 2.3790504, 48.8185151 2.3789924, 48.8182424 2.3792963, 48.8827947 2.3766007, 48.8791899 2.4159467, 48.8084189 2.3617428, 48.8765193 2.4054761, 48.8764855 2.4110985, 48.8795536 2.3888039, 48.8419025 2.3689354, 48.8292407 2.3110487, 48.8294654 2.3107293, 48.8418328 2.3267443, 48.8708153 2.3962847, 48.8690877 2.3940459, 48.8691603 2.3947196, 48.8693070 2.3944964, 48.8701494 2.3991414, 48.8712599 2.3980832, 48.8728892 2.3875476, 48.8713725 2.3876685, 48.8729646 2.3884918, 48.8850114 2.3914386, 48.8834688 2.3896341, 48.8831849 2.3891465, 48.8385749 2.3187258, 48.8702712 2.3823122, 48.8722797 2.3807151, 48.8718499 2.3804798, 48.8737574 2.3792665, 48.8775210 2.3961862, 48.8286363 2.3827727, 48.8619086 2.4076898, 48.8621437 2.4083353, 48.8625288 2.4074996, 48.8622745 2.4082713, 48.8387993 2.3824771, 48.8772523 2.3138827, 48.8832218 2.3770399, 48.8898779 2.3548839, 48.8682007 2.3776287, 48.8645929 2.3574911, 48.8423553 2.3450638, 48.8420396 2.3453568, 48.8416997 2.3451499, 48.8418628 2.3455995, 48.8416292 2.3454839, 48.8421950 2.3453702, 48.8424163 2.3444687, 48.8414902 2.3449983, 48.8778259 2.3969489, 48.8881806 2.3808335, 48.8782599 2.3873608, 48.8769600 2.3706426, 48.8748787 2.4038367, 48.8415610 2.3994713, 48.8955969 2.3451522, 48.8467200 2.3470841, 48.8782894 2.3331903, 48.8769906 2.3697835, 48.8596786 2.4069798, 48.8594021 2.3997394, 48.8601141 2.4028795, 48.8649288 2.3937547, 48.8642614 2.3918586, 48.8600166 2.4034662, 48.8513183 2.3726630, 48.8511850 2.3729689, 48.8584409 2.3999616, 48.8587442 2.3995311, 48.8586283 2.3998491, 48.8467973 2.4162423, 48.8772545 2.4007508, 48.8746784 2.4114959, 48.8815604 2.4234195, 48.8624222 2.3452825, 48.8873550 2.3868767, 48.8672905 2.3881073, 48.8671749 2.3895295, 48.8675720 2.3882336, 48.8578750 2.3835897, 48.8678713 2.3631980, 48.8458363 2.3888759, 48.8460746 2.3893660, 48.8463164 2.3899013, 48.8131691 2.3864703, 48.8711200 2.3063909, 48.8565883 2.3770985, 48.8580355 2.3622000, 48.8660080 2.3494045, 48.8707771 2.3829242, 48.8711679 2.3773785, 48.8698276 2.3859214, 48.8886275 2.3399810, 48.8878174 2.3802669, 48.8839612 2.4074899, 48.8785522 2.3875804, 48.8764001 2.3244487, 48.8765345 2.3255004, 48.8644162 2.4166565, 48.8641786 2.4168077, 48.8637185 2.4171126, 48.8764136 2.3254701, 48.8477909 2.3729992, 48.8610637 2.4147324, 48.8470915 2.3545448, 48.8843070 2.4095155, 48.8837052 2.4019539, 48.8747479 2.3774714, 48.8543850 2.3746605, 48.8465201 2.3909061, 48.8884190 2.3509459, 48.8429142 2.3888918, 48.8486642 2.3765497, 48.8494664 2.3770795, 48.8491775 2.3768840, 48.8516553 2.3840309, 48.8521774 2.3838687, 48.8531390 2.3810526, 48.8648904 2.3619769, 48.8274262 2.3844687, 48.8864089 2.3394045, 48.8548894 2.3230863, 48.8553485 2.3226711, 48.8646410 2.3612898, 48.8671750 2.3842392, 48.8653713 2.3869699, 48.8648764 2.3870167, 48.8288844 2.3104769, 48.8759281 2.3755990, 48.8759967 2.3763917, 48.8761354 2.3257216, 48.8762191 2.3264601, 48.8760388 2.3249520, 48.8759526 2.3241920, 48.8764276 2.3255833, 48.8763555 2.3254788, 48.8764199 2.3260226, 48.8646950 2.3264208, 48.8643489 2.3274868, 48.8759552 2.3241977, 48.8761087 2.3254243, 48.8760084 2.3245401, 48.8761581 2.3259148, 48.8501059 2.3510768, 48.8773056 2.3857997, 48.8661527 2.3600768, 48.8298558 2.3774780, 48.8296995 2.3672780, 48.8554636 2.3105772, 48.8568148 2.3113293, 48.8562582 2.3111517, 48.8660088 2.3153234, 48.8661245 2.3148417, 48.8495021 2.3387228, 48.8685875 2.3910098, 48.8675013 2.3586252, 48.8626304 2.4145774, 48.8820415 2.3814540, 48.8159989 2.3944937, 48.8116512 2.3826700, 48.8175955 2.3720615, 48.8174368 2.3722403, 48.8088810 2.3860513, 48.8094283 2.3841722, 48.8753670 2.3840906, 48.8764162 2.3891318, 48.8753875 2.3271144, 48.8751176 2.3271940, 48.8751114 2.3268883, 48.8515973 2.4103815, 48.8715526 2.3938305, 48.8749885 2.3914345, 48.8658566 2.3937475, 48.8727663 2.3936230, 48.8663876 2.3926048, 48.8878683 2.4007789, 48.8859443 2.3291469, 48.8147618 2.3914715, 48.8776820 2.3819290, 48.8780466 2.3820570, 48.8779501 2.3820356, 48.8447339 2.3736579, 48.8447463 2.3736739, 48.8443741 2.3754417, 48.8450852 2.3735360, 48.8448754 2.3733160, 48.8525138 2.3902198, 48.8526527 2.3909503, 48.8446538 2.3734868, 48.8282157 2.3138616, 48.8659941 2.3932440, 48.8366816 2.3352037, 48.8680642 2.3744905, 48.8799868 2.4107824, 48.8370609 2.3188074, 48.8596331 2.3402907, 48.8791865 2.3962914, 48.8800883 2.3966161, 48.8789953 2.3961493, 48.8797503 2.3965184, 48.8791295 2.3963574, 48.8799656 2.3966919, 48.8788628 2.3960550, 48.8789728 2.3962383, 48.8786511 2.3959011, 48.8794871 2.3965577, 48.8786364 2.3960059, 48.8802377 2.3966594, 48.8798986 2.3965613, 48.8781700 2.3957367, 48.8779412 2.3955240, 48.8583575 2.3454210, 48.8450181 2.3739447, 48.8444916 2.3730546, 48.8442721 2.3763891, 48.8443205 2.3764667, 48.8244117 2.3278513, 48.8596679 2.3619976, 48.8455345 2.3864379, 48.8600742 2.3522298, 48.8442798 2.3761425, 48.8443032 2.3761619, 48.8602457 2.3523428, 48.8654218 2.4170818, 48.8656442 2.4168272, 48.8656689 2.4164755, 48.8653064 2.4163068, 48.8654049 2.4169757, 48.8655918 2.4171655, 48.8656836 2.4168349, 48.8606413 2.3526521, 48.8600944 2.3519685, 48.8611650 2.3528203, 48.8601407 2.3522685, 48.8345196 2.3774394, 48.8333695 2.3793001, 48.8346712 2.3775992, 48.8351691 2.3770840, 48.8354828 2.3766566, 48.8369174 2.3751044, 48.8372520 2.3747580, 48.8443949 2.3758895, 48.8444797 2.3759767, 48.8444118 2.3759726, 48.8468574 2.3115883, 48.8409751 2.3143380, 48.8418080 2.3135205, 48.8538220 2.3039217, 48.8521690 2.3015397, 48.8449422 2.3117076, 48.8185669 2.3650131, 48.8458905 2.3061855, 48.8455829 2.3086474, 48.8453505 2.3079370, 48.8457209 2.3076485, 48.8454608 2.3084333, 48.8112503 2.3911261, 48.8542240 2.3047930, 48.8387965 2.3219353, 48.8390322 2.3210621, 48.8298456 2.3773358, 48.8117900 2.3828265, 48.8372540 2.3630681, 48.8520026 2.3794438, 48.8782074 2.3485680, 48.8390019 2.3638914, 48.8388802 2.3643925, 48.8387780 2.3640572, 48.8391111 2.3642330, 48.8291932 2.3773401, 48.8291952 2.3773475, 48.8293903 2.3771606, 48.8293928 2.3771666, 48.8292743 2.3775086, 48.8294581 2.3773431, 48.8294622 2.3773540, 48.8292784 2.3775217, 48.8291122 2.3776686, 48.8290329 2.3774941, 48.8092005 2.3744837, 48.8086439 2.3778223, 48.8081747 2.3771928, 48.8293059 2.3772402, 48.8293140 2.3772317, 48.8109366 2.3887060, 48.8293797 2.3774182, 48.8293879 2.3774097, 48.8446017 2.3735558, 48.8446240 2.3735877, 48.8921220 2.3594231, 48.8286803 2.3777063, 48.8286779 2.3776985, 48.8287114 2.3776801, 48.8287072 2.3776700, 48.8285638 2.3778117, 48.8285662 2.3778194, 48.8285904 2.3777994, 48.8285862 2.3777892, 48.8176346 2.3716773, 48.8180156 2.3934905, 48.8168306 2.3942434, 48.8158466 2.3945982, 48.8628620 2.4160827, 48.8629393 2.4162059, 48.8544772 2.3768956, 48.8096139 2.3874318, 48.8964308 2.3748622, 48.8964462 2.3748507, 48.8964384 2.3748564, 48.8963051 2.3742570, 48.8959917 2.3728080, 48.8968009 2.3752691, 48.8966417 2.3747867, 48.8961372 2.3732518, 48.8966495 2.3747810, 48.8961448 2.3732460, 48.8968189 2.3753486, 48.8959575 2.3727383, 48.8967937 2.3744124, 48.8521333 2.3177200, 48.8523394 2.3177224, 48.8529135 2.3167601, 48.8138788 2.3351771, 48.8128059 2.3354526, 48.8717602 2.3914301, 48.8564265 2.3525270, 48.8556537 2.3446071, 48.8543637 2.3467385, 48.8600412 2.3413119, 48.8664194 2.3321315, 48.8672834 2.3384559, 48.8668152 2.3553741, 48.8648904 2.3619769, 48.8398451 2.3417030, 48.8563449 2.3387717, 48.8568441 2.3371043, 48.8485531 2.3371422, 48.8559753 2.3906942, 48.8439005 2.3362100, 48.8680414 2.3235560, 48.8277638 2.3758369, 48.8142066 2.3818132, 48.8407259 2.3221523, 48.8798182 2.3497802, 48.8499950 2.4366773, 48.8121167 2.3776573, 48.8927888 2.3646984, 48.8456220 2.4245835, 48.8673569 2.3780427, 48.8126062 2.3776044, 48.8761075 2.3574980, 48.8931899 2.3643143, 48.8880610 2.3765878, 48.8553966 2.3450136, 48.8518176 2.3625735, 48.8193348 2.3369542, 48.8469042 2.3571435, 48.8786169 2.3204526, 48.8799255 2.3248890, 48.8885906 2.3386572, 48.8561745 2.3862726, 48.8683446 2.3937250, 48.8160367 2.3947733, 48.8117900 2.3828433, 48.8176071 2.3718416, 48.8869617 2.3281294, 48.8531145 2.3031375, 48.8113631 2.3882756, 48.8107040 2.3882077, 48.8168230 2.3928886 +10 +yes +48.8756710 2.3261070, 48.8833658 2.3279263, 48.8604416 2.3503543, 48.8299030 2.3769431, 48.8692051 2.2839987, 48.8733783 2.3097112, 48.8835420 2.3320949, 48.8620454 2.3494700, 48.8671733 2.3471661, 48.8470091 2.2860727, 48.8736489 2.3149511, 48.8494586 2.2981124, 48.8589870 2.3482181, 48.8509791 2.3426696, 48.8568020 2.3549650, 48.8526188 2.3716745, 48.8761413 2.3445362, 48.8538792 2.3707631, 48.8706901 2.3335642 +yes +48.8347131 2.2679977, 48.8500136 2.3667732, 48.8681145 2.3380654, 48.8359896 2.2543613, 48.8648963 2.3741522, 48.8967040 2.3381418, 48.8626553 2.3503813, 48.8351044 2.3931231, 48.8461741 2.3758496, 48.8679797 2.3012890, 48.8765890 2.3553673, 48.8311173 2.3166315, 48.8680507 2.4015447, 48.8711850 2.4004090, 48.8758607 2.4010867, 48.8649034 2.3999292, 48.8372144 2.3529137, 48.8300678 2.3017796, 48.8279475 2.2677537, 48.8746753 2.3305365, 48.8280761 2.2982196, 48.8327631 2.3007414, 48.8361118 2.3069082, 48.8416104 2.2988863, 48.8302910 2.2937263, 48.8313277 2.2916043, 48.8317429 2.3726646, 48.8359742 2.3867660, 48.8519590 2.3400717, 48.8484401 2.3413672, 48.8589381 2.3504712, 48.8445443 2.3220878, 48.8217982 2.3682935, 48.8570291 2.3152687, 48.8459525 2.3549704, 48.8514526 2.3266647, 48.8531899 2.3355676, 48.8494503 2.3422354, 48.8600140 2.3493801, 48.8649810 2.2947036, 48.8650219 2.3030534, 48.8378229 2.3513432, 48.8434559 2.3050545, 48.8632408 2.2863698, 48.8583599 2.3584734, 48.8388790 2.3400000, 48.8444050 2.3332730, 48.8652543 2.3574520, 48.8763782 2.3511249, 48.8876946 2.3372076, 48.8339398 2.3043394, 48.8340044 2.3054521, 48.8917396 2.3268231, 48.8917484 2.3268020, 48.8595100 2.3674754, 48.8504626 2.3597749, 48.8831042 2.3348216, 48.8817724 2.3397911, 48.8817799 2.3397884, 48.8463178 2.2805067, 48.8327500 2.3614988, 48.8746784 2.4114959 +239 +49.4333190 8.6867073, 49.4189644 8.6822373, 49.4199838 8.7597906, 49.4227392 8.5971994, 49.4313284 8.6416542, 49.3967496 8.6929283, 49.3758602 8.6941971, 49.4216061 8.6481916, 49.4437081 8.7590947, 49.4014041 8.6551906, 49.4213792 8.7463131, 49.3924724 8.6994716, 49.4143929 8.7631903, 49.3743420 8.6581351, 49.4078072 8.7077293, 49.4127417 8.7657609 +24 +56.1631627 -4.0361299, 56.0579055 -2.7157742, 56.3530826 -3.9635371, 55.8287678 -4.2703258, 55.8471806 -4.3930825, 56.1647483 -4.0417513, 55.8629358 -3.5615468, 56.3028673 -3.0858302, 55.9454585 -3.2689721 +152113 +1882 +yes +Royal Yacht Britannia, Talbot Rice Gallery, Prisoners of War Museum, Royal Scottish Academy, Gallery, South Queensferry Museum, The Maltings, Museum on the Mound, Surgeon Hall Museum, National Museum of Scotland, National Museum of Scotland, Dynamic Earth, The Queen's Gallery, St Cecilia's Hall, Barnton Quarry R4 ROTOR Complex, The Museum of Fire, Barnton Quarry SOC, The People's Story, Trinity Apse, RBGE Herbarium & Library, Museum of Edinburgh, Writers' Museum +2.391566049528703 +83 +49.3855726 8.6640495, 49.4168625 8.6756639, 49.4071193 8.6919900, 49.4284156 8.6874863, 49.4302144 8.6880405, 49.4276933 8.6860070, 49.4315638 8.7010326, 49.4296821 8.6938275, 49.4306782 8.6925479, 49.4281154 8.6828785, 49.4302586 8.6908941, 49.4297762 8.6979174, 49.4309794 8.6977655, 49.4318269 8.7053464, 49.4300194 8.6994748, 49.4168759 8.6768373, 49.4127267 8.6759075, 49.4194980 8.6698006, 49.4191883 8.6668931, 49.4190627 8.6671538, 49.4195733 8.6753773, 49.4194276 8.6698926, 49.4172938 8.6611640, 49.4172721 8.6610628, 49.4187478 8.6629979, 49.4187979 8.6627535, 49.4141544 8.6690244, 49.4204352 8.6593168, 49.4204555 8.6593989, 49.4170560 8.6767755, 49.3937693 8.7085194, 49.3938278 8.7086843, 49.4264566 8.6606563, 49.4224030 8.6583261, 49.4225946 8.6583220, 49.4134695 8.6701162, 49.4141557 8.6687509, 49.4129744 8.6753927, 49.4134157 8.6700445, 49.4147123 8.6663554, 49.4146345 8.6663168, 49.4152208 8.6752144, 49.4137552 8.6734387, 49.4136968 8.6737990, 49.4152504 8.6634751, 49.4153592 8.6633318, 49.3868240 8.6666546, 49.3868275 8.6664977, 49.4197775 8.6517101, 49.4199177 8.6518537, 49.4384234 8.6338501, 49.4358366 8.6401002, 49.4327492 8.6421461, 49.4329387 8.6416659, 49.4179180 8.7590243, 49.4206903 8.7598065, 49.4225411 8.7563401, 49.4226681 8.7640695, 49.4169289 8.7611198, 49.4174495 8.7631349, 49.4192923 8.7353176, 49.4176518 8.7654281, 49.4261182 8.7466617, 49.4173235 8.7526484, 49.4228054 8.7602424, 49.4173443 8.7480292, 49.4174366 8.7440418, 49.4174907 8.7438854, 49.4173435 8.7492818, 49.4159882 8.7159505, 49.4201498 8.7291026, 49.4152724 8.7089320, 49.4152263 8.7091544, 49.4161997 8.7168545, 49.4201242 8.7301762, 49.3954264 8.6432043, 49.4095587 8.6406677, 49.4094042 8.6407930, 49.4103049 8.7749034, 49.4136480 8.7107879, 49.4137160 8.7131886, 49.4182458 8.7277973, 49.4157033 8.7420650, 49.4152701 8.7477273, 49.4160568 8.7561098, 49.4155446 8.7610937, 49.3999244 8.6912464, 49.4002825 8.6911005, 49.4347422 8.6819187, 49.4070390 8.6405121, 49.4069714 8.6403637, 49.4027266 8.6409639, 49.4025395 8.6408427, 49.4133018 8.7430485, 49.4012674 8.6413844, 49.3942358 8.6465359, 49.4092508 8.6685941, 49.3993998 8.6479989, 49.3982943 8.6422644, 49.3974295 8.6485846, 49.3959164 8.6490146, 49.4021200 8.6471601, 49.4121061 8.6413161, 49.4121708 8.6412132, 49.4219707 8.6425694, 49.4222511 8.6425281, 49.4235762 8.6458169, 49.4260817 8.6440645, 49.4265588 8.6449577, 49.4268035 8.6470831, 49.4269829 8.6469862, 49.4260042 8.6475244, 49.4240544 8.6489779, 49.4239525 8.6492278, 49.4168743 8.6533143, 49.4161379 8.6535560, 49.4124076 8.6582474, 49.4118670 8.6588264, 49.4100899 8.6637778, 49.4097893 8.6645706, 49.4085503 8.6677104, 49.4026633 8.6438993, 49.4024410 8.6437828, 49.4061329 8.6714869, 49.4043662 8.6769558, 49.4042794 8.6767159, 49.4043928 8.6767032, 49.4040938 8.6777606, 49.4041378 8.6780055, 49.4041963 8.6783706, 49.4075933 8.6747057, 49.4075056 8.6748798, 49.4078534 8.6762963, 49.4079283 8.6756934, 49.4078625 8.6803507, 49.4079068 8.6803518, 49.4079624 8.6851808, 49.4084050 8.6884254, 49.4084670 8.6883986, 49.4101809 8.6928995, 49.4099846 8.6928532, 49.4095745 8.6932967, 49.4093811 8.6931694, 49.4092112 8.6929959, 49.4090525 8.6927592, 49.4302825 8.6446990, 49.4303150 8.6447831, 49.4288899 8.6456839, 49.4289721 8.6457461, 49.3786078 8.6590335, 49.3787155 8.6590931, 49.3810931 8.6606845, 49.3811782 8.6604324, 49.4149281 8.7582758, 49.4111209 8.7057655, 49.4173023 8.6816986, 49.4174607 8.6820724, 49.4130422 8.7053701, 49.4132415 8.7055842, 49.4133567 8.7058522, 49.4173515 8.6908888, 49.4171632 8.6912051, 49.4119771 8.6972359, 49.4120763 8.6972060, 49.4055633 8.6828676, 49.4049949 8.6822918, 49.4129282 8.7027762, 49.4126418 8.7016223, 49.4090720 8.7054522, 49.4084187 8.6986054, 49.4138680 8.6938162, 49.4069337 8.6900774, 49.4068742 8.6934775, 49.4088905 8.7053904, 49.4092125 8.7080457, 49.4095401 8.7091480, 49.4133887 8.7086161, 49.4151598 8.7205422, 49.4182563 8.7275278, 49.4157984 8.7426431, 49.4153793 8.7473689, 49.4104435 8.7751466, 49.4136898 8.7167012, 49.4124611 8.7128500, 49.4114089 8.7119309, 49.4112162 8.7113846, 49.4080587 8.6999304, 49.3937235 8.6855690, 49.3937838 8.6859112, 49.3899388 8.6862253, 49.3900908 8.6859962, 49.3858312 8.6864369, 49.3860976 8.6865748, 49.3819530 8.6822724, 49.3819840 8.6821416, 49.3804922 8.6881021, 49.3800650 8.6821589, 49.3777175 8.6772835, 49.3771295 8.6773280, 49.3738122 8.6784447, 49.3736962 8.6791919, 49.3737490 8.6815039, 49.3738435 8.6818076, 49.3766641 8.6824455, 49.3784086 8.6792130, 49.3800355 8.6822461, 49.4066901 8.6710527, 49.4040171 8.6483480, 49.4057590 8.6522413, 49.4064411 8.6585122, 49.4051217 8.6683796, 49.4253727 8.6567163, 49.4253613 8.6568355, 49.4234438 8.6461975, 49.4188582 8.6442546, 49.4189879 8.6443079, 49.4005092 8.6783953, 49.4016334 8.6747771, 49.4014940 8.6745939, 49.3971927 8.6809442, 49.3961779 8.6783236, 49.3914363 8.6753605, 49.3911604 8.6749842, 49.3843368 8.6660809, 49.3842531 8.6664769, 49.3825480 8.6626222, 49.3831403 8.6627909, 49.3772388 8.6689312, 49.3773229 8.6689436, 49.3781667 8.6723583, 49.3781350 8.6726299, 49.3787183 8.6751466, 49.3788110 8.6751258, 49.3738788 8.6865123, 49.3740405 8.6860545, 49.3655576 8.6888060, 49.3658553 8.6886497, 49.3670459 8.6823339, 49.3654285 8.6795857, 49.3650262 8.6826858, 49.3664996 8.6849313, 49.3597566 8.6880203, 49.3598527 8.6880176, 49.3648944 8.6867095, 49.3647436 8.6865978, 49.3653795 8.6868243, 49.3651452 8.6862208, 49.3611702 8.7032598, 49.3612894 8.7033782, 49.3629117 8.7034330, 49.3631114 8.7036796, 49.3641284 8.7054900, 49.3641187 8.7058135, 49.3660541 8.7047650, 49.3657773 8.7051635, 49.3704005 8.7052141, 49.3695318 8.7040962, 49.3691105 8.7041929, 49.3693141 8.7052062, 49.3729729 8.7037385, 49.3731400 8.7035823, 49.3739301 8.7029888, 49.3721274 8.7013964, 49.3721220 8.7015090, 49.3740113 8.7029918, 49.4281502 8.6876267, 49.4054462 8.6926553, 49.4055795 8.6925319, 49.4020509 8.6915578, 49.4025059 8.6915946, 49.3969358 8.6946462, 49.3969527 8.6948626, 49.3962708 8.6967836, 49.3961279 8.6969793, 49.3887992 8.7077330, 49.3889428 8.7075494, 49.3899181 8.7053132, 49.3901409 8.7050848, 49.3774334 8.6874070, 49.3800760 8.7238428, 49.3802417 8.7237658, 49.3846718 8.7336368, 49.3847273 8.7335051, 49.3881453 8.7311804, 49.3883857 8.7310699, 49.3893290 8.7351786, 49.3895883 8.7352661, 49.4006965 8.7274404, 49.4007968 8.7272657, 49.4033828 8.7277656, 49.3805204 8.6870977, 49.3805140 8.6873637, 49.4589515 8.7514129, 49.3782108 8.7043138, 49.3761850 8.7067807, 49.3723805 8.7061810, 49.4191756 8.7354062, 49.4174285 8.7528884, 49.4192238 8.7569340, 49.4192230 8.7568052, 49.4225640 8.7538372, 49.4220804 8.7546816, 49.4251381 8.7519780, 49.4253655 8.7515645, 49.4280034 8.7495084, 49.4284732 8.7495741, 49.4315730 8.7477819, 49.4318477 8.7473809, 49.4348206 8.7492267, 49.4346751 8.7493846, 49.4376523 8.7520801, 49.4376248 8.7519489, 49.4444855 8.7541278, 49.4441710 8.7537297, 49.4482465 8.7533745, 49.4482704 8.7532635, 49.4499197 8.7541013, 49.4504464 8.7545196, 49.4230856 8.7427679, 49.4261317 8.7465175, 49.4302597 8.7467416, 49.4302371 8.7468460, 49.4164575 8.7655388, 49.4137204 8.6940432, 49.4263179 8.7597527, 49.4240075 8.7578458, 49.4221501 8.7604263, 49.4211341 8.7608916, 49.4196712 8.7607872, 49.4186692 8.7629025, 49.4178651 8.7612530, 49.4178820 8.7611514, 49.4149816 8.7726518, 49.4144395 8.7746592, 49.4135295 8.7754971, 49.4098676 8.7743915, 49.3737160 8.6879001, 49.4129531 8.6764014, 49.4128723 8.6767666, 49.3838528 8.7099294, 49.4157501 8.7290618, 49.3726463 8.6154130, 49.3728339 8.6138554, 49.4120632 8.7372505, 49.4134397 8.7383386, 49.4112928 8.7421773, 49.4174337 8.6856825, 49.3984594 8.6893414, 49.3935028 8.6864962, 49.3936030 8.6864812, 49.4171447 8.7317364, 49.3838673 8.6822397, 49.3837731 8.6820911, 49.4154769 8.7343957, 49.4155063 8.6920455, 49.4157703 8.6921648, 49.4124517 8.7507225, 49.4068321 8.7149530, 49.4070152 8.7149103, 49.4062811 8.7145104, 49.4178951 8.7278057, 49.4009711 8.7136432, 49.3741809 8.6875901, 49.3998313 8.6768307, 49.3867786 8.6622115, 49.3867521 8.6619723, 49.4150504 8.7200383, 49.3955093 8.7094471, 49.4064011 8.6905312, 49.4064324 8.6907065, 49.4064641 8.6908840, 49.4064968 8.6910579, 49.4088954 8.7128442, 49.4098287 8.6928288, 49.4131172 8.7212488, 49.4049329 8.6756419, 49.4182044 8.7563075, 49.4302758 8.6879496, 49.4173175 8.6870887, 49.3588268 8.7045612, 49.4014043 8.6725252, 49.3962812 8.6769601, 49.3993531 8.6716017, 49.3994314 8.6716997, 49.4042522 8.6786859, 49.4038577 8.6765425, 49.4047148 8.6787123, 49.3615177 8.7052485, 49.3692511 8.7041089, 49.3769454 8.6654592, 49.4048572 8.6761515, 49.4049714 8.6760919, 49.4050841 8.6755115, 49.3919748 8.6758663, 49.4192296 8.6763297, 49.4016186 8.6731490, 49.3813474 8.7062072, 49.3784192 8.6931866, 49.4063962 8.6915499, 49.4050422 8.6812130, 49.4221737 8.7059025, 49.3866840 8.6624233, 49.3867622 8.6626209, 49.4339873 8.6824450, 49.4276629 8.6834280, 49.4158996 8.7321408, 49.4087518 8.7006247, 49.3964529 8.7236965, 49.4150388 8.7362637, 49.3791357 8.6915248, 49.3745254 8.7026890, 49.4006005 8.7273697, 49.3852577 8.6732095, 49.3866278 8.6732356, 49.3960894 8.6778986, 49.4175198 8.7655701, 49.3767313 8.6475373, 49.3893079 8.6624288, 49.4279689 8.6841899, 49.3834016 8.6790396 +4 +8 +Cowdenbeath, South Queensferry, Linlithgow, Kincardine, Broxburn, Grangemouth, Bo'ness, Inverkeithing, Dalgety Bay, Rosyth, Haddington, Musselburgh, Cockenzie and Port Seton, Gullane, Prestonpans, Tranent, Polmont +yes +0 +Holiday Inn +125 +yes +57 +48.8210997 2.3589704, 48.8791473 2.3474694, 48.8645853 2.3050980, 48.8367928 2.3780749, 48.8188321 2.4576115, 48.8323659 2.2806907, 48.8608636 2.4139162, 48.8857931 2.2880907, 48.8964346 2.3097184, 48.8899579 2.3961548, 48.8235224 2.3100404, 48.8543067 2.2543634, 48.8220232 2.3795780, 48.8537201 2.3564387, 48.8658546 2.3540003, 48.8664342 2.2684904, 48.8260164 2.2988457, 48.8976500 2.3315770, 48.8374241 2.3354339, 48.8162364 2.3612816, 48.8264133 2.3883667, 48.8459982 2.4143565 +yes +10 +48.8561996 2.4042235 +Parking Alban Satragne - Magenta, Parking Hôtel de Ville, Lobau Rivoli, Parking Lecourbe - Mairie du XVème, Maubert Collège des Bernardins, Parking Marché Saint-Germain, Lutèce, Saint-Michel, Parking Sèvres-Babylone, Saint-Sulpice, Parking Bastille, Parking Aquaboulevard, Parking Gaité-Montparnasse, Rennes Montparnasse, Lyon Diderot, Parc Paris-Lyon, Parc Beaubourg, Saint-Germain des Prés, Garage Sully, Bac-Montalembert, Kléber Longchamp, Parking de l'Europe, Madeleine Tronchet, Berri Ponthieu, Garage Mansart, Parc Méditérannée, Parc Vincent Auriol - Bibliothèque, Bourse, Citroën Cévennes, Pasteur-Montparnasse, Hector Malot, Lobau Rivoli, Petits Champs, Opéra Bastille, Saint-Éloi, Saint-Germain l'Auxerrois, Le Louvre Parking, Sébastopol, Pyramides, Parking Pyramides, Vendôme, Réaumur Saint-Denis, Centre Pompidou, Baudoyer, Saint-Martin, Daumesnil, Rond-Point, Concorde, Concorde, Malesherbes Anjou, Malesherbes Anjou, Franz Liszt, Haussmann - Printemps, Bergson, Villiers, Haussmann Berri, Haussmann Berri, Claridge, Élysées Ponthieu, George V, Champs-Élysées - George V, Berri - Washington, Champs-Élysées, Champs Élysée Pierre Charron, François 1er, Alma Georges V, Alma Georges V, Marceau Étoile, Étoile Friedland, Étoile Friedland, Hoche, Hoche, Ternes, holiday inn - parking, Parking Cité des Sciences de la Villette, Parking Zenpark Rue Bichat, Grands Moulins, Patriarches, Parking Zenpark Hôpital Necker, Étoile - Foch, Étoile - Foch, Porte Maillot, Étoile - Foch, Passy, Montholon, B, Soufflot Panthéon, 202, Lagrange-Maubert, Soufflot Panthéon, Gay-Lussac, A, C, La Tour Maubourg, Invalides, Haussmann - Galeries Lafayette, Parking Meyerbeer-Opéra, Parking Du Mail, Gare du Nord, Euronort Lariboisière, Ledru Rollin Parking SA, Faubourg Saint-Antoine, Leroy Merlin, Picpus Nation, Tolbiac-Bibliothèque, Pont Marie, Haussman Printemps, Ternes, Les parking du midi, Parking Anvers, Parking Turbigo - Saint-Denis, Gare du Nord, Parking Bercy Lumière, Parking Forum des Halles, Parking Zenpark - Rue de Bagnolet, Bercy - Autocars, Gare du Nord, Alhambra, Océane, Tour Montparnasse, Bercy Saint-Émilion, Grand Garage Duchemin, Parking Saint-Lazare - Rue de Rome, Mac-Mahon, Mac-Mahon, Ternes, Carnot, Carnot, Champerret Yser, Porte des Lilas, Parking Camille Desmoulins, Parking Zenpark Chevaleret, Custine Automobiles, Lebouteux 13, La Villette Cité de la Musique, Gare de l'Est - P1 Alsace, Gare de l'Est - P2 Saint-Martin, Parking Public Bercy (Novotel - Ibis), Parking Notre-Dame, Parking Zenpark Alexandre Dumas, Parking Zenpark Bastille, Parking Zenpark Bercy, Parking Zenpark Caumartin, Parking Zenpark Château, Parking Zenpark Cité Blanche, Parking Zenpark Eure, Parking Zenpark Grands Boulevards, Parking Zenpark Stalingrad, Parking Zenpark Saint-Michel, Parking Zenpark - Grands Boulevards, Parking Zenpark Bercy, Parking Zenpark Neuve Tolbiac, Parking Zenpark Quai de Seine, Parking Zenpark Champs-Elysées - Roosevelt, Zenpark Paris - Nationale, Zenpark Paris - Gare Montparnasse, Parc Beaubourg, Parking Ecole de Médecine, Parking Robert-Debré, Parking Mairie du 17ème, Parking Porte d'Orléans, Parking Rivoli-Sébastopol, Parking Reuilly-Diderot, Parking Bercy, Parking Méditerranée, Parking Saint-Eustache, Novotel, Berger, Parking Goutte d'Or, Parking Zenpark Buttes-Chaumont - Crimée, Parking Zenpark Marx Dormoy, Parking Zenpark Montmartre-Clichy, Parking Zenpark Porte d’Aubervilliers, Parking Zenpark Campo-Formio, Parking des Récollets, Athos, Tolbiac Bibliothèque, Parking Bercy Lumière, Parking Zenpark Reuilly-Diderot, Parking Zenpark - Paris - Guy Môquet, Parking Maine Montparnasse, Parking Paris 19, Parking Zenpark Paris - Bastille - Thiéré, Parking Zenpark Paris - Bibliothèque François Mitterrand, Zenpark Paris - Bercy - Gare de Lyon, Parking Zenpark Paris - Porte de Pantin, Parking Clichy-Montmartre, Parking Gare de Bercy, parking souterrain de Radio France, Port de la Conférence, Cour de l'Est, Parking du Pont de l'Europe, Parc Trinité, Lilas Box, Saxe, Maillot-Pereire, Esplanade Claude Luter, Dépose minute, Parking Auguste Blanqui Abonnés, Pasteur 2, Pasteur 1, Parking Joffre +Azerbaijan, El Salvador, Mio, Mitte-Ndnn-Bar, Berlin History, Kesha, O - Bar +27 +55.9162285 -3.2851455, 55.9407230 -3.2810409, 55.8845441 -3.3397807, 55.9053902 -3.1342693, 55.9714310 -3.2540033, 55.9363799 -3.1799532, 55.9331942 -3.1367474, 55.9426609 -3.1889897, 55.9134798 -3.1349607, 55.9400847 -3.2183565, 55.9552887 -3.4015520, 55.8960844 -3.3110681, 55.9366047 -3.1798091, 55.9322251 -3.1281008, 55.9087640 -3.3221593, 55.9550388 -3.1422629, 55.9514274 -3.1780862, 55.9482833 -3.1925126, 55.9485816 -3.1916892, 55.9320783 -3.1797444, 55.9288864 -3.2099560, 55.9372576 -3.2484056, 55.9613259 -3.1814202, 55.9754615 -3.1800085, 55.9908863 -3.4005664, 55.9052901 -3.2234270, 55.9714662 -3.2541142, 55.9616399 -3.2609726, 55.9767290 -3.2268402, 55.9067248 -3.2514090, 55.9554111 -3.2871171, 55.9589115 -3.2077864, 55.9484995 -3.1924483, 55.9335462 -3.2128049, 55.9221857 -3.3804952, 55.9533727 -3.1167623, 55.9665186 -3.2057192 +48.8347649 2.4100576, 48.8454066 2.3605950 +yes +55.9676146 -3.1851220, 55.9389497 -3.1762486, 55.9342639 -3.1910771, 55.9468366 -3.1927193, 55.9242098 -3.2136549, 55.9267237 -3.2541012, 55.9526315 -3.2227477, 55.9543654 -3.2231640, 55.9138101 -3.1625880, 55.9139003 -3.1561271, 55.9021949 -3.1741206, 55.9311802 -3.1650916, 55.9535070 -3.1763750, 55.9591815 -3.2287132, 55.9369214 -3.2287710, 55.9293858 -3.1242296, 55.9546952 -3.1369685, 55.9449272 -3.0905058, 55.9265280 -3.1510008, 55.9668042 -3.1974105, 55.9696978 -3.1493775, 55.9540379 -3.1861370, 55.9719475 -3.1703032, 55.9456846 -3.1922146, 55.9090994 -3.2562932, 55.9085063 -3.2557150, 55.9631419 -3.1680076, 55.9534792 -3.1860301, 55.9399663 -3.2242828, 55.9577753 -3.1497155, 55.9684461 -3.1977309, 55.9534894 -3.1860583 +Falko Konditormeister, Greggs, Gregg's, Douglas's Bakery, Masons Bakery, Roll Up, Gregg's, Barnton Fine Foods, La Croissanterie, Mathiesons Bakers, Greggs, Cuckoo's Bakery, Storries Home Bakery, Morrison's Bakery, Greggs, Gregg's, Greggs, Greggs, Patissier Maxine, Patisserie Valerie, Bibi's Cake Boutique, Greggs, Dough Re Mi, Dough Re Mi, The Pine Tree Bakery, Bayne's, Goodfellow & Steven, Greggs, Bakery Andante, Greggs, Greggs, Bayne's, Stockbridge Kitchen, Goodfellow & Steven, Edinburgh Bakehouse, Greggs, Greggs, Bonningtons, The Wee Boulangerie, Jacob, Licks Cake Design, Greggs, Greggs, Glenvarloch Bakery, Archipelago Bakery, Sicilian Pastry Shop, Melinda's Cake Boutique, Greggs, Daneli's Deli, Too Good To Eat, Gregg's, Soderberg, Soderberg, Allan's Bakery, Breadshare, Valvona & Crolla Kitchen, Greggs, Goodfellow & Steven, Bayne's, Breadwinner Bakery, Parkhead Bakers, Bayne's, Archipelago Artisan Bakery, Crows Family Bakery, Piemaker, Greggs, Greggs +0 +55.9748673 -3.2157799 +yes +Neues Schloss +48.8373758 2.3176784, 48.8379602 2.2583959, 48.8410120 2.3066005, 48.8570028 2.3007925, 48.8579137 2.3005660, 48.8318670 2.3144693, 48.8689224 2.3335350, 48.8395609 2.3021892, 48.8375207 2.2967192, 48.8375266 2.2960585, 48.8276825 2.3271004, 48.8501002 2.3428094, 48.8554073 2.3268543, 48.8535631 2.3335139, 48.8415878 2.3228476, 48.8529470 2.3434116, 48.8488712 2.2873446, 48.8189960 2.3382666, 48.8330519 2.3316747, 48.8367776 2.2983375, 48.8357338 2.3020633, 48.8642296 2.2884865, 48.8644747 2.2879509, 48.8645963 2.2880351, 48.8649321 2.2883111, 48.8654525 2.2886812, 48.8667948 2.2896169, 48.8677281 2.2909720, 48.8717354 2.3404728, 48.8344235 2.3052236, 48.8750824 2.3241658, 48.8831845 2.3273339, 48.8563547 2.3050003, 48.8587676 2.3029733, 48.8586194 2.3039311, 48.8546797 2.3051724, 48.8870475 2.3139527, 48.8896917 2.3219420, 48.8840239 2.3218519, 48.8830031 2.2877361, 48.8374001 2.2957684, 48.8767307 2.3386266, 48.8764688 2.3326191, 48.8753496 2.3324005, 48.8789432 2.3031398, 48.8815632 2.3004421, 48.8844267 2.2977130, 48.8855270 2.2969790, 48.8849249 2.2981974, 48.8846750 2.2981530, 48.8773919 2.3395256, 48.8737979 2.3160522, 48.8384262 2.2988961, 48.8841082 2.3224492, 48.8379252 2.2975063, 48.8384650 2.2984232, 48.8386614 2.2988499, 48.8388963 2.2993041, 48.8807958 2.3003045, 48.8423511 2.2814155, 48.8529207 2.3436323, 48.8386703 2.2822723, 48.8633059 2.3340632, 48.8647135 2.3426384, 48.8648693 2.3427189, 48.8630681 2.3412176, 48.8634071 2.3418915, 48.8660175 2.3407258, 48.8673651 2.3318225, 48.8656306 2.3303026, 48.8690399 2.3387540, 48.8697491 2.3403685, 48.8695691 2.3402609, 48.8686697 2.3421738, 48.8689050 2.3327814, 48.8578234 2.2746494, 48.8583112 2.2754219, 48.8518893 2.3417124, 48.8421221 2.3217245, 48.8521680 2.3314230, 48.8447287 2.3244719, 48.8427041 2.3238548, 48.8489183 2.3392705, 48.8506265 2.3304803, 48.8485082 2.3285161, 48.8508389 2.3266905, 48.8427653 2.3300120, 48.8420145 2.3302544, 48.8440612 2.3225950, 48.8442156 2.3244262, 48.8473522 2.3183754, 48.8711649 2.3221410, 48.8726629 2.3106385, 48.8732419 2.3115596, 48.8744495 2.3205466, 48.8752230 2.3264851, 48.8740876 2.3267342, 48.8778017 2.3225743, 48.8797413 2.3271672, 48.8831584 2.3268974, 48.8833400 2.3254009, 48.8813674 2.3151235, 48.8810818 2.3162341, 48.8786152 2.3156839, 48.8767711 2.3179268, 48.8778569 2.3059734, 48.8794539 2.3032046, 48.8749659 2.3041948, 48.8745760 2.3048788, 48.8687291 2.3014159, 48.8664956 2.3016793, 48.8677909 2.2995151, 48.8686254 2.2992361, 48.8725861 2.3019868, 48.8784635 2.2987871, 48.8698436 2.3061758, 48.8720243 2.2934411, 48.8684366 2.2915095, 48.8714262 2.2899337, 48.8689351 2.2833107, 48.8696967 2.2845776, 48.8694565 2.2845446, 48.8700723 2.2857876, 48.8690091 2.2852941, 48.8691634 2.2851996, 48.8749903 2.2860127, 48.8759692 2.2834989, 48.8748643 2.2834193, 48.8690546 2.2835943, 48.8655496 2.2837039, 48.8657006 2.2836110, 48.8667831 2.2790363, 48.8664481 2.2772490, 48.8659840 2.2742050, 48.8633053 2.2742098, 48.8624073 2.2760147, 48.8593999 2.2774250, 48.8583220 2.2745520, 48.8584493 2.2748476, 48.8580404 2.2776736, 48.8411414 2.3136506, 48.8557164 2.2701238, 48.8417733 2.3185097, 48.8559683 2.2711042, 48.8369684 2.2533009, 48.8394820 2.3097854, 48.8502874 2.2762982, 48.8781855 2.2878593, 48.8362844 2.3061932, 48.8535026 2.2653555, 48.8491712 2.2665706, 48.8233119 2.3260789, 48.8475928 2.2669653, 48.8484138 2.2647127, 48.8478601 2.2637874, 48.8485576 2.2650178, 48.8454405 2.2582420, 48.8485516 2.2751179, 48.8415500 2.2669376, 48.8399984 2.2627388, 48.8390983 2.2821736, 48.8307191 2.3193023, 48.8304006 2.3192272, 48.8758150 2.2867065, 48.8465904 2.3434584, 48.8481836 2.3416278, 48.8504365 2.3250405, 48.8439434 2.3420437, 48.8461211 2.3404463, 48.8480122 2.2605847, 48.8590582 2.3031212, 48.8417910 2.3293787, 48.8474457 2.3180776, 48.8478498 2.3111276, 48.8645339 2.3458426, 48.8452289 2.2582589, 48.8809021 2.3403319, 48.8455537 2.3108109, 48.8450445 2.3104567, 48.8474933 2.3107909, 48.8394375 2.2918836, 48.8514163 2.3135568, 48.8426729 2.3023971, 48.8431492 2.3040014, 48.8431097 2.3128917, 48.8673662 2.3064825, 48.8263809 2.3414522, 48.8260348 2.3415012, 48.8262013 2.3418820, 48.8388287 2.2816271, 48.8397112 2.3025357, 48.8396385 2.3018330, 48.8283319 2.3249564, 48.8500696 2.2886536, 48.8560015 2.3425743, 48.8544203 2.3257043, 48.8588998 2.2749555, 48.8585344 2.2751198, 48.8768988 2.3387135, 48.8620598 2.2758197, 48.8632226 2.2764809, 48.8643683 2.2780086, 48.8682336 2.2816544, 48.8683009 2.2818137, 48.8716652 2.3369422, 48.8724813 2.3352798, 48.8768502 2.3324723, 48.8715356 2.3340932, 48.8752472 2.3410564, 48.8749086 2.3407659, 48.8751634 2.3407635, 48.8696664 2.3354448, 48.8640573 2.3358570, 48.8580367 2.3228472, 48.8468273 2.3109956, 48.8727906 2.3327950, 48.8371620 2.2788430, 48.8260463 2.3458083, 48.8275711 2.3258960, 48.8274068 2.3262715, 48.8390681 2.2569423, 48.8549374 2.3061290, 48.8709866 2.3363950, 48.8848997 2.3377794, 48.8839978 2.3387088, 48.8846424 2.3380692, 48.8509779 2.2927923, 48.8550471 2.2699500, 48.8418785 2.2997087, 48.8442816 2.3244689, 48.8857946 2.3099771, 48.8276838 2.3319307, 48.8701182 2.3328493, 48.8416006 2.3224232, 48.8430431 2.3223965, 48.8850396 2.3205857, 48.8860872 2.3177587, 48.8826687 2.3279573, 48.8828661 2.3275425, 48.8826907 2.3276165, 48.8804253 2.3287401, 48.8743336 2.3345374, 48.8301847 2.3456951, 48.8425418 2.2920002, 48.8340558 2.2901416, 48.8330244 2.2891177, 48.8334343 2.2890580, 48.8642191 2.3423423, 48.8638673 2.3421689, 48.8815429 2.2914706, 48.8838961 2.3274356, 48.8889565 2.3226941, 48.8937935 2.3362303, 48.8915892 2.3347229, 48.8959308 2.3457254, 48.8906192 2.3344868, 48.8929700 2.3402831, 48.8938006 2.3360065, 48.8928237 2.3276058, 48.8927037 2.3270855, 48.8950865 2.3279515, 48.8927798 2.3416901, 48.8357045 2.2898603, 48.8466834 2.3430808, 48.8464534 2.3440651, 48.8507185 2.3452276, 48.8506024 2.2921760, 48.8434041 2.2832488, 48.8441583 2.2814225, 48.8601040 2.2800860, 48.8555902 2.2705124, 48.8709674 2.2927276, 48.8701195 2.2926560, 48.8607663 2.2829855, 48.8742509 2.3267610, 48.8674435 2.3066185, 48.8760737 2.3314470, 48.8314530 2.3131078, 48.8366420 2.3235880, 48.8798460 2.2882480, 48.8706907 2.3018397, 48.8711468 2.3021857, 48.8442760 2.3236880, 48.8443641 2.3231615, 48.8412683 2.3182655, 48.8750168 2.2842019, 48.8274443 2.3054531, 48.8642610 2.2877420, 48.8260781 2.3450782, 48.8257972 2.3453018, 48.8265662 2.3114209, 48.8266741 2.3089333, 48.8348018 2.2835149, 48.8289555 2.3008177, 48.8425217 2.2605998, 48.8399979 2.2631418, 48.8393773 2.2626930, 48.8445716 2.2773781, 48.8423827 2.2779816, 48.8423678 2.2814812, 48.8393433 2.2612518, 48.8382522 2.2590990, 48.8556190 2.3071441, 48.8831104 2.3242250, 48.8522552 2.3385407, 48.8466920 2.2861937, 48.8464464 2.2864898, 48.8462140 2.2863069, 48.8471256 2.2857626, 48.8467862 2.2850085, 48.8737876 2.3254797, 48.8757911 2.3276502, 48.8853087 2.2914432, 48.8666300 2.3441053, 48.8751073 2.3063372, 48.8761128 2.3302242, 48.8760136 2.3310108, 48.8628914 2.2767409, 48.8326928 2.3011680, 48.8434103 2.2931530, 48.8367477 2.3065081, 48.8396815 2.2927792, 48.8759800 2.3435799, 48.8602282 2.3444320, 48.8442882 2.3080071, 48.8528372 2.2900682, 48.8524061 2.2912571, 48.8529003 2.2907372, 48.8504014 2.2929658, 48.8781331 2.2973879, 48.8310392 2.3425080, 48.8235069 2.3253377, 48.8314166 2.3251141, 48.8747610 2.3399353, 48.8610529 2.3020976, 48.8742737 2.3172451, 48.8788807 2.2940470, 48.8790502 2.2932877, 48.8787213 2.2930870, 48.8860790 2.2927720, 48.8862920 2.2922300, 48.8860610 2.2916910, 48.8815650 2.2950420, 48.8816640 2.2951850, 48.8698720 2.3253770, 48.8484448 2.3320393, 48.8478696 2.3293541, 48.8767675 2.3414635, 48.8801010 2.2887410, 48.8518237 2.3263371, 48.8518410 2.3270180, 48.8520482 2.3269387, 48.8896590 2.3042630, 48.8523174 2.3400938, 48.8480411 2.3409988, 48.8487519 2.3414295, 48.8763180 2.3309180, 48.8260443 2.3266660, 48.8255907 2.3265438, 48.8843962 2.3388368, 48.8841050 2.3049810, 48.8840570 2.3045230, 48.8835710 2.3045840, 48.8837420 2.3043460, 48.8315966 2.3304662, 48.8818980 2.3374100, 48.8497330 2.3457635, 48.8448871 2.2941778, 48.8452118 2.2941040, 48.8454696 2.2946866, 48.8702024 2.2869885, 48.8711617 2.3300722, 48.8403727 2.3337448, 48.8349994 2.3046409, 48.8478988 2.3192520, 48.8479907 2.3194591, 48.8313376 2.3296145, 48.8388128 2.3226987, 48.8339484 2.3183045, 48.8409661 2.2878933, 48.8412556 2.2872804, 48.8410949 2.2882264, 48.8304463 2.3288405, 48.8314813 2.3271321, 48.8734980 2.3143172, 48.8737373 2.3138101, 48.8737700 2.3140366, 48.8421217 2.3299033, 48.8470111 2.3265176, 48.8815323 2.3165760, 48.8590343 2.3461496, 48.8874646 2.3257792, 48.8873604 2.3254496, 48.8830109 2.3460324, 48.8760765 2.3450995, 48.8843391 2.3213355, 48.8372237 2.3221630, 48.8743700 2.3192643, 48.8527018 2.3349473, 48.8449540 2.2895406, 48.8452657 2.2845482, 48.8446514 2.2839876, 48.8442772 2.2836818, 48.8762972 2.3015994, 48.8538895 2.2941282, 48.8286359 2.3240592, 48.8419523 2.3375746, 48.8615860 2.3413149, 48.8757756 2.3401123, 48.8698251 2.3102577, 48.8649934 2.3332593, 48.8708529 2.3346161, 48.8804820 2.3161857, 48.8494428 2.2974856, 48.8438388 2.3063057, 48.8512725 2.3428163, 48.8440910 2.2831411, 48.8433595 2.2833923, 48.8413554 2.2888602, 48.8413772 2.2882287, 48.8761824 2.3002522, 48.8726650 2.3293531, 48.8709492 2.3282127, 48.8722908 2.3280789, 48.8722605 2.3300398, 48.8371175 2.3176252, 48.8725589 2.3098007, 48.8725939 2.3370941, 48.8726909 2.3396328, 48.8740775 2.3377311, 48.8794635 2.3364478, 48.8932628 2.3267927, 48.8476121 2.2664327, 48.8931883 2.3272746, 48.8448189 2.3202573, 48.8648399 2.3394096, 48.8726368 2.3332498, 48.8733021 2.3461422, 48.8717746 2.2995211, 48.8910317 2.3197585, 48.8866292 2.3186693, 48.8347313 2.3458453, 48.8791073 2.2907296, 48.8766198 2.2875734, 48.8680414 2.3235560 +120 +847 +Avenue des Champs-Élysées, Boulevard du Montparnasse, Avenue des Champs-Élysées, Boulevard Brune, Boulevard Lefebvre, Avenue Émile Zola, Place Étienne Pernet, Rue de Longchamp, Rue de Longchamp, Rue François Bonvin +55 +49.4147206 8.7190868, 49.4104788 8.7037801, 49.4103985 8.7029994, 49.4073655 8.6761401, 49.4114393 8.7049112, 49.4105716 8.7092257, 49.4102711 8.7082977, 49.3964318 8.6793231 +yes and 55.9186497 -3.1972073 +55.9035370 -4.3545470, 55.8144822 -4.1906873 +Édimbourg +Heiliggeistkirche and 49.4120976 8.7096738 +12 +278 +yes +yes +yes +55.9652954 -3.1653887 +yes +yes +51.0116810 13.8720606, 51.0273756 13.7474285, 51.0823918 13.7335753, 51.0824545 13.7336039, 51.0825170 13.7336323, 51.0829896 13.7332707, 51.0828616 13.7332262, 51.0827595 13.7331813, 51.0826580 13.7331399, 51.0825999 13.7331126, 51.0825362 13.7330866, 51.0827583 13.7327555, 51.0832603 13.7324804, 51.0831002 13.7336158, 51.0117707 13.8698726, 51.0337981 13.8131925, 51.0336044 13.8119211, 51.0795450 13.6564691, 51.0803520 13.6560575, 51.0797631 13.6570269, 51.0805189 13.6559334, 51.0798370 13.6570887, 51.0801264 13.6570556, 51.0798991 13.6571398, 51.0798903 13.6567817, 51.0800585 13.6558509, 51.0795076 13.6568246, 51.0800106 13.6572306, 51.0802644 13.6565229, 51.0801590 13.6559327, 51.0796771 13.6569580, 51.0801474 13.6574467, 51.0795919 13.6568858, 51.0799591 13.6557717, 51.0806719 13.6547946, 51.0844031 13.6492495, 51.0844377 13.6491173, 51.0845865 13.6492686, 51.0848005 13.6481637, 51.0560319 13.6534353, 51.1129021 13.7134784, 51.0870850 13.7344070, 51.0879019 13.7346740, 51.0872746 13.7345070, 51.0497161 13.6717032, 51.0497575 13.6719559, 51.0647887 13.7927801, 51.0400501 13.6372683, 51.0400368 13.6376398, 51.0397949 13.6376750, 51.0398668 13.6372683, 51.0396860 13.6366848, 51.0395593 13.6369259, 51.0392180 13.6369677, 51.0396431 13.6373610, 51.0396199 13.6371140, 51.0392895 13.6367341, 51.1523082 13.7957194, 51.1532344 13.7957454, 51.1521680 13.7957598, 51.1520584 13.7957188, 51.1536728 13.7955165, 51.1520531 13.7963601, 51.1522370 13.7957382, 51.0847930 13.6490593, 51.0849131 13.6491394, 51.0845156 13.6488769, 51.0847316 13.6490137, 51.0849792 13.6491835, 51.0844573 13.6488382, 51.0848531 13.6490969, 51.0685627 13.6241474, 51.0695246 13.6253081, 51.0699998 13.6237618, 51.0683859 13.6251032, 51.0701737 13.6247207, 51.0683173 13.6249097, 51.0694974 13.6255021, 51.0679836 13.6227283, 51.0698285 13.6245618, 51.0682702 13.6249019, 51.0700321 13.6235780, 51.0699302 13.6241295, 51.0706362 13.6240940, 51.0699677 13.6239464, 51.0699803 13.6233425, 51.0698958 13.6243490, 51.0683476 13.6228519, 51.0703047 13.6239192, 51.0681631 13.6226829, 51.0681586 13.6222257, 51.0705447 13.6245614, 51.0704860 13.6238946, 51.1190382 13.7795044, 51.0400538 13.6374139, 51.0422774 13.6356744, 51.0419915 13.6350658, 51.0422431 13.6350551, 51.0423833 13.6350452, 51.0422138 13.6356743, 51.0424026 13.6345030, 51.0424536 13.6356798, 51.0419222 13.6347316, 51.0425869 13.6359640, 51.0424255 13.6347004, 51.0423683 13.6356861, 51.0419113 13.6345174, 51.0423088 13.6353555, 51.0432389 13.7577645, 51.0436111 13.7590246, 51.1521334 13.7973645, 51.1521117 13.7971177, 51.1520977 13.7967766, 51.1526180 13.7960916, 51.1531397 13.7962202, 51.1521522 13.7975794, 51.0543396 13.6500775, 51.0444714 13.6375970, 51.0445916 13.6380352, 51.0452089 13.6382144, 51.0448329 13.6384755, 51.0420013 13.6356697, 51.0419801 13.6353571, 51.0449595 13.6381873, 51.0450957 13.6377784, 51.0451578 13.6382089, 51.0451645 13.6385095, 51.0445991 13.6376131, 51.0447789 13.6380437, 51.0449673 13.6384880, 51.0451001 13.6385027, 51.0450315 13.6384948, 51.0450594 13.6382009, 51.0416818 13.6350996, 51.0450879 13.6379787, 51.0454522 13.6334655, 51.0444342 13.6335000, 51.0444346 13.6335829, 51.0453155 13.6342072, 51.0453139 13.6338984, 51.0446628 13.6337701, 51.0446591 13.6334707, 51.0453174 13.6340041, 51.0453155 13.6341049, 51.0451033 13.6335278, 51.0444341 13.6336615, 51.0288807 13.7029059, 51.0288738 13.7030353, 51.0644000 13.6702199, 51.0645429 13.6701187, 51.0634300 13.6708257, 51.0629448 13.6704116, 51.0631020 13.6703333, 51.0643496 13.6698018, 51.0644680 13.6697240, 51.0644477 13.6701873, 51.0636715 13.6706991, 51.0634927 13.6708243, 51.0635567 13.6707778, 51.0643411 13.6702497, 51.0644908 13.6701611, 51.0644102 13.6697624, 51.0630231 13.6703734, 51.0641429 13.6701302, 51.0634263 13.6702687, 51.0639096 13.6702519, 51.0137071 13.8237285, 51.0133685 13.8237824, 51.0091874 13.7517437, 51.0791960 13.7360348, 51.0794212 13.7358213, 51.0870710 13.7344832, 51.0142964 13.7502569, 51.0087245 13.7463770, 51.0088480 13.7468738, 51.0087864 13.7463491, 51.0087804 13.7469334, 51.0086531 13.7464071, 51.0089693 13.7475994, 51.0088690 13.7473466, 51.0344156 13.8132738, 51.0348170 13.8134266, 51.0336234 13.8138274, 51.0329768 13.8143450, 51.0334312 13.8109893, 51.0343168 13.8122016, 51.0336983 13.8136243, 51.0331994 13.8114875, 51.0328423 13.8122627, 51.0342593 13.8124407, 51.0344050 13.8119857, 51.0328773 13.8146286, 51.0332285 13.8128171, 51.0344733 13.8129873, 51.0327823 13.8123939, 51.0331331 13.8116328, 51.0336632 13.8137234, 51.0327738 13.8149048, 51.0331475 13.8127182, 51.0332927 13.8113066, 51.0341415 13.8119262, 51.0330634 13.8126383, 51.0341602 13.8128656, 51.0330179 13.8118828, 51.0345801 13.8121302, 51.0329008 13.8121372, 51.0338927 13.8126132, 51.0347322 13.8125764, 51.0345819 13.8124388, 51.0333598 13.8111666, 51.0331521 13.8139008, 51.0341967 13.8119795, 51.0432745 13.6329438, 51.0433880 13.6329447, 51.0434910 13.6329348, 51.0616086 13.8881605, 51.0640528 13.6635614, 51.0638879 13.6639550, 51.0641915 13.6639163, 51.0641879 13.6640152, 51.0638942 13.6637425, 51.0641939 13.6638145, 51.0639733 13.6633695, 51.0638080 13.6677778, 51.0632291 13.6683586, 51.0629009 13.6680561, 51.0636169 13.6676692, 51.0631196 13.6683612, 51.0628342 13.6680588, 51.0636968 13.6679241, 51.0243263 13.7754713, 51.0240081 13.7747430, 51.0241660 13.7751557, 51.0245582 13.7746933, 51.0241526 13.7747192, 51.0230794 13.7751941, 51.0238220 13.7741584, 51.0245153 13.7756778, 51.0246264 13.7758160, 51.0244310 13.7749487, 51.0244424 13.7755583, 51.0240402 13.7763887, 51.0234623 13.7756473, 51.0235990 13.7758451, 51.0232885 13.7754532, 51.0238738 13.7745660, 51.0245718 13.7757461, 51.0237728 13.7760773, 51.0089122 13.7468473, 51.0545652 13.6571661, 51.0544809 13.6571568, 51.0545984 13.6575051, 51.0564776 13.6490552, 51.0580882 13.6488216, 51.0546570 13.6508731, 51.0571567 13.6545872, 51.0556063 13.6475528, 51.0569011 13.6540618, 51.0561655 13.6542541, 51.0546351 13.6507613, 51.0559429 13.6545543, 51.0571677 13.6557061, 51.0545624 13.6504539, 51.0568417 13.6544648, 51.0569245 13.6550228, 51.0568989 13.6556656, 51.0570603 13.6550313, 51.0567548 13.6539175, 51.0569839 13.6545736, 51.0570223 13.6555839, 51.0563415 13.6551338, 51.0557576 13.6480748, 51.0560964 13.6490288, 51.0556641 13.6496888, 51.0559435 13.6495665, 51.0561604 13.6490052, 51.0559214 13.6494670, 51.0561791 13.6494340, 51.0557350 13.6491827, 51.0562316 13.6494131, 51.0561324 13.6494525, 51.0414360 13.6346991, 51.0537377 13.6809286, 51.0869121 13.6263809, 51.0864569 13.6264478, 51.0868109 13.6272543, 51.0865604 13.6261106, 51.0868648 13.6272874, 51.0863500 13.6267865, 51.0863754 13.6267068, 51.0864006 13.6266273, 51.0865935 13.6259527, 51.0865248 13.6262863, 51.0869641 13.6261298, 51.0869379 13.6262564, 51.0864323 13.6265290, 51.0687005 13.7630620, 51.0645983 13.6700479, 51.1202199 13.7366354, 51.0636067 13.6634968, 51.0635972 13.6633514, 51.0485276 13.6711573, 51.0485157 13.6699918, 51.0487311 13.6711188, 51.0242553 13.7767138, 51.0268164 13.7599593, 51.0652601 13.8015009 +51.7468515 10.3624120 + +Saint Columba's by the Castle and 55.9482972 -3.1955031 +55.9923452 -3.3344481, 55.8510441 -3.3315277, 55.9486773 -3.2003994, 55.9326054 -3.1487771, 55.9145657 -3.1773811, 55.9750379 -3.4145918, 55.9256295 -3.1408721, 55.9554949 -3.3756626, 55.9193062 -3.2383252, 55.9108083 -3.2548052 +yes +48.8527413 2.3333559 +yes +yes +no +49.3783407 8.6911080, 49.4282176 8.6862044, 49.4105621 8.7153069, 49.4282546 8.6861813 +yes +49.4129429 8.7045098, 49.4081527 8.6735594, 49.4176558 8.6587085, 49.4165055 8.6594547, 49.4148711 8.6635210, 49.4185953 8.7563610, 49.4180224 8.7572019, 49.4078352 8.6858842, 49.4077166 8.6770507, 49.4076619 8.6829409, 49.4076413 8.6872936, 49.4060867 8.6916832, 49.4058917 8.6902904, 49.4146832 8.6923348, 49.4144086 8.6920334, 49.4131784 8.7101075, 49.4074762 8.6879253, 49.4091366 8.6592347, 49.4129225 8.7239221, 49.4136373 8.6927118, 49.4112725 8.7119074, 49.4095367 8.7037082, 49.4169935 8.6914785, 49.4146001 8.7738410, 49.4376003 8.7518747, 49.4127909 8.7133593, 49.4135426 8.7142038, 49.4288015 8.6872183, 49.4142986 8.6902743, 49.4136357 8.6943202, 49.4258813 8.6617121, 49.4139051 8.6920559, 49.4162757 8.6922037, 49.4306151 8.6467040, 49.4104204 8.7158634, 49.4257744 8.6577657, 49.4139993 8.6932058, 49.4131782 8.7072377, 49.4129985 8.7075880, 49.4128971 8.7089006, 49.4121728 8.7080504, 49.4123763 8.7095125, 49.4127246 8.7091094, 49.4132139 8.7078103, 49.4079479 8.6956416, 49.4121887 8.7014037, 49.4119811 8.7001029, 49.4130878 8.7091392, 49.4131986 8.7088233, 49.4076691 8.6751190, 49.4078621 8.6921619, 49.4083996 8.6927648, 49.4118964 8.7088012, 49.4115665 8.7029371, 49.4115772 8.7046048, 49.4117306 8.7084869, 49.4091521 8.6979357, 49.4131305 8.6546204, 49.4140289 8.6610942, 49.4178759 8.6766696, 49.4213757 8.6586938, 49.4092258 8.7140567, 49.4070439 8.6949350, 49.4117441 8.7092576, 49.4110740 8.7008373, 49.4114705 8.7022980, 49.4115939 8.7046894, 49.4116275 8.7051425, 49.4119604 8.7038095, 49.4118295 8.7066501, 49.4116479 8.7066124, 49.4117726 8.7067669, 49.4117492 8.7058025, 49.4117230 8.7087903, 49.4122865 8.7059453, 49.4124292 8.7105976, 49.4111189 8.7110358, 49.4131432 8.7133745, 49.4081055 8.6756660, 49.4062164 8.6906512, 49.4060715 8.6915874, 49.4129103 8.7014032, 49.4106930 8.7058334, 49.4247718 8.6874951, 49.4203662 8.7396345, 49.4382046 8.6794526, 49.4373993 8.6752453, 49.4087049 8.7054045, 49.4136428 8.6936066, 49.4130575 8.7096585, 49.4115837 8.7106378, 49.4114414 8.7034059, 49.4079188 8.6896894, 49.4082939 8.6917604, 49.4084511 8.6746131, 49.4061961 8.6789422, 49.4179298 8.7611063, 49.4132974 8.7097572, 49.4125123 8.7110100, 49.4071802 8.6893369, 49.4078499 8.6884637, 49.4278664 8.6462916, 49.4181047 8.7566116, 49.4104061 8.7157086, 49.4108151 8.7149178, 49.4094481 8.7011221, 49.4068117 8.6707467, 49.4066118 8.6751595, 49.4118680 8.7106616, 49.4252823 8.6480351, 49.4190959 8.6518895, 49.4085554 8.6900358, 49.4234431 8.6469231, 49.4177824 8.6425471, 49.4077588 8.6883819, 49.4097188 8.6964711, 49.4113450 8.7459022, 49.4143434 8.6882102, 49.4113674 8.7086976, 49.4127842 8.7096999, 49.4225893 8.6725966, 49.4129263 8.7138084, 49.4119103 8.7090896, 49.4117205 8.7083215, 49.4121545 8.7119807, 49.4123356 8.7097176, 49.4128323 8.7139647, 49.4115613 8.7086989, 49.4156100 8.6707017, 49.4162564 8.6598696, 49.4071975 8.6762084, 49.4096282 8.6811489, 49.4147851 8.6501119, 49.4282302 8.6874448, 49.4255887 8.6891453, 49.4254663 8.6892002, 49.4284964 8.6877953, 49.4280495 8.6869299, 49.4298363 8.6853708, 49.4317284 8.6827286, 49.4235631 8.6886029, 49.4179208 8.7599422, 49.4139598 8.6937014, 49.4217923 8.7056451, 49.4384096 8.6837127, 49.4143279 8.6877116, 49.4145768 8.6900311, 49.4114477 8.7117426, 49.4179324 8.7578275, 49.4447844 8.7558449, 49.4134141 8.7156909, 49.4127437 8.7131641, 49.4278544 8.6884082, 49.4141167 8.6710146, 49.4162402 8.6597540 +Yavuz Sultan Selim Camii, Moschee Heidelberg +yes +73 +Pfaffenhofen an der Ilm, Newbury, Schwabach, Lübeck, Stutensee +パリ +49.4091661 8.6877412, 49.3779008 8.6888758, 49.4093367 8.7736769, 49.4096905 8.6870861, 49.4094130 8.6857745, 49.4100169 8.6878988, 49.4136043 8.6538078, 49.4155972 8.6663847, 49.4225207 8.6751194, 49.4177447 8.6641338, 49.4130779 8.6696042, 49.4141965 8.6658413, 49.4129370 8.6731498, 49.4184413 8.6639178, 49.4119021 8.6975187, 49.4089831 8.6905347, 49.4044158 8.6910541, 49.3953953 8.7086103, 49.4234428 8.6840685, 49.4103493 8.6912088, 49.4082673 8.6863585, 49.4159017 8.6697995, 49.4093271 8.6843529, 49.4168236 8.6627821, 49.4168236 8.6627821, 49.4168236 8.6627821, 49.4025693 8.6891404, 49.3917631 8.6910070, 49.4162390 8.6664533, 49.4211850 8.6816458, 49.4178561 8.6661108, 49.4177600 8.6624888, 49.4138580 8.6676018, 49.4104424 8.6919840, 49.3893705 8.7373749 +21 +Cathédrale Arménienne Sainte-Croix, Cathédrale Ukrainienne Saint-Vladimir-le-Grand, Cathédrale Saint-Louis des Invalides, Cathédrale Arménienne Saint-Jean-Baptiste, Cathédrale Américaine de la Sainte-Trinité, Cathédrale Orthodoxe Russe Saint-Alexandre Nevsky, Cathédrale Saint-Étienne, Cathédrale Notre-Dame de Paris and 48.8608482 2.3604976, 48.8547259 2.3309615, 48.8555836 2.3125833, 48.8657975 2.3070013, 48.8675010 2.3006380, 48.8776180 2.3019924, 48.8665953 2.2984346, 48.8529376 2.3498716 +69 +DaBaggio +L'Orriu du Beauvau +49.3811108 8.6608351, 49.3829231 8.6669185, 49.3923746 8.6760835 +ハイデルベルク +public transport, weather shelter +Flughafen Frankfurt am Main +yes +55.9378000 -3.1771354, 55.9539155 -3.1869471, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9544013 -3.1879472, 55.9285894 -3.1685115 +29 +yes +413 +55.8994270 -3.2972350, 55.9232575 -3.2877434, 55.9372727 -3.3656602, 55.9377502 -3.4029754, 55.9365550 -3.3142140, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.8839472 -3.3405441, 55.9447450 -3.3593706, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9835994 -3.3988708, 55.9397193 -3.2934475 +3 +1 +48.8505273 2.3858439 +11 +yes +4 +55.9336225 -3.1249359, 55.9731723 -3.1754517, 55.9370217 -3.2186392, 55.9803988 -3.2235746, 55.9334984 -3.2284656, 55.9364814 -3.1940654, 55.9509774 -3.2113955, 55.9456430 -3.2126550, 55.9574980 -3.2089090, 55.9510870 -3.2135191, 55.9467680 -3.2234359, 55.9471780 -3.2179270, 55.9584000 -3.2182300, 55.9573850 -3.2145460, 55.9612410 -3.2084510, 55.9612608 -3.1947393, 55.9585590 -3.1894750, 55.9572253 -3.1905901, 55.9574810 -3.1829770, 55.9607690 -3.1844930, 55.9751120 -3.1699450, 55.9538149 -3.1866462, 55.9483102 -3.1849377, 55.9370308 -3.2067360, 55.9497190 -3.1919630, 55.9446609 -3.2150190, 55.9448704 -3.2331329, 55.9477760 -3.2103789, 55.9430598 -3.2193053, 55.9403560 -3.2253563, 55.9424189 -3.2051434, 55.9613613 -3.2013758, 55.9518970 -3.1777525, 55.9605194 -3.1745432, 55.9544020 -3.1965541, 55.9562232 -3.1975795, 55.9630294 -3.1912727, 55.9577847 -3.1940743, 55.9622871 -3.1825372, 55.9593570 -3.1774973, 55.9514170 -3.1863190, 55.9484476 -3.2048878, 55.9524190 -3.2092630, 55.9435870 -3.1925590, 55.9427426 -3.1970190, 55.9416940 -3.2014772, 55.9389808 -3.2114914, 55.9432142 -3.2138092, 55.9737983 -3.1644035, 55.9526606 -3.2018469, 55.9245851 -3.2217825, 55.9664606 -3.1948523, 55.9659495 -3.1909016, 55.9369603 -3.2237972, 55.9352245 -3.2129869, 55.9732340 -3.1870517, 55.9650310 -3.1952624, 55.9431510 -3.1850183, 55.9379028 -3.1838572, 55.9385188 -3.1804921, 55.9440195 -3.1801845, 55.9767898 -3.1746009, 55.9378592 -3.1998264, 55.9785772 -3.1680183, 55.9759825 -3.1825687, 55.9797482 -3.1979763, 55.9263065 -3.2084235, 55.9353379 -3.1982447, 55.9240780 -3.1729198, 55.9333823 -3.1800372, 55.9271775 -3.2122387, 55.9224982 -3.2116095, 55.9700851 -3.1735484, 55.9701547 -3.1858393, 55.9691782 -3.1658280, 55.9269556 -3.1843910, 55.9518287 -3.1107808, 55.9555761 -3.2863843, 55.9406804 -3.1723240, 55.9550663 -3.1537383, 55.9277228 -3.2305307, 55.9338258 -3.2369899, 55.9040570 -3.2856137, 55.9533016 -3.1163917, 55.9531172 -3.2042505, 55.9547774 -3.2196877, 55.9610228 -3.2289430, 55.9771785 -3.2459884, 55.9272641 -3.2496416, 55.9503933 -3.1777718, 55.9611416 -3.1627621, 55.9285398 -3.2100476, 55.9482867 -3.1839490, 55.9496098 -3.1863529, 55.9029787 -3.1537885, 55.9212012 -3.1402958, 55.9505565 -3.1909459 +55.9579565 -3.2439627, 55.9389097 -3.2419381, 55.9587892 -3.1643659, 55.9269783 -3.1633004, 55.9275143 -3.1636040, 55.9384587 -3.2403692, 55.9574632 -3.2408274, 55.9243498 -3.2526320 +55.9262985 -3.2466715, 55.9612706 -3.2423315, 55.9558419 -3.1599480, 55.9463269 -3.2059968, 55.9505200 -3.2066238, 55.9504567 -3.2091057, 55.9575799 -3.2074392, 55.9575530 -3.1882786, 55.9269823 -3.1640067, 55.9489892 -3.2104514, 55.9422504 -3.2936081, 55.9339703 -3.1006526, 55.9376863 -3.4023340, 55.9686600 -3.1423665, 55.9436516 -3.2079845, 55.9840102 -3.4068097, 55.9832384 -3.3979403 +49.4091649 8.6726851, 49.4121354 8.7011825, 49.4079061 8.6867560, 49.4092400 8.6923559, 49.4087676 8.6922534, 49.4127792 8.7096645, 49.4110763 8.7008753, 49.4113255 8.7025821, 49.4094909 8.6914211, 49.4033496 8.6774778, 49.4118757 8.7108162, 49.4117371 8.7091875, 49.4079388 8.6952668, 49.4050153 8.6915327, 49.4054719 8.6897423, 49.4131659 8.7099659, 49.4080762 8.6812135, 49.4040305 8.6800031, 49.4092584 8.6921123, 49.4090167 8.7039135, 49.4090286 8.7040991, 49.4073921 8.6825502, 49.4092821 8.6942034, 49.4089977 8.6943008, 49.4124861 8.7108070, 49.4113057 8.7120202, 49.4131432 8.7133745, 49.4132612 8.7060850, 49.4130252 8.7094285, 49.4131065 8.7092091, 49.4095865 8.7066610, 49.4122271 8.7059479, 49.4121564 8.7037030, 49.4115410 8.7046342, 49.4091984 8.6941997, 49.4046591 8.6869762, 49.4044605 8.6806232, 49.4040961 8.6803560, 49.4058252 8.6861495, 49.4151692 8.7066598, 49.4316754 8.6324996, 49.4262008 8.6882693, 49.4168638 8.7149130, 49.4065332 8.6919726, 49.4048219 8.6927806, 49.4052550 8.6923037, 49.4082602 8.6992154, 49.4109928 8.6917613, 49.3870250 8.6611599, 49.3759070 8.6609254, 49.3799862 8.6876121, 49.4129001 8.6782904, 49.3653721 8.6843683, 49.4447844 8.7558449, 49.4067729 8.6917906 +55.9833412 -3.4080681, 55.9400333 -3.1723378 +yes +no +Bio-Metzgerei Blatt, Metzgerei Unger, Fleischerei Friedl Rolf, Metzgerei Stieg, Gieser, Metzgerei Sommer, Unger, Metzgerei Benig, Metzgerei Unger, Metzgerei Wickenhäuser, Rebmann, Bolz +49.4300711 8.6823444 +yes +yes and 120 +yes +55.8994270 -3.2972350, 55.9002100 -3.2321660, 55.9100535 -3.1423251, 55.9051775 -3.1653894, 55.8839472 -3.3405441, 55.9102318 -3.2377415 +Gurkha Cafe +weather shelter, public transport +Die Kamera +48.8574324 2.3409368, 48.8424763 2.3705414, 48.8423578 2.3707028, 48.8422170 2.3708981, 48.8639780 2.3058261, 48.8877064 2.3773415, 48.8873645 2.3767886, 48.8878470 2.3777753, 48.8879004 2.3778844, 48.8877413 2.3775591, 48.8875794 2.3772282, 48.8874181 2.3768983, 48.8874733 2.3770111, 48.8879540 2.3779939, 48.8877947 2.3776682, 48.8876336 2.3773389, 48.8876884 2.3774510, 48.8875249 2.3771165, 48.8552023 2.2872854, 48.8496593 2.3670787, 48.8492344 2.3675422, 48.8958210 2.3960294, 48.8368833 2.3750458, 48.8333999 2.3791396, 48.8350972 2.3770071, 48.8370774 2.3748462, 48.8351897 2.3768867, 48.8355163 2.3764905, 48.8372728 2.3746371, 48.8358162 2.3761681, 48.8368462 2.3750865, 48.8353229 2.3766992, 48.8346305 2.3775410, 48.8362703 2.3756813, 48.8332688 2.3793093, 48.8354102 2.3766110, 48.8474123 2.2776478 +0 +yes +yes +48.8803471 2.2968238 +5 +yes +49.3826654 8.6703241, 49.3795039 8.6788777, 49.3994731 8.6498961, 49.3795039 8.6788791, 49.3795039 8.6788799, 49.3795039 8.6788784, 49.3795039 8.6788807 +90 +no +5 +1 +55.8969264 -3.3064312, 55.9286688 -3.2097008, 55.9475295 -3.2065018, 55.9709381 -3.2084981, 55.9710757 -3.2083893, 55.9713224 -3.2074276, 55.9584008 -3.2092092, 55.9601757 -3.2559248, 55.9312309 -3.2523089, 55.9511924 -3.1760524, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9073786 -3.2585910, 55.9531081 -3.2008271, 55.9398905 -3.1798723, 55.9449974 -3.2048810, 55.9615944 -3.1808390, 55.9122939 -3.1636240, 55.9053215 -3.1319819, 55.9383223 -3.4081252, 55.9359122 -3.2099909, 55.9390586 -3.2260923, 55.9425869 -3.1828482, 55.9285028 -3.2096878, 55.9457396 -3.1854060, 55.9492055 -3.1928272, 55.9457758 -3.2348710, 55.9531031 -3.1974183, 55.9442082 -3.2038136, 55.9086565 -3.2096817, 55.9612140 -3.3062746, 55.9809058 -3.1784709, 55.9569588 -3.1874026, 55.9103533 -3.3220087, 55.9328178 -3.3087070, 55.9013749 -3.2048039, 55.9542354 -3.1917490, 55.9428244 -3.2815918, 55.9498996 -3.2091714, 55.9510827 -3.2031240, 55.9504209 -3.2072119, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9537368 -3.1946870, 55.9537500 -3.1946096, 55.9468356 -3.2159630, 55.9379488 -3.2323230, 55.9573609 -3.2064305, 55.9530711 -3.2010501, 55.9526098 -3.2039830, 55.9430272 -3.2039408, 55.9576475 -3.1842848, 55.9527506 -3.1965698, 55.9507785 -3.2057118, 55.9514350 -3.2026235, 55.9517068 -3.2027827, 55.9516311 -3.1963503, 55.9035407 -3.2854196, 55.9717098 -3.1715371, 55.9491465 -3.2108241, 55.9522434 -3.1996146, 55.9420700 -3.2221190, 55.9533643 -3.1992326, 55.9695475 -3.1723616, 55.9552540 -3.1886031, 55.9275327 -3.2095136, 55.9462028 -3.1849929, 55.9700780 -3.1719013, 55.9655823 -3.2732115, 55.9267933 -3.2094073, 55.9245093 -3.2096867, 55.9562249 -3.1380549, 55.9275049 -3.1644260, 55.9274977 -3.1640447, 55.9683184 -3.1734262, 55.9375910 -3.1784346, 55.9461675 -3.2083866, 55.9325351 -3.1397933, 55.9453646 -3.1914973, 55.9453776 -3.1916473, 55.9507179 -3.2052686, 55.9538645 -3.1977873, 55.9549461 -3.1936274, 55.9550466 -3.1929475, 55.9525137 -3.1970339, 55.9540653 -3.1916462, 55.9532974 -3.1903395, 55.9549221 -3.1506854, 55.9311377 -3.2521805, 55.9533274 -3.1148467, 55.9587335 -3.2260450, 55.9575343 -3.1698875, 55.9252818 -3.2099781, 55.9342963 -3.2105127, 55.9756176 -3.1666794, 55.9429604 -3.2929801, 55.9426525 -3.2829003, 55.9430016 -3.2880429, 55.9656482 -3.2744012, 55.9748270 -3.2379923, 55.9233852 -3.2910431, 55.9234641 -3.2913646, 55.9383953 -3.3146583, 55.9756625 -3.1668579, 55.9528423 -3.1973524, 55.9528342 -3.1149045 +8 +48.8337601 2.2980718 +yes +15 and 53.6336393 10.0363341, 53.6360504 10.0335862, 53.6440677 10.0246132, 53.6523113 10.0341830, 53.6642778 10.0351445, 53.6709255 10.0356700, 53.6367766 10.0336568, 53.6378772 10.0297658, 53.6379603 10.0299328, 53.6378461 10.0278999, 53.6380710 10.0270600, 53.6803028 10.0464602, 53.6371050 10.0329155, 53.6375635 10.0322890, 53.6377966 10.0314595 +yes +55.9511924 -3.1760524 +fr:Roc de Peyre, fr:Moure de la Gardille, fr:Pic d'Anjeau, fr:Rocher de Saint-Guiral, fr:Signal de Mailhebiau, fr:Truc de Grèzes +55.9440035 -3.1620073, 55.9541294 -3.1809330, 55.9477108 -3.2639521, 55.9544518 -3.2745497, 55.9152214 -3.3945719, 55.9134128 -3.3949152, 55.9482519 -3.2642123, 55.9716648 -3.1905955, 55.9472868 -3.2703827, 55.9482565 -3.2674250, 55.9540954 -3.1088327, 55.9523647 -3.1038920, 55.9586267 -3.1191714, 55.9519091 -3.1027251, 55.9491007 -3.0951514, 55.9579857 -3.1179602, 55.9583285 -3.1185324, 55.9808431 -3.2595202, 55.9560356 -3.1824861, 55.9543903 -3.1831036, 55.9450930 -3.2608919, 55.9464057 -3.2635956, 55.9881586 -3.4033516, 55.9469976 -3.1909000, 55.9527656 -3.1917658, 55.9101888 -3.3263005 +asphalt, asphalt, asphalt, asphalt, asphalt +49.4026602 8.7297882, 49.4270459 8.7212154, 49.4155178 8.7899777, 49.4458400 8.7075662, 49.4105654 8.7914079, 49.4255549 8.7739082, 49.4035191 8.7047078, 49.4198621 8.7043293, 49.4261495 8.7062630, 49.4035105 8.7605887, 49.4467404 8.7467641, 49.4580313 8.7464236, 49.3925405 8.6991164, 49.3828404 8.6974716, 49.4396455 8.6868291 +49.4073193 8.7078225, 49.4143210 8.7642858, 49.4088119 8.7067204, 49.4133850 8.7080801, 49.4182625 8.7568364, 49.4193652 8.7352358, 49.4186075 8.6904514, 49.3639284 8.7055803, 49.3644625 8.7048475, 49.3691842 8.7047124, 49.4244810 8.6872622, 49.3788104 8.6917294, 49.4113164 8.7037968 +52.3899293 9.7456087, 52.3934773 9.6850598, 52.3709371 9.7283593, 51.9594248 8.6582026, 50.9428960 6.9361472, 52.3124684 9.7892519, 52.3754502 9.7958551, 50.0617005 8.8069017, 48.7891048 9.3416015, 50.8806816 6.8913792, 49.0015128 8.4069493, 50.0423356 8.1953445, 52.3773463 9.6848238, 49.0072332 8.4072855, 50.0814853 8.2262302, 50.0123236 8.2655463, 50.7167530 7.1535569, 50.7367740 7.1138600, 52.3622070 9.7537523, 52.3421344 9.7138144, 50.9916985 7.1310202, 50.8309647 12.9229769, 51.5240224 9.9465123, 50.2550748 8.6389994, 50.7300818 7.0983201, 50.1225806 8.6459770, 50.9822729 7.0253267, 50.0870455 8.2421548, 51.4365388 7.3338115, 52.3756167 9.7069653, 49.4296174 8.6819785, 49.4100037 8.6951825, 49.4179937 8.7574277, 52.3716452 9.7353393, 51.2563697 7.1401768, 51.2988383 9.4703150, 51.2128024 6.7685462, 52.3850094 9.7244420, 52.3926776 9.8225337, 51.4118502 7.2019251, 49.8443941 9.6031306, 51.4454315 7.3366202, 48.5492145 9.0343004, 49.4146302 8.6907419, 53.0947167 8.8021129, 50.9239816 6.9667201, 49.5944628 11.0050254, 51.3125593 7.0894157, 50.5567290 6.2397596, 50.0025831 8.2722855, 52.3092512 10.5048372, 48.9973387 8.3997219, 50.1212852 8.6802109, 50.9313910 6.9368757, 50.7850779 6.0823413, 52.3383710 9.6273484, 47.8800544 7.7308829, 53.7709959 7.7003378, 52.4005177 9.7751797, 52.3947666 9.7612615, 49.9693861 8.8386678, 50.9961034 11.0262074, 50.0587051 8.2911880, 51.4322369 6.7692110, 54.1459583 9.2922797, 48.6243483 8.9685438, 49.6007506 11.0018818, 48.5582221 9.0502038, 53.8581580 10.6640647, 47.5543376 7.9490825, 47.6015569 7.6640209, 49.9388957 8.1974312, 50.9138068 7.1970173, 51.6758618 6.1695034, 49.0167204 8.4440427, 51.6603461 6.9669169, 50.9330194 7.2886085, 50.9299219 7.0410660, 51.9040802 7.6420735, 51.1098867 13.7610089, 51.4545146 7.0120954, 51.4627522 6.9800867, 50.6475033 6.1955847, 50.7214683 7.0993311, 48.5409087 9.0773047, 52.2824530 9.7813509, 48.9988806 8.4732752, 51.7747521 6.4592520, 49.0601604 8.8023558, 52.6693016 9.1571580, 49.0866720 8.7820246, 52.6138372 6.7443143, 50.6824177 6.2098451, 51.2530947 6.3920944, 51.5524262 9.8713368, 52.9840975 9.8388027, 50.8174222 7.1481750, 50.8151391 7.1569796, 50.8068274 8.7688998, 52.6191817 10.0709001, 52.6214429 10.0695743, 52.6238303 10.0860562, 50.6887158 6.4832830, 53.4464050 8.5212223, 52.2999759 7.1341267, 48.9761256 8.4074460, 52.3117275 9.3565659, 53.0677539 8.7912280, 50.9034328 8.7243284, 52.4411251 9.1901684, 48.8703817 12.5829460, 51.4576218 7.2711498, 51.1246272 6.6602442, 48.9883180 8.3793809, 50.9428752 6.9468548, 53.8661151 10.7034431, 52.4876911 13.2632817, 49.2295911 9.1621085, 54.2931879 12.3312166, 48.9233266 8.4756921, 54.0862892 12.1092185, 48.2677757 10.9871455, 50.2597325 10.9668032, 50.7784193 6.0819141, 51.4887528 9.1481905, 49.4989286 8.4669566, 48.7800847 8.2695681, 50.7752933 7.2842904, 49.6835949 8.3883429, 49.6856843 8.4540704, 51.4422807 7.3101694, 51.7664795 8.9431728, 53.1182492 9.7875281, 48.6765290 10.1531586, 49.2049849 8.0374037, 51.5606684 9.9030774, 52.3129755 9.6006209, 49.4512959 11.0534123, 49.1157459 9.1682917, 50.9056422 7.4081487, 54.0891092 9.0738864, 48.9278838 8.5680529, 51.0763032 13.7499741, 48.7604571 8.1652640, 48.9319761 8.9571654, 52.5040184 9.4612449, 49.2790240 9.4798323, 50.0634607 8.2542956, 50.0802690 8.2452197, 50.8844555 7.0580309, 49.9464208 11.5765480, 50.1700608 8.6961463, 50.1766486 8.6294170, 50.1836952 8.6660344, 50.1945851 8.8041122, 51.3122058 7.2036863, 51.3125673 7.0894414, 49.9711742 9.1479485, 49.9733393 9.1512666, 49.9746615 9.1504036, 49.9771602 9.1435557, 49.9800624 9.1410398, 48.9605081 10.9153295, 50.3584122 7.6106090, 48.1600276 11.5633914, 48.4275436 10.1223390, 51.7642516 6.3892283, 51.3266476 6.9698740, 50.8972242 14.8042950, 54.3542046 12.7183686, 52.4772010 13.4225984, 48.2826289 11.1481794, 51.9705597 7.6240933, 49.8458955 11.6262394, 50.4825136 11.6642046, 51.1903516 6.5134492, 52.3742465 9.7612717, 50.7299331 6.1769144, 52.2805551 8.2394695, 52.2352939 8.1691723, 49.9284405 7.8320296, 50.1666031 8.6802011, 51.9335107 8.8765602, 51.0582476 8.7950734, 52.9105327 13.9607509, 52.3885273 8.0620123, 52.4179200 8.0597532, 50.7417836 12.7472070, 49.3560176 8.7761636, 49.3392715 8.7999047, 49.3391430 8.8000149, 49.3724010 8.7709725, 49.3930489 8.7993959, 47.9196926 7.6932470, 47.7306633 7.5560184, 47.6145000 7.6610026, 52.9672077 11.1558534, 50.1378539 8.4509242, 49.9761096 8.1914570, 51.4761911 6.8599826, 51.2772029 7.1991874, 51.2731452 7.1515419, 51.2479173 7.0959443, 51.2696500 7.2369949, 51.2259115 7.1441887, 47.8821895 7.7302532, 47.8838797 7.7324937, 54.0775602 12.1065146, 54.0912911 12.1230818, 54.0930741 12.0978031, 54.0930972 12.0975926, 51.8285938 9.4455937, 52.2013467 8.5722113, 52.1559127 11.6324209, 52.5381110 13.4193706, 48.9377849 8.2729904, 50.1400132 8.9026026, 48.5541330 12.8084507, 51.4215077 6.7526023, 48.7460836 9.2325712, 51.6721352 8.3474920, 51.4626289 6.9799864, 54.7819077 9.4351628, 54.3204089 10.1336451, 50.0258880 8.8841874, 51.6254951 7.5119843, 51.1678054 6.9343580, 51.1698923 6.9358147, 48.8358883 9.2247950, 50.7745368 7.0711829, 53.3108627 10.2849824, 49.3351734 8.8503689, 52.4627479 13.3895475, 50.5556090 6.7650904, 49.7125059 8.6925201, 53.2808212 9.7140963, 50.8745953 8.0174493, 54.6813926 8.7565234, 51.4421227 7.3176077, 50.8239901 6.9866133, 50.8248540 6.9816957, 51.5741591 9.3097592, 50.5856997 8.6831647, 49.7593825 11.5458971, 48.4658333 9.2257983, 51.6640914 9.3747581, 47.5665287 7.9145453, 47.5511989 7.9488036, 52.6320000 10.0442167, 51.0149047 7.0822359, 54.1218750 13.8414648, 54.1199886 13.8370056, 50.0091443 8.2185012, 51.3068051 9.4854149, 51.3230352 9.4459656, 51.3021239 9.5030093, 51.5392551 7.2562055, 52.5287035 12.3385254, 53.5005463 7.0940227, 51.9712215 7.6134519, 51.9057426 7.6648622, 48.9002613 8.1990106, 51.3341759 7.2791030, 51.4748713 9.9290184, 50.8276566 7.1178052, 51.4779253 7.2263630, 52.4029056 9.7988354, 49.1451956 9.2174140, 51.7684371 6.8382611, 54.1779521 12.0794872, 51.7173401 9.1822390, 53.8324853 10.6940482, 53.7449512 9.6999324, 48.0669930 7.8832820, 47.9948480 7.8444800, 47.9877250 7.9053700, 47.9656500 7.8563830, 52.4200874 9.7997158, 50.5924581 10.0633566, 50.5909334 10.0650281, 50.9322950 6.8568659, 52.4131922 13.2664622, 51.9091439 10.4264418, 50.6871009 7.3368469, 53.1852848 8.2426951, 51.8421230 12.4231299, 53.4766416 9.7020280, 51.5314010 9.2850698, 54.5026576 9.5417184, 47.8823612 7.7315052, 49.4751233 8.6651478, 49.9908749 8.0235994, 50.8884889 8.7707044, 49.3169313 8.4381704, 49.4797967 10.9875741, 51.4726447 7.2141858, 47.5779686 7.9874500, 51.4521355 7.0386162, 51.3220038 9.5049612, 51.3154071 9.4735270, 51.3723903 7.2331683, 50.0225891 8.2199053, 49.4892731 7.0315382, 48.2535400 7.8098015, 51.6748443 8.3464763, 51.4052570 8.0669383, 51.4427786 8.3551144, 52.1505785 9.9295700, 53.8642320 10.7200275, 52.3992156 13.0582846, 54.0621354 13.9558361, 48.8908129 8.7011281, 49.4255320 8.6477931, 51.3481473 8.2829812, 50.6976721 7.1245718, 51.4209182 6.9606496, 47.8115873 10.8975155, 49.9981164 8.8661543, 50.9580264 7.1167230, 50.9580226 7.1166872, 49.5378705 7.4060152, 48.7910453 9.1933500, 51.2132191 6.2729384, 53.2085929 9.1611298, 53.0600275 8.8094072, 53.1079582 8.8539526, 52.6375458 9.2060731, 50.0151940 8.2983204, 51.4414351 6.9945036, 52.3400532 9.7632793, 53.9705544 8.9626685, 53.0705346 7.6973629, 52.4115380 9.7520825, 52.2056892 10.9162723, 50.1006795 8.7243886, 49.7015018 9.2578914, 51.1626488 6.9982545, 51.0358411 6.6960445, 52.4893092 13.3195004, 50.7861088 8.7774587, 51.9906405 9.1159989, 53.3625914 10.5622673, 50.9192081 6.9647726, 50.9078226 6.9711709, 50.9197790 6.9540083, 52.5571352 13.4700828, 51.2857166 9.4686180, 47.8295843 9.0954187, 47.7701195 9.2148903, 49.3251402 8.9750624, 51.4421255 7.3170617, 54.5850564 10.0230418, 49.4028996 8.6875247, 53.0838879 8.8546977, 50.8123714 6.9711955, 52.4747757 9.2297412, 52.5383977 13.3864413, 48.8016981 9.7962988, 51.7379322 7.5293693, 48.8078295 9.3208218, 52.3722877 13.6155938, 50.0076902 8.7755906, 50.1036224 8.6299113, 48.9409387 8.4079380, 51.9269859 7.8450740, 50.1472545 9.0132328, 48.0058434 7.8471089, 51.2059315 10.4515343, 53.5202369 8.5796043, 53.8731794 9.8843126, 47.9917509 7.8473909, 50.8859545 14.1138102, 49.0368509 8.7086877, 51.2341626 6.1357802, 51.0680621 13.7586525, 51.0688218 13.7163235, 48.7602341 8.2388460, 48.7615308 8.2413769, 53.4668943 9.9633139, 48.6152775 9.8552006, 52.0357494 8.5061297, 51.9528428 7.9865996, 54.3631346 10.2886384, 49.3788062 8.6917517, 50.1397787 8.3589817, 51.5747115 6.5103462, 52.6782991 13.5880892, 53.0545844 8.2553881, 49.1838384 8.9815995, 49.2035052 8.9659079, 49.1432441 9.1242794, 50.1286306 8.7110841, 50.0531096 8.8845771, 51.2711027 7.2241114, 50.8272789 6.9050302, 52.2528151 12.8352013, 51.8476696 8.9696298, 49.4079434 8.8356672, 51.9653006 7.6215589 +yes +Forstquelle, Turnerbrunnen, Schneeberg, Schweinsbrunnen, Michelsbrunnen, Gaulskopfbrunnen, Buchbrunnen, Webersbrunnen, Bittersbrunnen, Strangwasenbrunnen, Hellenbachbrunnen, Mausbach-Brunnen, Brunnen an der Jagdhütte, Großer Roßbrunnen, Kleiner Roßbrunnen, Erlenbrunnen, Rombachbrunnen +36 +37 +no +55.9670315 -3.2477797, 55.9585729 -3.1857898, 55.9736688 -3.1675716, 55.9907705 -3.3987419, 55.9537560 -3.1154614, 55.9466681 -3.2139844, 55.9331935 -3.1406956, 55.9605287 -3.2255329, 55.9076452 -3.2280715, 55.9404662 -3.2927628, 55.8851300 -3.3398078, 55.9042993 -3.1652640, 55.9431626 -3.1790248 +55.9432488 -3.1817167, 55.9164464 -3.2255329, 55.9166163 -3.2225162, 55.9279913 -3.2292065, 55.9058039 -3.2543852, 55.9409114 -3.2097700, 55.9703622 -3.1822317, 55.9628897 -3.1944604, 55.9358839 -3.1759899, 55.9344136 -3.2126517, 55.9417000 -3.2026025, 55.9438526 -3.1964947, 55.9592575 -3.1901766, 55.9613996 -3.1820673, 55.9580853 -3.1891489, 55.9488813 -3.1834652, 55.9492101 -3.2153200, 55.9544768 -3.1997466, 55.9678361 -3.2060988, 55.9309993 -3.1942265, 55.9296483 -3.1705890, 55.9741180 -3.2117279, 55.9782570 -3.2974770, 55.9126235 -3.3200599, 55.9489685 -3.1194874, 55.9328025 -3.3133858, 55.9468668 -3.1827657, 55.9713977 -3.2133259, 55.9873483 -3.3962845, 55.9390116 -3.2052594, 55.9379190 -3.2748726, 55.9365045 -3.2061792, 55.9410176 -3.2095848, 55.9292890 -3.2059199, 55.9598760 -3.2111177, 55.9296306 -3.1686378, 55.9167292 -3.1640730, 55.9351048 -3.2071638, 55.9335197 -3.2097268, 55.9462694 -3.1973178, 55.9324830 -3.1925693, 55.9310841 -3.1608286, 55.9344536 -3.1587071, 55.9364299 -3.2061861, 55.9350584 -3.2069944, 55.9350875 -3.2070173, 55.9492741 -3.4056494, 55.9118553 -3.1422876, 55.9335280 -3.2095487, 55.9408795 -3.2097114, 55.9016895 -3.1650816, 55.9242811 -3.1768126, 55.9488044 -3.1194808, 55.9550446 -3.1662332, 55.9083022 -3.2718175, 55.9227482 -3.2166698, 55.9812556 -3.3751682, 55.9768910 -3.2298201, 55.9719283 -3.1746636, 55.9657117 -3.2328158 +Artspace, Citadel Youth Centre and http://www.citadelyouthcentre.org.uk/, Doodles and http://doodlesscotland.co.uk/, Edinburgh Printmakers and http://edinburghprintmakers.co.uk/, Scottish Official Board of Highland Dancing and http://www.sobhd.net/, Summerhall, North Edinburgh Arts Centre, The MGA Academy +49.4066800 8.6851295, 49.4123926 8.7103200, 49.4022609 8.6800427, 49.4133232 8.7072699, 49.4131657 8.7074358, 49.4089749 8.7019860, 49.4115288 8.7077973, 49.4116445 8.7062771, 49.4116271 8.7069102, 49.4121327 8.7076792, 49.4123530 8.7087690, 49.4114670 8.7085214, 49.4104389 8.7086905, 49.4113532 8.7105806, 49.4090153 8.6964726, 49.4125009 8.7107250, 49.4126246 8.7095306, 49.4111071 8.7086876, 49.3798148 8.6903816, 49.4077695 8.6948215, 49.4200540 8.6567921, 49.4085894 8.6902323, 49.4124111 8.7104952, 49.4133742 8.7132947, 49.4080812 8.6748720, 49.4080063 8.6870730, 49.4299617 8.6876137, 49.3802935 8.6747903 +506 +Hôtel Vivienne +16 +no +paved, asphalt, asphalt, asphalt, asphalt, paved, paved +yes +4, 5, 4 +55.9433282 -3.1904322 +yes +49.3819891 8.7064791, 49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.3696474 8.7091898, 49.4157261 8.7004521, 49.4532799 8.7620678, 49.3877298 8.7446960, 49.4209333 8.7223854, 49.3946455 8.7166681, 49.4221949 8.7060036, 49.4157681 8.7006398, 49.4052183 8.7807063, 49.4390162 8.7105044, 49.4210179 8.7198036, 49.4272716 8.7035465, 49.4305777 8.6928339, 49.4497133 8.7157120, 49.4428768 8.7011414, 49.4300341 8.7265054, 49.4040547 8.7550178, 49.3925114 8.7464235, 49.3936499 8.7467333, 49.4005231 8.7520710, 49.4095083 8.7002566, 49.4109969 8.7018271, 49.4103323 8.7353954 +49.4158274 8.7024562 +yes +72 +Thoraxklinik, Orthopädische Klinik, Psychosomatische Ambulanz, Psychiatrische Klinik, Psychiatrische Ambulanz, Kurpfalzkrankenhaus, Klinik für Allgemeine Innere Medizin und Psychosomatik, Blutspendezentrale Heidelberg IKTZ, HIT, Zentrum für Schmerztherapie und Palliativmedizin, Nierenzentrum, Chirurgische Klinik, NCT Heidelberg, Krankenhaus St. Vincentius, Institut für Medizinische Psychologie, Klinik für Kinder- und Jugendpsychiatrie - Tageszentrum für Jugendliche, Kliniken Schmieder Heidelberg, Salem, Unfallchirurgie - Atos, Institut für Psychosomatische Kooperationsforschung und Familientherapie, Tropenmedizinische Ambulanz, Ethianum, Hautklinik, Frauenklinik und Hautklinik, Frauenklinik, St. Josefskrankenhaus, Bethanien-Krankenhaus, Medizinische Klinik, Sankt Elisabeth, Kopfklinik, Kinderklinik, Kinderklinik, ATOS Klinik, Rehabilitationsklinik Heidelberg-Königstuhl +Thermes de Cluny, L'enceinte de Philippe Auguste, Cavae des Arènes de Lutèce +138 and 43.6837822 -79.4260743, 43.6576795 -79.4987997, 53.9900182 -1.1048507, 54.0107391 -1.0814402, 53.9502911 -1.0730271, 53.9695593 -1.1044687, 53.9783035 -1.1064726, 53.9659202 -1.1066465, 53.9153104 -1.1359444, 53.9852880 -1.1561727, 53.9409591 -1.1265772, 53.9490348 -1.1324670, 53.9615418 -1.1120955, 53.9522599 -1.1123202, 53.9358339 -1.1263285, 53.9403226 -1.1185343, 54.0146884 -1.0718957, 53.9877014 -1.1050782, 53.9491771 -1.0804384, 53.9553252 -1.1119903, 53.9017427 -1.0873341, 53.9990117 -1.1284252, 53.9575852 -1.1178225, 53.9874393 -1.1204313, 53.9868873 -1.1220633, 53.9494875 -1.1413259, 53.9647966 -1.1058434, 53.9462069 -1.0762908, 53.9646978 -1.1104689, 53.9671473 -1.1196181, 53.9333645 -1.1101612, 53.9432145 -1.0761018, 53.9545630 -1.1860637, 53.9500452 -1.0806102, 43.6644716 -79.5073350, 53.9731081 -1.0720236, 53.9728750 -1.0718855, 43.6709565 -79.4808029, 43.6909696 -79.5078325, 43.6768364 -79.5008575, 43.6869909 -79.4927906, 43.7060427 -79.5305440, 53.9518846 -1.0748059, 43.6954667 -79.4292400, 53.9891412 -1.0750065, 53.9697935 -1.0788931, 53.9761008 -1.0866567, 53.9642505 -1.1103673, 53.9572111 -1.1022306, 53.9275166 -1.1585419, 53.9771511 -1.1335660, 43.6916751 -79.4801455, 43.6884518 -79.4620778, 43.6791418 -79.4807102, 43.6784874 -79.4805707, 53.9171538 -1.0961410, 43.6983920 -79.4349417, 43.7032269 -79.5060546, 43.6965563 -79.4691090, 53.9675172 -1.0774716, 43.6537880 -79.4901878, 43.6868311 -79.4924568, 54.0175617 -1.0838151, 53.9441501 -1.1072575, 43.6912619 -79.4333772, 43.6883062 -79.4538863, 53.9580671 -1.0717614, 53.9316497 -1.1069040, 43.7063756 -79.5161696, 43.6980072 -79.5193378, 43.6979105 -79.5191746, 43.6981548 -79.5195536, 43.6948627 -79.4854853, 43.7078482 -79.5309590, 43.6761780 -79.4788514, 43.6769072 -79.4772807, 43.6731469 -79.4908170, 53.9872557 -1.1137428, 53.9773826 -1.0941901, 53.9781054 -1.0952493, 53.9719535 -1.0928503, 43.6933502 -79.4302213, 43.6843140 -79.4879601, 43.6712702 -79.4926038, 43.6946390 -79.4359419, 43.6869082 -79.4775555, 43.6817542 -79.4986570, 43.7014365 -79.5073633, 53.9735958 -1.2046224, 43.6935978 -79.4761834, 43.7014532 -79.4510224, 43.7014588 -79.4506901, 43.6957307 -79.4305271, 43.7032224 -79.4392616, 53.9663972 -1.1227394, 43.6925004 -79.5088912, 43.7000154 -79.4462363, 43.7000042 -79.4464494, 43.7001712 -79.4461827, 43.7001539 -79.4458926, 43.7000636 -79.4460083, 53.9838702 -1.1222527, 43.6836390 -79.4590501, 43.6880963 -79.4613111, 43.6898241 -79.4643187, 53.9450082 -1.1361836, 43.6924209 -79.4689785, 53.9889063 -1.1110964, 43.6879894 -79.4708591, 53.9445374 -1.1245969, 53.9595274 -1.0981373, 53.9610119 -1.1037227, 43.6840446 -79.4389375, 43.6842718 -79.4397157, 43.6871180 -79.4284008, 53.9623408 -1.1308643, 43.6484124 -79.4885632, 53.9522747 -1.0911362, 43.6762467 -79.4781695, 43.6927596 -79.4362309, 43.6895001 -79.4353381, 43.6921445 -79.4472623, 43.6917638 -79.4436721, 43.6628673 -79.4872055, 43.6627881 -79.4870652, 43.6890777 -79.4991503, 43.6898499 -79.4650002, 43.6648262 -79.5030967, 43.7027737 -79.5207797, 53.9862724 -1.1105539, 53.9550640 -1.0882545, 53.9208730 -1.1589010, 53.9744987 -1.0900125, 53.9637209 -1.1380678, 53.9550486 -1.1302976, 43.6742489 -79.4976003, 43.7022539 -79.5255456, 39.9687542 -76.7280201 +Hotel Etab, Heidelberg Marriott Hotel, Hotel & Restaurant Auerstein, Grenzhof Hotel & Restaurant, Hotel Schönberger Hof, Gästehaus Endrich, Parkhotel Atlantik, Leonardo Hotel, Hotel Tannhäuser, Hotel Bayrischer Hof, Ivory-Suite, Hackteufel, Hotel Perkeo, Hotel The Dubliner, Hotel Regina, IBIS, Neckartal, Goldener Falke, Hotel zum Ritter St. Georg, Europäischer Hof, Hotel Elite, Hotel Kohler, Hotel Zur Alten Brücke, Qube Hotel, Hotel Central, Denner Hotel, Hotel Acor, Hotel Monpti, Hotel am Kornmarkt, NH Heidelberg, Hotel Goldene Rose, Hotel Nassauer Hof, Hotel am Rathaus, Hotel am Schloss, Hotel Kulturbrauerei Heidelberg, Hotel Villa Marstall, Hotel Goldener Hecht, Hotel Holländer Hof, Hotel Schnookeloch, Arthotel Heidelberg, Hotel Weisser Bock, Hotel Backmulde, Hip Hotel, Altstadt Hotel, Hotel Krokodil, Hiphotel Blume, Hotel Classic Inn, Hotel Diana, Kurpfalz-Residenz, Gästezimmer GZ, Bergheim 41 - Hotel im Alten Hallenbad, Kranich, Holiday Inn Express Heidelberg City Centre, Hotel Vier Jahreszeiten, sevenDays, Hotel & Restaurant Sudpfanne, Hotel Molkenkur, Gästehaus der SRH, Heidelberg Suites, Hotel Heidelberger Land, Hotel Das Lamm, Astoria, Hotel Die Hirschgasse Heidelberg, Hotel Ballmann Garni, Crowne Plaza Heidelberg, Exzellenz Hotel, Hotel Boarding House, Apartments & Hotel Kurpfalzhof, Hotel Anlage, Hotel Panorama, Leonardo Hotel Heidelberg, Hotel Schmitt, Goldene Rose, Hotel Heidelberg, Hotel Rose, Neu Heidelberg, hotelo, Cafe Hotel Frisch, DenRiKo, Schwarzer Adler, Zum Waldhorn, B&B Hotel, Hotel ISG, Crowne Plaza Heidelberg and 49.4300711 8.6823444, 49.4091649 8.6726851, 49.4313225 8.6827624, 49.4178189 8.5954606, 49.4121354 8.7011825, 49.4196577 8.7610727, 49.4158348 8.7294625, 49.4079061 8.6867560, 49.4092400 8.6923559, 49.4087676 8.6922534, 49.4138040 8.6935807, 49.4127792 8.7096645, 49.4110763 8.7008753, 49.4113255 8.7025821, 49.4094909 8.6914211, 49.4033496 8.6774778, 49.4106777 8.7717326, 49.4118757 8.7108162, 49.4117371 8.7091875, 49.4079388 8.6952668, 49.4050153 8.6915327, 49.4054719 8.6897423, 49.4131659 8.7099659, 49.4080762 8.6812135, 49.4040305 8.6800031, 49.4092584 8.6921123, 49.4090167 8.7039135, 49.4090286 8.7040991, 49.4119070 8.7119908, 49.4073921 8.6825502, 49.4092821 8.6942034, 49.4089977 8.6943008, 49.4124861 8.7108070, 49.4113057 8.7120202, 49.4131432 8.7133745, 49.4132612 8.7060850, 49.4130252 8.7094285, 49.4131065 8.7092091, 49.4129122 8.7088486, 49.4095865 8.7066610, 49.4122271 8.7059479, 49.4121564 8.7037030, 49.4115410 8.7046342, 49.4091984 8.6941997, 49.4046591 8.6869762, 49.4044605 8.6806232, 49.4040961 8.6803560, 49.3913388 8.6899411, 49.4086878 8.6815330, 49.4072069 8.6788242, 49.4083367 8.6887571, 49.3961597 8.6436240, 49.4058252 8.6861495, 49.4132459 8.7086805, 49.4062762 8.6644561, 49.4129263 8.7138084, 49.4069371 8.7137255, 49.4119335 8.6547454, 49.4151692 8.7066598, 49.4316754 8.6324996, 49.4262008 8.6882693, 49.4155661 8.6907484, 49.4168638 8.7149130, 49.4048325 8.6922035, 49.4065332 8.6919726, 49.4048219 8.6927806, 49.4052550 8.6923037, 49.3744135 8.6149237, 49.4082602 8.6992154, 49.4109928 8.6917613, 49.3870250 8.6611599, 49.4044331 8.6838472, 49.3772275 8.6672364, 49.3759070 8.6609254, 49.3799862 8.6876121, 49.4006254 8.6417864, 49.3988698 8.6808081, 49.4129001 8.6782904, 49.3653721 8.6843683, 49.4179324 8.7578275, 49.4447844 8.7558449, 49.3971502 8.6748504, 49.3704338 8.7057626, 49.4067729 8.6917906 +147 +3 +55.9474486 -3.1859655, 55.9547783 -3.1976132, 55.9512066 -3.1850870, 55.9426063 -3.2085087, 55.9348214 -3.0945488, 55.9366417 -3.1570870, 55.9549932 -3.1109797, 55.9733698 -3.1917230, 55.9446070 -3.1860121, 55.9444906 -3.1858127, 55.9395492 -3.2038813, 55.9355709 -3.2102528, 55.9386232 -3.2288990, 55.9395738 -3.2207070, 55.9396013 -3.2205959, 55.9317083 -3.2375695, 55.9282620 -3.2003920, 55.9445252 -3.1859176, 55.9480977 -3.1860003, 55.9471995 -3.1855061, 55.9470671 -3.1857568, 55.9468154 -3.1855780, 55.9440261 -3.1820823, 55.9406312 -3.2039275, 55.9402760 -3.2038110, 55.9434664 -3.1831055, 55.9425019 -3.1793852, 55.9434240 -3.1801919, 55.9774285 -3.1719154, 55.9627814 -3.1995758, 55.9630986 -3.2001715, 55.9479312 -3.1940298, 55.9488004 -3.1932865, 55.9488010 -3.1925834, 55.9619662 -3.2352523, 55.9503936 -3.1748495, 55.9500635 -3.1892496, 55.9534622 -3.1963003, 55.9810888 -3.1948604, 55.9813469 -3.1948497, 55.9775639 -3.1689368, 55.9763635 -3.1706985, 55.9610381 -3.1807131, 55.9760230 -3.1696703, 55.9771581 -3.1733472, 55.9825548 -3.1951570, 55.9770294 -3.1725826, 55.9770823 -3.1729052, 55.9757237 -3.1680744, 55.9768212 -3.1696962, 55.9696704 -3.1601774, 55.9746544 -3.1708033, 55.9754457 -3.1703672, 55.9748068 -3.1719428, 55.9764442 -3.1712312, 55.9612894 -3.1714220, 55.9651802 -3.1900260, 55.9734916 -3.1731211, 55.9734370 -3.1678545, 55.9766362 -3.1692569, 55.9581662 -3.2088898, 55.9584860 -3.2082072, 55.9585295 -3.2049192, 55.9561318 -3.2024897, 55.9607716 -3.1994845, 55.9624799 -3.1788559, 55.9721688 -3.1727029, 55.9734119 -3.1676688, 55.9545214 -3.1981041, 55.9542551 -3.1979757, 55.9356483 -3.2096691, 55.9364991 -3.2084171, 55.9453065 -3.1835012, 55.9457155 -3.2031429, 55.9450484 -3.2047027, 55.9463009 -3.2016068, 55.9468875 -3.2026394, 55.9467764 -3.2027315, 55.9459875 -3.2052600, 55.9461895 -3.1912537, 55.9642340 -3.2119376, 55.9760874 -3.1678906, 55.9751258 -3.1658656, 55.9460137 -3.1821143, 55.9587464 -3.2103338, 55.9455352 -3.1866707, 55.9456867 -3.1862318, 55.9445434 -3.1856701, 55.9478899 -3.1920092, 55.9477659 -3.1919316, 55.9540924 -3.1857179, 55.9807113 -3.1953762, 55.9525178 -3.1990765, 55.9527244 -3.1978512, 55.9458222 -3.1851240, 55.9456630 -3.1864521, 55.9506084 -3.1874617, 55.9500934 -3.1836054, 55.9498204 -3.1834215, 55.9508055 -3.1777162, 55.9527611 -3.2030077, 55.9690121 -3.1681747, 55.9567027 -3.2027842, 55.9466421 -3.1371546, 55.9567499 -3.1986451, 55.9811460 -3.1776490, 55.9806886 -3.1784936, 55.9809733 -3.1781568, 55.9809041 -3.1782848, 55.9820170 -3.1763600, 55.9465573 -3.2166040, 55.9570779 -3.1884191, 55.9480209 -3.1999685, 55.9477134 -3.1957934, 55.9436221 -3.1937179, 55.9492755 -3.2122776, 55.9337528 -3.2109407, 55.9335062 -3.1782145, 55.9382383 -3.1924215, 55.9506835 -3.1901263, 55.9488068 -3.1956257, 55.9436384 -3.2027881, 55.9777657 -3.1686490, 55.9426119 -3.2218340, 55.9559071 -3.2028055, 55.9374422 -3.2067350, 55.9368190 -3.2080761, 55.9391854 -3.2049304, 55.9403048 -3.2042415, 55.9354188 -3.2098186, 55.9357089 -3.2095799, 55.9517073 -3.1096947, 55.9524705 -3.1146567, 55.9519351 -3.1106711, 55.9524356 -3.1964223, 55.9454558 -3.1847776, 55.9567479 -3.1931126, 55.9435851 -3.1847147, 55.9444992 -3.1839329, 55.9462089 -3.1892186, 55.9449737 -3.1886697, 55.9620925 -3.1793630, 55.9654977 -3.1757974, 55.9537919 -3.1943636, 55.9265106 -3.2094010, 55.9371166 -3.1786816, 55.9373587 -3.1783299, 55.9435115 -3.2193949, 55.9437549 -3.2193403, 55.9453892 -3.2171020, 55.9452977 -3.2171685, 55.9463186 -3.2159103, 55.9462644 -3.2147801, 55.9460056 -3.2124627, 55.9463269 -3.2059968, 55.9465542 -3.2158573, 55.9463549 -3.2017288, 55.9464387 -3.2035789, 55.9486361 -3.2062189, 55.9485519 -3.2140339, 55.9467972 -3.2050617, 55.9469991 -3.2045993, 55.9467213 -3.2047418, 55.9485678 -3.1946201, 55.9486421 -3.1944619, 55.9489611 -3.1926806, 55.9457412 -3.2099832, 55.9495552 -3.2091699, 55.9506675 -3.2089125, 55.9505668 -3.2093105, 55.9505921 -3.2087450, 55.9582298 -3.2268150, 55.9434367 -3.2195949, 55.9460045 -3.2187935, 55.9462622 -3.2145897, 55.9586309 -3.1903764, 55.9465828 -3.2144286, 55.9458930 -3.2127420, 55.9462614 -3.2149075, 55.9469392 -3.2157459, 55.9466500 -3.2155710, 55.9489596 -3.2105228, 55.9460203 -3.2206990, 55.9505780 -3.2098209, 55.9508641 -3.2099881, 55.9575799 -3.2074392, 55.9580520 -3.2065578, 55.9591363 -3.2144382, 55.9582634 -3.2095901, 55.9581540 -3.2094323, 55.9580230 -3.2092431, 55.9585716 -3.1897695, 55.9578403 -3.1887677, 55.9439438 -3.2188704, 55.9436651 -3.2196309, 55.9425916 -3.2009298, 55.9427446 -3.2017235, 55.9420620 -3.2036946, 55.9418227 -3.2036511, 55.9416745 -3.2030588, 55.9460150 -3.1908920, 55.9470537 -3.1917202, 55.9473009 -3.1911302, 55.9411590 -3.2032805, 55.9392330 -3.2127435, 55.9460210 -3.2291854, 55.9460528 -3.2226765, 55.9410190 -3.2179980, 55.9579133 -3.2068151, 55.9577295 -3.2066473, 55.9572260 -3.2056240, 55.9537733 -3.2038799, 55.9507047 -3.1827880, 55.9510404 -3.1846922, 55.9502539 -3.1878479, 55.9475890 -3.2135160, 55.9479040 -3.2136850, 55.9578281 -3.2064585, 55.9461791 -3.2053213, 55.9569075 -3.1939006, 55.9530794 -3.2035262, 55.9486670 -3.1956973, 55.9442121 -3.2179551, 55.9546639 -3.1975541, 55.9544395 -3.1974380, 55.9542190 -3.1973239, 55.9541769 -3.1973021, 55.9540060 -3.1972137, 55.9541028 -3.1972638, 55.9541197 -3.1979103, 55.9530164 -3.2013793, 55.9523991 -3.2052223, 55.9522681 -3.2060091, 55.9522441 -3.2061536, 55.9499431 -3.2078244, 55.9429692 -3.2046543, 55.9430026 -3.2042435, 55.9516199 -3.2027318, 55.9518670 -3.2035606, 55.9518994 -3.2028955, 55.9536150 -3.1883131, 55.9499018 -3.1935768, 55.9498329 -3.1910920, 55.9496897 -3.1897241, 55.9500792 -3.1891087, 55.9497794 -3.1891002, 55.9498847 -3.1884170, 55.9507029 -3.1895380, 55.9510625 -3.1882551, 55.9511343 -3.1876851, 55.9504690 -3.1879562, 55.9508281 -3.1833677, 55.9499013 -3.1834760, 55.9480205 -3.1941463, 55.9475711 -3.1964625, 55.9475446 -3.1965793, 55.9474740 -3.1968911, 55.9468534 -3.2055566, 55.9465560 -3.2054548, 55.9461881 -3.2059419, 55.9459465 -3.2061086, 55.9535003 -3.2044865, 55.9535044 -3.2004011, 55.9537081 -3.2003007, 55.9540962 -3.2002450, 55.9537909 -3.1998247, 55.9538415 -3.1995340, 55.9540148 -3.1994866, 55.9526921 -3.1998924, 55.9514403 -3.2044562, 55.9513975 -3.2047070, 55.9460065 -3.2126069, 55.9456584 -3.2094933, 55.9440144 -3.2064642, 55.9764272 -3.1711191, 55.9803418 -3.1792151, 55.9804368 -3.1789769, 55.9435020 -3.2024352, 55.9432539 -3.2025774, 55.9518969 -3.2025598, 55.9570492 -3.1932499, 55.9466922 -3.2046189, 55.9529509 -3.1973404, 55.9524364 -3.1984379, 55.9526199 -3.1984725, 55.9522016 -3.2030725, 55.9571910 -3.2077708, 55.9446418 -3.1854453, 55.9509598 -3.2058075, 55.9579896 -3.1895662, 55.9562957 -3.1887858, 55.9581296 -3.1899414, 55.9343180 -3.1037178, 55.9649789 -3.1762500, 55.9555667 -3.1925204, 55.9540378 -3.1993360, 55.9423653 -3.2037351, 55.9407524 -3.2038350, 55.9416963 -3.2026683, 55.9265332 -3.2084291, 55.9414320 -3.2180926, 55.9391841 -3.2128654, 55.9233856 -3.1748328, 55.9398689 -3.2196084, 55.9400709 -3.2188789, 55.9398073 -3.2198459, 55.9582032 -3.2095515, 55.9497095 -3.2073063, 55.9514958 -3.2041313, 55.9400291 -3.1697303, 55.9413945 -3.1836207, 55.9529201 -3.1893290, 55.9477347 -3.1956994, 55.9534027 -3.1920297, 55.9544769 -3.1974573, 55.9539860 -3.1972034, 55.9459485 -3.2060162, 55.9561918 -3.1852745, 55.9478903 -3.1915085, 55.9459447 -3.1909020, 55.9485947 -3.1945597, 55.9484900 -3.1938871, 55.9457476 -3.1909342, 55.9485587 -3.1943530, 55.9483248 -3.1864306, 55.9476976 -3.1919549, 55.9494442 -3.2078565, 55.9522731 -3.2016642, 55.9530413 -3.1976567, 55.9474107 -3.1857005, 55.9388452 -3.1790659, 55.9405122 -3.2247254, 55.9506503 -3.1887550, 55.9459157 -3.2048309, 55.9544956 -3.1996255, 55.9537345 -3.1902975, 55.9248346 -3.2543275, 55.9374976 -3.1806164, 55.9389517 -3.1803682, 55.9419979 -3.1791165, 55.9578375 -3.1855691, 55.9577009 -3.1853926, 55.9570718 -3.1867391, 55.9573509 -3.1857841, 55.9574003 -3.1857205, 55.9578226 -3.1852754, 55.9572831 -3.1858711, 55.9580954 -3.1850322, 55.9574839 -3.1856131, 55.9582192 -3.1849767, 55.9576457 -3.1858045, 55.9320111 -3.2097789, 55.9608511 -3.1806444, 55.9073679 -3.2580475, 55.9076454 -3.2556144, 55.9514989 -3.2098689, 55.9644679 -3.1766608, 55.9456603 -3.2057801, 55.9736032 -3.1729794, 55.9312746 -3.1719521, 55.9338048 -3.1784443, 55.9492753 -3.1855034, 55.9410964 -3.1808815, 55.9375777 -3.1779460, 55.9378124 -3.1781642, 55.9354709 -3.1798259, 55.9504193 -3.1866153, 55.9490741 -3.1893997, 55.9529899 -3.1973604, 55.9567702 -3.1807456, 55.9323166 -3.2101798, 55.9321089 -3.2101997, 55.9308794 -3.2100746, 55.9500237 -3.1859641, 55.9437591 -3.2187146, 55.9504916 -3.1861886, 55.9506853 -3.1853773, 55.9710344 -3.2100024, 55.9396258 -3.1829811, 55.9596581 -3.1714061, 55.9466096 -3.2157282, 55.9489839 -3.1929807, 55.9169756 -3.2120428, 55.9469467 -3.1868746, 55.9349914 -3.1790260, 55.9501695 -3.1909428, 55.9426772 -3.2016327, 55.9459543 -3.2110196, 55.9803312 -3.1788000, 55.9702196 -3.1702168, 55.9467924 -3.1855561, 55.9438132 -3.2185860, 55.9457016 -3.1899747, 55.9453485 -3.2171316, 55.9486496 -3.1940701, 55.9224491 -3.2107749, 55.9579836 -3.1811283, 55.9426269 -3.1823902, 55.9441244 -3.1834199, 55.9429144 -3.1826352, 55.9387155 -3.1789608, 55.9416801 -3.1819013, 55.9566001 -3.1617669, 55.9497766 -3.1880920, 55.9348643 -3.1686663, 55.9382875 -3.1812525, 55.9387673 -3.1815841, 55.9418959 -3.1837485, 55.9418211 -3.1837096, 55.9511723 -3.1075996, 55.9562823 -3.1983948, 55.9418000 -3.1789399, 55.9591452 -3.2145692, 55.9501282 -3.1886800, 55.9501474 -3.1919776, 55.9584216 -3.1835648, 55.9563144 -3.1853375, 55.9563929 -3.1855108, 55.9560587 -3.1853594, 55.9566044 -3.1856275, 55.9542648 -3.1862231, 55.9603650 -3.1816054, 55.9539559 -3.1864291, 55.9595116 -3.1827051, 55.9506624 -3.1904103, 55.9492455 -3.1893451, 55.9498216 -3.1888060, 55.9579923 -3.1851333, 55.9489961 -3.1873020, 55.9492301 -3.1869105, 55.9498654 -3.1872300, 55.9495368 -3.1870648, 55.9503997 -3.1842260, 55.9490417 -3.1857303, 55.9498761 -3.1930603, 55.9694744 -3.1724296, 55.9489892 -3.2104514, 55.9428623 -3.2034086, 55.9494976 -3.1832041, 55.9570561 -3.1868309, 55.9474907 -3.1912396, 55.9455586 -3.1906923, 55.9473547 -3.1907578, 55.9385351 -3.1788147, 55.9420479 -3.1791611, 55.9423618 -3.1840431, 55.9512610 -3.1800100, 55.9512749 -3.1799374, 55.9443287 -3.1812574, 55.9520043 -3.1768950, 55.9468472 -3.1856084, 55.9473137 -3.1851136, 55.9487553 -3.1962659, 55.9493042 -3.1940688, 55.9466056 -3.1912464, 55.9479651 -3.1920564, 55.9522129 -3.2063407, 55.9382413 -3.1927495, 55.9379861 -3.1928020, 55.9514215 -3.2038997, 55.9645701 -3.1765707, 55.9648300 -3.1763865, 55.9545797 -3.1975105, 55.9595598 -3.1714455, 55.9733312 -3.1670719, 55.9524366 -3.1994110, 55.9720484 -3.1727281, 55.9541108 -3.2007911, 55.9463993 -3.2054011, 55.9469840 -3.2072235, 55.9682750 -3.1678746, 55.9556814 -3.1924910, 55.9508000 -3.2089911, 55.9509363 -3.2096447, 55.9685040 -3.1738921, 55.9459122 -3.2050109, 55.9568316 -3.1854823, 55.9576388 -3.1845365, 55.9581968 -3.1716934, 55.9459161 -3.2047332, 55.9437740 -3.1934870, 55.9536366 -3.1881820, 55.9592372 -3.1902998, 55.9516721 -3.1954693, 55.9521526 -3.1969507, 55.9460880 -3.1902547, 55.9552399 -3.1545394, 55.9549886 -3.1524019, 55.9549401 -3.1509666, 55.9549290 -3.1483069, 55.9400201 -3.1805523, 55.9626517 -3.1592160, 55.9444352 -3.2057104, 55.9500762 -3.2087008, 55.9492493 -3.1821929, 55.9587280 -3.1832716, 55.9452936 -3.2339601, 55.9450405 -3.1853560, 55.9349687 -3.1057811, 55.9350718 -3.1057363, 55.9355871 -3.1055118, 55.9354840 -3.1055567, 55.9351748 -3.1056914, 55.9348657 -3.1058260, 55.9377112 -3.2170224, 55.9373959 -3.2166076, 55.9423015 -3.2037122, 55.9315505 -3.2517416, 55.9388946 -3.1813406, 55.9389130 -3.1809911, 55.9416787 -3.1839399, 55.9691129 -3.1844317, 55.9498132 -3.2085294, 55.9469808 -3.1906363, 55.9475575 -3.1918577, 55.9434619 -3.1842245, 55.9462530 -3.1899813, 55.9506277 -3.1883790, 55.9486261 -3.1871655, 55.9732265 -3.1683769, 55.9618841 -3.1951099, 55.9618945 -3.1951500, 55.8972738 -3.2040292, 55.9269151 -3.2467035, 55.9487803 -3.1950974, 55.9230657 -3.2475227, 55.9436516 -3.2079845, 55.9534174 -3.1955088, 55.9045849 -3.2066586, 55.9782920 -3.1800335, 55.9205723 -3.1672281, 55.9332260 -3.1067315 +Heidelberg Marriott Hotel +Cluny - Saint-Germain and 48.8505220 2.3461000 +48.8688161 2.3275703, 48.8663165 2.3370822, 48.8663449 2.3382902, 48.8695611 2.3317879, 48.8691942 2.3321035, 48.8510774 2.3385693, 48.8680799 2.3215688, 48.8656637 2.3778893, 48.8826925 2.3828693, 48.8662404 2.3855356, 48.8652332 2.3505855, 48.8779867 2.3739646, 48.8838984 2.3707556, 48.8847610 2.3245933, 48.8595367 2.4030888, 48.8667141 2.3660388, 48.8497380 2.3851348, 48.8492104 2.3895170, 48.8330139 2.3615547, 48.8683391 2.3714311, 48.8683233 2.3660938, 48.8783181 2.3578049, 48.8510126 2.4018663, 48.8517859 2.4015820, 48.8338366 2.3181857, 48.8867306 2.3464815, 48.8345868 2.4005135, 48.8344550 2.4007736, 48.8493959 2.3750250, 48.8464256 2.3723704, 48.8863208 2.3451631, 48.8864916 2.3449490, 48.8919041 2.3801340, 48.8906427 2.3820001, 48.8909556 2.3819203, 48.8895378 2.3833861, 48.8363055 2.3583190, 48.8584562 2.3550423, 48.8582377 2.3548214, 48.8576530 2.3575640, 48.8589115 2.3534861, 48.8598365 2.3549664, 48.8602520 2.3534175, 48.8572292 2.3551661, 48.8536005 2.3428569, 48.8872790 2.3272010, 48.8503838 2.3895178, 48.8753301 2.3889995, 48.8608773 2.3423534, 48.8617494 2.3405457, 48.8646538 2.3408552, 48.8689710 2.3345642, 48.8704581 2.3373664, 48.8693708 2.3397160, 48.8662163 2.3412156, 48.8688392 2.3442391, 48.8625665 2.3522237, 48.8704075 2.3483529, 48.8523357 2.3568707, 48.8591080 2.3500160, 48.8577487 2.3576815, 48.8567788 2.3558116, 48.8554369 2.3580795, 48.8621665 2.3511124, 48.8643855 2.3550009, 48.8644586 2.3544256, 48.8530176 2.3445259, 48.8813024 2.3361254, 48.8642700 2.3531320, 48.8864637 2.3771916, 48.8680162 2.3548820, 48.8537741 2.3390379, 48.8533950 2.3355231, 48.8602777 2.3728143, 48.8534529 2.3385450, 48.8643001 2.3323292, 48.8706806 2.3211802, 48.8712520 2.3169520, 48.8869689 2.3475030, 48.8803557 2.3235567, 48.8770026 2.3270417, 48.8766444 2.3270121, 48.8769627 2.3148350, 48.8354680 2.2893109, 48.8700490 2.3017240, 48.8675571 2.3965533, 48.8526933 2.4056082, 48.8608729 2.3451379, 48.8219547 2.3608058, 48.8746858 2.3662628, 48.8903045 2.3534684, 48.8804191 2.3624653, 48.8921927 2.3896612, 48.8742352 2.3423076, 48.8752057 2.3418014, 48.8750436 2.3412323, 48.8741144 2.3424987, 48.8551767 2.2700634, 48.8899959 2.3389104, 48.8909532 2.3762481, 48.8716440 2.3678590, 48.8594585 2.3560654, 48.8841660 2.2895992, 48.8875689 2.3536169, 48.8710893 2.3748362, 48.8872163 2.3671561, 48.8955070 2.3483656, 48.8626827 2.3523046, 48.8427362 2.3122657, 48.8420308 2.3127675, 48.8850887 2.3797004, 48.8608198 2.3503260, 48.8520115 2.3467331, 48.8478519 2.2606251, 48.8368456 2.3591245, 48.8508003 2.3840730, 48.8670533 2.3622765, 48.8368019 2.2791434, 48.8369546 2.2791133, 48.8651635 2.3419355, 48.8813769 2.3721944, 48.8468990 2.3044201, 48.8385292 2.3895336, 48.8654085 2.3767039, 48.8710357 2.3522560, 48.8690400 2.3726204, 48.8671390 2.3755303, 48.8536882 2.3708103, 48.8557897 2.3753324, 48.8545778 2.3710477, 48.8862540 2.3333605, 48.8649900 2.3816769, 48.8831571 2.3884076, 48.8570855 2.3550986, 48.8497121 2.3553355, 48.8716241 2.3914872, 48.8594342 2.4029865, 48.8637107 2.3697771, 48.8750628 2.3386203, 48.8710457 2.3357596, 48.8706525 2.3467197, 48.8784174 2.3564644, 48.8796001 2.3577149, 48.8768603 2.3560228, 48.8811904 2.3637372, 48.8827558 2.3708586, 48.8700724 2.3349268, 48.8672079 2.3368573, 48.8658764 2.3368066, 48.8535604 2.4103242, 48.8530681 2.4104272, 48.8376093 2.3551119, 48.8239653 2.3231923, 48.8270872 2.3248231, 48.8274776 2.3257190, 48.8291991 2.3278057, 48.8759986 2.3816785, 48.8337665 2.3191153, 48.8341125 2.3181604, 48.8823251 2.3397496, 48.8873987 2.3561308, 48.8658704 2.3983197, 48.8956894 2.3411820, 48.8428672 2.3484588, 48.8946670 2.3443629, 48.8949500 2.3433680, 48.8938461 2.3475036, 48.8935060 2.3426870, 48.8937760 2.3429130, 48.8941720 2.3462340, 48.8941340 2.3463850, 48.8940340 2.3461900, 48.8936100 2.3477290, 48.8930400 2.3435230, 48.8732200 2.3544917, 48.8712159 2.3580210, 48.8706729 2.3594270, 48.8703260 2.3600480, 48.8697612 2.3611035, 48.8694730 2.3616430, 48.8704690 2.3610130, 48.8709730 2.3613960, 48.8710750 2.3612300, 48.8715680 2.3620320, 48.8719160 2.3626809, 48.8726860 2.3635650, 48.8722479 2.3978396, 48.8914347 2.3494118, 48.8929850 2.3440490, 48.8939200 2.3452590, 48.8405023 2.2650429, 48.8914220 2.3515420, 48.8915940 2.3516290, 48.8917510 2.3517290, 48.8919510 2.3518460, 48.8445643 2.3491518, 48.8431091 2.3419694, 48.8693141 2.3323713, 48.8862067 2.3175438, 48.8624680 2.3549738, 48.8883787 2.3534523, 48.8437872 2.3493332, 48.8663676 2.3860046, 48.8686610 2.3900468, 48.8408842 2.2997786, 48.8407778 2.2998335, 48.8525397 2.4062717, 48.8527026 2.3765031, 48.8501042 2.3782626, 48.8532457 2.3759666, 48.8660229 2.3666774, 48.8668369 2.3739208, 48.8667946 2.3743500, 48.8793707 2.3458902, 48.8571157 2.3684747, 48.8357356 2.3522840, 48.8766343 2.3407712, 48.8515019 2.2777745, 48.8648511 2.3817815, 48.8328925 2.2883940, 48.8490395 2.3485570, 48.8709579 2.3576608, 48.8881851 2.3480652, 48.8884653 2.3485324, 48.8869647 2.3478228, 48.8920227 2.3428666, 48.8857577 2.3451141, 48.8554636 2.3337901, 48.8604940 2.3409119, 48.8910607 2.3394636, 48.8827601 2.3372823, 48.8728278 2.3909854, 48.8883514 2.2971194, 48.8933968 2.3371262, 48.8521890 2.3465789, 48.8887735 2.3938208, 48.8490772 2.4063369, 48.8975354 2.3338607, 48.8975417 2.3342523, 48.8939135 2.3350409, 48.8939770 2.3330775, 48.8935624 2.3293592, 48.8954780 2.3285255, 48.8964866 2.3287937, 48.8974071 2.3296252, 48.8957777 2.3393455, 48.8350746 2.2888425, 48.8340535 2.2873426, 48.8221377 2.3582427, 48.8912689 2.3395224, 48.8682806 2.3897258, 48.8748542 2.3087625, 48.8302605 2.3138234, 48.8421986 2.2819707, 48.8963284 2.3330215, 48.8575637 2.3994629, 48.8577147 2.4074098, 48.8518332 2.3373498, 48.8969286 2.3866620, 48.8505469 2.4061987, 48.8882304 2.3741760, 48.8633570 2.3506638, 48.8356746 2.3226602, 48.8354175 2.3228183, 48.8607749 2.3784617, 48.8555652 2.3871679, 48.8822854 2.3399369, 48.8442360 2.3235210, 48.8405572 2.3224049, 48.8407069 2.3164233, 48.8409248 2.3157527, 48.8413133 2.3184421, 48.8414979 2.3246397, 48.8432840 2.3249954, 48.8407506 2.3165877, 48.8415356 2.3248762, 48.8781338 2.2877691, 48.8910090 2.3460570, 48.8728753 2.3429491, 48.8394700 2.3227210, 48.8419451 2.2631629, 48.8913333 2.3185158, 48.8561348 2.4048284, 48.8468777 2.4086290, 48.8468470 2.4088515, 48.8479121 2.4058825, 48.8493703 2.2944544, 48.8836495 2.3167431, 48.8720494 2.3430269, 48.8228779 2.3555122, 48.8281219 2.3158457, 48.8878312 2.3787631, 48.8730582 2.3434334, 48.8613396 2.3430061, 48.8490152 2.3541552, 48.8227998 2.3462308, 48.8765118 2.3549110, 48.8309811 2.3172117, 48.8240230 2.3413470, 48.8248954 2.3414221, 48.8295986 2.3338514, 48.8364982 2.2975868, 48.8352818 2.3025475, 48.8358889 2.3006491, 48.8600347 2.4024972, 48.8607815 2.3438855, 48.8581223 2.3362437, 48.8264842 2.3599429, 48.8427979 2.2601266, 48.8394583 2.2629179, 48.8277530 2.3505091, 48.8426057 2.2818457, 48.8551489 2.3398837, 48.8512675 2.3899326, 48.8845594 2.3650486, 48.8904042 2.3201855, 48.8917130 2.3492982, 48.8392807 2.3902734, 48.8455873 2.3490693, 48.8614116 2.3675537, 48.8741216 2.3427260, 48.8944467 2.3202187, 48.8525782 2.3431052, 48.8660965 2.3482633, 48.8549614 2.3379207, 48.8715766 2.3537539, 48.8712919 2.3698711, 48.8733970 2.3707413, 48.8734671 2.3704021, 48.8733502 2.3703282, 48.8668410 2.3533605, 48.8197803 2.3430846, 48.8453425 2.4001936, 48.8530750 2.3455319, 48.8608697 2.3679199, 48.8643323 2.3740909, 48.8396133 2.3228908, 48.8444534 2.3488046, 48.8613268 2.3701752, 48.8613847 2.3698793, 48.8661252 2.3444240, 48.8659496 2.3445011, 48.8657315 2.3448468, 48.8657774 2.3445761, 48.8511831 2.3785314, 48.8392014 2.3497085, 48.8711280 2.3521453, 48.8790612 2.3664752, 48.8265384 2.3420357, 48.8530831 2.3451327, 48.8529444 2.3459453, 48.8527079 2.3443015, 48.8822164 2.3337987, 48.8660577 2.3461115, 48.8753587 2.3704700, 48.8528366 2.3455838, 48.8576488 2.2779659, 48.8884177 2.3743799, 48.8275172 2.3481095, 48.8518377 2.3336366, 48.8831199 2.3303330, 48.8834005 2.3305918, 48.8661080 2.3480098, 48.8650085 2.3673694, 48.8629079 2.3673391, 48.8627650 2.3673900, 48.8467474 2.3783883, 48.8699476 2.3254321, 48.8696624 2.3230123, 48.8403450 2.3126650, 48.8594147 2.3492122, 48.8593718 2.3493758, 48.8591459 2.3499381, 48.8666058 2.3460447, 48.8274980 2.3718441, 48.8725856 2.3023103, 48.8359481 2.3498941, 48.8686847 2.3475876, 48.8279631 2.3510342, 48.8276841 2.3501384, 48.8237415 2.3254034, 48.8551659 2.3601680, 48.8624888 2.3394585, 48.8619762 2.3402857, 48.8678347 2.3438681, 48.8336080 2.3554429, 48.8569595 2.3061913, 48.8728884 2.3579893, 48.8299498 2.3520500, 48.8304537 2.3536286, 48.8691288 2.3921028, 48.8588424 2.3620611, 48.8527486 2.3889981, 48.8526497 2.3891013, 48.8440184 2.3516159, 48.8703084 2.3528255, 48.8422841 2.3498549, 48.8602435 2.3561333, 48.8727441 2.3433035, 48.8764040 2.3270060, 48.8546210 2.3304540, 48.8815103 2.3372869, 48.8497474 2.3380298, 48.8713994 2.3446987, 48.8655102 2.2838972, 48.8532503 2.3737978, 48.8670687 2.3793313, 48.8667388 2.3796639, 48.8672848 2.3853206, 48.8671313 2.3852348, 48.8664979 2.3850779, 48.8553007 2.3755708, 48.8948851 2.3827807, 48.8760857 2.3803012, 48.8387171 2.4582291, 48.8775011 2.3813787, 48.8486443 2.3753679, 48.8430061 2.3486842, 48.8468648 2.3840074, 48.8598410 2.3424752, 48.8762491 2.3755713, 48.8752119 2.3738600, 48.8753782 2.3736728, 48.8782984 2.3583405, 48.8267959 2.3271211, 48.8812111 2.3720335, 48.8747667 2.3810283, 48.8749554 2.3828694, 48.8785529 2.3744580, 48.8735251 2.3828952, 48.8656456 2.3001103, 48.8716947 2.3062494, 48.8642117 2.3138141, 48.8743835 2.3178889, 48.8723341 2.3116489, 48.8709008 2.3059242, 48.8747420 2.3873713, 48.8783980 2.3708887, 48.8786489 2.3710845, 48.8793968 2.3715404, 48.8442836 2.3233862, 48.8818625 2.3741104, 48.8831168 2.3764104, 48.8835128 2.3767725, 48.8843991 2.3787117, 48.8855150 2.3816003, 48.8833431 2.3880013, 48.8525395 2.3353602, 48.8525395 2.3353602, 48.8423823 2.3027121, 48.8844100 2.3396601, 48.8843181 2.3391723, 48.8528644 2.3463229, 48.8861530 2.3940741, 48.8818660 2.3056448, 48.8469280 2.3518880, 48.8457050 2.3517750, 48.8765843 2.3876396, 48.8768371 2.3719871, 48.8755204 2.3905491, 48.8837170 2.3804450, 48.8755731 2.3984479, 48.8770937 2.4058924, 48.8357125 2.2929761, 48.8350897 2.3042236, 48.8837364 2.3368191, 48.8840234 2.3842246, 48.8556943 2.3595261, 48.8847149 2.3814227, 48.8606297 2.3503864, 48.8924468 2.3253223, 48.8751698 2.3943041, 48.8845920 2.3364580, 48.8815120 2.3375130, 48.8844290 2.3287650, 48.8704232 2.3339330, 48.8727411 2.3545133, 48.8743038 2.3728073, 48.8737082 2.3705081, 48.8745664 2.3724688, 48.8738742 2.3798465, 48.8716356 2.3717654, 48.8711993 2.3697018, 48.8721986 2.3733717, 48.8542603 2.3716689, 48.8541774 2.3718475, 48.8540652 2.3718440, 48.8542657 2.3672153, 48.8666898 2.3694210, 48.8642030 2.3713459, 48.8630703 2.3685776, 48.8915636 2.3488296, 48.8524094 2.3465837, 48.8733461 2.3642358, 48.8725150 2.3656983, 48.8690849 2.3675483, 48.8573775 2.3791140, 48.8504308 2.3983982, 48.8301596 2.3342151, 48.8554706 2.3787234, 48.8629210 2.3641445, 48.8301369 2.3291359, 48.8630361 2.3673100, 48.8584243 2.3685727, 48.8592565 2.3822340, 48.8589660 2.3811882, 48.8582525 2.2944389, 48.8680595 2.4086915, 48.8611306 2.3809641, 48.8624272 2.3797335, 48.8571958 2.3687018, 48.8519888 2.3423483, 48.8904696 2.3392991, 48.8859778 2.3475855, 48.8667059 2.3800163, 48.8457052 2.3419808, 48.8471480 2.3172036, 48.8476473 2.3185907, 48.8481468 2.3197601, 48.8478436 2.3190965, 48.8549571 2.3538809, 48.8560048 2.3754787, 48.8555572 2.3747522, 48.8618001 2.3720184, 48.8635810 2.3667513, 48.8615804 2.3711339, 48.8636741 2.3696764, 48.8633311 2.3692871, 48.8629926 2.3673177, 48.8573825 2.3774991, 48.8615938 2.3734258, 48.8632870 2.3585986, 48.8666410 2.3664307, 48.8543300 2.3711983, 48.8749871 2.3593369, 48.8747439 2.3591131, 48.8578407 2.3769477, 48.8648526 2.3659926, 48.8631383 2.3617868, 48.8636138 2.3718082, 48.8621804 2.3738279, 48.8621181 2.3741150, 48.8545431 2.3848577, 48.8358830 2.3217919, 48.8523534 2.3344379, 48.8620382 2.3843502, 48.8535077 2.3747389, 48.8833291 2.3947420, 48.8799319 2.3904826, 48.8646356 2.3695864, 48.8636710 2.3635746, 48.8468219 2.2937770, 48.8545936 2.3720001, 48.8525131 2.3664503, 48.8457418 2.2949105, 48.8659666 2.3487937, 48.8572972 2.3549227, 48.8731035 2.3613105, 48.8525022 2.3466367, 48.8524441 2.3462777, 48.8533371 2.3424320, 48.8533976 2.3416917, 48.8432025 2.3215730, 48.8941400 2.3334631, 48.8683415 2.3657119, 48.8687159 2.3685066, 48.8444349 2.4060748, 48.8672368 2.3753758, 48.8609279 2.3669227, 48.8489709 2.3487810, 48.8560387 2.3690689, 48.8849326 2.3248676, 48.8634068 2.3624053, 48.8627059 2.3734870, 48.8595197 2.3519694, 48.8575587 2.3574886, 48.8866242 2.3257917, 48.8377991 2.2870416, 48.8826722 2.3419776, 48.8726554 2.3578763, 48.8447782 2.2968775, 48.8419073 2.3004980, 48.8705967 2.3233815, 48.8922517 2.3469515, 48.8393548 2.3234506, 48.8686585 2.3478369, 48.8542591 2.3714035, 48.8701731 2.3428600, 48.8735547 2.3203322, 48.8544368 2.3714977, 48.8646057 2.3500641, 48.8585776 2.3458139, 48.8584254 2.3445810, 48.8648343 2.3738796, 48.8678143 2.3469536, 48.8520765 2.3734600, 48.8707201 2.3498183, 48.8653506 2.3662218, 48.8616762 2.3508801, 48.8722827 2.3912387, 48.8691800 2.3922512, 48.8816360 2.3374527, 48.8393126 2.3907145, 48.8709974 2.3627608, 48.8600950 2.3462239, 48.8654079 2.3819312, 48.8663494 2.3815935, 48.8516939 2.3807266, 48.8231458 2.3268700, 48.8628407 2.3491265, 48.8627989 2.3483063, 48.8627203 2.3480392, 48.8704879 2.3220781, 48.8623527 2.3647493, 48.8835254 2.3263619, 48.8405835 2.4002799, 48.8398157 2.3975076, 48.8762107 2.3687437, 48.8620563 2.3875237, 48.8623980 2.3859094, 48.8594496 2.3869170, 48.8605216 2.3863150, 48.8650075 2.3653036, 48.8387390 2.3509155, 48.8351664 2.3449034, 48.8306236 2.3486051, 48.8413530 2.3870229, 48.8623979 2.3404212, 48.8551471 2.3705000, 48.8588660 2.3539865, 48.8585639 2.3548381, 48.8583304 2.3555074, 48.8580893 2.3567059, 48.8635229 2.3723149, 48.8691274 2.3627458, 48.8644404 2.3701571, 48.8287203 2.3220138, 48.8752683 2.3407374, 48.8746488 2.3396891, 48.8689702 2.3588895, 48.8643061 2.3788042, 48.8676631 2.3464599, 48.8795128 2.3268768, 48.8797527 2.3288634, 48.8835570 2.3419972, 48.8277638 2.3796985, 48.8753041 2.3602466, 48.8835388 2.3413290, 48.8450006 2.3494675, 48.8632512 2.3153672, 48.8422193 2.2857496, 48.8834570 2.3696140, 48.8698417 2.3306990, 48.8804352 2.3250990, 48.8833129 2.3190225, 48.8563599 2.3579757, 48.8628510 2.3529726, 48.8384303 2.2818410, 48.8815298 2.3367363, 48.8816686 2.3369081, 48.8817518 2.3367610, 48.8644286 2.3530679, 48.8723384 2.3450494, 48.8900936 2.3613417, 48.8899772 2.3631924, 48.8870745 2.3230291, 48.8893777 2.3191987, 48.8894795 2.3184507, 48.8935693 2.3252942, 48.8943909 2.3198968, 48.8944557 2.3196837, 48.8594040 2.3760003, 48.8649451 2.3503699, 48.8648819 2.3503512, 48.8654300 2.3503684, 48.8655394 2.3504105, 48.8662800 2.3508421, 48.8661394 2.3507468, 48.8603946 2.3436809, 48.8810463 2.3373172, 48.8667617 2.3612946, 48.8685091 2.3575143, 48.8690138 2.3548626, 48.8710534 2.3579338, 48.8709395 2.3577877, 48.8701314 2.3413473, 48.8537719 2.3404642, 48.8758353 2.3818821, 48.8514007 2.3806923, 48.8667240 2.3744593, 48.8332731 2.3154936, 48.8455561 2.2971265, 48.8277981 2.3154241, 48.8359536 2.3961945, 48.8365131 2.3940686, 48.8381491 2.3600725, 48.8773298 2.3590519, 48.8292002 2.3082962, 48.8753875 2.3271144, 48.8345196 2.3774394, 48.8351691 2.3770840, 48.8369174 2.3751044 +48.8166550 2.3605732, 48.8952176 2.3850474, 48.8563530 2.3535669, 48.8854632 2.2970065, 48.8827947 2.3766007, 48.8830752 2.3125555 +48.8330778 2.3268974 +661 +55.9637076 -3.1844385, 55.9575068 -3.1501850, 55.9436142 -3.2051647, 55.9340839 -3.0942935, 55.9679996 -3.2373783, 55.9856984 -3.3942990, 55.9668781 -3.2394194, 55.9679736 -3.2375792, 55.9190795 -3.1651500, 55.9235845 -3.2848604 +11 and 48.3908215 -4.4845938, 48.6510102 -2.0245876, 47.6588518 -2.7480177, 48.3800023 -3.8436213, 48.6466739 -2.0096876, 48.1017047 -1.6786814, 47.6574647 -2.7590147, 48.6084394 -4.3313468, 48.7817049 -3.2227728, 47.9038915 -2.1206020, 48.3694590 -3.4988555 +55.9340815 -3.2110165, 55.9440689 -3.1919649, 55.9515573 -3.1786333, 55.9459133 -3.2052346, 55.9575352 -3.2075320, 55.9807924 -3.1779232, 55.9472510 -3.2151012, 55.9454049 -3.1915247, 55.9545372 -3.1868591, 55.9438908 -3.1833205, 55.9528284 -3.1902144, 55.9410985 -3.2183716, 55.9494948 -3.2100860, 55.9342787 -3.1069920, 55.9680946 -3.2348467, 55.9457158 -3.2175775, 55.9380251 -3.3125380 +46 and Zwickauer Straße, Bergmannstraße, Washingtonstraße, Marie-Curie-Straße, Potthoffstraße, Gustav-Adolf-Platz, Barbarossaplatz, Georg-Palitzsch-Straße, Keplerstraße, Gostritzer Straße, Tharandter Straße, Gamigstraße, Nickerner Weg, Nickerner Weg, Oehmestraße, Tharandter Straße, Tharandter Straße, Tharandter Straße, Senftenberger Straße, Gustav-Adolf-Platz, Tharandter Straße, Tharandter Straße, Bergmannstraße, Bergmannstraße, Bergmannstraße, Oehmestraße, Niedersedlitzer Straße, Niedersedlitzer Straße, Niedersedlitzer Straße, Niedersedlitzer Straße +131 +http://www.musee-armee.fr/, www.aphp.fr/, http://www.lesartsdecoratifs.fr/francais/arts-decoratifs/, http://www.arts-et-metiers.net/, http://www.tourjeansanspeur.com/, www.musee-moreau.fr, http://www.paris.fr/loisirs/musees-expos/musee-des-egouts/visite-publique-des-egouts-de-paris/rub 9691 stand 5943 port 23931, https://www.pasteur.fr/fr/institut-pasteur/musee-pasteur, www.daliparis.com/, http://www.cite-sciences.fr/, http://maisonsvictorhugo.paris.fr/, http://www.musee-en-herbe.com/, http://www.mep-fr.org, www.annehoguet.fr/musee.htm, http://www.cite-sciences.fr/fr/au-programme/expos-permanentes/la-cite-des-enfants/cite-des-enfants-5-12-ans/, http://www.museedelapoupeeparis.com/, http://www.catacombes.paris.fr/, http://www.musee-erotisme.com/, http://www.petitpalais.paris.fr/, http://www.musee-legiondhonneur.fr/, http://conciergerie.monuments-nationaux.fr/, www.museeduvinparis.com, http://www.ladressemuseedelaposte.com/, http://www.baccarat.fr/fr/univers-baccarat/musees/gallery-opening-hours.htm, http://forumdesimages.fr/, http://www.ecole-valdegrace.sante.defense.gouv.fr/bibliotheque-musee/musee-du-service-de-sante-des-armees, www.museeduchocolat.fr, http://www.citechaillot.fr/fr/, www.musee-marine.fr, http://www.museefm.org/, www.fondationlecorbusier.asso.fr, http://musee-contrefacon.com/, www.dapper.com.fr, http://www.pavillons-de-bercy.com/, www.mairie6.paris.fr, www.le-maf.com/, www.bibliotheque-polonaise-paris-shlp.fr, www.icp.fr, http://www.christofle.com/, www.musee-clemenceau.fr/, www.compagnons.org/, www.upmc.fr/, www.avh.asso.fr/, www.musee-henner.fr/, www.bium.univ-paris5.fr/musee/, www.museemaillol.com/, http://www.museedeslettres.fr/, www.museedumontparnasse.net/, http://www.musee.mines-paristech.fr/, www.paris.fr/, crypte.paris.fr/, www.bnf.fr/, prefecturedepolice.interieur.gouv.fr, http://www.paris.fr/loisirs/musees-expos/memorial-leclerc-et-de-la-liberation-de-paris-musee-jean-moulin/p6923, http://www.centrepompidou.fr/cpv/ressource.action?param.id=FR R-89fd49e847165bc78d564f6dbeb6777¶m.idSource=FR E-2ab598d3369ad7a58ead7e6be32ba7b, http://www.maxims-musee-artnouveau.com/, http://www.cite-sciences.fr/fr/au-programme/lieux-ressources/carrefour-numerique2/, http://www.artludique.com, http://www.henricartierbresson.org, http://www.espacereinedesaba.org/, http://www.avocatparis.org/home/presentation-et-missions/histoire-du-barreau-de-paris/musee-virtuel.html, http://www.bdic.fr/, http://www.ordredelaliberation.fr/fr doc/musee.html, http://www.museedesplansreliefs.culture.fr/, http://www.museedelhomme.fr/, http://www.cite-sciences.fr/fr/au-programme/expos-permanentes/la-cite-des-enfants/lexposition-2-7-ans/, http://www.quaibranly.fr/, http://www.museum-mineral.fr/, http://www.mnhn.fr/fr/visitez/lieux/galeries-anatomie-comparee-paleontologie, www.imarabe.org/, equipement.paris.fr/JARDIN TINO ROSSI, http://www.hallesaintpierre.org, http://www.louvre.fr/, www.jeudepaume.org, www.musee-orangerie.fr/, www.curie.fr/, www.grandpalais.fr/, http://www.pavillon-arsenal.com/, www.musee-moyenage.fr/, www.mahj.org, http://www.archivesnationales.culture.gouv.fr/, http://www.museepicassoparis.fr/, http://www.paris.fr/loisirs/musees-expos/musee-cognacq-jay/p6466, www.musee-delacroix.fr, http://www.histoire-immigration.fr/, http://www.musee-orsay.fr, www.museedufumeur.net, www.institutneerlandais.com/, www.pinacotheque.com/, www.lesartsdecoratifs.fr/, http://cernuschi.paris.fr/, www.musee-rodin.fr/, http://www.musee-jacquemart-andre.com/, www.cinematheque.fr/, http://www.fondation-pb-ysl.net, www.mam.paris.fr/, www.palaisdetokyo.com/, fondation.cartier.com/, www.guimet.fr/, http://www.guimet.fr/fr/musee-dennery/informations-pratiques, www.marmottan.com, http://vie-romantique.paris.fr, http://balzac.paris.fr, http://eaudeparis.fr/lespace-culture/pavillon-de-leau/, http://www.memorialdelashoah.org/, http://www.mcjp.fr/, http://zadkine.paris.fr, www.museedemontmartre.fr/, www.chassenature.org, http://www.mobiliernational.culture.gouv.fr/, www.museeduluxembourg.fr/, http://www.palais-decouverte.fr/, www.si.se/Paris/, http://www.museedelamagie.com/, http://www.fondationlouisvuitton.fr/, http://www.monnaiedeparis.fr/, http://palaisgalliera.paris.fr/, paris.fr/loisirs/musees-expos/musee-bourdelle/p6408, http://carnavalet.paris.fr/, http://www.petitpalais.paris.fr/, http://sainte-chapelle.monuments-nationaux.fr/ +Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Petite Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine à l'Albien, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Cuvier, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Puits artésien de la Butte-aux-Cailles, fontaine d'eau rafraîchie, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Tour Eiffel, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Boulevard du Palais, Notre-Dame, Square Rene Viviani, Novotel Paris Les Halles, Fontaine Eau de Paris, Fontaine Wallace 125, rue de Meaux, Fontaine Wallace, Eau potable, Fontaine Wallace, Fontaine Wallace, "La Source" (Fontaine à eau potable), Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Fontaine Wallace, Petite Fontaine Wallace, Fontaine Wallace +E 35 +yes +6 +55.9606990 -3.2496993, 55.9400545 -3.1930414, 55.9494596 -3.1096499, 55.9138280 -3.1645331, 55.9376548 -3.1781132, 55.9403771 -3.4162904, 55.9195401 -3.1576764, 55.9259844 -3.2829976, 55.9351037 -3.2894757, 55.9502710 -3.2958592, 55.9732511 -3.1566940 +2.2213646330373216 +wlan +389 +0 +13 +Piscine Blomet, Piscine Suzanne Berlioux, Piscine de Reuilly, Alfred Nakache, Piscine Saint-Merri, Piscine Château Landon, Piscine Didot, Piscine Émile Anthoine, Piscine Municipale Rouvet, Piscine Aspirant Dunand, Piscine Armand Massard, Piscine de la Plaine, Piscine Cour des lions, Piscine Paul Valeyre, Piscine Georges Drigny, Piscine municipale Bernard Lafay, Piscine Catherine Lagatu, Piscine Mathis, Piscine Beaujon, Oberkampf, Centre sportif Saint-Germain, Bassin-école Vitruve, Aquaboulevard, Piscine Pontoise, Piscine Fernand-Blanluet, Piscine Pailleron, Piscine Georges Hermant, Centre sportif Georges Rigal, Centre sportif Alfred Nakache, Piscine Georges Vallerey, Bassin-école, Piscine Jean-Boiteux, Piscine des Amiraux, Piscine Château des Rentiers, Piscine d'Auteuil, Piscine Hébert, Piscine Molitor, Piscine René et André Mourlon, Piscine Keller, Piscine Joséphine Baker, Piscine Jean Taris, Piscine Roger Le Gall, Piscine de la Butte aux Cailles, Piscine Bertrand Dauvin, Piscine Champerret, Piscine Dunois, Piscine Henry de Montherland +0 +53.0485839 8.6313511, 53.0485936 8.6313802, 53.0486037 8.6314063, 53.0494724 8.6335621, 53.0494578 8.6335286, 53.0494852 8.6335943, 53.0494998 8.6336225, 53.0520881 8.6325667, 53.0516940 8.6297814, 53.0516682 8.6297841, 53.0516456 8.6297895, 53.0516214 8.6297922, 53.0517785 8.6077513, 53.0516366 8.6078318, 53.0518496 8.6077245, 53.0517108 8.6078050, 53.0590251 8.6234072, 53.0589009 8.6234019, 53.0589848 8.6234019, 53.0590605 8.6234046, 53.0589429 8.6233965, 53.0505000 8.6353079, 53.0506008 8.6353450, 53.0505388 8.6353321, 53.0505678 8.6353106, 53.0505340 8.6352731, 53.0574582 8.5994310, 53.0575115 8.5993612, 53.0575002 8.5994283, 53.0574775 8.5993317, 53.0525977 8.6321456 +2243833 +6 +Roseto, Capri, Il Sogno, Salerno il Calabrese, Pizzeria Da Madeo, davinci, Pizzeria Europa, Trattoria Vecchia Bari, Taormina, Alfredo OSTERIA, Mercato, Pasta Bar, Da Mario, Restaurant Kurpfälzisches Museum, Ristorante / Enoteca Akademie, Mamma Leone, Stadtgarten, Trattoria Da Rocco, DaBaggio, Santa Lucia, Casa del Caffè, Piccolo Mondo, Rossini, Zafferano, VINCIdue, Ristorante Il Pescatore, Die Olive Feinkostgeschäft und Snackbar, Il Gambero Rosso, Ristorante Italia, Papi Bar, La Vite, Eisdiele, Oh Angie, Cavallino Bianco, Trattoria Toscana, Goldene Rose, Römer Pils Stube, Pizzeria Da Rocco Corona, La Locanda 26, Casa Sorrento, Giardino, By Lina +49.3805076 8.6913796, 49.4098890 8.7063691, 49.4428690 8.7525902, 49.4116089 8.6773078, 49.4191809 8.7564457, 49.4192023 8.7564431, 49.4343094 8.7486730, 49.4243544 8.7433985, 49.3961047 8.6875838, 49.4276366 8.6827967, 49.4374337 8.6803411, 49.4132997 8.6919729, 49.3784782 8.6591509, 49.3789372 8.6646280, 49.4080084 8.6940492, 49.3828843 8.6904877, 49.4187886 8.6442958, 49.3658026 8.7050118, 49.3728927 8.7038472, 49.4031962 8.7278159, 49.4016050 8.6845129, 49.3803804 8.6888305, 49.4166719 8.6922486, 49.3768611 8.6887922, 49.3778904 8.6643682, 49.3787580 8.6756367, 49.3909523 8.6618014, 49.3771834 8.6692793, 49.4261853 8.6446150, 49.4186611 8.7633544, 49.4107798 8.7061328, 49.4140696 8.7184550, 49.3749627 8.6158813, 49.4301457 8.6907454, 49.4278654 8.7486231, 49.3869602 8.7092367, 49.4332443 8.6805201, 49.4307092 8.6924155, 49.4172221 8.6817577, 49.3741755 8.6886390, 49.3762842 8.6771341, 49.3766854 8.6825351, 49.4339270 8.6786101, 49.3871791 8.7350466, 49.3800814 8.6727714, 49.4011499 8.6909716, 49.3811655 8.6709398, 49.3845955 8.7081656, 49.4105744 8.6916465, 49.4062671 8.6797009, 49.4088091 8.7068231, 49.4109623 8.6909012, 49.4089627 8.6813526, 49.4109261 8.7125920, 49.4122797 8.7133174, 49.4129579 8.7027579, 49.4090650 8.6813526, 49.4136080 8.7136083, 49.4129132 8.7053546, 49.4061093 8.6758875, 49.4134315 8.7103016, 49.4146455 8.7188499, 49.4062514 8.6917698, 49.4056528 8.6927157, 49.4043812 8.6796436, 49.4083809 8.6986013, 49.4080333 8.6763139, 49.4072113 8.6916915, 49.4103365 8.7039131, 49.4168778 8.7249065, 49.4133316 8.7381491, 49.4076180 8.6891919, 49.4201358 8.6806591, 49.4211077 8.6784794, 49.3737385 8.6825043, 49.3745624 8.6786856, 49.4175873 8.5930822, 49.3895906 8.6884286, 49.4122790 8.7132837, 49.3812556 8.6671021, 49.3854627 8.6732681, 49.4311045 8.6454842, 49.4171606 8.7606666, 49.4171643 8.7606441, 49.4151832 8.7505051, 49.4156686 8.7426209, 49.4125678 8.7457320, 49.4151180 8.7605724, 49.4235281 8.7521732, 49.4278819 8.7486168, 49.4084216 8.6996088, 49.4084408 8.6995987, 49.4062642 8.6913883, 49.4062712 8.6914200, 49.4000303 8.6917151, 49.4000488 8.6917225, 49.4114591 8.7705882, 49.3822762 8.6627779, 49.3891812 8.6768465, 49.3991080 8.6718293, 49.3841629 8.6716409, 49.3834567 8.6610378, 49.4072203 8.6719856, 49.4083820 8.6677978, 49.3740978 8.6628076, 49.4143283 8.7699002, 49.4069883 8.6681608, 49.4106864 8.6497651, 49.4227595 8.6489390, 49.3692466 8.7061199, 49.3790486 8.7061511, 49.4073424 8.6881133, 49.4067051 8.7142475, 49.4127360 8.7206023, 49.4219259 8.7602991, 49.4016204 8.6845377, 49.4051006 8.6848847, 49.4132994 8.6919481, 49.4100227 8.7063415, 49.4124591 8.7112897, 49.4043963 8.6796349, 49.4097498 8.6406819, 49.3747751 8.6723227, 49.4016888 8.6813233, 49.3643568 8.6799031, 49.3639988 8.7056290, 49.4178026 8.7412411 +49.4634974 8.4956993 +55.9374159 -3.1700169 +Robert-Bosch-Straße, Friedhofstraße, Hohenstaufenstraße, Hauptstraße, Kiefernweg, Unterer Kohlwasen, Akazienweg, Lindenstraße, Birkenweg, Buchenstraße, Kastanienweg, Eichenstraße, Ahornweg, Fuggerstraße, Sulzdorfer Straße, Blumenstraße, Nelkenstraße, Primelweg, Tulpenweg, Schwenninger Straße, Rosenstraße, Hardtstraße, Klingenstraße, Ziegeleistraße, Dieselstraße, Schulstraße, Daimlerstraße, Jahnstraße, Hasenbergstraße, Lerchenweg, Virngrundstraße, Schwalbenstraße, Finkenweg, Amselweg, Ellwanger Straße, Schmiedstraße, Alemannenstraße, Fliederweg, Römerstraße, Limesweg, Kimbernweg, Klingenberg, Frankenweg, Ramsenstruter Straße, Schlehenweg, Krokusweg, Brühlstraße, Schillerstraße, Goethestraße, Tannenstraße +48.8379931 2.3270595, 48.8184662 2.3501586, 48.8224797 2.3195383, 48.8413274 2.2797801, 48.8384087 2.2847485, 48.8370749 2.4110506, 48.8327412 2.3975487, 48.8256492 2.4145211, 48.8410409 2.2593377, 48.8439975 2.4003952, 48.8301712 2.3992796, 48.8192381 2.4359906 +http://gloria-kamera-kinos.de +48.8769065 2.3805802, 48.8479197 2.3992555, 48.8336197 2.4448135, 48.8267972 2.3644166, 48.8526158 2.3471643, 48.8468908 2.3696558, 48.8422395 2.3861184, 48.8463028 2.3793259, 48.8399294 2.4045970, 48.8448378 2.4051177, 48.8474520 2.4048594, 48.8473395 2.4060719, 48.8350796 2.4339399, 48.8357403 2.4304678, 48.8375477 2.4255552, 48.8346793 2.4193483, 48.8684023 2.3502078, 48.8554435 2.3595073, 48.8502442 2.3485713, 48.8410791 2.3878034, 48.8364073 2.3595567, 48.8326306 2.3560783, 48.8397407 2.3618144, 48.8430681 2.3643136, 48.8552512 2.3476157, 48.8553803 2.3476867, 48.8554064 2.3475533, 48.8552816 2.3474675, 48.8316089 2.3555656, 48.8462050 2.3548474, 48.8445578 2.3478015, 48.8397766 2.3563951, 48.8439889 2.3550231, 48.8400361 2.3581380, 48.8403571 2.3507117, 48.8777755 2.4052173, 48.8374935 2.3535342, 48.8379182 2.3556557, 48.8501724 2.3668483, 48.8872913 2.3493292, 48.8849270 2.3525804, 48.8925222 2.3614454, 48.8551549 2.3558324, 48.8670855 2.3530694, 48.8648656 2.3631280, 48.8674954 2.3585735, 48.8553933 2.4000637, 48.8276950 2.3526554, 48.8718710 2.3683060, 48.8503580 2.3831342, 48.8699280 2.3499165, 48.8321351 2.3486444, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8293528 2.3802852, 48.8298995 2.3795486, 48.8370007 2.3812275, 48.8204882 2.3602086, 48.8203447 2.3628121, 48.8199857 2.3627088, 48.8339810 2.3847461, 48.8353141 2.3838347, 48.8352990 2.3814978, 48.8787743 2.4087695, 48.8790383 2.4084495, 48.8782046 2.4088226, 48.8793770 2.4082476, 48.8785854 2.4080833, 48.8649222 2.3994933, 48.8677797 2.3773892, 48.8363767 2.4236251, 48.8295071 2.4201091, 48.8212233 2.4336070, 48.8300361 2.4231832, 48.8295708 2.4234828, 48.8291280 2.4377720, 48.8817158 2.3974038, 48.8350776 2.4353579, 48.8430906 2.4215578, 48.8600697 2.3723040, 48.8322990 2.3969380, 48.8562087 2.3767474, 48.8556820 2.3852020, 48.8238387 2.3531949, 48.8315645 2.4109263, 48.8312210 2.4129893, 48.8778330 2.3934820, 48.8555310 2.3895370, 48.9000019 2.3742980, 48.8551080 2.3942800, 48.8599920 2.3625150, 48.8270122 2.3540304, 48.8424551 2.3888122, 48.8525988 2.4088082, 48.8898369 2.3739136, 48.8307590 2.3592040, 48.8526713 2.3815527, 48.8210197 2.3568688, 48.8951024 2.3643279, 48.8504870 2.3502540, 48.8654640 2.3863600, 48.8702780 2.3853090, 48.8684460 2.3844060, 48.8483008 2.3594250, 48.8743960 2.3620000, 48.8590555 2.3853281, 48.8708487 2.3842762, 48.8808400 2.3880660, 48.8304600 2.4499760, 48.8366079 2.4625007, 48.8185772 2.3545050, 48.8229962 2.3483008, 48.8548880 2.3860580, 48.8649444 2.4051523, 48.8711656 2.3608619, 48.8683392 2.3860944, 48.8211700 2.3525560, 48.8412050 2.4011810, 48.8957085 2.3611060, 48.8325969 2.4424252, 48.8280471 2.4193059, 48.8341687 2.4613030, 48.8319760 2.4160891, 48.8322537 2.4156461, 48.8385501 2.4606113, 48.8237496 2.4396773, 48.8234381 2.4570355, 48.8302710 2.4501255, 48.8272306 2.4306540, 48.8308745 2.4295234, 48.8404327 2.4302364, 48.8351339 2.4507573, 48.8355228 2.4555897, 48.8270280 2.4256131, 48.8523056 2.3854632, 48.8827393 2.3748215, 48.8649924 2.3911518, 48.8283394 2.3695038, 48.8713595 2.3858455, 48.8756264 2.3549455, 48.8940100 2.3515980, 48.8606179 2.4048647, 48.8221234 2.3755099, 48.8501856 2.3598181, 48.8783392 2.3518796, 48.8672620 2.3546160, 48.8876110 2.3980200, 48.9001410 2.3907160, 48.8581731 2.4063523, 48.8581782 2.3488219, 48.8701720 2.3941990, 48.8252925 2.3693389, 48.8760549 2.4066379, 48.8785620 2.3603690, 48.8656244 2.4005700, 48.8678880 2.4110180, 48.8782870 2.3930910, 48.8687996 2.3670827, 48.8578985 2.3627922, 48.8338684 2.3623631, 48.8186719 2.3602335, 48.8311679 2.3698529, 48.8353270 2.3472350, 48.8435250 2.3852390, 48.8847495 2.3583714, 48.8680920 2.3674820, 48.8749920 2.3693880, 48.8691100 2.3880580, 48.8582469 2.3636013, 48.8847394 2.3599665, 48.8851070 2.3774500, 48.8411853 2.3632232, 48.8766520 2.3471580, 48.8863250 2.3533990, 48.8937263 2.3632365, 48.8866720 2.3745570, 48.8519585 2.3815373, 48.8735974 2.3763609, 48.8486812 2.4047540, 48.8186727 2.3590770, 48.8422355 2.3539722, 48.8997980 2.3671430, 48.8940029 2.3839514, 48.8509163 2.4000959, 48.8737600 2.4116660, 48.8608430 2.4112060, 48.8729910 2.3967970, 48.8569010 2.3829850, 48.8670820 2.3921970, 48.8394056 2.4219004, 48.8491125 2.4034753, 48.8387600 2.3533490, 48.8650341 2.4104986, 48.8939970 2.3494640, 48.8570556 2.3709415, 48.8861355 2.3561753, 48.8446043 2.3875639, 48.8780460 2.3546040, 48.8482791 2.3738928, 48.8541916 2.4013975, 48.8477459 2.4005894, 48.8315105 2.3698744, 48.8451934 2.3802706, 48.8437212 2.3551124, 48.8678242 2.3628446, 48.8243135 2.3638527, 48.8933245 2.3887800, 48.8941743 2.3916574, 48.8536514 2.3489902, 48.8408330 2.4201155, 48.8912248 2.3930476, 48.8946014 2.3912450, 48.8527000 2.3492200, 48.8518000 2.3475300, 48.8242821 2.4231989, 48.8387842 2.4064887, 48.8449387 2.4418585, 48.8516633 2.4098056, 48.8668000 2.3495673, 48.8600249 2.4009571, 48.8589058 2.3989762, 48.8559569 2.4014635, 48.8819047 2.3985349, 48.8590759 2.4003273, 48.8264004 2.4327560, 48.8189971 2.3575128, 48.8323795 2.3620094, 48.8520536 2.4091515, 48.8198844 2.3619743, 48.8569678 2.3519723, 48.8499865 2.3481714, 48.8895806 2.3929015, 48.8847068 2.3794407, 48.8420092 2.4240851, 48.8232610 2.3543235, 48.8232751 2.3542283, 48.8632906 2.3969375, 48.8597103 2.3998209, 48.8303745 2.3751493, 48.8930154 2.3876090, 48.8296235 2.3814150, 48.8300792 2.4152641, 48.8419664 2.3871201, 48.8815514 2.4001315, 48.8283387 2.3766344, 48.8633424 2.3714600, 48.8725766 2.3640561, 48.8441811 2.3576296, 48.8668462 2.3528123, 48.8660061 2.3525045, 48.8764030 2.3793479, 48.8310374 2.3779683, 48.8527614 2.3515044, 48.8577082 2.3492535, 48.8564552 2.3511205, 48.8888874 2.3790640, 48.8786186 2.4075133, 48.8276674 2.3600431, 48.8279422 2.3594556, 48.8281470 2.3775133, 48.8316089 2.3555656, 48.8316089 2.3555656, 48.8243136 2.4192238, 48.8629574 2.3670436, 48.8705355 2.3858494, 48.8771612 2.3641684, 48.8662716 2.4063088, 48.8305375 2.3580300, 48.8527458 2.3514040, 48.8361094 2.3872805, 48.8774505 2.3685222, 48.8563876 2.4098516, 48.8897544 2.3636094, 48.8894148 2.3633280, 48.8895729 2.3670765, 48.8531320 2.3882360, 48.8548595 2.4101096, 48.8950748 2.3539271, 48.8287592 2.3789983, 48.8289978 2.3792237, 48.8324901 2.4167426, 48.8325371 2.4171377, 48.8770432 2.3607309, 48.8928183 2.3927190, 48.8528020 2.4110674, 48.8854184 2.3809339, 48.8847022 2.3794239, 48.8220651 2.3497136, 48.8556477 2.3481362, 48.8379924 2.3573249, 48.8506007 2.3684957, 48.8279269 2.3606649, 48.8281328 2.3608761, 48.8284210 2.3605021, 48.8290169 2.3599418, 48.8313949 2.3614586, 48.8502691 2.3768309, 48.8514077 2.3619724, 48.8557425 2.3657180, 48.8557863 2.3654533, 48.8405076 2.4080728, 48.8407300 2.4111999, 48.8420117 2.4099305, 48.8435586 2.3837116, 48.8463579 2.4045679, 48.8467508 2.4047042, 48.8481084 2.4046457, 48.8358697 2.3734634, 48.8362808 2.3737861, 48.8444058 2.3789793, 48.8307541 2.4193421, 48.8663182 2.3718556, 48.8209696 2.4454995, 48.8453348 2.3532344, 48.8736147 2.3633962, 48.8708335 2.3864170, 48.8223127 2.4420635, 48.8594153 2.4063574, 48.8759892 2.3685271, 48.8640746 2.3609523, 48.8602693 2.3889177, 48.8593740 2.3653569, 48.8615941 2.3786285, 48.8648516 2.3601559, 48.8446258 2.3602639, 48.8458322 2.3604678, 48.8745071 2.3771328, 48.8584687 2.3716161, 48.8599169 2.3845657, 48.8442777 2.3588710, 48.8541415 2.3560013, 48.8601631 2.3908290, 48.8600077 2.3895038, 48.8752689 2.3614142, 48.8601518 2.3613994, 48.8311641 2.3746022, 48.8542855 2.3695398, 48.8672446 2.3647755, 48.8692789 2.3666901, 48.8333281 2.4112207, 48.8558055 2.3475517, 48.8274926 2.3487405, 48.8680842 2.3631278, 48.8684000 2.3633800, 48.8818819 2.3836565, 48.8822355 2.3824751, 48.8621822 2.3530287, 48.8322747 2.4077869, 48.8360719 2.3733952, 48.8592131 2.3991113, 48.8594497 2.3924686, 48.8605704 2.3967700, 48.8615389 2.3974070, 48.8620888 2.3721843, 48.8416099 2.3879001 +City of Edinburgh Council, Transport for Scotland, Forth Estuary Transport Authority, The Forth Road Bridge, Forth Estuary Transport Authority, Forth Estuary Transport Authority, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport for Scotland, Transport for Scotland, Transport for Scotland, Transport for Scotland, Transport for Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, City of Edinburgh Council, Transport Scotland, Transport Scotland, Transport for Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, City of Edinburgh Council, City of Edinburgh Council, Transport Scotland, Transport Scotland, Transport Scotland, City of Edinburgh Council, City of Edinburgh Council, City of Edinburgh Council, City of Edinburgh Council, Transport Scotland, Transport Scotland, City of Edinburgh Council, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland, Transport Scotland +Best Western Plus Bruntsfield Hotel +L'Orriu du Beauvau +32 +yes +28 +55.9498298 -3.1876708 +http://www.hovicha.com +50.1253014 11.3360343, 49.6454510 11.2523168, 49.9606475 11.6260343, 49.1738649 12.9413601, 49.3608074 11.0505849, 49.2234454 12.6611867, 49.4836508 10.9835475, 50.0042360 9.0624526, 49.9124639 10.8920010, 50.0012000 9.0683238, 49.4141881 12.4140633, 49.7934099 12.2899120, 49.9293257 10.9419364, 50.0060004 11.4141590, 49.9767042 9.1566256, 49.9845565 9.1639906, 49.1891725 11.1874594, 49.3687740 11.3057878, 49.6297746 11.2344459, 50.0452138 10.2340424, 50.2598647 10.9666953, 50.2583057 10.9646137, 49.7502077 9.1790325, 49.6385843 11.1013066, 49.6385636 11.1015857, 50.3759930 11.7382095, 49.7922309 10.0258144, 49.3013427 10.5817647, 49.3053748 10.5718491, 49.2915039 11.4151762, 49.2943053 11.4096947, 50.1264898 9.1161746, 50.3177512 12.1012234, 50.3176182 12.1006372, 49.7835917 12.3094464, 50.2753812 10.9496791, 49.9769664 9.0630892, 49.8037322 10.1655094, 49.6668795 10.1406107, 50.0652139 9.6733677, 50.3707482 9.9786124, 49.1952695 12.5011479, 49.8692952 11.8872856, 50.2743347 10.9487550, 50.2137895 10.2353350, 49.9958129 10.1809319, 49.8793240 9.1557405, 49.0103295 10.8465324, 49.8400694 9.1484987, 50.0721491 9.0038192, 49.9843990 9.1243968, 49.9843771 9.1237845, 49.9761625 9.1464150, 49.4491408 11.8705906, 49.3155280 10.5816018, 49.3017966 10.5709171, 50.1940569 10.0700854, 49.6241375 12.2242896, 49.7971702 9.9451436, 50.1363929 10.0063977, 50.0606042 11.8190607, 49.9762960 11.0354409, 49.7951466 9.9470589, 50.0480425 9.0083529, 49.4275675 11.9755052, 49.6214957 10.1161508, 49.1588258 11.1729362, 49.4555015 10.7961629, 49.7258203 10.2733316, 49.7255798 10.2739995, 49.3437809 12.3643806, 49.7306394 10.2306925, 48.9733293 12.8819444, 49.6659633 10.0619433, 49.7164805 10.2729330, 49.6100055 10.9988801, 50.1997379 10.9686029, 49.7981681 10.2394993, 49.7998357 10.2304975, 49.9147722 9.2009359, 49.8596561 10.4283018, 49.3771405 12.7026831, 49.7178259 10.2790344, 49.4563268 11.0759138, 50.2434938 10.9732852, 50.0420746 11.6720609, 50.2588432 10.9676928, 50.0162735 9.7428022, 49.3793293 11.2078031, 49.3618383 12.4477189, 50.2594742 10.9696824, 50.2596861 10.9742321, 49.3029794 10.5717125, 49.9629473 11.1017275, 50.1048363 11.8889127, 48.9954252 12.0237005, 50.1096264 11.4141541, 49.5612829 11.3326991, 49.9117025 9.0621792, 49.7987170 9.9438007, 49.7970854 9.9309045, 49.6214272 10.8281375, 49.3028074 10.5770004, 49.3022738 10.5773653, 50.3733173 11.5112514, 49.8044809 9.9274979, 49.7966414 9.9259417, 50.0317178 10.5109015, 50.0952309 9.7217054, 50.0428392 11.4838079, 49.9284665 11.5112743, 49.0075578 13.4083931, 49.4527997 11.4905453, 49.6993172 10.0079515, 49.7795207 11.1831885, 49.9847255 9.1732274, 50.1096890 9.8193285, 49.7497963 11.5185637, 49.0106437 12.4811226, 49.2660036 12.6113604, 49.5350217 11.8060476, 49.3561733 11.0994230, 49.3475346 11.1144511, 49.4556965 11.0803640, 49.8559541 9.9555809, 49.9983539 9.1085923, 49.9680252 9.5605615, 49.2380981 11.1638554, 49.1507383 11.3922917, 49.9318443 10.9552363, 49.8435273 11.6212057, 49.7757531 9.9302996, 48.9243720 10.5417636, 49.9479783 9.1546268, 49.8947803 10.7258987, 49.2402116 11.3310361, 50.0062150 11.4624009, 50.0010014 11.4376082, 49.8480148 10.0638963, 49.8123966 9.1035276, 49.8882725 11.5570158, 49.4532944 11.0807305, 49.7278952 10.2465747, 49.3013933 10.5813723, 49.9580652 9.5624478, 50.1899940 10.9244425, 49.8990567 10.3483512, 50.4616412 10.0202973, 49.0143666 10.9906645, 50.3251895 9.7798956, 49.9708810 9.3061199, 49.8669231 10.2242417, 49.8036251 10.2536001, 49.4697674 11.1687149, 49.9719514 10.1713027, 49.9714489 10.1701613, 49.9739756 10.1742360, 50.0821249 9.4629424, 49.1886050 11.0154692, 49.7329267 12.0697249, 49.7310450 12.0683404, 49.6369793 10.8503152, 50.2493996 11.0489650, 49.3486879 11.0697906, 49.7938977 9.9417177, 50.1240570 9.6186063, 49.7951151 9.9244810, 49.7060651 10.0246300, 50.0940130 11.0140999, 50.0938638 11.0222558, 49.1659479 12.9730771, 49.7277452 10.3173483, 50.1667325 12.1244929, 49.9332237 11.5116958, 49.9330126 11.5119533, 49.8294448 11.7475129, 49.9328745 11.5121784, 50.0114295 10.4639672, 49.7277244 10.2429385, 49.2788252 11.4634516, 49.0175769 11.0081340, 50.2214645 11.9356910, 50.2855025 12.1008402, 49.4491883 11.0791503, 49.7719018 9.2454886, 49.9365445 10.9204393, 50.3861394 9.9329049, 49.5400470 10.7102900, 50.1319979 10.8134964, 49.4725779 11.0358474, 50.0941321 11.0243351, 50.0939697 11.0248649, 49.9233047 10.2362144, 49.4518375 11.1548748, 49.3760667 10.1646476, 50.1443874 11.9537653, 49.0511001 11.7847275, 49.3243011 12.8922854, 49.3497904 12.8859420, 49.5191482 11.5071905, 49.8209354 9.7999590, 49.8073007 11.1705527, 49.8239347 11.1477475, 49.8462447 10.0556889, 49.9443687 11.5763882, 50.2548425 12.0280849, 49.5849742 11.0541747, 49.5846415 11.0658824, 49.5855024 11.0604600, 49.5887762 11.0703214, 49.5887954 11.0736693, 49.5771080 11.0872537, 49.5783210 11.1007853, 49.5829777 11.1038052, 49.9531135 11.4272279, 49.6283830 10.5413943, 49.8220062 9.9402939, 49.8203829 9.9301434, 49.8140956 9.9396143, 49.7398938 9.2446445, 49.7355434 9.2405658, 49.5797883 11.1318384, 49.5800402 11.1324198, 49.5719765 11.0830531, 49.5677990 11.0849588, 49.5609001 11.0924246, 49.5681364 11.0689140, 49.5708790 11.0680247, 49.7244775 9.2299795, 49.7248770 9.2293711, 49.9589117 10.8087491, 49.9672770 11.7432501, 49.9909971 11.7468775, 49.9947925 11.7477127, 49.8871153 9.1178803, 50.3302575 12.0690000, 50.0170225 11.7056704, 50.0571410 11.0728866, 50.0514811 10.2419621, 49.7135651 10.1330925, 49.9601080 11.8330026, 50.0201111 10.2162916, 49.7865362 9.3648841, 49.4242659 11.1773818, 49.9826914 11.9467996, 49.7721400 10.6860600, 49.6055564 11.0142816, 49.0097753 10.8440491, 50.2736630 10.9490065, 49.8415675 11.2064513, 50.2404654 11.3242328, 50.0504378 11.6749634, 50.1163113 9.8925864, 50.1577947 10.5549010, 50.1573738 10.5548894, 50.1576133 10.5537423, 50.1568599 10.5538196, 50.1583224 10.5557718, 50.1577452 10.5562314, 50.0418210 11.6710138, 49.7743609 9.9823905, 49.0445983 11.4760465, 50.0467669 11.6732356, 49.5837217 11.0347448, 49.5835680 11.0381075, 49.5779627 11.0366973, 49.5323221 11.0949302, 50.0383957 10.1050053, 50.0414034 10.1165266, 49.4719068 10.9952115, 49.4728549 10.9963617, 49.5102362 10.0432970, 49.4791364 10.9858762, 49.4717518 10.9960697, 49.3389467 12.8146818, 48.9651063 12.3820209, 50.1003879 10.5878290, 50.0501235 10.1422209, 49.6236211 11.4208589, 50.0586195 8.9998085, 49.9617054 10.0518851, 49.1260615 12.1333535, 49.1256211 12.1361069, 49.1255453 12.1369761, 49.1044233 11.8101537, 49.0308094 12.0929987, 49.3131522 12.2445134, 49.3422506 12.2848751, 49.7426624 9.7182264, 49.3274576 11.3453758, 50.0222269 11.2001046, 50.1079264 9.9326731, 49.2233186 12.1547666, 49.2331221 11.9525808, 49.4536913 11.0800086, 50.0948613 11.7333105, 50.0502973 12.0609370, 49.6199523 11.0187751, 50.0394083 9.0653132, 50.4840139 10.1832475, 49.5426210 11.3374210, 50.0254865 11.6880247, 49.9687258 11.5747570, 49.5032451 11.7435371, 50.0997781 11.6086337, 50.1054293 11.6083476, 49.5110738 11.4410764, 49.5959178 10.9480422, 49.0116277 13.2042654, 49.4554430 11.0700439, 49.1844101 12.0257204, 49.8101134 9.5864120, 49.4655419 12.5319803, 50.4968425 10.1786164, 49.1645854 11.9617084, 49.6103445 10.9654205, 49.3605749 11.3519976, 50.5010842 10.1143538, 49.4463529 10.3036488, 49.9754844 9.1779534, 50.2544516 10.9647986, 49.0460002 11.3538095, 49.5978172 11.0040967, 49.5984193 11.0080342, 49.6007476 11.0144054, 49.9080861 10.8170752, 49.6886843 9.4155824, 50.0451147 10.2256217, 50.0188478 9.3635115, 49.5610418 11.3385395, 49.5615870 11.3367929, 49.5606730 11.3380782, 49.4297829 11.5457238, 49.9996359 9.0602127, 50.0922889 9.6522458, 50.5106076 10.1023834, 50.5132156 10.1048660, 50.2125278 10.9380856, 49.8114903 10.0129581, 49.8800670 9.4372690, 50.0194156 9.2635056, 50.0234176 9.2542204, 49.9367680 9.1410305, 49.9663879 9.1856672, 49.9686216 9.2033126, 50.0471420 9.0805437, 50.2010526 10.9527322, 50.0252099 9.2972011, 49.6154988 10.3092219, 50.1394576 9.8749448, 49.4894042 11.4795580, 49.9126111 10.1379856, 49.7203673 11.0601324, 49.5785264 10.8406085, 48.9295466 13.5781872, 49.8820339 11.1300099, 49.9949273 9.2766082, 49.9997614 9.2804789, 49.4904322 11.4787933, 49.9774224 9.1458993, 50.0497968 10.5720106, 50.1121897 9.8800006, 50.0894585 10.2128221, 50.0952367 10.2099885, 49.8616405 11.6570392, 49.5466339 11.9989292, 49.5475287 12.0005339, 49.1624256 12.0837400, 49.1650022 12.1008606, 49.1642339 12.0802211, 49.9279182 10.7537020, 49.2050461 12.0387575, 49.5455014 12.0005665, 50.1476870 9.8734272, 49.9800710 10.8546688, 49.9766425 9.1393224, 49.7715003 9.5474320, 49.9722482 9.1426877, 50.0080661 9.2025804, 48.9964840 12.1112392, 49.9123877 11.5130613, 50.2435965 10.5186225, 48.9742962 13.1352720, 50.1116490 9.6486984, 49.8907112 11.5576850, 49.8988856 11.5412436, 49.5503094 12.0325901, 49.0409666 12.1261312, 50.0388313 9.0612891, 50.3300146 11.6693425, 50.0245932 9.6911894, 49.8624559 12.0950023, 49.5132456 10.4046143, 49.5126519 10.4049752, 49.5120389 10.4060159, 49.1593765 11.9394701, 49.4948272 10.8065266, 50.0932927 9.6671570, 50.2247998 12.1446066, 50.2699412 12.1148272, 50.0643165 9.1620037, 49.8361603 9.8687822, 49.6896465 11.0099568, 49.9181164 11.5098373, 49.7192490 11.0421798, 49.0078958 12.1165596, 49.9472089 10.6129673, 48.9777730 10.8863175, 49.3710655 12.2559091, 50.1213622 11.9904154, 50.3665316 11.9524574, 49.7941658 9.9317878, 49.2309993 12.6565069, 49.2309058 12.6607232, 50.3628917 11.9370021, 49.0253061 11.0055020, 49.5420981 11.3604985, 50.0232563 9.7965866, 49.7928585 9.9424740, 49.0165046 12.0887646, 49.5129283 11.4823227, 49.4535459 12.1806422, 49.4535406 12.1806536, 49.4535421 12.1806457, 49.4535570 12.1806551, 49.4535474 12.1806465, 49.4535439 12.1806499, 49.4415884 10.2865204, 49.6071713 11.6331204, 49.2190762 10.6676897, 49.2040901 10.7017360, 49.9967356 9.1120639, 49.5713889 11.9282692, 50.0300227 11.9060469, 49.5502166 11.0447091, 49.4860333 10.5672499, 50.0027595 9.1002640, 50.0508054 10.2135347, 49.3452344 10.5098414, 49.9939430 9.5826016, 50.3113074 11.9095828, 50.2218379 10.9028994, 50.2042367 10.9286580, 49.9523438 11.8670610, 49.9228189 10.7769457, 49.6777552 9.2316082, 49.3970486 11.1262502, 49.5696464 11.3112755, 50.0807288 9.1119339, 50.1840124 10.3599152, 49.3518845 11.4485073, 50.1421473 11.9753124, 49.0806939 12.0824892, 50.0445931 9.0224418, 49.6180199 10.6306271, 49.9329494 9.5746562, 49.3855010 11.2133431, 49.6848998 11.5026780, 49.3175931 12.8435562, 49.4653009 11.2455613, 50.2738698 10.9460111, 50.2740126 10.9465172, 50.2736933 10.9464107, 50.3009356 11.0212587, 49.1669984 11.9955209, 49.2813735 12.0377887, 49.8828192 10.8963667, 50.0177947 11.3252030, 49.9711209 11.7503505, 48.9255859 10.5001108, 49.0070924 12.3792350, 49.5168691 10.5187847, 49.7832351 9.8172359, 49.9724725 11.7387437, 49.6093000 10.2743000, 49.5545131 11.0786710, 49.9567536 12.1214341, 49.7933694 9.9239401, 49.9392269 11.4453954, 50.0989052 10.1794705, 49.5697539 11.3399346, 50.3275697 11.8592399, 49.1657640 12.0997544, 50.3802233 11.7655001, 50.0853057 9.9448500, 50.0481066 10.3334860, 49.5661346 11.0160944, 49.6926339 10.9976604, 50.3933146 11.6886249, 49.0490274 12.6476381, 50.3240837 10.2164507, 49.9511271 9.6730956, 50.0888918 11.7391512, 50.1068714 10.2236964, 50.0444236 10.1297437, 50.0600050 9.2357066, 49.6568842 11.0583057, 49.7210233 11.0552324, 49.7855645 9.5196414, 49.7569832 11.5351092, 49.6377725 11.0697594, 49.7182173 11.0660421, 50.1067324 11.6086009, 49.8898746 10.1576760, 49.6823210 11.0692847, 49.9326046 10.3652365, 49.8001754 9.9359286, 49.8001754 9.9359410, 50.0785634 9.1938671, 49.3190811 10.4766577, 49.6668139 11.0697145, 49.1672629 10.3546860, 50.0610078 9.0126947, 50.1124977 10.1788871, 49.7907406 9.7543083, 50.0835399 11.3315150, 50.1316444 10.8172494, 50.1306654 10.8134916, 49.7671397 11.0796935, 50.0867035 9.1866589, 49.8668080 11.4201143, 49.7399321 10.1621791, 49.7228699 11.0658476, 49.7421555 9.1783981, 49.3366393 10.7297065, 50.0444510 10.2357515, 49.5281851 11.4954622, 49.7586973 9.9798082, 50.2073315 10.0917382, 49.8464216 11.0367188, 49.3662294 11.3096085, 49.5202124 11.1286750, 49.7992164 9.9420775, 50.0038463 9.2022640, 50.0033674 9.2024593, 50.0033156 9.2023493, 49.5474904 11.3311641, 48.9872511 13.1747092, 49.6504742 9.9412032, 49.4284487 11.0856285, 50.2303774 11.6747940, 49.4080404 11.0945211, 49.3391485 12.1214552, 49.6704405 10.9295047, 49.3252029 12.1130808, 50.0514988 10.2252390, 49.6470044 12.0474891, 49.7773560 9.1903451, 49.1875381 11.0258093, 49.5573571 11.3376876, 50.2224054 12.0285376, 49.3115707 12.0782223, 49.9997940 9.2157125, 50.1586517 12.0450508, 50.3959147 11.7517171, 50.0754361 11.6758203, 49.5120207 11.4438338, 49.5030364 11.5429444, 49.7603667 10.1693043, 49.7911340 9.9347407, 49.1640074 13.1074417, 49.1314094 10.3905568, 49.6786902 10.0657015, 49.9233769 11.6005430, 50.1506416 10.2052209, 50.0554302 10.2249170, 49.2153402 11.1430235, 49.5419494 11.3432673, 50.2481179 12.0346542, 49.5290954 11.3210636, 49.7025130 10.3167934, 50.2718359 11.3048248, 50.0244804 12.3084366, 49.9233224 9.1575897, 49.6892285 9.3729957, 49.4728015 10.9918927, 49.1868686 11.1976287, 50.1755442 11.7976128, 50.0612026 9.1505545, 49.7306848 10.2298315, 50.0379127 12.0038680, 49.9946339 11.7861359, 49.7874912 9.9360832, 49.7884396 9.9365530, 49.5583611 11.9772712, 50.1907032 11.6789749, 49.3271140 12.1141460, 50.1082542 11.6047778, 49.0205921 12.0952396, 49.7199662 11.0576030, 49.2250749 11.5402651, 49.3424310 12.5290121, 49.8907183 9.7520487, 49.8661914 9.7805145, 48.9931521 11.3673226, 49.3700693 11.1852992, 50.0131184 11.5462805, 49.8671429 11.9362476, 49.4153205 11.0253169, 49.4503794 11.2104533, 50.0548172 10.0107407, 49.7830009 9.4544131, 49.4493131 11.1490114, 49.6833604 9.3650835, 50.2052252 12.1457506, 49.6321395 10.9234401, 49.7235776 9.7385532, 49.9086379 11.7596314, 49.7919770 9.2677067, 49.8011523 10.1625284, 49.3262209 12.9527050, 50.0328796 11.7627971, 49.9491040 11.9686054, 50.0152645 11.8552500, 50.0325244 11.7628357, 49.8038973 11.0364074, 49.5315196 11.0047675, 49.4568640 10.5930690, 49.7099827 10.0226917, 49.6906276 10.0575946, 49.9978054 9.1814089, 49.6753801 11.4191505, 49.4061558 11.2850594, 49.6745103 10.0204639, 49.4486914 10.6347427, 49.0586716 11.3190942, 49.0672116 11.3132756, 49.5922516 11.0522246, 49.2434542 12.9349168, 49.0351785 11.5424379, 49.6906000 11.1007337, 49.2241870 12.6609190, 49.7273904 11.4744562, 49.6502619 11.2472294, 49.6686885 12.0998908, 49.8124528 9.8288392, 50.0487739 10.4111525, 49.6093876 11.0005095, 50.2478755 11.3297769, 49.4544927 11.0480158, 49.9540225 9.1169443, 49.8813207 10.8680894, 48.9399526 13.6174750, 49.8908998 10.8829408, 49.8858747 11.3346866, 49.1970690 13.0502105, 49.8935679 10.8779344, 50.0015859 10.1991002, 50.0019106 10.1995409, 49.2990096 10.4097309, 49.8984450 12.0457164, 48.9577183 12.8734443, 48.9222003 11.1980349, 49.0348960 12.6122460, 49.2132941 12.6724124, 49.2223433 12.6878565, 50.2329225 10.7273277, 48.9670759 13.3186444, 48.9608782 13.3116962, 48.9602160 13.3124150, 48.9796758 13.3094109, 49.0242625 12.1398854, 49.0535718 12.6805814, 49.0535391 12.6763560, 50.2832977 11.0268910, 48.9562231 13.4658637, 50.0226249 11.8149188, 49.0188390 12.0832940, 50.0967401 11.5404060, 49.8684456 9.0912272, 49.8664885 9.0801663, 49.4857470 10.9491716, 49.8170477 11.8481107, 49.8174632 11.8597217, 49.8261396 11.8368756, 49.8588983 9.0844705, 49.0779854 10.6278093, 49.5254924 11.9614494, 50.1223636 11.7840136, 50.0395891 11.9515272, 50.0480085 11.9954977, 49.6527115 9.9460333, 49.4050315 11.2926985, 49.5779343 11.1683618, 49.7379410 10.1600376, 48.9426280 12.4692627, 48.9667118 12.8349224, 49.8210346 11.7431909, 49.8823055 9.5946429, 50.3261561 10.1942060, 49.0096436 10.5004746, 48.9701961 12.3265193, 50.0218969 10.2104849, 49.9975724 10.2051489, 49.6486918 11.0055125, 49.6396102 11.0018464, 50.0615527 11.8200016, 49.2971394 10.4224499, 49.0246651 12.6579342, 49.9043847 10.1925310, 49.2991739 10.4129817, 49.0263084 10.5697255, 49.0229720 10.5678961, 49.4567316 11.0810079, 49.7969352 10.0326571, 49.4519331 11.0756381, 49.0603052 10.2922231, 49.6885963 10.2005582, 48.9381557 12.9308734, 50.0463262 9.2106036, 49.9758962 9.4013618, 49.4651000 11.0933450, 50.0369761 10.6203261, 49.5696911 11.3111204, 49.4521167 11.0522513, 49.3783037 10.1804272, 50.0044733 9.4174121, 49.9473973 11.6150938, 49.3765250 10.1742094, 49.8472953 9.5953738, 49.4271207 11.0462448, 49.2942609 10.4159890, 49.5225359 12.2661674, 49.6075226 10.9690072, 49.8873532 11.4850110, 49.4406952 11.1143875, 49.9627815 11.4660231, 49.2301097 11.1002383, 49.6514341 11.4676563, 49.2030593 11.0503672, 49.6772117 12.1660213, 49.8393342 10.0303396, 49.8450631 10.0188812, 49.8374383 10.0363478, 49.4519579 11.0893750, 49.5444496 11.9443589, 49.5447464 11.9443084, 49.4541507 11.0730452, 49.3824822 11.0376624, 49.9461964 10.5660012, 49.0691833 10.3196646, 49.8813681 10.8709591, 49.8813104 10.8704349, 49.3880327 11.3025418, 49.6059368 11.5082344, 50.0989308 10.2009066, 48.9650564 13.5881898, 50.0686178 9.1405239, 50.0691374 9.1647686, 50.0829706 9.1744757, 49.5435705 11.9422976, 49.4992211 10.4127336, 49.6663115 9.2174563, 50.2010281 10.0796309, 50.2010221 10.0796052, 49.4477239 11.6857625, 49.4460554 11.6835686, 49.7999154 10.0325942, 50.2010192 10.0795865, 50.2010431 10.0796589, 50.1967193 10.0810149, 49.8879820 12.4296686, 49.0139001 13.2324271, 50.3106075 11.9096814, 50.0179173 10.7019968, 49.8821023 10.9042255, 50.0117430 10.7006733, 50.0090888 10.6946217, 50.0127154 10.6848692, 50.0265449 10.7009359, 50.0230313 10.6984522, 50.0185988 10.7020142, 50.0191858 10.7030163, 50.0234700 10.6789837, 50.0099854 10.7365010, 49.9936057 10.6936812, 49.9954107 10.6881365, 49.9991832 10.7065311, 50.0515127 10.6825199, 50.0415119 10.7259111, 50.0203839 10.7509132, 50.0221701 10.7110301, 49.5019190 12.0527679, 49.7315595 12.3461012, 50.3040141 10.4778811, 50.3042160 10.4780918, 49.5100108 12.5477321, 49.7197325 11.1517517, 49.8045771 9.9985236, 49.4354020 10.4140882, 49.6767965 12.1612248, 49.7931062 9.7625034, 49.7994913 9.7519600, 49.7600378 9.7167061, 49.7897273 9.7536498, 49.7911878 9.7544082, 49.9090658 12.5278358, 49.6821913 12.1675909, 50.0497889 11.6009071, 49.2505113 10.8274746, 49.3705840 11.3317226, 49.7772736 12.0910176, 49.0152337 12.1047908, 49.8986046 11.8430735, 50.2964998 10.1773597, 49.0148423 12.0988033, 49.8970555 11.7010378, 49.5220581 12.0202369, 49.3732915 11.2109773, 49.0188010 12.0865158, 49.0196418 12.1076991, 49.0224890 12.0971760, 50.0028821 10.8639429, 49.0086624 12.1140073, 49.0104384 12.0604168, 49.0079845 12.0596346, 49.0063004 12.0842723, 49.9852673 12.4733816, 49.5182739 12.0223498, 49.0161006 12.0649200, 49.7695834 11.2501592, 49.7667641 11.3365491, 49.7667629 11.3371417, 49.2994881 10.4152111, 49.2988060 10.4146451, 49.5036987 11.5105657, 49.5039492 11.5098909, 50.0384874 9.1829561, 49.9649565 9.2033405, 49.0155580 12.1020225, 49.0186698 12.0861070, 49.0143791 12.0568333, 49.0128154 12.0501601, 49.9480493 11.5152437, 50.3208914 10.2288371, 49.0135863 12.0980858, 49.0141433 12.0909775, 48.9616275 13.3707694, 50.0571318 12.1630188, 50.1339740 10.9997596, 49.6719429 10.1092270, 49.0230406 12.0759531, 49.9695730 11.8248926, 49.0139872 12.0993480, 49.2834623 11.1245195, 50.0456727 12.1526067, 49.6695593 10.4735573, 49.2279800 12.3591491, 49.5978247 12.1277408, 49.9636948 11.4430543, 49.9769946 9.1519363, 49.9750834 9.1465191, 49.9788040 9.1492982, 49.9780571 9.1469089, 49.9769598 9.1483522, 49.9769575 9.1483487, 49.9788030 9.1492978, 49.9788085 9.1459478, 49.9761670 9.1475691, 49.9761691 9.1475708, 49.9777357 9.1470002, 49.9771118 9.1463000, 49.9780562 9.1469097, 49.9771124 9.1462986, 49.9758163 9.1473677, 49.9787300 9.1460637, 49.9761690 9.1475695, 49.9750841 9.1465179, 49.9788033 9.1492993, 49.9761677 9.1475697, 49.9788078 9.1459490, 49.9787293 9.1460649, 49.9761677 9.1475684, 49.9756861 9.1455040, 49.9769575 9.1483509, 49.9769951 9.1519377, 48.9213941 13.3631052, 49.7431992 10.3143552, 49.7332682 10.2910088, 49.7331557 10.2909352, 49.7320459 10.2893973, 49.7971708 9.9181959, 50.0468919 11.7900887, 50.1018467 11.9289190, 50.0720623 11.7343687, 49.5807360 10.9930423, 49.4781588 10.9815611, 50.0710288 9.3453874, 49.5880202 11.0348171, 49.5057702 12.0479512, 49.0701788 12.3965783, 50.0608396 12.1181770, 50.0798842 12.1424534, 49.8396607 9.4499388, 49.9405337 11.5815981, 49.5976027 11.0106106, 49.9620176 12.4906845, 49.5767551 10.9845910, 49.2820607 11.4621282, 49.2767281 11.4605954, 49.2752957 11.4611307, 49.2737454 11.4693648, 49.2791542 11.4630600, 50.0096304 11.5342528, 50.0091730 11.5180114, 50.0536602 10.5881133, 49.9758512 9.1489083, 49.9753342 9.1484946, 49.9725262 9.1520096, 49.9734825 9.1574246, 49.9758505 9.1489071, 49.9721775 9.1427265, 49.9752614 9.1500359, 49.9758903 9.1478404, 49.9758497 9.1489083, 49.9753686 9.1562911, 49.9758906 9.1478427, 49.9752873 9.1484977, 49.9727283 9.1509584, 49.9753357 9.1484953, 49.9859727 9.1375629, 49.9707705 9.1548378, 49.9753679 9.1562926, 49.9721820 9.1427261, 49.9758912 9.1478414, 49.9727276 9.1509624, 49.9758897 9.1478418, 49.9758243 9.1479574, 49.9758925 9.1478414, 49.9753347 9.1484961, 49.9721737 9.1427298, 49.9753690 9.1562929, 49.9758520 9.1489071, 49.9758251 9.1479562, 49.9753352 9.1484938, 49.5520120 10.0648801, 49.5528638 10.0662568, 49.5525157 10.0635550, 49.5517965 10.0635343, 49.5525797 10.0635125, 49.5528648 10.0662560, 49.5517981 10.0635366, 49.5528633 10.0662553, 49.5520142 10.0648834, 49.5517973 10.0635354, 49.5528642 10.0662524, 49.5522235 10.0652652, 49.5522739 10.0660112, 49.5520112 10.0648789, 49.5522242 10.0652665, 49.5525147 10.0635556, 49.5522749 10.0660104, 49.5520149 10.0648846, 49.5520123 10.0648784, 49.5528643 10.0662545, 49.7492292 11.2476398, 50.0077507 9.0697798, 49.9904785 10.5903260, 49.7932175 9.9300690, 49.7932157 9.9300660, 49.2907084 10.2654545, 49.9459834 9.2137807, 49.1519360 12.1734992, 50.2947661 10.0964550, 50.2853904 10.0977305, 50.2863806 10.1002136, 49.7531999 11.8335514, 49.2326998 10.4977047, 49.9397941 10.6765837, 49.7637415 11.0302848, 50.0068525 9.2035019, 49.9674144 9.3973865, 49.8782430 12.3371545, 49.2965371 10.4370565, 49.8335959 9.8463313, 50.3085656 11.9225515, 49.3754615 10.1723479, 49.3757566 10.1729165, 49.2069877 12.0869222, 50.1307235 10.0261636, 49.0961493 12.0473105, 49.5687334 11.5124981, 50.0100085 10.7388904, 49.9755613 11.3360106, 49.4881221 11.1056632, 49.2751769 11.3032585, 50.1335623 11.6582094, 49.0900685 13.3194516, 49.8244119 9.2195855, 49.3500534 10.2008191, 49.4683097 11.0018808, 49.5952508 11.0283102, 49.8268841 12.4254832, 49.7628101 9.7103322, 49.7377834 10.7343469, 49.7485218 10.7514389, 50.1266242 10.9322564, 49.7736898 11.4977477, 49.6730978 12.1569376, 49.4450506 11.8566044, 49.4450517 11.8566084, 50.0343837 12.0057082, 50.0389404 12.0059588, 49.3237343 11.3634148, 50.0399899 10.2563410, 50.0901476 11.9226350, 49.9046225 11.5856532, 49.0196241 12.0926982, 49.0196255 12.0926983, 49.6557652 9.1356940, 49.0211080 12.0903255, 49.0312029 12.1063028, 49.0312049 12.1062961, 49.0312084 12.1063023, 49.0325759 12.1057144, 49.0185305 12.0953889, 49.0185345 12.0953894, 49.1755022 10.8293237, 49.0190701 12.0946023, 49.0176917 12.0961121, 49.0185908 12.0921057, 49.0185915 12.0921105, 49.0185924 12.0921057, 49.0185926 12.0921125, 49.0185929 12.0921080, 49.0185929 12.0921105, 49.0185931 12.0921031, 49.0185934 12.0921144, 49.0185941 12.0921007, 49.0185951 12.0921031, 49.0185952 12.0921079, 49.8916234 10.8922621, 49.0199275 12.0918002, 49.0199275 12.0918026, 49.0207083 12.0971348, 49.0178839 12.0974031, 49.0170899 12.1040314, 49.0197670 12.0892004, 49.0197695 12.0892010, 49.0197721 12.0892016, 49.0148994 12.0776648, 49.0149005 12.0776669, 49.0149008 12.0776631, 49.0149019 12.0776653, 49.0194381 12.0923903, 49.0197664 12.0922483, 49.0197664 12.0922513, 49.0197669 12.0922536, 49.0185726 12.0948193, 49.0185728 12.0948165, 49.0185744 12.0948225, 49.0185745 12.0948195, 49.0185746 12.0948167, 49.0183173 12.0948407, 49.0180503 12.0962374, 49.0180507 12.0962358, 49.0180522 12.0962387, 49.0180527 12.0962370, 49.0180531 12.0962355, 49.0168598 12.0945021, 49.0168622 12.0945069, 49.0168625 12.0945028, 49.0168652 12.0945035, 49.0169572 12.0964730, 49.0187855 12.0866987, 49.0187856 12.0866955, 49.0187871 12.0866972, 49.0196952 12.0908512, 49.0196955 12.0908472, 49.0196970 12.0908553, 49.0196980 12.0908517, 49.0196983 12.0908477, 49.3700364 10.3326346, 49.0244130 12.0975018, 49.9689726 9.1406710, 50.1461039 9.8787634, 49.6459023 10.6960875, 49.6190605 10.6550751, 49.3267742 11.3290333, 49.9506568 9.2425169, 50.3603618 10.0183521, 50.2603176 10.1625667, 50.5294158 10.1365952, 50.0185900 11.5947993, 49.1186381 13.2891826, 50.0415115 11.6710379, 50.0455047 11.6729648, 49.7690804 10.5270426, 49.7440739 10.3678749, 50.0572140 11.6809567, 49.8545526 9.9567436, 49.6728265 12.1490093, 48.9675009 12.3906760, 50.1159200 11.8631050, 50.0182437 11.8324940, 50.0190952 11.8331859, 49.9335870 11.7378440, 49.9329190 11.7325956, 50.0909091 12.0894665, 49.5247695 11.9030735, 49.6391565 10.9970110, 49.3040254 10.5718175, 48.9718495 13.4328515, 50.1239967 10.8667045, 50.0326497 9.4312794, 50.1586640 11.5704392, 49.9850909 11.6517051, 49.9835532 10.0788877, 49.3815362 10.1702658, 49.5999179 11.0029460, 49.5999184 11.0029346, 49.5999207 11.0029411, 49.5947349 11.0049181, 49.5947890 11.0049002, 49.5947348 11.0049148, 49.5947365 11.0049179, 49.5947357 11.0049180, 49.5947364 11.0049146, 49.5947880 11.0049003, 49.5947356 11.0049147, 49.8916123 10.8934082, 50.0125545 11.6992003, 49.2940718 10.4071127, 49.4938239 12.1796909, 49.2736602 12.5400565, 49.3021051 10.5757277, 49.3625693 10.1920107, 49.0180645 12.0899199, 49.5063706 12.0586238, 49.3760472 10.1740553, 49.5841546 11.1376266, 49.5392559 12.1610923, 49.9347352 11.5927808, 50.1764459 11.7554872, 49.8366567 11.3502874, 49.5136483 11.9690411, 49.5108070 11.9702656, 49.9619007 9.7687548, 49.2954987 12.3550665, 49.7925294 9.9300247, 49.7925284 9.9300253, 49.7925270 9.9300242, 49.7925280 9.9300237, 49.7925304 9.9300241, 49.7925290 9.9300231, 49.7925300 9.9300225, 49.5967084 11.0363646, 49.9634476 9.7630263, 49.5915983 11.0279183, 49.9007742 9.8249718, 50.2152548 12.0074059, 50.2320320 11.9824924, 50.2681384 11.3609612, 49.5321619 11.0340201, 50.0127842 9.2598896, 49.4198255 11.1952648, 49.8007861 9.9500409, 49.8042227 9.9401073, 49.8016833 9.9521581, 49.8008487 9.9495065, 49.8023538 9.9484639, 49.8039340 9.9462076, 49.8016832 9.9521600, 49.8040711 9.9415613, 49.8017616 9.9429421, 49.8022170 9.9424916, 49.8033057 9.9423584, 49.8031096 9.9453756, 49.7986567 10.2312619, 50.0680003 10.8822450, 49.5503024 11.2688007, 50.1253347 11.5988929, 49.0373017 11.4713987, 49.9061473 11.7649973, 49.4782605 11.0208604, 50.1507631 10.8945447, 49.6689324 12.2302463, 49.7661741 11.9355854, 49.8607443 10.3813672, 49.8506179 11.5871782, 49.9434533 9.8565390, 49.5417838 10.5613637, 49.9585470 9.7663805, 49.9595391 9.7650959, 49.3786586 10.1793133, 49.3767932 10.1758881, 49.3767932 10.1758781, 49.3767932 10.1758848, 49.3755384 10.1827213, 49.3762093 10.1795702, 49.3767932 10.1758815, 49.3786586 10.1793103, 49.3755376 10.1827181, 49.3772183 10.1774557, 49.3619592 12.3332809, 50.3608095 10.3546411, 50.3703190 10.3585862, 50.3791048 10.3732742, 49.5988014 11.0020055, 49.5971399 11.0046443, 49.5968887 11.0046436, 49.5967916 11.0047669, 50.1573638 10.5476158, 50.0185855 9.3106506, 50.2699881 11.3611322, 49.7956968 9.1574279, 49.7946620 9.9417414, 49.8813986 12.3387714, 49.8843655 12.3365134, 49.2360159 10.9442065, 50.0412319 11.2518353, 49.8556988 12.2213404, 49.1257675 11.2687419, 49.0515267 10.9673498, 50.0076854 10.5983304, 48.9239093 13.4441838, 50.0129545 12.0051052, 49.5929601 10.9994155, 50.1047922 12.1674481, 49.4506724 11.0895491, 49.0006194 12.3996130, 48.9993664 12.3982370, 50.0837449 9.0707465, 49.3528140 12.3797332, 49.3790168 12.3987072, 49.5561735 11.5420028, 49.5458338 11.5409081, 49.5564497 11.5434917, 50.1218482 9.1290151, 50.0030759 9.4208477, 49.9256207 9.5065228, 50.1338452 11.4297540, 49.5048933 12.6154745, 50.0532552 9.0105856, 49.2366324 10.4923511, 49.9358251 11.5223760, 49.6933701 9.2896788, 49.7031080 9.3017167, 49.6924824 9.1730686, 49.6820227 9.2096023, 49.0757627 11.9068162, 50.0166247 10.7766176, 50.0112161 10.8035765, 49.4786149 12.4996766, 50.1640464 10.9623428, 49.9689695 11.5310708, 49.3567688 12.4175171, 49.5615772 11.0869061, 49.1026763 13.1112906, 49.4258166 12.6794486, 49.9458170 9.1536517, 49.6361333 10.1434699, 49.7954103 9.9404940, 49.7954095 9.9404929, 49.7954100 9.9404913, 49.7954108 9.9404925, 48.9941475 13.2205163, 49.7863466 9.9361498, 49.7855176 9.9367566, 49.7855179 9.9367582, 49.7863509 9.9361479, 49.7863477 9.9361497, 49.7855189 9.9367578, 49.7863499 9.9361496, 49.7863509 9.9361495, 49.7855179 9.9367547, 49.7863504 9.9361512, 49.7855187 9.9367562, 49.6722786 11.1781259, 49.5147535 11.0599168, 49.5149154 11.0598238, 49.5150009 11.0602343, 49.5150581 11.0599041, 49.7867513 9.9365291, 49.7871642 9.9375666, 49.7859343 9.9388582, 49.7867503 9.9365280, 49.7867521 9.9376445, 49.7862145 9.9391909, 49.7862387 9.9375395, 49.7862153 9.9391920, 49.7867497 9.9365293, 49.7871600 9.9375648, 49.7867531 9.9376450, 49.7871631 9.9375664, 49.7867495 9.9365311, 49.7871609 9.9375667, 49.7867517 9.9376461, 49.7871598 9.9375665, 49.7871610 9.9375650, 49.7867527 9.9376466, 49.7862169 9.9391942, 49.7867506 9.9365304, 49.7907691 9.9344337, 49.7898028 9.9354473, 49.7878385 9.9379272, 49.7907695 9.9344322, 49.7907687 9.9344352, 49.7906708 9.9343376, 49.7908044 9.9343457, 49.7907265 9.9348801, 49.7907265 9.9348823, 49.7907250 9.9348800, 49.7907258 9.9348812, 49.7888553 9.9280158, 49.7888525 9.9280146, 49.7888578 9.9280136, 49.7888627 9.9280144, 49.7888669 9.9280136, 49.7888659 9.9280138, 49.7882443 9.9325119, 49.7888585 9.9280152, 49.7893070 9.9302257, 49.7888606 9.9280148, 49.7886188 9.9283324, 49.7888631 9.9280126, 49.7888532 9.9280162, 49.7886196 9.9283311, 49.7886200 9.9283327, 49.7888663 9.9280120, 49.7888596 9.9280150, 49.7888638 9.9280142, 49.7888521 9.9280164, 49.7888574 9.9280154, 49.7888563 9.9280156, 49.7923864 9.9285144, 49.7925589 9.9280484, 49.7901921 9.9287343, 49.7923858 9.9285161, 49.7912924 9.9303975, 49.7924914 9.9334357, 49.7901910 9.9287350, 49.7925590 9.9280500, 49.7900984 9.9292869, 49.7925346 9.9308533, 49.7920112 9.9292930, 49.7935785 9.9296478, 49.7912936 9.9303974, 49.7925600 9.9280484, 49.7932061 9.9346117, 49.7923876 9.9285145, 49.7925567 9.9280500, 49.7923881 9.9285161, 49.7920122 9.9292921, 49.7925557 9.9280499, 49.7924923 9.9334366, 49.7901911 9.9287333, 49.7925567 9.9280483, 49.7912928 9.9303960, 49.7923870 9.9285161, 49.7935747 9.9296483, 49.7920103 9.9292939, 49.7925343 9.9308500, 49.7925344 9.9308516, 49.7925579 9.9280500, 49.7923772 9.9285195, 49.7932050 9.9346115, 49.7900980 9.9292852, 49.7925333 9.9308511, 49.7900973 9.9292864, 49.7925335 9.9308527, 49.7925579 9.9280483, 49.5952579 11.0039749, 49.9960359 10.5460702, 49.6494931 10.4272512, 49.1311132 11.2126115, 49.7647053 11.7962899, 49.8618788 11.8979045, 50.1152569 12.1216525, 49.7307051 9.3184515, 50.1046531 12.1021386, 50.1035974 12.1287697, 49.6955708 9.3096830, 49.7995986 9.9397919, 49.7995986 9.9397920, 49.5111470 11.4098766, 49.2989961 10.5787577, 49.9618409 11.6711507, 49.0108389 12.4811544, 49.0680644 10.3198579, 49.0689606 10.3152672, 49.0689613 10.3152651, 49.0689599 10.3152641, 49.0680623 10.3198569, 49.0680634 10.3198574, 49.0689616 10.3152666, 49.0689602 10.3152657, 49.0680641 10.3198594, 49.0689609 10.3152636, 49.0674064 10.3202774, 49.0680691 10.3198774, 49.1180031 10.7540594, 49.7922637 9.9483254, 49.7930089 9.9489359, 49.7922627 9.9483265, 49.7930099 9.9489368, 49.7930080 9.9489351, 49.7922647 9.9483244, 49.7922637 9.9483236, 49.7922637 9.9483273, 49.7928082 9.9487755, 49.7898532 9.9433227, 49.7892789 9.9440666, 49.7892796 9.9440680, 49.7897006 9.9433279, 49.7897016 9.9433278, 49.7913883 9.9475148, 49.7898522 9.9433228, 49.7966267 9.9394975, 49.7967915 9.9393942, 49.7966280 9.9395002, 49.7961026 9.9401177, 49.7958722 9.9397294, 49.7967900 9.9393940, 49.7914631 9.9441426, 49.7958708 9.9397269, 49.7966260 9.9394961, 49.7914629 9.9441409, 49.7966299 9.9395043, 49.7958715 9.9397282, 49.7966292 9.9395029, 49.7914618 9.9441413, 49.7914621 9.9441430, 49.7966247 9.9394934, 49.7966241 9.9394920, 49.7967895 9.9393957, 49.7967907 9.9393953, 49.7967909 9.9393930, 49.7962096 9.9386493, 49.7963427 9.9388767, 49.7962090 9.9386480, 49.8018736 10.1512931, 49.6406789 12.4388138, 49.1798457 11.7586122, 49.8006520 12.3857626, 49.9514872 12.1060524, 49.7978227 9.9385033, 49.7976682 9.9393560, 49.7988824 9.9402123, 49.7976681 9.9393507, 49.7976685 9.9393523, 49.7978221 9.9385048, 49.7973862 9.9392221, 49.7978217 9.9385004, 49.7978233 9.9385047, 49.7976671 9.9393513, 49.7988816 9.9402111, 49.7976692 9.9393555, 49.7977416 9.9418692, 49.7976678 9.9393544, 49.7980834 9.9405811, 49.7976688 9.9393539, 49.7976674 9.9393528, 49.7980845 9.9405813, 49.7926160 9.9465886, 49.7926148 9.9465885, 49.7924154 9.9448690, 49.7926315 9.9478039, 49.7926154 9.9465868, 49.7935570 9.9466037, 49.7943517 9.9466373, 49.7926164 9.9465903, 49.7924149 9.9448704, 49.7926316 9.9478023, 49.7926153 9.9465902, 49.7932395 9.9460028, 49.7924142 9.9448689, 49.7932392 9.9460043, 49.7935581 9.9466035, 49.7943507 9.9466375, 49.7926142 9.9465901, 49.8213947 11.3136234, 49.3983962 10.5127273, 49.3990800 10.5131906, 49.7830222 11.4348553, 49.7797573 9.8779032, 49.7797971 9.8778845, 49.7797835 9.8778902, 49.7797695 9.8778967, 49.7797941 9.8781370, 49.7848704 9.8816363, 49.7848715 9.8816359, 49.5959844 11.0033360, 50.0896982 10.5675728, 49.5838431 11.0094163, 50.3542407 10.5183849, 50.2793921 10.4262507, 50.1003243 9.2700884, 48.9513267 13.4829135, 49.4364865 10.9746967, 49.5579890 11.3411660, 49.5579971 11.3411597, 49.5572334 11.3415166, 49.5572321 11.3415180, 49.5582233 11.3409457, 49.5594751 11.3408029, 49.5604712 11.3407820, 49.5589938 11.3404077, 49.5583436 11.3404497, 49.5577582 11.3399783, 49.5585840 11.3406609, 49.5584189 11.3405005, 49.5584259 11.3405053, 49.5594771 11.3407944, 49.5604659 11.3407875, 49.5604708 11.3407872, 49.5604663 11.3407817, 50.2571790 10.0620673, 49.9587512 11.5802173, 49.9447427 11.5773091, 49.9442251 11.5776919, 49.9443692 11.5763951, 49.9410438 11.5748716, 49.6446348 9.8766831, 49.8788169 12.3370226, 49.4503458 11.0625646, 49.4503311 11.0626034, 49.4564236 11.0939156, 49.4564073 11.0939222, 49.4666635 11.0960817, 49.4564158 11.0939191, 49.4666480 11.0961021, 49.4531051 11.0889258, 49.4531159 11.0890155, 49.4515650 11.0737476, 49.4451835 11.0701178, 49.2150275 12.7622283, 49.4531034 11.0889267, 49.4531047 11.0889332, 49.4531054 11.0889272, 49.4531059 11.0889298, 49.4531062 11.0889312, 49.4531167 11.0890194, 49.4531171 11.0890163, 49.4531172 11.0890220, 49.4531174 11.0890234, 49.4531179 11.0890160, 49.4531179 11.0890261, 49.4531182 11.0890174, 49.4531187 11.0890201, 49.4531190 11.0890213, 49.4531195 11.0890240, 49.7516975 11.7265102, 50.4578393 10.2328439, 49.5402175 11.0439096, 49.4534629 11.0604342, 49.4534632 11.0604329, 49.4534638 11.0604303, 49.4534638 11.0604346, 49.4534641 11.0604290, 49.4534653 11.0604325, 49.4534659 11.0604299, 49.4534662 11.0604286, 49.4535567 11.0605329, 49.4535572 11.0605302, 49.4535587 11.0605323, 49.4535590 11.0605310, 49.0667847 10.3168722, 49.3756375 11.2127250, 49.3811301 11.2026228, 49.7606167 9.9772922, 49.7848282 9.9380024, 49.7848733 9.9380623, 49.7916590 9.9457111, 49.7865810 9.9384816, 49.7865828 9.9384844, 49.7879758 9.9398772, 49.2791168 11.4474779, 49.9873489 9.2780503, 49.7318034 9.9202857, 49.7318921 9.9202117, 49.7319749 9.9203380, 49.2765759 11.4603898, 50.1398487 11.0918818, 49.2784356 11.4552455, 49.2800695 11.4584632, 49.8494694 9.4069936, 48.9567005 10.9079175, 49.2804964 11.4619377, 49.4913697 11.7660931, 49.0135720 12.1459346, 49.1071095 13.2047136, 49.7910101 9.9334762, 49.7910066 9.9334875, 49.7985360 9.9266653, 49.6592217 11.5167515, 49.4936387 10.6569926, 49.9394884 11.5305029, 49.3329703 11.4406888, 49.0317793 12.0933680, 49.9455720 11.1648235, 49.9495296 9.8874687, 49.6755114 10.1517058, 49.4277234 11.0439324, 49.5501746 10.8786893, 49.9990882 10.5617959, 49.8050396 11.5284272, 48.9677056 10.9237975, 48.9774526 10.9561557, 48.9602673 10.9498042, 48.9400641 10.9801333, 49.0155349 11.1311859, 49.0512827 11.8145616, 49.6899734 12.1492885, 49.9020566 10.3449565, 48.9446626 13.6012764, 48.9402070 13.5950476, 50.4025312 10.0065915, 50.4005600 10.0107167, 50.4051246 10.0055267, 49.6458378 12.2104212, 49.6369475 12.2019238, 49.8234349 11.6667095, 50.0114300 9.8014000, 50.0118500 9.7982600, 49.1737777 12.8528844, 49.4495822 11.0617262, 49.6766225 12.1607203, 49.6769325 12.1608543, 49.6772034 12.1609933, 49.1778799 11.4136321, 49.6833617 12.1507245, 48.9886198 11.2887496, 48.9850995 11.0831851, 48.9820014 11.0891933, 48.9834097 11.0900086, 49.7844007 9.9375790, 49.7844180 9.9374878, 49.7838096 9.9396762, 49.1784941 11.6516372, 49.7385288 10.7390450, 50.0999797 9.8392708, 49.7383173 11.0597508, 49.7255739 11.0584660, 49.9745379 9.1831466, 49.3778005 12.7064711, 49.7010799 10.0000174, 49.4042504 10.4761430, 49.4531042 11.0889304, 49.4584844 11.0955008, 49.4401820 11.0693832, 49.4524574 11.0663503, 49.4524577 11.0663502, 49.4524575 11.0663504, 49.4524573 11.0663505, 49.4401816 11.0693824, 49.4584792 11.0954932, 49.4493192 11.0630722, 49.4477206 11.0858440, 49.4493243 11.0630823, 49.4477262 11.0858490, 49.4442885 11.0906328, 49.4584813 11.0955080, 49.4584751 11.0955004, 49.8247899 12.1940792, 49.9773664 9.1516409, 49.9773665 9.1516401, 49.9773668 9.1516416, 49.9773669 9.1516408, 49.9773673 9.1516416, 49.9777012 9.1523025, 49.9777018 9.1523036, 49.5406982 11.1029197, 49.5830074 11.0720065, 49.5806680 11.0408936, 49.5669690 11.0434983, 49.6641607 10.4608530, 49.6640174 10.4609621, 49.2873631 10.2624581, 49.2904965 10.2630052, 49.3143601 10.2962603, 49.8558808 9.3997297, 49.3906754 10.1958029, 49.7226741 10.2643905, 49.0248904 11.0046911, 49.6009390 11.0027339, 49.6009409 11.0027339, 49.8841615 11.9164322, 49.3432447 12.3640770, 49.3300666 12.4136162, 50.3416351 11.7143397, 50.0666062 12.0711517, 49.9480885 11.8915341, 50.3053524 10.0213184, 49.7220245 12.1913195, 49.7204497 12.1998025, 49.9748497 9.1456239, 49.9761683 9.1475690, 49.9748492 9.1456249, 49.9761684 9.1475702, 49.9748468 9.1456262, 49.9748473 9.1456251, 49.5983479 12.2578390, 50.0777379 11.9240709, 49.9769927 9.1484309, 49.9786284 9.1435443, 49.9743789 9.1488575, 49.9763387 9.1472780, 49.9769931 9.1484317, 49.9743817 9.1494905, 49.9743790 9.1488557, 49.9763385 9.1472795, 49.9769935 9.1484325, 50.2324713 9.7972070, 50.2274987 9.8015171, 50.2125796 9.8078351, 50.0609693 10.1301670, 49.7956233 9.9339097, 49.7943732 9.9355099, 49.7893753 9.9303739, 50.0964003 11.6507085, 49.0165204 12.0930160, 49.0142314 12.0978208, 49.0142509 12.0983715, 49.0145444 12.0943274, 49.0148619 12.0936434, 50.1071864 11.6113150, 49.8308091 11.9002786, 49.8121183 11.6156822, 49.9732320 9.1562722, 49.9725473 9.1460345, 49.9725481 9.1460355, 49.7811895 9.8754454, 50.0463306 10.2422178, 50.1262114 10.1323272, 50.1260980 10.1320650, 49.9599944 9.1674078, 49.9790176 9.1378227, 49.9785802 9.1497577, 49.9785782 9.1497577, 49.9790183 9.1378214, 49.9767006 9.1434450, 49.9790189 9.1378227, 49.9785791 9.1497594, 49.9785792 9.1497560, 50.0655070 8.9917370, 49.7878584 9.1558536, 50.1823681 10.8135295, 48.9389978 13.5126937, 48.9421185 13.5082968, 49.6626801 11.9936761, 49.7965388 9.9259564, 48.9435067 12.0285624, 49.8026070 12.1691206, 49.8075440 12.1639654, 49.8033895 12.1561119, 49.8018280 12.1559349, 50.0966697 12.2230986, 50.0974045 12.2239071, 50.0965526 12.2228208, 49.9183578 10.9061724, 50.0927176 10.2708298, 49.3664352 11.2626077, 48.9299739 10.9695181, 49.6439302 11.1185170, 49.7288907 10.5445346, 50.0431869 10.2304967, 49.4710348 11.0172151, 49.4482963 11.0654784, 49.8555425 12.2214595, 49.6449426 9.2199396, 49.4019599 10.7243349, 49.6443425 9.2223859, 48.9995875 11.1062950, 49.5075741 11.2794565, 49.5075692 11.2794307, 49.9040712 10.0964998, 49.9758154 11.7336493, 49.8999822 10.3506192, 49.9590090 11.5788897, 49.9589325 11.5810671, 49.7067822 11.2546397, 49.7633614 11.4467299, 49.9462668 11.5753721, 49.8989204 10.3485227, 50.0438223 10.7182321, 49.9710536 10.6694916, 49.9927820 10.2724251, 50.3199349 9.8181952, 49.6775007 9.2831816, 49.2258187 10.7269246, 49.7343649 12.3586803, 48.9678967 12.3917663, 49.3663032 11.9178031, 49.0317249 10.9702087, 49.0288485 10.9765390, 49.2530850 10.2873176, 49.0672016 10.3182782, 49.4706490 11.9408120, 49.5018247 12.5383206, 49.3497571 12.4515065, 49.1183797 10.5112172, 49.5615084 12.3823115, 49.4564703 12.4166112, 49.4551418 12.4166112, 49.0377941 11.9039954, 50.0526539 11.7960194, 49.3075015 12.9981043, 50.3165121 11.9152028, 49.9623399 9.7641774, 49.9507522 9.7745789, 49.9637858 9.7667119, 49.9616515 9.7655693, 50.2402778 11.3295013, 50.2400089 11.3309472, 50.2400775 11.3305492, 50.2420709 11.3255233, 50.2436831 11.3267968, 48.9220173 13.3198590, 50.2196977 11.3987597, 50.2425926 11.7175152, 50.4578976 10.2329456, 50.4578896 10.2329456, 50.3030761 9.7476418, 50.1942822 10.6110828, 49.0912527 13.2981318, 49.5105435 12.0310510, 49.6863612 9.3993521, 50.0592964 9.1596910, 49.4157478 10.4227010, 49.5561400 11.5420073, 49.7241634 9.2409054, 49.8914332 11.6466049, 49.3968059 11.1278651, 50.2218353 10.9932877, 48.9408492 10.8784575, 50.0565964 9.1861550, 50.0255150 9.1374128, 50.0684138 9.1656524, 50.0865298 9.1787008, 49.7569808 12.3616907, 50.0405996 9.0362219, 49.8844532 11.5861064, 49.8855053 9.5033148, 49.0685405 10.3203314, 49.2326295 10.4983887, 49.5987299 11.0016811, 49.5988956 11.0026301, 49.5983989 11.0036510, 49.5973770 11.0037953, 49.5987648 11.0017626, 49.8852766 11.8245376, 49.8852959 11.8229621, 49.8879875 11.8243576, 50.1308000 11.1931820, 49.7499727 10.7151562, 49.4783567 11.4849884, 50.4001633 11.6998988, 49.6328084 12.3295919, 49.6320358 12.3311107, 49.6417158 12.3501188, 50.0217974 10.2872572, 49.6292350 12.1383406, 49.6177320 12.4853949, 49.6176503 12.4881415, 49.6152817 12.4843595, 49.9069836 9.1851497, 49.8969451 10.8933052, 49.8969456 10.8932892, 49.8969507 10.8932892, 49.8969512 10.8933052, 49.8969554 10.8932965, 49.6469340 12.1128377, 49.0356603 11.9073368, 49.0990659 13.1587652, 49.5112840 11.2673024, 49.8656684 10.2261271, 50.2397173 11.7104793, 49.6705144 12.1550293, 49.7793960 11.4564819, 49.6968099 9.2904544, 49.4727828 10.9965678, 50.2315125 10.1285988, 50.2154166 10.1061328, 50.2199739 10.1240065, 50.2192293 10.0709196, 49.6822003 10.7493616, 50.2131652 11.9776788, 50.2291221 10.0680234, 50.2147990 10.0712437, 49.7473544 9.7471269, 49.7424355 9.7884651, 49.7517957 11.0171610, 49.6340042 10.0058935, 49.7055393 12.2139592, 49.9291852 9.3172036, 49.9371729 9.3200000, 50.0136617 12.2136879, 50.0136855 12.2157508, 49.9269525 11.3549264, 49.9920041 12.0208498, 50.0139926 12.0095350, 50.0840956 9.0678119, 50.2150235 10.1133531, 50.2151945 10.1124769, 49.7231095 10.1391110, 49.0514617 12.0471284, 50.3968608 11.3806574, 49.1965765 12.5176483, 49.2151299 12.5445669, 49.6835526 11.4192035, 49.8323846 11.5325722, 49.5590766 10.5376811, 50.0609676 10.1303709, 49.3926752 12.1366930, 49.3104025 10.7474303, 49.3114182 10.7427415, 49.3128363 10.7489620, 49.3129214 10.7517562, 49.3134846 10.7537065, 49.3132281 10.7576374, 49.3160514 10.7638064, 49.3182058 10.7553204, 49.3181207 10.7539089, 49.3180956 10.7535272, 49.3111723 10.7513721, 49.3945161 11.7421020, 49.1039273 10.8248300, 49.0977086 10.8479753, 49.1001932 10.8195096, 49.0970011 10.8246621, 49.0993755 10.8212193, 49.1091955 10.8569870, 49.1042722 10.8744423, 49.0873450 10.8434569, 49.1056650 10.8382545, 49.1106013 10.8449001, 49.1103892 10.8343279, 49.1086755 10.8549659, 49.1101771 10.8286373, 48.9992118 13.2156448, 49.9724525 9.1439223, 49.9790226 9.1378212, 49.9744105 9.1450316, 49.9724526 9.1439258, 49.9790220 9.1378212, 50.1283776 10.2318243, 50.2469070 11.7053695, 50.2757873 10.0714887, 49.2002219 12.5267441, 50.0105336 11.8934659, 49.1961430 12.5176137, 49.1983256 12.5157498, 49.6406122 10.7058179, 49.6411055 10.7043454, 49.6293356 10.7376679, 49.6437959 10.7521584, 49.1976270 12.5139895, 49.0652691 13.3231780, 49.4655042 12.5320506, 49.5931764 10.7149938, 49.6579686 11.0322093, 49.6579675 11.0322081, 49.8438597 10.3548132, 49.0995235 13.2668239, 49.7379389 10.1591361, 49.7728067 10.1510291, 49.7728046 10.1510238, 49.7728010 10.1510236, 49.7728020 10.1510273, 49.7393613 10.1628978, 49.7393735 10.1629151, 49.7388099 10.1596887, 49.7388102 10.1596893, 49.7403828 10.1627422, 49.7377629 10.1576037, 49.7377632 10.1576043, 49.7377625 10.1576042, 49.7369329 10.1577430, 49.7369007 10.1597148, 49.7369327 10.1577412, 49.7369334 10.1577446, 49.7368936 10.1597194, 49.7369317 10.1577431, 49.7367102 10.1553543, 49.8901108 10.9048146, 49.4386923 11.2864715, 49.0056337 11.3948805, 49.9411028 11.5822645, 49.9884166 9.7038836, 49.6165896 10.7466318, 50.0861120 9.0717460, 48.9359625 13.4531758, 49.0231785 10.9813831, 49.8650241 10.9094537, 49.4630199 11.0926023, 49.9108279 12.1905951, 48.9446683 12.4655688, 49.1730310 12.9522436, 48.9771575 11.3099772, 49.0592996 10.7136422, 49.9209204 10.1776032, 49.9123832 10.4447156, 50.0079225 11.8385729, 49.5749826 10.8224474, 49.5998671 10.8262668, 49.5847647 11.0087008, 49.8060508 11.2679194, 49.7013103 9.2420373, 49.7037941 9.2349144, 50.0537568 10.2950898, 49.6839579 12.1638196, 49.9323630 9.4996130, 49.6757639 12.1641077, 50.0631460 10.9453696, 50.1518828 11.4676595, 49.9314404 9.1235922, 49.5920450 10.8953413, 49.6147503 10.9024564, 48.9643064 12.8800107, 48.9618224 12.9049615, 49.2554159 10.9561703, 49.2630079 10.9821636, 49.5998614 11.0030750, 49.5998611 11.0030717, 49.5998627 11.0030697, 49.2067820 12.0415821, 49.4585430 11.0701094, 49.4596806 11.0731091, 49.4596810 11.0731107, 49.4596817 11.0731086, 49.4596821 11.0731101, 48.9325732 13.5392478, 49.6453199 10.8917915, 49.6366925 10.9011188, 49.4439681 11.0781443, 49.4439692 11.0781443, 49.3856168 11.3552493, 49.8084768 9.9289677, 49.5294778 10.8689857, 49.8661383 10.5377768, 50.3196790 11.9034624, 50.4150441 11.8829338, 50.4150305 11.8829163, 50.4150388 11.8828808, 50.3214813 11.9134860, 48.9465050 11.3892559, 49.6223088 12.4827525, 50.3509330 10.2568067, 49.1846695 11.9334813, 50.3555292 10.2549208, 49.6006383 11.0105320, 49.6006383 11.0105320, 49.8600554 11.9510977, 49.9798064 12.1169880, 49.3988623 12.5260962, 49.2154521 13.0708055, 49.2030946 13.1099047, 48.9856943 12.1749282, 49.9876556 9.2391206, 49.9873068 9.2378425, 49.9326463 10.5576241, 49.5521965 12.0623864, 50.0171216 10.5498411, 50.3333866 11.1307086, 49.4844720 10.7963617, 50.1988116 10.3203580, 50.2516176 11.7555514, 50.1574888 10.1247070, 50.1556353 10.1057526, 50.1579603 10.1236691, 50.3961475 9.7730581, 49.7633012 9.9412600, 49.7634468 9.9443058, 49.7634416 9.9442544, 49.8810182 9.2431912, 50.0785020 9.3374818, 49.2971995 10.5986342, 49.4472562 11.0721951, 49.2214031 10.2032051, 49.9916143 9.1223752, 49.4471882 11.0748431, 49.4439377 11.1058670, 49.4051771 11.1602517, 49.4344809 11.0826485, 49.7503015 10.9073390, 49.9646381 10.6962302, 50.3283397 11.9341101, 49.6332825 12.0916657, 49.6941028 10.7218950, 50.2723903 10.4116010, 49.7653436 9.5229885, 49.0518443 11.7822030, 49.5130007 11.4296719, 49.4932776 11.4751642, 49.9040764 11.0311000, 49.4390879 11.1394627, 49.8829364 9.5814255, 50.1977423 10.0947113, 50.3199340 11.9165126, 49.0413060 11.4708290, 49.0190540 12.0985788, 49.6695229 10.1503714, 49.6097897 10.7076412, 49.7353650 12.3569415, 49.3375569 10.7891695, 50.3121132 11.9174085, 49.0183174 12.0958518, 50.5222310 10.0713603, 50.2544924 10.0620117, 50.3707322 9.9786099, 49.4023947 11.1359481, 49.8978821 10.2241692, 49.4496586 10.3195263, 50.0041223 9.8215264, 50.1509972 12.0529393, 49.3007818 11.1215015, 49.1178053 10.7597381, 49.1974796 12.7466092, 49.8271514 9.4032808, 49.4206070 11.8806656, 49.8621215 11.9530041, 49.2841959 11.4810539, 50.3469859 11.2885524, 50.1624704 10.0762669, 49.0063017 12.0967461, 50.0359820 9.1105180, 49.4775242 10.4315299, 49.4781350 10.4334320, 49.4797158 10.4345936, 49.4768152 10.4347418, 49.0882021 11.2207869, 49.2134526 12.5097439, 48.9959303 12.1214955, 49.3972937 12.5256275, 50.3201104 11.9041564, 49.3129005 10.7517637, 50.3634528 11.3172443, 49.3028908 10.5524927 +55.9652866 -3.3173288, 55.9426657 -3.2801929, 55.9443056 -3.2708233, 55.9438150 -3.2706214, 55.9796500 -3.3006918, 55.9329934 -3.3152155, 55.9899019 -3.3868462, 55.9031798 -3.2852677, 55.9898690 -3.3921144, 55.9901625 -3.3961304, 55.9430311 -3.2839568, 55.9426809 -3.2803231, 55.9420361 -3.2670729, 55.9488427 -3.3624818, 55.9482570 -3.3655019, 55.9906648 -3.3973688, 55.9082967 -3.3202293, 55.9101031 -3.3218843, 55.9102819 -3.3218516, 55.8838914 -3.3385867, 55.8840866 -3.3391023, 55.9895667 -3.3989278, 55.9427627 -3.2911646, 55.9429207 -3.2827642, 55.9429672 -3.2868741, 55.9600784 -3.2960791, 55.9727826 -3.3512226, 55.9420689 -3.2954758, 55.9428183 -3.2938163, 55.9379137 -3.3141798, 55.9424726 -3.2928349, 55.9475057 -3.2948807, 55.9827935 -3.3988683 +2 +Fahrschule Jung, Fahrschule Lechner, Wagner, Fahrschule i-drive, Fahrschule Jung +40.0154087 -105.2702392, 42.2270613 -8.7293373, -36.6014154 -72.1075231, 48.1367914 11.5764002, 52.0291860 8.5142550, 55.6663913 12.5482482, 55.6726417 12.5496429, 49.2330740 6.9973444, 50.1074307 8.7650055, 50.1072273 8.7647436, 59.9400458 30.2764624, 22.6191549 -83.7428456, 63.4294834 10.3952849, 14.5807496 120.9762753, 14.5805360 120.9763947, 14.5818436 120.9756658, 54.5156429 36.2578715, 50.7226010 1.6050050, 43.6782457 4.6276753, 43.0426296 -87.9248245, 51.6074169 0.0416652, 45.3988026 -71.8998852, 45.4046469 -71.8920328, 45.4015922 -71.8952807, 45.4022589 -71.8983628, 45.4034563 -71.8949627, 45.4036683 -71.8853371, 45.4036176 -71.8851449, 45.3995729 -71.8883202, 45.3954825 -71.8909197, 45.7615378 4.9252989, 64.7480238 20.9599956, 43.6184002 13.5018181, 43.6165420 13.5123177, 45.7242776 4.8539418, 48.1978726 16.3646943, 52.2091369 0.1194683, 53.4593415 9.9824597, 51.1120248 13.0448680, 47.0644805 10.3801015, 40.2883139 8.8880843, 40.2882735 8.8881426, 40.2881680 8.8883090, 40.3073128 8.9201740, 40.2962097 8.6585311, 40.2811242 8.5461349, 40.2810855 8.5491041, 40.2810434 8.5500776, 54.2989855 9.6672704, 50.8348278 4.3365303, 50.8351206 4.3454790, 50.8356220 4.3444276, 50.8376412 4.3455863, 50.8376954 4.3495131, 50.8378444 4.3419814, 50.8382916 4.3473673, 50.8386439 4.3463373, 50.8387425 4.3520312, 50.8424583 4.3473856, 50.8430806 4.3483808, 50.8433593 4.3501139, 50.8444432 4.3481827, 50.8446939 4.3447387, 50.8450258 4.3492985, 50.8454323 4.3503714, 50.8459651 4.3478583, 50.8461097 4.3487620, 50.8462859 4.3505216, 50.8469039 4.3417650, 50.8467465 4.3494272, 50.8474162 4.3413506, 50.8478615 4.3468533, 50.8477626 4.3621302, 50.8482910 4.3421960, 50.8487381 4.3389559, 50.8488228 4.3410029, 50.8488468 4.3464532, 50.8510245 4.3421352, 50.8528725 4.3578440, 50.8605342 4.3485253, 50.8700844 4.3439770, 50.8762183 4.3592978, 50.8764079 4.3576241, 50.8772202 4.3442345, 50.8772609 4.3594050, 50.8789823 4.3467244, 50.8936569 4.3516674, 50.8942608 4.3423100, 42.3242563 -72.6318461, 51.3433804 12.3777713, 43.3124639 5.3737685, 53.0816826 8.7668217, 53.0785270 8.7790946, 51.3662367 12.7354244, 50.3177954 -122.7985892, 51.7723848 19.4628579, 51.7746663 19.4527657, 51.7758871 19.4528839, 51.7740231 19.4724561, 51.7728655 19.4741906, 51.7778639 19.4695011, 51.7763572 19.4513011, 51.7661606 19.4545825, 51.7765668 19.4502859, 53.0763731 8.7814702, 53.0749711 8.7854362, 53.5870543 9.8523197, 53.0736960 8.8113880, 45.4045773 -71.8936895, 53.0776511 8.7744885, 44.7098575 10.6416059, 44.7118590 10.6487299, 44.7098728 10.6418554, 44.7102807 10.6419519, 52.6433817 -7.2307243, 43.7111812 10.3983133, 53.0798099 8.7656249, 45.4693119 7.8289726, 43.9194950 -80.0972496, -35.2890739 149.1367795, -35.2892904 149.1372959, 50.8493022 4.3532657, 35.4652380 139.6232660, 35.4573160 139.6345000, 35.4573770 139.6350780, 35.4565940 139.6334420, 5.4147578 100.3381401, 5.4186587 100.3363002, 5.4118952 100.3404014, 5.4153257 100.3388199, 5.4152656 100.3388868, 5.4196810 100.3364259, 5.4154139 100.3371358, 53.0749514 8.8058188, 52.2057098 0.1190323, -37.7993784 144.9868054, 45.5188570 -73.5691740, 39.5470742 -2.0880219, 45.5128430 -73.5632300, 45.8890755 8.7888632, 12.1280531 -86.2702926, 45.8067561 10.1126076, 50.4699704 17.3367742, 50.5271501 3.1717475, 50.5312150 3.1752250, 41.9454600 -85.6346896, -33.9242974 151.2277579, 53.1953609 -2.8860461, 45.5260704 -73.5812544, 48.7916119 2.3885259, 48.7906282 2.3890615, 48.7933393 2.3960812, 45.5348157 -73.5824182, 45.5335479 -73.5839377, 41.1380774 -104.8037385, 53.0700008 8.8578411, 53.0722317 8.8027783, 53.0660402 8.8603661, 51.4157789 -0.0719009, 40.6114262 -75.3787269, 50.2571143 19.0262677, 50.2571479 19.0260769, 50.2572564 19.0262190, 34.4740034 -104.2505389, 34.4721371 -104.2458022, 34.4720752 -104.2456546, 34.4720984 -104.2457056, 34.4728845 -104.2482698, 34.4739459 -104.2507535, 34.4720708 -104.2455326, 34.4722123 -104.2455165, 34.4731034 -104.2452054, 34.4738773 -104.2456748, 34.4738795 -104.2451169, 34.4729906 -104.2450283, 34.4729110 -104.2450230, 34.4730172 -104.2451061, 34.4721548 -104.2435746, 34.4721570 -104.2434968, 34.4721659 -104.2434351, 34.4722344 -104.2435612, 34.4722410 -104.2434727, 34.4739149 -104.2452563, 34.4734108 -104.2455353, 34.4733511 -104.2455353, 56.8486310 60.6143852, 56.8286462 60.5963142, 56.8253290 60.5739171, 56.8346004 60.5892016, 56.8348313 60.5912228, 56.8347581 60.5905843, 34.4712586 -104.2445012, 34.4690252 -104.2361273, 34.4691490 -104.2364170, 34.4663981 -104.2293199, 34.4664070 -104.2293789, 34.4664247 -104.2294432, 34.4664556 -104.2295237, 34.4664601 -104.2295827, 34.4664778 -104.2296632, 34.4663185 -104.2296846, 34.4728713 -104.2456008, 34.4728717 -104.2455800, 34.4728451 -104.2455639, 34.4729734 -104.2455210, 34.4731061 -104.2455102, 34.4719651 -104.2465134, 34.4718457 -104.2448933, 34.4716157 -104.2453439, 34.4724162 -104.2455102, 34.4724737 -104.2455156, 34.4725665 -104.2455156, 34.4726240 -104.2455210, 34.4725400 -104.2455102, 34.4577324 -104.2016293, 34.4041459 -104.1933627, 34.4041592 -104.1934325, 34.4041548 -104.1934754, 34.4041548 -104.1935290, 51.5620485 -0.0156984, 52.1492696 8.6409588, 50.8546639 4.3520783, 50.8529592 4.3453209, 50.8536100 4.3449699, 40.6636508 16.6094809, 52.7721456 -108.2978049, 52.7721439 -108.2980108, 52.7735140 -108.2996220, 52.7735147 -108.2994796, 44.3247854 3.5933287, 32.8953849 -96.8706526, 37.8444350 -122.2519760, -32.0515595 115.8443811, 40.6157425 -73.9868157, 56.2727168 8.3217166, 53.1676433 -1.4134747, 49.4448734 7.7697663, 53.0836993 8.7681259, 38.0537709 -84.4864406, 38.0540489 -84.4864496, 38.0440262 -84.4958034, 38.0595431 -84.4915847, 41.1620698 -7.7901776, 41.1601424 -7.7857109, -7.1845494 -78.4398653, 56.8406483 60.6572407, 56.2068996 -3.1838643, 56.2070642 -3.1842310, 45.2947957 4.8252328, 48.8013456 2.3789682, -37.7836523 175.2603574, 41.5586732 14.6692429, 51.5109264 -0.0586168, 50.2088506 19.2586085, 50.2134089 19.2574621, 50.2161597 19.2545607, 52.3344518 5.2215654, 52.3361695 5.2185499, 52.3360923 5.2191626, 52.3350428 5.2191372, 38.0521886 -84.4884016, 38.0494548 -84.4935773, 38.0429257 -84.4952821, 38.0443167 -84.4933857, 40.5732509 15.7863485, -33.4413297 121.7231524, -33.4414474 121.7232133, 50.8761314 4.7069297, -17.3923104 -66.1567482, 47.2021812 -1.5779209, 47.2022677 -1.5778037, 44.5352686 5.8261649, 52.4938477 13.3811864, 49.2351223 8.4528471, 51.5260751 -0.0840468, 40.5147712 -6.0522483, 41.1532430 -81.3579184, 52.6401090 9.2041528, 52.6429039 9.2056691, -17.3929057 -66.1552616, 37.8675132 -122.3000141, 37.8675551 -122.2997592, 43.5525690 10.3046692, 50.6909067 6.6458012, 53.3596659 -1.4659787, 51.4556489 -2.6038496, 45.4172733 -75.6983647, 52.5831591 -1.9784181, 51.5503609 -0.4845400, 52.3676058 5.2138501, 52.3364172 5.2193490, 39.2079410 -85.9230402, 39.1973373 -85.8800930, 39.2031083 -85.9228088, 39.1891273 -85.9736222, 52.3377816 5.2187910, 39.2019531 -85.9208501, 39.2085646 -85.8988681, 39.2019178 -85.9179194, 39.2543531 -85.8913927, 39.2031322 -85.8989603, 39.2039094 -85.9154693, 39.2025960 -85.9217800, 39.2023044 -85.9209961, 39.8701379 -86.1431395, 47.6488255 18.3250832, 53.1226519 8.7627701, 53.4817974 -2.2326613, 53.4831916 -2.2376310, 53.6843120 23.8402448, 51.0449475 16.9836877, 41.0442752 -83.6504895, 45.3947619 -75.7347314, 2.1971711 102.2488118, 47.7285285 18.4812974, 41.0388746 -83.6498780, 42.6945384 23.3187311, 42.6948533 23.3176120, 45.3884564 7.8690612, 45.3889697 7.8700512, 45.3902992 7.8683816, 45.3904858 7.8666733, 45.4031336 7.8686177, 45.4220219 7.7662900, 45.4277624 7.7798251, 45.4664205 7.8281230, 45.4792684 7.8161024, 52.4859871 13.4239241, 45.4447246 7.7824068, 45.4447482 7.7812375, 45.4544424 7.7666919, 45.4464445 7.7523835, 48.8592827 2.3509543, 45.5176517 -73.5566963, 45.3344339 7.7961501, 45.3352644 7.7964894, 45.3358821 7.8391051, 45.3362718 7.7964643, 45.3363782 7.7968375, 45.3366769 7.7939029, 45.3370169 7.8003099, 45.3380112 7.7945847, 45.3852962 7.7569311, 45.3857173 7.7583151, 45.3857363 7.7582900, 45.3860537 7.7555979, 45.5858337 9.2784368, 51.1738592 11.4244641, 51.1733178 11.4239529, 51.1752559 11.4191939, 51.1770761 11.4206127, 55.2086072 36.4853851, 55.2093674 36.4834112, 55.2087132 36.4858380, 55.2085214 36.4854330, 55.2089807 36.4877136, 55.2043154 36.4868146, 55.2062302 36.4837960, 55.2084956 36.4859124, 55.2084725 36.4858990, 40.5712714 -8.4437160, 51.4184661 -0.0727819, 42.7623332 -71.4668150, 42.7620908 -71.4667229, 42.7584057 -71.4682910, 42.7575240 -71.4647036, 42.7573052 -71.4669363, 42.7587805 -71.4640241, 42.7571556 -71.4675184, 42.7576189 -71.4657748, 42.7624523 -71.4657367, 42.7627189 -71.4664833, 42.7641415 -71.4660125, 42.7595174 -71.4680177, 42.7598112 -71.4657442, 42.7566036 -71.4695809, 42.7601179 -71.4658109, 42.7566142 -71.4701980, 42.7625651 -71.4652902, 42.7576305 -71.4656179, 50.0672862 19.9187865, 42.7563894 -71.4703902, 5.4116061 100.3340429, 5.4154939 100.3387651, 5.4213171 100.3336350, 42.6932439 23.3278734, 53.0791955 8.8052958, 53.1368542 8.7413622, 52.9504001 -1.1535231, 52.9503388 -1.1534482, 52.9503704 -1.1534869, 52.9504304 -1.1535602, 35.7137350 139.7045451, 48.7910119 2.2844280, 52.5020181 -6.5648958, 52.5035888 -6.5649360, 52.5022549 -6.5695360, 45.9224857 8.9139448, 66.1524092 -18.9054152, 51.5144694 12.1668357, 42.7038032 23.3519928, 42.7055910 23.3514368, 42.7046595 23.3516439, 51.5203741 -0.0713723, 43.9170530 7.2473706, 43.9171164 7.2476744, 43.5280686 5.4456013, 34.9206548 -81.7417946, 34.7157862 -81.6227769, 49.8590939 2.8321954, 55.8482628 12.0597799, 49.0420788 -122.3043045, 47.3644143 0.6842258, 52.0853470 4.2744771, 41.1477855 -81.3427719, 53.1453749 16.7296922, 53.1455051 16.7299372, 49.6373686 16.2253591, 41.9235566 2.2527099, 41.9237371 2.2530962, 41.9329332 2.2552130, 50.1053164 14.4760207, 50.0456837 19.9525865, 50.0416861 19.9612100, 50.0460592 19.9503439, 50.0446202 19.9387570, 50.0503135 19.9483610, 37.3910704 -6.0040276, 51.1179989 17.0353081, 19.3300825 -99.1776362, 38.9549606 -8.9918056, 42.5158610 2.9761019, 38.0566576 -84.4817862, 38.0565753 -84.4817514, 38.0565161 -84.4823656, 38.0562543 -84.4828350, 38.0562434 -84.4827559, 38.0538909 -84.4860503, 38.0531209 -84.4815269, 38.0523959 -84.4809835, 38.0521224 -84.4871313, 38.0476572 -84.4873995, 38.0447085 -84.4907952, 52.0830055 4.3103276, 38.0488445 -84.4986986, 47.6217830 -122.3323830, 31.9816820 -106.5839655, -32.9489433 -60.6265801, 38.0555396 -84.5174851, 38.0531741 -84.5086204, 42.8760574 74.5909103, 42.8736545 74.5745013, 42.8698006 74.6047406, 42.8580103 74.6099489, 42.8797935 74.5831435, 42.8789744 74.5764774, 42.8831894 74.5947887, 42.8768682 74.5914738, 39.9529812 8.6710119, 39.9584497 8.7077161, 52.3351130 5.2187199, 52.3361302 5.2211762, 43.6779832 4.6326511, 48.2010569 16.2469006, 56.8584597 60.6033627, 56.8287642 60.6191814, 50.4487456 3.4293089, 52.3705528 5.2671804, 39.9884383 8.7520163, 42.8402730 74.5860882, 42.8505673 74.5389765, 42.8747517 74.6231748, 42.8294615 74.6077952, 42.8295014 74.6069671, -34.5793686 -58.4311628, 48.1089044 11.7307630, 50.0641955 19.9392289, 52.5343772 -1.9481444, 49.0457739 -122.2878072, 49.0119269 8.4164669, 49.0487688 -122.2891869, 49.4596014 13.1650353, 49.0486962 -122.2915555, 53.5499631 10.0055917, 32.8799668 -117.2359539, 49.0526675 -122.3176918, 47.2318346 16.6204132, 48.3713908 15.4386238, 42.0687532 19.5164239, 42.0686477 19.5162309, 52.0838005 -1.9333126, 40.4553208 -3.4823556, 48.3510852 -1.1950994, 49.1661600 1.3457219, 52.0830292 -1.9334951, 51.4693904 -2.5771655, 41.3750699 -83.6496567, 48.1020726 -1.7053633, 48.1212950 -1.6993994, 50.0384936 22.0007901, 48.1804457 16.3773656, 49.0511778 -122.3115905, 41.3233100 19.8271412, 55.9254831 -3.4679776, 50.2963957 16.6518627, 48.0957326 -1.6898165, 48.8607045 2.3398367, 48.8606341 2.3396755, 41.3760811 -83.6365378, 46.9879580 17.9385680, 48.8607446 2.3398423, 48.8607483 2.3398443, 48.8607450 2.3398404, 48.8607641 2.3398519, 48.8607612 2.3398505, 48.8608899 2.3397514, 48.8608747 2.3397499, 48.8608761 2.3397409, 48.8608895 2.3398129, 48.8608877 2.3397594, 48.8608914 2.3398009, 48.8608800 2.3398326, 44.4130662 8.9373312, 51.7626148 19.4406747, 45.8089480 7.6186357, 47.9446431 14.8984465, 38.6387863 -90.1826610, 33.7505161 -84.3955465, 33.7502641 -84.3952434, 25.6719073 -100.3072634, 25.6724172 -100.2976594, 25.6724023 -100.2979786, 25.6723878 -100.2982153, 48.6734280 8.3527547, 48.4909916 14.9493750, 51.5908838 4.9179100, 51.5902977 4.9138121, 50.4424423 30.5362184, 42.3598743 -71.0907366, 42.3593372 -71.0932901, 54.5110857 36.2333343, 45.5592467 -122.6433910, 54.5108618 36.2325349, 54.5121070 36.2464355, 47.6682120 -122.3844430, 53.3462849 -6.2601433, 42.2282733 -8.7321042, 43.6491422 -79.3796433, 49.0102350 8.4115848, 38.0537735 -84.4861755, 38.0573765 -84.4810954, 38.0572076 -84.4810820, 38.0555159 -84.4837642, 38.0536161 -84.4871264, 43.6530620 -79.4702480, 49.0494648 -122.2892041, 33.9930356 -118.3202702, 47.5517728 7.9493424, 47.5517791 7.9493221, 52.3009340 -0.6935692, 52.2476680 20.9572517, 52.4535708 13.6208250, 52.4540617 13.6208695, 41.9284362 2.2540196, 49.0500839 -122.3347082, 38.8406964 -0.4712681, 38.8387756 -0.4724341, 49.0460146 -122.2914095, 51.5367954 -0.1181453, 47.3827084 8.5491573, 45.5706819 9.2561396, 50.4551113 30.4571461, -24.8631428 152.3535916, -33.0383617 -68.8885714, -32.9224661 -68.8642691, -32.9227781 -68.8647867, -32.9234618 -68.8645089, -32.9280550 -68.8554674, 40.1230055 -104.9435093, -32.9253184 -68.8591653, 1.5597574 110.3426026, 1.5596639 110.3425985, 41.3734556 -83.6512187, 53.0560550 -2.2304444, 49.2814715 8.4738830, 49.0116061 8.4175225, 49.5728224 8.8088691, 51.7438982 19.4518272, 51.7440677 19.4518089, 53.4468284 8.1108128, 45.5215050 -122.6862631, 53.1364531 23.1538836, 53.1349370 23.1517718, 41.9237675 2.2528539, 38.0539022 -84.4865570, 38.0581892 -84.4821898, 38.0475174 -84.4966938, 47.6204615 -122.3507418, 47.6262637 9.1355215, 48.1460671 11.5730439, 52.5052299 13.3223327, 41.3746042 -83.6441767, 44.3624296 8.4679340, 44.3623633 8.4680488, 44.3635034 8.4652059, 44.3634188 8.4651569, 44.3630155 8.4652411, 44.3630186 8.4653072, 44.3629020 8.4652196, 44.3627773 8.4652606, 44.3625929 8.4655491, 44.3626227 8.4656833, 44.3637875 8.4648543, 44.3638646 8.4643048, 44.3638792 8.4644457, 44.3638484 8.4645281, 44.3639190 8.4646073, 44.3637961 8.4646034, 44.3638648 8.4648312, 44.3636202 8.4648489, 44.3639894 8.4648651, 44.3641661 8.4648747, 44.3643585 8.4648310, 44.3644641 8.4648466, 44.3640759 8.4647197, 44.3641106 8.4644918, 44.3640674 8.4644187, 44.3638030 8.4645172, 44.3640101 8.4642148, 44.3640542 8.4641624, 44.3640679 8.4643417, 44.3641450 8.4642255, 44.3642264 8.4640539, 44.3642745 8.4639515, 44.3643450 8.4638045, 44.3641597 8.4630029, 44.3641122 8.4627525, 44.3637416 8.4645437, 44.3637012 8.4646275, 44.3637350 8.4646814, 53.3421371 -6.2560639, 44.3302361 8.5188185, 44.3303193 8.5192294, 44.3303726 8.5195070, 44.3301679 8.5183021, 44.3374123 8.5139595, 44.3392186 8.5100214, 44.3399861 8.5093023, 44.3378413 8.5130046, 43.4523634 4.4272657, 40.4629690 -3.7025637, 40.4630572 -3.7025030, 40.4638460 -3.7042068, 40.4638860 -3.7043100, 40.4645402 -3.7052924, 47.7744827 15.3208161, 47.7745056 15.3208047, 47.7745262 15.3207944, 45.5213425 -122.6828001, 45.5214731 -122.6832836, 51.7396602 19.4510408, 45.5211626 -122.6802846, 61.1295204 21.5230775, 61.1298546 21.5272291, 43.0814849 25.6328946, 45.5121351 -122.6825360, 45.5099516 -122.6825594, 19.2898490 -99.1679767, 43.0813211 25.6445940, 43.0763991 25.6158014, 43.0779880 25.6314597, 51.8659586 4.3535754, 32.6872446 -80.8471008, 41.3754967 -83.6420996, 47.5516748 7.9495248, 51.8650878 4.3573378, 50.7395074 4.1354107, 50.7396307 4.1351653, 51.8774150 4.5268384, 51.8779014 4.5282495, 51.4409955 -0.0913528, 47.2213018 -1.5433904, -37.7686791 144.9711896, -45.8764804 170.5043166, 49.0504586 -122.2888015, -19.9342372 -40.4035642, 49.0492178 -122.2867934, 50.4577655 30.4008716, 42.1798018 -4.9723549, 42.1787180 -4.9695677, 42.1828836 -4.9682474, 42.1782930 -4.9686120, 42.1818929 -4.9717890, 50.8465166 4.3492931, 48.8445081 2.3563066, 38.9420492 -77.0245622, 44.3294612 8.5114860, 56.1306136 40.3560004, 56.1384349 40.4007878, 38.9365675 -77.0238537, 53.8973706 27.5656803, 47.5529679 7.9494813, 56.1355410 40.3655263, 47.5526278 7.9486973, 56.0953577 40.2542695, 50.4576575 30.5925044, 45.5270960 -122.6819577, 24.0335685 -104.6804874, 51.4575150 -2.5967820, -17.7776036 -63.1805280, -17.7829707 -63.1722090, 51.4405577 -2.6061948, 51.4406860 -2.6043832, 44.3296211 8.5106620, 52.6387209 9.2078173, 44.0921939 6.2353698, 51.7484899 -1.2396798, 50.4572801 30.3797907, 50.4566076 30.3820736, 51.0834981 4.3733331, 53.9524859 27.6675601, 47.2388618 -1.5181771, 34.2429441 -118.4729899, 34.2427035 -118.4729929, 53.8883835 27.5418437, 50.4558543 30.5182654, 53.8783017 27.5438042, 56.2135999 -3.1580495, 56.2175467 -3.1720154, 56.2147171 -3.1801535, 56.2131283 -3.1797909, 56.2119856 -3.1799671, 56.2107653 -3.1837347, 56.2110681 -3.1883554, 56.2133053 -3.1878779, 56.2130075 -3.1904870, 56.2130417 -3.1914051, 56.2121351 -3.1931622, 56.2122847 -3.1928581, 53.8756494 27.5301015, 53.8733861 27.5425594, 53.8725768 27.5433284, 53.9055573 27.5355783, 45.5220447 -122.6771725, 48.5259755 12.1889570, -37.8023040 144.9835855, 47.5513440 7.9500035, 49.0150801 8.4207568, 50.9794523 4.0811001, -45.8782091 170.5038364, -45.8785116 170.5036365, -45.8785963 170.5035757, -45.8796732 170.5029413, -45.8792618 170.5031933, -45.8795522 170.5030108, -45.8794856 170.5026979, -45.8789803 170.5002826, -45.8801498 170.5024206, -45.8806199 170.5007501, -45.8791601 170.5016831, -45.8807003 170.5004747, -45.8790673 170.5013706, -45.8797168 170.5010078, -45.8796828 170.5001617, -45.8799152 170.4995211, -45.8796640 170.4988896, -45.8793230 170.4996514, -45.8772551 170.5000097, -45.8779348 170.5002800, -45.8775274 170.5007664, -45.8751688 170.5022271, -45.8745079 170.5014243, 49.8817988 13.3564014, 51.2675538 7.1607310, 40.9697640 -5.6687548, 50.6635320 11.5677944, 51.0527543 13.7389809, 41.2806386 -82.7903114, 46.4976863 -80.9975128, 41.3851630 -83.6418716, 49.2811474 -123.1132131, 49.4719088 8.4843272, -35.3036563 149.1372453, 50.9602455 6.9768291, 46.7471651 -71.3409155, 50.0412465 19.9576371, 52.0121378 18.5111839, -20.2773275 -40.3014543, 52.0123795 18.5118804, 52.0123957 18.5129144, 43.6054536 3.8842159, 39.0170851 -77.5150639, 48.5135683 9.0540270, 48.5136496 9.0546591, 48.5166244 9.0588300, 45.7858145 4.8075880, 43.7056239 7.2593116, 43.1959215 5.6172785, 45.7505612 3.0910310, 45.7779285 4.8279690, 45.7316295 4.8668787, 45.7484993 4.8788479, 45.7498654 4.8759864, 45.7698700 4.7879340, 45.7698985 4.7880655, 45.7549115 4.8434004, 45.7245886 4.8263897, 45.7433556 4.8405258, 45.7196057 4.8008161, 49.4711729 8.4842984, 45.9937525 4.7191450, 28.1627997 -15.4284758, 45.9911135 4.7189355, 45.8236656 4.9516614, 45.7326668 4.8630359, 50.3827443 3.0887317, 45.9896165 4.7139395, 45.0673527 4.8330052, 45.7375747 4.8616255, 45.7725199 4.8663498, 45.7321697 4.8664580, 45.7336465 4.8632348, 45.7328203 4.8629032, 45.7320947 4.8674966, 45.7330177 4.8657973, 45.7324535 4.8672057, 45.7331360 4.8666865, 45.7335600 4.8653728, 45.7325955 4.8671070, 45.7319545 4.8635870, 45.7321249 4.8634546, 45.7316965 4.8647521, 45.7323801 4.8642213, 45.7322374 4.8643323, 45.7323075 4.8663529, 45.7329498 4.8637779, 45.7314132 4.8640073, 45.7385048 4.8613236, 45.7387649 4.8607244, 45.7389336 4.8609359, 45.7328475 4.8659300, 45.7310051 4.8652929, 45.7331061 4.8636557, 45.7333891 4.8624614, 45.7315452 4.8648710, 45.7756330 4.7951910, 45.7332067 4.8666311, 45.8155738 4.8472165, 45.8156435 4.8475277, 42.3797616 -71.0987931, 42.3798687 -71.0954403, 45.0674616 4.8330187, 45.0673053 4.8333600, 45.7649855 4.8287925, 45.7165371 4.8098566, 45.7493533 4.8609118, 45.6634167 4.8424264, 37.8311549 -122.2549431, 45.7209120 4.8541671, 45.7235048 4.8539594, 45.7222175 4.8540626, 45.7227953 4.8540163, 45.7249510 4.8538288, 45.7681064 4.8280574, 45.7659207 4.8312600, 45.7759090 4.8015510, 45.7760780 4.7952180, 45.7764025 4.7984375, 45.7250410 5.2514110, 45.6870383 5.3207116, 45.8202824 4.8705136, 45.7498366 5.1566655, 45.7664155 5.0049470, 45.7704495 4.8643856, 45.7617643 4.8152072, 45.7621030 4.8160960, 45.7618195 4.8162683, 45.7342924 4.8626980, 45.5249515 4.8766560, 45.7745993 4.8606941, 45.8437735 4.7340205, 45.7150814 4.8078204, 45.7175164 4.8098900, 45.7450213 4.8660796, 45.7502318 4.8416469, 45.7513725 4.8390037, 45.7205996 4.8439283, 45.7690470 4.7998735, 45.7697129 4.9524500, 45.7714030 5.0001735, 45.5828000 4.6317347, 45.7083270 4.8272787, 45.7318628 4.9995743, 45.7316843 5.0009960, 45.7317208 4.9997166, 45.7322290 4.9975134, 45.7340142 4.9964253, 45.7337846 4.9972670, 45.7723084 4.8215466, 45.9923090 4.7148511, 45.9992002 4.7068090, 45.7449245 4.8424444, 45.7452687 4.8413678, 45.7252956 4.8413865, 45.7696023 4.8272314, -27.3565875 -55.9031998, 43.4354452 3.6736282, 43.6083431 3.8757537, 43.6064367 3.8760233, 45.3980277 5.4163392, 46.0560780 4.5925965, 45.6584310 4.7736255, 45.7081288 4.7481631, 52.4786505 -1.8811401, -20.2726011 -40.3056313, 45.7680770 4.8801051, 45.6946293 4.9406443, 45.7296178 4.8752517, 45.7463509 4.8459884, 49.2423920 8.4730477, 49.2421672 8.4730766, 49.2421984 8.4729072, 49.2422946 8.4732007, 49.2423402 8.4728779, 41.4018808 2.1793651, 45.7677299 4.8312641, 45.7297744 4.8742560, 51.5127453 -0.1381665, 41.8530567 -87.6314325, 45.7551709 4.8469660, 45.8764848 4.8346205, 45.8684698 4.8394062, 45.7434934 4.8478974, 45.7559238 4.8169452, 52.0175464 18.4988008, 51.4736870 -0.0699055, 45.7447945 4.9069783, 45.3324996 8.4326593, 45.3200206 8.4223377, 52.6396913 9.2078891, 45.7179757 4.8174971, 45.7180962 4.8187223, 45.5857923 9.2620397, 48.1066006 11.7222562, 52.6440907 9.2020649, 46.2956359 5.6817401, 39.8115545 -77.2260798, 49.0434353 -122.3093877, 41.5857316 -93.6176380, 50.7029544 3.2128655, 33.6299754 -112.3762740, 52.5449088 12.3430742, 52.5447248 12.3472627, 45.4183248 4.6827379, 49.4040536 8.6759122, 45.4487430 141.6434538, 52.1094244 19.9434314, 51.8066765 4.5766234, -22.9924192 -43.2498801, 42.8145199 -70.8741556, 49.0144606 8.4169085, 49.0486387 -122.2901145, -25.4286258 -49.2645041, 42.0682503 19.5148347, 4.5301583 -75.6693238, -27.3524135 -55.8986117, 45.7178274 4.8192282, 45.7860525 4.9123035, 45.7871070 4.9124765, 48.7012845 14.8937769, 45.8067819 15.9802158, 45.8838151 5.3727372, 45.7347800 4.8728560, 45.7005717 4.8870852, 45.7008842 4.8871881, 49.2862243 8.5603333, 49.2863028 8.5602592, 49.2862473 8.5601351, 52.5310792 12.3379562, 52.5293652 12.3419150, 45.7805415 4.8361690, 48.1775608 16.3584705, 48.0099205 7.8218526, -24.0121107 -46.4140506, 37.7716576 -122.3995055, 51.4780578 -0.0014861, -23.9984813 -46.4136019, 45.7660616 4.8316834, 49.0457202 -122.2896796, 52.4710777 13.7855324, 50.6266028 3.0220555, 50.7949020 -1.1168897, 51.4951200 3.8912269, 51.4950763 3.8903702, 58.3006092 -134.4084945, 51.4460054 7.3628248, 51.5088049 -0.1996079, 50.8766041 4.7123040, 39.0603766 125.8213718, 39.0579705 125.8225026, 52.2371299 20.9557748, -37.7689684 144.9713495, 52.1090359 19.9454161, 52.0949200 19.9379849, 52.1097052 19.9466490, 56.1710683 -3.0333716, 39.8084800 9.3986652, 51.7512069 18.0799718, 44.3281142 8.5063933, 51.5204674 0.1083053, 51.1264551 4.2924477, 45.7132220 4.9185192, 45.7637878 4.8505854, 45.7255562 4.8164955, 45.9876730 4.7251450, 45.7946355 4.7932140, 45.7722055 4.8638274, 45.3838440 4.2804685, 45.7318449 4.8358676, 46.0182845 4.3778625, -23.9653815 -46.3491039, 13.7515025 100.4926302, 49.0141897 8.4198721, 52.5212359 13.4163432, 45.5152821 -73.5631958 +0 +Viernheim, Hemsbach, Hirschhorn (Neckar), Weinheim, Eberbach, Edingen-Neckarhausen, Dossenheim, Schriesheim, Ladenburg +3.2971201432222386 +68 +no +711 +3 +48.8186338 2.3589337, 48.8370737 2.3788669, 48.9000609 2.3653350, 48.8563367 2.3884320, 48.8230158 2.3140310, 48.8213412 2.3225246, 48.8685518 2.3429199, 48.8649072 2.2687029, 48.8723005 2.4127029, 48.8217660 2.3781244 +702 +48.8484038 2.3977491, 48.8512856 2.2781094, 48.8467839 2.2854077, 48.8332389 2.3329284, 48.8526288 2.3385336, 48.8925057 2.3450965, 48.8536039 2.3444118, 48.8515050 2.3430786, 48.8473294 2.3412516, 48.8312038 2.3565530, 48.8806072 2.3538936, 48.8347711 2.3321841, 48.8278860 2.3709325, 48.8695890 2.2848365, 48.8581077 2.3801470, 48.8317286 2.3137879, 48.8668650 2.2788566, 48.8697674 2.2857979, 48.8424148 2.4052197, 48.8448799 2.3727316, 48.8815590 2.3150046, 48.8903495 2.3201315, 48.8941941 2.3135794, 48.8704998 2.3049572, 48.8854539 2.2915179, 48.8898626 2.3035373, 48.8774012 2.4069914, 48.8980267 2.3289128, 48.8844761 2.2976487, 48.8584436 2.3037809, 48.8795960 2.3896580, 48.8827367 2.3814655, 48.8420110 2.3206428, 48.8615010 2.3537550, 48.8645112 2.3981788, 48.8798173 2.3215782, 48.8747412 2.3049062, 48.8700986 2.3070512, 48.8687272 2.2986811, 48.8764317 2.3015489, 48.8748073 2.2956078, 48.8679763 2.2954876, 48.8666447 2.2899845, 48.8714962 2.2934996, 48.8659060 2.2863973, 48.8634029 2.2863046, 48.8617450 2.2859062, 48.8586868 2.2849457, 48.8482990 2.2647021, 48.8776228 2.3708847, 48.8780030 2.3781296, 48.8873966 2.3492159, 48.8831639 2.3275572, 48.8374622 2.2575596, 48.8527859 2.4060423, 48.8764243 2.3592623, 48.8663059 2.3244457, 48.8579055 2.3100803, 48.8655795 2.3559318, 48.8473587 2.3122933, 48.8766198 2.3392717, 48.8832546 2.3471915, 48.8460393 2.3780826, 48.8383701 2.3607602, 48.8320548 2.3861467, 48.8432250 2.4013484, 48.8226361 2.3257162, 48.8429514 2.3751858, 48.8597360 2.3466694, 48.8606298 2.3466023, 48.8445008 2.4411062, 48.8502906 2.3928948, 48.8715042 2.3426369, 48.8721397 2.3393564, 48.8538475 2.3325263, 48.8975838 2.3287233, 48.8937759 2.3363457, 48.8391806 2.3825585, 48.8672161 2.3065357, 48.8652369 2.3013632, 48.8616106 2.3019528, 48.8622551 2.3149819, 48.8538751 2.3124512, 48.8650500 2.3013405, 48.8541706 2.3068705, 48.8699915 2.3014172, 48.8713160 2.3009696, 48.8756033 2.3260400, 48.8630530 2.3526294, 48.8462434 2.3767506, 48.8793033 2.3034301, 48.8682598 2.4015540, 48.8567698 2.3537979, 48.8257810 2.3469176, 48.8600781 2.3465254, 48.8325620 2.3618635, 48.8284670 2.3264398, 48.8666879 2.3641696, 48.8679052 2.3646802, 48.8679443 2.3620076, 48.8606611 2.3260607, 48.8307729 2.3768467, 48.8494789 2.3371871, 48.8521348 2.3393496, 48.8772711 2.3269492, 48.8764858 2.3319975, 48.8846924 2.3795882, 48.8306144 2.2924114, 48.8767391 2.3608267, 48.8643491 2.2725788, 48.8982278 2.3591507, 48.8607328 2.3456697, 48.8236433 2.3530302, 48.8643981 2.3303564, 48.8891585 2.3938039, 48.8577770 2.3473733, 48.8634279 2.3351782, 48.8680916 2.3299623, 48.8691985 2.3546294, 48.8659300 2.3408572, 48.8662586 2.3612125, 48.8553209 2.3603751, 48.8369707 2.3521360, 48.8500790 2.3487204, 48.8432193 2.3520318, 48.8498863 2.3550274, 48.8434713 2.3236014, 48.8530282 2.3354092, 48.8402189 2.3365313, 48.8505206 2.3272579, 48.8512092 2.3331634, 48.8390765 2.3825241, 48.8795760 2.3490326, 48.8705443 2.3327006, 48.8383042 2.3198337, 48.8674579 2.3471327, 48.8312696 2.3876594, 48.8739447 2.3858048, 48.8586994 2.3420105, 48.8774490 2.3940074, 48.8698623 2.3116804, 48.8773384 2.2845223, 48.8196076 2.3652124, 48.8507063 2.3842333, 48.8499085 2.2830749, 48.8374271 2.2573332, 48.8449422 2.3117076 +yes +49.4125622 8.6856608, 49.4132392 8.6920033, 49.4102265 8.6939011, 49.4104740 8.7059723, 49.4149603 8.6903977, 49.4171332 8.6926969, 49.4131244 8.6897970, 49.4122418 8.6816335 +no +49.4158274 8.7024562, 49.4140666 8.7816898, 49.4577219 8.7490473, 49.4032925 8.7045178, 49.4289721 8.7151840, 49.4229936 8.7911425, 49.4389757 8.7105067, 49.4198571 8.7455459, 49.4275029 8.7737015, 49.4373776 8.7102608, 49.4586993 8.7508080, 49.4422682 8.7212517, 49.4363628 8.7226574, 49.3798543 8.7242169, 49.3920053 8.7219191, 49.3936816 8.7338185, 49.3880529 8.7449374, 49.3892299 8.7356087, 49.4211542 8.7663844, 49.4041052 8.7535788, 49.4040430 8.7550549, 49.4018572 8.7381282, 49.3882183 8.7637532, 49.3713087 8.7206070, 49.3712490 8.7202415, 49.3885665 8.7398928, 49.4004490 8.7367991, 49.4001794 8.7358427, 49.3735025 8.7471203, 49.4145556 8.7378436, 49.3955998 8.7710686, 49.4068586 8.7117430, 49.4013232 8.7102589, 49.3926283 8.7303560, 49.4186446 8.7243774, 49.4192378 8.7252701, 49.3916523 8.7083614, 49.4040076 8.7273317, 49.4006004 8.7520929, 49.4312494 8.6531851, 49.3715147 8.7207735, 49.3569186 8.7160216, 49.4020661 8.7444436, 49.4158860 8.7648572, 49.3618878 8.7145352, 49.3879028 8.7422176, 49.3933762 8.7504520, 49.3976730 8.7366267, 49.3975523 8.7366262, 49.3975987 8.7367489, 49.4126021 8.6894511, 49.4124594 8.6881444, 49.4282015 8.7615482 +91 +49.6441243 8.5564719, 49.0087591 8.5185870, 49.6721557 8.7454758, 49.1842695 8.5319667, 49.1288811 8.5190059, 49.9809835 7.8983830, 48.7376304 8.7293812, 49.5337420 8.5138668, 49.4347356 8.5477477, 48.7925976 9.3061008, 49.8196948 8.4985181, 49.7600299 9.3291305, 48.7856247 8.6267606, 49.7759429 8.4585232, 49.2307784 9.2078871, 49.4206827 8.4171066, 49.6798785 9.0763050, 49.4367044 8.5477748, 49.4100821 8.1059288, 49.2801412 9.1346454, 48.9795411 8.5355564, 50.1031768 8.1927138, 49.2657113 8.7084865, 48.8041483 8.4631233, 49.4876783 8.2702108, 49.4677368 9.7970458, 48.7483865 8.0614060, 49.0287165 9.0492016, 49.0410316 9.3169418, 48.8539592 9.2348027, 48.8539557 9.2347866, 48.7092320 9.1577080, 49.5996317 9.3442999, 49.1905859 8.1305758, 48.9983747 8.4008525, 49.6151657 8.3719243, 49.4148452 8.6616528, 49.6441921 8.5567222, 48.8058870 9.2026965, 49.3148737 8.6338634, 49.2040092 8.1101928, 49.2322156 8.5669673, 49.2988367 8.5679496, 48.9802399 8.4708375, 50.0065372 8.2026859, 49.3584373 8.5785675, 49.9732653 9.1956023, 50.1157093 8.7028470, 49.3459550 8.3249470, 49.1515965 8.2765440, 49.5210275 8.6234238, 49.1023186 8.3828553, 49.2935362 8.5045743, 50.1165360 8.7067454, 48.8253103 8.6754059, 50.0263486 9.3879603, 49.9913841 8.2840289, 49.9915814 8.2834580, 49.3238470 8.5608511, 49.2651896 8.7827986, 48.9540766 8.4458308, 49.2426090 8.6870049, 48.9957220 9.1233047, 48.8665666 8.2860385, 49.4876843 8.2700607, 49.5254851 8.3704330, 49.1285534 8.5472366, 50.0330868 8.4258727, 49.4650298 7.6807066, 49.3714003 8.5192029, 49.1603286 9.1744885, 49.5513114 8.5821079, 48.8647904 8.2838755, 49.3582528 8.5752331, 49.4367038 8.5473860, 49.4345444 8.5480585, 49.3694523 8.9893173, 49.5336357 8.5167883, 49.4301824 8.4136152, 49.2767861 8.4785462, 49.9038888 8.4804344, 49.0562857 8.2706917, 49.2593457 8.4792839, 49.1499602 8.2782883, 50.0799929 8.7788988, 48.9849185 9.4605810, 50.0818294 8.5830720, 49.5854925 8.3604222, 49.0270555 9.0435626, 49.1220234 8.7286777, 49.2196715 8.6777887, 49.0350959 9.0509228, 49.0413083 9.3172317, 48.8995303 9.2000831, 49.6248616 8.6332287, 49.0174407 8.6954605, 49.5369447 8.5202986, 49.5381507 8.5127480, 50.1050054 8.1943039, 50.0675822 8.4932108, 50.0977210 8.4410081, 48.7071512 8.4345065, 49.1429609 9.0779834, 49.4696792 9.7928929, 48.9653382 9.4514415, 48.9173133 8.4878677, 49.1200794 8.4079223, 49.1639956 8.5831769, 50.0134135 8.5766571, 49.0355835 9.0504869, 49.0689362 8.5095157, 48.8750061 8.7154801, 49.0534493 8.3745481, 49.1836255 9.6389805, 49.0562524 8.2689839, 49.1579391 8.4191576, 49.3528318 8.7061472, 49.8500709 8.3693753, 48.8080900 9.1753283, 48.8070681 9.1714156, 50.0812734 8.9081352, 49.1978115 9.5038738, 49.0889411 9.4579901, 49.6154087 8.3705051, 49.6153418 8.3707592, 49.6155807 8.3704936, 49.0684589 8.4811442, 48.8055015 8.6852308, 50.0973455 9.1313246, 48.8483212 8.6558738, 48.8480194 8.6565577, 49.8759490 9.2798845, 50.0340299 8.2795683, 49.8661558 8.6833923, 48.8196711 9.2263964, 49.7424685 8.1314634, 50.1571100 8.9728580, 49.7088645 8.5219522, 49.5087923 9.3552786, 48.9895332 8.4214095 +http://www.eldorado-hd.de/, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de +22 +49.4278935 8.6837354, 49.4278053 8.7495282, 49.4178891 8.7605933, 49.4075919 8.6845735, 49.4092752 8.6923105, 49.4084767 8.6927500, 49.4078943 8.6929172, 49.4082491 8.6928194, 49.4076311 8.6935050, 49.4084243 8.6937725, 49.4015990 8.6856698, 49.4158218 8.6922416, 49.4072954 8.6910173, 49.4082662 8.6915918, 49.3808049 8.6889505, 49.3656861 8.7051775, 49.3743033 8.7032524, 49.3747286 8.7033441, 49.3743933 8.7035372, 49.4103403 8.6975369, 49.4165191 8.6921856, 49.4120923 8.7117858, 49.4151801 8.6903524, 49.4071068 8.6898761, 49.4108200 8.6918918, 49.4160126 8.6922256, 49.4278746 8.6871277, 49.4277708 8.6843289, 49.3795527 8.6902336, 49.4101101 8.6935285, 49.4080641 8.6904292, 49.4283321 8.6836841, 49.3804723 8.6884268, 49.3807734 8.6884609, 49.4082494 8.6913249, 49.4060965 8.6874091, 49.4081205 8.6928550, 49.4114742 8.7040324, 49.4207600 8.7562394, 49.4278253 8.6839436, 49.4278064 8.7495089 +48.8298344 2.3228877, 48.8319942 2.3245602, 48.8618492 2.3434997, 48.8672925 2.3255509, 48.8659000 2.3372420, 48.8615254 2.3440287, 48.8586437 2.3458501, 48.8674660 2.3326727, 48.8663903 2.3380844, 48.8648091 2.3411291, 48.8687993 2.3373273, 48.8689038 2.3422059, 48.8405040 2.3347917, 48.8556694 2.3399888, 48.8555375 2.3409454, 48.8537528 2.3324105, 48.8533939 2.3394107, 48.8493501 2.3391528, 48.8546811 2.3332029, 48.8497831 2.3401650, 48.8441458 2.3298957, 48.8468341 2.3265156, 48.8550882 2.3414828, 48.8442966 2.3310034, 48.8710439 2.3094204, 48.8695157 2.3030346, 48.8714582 2.3357136, 48.8719507 2.3429771, 48.8718710 2.3418144, 48.8349997 2.3270026, 48.8332286 2.3157120, 48.8413291 2.2990993, 48.8408025 2.2883022, 48.8581641 2.2723388, 48.8869322 2.3399586, 48.8847049 2.3404648, 48.8523143 2.3350471, 48.8755021 2.3103942, 48.8600296 2.3006336, 48.8516415 2.3185465, 48.8482525 2.3194882, 48.8604171 2.3059560, 48.8537038 2.3235630, 48.8584187 2.2875657, 48.8449916 2.3240393, 48.8395978 2.2669106, 48.8274124 2.3148434, 48.8588049 2.3266129, 48.8694500 2.3047988, 48.8334988 2.3198962, 48.8373556 2.2574212, 48.8378434 2.2578634, 48.8381218 2.2586505, 48.8488333 2.3253506, 48.8647212 2.3469127, 48.8658103 2.3452891, 48.8588835 2.3307705, 48.8697776 2.3105917, 48.8722601 2.3035046, 48.8686679 2.3066263, 48.8721672 2.3266440, 48.8845714 2.3233053, 48.8844355 2.3243334, 48.8867718 2.3236539, 48.8884368 2.3207195, 48.8886141 2.3198123, 48.8891033 2.3164088, 48.8879876 2.3341073, 48.8940470 2.3341991, 48.8886186 2.3167009, 48.8835953 2.3233585, 48.8492934 2.3349249, 48.8414290 2.2990451, 48.8517156 2.3336409, 48.8858410 2.3405929, 48.8891314 2.3403708, 48.8455384 2.3288228, 48.8519626 2.3388319, 48.8300397 2.3310990, 48.8776115 2.2679599, 48.8457103 2.3192202, 48.8523526 2.3444419, 48.8568120 2.3062305, 48.8540277 2.3358692, 48.8404976 2.3244044, 48.8491586 2.2872491, 48.8472243 2.3185062, 48.8300837 2.3230365, 48.8672258 2.3079158, 48.8838613 2.3277184, 48.8861318 2.3340926, 48.8518241 2.3377078, 48.8393461 2.2989248, 48.8739244 2.3454201, 48.8701181 2.2849979, 48.8473878 2.3433434, 48.8860554 2.3188123, 48.8519093 2.3341886, 48.8650517 2.3018704, 48.8284622 2.3428564, 48.8319371 2.3141252, 48.8327575 2.3159370, 48.8330455 2.3162946, 48.8332491 2.3170528, 48.8362254 2.3224012, 48.8364089 2.3224024, 48.8324709 2.3200140, 48.8324257 2.3207007, 48.8324031 2.3208037, 48.8323749 2.3209067, 48.8840850 2.3374869, 48.8663999 2.3328148, 48.8678174 2.3028593, 48.8310200 2.3347804, 48.8865096 2.3452428, 48.8274542 2.3356985, 48.8324911 2.2973690, 48.8342552 2.3021401, 48.8331822 2.3057910, 48.8330642 2.3057247, 48.8370250 2.2962718, 48.8320429 2.3030516, 48.8847672 2.3248422, 48.8567473 2.3041925, 48.8562200 2.3044115, 48.8560475 2.3045247, 48.8555290 2.3047711, 48.8555382 2.3054236, 48.8553164 2.3055412, 48.8549906 2.3050099, 48.8547805 2.3051304, 48.8454096 2.3428012, 48.8451686 2.3207087, 48.8836330 2.3284520, 48.8718006 2.3062883, 48.8343459 2.3060180, 48.8803159 2.2995227, 48.8633934 2.3347841, 48.8707741 2.3411912, 48.8705661 2.3420906, 48.8709334 2.3427566, 48.8505276 2.3447826, 48.8513045 2.3459712, 48.8661377 2.3353287, 48.8871654 2.3269257, 48.8861847 2.3270688, 48.8974129 2.3292183, 48.8538840 2.3375740, 48.8459719 2.2775704, 48.8605714 2.3454975, 48.8286167 2.3222750, 48.8291859 2.3226894, 48.8768016 2.3394255, 48.8445390 2.3211809, 48.8305262 2.3381265, 48.8289443 2.3298857, 48.8289302 2.3293063, 48.8288878 2.3328361, 48.8376310 2.2974210, 48.8958230 2.3395842, 48.8794405 2.3338166, 48.8430137 2.3209354, 48.8386044 2.2987363, 48.8565275 2.3420348, 48.8568716 2.3421327, 48.8563329 2.3422554, 48.8569183 2.3418674, 48.8333386 2.2983800, 48.8319312 2.3029513, 48.8600943 2.3451124, 48.8604674 2.3454225, 48.8609295 2.3450073, 48.8612791 2.3423684, 48.8613359 2.3426577, 48.8612560 2.3431916, 48.8613382 2.3448649, 48.8617216 2.3432877, 48.8602965 2.3418540, 48.8588694 2.3415282, 48.8618530 2.3408621, 48.8622902 2.3393649, 48.8620988 2.3398606, 48.8622685 2.3398888, 48.8626905 2.3414763, 48.8644969 2.3453886, 48.8633332 2.3460793, 48.8633690 2.3462612, 48.8634242 2.3462790, 48.8641678 2.3467038, 48.8636473 2.3431563, 48.8640954 2.3438023, 48.8625475 2.3407883, 48.8647612 2.3406523, 48.8659486 2.3400023, 48.8644890 2.3404697, 48.8655554 2.3403846, 48.8660668 2.3390095, 48.8661019 2.3389239, 48.8650200 2.3366293, 48.8656093 2.3369261, 48.8663099 2.3374684, 48.8660066 2.3354463, 48.8660278 2.3340077, 48.8663930 2.3354840, 48.8663406 2.3354494, 48.8666001 2.3357750, 48.8646841 2.3338346, 48.8660273 2.3312781, 48.8380436 2.2819311, 48.8447774 2.2964422, 48.8475784 2.2858410, 48.8499929 2.2889519, 48.8658325 2.3324895, 48.8658744 2.3325173, 48.8659399 2.3325614, 48.8663779 2.3317318, 48.8669595 2.3323778, 48.8670401 2.3324272, 48.8676684 2.3316870, 48.8671882 2.3325179, 48.8675087 2.3324647, 48.8675328 2.3323476, 48.8678727 2.3316533, 48.8680817 2.3307073, 48.8517565 2.2895333, 48.8527624 2.2872737, 48.8687898 2.3338477, 48.8698110 2.3346634, 48.8690695 2.3343056, 48.8707437 2.3338850, 48.8714078 2.3378085, 48.8690729 2.3399905, 48.8691872 2.3393294, 48.8691071 2.3397858, 48.8692514 2.3401242, 48.8716597 2.3407937, 48.8716249 2.3410422, 48.8688297 2.3421626, 48.8675928 2.3409167, 48.8664997 2.3400225, 48.8691969 2.3433101, 48.8671849 2.3441863, 48.8705145 2.3428931, 48.8709276 2.3429934, 48.8515128 2.3437930, 48.8834373 2.3324889, 48.8271315 2.3323734, 48.8633842 2.3464893, 48.8521687 2.3444775, 48.8533184 2.3416729, 48.8544692 2.3379604, 48.8468855 2.3408953, 48.8459422 2.3434742, 48.8422162 2.3202513, 48.8438796 2.3245430, 48.8687006 2.3354843, 48.8400778 2.3373997, 48.8413087 2.3389738, 48.8413263 2.3391080, 48.8382571 2.3458273, 48.8437946 2.3390709, 48.8543308 2.3402565, 48.8546432 2.3327719, 48.8533032 2.3340213, 48.8529586 2.3360296, 48.8516089 2.3354609, 48.8514421 2.3272954, 48.8551090 2.3306870, 48.8416177 2.3314774, 48.8419379 2.3304718, 48.8422661 2.3280738, 48.8424306 2.3290349, 48.8471137 2.3267431, 48.8467204 2.3172126, 48.8530169 2.3313456, 48.8521220 2.3374608, 48.8673734 2.3222301, 48.8693756 2.3206236, 48.8705692 2.3211241, 48.8727654 2.3210286, 48.8703638 2.3102774, 48.8723529 2.3102456, 48.8738587 2.3163169, 48.8737509 2.3196440, 48.8744903 2.3184375, 48.8736367 2.3223675, 48.8713058 2.3233311, 48.8724761 2.3240966, 48.8721839 2.3251685, 48.8751646 2.3250295, 48.8753241 2.3259291, 48.8752570 2.3254427, 48.8741599 2.3254911, 48.8761914 2.3213046, 48.8760340 2.3235512, 48.8801220 2.3241052, 48.8831024 2.3264980, 48.8820671 2.3242802, 48.8832767 2.3277563, 48.8834770 2.3281748, 48.8837504 2.3286298, 48.8829277 2.3256156, 48.8831342 2.3236837, 48.8801215 2.3203120, 48.8799079 2.3202876, 48.8805205 2.3183206, 48.8558538 2.3252896, 48.8733445 2.3091989, 48.8745431 2.3093666, 48.8794607 2.3036933, 48.8724450 2.3072214, 48.8411207 2.2875779, 48.8707572 2.3085752, 48.8696331 2.3067786, 48.8715784 2.3063992, 48.8713131 2.3073190, 48.8713952 2.3012394, 48.8697736 2.3021852, 48.8669256 2.3076130, 48.8668818 2.3076173, 48.8672769 2.3062806, 48.8670111 2.3076126, 48.8671369 2.3028950, 48.8681586 2.3027800, 48.8660598 2.3017043, 48.8683182 2.2984850, 48.8651464 2.3005883, 48.8724390 2.3021296, 48.8790339 2.2985581, 48.8787934 2.2983905, 48.8775425 2.2981350, 48.8783508 2.3004239, 48.8778323 2.2987883, 48.8690865 2.3022434, 48.8694700 2.3034453, 48.8699522 2.3058242, 48.8799166 2.3359231, 48.8753587 2.3261663, 48.8796547 2.3374136, 48.8753796 2.2958946, 48.8511260 2.3460443, 48.8517830 2.3177917, 48.8425329 2.3202995, 48.8677570 2.3369680, 48.8658930 2.2979628, 48.8721649 2.2948681, 48.8678330 2.2903912, 48.8387533 2.3310982, 48.8395777 2.3302123, 48.8670044 2.2897764, 48.8637238 2.2872368, 48.8691923 2.2884450, 48.8730386 2.2928973, 48.8692540 2.2857812, 48.8664391 2.2859464, 48.8666202 2.2859162, 48.8741506 2.2926613, 48.8744699 2.2916401, 48.8748891 2.2837909, 48.8665016 2.2891682, 48.8766202 2.2833645, 48.8734052 2.2811173, 48.8702950 2.2830521, 48.8654332 2.2855483, 48.8652388 2.2832232, 48.8671985 2.2798899, 48.8700086 2.3302941, 48.8637574 2.2772598, 48.8707204 2.3239555, 48.8705451 2.3238330, 48.8706016 2.3238683, 48.8629342 2.2763103, 48.8632435 2.2744521, 48.8595315 2.2787013, 48.8396268 2.3145492, 48.8430176 2.3242123, 48.8410422 2.3148300, 48.8741142 2.3446221, 48.8762130 2.3456817, 48.8516854 2.3468389, 48.8776819 2.2846763, 48.8411418 2.3133493, 48.8575743 2.2745958, 48.8564304 2.2797283, 48.8546720 2.2831002, 48.8556834 2.2695115, 48.8406209 2.3131425, 48.8408995 2.3133856, 48.8377889 2.3112404, 48.8510948 2.2675935, 48.8485486 2.2609653, 48.8485892 2.2607508, 48.8495519 2.2685978, 48.8478164 2.2424927, 48.8483714 2.2664428, 48.8243361 2.3260774, 48.8235176 2.3258353, 48.8410150 2.3160260, 48.8482315 2.2642376, 48.8473334 2.2588597, 48.8454540 2.2578610, 48.8655911 2.3030514, 48.8626372 2.2404388, 48.8449412 2.2575407, 48.8452233 2.2577704, 48.8394586 2.2616545, 48.8403523 2.2652749, 48.8402456 2.2655127, 48.8407348 2.2646847, 48.8378544 2.2962158, 48.8672772 2.3368959, 48.8296616 2.3177920, 48.8283684 2.3161973, 48.8397098 2.2848132, 48.8412392 2.2879275, 48.8347149 2.3277467, 48.8354063 2.3258802, 48.8358672 2.3242187, 48.8355698 2.3250292, 48.8348588 2.3273891, 48.8350846 2.3267608, 48.8341036 2.3294199, 48.8324180 2.3247172, 48.8342294 2.3264332, 48.8795990 2.2908850, 48.8368961 2.3177487, 48.8367758 2.3180171, 48.8396082 2.3324972, 48.8764826 2.2833917, 48.8499857 2.3459367, 48.8642832 2.3420572, 48.8773156 2.2850715, 48.8773806 2.2848829, 48.8774160 2.2847302, 48.8533661 2.3445967, 48.8527336 2.3464352, 48.8526210 2.3463757, 48.8510655 2.3458688, 48.8414932 2.3132873, 48.8426877 2.3123128, 48.8425813 2.3133329, 48.8425225 2.3124389, 48.8773456 2.3157482, 48.8566502 2.3266740, 48.8696608 2.3393758, 48.8407751 2.3245796, 48.8431709 2.3416539, 48.8426788 2.3414503, 48.8463554 2.3405710, 48.8584177 2.3025456, 48.8569221 2.3035938, 48.8464241 2.2954995, 48.8602874 2.3097025, 48.8602217 2.3097138, 48.8530145 2.3117479, 48.8501505 2.3397562, 48.8859856 2.3190545, 48.8353460 2.2854410, 48.8462262 2.3142889, 48.8710024 2.3294337, 48.8577097 2.3005438, 48.8515887 2.3004692, 48.8568923 2.2921973, 48.8943819 2.3405045, 48.8752166 2.3329602, 48.8759120 2.3269790, 48.8830873 2.3292402, 48.8821024 2.3331994, 48.8785075 2.2845239, 48.8786662 2.2845930, 48.8809300 2.3404709, 48.8818258 2.3395224, 48.8765185 2.3448908, 48.8718967 2.3415625, 48.8853691 2.3353615, 48.8857113 2.3355174, 48.8855561 2.3353079, 48.8855279 2.3354474, 48.8479740 2.3007339, 48.8468451 2.3046139, 48.8475414 2.3012068, 48.8467540 2.3049111, 48.8482418 2.3105178, 48.8505805 2.3092017, 48.8517546 2.3104073, 48.8514424 2.3108980, 48.8517685 2.3133289, 48.8498367 2.3124580, 48.8517506 2.3131416, 48.8446026 2.3117965, 48.8828690 2.3183304, 48.8823081 2.3158735, 48.8825903 2.3165065, 48.8829889 2.3183223, 48.8829344 2.3176705, 48.8445056 2.3203943, 48.8446279 2.3203361, 48.8775262 2.2949459, 48.8754540 2.2867414, 48.8756436 2.2866256, 48.8438107 2.3152002, 48.8437516 2.3150319, 48.8890725 2.3179865, 48.8765188 2.3353132, 48.8767451 2.3353322, 48.8764727 2.3353018, 48.8764220 2.3352962, 48.8449195 2.3183472, 48.8453227 2.3190283, 48.8760923 2.3383718, 48.8745269 2.3383294, 48.8751689 2.3383360, 48.8766449 2.2886055, 48.8782254 2.2853949, 48.8777760 2.2847660, 48.8323092 2.3130666, 48.8480733 2.3112387, 48.8264546 2.3410881, 48.8564566 2.3025481, 48.8314493 2.3411256, 48.8380307 2.2817398, 48.8833475 2.2875083, 48.8453517 2.2976315, 48.8341870 2.3157058, 48.8452541 2.2717989, 48.8400603 2.2864594, 48.8437006 2.2963141, 48.8744843 2.3304643, 48.8449901 2.2972313, 48.8515963 2.3430149, 48.8492402 2.2880111, 48.8820903 2.2863199, 48.8720949 2.3323339, 48.8705731 2.3103284, 48.8351017 2.3201496, 48.8351935 2.3203079, 48.8218202 2.3423613, 48.8370059 2.2837291, 48.8365516 2.2821427, 48.8356895 2.2807712, 48.8354976 2.2815391, 48.8370362 2.2836115, 48.8776662 2.3398701, 48.8601399 2.2750024, 48.8764828 2.3370142, 48.8766560 2.3371844, 48.8385818 2.2889747, 48.8383246 2.2880446, 48.8381278 2.2872162, 48.8377112 2.2593212, 48.8662293 2.3379767, 48.8675784 2.2807278, 48.8667500 2.2803710, 48.8687850 2.3380000, 48.8703423 2.3428105, 48.8566013 2.3030438, 48.8447537 2.3186687, 48.8662137 2.3353607, 48.8660390 2.3352910, 48.8657884 2.3351488, 48.8719692 2.3361261, 48.8715773 2.3365388, 48.8714095 2.3355863, 48.8752025 2.3376055, 48.8751468 2.3355442, 48.8750364 2.3392304, 48.8766742 2.3373282, 48.8766460 2.3368602, 48.8769295 2.3383704, 48.8769349 2.3331592, 48.8767858 2.3369975, 48.8768072 2.3364970, 48.8758550 2.3388379, 48.8767868 2.3367967, 48.8767450 2.3377873, 48.8710277 2.3356624, 48.8708929 2.3349679, 48.8710045 2.3355038, 48.8716416 2.3409433, 48.8706911 2.3467398, 48.8716176 2.3411379, 48.8707327 2.3464923, 48.8714861 2.3419548, 48.8716074 2.3412011, 48.8750088 2.3393609, 48.8689508 2.3362959, 48.8667422 2.3365735, 48.8682398 2.3365168, 48.8696120 2.3356753, 48.8676561 2.3370904, 48.8675328 2.3370273, 48.8698393 2.3358297, 48.8708380 2.3349612, 48.8688219 2.3359090, 48.8688160 2.3362566, 48.8688035 2.3365534, 48.8666564 2.3369830, 48.8669153 2.3365074, 48.8702359 2.3349223, 48.8688150 2.3361103, 48.8676983 2.3366997, 48.8681903 2.3364995, 48.8678747 2.3364447, 48.8658609 2.3370619, 48.8641660 2.3361960, 48.8656996 2.3366338, 48.8651667 2.3364852, 48.8652254 2.3367395, 48.8703362 2.3315753, 48.8597079 2.3182507, 48.8666350 2.3099131, 48.8703978 2.3225405, 48.8702620 2.3312290, 48.8702706 2.3312786, 48.8706031 2.3221827, 48.8707016 2.3218346, 48.8549950 2.3458720, 48.8543860 2.3452440, 48.8538530 2.3437110, 48.8361075 2.3240698, 48.8616152 2.3446790, 48.8616509 2.3443800, 48.8373866 2.2787503, 48.8376849 2.2783476, 48.8370124 2.2782827, 48.8373420 2.2787571, 48.8584947 2.3265348, 48.8640655 2.3345802, 48.8936352 2.3221938, 48.8943476 2.3204974, 48.8248377 2.3236483, 48.8238612 2.3234793, 48.8243856 2.3234123, 48.8242408 2.3233372, 48.8280919 2.3264056, 48.8315850 2.3242790, 48.8521286 2.3374207, 48.8830455 2.3398008, 48.8485558 2.3279413, 48.8390548 2.2577341, 48.8388575 2.2576602, 48.8404902 2.2580804, 48.8908275 2.3460063, 48.8905461 2.3453913, 48.8851558 2.3360026, 48.8410271 2.2662469, 48.8945691 2.3441669, 48.8944316 2.3452559, 48.8936382 2.3429021, 48.8940560 2.3431940, 48.8941520 2.3429690, 48.8943730 2.3432450, 48.8951370 2.3433760, 48.8943990 2.3447720, 48.8942700 2.3458810, 48.8941300 2.3458060, 48.8928950 2.3433840, 48.8948510 2.3409210, 48.8300641 2.3145322, 48.8285724 2.3161086, 48.8931040 2.3440780, 48.8926550 2.3442290, 48.8937130 2.3451630, 48.8937300 2.3449020, 48.8731527 2.3385700, 48.8505156 2.3091488, 48.8664049 2.3413812, 48.8687508 2.3345042, 48.8692412 2.3299818, 48.8707775 2.3387098, 48.8689281 2.3302927, 48.8695802 2.3230555, 48.8664844 2.3389311, 48.8700770 2.3223918, 48.8675314 2.3020548, 48.8696595 2.3052249, 48.8662502 2.3285392, 48.8739879 2.3430920, 48.8442208 2.2944378, 48.8486566 2.2967202, 48.8419574 2.3290304, 48.8634808 2.3437738, 48.8718416 2.3144851, 48.8696738 2.3309961, 48.8725161 2.3281305, 48.8947860 2.3445300, 48.8724800 2.3404835, 48.8714038 2.3104401, 48.8715946 2.3262057, 48.8669510 2.3270370, 48.8706950 2.3313289, 48.8673862 2.2911822, 48.8679841 2.3255481, 48.8704636 2.3297136, 48.8680526 2.3287936, 48.8684086 2.3268250, 48.8662803 2.3394262, 48.8710959 2.3416366, 48.8699813 2.3246311, 48.8597088 2.3086607, 48.8529580 2.3375756, 48.8501520 2.3419436, 48.8687853 2.3250184, 48.8688647 2.2646951, 48.8635574 2.2602856, 48.8660415 2.3361004, 48.8349766 2.2830210, 48.8327742 2.2887456, 48.8939174 2.3431529, 48.8401572 2.3240577, 48.8864168 2.3442029, 48.8866377 2.3443434, 48.8294590 2.3017660, 48.8899236 2.3398500, 48.8865304 2.3443480, 48.8857166 2.3381509, 48.8274320 2.3314214, 48.8702183 2.2459747, 48.8690004 2.3384279, 48.8510173 2.2932405, 48.8509119 2.2937166, 48.8508690 2.2932272, 48.8485015 2.3421189, 48.8501669 2.3420537, 48.8455001 2.3427289, 48.8334129 2.3092754, 48.8434049 2.2987789, 48.8736424 2.3076398, 48.8433712 2.3246895, 48.8435643 2.3254572, 48.8828717 2.3288427, 48.8827606 2.3283572, 48.8402155 2.3458349, 48.8935918 2.3230817, 48.8489864 2.3403461, 48.8668318 2.2544028, 48.8934317 2.3232522, 48.8427645 2.2780599, 48.8865873 2.3128095, 48.8714714 2.3280397, 48.8867280 2.3409619, 48.8427006 2.2950967, 48.8412651 2.3237285, 48.8412198 2.3236119, 48.8423579 2.3222342, 48.8426136 2.3217510, 48.8425995 2.3220085, 48.8426424 2.3222812, 48.8421833 2.3220777, 48.8418212 2.3214760, 48.8211226 2.3412820, 48.8333002 2.3325229, 48.8928740 2.3287813, 48.8801808 2.3373122, 48.8777152 2.3320765, 48.8777130 2.3318740, 48.8720797 2.3405228, 48.8717651 2.3403142, 48.8710210 2.3469210, 48.8710522 2.3467304, 48.8829700 2.3205585, 48.8820557 2.3285353, 48.8801158 2.3291143, 48.8815002 2.3282628, 48.8742801 2.3357676, 48.8742391 2.3333145, 48.8742326 2.3334984, 48.8741848 2.3351560, 48.8743601 2.3329097, 48.8742439 2.3332327, 48.8742300 2.3335755, 48.8742269 2.3336382, 48.8728885 2.3451791, 48.8765391 2.3394762, 48.8762148 2.3400961, 48.8765114 2.3406889, 48.8766574 2.3401427, 48.8764750 2.3395753, 48.8766574 2.3405656, 48.8500694 2.2761219, 48.8498994 2.2724503, 48.8514931 2.2777343, 48.8512248 2.2780374, 48.8506071 2.2713372, 48.8240405 2.3250200, 48.8359510 2.3274377, 48.8337887 2.2902462, 48.8339105 2.2899243, 48.8332825 2.2894710, 48.8331362 2.2888144, 48.8680574 2.3417881, 48.8698783 2.3425685, 48.8691169 2.3422291, 48.8702023 2.3421494, 48.8351363 2.3445567, 48.8260954 2.3467344, 48.8872935 2.3361945, 48.8853856 2.3359893, 48.8873045 2.3360309, 48.8858892 2.3361945, 48.8857859 2.3452590, 48.8688487 2.2348654, 48.8896591 2.3426912, 48.8857760 2.3287243, 48.8850010 2.3295757, 48.8416788 2.3272221, 48.8880810 2.2979280, 48.8556751 2.3337849, 48.8974737 2.3312683, 48.8959871 2.3304855, 48.8872260 2.3324699, 48.8904006 2.3349160, 48.8905328 2.3349026, 48.8884483 2.3329205, 48.8875488 2.3327381, 48.8915716 2.3353225, 48.8953965 2.3375071, 48.8344267 2.2884194, 48.8338498 2.2894608, 48.8396619 2.3229538, 48.8879853 2.3396455, 48.8518599 2.3446879, 48.8526960 2.3467728, 48.8947585 2.3282626, 48.8959929 2.3286918, 48.8961868 2.3389271, 48.8347833 2.2887478, 48.8342967 2.2879777, 48.8341388 2.2878870, 48.8335658 2.2868046, 48.8354116 2.2892340, 48.8337101 2.2863906, 48.8825100 2.3378415, 48.8846868 2.3416679, 48.8843749 2.3411643, 48.8846003 2.3411844, 48.8720517 2.3351032, 48.8662620 2.3356061, 48.8670216 2.3359869, 48.8484873 2.3463043, 48.8507620 2.3449853, 48.8463607 2.3432591, 48.8308414 2.3123480, 48.8311654 2.3137963, 48.8781869 2.2884063, 48.8502006 2.2918459, 48.8501155 2.2920291, 48.8514439 2.3380763, 48.8656739 2.3463704, 48.8731487 2.3445761, 48.8530064 2.2754461, 48.8511636 2.2783753, 48.8526949 2.3089511, 48.8724637 2.2980607, 48.8707216 2.3006611, 48.8682088 2.3014586, 48.8729195 2.2988493, 48.8730465 2.2984497, 48.8541526 2.2759522, 48.8656555 2.2894172, 48.8652925 2.2891532, 48.8654719 2.2892837, 48.8283068 2.3264318, 48.8751640 2.3321790, 48.8348517 2.2891489, 48.8349806 2.2890202, 48.8848688 2.3069070, 48.8355850 2.3240208, 48.8364355 2.3230794, 48.8400356 2.3360672, 48.8395556 2.3365605, 48.8778735 2.2875843, 48.8705072 2.3019336, 48.8708689 2.3020289, 48.8697768 2.3036006, 48.8681112 2.3014721, 48.8704351 2.3043615, 48.8693740 2.3077196, 48.8360032 2.2916086, 48.8354526 2.2925379, 48.8360026 2.2919856, 48.8444056 2.3230253, 48.8398470 2.3238410, 48.8405177 2.3236190, 48.8777760 2.2877961, 48.8281574 2.3022904, 48.8944510 2.3440420, 48.8417263 2.3245973, 48.8419109 2.3245351, 48.8435173 2.3219294, 48.8416495 2.3246134, 48.8417952 2.3245691, 48.8419805 2.3245034, 48.8404349 2.3156482, 48.8429231 2.3260926, 48.8405515 2.3159715, 48.8427978 2.3210455, 48.8405038 2.3158186, 48.8415667 2.3196636, 48.8404090 2.3155450, 48.8408520 2.3154700, 48.8416910 2.3246067, 48.8410405 2.3217676, 48.8754701 2.2836788, 48.8753925 2.2852613, 48.8750872 2.2865005, 48.8756941 2.2862216, 48.8371723 2.3209043, 48.8727890 2.3429679, 48.8727157 2.3429899, 48.8450620 2.2639791, 48.8404449 2.3243133, 48.8393146 2.3237992, 48.8466620 2.2831751, 48.8465353 2.2834107, 48.8420648 2.2629254, 48.8231449 2.3164243, 48.8274421 2.3056058, 48.8272767 2.3063130, 48.8273081 2.3061699, 48.8851757 2.3075791, 48.8820348 2.3139529, 48.8719957 2.3430238, 48.8495349 2.2915103, 48.8494723 2.2914581, 48.8729655 2.3432485, 48.8720339 2.3432916, 48.8718024 2.3432812, 48.8193061 2.3373740, 48.8318467 2.3029070, 48.8767250 2.3307380, 48.8841484 2.3227392, 48.8840872 2.3230100, 48.8861392 2.3337047, 48.8275287 2.3149795, 48.8848153 2.3229754, 48.8733188 2.3446580, 48.8752221 2.3038262, 48.8405967 2.2643349, 48.8470601 2.2681655, 48.8467068 2.2996176, 48.8730540 2.3435221, 48.8852970 2.3163291, 48.8403098 2.3340328, 48.8341834 2.3261480, 48.8676507 2.3427272, 48.8211212 2.3425439, 48.8410733 2.2637691, 48.8409491 2.2637071, 48.8264077 2.3428246, 48.8266961 2.3392484, 48.8268524 2.3383549, 48.8279313 2.3307106, 48.8277088 2.3287499, 48.8277300 2.3277843, 48.8248691 2.3468871, 48.8250908 2.3464880, 48.8237982 2.3450583, 48.8230883 2.3447901, 48.8237048 2.3451996, 48.8219312 2.3422877, 48.8821571 2.3281764, 48.8213603 2.3347178, 48.8216356 2.3337458, 48.8233935 2.3258237, 48.8328265 2.3361398, 48.8334329 2.3320275, 48.8367785 2.2975889, 48.8353295 2.3023316, 48.8355400 2.3018828, 48.8536438 2.3402017, 48.8591372 2.3430272, 48.8250589 2.3163847, 48.8256612 2.3136542, 48.8262642 2.3127271, 48.8263278 2.3124589, 48.8269282 2.3097177, 48.8533715 2.3422551, 48.8372157 2.2784595, 48.8373662 2.2784119, 48.8374744 2.2783898, 48.8377489 2.2783295, 48.8378835 2.2783147, 48.8409791 2.2776487, 48.8415966 2.2775907, 48.8417106 2.2775691, 48.8430969 2.2772758, 48.8313589 2.2922508, 48.8312406 2.2923850, 48.8313819 2.2919236, 48.8318056 2.2909044, 48.8321693 2.2900809, 48.8333911 2.2872190, 48.8333311 2.2873692, 48.8334759 2.2870071, 48.8347594 2.2843303, 48.8344487 2.2844456, 48.8343110 2.2848131, 48.8350242 2.2828765, 48.8348954 2.2832036, 48.8309240 2.2930315, 48.8288796 2.2990421, 48.8316365 2.2921115, 48.8337223 2.2896712, 48.8437437 2.2775524, 48.8426810 2.2779896, 48.8426051 2.2779253, 48.8418037 2.2778904, 48.8416325 2.2779601, 48.8240750 2.3283368, 48.8235152 2.3304799, 48.8245642 2.3282644, 48.8250198 2.3200783, 48.8249015 2.3203760, 48.8372695 2.2771628, 48.8378574 2.2780721, 48.8377480 2.2779702, 48.8431209 2.2826573, 48.8424008 2.2820215, 48.8416776 2.2810225, 48.8490942 2.3396105, 48.8709254 2.3085765, 48.8662240 2.3388110, 48.8322843 2.3152081, 48.8563012 2.2797681, 48.8773588 2.2989656, 48.8774315 2.2986835, 48.8541163 2.3390471, 48.8426080 2.3301580, 48.8515332 2.3460413, 48.8516027 2.3460829, 48.8931060 2.3282113, 48.8487835 2.2875266, 48.8402141 2.2853650, 48.8445983 2.3417212, 48.8610209 2.3105163, 48.8610190 2.3113026, 48.8745880 2.3309443, 48.8746973 2.3308647, 48.8745893 2.3308470, 48.8454138 2.3449157, 48.8789100 2.2874734, 48.8419273 2.3255444, 48.8419458 2.3253394, 48.8420169 2.3254159, 48.8327810 2.3359512, 48.8563545 2.3025991, 48.8562747 2.3028390, 48.8920015 2.3179046, 48.8557667 2.3453212, 48.8456597 2.3425776, 48.8465513 2.2796735, 48.8946950 2.3193622, 48.8286016 2.3219064, 48.8530641 2.3387326, 48.8409358 2.3247136, 48.8642536 2.2721272, 48.8616662 2.3146849, 48.8849737 2.3369336, 48.8860248 2.3369308, 48.8902739 2.3358959, 48.8917305 2.3461501, 48.8906054 2.3436342, 48.8198771 2.3422222, 48.8591882 2.3451519, 48.8584285 2.3451526, 48.8515572 2.3384274, 48.8516756 2.3382308, 48.8438542 2.3424632, 48.8523071 2.3446538, 48.8523579 2.3447087, 48.8929579 2.3376602, 48.8788116 2.3448907, 48.8454616 2.2846288, 48.8566728 2.3031742, 48.8327372 2.3358964, 48.8326973 2.3358705, 48.8471599 2.2855769, 48.8459727 2.2850778, 48.8425193 2.3260648, 48.8710277 2.3356624, 48.8756169 2.3280376, 48.8394722 2.3232687, 48.8767035 2.3442886, 48.8761220 2.3317510, 48.8644516 2.3451744, 48.8665424 2.3444859, 48.8653520 2.3447568, 48.8818977 2.3455167, 48.8809875 2.3406458, 48.8809240 2.3404741, 48.8762503 2.3384716, 48.8444716 2.3118167, 48.8922563 2.3451633, 48.8520540 2.3392420, 48.8509886 2.3003532, 48.8318806 2.3042643, 48.8329686 2.3010817, 48.8319851 2.3034469, 48.8436153 2.2938569, 48.8374438 2.3009990, 48.8428377 2.2917440, 48.8367552 2.2993610, 48.8368605 2.3030920, 48.8386895 2.3004673, 48.8392782 2.3008123, 48.8431037 2.2954369, 48.8436199 2.2939852, 48.8758373 2.3459265, 48.8795087 2.3434753, 48.8369700 2.2985824, 48.8317774 2.3387153, 48.8750371 2.3453587, 48.8437191 2.2967019, 48.8763927 2.3443424, 48.8841247 2.3209960, 48.8832982 2.3234280, 48.8860152 2.3193197, 48.8490910 2.2871941, 48.8615352 2.3424505, 48.8515765 2.3436771, 48.8521735 2.3442731, 48.8520404 2.3443625, 48.8515776 2.3438599, 48.8520835 2.3444093, 48.8518887 2.3442140, 48.8524757 2.3445678, 48.8529435 2.3456985, 48.8528864 2.3462159, 48.8535544 2.2900587, 48.8533015 2.2903128, 48.8221288 2.3258121, 48.8529010 2.3458674, 48.8530967 2.3453771, 48.8528548 2.3460331, 48.8530912 2.3454025, 48.8529158 2.3458178, 48.8528801 2.3459362, 48.8530593 2.3452208, 48.8531271 2.3452514, 48.8530349 2.3453279, 48.8528985 2.3461598, 48.8531949 2.3450333, 48.8531460 2.3451752, 48.8528383 2.3461107, 48.8529227 2.3457849, 48.8531071 2.3449244, 48.8530259 2.3454331, 48.8531325 2.3389945, 48.8528398 2.3392414, 48.8534928 2.3391049, 48.8533652 2.2880737, 48.8491265 2.3038627, 48.8507385 2.3006549, 48.8506165 2.3004771, 48.8290807 2.3169825, 48.8676694 2.3433379, 48.8519408 2.2889178, 48.8531583 2.2878252, 48.8527669 2.3446610, 48.8521288 2.3444359, 48.8528975 2.3446411, 48.8527110 2.3446730, 48.8528195 2.3446512, 48.8529973 2.3446935, 48.8526334 2.3445601, 48.8501590 2.2937116, 48.8501190 2.2938779, 48.8540526 2.3381367, 48.8527451 2.2909129, 48.8917666 2.3218705, 48.8452783 2.3021757, 48.8482224 2.2951925, 48.8501040 2.2917529, 48.8478257 2.2897580, 48.8477463 2.2896869, 48.8459218 2.2883699, 48.8453388 2.2878488, 48.8350277 2.3205989, 48.8528174 2.3454656, 48.8524768 2.3451560, 48.8528047 2.3455506, 48.8524991 2.3448569, 48.8523811 2.3455175, 48.8523985 2.3454156, 48.8526936 2.3454400, 48.8518297 2.3444041, 48.8524942 2.3450079, 48.8525154 2.3452198, 48.8525300 2.3444340, 48.8524984 2.3449165, 48.8523948 2.3451403, 48.8526323 2.3452414, 48.8525589 2.3451535, 48.8523556 2.3455883, 48.8527431 2.3454930, 48.8525232 2.3451020, 48.8526255 2.3453560, 48.8524246 2.3449029, 48.8526532 2.3453925, 48.8527658 2.3454086, 48.8524155 2.3453426, 48.8527323 2.3453722, 48.8564012 2.2779632, 48.8829241 2.3432202, 48.8721796 2.3274785, 48.8715853 2.3272917, 48.8804973 2.2853562, 48.8827366 2.2912231, 48.8961469 2.3382720, 48.8667163 2.3367639, 48.8274032 2.3423677, 48.8339084 2.3226213, 48.8394410 2.3322130, 48.8910518 2.3314128, 48.8454569 2.3021602, 48.8479950 2.3233385, 48.8434408 2.2933619, 48.8534312 2.3389430, 48.8581170 2.3176186, 48.8316555 2.2928196, 48.8813835 2.3281151, 48.8826169 2.3296364, 48.8598677 2.3086797, 48.8347265 2.3446963, 48.8484552 2.3315803, 48.8502142 2.3307201, 48.8484725 2.2893525, 48.8606025 2.3457538, 48.8601414 2.3453350, 48.8903544 2.3289917, 48.8853124 2.3253739, 48.8803653 2.2993106, 48.8855401 2.2976447, 48.8702188 2.3108394, 48.8455223 2.3425685, 48.8536307 2.3312600, 48.8674112 2.3229787, 48.8704742 2.3237783, 48.8697219 2.3226142, 48.8433447 2.3026630, 48.8309698 2.3120278, 48.8741108 2.3436798, 48.8709398 2.3029345, 48.8321210 2.3246559, 48.8337101 2.3186360, 48.8319258 2.3247528, 48.8348341 2.3196255, 48.8725291 2.3001145, 48.8724675 2.3003188, 48.8666808 2.3456284, 48.8665292 2.3464186, 48.8665024 2.3465774, 48.8667552 2.3451020, 48.8667159 2.3453933, 48.8726851 2.3024789, 48.8737471 2.3451402, 48.8731623 2.3449978, 48.8725084 2.3448270, 48.8735309 2.3450913, 48.8555154 2.3007432, 48.8705878 2.3425842, 48.8605209 2.3023944, 48.8457271 2.2773879, 48.8680096 2.3435345, 48.8676664 2.3437165, 48.8679005 2.3435952, 48.8877980 2.2997590, 48.8811990 2.2897480, 48.8816790 2.2888680, 48.8817488 2.2888029, 48.8819610 2.2885470, 48.8814404 2.2894685, 48.8851028 2.2981721, 48.8848466 2.2963979, 48.8853809 2.2966584, 48.8845518 2.2979815, 48.8852175 2.2964748, 48.8834502 2.2938754, 48.8832548 2.2934886, 48.8822916 2.2913772, 48.8802886 2.2879403, 48.8358990 2.3466845, 48.8733986 2.3215098, 48.8845738 2.2910473, 48.8847627 2.2913861, 48.8813094 2.2861348, 48.8815854 2.2860365, 48.8822997 2.2865952, 48.8843811 2.2910193, 48.8837693 2.2907507, 48.8849514 2.2959483, 48.8850091 2.2954626, 48.8849348 2.2961330, 48.8845891 2.2945570, 48.8843134 2.2943799, 48.8848608 2.2951371, 48.8850188 2.2939952, 48.8852107 2.2935244, 48.8788664 2.2847106, 48.8740226 2.3337460, 48.8786554 2.2999384, 48.8762950 2.2890600, 48.8775890 2.2881553, 48.8619404 2.3145726, 48.8334394 2.3321755, 48.8484830 2.3465489, 48.8798757 2.2951878, 48.8796416 2.2949514, 48.8797688 2.2942800, 48.8799467 2.2942003, 48.8801083 2.2943052, 48.8805532 2.2934972, 48.8800771 2.2940804, 48.8815910 2.2925353, 48.8816270 2.2921775, 48.8841060 2.2909950, 48.8845760 2.2895318, 48.8826125 2.3011279, 48.8776740 2.2991918, 48.8776990 2.2990901, 48.8780258 2.2850956, 48.8846317 2.2893952, 48.8778621 2.2848987, 48.8802502 2.2957038, 48.8558979 2.3067417, 48.8498557 2.3451858, 48.8675021 2.3098437, 48.8885609 2.3172274, 48.8881694 2.3166376, 48.8883589 2.3169789, 48.8335872 2.2986473, 48.8875090 2.2976290, 48.8871630 2.2970010, 48.8514668 2.3336573, 48.8876760 2.2983980, 48.8863430 2.2961140, 48.8859640 2.2915440, 48.8871530 2.2947410, 48.8853110 2.2955510, 48.8853440 2.2952310, 48.8850320 2.2952390, 48.8850780 2.2950060, 48.8840610 2.2937810, 48.8851190 2.2924220, 48.8852040 2.2920140, 48.8678227 2.3369768, 48.8809990 2.2857060, 48.8814470 2.2951720, 48.8856370 2.2977760, 48.8849010 2.2988890, 48.8538600 2.3320680, 48.8845430 2.2986640, 48.8846290 2.2984300, 48.8842560 2.2973050, 48.8842580 2.2968350, 48.8749003 2.3428357, 48.8423637 2.3259492, 48.8267542 2.3240551, 48.8771460 2.2924640, 48.8769040 2.2919650, 48.8771270 2.2920750, 48.8772510 2.2920010, 48.8774500 2.2920680, 48.8774750 2.2918560, 48.8776900 2.2917270, 48.8777680 2.2918880, 48.8779330 2.2915640, 48.8786180 2.2913310, 48.8798280 2.2917160, 48.8813710 2.2894860, 48.8347921 2.2897514, 48.8351951 2.2896751, 48.8747214 2.3415841, 48.8705943 2.3429365, 48.8746840 2.3416410, 48.8699102 2.3115070, 48.8690272 2.3251599, 48.8700437 2.3257977, 48.8702250 2.3258823, 48.8408366 2.3037928, 48.8840040 2.2933540, 48.8796560 2.2864960, 48.8323064 2.3247729, 48.8804350 2.2856120, 48.8804320 2.2856580, 48.8804050 2.2857730, 48.8806940 2.2861620, 48.8805790 2.2866490, 48.8799990 2.2875200, 48.8797930 2.2884240, 48.8797640 2.2885180, 48.8769049 2.3270113, 48.8454864 2.3196693, 48.8768180 2.3270140, 48.8770340 2.3271360, 48.8767510 2.3273100, 48.8766230 2.3273770, 48.8522732 2.3263458, 48.8520072 2.3255283, 48.8726661 2.3021404, 48.8727090 2.3021938, 48.8724355 2.3017645, 48.8695340 2.3049808, 48.8687825 2.3043355, 48.8473882 2.3059953, 48.8338061 2.3177640, 48.8412345 2.3039106, 48.8879180 2.3067900, 48.8880960 2.3065700, 48.8882020 2.3064360, 48.8882250 2.3064120, 48.8887260 2.3057200, 48.8883220 2.3062270, 48.8889330 2.3054700, 48.8889870 2.3053980, 48.8884000 2.2999400, 48.8799736 2.2892538, 48.8751250 2.2934560, 48.8752420 2.2940700, 48.8753410 2.2939710, 48.8550250 2.3290640, 48.8335611 2.3308711, 48.8770440 2.2917940, 48.8769630 2.2916430, 48.8767720 2.2915790, 48.8777980 2.2906200, 48.8792110 2.2907480, 48.8618088 2.2825036, 48.8613662 2.2830289, 48.8613148 2.2830943, 48.8652864 2.2854968, 48.8653444 2.2836290, 48.8478589 2.3407967, 48.8336470 2.3315763, 48.8335273 2.3314999, 48.8758620 2.2937570, 48.8362062 2.3237133, 48.8349296 2.3296602, 48.8484295 2.3424166, 48.8446809 2.3466783, 48.8645257 2.2825794, 48.8336698 2.3296041, 48.8337502 2.3300015, 48.8659302 2.2858805, 48.8657556 2.2858886, 48.8813580 2.2854140, 48.8603776 2.3434700, 48.8765910 2.3232000, 48.8747470 2.3159270, 48.8359839 2.2844143, 48.8810780 2.3126420, 48.8300301 2.3296176, 48.8337668 2.3278330, 48.8354148 2.3235123, 48.8775700 2.2877800, 48.8529290 2.3314950, 48.8498887 2.3433647, 48.8519361 2.2987977, 48.8777223 2.3322319, 48.8407193 2.3049672, 48.8418070 2.3034131, 48.8546868 2.2950925, 48.8545526 2.2952974, 48.8406718 2.3048275, 48.8409660 2.3058020, 48.8445280 2.3226454, 48.8445064 2.3227126, 48.8445876 2.3224605, 48.8443285 2.3232584, 48.8446976 2.3221192, 48.8446671 2.3222139, 48.8589178 2.3234187, 48.8589724 2.3234632, 48.8588292 2.3233490, 48.8864670 2.3115680, 48.8466756 2.3050730, 48.8466342 2.3052128, 48.8799610 2.3291770, 48.8848937 2.3405138, 48.8842803 2.3395848, 48.8846433 2.3402443, 48.8675053 2.3352170, 48.8506291 2.3395396, 48.8537312 2.3325450, 48.8842800 2.3047290, 48.8834170 2.3045710, 48.8820840 2.3044120, 48.8470633 2.3037370, 48.8449521 2.3058381, 48.8473348 2.3028088, 48.8826325 2.3446975, 48.8671652 2.3360497, 48.8672298 2.3360756, 48.8804060 2.3026459, 48.8803576 2.3030073, 48.8808754 2.3021137, 48.8808069 2.3021832, 48.8592799 2.2849225, 48.8623163 2.3093585, 48.8400915 2.3026528, 48.8473631 2.2860341, 48.8734806 2.3430215, 48.8708629 2.3427230, 48.8707564 2.3426660, 48.8836015 2.3202065, 48.8795130 2.3360991, 48.8322089 2.3384309, 48.8340751 2.3295497, 48.8292209 2.3194742, 48.8342025 2.3183393, 48.8325523 2.3205074, 48.8327672 2.3201392, 48.8311012 2.3195882, 48.8320470 2.3201850, 48.8826800 2.2865110, 48.8361138 2.2912062, 48.8372803 2.2893133, 48.8502351 2.3456241, 48.8864590 2.3404788, 48.8527246 2.3060632, 48.8846800 2.3291860, 48.8819840 2.3187180, 48.8819360 2.3185630, 48.8816120 2.3160090, 48.8822902 2.3395019, 48.8310513 2.3195553, 48.8325941 2.3183175, 48.8543921 2.3426853, 48.8628419 2.3413590, 48.8627761 2.3414067, 48.8753498 2.3460798, 48.8752300 2.3455656, 48.8588998 2.2853182, 48.8659100 2.3367259, 48.8324657 2.3375075, 48.8439086 2.2933248, 48.8522889 2.3461766, 48.8522996 2.3459479, 48.8920550 2.3461008, 48.8786060 2.2895840, 48.8785190 2.2893290, 48.8649741 2.3359158, 48.8752070 2.3041468, 48.8328552 2.3251354, 48.8581328 2.2944968, 48.8556111 2.3402066, 48.8477523 2.3131717, 48.8476019 2.3124307, 48.8768192 2.2635389, 48.8442862 2.3237918, 48.8443083 2.3239728, 48.8703223 2.3421103, 48.8728746 2.3289534, 48.8721670 2.3253311, 48.8721199 2.3255281, 48.8467371 2.3102329, 48.8744634 2.3207611, 48.8434953 2.2942123, 48.8436406 2.2945169, 48.8436647 2.2952514, 48.8436712 2.2953928, 48.8517123 2.3431217, 48.8425000 2.3216700, 48.8722123 2.3397120, 48.8369503 2.2962225, 48.8414376 2.3081178, 48.8423140 2.3102450, 48.8425076 2.3118940, 48.8365104 2.3100891, 48.8341782 2.3066372, 48.8354947 2.3020460, 48.8599164 2.3463862, 48.8490626 2.3191414, 48.8501266 2.3186024, 48.8501791 2.3187017, 48.8534957 2.3378664, 48.8465511 2.3138238, 48.8689558 2.3348921, 48.8759088 2.3029263, 48.8321324 2.3033719, 48.8615808 2.3421921, 48.8741075 2.3445446, 48.8831840 2.2988520, 48.8822700 2.2945370, 48.8822490 2.2942850, 48.8821450 2.2944460, 48.8628461 2.3362666, 48.8378987 2.3453148, 48.8440903 2.3080654, 48.8780160 2.2938546, 48.8809048 2.3467209, 48.8708703 2.3415985, 48.8705728 2.3415832, 48.8711859 2.3417171, 48.8709869 2.3416777, 48.8654352 2.3322141, 48.8819434 2.2862186, 48.8867423 2.3407873, 48.8867012 2.3411084, 48.8869741 2.3412346, 48.8985255 2.3366795, 48.8390877 2.3229490, 48.8391641 2.3230105, 48.8338390 2.3310374, 48.8338958 2.3308830, 48.8486709 2.3406612, 48.8487278 2.3406336, 48.8364049 2.3226710, 48.8793470 2.2919940, 48.8912532 2.3385474, 48.8901853 2.3390405, 48.8664155 2.3287146, 48.8475558 2.3229755, 48.8328233 2.3148509, 48.8371692 2.2604023, 48.8376247 2.2580288, 48.8376766 2.2578767, 48.8598965 2.3075931, 48.8416157 2.3241646, 48.8357881 2.3244751, 48.8314315 2.3294141, 48.8459453 2.3434253, 48.8455190 2.3446763, 48.8736845 2.3221625, 48.8395961 2.3095374, 48.8387816 2.3087465, 48.8391602 2.3093568, 48.8389373 2.3091572, 48.8394382 2.3093976, 48.8392571 2.3092329, 48.8392441 2.3094339, 48.8780639 2.3154492, 48.8421556 2.3297775, 48.8412506 2.3295393, 48.8416571 2.3270780, 48.8421577 2.3302112, 48.8416283 2.3300199, 48.8425340 2.3286959, 48.8420879 2.3286451, 48.8917251 2.3440010, 48.8925185 2.3433234, 48.8821120 2.3316747, 48.8831858 2.3320915, 48.8567275 2.3315486, 48.8709238 2.2962068, 48.8823658 2.3242140, 48.8822955 2.3242327, 48.8825559 2.3241735, 48.8526537 2.3469166, 48.8523803 2.3462357, 48.8517469 2.3467656, 48.8516515 2.3468745, 48.8517944 2.3467249, 48.8516192 2.3469206, 48.8535002 2.3401314, 48.8536168 2.3389809, 48.8533371 2.3410727, 48.8532818 2.3422887, 48.8533115 2.3417776, 48.8431656 2.3215298, 48.8429562 2.3212651, 48.8430265 2.3213483, 48.8433339 2.3217349, 48.8431258 2.3214748, 48.8433095 2.3217058, 48.8440092 2.3200413, 48.8432967 2.3202953, 48.8338004 2.3298620, 48.8723418 2.3016272, 48.8957481 2.3231945, 48.8315467 2.3138335, 48.8908910 2.3395767, 48.8409750 2.2622928, 48.8398339 2.2616480, 48.8417746 2.2589201, 48.8873512 2.3371414, 48.8630199 2.3130597, 48.8791133 2.3432693, 48.8853175 2.3257002, 48.8553063 2.2929430, 48.8407506 2.2646900, 48.8593762 2.3403098, 48.8637301 2.2855982, 48.8611097 2.3450773, 48.8591476 2.3413321, 48.8608076 2.3445073, 48.8773290 2.2928113, 48.8628035 2.3401495, 48.8300313 2.3294841, 48.8589427 2.3464330, 48.8603236 2.3412799, 48.8604378 2.3417437, 48.8402927 2.3220815, 48.8395328 2.3223837, 48.8865655 2.3262035, 48.8861609 2.3263857, 48.8440391 2.2817247, 48.8846688 2.3270692, 48.8764580 2.3419193, 48.8766024 2.3419539, 48.8376807 2.3193494, 48.8343790 2.3452750, 48.8390760 2.3396870, 48.8423170 2.3292890, 48.8786180 2.2996990, 48.8781291 2.2993229, 48.8781055 2.2991925, 48.8780418 2.2989552, 48.8479497 2.3423497, 48.8381888 2.3042257, 48.8732076 2.3095057, 48.8724822 2.3121983, 48.8712639 2.3170765, 48.8739607 2.3084406, 48.8715844 2.3184256, 48.8701210 2.3343104, 48.8751557 2.3012743, 48.8751135 2.3069162, 48.8740015 2.3077396, 48.8710823 2.3168960, 48.8542844 2.3069658, 48.8759453 2.3445955, 48.8749633 2.3400064, 48.8461703 2.3431295, 48.8837644 2.3214224, 48.8838310 2.3216888, 48.8837360 2.3212646, 48.8841971 2.3215837, 48.8850476 2.3250531, 48.8846112 2.3245897, 48.8841497 2.3232965, 48.8840070 2.3226361, 48.8852143 2.3252963, 48.8877657 2.3344311, 48.8299612 2.3310985, 48.8408808 2.3244034, 48.8400924 2.3237108, 48.8393869 2.3231702, 48.8403081 2.3242278, 48.8406615 2.3245098, 48.8404594 2.3240309, 48.8395438 2.3233136, 48.8409574 2.3244561, 48.8399097 2.3239054, 48.8389227 2.3228126, 48.8424526 2.3235103, 48.8434981 2.3075930, 48.8454218 2.3443032, 48.8471091 2.3427342, 48.8329372 2.3326610, 48.8676067 2.3319418, 48.8658657 2.3436098, 48.8733893 2.3204120, 48.8743054 2.3188358, 48.8738866 2.3193920, 48.8737427 2.3200575, 48.8663397 2.3254419, 48.8642781 2.3403451, 48.8607050 2.3456030, 48.8510925 2.3451163, 48.8693183 2.3219957, 48.8690995 2.3384634, 48.8588343 2.3460244, 48.8586892 2.3462092, 48.8583433 2.3457410, 48.8582854 2.3457116, 48.8580663 2.3458343, 48.8580112 2.3460493, 48.8587212 2.3462247, 48.8589271 2.3464408, 48.8582612 2.3447141, 48.8455984 2.2883019, 48.8453614 2.2889968, 48.8450738 2.2896645, 48.8450085 2.2893909, 48.8810529 2.3440743, 48.8701197 2.3462588, 48.8868368 2.3381841, 48.8852330 2.2931970, 48.8327687 2.3208864, 48.8903485 2.3329893, 48.8889248 2.3343299, 48.8958765 2.3432915, 48.8473769 2.2988656, 48.8370135 2.2619135, 48.8736890 2.3449321, 48.8920506 2.3224169, 48.8800932 2.3203737, 48.8800738 2.3204381, 48.8550985 2.2950194, 48.8544715 2.2949225, 48.8551112 2.2944545, 48.8561978 2.2933321, 48.8770473 2.2948379, 48.8764561 2.2942937, 48.8294636 2.3226190, 48.8852904 2.3348276, 48.8851823 2.3346822, 48.8851823 2.3346822, 48.8600274 2.3466734, 48.8600742 2.3466402, 48.8733106 2.3433422, 48.8735611 2.3437543, 48.8734527 2.3436472, 48.8683806 2.3433504, 48.8751609 2.3444855, 48.8750074 2.3444806, 48.8896650 2.3424480, 48.8303091 2.3336374, 48.8332821 2.3158571, 48.8317988 2.3146939, 48.8583332 2.3023009, 48.8583373 2.3023739, 48.8833822 2.3256632, 48.8826084 2.3240414, 48.8835815 2.3265373, 48.8824805 2.3211770, 48.8828636 2.3231025, 48.8834259 2.3258829, 48.8600151 2.3100847, 48.8467826 2.3409996, 48.8467457 2.3410229, 48.8564670 2.3064503, 48.8839199 2.3413796, 48.8808370 2.3417368, 48.8836545 2.3395453, 48.8843804 2.3398419, 48.8843202 2.3398406, 48.8843804 2.3398419, 48.8843202 2.3398406, 48.8844765 2.3412725, 48.8760837 2.3277635, 48.8289715 2.3074959, 48.8314561 2.3292848, 48.8314561 2.3292848, 48.8429759 2.3300912, 48.8461537 2.3193328, 48.8463990 2.3190925, 48.8320253 2.3443178, 48.8325489 2.3467144, 48.8915804 2.3366290, 48.8916215 2.3361250, 48.8915952 2.3364661, 48.8532066 2.3427171, 48.8743051 2.3046273, 48.8730285 2.3001685, 48.8726150 2.3085132, 48.8739741 2.3435358, 48.8906307 2.3455734, 48.8688333 2.3457733, 48.8703284 2.3420423, 48.8703606 2.3464059, 48.8710872 2.3444600, 48.8699249 2.3402179, 48.8594125 2.3293427, 48.8292677 2.3193582, 48.8407230 2.2660512, 48.8756987 2.3403004, 48.8751025 2.3398511, 48.8735750 2.2981472, 48.8719260 2.3102630, 48.8640928 2.3321663, 48.8427363 2.3286605, 48.8614893 2.3447073, 48.8616006 2.3440663, 48.8306596 2.3335092, 48.8300416 2.3298058, 48.8756834 2.3414330, 48.8728409 2.3024068, 48.8739875 2.3072098, 48.8743483 2.3066355, 48.8586241 2.3268636, 48.8586513 2.3287866, 48.8776751 2.3384166, 48.8677333 2.3439283, 48.8676351 2.3439727, 48.8675989 2.3439920, 48.8675084 2.3440305, 48.8788275 2.3271308, 48.8822137 2.3290906, 48.8683026 2.3256832, 48.8685365 2.3254094, 48.8684636 2.3254367, 48.8684095 2.3254570, 48.8749931 2.3353018, 48.8732975 2.3352479, 48.8389777 2.2554512, 48.8837299 2.3429552, 48.8835817 2.3417847, 48.8836005 2.3422276, 48.8831290 2.3419110, 48.8410868 2.3302507, 48.8838716 2.3395954, 48.8838138 2.3391313, 48.8514176 2.2922548, 48.8496523 2.2952955, 48.8496214 2.2953917, 48.8493913 2.2976509, 48.8476194 2.2968225, 48.8528242 2.3430244, 48.8524241 2.3429917, 48.8528802 2.3428782, 48.8526538 2.3430082, 48.8326934 2.2940585, 48.8440899 2.2842544, 48.8438178 2.2832533, 48.8428218 2.2844370, 48.8427637 2.2845666, 48.8426549 2.2848175, 48.8425369 2.2850575, 48.8421541 2.2939753, 48.8885956 2.3203806, 48.8867468 2.3131227, 48.8870770 2.3135815, 48.8866403 2.3132708, 48.8870378 2.3126519, 48.8701365 2.3192081, 48.8746689 2.3319421, 48.8432683 2.3065957, 48.8430309 2.3065562, 48.8461870 2.3049257, 48.8462738 2.3052530, 48.8441621 2.3083292, 48.8469667 2.3032763, 48.8697633 2.3312541, 48.8711019 2.3282297, 48.8715670 2.3280513, 48.8716018 2.3280558, 48.8717901 2.3283005, 48.8720480 2.3282979, 48.8724179 2.3281232, 48.8722134 2.3283316, 48.8725187 2.3283618, 48.8681835 2.2918929, 48.8704052 2.3401387, 48.8823803 2.3237133, 48.8917605 2.3184916, 48.8726656 2.3088507, 48.8739620 2.3041170, 48.8738688 2.3066476, 48.8722902 2.3086741, 48.8744341 2.3076435, 48.8745401 2.3078099, 48.8714166 2.3075089, 48.8727444 2.3045542, 48.8738162 2.3065277, 48.8720459 2.3036661, 48.8734431 2.3062042, 48.8734448 2.3058325, 48.8724582 2.3096142, 48.8852247 2.3255576, 48.8763184 2.2940958, 48.8331438 2.3284598, 48.8793711 2.3210941, 48.8721443 2.3462235, 48.8721613 2.3028433, 48.8720253 2.3030206, 48.8724278 2.3039382, 48.8655564 2.2952522, 48.8656506 2.2954099, 48.8657276 2.2955289, 48.8668404 2.2971101, 48.8670692 2.2973577, 48.8673236 2.2976240, 48.8689888 2.2994117, 48.8735380 2.3345217, 48.8733336 2.3346541, 48.8733567 2.3347461, 48.8734176 2.3350103, 48.8885365 2.3205147, 48.8880289 2.3210515, 48.8903550 2.3174553, 48.8842558 2.3262816, 48.8842475 2.3261013, 48.8844969 2.3258681, 48.8881282 2.3212093, 48.8413749 2.2846430, 48.8308824 2.3308541, 48.8806070 2.3350450, 48.8933379 2.3233875, 48.8938069 2.3230035, 48.8942068 2.3204728, 48.8941679 2.3210305, 48.8475894 2.2658939, 48.8477552 2.2658174, 48.8446015 2.3186457, 48.8875927 2.3180689, 48.8766269 2.3409528, 48.8950535 2.3171038, 48.8952880 2.3170086, 48.8791086 2.3296385, 48.8790090 2.3291588, 48.8789990 2.3290598, 48.8790193 2.3292541, 48.8791268 2.3149988, 48.8789853 2.3151835, 48.8538669 2.3274765, 48.8910894 2.3310974, 48.8398426 2.2664677, 48.8645971 2.3405666, 48.8515538 2.3446273, 48.8449203 2.3214165, 48.8451259 2.3208317, 48.8471240 2.2951446, 48.8501612 2.2853693, 48.8462784 2.3181382, 48.8487428 2.2829149, 48.8499527 2.2857379, 48.8500531 2.2855627, 48.8862647 2.3364796, 48.8607088 2.3436325, 48.8609318 2.3437651, 48.8815563 2.3466326, 48.8435883 2.2981394, 48.8432976 2.3005724, 48.8495232 2.2827594, 48.8461008 2.2790972, 48.8460759 2.2786183, 48.8418253 2.3235858, 48.8483086 2.2872193, 48.8946703 2.3460196, 48.8976169 2.3439977, 48.8527860 2.3433192, 48.8416188 2.2808890, 48.8529099 2.2868719, 48.8621731 2.3396914, 48.8675585 2.3352443, 48.8679678 2.3355626, 48.8678404 2.3435108, 48.8666855 2.3458176, 48.8667840 2.3448980, 48.8540956 2.3386733, 48.8507237 2.3305867, 48.8692220 2.3131336, 48.8679417 2.3153003, 48.8763983 2.3025071, 48.8718575 2.3096862, 48.8745552 2.3434968, 48.8791560 2.3349351, 48.8786912 2.3329642, 48.8983371 2.3447751, 48.8464207 2.3056421, 48.8929571 2.3377419, 48.8644817 2.2886280, 48.8222354 2.3405407, 48.8430967 2.3047973, 48.8417016 2.3220312, 48.8750787 2.2865522, 48.8761844 2.2731721, 48.8769614 2.2666348, 48.8787683 2.2627725, 48.8639756 2.2506990, 48.8775380 2.2845027, 48.8783349 2.2845148, 48.8478409 2.2644706, 48.8660959 2.3165080, 48.8451240 2.3151945, 48.8853349 2.3222678, 48.8632940 2.3461861, 48.8279032 2.3155377, 48.8787317 2.3451434, 48.8648781 2.3453619, 48.8654581 2.3447052, 48.8527947 2.3434202, 48.8311227 2.3287719, 48.8772523 2.3138827, 48.8813196 2.2935688, 48.8421950 2.3453702, 48.8782894 2.3331903, 48.8584113 2.2942650, 48.8886275 2.3399810, 48.8759552 2.3241977, 48.8761087 2.3254243, 48.8480855 2.2788555, 48.8244117 2.3278513, 48.8387965 2.3219353, 48.8390322 2.3210621, 48.8664194 2.3321315, 48.8407259 2.3221523 +yes +49.4194799 8.7033812, 49.4258222 8.7062319, 49.4289782 8.7145993, 49.4299579 8.7185898, 49.3551484 8.6336513, 49.4270542 8.7105990, 49.4184666 8.7052069, 49.4245168 8.7056416, 49.4235710 8.7025718, 49.4242799 8.7072520, 49.4224817 8.7024542, 49.4229479 8.7068545, 49.4193290 8.7035781, 49.4221380 8.7051571, 49.4263381 8.7055314, 49.4188706 8.7007961, 49.4276600 8.7101416, 49.4243184 8.7025688, 49.4189138 8.7068425, 49.4254814 8.7024102, 49.4213140 8.7019771, 49.4268509 8.7026924, 49.4254256 8.7051858, 49.4195009 8.7025277, 49.4201952 8.7010712, 49.4208217 8.7059731, 49.4233178 8.7053934, 49.4276906 8.7058352, 49.4238991 8.7095045, 49.4206459 8.7039110, 49.4265814 8.7086544, 49.4256259 8.7093622, 49.4257275 8.7070484, 49.4179403 8.7025717, 49.4207145 8.7089359, 49.4222472 8.7095805, 49.4248984 8.7025175 +Greyfriars Bobby's Grave, Memorial to Archibald Constable, Tombstone of David Allan, Vault of Dr Robert Candlish & James Candlish, Vault of Robert Burn, Vault of William Blackwood, Grave of John Knox and en:John Knox, Mausoleum of David Hume +1 +9 +55.9370396 -3.1787450, 55.9414545 -3.1720821, 55.9432488 -3.1817167, 55.9257558 -3.1931041, 55.9427753 -3.2095327, 55.9399781 -3.1828303, 55.9449849 -3.2070428, 55.9348007 -3.1789256, 55.9349346 -3.1790559, 55.9622881 -3.1707646, 55.9630455 -3.1835492, 55.9567935 -3.2430161, 55.9021084 -3.2216506, 55.9022196 -3.2209447, 55.9077375 -3.2604776, 55.9180753 -3.2699896, 55.9181751 -3.2737253, 55.9227143 -3.2873995, 55.9232575 -3.2877434, 55.9220870 -3.2792486, 55.9406104 -3.2945168, 55.9407533 -3.2932091, 55.9248270 -3.2482652, 55.9419785 -3.1485445, 55.9697725 -3.2317281, 55.9561550 -3.2435210, 55.9506326 -3.2083291, 55.9268574 -3.2089248, 55.9399419 -3.2040169, 55.9286688 -3.2097008, 55.9384391 -3.1976620, 55.9428550 -3.2038823, 55.9436439 -3.2038984, 55.9456121 -3.2057602, 55.9475295 -3.2065018, 55.9464624 -3.2060578, 55.9180713 -3.2162143, 55.9469750 -3.2823851, 55.9752131 -3.2377092, 55.9412502 -3.2182349, 55.9536643 -3.1901767, 55.9721209 -3.2298890, 55.9725068 -3.2186854, 55.9714321 -3.2145097, 55.9750450 -3.2156144, 55.9423554 -3.2011712, 55.9579671 -3.2416031, 55.9605521 -3.2145819, 55.9788657 -3.2164686, 55.9805715 -3.2239822, 55.9748673 -3.2157799, 55.9709381 -3.2084981, 55.9708637 -3.2084282, 55.9710757 -3.2083893, 55.9713224 -3.2074276, 55.9720628 -3.2023926, 55.9584008 -3.2092092, 55.9583145 -3.2090917, 55.9583533 -3.2082826, 55.9599202 -3.2058111, 55.9625886 -3.2112449, 55.9611686 -3.2084707, 55.9692647 -3.2701308, 55.9723825 -3.2717913, 55.9781491 -3.1930844, 55.9776042 -3.1973712, 55.9745096 -3.2095961, 55.9744068 -3.2096484, 55.9373031 -3.2494985, 55.9339171 -3.2137397, 55.9332730 -3.2167375, 55.9593096 -3.2186115, 55.9347683 -3.2219725, 55.9354958 -3.2269302, 55.9353098 -3.2267078, 55.9603138 -3.2576811, 55.9601757 -3.2559248, 55.9602463 -3.2561123, 55.9618697 -3.2638458, 55.9650659 -3.2695228, 55.9335740 -3.2140903, 55.9312309 -3.2523089, 55.9313511 -3.2524977, 55.9658660 -3.2741484, 55.9655574 -3.2737818, 55.9094475 -3.2331028, 55.9164464 -3.2255329, 55.9166163 -3.2225162, 55.9666338 -3.2511512, 55.9670315 -3.2477797, 55.9685007 -3.2487746, 55.9673162 -3.2494453, 55.9735787 -3.2512113, 55.9702624 -3.2503620, 55.9512526 -3.2161365, 55.9486010 -3.2236841, 55.9494426 -3.2166063, 55.9482651 -3.2171420, 55.9631351 -3.1914610, 55.9591074 -3.1908331, 55.9452751 -3.1844506, 55.9602556 -3.2380057, 55.9579565 -3.2439627, 55.9569762 -3.2432682, 55.9701877 -3.2307841, 55.9461347 -3.1884249, 55.9452785 -3.1910772, 55.9432977 -3.1864231, 55.9359281 -3.1875240, 55.9364668 -3.1651525, 55.9364810 -3.1700070, 55.9324348 -3.1563455, 55.9399085 -3.1711268, 55.9335174 -3.1614428, 55.9349176 -3.1600569, 55.9513129 -3.2052029, 55.9514512 -3.2053004, 55.9515016 -3.2049952, 55.9515296 -3.2039328, 55.9516706 -3.2039712, 55.9515783 -3.2036294, 55.9517885 -3.2022759, 55.9520416 -3.2017312, 55.9522826 -3.1993756, 55.9525442 -3.1989321, 55.9526722 -3.1981185, 55.9529632 -3.1964321, 55.9474486 -3.1859655, 55.9516586 -3.1968492, 55.9547783 -3.1976132, 55.9512066 -3.1850870, 55.9407230 -3.2810409, 55.9247094 -3.2095413, 55.9203574 -3.2123548, 55.9265866 -3.2039995, 55.9312281 -3.2000607, 55.9458717 -3.2095172, 55.9301451 -3.2056308, 55.9377907 -3.2060971, 55.9406318 -3.2038250, 55.9318987 -3.2098845, 55.9191421 -3.2209703, 55.9460031 -3.2110371, 55.9337210 -3.2007781, 55.9356258 -3.2013792, 55.9384127 -3.1976645, 55.9538040 -3.1905018, 55.9589777 -3.1971201, 55.9509639 -3.1815835, 55.9497063 -3.1833447, 55.9497528 -3.1798460, 55.9516637 -3.1783365, 55.9511924 -3.1760524, 55.9388546 -3.2286992, 55.9435848 -3.2191643, 55.9374270 -3.2345667, 55.9436260 -3.2320771, 55.9402677 -3.1760251, 55.9433280 -3.2852559, 55.9429636 -3.2899680, 55.9423831 -3.1450493, 55.9243150 -3.1675957, 55.9418747 -3.2730577, 55.9459241 -3.1820458, 55.9469320 -3.1819210, 55.9426468 -3.2800495, 55.9426657 -3.2801929, 55.9427262 -3.2804658, 55.9428460 -3.2818012, 55.9570161 -3.1870662, 55.9562622 -3.1859008, 55.9073786 -3.2585910, 55.9537826 -3.1827355, 55.9380641 -3.1929287, 55.9265024 -3.2095223, 55.9278329 -3.2094469, 55.9479184 -3.1866886, 55.9195362 -3.2408105, 55.9567725 -3.2185204, 55.9334167 -3.2296190, 55.9511783 -3.2192242, 55.9111428 -3.2387431, 55.9427311 -3.1824789, 55.9572178 -3.2068191, 55.9563941 -3.2111307, 55.9555277 -3.2092895, 55.9552324 -3.2130998, 55.9552081 -3.2164889, 55.9553747 -3.2203225, 55.9539137 -3.1943532, 55.9573849 -3.2140508, 55.9531165 -3.2090593, 55.9073450 -3.2588734, 55.9659619 -3.1554940, 55.9654324 -3.1550862, 55.9643410 -3.1548837, 55.9268205 -3.2444313, 55.9397496 -3.2204248, 55.9429419 -3.2109171, 55.9430078 -3.2108682, 55.9455967 -3.2068856, 55.9458432 -3.1911825, 55.9498009 -3.1875437, 55.9498298 -3.1876708, 55.9497004 -3.1878147, 55.9500525 -3.1873006, 55.9545891 -3.1875925, 55.9558479 -3.1868996, 55.9574015 -3.1611745, 55.9682325 -3.1530713, 55.9758399 -3.1698851, 55.9591640 -3.1832180, 55.9385133 -3.1977770, 55.9531081 -3.2008271, 55.9335642 -3.2450433, 55.9480679 -3.1861969, 55.9427330 -3.1878978, 55.9619035 -3.1442333, 55.9643648 -3.2331575, 55.9299818 -3.2625728, 55.9411797 -3.2700165, 55.9595030 -3.1717326, 55.9308388 -3.1901371, 55.9385382 -3.2105120, 55.9372948 -3.2172890, 55.9397228 -3.2201715, 55.9434879 -3.1802742, 55.9259159 -3.2475077, 55.9380028 -3.2917178, 55.9395343 -3.2706851, 55.9551815 -3.1828752, 55.9532855 -3.1942698, 55.9528122 -3.1966134, 55.9577481 -3.1745891, 55.9522948 -3.1996615, 55.9512080 -3.2029850, 55.9505306 -3.2060289, 55.9360698 -3.1801396, 55.9431462 -3.2098500, 55.9424957 -3.2178326, 55.9430147 -3.2208977, 55.9431450 -3.1777930, 55.9473014 -3.2066559, 55.9382479 -3.2288358, 55.9493199 -3.2107221, 55.9371375 -3.2021480, 55.9416831 -3.1813332, 55.9399477 -3.1799875, 55.9400554 -3.1800410, 55.9383873 -3.1947438, 55.9381286 -3.1934756, 55.9532580 -3.2007176, 55.9498239 -3.1879473, 55.9457420 -3.2062080, 55.9361540 -3.2091272, 55.9368151 -3.2079507, 55.9519224 -3.2021395, 55.9456455 -3.2052495, 55.9420725 -3.2685561, 55.9526727 -3.1905474, 55.9499553 -3.1886925, 55.9483500 -3.1918487, 55.9534890 -3.1892336, 55.9564328 -3.1863322, 55.9462158 -3.1854968, 55.9448431 -3.2048049, 55.9426898 -3.2037234, 55.9472487 -3.1909778, 55.9475118 -3.1893161, 55.9479802 -3.1868691, 55.9462178 -3.1884860, 55.9445944 -3.1837358, 55.9447090 -3.1838238, 55.9483392 -3.1987455, 55.9390205 -3.1796146, 55.9391727 -3.1798248, 55.9426063 -3.2085087, 55.9537595 -3.2040584, 55.9533620 -3.1976100, 55.9663837 -3.2142063, 55.9683890 -3.2076049, 55.9700560 -3.2078121, 55.9666246 -3.2259783, 55.9645546 -3.2384622, 55.9566631 -3.1959622, 55.9597916 -3.2004518, 55.9383859 -3.2394291, 55.9430487 -3.2222507, 55.9752750 -3.2542425, 55.9791698 -3.2312965, 55.9363180 -3.1961219, 55.9393749 -3.1872222, 55.9398905 -3.1798723, 55.9449974 -3.2048810, 55.9112029 -3.2297595, 55.9382045 -3.1790187, 55.9393085 -3.1795319, 55.9299625 -3.2092643, 55.9362743 -3.1942603, 55.9364425 -3.1941118, 55.9364298 -3.1945475, 55.9363223 -3.1940133, 55.9381921 -3.1929355, 55.9380470 -3.1915010, 55.9538981 -3.1944535, 55.9549889 -3.1927002, 55.9554031 -3.1946708, 55.9534314 -3.1915442, 55.9447005 -3.1877270, 55.9428356 -3.1884222, 55.9454993 -3.1874399, 55.9457618 -3.1854245, 55.9459188 -3.1884045, 55.9380581 -3.1934656, 55.9350171 -3.1942941, 55.9486960 -3.2853143, 55.9721574 -3.2632148, 55.9713670 -3.2529113, 55.9292293 -3.2098989, 55.9779953 -3.1733866, 55.9388513 -3.1691562, 55.9341605 -3.2104863, 55.9532825 -3.2818618, 55.9454998 -3.1881337, 55.9450783 -3.1887212, 55.9501390 -3.1751181, 55.9297052 -3.2086909, 55.9489520 -3.1813494, 55.9210967 -3.2266715, 55.9410406 -3.2238628, 55.9536712 -3.2193907, 55.9487114 -3.2851366, 55.9487753 -3.2841900, 55.9480103 -3.1837600, 55.9486091 -3.1831054, 55.9381703 -3.1892079, 55.9487321 -3.2833922, 55.9382556 -3.1704864, 55.9404236 -3.1696109, 55.9532741 -3.2960634, 55.9534137 -3.2961564, 55.9533708 -3.2966361, 55.9482056 -3.2747143, 55.9517036 -3.1735044, 55.9455830 -3.1876260, 55.9444953 -3.1872925, 55.9576902 -3.1997993, 55.9604265 -3.2008450, 55.9591476 -3.1949181, 55.9605294 -3.1929284, 55.9605324 -3.1932010, 55.9618144 -3.1951211, 55.9620863 -3.1958474, 55.9655017 -3.1900188, 55.9614827 -3.1898206, 55.9606405 -3.1834192, 55.9615944 -3.1808390, 55.9595023 -3.1900105, 55.9585729 -3.1857898, 55.9574763 -3.2071208, 55.9574011 -3.1728671, 55.9331029 -3.2291931, 55.9357602 -3.2102116, 55.9274739 -3.1873426, 55.9259230 -3.1834543, 55.9269627 -3.1866997, 55.9053438 -3.2494235, 55.9085287 -3.2095473, 55.9085331 -3.2094328, 55.9086734 -3.2091995, 55.9434453 -3.2029283, 55.9457654 -3.1982160, 55.9261467 -3.1629216, 55.9297559 -3.1757555, 55.9305265 -3.1760973, 55.9346360 -3.1418499, 55.9311887 -3.1461734, 55.9226046 -3.1871043, 55.9331970 -3.1413489, 55.9339659 -3.1780885, 55.9275329 -3.1935001, 55.9296084 -3.1757975, 55.9368168 -3.1806435, 55.9344345 -3.1791228, 55.9500367 -3.1401579, 55.9239989 -3.2365090, 55.9527511 -3.2060102, 55.9529618 -3.2047389, 55.9244582 -3.1757064, 55.9339861 -3.1786923, 55.9333887 -3.1798510, 55.9332220 -3.1779647, 55.9340894 -3.1466704, 55.9366417 -3.1570870, 55.9590460 -3.1902971, 55.9563297 -3.1719415, 55.9418792 -3.1484693, 55.9195933 -3.2025852, 55.9421150 -3.1792210, 55.9136110 -3.2108341, 55.9710589 -3.2774742, 55.9691806 -3.2021849, 55.9648549 -3.2026261, 55.9666311 -3.1963169, 55.9683710 -3.1956001, 55.9656801 -3.2034197, 55.9637076 -3.1844385, 55.9611876 -3.1811782, 55.9609569 -3.1808567, 55.9611193 -3.1807997, 55.9630757 -3.1816529, 55.9639501 -3.1781151, 55.9708842 -3.1795267, 55.9706228 -3.1795532, 55.9695540 -3.1814748, 55.9012867 -3.2047186, 55.9384166 -3.2182340, 55.9441785 -3.1809403, 55.9496694 -3.1834699, 55.9692963 -3.1850261, 55.9729056 -3.1882143, 55.9733698 -3.1917230, 55.9714156 -3.1983702, 55.9725476 -3.1752271, 55.9703241 -3.1718328, 55.9436788 -3.1917939, 55.9446070 -3.1860121, 55.9444906 -3.1858127, 55.9444464 -3.1853700, 55.9445207 -3.1852171, 55.9440818 -3.1852249, 55.9429422 -3.1846726, 55.9457451 -3.1898138, 55.9471305 -3.1857683, 55.9421441 -3.1839083, 55.9427088 -3.1845678, 55.9381591 -3.2181727, 55.9390574 -3.2187847, 55.9389512 -3.2238438, 55.9402871 -3.2179484, 55.9407101 -3.2180407, 55.9407057 -3.2099923, 55.9357656 -3.2102949, 55.9358639 -3.2091972, 55.9375308 -3.2171720, 55.9357908 -3.2212625, 55.9634754 -3.1970678, 55.9350195 -3.1933654, 55.9351614 -3.1931190, 55.9364906 -3.1946961, 55.9382472 -3.1928511, 55.9385499 -3.1951862, 55.9350686 -3.1943883, 55.9368505 -3.2110421, 55.9737204 -3.1771872, 55.9750610 -3.1815362, 55.9746746 -3.1826198, 55.9741874 -3.1859448, 55.9744484 -3.1849018, 55.9532918 -3.2008836, 55.9540937 -3.1989693, 55.9434232 -3.2046642, 55.9458479 -3.1861307, 55.9112630 -3.2382716, 55.9515330 -3.2004872, 55.9209990 -3.2014676, 55.9205421 -3.2064160, 55.9361114 -3.1942444, 55.9343386 -3.2056340, 55.9136261 -3.2390645, 55.9633657 -3.2006587, 55.9478972 -3.1859639, 55.9359122 -3.2099909, 55.9359040 -3.2099061, 55.9359599 -3.2086240, 55.9395492 -3.2038813, 55.9355709 -3.2102528, 55.9608923 -3.1970860, 55.9523210 -3.1965000, 55.9533496 -3.2007320, 55.9533815 -3.2007538, 55.9534180 -3.2007700, 55.9534497 -3.2007968, 55.9571867 -3.1639997, 55.9595119 -3.1505528, 55.9626907 -3.1593614, 55.9754036 -3.1792572, 55.9780588 -3.1803331, 55.9781026 -3.1779536, 55.9779059 -3.1732084, 55.9779507 -3.1735468, 55.9780888 -3.1742385, 55.9781653 -3.1742810, 55.9781945 -3.1744492, 55.9781434 -3.1745486, 55.9775081 -3.1713276, 55.9767026 -3.1714287, 55.9764865 -3.1715326, 55.9761405 -3.1695398, 55.9657634 -3.1762911, 55.9648030 -3.1769642, 55.9618573 -3.1797874, 55.9614066 -3.1810341, 55.9740136 -3.1728670, 55.9746059 -3.1755220, 55.9765813 -3.1717666, 55.9770003 -3.1796132, 55.9711396 -3.1709394, 55.9736951 -3.1710231, 55.9753366 -3.1670836, 55.9754859 -3.1673643, 55.9754690 -3.1675529, 55.9405419 -3.1809535, 55.9814339 -3.1885738, 55.9753390 -3.1704024, 55.9477999 -3.1815633, 55.9449036 -3.1886208, 55.9442459 -3.2019494, 55.9225682 -3.2164153, 55.9250213 -3.2099040, 55.9250251 -3.2099944, 55.9251419 -3.2106483, 55.9695187 -3.2703166, 55.9657818 -3.2742187, 55.9654792 -3.2690775, 55.9340815 -3.2110165, 55.9641877 -3.1933778, 55.9383618 -3.2261155, 55.9345763 -3.2251873, 55.9345513 -3.2278011, 55.9347934 -3.2316832, 55.9330845 -3.2291601, 55.9394425 -3.2263039, 55.9387175 -3.2217895, 55.9373499 -3.2350180, 55.9382017 -3.2313956, 55.9366928 -3.2391398, 55.9389001 -3.2286457, 55.9386232 -3.2288990, 55.9386065 -3.2302193, 55.9390586 -3.2260923, 55.9417361 -3.2032072, 55.9375461 -3.2171038, 55.9403199 -3.2179375, 55.9395738 -3.2207070, 55.9396013 -3.2205959, 55.9396181 -3.2205281, 55.9317083 -3.2375695, 55.9333274 -3.2349042, 55.9332408 -3.2350658, 55.9323848 -3.2362972, 55.9459463 -3.2031782, 55.9466693 -3.1984915, 55.9465706 -3.1982507, 55.9459213 -3.2022224, 55.9481856 -3.1916083, 55.9481951 -3.1915223, 55.9482640 -3.1901285, 55.9262985 -3.2466715, 55.9286545 -3.1995671, 55.9282620 -3.2003920, 55.9288803 -3.1997107, 55.9282699 -3.1971794, 55.9300538 -3.2006041, 55.9291787 -3.1994540, 55.9262193 -3.2367397, 55.9257251 -3.2379807, 55.9445243 -3.1835902, 55.9425318 -3.1745423, 55.9446453 -3.1860635, 55.9445252 -3.1859176, 55.9600988 -3.2301499, 55.9480518 -3.1863033, 55.9480977 -3.1860003, 55.9471995 -3.1855061, 55.9470671 -3.1857568, 55.9468154 -3.1855780, 55.9461648 -3.1859720, 55.9459925 -3.1848262, 55.9462902 -3.1850763, 55.9459437 -3.1863927, 55.9455792 -3.1848992, 55.9440261 -3.1820823, 55.9440689 -3.1919649, 55.9444789 -3.1879512, 55.9406312 -3.2039275, 55.9409064 -3.2032988, 55.9402760 -3.2038110, 55.9372275 -3.2071159, 55.9375368 -3.2027382, 55.9361144 -3.2094079, 55.9334822 -3.1884629, 55.9575800 -3.1847940, 55.9491314 -3.1876537, 55.9757878 -3.2301721, 55.9621811 -3.2003284, 55.9526181 -3.1750774, 55.9471770 -3.1904575, 55.9254145 -3.2090883, 55.9764403 -3.1701500, 55.9504129 -3.2949801, 55.9601603 -3.2006854, 55.9299490 -3.2096090, 55.9592433 -3.2230171, 55.9481079 -3.1917724, 55.9808227 -3.2245927, 55.9479318 -3.1942157, 55.9166326 -3.2276420, 55.9467615 -3.2168254, 55.9524553 -3.1968363, 55.9501797 -3.1870275, 55.9428645 -3.2037697, 55.9484729 -3.1956543, 55.9478512 -3.2019348, 55.9452311 -3.1921670, 55.9449743 -3.1941250, 55.9701331 -3.1723584, 55.9411858 -3.2034013, 55.9558388 -3.1571446, 55.9250843 -3.2616025, 55.9473220 -3.2061120, 55.9382464 -3.1945920, 55.9356972 -3.2104575, 55.9457633 -3.2087758, 55.9458760 -3.2095814, 55.9464641 -3.2365646, 55.9308474 -3.2091419, 55.9461542 -3.1854391, 55.9057145 -3.2240658, 55.9618166 -3.1524945, 55.9499117 -3.2074257, 55.9380654 -3.1900489, 55.9724535 -3.2516505, 55.9311304 -3.2270645, 55.9318931 -3.2265036, 55.9323575 -3.2261564, 55.9327107 -3.2258560, 55.9330657 -3.2255356, 55.9251049 -3.2386756, 55.9434664 -3.1831055, 55.9391025 -3.1817525, 55.9425019 -3.1793852, 55.9406973 -3.1812038, 55.9434738 -3.2972773, 55.9434240 -3.1801919, 55.9447981 -3.1837792, 55.9336355 -3.2249068, 55.9341349 -3.2242887, 55.9241751 -3.2482578, 55.9425869 -3.1828482, 55.9536926 -3.2888163, 55.9338812 -3.2269970, 55.9288531 -3.2399727, 55.9444334 -3.1838739, 55.9388114 -3.2234850, 55.9438995 -3.1837414, 55.9432684 -3.2138648, 55.9434340 -3.2137230, 55.9448603 -3.1813584, 55.9774285 -3.1719154, 55.9627814 -3.1995758, 55.9628578 -3.2002915, 55.9630986 -3.2001715, 55.9659295 -3.2301633, 55.9663958 -3.2307466, 55.9679166 -3.2363594, 55.9434192 -3.1521467, 55.9457918 -3.1542034, 55.9475269 -3.1955313, 55.9478247 -3.1945545, 55.9479312 -3.1940298, 55.9488004 -3.1932865, 55.9488010 -3.1925834, 55.9494649 -3.1929782, 55.9494705 -3.1929503, 55.9506580 -3.1906398, 55.9499136 -3.1881658, 55.9532557 -3.1913082, 55.9626190 -3.2334642, 55.9619050 -3.2336519, 55.9615242 -3.2324707, 55.9625619 -3.2342817, 55.9625158 -3.2364890, 55.9619662 -3.2352523, 55.9488780 -3.1775878, 55.9475233 -3.1771707, 55.9580210 -3.2034978, 55.9405250 -3.2135252, 55.9415054 -3.2036512, 55.9424521 -3.1962323, 55.9424840 -3.1951526, 55.9426105 -3.1916905, 55.9423275 -3.1905258, 55.9422606 -3.1903187, 55.9418231 -3.1888920, 55.9413668 -3.1874191, 55.9411227 -3.1866614, 55.9410184 -3.1862592, 55.9409790 -3.1861376, 55.9465927 -3.1540114, 55.9470254 -3.1527259, 55.9478246 -3.1503371, 55.9488598 -3.1502689, 55.9496873 -3.1503116, 55.9500881 -3.1504469, 55.9505028 -3.1505858, 55.9538371 -3.1558978, 55.9416410 -3.1851981, 55.9420495 -3.1869416, 55.9421295 -3.1882490, 55.9382190 -3.1871150, 55.9553798 -3.1839728, 55.9551869 -3.1827848, 55.9541803 -3.1811651, 55.9542265 -3.1810614, 55.9542606 -3.1809036, 55.9540753 -3.1802341, 55.9515361 -3.1795713, 55.9515664 -3.1795081, 55.9515868 -3.1794043, 55.9515835 -3.1793356, 55.9503936 -3.1748495, 55.9624109 -3.2365738, 55.9629813 -3.2350949, 55.9619272 -3.2334212, 55.9465695 -3.1854535, 55.9460079 -3.1882051, 55.9274462 -3.2455645, 55.9566494 -3.1736928, 55.9562225 -3.1687689, 55.9339677 -3.2249022, 55.9344281 -3.2253191, 55.9345594 -3.2255179, 55.9341934 -3.2249216, 55.9343283 -3.2251333, 55.9196760 -3.2531202, 55.9196920 -3.2531744, 55.9226241 -3.2478361, 55.9236556 -3.2387809, 55.9267409 -3.2326273, 55.9279667 -3.2297308, 55.9408870 -3.2213705, 55.9408825 -3.2212995, 55.9408772 -3.2212176, 55.9408720 -3.2211546, 55.9188986 -3.2541216, 55.9265976 -3.2094034, 55.9295664 -3.1853673, 55.9329497 -3.1704352, 55.9371610 -3.1744740, 55.9353301 -3.1943090, 55.9386958 -3.1915143, 55.9390294 -3.1890609, 55.9379382 -3.1857984, 55.9340733 -3.1747120, 55.9613541 -3.2933788, 55.9481529 -3.1885730, 55.9515573 -3.1786333, 55.9285028 -3.2096878, 55.9462399 -3.2069718, 55.9481922 -3.1962833, 55.9481940 -3.1962668, 55.9502286 -3.2294214, 55.9502160 -3.2295118, 55.9395209 -3.1619598, 55.9417036 -3.1502600, 55.9413538 -3.1486448, 55.9398207 -3.1647960, 55.9322921 -3.2097971, 55.9405698 -3.1948224, 55.9322155 -3.2098211, 55.9337219 -3.2103787, 55.9356956 -3.2096210, 55.9342480 -3.2099670, 55.9250348 -3.2099016, 55.9556948 -3.1880622, 55.9500635 -3.1892496, 55.9288850 -3.2096120, 55.9415942 -3.1500219, 55.9415238 -3.1500695, 55.9414886 -3.1500566, 55.9268034 -3.2091405, 55.9534622 -3.1963003, 55.9392681 -3.1916690, 55.9599295 -3.1873744, 55.9476580 -3.2047113, 55.9475923 -3.2047617, 55.9385215 -3.1946814, 55.9619780 -3.1678642, 55.9518983 -3.2239071, 55.9509290 -3.2278430, 55.9511210 -3.2277490, 55.9247587 -3.2516367, 55.9152586 -3.2496769, 55.9810888 -3.1948604, 55.9813469 -3.1948497, 55.9802041 -3.1978016, 55.9759717 -3.1734609, 55.9797497 -3.1895515, 55.9795875 -3.1875878, 55.9789603 -3.1865433, 55.9807237 -3.1950351, 55.9451951 -3.1837450, 55.9774474 -3.1689618, 55.9775639 -3.1689368, 55.9763635 -3.1706985, 55.9764238 -3.1716973, 55.9610381 -3.1807131, 55.9760230 -3.1696703, 55.9764292 -3.1693439, 55.9744390 -3.1724043, 55.9806635 -3.1777421, 55.9771581 -3.1733472, 55.9825548 -3.1951570, 55.9681987 -3.1679668, 55.9770294 -3.1725826, 55.9770823 -3.1729052, 55.9771270 -3.1731659, 55.9757237 -3.1680744, 55.9767011 -3.1697310, 55.9768212 -3.1696962, 55.9764154 -3.1710410, 55.9696704 -3.1601774, 55.9752829 -3.1671784, 55.9746544 -3.1708033, 55.9754457 -3.1703672, 55.9761159 -3.1686683, 55.9748068 -3.1719428, 55.9764442 -3.1712312, 55.9746156 -3.1675124, 55.9748242 -3.1673277, 55.9748577 -3.1715255, 55.9612894 -3.1714220, 55.9690959 -3.1845578, 55.9651802 -3.1900260, 55.9801175 -3.1928090, 55.9477632 -3.2035527, 55.9734916 -3.1731211, 55.9734370 -3.1678545, 55.9766362 -3.1692569, 55.9736688 -3.1675716, 55.9781324 -3.1931769, 55.9821090 -3.1943241, 55.9753398 -3.1672928, 55.9689601 -3.1680869, 55.9612706 -3.2423315, 55.9745822 -3.1606973, 55.9587858 -3.2096834, 55.9589500 -3.2099661, 55.9581960 -3.2080531, 55.9581662 -3.2088898, 55.9584860 -3.2082072, 55.9589789 -3.2101654, 55.9579676 -3.2062363, 55.9585295 -3.2049192, 55.9561318 -3.2024897, 55.9607377 -3.1996416, 55.9607716 -3.1994845, 55.9623588 -3.1972207, 55.9625719 -3.1962381, 55.9642406 -3.1930473, 55.9726865 -3.1759133, 55.9731405 -3.1755422, 55.9636410 -3.1765326, 55.9365951 -3.2384161, 55.9365605 -3.2385455, 55.9366319 -3.2382752, 55.9747144 -3.1719088, 55.9743443 -3.1729943, 55.9750359 -3.1717187, 55.9755525 -3.1702383, 55.9738614 -3.1646538, 55.9740422 -3.1659303, 55.9741812 -3.1661010, 55.9742569 -3.1663486, 55.9752315 -3.1658012, 55.9751522 -3.1648119, 55.9763107 -3.1693903, 55.9763771 -3.1661542, 55.9753270 -3.1646507, 55.9747307 -3.1636460, 55.9744303 -3.1776966, 55.9771994 -3.1796619, 55.9770966 -3.1779083, 55.9775365 -3.1788350, 55.9760995 -3.1730677, 55.9762324 -3.1724059, 55.9731723 -3.1754517, 55.9771807 -3.1761476, 55.9609375 -3.1808473, 55.9605906 -3.1808776, 55.9592564 -3.1803344, 55.9592747 -3.1800604, 55.9595705 -3.1788180, 55.9594792 -3.1784829, 55.9593617 -3.1781813, 55.9592892 -3.1764609, 55.9591242 -3.1753106, 55.9624799 -3.1788559, 55.9640287 -3.1778115, 55.9635684 -3.1776579, 55.9589434 -3.1740590, 55.9596265 -3.1729451, 55.9605538 -3.1725455, 55.9652947 -3.1767059, 55.9666806 -3.1748044, 55.9665025 -3.1749285, 55.9643291 -3.1706870, 55.9674237 -3.1748024, 55.9690233 -3.1728199, 55.9690958 -3.1689922, 55.9723853 -3.1732016, 55.9723305 -3.1731044, 55.9721688 -3.1727029, 55.9702670 -3.1717235, 55.9702561 -3.1718574, 55.9699444 -3.1720786, 55.9698189 -3.1721096, 55.9708328 -3.1699423, 55.9711233 -3.1703563, 55.9737281 -3.1686016, 55.9734119 -3.1676688, 55.9714801 -3.1615916, 55.9473560 -3.1862560, 55.9472450 -3.1859400, 55.9471464 -3.1859252, 55.9532957 -3.1984157, 55.9545214 -3.1981041, 55.9542551 -3.1979757, 55.9695290 -3.1831682, 55.9714796 -3.1776354, 55.9723593 -3.1759903, 55.9727023 -3.1754426, 55.9335551 -3.2286100, 55.9447520 -3.1840600, 55.9797681 -3.1890928, 55.9790159 -3.1841078, 55.9705925 -3.1711804, 55.9645394 -3.2127643, 55.9777755 -3.2433672, 55.9760698 -3.1951310, 55.9581445 -3.2872164, 55.9744684 -3.1856848, 55.9746016 -3.1849846, 55.9784826 -3.2320600, 55.9789817 -3.2315749, 55.9787948 -3.2321459, 55.9791425 -3.2314689, 55.9241924 -3.2102680, 55.9290941 -3.2093302, 55.9356483 -3.2096691, 55.9357669 -3.2094553, 55.9462976 -3.1912247, 55.9455179 -3.1909190, 55.9364991 -3.2084171, 55.9816900 -3.1886748, 55.9709621 -3.2090466, 55.9545791 -3.1422991, 55.9548248 -3.1415950, 55.9264063 -3.2467300, 55.9771231 -3.1966894, 55.9360392 -3.2090372, 55.9737669 -3.1858709, 55.9404616 -3.1698412, 55.9387349 -3.2010412, 55.9710407 -3.2074072, 55.9720425 -3.2050523, 55.9202135 -3.2126749, 55.9219957 -3.1957248, 55.9229858 -3.1947070, 55.9435861 -3.2358643, 55.9503992 -3.1867667, 55.9745206 -3.2097366, 55.9725416 -3.2010685, 55.9710824 -3.2085793, 55.9612961 -3.1711082, 55.9447505 -3.1852146, 55.9453065 -3.1835012, 55.9457396 -3.1854060, 55.9454763 -3.2007654, 55.9457066 -3.2037108, 55.9457048 -3.2038263, 55.9457321 -3.2021180, 55.9456158 -3.2019242, 55.9459374 -3.2019085, 55.9453277 -3.2024821, 55.9456636 -3.2023531, 55.9456209 -3.2024908, 55.9457155 -3.2031429, 55.9450484 -3.2047027, 55.9461607 -3.2012900, 55.9461126 -3.2014232, 55.9459650 -3.2018268, 55.9462297 -3.2014330, 55.9463009 -3.2016068, 55.9465306 -3.2021704, 55.9468875 -3.2026394, 55.9467764 -3.2027315, 55.9465986 -3.2023587, 55.9460338 -3.2036537, 55.9459133 -3.2052346, 55.9459875 -3.2052600, 55.9501558 -3.1884318, 55.9463177 -3.2055331, 55.9349001 -3.1943041, 55.9741503 -3.1833122, 55.9444114 -3.2940849, 55.9706505 -3.2086749, 55.9492055 -3.1928272, 55.9225657 -3.2301524, 55.9228577 -3.2291352, 55.9232283 -3.2269378, 55.9456102 -3.1913727, 55.9461313 -3.1912692, 55.9461895 -3.1912537, 55.9462577 -3.1912354, 55.9462955 -3.2358109, 55.9450264 -3.2343445, 55.9493479 -3.1906070, 55.9456394 -3.2355309, 55.9453683 -3.2338696, 55.9455342 -3.2348724, 55.9457239 -3.2346227, 55.9456013 -3.2352951, 55.9455875 -3.2352115, 55.9457758 -3.2348710, 55.9389097 -3.2419381, 55.9426597 -3.2129400, 55.9429829 -3.2134256, 55.9488810 -3.2490299, 55.9508791 -3.2434142, 55.9494980 -3.2358476, 55.9456561 -3.2308956, 55.9456681 -3.2343523, 55.9456625 -3.2343128, 55.9456205 -3.2341061, 55.9454695 -3.2344844, 55.9473852 -3.1916772, 55.9475088 -3.1917576, 55.9471518 -3.1915252, 55.9498377 -3.1939928, 55.9498425 -3.1930486, 55.9532791 -3.1974386, 55.9531031 -3.1974183, 55.9561340 -3.1989483, 55.9264851 -3.2464048, 55.9491804 -3.2967532, 55.9424464 -3.2955938, 55.9446081 -3.2051718, 55.9443282 -3.2046990, 55.9442082 -3.2038136, 55.9211191 -3.2303230, 55.9474400 -3.2923526, 55.9430446 -3.2899748, 55.9456740 -3.2861378, 55.9512182 -3.2954264, 55.9443925 -3.2802364, 55.9457004 -3.2739703, 55.9515300 -3.2808442, 55.9479751 -3.2794176, 55.9642340 -3.2119376, 55.9590502 -3.1909659, 55.9713138 -3.2075481, 55.9443973 -3.1868138, 55.9454900 -3.2437100, 55.9469941 -3.2417975, 55.9484230 -3.2442674, 55.9460532 -3.2214294, 55.9467870 -3.2155219, 55.9452634 -3.2437676, 55.9381992 -3.2057222, 55.9425021 -3.1970043, 55.9367136 -3.2408009, 55.9173034 -3.2149399, 55.9371649 -3.2025037, 55.9368530 -3.2004540, 55.9393621 -3.1916353, 55.9456091 -3.2353430, 55.9464785 -3.2054282, 55.9422270 -3.2027656, 55.9438165 -3.2056492, 55.9589078 -3.2117046, 55.9315200 -3.2861400, 55.9420711 -3.2690435, 55.9415889 -3.2559229, 55.9447012 -3.2513164, 55.9419754 -3.2483579, 55.9780222 -3.1805369, 55.9620429 -3.1977538, 55.9604376 -3.2013529, 55.9604183 -3.2014949, 55.9591864 -3.2124140, 55.9591737 -3.2122413, 55.9370660 -3.2969585, 55.9392100 -3.2806000, 55.9393811 -3.2704873, 55.9354550 -3.2598605, 55.9468637 -3.2297538, 55.9436917 -3.2398371, 55.9436136 -3.2397405, 55.9405368 -3.2831106, 55.9413015 -3.2818091, 55.9191492 -3.2130522, 55.9460239 -3.2230837, 55.9459933 -3.2231784, 55.9366420 -3.2074944, 55.9366774 -3.2079221, 55.9621347 -3.1794502, 55.9669748 -3.1747167, 55.9669857 -3.1747050, 55.9675952 -3.1703629, 55.9395488 -3.1870788, 55.9446114 -3.1865865, 55.9461370 -3.1853123, 55.9461292 -3.1853065, 55.9314090 -3.1822354, 55.9253125 -3.2006432, 55.9281345 -3.1804917, 55.9305500 -3.1762100, 55.9076779 -3.2582348, 55.9504119 -3.1888113, 55.9478244 -3.2213073, 55.9499694 -3.2195589, 55.9487598 -3.2123252, 55.9487951 -3.2108329, 55.9487898 -3.2108459, 55.9487788 -3.2108716, 55.9593578 -3.1768112, 55.9623569 -3.1714829, 55.9646364 -3.1735638, 55.9655801 -3.1691053, 55.9450230 -3.2268720, 55.9536450 -3.1936151, 55.9760874 -3.1678906, 55.9736874 -3.1725679, 55.9751258 -3.1658656, 55.9588433 -3.2109114, 55.9591509 -3.2146545, 55.9512937 -3.2112702, 55.9460249 -3.2134952, 55.9463839 -3.2161818, 55.9574881 -3.1992547, 55.9661313 -3.1638552, 55.9524730 -3.2169251, 55.9562610 -3.2021290, 55.9513145 -3.2128744, 55.9654450 -3.1802602, 55.9548807 -3.2054706, 55.9460137 -3.1821143, 55.9371585 -3.2494475, 55.9346896 -3.2433995, 55.9322311 -3.2308961, 55.9376366 -3.2347523, 55.9368948 -3.2364574, 55.9363670 -3.2407328, 55.9520922 -3.2063003, 55.9576002 -3.1888027, 55.9548055 -3.1983916, 55.9574612 -3.1710201, 55.9558419 -3.1599480, 55.9371035 -3.2439605, 55.9818809 -3.1948176, 55.9632540 -3.1957380, 55.9585033 -3.1646213, 55.9593827 -3.1562296, 55.9628667 -3.1597943, 55.9471310 -3.1906350, 55.9592473 -3.2132417, 55.9592903 -3.2138265, 55.9593364 -3.2144530, 55.9587464 -3.2103338, 55.9591071 -3.2116272, 55.9590549 -3.2115512, 55.9585881 -3.2103788, 55.9591595 -3.2128882, 55.9588539 -3.2110421, 55.9578390 -3.2128140, 55.9574336 -3.2134743, 55.9548915 -3.1712938, 55.9371335 -3.1787701, 55.9436074 -3.2192026, 55.9691721 -3.1592392, 55.9526228 -3.2184244, 55.9630520 -3.1962925, 55.9405116 -3.2947547, 55.9399996 -3.2911100, 55.9503821 -3.1868960, 55.9433250 -3.2363632, 55.9453044 -3.1865217, 55.9455352 -3.1866707, 55.9456867 -3.1862318, 55.9459460 -3.1878623, 55.9445434 -3.1856701, 55.9493090 -3.1830646, 55.9436340 -3.1927890, 55.9478899 -3.1920092, 55.9477659 -3.1919316, 55.9495349 -3.1929486, 55.9310201 -3.2194717, 55.9309517 -3.2196437, 55.9310408 -3.2256759, 55.9312303 -3.2137915, 55.9349753 -3.2314298, 55.9300103 -3.2135260, 55.9538496 -3.1787470, 55.9521538 -3.1888028, 55.9520998 -3.1892273, 55.9520086 -3.1891800, 55.9368221 -3.2872838, 55.9346543 -3.2844878, 55.9343228 -3.2767516, 55.9368280 -3.2706901, 55.9267768 -3.2325501, 55.9265880 -3.2362930, 55.9764239 -3.1659535, 55.9622747 -3.2001258, 55.9716521 -3.1743701, 55.9592917 -3.2185993, 55.9575875 -3.2415188, 55.9573543 -3.2332686, 55.9763996 -3.1659688, 55.9760198 -3.1681503, 55.9582403 -3.2265941, 55.9625024 -3.1998896, 55.9746244 -3.1717856, 55.9624052 -3.1998575, 55.9588912 -3.2211449, 55.9706462 -3.2515635, 55.9709461 -3.2425812, 55.9673313 -3.2456217, 55.9713488 -3.2524304, 55.9672796 -3.2454147, 55.9709114 -3.2425772, 55.9706587 -3.2515739, 55.9672986 -3.2456919, 55.9702305 -3.2515134, 55.9714310 -3.2540033, 55.9592253 -3.2129434, 55.9680564 -3.1656726, 55.9799175 -3.2013079, 55.9794261 -3.2011329, 55.9795559 -3.2010797, 55.9794264 -3.2011800, 55.9796878 -3.2014842, 55.9796878 -3.2013537, 55.9794149 -3.2012171, 55.9799034 -3.2014654, 55.9795157 -3.2013896, 55.9749007 -3.1672556, 55.9788648 -3.2009088, 55.9788535 -3.2008575, 55.9788361 -3.2011054, 55.9788605 -3.2008124, 55.9788770 -3.2008233, 55.9788948 -3.2006927, 55.9788174 -3.2012321, 55.9799691 -3.2009457, 55.9788687 -3.2007502, 55.9788487 -3.2010347, 55.9788705 -3.2008699, 55.9788853 -3.2007572, 55.9788557 -3.2009857, 55.9788783 -3.2006842, 55.9790398 -3.2011265, 55.9788474 -3.2009018, 55.9788274 -3.2011722, 55.9436814 -3.2040013, 55.9464995 -3.1932533, 55.9448981 -3.1942117, 55.9435111 -3.2043893, 55.9591181 -3.1496342, 55.9498802 -3.1891726, 55.9552398 -3.1437898, 55.9538425 -3.1493357, 55.9651775 -3.1550509, 55.9500668 -3.1885889, 55.9547615 -3.1614369, 55.9504925 -3.1856345, 55.9493236 -3.1929136, 55.9504971 -3.1855975, 55.9619817 -3.1533477, 55.9498898 -3.1890965, 55.9536631 -3.1541511, 55.9492238 -3.1941539, 55.9502174 -3.1865501, 55.9505940 -3.1856465, 55.9498851 -3.1891359, 55.9553562 -3.1667305, 55.9551347 -3.1532238, 55.9502737 -3.1870781, 55.9612940 -3.1519134, 55.9554178 -3.1669595, 55.9546947 -3.1578562, 55.9575068 -3.1501850, 55.9314740 -3.1869910, 55.9416576 -3.1883214, 55.9412229 -3.1869842, 55.9423396 -3.1985687, 55.9368984 -3.1811783, 55.9357556 -3.2214339, 55.9354242 -3.1897423, 55.9423597 -3.1983768, 55.9354613 -3.1902988, 55.9341286 -3.2244013, 55.9426036 -3.1916439, 55.9424726 -3.1914952, 55.9409958 -3.1861854, 55.9347588 -3.2216913, 55.9424745 -3.1968698, 55.9340782 -3.2232451, 55.9424847 -3.1966165, 55.9332970 -3.2046324, 55.9424725 -3.1912702, 55.9418355 -3.1889284, 55.9421578 -3.2033392, 55.9401630 -3.1832349, 55.9353802 -3.1899199, 55.9421588 -3.2004891, 55.9333677 -3.2123755, 55.9375623 -3.1807993, 55.9731305 -3.1950625, 55.9538677 -3.2435779, 55.9527205 -3.2284441, 55.9536146 -3.2360666, 55.9546849 -3.2317176, 55.9256121 -3.1473387, 55.9255558 -3.1473167, 55.9254849 -3.1471298, 55.9255885 -3.1473368, 55.9255445 -3.1473013, 55.9255241 -3.1472486, 55.9255074 -3.1471930, 55.9256417 -3.1473368, 55.9254972 -3.1471633, 55.9254768 -3.1470924, 55.9255278 -3.1472659, 55.9255359 -3.1472812, 55.9255176 -3.1472256, 55.9630069 -3.2773773, 55.9633560 -3.2761756, 55.9646089 -3.2795091, 55.9639218 -3.2753952, 55.9644744 -3.2764552, 55.9642945 -3.2803351, 55.9638292 -3.2801968, 55.9641863 -3.2754567, 55.9643389 -3.2771164, 55.9645514 -3.2795049, 55.9646789 -3.2797902, 55.9630069 -3.2776474, 55.9647666 -3.2762084, 55.9649490 -3.2763608, 55.9471864 -3.2024319, 55.9479871 -3.1862306, 55.9449721 -3.1863791, 55.9479019 -3.1867698, 55.9470642 -3.2019436, 55.9431234 -3.1992894, 55.9478974 -3.1862047, 55.9500998 -3.1782582, 55.9465349 -3.1857185, 55.9472762 -3.1979213, 55.9465436 -3.1854289, 55.9477576 -3.1936583, 55.9502038 -3.1902321, 55.9693974 -3.1688986, 55.9772023 -3.1796867, 55.9776661 -3.1969988, 55.9776264 -3.1970905, 55.9776339 -3.1970307, 55.9803015 -3.1976822, 55.9765865 -3.1854489, 55.9789189 -3.1867824, 55.9414965 -3.2233146, 55.9226414 -3.2544133, 55.9733890 -3.2058000, 55.9723876 -3.1997325, 55.9719753 -3.2019093, 55.9722034 -3.2009871, 55.9302979 -3.1705559, 55.9211810 -3.2187978, 55.9073484 -3.2575010, 55.9768434 -3.1881066, 55.9820447 -3.1896654, 55.9669716 -3.1745593, 55.9677041 -3.2243177, 55.9657563 -3.2435361, 55.9800424 -3.2091064, 55.9805919 -3.1775969, 55.9780601 -3.2044214, 55.9801463 -3.2090911, 55.9725304 -3.1753943, 55.9657293 -3.2435261, 55.9700344 -3.2077899, 55.9670709 -3.1749630, 55.9799550 -3.2018004, 55.9790813 -3.2108709, 55.9437865 -3.2070130, 55.9455865 -3.2342233, 55.9455978 -3.2346741, 55.9371539 -3.2494937, 55.9246410 -3.2765088, 55.9372962 -3.2491878, 55.9332779 -3.2613713, 55.9245781 -3.2764272, 55.9299176 -3.2625346, 55.9372632 -3.2492416, 55.9246048 -3.2765477, 55.9271075 -3.2707414, 55.9247996 -3.2823520, 55.9332415 -3.2614077, 55.9325638 -3.2593883, 55.9247876 -3.2822715, 55.9641740 -3.2128869, 55.9692611 -3.1512327, 55.9642958 -3.1488430, 55.9639354 -3.1504034, 55.9745306 -3.1933636, 55.9748675 -3.1904209, 55.9746493 -3.1922925, 55.9743880 -3.1929616, 55.9749058 -3.1941793, 55.9746366 -3.1955294, 55.9747764 -3.1956967, 55.9745714 -3.1934532, 55.9754612 -3.1960906, 55.9399014 -3.1712062, 55.9273390 -3.1465879, 55.9271255 -3.1468646, 55.9752684 -3.2152498, 55.9758242 -3.2144035, 55.9727434 -3.2070307, 55.9275895 -3.1645483, 55.9399619 -3.1799104, 55.9241128 -3.1723545, 55.9429085 -3.1832259, 55.9334173 -3.1665098, 55.9276372 -3.1682132, 55.9338194 -3.1611110, 55.9429869 -3.1832327, 55.9321255 -3.1800006, 55.9334491 -3.1664892, 55.9399489 -3.1799452, 55.9269153 -3.1638236, 55.9420827 -3.2691559, 55.9434680 -3.2668439, 55.9439063 -3.2690157, 55.9435751 -3.2689147, 55.9430873 -3.2690735, 55.9443551 -3.2687653, 55.9437874 -3.2690161, 55.9436834 -3.2692135, 55.9429229 -3.2689057, 55.9437737 -3.2692883, 55.9443555 -3.2688034, 55.9434933 -3.2688802, 55.9443517 -3.2688330, 55.9443334 -3.2690333, 55.9443160 -3.2698145, 55.9443712 -3.2697548, 55.9442862 -3.2696535, 55.9447923 -3.2696041, 55.9442414 -3.2696230, 55.9442249 -3.2698579, 55.9441862 -3.2699833, 55.9441998 -3.2697898, 55.9441846 -3.2700353, 55.9441913 -3.2699266, 55.9442482 -3.2695243, 55.9441947 -3.2698513, 55.9442041 -3.2697012, 55.9442198 -3.2699298, 55.9448190 -3.2682874, 55.9445364 -3.2691035, 55.9445089 -3.2686640, 55.9448125 -3.2683165, 55.9445401 -3.2690632, 55.9445281 -3.2686754, 55.9447678 -3.2682625, 55.9445452 -3.2690217, 55.9444816 -3.2686505, 55.9438104 -3.2704203, 55.9441745 -3.2708613, 55.9451248 -3.2679627, 55.9451178 -3.2677005, 55.9438841 -3.2704641, 55.9451136 -3.2677340, 55.9436988 -3.2702051, 55.9440136 -3.2699584, 55.9437582 -3.2698008, 55.9440197 -3.2698813, 55.9439194 -3.2696742, 55.9437988 -3.2695451, 55.9440168 -3.2699147, 55.9437958 -3.2695753, 55.9437871 -3.2696296, 55.9437147 -3.2700828, 55.9440096 -3.2700013, 55.9437646 -3.2697579, 55.9437095 -3.2701295, 55.9439723 -3.2703260, 55.9440281 -3.2698087, 55.9439896 -3.2701946, 55.9437462 -3.2698728, 55.9439914 -3.2701621, 55.9445568 -3.2712370, 55.9444828 -3.2712985, 55.9445676 -3.2713832, 55.9445489 -3.2712116, 55.9444306 -3.2707867, 55.9446757 -3.2680033, 55.9443715 -3.2709187, 55.9443640 -3.2709035, 55.9444425 -3.2708312, 55.9439403 -3.2686377, 55.9439366 -3.2685388, 55.9472894 -3.2704332, 55.9464505 -3.2693921, 55.9453787 -3.2713449, 55.9440090 -3.2721798, 55.9472851 -3.2706337, 55.9455441 -3.2712955, 55.9465141 -3.2730188, 55.9472398 -3.2702471, 55.9473110 -3.2704551, 55.9472948 -3.2703506, 55.9358149 -3.2386102, 55.9461826 -3.2690791, 55.9456455 -3.2716123, 55.9366987 -3.2379969, 55.9453342 -3.2700548, 55.9462962 -3.2726401, 55.9454803 -3.2690632, 55.9457537 -3.2698792, 55.9461758 -3.2691227, 55.9463484 -3.2727821, 55.9453896 -3.2713832, 55.9451134 -3.2711892, 55.9462094 -3.2725069, 55.9443171 -3.2706169, 55.9448784 -3.2691910, 55.9449196 -3.2690293, 55.9451823 -3.2694942, 55.9445985 -3.2697772, 55.9445979 -3.2697349, 55.9445979 -3.2698218, 55.9450181 -3.2688395, 55.9443896 -3.2704309, 55.9443056 -3.2708233, 55.9438150 -3.2706214, 55.9730625 -3.2354168, 55.9792487 -3.2313758, 55.9743076 -3.2196459, 55.9786761 -3.2242350, 55.9741106 -3.2386365, 55.9698356 -3.2316222, 55.9763800 -3.2460031, 55.9756683 -3.2269233, 55.9757390 -3.2302742, 55.9751276 -3.2195128, 55.9779152 -3.2225125, 55.9746877 -3.2384796, 55.9439343 -3.2725445, 55.9438317 -3.2725467, 55.9437621 -3.2725408, 55.9503380 -3.2726676, 55.9456126 -3.2685460, 55.9456241 -3.2684706, 55.9473517 -3.2692143, 55.9475440 -3.2688587, 55.9475589 -3.2686972, 55.9451123 -3.2677559, 55.9452218 -3.2681462, 55.9451658 -3.2680317, 55.9394746 -3.1894768, 55.9411641 -3.1512729, 55.9416434 -3.1717268, 55.9439733 -3.1524479, 55.9411330 -3.1514431, 55.9448237 -3.1529181, 55.9423063 -3.1449329, 55.9450073 -3.1529020, 55.9402037 -3.1756282, 55.9421609 -3.1451559, 55.9446160 -3.1525298, 55.9434855 -3.1422046, 55.9419802 -3.1708710, 55.9396994 -3.1851263, 55.9410719 -3.1516059, 55.9503022 -3.2071924, 55.9512603 -3.2014806, 55.9533359 -3.1939210, 55.9512978 -3.2012401, 55.9593390 -3.1509669, 55.9617318 -3.1524315, 55.9566137 -3.1888783, 55.9577467 -3.1851022, 55.9562406 -3.1911609, 55.9526010 -3.1937812, 55.9507246 -3.2045394, 55.9517979 -3.1983521, 55.9524251 -3.1947161, 55.9505534 -3.2054984, 55.9709486 -3.1523987, 55.9525246 -3.1941907, 55.9506016 -3.2052108, 55.9517088 -3.1989214, 55.9523506 -3.1951713, 55.9575602 -3.1724450, 55.9580154 -3.1583704, 55.9592196 -3.1553714, 55.9458843 -3.2055992, 55.9504298 -3.2064570, 55.9575913 -3.1753293, 55.9546966 -3.1927221, 55.9521682 -3.1962149, 55.9452317 -3.2051701, 55.9515517 -3.1998326, 55.9576116 -3.1789154, 55.9537286 -3.1936572, 55.9567999 -3.1876847, 55.9520466 -3.1969809, 55.9560815 -3.1929397, 55.9635992 -3.1540543, 55.9515119 -3.2000849, 55.9577696 -3.1828707, 55.9564876 -3.1896175, 55.9510185 -3.2029566, 55.9513839 -3.2007749, 55.9599237 -3.1506789, 55.9465689 -3.2059027, 55.9411046 -3.2239062, 55.9610620 -3.2661513, 55.9579168 -3.2594573, 55.9611170 -3.2586621, 55.9591633 -3.2694132, 55.9472750 -3.2701680, 55.9472780 -3.2702638, 55.9472901 -3.2702199, 55.9460756 -3.2679698, 55.9461143 -3.2678766, 55.9461569 -3.2677804, 55.9460226 -3.2680862, 55.9476973 -3.2666365, 55.9476234 -3.2666513, 55.9478812 -3.2669807, 55.9477799 -3.2670205, 55.9477692 -3.2669562, 55.9439389 -3.2713024, 55.9457140 -3.2662994, 55.9473537 -3.2693023, 55.9423784 -3.2684235, 55.9423375 -3.2684623, 55.9426333 -3.2684129, 55.9540924 -3.1857179, 55.9807113 -3.1953762, 55.9459500 -3.2183311, 55.9525178 -3.1990765, 55.9527244 -3.1978512, 55.9517351 -3.1896593, 55.9526200 -3.1872149, 55.9495835 -3.1876144, 55.9514986 -3.1796557, 55.9514881 -3.1797075, 55.9514580 -3.1798555, 55.9514691 -3.1798034, 55.9236706 -3.2040542, 55.9212569 -3.2097385, 55.9514550 -3.1958932, 55.9246219 -3.2214991, 55.9268286 -3.2090688, 55.9252421 -3.2148962, 55.9245611 -3.2242085, 55.9268129 -3.2090538, 55.9282950 -3.2095850, 55.9226159 -3.2225114, 55.9777896 -3.1974752, 55.9798593 -3.1946097, 55.9780428 -3.1860386, 55.9800084 -3.1912453, 55.9784801 -3.1830392, 55.9773677 -3.1799707, 55.9378609 -3.2405808, 55.9371924 -3.2382206, 55.9394743 -3.2262550, 55.9449761 -3.2499915, 55.9522107 -3.2715039, 55.9457457 -3.2402525, 55.9439988 -3.2573278, 55.9572715 -3.2768003, 55.9437035 -3.2584097, 55.9458207 -3.2352352, 55.9478145 -3.2639367, 55.9555972 -3.2734936, 55.9453565 -3.2446690, 55.9708436 -3.1716098, 55.9774386 -3.2624501, 55.9772118 -3.2672281, 55.9772339 -3.2660670, 55.9624258 -3.1975866, 55.9651110 -3.2694445, 55.9573540 -3.2494949, 55.9555428 -3.2480205, 55.9555258 -3.2619699, 55.9574373 -3.2496763, 55.9634767 -3.2722179, 55.9605444 -3.2566921, 55.9566195 -3.2377543, 55.9772777 -3.2461729, 55.9623920 -3.1996454, 55.9623670 -3.1996983, 55.9621922 -3.2000688, 55.9631054 -3.1964986, 55.9612545 -3.2082697, 55.9057072 -3.2230862, 55.9057886 -3.2220852, 55.9058118 -3.2222166, 55.9056645 -3.2224845, 55.9361901 -3.2788131, 55.9406861 -3.2945485, 55.9113200 -3.2226013, 55.9559598 -3.1876831, 55.9575352 -3.2075320, 55.9428445 -3.2718177, 55.9457769 -3.1881838, 55.9457904 -3.1881060, 55.9458222 -3.1851240, 55.9456630 -3.1864521, 55.9464609 -3.1857555, 55.9444948 -3.1852753, 55.9460238 -3.1818387, 55.9456170 -3.1835800, 55.9409109 -3.1847511, 55.9537827 -3.1881886, 55.9506084 -3.1874617, 55.9500934 -3.1836054, 55.9498204 -3.1834215, 55.9508055 -3.1777162, 55.9695643 -3.1595863, 55.9559652 -3.1503593, 55.9696733 -3.1597044, 55.9343022 -3.2767697, 55.9343378 -3.2767743, 55.9342300 -3.2767338, 55.9342633 -3.2768558, 55.9504487 -3.1855770, 55.9527611 -3.2030077, 55.9481787 -3.1818614, 55.9360357 -3.2265093, 55.9370217 -3.2186392, 55.9686273 -3.1585988, 55.9469357 -3.2061870, 55.9468336 -3.2067128, 55.9510529 -3.1895716, 55.9474443 -3.2026403, 55.9469842 -3.2055924, 55.9484539 -3.2033601, 55.9477666 -3.2049354, 55.9519571 -3.1962325, 55.9475027 -3.1864955, 55.9450666 -3.1879264, 55.9084110 -3.2094163, 55.9082785 -3.2093082, 55.9086565 -3.2096817, 55.9083715 -3.2093851, 55.9650759 -3.2031617, 55.9807357 -3.1771531, 55.9801105 -3.1784204, 55.9803382 -3.1778904, 55.9509532 -3.1703030, 55.9449293 -3.1531235, 55.9426622 -3.1700360, 55.9536680 -3.1591788, 55.9510831 -3.1696039, 55.9471411 -3.1970342, 55.9472696 -3.1965989, 55.9471162 -3.1970611, 55.9476455 -3.1953503, 55.9470721 -3.1972816, 55.9444791 -3.1881383, 55.9441090 -3.1902632, 55.9441665 -3.1899295, 55.9430221 -3.1890898, 55.9442010 -3.1896725, 55.9442375 -3.1894117, 55.9434877 -3.1870683, 55.9411521 -3.2175600, 55.9416473 -3.2167635, 55.9417417 -3.2166027, 55.9412822 -3.2173787, 55.9414839 -3.2157963, 55.9502375 -3.1783811, 55.9578332 -3.2413256, 55.9338740 -3.2337492, 55.9533340 -3.1882867, 55.9535985 -3.1880495, 55.9540239 -3.1884159, 55.9647669 -3.1742071, 55.9615002 -3.2416803, 55.9612219 -3.2575527, 55.9617112 -3.2842794, 55.9459369 -3.2194891, 55.9550948 -3.1901047, 55.9550392 -3.1900725, 55.9544460 -3.1979485, 55.9551557 -3.1901442, 55.9550768 -3.1902732, 55.9488944 -3.2004735, 55.9682038 -3.1584305, 55.9747341 -3.1674332, 55.9690121 -3.1681747, 55.9235577 -3.1750912, 55.9401640 -3.1700061, 55.9709409 -3.1571862, 55.9467290 -3.2153860, 55.9220580 -3.1538560, 55.9283784 -3.2791498, 55.9237183 -3.2367632, 55.9785792 -3.2328755, 55.9626030 -3.2336790, 55.9697755 -3.2322849, 55.9522245 -3.1734903, 55.9629859 -3.1961423, 55.9551121 -3.1428079, 55.9702568 -3.1722565, 55.9707654 -3.1796055, 55.9718556 -3.1742189, 55.9598707 -3.1836010, 55.9596341 -3.1834611, 55.9632066 -3.1785776, 55.9606353 -3.1818678, 55.9634121 -3.1783574, 55.9571142 -3.1859300, 55.9583217 -3.1846287, 55.9598382 -3.1829707, 55.9589142 -3.1841338, 55.9591802 -3.1838027, 55.9615406 -3.1806868, 55.9703043 -3.1722134, 55.9568736 -3.1872268, 55.9714725 -3.1735772, 55.9649663 -3.1768207, 55.9658985 -3.1759685, 55.9645028 -3.1902250, 55.9575852 -3.1728943, 55.9608134 -3.2464361, 55.9539273 -3.1922043, 55.9805680 -3.2249628, 55.9579175 -3.2082759, 55.9406050 -3.2947431, 55.9573347 -3.1870575, 55.9413584 -3.2170640, 55.9567027 -3.2027842, 55.9501967 -3.2038410, 55.9647351 -3.2042092, 55.9647197 -3.2042135, 55.9646674 -3.2043527, 55.9646221 -3.2123574, 55.9227843 -3.1745345, 55.9228926 -3.1745133, 55.9217304 -3.1744023, 55.9630073 -3.1966593, 55.9584822 -3.1838031, 55.9627948 -3.1786344, 55.9585203 -3.1837638, 55.9589264 -3.1833589, 55.9658761 -3.1755965, 55.9758546 -3.1700490, 55.9698894 -3.1717423, 55.9698726 -3.1719094, 55.9673457 -3.1743716, 55.9659789 -3.1755949, 55.9608269 -3.1809491, 55.9626007 -3.1788719, 55.9617000 -3.1800168, 55.9648872 -3.2105782, 55.9640790 -3.2117973, 55.9729683 -3.2415304, 55.9710850 -3.2302781, 55.9660823 -3.2332303, 55.9570699 -3.2073173, 55.9571426 -3.2068415, 55.9456193 -3.2178696, 55.9407217 -3.2685394, 55.9666564 -3.2048348, 55.9316272 -3.2648845, 55.9746900 -3.1865330, 55.9459387 -3.2172281, 55.9535356 -3.2058772, 55.9468216 -3.2042574, 55.9418064 -3.1502056, 55.9764885 -3.2156865, 55.9769128 -3.2157166, 55.9654428 -3.2696179, 55.9680693 -3.2059108, 55.9704751 -3.2080628, 55.9705108 -3.2080964, 55.9699747 -3.2075916, 55.9707761 -3.2083458, 55.9648879 -3.2026755, 55.9637633 -3.2012504, 55.9567499 -3.1986451, 55.9561450 -3.2942798, 55.9618298 -3.2008369, 55.9599171 -3.2005727, 55.9611747 -3.2012488, 55.9591669 -3.1999850, 55.9594671 -3.2002995, 55.9712906 -3.2063874, 55.9706400 -3.2086207, 55.9713287 -3.2069908, 55.9695498 -3.2075521, 55.9692718 -3.2074882, 55.9537621 -3.1970655, 55.9366240 -3.1802622, 55.9259084 -3.1931834, 55.9809058 -3.1784709, 55.9811460 -3.1776490, 55.9806886 -3.1784936, 55.9809733 -3.1781568, 55.9807522 -3.1787546, 55.9809041 -3.1782848, 55.9809689 -3.1779757, 55.9805231 -3.1789886, 55.9807924 -3.1779232, 55.9808102 -3.1777011, 55.9804391 -3.1785758, 55.9820170 -3.1763600, 55.9234603 -3.2480989, 55.9591543 -3.2259572, 55.9590419 -3.2244693, 55.9583594 -3.1836243, 55.9386265 -3.2264699, 55.9727205 -3.1965557, 55.9727236 -3.1965337, 55.9727179 -3.1965732, 55.9551635 -3.1504704, 55.9110678 -3.2397229, 55.9551272 -3.1497138, 55.9622829 -3.1985522, 55.9711237 -3.2085069, 55.9708707 -3.2085394, 55.9014700 -3.2230460, 55.9014970 -3.2224341, 55.9635314 -3.2337201, 55.9624600 -3.2363981, 55.9623235 -3.2362031, 55.9482310 -3.1848072, 55.9400736 -3.1717606, 55.9569588 -3.1874026, 55.9808127 -3.2595224, 55.9514755 -3.1782823, 55.9511672 -3.1780596, 55.9509125 -3.1777434, 55.9486026 -3.1924520, 55.9392494 -3.2227054, 55.9465573 -3.2166040, 55.9775384 -3.1973714, 55.9768854 -3.1971875, 55.9776251 -3.1971457, 55.9389607 -3.1800426, 55.9374159 -3.1700169, 55.9569347 -3.1878220, 55.9571722 -3.1885204, 55.9574895 -3.1883335, 55.9570705 -3.1879231, 55.9570779 -3.1884191, 55.9568932 -3.1877875, 55.9573876 -3.1882337, 55.9570085 -3.1883445, 55.9427213 -3.2130274, 55.9431431 -3.2136700, 55.9527396 -3.1977443, 55.9480325 -3.1815054, 55.9480039 -3.1817137, 55.9560952 -3.1981151, 55.9480209 -3.1999685, 55.9489665 -3.2010611, 55.9493788 -3.1869167, 55.9691533 -3.2784692, 55.9692477 -3.2784288, 55.9693072 -3.2788977, 55.9693548 -3.2789797, 55.9696962 -3.2776885, 55.9697099 -3.2776419, 55.9712220 -3.2801035, 55.9715957 -3.2808185, 55.9716282 -3.2807288, 55.9717402 -3.2779034, 55.9717600 -3.2779104, 55.9717836 -3.2776240, 55.9717999 -3.2776311, 55.9718160 -3.2776350, 55.9718386 -3.2779414, 55.9718557 -3.2779493, 55.9718960 -3.2776816, 55.9719644 -3.2780539, 55.9719738 -3.2795632, 55.9719843 -3.2795094, 55.9720028 -3.2794220, 55.9720946 -3.2789216, 55.9721642 -3.2784518, 55.9477134 -3.1957934, 55.9468912 -3.1978700, 55.9484235 -3.1941366, 55.9532705 -3.1946516, 55.9589984 -3.1830369, 55.9541450 -3.1874076, 55.9492653 -3.1878166, 55.9503609 -3.1881082, 55.9263753 -3.2094941, 55.9437913 -3.2075720, 55.9435806 -3.2082047, 55.9438272 -3.2058255, 55.9439569 -3.2059882, 55.9744930 -3.1740238, 55.9746031 -3.1741015, 55.9743735 -3.1740128, 55.9501068 -3.1901274, 55.9502048 -3.1904658, 55.9502374 -3.1901476, 55.9777985 -3.2431662, 55.9436221 -3.1937179, 55.9645746 -3.1623361, 55.9594895 -3.1560492, 55.9594791 -3.1564243, 55.9594775 -3.1561656, 55.9575177 -3.1700132, 55.9585573 -3.1641856, 55.9588186 -3.1715764, 55.9505032 -3.1770192, 55.9644079 -3.2126470, 55.9509705 -3.1758549, 55.9389695 -3.1739145, 55.9389943 -3.1739655, 55.9390348 -3.1740554, 55.9385333 -3.1741333, 55.9390147 -3.1740075, 55.9390548 -3.1740993, 55.9390736 -3.1741349, 55.9386173 -3.1735053, 55.9386182 -3.1743516, 55.9233792 -3.1742497, 55.9233858 -3.1742718, 55.9234025 -3.1742718, 55.9234130 -3.1742582, 55.9234165 -3.1742395, 55.9353260 -3.1974910, 55.9359590 -3.1944058, 55.9646577 -3.1742534, 55.9493237 -3.2123286, 55.9492755 -3.2122776, 55.9337528 -3.2109407, 55.9592003 -3.2070598, 55.9471247 -3.2011041, 55.9272281 -3.2094764, 55.9274742 -3.2095075, 55.9439543 -3.2071456, 55.9319254 -3.2512353, 55.9803988 -3.2235746, 55.9500005 -3.2077642, 55.9335864 -3.1782762, 55.9335062 -3.1782145, 55.9334002 -3.1781329, 55.9482625 -3.1920719, 55.9564749 -3.1878523, 55.9571783 -3.1850761, 55.9570708 -3.1852020, 55.9588991 -3.2258357, 55.9334984 -3.2284656, 55.9780202 -3.2428479, 55.9425693 -3.2033265, 55.9382383 -3.1924215, 55.9859461 -3.1898643, 55.9864555 -3.1885077, 55.9860128 -3.1896614, 55.9865996 -3.1884004, 55.9863832 -3.1886829, 55.9859324 -3.1900665, 55.9506835 -3.1901263, 55.9488068 -3.1956257, 55.9436384 -3.2027881, 55.9576954 -3.1637490, 55.9590948 -3.2432678, 55.9586188 -3.2408490, 55.9676788 -3.1745637, 55.9396042 -3.2040535, 55.9777657 -3.1686490, 55.9779143 -3.1684989, 55.9552280 -3.1478679, 55.9549996 -3.1445229, 55.9484747 -3.1864289, 55.9126616 -3.2035825, 55.9171931 -3.1941869, 55.9126891 -3.2038767, 55.9106369 -3.2236918, 55.9426119 -3.2218340, 55.9475020 -3.1919993, 55.9485285 -3.1947345, 55.9542426 -3.1873677, 55.9508675 -3.1907041, 55.9508879 -3.1905922, 55.9536227 -3.1920912, 55.9508253 -3.2079252, 55.9520584 -3.2007308, 55.9502522 -3.2086385, 55.9506787 -3.2078124, 55.9218026 -3.1745330, 55.9220250 -3.1740037, 55.9222596 -3.1746208, 55.9451505 -3.1872267, 55.9222225 -3.1735760, 55.9222306 -3.1737186, 55.9222484 -3.1736116, 55.9013749 -3.2048039, 55.9015123 -3.2048112, 55.9014995 -3.2048220, 55.9557144 -3.2050284, 55.9573512 -3.1955177, 55.9582765 -3.1894464, 55.9568218 -3.1985851, 55.9559071 -3.2028055, 55.9052704 -3.2299197, 55.9073936 -3.2270867, 55.9167735 -3.2461744, 55.9085790 -3.2284737, 55.9085198 -3.2284343, 55.9095328 -3.2331203, 55.9189185 -3.2647989, 55.9057737 -3.2228121, 55.9211096 -3.2429362, 55.9778271 -3.2436779, 55.9503499 -3.1810630, 55.9516064 -3.1841709, 55.9503183 -3.1884815, 55.9236878 -3.2368618, 55.9238196 -3.2366622, 55.9236578 -3.2367354, 55.9237248 -3.2366306, 55.9237612 -3.2366178, 55.9833943 -3.2415959, 55.9095305 -3.2330886, 55.9366928 -3.2080275, 55.9347829 -3.1798219, 55.9250057 -3.2459826, 55.9268452 -3.2441755, 55.9325861 -3.2362182, 55.9358156 -3.2103653, 55.9359671 -3.2098089, 55.9360346 -3.2096003, 55.9278483 -3.2300129, 55.9377607 -3.2063786, 55.9376507 -3.2063646, 55.9368993 -3.2077133, 55.9374422 -3.2067350, 55.9372014 -3.2071608, 55.9368190 -3.2080761, 55.9373868 -3.2070398, 55.9375533 -3.2065280, 55.9391854 -3.2049304, 55.9403048 -3.2042415, 55.9404664 -3.2042389, 55.9279913 -3.2292065, 55.9116349 -3.2144369, 55.9137619 -3.2215458, 55.9166500 -3.2282550, 55.9177564 -3.2099928, 55.9058039 -3.2543852, 55.9058659 -3.2543314, 55.9058985 -3.2437992, 55.9729590 -3.2150233, 55.9574260 -3.1873226, 55.9418938 -3.1804392, 55.9426222 -3.1809843, 55.9577201 -3.1877521, 55.9584746 -3.1893143, 55.9587876 -3.1938665, 55.9590983 -3.1918268, 55.9800499 -3.1791627, 55.9374103 -3.2203471, 55.9371453 -3.2187948, 55.9371037 -3.2185759, 55.9364127 -3.2192130, 55.9369080 -3.2188220, 55.9662294 -3.1638763, 55.9676214 -3.1664619, 55.9762860 -3.1692979, 55.9155222 -3.2133212, 55.9172588 -3.2246527, 55.9130555 -3.2448631, 55.9134923 -3.2440172, 55.9234034 -3.2439546, 55.9015515 -3.2210483, 55.9022093 -3.2131738, 55.9126848 -3.2283598, 55.9247393 -3.2762275, 55.9362381 -3.2789309, 55.9675511 -3.1756374, 55.9341037 -3.1788197, 55.9344639 -3.1793948, 55.9338757 -3.2105970, 55.9354907 -3.2097901, 55.9354188 -3.2098186, 55.9357089 -3.2095799, 55.9355278 -3.2097605, 55.9364334 -3.2079099, 55.9368144 -3.2072231, 55.9372344 -3.2066228, 55.9376983 -3.2059000, 55.9780044 -3.1722116, 55.9780252 -3.1723194, 55.9780504 -3.1724626, 55.9780687 -3.1725457, 55.9782654 -3.1746803, 55.9785235 -3.1761930, 55.9786362 -3.1756568, 55.9786783 -3.1756364, 55.9787159 -3.1733209, 55.9787754 -3.1736681, 55.9787665 -3.1769028, 55.9788234 -3.1755562, 55.9788416 -3.1740553, 55.9788522 -3.1741074, 55.9788905 -3.1755204, 55.9789084 -3.1744460, 55.9474590 -3.2064804, 55.9832621 -3.2415270, 55.9834316 -3.2423711, 55.9834316 -3.2423890, 55.9836698 -3.2462331, 55.9836701 -3.2462220, 55.9836844 -3.2504406, 55.9836890 -3.2504214, 55.9837405 -3.2490546, 55.9837405 -3.2490698, 55.9524356 -3.1964223, 55.9454558 -3.1847776, 55.9567479 -3.1931126, 55.9551362 -3.1957630, 55.9553311 -3.1942954, 55.9553403 -3.1942429, 55.9553748 -3.1943211, 55.9553863 -3.1942604, 55.9289432 -3.2488889, 55.9265395 -3.2441561, 55.9358853 -3.2101222, 55.9495537 -3.1836402, 55.9038541 -3.2176307, 55.9041465 -3.2071128, 55.9109891 -3.2235171, 55.9249983 -3.2408003, 55.9265173 -3.2463462, 55.9291936 -3.2433016, 55.9313843 -3.2522107, 55.9329546 -3.2402835, 55.9091985 -3.2241889, 55.9095414 -3.2288680, 55.9099481 -3.2276233, 55.9113957 -3.2252868, 55.9116752 -3.2253678, 55.9692484 -3.2701169, 55.9517687 -3.2034896, 55.9032280 -3.1930251, 55.9042257 -3.1978022, 55.9071385 -3.2051046, 55.9086019 -3.2094913, 55.9090257 -3.2065112, 55.9412096 -3.1486275, 55.9505209 -3.1777619, 55.9503720 -3.1813833, 55.9504108 -3.1802868, 55.9507721 -3.1811578, 55.9465819 -3.2028447, 55.9467650 -3.2021954, 55.9486309 -3.1952308, 55.9513408 -3.1864418, 55.9514994 -3.1837738, 55.9775296 -3.2431666, 55.9435851 -3.1847147, 55.9444992 -3.1839329, 55.9459854 -3.1883969, 55.9462645 -3.1891555, 55.9449647 -3.1887877, 55.9462089 -3.1892186, 55.9449737 -3.1886697, 55.9759686 -3.1688891, 55.9787701 -3.1833060, 55.9072071 -3.2585888, 55.9071613 -3.2570271, 55.9083820 -3.2527773, 55.9658637 -3.1761995, 55.9570449 -3.1939224, 55.9542354 -3.1917490, 55.9438638 -3.2042286, 55.9519521 -3.2087311, 55.9528038 -3.2061494, 55.9528140 -3.2093938, 55.9532254 -3.2097569, 55.9536618 -3.2155670, 55.9536915 -3.2042720, 55.9539747 -3.2143294, 55.9542100 -3.2076372, 55.9553506 -3.2198094, 55.9554278 -3.2089861, 55.9554724 -3.2173189, 55.9554860 -3.2009332, 55.9563802 -3.2017624, 55.9572186 -3.2098642, 55.9573665 -3.1964754, 55.9585472 -3.2054534, 55.9595644 -3.1990439, 55.9599933 -3.2054953, 55.9608712 -3.2094075, 55.9611926 -3.1991203, 55.9615597 -3.1997555, 55.9617191 -3.2025890, 55.9620925 -3.1793630, 55.9281835 -3.2479998, 55.9278363 -3.2486916, 55.9379459 -3.1928989, 55.9364244 -3.1948570, 55.9527684 -3.2488426, 55.9512756 -3.2096210, 55.9653967 -3.1758863, 55.9796234 -3.1879513, 55.9364814 -3.1940654, 55.9091332 -3.2602393, 55.9103257 -3.2684300, 55.9116143 -3.2626993, 55.9812017 -3.1750664, 55.9812425 -3.1753695, 55.9037452 -3.2259008, 55.9037783 -3.2258512, 55.9704760 -3.1722604, 55.9697713 -3.1721538, 55.9690697 -3.1733366, 55.9689984 -3.1727992, 55.9654977 -3.1757974, 55.9599075 -3.1821970, 55.9679454 -3.1743775, 55.9459700 -3.1799511, 55.9459700 -3.1803320, 55.9671880 -3.2831070, 55.9691460 -3.1666762, 55.9574706 -3.1807179, 55.9598822 -3.2008315, 55.9614848 -3.1812115, 55.9610969 -3.1806925, 55.9537919 -3.1943636, 55.9520661 -3.2796118, 55.9569903 -3.2540214, 55.9682857 -3.2739342, 55.9557748 -3.2584453, 55.9620235 -3.2416435, 55.9395792 -3.2047082, 55.9395908 -3.2047041, 55.9376968 -3.2030817, 55.9489030 -3.2106596, 55.9575251 -3.1904112, 55.9379885 -3.1928884, 55.9265106 -3.2094010, 55.9600272 -3.1713136, 55.9471310 -3.1866144, 55.9485879 -3.1925352, 55.9371647 -3.1783812, 55.9371166 -3.1786816, 55.9373104 -3.1783920, 55.9373587 -3.1783299, 55.9363799 -3.1799532, 55.9377438 -3.1786343, 55.9507069 -3.1772921, 55.9077558 -3.1994418, 55.9345771 -3.1419751, 55.9210238 -3.1598869, 55.9219909 -3.1537713, 55.9174822 -3.1582168, 55.9281906 -3.1742270, 55.9191327 -3.1562193, 55.9306331 -3.1627430, 55.9172236 -3.1644150, 55.9143561 -3.1647767, 55.9145718 -3.1648438, 55.9205387 -3.1634751, 55.9159327 -3.1674277, 55.9118079 -3.1688573, 55.9629073 -3.2208615, 55.9585133 -3.1844589, 55.9583985 -3.1845626, 55.9422761 -3.1451006, 55.9327244 -3.2707029, 55.9327440 -3.2706734, 55.9292344 -3.2698484, 55.9258492 -3.2715384, 55.9271219 -3.1643833, 55.9341775 -3.1927534, 55.9074421 -3.2561525, 55.9751419 -3.1798901, 55.9764355 -3.1792446, 55.9750319 -3.1805542, 55.9763691 -3.1792194, 55.9744134 -3.1848066, 55.9744305 -3.1846747, 55.9742810 -3.1856430, 55.9743179 -3.1854057, 55.9744911 -3.1843927, 55.9746268 -3.1837751, 55.9593582 -3.1855608, 55.9596851 -3.1884394, 55.9600368 -3.1898003, 55.9435115 -3.2193949, 55.9437549 -3.2193403, 55.9453892 -3.2171020, 55.9452977 -3.2171685, 55.9463186 -3.2159103, 55.9462644 -3.2147801, 55.9466681 -3.2139844, 55.9462412 -3.2122800, 55.9460056 -3.2124627, 55.9463269 -3.2059968, 55.9462610 -3.2137192, 55.9465542 -3.2158573, 55.9463549 -3.2017288, 55.9464387 -3.2035789, 55.9486361 -3.2062189, 55.9484187 -3.2061447, 55.9474318 -3.2069644, 55.9494425 -3.2125026, 55.9443448 -3.2151223, 55.9440221 -3.2146912, 55.9485519 -3.2140339, 55.9467972 -3.2050617, 55.9469991 -3.2045993, 55.9467213 -3.2047418, 55.9485678 -3.1946201, 55.9486421 -3.1944619, 55.9489611 -3.1926806, 55.9460725 -3.1912850, 55.9457241 -3.2098787, 55.9457412 -3.2099832, 55.9459522 -3.2058461, 55.9428244 -3.2815918, 55.9308207 -3.2096951, 55.9444686 -3.2547990, 55.9655583 -3.2726116, 55.9584582 -3.1901573, 55.9406449 -3.2837782, 55.9412624 -3.2833187, 55.9254744 -3.2091952, 55.9254742 -3.2091389, 55.9254746 -3.2090336, 55.9536885 -3.1878670, 55.9498114 -3.2093822, 55.9498996 -3.2091714, 55.9503620 -3.2076707, 55.9500194 -3.2088527, 55.9506457 -3.2094956, 55.9510827 -3.2031240, 55.9495552 -3.2091699, 55.9505200 -3.2066238, 55.9506675 -3.2089125, 55.9499459 -3.2090440, 55.9504209 -3.2072119, 55.9505668 -3.2093105, 55.9501674 -3.2085232, 55.9505572 -3.2064031, 55.9509836 -3.2037064, 55.9498173 -3.2082904, 55.9498530 -3.2092931, 55.9498913 -3.2084020, 55.9504567 -3.2091057, 55.9505921 -3.2087450, 55.9532127 -3.1978312, 55.9534187 -3.2003464, 55.9537368 -3.1946870, 55.9537500 -3.1946096, 55.9537298 -3.1906031, 55.9415538 -3.1758335, 55.9415650 -3.1758235, 55.9415762 -3.1758134, 55.9415874 -3.1758033, 55.9408923 -3.1748274, 55.9411586 -3.1749681, 55.9412177 -3.1755794, 55.9415910 -3.1748280, 55.9377776 -3.2165048, 55.9162825 -3.2606117, 55.9743623 -3.1997016, 55.9472618 -3.1852830, 55.9688467 -3.1843245, 55.9736313 -3.2504530, 55.9582298 -3.2268150, 55.9460585 -3.1892450, 55.9429037 -3.2078542, 55.9442477 -3.2027735, 55.9430976 -3.2203460, 55.9434367 -3.2195949, 55.9442862 -3.2178952, 55.9398817 -3.1822128, 55.9724777 -3.2416271, 55.9463680 -3.2170383, 55.9464499 -3.2170172, 55.9460286 -3.2212578, 55.9456539 -3.2177301, 55.9472510 -3.2151012, 55.9460045 -3.2187935, 55.9468356 -3.2159630, 55.9462622 -3.2145897, 55.9460189 -3.2224966, 55.9826346 -3.1875882, 55.9470639 -3.2154953, 55.9586309 -3.1903764, 55.9744483 -3.2049172, 55.9471136 -3.2126114, 55.9465828 -3.2144286, 55.9458930 -3.2127420, 55.9460218 -3.2127523, 55.9462614 -3.2149075, 55.9469392 -3.2157459, 55.9468703 -3.2158788, 55.9466500 -3.2155710, 55.9247496 -3.2493835, 55.9489596 -3.2105228, 55.9494472 -3.2102130, 55.9495592 -3.2099645, 55.9504859 -3.2078999, 55.9514905 -3.2100788, 55.9513702 -3.2115575, 55.9460203 -3.2206990, 55.9452871 -3.2335289, 55.9553009 -3.1905169, 55.9767910 -3.1761270, 55.9458018 -3.2218218, 55.9324474 -3.2604875, 55.9447346 -3.2504521, 55.9759483 -3.1772823, 55.9495320 -3.2122353, 55.9505780 -3.2098209, 55.9514971 -3.2122176, 55.9508641 -3.2099881, 55.9575799 -3.2074392, 55.9580520 -3.2065578, 55.9466971 -3.2153307, 55.9591363 -3.2144382, 55.9589630 -3.2123829, 55.9589427 -3.2121340, 55.9582634 -3.2095901, 55.9581540 -3.2094323, 55.9580230 -3.2092431, 55.9582374 -3.2089867, 55.9459800 -3.2223160, 55.9585716 -3.1897695, 55.9605718 -3.2003659, 55.9580127 -3.1896007, 55.9579047 -3.1888679, 55.9578403 -3.1887677, 55.9418430 -3.2160580, 55.9524450 -3.1890880, 55.9429786 -3.2210849, 55.9439438 -3.2188704, 55.9441413 -3.2180398, 55.9436651 -3.2196309, 55.9429336 -3.2206366, 55.9425916 -3.2009298, 55.9427446 -3.2017235, 55.9420620 -3.2036946, 55.9418227 -3.2036511, 55.9421663 -3.2031887, 55.9416745 -3.2030588, 55.9410490 -3.2037100, 55.9454049 -3.1915247, 55.9458208 -3.1909205, 55.9460150 -3.1908920, 55.9470537 -3.1917202, 55.9473009 -3.1911302, 55.9411590 -3.2032805, 55.9426500 -3.2040985, 55.9392330 -3.2127435, 55.9374410 -3.2166040, 55.9472539 -3.1909375, 55.9403718 -3.2037308, 55.9524171 -3.1893005, 55.9460210 -3.2291854, 55.9448965 -3.2515748, 55.9447296 -3.2505503, 55.9447224 -3.2506648, 55.9447420 -3.2503772, 55.9449025 -3.2479805, 55.9373900 -3.2387570, 55.9379488 -3.2323230, 55.9460528 -3.2226765, 55.9509774 -3.2113955, 55.9499766 -3.2119592, 55.9492824 -3.2109601, 55.9473573 -3.2114254, 55.9469393 -3.2131902, 55.9456430 -3.2126550, 55.9410190 -3.2179980, 55.9397431 -3.2200933, 55.9431741 -3.2209094, 55.9399590 -3.2199464, 55.9461264 -3.2216438, 55.9512433 -3.2192340, 55.9574980 -3.2089090, 55.9586178 -3.2076404, 55.9603694 -3.2018536, 55.9604541 -3.2011738, 55.9602930 -3.2010932, 55.9593762 -3.2008365, 55.9593510 -3.2005298, 55.9579540 -3.2067386, 55.9579133 -3.2068151, 55.9577295 -3.2066473, 55.9576259 -3.2073436, 55.9572855 -3.2073687, 55.9573609 -3.2064305, 55.9572746 -3.2059149, 55.9572260 -3.2056240, 55.9562845 -3.2025675, 55.9537733 -3.2038799, 55.9510870 -3.2135191, 55.9467680 -3.2234359, 55.9471780 -3.2179270, 55.9507047 -3.1827880, 55.9510404 -3.1846922, 55.9502539 -3.1878479, 55.9475890 -3.2135160, 55.9479040 -3.2136850, 55.9578281 -3.2064585, 55.9496669 -3.1898830, 55.9584000 -3.2182300, 55.9573850 -3.2145460, 55.9612410 -3.2084510, 55.9612608 -3.1947393, 55.9228326 -3.2329688, 55.9585590 -3.1894750, 55.9572253 -3.1905901, 55.9574810 -3.1829770, 55.9607690 -3.1844930, 55.9751120 -3.1699450, 55.9538149 -3.1866462, 55.9483102 -3.1849377, 55.9370308 -3.2067360, 55.9497190 -3.1919630, 55.9498540 -3.1918598, 55.9461791 -3.2053213, 55.9569075 -3.1939006, 55.9530794 -3.2035262, 55.9486670 -3.1956973, 55.9446609 -3.2150190, 55.9442121 -3.2179551, 55.9545384 -3.1981123, 55.9546639 -3.1975541, 55.9545246 -3.1975013, 55.9544395 -3.1974380, 55.9542190 -3.1973239, 55.9541769 -3.1973021, 55.9540060 -3.1972137, 55.9541028 -3.1972638, 55.9540721 -3.1972479, 55.9541197 -3.1979103, 55.9536404 -3.1975985, 55.9534114 -3.1989539, 55.9530711 -3.2010501, 55.9530164 -3.2013793, 55.9526918 -3.2040299, 55.9526098 -3.2039830, 55.9525837 -3.2041424, 55.9523991 -3.2052223, 55.9523166 -3.2057181, 55.9522681 -3.2060091, 55.9522441 -3.2061536, 55.9499431 -3.2078244, 55.9448704 -3.2331329, 55.9477760 -3.2103789, 55.9457989 -3.2102876, 55.9444244 -3.2075319, 55.9443730 -3.2058949, 55.9429692 -3.2046543, 55.9430026 -3.2042435, 55.9430272 -3.2039408, 55.9429855 -3.2039216, 55.9431079 -3.2050681, 55.9432521 -3.2093489, 55.9459286 -3.2144525, 55.9498937 -3.2187915, 55.9439070 -3.2057701, 55.9510942 -3.2110797, 55.9473254 -3.2153966, 55.9465369 -3.2167495, 55.9477795 -3.2138683, 55.9479863 -3.2061624, 55.9512634 -3.2030080, 55.9517147 -3.1997452, 55.9518558 -3.1995955, 55.9524797 -3.1968606, 55.9531523 -3.1916197, 55.9500529 -3.2073534, 55.9479922 -3.2059839, 55.9576475 -3.1842848, 55.9515601 -3.2026968, 55.9527506 -3.1965698, 55.9516170 -3.2029580, 55.9464020 -3.2364590, 55.9507080 -3.2063304, 55.9496423 -3.2119222, 55.9496638 -3.2118615, 55.9549833 -3.1927314, 55.9498027 -3.2080511, 55.9507785 -3.2057118, 55.9513450 -3.2025708, 55.9514350 -3.2026235, 55.9516199 -3.2027318, 55.9517068 -3.2027827, 55.9518670 -3.2035606, 55.9518994 -3.2028955, 55.9552905 -3.1911260, 55.9536150 -3.1883131, 55.9536531 -3.1880821, 55.9533030 -3.1880900, 55.9523240 -3.1963700, 55.9527200 -3.1967290, 55.9516311 -3.1963503, 55.9498942 -3.1936994, 55.9499018 -3.1935768, 55.9498329 -3.1910920, 55.9496897 -3.1897241, 55.9500792 -3.1891087, 55.9497794 -3.1891002, 55.9497983 -3.1889682, 55.9498111 -3.1888791, 55.9498363 -3.1887038, 55.9498847 -3.1884170, 55.9507029 -3.1895380, 55.9506408 -3.1885864, 55.9508998 -3.1880831, 55.9510625 -3.1882551, 55.9511343 -3.1876851, 55.9505405 -3.1879922, 55.9504690 -3.1879562, 55.9504288 -3.1865438, 55.9510930 -3.1843044, 55.9508281 -3.1833677, 55.9505903 -3.1838069, 55.9504166 -3.1838232, 55.9499013 -3.1834760, 55.9483708 -3.1896830, 55.9477348 -3.1940191, 55.9480205 -3.1941463, 55.9476619 -3.1952834, 55.9475711 -3.1964625, 55.9475446 -3.1965793, 55.9474740 -3.1968911, 55.9473325 -3.1972807, 55.9473047 -3.1975703, 55.9489335 -3.2064118, 55.9475568 -3.2058334, 55.9468534 -3.2055566, 55.9465560 -3.2054548, 55.9461881 -3.2059419, 55.9459465 -3.2061086, 55.9459426 -3.2062907, 55.9459442 -3.2062158, 55.9459301 -3.2068711, 55.9524898 -3.1736491, 55.9515512 -3.2128690, 55.9588848 -3.1901234, 55.9535003 -3.2044865, 55.9526050 -3.2032802, 55.9529685 -3.2011180, 55.9535044 -3.2004011, 55.9536675 -3.2005050, 55.9539653 -3.2006949, 55.9537081 -3.2003007, 55.9540962 -3.2002450, 55.9537909 -3.1998247, 55.9538415 -3.1995340, 55.9540148 -3.1994866, 55.9544427 -3.1980662, 55.9553129 -3.1952665, 55.9538261 -3.1967340, 55.9526921 -3.1998924, 55.9514403 -3.2044562, 55.9513975 -3.2047070, 55.9430598 -3.2193053, 55.9403560 -3.2253563, 55.9591927 -3.2424370, 55.9593810 -3.2409668, 55.9578254 -3.2417500, 55.9572789 -3.2414496, 55.9573001 -3.2497968, 55.9577040 -3.2497565, 55.9578001 -3.2499657, 55.9551108 -3.2236774, 55.9579668 -3.2505452, 55.9573737 -3.2496483, 55.9573346 -3.2494534, 55.9086383 -3.2285131, 55.9087673 -3.2285404, 55.9461958 -3.2134368, 55.9460065 -3.2126069, 55.9476322 -3.1921629, 55.9456584 -3.2094933, 55.9440144 -3.2064642, 55.9424189 -3.2051434, 55.9446843 -3.1840095, 55.9545372 -3.1868591, 55.9564594 -3.1856577, 55.9764272 -3.1711191, 55.9750156 -3.1711884, 55.9803418 -3.1792151, 55.9804368 -3.1789769, 55.9717098 -3.1715371, 55.9449000 -3.2054670, 55.9441227 -3.2045949, 55.9448580 -3.2052730, 55.9435020 -3.2024352, 55.9432539 -3.2025774, 55.9428307 -3.2018300, 55.9429314 -3.2012879, 55.9424297 -3.2007180, 55.9457344 -3.2006330, 55.9520417 -3.2029789, 55.9515458 -3.2098937, 55.9511347 -3.2096344, 55.9491465 -3.2108241, 55.9494123 -3.2120620, 55.9518969 -3.2025598, 55.9522434 -3.1996146, 55.9521380 -3.1995558, 55.9517385 -3.2025540, 55.9521478 -3.1999911, 55.9518750 -3.2026857, 55.9570492 -3.1932499, 55.9420700 -3.2221190, 55.9421838 -3.2218963, 55.9629332 -3.2004282, 55.9613613 -3.2013758, 55.9436142 -3.2051647, 55.9450120 -3.1915042, 55.9509356 -3.1902406, 55.9512130 -3.1899433, 55.9514327 -3.1791744, 55.9518970 -3.1777525, 55.9518910 -3.1778598, 55.9521229 -3.1772750, 55.9605194 -3.1745432, 55.9544020 -3.1965541, 55.9562232 -3.1975795, 55.9630294 -3.1912727, 55.9577847 -3.1940743, 55.9622871 -3.1825372, 55.9593570 -3.1774973, 55.9514170 -3.1863190, 55.9460028 -3.2186189, 55.9484476 -3.2048878, 55.9440199 -3.1928377, 55.9467640 -3.2049217, 55.9466922 -3.2046189, 55.9524190 -3.2092630, 55.9435870 -3.1925590, 55.9427426 -3.1970190, 55.9529708 -3.1966729, 55.9529509 -3.1973404, 55.9531629 -3.1967629, 55.9524364 -3.1984379, 55.9526199 -3.1984725, 55.9533643 -3.1992326, 55.9532211 -3.1977817, 55.9522016 -3.2030725, 55.9532266 -3.2030444, 55.9600994 -3.1836563, 55.9571910 -3.2077708, 55.9470088 -3.1865074, 55.9446418 -3.1854453, 55.9438908 -3.1833205, 55.9436868 -3.1832528, 55.9463737 -3.1994809, 55.9463134 -3.2154766, 55.9463231 -3.2360054, 55.9427030 -3.2368673, 55.9507774 -3.2093075, 55.9506980 -3.2096052, 55.9509598 -3.2058075, 55.9437304 -3.2030828, 55.9514618 -3.2102379, 55.9582002 -3.1893276, 55.9579896 -3.1895662, 55.9562957 -3.1887858, 55.9581296 -3.1899414, 55.9557640 -3.1920188, 55.9565980 -3.1890916, 55.9583902 -3.1900711, 55.9581410 -3.1892356, 55.9575530 -3.1882786, 55.9587130 -3.1904804, 55.9407026 -3.1770791, 55.9660506 -3.1753198, 55.9649789 -3.1762500, 55.9628481 -3.1784226, 55.9695475 -3.1723616, 55.9675478 -3.1740989, 55.9613719 -3.1803838, 55.9585109 -3.1834793, 55.9555565 -3.1887072, 55.9551422 -3.1884173, 55.9555069 -3.1890511, 55.9547649 -3.1878395, 55.9554577 -3.1892938, 55.9553532 -3.1898766, 55.9555667 -3.1925204, 55.9552540 -3.1886031, 55.9550127 -3.1965360, 55.9588948 -3.2226026, 55.9588367 -3.2230381, 55.9540378 -3.1993360, 55.9429686 -3.2825386, 55.9445040 -3.2050398, 55.9454485 -3.2050417, 55.9398717 -3.2039988, 55.9446579 -3.2044205, 55.9462626 -3.2131325, 55.9416940 -3.2014772, 55.9416091 -3.2031920, 55.9423653 -3.2037351, 55.9433862 -3.2033732, 55.9407524 -3.2038350, 55.9416963 -3.2026683, 55.9416543 -3.2032165, 55.9389808 -3.2114914, 55.9265332 -3.2084291, 55.9431688 -3.2091385, 55.9604656 -3.1823666, 55.9603525 -3.1825331, 55.9463110 -3.2152697, 55.9370074 -3.2365558, 55.9460303 -3.2165960, 55.9371218 -3.2349492, 55.9374853 -3.2343996, 55.9374212 -3.2344539, 55.9457249 -3.2172529, 55.9338981 -3.2104304, 55.9277408 -3.2091546, 55.9399617 -3.1815162, 55.9526370 -3.1734364, 55.9129439 -3.1781448, 55.9735700 -3.1770333, 55.9764377 -3.1660066, 55.9773601 -3.2412136, 55.9775460 -3.2409559, 55.9589778 -3.2242327, 55.9567573 -3.1568591, 55.9472046 -3.1869088, 55.9643900 -3.1550119, 55.9755855 -3.1668607, 55.9524631 -3.1889421, 55.9418897 -3.2048011, 55.9417451 -3.2041258, 55.9409114 -3.2097700, 55.9448531 -3.2027015, 55.9449462 -3.2026298, 55.9450377 -3.2025610, 55.9471998 -3.1971218, 55.9472163 -3.1970651, 55.9472459 -3.1969515, 55.9375217 -3.2165181, 55.9430311 -3.2839568, 55.9678281 -3.2362601, 55.9786133 -3.1829055, 55.9709053 -3.1720004, 55.9755743 -3.1668014, 55.9428019 -3.2845529, 55.9427464 -3.2832327, 55.9427891 -3.2843330, 55.9426809 -3.2803231, 55.9424266 -3.2803806, 55.9422047 -3.2791657, 55.9427331 -3.2828068, 55.9513163 -3.2950780, 55.9512626 -3.2960170, 55.9428432 -3.2880774, 55.9430772 -3.2879515, 55.9429213 -3.2881096, 55.9410736 -3.2842578, 55.9656426 -3.2745290, 55.9417354 -3.2158291, 55.9414320 -3.2180926, 55.9382403 -3.1915930, 55.9275327 -3.2095136, 55.9748738 -3.2379781, 55.9561231 -3.1987844, 55.9391841 -3.2128654, 55.9751211 -3.1634618, 55.9704606 -3.1709009, 55.9235204 -3.1746176, 55.9234436 -3.1750692, 55.9233856 -3.1748328, 55.9431786 -3.2083293, 55.9398689 -3.2196084, 55.9400709 -3.2188789, 55.9407471 -3.2168537, 55.9432142 -3.2138092, 55.9398073 -3.2198459, 55.9592742 -3.2136077, 55.9582032 -3.2095515, 55.9592301 -3.2130079, 55.9589676 -3.2124402, 55.9585618 -3.2094592, 55.9589560 -3.2081809, 55.9595314 -3.2070282, 55.9463571 -3.2082808, 55.9481261 -3.2060302, 55.9497597 -3.2074169, 55.9514814 -3.2042156, 55.9497095 -3.2073063, 55.9514958 -3.2041313, 55.9504340 -3.1780145, 55.9510376 -3.1777222, 55.9181892 -3.2127084, 55.9737983 -3.1644035, 55.9231651 -3.2343395, 55.9351263 -3.1792596, 55.9428222 -3.1894552, 55.9430175 -3.1898549, 55.9462604 -3.1881758, 55.9396572 -3.1699848, 55.9400291 -3.1697303, 55.9413945 -3.1836207, 55.9402730 -3.1715946, 55.9526606 -3.2018469, 55.9472291 -3.1962216, 55.9529201 -3.1893290, 55.9486923 -3.1882174, 55.9477347 -3.1956994, 55.9497047 -3.1880533, 55.9495157 -3.1879514, 55.9404684 -3.1808980, 55.9504304 -3.2082409, 55.9534027 -3.1920297, 55.9635396 -3.1950865, 55.9590719 -3.1912520, 55.9583336 -3.2079185, 55.9540290 -3.2007355, 55.9544769 -3.1974573, 55.9539860 -3.1972034, 55.9494269 -3.1858448, 55.9502517 -3.1806273, 55.9504584 -3.1859540, 55.9512562 -3.1805063, 55.9528901 -3.1862028, 55.9528944 -3.1767101, 55.9539319 -3.1873789, 55.9561721 -3.1565201, 55.9420361 -3.2670729, 55.9471624 -3.2089521, 55.9445511 -3.2071402, 55.9462028 -3.1849929, 55.9569349 -3.1875427, 55.9700780 -3.1719013, 55.9364386 -3.1946827, 55.9370518 -3.2026703, 55.9437069 -3.1924656, 55.9348044 -3.1944420, 55.9456158 -3.1903629, 55.9381899 -3.1951964, 55.9348402 -3.1942906, 55.9351301 -3.1942645, 55.9436826 -3.2029150, 55.9385199 -3.1950385, 55.9385854 -3.1951941, 55.9383344 -3.1929792, 55.9353447 -3.1944175, 55.9459485 -3.2060162, 55.9450934 -3.2049232, 55.9392818 -3.1963912, 55.9375961 -3.1783519, 55.9383355 -3.1931776, 55.9361196 -3.1946362, 55.9384241 -3.1975168, 55.9379608 -3.1783021, 55.9415183 -3.1817519, 55.9267334 -3.2093460, 55.9432724 -3.2018829, 55.9486091 -3.1930739, 55.9485570 -3.1935392, 55.9481394 -3.1916619, 55.9575992 -3.2083598, 55.9569966 -3.1852890, 55.9561918 -3.1852745, 55.9473239 -3.1974729, 55.9474125 -3.1971623, 55.9475008 -3.1967728, 55.9478313 -3.1953377, 55.9479185 -3.1950739, 55.9479678 -3.1948846, 55.9492026 -3.1944624, 55.9495199 -3.1939483, 55.9468275 -3.1914896, 55.9488466 -3.1866449, 55.9487847 -3.1860065, 55.9438771 -3.2190360, 55.9413923 -3.2234609, 55.9524023 -3.1867211, 55.9555053 -3.1853840, 55.9521101 -3.1881430, 55.9522776 -3.1904447, 55.9466753 -3.2083107, 55.9478903 -3.1915085, 55.9459447 -3.1909020, 55.9478547 -3.1881410, 55.9486424 -3.1865786, 55.9496783 -3.1871360, 55.9485947 -3.1945597, 55.9484900 -3.1938871, 55.9520969 -3.1883010, 55.9486315 -3.1920775, 55.9472830 -3.1916106, 55.9457476 -3.1909342, 55.9485463 -3.1864684, 55.9483926 -3.1950195, 55.9485587 -3.1943530, 55.9480207 -3.1915820, 55.9460305 -3.1922264, 55.9483248 -3.1864306, 55.9492997 -3.1869455, 55.9484218 -3.1951206, 55.9485926 -3.1942539, 55.9476976 -3.1919549, 55.9509189 -3.1904398, 55.9478483 -3.1913274, 55.9496956 -3.1870785, 55.9462614 -3.2144247, 55.9426513 -3.2033557, 55.9561166 -3.2020559, 55.9575951 -3.1993135, 55.9560603 -3.1927566, 55.9494442 -3.2078565, 55.9522731 -3.2016642, 55.9530413 -3.1976567, 55.9423834 -3.1891736, 55.9577513 -3.2066055, 55.9539831 -3.1996939, 55.9601534 -3.2010233, 55.9474107 -3.1857005, 55.9504170 -3.1756059, 55.9505168 -3.1753619, 55.9519673 -3.1889358, 55.9520301 -3.1896005, 55.9521145 -3.1891397, 55.9245851 -3.2217825, 55.9664606 -3.1948523, 55.9659495 -3.1909016, 55.9369603 -3.2237972, 55.9322431 -3.2282730, 55.9073951 -3.2563577, 55.9073527 -3.2575986, 55.9423575 -3.1449454, 55.9430156 -3.1499440, 55.9431294 -3.1482150, 55.9433496 -3.1499648, 55.9434845 -3.1482740, 55.9442758 -3.1483804, 55.9447373 -3.1490083, 55.9396025 -3.1913584, 55.9352245 -3.2129869, 55.9732340 -3.1870517, 55.9431483 -3.2208634, 55.9431533 -3.2208722, 55.9431672 -3.2208971, 55.9444973 -3.2038097, 55.9454456 -3.2056917, 55.9455070 -3.2057169, 55.9442841 -3.1970931, 55.9453196 -3.2056398, 55.9383522 -3.2265372, 55.9412518 -3.2237478, 55.9390758 -3.2258785, 55.9431598 -3.2208839, 55.9588831 -3.2114011, 55.9650310 -3.1952624, 55.9445881 -3.2014053, 55.9421366 -3.1818857, 55.9388452 -3.1790659, 55.9452272 -3.1845601, 55.9350041 -3.1939677, 55.9585188 -3.1644249, 55.9593563 -3.2549832, 55.9601436 -3.2558120, 55.9603846 -3.2565330, 55.9604422 -3.2566980, 55.9748372 -3.2381839, 55.9751724 -3.2380439, 55.9711773 -3.2421326, 55.9751452 -3.2384707, 55.9712260 -3.2422400, 55.9430340 -3.1847582, 55.9431510 -3.1850183, 55.9446444 -3.1969562, 55.9437264 -3.1923238, 55.9428649 -3.2112864, 55.9393598 -3.2263639, 55.9405122 -3.2247254, 55.9437303 -3.2113198, 55.9517596 -3.2028162, 55.9450561 -3.1854467, 55.9454644 -3.1843039, 55.9447791 -3.1851557, 55.9447317 -3.1852668, 55.9446739 -3.1853850, 55.9506503 -3.1887550, 55.9586760 -3.1904335, 55.9459157 -3.2048309, 55.9456904 -3.2047487, 55.9622493 -3.1960278, 55.9488399 -3.2138338, 55.9508444 -3.2094497, 55.9506309 -3.2061083, 55.9510944 -3.2060491, 55.9544956 -3.1996255, 55.9545750 -3.1991152, 55.9525280 -3.2044479, 55.9524566 -3.2041059, 55.9533167 -3.2002814, 55.9533428 -3.2967685, 55.9534342 -3.2960765, 55.9534019 -3.2962213, 55.9419274 -3.2677863, 55.9534128 -3.2964375, 55.9512581 -3.2961392, 55.9534313 -3.2963500, 55.9379028 -3.1838572, 55.9385188 -3.1804921, 55.9440195 -3.1801845, 55.9767898 -3.1746009, 55.9378592 -3.1998264, 55.9655439 -3.2732183, 55.9656127 -3.2709323, 55.9651310 -3.2741321, 55.9655924 -3.2711422, 55.9653338 -3.2728138, 55.9655262 -3.2738894, 55.9656260 -3.2705743, 55.9661413 -3.2745340, 55.9651286 -3.2696496, 55.9655823 -3.2732115, 55.9651389 -3.2742406, 55.9537345 -3.1902975, 55.9536616 -3.1912680, 55.9520918 -3.1918008, 55.9225906 -3.2492376, 55.9251539 -3.2458905, 55.9248346 -3.2543275, 55.9252669 -3.2596328, 55.9374976 -3.1806164, 55.9389517 -3.1803682, 55.9372983 -3.1808444, 55.9395810 -3.1916680, 55.9382960 -3.1915886, 55.9437949 -3.1828597, 55.9415209 -3.1785933, 55.9449358 -3.1841532, 55.9419979 -3.1791165, 55.9443629 -3.1809005, 55.9457233 -3.1826212, 55.9403673 -3.1759756, 55.9578375 -3.1855691, 55.9577009 -3.1853926, 55.9570718 -3.1867391, 55.9573509 -3.1857841, 55.9577414 -3.1853419, 55.9574003 -3.1857205, 55.9578226 -3.1852754, 55.9572831 -3.1858711, 55.9580954 -3.1850322, 55.9574839 -3.1856131, 55.9582192 -3.1849767, 55.9576457 -3.1858045, 55.9248045 -3.2100047, 55.9247025 -3.2100678, 55.9274854 -3.2091226, 55.9269189 -3.2094159, 55.9289035 -3.2093410, 55.9254653 -3.2096301, 55.9252500 -3.2096757, 55.9269226 -3.2090647, 55.9291119 -3.2097442, 55.9259390 -3.2095229, 55.9280313 -3.2092020, 55.9246481 -3.2100800, 55.9320111 -3.2097789, 55.9244264 -3.2102969, 55.9294664 -3.2094139, 55.9294013 -3.2094010, 55.9267933 -3.2094073, 55.9293168 -3.2093923, 55.9262238 -3.2094800, 55.9286670 -3.2092547, 55.9245093 -3.2096867, 55.9549741 -3.1521203, 55.9549237 -3.1446490, 55.9549417 -3.1475185, 55.9554516 -3.1404952, 55.9381665 -3.2180530, 55.9693165 -3.1725832, 55.9608511 -3.1806444, 55.9785772 -3.1680183, 55.9701325 -3.1699531, 55.9653792 -3.1766246, 55.9703622 -3.1822317, 55.9759825 -3.1825687, 55.9797482 -3.1979763, 55.9073679 -3.2580475, 55.9076454 -3.2556144, 55.9431400 -3.2080436, 55.9625044 -3.2362710, 55.9627903 -3.2341275, 55.9581180 -3.1897621, 55.9581019 -3.1901113, 55.9628897 -3.1944604, 55.9514989 -3.2098689, 55.9569734 -3.2030163, 55.9535853 -3.1955773, 55.9263065 -3.2084235, 55.9174952 -3.2773520, 55.9375106 -3.2261873, 55.9378921 -3.2318406, 55.9390952 -3.2259848, 55.9334605 -3.2453422, 55.9414710 -3.2036216, 55.9295730 -3.1756342, 55.9353379 -3.1982447, 55.9240780 -3.1729198, 55.9333823 -3.1800372, 55.9269676 -3.1644151, 55.9264292 -3.1646478, 55.9275049 -3.1644260, 55.9275653 -3.1640491, 55.9275714 -3.1644217, 55.9274305 -3.1643195, 55.9274977 -3.1640447, 55.9242094 -3.1728587, 55.9239552 -3.1723571, 55.9240756 -3.1746808, 55.9241838 -3.1735301, 55.9230650 -3.1714407, 55.9232656 -3.1716767, 55.9542530 -3.1779868, 55.9483459 -3.2095132, 55.9606111 -3.1812892, 55.9657458 -3.1755792, 55.9682249 -3.1741376, 55.9634189 -3.1784175, 55.9661107 -3.1752697, 55.9683184 -3.1734262, 55.9749611 -3.1671987, 55.9637290 -3.1774461, 55.9660965 -3.1759111, 55.9667735 -3.1747150, 55.9725429 -3.1752826, 55.9644679 -3.1766608, 55.9685007 -3.1733101, 55.9621755 -3.1792604, 55.9456603 -3.2057801, 55.9462480 -3.2126362, 55.9736032 -3.1729794, 55.9375910 -3.1784346, 55.9371960 -3.1779642, 55.9312746 -3.1719521, 55.9338048 -3.1784443, 55.9492753 -3.1855034, 55.9473523 -3.1859232, 55.9410964 -3.1808815, 55.9375777 -3.1779460, 55.9358839 -3.1759899, 55.9313945 -3.1717080, 55.9269307 -3.1736088, 55.9345630 -3.1791442, 55.9356662 -3.2012277, 55.9382578 -3.1790905, 55.9378124 -3.1781642, 55.9316339 -3.1716474, 55.9354709 -3.1798259, 55.9504193 -3.1866153, 55.9519102 -3.2244910, 55.9574202 -3.1618262, 55.9506617 -3.1888466, 55.9490741 -3.1893997, 55.9492048 -3.1931875, 55.9529899 -3.1973604, 55.9528284 -3.1902144, 55.9527142 -3.1913317, 55.9567702 -3.1807456, 55.9533414 -3.1913502, 55.9525962 -3.1906138, 55.9428288 -3.1846229, 55.9458839 -3.1909124, 55.9456783 -3.1909904, 55.9463053 -3.1838351, 55.9849796 -3.1929699, 55.9242691 -3.2516299, 55.9236740 -3.2505839, 55.9241577 -3.2519068, 55.9268426 -3.1666054, 55.9323166 -3.2101798, 55.9271775 -3.2122387, 55.9406634 -3.2170179, 55.9321089 -3.2101997, 55.9309744 -3.2100917, 55.9308794 -3.2100746, 55.9217848 -3.2112290, 55.9224982 -3.2116095, 55.9193505 -3.1670289, 55.9198686 -3.1673390, 55.9500237 -3.1859641, 55.9522020 -3.2008125, 55.9437591 -3.2187146, 55.9504916 -3.1861886, 55.9506853 -3.1853773, 55.9513815 -3.1997735, 55.9513880 -3.1997267, 55.9514184 -3.1995207, 55.9514207 -3.1994931, 55.9517524 -3.1953405, 55.9517542 -3.1953203, 55.9517756 -3.1951610, 55.9517804 -3.1951206, 55.9517840 -3.1950856, 55.9517917 -3.1950229, 55.9517953 -3.1949985, 55.9517994 -3.1949645, 55.9518036 -3.1949390, 55.9518048 -3.1949146, 55.9518083 -3.1948806, 55.9518137 -3.1948519, 55.9518190 -3.1947903, 55.9518220 -3.1947584, 55.9518274 -3.1947297, 55.9518298 -3.1947042, 55.9518303 -3.1953437, 55.9518595 -3.1951780, 55.9518708 -3.1951291, 55.9518910 -3.1950091, 55.9518946 -3.1942642, 55.9518982 -3.1942423, 55.9518987 -3.1949751, 55.9519025 -3.1942205, 55.9519061 -3.1941986, 55.9519071 -3.1949177, 55.9519083 -3.1941742, 55.9519148 -3.1941472, 55.9519169 -3.1941292, 55.9519234 -3.1941009, 55.9519350 -3.1947287, 55.9519479 -3.1939300, 55.9519536 -3.1938927, 55.9519594 -3.1938606, 55.9519651 -3.1938272, 55.9519673 -3.1938105, 55.9519709 -3.1937809, 55.9519730 -3.1937616, 55.9519772 -3.1945152, 55.9519820 -3.1944854, 55.9519831 -3.1937064, 55.9519867 -3.1936768, 55.9519909 -3.1944302, 55.9519932 -3.1936370, 55.9519969 -3.1943866, 55.9519982 -3.1935997, 55.9520083 -3.1935406, 55.9520094 -3.1942932, 55.9520141 -3.1942687, 55.9520165 -3.1942528, 55.9520195 -3.1942305, 55.9520205 -3.1934686, 55.9520242 -3.1942103, 55.9520256 -3.1934287, 55.9520278 -3.1941859, 55.9520328 -3.1933979, 55.9520385 -3.1933568, 55.9520464 -3.1932976, 55.9520498 -3.1940914, 55.9520534 -3.1940627, 55.9520544 -3.1932501, 55.9520575 -3.1940329, 55.9520580 -3.1932257, 55.9520617 -3.1940128, 55.9520644 -3.1931845, 55.9520781 -3.1931100, 55.9522180 -3.2035286, 55.9522476 -3.2035315, 55.9522761 -3.2035428, 55.9523007 -3.1932461, 55.9523075 -3.1931928, 55.9523702 -3.1928516, 55.9523787 -3.1927914, 55.9524973 -3.1927038, 55.9525369 -3.1928318, 55.9525391 -3.1927678, 55.9638490 -3.2091504, 55.9389663 -3.2013275, 55.9700851 -3.1735484, 55.9701547 -3.1858393, 55.9514046 -3.2116423, 55.9413339 -3.2710077, 55.9413445 -3.2708146, 55.9710344 -3.2100024, 55.9710707 -3.2092740, 55.9629549 -3.2004677, 55.9710509 -3.2096703, 55.9342382 -3.1671304, 55.9443702 -3.1853406, 55.9396258 -3.1829811, 55.9407158 -3.1849880, 55.9409652 -3.1851060, 55.9411294 -3.1853959, 55.9409378 -3.1851043, 55.9409212 -3.1850865, 55.9408927 -3.1851058, 55.9408824 -3.1851412, 55.9250719 -3.2093337, 55.9695952 -3.1711560, 55.9581325 -3.1717054, 55.9593630 -3.1715527, 55.9597639 -3.1717416, 55.9596581 -3.1714061, 55.9609479 -3.1710370, 55.9625525 -3.1711731, 55.9632264 -3.1710139, 55.9643521 -3.1707935, 55.9645111 -3.1702564, 55.9685365 -3.1680214, 55.9672024 -3.1745196, 55.9662045 -3.1758253, 55.9536726 -3.1905920, 55.9699452 -3.1597683, 55.9691782 -3.1658280, 55.9520610 -3.1917849, 55.9337205 -3.1670857, 55.9332092 -3.1662888, 55.9330191 -3.1660325, 55.9332619 -3.1663855, 55.9489972 -3.1907968, 55.9496660 -3.2095409, 55.9466096 -3.2157282, 55.9489839 -3.1929807, 55.9549137 -3.2859373, 55.9269556 -3.1843910, 55.9555761 -3.2863843, 55.9406804 -3.1723240, 55.9550663 -3.1537383, 55.9277228 -3.2305307, 55.9338258 -3.2369899, 55.9437419 -3.2035084, 55.9169756 -3.2120428, 55.9548055 -3.1927722, 55.9541892 -3.2015393, 55.9532255 -3.2070146, 55.9427851 -3.2011908, 55.9273394 -3.1875852, 55.9273713 -3.1874512, 55.9441079 -3.1919941, 55.9265860 -3.2092934, 55.9503190 -3.1916579, 55.9469467 -3.1868746, 55.9469811 -3.1866713, 55.9349914 -3.1790260, 55.9657991 -3.2319443, 55.9509401 -3.1790287, 55.9527199 -3.1794014, 55.9632358 -3.1796142, 55.9501695 -3.1909428, 55.9274324 -3.1996630, 55.9310201 -3.2640394, 55.9303417 -3.2637536, 55.9303636 -3.2638502, 55.9305298 -3.2635743, 55.9308144 -3.2639192, 55.9018528 -3.2249445, 55.9458278 -3.1977595, 55.9357289 -3.2103587, 55.9426772 -3.2016327, 55.9459543 -3.2110196, 55.9490200 -3.2103883, 55.9593280 -3.2143392, 55.9545977 -3.1418305, 55.9374032 -3.1711512, 55.9392787 -3.1786578, 55.9392916 -3.1784800, 55.9410201 -3.1806656, 55.9409384 -3.1805218, 55.9435127 -3.1836307, 55.9446441 -3.1839145, 55.9353259 -3.1974274, 55.9356823 -3.2014008, 55.9372592 -3.2021206, 55.9432272 -3.2066379, 55.9716423 -3.1733651, 55.9780149 -3.1804472, 55.9803312 -3.1788000, 55.9484950 -3.1869711, 55.9485719 -3.1869309, 55.9429165 -3.1831794, 55.9463406 -3.1997703, 55.9750142 -3.2192282, 55.9506808 -3.1887592, 55.9700986 -3.1698502, 55.9702196 -3.1702168, 55.9752429 -3.1805784, 55.9750124 -3.1806885, 55.9753808 -3.1803118, 55.9273555 -3.2742181, 55.9276617 -3.2736646, 55.9277478 -3.2723148, 55.9278153 -3.2730433, 55.9312295 -3.1720873, 55.9312185 -3.1718146, 55.9367281 -3.2073693, 55.9194696 -3.2656157, 55.9359755 -3.1801084, 55.9344136 -3.2126517, 55.9240601 -3.2517049, 55.9265097 -3.2760604, 55.9268770 -3.2740426, 55.9340161 -3.1746636, 55.9520998 -3.1898519, 55.9522424 -3.1890178, 55.9467924 -3.1855561, 55.9428529 -3.2085302, 55.9438132 -3.2185860, 55.9457016 -3.1899747, 55.9606571 -3.2015356, 55.9622612 -3.1989905, 55.9436603 -3.2189402, 55.9428821 -3.2224806, 55.9441478 -3.2185498, 55.9453485 -3.2171316, 55.9528443 -3.2826346, 55.9525739 -3.2905955, 55.9269823 -3.1640067, 55.9269746 -3.1638464, 55.9258469 -3.1648168, 55.9536039 -3.2004645, 55.9541733 -3.1959554, 55.9539718 -3.1946063, 55.9557171 -3.1922868, 55.9486496 -3.1940701, 55.9479383 -3.1949977, 55.9471021 -3.1971869, 55.9459223 -3.2043016, 55.9410985 -3.2183716, 55.9417528 -3.2165088, 55.9230518 -3.1726728, 55.9233383 -3.1720153, 55.9229794 -3.2110494, 55.9223982 -3.2108300, 55.9224491 -3.2107749, 55.9624754 -3.2326403, 55.9531172 -3.2042505, 55.9547774 -3.2196877, 55.9610228 -3.2289430, 55.9771785 -3.2459884, 55.9272641 -3.2496416, 55.9503933 -3.1777718, 55.9611416 -3.1627621, 55.9710118 -3.1729902, 55.9484210 -3.1872643, 55.9666873 -3.1898666, 55.9442196 -3.1823211, 55.9486488 -3.1837239, 55.9310070 -3.1625786, 55.9310400 -3.1625989, 55.9285398 -3.2100476, 55.9503683 -3.2078227, 55.9492302 -3.1861131, 55.9464428 -3.2144326, 55.9302487 -3.1758834, 55.9302945 -3.1759181, 55.9305753 -3.1761248, 55.9303453 -3.1759564, 55.9305617 -3.1761991, 55.9149038 -3.1653059, 55.9149515 -3.1653569, 55.9192762 -3.1670567, 55.9190764 -3.1840963, 55.9275143 -3.1636040, 55.9269718 -3.1636040, 55.9448310 -3.1949994, 55.9447936 -3.1961912, 55.9446376 -3.1965778, 55.9445589 -3.1947495, 55.9444142 -3.1965059, 55.9447377 -3.1971839, 55.9442766 -3.1978649, 55.9590496 -3.2185241, 55.9634109 -3.1905385, 55.9570806 -3.1866874, 55.9579836 -3.1811283, 55.9419851 -3.1817354, 55.9420181 -3.1817682, 55.9426269 -3.1823902, 55.9441244 -3.1834199, 55.9436319 -3.1832335, 55.9394450 -3.1794906, 55.9429144 -3.1826352, 55.9449915 -3.1837960, 55.9387155 -3.1789608, 55.9425012 -3.1822831, 55.9432017 -3.2024423, 55.9417000 -3.2026025, 55.9324266 -3.1585275, 55.9396108 -3.1802505, 55.9226141 -3.1712965, 55.9441352 -3.1838172, 55.9401027 -3.1806113, 55.9430010 -3.1832231, 55.9405968 -3.1809949, 55.9417832 -3.1819934, 55.9389125 -3.1796605, 55.9422369 -3.1824721, 55.9407127 -3.1810825, 55.9416801 -3.1819013, 55.9418646 -3.1820790, 55.9425068 -3.1827300, 55.9566001 -3.1617669, 55.9485654 -3.2238711, 55.9601987 -3.1784502, 55.9417129 -3.1849464, 55.9417884 -3.1851916, 55.9418282 -3.1853346, 55.9418526 -3.1852528, 55.9418744 -3.1849589, 55.9418899 -3.1847817, 55.9418905 -3.1855192, 55.9419227 -3.1854387, 55.9420262 -3.1854659, 55.9421747 -3.1855648, 55.9497766 -3.1880920, 55.9412750 -3.1446800, 55.9415424 -3.1458664, 55.9381006 -3.2918884, 55.9521152 -3.1889313, 55.9348643 -3.1686663, 55.9461675 -3.2083866, 55.9603728 -3.2011331, 55.9600158 -3.2009544, 55.9599868 -3.2009399, 55.9456493 -3.2062730, 55.9330745 -3.2607364, 55.9207513 -3.1600951, 55.9565253 -3.1867411, 55.9382875 -3.1812525, 55.9387673 -3.1815841, 55.9376979 -3.1808416, 55.9393704 -3.1819547, 55.9386963 -3.1815433, 55.9391687 -3.1818314, 55.9391994 -3.1818509, 55.9418959 -3.1837485, 55.9418211 -3.1837096, 55.9520027 -3.2062005, 55.9523984 -3.2038646, 55.9530497 -3.2000438, 55.9534470 -3.1976948, 55.9535975 -3.1968237, 55.9438526 -3.1964947, 55.9558685 -3.2023407, 55.9357235 -3.2103787, 55.9564824 -3.2020734, 55.9251361 -3.2602340, 55.9254914 -3.2593484, 55.9226813 -3.2869674, 55.9226804 -3.2865306, 55.9244531 -3.2772357, 55.9457080 -3.2036262, 55.9617202 -3.1798783, 55.9609525 -3.1843888, 55.9718740 -3.2631817, 55.9726124 -3.2667334, 55.9447090 -3.1977550, 55.9379620 -3.1812769, 55.9562823 -3.1983948, 55.9511467 -3.1887459, 55.9491345 -3.1940862, 55.9418000 -3.1789399, 55.9460012 -3.2184457, 55.9354932 -3.2368783, 55.9811288 -3.1900190, 55.9504645 -3.1888468, 55.9513741 -3.1884100, 55.9561109 -3.1927794, 55.9592101 -3.2187091, 55.9592873 -3.2187611, 55.9591452 -3.2145692, 55.9614502 -3.1995923, 55.9556129 -3.1925330, 55.9506454 -3.1833436, 55.9501282 -3.1886800, 55.9492040 -3.1911503, 55.9501474 -3.1919776, 55.9501671 -3.1923382, 55.9504252 -3.2001729, 55.9505066 -3.1997917, 55.9527128 -3.2015822, 55.9619626 -3.1978807, 55.9563435 -3.1858006, 55.9529904 -3.1899776, 55.9735019 -3.1681649, 55.9584216 -3.1835648, 55.9673363 -3.2476441, 55.9592575 -3.1901766, 55.9425986 -3.2065382, 55.9480934 -3.1947062, 55.9478771 -3.1951990, 55.9375197 -3.2086269, 55.9611799 -3.1900622, 55.9475726 -3.1917992, 55.9282565 -3.2096375, 55.9443966 -3.1836641, 55.9327137 -3.2102744, 55.9563144 -3.1853375, 55.9563929 -3.1855108, 55.9560587 -3.1853594, 55.9559469 -3.1856673, 55.9780456 -3.1806042, 55.9781936 -3.1809052, 55.9387622 -3.1734552, 55.9387870 -3.1735062, 55.9388074 -3.1735482, 55.9388275 -3.1735961, 55.9389888 -3.1717191, 55.9390958 -3.1739542, 55.9396811 -3.1731682, 55.9400547 -3.1761388, 55.9408960 -3.1768412, 55.9566044 -3.1856275, 55.9593445 -3.1829672, 55.9542648 -3.1862231, 55.9604516 -3.1823872, 55.9605594 -3.1822284, 55.9613996 -3.1820673, 55.9603650 -3.1816054, 55.9593294 -3.1826849, 55.9606880 -3.1810699, 55.9369677 -3.2108383, 55.9499129 -3.2079909, 55.9492651 -3.1928568, 55.9492681 -3.1928747, 55.9556920 -3.1924308, 55.9539559 -3.1864291, 55.9456948 -3.2044661, 55.9595803 -3.1826155, 55.9595116 -3.1827051, 55.9607917 -3.1806186, 55.9505000 -3.1893565, 55.9509718 -3.1888797, 55.9509023 -3.1888514, 55.9602934 -3.1864558, 55.9580853 -3.1891489, 55.9525959 -3.1925077, 55.9506624 -3.1904103, 55.9511065 -3.1889687, 55.9281988 -3.2092294, 55.9275814 -3.2091159, 55.9219280 -3.1788973, 55.9492455 -3.1893451, 55.9498216 -3.1888060, 55.9456721 -3.2183737, 55.9579923 -3.1851333, 55.9375402 -3.2341841, 55.9374322 -3.2336311, 55.9384149 -3.2307759, 55.9375260 -3.2342477, 55.9368627 -3.2362988, 55.9377385 -3.2338819, 55.9518891 -3.1996221, 55.9520193 -3.2031623, 55.9571270 -3.1879784, 55.9575859 -3.1880531, 55.9489093 -3.1872526, 55.9489961 -3.1873020, 55.9497912 -3.1875398, 55.9469260 -3.1971063, 55.9468711 -3.1973098, 55.9468419 -3.1974179, 55.9477216 -3.1942184, 55.9474807 -3.1950056, 55.9492301 -3.1869105, 55.9490432 -3.1868165, 55.9498654 -3.1872300, 55.9499346 -3.1872649, 55.9495368 -3.1870648, 55.9366262 -3.2789069, 55.9504575 -3.1842655, 55.9495411 -3.1835954, 55.9505080 -3.1843266, 55.9496224 -3.1870411, 55.9503520 -3.1853604, 55.9503997 -3.1842260, 55.9490417 -3.1857303, 55.9566704 -3.1720331, 55.9551528 -3.1962671, 55.9506736 -3.1858277, 55.9506040 -3.1855672, 55.9505002 -3.1861418, 55.9332363 -3.2293846, 55.9431451 -3.1776866, 55.9498761 -3.1930603, 55.9499058 -3.1934663, 55.9498145 -3.1930381, 55.9508603 -3.1830939, 55.9486873 -3.1939415, 55.9663595 -3.1750558, 55.9645972 -3.1765292, 55.9694744 -3.1724296, 55.9692457 -3.1726386, 55.9659918 -3.1753687, 55.9513595 -3.2114694, 55.9503586 -3.2093043, 55.9489892 -3.2104514, 55.9509410 -3.2098198, 55.9494948 -3.2100860, 55.9443540 -3.2014790, 55.9423982 -3.2032619, 55.9428623 -3.2034086, 55.9410761 -3.2032851, 55.9413655 -3.2032652, 55.9408596 -3.2037641, 55.9509436 -3.1826714, 55.9511264 -3.1815271, 55.9485211 -3.1937338, 55.9457073 -3.2017549, 55.9494976 -3.1832041, 55.9493407 -3.1826552, 55.9445530 -3.1851474, 55.9342354 -3.2104629, 55.9519877 -3.1777932, 55.9221514 -3.1535849, 55.9216610 -3.1548109, 55.9221123 -3.1536690, 55.9219920 -3.1539768, 55.9218556 -3.1543133, 55.9218887 -3.1542292, 55.9216028 -3.1545854, 55.9216297 -3.1545295, 55.9217490 -3.1545148, 55.9512729 -3.2953795, 55.9508519 -3.2915917, 55.9508650 -3.2918021, 55.9510584 -3.2907423, 55.9511428 -3.2906352, 55.9524090 -3.1999436, 55.9535635 -3.1977820, 55.9538687 -3.1922380, 55.9773393 -3.1724494, 55.9769742 -3.1722741, 55.9570561 -3.1868309, 55.9545683 -3.1975115, 55.9533858 -3.2003255, 55.9521910 -3.1770091, 55.9789535 -3.2110248, 55.9485446 -3.1779102, 55.9449763 -3.1994667, 55.9493277 -3.1830946, 55.9308970 -3.2761417, 55.9308699 -3.2764985, 55.9449994 -3.1905191, 55.9450146 -3.1904231, 55.9450298 -3.1903272, 55.9450449 -3.1902313, 55.9451338 -3.1906532, 55.9453646 -3.1914973, 55.9474907 -3.1912396, 55.9455586 -3.1906923, 55.9473547 -3.1907578, 55.9472481 -3.1873561, 55.9472634 -3.1872646, 55.9472809 -3.1871602, 55.9472964 -3.1870676, 55.9475422 -3.1874943, 55.9475575 -3.1874028, 55.9475750 -3.1872984, 55.9475905 -3.1872058, 55.9385351 -3.1788147, 55.9389978 -3.1791896, 55.9390424 -3.1790541, 55.9385297 -3.1776186, 55.9393013 -3.1793452, 55.9379216 -3.1782656, 55.9395588 -3.1795881, 55.9471706 -3.1875904, 55.9472026 -3.1876928, 55.9472333 -3.1877797, 55.9473065 -3.1867806, 55.9473617 -3.1867210, 55.9474310 -3.1878868, 55.9474791 -3.1878348, 55.9474896 -3.1894394, 55.9475351 -3.1877754, 55.9476372 -3.1868653, 55.9476704 -3.1869573, 55.9477335 -3.1882821, 55.9410033 -3.1776105, 55.9411719 -3.1809503, 55.9407497 -3.1806742, 55.9407899 -3.1790526, 55.9420479 -3.1791611, 55.9390017 -3.1784821, 55.9215832 -3.1791111, 55.9466232 -3.1903104, 55.9398994 -3.2194910, 55.9401000 -3.2187735, 55.9404460 -3.2175554, 55.9427929 -3.1825316, 55.9227217 -3.1743920, 55.9228810 -3.1754273, 55.9231124 -3.1754193, 55.9229249 -3.1782458, 55.9499694 -3.1797507, 55.9499757 -3.1798160, 55.9500637 -3.1794660, 55.9500938 -3.1794485, 55.9509274 -3.1808976, 55.9509324 -3.1810462, 55.9423618 -3.1840431, 55.9420724 -3.1830370, 55.9509016 -3.1807350, 55.9509075 -3.1807070, 55.9509169 -3.1808593, 55.9509634 -3.1804904, 55.9500360 -3.1798094, 55.9500832 -3.1798450, 55.9501211 -3.1798897, 55.9501723 -3.1796916, 55.9501877 -3.1796344, 55.9502096 -3.1797430, 55.9502160 -3.1797125, 55.9502405 -3.1796744, 55.9503400 -3.1800982, 55.9503693 -3.1801329, 55.9504024 -3.1799672, 55.9504254 -3.1799918, 55.9506541 -3.1793734, 55.9507349 -3.1794177, 55.9506189 -3.1835665, 55.9507741 -3.1824251, 55.9506746 -3.1830976, 55.9500035 -3.1797701, 55.9512610 -3.1800100, 55.9512749 -3.1799374, 55.9439525 -3.1820438, 55.9445315 -3.1823329, 55.9469094 -3.1821262, 55.9453523 -3.1818869, 55.9439473 -3.1828226, 55.9443287 -3.1812574, 55.9442897 -3.1818378, 55.9474180 -3.1841339, 55.9520043 -3.1768950, 55.9462478 -3.1850509, 55.9468669 -3.1856272, 55.9468472 -3.1856084, 55.9473137 -3.1851136, 55.9461822 -3.1850459, 55.9526834 -3.1734548, 55.9343702 -3.2060066, 55.9229601 -3.1790391, 55.9234202 -3.1790544, 55.9511538 -3.1760663, 55.9508387 -3.1774957, 55.9385096 -3.1950376, 55.9487062 -3.1943344, 55.9487553 -3.1962659, 55.9495866 -3.1950358, 55.9495999 -3.1953020, 55.9496043 -3.1950457, 55.9496221 -3.1950556, 55.9496228 -3.1953142, 55.9496458 -3.1953264, 55.9496737 -3.1953225, 55.9489842 -3.1953136, 55.9493042 -3.1940688, 55.9489571 -3.1957241, 55.9459432 -3.1848323, 55.9461084 -3.1836449, 55.9494614 -3.1938002, 55.9496093 -3.1936827, 55.9494708 -3.1903277, 55.9495520 -3.1903500, 55.9324201 -3.2283154, 55.9332737 -3.2297560, 55.9476045 -3.1861249, 55.9488813 -3.1834652, 55.9501364 -3.1885541, 55.9501318 -3.1886125, 55.9528247 -3.2065333, 55.9529149 -3.2065700, 55.9533456 -3.2048532, 55.9495175 -3.1899415, 55.9495499 -3.1899552, 55.9496571 -3.1899975, 55.9453776 -3.1916473, 55.9466056 -3.1912464, 55.9479651 -3.1920564, 55.9458687 -3.1913239, 55.9540835 -3.1946291, 55.9538883 -3.1945191, 55.9507179 -3.2052686, 55.9518450 -3.1742267, 55.9529627 -3.2034667, 55.9536998 -3.2038425, 55.9530225 -3.2010179, 55.9530534 -3.2008361, 55.9530651 -3.2069553, 55.9522129 -3.2063407, 55.9532657 -3.2030242, 55.9532876 -3.2029340, 55.9525263 -3.2039375, 55.9714402 -3.1705296, 55.9714533 -3.1704865, 55.9302053 -3.2392441, 55.9356364 -3.2013828, 55.9382392 -3.1926590, 55.9384377 -3.1915886, 55.9382413 -3.1927495, 55.9379861 -3.1928020, 55.9378976 -3.1933725, 55.9483402 -3.2061121, 55.9477718 -3.2059077, 55.9459933 -3.2113099, 55.9515113 -3.2040403, 55.9476990 -3.2058826, 55.9514215 -3.2038997, 55.9624007 -3.1961848, 55.9492101 -3.2153200, 55.9462508 -3.2133365, 55.9476055 -3.2058502, 55.9686261 -3.1663295, 55.9476526 -3.2058665, 55.9513366 -3.2050641, 55.9477676 -3.1954394, 55.9479756 -3.2040239, 55.9486422 -3.1962925, 55.9487023 -3.1964050, 55.9506891 -3.2051412, 55.9604000 -3.2010907, 55.9523945 -3.2120603, 55.9521663 -3.2127584, 55.9500021 -3.2125664, 55.9497188 -3.2145570, 55.9536330 -3.2038115, 55.9500915 -3.2177587, 55.9489122 -3.2150138, 55.9498388 -3.2129143, 55.9494796 -3.2083138, 55.9481228 -3.2089748, 55.9645701 -3.1765707, 55.9645802 -3.1747388, 55.9647293 -3.1764628, 55.9639122 -3.1762959, 55.9648300 -3.1763865, 55.9630054 -3.1634490, 55.9645939 -3.1737396, 55.9642748 -3.1697044, 55.9641140 -3.1725593, 55.9641614 -3.1722839, 55.9642136 -3.1728002, 55.9643083 -3.1722337, 55.9643717 -3.1727457, 55.9544768 -3.1997466, 55.9216794 -3.1718411, 55.9627142 -3.1784045, 55.9636277 -3.1775765, 55.9632696 -3.1779749, 55.9635024 -3.1777276, 55.9634060 -3.1778300, 55.9627055 -3.1776374, 55.9627072 -3.1778590, 55.9634367 -3.1777973, 55.9629419 -3.1783230, 55.9635528 -3.1766129, 55.9633301 -3.1768752, 55.9627343 -3.1785430, 55.9636554 -3.1766602, 55.9634797 -3.1777517, 55.9623753 -3.1728175, 55.9623527 -3.1790390, 55.9624093 -3.1789715, 55.9622389 -3.1791820, 55.9624341 -3.1765218, 55.9624801 -3.1786765, 55.9538645 -3.1977873, 55.9545797 -3.1975105, 55.9539210 -3.2001008, 55.9539108 -3.1977156, 55.9218603 -3.1939403, 55.9232493 -3.1902587, 55.9233776 -3.1896124, 55.9237045 -3.1906975, 55.9246454 -3.1953741, 55.9254239 -3.1947550, 55.9407892 -3.1837439, 55.9407325 -3.1837862, 55.9606529 -3.1715392, 55.9455845 -3.1909569, 55.9461093 -3.1908375, 55.9601437 -3.1818896, 55.9602458 -3.1817585, 55.9549903 -3.1932546, 55.9549461 -3.1936274, 55.9550466 -3.1929475, 55.9598837 -3.1717571, 55.9600585 -3.1717137, 55.9219330 -3.1748598, 55.9218016 -3.1748987, 55.9219960 -3.1749734, 55.9522132 -3.2037570, 55.9722254 -3.2582467, 55.9722373 -3.2578621, 55.9503626 -3.2071980, 55.9509478 -3.2066848, 55.9526988 -3.2085257, 55.9527795 -3.2080212, 55.9529409 -3.2077810, 55.9590356 -3.1715565, 55.9595598 -3.1714455, 55.9518140 -3.2061799, 55.9518714 -3.2053095, 55.9513520 -3.2049738, 55.9733939 -3.1675353, 55.9733312 -3.1670719, 55.9542281 -3.1981535, 55.9541418 -3.1997112, 55.9543888 -3.1989928, 55.9548130 -3.1959084, 55.9531961 -3.2032873, 55.9754408 -3.1737466, 55.9507937 -3.2057910, 55.9530265 -3.2058413, 55.9529173 -3.1995774, 55.9713786 -3.1713983, 55.9708769 -3.1716878, 55.9713160 -3.1704361, 55.9713293 -3.1704148, 55.9714836 -3.1716872, 55.9716292 -3.1714729, 55.9716322 -3.1714902, 55.9724168 -3.1697202, 55.9732475 -3.1694257, 55.9732677 -3.1693959, 55.9732879 -3.1693662, 55.9733081 -3.1693364, 55.9733283 -3.1693066, 55.9728610 -3.1689743, 55.9751480 -3.1670086, 55.9752100 -3.1670316, 55.9755689 -3.1666066, 55.9758774 -3.1660901, 55.9520123 -3.2023613, 55.9525961 -3.2004597, 55.9522376 -3.2006090, 55.9521505 -3.2011079, 55.9524547 -3.2003712, 55.9523741 -3.2002234, 55.9520147 -3.2000958, 55.9514577 -3.2026368, 55.9521413 -3.2003019, 55.9517562 -3.2027381, 55.9473312 -3.1958530, 55.9506139 -3.2029121, 55.9506605 -3.2031247, 55.9509818 -3.1665599, 55.9510378 -3.1985031, 55.9516327 -3.1728113, 55.9527120 -3.1911888, 55.9771722 -3.1686654, 55.9331140 -3.2352824, 55.9525137 -3.1970339, 55.9519277 -3.1979876, 55.9738130 -3.1660750, 55.9739636 -3.1645829, 55.9740361 -3.1645204, 55.9530600 -3.1973963, 55.9529817 -3.1991968, 55.9531343 -3.1972601, 55.9524366 -3.1994110, 55.9527862 -3.1991610, 55.9742334 -3.1627736, 55.9743971 -3.1634368, 55.9744969 -3.1645171, 55.9747892 -3.1642995, 55.9748440 -3.1644846, 55.9750621 -3.1716018, 55.9750654 -3.1718127, 55.9742887 -3.1683638, 55.9744239 -3.1691820, 55.9524600 -3.1964337, 55.9530736 -3.1967211, 55.9527659 -3.1966511, 55.9537845 -3.1947910, 55.9720484 -3.1727281, 55.9726775 -3.1738979, 55.9723466 -3.1740682, 55.9529730 -3.1951895, 55.9534082 -3.1946348, 55.9717635 -3.1735496, 55.9719630 -3.1738530, 55.9728535 -3.1734538, 55.9728700 -3.1734359, 55.9728878 -3.1734277, 55.9729128 -3.1734295, 55.9729302 -3.1734449, 55.9729461 -3.1734685, 55.9729020 -3.1734278, 55.9733795 -3.1746652, 55.9743460 -3.1742161, 55.9744616 -3.1745919, 55.9745256 -3.1747701, 55.9746511 -3.1740770, 55.9744468 -3.1763141, 55.9745286 -3.1757264, 55.9745343 -3.1758337, 55.9530168 -3.1896233, 55.9530387 -3.1894471, 55.9530853 -3.1895713, 55.9499543 -3.1878155, 55.9604895 -3.1695316, 55.9598795 -3.1713523, 55.9233855 -3.2869336, 55.9482867 -3.1839490, 55.9496098 -3.1863529, 55.9541108 -3.2007911, 55.9463993 -3.2054011, 55.9481710 -3.1916741, 55.9469840 -3.2072235, 55.9429219 -3.2039024, 55.9482698 -3.1839334, 55.9510232 -3.2031886, 55.9528163 -3.2009260, 55.9618231 -3.1705074, 55.9746361 -3.1775991, 55.9748666 -3.1747021, 55.9748935 -3.1745351, 55.9749178 -3.1759773, 55.9749369 -3.1750796, 55.9749809 -3.1764209, 55.9749981 -3.1769166, 55.9750316 -3.1746083, 55.9751150 -3.1770111, 55.9751199 -3.1751925, 55.9751581 -3.1769090, 55.9751915 -3.1757570, 55.9751949 -3.1759526, 55.9753007 -3.1761602, 55.9634016 -3.1766095, 55.9634052 -3.1766291, 55.9636382 -3.1754565, 55.9636651 -3.1744634, 55.9636669 -3.1745132, 55.9636792 -3.1760578, 55.9637678 -3.1758920, 55.9637728 -3.1759640, 55.9732747 -3.1733776, 55.9656681 -3.1756475, 55.9722974 -3.1721866, 55.9727235 -3.1726089, 55.9728088 -3.1726327, 55.9544400 -3.1950851, 55.9550493 -3.1952197, 55.9739316 -3.1698802, 55.9556549 -3.1915634, 55.9766030 -3.1718112, 55.9653204 -3.1704922, 55.9650608 -3.1748800, 55.9400673 -3.1947325, 55.9507003 -3.1844017, 55.9561884 -3.1870244, 55.9688835 -3.1679574, 55.9684561 -3.1716073, 55.9691750 -3.1684493, 55.9682750 -3.1678746, 55.9633066 -3.1860169, 55.9634080 -3.1859429, 55.9635172 -3.1861220, 55.9615420 -3.1807411, 55.9615814 -3.1806883, 55.9617495 -3.1805463, 55.9702173 -3.1722910, 55.9702260 -3.1722844, 55.9702478 -3.1722641, 55.9399937 -3.1939232, 55.9658726 -3.1880478, 55.9656970 -3.1875042, 55.9658499 -3.1878049, 55.9662597 -3.2747756, 55.9552877 -3.1944672, 55.9556814 -3.1924910, 55.9549784 -3.1940904, 55.9558020 -3.1907734, 55.9557269 -3.1922309, 55.9540992 -3.1884376, 55.9543610 -3.1899213, 55.9544361 -3.1900259, 55.9544405 -3.1913709, 55.9545229 -3.1900939, 55.9545371 -3.1914230, 55.9540653 -3.1916462, 55.9398157 -3.1830605, 55.9517393 -3.2095002, 55.9519739 -3.2095707, 55.9778557 -3.1727062, 55.9236090 -3.1756325, 55.9232313 -3.1775694, 55.9233923 -3.1756184, 55.9233871 -3.1778419, 55.9232089 -3.1756515, 55.9241251 -3.1769791, 55.9240500 -3.1763163, 55.9240459 -3.1760836, 55.9460057 -3.2197128, 55.9460095 -3.2199681, 55.9460114 -3.2200955, 55.9771931 -3.1800325, 55.9671374 -3.1609772, 55.9694521 -3.1623622, 55.9620252 -3.1794463, 55.9774618 -3.1771945, 55.9508000 -3.2089911, 55.9512383 -3.2092427, 55.9508780 -3.2095210, 55.9509363 -3.2096447, 55.9760545 -3.1722808, 55.9760744 -3.1723069, 55.9760967 -3.1723363, 55.9761143 -3.1723594, 55.9761347 -3.1723863, 55.9768928 -3.1720240, 55.9407112 -3.2157270, 55.9403945 -3.2158834, 55.9278319 -3.2080812, 55.9397464 -3.1931979, 55.9349041 -3.1941656, 55.9352085 -3.1942601, 55.9415572 -3.1816423, 55.9759238 -3.1777702, 55.9764476 -3.1748222, 55.9766896 -3.1749834, 55.9767053 -3.1750056, 55.9767829 -3.1745056, 55.9768020 -3.1745157, 55.9760128 -3.1762995, 55.9760239 -3.1762786, 55.9760369 -3.1762513, 55.9757310 -3.1736457, 55.9630297 -3.2724460, 55.9239723 -3.2766478, 55.9483675 -3.1876252, 55.9483296 -3.1873883, 55.9733387 -3.1597088, 55.9734148 -3.1600433, 55.9735494 -3.1606497, 55.9735513 -3.1593324, 55.9736293 -3.1610016, 55.9378392 -3.2404335, 55.9775066 -3.1703103, 55.9775168 -3.1705987, 55.9775261 -3.1708643, 55.9780071 -3.1710135, 55.9781140 -3.1709578, 55.9784186 -3.1710071, 55.9788694 -3.1711186, 55.9532974 -3.1903395, 55.9532597 -3.1902158, 55.9521331 -3.1896204, 55.9587590 -3.1719148, 55.9211816 -3.1733205, 55.9224592 -3.1709234, 55.9218927 -3.1712183, 55.9213809 -3.1720986, 55.9211765 -3.1732658, 55.9226362 -3.1713083, 55.9217894 -3.1710946, 55.9214361 -3.1718249, 55.9226459 -3.1734170, 55.9213580 -3.1747778, 55.9220244 -3.1710946, 55.9218908 -3.1714830, 55.9548523 -3.1975703, 55.9541427 -3.2007844, 55.9519939 -3.2024014, 55.9610834 -3.2095634, 55.9630366 -3.2717464, 55.9630747 -3.2715963, 55.9685040 -3.1738921, 55.9459122 -3.2050109, 55.9482011 -3.1827764, 55.9484447 -3.1843437, 55.9484777 -3.1836947, 55.9529445 -3.1801566, 55.9497894 -3.2063989, 55.9376702 -3.2167901, 55.9533602 -3.1881682, 55.9552182 -3.1856979, 55.9553136 -3.1855655, 55.9575734 -3.1846236, 55.9568316 -3.1854823, 55.9576388 -3.1845365, 55.9541329 -3.1875092, 55.9542272 -3.1873908, 55.9539229 -3.1879063, 55.9167665 -3.2797719, 55.9170876 -3.2804582, 55.9075887 -3.2557687, 55.9459256 -3.2029493, 55.9459249 -3.2040372, 55.9583358 -3.1716672, 55.9581968 -3.1716934, 55.9585310 -3.1716305, 55.9584669 -3.1716425, 55.9587257 -3.1716461, 55.9459161 -3.2047332, 55.9466412 -3.2054839, 55.9467509 -3.2055215, 55.9463430 -3.2043551, 55.9526134 -3.2032177, 55.9340343 -3.2764656, 55.9341985 -3.2766845, 55.9340748 -3.2765255, 55.9436148 -3.1938586, 55.9437740 -3.1934870, 55.9691640 -3.1641491, 55.9691623 -3.1590935, 55.9538070 -3.1754710, 55.9543079 -3.1742698, 55.9531351 -3.1871540, 55.9536366 -3.1881820, 55.9402773 -3.1758712, 55.9402836 -3.1758583, 55.9411668 -3.1749603, 55.9548100 -3.1862616, 55.9555487 -3.1855946, 55.9556087 -3.1856660, 55.9556756 -3.1857514, 55.9557043 -3.1857965, 55.9557252 -3.1858508, 55.9557678 -3.1859642, 55.9557965 -3.1860714, 55.9558200 -3.1861786, 55.9547298 -3.1836684, 55.9547350 -3.1837493, 55.9547450 -3.1832613, 55.9523410 -3.2164699, 55.9523473 -3.2164888, 55.9635389 -3.2008312, 55.9678361 -3.2060988, 55.9349980 -3.2103187, 55.9426714 -3.2219762, 55.9427639 -3.2224680, 55.9434140 -3.2224863, 55.9435542 -3.2218583, 55.9423375 -3.2221469, 55.9451773 -3.2176768, 55.9400653 -3.2282711, 55.9400802 -3.2252339, 55.9217086 -3.1768073, 55.9222416 -3.1726200, 55.9581558 -3.2094816, 55.9588598 -3.2100369, 55.9590703 -3.2119737, 55.9439019 -3.2085830, 55.9592372 -3.1902998, 55.9388335 -3.2261405, 55.9389115 -3.2261303, 55.9258449 -3.2085068, 55.9266805 -3.2090424, 55.9267414 -3.2093414, 55.9265620 -3.2086861, 55.9380758 -3.2261684, 55.9382383 -3.2261326, 55.9376890 -3.2258211, 55.9387526 -3.2265701, 55.9377290 -3.2266198, 55.9381260 -3.2274794, 55.9384518 -3.2272743, 55.9386936 -3.2277396, 55.9384948 -3.2293663, 55.9529392 -3.1994168, 55.9397708 -3.2199867, 55.9515349 -3.2171657, 55.9525428 -3.2175489, 55.9525513 -3.2175844, 55.9516461 -3.2177740, 55.9519965 -3.2177373, 55.9505565 -3.1909459, 55.9443990 -3.2182342, 55.9452483 -3.2176051, 55.9460483 -3.2220442, 55.9460266 -3.2211223, 55.9409474 -3.2032958, 55.9442226 -3.2020621, 55.9429241 -3.2034274, 55.9516721 -3.1954693, 55.9521526 -3.1969507, 55.9553246 -3.1925314, 55.9422001 -3.2030339, 55.9422130 -3.2032034, 55.9432018 -3.2034543, 55.9427074 -3.2038378, 55.9594760 -3.1563114, 55.9575749 -3.1491581, 55.9371685 -3.2220646, 55.9591120 -3.1499771, 55.9596920 -3.1477508, 55.9591313 -3.1494863, 55.9600263 -3.1467401, 55.9254742 -3.2090881, 55.9256931 -3.2023258, 55.9265399 -3.2086868, 55.9460880 -3.1902547, 55.9459346 -3.1899017, 55.9451311 -3.1897703, 55.9452737 -3.1901683, 55.9359519 -3.2265085, 55.9429679 -3.1847267, 55.9401432 -3.1806489, 55.9446192 -3.1863319, 55.9549318 -3.1508223, 55.9552399 -3.1545394, 55.9549886 -3.1524019, 55.9549654 -3.1519900, 55.9549401 -3.1509666, 55.9549818 -3.1522657, 55.9549221 -3.1506854, 55.9549290 -3.1483069, 55.9549514 -3.1506449, 55.9458070 -3.2095020, 55.9226117 -3.2237652, 55.9211533 -3.2227166, 55.9239742 -3.2113040, 55.9241909 -3.2108682, 55.9244591 -3.2097854, 55.9400201 -3.1805523, 55.9392614 -3.2515532, 55.9393285 -3.2515740, 55.9413350 -3.1795957, 55.9428828 -3.1846462, 55.9414601 -3.1837183, 55.9296740 -3.2098572, 55.9277230 -3.2089374, 55.9280657 -3.2095303, 55.9284906 -3.2095988, 55.9434246 -3.2321614, 55.9246251 -3.2177626, 55.9267905 -3.2090510, 55.9268462 -3.2091430, 55.9269373 -3.2038863, 55.9273372 -3.2040019, 55.9279114 -3.2041895, 55.9287547 -3.2093905, 55.9290607 -3.2057186, 55.9290623 -3.2056860, 55.9294058 -3.2054141, 55.9294431 -3.2057183, 55.9294455 -3.2056993, 55.9294483 -3.2056774, 55.9294988 -3.2059566, 55.9349308 -3.2313970, 55.9349852 -3.2312861, 55.9698724 -3.1713285, 55.9626517 -3.1592160, 55.9333625 -3.2265607, 55.9333820 -3.2263283, 55.9334404 -3.2265632, 55.9334647 -3.2263576, 55.9337704 -3.2271427, 55.9337989 -3.2270029, 55.9339811 -3.2268656, 55.9371963 -3.2341772, 55.9444803 -3.2039362, 55.9460182 -3.2010225, 55.9459465 -3.2016327, 55.9387950 -3.1805930, 55.9380924 -3.1790413, 55.9434520 -3.2023048, 55.9578336 -3.1744114, 55.9592005 -3.1771622, 55.9413872 -3.2036826, 55.9412635 -3.2036945, 55.9584903 -3.1863264, 55.9590852 -3.1857371, 55.9589330 -3.1855119, 55.9586089 -3.1849994, 55.9584529 -3.1845135, 55.9587268 -3.1846721, 55.9588460 -3.1848411, 55.9582979 -3.1825557, 55.9583866 -3.1817448, 55.9427627 -3.2911646, 55.9424631 -3.2806946, 55.9429573 -3.2866949, 55.9425027 -3.2819771, 55.9426604 -3.2826099, 55.9429231 -3.2828766, 55.9443423 -3.2116916, 55.9444352 -3.2057104, 55.9500762 -3.2087008, 55.9492493 -3.1821929, 55.9430477 -3.2879331, 55.9445343 -3.2054433, 55.9429207 -3.2827642, 55.9430181 -3.2895319, 55.9485519 -3.1927460, 55.9438848 -3.2067507, 55.9429672 -3.2868741, 55.9430047 -3.2882347, 55.9479442 -3.2034814, 55.9480564 -3.1820187, 55.9490742 -3.1925402, 55.9531932 -3.1908602, 55.9232795 -3.2513290, 55.9581523 -3.1838224, 55.9588905 -3.1831161, 55.9587280 -3.1832716, 55.9452936 -3.2339601, 55.9454047 -3.2369658, 55.9194274 -3.2362413, 55.9450405 -3.1853560, 55.9438261 -3.1912451, 55.9411030 -3.2121066, 55.9571623 -3.1682359, 55.9572297 -3.1707067, 55.9571741 -3.1685382, 55.9570311 -3.1704550, 55.9571419 -3.1677089, 55.9573646 -3.1705617, 55.9574609 -3.1716577, 55.9167097 -3.2799372, 55.9557514 -3.1583176, 55.9347856 -3.2210702, 55.9446962 -3.2513671, 55.9448231 -3.2516044, 55.9565206 -3.1612785, 55.9450293 -3.2498518, 55.9523560 -3.1898764, 55.9501677 -3.1941355, 55.9377112 -3.2170224, 55.9373497 -3.2171943, 55.9373959 -3.2166076, 55.9423015 -3.2037122, 55.9365026 -3.2406591, 55.9315048 -3.2518810, 55.9311377 -3.2521805, 55.9314315 -3.2521047, 55.9320106 -3.2494234, 55.9315505 -3.2517416, 55.9310997 -3.2522714, 55.9428176 -3.2208180, 55.9451800 -3.2172509, 55.9442042 -3.2183888, 55.9315486 -3.2515674, 55.9423335 -3.2216508, 55.9455343 -3.2183053, 55.9270386 -3.2096477, 55.9316643 -3.1778651, 55.9338204 -3.1793988, 55.9371921 -3.1781510, 55.9424439 -3.1826762, 55.9408540 -3.1839860, 55.9396928 -3.1829879, 55.9388946 -3.1813406, 55.9389130 -3.1809911, 55.9416787 -3.1839399, 55.9398736 -3.1799273, 55.9120938 -3.2129333, 55.9121639 -3.2129813, 55.9407834 -3.2037963, 55.9258986 -3.2095295, 55.9267939 -3.2093459, 55.9275336 -3.2094526, 55.9574385 -3.1685612, 55.9454719 -3.1856936, 55.9554414 -3.1940138, 55.9556363 -3.1945271, 55.9691129 -3.1844317, 55.9309993 -3.1942265, 55.9269173 -3.1638961, 55.9783728 -3.2011576, 55.9785946 -3.2010422, 55.9786408 -3.2006834, 55.9787085 -3.2008697, 55.9787385 -3.2008821, 55.9787676 -3.2008883, 55.9790154 -3.2013878, 55.9791655 -3.2013397, 55.9791719 -3.2012782, 55.9680946 -3.2348467, 55.9681781 -3.2341337, 55.9240585 -3.1713578, 55.9299273 -3.1693020, 55.9296483 -3.1705890, 55.9748169 -3.2383236, 55.9746726 -3.2382711, 55.9498132 -3.2085294, 55.9509822 -3.2103139, 55.9469808 -3.1906363, 55.9458515 -3.1980077, 55.9457862 -3.1979355, 55.9452290 -3.1985640, 55.9437008 -3.2082520, 55.9259129 -3.1839018, 55.9112196 -3.2389868, 55.9353881 -3.2098345, 55.9566769 -3.1856435, 55.9432504 -3.1876414, 55.9446635 -3.1870755, 55.9435643 -3.1873169, 55.9400686 -3.1823797, 55.9301454 -3.2675721, 55.9283187 -3.2406260, 55.9421000 -3.2947922, 55.9425307 -3.2951154, 55.9425115 -3.2952482, 55.9229811 -3.1763698, 55.9230219 -3.1728013, 55.9221871 -3.1768683, 55.9714345 -3.2340139, 55.9699237 -3.2405852, 55.9829204 -3.2372278, 55.9297028 -3.2566262, 55.9297656 -3.2562660, 55.9304103 -3.2469509, 55.9226019 -3.2866961, 55.9524747 -3.1888317, 55.9504120 -3.2083047, 55.9503703 -3.2121414, 55.9240859 -3.2768279, 55.9242184 -3.2770984, 55.9243908 -3.2765585, 55.9244065 -3.2777306, 55.9364431 -3.2788487, 55.9361497 -3.2793381, 55.9365669 -3.2797635, 55.9360400 -3.2792735, 55.9302529 -3.2395709, 55.9399527 -3.2190846, 55.9332774 -3.2293691, 55.9399852 -3.2191671, 55.9074164 -3.1758129, 55.9075566 -3.1756702, 55.9464399 -3.2053995, 55.9075682 -3.1756399, 55.9075202 -3.1758102, 55.9076717 -3.1747958, 55.9071563 -3.1760631, 55.9070898 -3.1762189, 55.9331989 -3.2351383, 55.9076637 -3.1751767, 55.9074089 -3.1756312, 55.9073502 -3.1757683, 55.9076965 -3.1744435, 55.9071740 -3.1760256, 55.9070031 -3.1764354, 55.9741180 -3.2117279, 55.9772921 -3.2157522, 55.9725399 -3.2078592, 55.9225250 -3.1716936, 55.9042124 -3.2337312, 55.9043980 -3.2230845, 55.9328389 -3.1587400, 55.9464007 -3.1852152, 55.9407144 -3.1822039, 55.9424324 -3.1820577, 55.9331551 -3.1582484, 55.9210078 -3.2120520, 55.9349585 -3.1681302, 55.9336044 -3.1662602, 55.9768630 -3.1715449, 55.9475575 -3.1918577, 55.9420976 -3.2147413, 55.9386177 -3.2366758, 55.9367589 -3.2046911, 55.9368666 -3.2042171, 55.9368737 -3.2048668, 55.9370030 -3.2049820, 55.9370249 -3.2035614, 55.9374767 -3.2046015, 55.9375071 -3.2038165, 55.9375921 -3.2052412, 55.9785817 -3.2328576, 55.9647804 -3.1918477, 55.9632048 -3.1967376, 55.9549270 -3.1841679, 55.9550310 -3.1841031, 55.9468551 -3.1921685, 55.9460698 -3.2008219, 55.9434619 -3.1842245, 55.9598750 -3.2889371, 55.9425496 -3.2128213, 55.9425618 -3.2128292, 55.9425740 -3.2128372, 55.9426469 -3.2129188, 55.9426539 -3.2129744, 55.9426638 -3.2129893, 55.9427147 -3.2130589, 55.9427254 -3.2130760, 55.9428234 -3.2131881, 55.9428463 -3.2132802, 55.9428649 -3.2132271, 55.9433584 -3.2141340, 55.9433696 -3.2141103, 55.9433852 -3.2140789, 55.9379206 -3.1999781, 55.9379492 -3.2004395, 55.9379269 -3.1999453, 55.9380201 -3.2032198, 55.9379254 -3.2004173, 55.9389109 -3.2007499, 55.9374492 -3.2014688, 55.9831327 -3.2230444, 55.9808188 -3.1962840, 55.9808683 -3.1959890, 55.9220558 -3.1767482, 55.9389289 -3.2006557, 55.9389168 -3.2007093, 55.9409914 -3.1998551, 55.9381152 -3.2525427, 55.9673970 -3.2443145, 55.9672074 -3.2460910, 55.9671796 -3.2463516, 55.9664915 -3.2506484, 55.9672184 -3.2459880, 55.9664292 -3.2506186, 55.9673263 -3.2449767, 55.9720098 -3.2530068, 55.9708801 -3.2522114, 55.9718267 -3.2528300, 55.9482570 -3.2808480, 55.9525749 -3.2880422, 55.9463149 -3.2160485, 55.9777941 -3.1803846, 55.9785288 -3.1803957, 55.9778357 -3.1804100, 55.9253007 -3.1840038, 55.9294629 -3.1852655, 55.9243745 -3.1739506, 55.9243846 -3.1740363, 55.9244579 -3.1760254, 55.9412187 -3.1774429, 55.9415472 -3.1778855, 55.9517311 -3.1897232, 55.9120842 -3.2705613, 55.9300946 -3.2675291, 55.9846296 -3.1929456, 55.9851061 -3.1936381, 55.9479663 -3.2096906, 55.9462530 -3.1899813, 55.9322563 -3.2093096, 55.9523918 -3.1870438, 55.9604252 -3.1843054, 55.9596256 -3.1864632, 55.9094227 -3.2330076, 55.9095084 -3.2333053, 55.9094670 -3.2330934, 55.9427352 -3.2941042, 55.9421819 -3.2952514, 55.9545189 -3.2940830, 55.9538396 -3.1966230, 55.9526758 -3.2033575, 55.9506277 -3.1883790, 55.9486261 -3.1871655, 55.9485629 -3.1877983, 55.9507045 -3.1908901, 55.9486336 -3.1870666, 55.9459432 -3.2011857, 55.9477510 -3.1936779, 55.9531912 -3.1972915, 55.9536886 -3.2049943, 55.9582729 -3.1839066, 55.9589105 -3.1832870, 55.9732265 -3.1683769, 55.9796099 -3.1877810, 55.9799672 -3.1909855, 55.9443252 -3.2677336, 55.9618841 -3.1951099, 55.9618945 -3.1951500, 55.9619435 -3.1953277, 55.9619258 -3.1952575, 55.9454949 -3.2185199, 55.9518010 -3.1894770, 55.9519311 -3.1894140, 55.9521603 -3.1895242, 55.9218200 -3.1722829, 55.9428430 -3.2906075, 55.9425702 -3.2800522, 55.9426642 -3.2822842, 55.9427535 -3.2805289, 55.9428166 -3.2817481, 55.9430033 -3.2898664, 55.9430509 -3.2898845, 55.9370592 -3.2364574, 55.9339381 -3.2444011, 55.9432730 -3.2039208, 55.9440248 -3.2043007, 55.9619346 -3.2372188, 55.9452066 -3.1915904, 55.9393502 -3.1800163, 55.9395399 -3.1802090, 55.9389378 -3.1795696, 55.9282780 -3.2791810, 55.9452263 -3.1914951, 55.9465995 -3.1859338, 55.9380856 -3.1928625, 55.9593802 -3.2188272, 55.9591890 -3.2129359, 55.9573035 -3.2064004, 55.9591382 -3.1841136, 55.9723807 -3.1751407, 55.9638207 -3.1785761, 55.9307298 -3.2096448, 55.9269358 -3.2038616, 55.9269382 -3.2038756, 55.9269435 -3.2038643, 55.9276137 -3.2042241, 55.9278619 -3.2068015, 55.9278632 -3.2096793, 55.9278634 -3.2096657, 55.9278636 -3.2096544, 55.9278638 -3.2096435, 55.9279108 -3.2041560, 55.9279132 -3.2041700, 55.9279185 -3.2041587, 55.9280498 -3.2043705, 55.9280619 -3.2043747, 55.9288471 -3.2058094, 55.9288652 -3.2058103, 55.9289535 -3.2056700, 55.9289652 -3.2055189, 55.9289757 -3.2057779, 55.9688097 -3.1736199, 55.9684029 -3.1739745, 55.9569010 -3.1873846, 55.9711550 -3.1732180, 55.9712738 -3.1734090, 55.9346960 -3.2336518, 55.9269151 -3.2467035, 55.9013093 -3.2037049, 55.9013239 -3.2037573, 55.9014944 -3.2029824, 55.9351509 -3.2333184, 55.9355280 -3.2338970, 55.9359363 -3.2354103, 55.9360465 -3.2346120, 55.9374442 -3.2397334, 55.9373728 -3.2396057, 55.9372279 -3.2385307, 55.9372564 -3.2385932, 55.9372901 -3.2386510, 55.9373070 -3.2383872, 55.9373355 -3.2384497, 55.9373692 -3.2385076, 55.9375047 -3.2398315, 55.9376110 -3.2400541, 55.9662268 -3.2333289, 55.9665580 -3.2314003, 55.9668226 -3.2336242, 55.9671437 -3.2317181, 55.9679010 -3.2352863, 55.9704277 -3.2366969, 55.9705997 -3.2364200, 55.9706854 -3.2358050, 55.9707333 -3.2368549, 55.9710370 -3.2354851, 55.9710928 -3.2351825, 55.9711575 -3.2348271, 55.9712178 -3.2357510, 55.9712241 -3.2344343, 55.9713106 -3.2340930, 55.9717340 -3.2345051, 55.9719358 -3.2348431, 55.9719826 -3.2342604, 55.9556426 -3.1715490, 55.9557362 -3.1704782, 55.9558930 -3.1705907, 55.9411313 -3.2167882, 55.9394016 -3.1735716, 55.9319966 -3.1799344, 55.9479153 -3.2032909, 55.9426609 -3.1889897, 55.9518191 -3.1796232, 55.9475115 -3.1893474, 55.9478706 -3.1875187, 55.9404588 -3.2944172, 55.9696057 -3.2312902, 55.9253633 -3.2482805, 55.9320475 -3.2900719, 55.9276315 -3.2611513, 55.9016607 -3.2241566, 55.9262359 -3.1654883, 55.9227951 -3.1616860, 55.9434333 -3.1979031, 55.9578808 -3.1647965, 55.9544821 -3.1426137, 55.9800739 -3.1795567, 55.9821860 -3.1756582, 55.9289063 -3.1978389, 55.9368082 -3.2005621, 55.9300695 -3.2173574, 55.9214947 -3.2123339, 55.9763668 -3.2263493, 55.9639703 -3.2272425, 55.9224589 -3.2814656, 55.9579953 -3.2248804, 55.9331850 -3.2140697, 55.9152135 -3.2365672, 55.9275852 -3.2164270, 55.9437787 -3.2629382, 55.9435294 -3.2654687, 55.9436259 -3.2619723, 55.9690347 -3.1695750, 55.9775947 -3.2459989, 55.9734214 -3.2507279, 55.9735728 -3.2552888, 55.9453813 -3.1852436, 55.9461229 -3.1864604, 55.9462637 -3.1945246, 55.9507474 -3.1997547, 55.9521111 -3.1797138, 55.9226021 -3.1742368, 55.9440654 -3.1877246, 55.9444292 -3.1967044, 55.9445072 -3.1983664, 55.9441036 -3.1982399, 55.9526315 -3.2227477, 55.9314429 -3.2359511, 55.9234755 -3.2477828, 55.9654735 -3.1616252, 55.9658536 -3.1655404, 55.9660660 -3.1745557, 55.9400847 -3.2183565, 55.9605725 -3.1900983, 55.9523213 -3.2247362, 55.9505953 -3.2279799, 55.9538752 -3.2273603, 55.9599316 -3.1441732, 55.9604551 -3.1502060, 55.9282702 -3.2905058, 55.9373142 -3.2104866, 55.9287326 -3.2200096, 55.9384587 -3.2403692, 55.9398092 -3.2297030, 55.9484124 -3.1836303, 55.9226662 -3.2254126, 55.9350432 -3.1974969, 55.9369667 -3.2015404, 55.9559159 -3.1551037, 55.9396348 -3.1719819, 55.9418587 -3.1505561, 55.9183491 -3.2390342, 55.9465677 -3.1864515, 55.9292469 -3.2045519, 55.9471658 -3.1800476, 55.9510411 -3.1708174, 55.9629095 -3.1702904, 55.9221448 -3.2270956, 55.9056862 -3.1959770, 55.9422504 -3.2936081, 55.9237847 -3.1626217, 55.9523895 -3.2805878, 55.9399107 -3.1697157, 55.9388808 -3.1702860, 55.9366047 -3.1798091, 55.9456985 -3.1986288, 55.9703825 -3.1685452, 55.9331935 -3.1406956, 55.9307050 -3.1452443, 55.9305193 -3.1456531, 55.9323067 -3.1467718, 55.9320745 -3.1417518, 55.9419529 -3.2027946, 55.9222916 -3.1872552, 55.9029473 -3.2042927, 55.9308795 -3.1586149, 55.9356181 -3.1431581, 55.9366082 -3.1592634, 55.9382408 -3.1739315, 55.9372934 -3.1427896, 55.9411796 -3.1490731, 55.9412269 -3.1428579, 55.9526694 -3.1388117, 55.9539478 -3.1401032, 55.9482765 -3.1439926, 55.9271013 -3.1808974, 55.9265280 -3.1510008, 55.9339981 -3.1469608, 55.9118066 -3.2516799, 55.9248212 -3.2647912, 55.9773633 -3.2471160, 55.9527240 -3.2513140, 55.9450101 -3.1858398, 55.9468320 -3.1869997, 55.9454192 -3.1860553, 55.9405307 -3.2034601, 55.9082374 -3.2366942, 55.9111784 -3.2296130, 55.9158656 -3.2803635, 55.9280288 -3.2881415, 55.9610357 -3.1963165, 55.9706489 -3.1958361, 55.9497651 -3.1780477, 55.9550388 -3.1422629, 55.9360545 -3.2260184, 55.9365535 -3.2275015, 55.9340559 -3.2236225, 55.9290338 -3.2025448, 55.9274994 -3.2148921, 55.9300732 -3.1736504, 55.9401987 -3.2253095, 55.9414356 -3.2221759, 55.9486925 -3.2000899, 55.9481163 -3.2005051, 55.9411994 -3.1818116, 55.9422143 -3.1843904, 55.9455169 -3.1830207, 55.9441448 -3.1847026, 55.9442904 -3.1841510, 55.9421481 -3.1863693, 55.9447507 -3.1796881, 55.9456704 -3.1811258, 55.9430719 -3.1777209, 55.9446561 -3.1803415, 55.9623803 -3.2348858, 55.9494277 -3.1775329, 55.9487518 -3.1780877, 55.9485518 -3.1781362, 55.9491775 -3.1780460, 55.9466674 -3.1799160, 55.9467039 -3.1783594, 55.9517150 -3.1772389, 55.9520666 -3.1782554, 55.9514274 -3.1780862, 55.9442077 -3.1850195, 55.9611696 -3.2316847, 55.9609929 -3.2342787, 55.9607831 -3.2371118, 55.9615933 -3.2374124, 55.9619320 -3.2374854, 55.9631141 -3.2367935, 55.9468668 -3.1827657, 55.9471924 -3.1824888, 55.9634777 -3.2359757, 55.9488000 -3.1850162, 55.9461010 -3.1869570, 55.9508692 -3.1835613, 55.9496410 -3.1840791, 55.9482833 -3.1925126, 55.9485816 -3.1916892, 55.9320783 -3.1797444, 55.9288864 -3.2099560, 55.9372576 -3.2484056, 55.9375668 -3.2481897, 55.9518134 -3.1865125, 55.9613259 -3.1814202, 55.9491518 -3.1851392, 55.9845079 -3.2223358, 55.9494705 -3.1908525, 55.9720494 -3.1705517, 55.9481456 -3.1868202, 55.9481205 -3.1869530, 55.9462373 -3.1906430, 55.9478959 -3.1907476, 55.9476459 -3.1911817, 55.9244139 -3.2659013, 55.9487698 -3.1941172, 55.9487803 -3.1950974, 55.9052992 -3.2211253, 55.9634606 -3.1955565, 55.9231436 -3.2518020, 55.9754615 -3.1800085, 55.9766247 -3.1950154, 55.9807254 -3.2242925, 55.9827482 -3.1947966, 55.9820923 -3.1881161, 55.9284416 -3.2408621, 55.9663647 -3.1958162, 55.9713037 -3.2306913, 55.9694813 -3.2293505, 55.9211315 -3.1991537, 55.9272727 -3.2235753, 55.9282865 -3.2235682, 55.9574593 -3.1648578, 55.9226879 -3.2251365, 55.9383356 -3.2266455, 55.9391251 -3.2281034, 55.9713977 -3.2133259, 55.9539125 -3.1587511, 55.9582182 -3.2036684, 55.9608885 -3.2047238, 55.9780310 -3.2094100, 55.9404054 -3.1809089, 55.9404394 -3.1810025, 55.9405202 -3.1809837, 55.9406382 -3.1810791, 55.9353613 -3.2393280, 55.9230657 -3.2475227, 55.9317696 -3.2277951, 55.9346376 -3.2281100, 55.9383825 -3.1876965, 55.9600239 -3.1973819, 55.9663483 -3.2086408, 55.9650243 -3.2106945, 55.9443491 -3.2712547, 55.9446460 -3.2717874, 55.9450592 -3.2712300, 55.9727547 -3.1780159, 55.9803903 -3.1919230, 55.9679377 -3.1728765, 55.9385478 -3.1892353, 55.9610397 -3.2220207, 55.9729929 -3.1628209, 55.9351917 -3.2109226, 55.9779564 -3.1649104, 55.9800493 -3.2041830, 55.9209185 -3.1686343, 55.9239749 -3.1779212, 55.9246612 -3.1815724, 55.9259809 -3.1931356, 55.9426143 -3.2718758, 55.9409940 -3.2083656, 55.9759318 -3.2015666, 55.9637496 -3.2849010, 55.9276896 -3.1509176, 55.9274521 -3.1503413, 55.9275727 -3.1506409, 55.9254765 -3.1644984, 55.9263987 -3.1628516, 55.9280015 -3.1625220, 55.9260602 -3.1659685, 55.9251658 -3.1663274, 55.9254307 -3.1665057, 55.9590395 -3.2250691, 55.9605287 -3.2255329, 55.9587335 -3.2260450, 55.9593658 -3.2257055, 55.9514878 -3.2915839, 55.9436516 -3.2079845, 55.9782443 -3.2238463, 55.9703268 -3.2298028, 55.9759267 -3.2278467, 55.9751151 -3.2193081, 55.9762144 -3.2241714, 55.9803274 -3.2260173, 55.9854919 -3.2222993, 55.9829387 -3.2313250, 55.9825065 -3.2300824, 55.9837498 -3.2331360, 55.9758198 -3.2323187, 55.9747107 -3.2382500, 55.9755242 -3.2379423, 55.9713618 -3.2381377, 55.9679996 -3.2373783, 55.9342134 -3.1931270, 55.9460286 -3.2404520, 55.9381098 -3.2348474, 55.9379531 -3.2328868, 55.9472861 -3.2368167, 55.9494588 -3.2105702, 55.9763061 -3.2457130, 55.9763561 -3.2451182, 55.9764995 -3.2297011, 55.9500443 -3.2064738, 55.9496257 -3.2051212, 55.9470175 -3.2043154, 55.9348915 -3.2781233, 55.9089504 -3.2561095, 55.9763716 -3.1862130, 55.9464512 -3.2693904, 55.9452629 -3.2700881, 55.9447684 -3.1528732, 55.9408721 -3.1764189, 55.9330250 -3.1771210, 55.9383947 -3.2562456, 55.9493755 -3.1801013, 55.9478903 -3.1809905, 55.9498164 -3.1924123, 55.9512868 -3.1894562, 55.9506838 -3.1849407, 55.9514869 -3.1801710, 55.9507312 -3.1855926, 55.9208549 -3.2614987, 55.9311921 -3.2649611, 55.9301377 -3.1678364, 55.9307609 -3.1718826, 55.9312615 -3.2941807, 55.9573948 -3.1710345, 55.9569821 -3.1821503, 55.9015400 -3.2035243, 55.9363343 -3.2393760, 55.9334127 -3.2358071, 55.9095920 -3.2224530, 55.9087928 -3.2212725, 55.9076452 -3.2280715, 55.9052901 -3.2234270, 55.9047400 -3.2228682, 55.9058521 -3.2220302, 55.9070370 -3.2196609, 55.9044165 -3.2224233, 55.9091759 -3.2279480, 55.9090922 -3.2239505, 55.9626698 -3.1983142, 55.9607676 -3.2059199, 55.9594302 -3.2076115, 55.9603211 -3.2068531, 55.9401022 -3.1818027, 55.9671482 -3.1897944, 55.9438548 -3.1856370, 55.9534174 -3.1955088, 55.9540576 -3.1958653, 55.9629310 -3.2056894, 55.9546946 -3.1893677, 55.9704929 -3.2090204, 55.9045849 -3.2066586, 55.9601680 -3.2197965, 55.9598888 -3.2183399, 55.9519010 -3.2481568, 55.9523635 -3.2486330, 55.9523251 -3.2541631, 55.9703510 -3.2139529, 55.9535907 -3.2152565, 55.9430692 -3.2219457, 55.9587913 -3.2420040, 55.9583778 -3.2421373, 55.9573940 -3.2424916, 55.9584602 -3.2323511, 55.9567019 -3.2381175, 55.9588441 -3.2305299, 55.9590153 -3.2322733, 55.9653075 -3.1884809, 55.9611769 -3.2425780, 55.9615806 -3.2409418, 55.9613606 -3.2419902, 55.9619750 -3.2400369, 55.9622521 -3.2456196, 55.9668781 -3.2394194, 55.9544837 -3.1927405, 55.9467379 -3.1966389, 55.9596219 -3.2030610, 55.9379035 -3.1748950, 55.9686240 -3.1672832, 55.9716300 -3.1599323, 55.9433837 -3.2064943, 55.9721869 -3.1751900, 55.9676249 -3.1569398, 55.9561546 -3.1699049, 55.9776230 -3.2433010, 55.9776625 -3.2409852, 55.9771738 -3.2430088, 55.9773044 -3.2412374, 55.9798183 -3.1971210, 55.9704226 -3.1957989, 55.9703340 -3.1960928, 55.9704287 -3.1964960, 55.9404662 -3.2927628, 55.9418116 -3.2938190, 55.9409118 -3.2928528, 55.9563797 -3.2090019, 55.9567298 -3.2082704, 55.9594915 -3.1875653, 55.9605648 -3.1852708, 55.9622747 -3.1983063, 55.9556731 -3.1599309, 55.9561097 -3.1678692, 55.9735351 -3.1898888, 55.9548458 -3.1441071, 55.9639094 -3.1973365, 55.9626393 -3.2000496, 55.9192157 -3.2122153, 55.9602514 -3.1792425, 55.9828555 -3.2257526, 55.9786099 -3.1784394, 55.9394393 -3.2936438, 55.9393840 -3.2949198, 55.9596625 -3.2024027, 55.9775262 -3.2412239, 55.9679736 -3.2375792, 55.9669462 -3.1676798, 55.9504824 -3.2321466, 55.9305761 -3.1559101, 55.9311166 -3.1557491, 55.9371388 -3.2065073, 55.9359022 -3.2382929, 55.9360694 -3.2391515, 55.9353294 -3.2394954, 55.9376218 -3.2483001, 55.9782920 -3.1800335, 55.9805959 -3.1832658, 55.9809445 -3.1749097, 55.9396373 -3.1795919, 55.9606718 -3.1730123, 55.9587874 -3.1899265, 55.9586837 -3.1836662, 55.9398827 -3.1763365, 55.9611856 -3.1865315, 55.9454748 -3.2133562, 55.9660452 -3.2748274, 55.9664497 -3.2729235, 55.9637916 -3.2690502, 55.9425609 -3.2205340, 55.9421502 -3.2230791, 55.9435676 -3.2367434, 55.9410215 -3.2404052, 55.9437556 -3.2442061, 55.9749265 -3.2140733, 55.9368200 -3.2236817, 55.9094166 -3.2080359, 55.9816227 -3.1755092, 55.9632079 -3.2509875, 55.9552946 -3.2619485, 55.9598506 -3.2240155, 55.9817826 -3.1942506, 55.9810071 -3.1939768, 55.9811801 -3.1933829, 55.9813044 -3.1938863, 55.9810877 -3.1942030, 55.9811027 -3.1927207, 55.9812693 -3.1942614, 55.9810054 -3.1943069, 55.9810768 -3.1928706, 55.9810233 -3.1925847, 55.9811812 -3.1929615, 55.9809636 -3.1928228, 55.9813691 -3.1941213, 55.9809242 -3.1941406, 55.9812361 -3.1931210, 55.9810750 -3.1933834, 55.9741695 -3.2060915, 55.9102318 -3.2377415, 55.9109047 -3.2387736, 55.9747193 -3.2135794, 55.9231850 -3.2486394, 55.9637505 -3.2335268, 55.9428585 -3.1864559, 55.9846236 -3.1940314, 55.9439585 -3.2055524, 55.9595062 -3.2148354, 55.9672194 -3.2519524, 55.9724265 -3.2579266, 55.9682716 -3.2544583, 55.9221429 -3.1752023, 55.9223399 -3.1759213, 55.9722426 -3.2542844, 55.9670991 -3.2534481, 55.9650977 -3.2490516, 55.9575343 -3.1698875, 55.9068858 -3.2268022, 55.9253343 -3.2104022, 55.9252818 -3.2099781, 55.9718838 -3.2534162, 55.9810691 -3.2383577, 55.9306533 -3.2087393, 55.9390116 -3.2052594, 55.9382569 -3.1735978, 55.9385296 -3.2738255, 55.9364542 -3.2790390, 55.9125969 -3.2367843, 55.9139120 -3.2359804, 55.9122150 -3.2359712, 55.9257870 -3.2656567, 55.9674017 -3.1804959, 55.9342963 -3.2105127, 55.9326301 -3.2093563, 55.9397056 -3.2127147, 55.9799121 -3.2416420, 55.9712125 -3.2539350, 55.9714662 -3.2541142, 55.9422082 -3.2734647, 55.9376488 -3.1815350, 55.9181587 -3.2705015, 55.9342211 -3.1778645, 55.9514047 -3.2207449, 55.9732423 -3.2016374, 55.9723115 -3.2012062, 55.9724551 -3.2012809, 55.9697925 -3.2403746, 55.9598733 -3.2116343, 55.9778747 -3.1744863, 55.9783944 -3.1773378, 55.9780784 -3.1753297, 55.9782943 -3.1763220, 55.9777295 -3.1734902, 55.9789541 -3.1763230, 55.9781076 -3.1743896, 55.9051373 -3.2232377, 55.9781729 -3.1747059, 55.9757015 -3.1804762, 55.9759995 -3.1829955, 55.9754091 -3.1820511, 55.9389084 -3.2719917, 55.9379190 -3.2748726, 55.9511780 -3.2054975, 55.9324188 -3.2919653, 55.9310369 -3.2899192, 55.9456285 -3.2040795, 55.9613846 -3.1948052, 55.9284350 -3.2741187, 55.9345857 -3.2096226, 55.9778834 -3.1730481, 55.9410173 -3.1832050, 55.9657968 -3.2699304, 55.9694092 -3.2702934, 55.9416975 -3.1483958, 55.9582905 -3.2794012, 55.9767721 -3.1754685, 55.9766864 -3.1738710, 55.9591063 -3.1573676, 55.9687399 -3.2129316, 55.9699623 -3.1737095, 55.9700618 -3.1685905, 55.9777295 -3.1642417, 55.9713517 -3.2751363, 55.9716217 -3.2748645, 55.9357275 -3.1903213, 55.9561104 -3.2932448, 55.9547210 -3.2212015, 55.9489929 -3.2075011, 55.9770963 -3.2560693, 55.9464440 -3.2062260, 55.9473906 -3.2162109, 55.9413783 -3.2819125, 55.9775467 -3.1730925, 55.9767627 -3.1685149, 55.9759609 -3.1666596, 55.9775534 -3.1677038, 55.9352870 -3.1783681, 55.9384263 -3.2384184, 55.9400215 -3.2835991, 55.9422778 -3.2816309, 55.9736253 -3.1690870, 55.9731449 -3.1689705, 55.9722626 -3.1718229, 55.9724369 -3.1737659, 55.9725956 -3.1724850, 55.9735295 -3.1719581, 55.9422361 -3.2854972, 55.9426182 -3.2848408, 55.9408188 -3.2854591, 55.9424261 -3.2853919, 55.9401807 -3.2851421, 55.9397418 -3.2866275, 55.9486473 -3.2212554, 55.9184060 -3.1567270, 55.9405468 -3.2072228, 55.9398768 -3.2036893, 55.9450514 -3.2016119, 55.9425974 -3.2817995, 55.9427324 -3.2894308, 55.9428132 -3.2886637, 55.9428834 -3.2895145, 55.9430576 -3.2887151, 55.9429003 -3.2891706, 55.9421047 -3.2806000, 55.9421878 -3.2816836, 55.9418910 -3.2811010, 55.9382573 -3.1889080, 55.9433390 -3.1786743, 55.9352231 -3.1799086, 55.9354644 -3.1805170, 55.9370560 -3.1808037, 55.9375135 -3.1796069, 55.9372745 -3.1802503, 55.9402703 -3.1758875, 55.9416412 -3.1759641, 55.9411089 -3.1758742, 55.9419221 -3.1751737, 55.9413742 -3.1751322, 55.9421224 -3.1755399, 55.9420435 -3.1759728, 55.9417717 -3.1760016, 55.9412888 -3.1748673, 55.9419213 -3.1762309, 55.9417190 -3.1758050, 55.9416320 -3.1757373, 55.9421785 -3.1756667, 55.9411631 -3.1744380, 55.9420584 -3.1756683, 55.9419621 -3.1753235, 55.9421292 -3.1750657, 55.9415161 -3.1750333, 55.9415743 -3.1747963, 55.9415635 -3.1757823, 55.9414662 -3.2429306, 55.9380787 -3.2164916, 55.9740721 -3.2549433, 55.9702441 -3.2408171, 55.9422902 -3.1878156, 55.9424910 -3.1860227, 55.9480713 -3.2360983, 55.9322037 -3.2172622, 55.9650479 -3.1970021, 55.9399461 -3.2681429, 55.9430864 -3.2187412, 55.9554624 -3.2241042, 55.9274642 -3.2135816, 55.9419086 -3.2188990, 55.9483346 -3.2942197, 55.9652678 -3.1879528, 55.9243235 -3.2086509, 55.9421518 -3.2052869, 55.9457158 -3.2175775, 55.9237960 -3.2217413, 55.9450840 -3.2432639, 55.9365045 -3.2061792, 55.9287806 -3.2587079, 55.9109797 -3.2089126, 55.9419464 -3.1773362, 55.9410176 -3.2095848, 55.9416893 -3.1760907, 55.9417069 -3.1760764, 55.9416986 -3.1760841, 55.9412277 -3.1756903, 55.9412475 -3.1757441, 55.9412374 -3.1757197, 55.9231964 -3.2068493, 55.9412183 -3.1743024, 55.9412083 -3.1743042, 55.9411987 -3.1743085, 55.9411888 -3.1743128, 55.9269476 -3.2080337, 55.9292890 -3.2059199, 55.9287494 -3.2063514, 55.9763960 -3.1763346, 55.9710130 -3.1805984, 55.9179473 -3.1972800, 55.9182561 -3.1989900, 55.9132484 -3.1780898, 55.9381889 -3.2217131, 55.9549575 -3.1410285, 55.9754348 -3.1685187, 55.9819343 -3.1951000, 55.9405416 -3.2928536, 55.9193614 -3.2228522, 55.9191174 -3.2378985, 55.9192124 -3.2367725, 55.9642325 -3.1552631, 55.9761891 -3.1670909, 55.9756176 -3.1666794, 55.9758400 -3.1668709, 55.9616399 -3.2609726, 55.9429604 -3.2929801, 55.9431663 -3.2838745, 55.9430804 -3.2830608, 55.9432585 -3.2860976, 55.9433798 -3.2860859, 55.9433113 -3.2870890, 55.9426525 -3.2829003, 55.9429172 -3.2885050, 55.9430016 -3.2880429, 55.9428951 -3.2860475, 55.9598760 -3.2111177, 55.9420912 -3.2950431, 55.9656482 -3.2744012, 55.9420689 -3.2954758, 55.9428183 -3.2938163, 55.9806120 -3.1941067, 55.9768582 -3.1715174, 55.9748270 -3.2379923, 55.9308539 -3.2761099, 55.9460257 -3.1970143, 55.9232520 -3.2341444, 55.9506991 -3.1804199, 55.9228372 -3.1787829, 55.9339081 -3.2001289, 55.9396911 -3.1932972, 55.9346014 -3.2004344, 55.9381722 -3.1723579, 55.9391719 -3.1689528, 55.9405990 -3.1722908, 55.9216518 -3.1782720, 55.9242052 -3.1744113, 55.9212881 -3.1716104, 55.9584022 -3.2407277, 55.9543261 -3.2217641, 55.9458160 -3.2173535, 55.9451444 -3.1904630, 55.9416788 -3.1843079, 55.9226382 -3.1721985, 55.9376476 -3.2417193, 55.9365691 -3.1906918, 55.9428489 -3.2567334, 55.9486145 -3.2162817, 55.9767290 -3.2268402, 55.9382239 -3.2291441, 55.9528881 -3.2263328, 55.9828789 -3.2415813, 55.9635570 -3.2312483, 55.9044775 -3.2067494, 55.9067248 -3.2514090, 55.9042642 -3.2336659, 55.9582523 -3.2523289, 55.9432425 -3.1906832, 55.9331889 -3.2150781, 55.9342454 -3.2456558, 55.9462953 -3.2204429, 55.9472535 -3.2048824, 55.9653573 -3.2707031, 55.9649783 -3.2748480, 55.9333547 -3.2382786, 55.9336416 -3.2375159, 55.9236496 -3.2861719, 55.9235691 -3.2868011, 55.9255394 -3.2590716, 55.9249862 -3.2552372, 55.9197724 -3.2646706, 55.9245898 -3.2533924, 55.9310562 -3.2789944, 55.9378551 -3.2430479, 55.9342208 -3.2112229, 55.9302075 -3.2099997, 55.9260946 -3.2833643, 55.9079078 -3.2547827, 55.9488571 -3.1936393, 55.9400371 -3.2200755, 55.9231845 -3.2883989, 55.9560692 -3.1878858, 55.9557192 -3.1879718, 55.9364788 -3.1804773, 55.9365565 -3.1810260, 55.9337994 -3.2511195, 55.9251847 -3.2668441, 55.9243498 -3.2526320, 55.9281271 -3.1676775, 55.9296306 -3.1686378, 55.9205723 -3.1672281, 55.9167292 -3.1640730, 55.9190795 -3.1651500, 55.9351736 -3.2474301, 55.9368489 -3.1907203, 55.9303412 -3.1688554, 55.9231711 -3.1630255, 55.9284277 -3.2771034, 55.9251859 -3.2505537, 55.9433431 -3.2880696, 55.9554111 -3.2871171, 55.9551063 -3.2863133, 55.9550092 -3.2873522, 55.9553468 -3.2876097, 55.9554662 -3.2864616, 55.9550547 -3.2853818, 55.9303733 -3.2059396, 55.9351048 -3.2071638, 55.9335197 -3.2097268, 55.9340800 -3.2344323, 55.9186700 -3.2386355, 55.9193908 -3.2392334, 55.9181062 -3.2402690, 55.9190442 -3.2405398, 55.9186959 -3.2407877, 55.9325805 -3.2889506, 55.9295835 -3.1883411, 55.9274742 -3.1872251, 55.9366554 -3.1786652, 55.9390667 -3.2357495, 55.9291016 -3.1989979, 55.9310105 -3.2637876, 55.9305427 -3.2629432, 55.9327690 -3.2064845, 55.9462694 -3.1973178, 55.9463532 -3.2009029, 55.9347654 -3.1776917, 55.9596999 -3.2880193, 55.9310132 -3.1730716, 55.9345092 -3.2106395, 55.9343592 -3.1947900, 55.9324830 -3.1925693, 55.9704553 -3.1793079, 55.9315592 -3.2267611, 55.9296629 -3.1905094, 55.9467179 -3.2004315, 55.9475692 -3.1935607, 55.9482972 -3.1955031, 55.9239634 -3.1724671, 55.9220936 -3.1720186, 55.9381433 -3.2071955, 55.9609398 -3.2353282, 55.9611023 -3.2337205, 55.9615648 -3.2337688, 55.9310841 -3.1608286, 55.9332640 -3.1585804, 55.9615076 -3.1962176, 55.9617797 -3.1967210, 55.9618418 -3.1964188, 55.9652328 -3.1893007, 55.9118407 -3.1733683, 55.9142368 -3.1767805, 55.9171133 -3.1693870, 55.9499151 -3.1945526, 55.9337127 -3.2143721, 55.9384227 -3.2096374, 55.9673672 -3.2023565, 55.9331209 -3.2609346, 55.9414207 -3.1461071, 55.9344536 -3.1587071, 55.9492492 -3.2166441, 55.9584013 -3.2102800, 55.9415712 -3.1423967, 55.9417960 -3.1435397, 55.9372219 -3.1675591, 55.9376359 -3.1437325, 55.9582727 -3.2142012, 55.9578400 -3.2137240, 55.9580057 -3.2137170, 55.9583384 -3.2143374, 55.9578384 -3.2135045, 55.9586941 -3.2142670, 55.9579707 -3.2133574, 55.9595991 -3.2078396, 55.9589115 -3.2077864, 55.9461251 -3.1413986, 55.9522035 -3.2050275, 55.9532469 -3.1988696, 55.9527247 -3.2019313, 55.9537795 -3.1957406, 55.9588705 -3.2081707, 55.9370075 -3.1687907, 55.9206859 -3.1596962, 55.9208169 -3.1598554, 55.9366266 -3.1734521, 55.9578355 -3.2056417, 55.9576157 -3.2060293, 55.9576413 -3.2059278, 55.9580732 -3.2011430, 55.9579644 -3.2017381, 55.9580494 -3.2012821, 55.9579410 -3.2018748, 55.9584126 -3.2005043, 55.9582239 -3.2009160, 55.9587356 -3.2012076, 55.9229466 -3.2475426, 55.9569863 -3.2004490, 55.9571215 -3.2003372, 55.9569959 -3.2010702, 55.9570258 -3.1998342, 55.9568113 -3.2014707, 55.9568346 -3.2013336, 55.9567905 -3.2018529, 55.9571440 -3.1998405, 55.9569850 -3.2000388, 55.9563234 -3.2000974, 55.9562861 -3.2003170, 55.9563051 -3.2002050, 55.9563435 -3.1999788, 55.9563659 -3.1998463, 55.9558888 -3.2012666, 55.9563438 -3.1994450, 55.9262637 -3.2243126, 55.9256658 -3.2142203, 55.9254221 -3.2108025, 55.9633427 -3.1866328, 55.9571314 -3.1945091, 55.9570903 -3.1942658, 55.9571062 -3.1948163, 55.9570078 -3.1956389, 55.9574245 -3.1945101, 55.9570801 -3.1952413, 55.9593471 -3.1962794, 55.9588288 -3.1994335, 55.9583111 -3.1990412, 55.9585624 -3.1980766, 55.9583421 -3.1992286, 55.9586095 -3.1976521, 55.9584283 -3.1986380, 55.9585084 -3.1979077, 55.9575802 -3.1968697, 55.9566931 -3.1981359, 55.9567965 -3.1968319, 55.9566552 -3.1982909, 55.9568562 -3.1972327, 55.9568774 -3.1971123, 55.9470229 -3.2203543, 55.9305464 -3.2379374, 55.9567662 -3.1885665, 55.9566534 -3.1920437, 55.9568104 -3.1898624, 55.9566771 -3.1918966, 55.9565541 -3.1926150, 55.9570880 -3.1893684, 55.9567192 -3.1908266, 55.9565429 -3.1914874, 55.9565039 -3.1916747, 55.9581429 -3.1932082, 55.9580069 -3.1929658, 55.9364299 -3.2061861, 55.9350584 -3.2069944, 55.9350875 -3.2070173, 55.9560597 -3.2073932, 55.9426363 -3.2453765, 55.9539415 -3.2061599, 55.9538842 -3.2068469, 55.9541878 -3.2062819, 55.9538990 -3.2065724, 55.9516793 -3.2103388, 55.9650228 -3.1559991, 55.9656741 -3.1572241, 55.9335280 -3.2095487, 55.9611738 -3.2007261, 55.9612899 -3.2007540, 55.9610369 -3.2004541, 55.9610414 -3.2006404, 55.9614051 -3.2007464, 55.9620034 -3.1995271, 55.9317819 -3.2955267, 55.9324370 -3.2945924, 55.9380692 -3.2958496, 55.9502297 -3.1939281, 55.9606510 -3.1948267, 55.9595489 -3.1922083, 55.9583786 -3.1909831, 55.9574599 -3.1920099, 55.9575352 -3.1909870, 55.9576821 -3.1905193, 55.9577536 -3.1902046, 55.9494095 -3.1864626, 55.9408795 -3.2097114, 55.9415305 -3.2096039, 55.9345607 -3.2083144, 55.9477482 -3.1983184, 55.9484995 -3.1924483, 55.9482088 -3.1927240, 55.9480798 -3.1929875, 55.9476449 -3.1962205, 55.9432337 -3.2014907, 55.9467112 -3.1954578, 55.9475963 -3.1940675, 55.9382616 -3.2091627, 55.9395772 -3.2053724, 55.9399587 -3.2058503, 55.9401754 -3.2051474, 55.9459124 -3.1915662, 55.9477804 -3.1928983, 55.9402430 -3.1727693, 55.9466336 -3.1922732, 55.9460773 -3.1915078, 55.9460762 -3.1916340, 55.9372942 -3.2112450, 55.9386346 -3.2107489, 55.9409866 -3.2107158, 55.9407779 -3.2120796, 55.9410206 -3.2114030, 55.9222605 -3.1522385, 55.9402022 -3.2097896, 55.9498358 -3.1944874, 55.9495178 -3.1951770, 55.9490749 -3.1954965, 55.9294754 -3.2049102, 55.9278308 -3.2029884, 55.9416154 -3.2512004, 55.9509187 -3.1896338, 55.9220620 -3.1790686, 55.9484660 -3.1908405, 55.9491359 -3.1879889, 55.9493593 -3.1850273, 55.9498809 -3.1852975, 55.9070828 -3.2093020, 55.9496587 -3.1844840, 55.9497910 -3.1868298, 55.9574965 -3.1694049, 55.9544757 -3.1956329, 55.9500589 -3.1853856, 55.9500722 -3.1849837, 55.9510003 -3.1870928, 55.9608626 -3.1709548, 55.9618365 -3.1669617, 55.9617695 -3.1672858, 55.9617360 -3.1670315, 55.9617015 -3.1669427, 55.9510336 -3.1857059, 55.9513675 -3.1810136, 55.9515036 -3.1804098, 55.9499189 -3.2133487, 55.9507176 -3.2116338, 55.9492178 -3.2148611, 55.9501659 -3.2128197, 55.9434309 -3.1997040, 55.9435924 -3.1979007, 55.9410282 -3.2065235, 55.9488780 -3.2000101, 55.9405277 -3.1801470, 55.9400777 -3.1787980, 55.9335147 -3.2105462, 55.9193931 -3.2787375, 55.9181911 -3.2782631, 55.9188677 -3.2805660, 55.9196291 -3.2799665, 55.9204553 -3.2780930, 55.9201801 -3.2782104, 55.9199010 -3.2768654, 55.9183106 -3.2760785, 55.9178305 -3.2802163, 55.9192966 -3.2811296, 55.9190402 -3.2822249, 55.9181350 -3.2823908, 55.9589084 -3.1973993, 55.9524851 -3.1785482, 55.9527783 -3.1777107, 55.9525789 -3.1786026, 55.9526096 -3.1778455, 55.9401132 -3.2035901, 55.9525625 -3.1763202, 55.9525134 -3.1760443, 55.9424726 -3.2928349, 55.9360140 -3.2013086, 55.9510367 -3.1792500, 55.9509261 -3.1791989, 55.9503655 -3.1805329, 55.9266569 -3.2906587, 55.9259672 -3.2906739, 55.9262051 -3.2898454, 55.9509562 -3.1793029, 55.9716128 -3.1531798, 55.9743102 -3.1591483, 55.9471723 -3.2950498, 55.9475057 -3.2948807, 55.9646922 -3.1748195, 55.9432391 -3.1903888, 55.9433282 -3.1904322, 55.9502335 -3.1832343, 55.9462673 -3.1864377, 55.9462171 -3.1866653, 55.9502544 -3.1792709, 55.9799828 -3.2336228, 55.9515884 -3.1767930, 55.9510805 -3.1774572, 55.9233418 -3.1754307, 55.9557050 -3.1593134, 55.9543906 -3.1655191, 55.9544965 -3.1658306, 55.9544164 -3.1663371, 55.9480729 -3.2006300, 55.9242811 -3.1768126, 55.9731731 -3.1669137, 55.9756413 -3.1693138, 55.9758911 -3.1692936, 55.9758604 -3.1697211, 55.9753361 -3.1696566, 55.9756625 -3.1668579, 55.9721048 -3.1685421, 55.9721151 -3.1680154, 55.9717652 -3.1690738, 55.9732515 -3.1673385, 55.9715681 -3.1606383, 55.9692273 -3.1671765, 55.9730053 -3.1675964, 55.9756268 -3.1775141, 55.9713870 -3.1706865, 55.9729528 -3.1695492, 55.9751541 -3.1650251, 55.9751577 -3.1653774, 55.9763527 -3.1666992, 55.9766234 -3.1668946, 55.9528423 -3.1973524, 55.9770520 -3.1688358, 55.9763420 -3.1688202, 55.9768312 -3.1689243, 55.9769477 -3.1679184, 55.9764831 -3.1675618, 55.9766276 -3.1674364, 55.9767630 -3.1679004, 55.9763615 -3.1673944, 55.9762132 -3.1674013, 55.9764423 -3.1672457, 55.9736969 -3.1671845, 55.9743212 -3.1625378, 55.9740795 -3.1632105, 55.9740620 -3.1630357, 55.9742799 -3.1619687, 55.9742593 -3.1633249, 55.9742318 -3.1635897, 55.9752231 -3.1690512, 55.9746912 -3.1702181, 55.9750377 -3.1689925, 55.9746574 -3.1700411, 55.9749450 -3.1691192, 55.9749017 -3.1700282, 55.9720281 -3.1737035, 55.9727889 -3.1744380, 55.9727346 -3.1745843, 55.9721351 -3.1736643, 55.9741171 -3.1730714, 55.9735318 -3.1745179, 55.9740812 -3.1745082, 55.9739348 -3.1746700, 55.9742013 -3.1746074, 55.9744262 -3.1756289, 55.9743317 -3.1760719, 55.9738875 -3.1759382, 55.9743689 -3.1762422, 55.9741727 -3.1757146, 55.9741963 -3.1758890, 55.9740011 -3.1760644, 55.9740555 -3.1757628, 55.9253013 -3.2894404, 55.9241260 -3.2892037, 55.9235279 -3.2886413, 55.9244036 -3.2888357, 55.9236537 -3.2877037, 55.9235845 -3.2848604, 55.9737812 -3.1727710, 55.9739374 -3.1725951, 55.9739122 -3.1731923, 55.9747248 -3.1723013, 55.9746745 -3.1725116, 55.9730956 -3.1719611, 55.9737461 -3.1722015, 55.9735419 -3.1722524, 55.9737264 -3.1720461, 55.9734307 -3.1722581, 55.9733652 -3.1721379, 55.9733894 -3.1719573, 55.9732022 -3.1719596, 55.9732758 -3.1714536, 55.9725117 -3.1719833, 55.9716033 -3.1728525, 55.9716849 -3.1726165, 55.9719508 -3.1722289, 55.9718987 -3.1720621, 55.9736826 -3.1690330, 55.9737219 -3.1688570, 55.9753470 -3.1700225, 55.9746740 -3.1690745, 55.9745309 -3.1710571, 55.9744986 -3.1695250, 55.9745046 -3.1693685, 55.9746944 -3.1711617, 55.9759364 -3.1724638, 55.9760026 -3.1723230, 55.9758148 -3.1719840, 55.9760071 -3.1718137, 55.9759688 -3.1720744, 55.9756249 -3.1743429, 55.9756742 -3.1728919, 55.9759854 -3.1781709, 55.9761643 -3.1779299, 55.9761354 -3.1781511, 55.9760579 -3.1783100, 55.9760423 -3.1778812, 55.9698130 -3.1731945, 55.9699565 -3.1730837, 55.9705998 -3.1732909, 55.9706602 -3.1735164, 55.9702099 -3.1728519, 55.9703296 -3.1739116, 55.9313596 -3.2235781, 55.9239120 -3.1786280, 55.9554739 -3.1915172, 55.9271865 -3.2341911, 55.9250599 -3.2453833, 55.9310749 -3.2221506, 55.9307308 -3.2218236, 55.9298385 -3.2256536, 55.9711024 -3.1772896, 55.9268830 -3.2763117, 55.9271895 -3.2761417, 55.9271728 -3.2756383, 55.9279132 -3.2756535, 55.9272315 -3.2766749, 55.9275662 -3.2754505, 55.9278192 -3.2762535, 55.9274993 -3.2760976, 55.9281311 -3.2753912, 55.9276010 -3.2764858, 55.9279687 -3.2767061, 55.9342711 -3.2002018, 55.9278777 -3.2077770, 55.9757705 -3.1780299, 55.9764497 -3.1747581, 55.9764285 -3.1750061, 55.9760114 -3.1763866, 55.9760220 -3.1765061, 55.9761360 -3.1764257, 55.9760874 -3.1762696, 55.9755129 -3.1738973, 55.9755844 -3.1736124, 55.9758271 -3.1753816, 55.9774064 -3.1721745, 55.9632772 -3.2726188, 55.9629194 -3.1995460, 55.9387964 -3.2425160, 55.9667316 -3.2750397, 55.9215592 -3.2426805, 55.9405241 -3.2967864, 55.9467940 -3.2000355, 55.9463600 -3.2048161, 55.9335462 -3.2128049, 55.9567217 -3.1849347, 55.9627785 -3.2719032, 55.9484157 -3.1843623, 55.9516299 -3.1976829, 55.9515303 -3.1981924, 55.9514419 -3.1987055, 55.9550446 -3.1662332, 55.9168200 -3.2801729, 55.9166096 -3.2794829, 55.9085376 -3.2562536, 55.9075868 -3.2536124, 55.9083352 -3.2474946, 55.9089070 -3.2469696, 55.9092054 -3.2459618, 55.9087682 -3.2488714, 55.9149439 -3.2391222, 55.9462175 -3.2043162, 55.9274716 -3.2133584, 55.9450678 -3.1988516, 55.9450152 -3.1980529, 55.9661572 -3.1681169, 55.9664871 -3.1685009, 55.9663445 -3.1681840, 55.9644310 -3.1603259, 55.9636971 -3.1582902, 55.9640184 -3.1583530, 55.9639604 -3.1562710, 55.9354449 -3.2070895, 55.9660102 -3.1564663, 55.9649786 -3.1578444, 55.9640880 -3.1607086, 55.9635246 -3.1598830, 55.9643177 -3.1570603, 55.9644348 -3.1572048, 55.9635131 -3.1593124, 55.9651742 -3.1579780, 55.9648238 -3.1569764, 55.9640156 -3.1598459, 55.9648546 -3.1583818, 55.9650608 -3.1582180, 55.9639268 -3.1597038, 55.9655369 -3.1578531, 55.9637202 -3.1592222, 55.9267710 -3.2081969, 55.9632267 -3.1646016, 55.9635614 -3.1638735, 55.9488330 -3.2333191, 55.9264168 -3.2095033, 55.9648135 -3.1613327, 55.9646694 -3.1605797, 55.9656875 -3.1590592, 55.9653266 -3.1608500, 55.9658325 -3.1590447, 55.9652094 -3.1594902, 55.9662270 -3.1588164, 55.9648285 -3.1618055, 55.9266095 -3.2113502, 55.9265774 -3.2116481, 55.9266981 -3.2114242, 55.9274468 -3.2082823, 55.9527993 -3.1990292, 55.9227482 -3.2166698, 55.9618196 -3.2467260, 55.9595083 -3.2012858, 55.9593429 -3.2019780, 55.9458862 -3.2282641, 55.9276210 -3.2086773, 55.9297710 -3.2113187, 55.9300070 -3.2100099, 55.9332730 -3.2373592, 55.9304082 -3.2413010, 55.9248096 -3.2521016, 55.9241906 -3.2508802, 55.9317111 -3.2278536, 55.9269392 -3.2273320, 55.9376647 -3.1916804, 55.9579672 -3.1722775, 55.9602448 -3.1936078, 55.9770253 -3.1708684, 55.9771899 -3.1708533, 55.9771055 -3.1707872, 55.9772737 -3.1711038, 55.9772794 -3.1703880, 55.9771431 -3.1704668, 55.9435456 -3.2857379, 55.9171514 -3.2798836, 55.9697308 -3.2065670, 55.9697551 -3.2060057, 55.9329802 -3.1976239, 55.9292506 -3.1898628, 55.9307908 -3.2527507, 55.9717749 -3.2052312, 55.9672808 -3.1926635, 55.9672710 -3.1923862, 55.9672179 -3.1927541, 55.9668788 -3.1921653, 55.9667564 -3.1929392, 55.9666328 -3.1919163, 55.9666359 -3.1914942, 55.9664922 -3.1915076, 55.9663968 -3.1912937, 55.9662737 -3.1911087, 55.9666782 -3.1941014, 55.9640543 -3.1923365, 55.9641163 -3.1921531, 55.9639890 -3.1925335, 55.9642623 -3.1920919, 55.9643383 -3.1919173, 55.9644156 -3.1917379, 55.9725017 -3.2722446, 55.9682031 -3.2835247, 55.9666711 -3.1946936, 55.9666595 -3.1949021, 55.9668535 -3.1948887, 55.9669288 -3.1944546, 55.9670557 -3.1945029, 55.9671998 -3.1946383, 55.9673311 -3.1948167, 55.9671329 -3.1949039, 55.9673919 -3.1946128, 55.9664712 -3.1948168, 55.9556184 -3.1896814, 55.9558570 -3.1890741, 55.9499500 -3.2408520, 55.9286617 -3.2778164, 55.9240890 -3.1742716, 55.9240746 -3.1731953, 55.9046289 -3.2061734, 55.9046775 -3.2010980, 55.9363713 -3.1696721, 55.9329709 -3.1970699, 55.9747779 -3.2066323, 55.9740399 -3.2059140, 55.9744886 -3.2044855, 55.9695776 -3.1843955, 55.9798485 -3.2021613, 55.9680028 -3.2346531, 55.9680097 -3.2344357, 55.9264430 -3.1844698, 55.9227433 -3.1869948, 55.9299961 -3.2682826, 55.9302228 -3.2672573, 55.9300830 -3.2679820, 55.9221651 -3.2360289, 55.9225751 -3.2356742, 55.9418770 -3.2953996, 55.9428914 -3.2930162, 55.9428729 -3.2937404, 55.9602830 -3.2898773, 55.9768910 -3.2298201, 55.9828314 -3.2246350, 55.9183449 -3.2729809, 55.9368335 -3.2788230, 55.9302639 -3.2406095, 55.9308087 -3.2396917, 55.9509772 -3.2003053, 55.9507920 -3.2005121, 55.9508931 -3.1999728, 55.9506085 -3.2004980, 55.9505267 -3.2004345, 55.9504869 -3.2000076, 55.9506612 -3.1997116, 55.9587885 -3.1546390, 55.9754995 -3.2139798, 55.9788585 -3.2108165, 55.9073286 -3.2483784, 55.9102386 -3.2219648, 55.9058182 -3.2215648, 55.9094971 -3.2220617, 55.9113910 -3.2196627, 55.9432151 -3.2230568, 55.9430076 -3.2229860, 55.9578595 -3.1898108, 55.9576323 -3.1912435, 55.9578040 -3.1896434, 55.9386615 -3.2390725, 55.9704306 -3.2477770, 55.9305995 -3.2393193, 55.9220264 -3.1760991, 55.9498505 -3.2060021, 55.9497655 -3.2057360, 55.9491467 -3.2048222, 55.9501160 -3.2050638, 55.9665186 -3.2057192, 55.9372716 -3.2001928, 55.9595601 -3.2912802, 55.9608939 -3.2902007, 55.9503291 -3.2226313, 55.9604580 -3.2900777, 55.9027210 -3.2393809, 55.9463848 -3.1871749, 55.9647922 -3.2859299, 55.9642704 -3.2852913, 55.9831151 -3.2227660, 55.9646737 -3.2850721, 55.9597396 -3.2880998, 55.9549526 -3.2875781, 55.9294742 -3.2537569, 55.9285589 -3.2717623, 55.9282407 -3.2714365, 55.9278763 -3.2711888, 55.9594878 -3.1871620, 55.9450042 -3.2717523, 55.9344502 -3.2209729, 55.9659941 -3.1740971, 55.9649817 -3.1572667, 55.9290466 -3.2810593, 55.9425495 -3.2686846, 55.9719283 -3.1746636, 55.9281916 -3.2054936, 55.9279155 -3.2074137, 55.9279507 -3.2070589, 55.9282680 -3.2054230, 55.9285076 -3.2053047, 55.9112736 -3.2370732, 55.9095314 -3.2284523, 55.9091958 -3.2283819, 55.9095373 -3.2269404, 55.9094412 -3.2262681, 55.9098190 -3.2247187, 55.9078688 -3.2262888, 55.9371113 -3.2388640, 55.9657117 -3.2328158, 55.9308123 -3.2225373, 55.9474254 -3.1872595, 55.9764777 -3.1935321, 55.9501836 -3.1903813, 55.9764763 -3.1861996, 55.9436134 -3.2678368, 55.9789651 -3.2338860, 55.9491467 -3.2048222, 55.9397193 -3.2934475, 55.9397826 -3.2930873, 55.9672312 -3.2394326, 55.9732950 -3.1966033, 55.9691367 -3.2785220, 55.9431626 -3.1790248, 55.9144343 -3.2431687, 55.9666992 -3.1908064 +132 and 43.6837822 -79.4260743, 43.6576795 -79.4987997, 53.9502911 -1.0730271, 53.9360281 -1.0702516, 53.9153104 -1.1359444, 53.9409591 -1.1265772, 53.9490348 -1.1324670, 53.9615418 -1.1120955, 53.9522599 -1.1123202, 53.9358339 -1.1263285, 53.9629477 -0.9755778, 53.9303232 -1.0689686, 53.9642135 -1.0653371, 53.9403226 -1.1185343, 53.9491771 -1.0804384, 53.9553252 -1.1119903, 53.9017427 -1.0873341, 53.9575241 -1.0493096, 53.9575852 -1.1178225, 53.9494875 -1.1413259, 53.9647966 -1.1058434, 53.9563077 -1.0554740, 53.9462069 -1.0762908, 53.9646978 -1.1104689, 53.9333645 -1.1101612, 53.9432145 -1.0761018, 53.9545630 -1.1860637, 53.9500452 -1.0806102, 43.6644716 -79.5073350, 53.9579066 -1.0615711, 43.6709565 -79.4808029, 53.9578916 -1.0384236, 43.6909696 -79.5078325, 43.6768364 -79.5008575, 43.6869909 -79.4927906, 43.7060427 -79.5305440, 53.9411331 -1.0453008, 53.9402545 -1.0628004, 53.9412901 -1.0485025, 53.9518846 -1.0748059, 43.6954667 -79.4292400, 53.9642505 -1.1103673, 53.9572111 -1.1022306, 53.9275166 -1.1585419, 43.6916751 -79.4801455, 43.6884518 -79.4620778, 43.6791418 -79.4807102, 43.6784874 -79.4805707, 53.9171538 -1.0961410, 43.6983920 -79.4349417, 43.7032269 -79.5060546, 53.9511412 -1.0357185, 43.6965563 -79.4691090, 53.9417894 -1.0651445, 43.6537880 -79.4901878, 43.6868311 -79.4924568, 53.9441501 -1.1072575, 43.6912619 -79.4333772, 43.6883062 -79.4538863, 53.9580671 -1.0717614, 53.9316497 -1.1069040, 43.7063756 -79.5161696, 43.6980072 -79.5193378, 43.6979105 -79.5191746, 43.6981548 -79.5195536, 43.6948627 -79.4854853, 53.9605571 -1.0416518, 43.7078482 -79.5309590, 53.8979156 -0.9664321, 43.6761780 -79.4788514, 43.6769072 -79.4772807, 43.6731469 -79.4908170, 53.9564001 -1.0614879, 53.9602131 -1.0579907, 53.9598297 -1.0582374, 43.6933502 -79.4302213, 43.6843140 -79.4879601, 43.6712702 -79.4926038, 43.6946390 -79.4359419, 43.6869082 -79.4775555, 43.6817542 -79.4986570, 43.7014365 -79.5073633, 43.6935978 -79.4761834, 43.7014532 -79.4510224, 43.7014588 -79.4506901, 43.6957307 -79.4305271, 53.9622142 -1.0110749, 43.7032224 -79.4392616, 43.6925004 -79.5088912, 43.7000154 -79.4462363, 43.7000042 -79.4464494, 43.7001712 -79.4461827, 43.7001539 -79.4458926, 43.7000636 -79.4460083, 43.6836390 -79.4590501, 43.6880963 -79.4613111, 43.6898241 -79.4643187, 53.9450082 -1.1361836, 43.6924209 -79.4689785, 43.6879894 -79.4708591, 53.9586201 -1.0293671, 53.9445374 -1.1245969, 53.9595274 -1.0981373, 53.9610119 -1.1037227, 43.6840446 -79.4389375, 43.6842718 -79.4397157, 43.6871180 -79.4284008, 53.9623408 -1.1308643, 43.6484124 -79.4885632, 53.9522747 -1.0911362, 43.6762467 -79.4781695, 43.6927596 -79.4362309, 43.6895001 -79.4353381, 43.6921445 -79.4472623, 43.6917638 -79.4436721, 43.6628673 -79.4872055, 43.6627881 -79.4870652, 43.6890777 -79.4991503, 43.6898499 -79.4650002, 43.6648262 -79.5030967, 43.7027737 -79.5207797, 53.9550640 -1.0882545, 53.9208730 -1.1589010, 53.9637209 -1.1380678, 53.9550486 -1.1302976, 43.6742489 -79.4976003, 43.7022539 -79.5255456, 53.9390567 -0.9870193, 53.9389076 -0.9874202, 53.9249592 -0.9466464, 39.9687542 -76.7280201, 53.9640155 -1.0652996 +492, 680 +48.8963839 2.3624261, 48.8248737 2.3087392, 48.8993122 2.3609092, 48.8993233 2.3617724, 48.8304425 2.2721214, 48.8564445 2.2915808, 48.8313000 2.4416725, 48.8314585 2.4435718, 48.8306063 2.4405136, 48.8319652 2.4454636, 48.8317943 2.4469582, 48.8309202 2.4463017, 48.8291949 2.4452916, 48.8291208 2.4475259, 48.8280917 2.4493365, 48.8288155 2.4504391, 48.8279653 2.4512915, 48.8172489 2.3419302, 48.8527928 2.4131895, 48.8516351 2.4139817, 48.8589361 2.4130244, 48.8219145 2.3772908, 48.8916479 2.3973660, 48.8189840 2.3359160, 48.8493218 2.2850640, 48.8413729 2.2530487, 48.8705855 2.3967103, 48.8173566 2.3642554, 48.8745694 2.2772092, 48.8651890 2.2695538, 48.8414290 2.2530717, 48.8192373 2.3541308, 48.8182299 2.4585231, 48.8194154 2.4605790, 48.8353668 2.4412540, 48.8314775 2.2726540, 48.8460923 2.2570997, 48.8262013 2.4576009, 48.8288698 2.4604906, 48.8252883 2.4577897, 48.8271040 2.4569086, 48.8267231 2.4561442, 48.8284019 2.4610162, 48.8276508 2.4590248, 48.8274884 2.4576702, 48.8256615 2.4585554, 48.8270526 2.4603840, 48.8265841 2.4609108, 48.8964444 2.3124004, 48.8892773 2.3152853, 48.8995126 2.3630674, 48.8396076 2.4117403, 48.8267883 2.2989248, 48.8996533 2.3245162, 48.9003238 2.3498399, 48.8560241 2.4128978, 48.8570641 2.4125995, 48.8617355 2.4119807, 48.8602030 2.4126917, 48.8207864 2.3270956, 48.8407199 2.2797907, 48.8650432 2.2584123, 48.8325304 2.4014430, 48.9002424 2.3481720, 48.8999996 2.3408061, 48.8330580 2.4421058, 48.8323107 2.4404839, 48.8307714 2.4424382, 48.8289808 2.4410748, 48.8289999 2.4427711, 48.8441298 2.3930950, 48.8314075 2.4542498, 48.8355851 2.4389815, 48.8537172 2.2616103, 48.8905198 2.3004678, 48.8489058 2.4157395, 48.8360783 2.4383689, 48.8352273 2.4395834, 48.8321213 2.3663327, 48.8172226 2.3451045, 48.8275756 2.3594809, 48.8185965 2.3670404, 48.8839549 2.2846685, 48.8313882 2.2716642, 48.8856508 2.3759414, 48.8185234 2.3466553, 48.8276232 2.2954956, 48.8235209 2.3144545, 48.8369677 2.2900219, 48.8511630 2.2567335, 48.8189318 2.4610821, 48.8243189 2.4615574, 48.8960440 2.3610957, 48.8563764 2.3886135, 48.8665252 2.3904723, 48.8712726 2.3865486, 48.8941086 2.3968276, 48.8904713 2.3737426, 48.8904321 2.3106567, 48.8919636 2.3123125, 48.8360029 2.2835490, 48.8940790 2.3261529, 48.8335218 2.3120440, 48.8530745 2.3008444, 48.8962634 2.3166765 +0 +yes +2 +173 +no +81 +59 +Falko Konditormeister, Greggs, Gregg's, Douglas's Bakery, Masons Bakery, Roll Up, Gregg's, Barnton Fine Foods, La Croissanterie, Mathiesons Bakers, Greggs, Cuckoo's Bakery, Storries Home Bakery, Morrison's Bakery, Greggs, Gregg's, Greggs, Greggs, Patissier Maxine, Patisserie Valerie, Bibi's Cake Boutique, Greggs, Dough Re Mi, Dough Re Mi, The Pine Tree Bakery, Bayne's, Goodfellow & Steven, Greggs, Bakery Andante, Greggs, Greggs, Bayne's, Stockbridge Kitchen, Goodfellow & Steven, Edinburgh Bakehouse, Greggs, Greggs, Bonningtons, The Wee Boulangerie, Jacob, Licks Cake Design, Greggs, Greggs, Glenvarloch Bakery, Archipelago Bakery, Sicilian Pastry Shop, Melinda's Cake Boutique, Greggs, Daneli's Deli, Too Good To Eat, Gregg's, Soderberg, Soderberg, Allan's Bakery, Breadshare, Valvona & Crolla Kitchen, Greggs, Goodfellow & Steven, Bayne's, Breadwinner Bakery, Parkhead Bakers, Bayne's, Archipelago Artisan Bakery, Crows Family Bakery, Piemaker, Greggs, Greggs +48.8769065 2.3805802, 48.8373758 2.2723483, 48.8479197 2.3992555, 48.8480669 2.2646701, 48.8672033 2.3175552, 48.8336197 2.4448135, 48.8794780 2.2911520, 48.8374741 2.2964370, 48.8426769 2.2964541, 48.8447051 2.3110485, 48.8418578 2.3031404, 48.8356667 2.3025546, 48.8418917 2.2973124, 48.8375362 2.2963597, 48.8371698 2.2968218, 48.8411351 2.2996815, 48.8513729 2.3428143, 48.8267972 2.3644166, 48.8266959 2.3418366, 48.8313237 2.3160082, 48.8276961 2.3323037, 48.8526158 2.3471643, 48.8536884 2.3438503, 48.8465209 2.3169152, 48.8223603 2.3376975, 48.8333496 2.3122320, 48.8468908 2.3696558, 48.8422395 2.3861184, 48.8463028 2.3793259, 48.8399294 2.4045970, 48.8448378 2.4051177, 48.8474520 2.4048594, 48.8473395 2.4060719, 48.8350796 2.4339399, 48.8357403 2.4304678, 48.8375477 2.4255552, 48.8346793 2.4193483, 48.8684023 2.3502078, 48.8662853 2.3197532, 48.8659622 2.3186038, 48.8679910 2.3372848, 48.8554435 2.3595073, 48.8529019 2.3430541, 48.8502442 2.3485713, 48.8844724 2.3214773, 48.8848286 2.2981665, 48.8815112 2.2955182, 48.8637584 2.2404391, 48.8410791 2.3878034, 48.8684582 2.2651973, 48.8652473 2.2754857, 48.8364073 2.3595567, 48.8325568 2.3113862, 48.8326306 2.3560783, 48.8397407 2.3618144, 48.8430681 2.3643136, 48.8548336 2.3455606, 48.8552512 2.3476157, 48.8553803 2.3476867, 48.8554064 2.3475533, 48.8552816 2.3474675, 48.8316089 2.3555656, 48.8724857 2.2964468, 48.8578487 2.2776036, 48.8561596 2.2803320, 48.8587309 2.2850498, 48.8503867 2.2499063, 48.8474160 2.2734653, 48.8645482 2.2749436, 48.8798361 2.2946562, 48.8867832 2.3174727, 48.8834250 2.3133443, 48.8832839 2.3261502, 48.8620110 2.2617158, 48.8578293 2.2627189, 48.8522460 2.2310858, 48.8561113 2.3406430, 48.8359176 2.2934497, 48.8415640 2.2914435, 48.8321096 2.3027626, 48.8488952 2.2875621, 48.8450063 2.2934495, 48.8428146 2.3128644, 48.8584946 2.2687106, 48.8590276 2.2701439, 48.8582201 2.2684874, 48.8580507 2.2679638, 48.8621864 2.2858577, 48.8627962 2.2854972, 48.8620791 2.2848191, 48.8477318 2.3279086, 48.8587970 2.2574756, 48.8844757 2.3382719, 48.8859435 2.3414431, 48.8462050 2.3548474, 48.8445578 2.3478015, 48.8397766 2.3563951, 48.8439889 2.3550231, 48.8400361 2.3581380, 48.8403571 2.3507117, 48.8777755 2.4052173, 48.8374935 2.3535342, 48.8379182 2.3556557, 48.8392719 2.3386499, 48.8382351 2.3417326, 48.8501724 2.3668483, 48.8805089 2.3247630, 48.8795193 2.3372522, 48.8860003 2.3379474, 48.8871034 2.3395432, 48.8872913 2.3493292, 48.8849270 2.3525804, 48.8994594 2.3456310, 48.8925222 2.3614454, 48.8881990 2.3259122, 48.8551549 2.3558324, 48.8670855 2.3530694, 48.8648656 2.3631280, 48.8775035 2.3271975, 48.8674954 2.3585735, 48.8554797 2.2377372, 48.8509506 2.2377234, 48.8553933 2.4000637, 48.8276950 2.3526554, 48.8718710 2.3683060, 48.8480846 2.3334838, 48.8451543 2.3325456, 48.8474379 2.3363959, 48.8503580 2.3831342, 48.8699280 2.3499165, 48.8570290 2.3204791, 48.8321351 2.3486444, 48.8326829 2.3503301, 48.8319464 2.3489503, 48.8330906 2.3497359, 48.8343659 2.3499568, 48.8293528 2.3802852, 48.8298995 2.3795486, 48.8188018 2.3371410, 48.8185040 2.3384113, 48.8181578 2.3401279, 48.8370007 2.3812275, 48.8204882 2.3602086, 48.8203447 2.3628121, 48.8199857 2.3627088, 48.8339810 2.3847461, 48.8353141 2.3838347, 48.8352990 2.3814978, 48.8787743 2.4087695, 48.8790383 2.4084495, 48.8782046 2.4088226, 48.8793770 2.4082476, 48.8785854 2.4080833, 48.8418885 2.2735712, 48.8640823 2.3242375, 48.8428738 2.2978005, 48.8243977 2.3360819, 48.8649222 2.3994933, 48.8297310 2.3179488, 48.8516782 2.3146314, 48.8706300 2.2979200, 48.8677797 2.3773892, 48.8365930 2.3046690, 48.8363767 2.4236251, 48.8295071 2.4201091, 48.8212233 2.4336070, 48.8300361 2.4231832, 48.8954660 2.3118560, 48.9006880 2.3443120, 48.8726523 2.2991152, 48.8295708 2.4234828, 48.8384857 2.3139931, 48.8880790 2.3433440, 48.8425610 2.3055230, 48.8606880 2.2465600, 48.8291280 2.4377720, 48.8488720 2.3128820, 48.8817158 2.3974038, 48.8345717 2.3321583, 48.8350776 2.4353579, 48.8517060 2.3188780, 48.8430906 2.4215578, 48.8630654 2.2649414, 48.8635021 2.2620126, 48.8600697 2.3723040, 48.8963810 2.3139000, 48.8322990 2.3969380, 48.8852454 2.3310516, 48.8397680 2.3287550, 48.8893940 2.3388820, 48.8954560 2.3210460, 48.8562087 2.3767474, 48.8556820 2.3852020, 48.8238387 2.3531949, 48.8315645 2.4109263, 48.8312210 2.4129893, 48.8532780 2.2711410, 48.8311370 2.3128840, 48.8778330 2.3934820, 48.8555310 2.3895370, 48.8898960 2.2981300, 48.8871960 2.3058630, 48.9000019 2.3742980, 48.8551080 2.3942800, 48.8459400 2.2689590, 48.8599920 2.3625150, 48.8270122 2.3540304, 48.8424551 2.3888122, 48.8856451 2.3276786, 48.8501704 2.3439958, 48.8398489 2.2904585, 48.8585128 2.2948820, 48.8525988 2.4088082, 48.8691890 2.2731280, 48.8898369 2.3739136, 48.8307590 2.3592040, 48.8526713 2.3815527, 48.8417000 2.3374070, 48.8210197 2.3568688, 48.8523510 2.2944030, 48.8383280 2.2782440, 48.8951024 2.3643279, 48.8433760 2.3364170, 48.8504870 2.3502540, 48.8654640 2.3863600, 48.8702780 2.3853090, 48.8289169 2.3068462, 48.8684460 2.3844060, 48.8530930 2.2487630, 48.8483008 2.3594250, 48.8743960 2.3620000, 48.8590555 2.3853281, 48.8510180 2.2721570, 48.8417750 2.2766630, 48.8909945 2.3180223, 48.8581770 2.2475410, 48.8708487 2.3842762, 48.8559797 2.2830925, 48.8808400 2.3880660, 48.8304600 2.4499760, 48.8366079 2.4625007, 48.8185772 2.3545050, 48.8789680 2.3090890, 48.8221640 2.3407800, 48.8861910 2.3437000, 48.8229962 2.3483008, 48.8548880 2.3860580, 48.8334140 2.3198533, 48.8782185 2.2703461, 48.8342986 2.3307561, 48.8649444 2.4051523, 48.8711656 2.3608619, 48.8683392 2.3860944, 48.8512040 2.3336860, 48.8519135 2.2527965, 48.8617560 2.2470009, 48.8211700 2.3525560, 48.8876610 2.2899050, 48.8412050 2.4011810, 48.8957085 2.3611060, 48.8325969 2.4424252, 48.8280471 2.4193059, 48.8341687 2.4613030, 48.8521115 2.2541524, 48.8319760 2.4160891, 48.8322537 2.4156461, 48.8736560 2.2651653, 48.8385501 2.4606113, 48.8237496 2.4396773, 48.8234381 2.4570355, 48.8634236 2.2498140, 48.8715892 2.2642560, 48.8302710 2.4501255, 48.8515696 2.2338766, 48.8272306 2.4306540, 48.8308745 2.4295234, 48.8404327 2.4302364, 48.8670116 2.2393588, 48.8589309 2.2291849, 48.8683594 2.2629205, 48.8351339 2.4507573, 48.8355228 2.4555897, 48.8728525 2.2727107, 48.8270280 2.4256131, 48.8523056 2.3854632, 48.8827393 2.3748215, 48.8649924 2.3911518, 48.8992390 2.3401270, 48.8283394 2.3695038, 48.8814860 2.3253960, 48.8890670 2.3382500, 48.8713595 2.3858455, 48.8756264 2.3549455, 48.8316594 2.3202088, 48.8940100 2.3515980, 48.8515687 2.3455917, 48.8606179 2.4048647, 48.8221234 2.3755099, 48.8501856 2.3598181, 48.8832242 2.3300482, 48.8543340 2.3134030, 48.8479841 2.3021348, 48.8381900 2.2706380, 48.8921127 2.3319234, 48.8783392 2.3518796, 48.8672620 2.3546160, 48.8373130 2.3123540, 48.8929520 2.3468380, 48.8319794 2.3254293, 48.8876110 2.3980200, 48.9001410 2.3907160, 48.8285390 2.2936320, 48.8581731 2.4063523, 48.8581782 2.3488219, 48.8937910 2.3254410, 48.8878070 2.3168387, 48.8701720 2.3941990, 48.8252925 2.3693389, 48.8528480 2.3236680, 48.8954540 2.3265480, 48.8366880 2.3168190, 48.8311305 2.3217527, 48.8281910 2.2975610, 48.8760549 2.4066379, 48.8646712 2.2945788, 48.8224115 2.3234656, 48.8563720 2.3423640, 48.8785620 2.3603690, 48.8656244 2.4005700, 48.8976745 2.3255573, 48.8678880 2.4110180, 48.8782870 2.3930910, 48.8687996 2.3670827, 48.8488580 2.3354220, 48.8323838 2.3266258, 48.8302050 2.3165310, 48.8578985 2.3627922, 48.8338684 2.3623631, 48.8186719 2.3602335, 48.8311679 2.3698529, 48.8353270 2.3472350, 48.8512390 2.2749420, 48.8940810 2.3257310, 48.8389116 2.2802003, 48.8435250 2.3852390, 48.8239822 2.3186264, 48.8847495 2.3583714, 48.8680920 2.3674820, 48.8268397 2.3045308, 48.8749920 2.3693880, 48.8691100 2.3880580, 48.8927720 2.3393440, 48.8582469 2.3636013, 48.8847394 2.3599665, 48.8708650 2.3267180, 48.8851070 2.3774500, 48.8759177 2.3199403, 48.8985920 2.3386760, 48.8411853 2.3632232, 48.8766520 2.3471580, 48.8973940 2.3352610, 48.8432899 2.3273991, 48.8863250 2.3533990, 48.8501986 2.3439620, 48.8892960 2.3080360, 48.8937263 2.3632365, 48.8295130 2.2974440, 48.8505319 2.3140947, 48.8513900 2.2954500, 48.8866720 2.3745570, 48.8519585 2.3815373, 48.8735974 2.3763609, 48.8486812 2.4047540, 48.8186727 2.3590770, 48.8422355 2.3539722, 48.8829640 2.2906840, 48.8865497 2.3367162, 48.8997980 2.3671430, 48.8940029 2.3839514, 48.8509163 2.4000959, 48.8990940 2.3343970, 48.8737600 2.4116660, 48.8608430 2.4112060, 48.8729910 2.3967970, 48.8991980 2.3373340, 48.8399790 2.2978655, 48.8569010 2.3829850, 48.8670820 2.3921970, 48.8394056 2.4219004, 48.8491125 2.4034753, 48.8387600 2.3533490, 48.8650341 2.4104986, 48.8939970 2.3494640, 48.8765790 2.3317425, 48.8570556 2.3709415, 48.8861355 2.3561753, 48.8866310 2.2931960, 48.8446043 2.3875639, 48.8780460 2.3546040, 48.8885760 2.3372580, 48.8544710 2.3306000, 48.8444200 2.2902970, 48.8482791 2.3738928, 48.8541916 2.4013975, 48.8477459 2.4005894, 48.8401440 2.3004225, 48.8315105 2.3698744, 48.8682815 2.2937862, 48.8377715 2.3234750, 48.8451934 2.3802706, 48.8437212 2.3551124, 48.8691909 2.3123689, 48.8313290 2.3203574, 48.8678242 2.3628446, 48.8686720 2.3127647, 48.8671021 2.3110061, 48.8450099 2.3109341, 48.8243135 2.3638527, 48.8933245 2.3887800, 48.8941743 2.3916574, 48.8412410 2.2855118, 48.8219932 2.3234435, 48.8211670 2.3407757, 48.8536514 2.3489902, 48.8408330 2.4201155, 48.8337204 2.3201626, 48.8338246 2.3197979, 48.8912248 2.3930476, 48.8946014 2.3912450, 48.8548000 2.3455200, 48.8527000 2.3492200, 48.8518000 2.3475300, 48.8242821 2.4231989, 48.8387842 2.4064887, 48.8321456 2.3262397, 48.8608218 2.3464552, 48.8685507 2.2728757, 48.8449387 2.4418585, 48.8563416 2.2955451, 48.8724483 2.2489997, 48.8687857 2.2448905, 48.8735492 2.2502871, 48.8706241 2.2491259, 48.8705077 2.2469076, 48.8729282 2.2477712, 48.8734222 2.2509255, 48.8670602 2.2431900, 48.8688615 2.2471136, 48.8516633 2.4098056, 48.8668000 2.3495673, 48.8600249 2.4009571, 48.8589058 2.3989762, 48.8559569 2.4014635, 48.8902559 2.3155823, 48.8895081 2.3152790, 48.8909868 2.3143418, 48.8916562 2.3142685, 48.8819047 2.3985349, 48.8590759 2.4003273, 48.8644583 2.3274519, 48.8879169 2.3153097, 48.8879452 2.3155854, 48.8914702 2.3147632, 48.8264004 2.4327560, 48.8189971 2.3575128, 48.8323795 2.3620094, 48.8697228 2.2704730, 48.8520536 2.4091515, 48.8198844 2.3619743, 48.8195477 2.3338738, 48.8569678 2.3519723, 48.8499865 2.3481714, 48.8895806 2.3929015, 48.8847068 2.3794407, 48.8420092 2.4240851, 48.8643128 2.3266632, 48.8232610 2.3543235, 48.8232751 2.3542283, 48.8359580 2.3022176, 48.8237907 2.3314831, 48.8632906 2.3969375, 48.8597103 2.3998209, 48.8303745 2.3751493, 48.8930154 2.3876090, 48.8296235 2.3814150, 48.8300792 2.4152641, 48.8419664 2.3871201, 48.8815514 2.4001315, 48.8283387 2.3766344, 48.8238319 2.3396086, 48.8612225 2.3119810, 48.8625039 2.3009824, 48.8633424 2.3714600, 48.8880273 2.3373781, 48.8725766 2.3640561, 48.8441811 2.3576296, 48.8668462 2.3528123, 48.8660061 2.3525045, 48.8764030 2.3793479, 48.8310374 2.3779683, 48.8226090 2.3400474, 48.8239560 2.3366723, 48.8527614 2.3515044, 48.8577082 2.3492535, 48.8564552 2.3511205, 48.8888874 2.3790640, 48.8421923 2.2737321, 48.8386247 2.2767307, 48.8786186 2.4075133, 48.8276674 2.3600431, 48.8279422 2.3594556, 48.8281470 2.3775133, 48.8585066 2.2446643, 48.8316089 2.3555656, 48.8316089 2.3555656, 48.8869922 2.3168829, 48.8243136 2.4192238, 48.8629574 2.3670436, 48.8705355 2.3858494, 48.8771612 2.3641684, 48.8365007 2.3061630, 48.8408118 2.2763450, 48.8662716 2.4063088, 48.8487971 2.2855992, 48.8305375 2.3580300, 48.8527458 2.3514040, 48.8340933 2.3218873, 48.8342849 2.3425292, 48.8361094 2.3872805, 48.8774505 2.3685222, 48.8563876 2.4098516, 48.8897544 2.3636094, 48.8894148 2.3633280, 48.8895729 2.3670765, 48.8479507 2.3346295, 48.8531320 2.3882360, 48.8548595 2.4101096, 48.8950748 2.3539271, 48.8737508 2.2552546, 48.8572052 2.2975105, 48.8287592 2.3789983, 48.8289978 2.3792237, 48.8324901 2.4167426, 48.8325371 2.4171377, 48.8770432 2.3607309, 48.8928183 2.3927190, 48.8528020 2.4110674, 48.8854184 2.3809339, 48.8847022 2.3794239, 48.8220651 2.3497136, 48.8402419 2.2911223, 48.8556477 2.3481362, 48.8647970 2.3376815, 48.8379924 2.3573249, 48.8506007 2.3684957, 48.8279269 2.3606649, 48.8281328 2.3608761, 48.8284210 2.3605021, 48.8290169 2.3599418, 48.8313949 2.3614586, 48.8502691 2.3768309, 48.8514077 2.3619724, 48.8557425 2.3657180, 48.8557863 2.3654533, 48.8405076 2.4080728, 48.8407300 2.4111999, 48.8420117 2.4099305, 48.8435586 2.3837116, 48.8463579 2.4045679, 48.8467508 2.4047042, 48.8481084 2.4046457, 48.8358697 2.3734634, 48.8362808 2.3737861, 48.8444058 2.3789793, 48.8307541 2.4193421, 48.8663182 2.3718556, 48.8209696 2.4454995, 48.8453348 2.3532344, 48.8736147 2.3633962, 48.8708335 2.3864170, 48.8223127 2.4420635, 48.8594153 2.4063574, 48.8759892 2.3685271, 48.8640746 2.3609523, 48.8602693 2.3889177, 48.8593740 2.3653569, 48.8279008 2.3224596, 48.8615941 2.3786285, 48.8648516 2.3601559, 48.8446258 2.3602639, 48.8458322 2.3604678, 48.8745071 2.3771328, 48.8584687 2.3716161, 48.8599169 2.3845657, 48.8519327 2.2866969, 48.8442777 2.3588710, 48.8394931 2.3179481, 48.8363713 2.3098813, 48.8541415 2.3560013, 48.8601631 2.3908290, 48.8623200 2.3438199, 48.8600077 2.3895038, 48.8752689 2.3614142, 48.8771084 2.3468708, 48.8601518 2.3613994, 48.8311641 2.3746022, 48.8542855 2.3695398, 48.8672446 2.3647755, 48.8692789 2.3666901, 48.8621089 2.3439580, 48.8528043 2.2296278, 48.8623709 2.3444850, 48.8731766 2.2682180, 48.8333281 2.4112207, 48.8641938 2.3374224, 48.8652237 2.3379487, 48.8628504 2.3436130, 48.8262202 2.3382130, 48.8558055 2.3475517, 48.8613910 2.3424070, 48.8274926 2.3487405, 48.8680842 2.3631278, 48.8684000 2.3633800, 48.8818819 2.3836565, 48.8822355 2.3824751, 48.8860573 2.3439762, 48.8621822 2.3530287, 48.8569072 2.3367906, 48.8578391 2.3144195, 48.8322747 2.4077869, 48.8360719 2.3733952, 48.8448709 2.3364362, 48.8592131 2.3991113, 48.8594497 2.3924686, 48.8605704 2.3967700, 48.8615389 2.3974070, 48.8620888 2.3721843, 48.8416099 2.3879001 +yes +yes +8 and 55.9354242 -3.1897423, 55.9541859 -3.1087201, 55.9374159 -3.1700169, 55.9346960 -3.2336518, 55.9351509 -3.2333184, 55.9355280 -3.2338970, 55.9359363 -3.2354103, 55.9360465 -3.2346120 +recreation ground, allotments, construction, cemetery, industrial, grass, commercial, farmland, railway, basin, retail, village green, residential, forest, farmyard, orchard, meadow, proving ground, landfill, traffic island, greenfield, vineyard, sand, scrub, garage, brownfield, greenhouse horticulture, quarry, garages, farm +2.6754177782878759 +yes +Tiergartenstraße +53 +yes +Camping de Paris - Bois de Boulogne +01.40.67.97.66, +33 1 44 78 75 00, +33 1 44859800, 01 46 36 07 07, 01 44 85 98 00, +33 1 44781233, 01.53.01.96.96, 01 48 03 11 09, +33 1 53 46 75 10, +33 1 55 74 70 40, 01.58.52.10.30, +33 1 49 54 75 00, 01.44.78.80.20 +yes +de:Heidenloch (Heidelberg) +4.3205587903235791 +11 +247 +55.9308997 -3.1309460, 55.9390356 -3.1728028, 55.9350432 -3.1974969, 55.9530218 -3.1069154, 55.9838271 -3.1959330, 55.9609898 -3.2094322, 55.9423816 -3.2176526, 55.9715830 -3.1756500 +23 +29 +1 +Pharmacie Internationale +73 +Südwestrundfunk (SWR) +48.8275543 9.1735007, 48.8317303 9.1734075, 48.7617346 9.1602369, 48.7788981 9.1250248, 48.7596919 9.2545814, 48.7755956 9.2787713, 48.7822418 9.1959176, 48.7297433 9.1126553, 48.7404705 9.2193208, 48.7701954 9.1501963, 48.8038663 9.2046417, 48.7813370 9.1781225, 48.7738605 9.1653114, 48.7745628 9.1768249, 48.7755661 9.1822665, 48.8075764 9.2215905, 48.7748791 9.2033224, 48.7855023 9.2078250, 48.7728984 9.2422225, 48.7603190 9.1527564, 48.8099398 9.1822005, 48.7835213 9.1904669, 48.7777675 9.1786644, 48.7836379 9.1815620, 48.8051636 9.2143167, 48.8075633 9.2031061, 48.8056941 9.2052973, 48.8046584 9.2081441, 48.7733342 9.1815389, 48.7935947 9.1983330, 48.8302021 9.2116521, 48.8031750 9.2176931, 48.7482479 9.1675385, 48.7803811 9.2504393, 48.8062716 9.1978670, 48.8137095 9.1121176, 48.7459605 9.1628840, 48.8141780 9.1680725, 48.7637146 9.1680877, 48.7829026 9.1869980, 48.7314704 9.1097357, 48.7803731 9.1800642, 48.7790681 9.1778545, 48.7789470 9.1790715, 48.8029161 9.0920608, 48.7103495 9.2034577, 48.8299794 9.1677017, 48.8066438 9.2064316, 48.7625523 9.2679330, 48.7714772 9.1787823, 48.7739785 9.1452043, 48.7743064 9.1728145, 48.7607878 9.0913690, 48.8367097 9.2219462, 48.8053640 9.1717932, 48.8047872 9.1737641, 48.8071042 9.1709399, 48.7454315 9.2048052, 48.7749765 9.1780052, 48.7865061 9.0839294, 48.8094922 9.1604032, 48.8347151 9.2143326, 48.8016329 9.2177209, 48.7813410 9.2686106, 48.7836687 9.1815739, 48.8414941 9.2304961, 48.7764847 9.1755588, 48.8076517 9.1765509, 48.8280349 9.1541290, 48.7938236 9.1839219, 48.7837497 9.1800574, 48.7507249 9.1456259, 48.7505944 9.1457578, 48.7313130 9.1503043, 48.7180216 9.1426302, 48.7181588 9.1430137, 48.7774882 9.1785566, 48.8036701 9.1726227, 48.7741500 9.1732643, 48.7979487 9.2154410, 48.7735308 9.1564212, 48.8022186 9.2108011, 48.7173535 9.1056474, 48.8228892 9.2406244, 48.7072019 9.1705971 +Römischer Tempel, Dicker Turm +3 +indian, italian, international, regional, greek, chinese, thai, german, french, vegetarian, spanish, mediterranean, malaysian, eritrean, japanese, persian, asian, moroccan, burger, vietnamese, turkish, african, cuban, korean, vegan, Flammkuchen, salat, pizza, ice cream, mexican +H+G Bank and 49.4120923 8.7117858 +yes and 69 and 48.8651191 2.3417893, 48.8776904 2.2687637, 48.8889479 2.3316294, 48.8844316 2.3506830, 48.8551205 2.3589562, 48.8424054 2.3895404, 48.8947814 2.3190669, 48.8549238 2.3592860, 48.8698923 2.3755947, 48.8832324 2.3637211, 48.8842940 2.3538553, 48.8245519 2.3668617, 48.8442654 2.3304438, 48.8595500 2.3794207, 48.8476483 2.3769905, 48.8425187 2.3899605, 48.8776787 2.3858246, 48.8683317 2.3921668, 48.8522237 2.3452202, 48.8947391 2.3190753, 48.8903302 2.3647026, 48.8951201 2.3923772, 48.8541107 2.3568241, 48.8892150 2.3050790, 48.8519784 2.3354942, 48.8784073 2.3854415, 48.8782913 2.3861269, 48.8838102 2.3718772, 48.8875552 2.3794980, 48.8480906 2.3770269, 48.8698453 2.3669656, 48.8766670 2.2637973, 48.8748600 2.3639693, 48.8609265 2.3628538, 48.8294004 2.3817559, 48.8508732 2.3491554, 48.8486259 2.4110383, 48.8488289 2.3520343, 48.8640121 2.3431386, 48.8605119 2.3524278, 48.8609964 2.3511217, 48.8581282 2.3585957, 48.8665653 2.3534157, 48.8748621 2.3640685, 48.8714289 2.3586492, 48.8491305 2.3324247, 48.8616442 2.3214269, 48.8909125 2.3908221, 48.8914135 2.3730389, 48.8958998 2.3850390, 48.8523494 2.3282306, 48.8775032 2.3443702, 48.8660241 2.3891973, 48.8700810 2.3939859, 48.8852691 2.3273520, 48.8852591 2.3385563, 48.8480847 2.3771241, 48.8312041 2.3702611, 48.8520334 2.2747877, 48.8440354 2.3463430, 48.8571575 2.3234807, 48.8270369 2.3133478, 48.8497046 2.3472459, 48.8582260 2.3619639, 48.8310687 2.3580834, 48.8902445 2.3700712, 48.8548894 2.3230863, 48.8717602 2.3914301, 48.8673569 2.3780427 +yes +Mannheim +yes +0 +La Poste, La Poste, La Poste +2243833 +yes +Fair & Quer, REWE City, Edeka, Netto, Penny, ALDI SÜD, denn's Biomarkt, Lidl, Fair & Quer, City-Markt Rüdinger, Netto, Penny, Netto, Feinkost Sahin, Masala, Heil's Feinschmeckerladen, Kaufland, REWE City, REWE city, Penny, Alnatura, Reformhaus Escher (Vita Nova), Alnatura, Serpa Markt, Nahkauf, City-Markt Rüdinger, Scheck-In-Center, Netto, Annas Unverpacktes, dm, Rewe, Kaufland, denn's Biomarkt, Lidl, Aldi, Rewe, Lidl, Penny, Nah und gut, Rewe, Kaufland, Aldi Süd, Lidl, Aldi Süd, Aldi, Aldi, REWE Center, ALDI Süd +no +48.8510673 2.3670936, 48.8494146 2.3482770, 48.8452383 2.3641683, 48.8442218 2.3811783, 48.8690961 2.3437971, 48.8426264 2.3901753, 48.8675566 2.2753192, 48.8542310 2.2688050, 48.8503222 2.3325549, 48.8638367 2.3749471, 48.8725482 2.3581799, 48.8922817 2.3443080, 48.8843283 2.3861616, 48.8582851 2.4065730, 48.8561576 2.4045951, 48.8577179 2.2773092, 48.8638302 2.2764451, 48.8855926 2.2970145, 48.8841470 2.3223431, 48.8433337 2.2768334, 48.8414384 2.3002634, 48.8755541 2.3045372, 48.8553731 2.3435125, 48.8628456 2.3420046, 48.8616954 2.3482560, 48.8669041 2.3315149, 48.8542985 2.3783997, 48.8589937 2.3814395, 48.8473592 2.3309027, 48.8340181 2.3740832, 48.8652119 2.2905036, 48.8701850 2.3766208, 48.8896373 2.3480452, 48.8671825 2.3131358, 48.8668030 2.3107239, 48.8445644 2.3839569, 48.8777522 2.3178837, 48.8544686 2.3341824, 48.8694260 2.3613550, 48.8807365 2.3660941, 48.8632736 2.3519950, 48.8416861 2.2637661, 48.8804108 2.3562078, 48.8361400 2.3232008, 48.8768355 2.3527879, 48.8911935 2.3792213, 48.8550679 2.3462868, 48.8411402 2.3654371, 48.8764364 2.3934657, 48.8472751 2.2844418, 48.8933622 2.3648120, 48.8767354 2.3606489, 48.8577240 2.2943986, 48.8401255 2.3884289, 48.8541008 2.3508942, 48.8255436 2.3844578, 48.8808624 2.3661835, 48.8922985 2.3808600, 48.8620107 2.3121034, 48.8811721 2.3279298, 48.8401192 2.3024490, 48.8654752 2.3969034, 48.8851079 2.3221911, 48.8852850 2.3516529, 48.8330311 2.3559118, 48.8381409 2.3592686, 48.8264091 2.3707059, 48.8288263 2.3665943, 48.8361561 2.3231047, 48.8880496 2.3766443, 48.8764136 2.3254701, 48.8543637 2.3467385, 48.8880610 2.3765878 +yes +yes +1 +48.1133979 11.5580798, 48.2167392 11.5288862, 47.5432525 9.6839101, 47.5645037 9.6756220, 48.5915951 10.5122665, 48.1917560 11.2604606, 48.1672232 11.5486553, 48.0529514 11.6690600, 48.0652614 11.6606034, 48.1502805 11.5678752, 48.1467783 11.4594849, 47.9641506 11.3470172, 48.1724381 11.5708812, 47.8174163 10.5345680, 48.1395725 11.6047921, 48.0954169 11.5566816, 48.3830181 10.4715717, 48.0913305 11.6784142, 47.8527854 12.3359177, 47.6768601 11.8377311, 48.1106870 12.1546587, 48.1128273 12.1503231, 48.5745332 13.4639931, 48.1452629 11.4616156, 48.1101440 11.5418164, 48.6831112 10.8195081, 48.1187926 11.4450399, 48.1169283 11.4307756, 48.1121499 11.6495213, 47.8376039 11.7570497, 48.7077119 10.7968484, 48.3552345 10.9787047, 48.0087205 11.7329256, 48.0216058 11.7817301, 48.4036435 11.9891592, 48.5330823 12.1608939, 48.6793262 10.8400082, 48.6721648 10.8601728, 48.4303767 10.6017105, 47.9110333 11.6747920, 48.5335696 12.1598458, 47.8282218 12.9077877, 48.7156858 10.7825564, 48.0481989 11.7018359, 48.0771504 11.7151918, 48.0772113 11.7150714, 48.1436359 11.5777273, 48.1433386 11.5761135, 48.7136659 13.2701615, 48.1144089 11.7961741, 47.3109958 10.2208189, 48.0597535 11.6211298, 48.0672747 11.6620874, 48.3649975 11.4598175, 47.9837849 11.7003225, 48.0199151 11.7286030, 48.5764989 10.8567173, 47.6606856 10.3497681, 48.1439897 11.5890544, 48.1504174 11.5926415, 48.1425164 11.5819824, 48.1413020 11.5773712, 48.4393971 10.4521982, 48.7256870 13.6028288, 48.7279362 13.6020419, 48.1708444 11.5561051, 48.4034482 10.4623921, 48.1529504 11.2588493, 47.7145411 10.3070947, 48.7365394 13.5593114, 47.9066812 11.2801198, 48.7345934 13.5963213, 48.7364847 13.5964511, 48.7382158 13.6078165, 48.4985997 10.4042132, 47.4419272 11.2615129, 48.6364406 10.8242648, 48.7302984 13.6011798, 48.6624403 10.5210395, 48.1029807 11.8361371, 48.1350817 11.8749388, 47.9136232 11.2885710, 47.9129446 11.2857099, 48.8323467 12.1397113, 47.9081793 11.2773451, 47.9111525 10.5746665, 47.5549753 10.3199972, 48.2061893 11.5287483, 48.7223938 13.6179050, 47.9477750 11.2973595, 48.0026541 11.3213801, 48.0029713 11.3200625, 47.9431822 11.2570840, 48.1011013 11.6307959, 48.2372271 11.5475541, 48.2509071 11.5479241, 47.9410010 11.3016771, 47.9488326 11.3073731, 47.8632158 12.0083649, 47.8539580 12.0178026, 48.6157478 13.5403897, 48.0760825 11.5427810, 47.8977079 11.7820554, 48.1358816 11.5497163, 48.1273073 11.5451210, 48.1365137 11.5736815, 48.0392695 11.1435565, 48.3455521 12.1317089, 48.0002694 11.7956966, 48.5982247 13.5518268, 48.2568821 11.4533336, 48.1426929 11.5915162, 48.1804331 11.2800013, 47.5806808 12.9900205, 48.1010543 11.5467882, 48.1684727 11.5687083, 48.1711863 11.7155717, 48.1907849 11.2798642, 47.9032628 11.2772693, 48.6457043 13.5429788, 47.9003514 11.2741039, 48.7163700 13.6172725, 48.6167866 11.9930003, 48.1792348 11.3734128, 48.1782705 11.6260539, 48.0251906 11.9632421, 48.1418146 11.5678012, 48.3834205 10.4714165, 48.1372350 11.5755354, 48.8581460 12.2279055, 48.4051825 11.9906620, 48.1350984 11.5760826, 47.7647020 12.3237407, 48.4676545 11.9380643, 48.4683690 11.9372259, 48.4675850 11.9354037, 48.1162625 11.5773134, 48.1155748 11.5803688, 48.2868645 11.4176679, 48.1489142 11.4594334, 48.0738927 11.3926369, 48.0960216 11.4131009, 48.2731929 11.4236388, 47.4676949 11.2491918, 48.1637344 11.4579506, 48.1476363 11.6010835, 48.1539596 11.6074323, 48.2849053 11.4363469, 48.1799294 11.5750893, 47.8639011 12.6442624, 48.3046921 11.5429995, 48.1798173 11.5493366, 48.1767245 11.5477536, 47.8729654 12.1972526, 48.2738619 10.2290878, 48.5308012 11.4964571, 48.1596505 11.9979333, 48.1043551 11.2253453, 48.1707150 11.2528747, 48.1189859 11.4452775, 47.7684577 11.6491787, 48.7011673 12.0279415, 48.2872819 10.2192824, 48.5674749 10.4829016, 47.7602384 11.7365376, 47.9707197 11.7805174, 47.7501179 11.6777269, 47.9724108 10.1739626, 48.1256571 11.6629814, 48.7865388 10.6881358, 47.4336111 11.2579089, 47.7041339 12.0283575, 47.6066818 11.3147285, 47.7480474 10.6074388, 48.0017408 11.2701528, 47.6520979 11.4211323, 47.6542475 11.3610692, 48.0742257 11.6533857, 48.0596714 11.6672049, 47.6295533 10.1893894, 48.1287664 11.4349115, 47.6824907 11.5717732, 47.9132392 11.2862167, 48.3591440 12.6093476, 48.1403023 11.5739691, 48.2510565 11.5076920, 47.6268703 11.2381280, 48.0313255 11.6009473, 47.8825405 12.3323531, 48.4431330 10.7802592, 48.8044496 10.4947348, 47.7086603 11.7559246, 48.1598332 11.5978295, 48.1609141 11.5986413, 47.6172547 11.7431278, 48.0017688 10.5957050, 48.3788752 10.7774869, 48.1540535 11.5364883, 47.9798977 10.3083041, 48.1577100 11.5604800, 48.4080801 10.6837646, 48.2015987 10.1362656, 48.3195203 11.6884744, 48.7073907 10.6685039, 48.1431039 11.5739255, 47.8189913 11.3224155, 48.4686468 11.1766687, 47.7518380 11.5542307, 48.1094874 11.6715247, 48.0436899 11.6184000, 48.0340516 11.2124902, 48.1694783 11.5704846, 48.5779716 10.4885527, 48.1951367 11.5726760, 48.6886965 10.9194547, 47.6855301 10.1332724, 48.5429503 11.5196548, 48.2558722 11.0933001, 48.6105657 13.6209883, 47.5859700 11.0639976, 47.5432701 10.4276675, 47.5964215 11.0654629, 48.3843367 10.8229418, 48.1888895 11.2264458, 48.7976268 11.5458268, 48.8125589 11.5856847, 48.0367037 11.1887722, 48.5368053 11.4792245, 48.8988008 11.6460326, 47.9699197 10.9587540, 47.9727825 10.9565821, 47.5869550 10.6152976, 47.6663871 10.7409189, 47.7196300 13.0070178, 47.5031642 13.0178510, 47.5763930 12.9428503, 47.5858088 12.9880887, 48.0669364 10.9956216, 47.7945484 11.8652626, 48.8228747 11.8710406, 47.5336896 12.9724350, 47.5301100 12.9619598, 47.5031123 12.9328624, 48.5606131 13.2960716, 48.1910596 11.3134435, 48.1716866 11.2891123, 48.8211211 11.5141945, 47.8516723 12.0615827, 47.8485888 12.0672963, 48.1508584 11.6433653, 48.0377230 11.4622667, 47.5548126 10.7321880, 47.7364685 10.7761580, 48.1469931 11.6257305, 48.0686738 11.6615712, 48.6328788 13.1769786, 48.0426344 10.2945479, 48.1635945 11.5422540, 48.6126614 10.9500893, 48.4554508 13.2099038, 48.1201768 11.6588925, 48.0814807 10.8544651, 48.1623524 10.8066057, 48.1465398 10.8191243, 48.8284245 12.7200960, 48.8833939 11.7772066, 48.3676716 10.8969666, 47.9828283 11.5203806, 47.6097785 9.9042077, 48.3081584 12.3332939, 47.8125152 12.1214531, 47.8648888 12.7820620, 47.8519085 12.7832926, 48.3710829 13.2776572, 48.2201211 11.6774482, 48.2245882 11.6741143, 48.6986345 10.9775657, 48.4362093 10.1872509, 48.2263875 11.6752754, 47.7270982 10.3387905, 48.2137470 11.8802685, 48.1386282 11.5783400, 48.1258240 11.6768961, 47.9424984 11.3431273, 48.5730213 12.5785231, 48.2445643 10.3686453, 48.1278863 11.3497181, 47.7633885 10.2960897, 48.1303964 10.2218735, 48.0876973 11.6096828, 48.0713652 11.6061007, 47.7838440 12.2774723, 48.0645494 11.6250396, 48.1477907 11.6012806, 48.1411124 11.5911449, 48.1420419 11.5694098, 48.6020461 12.3128264, 48.0125422 11.5154911, 47.7705922 11.6748336, 48.3573921 10.8798938, 48.3575354 10.8799292, 48.5946076 12.4311920, 48.8882557 10.4728159, 47.5564464 9.6592698, 48.4516658 13.1929689, 48.1012876 11.6309166, 48.1216394 11.5816197, 48.1400779 11.5683717, 47.6753407 11.4912807, 48.1338649 11.5674133, 48.1424482 11.5727949, 48.1225592 11.5679070, 48.3997027 10.8527239, 48.0790364 11.7432694, 48.1114620 11.7728378, 48.0217457 11.8128583, 48.0045195 11.8446675, 47.7200990 10.3177561, 48.1586030 11.5801588, 48.4990785 12.0623824, 48.1374225 11.3642089, 48.2385309 11.5735864, 48.0371732 10.3385081, 47.7010787 10.2943220, 47.7012335 10.2961026, 48.1136230 11.4812146, 48.1308581 11.5826367, 48.1808226 11.5474087, 48.1766390 11.7434041, 48.2167506 11.5288939, 48.2169135 11.5289632, 47.7514802 10.2469871, 47.7269398 10.3115748, 48.1970602 11.8109996, 48.1936977 11.4594269, 48.3755745 10.8916871, 48.4340783 10.8783981, 48.1052088 11.4596178, 47.7209713 10.2750525, 48.6612244 12.5310457, 48.1516220 11.5525356, 48.1619407 11.5761975, 48.1619237 11.5760965, 48.1619235 11.5760954, 48.1618271 11.5756350, 48.1619234 11.5760944, 48.1420322 11.5715095, 48.1425078 11.5724864, 48.1417931 11.5707416, 48.1431184 11.5721749, 48.1399719 11.5734647, 48.0653013 10.2404773, 48.0764092 10.2250972, 48.0741438 10.1991626, 47.8474883 10.6340669, 48.1388639 11.5739365, 47.8045823 12.2214612, 47.7145365 12.1290861, 47.9098136 11.6754772, 48.1508795 11.5801207, 47.8733749 11.8703542, 47.9029318 12.2354760, 48.3887190 10.0749717, 48.4911642 11.1847507, 48.0027874 10.2193812, 48.3838616 11.0471515, 48.2484642 11.6828738, 48.1581096 11.6156226, 48.3591631 12.5094907, 48.3586447 12.5343924, 47.7275214 12.1230949, 47.8835216 10.6135767, 47.8866331 10.6122228, 47.7286487 10.3072214, 48.1166096 11.7662870, 47.7666534 10.2992963, 48.0631239 12.2330584, 48.1566658 11.6254379, 48.6743210 10.8205105, 48.2418607 12.4527747, 47.7220243 10.2723610, 47.7706773 12.1475696, 47.6003867 9.8854237, 48.0007322 12.4072228, 48.3327301 11.6172233, 48.5734486 13.4640106, 48.1598066 11.4148877, 48.8432843 10.6049178, 48.1687944 11.4573356, 48.1433520 11.5818825, 48.1440058 11.5811138, 48.1440394 11.5811862, 48.1441172 11.5805089, 48.1435307 11.5821849, 48.4010364 13.3712269, 48.0835944 11.8228819, 48.5377879 11.8593020, 48.1584309 10.8316085, 48.1523379 10.8592314, 47.5539683 10.0209528, 48.4732128 13.2135492, 47.8046498 12.3714877, 48.9002004 13.0360209, 48.3222795 11.8443135, 47.7027468 11.7615738, 48.1491588 11.4340765, 48.7652337 11.3044727, 48.1916228 11.8684710, 47.5437133 11.1749978, 47.5561583 9.9641943, 48.5435989 13.2387134, 47.9160513 11.5805505, 47.9005583 11.6080856, 47.8914385 11.5880742, 47.8662085 11.5423723, 47.9178138 11.2048534, 47.9480348 11.5977988, 47.9538922 11.4985415, 47.9081813 11.5466083, 47.9375040 11.5280923, 47.9516801 11.4760690, 47.9463678 11.6443382, 48.1191023 11.1316690, 48.1416278 11.5902260, 47.7361150 10.3078127, 47.9564047 11.3632268, 47.4769809 12.9616386, 48.1617099 11.5810683, 47.3149196 10.2665696, 48.0159193 11.8961216, 47.7725722 12.4343029, 48.0182478 11.7123423, 48.7636807 11.7840985, 48.6352566 13.1810400, 48.6332943 13.1730816, 48.5166731 12.1256140, 47.7006458 10.3100172, 48.6989114 11.8723543, 47.3090259 10.2945389, 48.5436782 12.1537502, 48.1266612 11.6705674, 47.9450697 11.1834532, 47.5529805 10.0247259, 47.8670370 12.0073600, 48.1641390 11.5315247, 48.2245720 10.3729953, 48.0613572 11.2266624, 48.2344666 11.6737996, 47.9211183 11.4202190, 47.4559350 11.2758423, 48.3057015 11.4866372, 48.1768831 11.6030792, 47.8748319 10.5326390, 48.5469610 13.0920037, 48.1966964 11.8107166, 48.6333358 12.4004686, 48.1200168 11.6770560, 48.1192391 11.6769136, 48.0744642 11.2630791, 47.6967777 10.3451365, 47.8477656 11.5822566, 48.0749573 11.2580368, 47.6847222 10.4126955, 48.1953186 11.5755861, 47.7438297 10.2245692, 47.8627828 12.3682165, 48.1405264 11.0193437, 47.7800823 11.1272811, 47.5822042 9.8499454, 48.1200435 11.3643107, 48.6913587 12.2076836, 48.6904770 12.2075236, 48.3686370 10.8993708, 48.3041089 11.8588743, 48.5682510 12.3257440, 48.6183133 13.3896849, 47.8664443 11.7837703, 47.9806706 11.5715732, 47.6407172 11.8119658, 48.1811702 11.5169736, 47.5023951 10.3301636, 48.1478657 11.7322591, 48.3080477 10.8951232, 48.6790671 10.8204961, 48.8938835 13.0411789, 47.7716047 11.3153159, 48.1603293 12.0316006, 47.7740290 11.3283735, 48.3488417 10.5851900, 48.7416090 11.4478339, 48.5741240 12.5789391, 48.6693239 10.5122669, 47.3707494 10.3584031, 48.3582039 10.5952767, 48.3558373 10.5896427, 48.0302908 10.8525179, 48.5553424 12.4154760, 48.7499032 12.3372814, 48.5941545 10.5418061, 47.8177812 11.5831907, 47.7181107 11.7940329, 47.9483644 11.2978052, 48.0605044 12.2198648, 47.7560236 11.7451567, 47.7340849 11.7658323, 48.1307110 11.5923150, 47.6258509 9.9781993, 47.8049408 11.1960620, 47.8593309 12.1240177, 47.9313740 11.4208664, 47.4458890 10.2753054, 47.6138892 10.5938423, 47.6146175 10.5964515, 48.2069696 11.6425405, 48.0587790 11.7725479, 47.6420716 12.1021865, 47.6889758 11.1840864, 47.7219398 11.2945828, 48.1897158 10.8269885, 48.3446802 10.9353840, 48.8633623 13.6780136, 48.0969476 11.5923807, 47.8252837 12.0966772, 47.8521215 12.0634403, 48.0840599 10.8580061, 48.0506355 10.8773806, 48.3969018 9.9999972, 47.6434474 11.7466035, 47.6450803 11.7423983, 48.8809002 12.5642144, 48.0967228 10.9185587, 47.8463632 12.2297235, 48.2814995 10.4848715, 48.8136490 11.5110770, 48.5979327 11.2976076, 48.4008166 11.7440251, 47.9339678 12.7348143, 47.9337012 12.7343361, 47.9556546 10.8697326, 47.9673121 10.9183741, 48.6556535 10.2793136, 48.1509192 11.5766855, 47.7408140 12.7027315, 47.9632050 10.8787058, 48.0901367 11.6484822, 47.6446179 10.7295722, 47.6734563 11.5974212, 48.4987681 12.1754338, 47.9410297 11.3016252, 47.8307822 11.8016392, 48.8115053 12.2818893, 48.5821928 13.2391059, 47.6543967 10.2580417, 47.6256276 10.6899881, 48.2087968 11.5811398, 48.5148832 11.5443784, 48.5114077 11.5445715, 48.8308839 10.8492397, 48.0496911 10.7834808, 47.6452968 10.4412319, 47.7528561 12.5191508, 48.3225772 11.6015380, 48.2303373 11.5684865, 47.5464361 10.2806561, 47.9353129 11.0794910, 48.5502505 11.9452100, 48.4194543 11.0959927, 48.1479010 11.8192123, 48.1522516 11.8536961, 48.1687671 11.9126528, 48.7191192 11.1036130, 48.8272520 12.3966062, 48.1739333 11.5481724, 47.6254457 12.5110784, 47.4381358 11.0495098, 48.5634852 11.9882072, 48.8265783 13.7752130, 48.0496211 10.8715988, 48.0460830 10.8749417, 47.8083086 12.5920009, 48.1635298 11.7132941, 48.7957646 12.6424422, 48.8838557 12.5678186, 48.1481400 11.7289444, 47.8993548 12.8624100, 47.8673146 12.1277265, 48.6534476 10.4951067, 48.2766485 12.3846048, 48.0638021 11.2036139, 48.1674732 11.5451537, 48.1661995 11.5386788, 47.5779644 9.8409547, 48.0937782 11.4886530, 48.6792146 10.8199705, 48.1408800 11.5640079, 48.3593741 10.8988647, 48.7565516 13.5148193, 47.7242821 10.3141892, 47.7285579 10.3103498, 47.7221323 10.3118430, 47.7262186 10.3160945, 47.7251108 10.3069304, 47.7262768 10.3160850, 47.7204451 10.3137190, 47.7251096 10.3069306, 47.7309546 10.3094793, 47.7266756 10.3143688, 47.7262180 10.3160963, 47.7266754 10.3143710, 47.7221327 10.3118425, 47.7253575 10.3158079, 47.7221319 10.3118433, 47.7266744 10.3143693, 47.7275054 10.3127716, 47.7309538 10.3094786, 47.7222724 10.3151809, 47.7262179 10.3160983, 47.7205801 10.3113422, 47.7284022 10.3065761, 47.6210461 12.1777480, 48.3196406 10.8232064, 48.2069586 11.3270236, 48.8496834 10.4857345, 48.8482751 10.4858320, 48.8493967 10.4852209, 47.9822735 11.4885352, 48.8517100 10.4934753, 48.8537545 10.4922091, 48.8536370 10.4910977, 48.8537334 10.4921703, 48.8542772 10.4938004, 48.8507618 10.4919803, 48.8532499 10.4925690, 48.8542877 10.4937795, 48.8532700 10.4925383, 48.8542646 10.4938180, 48.8536497 10.4910542, 48.8507841 10.4919674, 48.1094506 11.7266607, 48.6410373 10.5313159, 48.2477983 11.4401776, 48.2511189 11.4408524, 48.2511196 11.4408547, 48.2471125 11.4395942, 48.2471134 11.4395935, 48.2511207 11.4408524, 48.8178925 11.0809786, 48.8245525 11.0724318, 48.2927027 11.4798357, 47.6190551 11.3475254, 48.8920941 11.1840999, 48.3989347 11.1712240, 48.2352747 12.8234436, 47.6602222 10.3510584, 47.6572599 10.3508058, 48.8991372 11.1878472, 48.8512301 10.4888424, 48.8523275 10.4919721, 48.8451876 10.4939668, 48.8541292 10.4916755, 48.8539854 10.4880578, 48.8496775 10.4925785, 48.8505244 10.4879424, 48.8523182 10.4919848, 48.8512395 10.4888313, 48.8541017 10.4916755, 48.8477268 10.4932959, 48.8496839 10.4925741, 48.2257460 10.6578602, 48.1906255 11.3715878, 48.2398447 10.6666094, 48.2331131 10.6222457, 48.2280822 10.7614312, 47.8502657 12.9639733, 47.8941231 12.1380535, 48.7635782 11.4224738, 48.7633148 11.4204362, 48.7638216 11.4214954, 48.7646048 11.4293850, 48.7633155 11.4204348, 48.7659842 11.4300553, 48.7638215 11.4214919, 48.7638216 11.4214937, 48.7646069 11.4293837, 48.7646059 11.4293843, 48.7646054 11.4293827, 48.0831501 11.5408608, 48.1200261 11.5495680, 48.1200218 11.5495670, 48.1200271 11.5495696, 48.1311897 11.5566510, 48.1200196 11.5495694, 48.1200271 11.5495680, 48.1200217 11.5495702, 48.1200228 11.5495654, 48.1962042 11.3731773, 48.1200218 11.5495654, 48.1311905 11.5566500, 48.1200218 11.5495718, 48.1200260 11.5495696, 48.1200228 11.5495687, 48.1200228 11.5495718, 47.9829128 12.1298784, 48.3073913 11.9294207, 48.8830526 11.1923901, 48.0691848 11.3773647, 48.0247336 10.2582483, 48.0643201 11.4200679, 47.9100035 10.5742540, 47.9100050 10.5742518, 47.9100031 10.5742513, 48.5769594 10.4921578, 48.3684478 10.8903656, 48.1554042 11.5459282, 47.8169133 12.3425923, 48.8160063 13.3690565, 48.2104282 11.6748380, 47.7242216 12.8623232, 47.7185209 12.1322924, 48.0544354 10.8784777, 48.0544586 10.8784699, 47.6957621 10.2378885, 48.8522201 10.4931751, 48.8498220 10.4903906, 48.8502970 10.4922689, 48.8498471 10.4904059, 48.8522059 10.4931953, 48.8532785 10.4928130, 48.8496601 10.4856974, 48.8496708 10.4857163, 48.8496477 10.4856799, 48.8521881 10.4932048, 48.8532905 10.4928264, 48.8534004 10.4892605, 48.8533934 10.4892679, 48.8533030 10.4928402, 48.8482940 10.4858635, 48.8502801 10.4922763, 48.8532666 10.4928045, 48.8531124 10.4912383, 48.8516841 10.4897454, 48.8514823 10.4924972, 48.8531284 10.4912472, 48.8531497 10.4912610, 48.8514908 10.4925360, 48.8517014 10.4897391, 48.8517157 10.4897351, 47.8692224 12.6550306, 48.6991076 10.4888000, 48.0827435 11.8239421, 48.7789409 13.4416277, 48.0701021 11.8683821, 48.0829495 11.8239749, 47.7892014 12.3063237, 47.6782491 11.1981707, 47.9808205 11.5709699, 48.0189284 11.5913994, 47.9712056 11.5651943, 47.7182352 11.0417325, 48.3078447 10.9012213, 48.3074280 10.9007914, 47.7665712 10.4012543, 48.1433019 11.6171321, 48.3578768 10.8608426, 47.7394301 12.0912820, 48.2748956 11.4707489, 47.7658961 12.3264238, 48.0606524 11.8506605, 48.0225887 11.9300372, 48.3418069 10.9886881, 47.8852671 11.6003827, 47.8423723 11.5854156, 47.9290227 11.4768712, 48.8410570 11.5318713, 48.1026468 10.8452603, 47.6534906 11.5020849, 48.3688473 10.8987725, 48.8741262 11.1657305, 48.1525638 11.7410681, 48.1253719 12.6753670, 48.2355809 12.4317737, 48.2227941 12.4279217, 47.5883957 12.9893172, 47.8480477 11.4745505, 48.0620830 11.5214274, 47.5734512 9.8406759, 48.0167267 10.9114811, 48.0465646 11.5142681, 47.6410480 11.9992875, 47.4418725 11.2582794, 48.0397728 11.5225044, 47.6257705 11.7093124, 48.5308753 13.1752456, 48.6353244 13.4786526, 48.0827751 11.8241935, 48.2681020 11.4687779, 48.8567728 13.6782100, 47.6623215 11.4890566, 47.6615700 11.4886820, 48.8846783 12.5732420, 47.6528220 11.4593720, 48.1678123 11.9108847, 48.4802940 11.9460062, 48.4801747 11.9404357, 47.7615614 12.1850432, 48.4001496 11.7431475, 48.4001523 11.7431449, 48.4001532 11.7431439, 48.4001514 11.7431458, 48.4001559 11.7431412, 48.4001541 11.7431430, 48.4007607 11.7445270, 48.3994950 11.7424349, 48.4001505 11.7431466, 48.4001550 11.7431421, 48.0302320 11.5198002, 48.8914645 11.1745881, 48.1636994 11.4992629, 48.1638954 11.5006114, 47.8748390 10.2216490, 47.5690462 10.6816003, 47.7334230 12.8910243, 48.0446423 10.8756748, 47.4485214 11.3739173, 47.6718840 11.6473889, 48.0607948 11.6184129, 47.6484915 12.0931252, 48.6862566 11.6120963, 48.1513324 11.5941030, 47.6772885 12.4698671, 47.5425352 9.6817195, 47.8572809 11.7969272, 48.1796129 11.2551298, 47.6681210 11.7064390, 47.6677988 11.7053201, 47.6609640 11.7055680, 48.8747287 11.1645790, 48.4840860 10.3676764, 48.2111314 12.6028598, 47.6471760 11.9526540, 48.6122223 12.1926004, 48.0583724 10.8675451, 48.1917310 11.2652696, 48.1962886 11.2705080, 48.1961081 11.2696309, 48.1967606 11.2704517, 48.1967499 11.2707065, 48.1951533 11.2660877, 48.3007715 11.3808588, 48.1175567 11.6564215, 48.1187199 11.6573237, 48.2808759 11.6737437, 48.1942938 11.2697727, 48.1941755 11.2706956, 48.1940936 11.2704915, 48.1940575 11.2702662, 48.1942220 11.2708888, 48.1946872 11.2695367, 48.1959364 11.2671284, 48.2685891 10.8306042, 48.2684512 10.8307732, 48.8506121 10.4971452, 47.7269118 12.1058124, 48.4805144 10.3621024, 48.4825420 11.6301966, 47.4125642 10.9782774, 47.6831295 11.5763012, 48.3986459 11.7457661, 48.5949122 11.6561854, 47.8697313 12.6394417, 48.0163156 10.9179297, 48.7749853 11.3772559, 48.7764712 11.3740040, 48.5415771 12.1614274, 48.0769911 11.5173999, 48.0257085 11.5959285, 48.7262394 11.4138936, 48.2336061 12.7101152, 48.3072145 11.3329276, 48.1060045 11.4224434, 48.4215809 11.0664908, 47.5649294 10.0293330, 47.7832209 11.1427052, 48.8816363 12.5677468, 48.1164589 11.7457519, 47.7227471 12.8663906, 48.0816872 12.0609230, 48.3291750 11.9250679, 48.5052660 13.4522395, 48.2398892 12.6898530, 47.7347322 12.8876517, 48.4592157 11.1286345, 48.4196679 10.0708906, 47.8752939 10.4026098, 47.8633560 10.4122926, 47.6648917 11.8866486, 47.7224481 12.8774277, 48.4045914 11.9889563, 48.3659809 11.6092197, 48.1125639 11.7873969, 48.8035706 11.4955081, 48.8017857 11.4931013, 48.0424196 10.8369763, 48.8378723 12.1833660, 48.1263201 11.8782617, 48.0432704 11.5177994, 47.7260291 12.1109024, 48.0957791 11.7622930, 47.7351805 12.1103036, 47.7502995 12.0906760, 47.6631098 11.9347543, 47.8563407 10.1296254, 47.8569040 10.1353766, 47.8564406 10.1303072, 48.4552782 11.9126341, 48.1247230 11.9803220, 48.5728017 13.4633595, 48.1405104 11.5935655, 48.1220871 11.5437710, 48.1405112 11.5935605, 48.1405097 11.5935706, 48.1220876 11.5437719, 48.3070385 11.9079993, 47.6923168 12.2660427, 48.1580588 11.4442607, 47.6931296 12.3891410, 48.4724441 11.1555816, 47.6502013 11.9345166, 47.6501599 11.9345446, 47.6485872 11.9324325, 48.2985551 11.9050355, 47.5620371 10.6940910, 47.5622933 10.6947643, 48.7362449 11.1813297, 47.7842673 10.0891458, 48.1647650 11.5899480, 48.1282133 11.5527531, 48.1255776 11.6306425, 48.1917267 11.3744581, 47.8567739 11.6863454, 48.2490350 11.5586567, 47.5027371 11.3009433, 47.4815259 11.3571177, 48.0739860 11.5144815, 48.4306622 11.5979945, 48.8303475 12.9625458, 48.8303482 12.9625450, 48.8303492 12.9625441, 48.8342572 12.9618574, 48.8342580 12.9618573, 48.8342589 12.9618574, 47.5945458 10.0720192, 48.3825938 11.1185478, 47.8454487 12.3706689, 47.9519330 12.2752926, 48.3234735 11.5329278, 48.5324057 12.1498019, 48.1290254 11.6311058, 48.3251363 11.8655590, 47.7186656 12.8727953, 47.7283278 12.8874375, 48.2176073 11.6301119, 47.6097012 12.8662571, 47.8250875 10.3377508, 48.8453913 12.9581656, 48.3108329 10.1584872, 48.1385566 11.5968928, 48.2936431 11.6542585, 47.4926387 11.0868270, 48.1815609 11.5157431, 47.4940720 11.1051383, 48.8482307 12.9391855, 47.4473011 10.2391801, 48.1300418 11.6068213, 48.8815221 12.5648911, 48.8818937 12.5646408, 48.1965731 11.5757210, 47.6696072 11.1928075, 47.8040137 12.8559330, 47.7215596 10.5566826, 47.5953829 11.7822341, 47.6044414 12.9864303, 47.7498419 12.8495333, 47.7545069 12.8488217, 47.7551318 12.8493986, 47.9900882 11.6446685, 48.1050783 11.3065847, 48.0493027 11.4506593, 48.4071582 10.7242874, 48.1759606 10.1872537, 47.5823437 12.8658692, 47.5823262 12.8659575, 48.3516035 11.1773410, 48.1615304 11.5918723, 47.5421323 12.9394960, 47.5444136 12.9527252, 48.7638007 11.4265851, 48.3152361 10.9105676, 47.8564924 12.4847039, 47.7053568 12.0322933, 47.7092784 12.0441586, 47.7039798 12.0231242, 48.5708865 10.4306936, 48.2682507 11.4695839, 48.2721605 11.4646675, 48.2718239 11.4652688, 48.2716386 11.4650139, 48.2721166 11.4647511, 48.2724362 11.4649601, 47.7292845 12.4392342, 47.7634284 12.4516572, 48.4601209 10.9659842, 48.1633205 10.1201881, 47.7468620 12.2479646, 47.7400398 12.2332605, 48.4463681 11.1109072, 48.4462480 11.1110447, 48.5772078 10.4905003, 48.0313595 11.5868381, 48.5449365 10.8512596, 48.5449379 10.8512573, 48.5449372 10.8512585, 48.5448166 10.8512625, 47.7267192 12.8687083, 47.6978718 10.3244047, 47.6686694 11.6625171, 48.1342423 11.5700387, 47.7705856 11.3174944, 48.4422191 10.9365381, 48.4455951 10.9653992, 48.4548947 11.0057076, 48.2005479 11.3085417, 47.9862377 10.1803043, 48.0260123 11.5251821, 47.6604914 11.5080991, 47.6614539 11.5187932, 47.6593777 11.5030454, 47.6498945 11.4676288, 47.6601322 11.5051051, 48.8737373 12.0075412, 48.1349504 11.5943735, 48.5839393 11.0900128, 48.0271457 12.5541518, 47.6433999 12.1751083, 47.6407574 12.1696156, 47.6411215 12.1703695, 47.6403878 12.1635277, 48.3996544 11.8520538, 48.2126195 11.3374382, 47.8659427 12.0111514, 48.4056651 11.9909489, 48.0784519 12.5696682, 47.9165852 12.0318879, 48.8403993 10.4941533, 48.8417958 10.4918787, 47.9842362 10.1778101, 47.7232401 12.8761185, 47.6431611 11.9170922, 47.8662840 12.0159958, 47.6173936 11.7076257, 48.8457640 10.4830272, 47.4793650 11.0207555, 47.6996482 12.2430712, 48.6835709 11.6132535, 48.6848789 11.6136664, 47.8393271 11.9691096, 47.7020991 12.0130841, 47.5807355 10.5575467, 48.4061678 10.0436362, 48.3479535 11.9235535, 47.5701985 10.5947854, 47.5702330 10.5947204, 47.7021170 12.0131818, 47.5040513 11.2786897, 47.9718784 11.6528135, 47.5538725 10.7902108, 47.8774590 11.0274014, 48.3823871 11.3496783, 47.7581962 12.2737426, 47.6493815 11.9316988, 47.4376224 11.2612534, 48.8049165 11.8889334, 48.0040033 11.5136520, 47.9367272 12.9322049, 47.7108302 12.1251726, 47.6339493 13.0038067, 47.6442786 12.0466307, 47.8032737 11.5000786, 47.7064576 11.3975548, 48.6114773 10.5668229, 48.6111031 10.5659055, 48.8311137 13.4591452, 48.3996250 11.7420086, 48.7160743 10.7775891, 48.7331262 11.1759620, 48.7389356 11.1886864, 47.6472166 11.9289408, 48.7385744 11.1815885, 48.3507189 10.9354257, 48.1073936 11.4528835, 48.1521700 11.5278539, 48.1497300 11.5273092, 47.7197728 12.8759652, 47.9837290 11.0930118, 48.7841110 13.5796127, 47.8826998 11.9182081, 48.4584409 10.9817936, 48.3415480 11.9222212, 48.3482984 10.9104624, 48.1627561 11.5861396, 48.4585333 11.1335081, 48.7864857 13.3751383, 48.0795080 11.5270511, 48.8156148 11.8875333, 47.7180909 11.6534598, 48.0044368 10.5885381, 48.1970574 11.4581073, 48.4024034 11.0551394, 48.1717682 11.7160853, 48.5259749 12.3142889, 48.5330205 12.1628553, 48.5305960 12.1578907, 47.9916650 10.7829274, 48.7356699 11.5492059, 47.8508053 12.7851381, 47.6764212 11.8710364, 48.4487679 11.0832494, 48.2178130 11.0196429, 47.5088882 10.2795297, 48.1424597 11.5822622, 48.0976185 10.5417693, 48.1450137 11.5810073, 48.2393390 11.4385684, 48.2564046 11.4654355, 48.2596082 11.4451115, 48.2605838 11.4347639, 48.3445324 10.9353458, 48.1678985 11.7149075, 48.3718037 10.8963094, 48.3718041 10.8963083, 47.7873372 11.8339232, 47.7200996 12.7699376, 47.6054977 12.9858304, 47.6241300 12.9745039, 47.7900190 12.0771110, 47.9253148 10.2440388, 48.2660784 10.2865057, 48.7548713 13.8178262, 47.7101114 12.1139656, 47.6945682 13.0460095, 47.8047485 10.2133142, 48.0715754 11.0005879, 48.7892575 10.6710487, 47.7641979 11.9958704, 48.1366177 11.5770164, 48.6879045 12.2017217, 48.1451646 11.4563233, 47.9417533 12.9357259, 47.9422619 12.9367666, 47.9424226 12.9368673, 47.9386089 12.9354309, 48.4284030 10.8789123, 48.0292035 11.3673827, 47.5983444 10.9056374, 48.7557813 12.5888625, 47.8013284 10.3537356, 48.7435414 11.2146671, 48.1788331 11.4617680, 48.3609968 10.0706280, 48.3049382 11.9087780, 48.6919369 11.7130487, 48.1636845 11.4571067, 48.0456871 10.4243348, 47.4803785 11.2396359, 48.1134041 11.3410235, 48.6382488 10.6026814, 48.6364553 10.6022821, 47.7561775 12.0420924, 47.8459739 11.0299188, 47.7409841 12.0154738, 47.7481852 12.0511155, 47.7349927 12.0534271, 48.9024263 11.0894232, 48.3731122 11.0959923, 48.1948518 11.2632927, 48.3674891 10.8956788, 48.3710824 13.2773536, 47.6056995 12.9094085, 47.6057338 12.9091081, 47.7601898 12.4233394, 47.7608375 12.4316584, 47.8611631 12.1264453, 48.3884186 11.0874478, 47.6452525 12.0985877, 47.6452469 12.0985652, 47.6537812 12.0983658, 47.7224967 12.8480335, 48.4510659 13.1932104, 47.7061640 12.0341307, 48.8755548 11.0741983, 47.6900275 12.7995463, 47.6900364 12.7994766, 47.6900311 12.7995088, 48.2889659 11.4600298, 48.2866384 11.4602750, 48.2860387 11.4609057, 48.2863124 11.4604083, 48.8822337 12.5741336, 47.7670520 12.2581243, 47.7766786 12.2687321, 48.5106716 13.4421507, 47.9241734 12.0134157, 47.7210112 12.8922962, 47.6764419 11.2029616, 48.1019055 11.5954917, 48.2671203 11.4312604, 48.2720955 11.4679281, 47.8976158 10.1161598, 47.5433929 11.2602180, 47.5456150 11.1901578, 48.0683448 11.6098579, 48.3629733 11.3766216, 48.7588183 13.0169252, 47.8544613 12.1599328, 48.0332314 10.8505875, 47.7221913 12.1894134, 47.7246807 12.1709495, 48.0504475 10.8407146, 48.0512785 10.8382489, 47.5401994 11.5451552, 48.3660798 10.5426582, 48.2819649 10.4691847, 48.0397151 10.6712233, 48.0397779 10.6716756, 47.6579035 11.9415792, 48.0376793 10.6702097, 48.2080415 11.3280417, 48.2938012 10.5326323, 47.7464395 12.3381211, 47.7659819 12.3239531, 47.7580017 12.3517938, 47.7631802 12.3374573, 48.5737124 13.4765344, 47.7446979 12.2429108, 47.7630063 12.2918643, 47.7447155 12.2428771, 48.8032590 13.7899737, 48.8041500 13.7886807, 48.2682720 10.8311403, 48.4469411 11.3697748, 47.9896092 10.2211251, 47.7733827 12.0100012, 48.5265075 11.7205988, 48.8179778 12.4098805, 47.8526533 12.1211066, 47.8613138 12.1265330, 48.5443248 13.2254096, 48.5944939 13.7808318, 47.9625481 12.5927347, 47.9991272 12.5280347, 47.7519132 11.3848791, 48.6882168 13.3842941, 48.6868642 13.3837733, 47.7674242 12.1528439, 48.5425532 10.3670806, 47.7608912 11.3675691, 48.0623530 12.7674659, 47.7400654 12.1371015, 47.9092360 12.5896225, 48.0277606 12.5531517, 48.0281149 12.5558822, 47.7015705 10.8621710, 48.2992047 11.9025085, 47.6534090 12.9601781, 48.3240544 10.0342428, 47.7312135 12.1780115, 47.7269867 12.1845863, 48.1724711 11.3529224, 48.1702901 11.3469862, 47.9595897 11.5376868, 48.8824802 12.8857350, 47.9236504 10.2009795, 48.3990175 11.7449704, 47.7662459 11.3545036, 47.8569246 12.6380051, 48.6688398 13.4709508, 48.7277680 13.3804249, 48.7275635 13.3807985, 48.7272747 13.3808012, 48.0324798 12.2112503, 48.0562318 12.2264944, 47.5131534 10.2811172, 48.7704499 11.6184683, 47.6754400 11.2956900, 48.7303779 13.3827246, 47.8553775 12.1411868, 47.7833503 12.1360315, 47.6876698 10.2237825, 48.8168048 11.8437817, 47.8767571 11.9346753, 47.7241898 11.3330424, 47.9211629 10.1968668, 47.9222934 10.1969431, 48.3523550 10.7783064, 47.7672883 12.4748115, 47.6336196 12.9628090, 48.5768606 13.4909578, 48.5228676 13.7151535, 47.7982689 12.1683402, 48.2303716 10.2437234, 48.3219706 10.2550666, 48.8450566 12.9580396, 47.7560386 11.3712235, 47.4002496 10.2313689, 47.7061545 12.3694177, 48.1896178 11.3769465, 48.3215960 11.0624198, 48.0056348 10.5955372, 48.0056341 10.5955395, 47.7004604 12.3484653, 47.6987234 12.3686649, 47.6930389 12.3353247, 47.7042026 12.3746624, 48.1031258 11.5819555, 48.0048596 10.5921851, 48.1054944 11.4234912, 48.4550335 10.2790713, 48.3734032 10.7153377, 47.7149569 12.3804414, 48.3821693 10.9164524, 48.3755451 10.9126382, 48.3787052 10.9148289, 48.3806235 10.9196180, 48.3798364 10.9193885, 48.3944011 10.6846006, 47.6318743 10.8479931, 47.9437865 10.5429952, 48.8817065 12.6342820, 48.8819510 12.6350105, 48.7796330 13.8009741, 48.7845612 13.8021811, 47.7548474 11.3815290, 47.6102189 12.9746370, 48.7816509 13.8034148, 47.5982667 9.8878078, 47.5999444 9.8886482, 48.4620696 10.3042233, 47.6143208 12.0207704, 48.0591281 12.3762203, 48.2674492 10.9880065, 47.8703457 10.6855447, 48.7750358 13.3569059, 48.1996131 10.1141067, 47.4301379 11.0557024, 47.4283769 11.0525651, 47.7351928 10.9657286, 48.2733303 12.1502952, 48.1387014 11.5494796, 47.4427498 11.2586296, 47.4374220 11.2556948, 47.4398775 11.2516538, 48.8902997 13.2961769, 47.4418858 11.2602535, 47.4420829 11.2603478, 47.4424439 11.2603156, 47.4424049 11.2627877, 47.8700426 12.6439622, 48.0022971 11.9851144, 48.0252327 11.9631538, 48.5416019 12.1493345, 48.5352601 12.1538781, 48.0366292 11.7142532, 48.0433467 11.7024952, 47.6331000 12.0727235, 47.6330902 12.0727539, 47.6566573 10.7402635, 48.3608307 11.0377118, 48.2568850 11.4483941, 48.0720857 11.2470032, 47.5225762 10.3009924, 48.2486664 11.5586716, 47.7793672 11.7330936, 48.3080951 10.9049833, 48.0193348 11.4865864, 47.6135032 12.1635647, 48.5226155 13.3178228, 48.3787098 11.4146348, 48.1442245 11.5803045, 48.1452772 11.5841502, 47.7821575 12.3049909, 48.8211556 13.7279195, 48.5297613 11.5069795, 48.5305389 11.5092844, 48.5301377 11.5042898, 47.7507912 12.5581244, 48.1938660 11.8032158, 47.7546501 11.3789284, 47.7525873 11.3769957, 48.2375898 11.8599602, 48.2378150 11.8595478, 48.4444018 10.2835471, 48.4497159 10.2926985, 47.6292152 12.0979484, 48.2635425 11.3427815, 48.0709459 11.8875406, 47.5769581 10.8374392, 48.0762565 10.8135396, 47.6772334 11.6052254, 48.8865448 11.4124570, 47.4140270 10.0734742, 47.7614026 11.6196178, 47.7083935 12.1358732, 48.0713042 11.3933913, 48.5855336 13.5563823, 48.5303007 11.5051354, 47.7176305 12.1245370, 48.0572965 11.4027904, 48.3966392 10.0022522, 48.3930651 9.9966859, 48.3933163 10.0027693, 47.9262715 11.7402148, 47.6565571 12.1587301, 47.6580416 12.1655075, 47.9597561 11.5915361, 47.8465568 12.2298217, 47.7927724 12.6175327, 48.9104430 13.5396970, 47.8942697 10.2221066, 47.8468783 11.6204102, 47.7289062 12.6842696, 48.4592536 12.7617655, 47.7506223 11.3071895, 48.1318245 11.5762231, 48.1315857 11.5758387, 47.8713552 12.6385811, 47.6219171 11.3493584, 48.2170222 12.5058803, 48.1656435 12.8335450, 48.1656405 12.8335445, 48.1656422 12.8335421, 48.1656413 12.8335475, 48.1656423 12.8335510, 47.9062761 12.2915808, 47.8961042 12.3052859, 48.1029918 11.4232833, 48.1670840 11.7120233, 47.7083099 12.1068627, 48.1398408 11.5780689, 48.1671028 11.5483431, 48.2700458 11.4683333, 48.7845529 13.8019681, 48.5300473 11.5066380, 47.7771843 10.1273307, 48.0056471 10.3563100, 48.1969376 10.6769089, 48.5285863 11.5050544, 48.1413436 11.5969927, 48.3575820 10.8800179, 48.1428538 11.4125010, 48.5278523 11.5056174, 48.1940954 11.4600752, 47.7155084 10.3234417, 48.7656923 11.5351364, 48.4067613 11.7574390, 47.7259635 12.1148467, 48.3869392 10.8665406, 48.1320053 11.5557894, 48.1403638 11.5719644, 48.1400691 11.5731123, 48.1401611 11.5727358, 48.1402587 11.5723472, 47.7730997 11.5727335, 48.4441900 11.1327054, 48.1026976 10.8452652, 47.6613522 11.2092731, 48.0263618 10.8448269, 48.8870984 10.4688551, 47.6766571 11.2022534, 48.0938038 11.4659904, 47.9107077 10.5744731, 48.0261191 10.8449821, 48.2350566 12.4315667, 48.1532035 12.8174680, 48.0817897 10.8647284, 48.1570952 12.8253903, 47.7777085 12.3663525, 47.9707607 11.7802007, 48.2934356 11.9067051, 47.6673450 11.7145331, 47.8657489 12.0113892, 48.2453585 10.8031322, 47.9097955 11.2828365, 47.8020182 11.0755800, 48.0991170 11.4784139, 48.0978106 11.4892883, 48.9057654 12.6920206, 48.8821761 12.5732443, 48.8820707 12.5732315, 48.1039524 11.5792060, 48.2874464 11.4608564, 47.7785483 11.7334497, 47.7788087 11.7333363, 48.0863175 11.5566341, 48.3544361 10.7850744, 48.3690408 10.8979315, 48.2877576 10.6569992, 47.8670604 12.7062032, 48.2732334 10.7950809, 48.3795474 10.9231729, 48.0256685 11.9628068, 47.8670623 12.7061976, 47.5983597 11.1854580, 48.5307772 11.5098889, 48.5293635 11.5050471, 48.1375657 11.5880634, 48.6589279 13.2510419, 48.2769930 11.9365109 +yes +4 +55.9544768 -3.1997466 +yes +Bathgate, Polton, Bonnyrigg, Loanhead, Penicuik, Dalkeith, Livingston, Mid Calder, East Calder, Whitburn, Blackburn, West Calder, Fauldhouse, Armadale, Gorebridge, Mayfield, Newtongrange, Eskbank, Lasswade +12 +49.4026602 8.7297882, 49.4270459 8.7212154, 49.4155178 8.7899777, 49.4458400 8.7075662, 49.4105654 8.7914079, 49.4255549 8.7739082, 49.4035191 8.7047078, 49.4198621 8.7043293, 49.4261495 8.7062630, 49.4035105 8.7605887, 49.4467404 8.7467641, 49.4580313 8.7464236, 49.3925405 8.6991164, 49.3828404 8.6974716, 49.4396455 8.6868291 +49.4081091 8.6783361, 49.3872050 8.6620109, 49.4086884 8.6743845, 49.4074250 8.6723664, 49.4042825 8.6824570, 49.4034155 8.6462378, 49.4240406 8.6385449, 49.3851489 8.6733031, 49.4061345 8.6593850, 49.3956761 8.6692210, 49.4297095 8.6822901, 49.4331905 8.6827771, 49.4296958 8.6455225, 49.4172010 8.6768150 +48.8311423 2.3178852, 48.8807957 2.3680128, 48.8547827 2.4053007, 48.8890111 2.3798549, 48.8657219 2.3739666, 48.8363262 2.3866379, 48.8839773 2.3197792, 48.8374817 2.3437947, 48.8848036 2.2885994, 48.8785492 2.3318734, 48.8639231 2.3448506, 48.8659551 2.3738289, 48.8718921 2.4037539, 48.8226001 2.3745365, 48.8443455 2.2903102, 48.8465377 2.3511741, 48.8656383 2.3355496, 48.8557916 2.3618145, 48.8712435 2.3585129, 48.8511246 2.3315183, 48.8721527 2.4039954, 48.8475646 2.3844791, 48.8506939 2.2732195, 48.8342620 2.2731745, 48.8911262 2.3327854, 48.8571958 2.3391696 +Regard de la Roquette, Thermes de Cluny, L'enceinte de Philippe Auguste, Cavae des Arènes de Lutèce and 48.8707489 2.3907280, 48.8506016 2.3432743, 48.8459665 2.3500377, 48.8535359 2.3481924, 48.8450745 2.3528309 +49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.4157261 8.7004521, 49.4532799 8.7620678, 49.4209333 8.7223854, 49.4221949 8.7060036, 49.4157681 8.7006398, 49.4390162 8.7105044, 49.4210179 8.7198036, 49.4272716 8.7035465, 49.4305777 8.6928339, 49.4497133 8.7157120, 49.4428768 8.7011414, 49.4300341 8.7265054, 49.4095083 8.7002566, 49.4109969 8.7018271, 49.4103323 8.7353954 +532 +yes +tobacco, chemist, mobile phone, watches, confectionery, mobile phone, beauty, watches, perfumery, mobile phone, convenience, gift, supermarket, mobile phone, clothes, shoes, shoes, communication, clothes, yes, clothes, department store, beauty, optician, chemist, chemist, chemist, houseware +26 +Best Western Plus Bruntsfield Hotel, Braid Hills Hotel, Britannia Hotel Edinburgh, Hilton Edinburgh Airport Hotel, Peffermill House, Premier Inn, Prestonfield House, Premier Inn Leith, Brooks Hotel, Holiday Inn Express, Ardmillan Hotel, Links Hotel, Apex Edinburgh International, Apex Edinburgh City, Travelodge, Holiday Inn Express, Malmaison, Le Monde, DoubleTree by Hilton Hotel Edinburgh City Centre, Premier Inn, Novotel, Ten Hill Place, Hot-el Apartments, Jurys Inn, The Carlton, The Salisbury, Apex Waterloo Place Hotel, Travelodge Edinburgh Central Waterloo Place, Radisson Blu Hotel, Macdonald Holyrood Hotel, The King James, Ocean Apartments, Lady Nairne Premier Inn, The Glasshouse, Six Marys Place, Travelodge Rose Street, Mercure Hotel, Old Waverley Hotel, Royal British Hotel, Hotel du Vin, Travelodge Edinburgh Central Queen Street, Travelodge Edinburgh Learmonth, Fraser Suites Edinburgh, Nira Caledonia, The Bonham Hotel, G & V Royal Mile, EasyHotel Prince Street West, Premier Inn, cityroomz, Hotel Ceilidh-Donia, Cumberland Hotel, Dunstane House, Murrayfield Hotel, Hampton Hotel, Murrayfield Park Hotel, Grosvenor Gardens Hotel, Thistle Hotel, The Chester Residence, Fountain Court, Grassmarket Hotel, Motel One, Frederick House Hotel, Regent House Hotel, Hotel Indigo, The Place, York House Hotel, 28 York Place, Fountain Court, Pollock Halls, Ibis, Travelodge Princes Street, The Scotsman Hotel, Holyrood Aparthotel, Rutland Hotel, Twelve Picardy Place, Northumberland Hotel, Minto Hotel, Kildonan Lodge Hotel, Cairn Hotel, Ballantrae Hotel, Terrace Hotel, Ailsa Craig Hotel, Crowne Plaza, Abbey Hotel, The Inverleith Hotel, Merith House Hotel, Culane House Hotel, ritz, Ellwyn Hotel, Hotel Twenty, Rosehall Hotel, Seahaven Hotel, Old Town Chambers, Albany Hotel, Motel One, Parliament House Hotel, Edinburgh House Hotel, Royal Mile Mansions, The Royal Scots Club, Royal Mile Apartments, St. Giles Apartments, The Guards Hotel, Travelodge Haymarket, The Staghead Hotel, Ibis Style, Abbot's House Hotel, Adelphi Hotel, Princes Street Suites, Number 11 Brunswick Street Hotel, Corstorphine Hotel, Corstorphine Lodge Hotel, Royal Ettrick Hotel, Claremont Hotel, Travelodge Cameron Toll, Westend Hotel, Novotel Edinburgh Park, Sheraton Hotel, Kings Manor Hotel, Northfield House Hotel, Dundas Castle, Norton House Hotel, Dalmahoy Hotel & Country Club, Travelodge Edinburgh Central, Holiday Inn Express Edinburgh, Ibis Edinburgh Centre South Bridge, Stay Central, Residence Inn, Fountain Court EQ2, Holiday Inn Corstorphine, Capital Hotel, Balmoral Hotel, Premier Inn, Dakota, Holiday Inn Edinburgh City West, Victoria Park House Hotel, Edinburgh City Hotel, Premier Inn, Apex European Hotel, Waldorf Astoria Edinburgh - The Caledonian, Edinburgh Marriott Hotel, The Edinburgh Residence, Hilton Edinburgh Grosvenor, Tune Hotel, The Dunstane, The Original Raj Hotel, Duthus Lodge, The Murrayfield House, Staycity Edinburgh, Mercure Edinburgh Quay, Toby Carvery, White Lady, Ellersly House Hotel, Rockville Hotel, Travelodge, Twin Lions Hotel, Premier Inn, Premier Inn Edinburgh Park, Channings Hotel, Park View House Hotel, Ibis Budget Edinburgh Park, Angels Share Hotel, George Hotel, The Roxburghe, Butterstone House, Park View House Hotel, Rockville Hotel, Rockville Hotel, Rockville Hotel, Rockville Hotel and 55.9380996 -3.2058620, 55.9170545 -3.2126453, 55.9505937 -3.2225373, 55.9438564 -3.3596517, 55.9326021 -3.1487334, 55.9350859 -3.0949522, 55.9366417 -3.1570870, 55.9829450 -3.1956613, 55.9040576 -3.1262582, 55.9432024 -3.2113238, 55.9788008 -3.1794679, 55.9382982 -3.2261235, 55.9374614 -3.2026980, 55.9470365 -3.1966624, 55.9473807 -3.1953726, 55.9004968 -3.2332407, 55.9571525 -3.1862835, 55.9778438 -3.1685794, 55.9534973 -3.1960943, 55.9457103 -3.2034799, 55.9449778 -3.2001704, 55.9451010 -3.1996608, 55.9463681 -3.1836097, 55.9868938 -3.1896403, 55.9511304 -3.1861772, 55.9507512 -3.1875224, 55.9378000 -3.1771354, 55.9539155 -3.1869471, 55.9537243 -3.1876497, 55.9500801 -3.1867539, 55.9508631 -3.1769297, 55.9544013 -3.1879472, 55.9861075 -3.1884451, 55.9457393 -3.1363779, 55.9464498 -3.1371733, 55.9566750 -3.1855246, 55.9590183 -3.2140890, 55.9527034 -3.1979800, 55.9526004 -3.1943522, 55.9528213 -3.1930344, 55.9531957 -3.1908459, 55.9459979 -3.1902770, 55.9544345 -3.2000121, 55.9555590 -3.2193770, 55.9500000 -3.1919145, 55.9567037 -3.2072967, 55.9514424 -3.2157709, 55.9490912 -3.1927585, 55.9508544 -3.2044664, 55.9509521 -3.2038916, 55.9496513 -3.2089465, 55.9360333 -3.1684310, 55.9461059 -3.2279015, 55.9460353 -3.2290209, 55.9456220 -3.2434720, 55.9456629 -3.2429213, 55.9449170 -3.2477791, 55.9465750 -3.2197080, 55.9502855 -3.2173319, 55.9505500 -3.2171278, 55.9435627 -3.2111942, 55.9480061 -3.1947461, 55.9506466 -3.1916009, 55.9533335 -3.2009235, 55.9575692 -3.1881677, 55.9563432 -3.1885381, 55.9564772 -3.1901879, 55.9560158 -3.1902437, 55.9563959 -3.1906891, 55.9529277 -3.2049305, 55.9403255 -3.1714042, 55.9496209 -3.1880081, 55.9532228 -3.1923045, 55.9510822 -3.1885303, 55.9509990 -3.1784956, 55.9498559 -3.2079070, 55.9570461 -3.1868898, 55.9279967 -3.1679145, 55.9352874 -3.1753797, 55.9285894 -3.1685115, 55.9585469 -3.1823211, 55.9561192 -3.1923936, 55.9566328 -3.1758348, 55.9566882 -3.1778092, 55.9567108 -3.1786172, 55.9567484 -3.1799567, 55.9639407 -3.2026551, 55.9691733 -3.1640520, 55.9690827 -3.1647883, 55.9468672 -3.2176887, 55.9565225 -3.1350813, 55.9579977 -3.1811750, 55.9362102 -3.1697209, 55.9485973 -3.0962599, 55.9501484 -3.1911760, 55.9572424 -3.1901890, 55.9535218 -3.1900347, 55.9541797 -3.1861379, 55.9665295 -3.1818506, 55.9504080 -3.1879255, 55.9563084 -3.1978828, 55.9497259 -3.1916695, 55.9497748 -3.1914254, 55.9463285 -3.2172253, 55.9479107 -3.2219923, 55.9904468 -3.3968883, 55.9545707 -3.1947750, 55.9729694 -3.1638663, 55.9718007 -3.1618663, 55.9535124 -3.1867818, 55.9587316 -3.1796076, 55.9433980 -3.2896328, 55.9434195 -3.2892694, 55.9345708 -3.2212127, 55.9639093 -3.1918721, 55.9269468 -3.1668049, 55.9496182 -3.2185349, 55.9266859 -3.3110861, 55.9469021 -3.2078751, 55.9443419 -3.0957317, 55.9073450 -3.1533001, 55.9750379 -3.4145918, 55.9327298 -3.3841084, 55.9042254 -3.3705381, 55.9496850 -3.1838090, 55.9492869 -3.1846349, 55.9484098 -3.1872057, 55.9480944 -3.1899418, 55.9438601 -3.1928655, 55.9419198 -3.2084087, 55.9429505 -3.2673127, 55.9556904 -3.2797815, 55.9528385 -3.1895101, 55.9457529 -3.2138563, 55.9820970 -3.4001038, 55.9557436 -3.2429137, 55.9732571 -3.1914624, 55.9435346 -3.3748496, 55.9443687 -3.2008861, 55.9841923 -3.4052539, 55.9462113 -3.2229358, 55.9495583 -3.2074777, 55.9401166 -3.3114777, 55.9509630 -3.2175982, 55.9470019 -3.2171075, 55.9461601 -3.2182662, 55.9453822 -3.2287396, 55.9460575 -3.2301075, 55.9460297 -3.2297120, 55.9456929 -3.2426429, 55.9433690 -3.2127882, 55.9438353 -3.2095320, 55.9430594 -3.2838003, 55.9431091 -3.2825095, 55.9470690 -3.2478273, 55.9487493 -3.0880608, 55.9454008 -3.2138893, 55.9385339 -3.3929905, 55.9446620 -3.2547814, 55.9422318 -3.4055694, 55.9281033 -3.3081926, 55.9561713 -3.2187789, 55.9687649 -3.1653239, 55.9377896 -3.3196702, 55.9507253 -3.2077555, 55.9541212 -3.1964562, 55.9516265 -3.2058035, 55.9445136 -3.2554741, 55.9689281 -3.1656368, 55.9487823 -3.0881808, 55.9487532 -3.0878083, 55.9488027 -3.0879383, 55.9487537 -3.0879253 +yes +55.9274598 -3.3076072 +yes +48.8561996 2.4042235 +1 +49.3819891 8.7064791, 49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.3903727 8.7038688, 49.3716601 8.7156918, 49.4157261 8.7004521, 49.4532799 8.7620678, 49.4129054 8.7286879, 49.4209333 8.7223854, 49.4221949 8.7060036, 49.4291183 8.7154588, 49.4157681 8.7006398, 49.4088360 8.7691224, 49.3882437 8.7497467, 49.4390162 8.7105044, 49.4305905 8.7775493, 49.4272716 8.7035465, 49.4393938 8.7104846, 49.4497133 8.7157120, 49.4428768 8.7011414, 49.4395208 8.7105611, 49.4326079 8.7091648, 49.4328392 8.7092032, 49.4342309 8.7101843, 49.4342740 8.7112555, 49.4442518 8.7151750, 49.4447625 8.7168293, 49.4468314 8.7142297, 49.4308426 8.7277671, 49.3795036 8.7459449, 49.3921408 8.7451114, 49.3950715 8.7223322, 49.3735796 8.7471724, 49.4311330 8.7033214, 49.4278439 8.6859389, 49.4082372 8.7465476, 49.4136970 8.7613615, 49.4238953 8.7651482, 49.3825444 8.7132316 +Kurpfälzisches Museum, Museum Geowissenschaften, Studentenmuseum mit Karzer, Zoologisches Museum, Museum Haus Cajeth, Heimatmuseum Rohrbach, Alte Universität, Textilsammlung Max Berk, Völkerkundemuseum, Carl Bosch Museum, Museum am Ginkgo, Deutsches Apotheken-Museum +3 +4 +yes, yes +300 +2192 +Esso, BP, Shell, Independent, independent and 55.8994270 -3.2972350, 55.9232575 -3.2877434, 55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9002100 -3.2321660, 55.9579565 -3.2439627, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9372727 -3.3656602, 55.9344345 -3.1791228, 55.9100535 -3.1423251, 55.9377502 -3.4029754, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9365550 -3.3142140, 55.9826346 -3.1875882, 55.9247496 -3.2493835, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9051775 -3.1653894, 55.8839472 -3.3405441, 55.9297028 -3.2566262, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9694813 -3.2293505, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9447450 -3.3593706, 55.9102318 -3.2377415, 55.9781076 -3.1743896, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9243498 -3.2526320, 55.9835994 -3.3988708, 55.9397193 -3.2934475 +yes +55.9516586 -3.1968492, 55.9899700 -3.3959164, 55.9874972 -3.4037961, 55.9539273 -3.1922043, 55.9902127 -3.3859837, 55.9906294 -3.3854450, 55.9526370 -3.1734364, 55.9521101 -3.1881430, 55.9906129 -3.3848526, 55.9504252 -3.2001729, 55.9505066 -3.1997917, 55.9526834 -3.1734548 +43.6837822 -79.4260743, 43.6576795 -79.4987997, 53.9900182 -1.1048507, 54.0107391 -1.0814402, 53.9502911 -1.0730271, 53.9360281 -1.0702516, 53.9695593 -1.1044687, 53.9783035 -1.1064726, 53.9659202 -1.1066465, 53.9153104 -1.1359444, 53.9852880 -1.1561727, 53.9409591 -1.1265772, 54.0307341 -1.0382265, 53.9490348 -1.1324670, 53.9615418 -1.1120955, 53.9522599 -1.1123202, 53.9358339 -1.1263285, 53.9755492 -1.0707896, 53.9629477 -0.9755778, 53.9303232 -1.0689686, 53.9642135 -1.0653371, 53.9403226 -1.1185343, 54.0146884 -1.0718957, 53.9877014 -1.1050782, 53.9491771 -1.0804384, 53.9553252 -1.1119903, 53.9871441 -1.0473926, 53.9859898 -1.0651562, 53.9017427 -1.0873341, 53.9990117 -1.1284252, 54.0411661 -1.0300613, 54.0118558 -1.0595910, 53.9575241 -1.0493096, 53.9793720 -1.0633348, 53.9673959 -1.0714738, 53.9575852 -1.1178225, 53.9874393 -1.1204313, 53.9868873 -1.1220633, 53.9494875 -1.1413259, 53.9647966 -1.1058434, 53.9563077 -1.0554740, 53.9462069 -1.0762908, 53.9776740 -1.0644274, 53.9646978 -1.1104689, 53.9671473 -1.1196181, 53.9333645 -1.1101612, 53.9432145 -1.0761018, 53.9545630 -1.1860637, 54.0421058 -1.0253387, 53.9500452 -1.0806102, 43.6644716 -79.5073350, 53.9731081 -1.0720236, 53.9728750 -1.0718855, 53.9579066 -1.0615711, 43.6709565 -79.4808029, 53.9578916 -1.0384236, 43.6909696 -79.5078325, 43.6768364 -79.5008575, 43.6869909 -79.4927906, 43.7060427 -79.5305440, 53.9411331 -1.0453008, 53.9402545 -1.0628004, 53.9412901 -1.0485025, 53.9518846 -1.0748059, 43.6954667 -79.4292400, 53.9891412 -1.0750065, 53.9697935 -1.0788931, 54.0031479 -1.0620491, 53.9761008 -1.0866567, 53.9642505 -1.1103673, 53.9572111 -1.1022306, 54.0086708 -1.0590792, 53.9275166 -1.1585419, 53.9771511 -1.1335660, 43.6916751 -79.4801455, 43.6884518 -79.4620778, 53.9679082 -1.0462940, 43.6791418 -79.4807102, 43.6784874 -79.4805707, 53.9171538 -1.0961410, 43.6983920 -79.4349417, 43.7032269 -79.5060546, 53.9511412 -1.0357185, 53.9787147 -1.0614117, 43.6965563 -79.4691090, 53.9417894 -1.0651445, 53.9675172 -1.0774716, 43.6537880 -79.4901878, 43.6868311 -79.4924568, 54.0175617 -1.0838151, 53.9441501 -1.1072575, 43.6912619 -79.4333772, 43.6883062 -79.4538863, 53.9955927 -1.0554353, 53.9580671 -1.0717614, 53.9316497 -1.1069040, 43.7063756 -79.5161696, 43.6980072 -79.5193378, 43.6979105 -79.5191746, 43.6981548 -79.5195536, 43.6948627 -79.4854853, 53.9605571 -1.0416518, 43.7078482 -79.5309590, 53.8979156 -0.9664321, 43.6761780 -79.4788514, 43.6769072 -79.4772807, 43.6731469 -79.4908170, 53.9872557 -1.1137428, 53.9773826 -1.0941901, 53.9781054 -1.0952493, 53.9719535 -1.0928503, 53.9564001 -1.0614879, 53.9602131 -1.0579907, 53.9598297 -1.0582374, 43.6933502 -79.4302213, 43.6843140 -79.4879601, 43.6712702 -79.4926038, 43.6946390 -79.4359419, 43.6869082 -79.4775555, 43.6817542 -79.4986570, 43.7014365 -79.5073633, 53.9799100 -1.0663846, 53.9735958 -1.2046224, 43.6935978 -79.4761834, 43.7014532 -79.4510224, 43.7014588 -79.4506901, 43.6957307 -79.4305271, 53.9622142 -1.0110749, 43.7032224 -79.4392616, 53.9663972 -1.1227394, 43.6925004 -79.5088912, 43.7000154 -79.4462363, 43.7000042 -79.4464494, 43.7001712 -79.4461827, 43.7001539 -79.4458926, 43.7000636 -79.4460083, 53.9838702 -1.1222527, 43.6836390 -79.4590501, 43.6880963 -79.4613111, 43.6898241 -79.4643187, 53.9450082 -1.1361836, 43.6924209 -79.4689785, 53.9889063 -1.1110964, 43.6879894 -79.4708591, 53.9586201 -1.0293671, 53.9445374 -1.1245969, 53.9595274 -1.0981373, 53.9610119 -1.1037227, 43.6840446 -79.4389375, 43.6842718 -79.4397157, 43.6871180 -79.4284008, 53.9623408 -1.1308643, 43.6484124 -79.4885632, 53.9522747 -1.0911362, 43.6762467 -79.4781695, 43.6927596 -79.4362309, 43.6895001 -79.4353381, 43.6921445 -79.4472623, 43.6917638 -79.4436721, 43.6628673 -79.4872055, 43.6627881 -79.4870652, 43.6890777 -79.4991503, 43.6898499 -79.4650002, 43.6648262 -79.5030967, 43.7027737 -79.5207797, 53.9862724 -1.1105539, 53.9550640 -1.0882545, 53.9208730 -1.1589010, 53.9744987 -1.0900125, 54.0299745 -1.0344258, 54.0284637 -1.0347685, 54.0224401 -1.0399706, 53.9637209 -1.1380678, 53.9550486 -1.1302976, 43.6742489 -79.4976003, 43.7022539 -79.5255456, 53.9390567 -0.9870193, 53.9389076 -0.9874202, 53.9249592 -0.9466464, 39.9687542 -76.7280201, 53.9640155 -1.0652996 +4231 +Mo-Fr 06:00-23:00, Sa-Su 07:00-22:00 +55.9529481 -3.1153702 +Total Access, BP, Elan, Avia, Total, Esso Express, Esso, Agip and 48.8316281 2.3594731, 48.8535333 2.4151180, 48.8346251 2.2657680, 48.9012005 2.3862959, 48.8801709 2.3706981, 48.8315802 2.3158225, 48.8391995 2.2925362, 48.8367458 2.2828065, 48.8501676 2.3621707, 48.8593908 2.3144172, 48.8299268 2.3465439, 48.8609726 2.2828299, 48.8563247 2.3152562, 48.8611046 2.3413657, 48.8475898 2.3031985, 48.8464653 2.2801018, 48.9003252 2.3734463, 48.8804901 2.2865619, 48.8636820 2.4079099, 48.8891565 2.3974249, 48.8323948 2.3645635, 48.8645440 2.4097670, 48.8258601 2.3878725, 48.8457817 2.3802229, 48.8443860 2.3959250, 48.9007525 2.3748724, 48.8635035 2.4085486, 48.8635857 2.2722338, 48.8536267 2.3664311, 48.8408422 2.3172666, 48.8758907 2.3810965, 48.8842378 2.3608157, 48.8387525 2.2535353, 48.8281523 2.2728394, 48.8168431 2.3604808, 48.8595020 2.3116861, 48.8407841 2.3912112, 48.8787212 2.3698437, 48.8586303 2.3897622, 48.8580224 2.3896621, 48.8364028 2.2775659, 48.8558395 2.3835889, 48.8820806 2.3381707, 48.8519985 2.2908966, 48.8656358 2.2892405, 48.8786755 2.3549221, 48.8797035 2.3026873, 48.8478375 2.3535433, 48.8841496 2.3640114, 48.8973798 2.3589436, 48.8986959 2.3633779, 48.9000487 2.3617903, 48.8936152 2.3152934, 48.8522407 2.2805336, 48.8962481 2.3594957, 48.9001725 2.3444887, 48.8467942 2.4149487, 48.8466936 2.4141038, 48.8711680 2.3244832, 48.8436106 2.3422313, 48.8839109 2.3897638, 48.8784033 2.3659429, 48.8650847 2.3656389, 48.8233460 2.3160166, 48.8380740 2.3312952, 48.8449642 2.2715165, 48.8473675 2.2588537, 48.8532253 2.3080493, 48.8720375 2.2998901, 48.8738003 2.2922634, 48.8751861 2.3096416, 48.8380740 2.3312952, 48.8449642 2.2715165, 48.8473675 2.2588537, 48.8532253 2.3080493, 48.8720375 2.2998901, 48.8738003 2.2922634, 48.8751861 2.3096416, 48.8941507 2.3733344, 48.8258806 2.3446643, 48.8679452 2.4057911, 48.8711283 2.4085012, 48.8565470 2.3790561, 48.8457849 2.4008634, 48.8384296 2.3723291, 48.8270093 2.3590302, 48.8635007 2.3703277, 48.8937900 2.3314100, 48.8631933 2.3689292, 48.8503953 2.3596248, 48.8649231 2.3755432, 48.8403571 2.3213304, 48.8873385 2.3222062, 48.8338034 2.2847592, 48.8464060 2.3874300, 48.8414869 2.3732320, 48.8350223 2.3575595, 48.9007173 2.3745755, 48.9000199 2.3292825, 48.8997229 2.3300618, 48.8206480 2.3248645, 48.8936129 2.3029112, 48.8455829 2.3086474 +49.4054825 8.6765974 +48.8266274 2.3623332, 48.8270015 2.3644472, 48.8264059 2.3462773, 48.8572229 2.3511352, 48.8406041 2.3197465, 48.8803386 2.3548871, 48.8291327 2.3744244, 48.8607653 2.3255954, 48.8573441 2.2907449, 48.8779836 2.2844324, 48.8411596 2.3657360, 48.8506960 2.3623652, 48.8767586 2.3603190, 48.8772257 2.3595264, 48.8422312 2.3663524, 48.8414190 2.3661244, 48.8767648 2.3593400, 48.8444018 2.3755542, 48.8445971 2.3730495, 48.8800621 2.3580193, 48.8808152 2.3570022, 48.8771081 2.3265324, 48.8763026 2.3239750, 48.8300993 2.3775582, 48.8797998 2.3484850, 48.8762637 2.3252285, 48.8762697 2.3252265, 48.8683668 2.3031527, 48.8295605 2.3777238, 48.8437375 2.3810527, 48.8506780 2.3765623, 48.8965451 2.3747681 +49.3996765 9.1224099, 49.5625122 8.4648744, 49.0007392 9.0803846, 49.6215104 8.6250307, 49.4580607 9.1028750, 49.5817521 9.4022085, 49.1754398 8.1387981, 49.5672194 8.6111115, 49.3513988 9.1205190, 49.8431459 8.8507855, 49.2905901 9.1708370, 49.3250351 8.5277211, 49.1220327 9.1804503, 49.8535869 8.5851220, 49.3469248 8.4886426, 49.2372364 8.6785232, 48.9318095 8.8153525, 49.6065555 8.3688858, 49.5860723 8.1390132, 49.1347315 8.5642507, 49.4112255 8.3495432, 49.3305895 8.2135419, 49.3552239 8.2900422, 49.4726490 8.1967491, 48.9772411 8.3426112, 49.6947805 9.1823138, 49.3439085 9.4008570, 49.3023341 8.4531545, 49.2473775 8.8938385, 49.5813814 9.4011570, 49.8407350 8.3763428, 49.6781057 8.9716419, 49.4745881 8.5138081, 49.3055840 8.6585638, 49.8396064 8.8505079, 49.2579834 9.2751932, 49.2310049 9.4229576, 49.1431842 8.3995346, 49.6556248 8.4737741, 49.3685005 9.4386942, 49.4435541 9.3619443, 49.3993057 9.1237375, 49.5610483 8.4645330 +49.3974030 8.6486853, 49.3977437 8.6485764, 49.4045638 8.6759283, 49.4015990 8.6856698, 49.3808049 8.6889505, 49.3746833 8.6826514, 49.3656861 8.7051775, 49.3743033 8.7032524, 49.3747286 8.7033441, 49.3743933 8.7035372, 49.3790412 8.6689354, 49.3792964 8.6699345, 49.4048779 8.6827341, 49.3840770 8.6710133, 49.3809325 8.6701888, 49.3795527 8.6902336, 49.3992315 8.6710140, 49.3804723 8.6884268, 49.3807734 8.6884609 +48.8758196 2.3557131, 48.8569549 2.3497208, 48.8562998 2.3535246, 48.8521302 2.3358217, 48.8553332 2.3464366, 48.8614418 2.2990188, 48.8513763 2.3250565, 48.8511618 2.3332375, 48.8496419 2.3682283, 48.8453963 2.3255943, 48.8566284 2.3271644, 48.8661306 2.2897626, 48.8722447 2.3050374, 48.8450073 2.3757975, 48.8466279 2.2560360, 48.8694555 2.3406786, 48.8388399 2.2765067, 48.8176870 2.3444409, 48.8398451 2.2739161, 48.8566083 2.3533348, 48.8632334 2.3399229, 48.8620104 2.3390904, 48.8670418 2.3496240, 48.8657000 2.3535311, 48.8652453 2.3533870, 48.8443992 2.3820174, 48.8691076 2.3112127, 48.8664285 2.3199840, 48.8667315 2.3202032, 48.8729875 2.3210140, 48.8726568 2.3215983, 48.8776040 2.3524312, 48.8758310 2.3206114, 48.8720777 2.3056372, 48.8715518 2.3062553, 48.8688688 2.3012670, 48.8720769 2.2997667, 48.8721868 2.3033146, 48.8707626 2.3051595, 48.8701277 2.3044062, 48.8674712 2.3054788, 48.8667016 2.3011326, 48.8655118 2.3015698, 48.8713039 2.2970137, 48.8741074 2.2994150, 48.8744570 2.3007315, 48.8763620 2.3015161, 48.8767241 2.3018198, 48.8782249 2.2965872, 48.8972935 2.3883460, 48.8952805 2.3850234, 48.8599671 2.3250425, 48.8705380 2.3685763, 48.8293963 2.3789703, 48.8403358 2.3506549, 48.8432745 2.3153982, 48.8725053 2.2851559, 48.8736890 2.2914977, 48.8768968 2.2823678, 48.8722856 2.2840680, 48.8693205 2.2843750, 48.8677158 2.2805552, 48.8770209 2.3458704, 48.8396031 2.2624046, 48.8471492 2.3421620, 48.8507465 2.3484894, 48.8470699 2.3417135, 48.8613479 2.3294517, 48.8623669 2.3098112, 48.8593696 2.3144127, 48.8734234 2.3305255, 48.8715078 2.3339896, 48.8459424 2.3060603, 48.8319830 2.3768014, 48.8720026 2.3359899, 48.8703752 2.3029557, 48.8738314 2.3297043, 48.8790223 2.2930687, 48.8824856 2.3440987, 48.8647821 2.3501454, 48.8815254 2.3543330, 48.8313000 2.3882082, 48.8632351 2.3477979, 48.8580953 2.3988158, 48.8671989 2.3667020, 48.8410399 2.3210471, 48.8429112 2.3235502, 48.8423484 2.3212962, 48.8320324 2.3866588, 48.8336457 2.2895795, 48.8764091 2.3236995, 48.8476756 2.3411763, 48.8305332 2.3138423, 48.8763053 2.2944546, 48.8763219 2.2947532, 48.8788573 2.2928071, 48.8761984 2.2930848, 48.8760963 2.2927992, 48.8532277 2.3589001, 48.8863474 2.2875098, 48.8740366 2.4050675, 48.8780164 2.4108510, 48.8260635 2.3616139, 48.8339745 2.3680517, 48.8239032 2.3657211, 48.8892294 2.3935497, 48.8772506 2.3581847, 48.8761851 2.3601642, 48.8381765 2.3815493, 48.8731938 2.3290960, 48.8212980 2.3643164, 48.8549966 2.4012505, 48.8400325 2.3810846, 48.8713236 2.3280597, 48.8356187 2.3197258, 48.8208545 2.3426378, 48.8292317 2.3084985, 48.8328441 2.3213847, 48.8703814 2.3464263, 48.8383314 2.3967566, 48.8839085 2.3682725, 48.8550195 2.3412244, 48.8703700 2.3464206, 48.8465587 2.2612329, 48.8400670 2.3810998, 48.8321242 2.3791504, 48.8868617 2.3693195, 48.8698031 2.3099017, 48.8343023 2.3639410, 48.8378546 2.3188725, 48.8843094 2.3221312, 48.8207875 2.3249534, 48.8585293 2.3496680, 48.8728113 2.3697721, 48.8450073 2.3757975, 48.8633378 2.3436056, 48.8608207 2.3462695, 48.8609358 2.3477215, 48.8850525 2.3540917, 48.8402845 2.4069021, 48.8832938 2.3851138, 48.8923410 2.3650140, 48.8852405 2.3310874, 48.8742021 2.3591001, 48.8314203 2.3778776, 48.8314596 2.3779526, 48.8318827 2.3891652, 48.8461444 2.3837384, 48.8936924 2.3300230, 48.8444332 2.3065143, 48.8848116 2.3938556, 48.8541004 2.3735901, 48.8883255 2.2895204, 48.8324295 2.3777926, 48.8400817 2.3808930, 48.8885318 2.3889061, 48.8541153 2.3181466, 48.8720076 2.3153410, 48.8624814 2.3328937, 48.8747479 2.3774714, 48.8571932 2.2995417, 48.8531145 2.3031375 +55.9474486 -3.1859655, 55.9426063 -3.2085087, 55.9363223 -3.1940133, 55.9355709 -3.2102528, 55.9386232 -3.2288990, 55.9396013 -3.2205959, 55.9488010 -3.1925834, 55.9813469 -3.1948497, 55.9763635 -3.1706985, 55.9764238 -3.1716973, 55.9610381 -3.1807131, 55.9768212 -3.1696962, 55.9612894 -3.1714220, 55.9364991 -3.2084171, 55.9467764 -3.2027315, 55.9604183 -3.2014949, 55.9588413 -3.1831632, 55.9477659 -3.1919316, 55.9375533 -3.2065280, 55.9354188 -3.2098186, 55.9524356 -3.1964223, 55.9654977 -3.1757974, 55.9610969 -3.1806925, 55.9537919 -3.1943636, 55.9265106 -3.2094010, 55.9437549 -3.2193403, 55.9469991 -3.2045993, 55.9506675 -3.2089125, 55.9505921 -3.2087450, 55.9532127 -3.1978312, 55.9460045 -3.2187935, 55.9469392 -3.2157459, 55.9581540 -3.2094323, 55.9436651 -3.2196309, 55.9411590 -3.2032805, 55.9502539 -3.1878479, 55.9541028 -3.1972638, 55.9522681 -3.2060091, 55.9516199 -3.2027318, 55.9465560 -3.2054548, 55.9461881 -3.2059419, 55.9031798 -3.2852677, 55.9529509 -3.1973404, 55.9526199 -3.1984725, 55.9898690 -3.3921144, 55.9581410 -3.1892356, 55.9265332 -3.2084291, 55.9477347 -3.1956994, 55.9497047 -3.1880533, 55.9474107 -3.1857005, 55.9374976 -3.1806164, 55.9578375 -3.1855691, 55.9574003 -3.1857205, 55.9578226 -3.1852754, 55.9572831 -3.1858711, 55.9269189 -3.2094159, 55.9320111 -3.2097789, 55.9073679 -3.2580475, 55.9644679 -3.1766608, 55.9410964 -3.1808815, 55.9378124 -3.1781642, 55.9489839 -3.1929807, 55.9349914 -3.1790260, 55.9501695 -3.1909428, 55.9584216 -3.1835648, 55.9493277 -3.1830946, 55.9474907 -3.1912396, 55.9635024 -3.1777276, 55.9545797 -3.1975105, 55.9463993 -3.2054011, 55.9691750 -3.1684493, 55.9576388 -3.1845365, 55.9401432 -3.1806489, 55.9428828 -3.1846462, 55.9600784 -3.2960791, 55.9498132 -3.2085294, 55.9420689 -3.2954758 +Boulogne-Billancourt, Arcueil, Le Chesnay, Gentilly, Palaiseau, Antony, Viroflay, Athis-Mons, Garches, Noisiel, Verrières-le-Buisson, Le Plessis-Robinson, Vélizy-Villacoublay, Savigny-sur-Orge, Maisons-Alfort, Bry-sur-Marne, Chevilly-Larue, Morangis, Limeil-Brévannes, Villeneuve-le-Roi, Châtillon, Vitry-sur-Seine, Meudon, Joinville-le-Pont, Noisy-le-Grand, Bourg-la-Reine, La Celle-Saint-Cloud, Malakoff, Saint-Mandé, Massy, Le Plessis-Trévise, Sceaux, Villiers-sur-Marne, L'Haÿ-les-Roses, Chaville, Saint-Maurice, Alfortville, Nogent-sur-Marne, Thiais, Fontenay-sous-Bois, Champigny-sur-Marne, Issy-les-Moulineaux, Créteil, Boissy-Saint-Léger, Longjumeau, Charenton-le-Pont, Fresnes, Saint-Cloud, Châtenay-Malabry, Vigneux-sur-Seine, Cachan, Sucy-en-Brie, Le Perreux-sur-Marne, Montgeron, Le Kremlin-Bicêtre, Champs-sur-Marne, Fontenay-aux-Roses, Yerres, Bonneuil-sur-Marne, Choisy-le-Roi, Vanves, Villejuif, Valenton, Versailles, Villeneuve-Saint-Georges, Chennevières-sur-Marne, Ville-d'Avray, Ormesson-sur-Marne, Bagneux, Chilly-Mazarin, Montrouge, Sèvres, La Queue-en-Brie, Igny, Villebon-sur-Yvette, Paris, Paris, Paris, Paris, Paris, Cynthiana, Saint-Maur-des-Fossés, Orly, Juvisy-sur-Orge, Ivry-sur-Seine, Vincennes, Clamart, Denning, Subiaco, Morrison Bluff, Caulksville, Blue Mountain, Detroit, Universal, Goss, Henry, Cottage Grove, Big Sandy +no +2243833 +Heidenloch, Römischer Tempel, Freischaren-Schanze, Freischaren-Schanze, Lochheim, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall and 49.4194799 8.7033812, 49.4258222 8.7062319, 49.4289782 8.7145993, 49.4299579 8.7185898, 49.3551484 8.6336513, 49.4270542 8.7105990, 49.4184666 8.7052069, 49.4245168 8.7056416, 49.4235710 8.7025718, 49.4242799 8.7072520, 49.4224817 8.7024542, 49.4229479 8.7068545, 49.4193290 8.7035781, 49.4221380 8.7051571, 49.4263381 8.7055314, 49.4188706 8.7007961, 49.4276600 8.7101416, 49.4243184 8.7025688, 49.4189138 8.7068425, 49.4254814 8.7024102, 49.4213140 8.7019771, 49.4268509 8.7026924, 49.4254256 8.7051858, 49.4195009 8.7025277, 49.4201952 8.7010712, 49.4208217 8.7059731, 49.4233178 8.7053934, 49.4276906 8.7058352, 49.4238991 8.7095045, 49.4206459 8.7039110, 49.4265814 8.7086544, 49.4256259 8.7093622, 49.4257275 8.7070484, 49.4179403 8.7025717, 49.4207145 8.7089359, 49.4222472 8.7095805, 49.4248984 8.7025175 +0 +Königstuhl, Heidenknörzel, Kammerstein, Hoher Nistler, Lammerskopf, Gaisberg, Michelsberg, Heiligenberg, Auerhahnenkopf, Apfelskopf, Dossenheimer Kopf, Ameisenbuckel, Karlslust, Auerstein +6 +11 +yes +yes ++496221166707 and http://www.eldorado-hd.de/, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de, http://www.vrnnextbike.de +Traverse Theatre, Edinburgh People's Theatre, Stand Comedy Club, Roxy Art House, Leitheatre, Festival Theatre, King's Theatre, The Queen's Hall, Bedlam Theatre, Royal Lyceum Theatre, Church Hill Theatre, Leith Theatre, Usher Hall, Edinburgh Playhouse, The Studio +Tills Bookshop, Oxfam Book Shop, Waterstones, Edinburgh Books, Word Power, Oxfam Books, Waterstones, Blackwells, The Works, St Columba's Hospice, The Edinburgh Bookshop, Robert Murray Stamp Shop, Robert Murray Stamp Shop, Blackwells, Waterstone's, Books4Less, Waterstones, Bookworm, Armchair Books, Peter Bell Books, Aurora Books, Golden Hare Books, Avizandum, Deadhead Comics, Transreal, McNaughtan's Bookshop, Elvis Shakespeare, Oxfam, Southside Books, Paper Rack, Main Point Books, The Gently Mad, Golden Hare, Waterstones, W H Smith +yes +yes +350 and 53.2761342 10.4887315, 53.2785461 10.4325550, 53.2788878 10.4304511, 53.2789685 10.4288410, 53.2790665 10.4275363, 53.2793515 10.4296426, 53.2795102 10.4307986, 53.2799998 10.4311699, 53.2800388 10.4305360, 53.2802531 10.4298171, 53.2809568 10.4325528, 53.2811750 10.4273023, 53.2815625 10.4295745, 53.2819911 10.4325519, 53.2826269 10.4275353, 53.2826725 10.4291199, 53.2826929 10.4307084, 53.2830280 10.4271192, 53.2831022 10.4287052, 53.2831150 10.4325998, 53.2837288 10.4279036, 53.2838773 10.4307180, 53.2839650 10.4284990, 53.2841272 10.4300084, 53.2844130 10.4326432, 53.2845618 10.4317124, 53.2849266 10.4286468, 53.2852440 10.4326785, 53.2853993 10.4312437, 53.2862019 10.4312152, 53.2862903 10.4296828, 53.2863750 10.4281667, 53.2755425 10.4331058, 53.2761180 10.4342194, 53.2777425 10.4325522, 53.2784206 10.4363617, 53.2787675 10.4341599, 53.2792207 10.4369299, 53.2797841 10.4352717, 53.2798691 10.4329383, 53.2802341 10.4377177, 53.2804318 10.4357138, 53.2804958 10.4341054, 53.2809025 10.4367483, 53.2810767 10.4351505, 53.2811385 10.4383054, 53.2815542 10.4387704, 53.2818275 10.4359059, 53.2818582 10.4345100, 53.2819239 10.4373488, 53.2823376 10.4392990, 53.2825169 10.4360569, 53.2830035 10.4345927, 53.2833004 10.4377685, 53.2833131 10.4391705, 53.2835717 10.4400953, 53.2836192 10.4362508, 53.2840499 10.4383614, 53.2841091 10.4371511, 53.2842429 10.4346390, 53.2852186 10.4350928, 53.2859174 10.4342212, 53.2861266 10.4418947, 53.2864599 10.4407835, 53.2866391 10.4384732, 53.2867455 10.4400080, 53.2710726 10.4382947, 53.2712649 10.4401709, 53.2715637 10.4389128, 53.2715925 10.4369872, 53.2716948 10.4356207, 53.2718374 10.4407911, 53.2719692 10.4318737, 53.2722286 10.4381808, 53.2723073 10.4283180, 53.2723904 10.4339771, 53.2724363 10.4306150, 53.2726881 10.4386844, 53.2728290 10.4358632, 53.2729874 10.4377402, 53.2730720 10.4325897, 53.2732284 10.4344339, 53.2734787 10.4368595, 53.2735875 10.4305386, 53.2736198 10.4281482, 53.2737720 10.4388769, 53.2741165 10.4378899, 53.2742165 10.4350736, 53.2744887 10.4302344, 53.2745759 10.4321830, 53.2747589 10.4355519, 53.2750037 10.4313911, 53.2750244 10.4339792, 53.2756698 10.4357777, 53.2762404 10.4301091, 53.2769792 10.4292635, 53.2770442 10.4300230, 53.2772394 10.4288761, 53.2777241 10.4276349, 53.2779813 10.4305866, 53.2726055 10.4416071, 53.2728502 10.4404349, 53.2734544 10.4426876, 53.2743250 10.4409690, 53.2744621 10.4388953, 53.2747879 10.4443669, 53.2750500 10.4378589, 53.2751288 10.4397836, 53.2751450 10.4422597, 53.2757981 10.4406575, 53.2760134 10.4424302, 53.2760164 10.4368845, 53.2761627 10.4389881, 53.2761796 10.4452081, 53.2763269 10.4435753, 53.2766362 10.4424130, 53.2766704 10.4390843, 53.2771652 10.4411989, 53.2772523 10.4373479, 53.2774570 10.4432890, 53.2774622 10.4454378, 53.2776832 10.4389597, 53.2780373 10.4403893, 53.2780504 10.4415209, 53.2781549 10.4473295, 53.2783446 10.4438912, 53.2784492 10.4458331, 53.2789054 10.4449397, 53.2789458 10.4393966, 53.2794086 10.4432135, 53.2794484 10.4380709, 53.2795354 10.4453708, 53.2796264 10.4421588, 53.2800367 10.4398083, 53.2800561 10.4433928, 53.2801021 10.4465008, 53.2804990 10.4442490, 53.2805738 10.4408210, 53.2810142 10.4458552, 53.2815482 10.4424549, 53.2820320 10.4405398, 53.2797657 10.4502715, 53.2800199 10.4497269, 53.2801004 10.4492386, 53.2806957 10.4514076, 53.2809171 10.4481633, 53.2809629 10.4492709, 53.2813039 10.4508782, 53.2813871 10.4469217, 53.2814826 10.4528633, 53.2816343 10.4403479, 53.2817669 10.4438881, 53.2818878 10.4501453, 53.2819890 10.4484668, 53.2822309 10.4530921, 53.2823413 10.4472747, 53.2824481 10.4497679, 53.2825917 10.4423832, 53.2828899 10.4517158, 53.2830861 10.4532008, 53.2832324 10.4444640, 53.2832644 10.4490285, 53.2833666 10.4420578, 53.2837859 10.4440672, 53.2840219 10.4478656, 53.2840421 10.4427225, 53.2845804 10.4425334, 53.2848516 10.4434057, 53.2853521 10.4442130, 53.2858661 10.4462832, 53.2858796 10.4480533, 53.2859562 10.4447281, 53.2845328 10.4543058, 53.2846452 10.4532757, 53.2856692 10.4514935, 53.2859074 10.4541269, 53.2859706 10.4326894, 53.2860876 10.4504262, 53.2860891 10.4516431, 53.2862331 10.4551076, 53.2864368 10.4486951, 53.2865416 10.4522857, 53.2865468 10.4341588, 53.2867524 10.4442833, 53.2868220 10.4349471, 53.2868925 10.4499564, 53.2869911 10.4489239, 53.2871062 10.4438475, 53.2871192 10.4506975, 53.2871194 10.4520651, 53.2872992 10.4574875, 53.2873154 10.4546493, 53.2874758 10.4563049, 53.2875741 10.4457860, 53.2877174 10.4444075, 53.2878229 10.4555057, 53.2878324 10.4429645, 53.2881349 10.4550950, 53.2884875 10.4437367, 53.2888166 10.4526623, 53.2889339 10.4538563, 53.2881558 10.4478585, 53.2882657 10.4469997, 53.2888313 10.4496181, 53.2890622 10.4467478, 53.2896048 10.4486217, 53.2897562 10.4474893, 53.2899887 10.4449804, 53.2906473 10.4474064, 53.2906569 10.4510389, 53.2907103 10.4449384, 53.2907284 10.4465969, 53.2907509 10.4479661, 53.2914642 10.4483187, 53.2914817 10.4489736, 53.2916190 10.4504909, 53.2921300 10.4494183, 53.2844239 10.4552791, 53.2856557 10.4564919, 53.2877152 10.4596216, 53.2883024 10.4565032, 53.2883276 10.4601175, 53.2886603 10.4570435, 53.2886754 10.4588919, 53.2892513 10.4569805, 53.2895030 10.4592396, 53.2897695 10.4619477, 53.2863131 10.4265248, 53.2872355 10.4327684, 53.2876366 10.4262801, 53.2877399 10.4345791, 53.2878013 10.4389019, 53.2878291 10.4355610, 53.2878367 10.4372062, 53.2880742 10.4416461, 53.2884106 10.4402480, 53.2884385 10.4351391, 53.2884497 10.4361964, 53.2887476 10.4287357, 53.2889652 10.4273053, 53.2892675 10.4423403, 53.2893199 10.4371074, 53.2893432 10.4387193, 53.2893811 10.4401862, 53.2894471 10.4338566, 53.2899882 10.4279237, 53.2900173 10.4351990, 53.2901080 10.4370574, 53.2902004 10.4393046, 53.2902606 10.4383364, 53.2904159 10.4364033, 53.2905766 10.4328178, 53.2905819 10.4283490, 53.2906678 10.4351769, 53.2907212 10.4262747, 53.2908081 10.4379270, 53.2908976 10.4336480, 53.2909769 10.4366348, 53.2910409 10.4305047, 53.2913822 10.4286086, 53.2930728 10.4263859, 53.2932250 10.4288652, 53.2932524 10.4316868, 53.2936115 10.4273995, 53.2943354 10.4293190, 53.2945085 10.4266900, 53.2950907 10.4276795, 53.2772158 10.4658264, 53.2777014 10.4641203, 53.2780024 10.4621416, 53.2782612 10.4585624, 53.2782945 10.4498138, 53.2782958 10.4652568, 53.2784461 10.4657086, 53.2785414 10.4547227, 53.2786263 10.4641222, 53.2786328 10.4520188, 53.2787736 10.4557550, 53.2787924 10.4670508, 53.2790828 10.4662430, 53.2791022 10.4648568, 53.2791640 10.4630981, 53.2792677 10.4514601, 53.2793765 10.4674115, 53.2794189 10.4528188, 53.2794217 10.4637224, 53.2795526 10.4585785, 53.2796594 10.4660088, 53.2797526 10.4542423, 53.2798863 10.4626378, 53.2799338 10.4677675, 53.2800722 10.4608966, 53.2801571 10.4519139, 53.2803121 10.4666314, 53.2806292 10.4644867, 53.2806672 10.4593631, 53.2810451 10.4657299, 53.2811282 10.4604347, 53.2811311 10.4631622, 53.2815557 10.4641010, 53.2816662 10.4552491, 53.2818042 10.4539243, 53.2818947 10.4607963, 53.2821785 10.4631616, 53.2821829 10.4561119, 53.2824551 10.4585111, 53.2824798 10.4621966, 53.2827543 10.4647244, 53.2828941 10.4598433, 53.2832188 10.4557112, 53.2834286 10.4540762, 53.2834431 10.4682343, 53.2836004 10.4666031, 53.2836872 10.4638191, 53.2837723 10.4609960, 53.2843918 10.4648994, 53.2965086 10.4505225, 53.2970659 10.4507086, 53.2972331 10.4482649, 53.2972909 10.4465259, 53.2980193 10.4288210, 53.2722859 10.4750874, 53.2736634 10.4801685, 53.2738513 10.4776452, 53.2739393 10.4759802, 53.2740538 10.4816901, 53.2740773 10.4816892, 53.2741338 10.4816490, 53.2742179 10.4516208, 53.2744281 10.4771164, 53.2745874 10.4742626, 53.2746080 10.4707787, 53.2746293 10.4736401, 53.2746485 10.4656168, 53.2755292 10.4821798, 53.2756433 10.4783543, 53.2756842 10.4805945, 53.2760968 10.4743407, 53.2761750 10.4827802, 53.2769644 10.4708135, 53.2769781 10.4833074, 53.2772690 10.4745942, 53.2682855 10.4693710, 53.2859902 10.4520524, 53.2851469 10.4511304, 53.2882270 10.4453029, 53.2872393 10.4408913, 53.2912110 10.4482268, 53.2895850 10.4328281, 53.2834187 10.4575743 +yes +Heidenloch, Römischer Tempel, Freischaren-Schanze, Freischaren-Schanze, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall +55.9470382 -3.2136679, 55.9040174 -3.2248441, 55.9044388 -3.2231298, 55.9055392 -3.2245241, 55.9070009 -3.2266338, 55.9336880 -3.2115060, 55.9455354 -3.2173298, 55.9459252 -3.2182400, 55.9467297 -3.2160853, 55.9468911 -3.2157329, 55.9495730 -3.2096804, 55.9498456 -3.2090591, 55.9470251 -3.2128783, 55.9466831 -3.2111062, 55.9457403 -3.2083802, 55.9420067 -3.2142265, 55.9429862 -3.2105745, 55.9435721 -3.2079032, 55.9452599 -3.2068906, 55.9458494 -3.2043614, 55.9463971 -3.2001543, 55.9473655 -3.1962398, 55.9476701 -3.1928242, 55.9476734 -3.2034572, 55.9475478 -3.2016708, 55.9486521 -3.1951042, 55.9486914 -3.1982744, 55.9493803 -3.1935304, 55.9867620 -3.3969118, 55.9890911 -3.3975569, 55.9909234 -3.3992102, 55.9871450 -3.3956272, 55.9500952 -3.2159210, 55.9514349 -3.2130963, 55.9668601 -3.2378355, 55.9684348 -3.2376134, 55.9698270 -3.2367766, 55.9676125 -3.2353921, 55.9654876 -3.2338032, 55.9577146 -3.2175590, 55.9574409 -3.2136525, 55.9577176 -3.2110983, 55.9594385 -3.2162145, 55.9591627 -3.2129430, 55.9587082 -3.2097806, 55.9582498 -3.2083579, 55.9601149 -3.2048779, 55.9686890 -3.2346734, 55.9691570 -3.2301059, 55.9590746 -3.2001052, 55.9574525 -3.1992269, 55.9576308 -3.2078827, 55.9571589 -3.2057631, 55.9570635 -3.2040021, 55.9579700 -3.1990768, 55.9589149 -3.1952296, 55.9516446 -3.2116255, 55.9505151 -3.2088197, 55.9516840 -3.2088535, 55.9565296 -3.2022609, 55.9551067 -3.2015189, 55.9026109 -3.2208010, 55.9079326 -3.2251115, 55.9091271 -3.2224615, 55.9325314 -3.2101262, 55.9352614 -3.1942899, 55.9360447 -3.1944235, 55.9385819 -3.1950517, 55.9398783 -3.1952903, 55.9366483 -3.1940225, 55.9381768 -3.1922983, 55.9397207 -3.1863782, 55.9396831 -3.1901910, 55.9415028 -3.1999255, 55.9432237 -3.2023940, 55.9346560 -3.2102493, 55.9360555 -3.2094469, 55.9370851 -3.2071954, 55.9398620 -3.2044719, 55.9413443 -3.2035998, 55.9428297 -3.2037418, 55.9399009 -3.2118071, 55.9409026 -3.2095928, 55.9418569 -3.2046167, 55.9451034 -3.2054205, 55.9464821 -3.2059437, 55.9479806 -3.2093194, 55.9480111 -3.2070831, 55.9492390 -3.2069040, 55.9415413 -3.1997466, 55.9397680 -3.1895210, 55.9443353 -3.2022970, 55.9449518 -3.1965229, 55.9506888 -3.2047906, 55.9508146 -3.2040851, 55.9509521 -3.2032596, 55.9512459 -3.2015502, 55.9513546 -3.2008993, 55.9534000 -3.1985886, 55.9545267 -3.1976404, 55.9530395 -3.1968514, 55.9525421 -3.1965899, 55.9514272 -3.1964815, 55.9502471 -3.1953894, 55.9514017 -3.1916501, 55.9523041 -3.1921025, 55.9487161 -3.1921254, 55.9473980 -3.1913002, 55.9475336 -3.1896852, 55.9461587 -3.1899395, 55.9461484 -3.1857678, 55.9446725 -3.1868648, 55.9426946 -3.1843831, 55.9410872 -3.1828376, 55.9523441 -3.1952612, 55.9524248 -3.1947854, 55.9530238 -3.1937098, 55.9548982 -3.1930798, 55.9531749 -3.1905850, 55.9532540 -3.1901090, 55.9561036 -3.1918150, 55.9566140 -3.1887839, 55.9597614 -3.1911416, 55.9587469 -3.1900917, 55.9574145 -3.1883681, 55.9540301 -3.1883045, 55.9542782 -3.1877994, 55.9553364 -3.1870704, 55.9555412 -3.1881647, 55.9588451 -3.1841152, 55.9619623 -3.1801852, 55.9623490 -3.1824104, 55.9791442 -3.1838015, 55.9773720 -3.1797945, 55.9749268 -3.1821540, 55.9722461 -3.1760338, 55.9719668 -3.1730260, 55.9760045 -3.1700682, 55.9801664 -3.1773603, 55.9800397 -3.1776022, 55.9799062 -3.1778409, 55.9788191 -3.1802177, 55.9780795 -3.1794306, 55.9771980 -3.1743400, 55.9769992 -3.1732606, 55.9765285 -3.1705860, 55.9759268 -3.1678383, 55.9755202 -3.1648177, 55.9711134 -3.1726962, 55.9713906 -3.1702867, 55.9729980 -3.1685221, 55.9504910 -3.1854886, 55.9510338 -3.1816628, 55.9501355 -3.1837930, 55.9537308 -3.1871585, 55.9538854 -3.1830563, 55.9579461 -3.1831271, 55.9579339 -3.1826673, 55.9578767 -3.1789396, 55.9733850 -3.1663395, 55.9573263 -3.1468079, 55.9551375 -3.1512278, 55.9551965 -3.1477860, 55.9552066 -3.1457361, 55.9541352 -3.1478987, 55.9524812 -3.1884943, 55.9517665 -3.1881346, 55.9512769 -3.1878726, 55.9489276 -3.1868532, 55.9484886 -3.1866438, 55.9457222 -3.1847309, 55.9454420 -3.1844541, 55.9459249 -3.1824225, 55.9471357 -3.1820879, 55.9432112 -3.1796016, 55.9430769 -3.1830456, 55.9428271 -3.1828112, 55.9413427 -3.1812830, 55.9349560 -3.1933400, 55.9355201 -3.1900188, 55.9359617 -3.1872388, 55.9403097 -3.1729174, 55.9383759 -3.1729846, 55.9368395 -3.1706322, 55.9362943 -3.1703276, 55.9380056 -3.1727326, 55.9357290 -3.1880801, 55.9352794 -3.1908999, 55.9417310 -3.1818531, 55.9432691 -3.1832993, 55.9401121 -3.1759873, 55.9431175 -3.1797033, 55.9442893 -3.1810875, 55.9456619 -3.1831172, 55.9469839 -3.1818513, 55.9457698 -3.1849764, 55.9488929 -3.1870504, 55.9492763 -3.1872419, 55.9513723 -3.1882358, 55.9521151 -3.1886009, 55.9529056 -3.1458123, 55.9536640 -3.1473562, 55.9550460 -3.1447760, 55.9550213 -3.1476460, 55.9550728 -3.1523790, 55.9555903 -3.1566068, 55.9724046 -3.1632755, 55.9734772 -3.1676223, 55.9577127 -3.1801199, 55.9577689 -3.1829548, 55.9598986 -3.1836144, 55.9539108 -3.1837466, 55.9538082 -3.1860623, 55.9537460 -3.1864288, 55.9536090 -3.1872578, 55.9471148 -3.1782693, 55.9492792 -3.1822951, 55.9501804 -3.1839664, 55.9512348 -3.1865851, 55.9510428 -3.1899310, 55.9508278 -3.1825636, 55.9503437 -3.1858623, 55.9739384 -3.1675454, 55.9716823 -3.1695986, 55.9710945 -3.1729414, 55.9754404 -3.1672776, 55.9767799 -3.1727255, 55.9773024 -3.1758686, 55.9778968 -3.1792143, 55.9750843 -3.1712339, 55.9738978 -3.1727490, 55.9719290 -3.1728798, 55.9722046 -3.1746804, 55.9721394 -3.1759853, 55.9747119 -3.1831053, 55.9787681 -3.1799116, 55.9803325 -3.1776103, 55.9802576 -3.1818238, 55.9785884 -3.1824160, 55.9622037 -3.1793755, 55.9627389 -3.1787103, 55.9618397 -3.1798451, 55.9622890 -3.1826621, 55.9587553 -3.1837463, 55.9585333 -3.1839575, 55.9557001 -3.1866674, 55.9540735 -3.1877177, 55.9572218 -3.1884308, 55.9597602 -3.1915275, 55.9606648 -3.1931837, 55.9564422 -3.1886008, 55.9511728 -3.1894775, 55.9513768 -3.1853034, 55.9530038 -3.1904535, 55.9529734 -3.1906361, 55.9550011 -3.1944896, 55.9523721 -3.1941529, 55.9522306 -3.1949546, 55.9521243 -3.1955713, 55.9414032 -3.1835175, 55.9439756 -3.1855145, 55.9457447 -3.1858708, 55.9459185 -3.1889928, 55.9462149 -3.1911216, 55.9474608 -3.1915894, 55.9483990 -3.1921221, 55.9499555 -3.1941302, 55.9513537 -3.1966807, 55.9563095 -3.1988813, 55.9543603 -3.1978922, 55.9530552 -3.1971722, 55.9518480 -3.1998550, 55.9512810 -3.2003210, 55.9511317 -3.2011985, 55.9510603 -3.2016272, 55.9507178 -3.2036019, 55.9505841 -3.2043884, 55.9451215 -3.1923158, 55.9448465 -3.1948923, 55.9448398 -3.1982337, 55.9495074 -3.2066951, 55.9492342 -3.2065847, 55.9483042 -3.2035260, 55.9477777 -3.2074310, 55.9470945 -3.2058026, 55.9462517 -3.2055118, 55.9451884 -3.2051208, 55.9428135 -3.2034910, 55.9425896 -3.2034198, 55.9417455 -3.2046015, 55.9407315 -3.2096840, 55.9412949 -3.2033828, 55.9392306 -3.2046030, 55.9364756 -3.2079633, 55.9348931 -3.2100243, 55.9431527 -3.2018790, 55.9380729 -3.1920260, 55.9368177 -3.1935085, 55.9393298 -3.1949761, 55.9378804 -3.1946691, 55.9368007 -3.1944119, 55.9350732 -3.1939952, 55.9089266 -3.2227432, 55.9076164 -3.2261893, 55.9024927 -3.2209412, 55.9538170 -3.2010786, 55.9557714 -3.2021464, 55.9519898 -3.2056255, 55.9506446 -3.2093738, 55.9504970 -3.2090293, 55.9515635 -3.2119466, 55.9590112 -3.1954889, 55.9578837 -3.1987058, 55.9569531 -3.2042594, 55.9573349 -3.2073650, 55.9581370 -3.1998753, 55.9595344 -3.2006164, 55.9689314 -3.2315056, 55.9685250 -3.2348925, 55.9602477 -3.2031604, 55.9599422 -3.2050807, 55.9584545 -3.2079471, 55.9589660 -3.2114386, 55.9592891 -3.2157462, 55.9577015 -3.2172967, 55.9592368 -3.2207211, 55.9573790 -3.2117285, 55.9566490 -3.2146849, 55.9664241 -3.2347134, 55.9694408 -3.2367643, 55.9682289 -3.2375427, 55.9672975 -3.2372246, 55.9661966 -3.2376861, 55.9509150 -3.2138808, 55.9498016 -3.2162253, 55.9493877 -3.2175003, 55.9495686 -3.2189589, 55.9870411 -3.3960723, 55.9907091 -3.3983046, 55.9900444 -3.3976399, 55.9492297 -3.1934848, 55.9485101 -3.1950625, 55.9466052 -3.2025367, 55.9483763 -3.1903144, 55.9458781 -3.2015473, 55.9450777 -3.2041637, 55.9433912 -3.2080175, 55.9425797 -3.2117259, 55.9456681 -3.2081800, 55.9460697 -3.2125273, 55.9496579 -3.2091165, 55.9491712 -3.2102205, 55.9478015 -3.2132758, 55.9456796 -3.2170439, 55.9455186 -3.2170669, 55.9334398 -3.2118455, 55.9064805 -3.2256576, 55.9059136 -3.2239281, 55.9055130 -3.2235475, 55.9051874 -3.2237612, 55.9042466 -3.2225799, 55.9038972 -3.2233847, 55.9038681 -3.2263110, 55.9781517 -3.1735386, 55.9553235 -3.1920547, 55.9553332 -3.1919926, 55.9553429 -3.1919304, 55.9553525 -3.1918683, 55.9553622 -3.1918061, 55.9553719 -3.1917440, 55.9553816 -3.1916819, 55.9553913 -3.1916197, 55.9554010 -3.1915576, 55.9554107 -3.1914955, 55.9554204 -3.1914333, 55.9554301 -3.1913712, 55.9554398 -3.1913091, 55.9554495 -3.1912469, 55.9554592 -3.1911848, 55.9554688 -3.1911227, 55.9554785 -3.1910605, 55.9554882 -3.1909984, 55.9472325 -3.1901311, 55.9766612 -3.1797211, 55.9438324 -3.2142584, 55.9433875 -3.2147686, 55.9562981 -3.1986248, 55.9475607 -3.1861653, 55.9536715 -3.1868832, 55.9525909 -3.2000321, 55.9476032 -3.2085057, 55.9464948 -3.1985795, 55.9514808 -3.2001745, 55.9525187 -3.1942515, 55.9539179 -3.1954762, 55.9458721 -3.1870265, 55.9452545 -3.1868374, 55.9439698 -3.1852609, 55.9493416 -3.2102159, 55.9651187 -3.2337410, 55.9458574 -3.2195136, 55.9458637 -3.2199619, 55.9493651 -3.2098050, 55.9525355 -3.2025587, 55.9507195 -3.1921655, 55.9532131 -3.1997985, 55.9541367 -3.1918691, 55.9547528 -3.1939230, 55.9745653 -3.1721302, 55.9707112 -3.2373591, 55.9710196 -3.2373748, 55.9723997 -3.1630202 +Olympia, Le Moulin Rouge, Palais des Glaces, La Boule Noire, Théatres de La Cartoucherie, Comédie des 3 Bornes, Théâtre de la Main d'Or, Théâtre de la Cité Internationale, Le Monfort, Théâtre Clavel, Bouffes du Nord, Théâtre de la Bastille, Salle de la Mutuelle RATP, Café Oscar, Théâtre Antoine, Théâtre de la Michodière, La Pépinière Théâtre, La Cigale, Double Fond, Théâtre Déjazet, Aktéon Théâtre, Le Celeste, Theatre du Marais, Le Splendid, Théâtre de Chaillot, Folies Bergère, Amphithéâtre Rouelle, Théâtre Michel, Théâtre des Champs-Elysées, Comédie des Champs-Elysées, Théâtre de Belleville, Théâtre Les Blancs Manteaux, Théâtre de l'Alambic Comédie, La Vieille Grille, Théâtre Paris-Villette, Théâtre des Mathurins, Théâtre Edouard VII, Athénée Théâtre Louis-Jouvet, Le Crazy horse de Paris, Le Bataclan, Salle Pleyel, Théâtre Traversière, Théatre de l'ile Saint-Louis Paul-Rey, Paradis latin, La Maroquinerie, Auditorium de Radio France, Salle Gaveau, Théatre de la Madeleine, Péniche Opéra, Les Rendez-Vous d'Ailleurs, Théo Théatre, La Main Au Panier, Théâtre Artistic Athévains, Théâtre des Abbesses, ABC Théâtre, Ciné 13 Théâtre, La Comédie Italienne, Café de la Gare, Théâtre Comédia, Théâtre Montparnasse, La Comédie des Boulevards, Comédie de Paris, Théâtre de la Gaîté-Montparnasse, L'Européen, Théâtre Essaïon, Théâtre Daunou, Théâtre des Déchargeurs, Théâtre des 5 Diamants, La Grande Comédie, Théâtre de la Huchette, Théâtre de Dix Heures, Théâtre Fontaine, Théâtre Le Méry, Le Lucernaire, Théâtre 13 - Seine, Maison de la Poésie - Paris, Théâtre du Nord-Ouest, Théâtre le Ranelagh, Théâtre de Paris, Théâtre d'Edgar et Café d'Edgar, Théâtre Ouvert, Théâtre de Poche Montparnasse, Théâtre 14 Jean-Marie Serreau, Le Palace, Le Point Virgule, Théâtre Rive Gauche, Théâtre des Nouveautés, Théâtre Trévise, Théâtre 13, Vingtième Théâtre, Théâtre du Temps, Théâtre Tristan Bernard, Le Zèbre, Théâtre des Variétés, Le Grand Point Virgule, Théatre, Salle Saint-Léon, Théâtre Montorgueil, Le Funambule De Montmartre, Le Temple, Zeartist's Cafe, La Machine, Le théâtre des béliers parisiens, Le Divan du Monde, Théâtre Pixel, Théâtre du Conservatoire d'Art Dramatique, L'Affiche, Nouveau théâtre, Salle Ferry, Théâtre de Poche Montparnasse, Atelier de Paris, Théâtre de l'Épée de Bois, Théâtre du Chaudron, Théâtre du Soleil, Les Trois Baudets, Le Passage vers les Etoiles, L'étoile du Nord, Bobino, Théatre Galerie de Nesle, Théâtre de l'Opprimé, La Passementerie, Auguste, Théâtre du Petit Montparnasse, Atelier de la Bonne Graine, Théâtre Dunois, Bouffon théâtre, Le Regard du Cygne, Auditorium Saint-Germain, Acting International, Théâtre Darius Milhaud, Théâtre Douze, Théâtre Saint-Blaise, Théâtre aux Mains Nues, Théâtre de l'Écho, Théatre Saint-Germain, Théâtre astral, Le mouchoir de poche, Théatre de la Terre, Théâtre des Quarts-d'Heure, Espace Bernanos, Théâtre du petit monde, Les Feux de la Rampe, Le sentier des halles, Le Proscenium, Laurette Théâtre, Théâtre Laboratoire, Madame Arthur, Alhambra, Le Guignol de Paris, Le Petit Casino, Théâtre de l'Oeuvre, Comédie Caumartin, Théâtre de Verre, Théâtre BO Saint-Martin, Opéra Bastille, Philharmonie de Paris, Le Cabaret Sauvage, Théâtre du Châtelet, Théâtre de la Ville, Comédie Française, Théâtre du Palais Royal, Théâtre des Bouffes Parisiens, Théâtre National de l'Opéra Comique, Opéra Garnier, Caveau de la République, Théâtre Mouffetard, Théâtre de la Tempête, Théâtre du Luxembourg, Théâtre du Gymnase Marie Bell, Théâtre de la Porte-Saint-Martin, Théâtre de la Renaissance, Théâtre du Vieux-Colombier, Café de la Danse, Cirque d'Hiver, Philharmonie 2, Le Zénith Paris - La Villette, Le Tarmac de la Villette, Espace Cardin, Théâtre Marigny, Théâtre Guignol des Champs-Élysées, Théâtre de la Madeleine, Théâtre Mogador, Casino de Paris, Théâtre La Bruyère, Théâtre Saint-Georges, Le Tarmac, Studio de l'Ermitage, Théâtre de Ménilmontant, Théâtre de la Colline, Élysée Montmartre (Fermé), Théâtre des Deux Ânes, Théâtre de l'Atelier, Le Trianon, Theâtre de la Plaine, Guignol, Marionnettes du Ranelagh, Théâtre de la Reine blanche, Salle Wagram, Théâtre Hébertot, Théâtre le Petit Hébertot, Théâtre du Rond-Point, Le Grand Parquet, Cavae des Arènes de Lutèce, Théâtre de l’Aquarium, Théâtre de verre, Chapiteaux Turbulents !, Odéon–Théâtre de l'Europe +3 +11 +5 +Untere Neckarstraße +48.8547859 2.3941295, 48.8248132 2.3380361, 48.8246404 2.3379926, 48.8769311 2.3319587, 48.8592815 2.4001391, 48.8368896 2.2901925, 48.8369266 2.2902167, 48.8314375 2.3610251, 48.8579759 2.4063828, 48.8540236 2.4015272, 48.8897293 2.2994259, 48.8897606 2.2993882, 48.8486322 2.3588365, 48.8779905 2.3662605, 48.8867597 2.3750239, 48.8862341 2.3762604, 48.8186493 2.3590514, 48.8173080 2.3582405, 48.8175522 2.3582541, 48.8628781 2.3670713, 48.8209066 2.3574248, 48.8208012 2.3572972, 48.8208287 2.3576033, 48.8208145 2.3574502, 48.8520197 2.2867484, 48.8897463 2.3634045, 48.8290218 2.3791477, 48.8597144 2.4062420, 48.8654427 2.4002296, 48.8655443 2.4002869, 48.8656004 2.4000960, 48.8786702 2.3820879, 48.8787286 2.3821819, 48.8644237 2.3605643, 48.8613292 2.3790701, 48.8538105 2.3578356, 48.8635305 2.3713802, 48.8586461 2.3716096, 48.8588582 2.3717073, 48.8601227 2.3613546, 48.8678392 2.3680317, 48.8385789 2.3887193, 48.8415738 2.3364851, 48.8420564 2.3365219, 48.8417292 2.3365051, 48.8432001 2.3373121, 48.8430579 2.3373087, 48.8429169 2.3372953, 48.8586476 2.3579201, 48.8387659 2.3537224, 48.8316069 2.3482725, 48.8388356 2.4064308, 48.8388787 2.4064483, 48.8896329 2.3152465, 48.8189949 2.3551879, 48.8189152 2.3552463, 48.8864643 2.3247572, 48.8737445 2.3636077, 48.8422883 2.3537773, 48.8761720 2.3844227, 48.8761415 2.3844219, 48.8395306 2.3180214, 48.8395938 2.3180980, 48.8897561 2.3634217, 48.8897414 2.3635077 +La bobine de fil, Fresque Bottazzi, Le mur des Canuts, Lyon et sa région, terre de l’humanisme, Lyon et sa région, terre de l’humanisme, Le Théâtre des Charpennes, Fresque Disques Wem, Rue des grands chefs - Restaurant Paul Bocuse, Paul Bocuse - Restaurant Paul Bocuse, Mur de la Cour des Loges, La fresque des Lyonnais, La Bibliotheque de la Cité "des écrivains en Rhône-Alpes", Fresque Boulevard de la B.D. Lada, Boulevard de la B.D. - Joost Swarte, Boulevard de la B.D. - Loustal, Fresque La Dombes, Fresque de Meyzieu, Fresque des Fourchettes, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Fresque La Résidence de la Sarra, Charlie Chaplin Bubbles, Mayoud Honda, Fresque ESAT Hélène Rivet, Fresque Source Cachée Arbre Sacré, Fresque Ancienne gare de Meyzieu, Fresque "La Route de la Soie", La "Fresque Végétale Lumière", Poster en facade gratte ciel, Tag La Baguetterie, Fresque Square Villevert, Fresque du Stade Municipal, Fresque des noirettes "Le Mur du Soleil", Fresque des noirettes "Le Mur de la Cascade", Fresque "File le temps... reste les canuts", Mur des Fourrures, Fresque "Thank You Monsieur Paul" (Bocuse), Fresque des Roses - Champagne-au-Mont-d'Or, Fresque "Le Jardin d'en Face" and 45.7615378 4.9252989, 45.7858145 4.8075880, 45.7779285 4.8279690, 45.7698700 4.7879340, 45.7698985 4.7880655, 45.7725199 4.8663498, 45.7756330 4.7951910, 45.8155738 4.8472165, 45.8156435 4.8475277, 45.7649855 4.8287925, 45.7681064 4.8280574, 45.7659207 4.8312600, 45.7759090 4.8015510, 45.7760780 4.7952180, 45.7764025 4.7984375, 45.8202824 4.8705136, 45.7664155 5.0049470, 45.7704495 4.8643856, 45.7617643 4.8152072, 45.7621030 4.8160960, 45.7618195 4.8162683, 45.7745993 4.8606941, 45.8437735 4.7340205, 45.7690470 4.7998735, 45.7697129 4.9524500, 45.7714030 5.0001735, 45.7723084 4.8215466, 45.7696023 4.8272314, 45.7680770 4.8801051, 45.7677299 4.8312641, 45.8764848 4.8346205, 45.8684698 4.8394062, 45.7860525 4.9123035, 45.7871070 4.9124765, 45.7805415 4.8361690, 45.7660616 4.8316834, 45.7637878 4.8505854, 45.7946355 4.7932140, 45.7722055 4.8638274 +7 +Wellington +yes +12 +Hilton Edinburgh Airport Hotel +481 +yes +2 +55.9523647 -3.1038920 +yes +28 +yes +41 +Stephen Sauvestre, Gustave Eiffel, Maurice Koechlin, Émile Nouguier +Eugène Flachat and 48.8869533 2.3007728 +http://lindenbraeu.de, http://www.ep-farm.de/seitz/, www.moritz-hollfeld.de, http://www.gasthof-muehlhaeuser.de/, http://www.fleischmann-whisky.de/, http://www.glenfiddich.com, http://www.bladnoch.co.uk/, http://www.felsenbrand.de, www.geist-reich.biz, http://www.hausbrauerei-altstadthof.de/, http://www.nwediep.nl/, http://www.schansbier.nl/, http://www.landgasthof-dreilinden.de/, http://www.geistvonrathen.de/, http://www.schladerer.de/, www.ortler.biz, http://www.vins.tourisme-gers.com/Recherche-Details.aspx?theme=armagnac&categorie=producteurscaves&FID=51554&k=chateau-cugnac-armagnac-condom, http://www.kormann-online.de, http://www.schnapsbrennerei-steinlechner.at, http://www.nestville.sk/, http://www.lindelberg-brennerei.de/, http://www.br-piekfeinebraende.de/, http://www.geistreich.biz/, www.feinerkappler.de, www.kaiser-baiersdorf.de, www.betzenstube.de, http://www.hofladen-fahner.de/, www.feesenhof.de, www.brennerei-hack.de, www.edelgeist.de, www.destillerie-haas.de, www.brennerei-wunder.de, www.adlerbrennerei.de, www.brennerei-Lang.de, www.waldenhof.de, http://www.gasthof-salb.de/, www.brennerei-schilling.de, www.brauerei-alt.de, http://www.destille-marbach.de/, http://www.brennerei-blaufelder.de/, http://www.brennereirossmann.de/, http://www.distilleryprescott.com/, http://www.rhum-saintjames.com/, http://www.edelbrennerei-reus.de/, http://www.old-gamundia.de/, http://chattanoogawhiskey.com/, www.aromatique.de, http://www.alte-brennerei-holz.de/, www.grassl.com, http://www.altlaender.com, http://www.abtshof.de/, http://www.wezl.it/, http://pingold.com, http://www.gerbermann.com/, http://www.welsh-whisky.co.uk/, http://www.broger.info, http://www.jurawhisky.com, http://www.plymouthdistillery.com, http://www.braunhof.de/, http://www.lemercier.com/, http://www.plymouthdistillery.com, http://www.discovering-distilleries.com/dalwhinnie/, http://www.rolshausen-erfurt.de/destilleerfurt.html, http://www.brennerei-ziegler.de, http://www.brennereibetz.de/, http://www.rogue.com/, http://gasthof-steinlein.de, http://www.distillerialecrode.com, http://www.landgasthof-zehner.de, http://www.oldpulteney.com/, www.edelbrennerei-kern.de, http://www.stgeorgespirits.com, http://www.grappabrunello.it/, http://www.chateau-breuil.com/, http://www.hammerschmiede-spirituosen.de, http://www.pension-brueck.de/, http://www.alt-enderle-brennerei.de, http://www.hetanker.be/nl/stokerij, http://www.abhainndearg.co.uk/, www.discovering-distilleries.com/oban/, http://www.ardbeg.com, http://www.malts.com/index.php/en can/Our-Whiskies/Lagavulin, http://www.laphroaig.com/home.aspx, http://dunordcraftspirits.com, http://www.distilleriebagnoli.it, http://www.ardmorewhisky.com/, http://www.ardmorewhisky.com/, http://www.mainedistilleries.com/, http://www.bruichladdich.com/, http://kilchomandistillery.com/, http://www.glengarioch.com/, http://www.takarasake.com/, http://www.plymouthdistillery.com +yes +49.3921345 8.6899281, 49.4202233 8.6640696, 49.4198130 8.6638525, 49.4195041 8.6641646, 49.4248122 8.6872355, 49.4263252 8.6863288, 49.3821268 8.6873327, 49.3882775 8.6900763, 49.3901795 8.6899925, 49.3892503 8.6900456, 49.3903991 8.6894473, 49.3945198 8.6875810, 49.3885818 8.6900958, 49.3900857 8.6894558, 49.3909310 8.6899610, 49.3943687 8.6880533, 49.3889948 8.6900615, 49.3885217 8.6894822, 49.3929814 8.6897596, 49.3931786 8.6898297, 49.3911406 8.6893336, 49.3924129 8.6898911, 49.3934527 8.6883695, 49.3914985 8.6899383, 49.3915787 8.6893046, 49.3939908 8.6881067, 49.3831760 8.6871839, 49.3810780 8.6874136, 49.4217251 8.6445344, 49.3736442 8.6860492, 49.4084762 8.6902505, 49.4065296 8.6690132, 49.4208711 8.6448501, 49.4209873 8.6448339, 49.4204584 8.6876495, 49.4189459 8.6869645, 49.4193267 8.6867654, 49.4192376 8.6861722, 49.4192705 8.6864384, 49.3777088 8.7056335, 49.3780745 8.7048109, 49.3779505 8.7037486, 49.3745067 8.7032760, 49.3799563 8.6760435, 49.3799786 8.6763709, 49.3800051 8.6766463, 49.3802989 8.6762802, 49.3803460 8.6768554, 49.3793154 8.6774993, 49.3793481 8.6767367, 49.3793568 8.6770688, 49.3793655 8.6773181, 49.3793218 8.6759644, 49.3796266 8.6836532, 49.3796294 8.6834790, 49.3795841 8.6831190, 49.3795295 8.6826857, 49.3943664 8.6896988, 49.3940489 8.6896924, 49.3941923 8.6896742, 49.3997820 8.6405617, 49.3995752 8.6401758, 49.3926214 8.6768793, 49.3798526 8.6797819, 49.3799495 8.6800491, 49.3799490 8.6795094, 49.3730264 8.6866477, 49.3813847 8.6873661, 49.3896117 8.6900353, 49.3828408 8.6872343, 49.3827066 8.6872528, 49.3825717 8.6872714, 49.4081775 8.6881313, 49.4081698 8.6882874, 49.4082331 8.6884615, 49.4083237 8.6888854, 49.4084415 8.6900553, 49.4084860 8.6903641, 49.4084765 8.6898842, 49.4084627 8.6897477, 49.4084636 8.6896366, 49.4084248 8.6895282, 49.4083660 8.6893501, 49.4083662 8.6891344, 49.4083446 8.6889828, 49.4086172 8.6909674, 49.4086503 8.6908303, 49.4085091 8.6906855, 49.4086061 8.6905132, 49.4087890 8.6917902, 49.4087592 8.6915686, 49.4087155 8.6913580, 49.4086937 8.6910795, 49.4087163 8.6911997, 49.4264161 8.6863276, 49.4263838 8.6862184, 49.4261138 8.6866692, 49.4264855 8.6863041, 49.4262979 8.6865564, 49.4262677 8.6863603, 49.3822628 8.6596492, 49.3997181 8.6401339, 49.3996684 8.6405968, 49.3995169 8.6406436, 49.3994323 8.6402177, 49.4088119 8.6919989, 49.3628686 8.7052173, 49.3631433 8.7060788, 49.3633642 8.7049588, 49.3632257 8.7044001, 49.4068837 8.6688924, 49.4067100 8.6686576, 49.3826190 8.6602844, 49.3821944 8.6593300, 49.4077241 8.6695054, 49.4076008 8.6695056, 49.4074774 8.6695058, 49.4073539 8.6695060, 49.4072305 8.6695063, 49.4072462 8.6689669, 49.4073676 8.6689653, 49.4074890 8.6689637, 49.4076104 8.6689621, 49.4077317 8.6689605, 49.3884357 8.6900982, 49.3915991 8.6899074, 49.3911397 8.6899510, 49.3900411 8.6900019, 49.3894768 8.6900459, 49.3899289 8.6899390, 49.3932858 8.6898218, 49.3923191 8.6898988, 49.3830710 8.6872005, 49.3824266 8.6872914, 49.3822780 8.6873119, 49.3816497 8.6873252, 49.3812046 8.6873940, 49.4052107 8.6885253, 49.3629863 8.7065017, 49.4227820 8.6473769, 49.3725372 8.6854583, 49.3725576 8.6861284, 49.3725312 8.6857954, 49.3736558 8.6863442, 49.3736647 8.6866573, 49.3735642 8.6868332, 49.3942089 8.6875935, 49.3940715 8.6876028, 49.3939382 8.6876578, 49.3938044 8.6876669, 49.3934510 8.6881832, 49.3914729 8.6893159, 49.3910436 8.6893428, 49.3902898 8.6894551, 49.3885318 8.6897051 +yes +9 +65 +key cutter, shoemaker, locksmith, seamstress, brewery, tailor, handicraft, dressmaker, electronics repair, silversmith, screenprinter, electrician, photographer, carpenter, watchmaker, blacksmith, painter, confectionery, joinery, plumber, joiner, stonemason +yes +217 +Bonaly Scout Camp, Edinburgh Caravan Club, Mortonhall Caravan and Camping Park, Linwater Caravan Park +49.4058676 8.6845278, 49.3755036 8.6875476, 49.4114903 8.6527163, 49.4084682 8.7011215, 49.4282350 8.6834880, 49.4080165 8.6707602, 49.3970257 8.6721772 +es:Annobón, en:Cocos (Keeling) Islands, en:Christmas Island, http://en.wikipedia.org/wiki/Banaba Island, pt:Ilha Brava, en:Norfolk Island, en:St. George Island (Alaska), en:Rapa Iti, no:Bjørnøya, en:Thule Island, de:Pitcairn, ru:Остров Уединения, pt:Trindade e Martim Vaz, en:Bouvet Island, en:Antipodes Island, fr:Amsterdam (île), fr:Saint-Paul (île), en:Ascension Island, en:Semisopochnoi Island, en:Napuka, en:Christmas Island, ru:Остров Атласова, en:Norfolk Island, en:Campbell Island, New Zealand, en:Floreana Island, en:Diego Garcia, en:Laurie Island, en:Peter I Island, en:St Kilda, Scotland, en:Macquarie island, en:Franklin Island (Antarctica), ru:Остров Рудольфа, en:Howland Island, de:Osterinsel +17 +8 +56 +48.8337601 2.2980718, 48.8309772 2.2928903, 48.8339410 2.2950323, 48.8349198 2.2959694, 48.8381491 2.2812684, 48.8811210 2.3732246, 48.8779567 2.3742972, 48.8781153 2.3727187, 48.8307104 2.3120538, 48.8367030 2.2977655, 48.8405834 2.2993396, 48.8463258 2.3017109, 48.8893424 2.3260066, 48.8300397 2.3310990, 48.8332151 2.3611684, 48.8322056 2.3591376, 48.8712479 2.3628847, 48.8778514 2.3653978, 48.8630548 2.3794488, 48.8563588 2.4021369, 48.8705460 2.3596280, 48.8297820 2.3231434, 48.8563936 2.4058269, 48.8560853 2.4051449, 48.8637600 2.3817121, 48.8316269 2.3219796, 48.8635138 2.4091631, 48.8518271 2.4017627, 48.8615562 2.3741703, 48.8602485 2.3756498, 48.8505112 2.3734697, 48.8460708 2.3737179, 48.8496820 2.3740608, 48.8490800 2.3750090, 48.8490486 2.3705522, 48.8551656 2.3600991, 48.8459906 2.3763165, 48.8474342 2.3715019, 48.8468588 2.3691970, 48.8935171 2.3255232, 48.8909446 2.3815154, 48.8472820 2.3181790, 48.8362003 2.3593757, 48.8863875 2.3186958, 48.8493049 2.3780822, 48.8493772 2.3775082, 48.8520216 2.4013947, 48.8521964 2.4026633, 48.8466612 2.3868559, 48.8475216 2.3868219, 48.8524174 2.3830770, 48.8538323 2.3820004, 48.8503861 2.3796236, 48.8495310 2.3784411, 48.8455990 2.3806300, 48.8507593 2.3788216, 48.8481410 2.3804390, 48.8824976 2.3152932, 48.8941514 2.3276397, 48.8332886 2.3557244, 48.8373701 2.2969471, 48.8662691 2.4059876, 48.8646392 2.4080329, 48.8651930 2.4052170, 48.8829824 2.3824508, 48.8541148 2.4028833, 48.8279466 2.3304154, 48.8619444 2.3516288, 48.8611025 2.3441314, 48.8500286 2.2891336, 48.8765487 2.3769364, 48.8752389 2.3825154, 48.8701254 2.3349018, 48.8773883 2.3713487, 48.8522925 2.3568330, 48.8443535 2.3549714, 48.8465773 2.3541793, 48.8618685 2.3509784, 48.8576627 2.3525871, 48.8587248 2.3501786, 48.8462572 2.3519644, 48.8637215 2.3528934, 48.8572474 2.3590633, 48.8267666 2.3510620, 48.8257746 2.3474534, 48.8526580 2.3643423, 48.8658845 2.3575167, 48.8641612 2.3652384, 48.8885578 2.3534711, 48.8616550 2.3823490, 48.8405164 2.3219841, 48.8804129 2.3352691, 48.8794749 2.3336267, 48.8810172 2.3647737, 48.8814252 2.3658018, 48.8764651 2.3681085, 48.8383449 2.3457194, 48.8344303 2.3140331, 48.8620790 2.4013394, 48.8946928 2.3825532, 48.8943501 2.3144067, 48.8469243 2.3314911, 48.8721203 2.3123396, 48.8726364 2.3241496, 48.8517936 2.3135511, 48.8728715 2.3098614, 48.8466215 2.4086336, 48.8377558 2.3541054, 48.8386808 2.3508887, 48.8827594 2.3615206, 48.8830373 2.3593122, 48.8699837 2.3960859, 48.8791074 2.3629723, 48.8782374 2.3646053, 48.8825669 2.3666870, 48.8197848 2.3652117, 48.8448730 2.4055932, 48.8784075 2.3544102, 48.8410084 2.3943815, 48.8805633 2.3647086, 48.8796707 2.3636682, 48.8763896 2.3610152, 48.8803326 2.3639778, 48.8832959 2.3681138, 48.8859862 2.3714699, 48.8650067 2.2919269, 48.8374206 2.2895464, 48.8252367 2.3572513, 48.8671109 2.2875572, 48.8362585 2.3098681, 48.8705792 2.2974324, 48.8503715 2.3790699, 48.8681484 2.2814134, 48.8662633 2.2740207, 48.8412244 2.3146196, 48.8416926 2.3144950, 48.8739761 2.3446348, 48.8525869 2.3545810, 48.8869795 2.3395686, 48.8556968 2.2748636, 48.8374709 2.3730609, 48.8314755 2.3541835, 48.8241809 2.3260188, 48.8232738 2.3262563, 48.8258667 2.3126560, 48.8468751 2.2700239, 48.8277034 2.3290464, 48.8714383 2.3749525, 48.8714917 2.3756604, 48.8425873 2.2683262, 48.8861537 2.3665372, 48.8291397 2.3173468, 48.8862628 2.3608446, 48.8899894 2.3635134, 48.8403968 2.2858802, 48.8451889 2.3793340, 48.8546996 2.3622532, 48.8873315 2.3475211, 48.8757382 2.2870119, 48.8427628 2.3131898, 48.8846035 2.3801294, 48.8287227 2.2733061, 48.8966837 2.3303844, 48.8957156 2.3308196, 48.8416043 2.3385745, 48.8282746 2.3160906, 48.8276845 2.3152274, 48.8472109 2.2956749, 48.8505880 2.3767286, 48.8573622 2.3923455, 48.8528949 2.2984341, 48.8451099 2.2604585, 48.8234260 2.3622734, 48.8237538 2.3645279, 48.8795652 2.3399721, 48.8782649 2.3446579, 48.8416777 2.3865802, 48.8356662 2.4056140, 48.8384665 2.3992857, 48.8390505 2.3976576, 48.8367225 2.4026707, 48.8420538 2.3352669, 48.8479330 2.3109984, 48.8400158 2.3885455, 48.8380676 2.3904670, 48.8372920 2.3914250, 48.8515655 2.3106825, 48.8573206 2.3799070, 48.8568774 2.3778976, 48.8433099 2.2998521, 48.8422686 2.3028212, 48.8428121 2.3029849, 48.8766295 2.3386068, 48.8232376 2.3241574, 48.8252485 2.3653047, 48.8235509 2.3617468, 48.8604658 2.3787761, 48.8941854 2.3817753, 48.8567231 2.3036505, 48.8316207 2.3444925, 48.8310738 2.3450997, 48.8448253 2.2941187, 48.8219529 2.3664594, 48.8241488 2.3575845, 48.8231660 2.3578863, 48.8264536 2.3293804, 48.8455409 2.2880176, 48.8703798 2.3425078, 48.8815370 2.2890680, 48.8814465 2.2860544, 48.8840798 2.2887768, 48.8642750 2.3750973, 48.8844394 2.3668122, 48.8279465 2.3273604, 48.8906856 2.3765193, 48.8328694 2.3159681, 48.8209152 2.3429194, 48.8217284 2.3424285, 48.8358292 2.2784139, 48.8465347 2.4059784, 48.8771396 2.3394367, 48.8777030 2.3395918, 48.8627753 2.2762117, 48.8627898 2.2765008, 48.8314375 2.3197845, 48.8378234 2.3078140, 48.8661247 2.3355594, 48.8767239 2.3326961, 48.8767816 2.3351954, 48.8747442 2.3555041, 48.8835914 2.3739721, 48.8649591 2.3745731, 48.8515852 2.2976307, 48.8695595 2.3743475, 48.8540049 2.4108468, 48.8580410 2.3902005, 48.8383400 2.3560643, 48.8466480 2.3513950, 48.8491900 2.3494261, 48.8286796 2.3431375, 48.8727447 2.3797878, 48.8942604 2.3207728, 48.8945332 2.3199871, 48.8934902 2.3226995, 48.8243403 2.3236549, 48.8273521 2.3254454, 48.8236051 2.3228034, 48.8314118 2.3268159, 48.8317243 2.3255633, 48.8731006 2.3615331, 48.8902931 2.3539796, 48.8912086 2.3476028, 48.8286520 2.3729316, 48.8443510 2.3492066, 48.8448929 2.3490511, 48.8947631 2.3433837, 48.8944528 2.3445585, 48.8931760 2.3432750, 48.8936140 2.3424950, 48.8699780 2.3603139, 48.8692880 2.3632193, 48.8689493 2.3599577, 48.8711600 2.3611170, 48.8718330 2.3625680, 48.8726030 2.3634490, 48.8551457 2.3064362, 48.8682200 2.3862795, 48.8569251 2.3724871, 48.8927820 2.3439810, 48.8652385 2.3467947, 48.8923110 2.3520290, 48.8442018 2.3394106, 48.8289915 2.3222506, 48.8593204 2.3472769, 48.8262063 2.3413104, 48.8847970 2.3378803, 48.8528514 2.4064283, 48.8481389 2.4033143, 48.8285586 2.3331113, 48.8276535 2.3328559, 48.8513913 2.4064501, 48.8547850 2.2692675, 48.8651423 2.2891208, 48.8591269 2.4019235, 48.8600304 2.4040296, 48.8511503 2.3968083, 48.8863207 2.3474156, 48.8955331 2.3629901, 48.8528677 2.3768769, 48.8510010 2.3768139, 48.8507078 2.3790297, 48.8361116 2.3874192, 48.8235068 2.3533933, 48.8403649 2.3951878, 48.8907372 2.3457644, 48.8873419 2.3512141, 48.8376955 2.3463172, 48.8846893 2.3539417, 48.8416560 2.3224928, 48.8238291 2.3416075, 48.8577497 2.2739837, 48.8780261 2.3268365, 48.8398765 2.2998351, 48.8816987 2.3281627, 48.8808802 2.3287802, 48.8360217 2.3527252, 48.8354391 2.3483666, 48.8498251 2.2722599, 48.8504305 2.2704038, 48.8528838 2.2756127, 48.8452361 2.4025749, 48.8805451 2.2927512, 48.8810529 2.2917751, 48.8872955 2.3492014, 48.8870451 2.3535780, 48.8825453 2.3671700, 48.8245631 2.3765135, 48.8813157 2.2953299, 48.8898589 2.3421554, 48.8906741 2.3434068, 48.8298993 2.3526634, 48.8281786 2.3525387, 48.8883534 2.3187513, 48.8890835 2.3224688, 48.8882779 2.2997302, 48.8939893 2.3329500, 48.8935546 2.3361391, 48.8947140 2.3351360, 48.8972639 2.3451996, 48.8979108 2.3340735, 48.8958814 2.3435581, 48.8912647 2.3345914, 48.8932962 2.3379872, 48.8493216 2.4063155, 48.8980433 2.3287001, 48.8979878 2.3377495, 48.8934867 2.3300359, 48.8928448 2.3280564, 48.8939770 2.3281101, 48.8942097 2.3280510, 48.8966030 2.3288474, 48.8932297 2.3269691, 48.8352792 2.2890637, 48.8220563 2.3588648, 48.8911761 2.3392139, 48.8499872 2.3478618, 48.8463001 2.3432338, 48.8498313 2.3482743, 48.8446190 2.3895985, 48.8497058 2.2914067, 48.8488722 2.2909525, 48.8516467 2.2919993, 48.8502983 2.2919285, 48.8430441 2.2833680, 48.8427407 2.2800381, 48.8569612 2.3997902, 48.8580950 2.4069089, 48.8574194 2.4075785, 48.8794256 2.3893510, 48.8824759 2.3233164, 48.8441370 2.3723808, 48.8533370 2.3079466, 48.8365811 2.3930159, 48.8457446 2.3932577, 48.8462449 2.3946154, 48.8682520 2.3960084, 48.8608742 2.3547652, 48.8644744 2.3715412, 48.8354190 2.3928675, 48.8389285 2.3961514, 48.8220200 2.3551611, 48.8525737 2.3850093, 48.8777366 2.2878742, 48.8782149 2.3984639, 48.8761595 2.4036138, 48.8770014 2.4071325, 48.8814737 2.3729748, 48.8807820 2.3745741, 48.8843130 2.3091760, 48.8277275 2.3062018, 48.8287563 2.3015875, 48.8930590 2.3424350, 48.8750926 2.2837673, 48.8419136 2.3247626, 48.8385785 2.3227706, 48.8431110 2.2650609, 48.8594819 2.3491211, 48.8774393 2.3494265, 48.8774984 2.3489986, 48.8849881 2.3071728, 48.8392226 2.3945147, 48.8446708 2.3731150, 48.8358462 2.2901616, 48.8302344 2.3704299, 48.8814548 2.3450080, 48.8706548 2.3429479, 48.8657789 2.3469220, 48.8205834 2.3501740, 48.8234560 2.3498227, 48.8533833 2.3705439, 48.8239258 2.3642439, 48.8225364 2.3462505, 48.8227836 2.3470686, 48.8257161 2.3507275, 48.8257020 2.3460018, 48.8771586 2.3515478, 48.8763392 2.3556446, 48.8682998 2.4016012, 48.8697801 2.4028967, 48.8710424 2.4039943, 48.8720618 2.4046821, 48.8727710 2.3991263, 48.8650559 2.3971773, 48.8655264 2.3981686, 48.8344269 2.3672465, 48.8284908 2.3703198, 48.8258079 2.3604332, 48.8594225 2.3678987, 48.8248710 2.3196867, 48.8247915 2.3176000, 48.8301761 2.3336927, 48.8327495 2.3363992, 48.8333703 2.3323929, 48.8351459 2.3005345, 48.8353374 2.3022404, 48.8359317 2.3005525, 48.8440288 2.4105786, 48.8908851 2.3611676, 48.8263543 2.3123490, 48.8263472 2.3104526, 48.8274473 2.3073922, 48.8273336 2.3052629, 48.8372837 2.2784287, 48.8421188 2.2774869, 48.8260357 2.3595197, 48.8267904 2.3744959, 48.8276944 2.3706840, 48.8352679 2.2821201, 48.8558888 2.3751485, 48.8545384 2.3713228, 48.8287227 2.2995517, 48.8317316 2.3684804, 48.8395554 2.2619755, 48.8900586 2.3606383, 48.8715652 2.3861467, 48.8243982 2.3283690, 48.8437026 2.2828025, 48.8424912 2.2821013, 48.8418528 2.2815508, 48.8941162 2.3618889, 48.8933356 2.3615276, 48.8901273 2.3615642, 48.8397383 2.2615466, 48.8388211 2.2609376, 48.8900701 2.3596849, 48.8908274 2.3601975, 48.8903737 2.3602877, 48.8762839 2.3874942, 48.8258804 2.3538466, 48.8910933 2.3308427, 48.8840472 2.3777246, 48.8532483 2.3881569, 48.8310767 2.3807850, 48.8325943 2.3626569, 48.8276596 2.3564922, 48.8501827 2.3300326, 48.8729108 2.3892528, 48.8926192 2.3787994, 48.8594463 2.3795210, 48.8917249 2.3596358, 48.8933896 2.3598075, 48.8353878 2.3976074, 48.8393328 2.3898245, 48.8654160 2.3568702, 48.8858319 2.3683200, 48.8866975 2.3690587, 48.8918801 2.3632407, 48.8682722 2.3654615, 48.8557307 2.3714370, 48.8559503 2.3687308, 48.8610703 2.3668902, 48.8615104 2.3648715, 48.8624376 2.3641865, 48.8798043 2.3995910, 48.8294110 2.3760335, 48.8893342 2.3187256, 48.8435392 2.3876321, 48.8663973 2.3511799, 48.8752547 2.3898031, 48.8739410 2.3881658, 48.8740999 2.3854670, 48.8729667 2.3708014, 48.8536536 2.3652281, 48.8839440 2.2924260, 48.8841607 2.2936643, 48.8698850 2.3947954, 48.8869564 2.3228854, 48.8320028 2.3143006, 48.8764887 2.3444554, 48.8668204 2.3972017, 48.8708653 2.3088351, 48.8703111 2.3109794, 48.8438225 2.3306529, 48.8270270 2.3545480, 48.8441654 2.3422903, 48.8525204 2.3447674, 48.8436299 2.3520995, 48.8683492 2.3653361, 48.8444368 2.3317238, 48.8878098 2.3799348, 48.8455417 2.2847565, 48.8471374 2.2853376, 48.8556183 2.3576323, 48.8725081 2.3789468, 48.8297066 2.3719377, 48.8658987 2.3445250, 48.8518380 2.3369161, 48.8368347 2.3064637, 48.8864904 2.3929252, 48.8409479 2.3520733, 48.8548553 2.3856848, 48.8551588 2.3869294, 48.8902682 2.3369864, 48.8648476 2.3661885, 48.8954171 2.3603570, 48.8462303 2.3082719, 48.8881816 2.3761106, 48.8224627 2.3258585, 48.8531572 2.3447239, 48.8495298 2.3495342, 48.8678864 2.3249680, 48.8406223 2.3162685, 48.8415260 2.3177790, 48.8516476 2.3430530, 48.8522113 2.3433310, 48.8799994 2.2917628, 48.8259140 2.3418063, 48.8475433 2.3020749, 48.8848153 2.3335836, 48.8769218 2.3487061, 48.8340803 2.3449578, 48.8294924 2.3480229, 48.8483268 2.3315361, 48.8384271 2.3603013, 48.8718826 2.3260739, 48.8306192 2.3113448, 48.8708189 2.3031863, 48.8224695 2.3280079, 48.8867785 2.2961065, 48.8380124 2.3925384, 48.8393761 2.3972146, 48.8729941 2.3452007, 48.8363310 2.3511207, 48.8308373 2.3481222, 48.8328106 2.3467883, 48.8189800 2.3619660, 48.8852910 2.2958210, 48.8653095 2.3468349, 48.8780467 2.2960586, 48.8785810 2.2953365, 48.8785586 2.2954162, 48.8860217 2.2909345, 48.8342538 2.4039026, 48.8328046 2.3998654, 48.8897434 2.3684941, 48.8565550 2.3066461, 48.8662189 2.3411008, 48.8338577 2.3542234, 48.8557977 2.3334124, 48.8537947 2.3371165, 48.8401916 2.3498220, 48.8405286 2.3497872, 48.8385999 2.2890636, 48.8410381 2.3194768, 48.8665493 2.2967911, 48.8732070 2.3032419, 48.8880020 2.3070560, 48.8894260 2.3021180, 48.8501962 2.3822724, 48.8469077 2.3843835, 48.8972873 2.3596764, 48.8588932 2.3539048, 48.8757429 2.3272510, 48.8487020 2.3404334, 48.8341468 2.3292697, 48.8334796 2.3314573, 48.8772230 2.2922270, 48.8645795 2.2824038, 48.8338948 2.3299593, 48.8810540 2.2852110, 48.8839130 2.2907430, 48.8278199 2.3453108, 48.8746985 2.3800023, 48.8294976 2.3479900, 48.8746524 2.3059699, 48.8743208 2.3074302, 48.8798388 2.3745491, 48.8345685 2.3277223, 48.8824071 2.3708251, 48.8587325 2.3232162, 48.8736497 2.3266758, 48.8265944 2.3272409, 48.8538362 2.3322137, 48.8333843 2.3867041, 48.8808106 2.3727327, 48.8406281 2.3046706, 48.8533190 2.3669820, 48.8849774 2.3801611, 48.8854894 2.3815292, 48.8856226 2.3818987, 48.8830874 2.3878108, 48.8438379 2.3524738, 48.8438379 2.3524738, 48.8222496 2.3507278, 48.8851070 2.3036780, 48.8500752 2.3009300, 48.8496090 2.3539260, 48.8827153 2.3706889, 48.8609924 2.2838960, 48.8588106 2.2845183, 48.8725875 2.3782042, 48.8755301 2.3910815, 48.8656747 2.3928548, 48.8827937 2.3812803, 48.8829828 2.3811149, 48.8755713 2.3983661, 48.8755863 2.3989012, 48.8767180 2.4047230, 48.8771405 2.4060238, 48.8591517 2.3557695, 48.8607522 2.3545715, 48.8608207 2.3543547, 48.8609593 2.3539532, 48.8610034 2.3538240, 48.8473351 2.3951813, 48.8472416 2.3961945, 48.8475546 2.3930901, 48.8476864 2.3973242, 48.8518800 2.3897180, 48.8505687 2.3925919, 48.8500483 2.3946347, 48.8575099 2.3809573, 48.8394381 2.3922677, 48.8395862 2.3939515, 48.8513422 2.3477785, 48.8745781 2.3873676, 48.8746258 2.3882005, 48.8753047 2.3926062, 48.8352480 2.2852870, 48.8583161 2.3282685, 48.8489170 2.3496550, 48.8367930 2.2958108, 48.8560138 2.2801813, 48.8568409 2.2789161, 48.8440022 2.2934092, 48.8642512 2.3689433, 48.8515116 2.3988887, 48.8907874 2.3784109, 48.8853720 2.2926050, 48.8582876 2.3822526, 48.8661157 2.3977226, 48.8671967 2.4092129, 48.8684503 2.4092879, 48.8621521 2.3775066, 48.8746232 2.3266224, 48.8467059 2.3087748, 48.8363398 2.2999746, 48.8653607 2.3687179, 48.8653218 2.3678518, 48.8413271 2.3076655, 48.8353741 2.3033228, 48.8477911 2.3189782, 48.8469433 2.3172689, 48.8685232 2.3413917, 48.8661744 2.3390884, 48.8833230 2.2987210, 48.8825490 2.2939790, 48.8615294 2.3704064, 48.8429707 2.3067870, 48.8642079 2.3555687, 48.8840313 2.3391067, 48.8616536 2.3637831, 48.8623504 2.3738750, 48.8979615 2.3364933, 48.8758793 2.3477150, 48.8560190 2.3672129, 48.8576216 2.3674544, 48.8360001 2.3219796, 48.8350251 2.3203133, 48.8790170 2.2917880, 48.8622091 2.3851402, 48.8632469 2.3690653, 48.8828882 2.3896270, 48.8787834 2.4010884, 48.8781360 2.3980267, 48.8625550 2.3629618, 48.8952399 2.3524186, 48.8780395 2.3934718, 48.8828048 2.3710020, 48.8660714 2.3658844, 48.8303516 2.3287590, 48.8368532 2.2599762, 48.8373618 2.2580020, 48.8654759 2.3602705, 48.8632677 2.3880260, 48.8562683 2.3942549, 48.8499631 2.3497239, 48.8393432 2.3095378, 48.8741069 2.3157729, 48.8584144 2.3836364, 48.8826770 2.3321419, 48.8484995 2.3783545, 48.8735496 2.3843433, 48.8623856 2.3637772, 48.8804951 2.3519041, 48.8795243 2.3493499, 48.8574550 2.3522300, 48.8703464 2.3981027, 48.8865931 2.3945167, 48.8671158 2.3837273, 48.8690093 2.3678893, 48.8706423 2.3789714, 48.8710796 2.3783999, 48.8794232 2.3568724, 48.8316743 2.3141103, 48.8418864 2.2589925, 48.8647039 2.3648658, 48.8627509 2.3598746, 48.8816743 2.3162137, 48.8578725 2.3506304, 48.8850241 2.3269069, 48.8729651 2.3580381, 48.8390240 2.3399330, 48.8738656 2.3506193, 48.8850785 2.3253062, 48.8873233 2.3334384, 48.8695892 2.3539074, 48.8597377 2.3528662, 48.8446652 2.3099958, 48.8454930 2.3442174, 48.8541465 2.3712846, 48.8664865 2.3472959, 48.8662237 2.3472467, 48.8670720 2.3473835, 48.8759240 2.2895117, 48.8585053 2.3460897, 48.8452115 2.2894177, 48.8720532 2.3501265, 48.8775753 2.3519069, 48.8445870 2.3767036, 48.8858885 2.3592570, 48.8783540 2.3397798, 48.8517019 2.3570690, 48.8805289 2.3190782, 48.8868529 2.3404231, 48.8303164 2.3194557, 48.8640610 2.3504491, 48.8619198 2.3672748, 48.8424274 2.3106157, 48.8307059 2.3310174, 48.8304867 2.3676139, 48.8571350 2.3645799, 48.8826280 2.3241332, 48.8684166 2.3550879, 48.8401013 2.3999141, 48.8624510 2.3860890, 48.8595546 2.3865872, 48.8390673 2.3500499, 48.8389036 2.3492037, 48.8814741 2.3397434, 48.8287745 2.3078640, 48.8816608 2.3581073, 48.8823292 2.3589042, 48.8379325 2.4085812, 48.8885777 2.3539087, 48.8826206 2.3590692, 48.8582146 2.3564144, 48.8708584 2.3615535, 48.8848274 2.3786347, 48.8625781 2.3635251, 48.8346109 2.4056081, 48.8448580 2.3759075, 48.8619818 2.3506062, 48.8643606 2.3732707, 48.8648008 2.3728646, 48.8646962 2.3731533, 48.8451670 2.3832340, 48.8813601 2.3272611, 48.8538204 2.3378556, 48.8853067 2.3366858, 48.8456969 2.3708882, 48.8506404 2.2936731, 48.8504684 2.2942830, 48.8569990 2.3598958, 48.8576074 2.3584776, 48.8439225 2.2833420, 48.8430432 2.2833284, 48.8428944 2.2842743, 48.8420233 2.2855649, 48.8416421 2.2888988, 48.8416730 2.2896434, 48.8807469 2.3249718, 48.8577871 2.3811707, 48.8762568 2.3026175, 48.8671899 2.2974664, 48.8679501 2.2980675, 48.8752065 2.3706130, 48.8488146 2.2662951, 48.8900794 2.3207404, 48.8593537 2.3758114, 48.8776695 2.3160713, 48.8233133 2.3772950, 48.8254469 2.3510746, 48.8656624 2.3504627, 48.8457596 2.3191243, 48.8708210 2.3577458, 48.8791718 2.3545799, 48.8329453 2.2890084, 48.8670104 2.3443314, 48.8545691 2.3624284, 48.8410290 2.3406982, 48.8547397 2.3848709, 48.8422217 2.3027041, 48.8644770 2.4052247, 48.8643859 2.3991316, 48.8859135 2.3463455, 48.8298427 2.3644959, 48.8619514 2.3325055, 48.8364245 2.3944189, 48.8770775 2.3600536, 48.8773723 2.3588805, 48.8760150 2.3247329, 48.8755096 2.3274736, 48.8713153 2.3040116 and 48.8816147 2.3662734, 48.8485878 2.3779556, 48.8477085 2.3772628, 48.8519828 2.4015288, 48.8606493 2.3785830, 48.8932504 2.3277402, 48.8934830 2.3278313, 48.8661100 2.4057320, 48.8649560 2.4047670, 48.8877005 2.3533788, 48.8629947 2.3795041, 48.8468796 2.3271500, 48.8776226 2.3150003, 48.8680219 2.3961889, 48.8839565 2.3613084, 48.8802240 2.3642999, 48.8950477 2.3822690, 48.8474744 2.2680932, 48.8718766 2.3761721, 48.8704364 2.3728001, 48.8712167 2.3748802, 48.8705763 2.3732019, 48.8705794 2.3726376, 48.8871113 2.3473993, 48.8756613 2.2868772, 48.8472282 2.3082142, 48.8479879 2.3109130, 48.8383871 2.3900734, 48.8509763 2.3108973, 48.8234323 2.3584527, 48.8846619 2.3670751, 48.8461078 2.4020554, 48.8451767 2.4043841, 48.8626693 2.2763686, 48.8631682 2.2764416, 48.8245199 2.3237261, 48.8269977 2.3252696, 48.8286429 2.3278648, 48.8232893 2.3240570, 48.8930770 2.3421030, 48.8937980 2.3431330, 48.8931540 2.3429260, 48.8930830 2.3430390, 48.8929620 2.3432630, 48.8931090 2.3433990, 48.8933970 2.3424700, 48.8936660 2.3423840, 48.8933880 2.3479180, 48.8932130 2.3480590, 48.8379699 2.3924685, 48.8306222 2.3438186, 48.8262682 2.3413732, 48.8577600 2.3811113, 48.8275957 2.3325826, 48.8528674 2.4065219, 48.8304790 2.2943425, 48.8380975 2.2811300, 48.8360490 2.3873173, 48.8235110 2.3536356, 48.8898645 2.3422536, 48.8933506 2.3273585, 48.8316520 2.3639864, 48.8932725 2.3273343, 48.8351222 2.2888936, 48.8617519 2.3509405, 48.8650692 2.2881840, 48.8810899 2.3732979, 48.8946050 2.3468940, 48.8413680 2.3066850, 48.8272341 2.3065067, 48.8560716 2.4048790, 48.8449361 2.4054104, 48.8468235 2.3868122, 48.8358268 2.2900677, 48.8854678 2.3814749, 48.8233585 2.3653758, 48.8229281 2.3579998, 48.8195421 2.3590157, 48.8185260 2.3608397, 48.8228214 2.3471152, 48.8255307 2.3472637, 48.8256034 2.3464595, 48.8679663 2.4018628, 48.8686440 2.4015656, 48.8713217 2.4044435, 48.8766469 2.4051044, 48.8252680 2.3470445, 48.8656967 2.3983655, 48.8288068 2.3694717, 48.8225859 2.3275483, 48.8295686 2.3336315, 48.8357986 2.3017632, 48.8902265 2.3605416, 48.8276415 2.3069629, 48.8504748 2.2920807, 48.8902732 2.3613767, 48.8903006 2.3611752, 48.8246120 2.3286703, 48.8424500 2.2820649, 48.8417498 2.2814597, 48.8899232 2.3619412, 48.8387912 2.2608071, 48.8257312 2.3509065, 48.8490105 2.2910540, 48.8352424 2.3977037, 48.8841466 2.2886911, 48.8639330 2.3565353, 48.8870761 2.3594856, 48.8456895 2.3425970, 48.8458043 2.3426608, 48.8895396 2.3195127, 48.8248228 2.3573776, 48.8463586 2.2854231, 48.8641631 2.3455959, 48.8798647 2.3747261, 48.8324140 2.3030804, 48.8274692 2.3706917, 48.8767253 2.3445477, 48.8549118 2.3865002, 48.8499905 2.3788090, 48.8648212 2.3661053, 48.8447038 2.3101123, 48.8530080 2.2906319, 48.8597203 2.3563359, 48.8520177 2.3432265, 48.8258511 2.3417971, 48.8257747 2.3417859, 48.8339973 2.3446413, 48.8803144 2.2992162, 48.8378744 2.2816421, 48.8696814 2.3227806, 48.8475847 2.2667489, 48.8368174 2.3921011, 48.8397759 2.3970504, 48.8327512 2.3467251, 48.8911432 2.3616261, 48.8908663 2.3615027, 48.8907657 2.3616639, 48.8910109 2.3614919, 48.8908645 2.3615850, 48.8550035 2.3609057, 48.8882832 2.2996061, 48.8493157 2.3784984, 48.8559766 2.3066968, 48.8868040 2.2961690, 48.8840590 2.2934670, 48.8394962 2.3497379, 48.8399210 2.3496825, 48.8403322 2.3498058, 48.8380098 2.2891917, 48.8288930 2.3016130, 48.8807490 2.2859050, 48.8469150 2.3846047, 48.8502232 2.3819652, 48.8247845 2.3760253, 48.8334615 2.3311381, 48.8335012 2.3310323, 48.8770670 2.2919810, 48.8650824 2.2830488, 48.8816748 2.3725027, 48.8817568 2.3723149, 48.8798264 2.3719401, 48.8814694 2.3733482, 48.8420869 2.3029156, 48.8852044 2.3809157, 48.8855693 2.3817686, 48.8803367 2.3757350, 48.8433945 2.3520737, 48.8424517 2.3029789, 48.8330926 2.3613863, 48.8884683 2.3744665, 48.8848082 2.3919927, 48.8832730 2.3045600, 48.8742457 2.3749831, 48.8743618 2.3860316, 48.8746255 2.3866149, 48.8754355 2.3898785, 48.8608528 2.3542797, 48.8491214 2.3779213, 48.8488752 2.3776934, 48.8748132 2.3888227, 48.8753144 2.3901825, 48.8752765 2.3929469, 48.8324280 2.3204198, 48.8735274 2.3747879, 48.8721753 2.3729178, 48.8446738 2.2939909, 48.8455257 2.2944696, 48.8569643 2.3786291, 48.8921632 2.3813552, 48.8908774 2.3782534, 48.8921294 2.3489558, 48.8787360 2.2899190, 48.8784220 2.2895090, 48.8582876 2.3831766, 48.8658290 2.3979596, 48.8482332 2.3197065, 48.8476699 2.3191596, 48.8472636 2.3181042, 48.8505938 2.3925539, 48.8351073 2.3204668, 48.8644135 2.3718215, 48.8623147 2.3634166, 48.8557727 2.3679310, 48.8368412 2.2600638, 48.8631886 2.3878124, 48.8798963 2.3494827, 48.8673269 2.3838848, 48.8682942 2.3655919, 48.8675715 2.3829707, 48.8685833 2.3800809, 48.8715771 2.3778618, 48.8316324 2.3144197, 48.8675094 2.3852832, 48.8864288 2.3262504, 48.8248640 2.3700624, 48.8447194 2.3101712, 48.8612701 2.3441680, 48.8304658 2.3751862, 48.8937186 2.3433713, 48.8517588 2.3569126, 48.8291089 2.3228201, 48.8735029 2.3437357, 48.8762936 2.3688099, 48.8763202 2.3688376, 48.8622814 2.3854871, 48.8835212 2.3724617, 48.8824092 2.3585675, 48.8484992 2.3782945, 48.8840124 2.3600848, 48.8838104 2.3590580, 48.8836987 2.3427911, 48.8572694 2.3799449, 48.8194317 2.3649584, 48.8571931 2.3592212, 48.8442927 2.2833153, 48.8417093 2.2868858, 48.8414298 2.2890339, 48.8936001 2.3230028, 48.8899471 2.3205768, 48.8888819 2.3195683, 48.8420825 2.3028095, 48.8785893 2.3450444 +49.4139740 8.7692291 +Clinique Paris V - Centre Médico Chirurgical, Clinique de Vinci (fermée), Clinique Geoffroy Saint-Hilaire, Centre municipal de santé, Clinique de la Muette, Institut Curie, Centre du Luxembourg (Consultations pluri-disciplinaires), Hôpital Marmottan, Centre de Bilan de Santé DEPSE, Laboratoire de biologie médicale, Centre de santé médical et dentaire, Hôpital Cognacq-Jay, Centre biologique chemin vert, COSEM Rome, Imagerie Médicale, Centres de dépistage anonymes et gratuits, Clinique Médicales, Médecine Physique Réadaptation, Clinique Canal de l'Ourcq, Hôpital de jour pour enfants, Hôpital de jour Georges Vacola, Hôpital Maison Blanche, Hôpital Sainte-Périne - Rossini - Chardon-Lagache, Hôpital Tenon, Hôpital Sainte-Anne, Fondation ophtalmologique Adolphe de Rothschild, Hôpital du Val de Grâce, Hôpital Cochin, Maternité Port Royal et Baudelocque, Hôpital des Quinze-Vingts, Hôpital Saint-Joseph, Hôpital de la Rochefoucauld, Institut Mutualiste Montsouris, Hôpital Européen Georges Pompidou, Hôpital Privé des Peupliers, Hôpital Saint-Jacques, Hôpital Trousseau, Hôpital Lariboisière, Hopital Vaugirard, Hôpital Saint-Michel, Hôpital Fernand Widal, Hôpital Broca, Hôpital Saint-Louis, Hôpital Robert Debré, Hôpital National de Saint Maurice, Hopital Bichat, Maison médicale Jeanne Garnier, Hôpital Henri Dunant, Clinique Jouvenet, Clinique Edouard Rist, Notre-Dame de Bon Secours, Hôpital des Diaconnesses, Hôtel-Dieu, Maternité Sainte-Félicité, Centre de dépistage anonyme et gratuit, Hôpital Léopold Bellan, Les Cariatides d'Abbeville, Hôpital Jean Jaurès, Clinique des Buttes-Chaumont, Clinique Maussins-Nollet, Hôpital Mère-Enfant de l'Est Parisien, Hôpital Tarnier, Clinique du Parc de Belleville, Centre post-cure de la Métairie, Hôpital Pierre Rouquès - Les Bluets, Maternité Les Bluets, Urgences, Institut de Cardiologie, Clinique Arago, Clinique Alleray Labrouste, Clinique Chirurgicale Victor Hugo, Climique Rémusat, Hôpital Sainte-Périne - Rossini - Chardon Lagache, Hôpital Croix Saint-Simon, Clinique Saint-Jean de Dieu, Hôpital Necker Enfants Malades, Hôpital Saint-Antoine, Hôpital Rothschild, Hôpital Esquirol, Clinique de la Jonquière, Clinique Rémy de Gourmont, Hôpital La Collégiale, Hôpital Bretonneau, Maternité Port Royal et Baudelocque, Hôpital des Gardiens de la Paix, Hôpital de la Pitié Salpétrière, Hôpital Maison-Blanche, Hôpital Léopold Bellan, Aura, Hôpital Henri Ey +yes +Theater im Kulturzentrum Karlstorbahnhof, Städtische Bühne, Theater und Philharmonisches Orchester, Zwinger1 und Zwinger3 +yes +megalith, megalith +252 +882 +Viehweide auf Markung Michelbach, Riedhölzle und Jagstaue, Heide am Dünnersberg, St. Wendel zum Stein, Hang am Rengerstal, Schild, Goldberg im Meßbachtal, Wagrain - Lange Wiese - Stegbrühl, Stein, Lache-Felsen-Felsenwiesen, Hohenberg - Setz, Pflanzenstandorte Pfahl und Sündrich, Vogelhalde Sindringen-Ohrnberg, Rößlesmahdsee mit Pfaffenklinge, Einberg, Brettachtal oberhalb Geddelsbach, Enzwiese, Im See, Laibachsweinberg - Im Tal - Im Köchlein, Pflanzenstandorte Brühl und Rautel, Entlesboden, Obere Weide and 49.1602386 9.5900561, 49.3500279 9.7843257, 49.3543619 9.7903543, 49.3677819 9.7181444, 49.3951667 9.7064438, 49.3982401 9.7097845, 49.3806125 9.6694870, 49.3639624 9.6088512, 49.3641583 9.5973437, 49.3541471 9.5780313, 49.3443492 9.5101022, 49.3195946 9.6109146, 49.2713686 9.4556199, 49.1739908 9.6614217, 49.1183870 9.6016739, 49.1317860 9.5092046, 49.0999897 9.4322009, 49.4220009 9.6197427, 49.3944100 9.6791215, 49.3642410 9.6631084, 49.1554137 9.6333972, 49.1535442 9.6262295 +Corstorphine Hill, Arthur's Seat, Blackford Hill, Allermuir Hill, Haggis Knowe, Crow Hill, Dunsapie Crag, Easter Craiglockhart Hill, Capelaw Hill, White Hill, Torduff Hill, Wester Craiglockhart, Buckstone Snab, The Braids, East Cairn Hill, Caerketton Hill, Whinny Hill, Mons Hill, Warklaw Hill, Calton Hill, Salisbury Crags, The Nether Hill, Dalmahoy Hill, Mansion Hill, New England, Green Craig +49.4111078 8.7122962 +yes +yes +7.3577611885683663 +McDonald's, Burger King, Die Kuh die lacht, mahlzeit, Joe Molese, Hans im Glück, Mandy's Fast Food Center +5 +99 +459 +Pitcairn House +55.8994270 -3.2972350, 55.9232575 -3.2877434, 55.9561550 -3.2435210, 55.9399419 -3.2040169, 55.9002100 -3.2321660, 55.9579565 -3.2439627, 55.9470855 -3.1372581, 55.9643410 -3.1548837, 55.9372727 -3.3656602, 55.9344345 -3.1791228, 55.9100535 -3.1423251, 55.9377502 -3.4029754, 55.9746746 -3.1826198, 55.9389097 -3.2419381, 55.9365550 -3.3142140, 55.9826346 -3.1875882, 55.9247496 -3.2493835, 55.9839970 -3.4078336, 55.9845731 -3.4022625, 55.9678281 -3.2362601, 55.9712178 -3.1500995, 55.9181892 -3.2127084, 55.9051775 -3.1653894, 55.8839472 -3.3405441, 55.9297028 -3.2566262, 55.9387508 -3.1058010, 55.9284416 -3.2408621, 55.9694813 -3.2293505, 55.9260602 -3.1659685, 55.9567019 -3.2381175, 55.9622747 -3.1983063, 55.9548458 -3.1441071, 55.9775262 -3.2412239, 55.9447450 -3.3593706, 55.9102318 -3.2377415, 55.9781076 -3.1743896, 55.9410699 -3.3129132, 55.9420912 -3.2950431, 55.9243498 -3.2526320, 55.9835994 -3.3988708, 55.9397193 -3.2934475 +yes +33 +Dalmeny Parish Church, Queensferry Parish Church, Muirhouse Kingdom Hall, Old Kirk of Edinburgh, St. Ninian's Church, St Catherine of Alexandria, Pilrig St Paul's, Portobello Baptist Church, Craigsbank Parish Church, Corstorphine Old Parish Church, Duke Street United Reformed Church, Capital City Church International (3Ci), Davidson's Mains Parish Church, Ferniehill Evangelical Church, Methodist Central Hall, True Jesus Church, Ardmillan Hall, Salvation Army, Kingdom Hall, Canongate Kirk, Bristo Memorial Church, The Robin Chapel, Niddrie Community Church, Richmond Craigmillar Church, Catholic Church of St Teresa, St Mary Magdalene, Duddingston Kirk, St Philips Joppa Parish Church, Tron Kirk, St Barnabas, C.E.M.C, Cramond Kirk, Barclay Viewforth Parish Church, St Michael's Parish church, Polwarth Church, Saint Martin of Tours Episcopal Church, St Margaret's Chapel, Life church, Buccleuch and Greyfriars, Orthodox Church of St Andrew, Kirk O'Field, The Salvation Army, St. Giles' Cathedral, South Leith Parish Church, Augustine United Church, St Columba's, St Philip's Church, Kingdom Hall, Destiny Church, St Vincent's Chapel, Ebeneezer, Gilmore Place Free Presbyterian Church of Scotland, St Ninians Episcopal Church, Granton Salvation Army Hall, Seventh-day Adventist Church, Granton Parish Church, St Margaret and Mary, St Davids, Granton Baptist Church, Marchmont St Giles Parish Church, Murrayfield Parish church, Gorgie Mission, Gorgie Dalry Parish Church, Church of the Good Shepherd, Liberton Northfield Parish Church, Church of St John, Saint Cuthbert, Carrick Knowe Parish Church, Colinton Parish Church, Saint Margaret's and Saint Leonard's, Mayfield Salisbury Parish Church, Carrubbers Christian Centre, St Salvador's Episcopal Church, Craigmillar Park Church, Greenside Parish Church, Fairmilehead Parish Church, St Mark's, St John's, St. John's Colinton Mains Parish Church, Canonmills Baptist Church, Stockbridge Parish Church, St Andrew's and St George's West, St. James Goldenacre, True Jesus Church (St Lukes), St Stephens Comely Bank, Inverleith Parish Church, Rhema Church, Leith St Andrew's, Newhaven Church, Greenbank Church, Abbeyhill Baptist Church, St Fillan, The Chaplaincy, Muirhouse St Andrews, Drylaw Parish Church, King's Church Edinburgh, St Annes Church, Holy Cross RC Church, North Leith Parish Church, Leith Baptist Church, Charlotte Baptist Chapel, Bellevue Chapel, Morningside United Church, Ratho Parish Church, St Margaret's Catholic Church, Leith Free Church, Saint Catherine's Argyle, Bristo Baptist Church, Palmerston Place Church, Duncan Street Batptist Church, St Mary's Star of the Sea, Church of the Sacred Heart of Jesus, Morningside Parish Church, St Margaret's Chapel, Dean Parish Church, Juniper Green Parish Church, St Mary's Episcopal Cathedral, St Andrews Catholic Church, Blackhall St. Columba's Church, Chapel of St. Albert the Great, Holy Cross Church, Balerno Parish Church, Quaker Meeting House, St Mary's Metropolitan Cathedral (RC), St. Davids Broomhouse Church, Kirkliston Community Church, St Peter's Catholic Church, St Columba's, Christ Church (Morningside), Saint Columba's by the Castle, Bruntsfield Evangelical Church, St Nicholas Parish Church, Kirkliston Parish Church of Scotland, St Christopher's, St Paul's & St George's, The Church of Christ, St Michael and All Saints, Greyfriars Church, The Parish of St Gregory the Great, Saughtonhall Church, St. Patrick's, Old Saint Paul's, St Margaret's Episcopal Church, Community Church Edinburgh, Saint Peter's Church, Elim Edinburgh, Wilson Memorial United Free Church, Our Lady of Pochaiv and Saint Andrew, St Albert's Catholic Chaplaincy, St Albert's Catholic Chaplaincy, South Leith Baptist Church, Church of Latter Day Saints, Craiglockhart Parish Church, Holy Trinity, St Cuthbert's, Kirkliston Parish Church, Old Schoolhouse Christian Fellowship, German Church, London Road Parish Church, Broughton St. Mary's, Stenhouse St Aidan's, St Serf's Church, Portobello Old Parish Church, Portobello United Reformed Church, Priestfield Parish Church, Reid Memorial Church, St Ninians, Wardie Parish Church, Saint Mark's, St. John's RC Church, St James Parish Church, St Cuthberts Church, St Margaret's RC Church, World Conqueror Christian Centre, Saint Joseph's, All Nations Christian Fellowship +48.8973798 2.3589436 +yes +1864 +43 +48.8660881 2.3521709 +yes +5 +post office, post box, kindergarten, park, parking, telephone, pub, recycling, fuel, bicycle parking, atm, bank, cinema, doctors, pharmacy, toilets, police, place of worship, school, nightclub, restaurant, library, car rental, cafe, parking entrance, biergarten, fire station, masonic lodge, bar, fast food, arts centre, bench, university, taxi, theatre, marketplace, car sharing, grit bin, stripclub, public building, clinic, dressmaker, embassy, brothel, veterinary, community centre, clock, waste basket, fountain, vending machine, shelter, posts, artwork, dance hall, picnic bench, Austrian cosulate, swimming pool, dentist, podiatrist, chiropodist, ice cream, waste transfer station, motorcycle parking, car wash, chiropractor, bookmakers, waste disposal, social facility, gym, drinking water, casino, photo booth, college, vacuum, jet wash, tourism, charging station, gambling, courthouse, register office, weighbridge, hairdressing, Renaissance Restoration, finanacial advisor, physiotherapy, studio, yes, Yoga, funeral, bureau de change, academi, financial advice, internet cafe, sauna, language centre, spa, first aid, grave yard, driving school, kids area, nursing home, van rental, lamppost, crane, bicycle repair station, school tuition, prison, hospital, bandstand, conference centre, crematorium, mortuary, pontoon, shop, post depot, harbourmaster, tool hire, community center, kiosk, retirement home, Music Shop, social centre, health centre, childcare, nursery, scout hall, animal boarding, common, bus station, hotel, house removals, townhall +48.8108150 2.3016518, 48.8153367 2.2970255, 48.8812535 2.2714648, 48.8752564 2.2902302, 48.8719444 2.3005832, 48.8689234 2.3098108, 48.8664075 2.3221380, 48.8644950 2.3296183, 48.8623571 2.3363001, 48.8608572 2.3409680, 48.8587782 2.3474106, 48.8575436 2.3515947, 48.8552929 2.3607072, 48.8520122 2.3686542, 48.8457111 2.3727163, 48.8473551 2.3866576, 48.8472979 2.4082630, 48.8336468 2.2435931, 48.8487832 2.2988351, 48.8475338 2.3029524, 48.8504212 2.2936685, 48.7296445 2.3600059, 48.8242325 2.2730847, 48.8270162 2.2794048, 48.8326135 2.2884024, 48.8373212 2.2966299, 48.8919677 2.2377691, 48.8229245 2.3256357, 48.8280754 2.3269270, 48.8314103 2.3301279, 48.8340353 2.3325923, 48.8389167 2.3308053, 48.8330168 2.3366295, 48.8311288 2.3434842, 48.8297785 2.3504704, 48.8313959 2.3557122, 48.8331986 2.3628553, 48.8349549 2.3680817, 48.8370762 2.3729066, 48.8842870 2.3659442, 48.8480576 2.3960523, 48.8444696 2.4398829, 48.8454354 2.4293269, 48.8782117 2.3816608, 48.8808997 2.3738860, 48.8518166 2.4013757, 48.8463309 2.4190317, 48.8520240 2.3980153, 48.8663183 2.3836524, 48.8629761 2.3873271, 48.8582563 2.3901666, 48.8559463 2.3950128, 48.8720463 2.3769849, 48.8696313 2.3797364, 48.8771779 2.3711152, 48.8823909 2.3371469, 48.8834533 2.3336155, 48.8833916 2.3271828, 48.8824462 2.3221220, 48.8811421 2.3149026, 48.8802693 2.3085936, 48.8743566 2.2955149, 48.8696886 2.2853914, 48.8713568 2.2778112, 48.8652545 2.4166605, 48.8645515 2.4088118, 48.8650099 2.3985193, 48.8643020 2.3794597, 48.8653892 2.3739085, 48.8665083 2.3606199, 48.8654079 2.3560793, 48.8662606 2.3524641, 48.8686067 2.3415416, 48.8695654 2.3367072, 48.8707435 2.3324176, 48.8736792 2.3273189, 48.8828638 2.3092274, 48.8840549 2.3037368, 48.8846696 2.2989738, 48.8857297 2.2934235, 48.8395785 2.3012923, 48.8415118 2.3080120, 48.8443954 2.3175634, 48.8468543 2.3166512, 48.8514000 2.3143901, 48.8568058 2.3151577, 48.8413343 2.4008998, 48.8905035 2.3598783, 48.9162246 2.2948689, 48.8710829 2.3606594, 48.8921077 2.2852229, 48.8579460 2.4357587, 48.8625988 2.4415690, 48.8971408 2.2803973, 48.8882803 2.2884734, 48.8526992 2.4061094, 48.8534759 2.4105242, 48.8558145 2.4237108, 48.8525808 2.3887914, 48.8547441 2.3853565, 48.8581580 2.3798044, 48.8610516 2.3747956, 48.8641314 2.3695694, 48.8694348 2.3544699, 48.8706004 2.3487793, 48.8715206 2.3432861, 48.8720090 2.3397571, 48.8730354 2.3334740, 48.8747030 2.3197963, 48.8422994 2.3653504, 48.8459858 2.3551112, 48.8465082 2.3517283, 48.8499051 2.3487460, 48.8510293 2.3448480, 48.8522912 2.3393735, 48.8526872 2.3350116, 48.8363894 2.2784000, 48.8387450 2.2821427, 48.8410837 2.2879218, 48.8426906 2.2917758, 48.9368260 2.3590959, 48.8389924 2.3896778, 48.8395253 2.3958919, 48.8401549 2.3799474, 48.8410654 2.3249923, 48.8429457 2.3126019, 48.8716770 2.2935098, 48.8669099 2.2902715, 48.8630266 2.2870524, 48.8573825 2.2859234, 48.8646725 2.2937783, 48.8640063 2.2780859, 48.8580816 2.2741958, 48.8555764 2.2702166, 48.8525598 2.2681802, 48.8480038 2.2641872, 48.8452505 2.2618802, 48.8430044 2.2600472, 48.8377707 2.2565741, 48.8649686 2.3006256, 48.8723362 2.3100827, 48.8736768 2.3145456, 48.8514587 2.3267159, 48.9038952 2.3053664, 48.8939640 2.3144204, 48.8905170 2.3201235, 48.8874127 2.3256961, 48.8470802 2.3076354, 48.8470463 2.2953101, 48.8606970 2.3210551, 48.8586775 2.3231168, 48.8481026 2.3277965, 48.8452766 2.3286613, 48.8656361 2.3227452, 48.8693906 2.3253852, 48.8446967 2.2937668, 48.8546428 2.3061015, 48.8575837 2.3102891, 48.8611770 2.3148333, 48.8633194 2.3666124, 48.8610965 2.3672267, 48.8575371 2.3679970, 48.8531361 2.3686313, 48.8511945 2.3759944, 48.8500259 2.3842705, 48.8442710 2.3901179, 48.8371074 2.4024837, 48.8266498 2.4057278, 48.8354584 2.4063451, 48.8450642 2.4010776, 48.8269104 2.3661972, 48.8322556 2.3989811, 48.8658665 2.3343872, 48.8763705 2.3326310, 48.8760654 2.3385532, 48.8557241 2.3256659, 48.8784508 2.3374732, 48.8844760 2.3384377, 48.8898183 2.3386296, 48.8924388 2.3446575, 48.8977084 2.3592969, 48.8938084 2.3477393, 48.8873363 2.3497063, 48.8795699 2.3571457, 48.8762027 2.3579127, 48.8639893 2.3498782, 48.8728976 2.3562552, 48.8625595 2.3456850, 48.8552968 2.3475476, 48.8533267 2.3434941, 48.8533322 2.3346678, 48.8470860 2.3270843, 48.8422001 2.3289987, 48.8464830 2.2858855, 48.8461607 2.2783813, 48.8473202 2.2686743, 48.8477655 2.2583922, 48.8452670 2.2672606, 48.8468038 2.2717155, 48.8420002 2.2387333, 48.8406690 2.2287175, 48.8700162 2.3710617, 48.8617840 2.3537812, 48.8771276 2.4066804, 48.8754657 2.3990396, 48.8738469 2.3852526, 48.8750969 2.3893345, 48.8385876 2.3222085, 48.8317799 2.3140252, 48.8339551 2.3180764, 48.8225032 2.2984833, 48.8566177 2.3705298, 48.8602039 2.3721323, 48.8850187 2.3795672, 48.8869632 2.3867135, 48.8885434 2.3927045, 48.8911980 2.4025577, 48.8813931 2.3656341, 48.8772578 2.3494253, 48.8884812 2.3742226, 48.8908513 2.3773681, 48.8947741 2.3825277, 48.8974039 2.3855910, 48.8749279 2.3403636, 48.8759424 2.3443098, 48.8585643 2.3425634, 48.8514519 2.3619140, 48.8538938 2.3566663, 48.8429053 2.3522772, 48.8406473 2.3519334, 48.8356445 2.3527513, 48.8799166 2.3990372, 48.8819551 2.3933641, 48.8798096 2.4170873, 48.8715218 2.4043104, 48.8680997 2.4013152, 48.8382823 2.3608293, 48.8356584 2.3588519, 48.8927063 2.3274728, 48.8973715 2.3289008, 48.9061915 2.3320476, 48.8260904 2.3573505, 48.8224745 2.3585040, 48.8190866 2.3595330, 48.9231172 2.2862019, 48.9305465 2.2836436, 48.9142573 2.4038072, 48.9036279 2.3922499, 48.9207587 2.4107677, 48.8677518 2.3131104, 48.7963514 2.4492350, 48.7899066 2.4504803, 48.7797556 2.4594504, 48.8024711 2.4466949, 48.8090371 2.4347211, 48.8150770 2.4217740, 48.8214689 2.4136458, 48.9118944 2.3339725, 48.9196049 2.3429933, 48.8051317 2.3637903, 48.7869402 2.3673857, 48.7960877 2.3683672, 48.8103280 2.3622359, 48.8510924 2.3307543, 48.8439859 2.3243283, 48.8788951 2.3624612, 48.8932382 2.4133209, 48.8795976 2.3270787, 48.9301278 2.3563841, 48.9459311 2.3641518, 48.8538982 2.2893959, 48.8317277 2.2373655, 48.8296613 2.2308732, 48.8201086 2.3647992, 48.8216697 2.3693224, 48.8159011 2.3773455, 48.8109896 2.3839963, 48.8491398 2.3218984, 48.8757192 2.3279030, 48.8782019 2.2991235, 48.7687211 2.4643844, 48.8837741 2.3495359, 48.8915918 2.3496700, 48.8663302 2.3215942, 48.8603937 2.3146892, 48.8537409 2.3693210, 48.8433230 2.3737596, 48.8456163 2.3095848, 48.9064052 2.4491919, 48.8975316 2.3446684, 48.8419339 2.3211592, 48.7290137 2.3699140, 48.8787520 2.3221853, 48.8767276 2.4064297, 48.8795817 2.3886032, 48.8825949 2.3703263, 48.8767737 2.3935636, 48.8793865 2.3043786, 48.9068701 2.3657737, 48.8183938 2.3193550, 48.8956037 2.4251032, 48.8779888 2.2817745, 48.8582563 2.3901666, 48.8334522 2.3856620, 48.8849431 2.2599157, 48.8569919 2.3484061, 48.8600206 2.3465137, 48.8578140 2.3474541, 48.8592567 2.3459470, 48.8828803 2.3442565, 48.8844068 2.3603057, 48.8423078 2.3653119, 48.8423613 2.3655228, 48.8423729 2.3656610, 48.8464943 2.3658953, 48.8677105 2.3455628, 48.8423727 2.3656105, 48.9118944 2.3339725, 48.8939640 2.3144204, 48.8756570 2.3253611, 48.8662052 2.3223767, 48.8673076 2.3641562 +Heidenloch, Römischer Tempel, Freischaren-Schanze, Freischaren-Schanze, Lochheim, Innerer Ringwall, Äußerer Ringwall, Innerer Ringwall, Äußerer Ringwall +545 +55.9512080 -3.2029850 +6 +26 +0 +84 +white +48 +3 +55.9479019 -3.1690156, 55.9439751 -3.1694877, 55.8964656 -3.2760789, 55.9198040 -3.1874323, 55.9305416 -3.3959991, 55.8886365 -3.3754440, 55.9176560 -3.3976191, 55.9559553 -3.2763209, 55.9608839 -3.2793349, 55.8858183 -3.3554460, 55.9709722 -3.3555690, 55.8954027 -3.2783381 +2 +49.4296874 8.6826637, 49.4278935 8.6837354, 49.4147764 8.6710359, 49.4278053 8.7495282, 49.3974030 8.6486853, 49.3977437 8.6485764, 49.4075919 8.6845735, 49.4084243 8.6937725, 49.4072954 8.6910173, 49.3746833 8.6826514, 49.3743033 8.7032524, 49.3747286 8.7033441, 49.4103403 8.6975369, 49.4165191 8.6921856, 49.4048779 8.6827341, 49.4071068 8.6898761, 49.4108200 8.6918918, 49.4227158 8.6483350, 49.3809325 8.6701888, 49.3795527 8.6902336, 49.4101101 8.6935285, 49.3992315 8.6710140, 49.4228152 8.6504004, 49.4207600 8.7562394 +55.9742176 -3.2023560 +10 +54 +0 +51.4299127 7.3343295 ++33 1 40 26 90 17 +388 and 55.9253583 -3.4147034, 55.9245412 -3.3113504, 55.9838701 -3.4034761, 55.9996908 -3.3883162, 55.9794069 -3.3763041, 55.9879261 -3.3873321, 55.9812940 -3.3771341, 55.9215769 -3.3071515, 55.9168700 -3.2880088, 55.9171955 -3.2788783, 55.8940463 -3.3482149, 55.9203337 -3.4338594, 55.9067356 -3.2765428, 55.9112129 -3.2971404, 55.9136481 -3.2924112, 55.9223025 -3.3173373, 55.9245077 -3.4143882, 55.8921896 -3.3904545, 55.8928744 -3.3831777, 55.9342483 -3.2886138, 55.9185433 -3.2719005, 56.0005355 -3.4042125, 56.0005266 -3.4040011, 55.9115356 -3.3190780, 55.9119727 -3.3136012, 55.9168780 -3.2879061, 55.9216109 -3.3071885, 55.9187028 -3.3241409, 55.9194248 -3.3250354, 55.9012534 -3.3172353, 55.9260122 -3.3234292, 55.9201070 -3.3153239, 55.9173013 -3.2758036, 55.9052885 -3.3120708, 55.9127039 -3.3185766, 55.8956436 -3.3085216, 55.9178228 -3.2883067, 55.9177320 -3.2883616, 55.9177084 -3.2885519, 55.9168518 -3.2881725, 55.9208989 -3.3111331, 55.9234261 -3.3789665, 55.9284947 -3.3843026, 55.9347497 -3.3921486, 55.9399416 -3.4022022, 55.9424898 -3.4014836, 55.9173663 -3.2847091, 55.8966106 -3.3015427, 55.9191333 -3.2651206, 55.9658983 -3.2653178, 56.0005670 -3.4038864, 56.0005711 -3.4043334, 55.9386987 -3.3913489, 55.9264863 -3.4288285, 55.9363357 -3.2986518, 55.9277719 -3.3059687, 55.9162943 -3.2965876, 55.9198806 -3.3512702, 55.9064620 -3.2745346, 55.9030149 -3.2833882, 55.8958844 -3.3085762, 55.9514109 -3.3422820, 55.9666580 -3.2682414, 55.9203523 -3.3017825, 55.9245498 -3.4144094, 55.9202937 -3.4339025, 55.8889910 -3.2764883, 55.8905325 -3.2746290, 55.9338588 -3.2867051, 55.9303574 -3.2858444, 55.9325097 -3.2743332, 55.9156308 -3.2780598, 55.9403043 -3.3172893, 55.9402068 -3.3174470, 55.9130257 -3.2893735, 55.9120000 -3.2937704, 55.9100179 -3.2804925, 55.9101035 -3.2803751, 55.9057184 -3.2756582, 55.9057613 -3.2755133, 55.9138082 -3.2861312, 55.9062552 -3.2686221, 55.9060898 -3.2635348, 55.9033690 -3.2736040, 55.9034122 -3.2734109, 55.9003911 -3.2685569, 55.9890893 -3.3836019, 55.9892088 -3.3844692, 55.9889521 -3.3925230, 55.9347488 -3.3917488, 55.9551419 -3.4188844, 55.9303434 -3.3644399, 55.9374478 -3.3332124, 55.9792112 -3.3468255, 55.9260992 -3.4016020, 55.9259958 -3.4015235, 55.9259530 -3.4071702, 55.9287081 -3.4030907, 55.9258312 -3.4073098, 55.9574350 -3.4170582, 55.9574829 -3.4172555, 55.9643486 -3.4027677, 55.9644590 -3.4027248, 55.9275914 -3.3074492, 55.9188285 -3.2753539, 55.9124646 -3.2769931, 55.9177949 -3.2736100, 55.9003036 -3.2919693, 55.9172400 -3.2773632, 55.9344797 -3.2675638, 55.9293469 -3.2915960, 55.9287029 -3.3161849, 55.9408387 -3.4098588, 55.9275707 -3.3441434, 55.8916943 -3.3211093, 55.9600201 -3.3539411, 55.9641042 -3.3163667, 55.9129956 -3.2891261, 55.9396630 -3.3213183, 55.9168391 -3.2882289, 55.8860732 -3.3399261, 55.9439226 -3.3293194, 55.8927797 -3.2635293, 55.8657294 -3.3178967, 55.8561743 -3.3367895, 55.9251316 -3.4146061, 55.9254779 -3.4147399, 55.9004339 -3.3188436, 55.9329461 -3.2747956, 55.9244601 -3.3114765, 55.9252699 -3.3105658, 55.9396484 -3.3214441, 55.9241965 -3.3130785, 55.9192182 -3.3037407, 55.9198673 -3.3046957, 55.9334961 -3.4103614, 55.9398933 -3.4112294, 55.9659972 -3.3621260, 55.9346898 -3.4222766, 55.9225607 -3.4008937, 55.8771374 -3.3287515, 55.8866544 -3.3374530, 55.8858646 -3.3375740, 55.9212176 -3.3415207, 55.9091868 -3.3220855, 55.9396282 -3.4022402, 55.9387262 -3.4018519, 55.9793041 -3.3762804, 55.9617180 -3.4132830, 55.9617222 -3.4130523, 55.9374211 -3.3332788, 55.9866870 -3.3794986, 55.9614118 -3.4422153, 55.9472029 -3.4080139, 55.9470811 -3.4083701, 55.9471370 -3.4081966, 55.9219763 -3.4203941, 55.9201516 -3.3152932, 55.9223314 -3.3172895, 55.9265981 -3.3165664, 55.9212342 -3.3024056, 55.9203734 -3.3017859, 55.9204463 -3.3018734, 55.9627829 -3.3296636, 55.9261709 -3.2650765, 55.9147477 -3.3175730, 55.9390304 -3.3915516, 55.9388624 -3.3914362, 55.9475607 -3.2661403, 55.9309334 -3.3150690, 55.9331552 -3.3165436, 55.9337041 -3.3712199, 55.9347207 -3.2664128, 55.9301069 -3.2856870, 55.9277603 -3.3107484, 55.9277821 -3.3107229, 55.9287128 -3.3160778, 55.8918723 -3.2994420, 55.9441698 -3.2693328, 55.9465305 -3.2693949, 55.9453130 -3.2700572, 55.9441175 -3.2720063, 55.9374126 -3.4329432, 55.9426504 -3.4419958, 55.9150903 -3.3211208, 55.9147213 -3.3164547, 55.9843921 -3.4038630, 55.9733736 -3.3721666, 55.9615149 -3.4204840, 55.9566510 -3.4260417, 55.9565322 -3.4260555, 55.8948439 -3.2697613, 55.9038948 -3.2819499, 55.9114742 -3.3289109, 55.9003484 -3.3188428, 55.9004475 -3.3189882, 55.9303232 -3.2858245, 55.9277363 -3.3059625, 55.9293125 -3.2915775, 55.9343717 -3.3380326, 55.9336909 -3.3354767, 55.9524698 -3.3734976, 55.9651737 -3.3161001, 55.9474170 -3.4010655, 55.9531953 -3.4004826, 55.8964053 -3.3181888, 55.9869438 -3.3819439, 55.8993738 -3.2946840, 55.8985456 -3.2961976, 55.9499764 -3.4058056, 55.9495739 -3.4048963, 55.9439064 -3.4138957, 55.9254219 -3.4280602, 55.9255253 -3.4280577, 55.9010141 -3.3189125, 55.9196416 -3.2758298, 55.9175481 -3.2816550, 55.9211105 -3.4253433, 55.9206868 -3.4296551, 55.9214106 -3.3084104, 55.9185066 -3.2720477, 55.8986285 -3.2991643, 55.9171117 -3.3421022, 55.8584472 -3.4177884, 55.9715066 -3.2804764, 55.9714808 -3.2806451, 55.9712166 -3.2803296, 55.9888757 -3.3973222, 55.8702054 -3.3876295, 55.9340984 -3.4004483, 55.9339794 -3.4004240, 55.8969285 -3.3180149, 55.9629385 -3.4032441, 55.9623104 -3.4309700, 55.9328281 -3.2746596, 55.9328551 -3.2746954, 55.9329730 -3.2748287, 55.9323864 -3.2871966, 55.9427303 -3.4223013, 55.8832914 -3.3373677, 55.8818349 -3.3087404, 55.8896276 -3.3196792, 55.8919785 -3.3134755, 55.8968552 -3.3020135, 55.8927414 -3.3143917, 55.8947508 -3.3012201, 55.8841696 -3.3364601, 55.8807381 -3.3368118, 55.8774138 -3.3755830, 55.9054895 -3.3795410, 55.9018295 -3.3897743, 55.9387086 -3.4018441, 55.9347390 -3.4004629, 55.9347350 -3.4006735, 55.9408977 -3.3783402, 55.9418888 -3.3745067, 55.9370417 -3.3589684, 55.9369366 -3.3589993, 55.9254934 -3.4147419, 55.9713657 -3.3285830, 55.9139843 -3.3266712, 55.9138724 -3.3283900, 55.9138281 -3.3289507, 55.8840219 -3.3327174, 55.8909456 -3.2977491, 55.9563336 -3.3977999, 55.9702651 -3.3747743, 55.9793984 -3.3747839, 55.9795013 -3.3748245, 55.9402898 -3.3231801, 55.9404637 -3.3353169, 56.0030485 -3.4136632, 56.0029942 -3.4133582, 55.9575192 -3.4174461, 55.9551170 -3.4187252, 55.9415382 -3.3356085, 55.9761578 -3.3786363, 55.9409548 -3.4098374, 55.9206332 -3.3019882, 55.9867511 -3.3817443, 55.9867527 -3.3819155, 55.9865602 -3.3817051, 55.9300778 -3.2856656, 55.9291865 -3.2914547, 55.9324790 -3.2743161, 55.9291523 -3.2914405, 55.9404906 -3.3353136, 55.9347120 -3.2664838, 55.9117266 -3.2935809, 55.9173632 -3.2824005, 55.9156210 -3.2832169, 55.8722326 -3.3121904, 55.9565035 -3.4260650, 55.9566866 -3.4260323, 55.8975112 -3.2712979, 55.8974642 -3.2720985, 55.9509169 -3.4494853, 55.9594452 -3.3187542, 55.9389592 -3.2630360, 55.9379992 -3.2629489, 55.9386082 -3.2629238, 55.9388046 -3.2630111, 55.9128992 -3.3173628, 55.9142511 -3.3254009, 55.9710708 -3.3853507, 55.9712667 -3.3862514, 55.9347006 -3.2665504, 55.9193447 -3.3215440, 55.9144679 -3.3441278, 55.9199272 -3.3046850, 55.9212736 -3.3299833, 55.9587192 -3.3919290, 55.9294189 -3.4153351, 55.9279524 -3.4223584, 55.8895017 -3.2960696, 55.9881960 -3.3897624, 55.9392936 -3.3235726, 55.9392655 -3.3236898, 55.9103957 -3.3006028, 55.8939577 -3.3715831, 55.8976952 -3.3414516, 55.9008399 -3.3235718, 55.9239852 -3.3778710, 55.8923325 -3.3903179, 55.8924135 -3.3902631, 55.9148989 -3.2814860, 55.9661699 -3.3763106, 55.9600478 -3.3539062, 55.9660032 -3.3620577, 55.9334622 -3.4103647, 55.9340641 -3.4004428, 55.8923592 -3.3903273, 55.9120235 -3.2937870, 55.9138395 -3.2861579, 55.9104224 -3.3006131, 55.9130615 -3.2893982, 55.9112386 -3.2971527, 55.9149233 -3.2814984, 55.9643068 -3.3786468, 55.9293834 -3.4153028, 55.9264502 -3.4287984, 55.9279123 -3.4223325, 55.9339469 -3.4004134, 55.8677512 -3.3773434, 55.9932311 -3.4213582, 55.9851481 -3.4224341, 55.9846056 -3.4221843, 55.9794519 -3.3961580, 55.9147359 -3.2813285, 55.9902549 -3.4029695, 55.9996794 -3.3883864, 55.9869295 -3.3820116, 55.9346516 -3.4223004, 55.9522338 -3.4284125, 55.9750850 -3.3739613, 55.9751354 -3.3739217, 55.9161544 -3.2784586, 55.9481248 -3.3606422, 55.9480840 -3.3606557, 55.9065005 -3.3281414, 55.9508226 -3.3981450, 55.9056819 -3.2628992, 55.9247052 -3.3200351, 55.9350677 -3.3303702, 55.9215480 -3.3071147, 55.9244602 -3.4143583, 55.9202507 -3.4339357, 55.8500623 -3.3571912, 55.9141652 -3.2846493, 55.9141882 -3.2846708, 55.9236747 -3.3220366, 55.8877124 -3.2768935, 55.8882817 -3.2766465, 55.8872753 -3.2773139, 55.8857647 -3.2795706, 55.9761370 -3.3785895, 55.9629034 -3.4032323, 55.9312242 -3.3587166, 55.9312383 -3.3586227, 55.9111933 -3.3341452, 55.8994136 -3.2944987, 55.9446635 -3.3578459, 55.9444504 -3.3576432, 55.9426820 -3.2697777, 55.9503297 -3.3618837, 55.9497743 -3.3614623, 55.9546481 -3.3661710, 55.9545808 -3.3464702 +yes +49.4311523 8.7053142, 49.4237949 8.7309611, 49.4278106 8.6996439, 49.4157261 8.7004521, 49.4532799 8.7620678, 49.4129054 8.7286879, 49.4209333 8.7223854, 49.4221949 8.7060036, 49.4291183 8.7154588, 49.4157681 8.7006398, 49.4088360 8.7691224, 49.4390162 8.7105044, 49.4305905 8.7775493, 49.4272716 8.7035465, 49.4393938 8.7104846, 49.4497133 8.7157120, 49.4428768 8.7011414, 49.4395208 8.7105611, 49.4326079 8.7091648, 49.4328392 8.7092032, 49.4342309 8.7101843, 49.4342740 8.7112555, 49.4442518 8.7151750, 49.4447625 8.7168293, 49.4468314 8.7142297, 49.4308426 8.7277671, 49.4311330 8.7033214, 49.4278439 8.6859389, 49.4082372 8.7465476, 49.4136970 8.7613615, 49.4238953 8.7651482 +48.8570374 2.3118779, 48.8507240 2.3518758, 48.8403827 2.3113658, 48.8547934 2.3662431, 48.8551205 2.3589562, 48.8339661 2.3324864, 48.8559492 2.3460263, 48.8575222 2.2845690, 48.8414574 2.3172246, 48.8403652 2.3414281, 48.8411575 2.3473052, 48.8565109 2.3263842, 48.8519070 2.2652250, 48.8327663 2.3893382, 48.8302877 2.3141843, 48.8557584 2.3320096, 48.8513494 2.3555880, 48.8483211 2.3294718, 48.8522269 2.3350050, 48.8505577 2.3402229, 48.8476741 2.3140391, 48.8513629 2.3410046, 48.8547304 2.3248616, 48.8554427 2.3276941, 48.8434645 2.3207843, 48.8456499 2.3395974, 48.8434624 2.3362665, 48.8536113 2.3476422, 48.8495079 2.3483856, 48.8585526 2.3597161, 48.8533658 2.3493036, 48.8526313 2.3500601, 48.8404563 2.3198526, 48.8405179 2.3703276, 48.8465117 2.3551571, 48.8367685 2.3218491, 48.8435231 2.3731854, 48.8573239 2.3286291, 48.8454353 2.3277854, 48.8566677 2.3132514, 48.8556933 2.3113320, 48.8564589 2.3132374, 48.8297380 2.3306629, 48.8418109 2.3577568, 48.8431475 2.3628816, 48.8489231 2.3572223, 48.8474726 2.3606487, 48.8546351 2.3638127, 48.8442282 2.3447813, 48.8505164 2.3621847, 48.8506605 2.3437398, 48.8581216 2.3616628, 48.8545855 2.3356172, 48.8352761 2.4093810, 48.8483243 2.3344262, 48.8586563 2.3821295, 48.8473326 2.3227159, 48.8433913 2.2512835, 48.8553042 2.3158566, 48.8370020 2.3826461, 48.8373190 2.3319319, 48.8260871 2.3327019, 48.8421181 2.3562419, 48.8551953 2.2808684, 48.8463579 2.2732198, 48.8548859 2.3560679, 48.8547299 2.2897642, 48.8428133 2.3337722, 48.8344502 2.3520875, 48.8485965 2.3340156, 48.8582260 2.3619639, 48.8530932 2.3611938, 48.8563449 2.3387717, 48.8432079 2.3186583, 48.8576820 2.3627148, 48.8553966 2.3450136 +yes diff --git a/smtsemparsecpp/data/nlmaps.train.id b/smtsemparsecpp/data/nlmaps.train.id new file mode 100644 index 000000000..8f9b320bc --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.train.id @@ -0,0 +1,1500 @@ +n865 +n386 +n85 +p73 +e218-south +n69 +h171-east +h111 +h211-south +n8 +e77 +w48 +n512 +n540 +w163 +n816 +n335 +e264-south +w51 +e212 +e137-south +p113 +n406 +h64 +n758 +h29 +n425 +h193-east +w62 +h214 +p80 +n900 +n302 +p168 +p21 +p247 +e40 +n298 +p43-south +n463 +n663 +p168-south +e280 +w24 +e32 +p203 +n610 +e61-south +n34 +n414 +e222 +p50 +n351 +p70 +n421 +p18 +e176 +p277-east +n831 +h69 +e191 +h170 +h265 +n747 +n104 +h100 +n107 +e18 +n707 +p141 +n697 +e66 +e62 +p139 +h281 +n639 +w57 +h195 +h244 +n101 +n333 +p220-east +h33 +w47 +n353 +p186-west +h79 +h152 +n689 +h253-west +p42 +n179 +h159 +h9-south +n769 +p224 +e100 +w181 +n604 +n751 +p198-south +n246 +n640 +h77 +n635 +n559 +n253 +p125 +n127 +h162 +w185 +n258 +n644 +n180 +n316 +e35 +n597 +p300-west +p161 +h217 +n198 +p281 +n734 +h225-south +n125 +e72 +p47 +h199 +n383 +h58-east +n628 +w147 +n276 +h24 +w111-west +h28 +e240-west +e120 +h190 +h222 +e255 +h267 +n476 +n690 +e281 +w103 +e63-west +p158-east +n565 +n810 +p86 +e228 +n185 +e57-south +n389 +p267 +p33 +n357 +p162 +e287 +e137-west +h144 +n429 +n166 +e271-south +n53 +h206 +n897 +n839 +n249 +n895 +n151 +w75-south +e56 +e132 +w22 +h186 +n142 +h257 +e151 +e47-west +n605 +n835 +e240 +p38 +n885 +n22 +n491 +p137 +n740 +e33 +n86 +p90 +n66 +n168 +e52 +n713 +n370 +w17 +e57-west +n471 +w135-west +w145 +n19 +h228 +e246 +n284 +n611 +n580 +w106 +p30-west +h62 +n237 +n650 +h65-west +n24 +p293 +p82 +w78 +h121 +w194-west +p265 +w73-south +p229 +h47 +n646 +n240 +e85 +p159 +h62-west +p149 +n460 +n730 +e264-east +e150 +n564 +e269 +h198-south +n29 +e58-south +n542 +w27 +e273 +e128 +e300 +h64-west +n347 +e70 +n442 +n218 +e14 +p131 +n227 +n188 +w32 +w3 +e199 +n651 +e213 +h202 +n757 +n106 +w173-east +e38 +n687 +n596 +p126 +n244 +p57-south +h61 +p64 +p213 +n767 +e197-south +n844 +p285 +n89 +e5 +h86 +p216 +h88 +n376 +n238 +n799 +e222-east +e104 +p44-east +p200-east +e123 +n165 +n792 +n533 +n98 +n753 +n887 +e209 +w111 +n589 +n132 +p149-west +p98 +n809 +h98 +w130-south +h124 +n261 +e188-west +n379 +n27 +p204-west +h84 +w162 +e118 +n2 +n390 +p234-west +e294 +h34 +n718 +n614 +n445 +n603 +n110 +e64-west +n615 +n823 +n701 +n793 +w137 +p152 +e175-east +h210 +e42 +p289 +h134 +p156 +e10 +h215 +e55 +e262 +w76 +n566 +h212-south +p188 +h54-west +p215 +p132 +e190 +e258 +e288-south +p2 +e197-west +e6 +p292 +h156 +n475 +p295 +h225 +h32 +p56-south +h275-south +h3 +h268 +p146 +w142 +n648 +n294 +n327 +n771 +n373 +n407 +p136 +p167 +n323 +w25 +n777 +n765 +n869 +h129 +e188 +w169-west +e218 +p34 +n563 +p219 +n272 +e90 +e49-east +n52 +e210 +h85 +n199 +n676 +h25 +h52 +w178 +n808 +p251 +p54-east +p218 +p30 +h12 +n60 +h154 +h226-south +n124 +w176 +p283 +e74 +n538 +e254 +n581 +e13 +n561 +h42 +n395 +p5 +n452 +w186-west +p100 +w35 +n398 +h59-west +n349 +n380 +e245 +e44 +w13 +n881 +p178-south +e174 +p52-south +n775 +p227 +n97 +n337 +p59-west +w159 +h182 +h128 +n263 +n655 +n178 +n576 +n62 +n568 +e196-east +n633 +h243 +h62-east +n779 +n46 +w67 +n709 +n112 +n824 +h148 +n279 +n557 +n495 +n785 +h57-west +n355 +h131 +n182 +h92 +n381 +p287 +n756 +n423 +e217 +n13 +p186-south +p59-east +p300-south +n437 +p164 +n626 +h10-east +w21 +h89 +p127 +h68 +e105 +p220-south +n7 +w129 +n609 +n334 +n806 +n68 +e50 +h21 +p25 +w11 +p134 +w105 +w158 +n569 +w167 +e268 +p93 +h224 +p140 +n748 +w130-west +h289 +h94 +p290 +e261 +h161 +n341 +n456 +n139 +w83 +h51 +p69 +e126 +n625 +h197 +h48 +w1 +n190 +e63 +w46 +w128 +n473 +p171 +n583 +n888 +n311 +e144 +p278 +n43 +w90 +p9 +n729 +n317 +e43 +w187 +p124 +e19 +h50-east +h65-south +n464 +p143 +p11 +p234-south +p133 +e2 +p150 +n181 +w155 +h270 +p114 +p275 +w59 +h17 +n268 +n817 +p209 +h201 +e225 +e242 +h101 +n527 +n594 +h137 +n248 +e157-south +n377 +p148 +n497 +n336 +n329 +e58 +e57-east +h45 +p268 +h272 +p266 +n4 +p1 +h49-south +h55 +p262 +n761 +p147 +n391 +e154 +n312 +n558 +h191-south +n478 +p274-west +n140 +h239 +n541 +n343 +e165-east +n400 +w74-west +p222 +n277 +p35 +n254 +n573 +e259 +n501 +e59 +h153 +e266 +p204 +h180 +h97 +w133 +p71 +n526 +n170 +p190 +h50-south +p7 +e290 +w166 +h59-south +e180 +e282 +w8 +n703 +n834 +n486 +e289 +h269 +n257 +n741 +p173 +e231 +p161-south +n884 +n247 +p59-south +h44 +p237 +w77 +p166 +n196 +n128 +n680 +n857 +n577 +n219 +h219 +w45 +e133 +n618 +h204-south +n202 +p135 +h150 +p61 +p85 +w183 +e69 +n259 +n55 +p12 +n412 +w130-east +e257 +e299 +p280 +p256 +n892 +h104 +e149 +p230 +n453 +e292 +p4 +w20 +n418 +n511 +n607 +n696 +n672 +p106 +p186 +p264 +h214-west +p198 +n570 +n397 +h158 +n394 +w89 +p220 +e22 +w144 +n600 +n721 +h256 +n81 +p192 +n830 +n634 +n330 +p78 +h276 +p282 +w116 +n120 +p299 +p109 +p200 +w85 +n670 +w117 +e153 +w122 +w190-east +w88 +n807 +e261-east +h146 +n516 +p290-west +n671 +h143 +n184 +e204 +w18 +p277-south +n494 +n115 +w180 +h80 +n647 +p49-east +w49 +n731 +n156 +n528 +n498 +e219 +w41 +p243 +n520 +h50-west +p193 +n499 +e167 +w74-east +h23 +h232 +e285 +n440 +n894 +e236 +h54-east +p149-east +e116 +n82 +n744 +w99 +n340 +h292-west +h246 +p45-south +h151 +p274 +n454 +n724 +h36 +p194 +h292 +w170 +n303 +n585 +n861 +w161 +n342 +w173 +w126 +n645 +n11 +n694 +p142 +n898 +p43-east +p158-west +e63-south +n652 +w14 +n465 +w200-west +e119 +n265 +h253-south +h248 +n848 +p96 +n879 +n186 +p261-west +n145 +w144-south +n231 +n772 +e81 +p217-west +w107 +w40 +n854 +h296 +p31 +e36 +w200-east +e99 +n623 +n131 +w180-east +n659 +w199-west +w96 +p51-west +h234 +n147 +w111-east +n720 +e102 +n275 +w75-east +n556 +n9 +e3 +n252 +n738 +n708 +w26 +e185 +h9-west +h175 +p161-west +h264 +p58 +p277 +p66 +e89 +n88 +n510 +e223 +n236 +w157 +n629 +h247 +n688 +e298-east +w55 +e53 +p205 +p182 +h209 +n76 +p44-west +h190-south +w152 +n550 +h211-east +h192-south +w194-east +n624 +e220 +n209 +n593 +p175 +h140 +h190-east +p179 +e92 +e66-east +n681 +h38 +n84 +w141 +e93 +p195 +e183 +w56 +p217-south +n78 +n77 +n455 +n427 +w79 +n863 +p165 +e175-south +n226 +h240 +e252 +n41 +n768 +w29 +h196 +p97 +h147 +h30-south +e9-east +n385 +n167 +n631 +h294 +p23 +n430 +w91 +p89 +w199 +n722 +n138 +p56-east +h67-west +n773 +e288 +h49 +n255 +p261-east +h109 +w153 +e197 +h135 +p210 +h284 +p57-east +p277-west +n637 +h286 +w193 +n384 +p276 +h26 +n67 +p169-west +p116 +h272-south +e21 +n411 +p300 +p200-south +n159 +h72 +n361 +w70 +n451 +e48-west +w194 +p188-south +n90 +n702 +e234 +h87 +p155 +n488 +p180 +n759 +p10-south +n399 +n543 +e207 +p67 +h224-east +n784 +e49 +p187 +n743 +w182 +n299 +e240-south +h290 +n111 +n264 +w123 +h116 +p128 +h209-east +w44 +h19 +p83 +w75-west +p104 +e198-south +n853 +w127 +n63 +n534 +n502 +e177 +e298-west +n552 +n630 +h2 +h83 +p272 +p187-west +w28 +p101 +e98 +p270 +p60 +n133 +e186 +w190 +h258 +w65 +w169-south +p37 +e274 +n706 +n304 +n567 +w114 +w190-west +n868 +n723 +h277 +p259 +e276-west +w34 +n31 +n428 +w30 +n891 +e26 +n825 +n800 +n364 +n562 +n47 +w68 +p158 +p15 +n574 +n636 +n778 +e211 +w169 +w199-east +p26 +p168-west +n287 +n601 +h205 +p211 +w86 +h168 +n404 +e45 +n21 +h213 +n587 +n338 +h99 +h108 +h110 +h10-west +e276-east +e29 +p122 +h48-west +n745 +n193 +n754 +n716 +n829 +n867 +w94 +n683 +p46 +w31 +e233 +n369 +p41 +n435 +e176-east +n358 +e56-south +n432 +e134 +h40 +p97-west +n717 +w160 +p36 +n426 +n300 +e80 +e82 +n393 +h221 +e155 +w111-south +n234 +n61 +h275-east +n472 +p258 +h18 +w148-east +w195 +e181 +e193 +n348 +e265 +n732 +p288 +h91 +n818 +n48 +p54 +h54 +n33 +n307 +n711 +w36 +n692 +n87 +n126 +p286 +n592 +h95 +p3 +h272-west +n92 +p241 +h5 +e240-east +e64-east +n197 +e247 +w144-west +e183-west +h10 +h169 +n815 +e203 +n433 +e142 +n371 +n363 +n309 +n148 +e205 +e138 +e95 +n286 +n143 +n187 +w138 +p220-west +e183-south +e94 +h299 +h11 +p214 +e56-west +p6 +n733 +p232 +h288 +p297 +h209-west +w198 +n819 +n450 +h252 +n352 +e276 +n878 +n222 +w171 +p129 +e162 +w200 +n467 +n225 +n95 +h272-east +w66 +n736 +h138 +e175 +n413 +n221 +n367 +n387 +e251 +n12 +p9-west +n752 +n598 +e200 +n228 +w5 +n827 +e194 +p54-west +h183-east +n157 +h58 +w198-east +n23 +p149-south +w180-west +h74 +n726 +e177-east +e53-east +n152 +p235 +n612 +p223 +p163 +w110 +n365 +w140 +n301 +w172 +p10-east +p253 +p119 +n239 +p54-south +n332 +n529 +h43 +n852 +p45-west +p22 +h71 +n786 +p43-west +w81 +n620 +n408 +n262 +h263 +h35 +e260 +w19 +p169-south +n18 +p161-east +e286 +n444 +p75 +n841 +h257-south +h9 +e215 +n872 +w186 +e53-west +n548 +h292-south +w69 +w97 +h30 +p189 +e188-east +n177 +p16 +p200-west +n780 +n642 +n682 +n220 +h251 +w71 +n158 +n715 +h46 +h132 +p206 +h114-east +p49-west +n870 +n205 +e275 +p50-east +h259 +e25 +w180-south +n321 +n783 +e47-south +n173 +n32 +n401 +p39 +e16 +n30 +n579 +p121 +e178 +p191 +e256 +h164 +h297 +n72 +n251 +n195 +n503 +p115 +p248 +n54 +n208 +p84 +n362 +h119 +n485 +h212-west +n405 +p50-south +p48 +p55 +h235 +w104 +h245 +n91 +n44 +h177 +p226 +w4 +h37 +n545 +h192-east +w7 +n619 +n666 +n56 +e189 +n667 +h1 +e122 +e56-east +w186-south +n487 +p199 +e169 +e248 +e29-south +n103 +n94 +h192-west +n665 +p151 +h183 +e48-east +h274 +w115 +e196-west +e73 +n536 +e125 +n137 +n684 +h22 +n201 +n38 +n449 +n116 +n554 +n813 +n832 +e179 +p51-east +e216 +w179 +n641 +e54 +e170 +p170 +n295 +n842 +h56 +h67-south +n679 +n305 +p30-south +n288 +n621 +h173 +h48-south +n25 +h180-west +n118 +p204-east +w12 +h181 +n599 +n359 +n760 +p284 +w150 +h58-south +h171 +e78 +n899 +e143 +h231 +n804 +n274 +n796 +w135 +e165-west +e172 +n200 +n109 +n446 +p158-south +n388 +e271-east +n469 +n845 +n794 +e198 +p261 +n627 +p176 +w42 +h255 +n296 +n155 +h180-east +n797 +e152 +h41 +n96 +e127 +n229 +w52 +e277 +e175-west +h113 +p72 +h136 +n686 +n479 +n210 +w175 +e106 +p300-east +w123-east +w177 +n324 +h179 +h242 +h123 +h227 +n10 +h183-south +n422 +w198-south +e39 +n374 +e226 +n153 +n331 +p172 +n755 +p102 +n535 +n664 +n50 +e241 +e24 +h225-west +h103 +p45-east +e163 +h59-east +h63 +n705 +h207 +p291 +n123 +n875 +e156 +e271 +h117 +n462 +n789 +n130 +w194-south +w101 +n871 +e288-west +e178-west +h67 +p264-south +n271 diff --git a/smtsemparsecpp/data/nlmaps.train.line b/smtsemparsecpp/data/nlmaps.train.line new file mode 100644 index 000000000..6ed8e7951 --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.train.line @@ -0,0 +1,1500 @@ +865 +386 +85 +1473 +2373 +69 +2016 +1011 +2282 +8 +1777 +1248 +512 +540 +1363 +816 +335 +2376 +1251 +1912 +2360 +1513 +406 +964 +758 +929 +425 +2022 +1262 +1114 +1480 +900 +302 +1568 +1421 +1647 +1740 +298 +2313 +463 +663 +2328 +1980 +1224 +1732 +1603 +610 +2357 +34 +414 +1922 +1450 +351 +1470 +421 +1418 +1876 +2090 +831 +969 +1891 +1070 +1165 +747 +104 +1000 +107 +1718 +707 +1541 +697 +1766 +1762 +1539 +1181 +639 +1257 +1095 +1144 +101 +333 +2085 +933 +1247 +353 +2207 +979 +1052 +689 +2167 +1442 +179 +1059 +2257 +769 +1624 +1800 +1381 +604 +751 +2335 +246 +640 +977 +635 +559 +253 +1525 +127 +1062 +1385 +258 +644 +180 +316 +1735 +597 +2221 +1561 +1117 +198 +1681 +734 +2286 +125 +1772 +1447 +1099 +383 +2009 +628 +1347 +276 +924 +2172 +928 +2251 +1820 +1090 +1122 +1955 +1167 +476 +690 +1981 +1303 +2233 +2072 +565 +810 +1486 +1928 +185 +2355 +389 +1667 +1433 +357 +1562 +1987 +2236 +1044 +429 +166 +2377 +53 +1106 +897 +839 +249 +895 +151 +2290 +1756 +1832 +1222 +1086 +142 +1157 +1851 +2225 +605 +835 +1940 +1438 +885 +22 +491 +1537 +740 +1733 +86 +1490 +66 +168 +1752 +713 +370 +1217 +2230 +471 +2175 +1345 +19 +1128 +1946 +284 +611 +580 +1306 +2187 +962 +237 +650 +2144 +24 +1693 +1482 +1278 +1021 +2181 +1665 +2288 +1629 +947 +646 +240 +1785 +1559 +2142 +1549 +460 +730 +2127 +1850 +564 +1969 +2279 +29 +2356 +542 +1227 +1973 +1828 +2000 +2143 +347 +1770 +442 +218 +1714 +1531 +227 +188 +1232 +1203 +1899 +651 +1913 +1102 +757 +106 +2048 +1738 +687 +596 +1526 +244 +2322 +961 +1464 +1613 +767 +2370 +844 +1685 +89 +1705 +986 +1616 +988 +376 +238 +799 +2123 +1804 +2060 +2082 +1823 +165 +792 +533 +98 +753 +887 +1909 +1311 +589 +132 +2200 +1498 +809 +998 +2299 +1024 +261 +2244 +379 +27 +2212 +984 +1362 +1818 +2 +390 +2215 +1994 +934 +718 +614 +445 +603 +110 +2234 +615 +823 +701 +793 +1337 +1552 +2112 +1110 +1742 +1689 +1034 +1556 +1710 +1115 +1755 +1962 +1276 +566 +2283 +1588 +2138 +1615 +1532 +1890 +1958 +2379 +1402 +2246 +1706 +1692 +1056 +475 +1695 +1125 +932 +2321 +2295 +903 +1168 +1546 +1342 +648 +294 +327 +771 +373 +407 +1536 +1567 +323 +1225 +777 +765 +869 +1029 +1888 +2177 +1918 +1434 +563 +1619 +272 +1790 +2098 +52 +1910 +985 +199 +676 +925 +952 +1378 +808 +1651 +2066 +1618 +1430 +912 +60 +1054 +2287 +124 +1376 +1683 +1774 +538 +1954 +581 +1713 +561 +942 +395 +1405 +452 +2179 +1500 +1235 +398 +2141 +349 +380 +1945 +1744 +1213 +881 +2331 +1874 +2319 +775 +1627 +97 +337 +2198 +1359 +1082 +1028 +263 +655 +178 +576 +62 +568 +2118 +633 +1143 +2011 +779 +46 +1267 +709 +112 +824 +1048 +279 +557 +495 +785 +2139 +355 +1031 +182 +992 +381 +1687 +756 +423 +1917 +13 +2332 +2069 +2346 +437 +1564 +626 +2002 +1221 +989 +1527 +968 +1805 +2339 +7 +1329 +609 +334 +806 +68 +1750 +921 +1425 +1211 +1534 +1305 +1358 +569 +1367 +1968 +1493 +1124 +1540 +748 +2174 +1189 +994 +1690 +1961 +1061 +341 +456 +139 +1283 +951 +1469 +1826 +625 +1097 +948 +1201 +190 +1763 +1246 +1328 +473 +1571 +583 +888 +311 +1844 +1678 +43 +1290 +1409 +729 +317 +1743 +1387 +1524 +1719 +2006 +2269 +464 +1543 +1411 +2340 +1533 +1702 +1550 +181 +1355 +1170 +1514 +1675 +1259 +917 +268 +817 +1609 +1101 +1925 +1942 +1001 +527 +594 +1037 +248 +2361 +377 +1548 +497 +336 +329 +1758 +2101 +945 +1668 +1172 +1666 +4 +1401 +2261 +955 +1662 +761 +1547 +391 +1854 +312 +558 +2276 +478 +2218 +140 +1139 +541 +343 +2110 +400 +2164 +1622 +277 +1435 +254 +573 +1959 +501 +1759 +1053 +1966 +1604 +1080 +997 +1333 +1471 +526 +170 +1590 +2262 +1407 +1990 +1366 +2266 +1880 +1982 +1208 +703 +834 +486 +1989 +1169 +257 +741 +1573 +1931 +2327 +884 +247 +2323 +944 +1637 +1277 +1566 +196 +128 +680 +857 +577 +219 +1119 +1245 +1833 +618 +2280 +202 +1535 +1050 +1461 +1485 +1383 +1769 +259 +55 +1412 +412 +2043 +1957 +1999 +1680 +1656 +892 +1004 +1849 +1630 +453 +1992 +1404 +1220 +418 +511 +607 +696 +672 +1506 +1586 +1664 +2159 +1598 +570 +397 +1058 +394 +1289 +1620 +1722 +1344 +600 +721 +1156 +81 +1592 +830 +634 +330 +1478 +1176 +1682 +1316 +120 +1699 +1509 +1600 +1285 +670 +1317 +1853 +1322 +2051 +1288 +807 +2126 +1046 +516 +2220 +671 +1043 +184 +1904 +1218 +2344 +494 +115 +1380 +980 +647 +2062 +1249 +731 +156 +528 +498 +1919 +1241 +1643 +520 +2137 +1593 +499 +1867 +2033 +923 +1132 +1985 +440 +894 +1936 +2007 +2071 +1816 +82 +744 +1299 +340 +2171 +1146 +2315 +1051 +1674 +454 +724 +936 +1594 +1192 +1370 +303 +585 +861 +1361 +342 +1373 +1326 +645 +11 +694 +1542 +898 +2059 +2201 +2358 +652 +1214 +465 +2184 +1819 +265 +2292 +1148 +848 +1496 +879 +186 +2216 +145 +2301 +231 +772 +1781 +2213 +1307 +1240 +854 +1196 +1431 +1736 +2055 +1799 +623 +131 +2049 +659 +2183 +1296 +2193 +1134 +147 +2041 +720 +1802 +275 +2034 +556 +9 +1703 +252 +738 +708 +1226 +1885 +2132 +1075 +2202 +1164 +1458 +1677 +1466 +1789 +88 +510 +1923 +236 +1357 +629 +1147 +688 +2131 +1255 +1753 +1605 +1582 +1109 +76 +2189 +2275 +1352 +550 +2026 +2277 +2052 +624 +1920 +209 +593 +1575 +1040 +2019 +1579 +1792 +2106 +681 +938 +84 +1341 +1793 +1595 +1883 +1256 +2338 +78 +77 +455 +427 +1279 +863 +1565 +2363 +226 +1140 +1952 +41 +768 +1229 +1096 +1497 +1047 +2259 +2093 +385 +167 +631 +1194 +1423 +430 +1291 +1489 +1399 +722 +138 +2067 +2145 +773 +1988 +949 +255 +2087 +1009 +1353 +1897 +1035 +1610 +1184 +2068 +2219 +637 +1186 +1393 +384 +1676 +926 +67 +2204 +1516 +2294 +1721 +411 +1700 +2336 +159 +972 +361 +1270 +451 +2226 +1394 +2334 +90 +702 +1934 +987 +1555 +488 +1580 +759 +2311 +399 +543 +1907 +1467 +2029 +784 +1749 +1587 +743 +1382 +299 +2375 +1190 +111 +264 +1323 +1016 +1528 +2025 +1244 +919 +1483 +2165 +1504 +2371 +853 +1327 +63 +534 +502 +1877 +2256 +552 +630 +902 +983 +1672 +2208 +1228 +1501 +1798 +1670 +1460 +133 +1886 +1390 +1158 +1265 +2302 +1437 +1974 +706 +304 +567 +1314 +2180 +868 +723 +1177 +1659 +2254 +1234 +31 +428 +1230 +891 +1726 +825 +800 +364 +562 +47 +1268 +1558 +1415 +574 +636 +778 +1911 +1369 +2054 +1426 +2203 +287 +601 +1105 +1611 +1286 +1068 +404 +1745 +21 +1113 +587 +338 +999 +1008 +1010 +2133 +2129 +1729 +1522 +2135 +745 +193 +754 +716 +829 +867 +1294 +683 +1446 +1231 +1933 +369 +1441 +435 +2113 +358 +2354 +432 +1834 +940 +2199 +717 +1360 +1436 +426 +300 +1780 +1782 +393 +1121 +1855 +2297 +234 +61 +2039 +472 +1658 +918 +2046 +1395 +1881 +1893 +348 +1965 +732 +1688 +991 +818 +48 +1454 +954 +33 +307 +711 +1236 +692 +87 +126 +1686 +592 +995 +1403 +2169 +92 +1641 +905 +2125 +2105 +197 +1947 +2176 +2243 +910 +1069 +815 +1903 +433 +1842 +371 +363 +309 +148 +1905 +1838 +1795 +286 +143 +187 +1338 +2214 +2367 +1794 +1199 +911 +1614 +2229 +1406 +733 +1632 +1188 +1697 +2156 +1398 +819 +450 +1152 +352 +1976 +878 +222 +1371 +1529 +1862 +1400 +467 +225 +95 +2038 +1266 +736 +1038 +1875 +413 +221 +367 +387 +1951 +12 +2185 +752 +598 +1900 +228 +1205 +827 +1894 +2195 +2018 +157 +958 +2053 +23 +2325 +2178 +974 +726 +2114 +2099 +152 +1635 +612 +1623 +1563 +1310 +365 +1340 +301 +1372 +2057 +1653 +1519 +239 +2320 +332 +529 +943 +852 +2190 +1422 +971 +786 +2188 +1281 +620 +408 +262 +1163 +935 +1960 +1219 +2329 +18 +2073 +1986 +444 +1475 +841 +2293 +909 +1915 +872 +1386 +2228 +548 +2296 +1269 +1297 +930 +1589 +2117 +177 +1416 +2211 +780 +642 +682 +220 +1151 +1271 +158 +715 +946 +1032 +1606 +2015 +2191 +870 +205 +1975 +2063 +1159 +1725 +2303 +321 +783 +2350 +173 +32 +401 +1439 +1716 +30 +579 +1521 +1878 +1591 +1956 +1064 +1197 +72 +251 +195 +503 +1515 +1648 +54 +208 +1484 +362 +1019 +485 +2158 +405 +2317 +1448 +1455 +1135 +1304 +1145 +91 +44 +1077 +1626 +1204 +937 +545 +2021 +1207 +619 +666 +56 +1889 +667 +901 +1822 +2100 +2304 +487 +1599 +1869 +1948 +2349 +103 +94 +2152 +665 +1551 +1083 +2097 +1174 +1315 +2245 +1773 +536 +1825 +137 +684 +922 +201 +38 +449 +116 +554 +813 +832 +1879 +2064 +1916 +1379 +641 +1754 +1870 +1570 +295 +842 +956 +2270 +679 +305 +2312 +288 +621 +1073 +2260 +25 +2148 +118 +2083 +1212 +1081 +599 +359 +760 +1684 +1350 +2265 +1071 +1778 +899 +1843 +1131 +804 +274 +796 +1335 +2238 +1872 +200 +109 +446 +2326 +388 +2128 +469 +845 +794 +1898 +1661 +627 +1576 +1242 +1155 +296 +155 +2017 +797 +1852 +941 +96 +1827 +229 +1252 +1977 +2239 +1013 +1472 +1036 +686 +479 +210 +1375 +1806 +2092 +2042 +1377 +324 +1079 +1142 +1023 +1127 +10 +2274 +422 +2307 +1739 +374 +1926 +153 +331 +1572 +755 +1502 +535 +664 +50 +1941 +1724 +2161 +1003 +2061 +1863 +2010 +963 +705 +1107 +1691 +123 +875 +1856 +1971 +1017 +462 +789 +130 +2306 +1301 +871 +2255 +2242 +967 +2342 +271 diff --git a/smtsemparsecpp/data/nlmaps.train.mrl b/smtsemparsecpp/data/nlmaps.train.mrl new file mode 100644 index 000000000..d059131e1 --- /dev/null +++ b/smtsemparsecpp/data/nlmaps.train.mrl @@ -0,0 +1,1500 @@ +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','japanese')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','hospital')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(and(keyval('shop','bakery'),keyval('shop','butcher'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('second_hand','only'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','library')),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop')),qtype(least(topx(20)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bar'))),search(nwr(keyval('highway','bus_stop'))),maxdist(WALKDING_DIST)),qtype(latlong)) +query(area(keyval('name','Hamburg')),nwr(keyval('amenity','kindergarten')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','key_cutter')),qtype(least(topx(1)))) +query(area(keyval('name','Lampertheim')),nwr(keyval('name','Blumenstraße'),keyval('highway','*')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','monument')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','catholic')),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(nwr(keyval('Schalansky_ref','*')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('man_made','water_well'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey('website'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial')),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','picnic_site')),qtype(latlong)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','kneipp_water_cure')),qtype(count)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'),keyval('wheelchair','yes'))),qtype(latlong)) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','restaurant'),keyval('cuisine','african'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','theatre')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','McDonald's')),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(count)) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Meslay'))),search(nwr(keyval('amenity','gym'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))),for('walk')) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(findkey('website'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('historic','manor'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','theatre')),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','attraction')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Monoprix')),qtype(latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','prison')),qtype(count)) +query(nwr(keyval('amenity','conference_centre')),qtype(findkey('name'))) +dist(query(nwr(keyval('name','City of Edinburgh')),qtype(latlong)),query(nwr(keyval('name','Glasgow'),keyval('place','city')),qtype(latlong)),unit(km)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','burger')),qtype(nodup(findkey('name')))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','catholic')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','library')),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','university')),qtype(least(topx(2)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('cuisine','greek')),qtype(count,latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket')),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Cinaxe'))),search(nwr(keyval('amenity','pharmacy'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(east(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','speed_camera')),qtype(latlong)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('natural','spring'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry')),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Mannheimer Straße'))),search(nwr(keyval('recycling:glass','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('operator','Accor')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','museum')),qtype(count)) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg-Altstadt'),keyval('railway','station')),qtype(latlong))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','King Street'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','memorial')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','*')),qtype(nodup(findkey('historic')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bar')),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','spring'))),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('tourism','hotel'))),maxdist(WALKDING_DIST)),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','*')),qtype(nodup(findkey('amenity')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','animal_shelter')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Cinéma Chaplin')),qtype(findkey('website'))) +query(nwr(keyval('amenity','exhibition_center')),qtype(latlong)) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Plöck')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel')),qtype(latlong))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('ruins','yes')),qtype(least(topx(20)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim')),qtype(findkey('name'))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +dist(query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(latlong)),query(nwr(keyval('name','Stuttgart'),keyval('place','city')),qtype(latlong)),unit(km)) +query(area(keyval('name','Hamburg')),nwr(keyval('amenity','kindergarten'),keyval('addr:street','Wördenmoorweg')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('information','map'),keyval('hiking','yes')),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bar'),keyval('smoking','yes'))),search(nwr(keyval('highway','bus_stop'))),maxdist(400)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema')),qtype(findkey('name'))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('second_hand','only'))),qtype(count)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('tourism','theme_park'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','skateboard')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','townhall')),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','attraction'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','charging_station')),qtype(findkey('operator'))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley')),qtype(least(topx(1)))),for('walk')) +query(around(center(area(keyval('name','York')),nwr(keyval('name','Ainsty Grove'))),search(nwr(keyval('leisure','playground'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','3')),qtype(findkey('name'))) +query(south(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','ambulance_station')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop'),keyval('name','Hôpital des Enfants Malades')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','bar'))),maxdist(500)),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','catholic')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('name','La Garrigue')),qtype(findkey('phone'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Cesarino')),qtype(findkey('phone'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','kindergarten')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','*')),qtype(nodup(findkey('tourism')))) +query(area(keyval('name','Bayern')),nwr(keyval('historic','memorial')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('name','Taj Mahal')),qtype(findkey('smoking'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','skateboard')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','ice_cream')),qtype(latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','brewery')),qtype(count)) +query(west(area(keyval('name','Paris')),nwr(keyval('historic','tomb'))),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','planetarium')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','table_tennis')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','prison')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','books')),qtype(least(topx(1)))) +query(south(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('information','map'),keyval('hiking','yes'))),search(nwr(keyval('natural','peak'))),maxdist(WALKDING_DIST)),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','cafe'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'),keyval('fuel:diesel','yes')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','dentist')),qtype(latlong(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(findkey('height'))) +query(area(keyval('name','Dresden')),nwr(keyval('building','greenhouse')),qtype(least(topx(1)),count,latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Hotel Schönberger Hof')),qtype(findkey('wheelchair'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('amenity','school'))),maxdist(200)),qtype(count)) +query(west(area(keyval('name','Montpellier')),nwr(keyval('sport','tennis'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Altstadt'))),search(nwr(keyval('shop','*'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking')),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'),keyval('denomination','catholic'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bbq')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','pier')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','climbing')),qtype(least(topx(2)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema'),keyval('wheelchair','yes')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','prison')),qtype(findkey('name'))) +query(area(keyval('name','Stuttgart')),nwr(keyval('amenity','toilets')),qtype(latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','japanese')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','theatre'),keyval('wheelchair','yes')),qtype(findkey('name'))) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Bastille'),keyval('railway','station')),qtype(least(topx(1)))),for('walk')) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('recycling:glass','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','swimming')),qtype(latlong)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema')),qtype(findkey('name'))) +dist(query(area(keyval('name','Paris')),nwr(keyval('name','Musée du Louvre')),qtype(latlong)),query(area(keyval('name','Paris')),nwr(keyval('name','Arc de Triomphe')),qtype(latlong)),for('walk')) +dist(query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(latlong)),query(nwr(keyval('name','Lyon'),keyval('place','city')),qtype(latlong)),unit(km)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue René Coty'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','*')),qtype(count,findkey('name'))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten'))),qtype(latlong)) +query(area(keyval('name','Heidelberg')),nwr(keyval('leisure','golf_course')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint')),qtype(latlong(topx(1)))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('information','map'),keyval('hiking','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('building','apartments')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','motorway')),qtype(nodup(findkey('int_ref')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','fire_hydrant')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','post_office'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','3')),qtype(findkey('name'))) +query(south(area(keyval('name','Delmenhorst')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','drinking_water')),qtype(latlong)) +query(nwr(keyval('amenity','conference_centre')),qtype(count)) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Fischergasse'))),search(nwr(keyval('amenity','townhall'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(findkey('website'))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','*')),qtype(nodup(findkey('leisure')))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','italian')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','construction')),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'),keyval('railway','station'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(latlong))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','butcher'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','cricket')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','townhall')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(findkey('email'))) +dist(query(nwr(keyval('name','City of Edinburgh')),qtype(latlong)),query(nwr(keyval('name','Aberdeen'),keyval('place','city')),qtype(latlong)),unit(mi)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','hospital')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fire_station')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint'),keyval('wheelchair','yes')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('amenity','pharmacy'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','library')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','library')),qtype(least(topx(1)))) +query(nwr(keyval('abandoned:tourism','theme_park')),qtype(findkey('end_date'))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','rugby')),qtype(least(topx(1)))) +query(west(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural'))),qtype(latlong,findkey('name'))) +query(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes')),qtype(count,latlong)) +query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(findkey('population'))) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Mannheimer Straße'))),search(nwr(keyval('name','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','butcher')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','vegetarian')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(latlong)) +query(around(center(area(keyval('name','Stuttgart')),nwr(keyval('name','Rührbrunnen'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST),topx(1)),qtype(latlong)) +query(west(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','motorway'),keyval('ref','A 5')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','university')),qtype(least(topx(1)))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(findkey('name'))) +query(area(keyval('name','Paris')),nwr(keyval('name','Basilique du Sacré-Cœur')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Quai de Béthune'))),search(nwr(and(keyval('shop','butcher'),keyval('shop','bakery')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name',and('Magdeburg','Netphen'))),nwr(keyval('memorial:type','stolperstein')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking')),qtype(latlong)) +query(west(area(keyval('name','Osterode')),nwr(keyval('natural','spring'))),qtype(count)) +dist(query(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel')),qtype(latlong)),query(area(keyval('name','Paris')),nwr(keyval('name','Cathédrale Notre-Dame de Paris')),qtype(latlong))) +query(south(around(center(nwr(keyval('name','Schriesheim'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_OUTTOWN))),qtype(latlong)) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('tourism','theme_park'))),maxdist(DIST_DAYTRIP)),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop'),keyval('name','Mairie du XV')),qtype(findkey('operator'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','defibrillator')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(and(keyval('shop','bakery'),keyval('shop','butcher'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey(and('website','phone')))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','picnic_site')),qtype(least(topx(5)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','artwork')),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','*')),qtype(nodup(findkey('landuse')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','asian')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral'),keyval('name','St Mary's Episcopal Cathedral')),qtype(least(topx(1)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship')),qtype(findkey('name'))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','key_cutter')),qtype(latlong)) +query(nwr(keyval('amenity','conference_centre')),qtype(findkey('addr:city'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb')),qtype(least(topx(13)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','camp_site')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Castle'))),search(nwr(keyval('tourism','hotel'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','castle')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak'))),search(nwr(keyval('information','map'),keyval('hiking','yes'))),maxdist(WALKDING_DIST)),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(findkey('website'))) +query(area(keyval('name','Neuenheim')),nwr(keyval('name','Marktstraße')),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Ulster Drive'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1))))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','car_sharing')),qtype(nodup(findkey('operator')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Maaßstraße')),qtype(findkey('lanes'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','swimming')),qtype(count)) +query(nwr(keyval('artwork:group','berlin_bears')),qtype(nodup(findkey('artwork_type')))) +query(area(keyval('name','Île-de-France')),nwr(keyval('station','subway')),qtype(findkey('wikipedia'))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Pilrig St Paul's')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','True Jesus Church')),qtype(latlong))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','university')),qtype(least(topx(2)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','*'),keyval('wheelchair','yes')),qtype(latlong,findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Königstuhl'))),search(nwr(keyval('historic','memorial'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','picnic_site')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial')),qtype(count)) +query(east(area(keyval('name','Dresden')),nwr(keyval('junction','roundabout'))),qtype(latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('historic','manor'))),maxdist(DIST_DAYTRIP)),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','hospital')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','brewery')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','kindergarten')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','phone')),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('sport','golf'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','restaurant'))),maxdist(WALKDING_DIST)),qtype(findkey('name',topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Lauriston'))),search(nwr(keyval('recycling:clothes','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','viewpoint')),qtype(latlong)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','phone')),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('building','cathedral')),qtype(findkey('denomination'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema')),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(and(keyval('shop','bakery'),keyval('shop','butcher'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('advertising','column')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(or(keyval('sport','tennis'),keyval('sport','badminton'))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','parking')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','motorway')),qtype(nodup(findkey('ref')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','table_tennis')),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('second_hand','only'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint')),qtype(least(topx(3)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','climbing')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','traffic_signals')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Königstuhl')),qtype(findkey('wikipedia'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','seafood')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','water_well')),qtype(count)) +query(north(area(keyval('name','Montpellier')),nwr(keyval('sport','tennis'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','stationery')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','pharmacy')),qtype(latlong(topx(1)))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(area(keyval('name','7e Arrondissement')),nwr(keyval('amenity','bank')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','theatre'),keyval('wheelchair','yes')),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Mannheimer Straße'))),search(nwr(and(keyval('shop','butcher'),keyval('shop','bakery')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(south(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Subway')),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','parking'),keyval('parking','underground')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(findkey('ele'))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('cuisine','greek')),qtype(count,latlong)) +query(area(keyval('name','Lampertheim')),nwr(keyval('name','Starenweg'),keyval('highway','*')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','McDonald's')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema'),keyval('wheelchair','yes')),qtype(findkey('name'))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Airport')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Cat Stane')),qtype(latlong))) +dist(query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(latlong)),query(nwr(keyval('name','Frankfurt am Main'),keyval('place','city')),qtype(latlong)),unit(mi)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('cuisine','greek')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('smoking','yes')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','4')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Burger King')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','police')),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','ice_cream')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue du Général Lemonnier')),qtype(findkey('bicycle'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','tennis')),qtype(count)) +query(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural')),qtype(findkey('artist_name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Librairie Galignani'))),search(nwr(keyval('highway','bus_stop'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(DIST_OUTTOWN)),qtype(count)) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'),keyval('railway','station'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(latlong))) +query(area(keyval('name','Paris')),nwr(keyval('building','cathedral'),keyval('name','Basilique du Sacré-Cœur')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','camp_site')),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue René Coty'))),search(nwr(keyval('amenity','bicycle_parking'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('railway','station'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein')),qtype(findkey('person:date_of_birth'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(50000)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Castle'))),search(nwr(keyval('amenity','bureau_de_change'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Hamburg')),nwr(keyval('name','Wördenmoorweg'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','african')),qtype(least(topx(1)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'),keyval('wheelchair','yes'))),qtype(latlong)) +query(north(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('man_made','pier')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','living_street')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Calton Hill')),qtype(latlong))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','*'))),qtype(count,latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('shop','supermarket'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(area(keyval('name','Paris')),nwr(keyval('name','Basilique du Sacré-Cœur')),qtype(findkey('wheelchair'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','climbing')),qtype(latlong)) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Basilique du Sacré-Cœur'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +dist(query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(latlong)),query(nwr(keyval('name','Mannheim'),keyval('place','city')),qtype(latlong)),unit(mi)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','pier')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery')),qtype(latlong)) +query(area(keyval('name','Bretagne')),nwr(keyval('craft','brewery')),qtype(count,findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','castle')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','post_office')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(findkey('ele'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','tennis')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','townhall')),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('historic','*'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(findkey('name'))) +query(nwr(keyval('amenity','conference_centre')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','rowing')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','viewpoint')),qtype(least(topx(3)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','french')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial'))),qtype(count)) +query(west(area(keyval('name','Nantes')),nwr(keyval('historic','*'))),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('second_hand','only'))),qtype(count)) +dist(query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(latlong)),query(nwr(keyval('name','Marseille'),keyval('place','city')),qtype(latlong)),unit(mi)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','greek')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('aeroway','helipad')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Marriott Hotel')),qtype(findkey('leisure'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('sport','scuba_diving'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','water_well')),qtype(least(topx(5)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('cuisine',or('greek','italian'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','table_tennis')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','parking')),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg-Altstadt'),keyval('railway','station'))),search(nwr(keyval('amenity','*'))),maxdist(DIST_INTOWN)),qtype(nodup(findkey('amenity')))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','cafe'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(area(keyval('name','York')),nwr(keyval('leisure','playground')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(findkey('wikipedia'))) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum')),qtype(latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Cinaxe'))),search(nwr(keyval('advertising','column'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Hard Rock Cafe'))),search(nwr(keyval('shop','*'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','books')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','living_street')),qtype(count)) +query(south(area(keyval('name','Schriesheim')),nwr(keyval('amenity','post_box'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','castle')),qtype(count)) +query(area(keyval('name','Hohenlohekreis')),nwr(keyval('leisure','nature_reserve')),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('amenity','prison')),qtype(count,latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','4')),qtype(count,latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','motorway')),qtype(nodup(findkey('ref')))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(findkey('addr:street',topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Carpet Lane'))),search(nwr(keyval('name','Sainsbury's Local'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('opening_hours'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Subway')),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Mannheimer Straße'))),search(nwr(keyval('shop','mobile_phone'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(latlong)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('aeroway','aerodrome'),keyval('aerodrome','international'))),maxdist(DIST_OUTTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('smoking','no')),qtype(findkey('name',topx(1)))) +query(west(area(keyval('name','Bayern')),nwr(keyval('historic','memorial'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank'),keyval('wheelchair','yes')),qtype(latlong)) +query(nwr(keyval('building','planned')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','William Chambers Statue')),qtype(findkey('wikipedia'))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','university')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','charging_station')),qtype(findkey('operator'))) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(DIST_DAYTRIP)),qtype(findkey('name'))) +query(nwr(keyval('abandoned:tourism','theme_park')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(findkey('phone',topx(1)))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','memorial'))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('historic','*'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','martial_arts')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','arts_centre')),qtype(findkey(and('name','website')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bar')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','church_of_scotland')),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','spring'))),qtype(least(topx(1)))) +query(area(keyval('name','Witten')),nwr(keyval('emergency','phone')),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('amenity','drinking_water'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','greek')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','rowing')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Malmaison')),qtype(findkey('wheelchair'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Edeka')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','sandwich')),qtype(least(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('ruins','yes')),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','skateboard')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop'),keyval('name','Peterskirche')),qtype(findkey('note'))) +query(area(keyval('name','Deutschland')),nwr(keyval('artwork_type','mural')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fire_station')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','books')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue du Général Lemonnier')),qtype(findkey('oneway'))) +query(area(keyval('name','Neuenheim')),nwr(keyval('amenity','kindergarten')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('name','La Garrigue')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','picnic_site')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','swimming')),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','soccer')),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('shop','scuba_diving'))),maxdist(DIST_OUTTOWN)),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','Paris')),nwr(keyval('building','cathedral')),qtype(least(topx(5)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','picnic_site')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','pharmacy')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('second_hand','only')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','spring'))),qtype(least(topx(1)))) +query(south(area(keyval('name','Paris')),nwr(keyval('historic','tomb'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fire_station')),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Vercingétorix'))),search(nwr(keyval('amenity','townhall'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(findkey('architect'))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('railway','station'))),qtype(count)) +query(nwr(keyval('aerialway','zip_line')),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','kindergarten')),qtype(latlong)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('natural','spring'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','greek')),qtype(least(topx(1)))) +query(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','burger')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','catholic')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','police')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','parking'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Wieblinger Weg'))),search(nwr(keyval('amenity','gym'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))),for('walk')) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Bastille'),keyval('railway','station'))),search(nwr(keyval('amenity','*'))),maxdist(DIST_INTOWN)),qtype(nodup(findkey('amenity')))) +query(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool')),qtype(count)) +query(area(keyval('name','Stuttgart')),nwr(keyval('leisure','playground'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','Baden-Baden')),nwr(keyval('emergency','phone')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','british')),qtype(count)) +query(area(keyval('name','Nantes')),nwr(or(keyval('historic','memorial'),keyval('historic','wayside_cross'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral')),qtype(least(topx(5)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop')),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','*')),qtype(nodup(findkey('tourism')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('operator','Accor')),qtype(findkey('name',topx(1)))) +query(west(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bbq')),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station'))),search(nwr(keyval('amenity','fast_food'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(north(area(keyval('name','Paris')),nwr(keyval('building','cathedral'))),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bureau_de_change'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','*')),qtype(nodup(findkey('amenity')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','picnic_site')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(latlong(topx(1)))) +query(area(keyval('name','Bielefeld')),nwr(keyval('memorial:type','stolperstein')),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','parking'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('sport','american_football'))),maxdist(DIST_OUTTOWN)),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking')),qtype(findkey('capacity'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(findkey('name:ja'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'),keyval('opening_hours','24/7')),qtype(least(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(area(keyval('name','Île-de-France')),nwr(keyval('station','subway')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','soccer')),qtype(count)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(area(keyval('name','Hamburg')),nwr(keyval('amenity','kindergarten')),qtype(count)) +query(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','rugby')),qtype(least(topx(2)))) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue de Ségur')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel')),qtype(latlong))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','butcher'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','seafood')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','vegetarian')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool')),qtype(latlong)) +query(area(keyval('name','Paris')),nwr(keyval('amenity','embassy')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(nwr(keyval('name','Driving Test Centre')),qtype(count,latlong)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bar'),keyval('wifi','free')),qtype(latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('sport','cliff_diving'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(area(keyval('name','Marseille')),nwr(keyval('historic','*')),qtype(findkey('historic'))) +query(area(keyval('name','Paris')),nwr(keyval('leisure','golf_course')),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Mary King's Close'))),search(nwr(keyval('shop','bakery'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1)))),for('car')) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','spring'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','*')),qtype(nodup(findkey('leisure')))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','cinema'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','living_street'),keyval('oneway','yes')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('shop','supermarket'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)),count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','skateboard')),qtype(latlong)) +query(area(keyval('name','Baden-Württemberg')),nwr(keyval('emergency','phone')),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','pier'),keyval('name','Neckarsonne Ausflugsschiff'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey('phone'))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(keyval('amenity','bureau_de_change'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(nwr(keyval('amenity','kneipp_water_cure')),qtype(latlong)) +query(area(keyval('name','Neuenheim')),nwr(keyval('amenity','school')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','sandwich')),qtype(least(topx(1)))) +query(area(keyval('name','5e Arrondissement')),nwr(keyval('name','Rue Poliveau')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','memorial'),keyval('natural','spring')),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Mary King's Close'))),search(nwr(keyval('aeroway','helipad'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf')),qtype(least(topx(1)))),for('walk')) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Whitehouse Loan')),qtype(findkey('lanes'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','post_office')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','camp_site')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','ambulance_station')),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','parking')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','quarry')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','basketball')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','church_of_scotland')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship')),qtype(findkey('name'))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(DIST_DAYTRIP)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(or(keyval('amenity','arts_centre'),keyval('tourism','museum')))),maxdist(DIST_INTOWN)),qtype(findkey(and('name','website')))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('advertising','column'))),qtype(latlong)) +dist(query(area(keyval('name','Paris')),nwr(keyval('name','Musée du Louvre')),qtype(latlong)),query(area(keyval('name','Paris')),nwr(keyval('name','Arc de Triomphe')),qtype(latlong))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('railway','station')),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('name','McDonald's'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('opening_hours'))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Musée du Louvre'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong,findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','attraction')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','quarry')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','cinema')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bar')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('name','Buffalo Grill')),qtype(findkey('website'))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','cricket')),qtype(latlong(topx(1)))) +query(west(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(findkey('email'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('man_made','water_well'))),maxdist(2000)),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','key_cutter')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','fish_and_chips'))),qtype(count)) +query(nwr(keyval('name','Edinburgh'),keyval('place','city')),qtype(findkey('wikipedia'))) +query(west(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','charging_station')),qtype(least(topx(1)),count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','bakery')),qtype(count)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('shop','car'),keyval('operator','Renault'))),maxdist(DIST_OUTTOWN)),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Cesarino')),qtype(findkey('wheelchair'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','The Salisbury')),qtype(findkey('phone'))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Camera Obscura')),qtype(latlong))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','spring')),qtype(latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('leisure','swimming_pool'))),maxdist(30000)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing'),keyval('opening_hours','24/7')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral')),qtype(findkey('denomination'))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Yorckstraße'))),search(nwr(and(keyval('amenity','bank'),keyval('amenity','pharmacy')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('cuisine',or('greek','italian'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Whitehouse Loan')),qtype(findkey('maxspeed'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','tennis')),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Quai de Béthune'))),search(nwr(keyval('name','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Librairie Galignani'))),search(nwr(keyval('amenity','parking'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','harbour')),qtype(count)) +query(area(keyval('name','Nantes')),nwr(keyval('historic','boundary_stone')),qtype(least(topx(1)))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Cambridge Gardens')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel')),qtype(latlong))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','prison')),qtype(count,latlong)) +query(around(center(nwr(keyval('name','Alaise'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_INTOWN)),qtype(findkey('collection_times'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','museum')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','construction')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','rugby')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','harbour')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('man_made','pier'),keyval('name','Neckarsonne Ausflugsschiff'))),search(nwr(keyval('tourism','hotel'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('name','Taj Mahal')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel'),keyval('opening_hours','24/7')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Mary King's Close'))),search(nwr(keyval('recycling:clothes','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','butcher')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('emergency','ambulance_station')),qtype(latlong)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','spring'))),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('sport','cliff_diving'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','fountain'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)),for('walk')) +query(area(keyval('name','Ludwigshafen am Rhein')),nwr(keyval('memorial:type','stolperstein')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('historic','*'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('historic'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','table_tennis')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('name','Ristorante Pellicano')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(count)) +query(area(keyval('name','Handschuhsheim')),nwr(keyval('name','Amselgasse')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(nwr(keyval('hazard','minefield')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','drinking_water')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Cinéma Chaplin')),qtype(findkey('website'))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','spring')),qtype(least(topx(2)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(count)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('natural','spring'))),maxdist(DIST_OUTTOWN)),qtype(findkey('name'))) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord')),qtype(least(topx(1)))),for('walk')) +query(area(keyval('name','Vendée')),nwr(keyval('man_made','water_tower')),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak'))),search(nwr(keyval('amenity','parking'))),maxdist(WALKDING_DIST)),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('name','Taj Mahal')),qtype(findkey('phone'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Hard Rock Café'))),search(nwr(keyval('shop','*'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','books')),qtype(count)) +query(east(area(keyval('name','Bielefeld')),nwr(keyval('amenity','school'))),qtype(latlong)) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('amenity','fountain'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)),for('walk')) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Castle')),qtype(latlong)) +query(area(keyval('name','Paris')),nwr(keyval('amenity','embassy')),qtype(findkey('name'))) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum'),keyval('internet_access','wlan')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','post_office')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','*')),qtype(nodup(findkey('historic')))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('smoking','no')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('site_type','megalith')),qtype(least(topx(1)),latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'),keyval('railway','station'))),search(nwr(keyval('tourism','museum'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(nwr(keyval('aerialway','zip_line')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'),keyval('cuisine','greek')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','greek')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','car_sharing')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking')),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(north(area(keyval('name','Paris')),nwr(keyval('tourism','museum'))),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(north(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','japanese')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bar')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','townhall')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(latlong)) +query(nwr(keyval('name','Cash Converters'),keyval('shop','*')),qtype(nodup(findkey('shop')))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('amenity','school'))),maxdist(200)),qtype(findkey('name'))) +query(north(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','theatre')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','fountain'))),maxdist(2000)),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','speed_camera')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','catholic')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian')),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'),keyval('railway','station'))),search(nwr(keyval('amenity','fast_food'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Yorckstraße'))),search(nwr(keyval('aeroway','helipad'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris')),nwr(keyval('amenity','prison')),qtype(findkey(and('name','wikipedia')))) +query(area(keyval('name','Bonn')),nwr(keyval('addr:street','Sternstraße'),keyval('shop','*')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('historic','tomb')),qtype(findkey(and('name','wikipedia')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey('name'))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('second_hand','only'))),qtype(count)) +query(nwr(keyval('monitoring:bicycle','yes')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','library')),qtype(least(topx(1)))) +query(area(keyval('name','München')),nwr(keyval('amenity','charging_station')),qtype(count,latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery')),qtype(count)) +query(area(keyval('name','Berlin')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(east(area(keyval('name','Pays de la Loire')),nwr(keyval('historic','monument'))),qtype(latlong)) +query(nwr(keyval('name','Cash Converters'),keyval('shop','*')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(findkey('name'))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bureau_de_change'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','kindergarten')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','monument')),qtype(latlong)) +query(west(area(keyval('name','Paris')),nwr(keyval('building','cathedral'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','car_sharing')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','soccer')),qtype(least(topx(2)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tower:type','communication'),keyval('operator','O2')),qtype(least(topx(1)))) +query(nwr(keyval('abandoned:tourism','theme_park')),qtype(findkey('start_date'))) +query(south(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','university')),qtype(count)) +query(north(area(keyval('name','York')),nwr(keyval('leisure','playground'))),qtype(latlong,count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','park')),qtype(least(topx(1)),latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','castle')),qtype(least(topx(1)))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(area(keyval('name','Hamburg')),nwr(keyval('amenity','kindergarten')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','artwork')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Whitehouse Loan')),qtype(findkey('surface'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','basketball')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('second_hand','only')),qtype(latlong,findkey('opening_hours'))) +query(nwr(keyval('craft','distillery')),qtype(findkey('phone'))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(findkey('name'))) +query(area(keyval('name','Morningside')),nwr(keyval('name','Whitehouse Loan')),qtype(least(topx(1)))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','fountain'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','basketball')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('amenity','drinking_water'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(east(around(center(nwr(keyval('name','Schriesheim'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_OUTTOWN))),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('amenity','school'))),maxdist(200)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tower:type','communication'),keyval('operator','Südwestrundfunk (SWR)')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','viaduct')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','post_office')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('advertising','column')),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Witten')),nwr(keyval('social_facility:for','migrant')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','bus_stop'),keyval('name','Lothian Road')),qtype(least(topx(1)))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('ruins','yes'),keyval('site_type','temple')),qtype(least(topx(1)))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(nodup(findkey('operator')))) +query(north(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(least(topx(5)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','castle')),qtype(count)) +dist(query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(latlong(topx(1))))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','*'),keyval('wheelchair','yes')),qtype(latlong,findkey('name'))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +query(area(keyval('name','Nantes')),nwr(keyval('historic','*'),keyval('inscription','*')),qtype(findkey(and('name','inscription')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Burger King')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(findkey('addr:street',topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Subway')),qtype(count)) +query(area(keyval('name','Sachsen')),nwr(keyval('generator:source','wind')),qtype(nodup(findkey('manufacturer')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bar')),qtype(count)) +query(north(area(keyval('name','Dresden')),nwr(keyval('junction','roundabout'))),qtype(latlong)) +query(around(center(area(keyval('name','Berlin')),nwr(keyval('name','Brandenburger Tor'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop'),keyval('name','Pasteur - Lycée Buffon')),qtype(findkey('operator'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','vegetarian')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station'),keyval('name','Pont Cardinet')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','*')),qtype(nodup(findkey('landuse')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','theatre')),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank')),qtype(latlong)) +query(nwr(keyval('abandoned:tourism','theme_park')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint')),qtype(least(topx(3)))) +query(west(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey('wikipedia'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','japanese')),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('second_hand','only'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station'))),search(nwr(keyval('ruins','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','ambulance_station')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','swimming')),qtype(findkey('name'))) +query(west(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('stars','4')),qtype(findkey('name',topx(1)))) +query(south(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','speed_camera')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','tennis')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','copyshop')),qtype(findkey('name'),latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('advertising','column'))),qtype(latlong)) +dist(query(around(center(area(keyval('name','Stuttgart')),nwr(keyval('name','Rührbrunnen'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST),topx(1)),qtype(latlong))) +query(nwr(keyval('craft','distillery')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','L'Encrier')),qtype(findkey('wheelchair'))) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Sume-Brunnen')),qtype(latlong))) +dist(query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(latlong)),query(nwr(keyval('name','Rennes'),keyval('place','city')),qtype(latlong)),unit(km)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(least(topx(1)))) +query(east(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey('wikipedia'))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Haymarket'),keyval('railway','station')),qtype(latlong))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','hospital')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','artwork')),qtype(latlong(topx(1)))) +query(east(area(keyval('name','York')),nwr(keyval('leisure','playground'))),qtype(latlong,count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','books')),qtype(findkey('name'))) +query(west(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey(and('name','ele')))) +query(nwr(keyval('name','Pet Cemetery')),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tower:type','communication'),keyval('communication:mobile_phone','yes')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('internet_access','wlan')),qtype(findkey('name',topx(1)))) +query(east(area(keyval('name','Montpellier')),nwr(keyval('sport','tennis'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Hotel Schönberger Hof')),qtype(findkey('rooms'))) +query(east(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Piatto Verde')),qtype(findkey('phone'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','burger')),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Camera Obscura'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Zum Seppl')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','castle')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','spring')),qtype(count)) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','conference_centre')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial'),keyval('natural','spring')),qtype(least(topx(1)))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('recycling:clothes','yes')),qtype(latlong)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('tourism','hotel'),keyval('stars','4'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(north(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','park')),qtype(least(topx(1)),latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','hospital'),keyval('name','Kurpfalzkrankenhaus')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','theatre')),qtype(findkey('addr:street'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','motorway'),keyval('ref','A 5')),qtype(least(topx(1)))) +query(area(keyval('name','Baden-Württemberg')),nwr(keyval('emergency','phone')),qtype(nodup(findkey('operator')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('ruins','yes')),qtype(latlong,findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','hospital'),keyval('name','Hôpital Marmottan')),qtype(least(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('name','KFC'))),qtype(count)) +query(nwr(keyval('Schalansky_ref','*')),qtype(findkey('name:en'))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Lauriston'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','parking')),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(area(keyval('name','Brietlingen')),nwr(keyval('emergency','fire_hydrant')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','tailor')),qtype(latlong)) +query(east(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(DIST_OUTTOWN))),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(east(area(keyval('name','Osterode')),nwr(keyval('natural','spring'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','theatre'),keyval('wheelchair','yes')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','post_office')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel'),keyval('fuel:diesel','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water')),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','planetarium')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue'))),search(nwr(keyval('amenity','restaurant'),or(keyval('cuisine','indian'),keyval('cuisine','asian')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','spring'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Wieblingen'))),search(nwr(keyval('shop','car'))),maxdist(DIST_INTOWN)),qtype(findkey('addr:street'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','dentist')),qtype(latlong(topx(1)))) +query(area(keyval('name','Bretagne')),nwr(keyval('craft','brewery')),qtype(findkey(and('name','opening_hours')))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'),keyval('railway','station'))),search(nwr(keyval('amenity','fast_food'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'),keyval('railway','station'))),search(nwr(keyval('amenity','toilets'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(nwr(keyval('amenity','exhibition_center')),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','parking'),keyval('parking','underground')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','parking')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(least(topx(10)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(count)) +query(area(keyval('name','Osnabrück')),nwr(keyval('memorial:type','stolperstein')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','greek')),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('historic','*'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Maaßstraße')),qtype(findkey('maxspeed'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('man_made','water_well'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','attraction'),keyval('wheelchair','yes')),qtype(least(topx(1)))) +query(nwr(keyval('artwork:group','berlin_bears')),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('amenity','fuel'),keyval('brand','Jet'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','kindergarten')),qtype(latlong)) +query(south(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','viewpoint')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fountain')),qtype(latlong,count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','bus_stop'))),search(nwr(keyval('amenity','school'))),maxdist(200)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','artwork')),qtype(count)) +query(nwr(keyval('name','Kelso ROC Post')),qtype(latlong,findkey('historic'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(north(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey(and('name','ele')))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','castle')),qtype(least(topx(1)))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','3'))),qtype(count)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','tennis')),qtype(least(topx(2)))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','*'))),qtype(count,latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Da Mario')),qtype(findkey('cuisine'))) +query(east(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop')),qtype(count)) +query(area(keyval('name','Lüneburg')),nwr(keyval('emergency','fire_hydrant'),keyval('fire_hydrant:type','underground')),qtype(count,latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','camp_site')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('recycling:glass','yes')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','arts_centre')),qtype(least(topx(1)),count,latlong)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(west(area(keyval('name','Paris')),nwr(keyval('amenity','bureau_de_change'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','protestant')),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(area(keyval('name','Osterode')),nwr(keyval('natural','cave_entrance')),qtype(findkey('name'),latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','dentist')),qtype(latlong(topx(1)))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Gare du Nord'))),search(nwr(keyval('amenity','bureau_de_change'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg-Altstadt'),keyval('railway','station'))),search(nwr(keyval('amenity','*'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','police')),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','camp_site')),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','police')),qtype(count)) +query(north(area(keyval('name','Paris')),nwr(keyval('historic','tomb'))),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('second_hand','only'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak'))),search(nwr(keyval('information','map'),keyval('hiking','yes'))),maxdist(WALKDING_DIST)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Tesco')),qtype(least(topx(1)))) +query(area(keyval('name','Deutschland')),nwr(keyval('artwork_type','mural')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','3')),qtype(findkey('name'))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(north(area(keyval('name','Osterode')),nwr(keyval('natural','spring'))),qtype(count)) +query(south(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema'),keyval('wheelchair','yes')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','pier'),keyval('name','Hawes Pier'))),search(nwr(keyval('tourism','hotel'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(and(keyval('shop','bakery'),keyval('shop','butcher'))),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong,findkey('operator'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','swimming')),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','picnic_site')),qtype(least(topx(1)))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Talbot Rice Gallery')),qtype(findkey('wikipedia'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','shoemaker')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tower:type','communication'),keyval('operator','O2')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','miniature_golf')),qtype(least(topx(1)),latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','soccer')),qtype(least(topx(2)))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(latlong(topx(1)))) +query(area(keyval('name','Vendée')),nwr(keyval('man_made','water_tower')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','theatre')),qtype(findkey('name'))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('amenity','bbq'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','police')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','asian')),qtype(findkey('name'))) +query(north(area(keyval('name','Berlin')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank'),keyval('atm','yes')),qtype(latlong)) +query(area(keyval('name','14e Arrondissement')),nwr(keyval('amenity','kindergarten')),qtype(least(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(count)) +query(nwr(keyval('hazard','minefield')),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','An der Neckarspitze'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Gare du Nord'),keyval('railway','station')),qtype(latlong))) +query(west(area(keyval('name','Delmenhorst')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking')),qtype(latlong)) +query(south(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','L'Encrier')),qtype(findkey('phone'))) +dist(query(around(center(area(keyval('name','Berlin')),nwr(keyval('name','Berlin Hauptbahnhof'),keyval('building','train_station'))),search(nwr(keyval('amenity','restaurant'),keyval('cuisine','greek'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','REWE City')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','construction')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','spring')),qtype(least(topx(2)))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('name','KFC'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','pizza'),keyval('name','The Crafters Barn')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian')),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('shop','supermarket'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('sport','american_football'))),maxdist(DIST_DAYTRIP)),qtype(latlong)) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(keyval('tourism','museum'))),maxdist(5000)),qtype(findkey(and('name','phone')))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim'))),qtype(least(topx(1)))) +query(nwr(keyval('artwork:group','berlin_bears')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank')),qtype(findkey(and('addr:street','addr:housenumber')))) +dist(query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse')),qtype(latlong)),query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'),keyval('railway','station')),qtype(latlong))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(or(keyval('amenity','arts_centre'),keyval('tourism','museum')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('natural','spring'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','pharmacy')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Calton Hill'))),search(nwr(keyval('historic','memorial'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(north(area(keyval('name','Pays de la Loire')),nwr(keyval('historic','monument'))),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(nwr(keyval('amenity','public_bookcase')),qtype(latlong)) +query(south(area(keyval('name','Nantes')),nwr(keyval('historic','*'))),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Quai de Béthune'))),search(nwr(keyval('shop','mobile_phone'))),maxdist(DIST_INTOWN)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','memorial')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('railway','station')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','african')),qtype(least(topx(1)))) +query(area(keyval('name','Bonn')),nwr(keyval('addr:street','Sternstraße')),qtype(least(topx(1)))) +query(west(area(keyval('name','Pays de la Loire')),nwr(keyval('historic','monument'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','sandwich')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','pharmacy')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','charging_station')),qtype(least(topx(1)),count)) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Cathédrale Notre-Dame de Paris'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb'))),qtype(count)) +query(nwr(keyval('building','planned')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(count)) +query(nwr(keyval('artwork:group','berlin_bears')),qtype(least(topx(2)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','stationery')),qtype(count)) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('name','Edinburgh Waverley'),keyval('railway','station'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue du Général Lemonnier')),qtype(findkey('highway'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','table_tennis')),qtype(least(topx(2)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Sainsbury's')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','italian')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','castle')),qtype(least(topx(1)))) +query(area(keyval('name','Deutschland')),nwr(keyval('artwork_type','mural')),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +dist(query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue des Cloys'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN)),qtype(latlong(topx(1))))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Holiday Inn Express')),qtype(findkey('addr:street'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('denomination','protestant')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','rowing')),qtype(latlong(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('man_made','water_well'))),maxdist(2000)),qtype(least(topx(1)))) +query(north(area(keyval('name','Nantes')),nwr(keyval('historic','*'))),qtype(count)) +query(east(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey(and('name','ele')))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Bastille'),keyval('railway','station'))),search(nwr(keyval('amenity','*'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','seafood')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Starbucks')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('recycling:clothes','yes')),qtype(latlong)) +query(nwr(keyval('monitoring:bicycle','yes')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','museum')),qtype(count)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('tourism','zoo'))),maxdist(DIST_DAYTRIP)),qtype(latlong)) +query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(findkey('population'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'),keyval('name','Simon Hochherrr')),qtype(findkey('person:date_of_birth'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','seafood')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','museum')),qtype(findkey('name'))) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station')),qtype(latlong))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop'),keyval('wheelchair','yes')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','bus_stop')),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('railway','station'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb'))),qtype(count)) +query(north(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water')),qtype(least(topx(1)))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('stars','4')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','tennis')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(least(topx(5)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','McDonald's')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','speed_camera')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','african')),qtype(least(topx(1)))) +query(nwr(keyval('name','Marks & Spencer Food')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','dentist')),qtype(latlong(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','cinema'))),search(nwr(keyval('amenity','parking'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(nwr(keyval('artwork:group','berlin_bears')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('man_made','pier')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','library')),qtype(latlong)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('tourism','zoo'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','library')),qtype(least(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','pharmacy')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','golf_course')),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('historic','manor'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(findkey('name'))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'),keyval('cuisine','asian')),qtype(count)) +query(area(keyval('name','Sachsen')),nwr(keyval('generator:source','wind')),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','7e Arrondissement'))),search(nwr(keyval('shop','car'))),maxdist(DIST_INTOWN)),qtype(findkey('addr:street'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','taxi')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','theatre')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','miniature_golf')),qtype(least(topx(1)),latlong)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('sport','american_football'))),maxdist(DIST_DAYTRIP)),qtype(latlong)) +query(nwr(keyval('name','Edinburgh'),keyval('place','city')),qtype(findkey('name:fr'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Fischergasse'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'),keyval('denomination','protestant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry')),qtype(count)) +query(south(area(keyval('name','Montpellier')),nwr(keyval('sport','tennis'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','construction')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Edeka')),qtype(least(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','rugby')),qtype(latlong(topx(1)))) +query(around(center(area(keyval('name','Paris')),nwr(keyval('name','Tour Eiffel'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera'))),search(nwr(keyval('amenity','pharmacy'))),maxdist(WALKDING_DIST)),qtype(least(topx(1)))) +query(east(area(keyval('name','Dresden')),nwr(keyval('building','greenhouse'))),qtype(latlong)) +query(area(keyval('name','Osterode')),nwr(keyval('natural','spring')),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Lothian Road'))),search(nwr(keyval('amenity','fuel'),keyval('brand','Jet'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Castlehill'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','castle')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','pharmacy')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris')),nwr(keyval('building','cathedral'),keyval('name','Cathédrale Notre-Dame de Paris')),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('sport','scuba_diving'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(area(keyval('name','5e Arrondissement')),nwr(keyval('name','Rue d'Amboise')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','castle')),qtype(latlong)) +query(north(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','greek')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','police')),qtype(count)) +query(nwr(keyval('building','planned')),qtype(nodup(findkey('addr:city')))) +query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(findkey('name:ja'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','hospital')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','taxi')),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('building','cathedral')),qtype(latlong,findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','post_office')),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station'))),search(nwr(keyval('amenity','restaurant'),or(keyval('cuisine','italian'),keyval('cuisine','indian')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000')),qtype(findkey('name:ja'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','shelter')),qtype(nodup(findkey('shelter_type')))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('aeroway','aerodrome'),keyval('aerodrome','international'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(findkey('name'))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','4'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','table_tennis')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','animal_shelter')),qtype(least(topx(1)))) +query(west(area(keyval('name','Eure-et-Loir')),nwr(keyval('bridge','yes'))),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('railway','station'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','monument')),qtype(latlong(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tower:type','communication')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','pharmacy')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','living_street')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','car_sharing')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Sainsbury's')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','burger')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('internet_access','wlan')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tower:type','communication'),keyval('operator','O2')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(least(topx(1)))) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','restaurant'),keyval('cuisine','african'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','butcher')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','swimming')),qtype(least(topx(1)))) +query(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural')),qtype(least(topx(1)),count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('aeroway','helipad'))),qtype(least(topx(1)))) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'),keyval('railway','station'))),search(nwr(keyval('amenity','restaurant'),or(keyval('cuisine','italian'),keyval('cuisine','indian')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','shelter')),qtype(nodup(findkey('shelter_type')))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','cinema'))),maxdist(WALKDING_DIST)),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('man_made','pier')),qtype(latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('aeroway','aerodrome'),keyval('aerodrome','international'))),maxdist(DIST_OUTTOWN)),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','pharmacy')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'))),search(nwr(keyval('amenity','arts_centre'))),maxdist(DIST_INTOWN)),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('historic','tomb')),qtype(least(topx(13)))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(north(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(count)) +query(area(keyval('name','2e Arrondissement')),nwr(keyval('name','Boulevard de Sébastopol')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('stars','3')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('second_hand','only')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bank')),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','bakery')),qtype(latlong(topx(1)))) +query(area(keyval('name','Altstadt')),nwr(keyval('name','Plöck')),qtype(least(topx(1)))) +query(area(keyval('name','Hummelsbüttel')),nwr(keyval('historic','boundary_stone')),qtype(latlong,count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','kindergarten')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Palace of Holyroodhouse'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong,findkey('operator'))) +query(north(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(findkey('wikipedia'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Plöck')),qtype(findkey('surface'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('advertising','column'))),qtype(latlong)) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','public_bookcase')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','police')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water')),qtype(findkey('name'))) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','library')),qtype(count)) +query(area(keyval('name','Neuenheim')),nwr(keyval('name','Plöck')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','police')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','arts_centre')),qtype(findkey(and('name','website')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bar')),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','school'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel'),keyval('wheelchair','yes')),qtype(findkey('name',topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','theatre')),qtype(count)) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Newhaven Road'))),search(nwr(keyval('name','place_of_worship'),keyval('religion','christian'))),maxdist(DIST_INTOWN)),qtype(latlong)),for('walk')) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Maaßstraße')),qtype(findkey('surface'))) +query(around(center(nwr(keyval('name','Alaise'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Place de la République')),qtype(findkey('lanes'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'),keyval('denomination','catholic'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site')),qtype(latlong(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(east(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','hospital')),qtype(findkey('name'))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(west(area(keyval('name','York')),nwr(keyval('leisure','playground'))),qtype(latlong,count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(latlong,findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','taxi')),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('parking','yes')),qtype(findkey('name',topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Quai de Béthune'))),search(nwr(keyval('amenity','driving_school'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bar')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','charging_station')),qtype(latlong)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','14e Arrondissement'))),search(nwr(keyval('amenity','townhall'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Montpellier')),nwr(keyval('sport','tennis')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fire_station')),qtype(latlong)) +query(area(keyval('name','Bretagne')),nwr(keyval('craft','brewery')),qtype(count,latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Starbucks')),qtype(latlong)) +query(area(keyval('name','Dresden')),nwr(keyval('junction','roundabout')),qtype(count,findkey('name'))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('railway','station'))),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('tourism','museum')),qtype(findkey('website'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','motorway')),qtype(nodup(findkey('int_ref')))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','vineyard'))),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','speed_camera')),qtype(latlong)) +dist(query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Hbf'),keyval('railway','station'))),search(nwr(keyval('amenity','charging_station'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(latlong))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','pizza'),keyval('name','Pizzeria Venezia')),qtype(findkey('internet_access'))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak'))),search(nwr(keyval('information','map'),keyval('hiking','yes'))),maxdist(WALKDING_DIST)),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','swimming')),qtype(findkey('name'))) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(north(area(keyval('name','Delmenhorst')),nwr(keyval('memorial:type','stolperstein'))),qtype(latlong)) +query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(findkey('population'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','spring')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','italian')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('recycling:glass','yes')),qtype(latlong)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('shop','car'),keyval('operator','Mercedes'))),maxdist(DIST_OUTTOWN)),qtype(latlong(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Vue'))),search(nwr(keyval('amenity','fountain'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(nwr(keyval('addr:city','Neuler')),qtype(nodup(findkey('addr:street')))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('landuse','cemetery'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Die Kamera')),qtype(findkey('website'))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','*')),qtype(findkey('operator'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(findkey('name',topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(or(keyval('amenity','restaurant'),keyval('amenity','bar')))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','defibrillator')),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','school'))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Hôtel Victoria Châtelet')),qtype(findkey('website'))) +query(north(area(keyval('name','Bayern')),nwr(keyval('historic','memorial'))),qtype(latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','electrician')),qtype(count)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','driving_school'))),qtype(findkey(and('name','phone')))) +query(nwr(keyval('artwork_type','mural')),qtype(latlong)) +query(area(keyval('name','Deutschland')),nwr(keyval('name','Pet Cemetery')),qtype(count)) +query(north(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Chapelle Saint-Bernard')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Chapelle Sainte-Marie')),qtype(latlong))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','memorial'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','rowing')),qtype(least(topx(1)))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','14e Arrondissement'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN)),qtype(count)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('second_hand','only'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','skateboard')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bar')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','taxi')),qtype(latlong)) +query(area(keyval('name','Wieblingen')),nwr(keyval('name','Maaßstraße')),qtype(least(topx(1)))) +query(north(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Bismarckplatz'),keyval('highway','bus_stop'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(area(keyval('name','Deutschland')),nwr(keyval('amenity','exhibition_center')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','university')),qtype(count)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('tourism','zoo'))),maxdist(DIST_DAYTRIP)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey('website'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(5000)),qtype(count)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(west(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('cuisine','japanese')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','tomb')),qtype(findkey(and('name','wikipedia')))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(5000)),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Haymarket'),keyval('railway','station'))),search(nwr(keyval('amenity','*'))),maxdist(DIST_INTOWN)),qtype(latlong)) +query(south(area(keyval('name','York')),nwr(keyval('leisure','playground'))),qtype(latlong,count)) +query(nwr(keyval('name','Edinburgh'),keyval('place','city')),qtype(findkey('population'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','soccer')),qtype(latlong)) +query(south(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','tennis')),qtype(least(topx(2)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','muslim')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','school')),qtype(count)) +query(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('sport','cliff_diving'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Restalrig'))),search(nwr(keyval('amenity','school'))),maxdist(DIST_INTOWN)),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','bakery')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','drinking_water')),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','place_of_worship'),keyval('religion','buddhist')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fountain')),qtype(latlong,count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','*')),qtype(nodup(findkey('landuse')))) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Don Robert')),qtype(latlong))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','car_sharing')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','italian'),keyval('name','Roseto')),qtype(findkey('addr:street'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','picnic_site')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','camp_site')),qtype(findkey('name'))) +query(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre')),qtype(findkey('phone'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('information','map'),keyval('hiking','yes')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(findkey('wikipedia'))) +dist(query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée')),qtype(latlong)),query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Bastille'),keyval('railway','station')),qtype(latlong))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Tesco')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','swimming')),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(count)) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('amenity','pharmacy'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Palais de l’Élysée'))),search(nwr(keyval('tourism','hotel'))),maxdist(WALKDING_DIST)),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tower:type','communication'),keyval('name','Fernsehturm Heidelberg')),qtype(findkey('operator'))) +query(area(keyval('name','Stuttgart')),nwr(or(keyval('amenity','toilets'),keyval('amenity','playground'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('ruins','yes')),qtype(findkey(and('name','wikipedia')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','cinema')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant')),qtype(nodup(findkey('cuisine')))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('amenity','bank'),keyval('atm','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong,findkey('operator'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','arts_centre')),qtype(least(topx(1)),count,latlong)) +query(area(keyval('name','Île-de-France')),nwr(keyval('station','subway'),keyval('wheelchair','yes')),qtype(least(topx(1)))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(findkey('addr:city'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','shoemaker')),qtype(least(topx(1)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','quarry'))),qtype(count)) +query(around(center(nwr(keyval('name','Alaise'))),search(nwr(keyval('amenity','post_box'))),maxdist(DIST_INTOWN)),qtype(findkey('operator'))) +query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(findkey('population'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fire_station')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','planetarium')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','police')),qtype(latlong)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','INF 325'))),search(nwr(keyval('amenity','restaurant'))),maxdist(DIST_INTOWN)),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking')),qtype(least(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','miniature_golf'))),qtype(count)) +query(south(area(keyval('name','Bayern')),nwr(keyval('historic','memorial'))),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','swimming')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('second_hand','only')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Princes Street'))),search(nwr(keyval('amenity','kindergarten'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','animal_shelter')),qtype(least(topx(2)))) +query(south(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','museum')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(latlong)) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fuel'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fire_station')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(latlong,findkey('name'))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','drinking_water'))),qtype(latlong)) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('aeroway','helipad')),qtype(least(topx(1)))) +query(area(keyval('name','Bonn')),nwr(keyval('addr:street','Sternstraße')),qtype(findkey('shop'))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel')),qtype(latlong,findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','motorway'),keyval('ref','M8')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes'),keyval('bicycle_parking','lockers')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fire_station')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','dentist')),qtype(latlong(topx(1)))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('amenity','planetarium'))),maxdist(DIST_OUTTOWN)),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','spring')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','museum')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('operator','Apex Hotels')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','McDonald's')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Zizzi')),qtype(findkey('wheelchair'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','tomb')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('highway','traffic_signals')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel')),qtype(latlong,nodup(findkey('brand')))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(north(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('amenity','toilets'))),maxdist(WALKDING_DIST))),qtype(latlong)) +query(area(keyval('name','York')),nwr(keyval('leisure','playground')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('name','Sainsbury's Local'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('opening_hours'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Restalrig'))),search(nwr(keyval('amenity','townhall'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fuel')),qtype(latlong,nodup(findkey('brand')))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','post_office'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','defibrillator')),qtype(latlong)) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('aeroway','aerodrome'))),maxdist(50000)),qtype(latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank'))),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','parking'),keyval('parking','underground')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','italian')),qtype(latlong)) +query(south(around(center(nwr(keyval('name','Paris'),keyval('place','city'))),search(nwr(keyval('place','town'))),maxdist(DIST_OUTTOWN))),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','seafood')),qtype(least(topx(1)))) +query(nwr(keyval('name','Paris'),keyval('place','city')),qtype(findkey('population'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(latlong,findkey('name'))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','caravan_site'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','peak')),qtype(findkey('name'))) +query(west(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant'),keyval('cuisine','greek')),qtype(count)) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),qtype(least(topx(1)))) +query(area(keyval('name','San Francisco')),nwr(keyval('highway','bus_stop')),qtype(least(topx(30)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental')),qtype(findkey(and('website','phone')))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','theatre')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','books')),qtype(findkey('name'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','picnic_site')),qtype(least(topx(5)))) +query(area(keyval('name','Paris')),nwr(keyval('building','cathedral')),qtype(least(topx(1)))) +query(area(keyval('name','Adendorf')),nwr(keyval('emergency','fire_hydrant'),keyval('fire_hydrant:type','underground')),qtype(count,latlong)) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(least(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site'))),qtype(findkey('name'))) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','bar'))),search(nwr(keyval('highway','bus_stop'))),maxdist(400)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','theatre')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('leisure','swimming_pool')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tower:type','communication')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('historic','archaeological_site')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Hotel Schönberger Hof')),qtype(findkey('addr:street'))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','table_tennis')),qtype(latlong)) +query(north(area(keyval('name','Lyon')),nwr(keyval('artwork_type','mural'))),qtype(latlong,findkey('name'))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('cuisine','fish_and_chips'))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Edinburgh Waverley'))),search(nwr(keyval('historic','*'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('sport','table_tennis')),qtype(least(topx(2)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','fire_station')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','hotel'),keyval('wheelchair','yes')),qtype(findkey('name',topx(1)))) +query(south(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','kindergarten'),keyval('name','The Edinburgh Nursery')),qtype(least(topx(1)))) +query(east(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','viewpoint'),keyval('wheelchair','yes')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('emergency','phone')),qtype(least(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','viewpoint')),qtype(count)) +query(north(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('religion','muslim'))),maxdist(DIST_OUTTOWN))),qtype(least(topx(1)))) +query(north(area(keyval('name','Paris')),nwr(keyval('amenity','arts_centre'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Tour Eiffel')),qtype(findkey('architect'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Rue Fragonard'))),search(nwr(keyval('historic','memorial'))),maxdist(DIST_INTOWN),topx(1)),qtype(findkey('name'),latlong)) +query(nwr(keyval('craft','distillery')),qtype(findkey('website'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes'))),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('building','apartments')),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel')),qtype(least(topx(10)))) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_rental'))),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','table_tennis')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('craft','*')),qtype(nodup(findkey('craft')))) +query(around(center(nwr(keyval('name','Heidelberg'),keyval('de:amtlicher_gemeindeschluessel','08221000'))),search(nwr(keyval('historic','manor'))),maxdist(DIST_DAYTRIP)),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','restaurant')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','camp_site')),qtype(findkey('name'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('highway','speed_camera')),qtype(latlong)) +query(nwr(keyval('Schalansky_ref','*')),qtype(findkey('wikipedia'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','embassy')),qtype(count)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(and(keyval('shop','bakery'),keyval('shop','butcher'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','camp_site')),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','hospital')),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('sport','bmx')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','theatre'),keyval('wheelchair','yes')),qtype(findkey('name'))) +query(area(keyval('name','Hohenlohekreis')),nwr(keyval('leisure','nature_reserve')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('historic','archaeological_site')),qtype(findkey('site_type'))) +query(east(area(keyval('name','Paris')),nwr(keyval('historic','tomb'))),qtype(count)) +query(east(area(keyval('name','Berlin')),nwr(keyval('amenity','restaurant'))),qtype(count)) +query(area(keyval('name','Hohenlohekreis')),nwr(keyval('leisure','nature_reserve')),qtype(findkey('name'),latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('natural','peak')),qtype(findkey('name'))) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Fischergasse'))),search(nwr(keyval('amenity','bicycle_parking'),keyval('covered','yes'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('ruins','yes')),qtype(least(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bicycle_parking')),qtype(least(topx(1)))) +dist(query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','St. Laurentius')),qtype(latlong)),query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Kirche Jesu Christi')),qtype(latlong))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('cuisine','burger')),qtype(nodup(findkey('name')))) +query(south(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('landuse','cemetery'))),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('shop','supermarket')),qtype(count)) +query(south(area(keyval('name','Languedoc-Roussillon')),nwr(keyval('natural','peak'))),qtype(count)) +query(around(center(nwr(keyval('name','City of Edinburgh'))),search(nwr(keyval('historic','manor'))),maxdist(DIST_DAYTRIP),topx(1)),qtype(findkey('name'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','fuel')),qtype(latlong)) +dist(query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','High Street'))),search(nwr(keyval('shop','supermarket'),or(keyval('organic','only'),keyval('organic','yes')))),maxdist(WALKDING_DIST)),qtype(latlong)),for('car')) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','hotel'),keyval('parking','yes')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('amenity','place_of_worship'),keyval('religion','christian')),qtype(findkey('name'))) +query(around(center(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Avenue des Ternes'))),search(nwr(keyval('amenity','fuel'),keyval('brand','Esso'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('tourism','hotel')),qtype(least(topx(10)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','bicycle_parking')),qtype(count)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('highway','construction')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Monoprix')),qtype(latlong(topx(1)))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','university')),qtype(least(topx(1)))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('aeroway','helipad')),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Haymarket'),keyval('railway','station'))),search(nwr(keyval('amenity','*'))),maxdist(DIST_INTOWN)),qtype(nodup(findkey('amenity')))) +query(west(area(keyval('name','Île-de-France')),nwr(keyval('station','subway'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('historic','archaeological_site')),qtype(findkey('name'))) +query(east(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('amenity','fast_food'))),qtype(count)) +query(around(center(area(keyval('name','City of Edinburgh')),nwr(keyval('name','Princes Street'))),search(nwr(keyval('amenity','bicycle_parking'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(east(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('leisure','swimming_pool'))),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('tourism','hotel'))),maxdist(WALKDING_DIST)),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('natural','peak')),qtype(count)) +query(around(center(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberger Schloss'))),search(nwr(keyval('memorial:type','stolperstein'))),maxdist(DIST_INTOWN)),qtype(count)) +query(area(keyval('name','Paris')),nwr(keyval('name','Basilique du Sacré-Cœur')),qtype(findkey('roof:colour'))) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','pharmacy')),qtype(count)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Le Robinet d'Or')),qtype(findkey('star'))) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry')),qtype(latlong)) +query(north(area(keyval('name','City of Edinburgh')),nwr(keyval('building','cathedral'))),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('amenity','bank'),keyval('wheelchair','yes')),qtype(latlong)) +query(area(keyval('name','City of Edinburgh')),nwr(keyval('tourism','attraction')),qtype(latlong(topx(1)))) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('sport','skateboard')),qtype(count)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('tourism','artwork')),qtype(count)) +query(south(area(keyval('name','Osterode')),nwr(keyval('natural','spring'))),qtype(count)) +query(around(center(area(keyval('name','Witten')),nwr(keyval('name','Witten Hbf'))),search(nwr(keyval('social_facility:for','migrant'))),maxdist(DIST_INTOWN),topx(1)),qtype(latlong)) +query(area(keyval('name','Paris'),keyval('is_in:country','France')),nwr(keyval('name','Hôtel Victoria Châtelet')),qtype(findkey('phone'))) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('bridge','*'))),qtype(count,latlong)) +query(west(area(keyval('name','City of Edinburgh')),nwr(keyval('landuse','quarry'))),qtype(least(topx(1)))) +query(north(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('natural','spring'))),qtype(latlong)) +query(south(area(keyval('name','Paris')),nwr(keyval('tourism','museum'))),qtype(latlong)) +query(area(keyval('name','Heidelberg'),keyval('de:place','city')),nwr(keyval('name','Heidelberg Marriott Hotel')),qtype(findkey('restaurant'))) diff --git a/smtsemparsecpp/src/name_lexicon/lfs.h b/smtsemparsecpp/src/name_lexicon/lfs.h new file mode 100644 index 000000000..7ef88f0b4 --- /dev/null +++ b/smtsemparsecpp/src/name_lexicon/lfs.h @@ -0,0 +1,56 @@ +/* + * lfs.h for libdivsufsort + * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following + * conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + */ + +#ifndef _LFS_H +#define _LFS_H 1 + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +#ifndef __STRICT_ANSI__ +# define LFS_OFF_T off_t +# define LFS_FOPEN fopen +# define LFS_FTELL ftello +# define LFS_FSEEK fseeko +# define LFS_PRId PRIdMAX +#else +# define LFS_OFF_T long +# define LFS_FOPEN fopen +# define LFS_FTELL ftell +# define LFS_FSEEK fseek +# define LFS_PRId "ld" +#endif +#ifndef PRIdOFF_T +# define PRIdOFF_T LFS_PRId +#endif + + +#ifdef __cplusplus +} /* extern "C" */ +#endif /* __cplusplus */ + +#endif /* _LFS_H */ diff --git a/smtsemparsecpp/src/name_lexicon/mksary.c b/smtsemparsecpp/src/name_lexicon/mksary.c new file mode 100644 index 000000000..334c6bbec --- /dev/null +++ b/smtsemparsecpp/src/name_lexicon/mksary.c @@ -0,0 +1,174 @@ +/* + * mksary.c for libdivsufsort + * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following + * conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + */ + +# include +# include +# include +# include +# include +# include +# include +# include +# include +# include "lfs.h" + + +static +void +print_help(const char *progname, int status) { + fprintf(stderr, + "mksary, a simple suffix array builder, version %s.\n", + divsufsort_version()); + fprintf(stderr, "usage: %s INFILE OUTFILE\n\n", progname); + exit(status); +} + +int +main(int argc, const char *argv[]) { + FILE *fp, *ofp; + const char *fname, *ofname; + sauchar_t *T; + saidx_t *SA; + LFS_OFF_T n; + clock_t start, finish; + saint_t needclose = 3; + + /* Check arguments. */ + if((argc == 1) || + (strcmp(argv[1], "-h") == 0) || + (strcmp(argv[1], "--help") == 0)) { print_help(argv[0], 0); } + if(argc != 3) { print_help(argv[0], 1); } + + /* Open a file for reading. */ + if(strcmp(argv[1], "-") != 0) { +#if HAVE_FOPEN_S + if(fopen_s(&fp, fname = argv[1], "rb") != 0) { +#else + if((fp = LFS_FOPEN(fname = argv[1], "rb")) == NULL) { +#endif + fprintf(stderr, "%s: Cannot open file `%s': ", argv[0], fname); + perror(NULL); + exit(EXIT_FAILURE); + } + } else { +#if HAVE__SETMODE && HAVE__FILENO + if(_setmode(_fileno(stdin), _O_BINARY) == -1) { + fprintf(stderr, "%s: Cannot set mode: ", argv[0]); + perror(NULL); + exit(EXIT_FAILURE); + } +#endif + fp = stdin; + fname = "stdin"; + needclose ^= 1; + } + + /* Open a file for writing. */ + if(strcmp(argv[2], "-") != 0) { +#if HAVE_FOPEN_S + if(fopen_s(&ofp, ofname = argv[2], "wb") != 0) { +#else + if((ofp = LFS_FOPEN(ofname = argv[2], "wb")) == NULL) { +#endif + fprintf(stderr, "%s: Cannot open file `%s': ", argv[0], ofname); + perror(NULL); + exit(EXIT_FAILURE); + } + } else { +#if HAVE__SETMODE && HAVE__FILENO + if(_setmode(_fileno(stdout), _O_BINARY) == -1) { + fprintf(stderr, "%s: Cannot set mode: ", argv[0]); + perror(NULL); + exit(EXIT_FAILURE); + } +#endif + ofp = stdout; + ofname = "stdout"; + needclose ^= 2; + } + + /* Get the file size. */ + if(LFS_FSEEK(fp, 0, SEEK_END) == 0) { + n = LFS_FTELL(fp); + rewind(fp); + if(n < 0) { + fprintf(stderr, "%s: Cannot ftell `%s': ", argv[0], fname); + perror(NULL); + exit(EXIT_FAILURE); + } + if(0x7fffffff <= n) { + fprintf(stderr, "%s: Input file `%s' is too big.\n", argv[0], fname); + exit(EXIT_FAILURE); + } + } else { + fprintf(stderr, "%s: Cannot fseek `%s': ", argv[0], fname); + perror(NULL); + exit(EXIT_FAILURE); + } + + /* Allocate 5blocksize bytes of memory. */ + T = (sauchar_t *)malloc((size_t)n * sizeof(sauchar_t)); + SA = (saidx_t *)malloc((size_t)n * sizeof(saidx_t)); + if((T == NULL) || (SA == NULL)) { + fprintf(stderr, "%s: Cannot allocate memory.\n", argv[0]); + exit(EXIT_FAILURE); + } + + /* Read n bytes of data. */ + if(fread(T, sizeof(sauchar_t), (size_t)n, fp) != (size_t)n) { + fprintf(stderr, "%s: %s `%s': ", + argv[0], + (ferror(fp) || !feof(fp)) ? "Cannot read from" : "Unexpected EOF in", + fname); + perror(NULL); + exit(EXIT_FAILURE); + } + if(needclose & 1) { fclose(fp); } + + /* Construct the suffix array. */ + fprintf(stderr, "%s: %" PRIdOFF_T " bytes ... ", fname, n); + start = clock(); + if(divsufsort(T, SA, (saidx_t)n) != 0) { + fprintf(stderr, "%s: Cannot allocate memory.\n", argv[0]); + exit(EXIT_FAILURE); + } + finish = clock(); + fprintf(stderr, "%.4f sec\n", (double)(finish - start) / (double)CLOCKS_PER_SEC); + + /* Write the suffix array. */ + if(fwrite(SA, sizeof(saidx_t), (size_t)n, ofp) != (size_t)n) { + fprintf(stderr, "%s: Cannot write to `%s': ", argv[0], ofname); + perror(NULL); + exit(EXIT_FAILURE); + } + if(needclose & 2) { fclose(ofp); } + + /* Deallocate memory. */ + free(SA); + free(T); + + return 0; +} diff --git a/smtsemparsecpp/src/name_lexicon/nominatim_check.cc b/smtsemparsecpp/src/name_lexicon/nominatim_check.cc new file mode 100644 index 000000000..a16850e31 --- /dev/null +++ b/smtsemparsecpp/src/name_lexicon/nominatim_check.cc @@ -0,0 +1,56 @@ +#include +#include +#include +#include + +#include + +#include "nominatim_check.h" + +using namespace std; + +NominatimCheck::NominatimCheck(const char* url, int to) : requester(url, to) { } + +int NominatimCheck::protect_sentence_for_nominatim(string* ptr_sentence, string* ptr_parallel_sentence) { + string& sentence = (*ptr_sentence); + vector words; + boost::split(words, sentence, boost::is_any_of(" ")); + vector parallel_words; + if(ptr_parallel_sentence!=NULL){ + string& parallel_sentence = (*ptr_parallel_sentence); + boost::split(parallel_words, parallel_sentence, boost::is_any_of(" ")); + if(words.size() != parallel_words.size()){ cerr << "Parallel sentences need to have same number of words" << endl; exit(1);} + } + stringstream ss_assemble; + stringstream ss_assemble_parallel; + bool first = true; + int count = 0; + for(auto it = words.begin(); it != words.end(); ++it,++count){ + stringstream input; + input << "" << (*it) << ""; + const char* result = requester.request_for_sentence(input.str().c_str()); + //cerr << "words: " << input.str() << " : " << result << endl; + if(first){ + first = false; + } else { + ss_assemble << " "; + ss_assemble_parallel << " "; + } + if((*result)=='1'){ + ss_assemble << "{nominatim:" << (*it) << "}"; + if(ptr_parallel_sentence!=NULL){ + ss_assemble_parallel << "{nominatim:" << parallel_words[count] << "}"; + } + } else { + ss_assemble << (*it); + if(ptr_parallel_sentence!=NULL){ + ss_assemble_parallel << parallel_words[count]; + } + } + } + sentence = ss_assemble.str(); + if(ptr_parallel_sentence!=NULL){ + (*ptr_parallel_sentence) = ss_assemble_parallel.str(); + } + return 0; +} diff --git a/smtsemparsecpp/src/name_lexicon/nominatim_check.h b/smtsemparsecpp/src/name_lexicon/nominatim_check.h new file mode 100644 index 000000000..1d6afe524 --- /dev/null +++ b/smtsemparsecpp/src/name_lexicon/nominatim_check.h @@ -0,0 +1,25 @@ +#ifndef NOMINATIM_CHECK_H +#define NOMINATIM_CHECK_H + +#include "../name_lexicon/sa_request.h" + + +using namespace std; + + + /** + * Data structure that can request grammar from the extract_daemon + */ +class NominatimCheck { + public: + // Sets up a Requester that will connect to the supplied url + NominatimCheck(const char *url, int to = 10000); + + int protect_sentence_for_nominatim(string* ptr_sentence, string* ptr_parallel_sentence = NULL); + + private: + SARequester requester; + int timeout; +}; + +#endif diff --git a/smtsemparsecpp/src/name_lexicon/run_nominatim_check.cc b/smtsemparsecpp/src/name_lexicon/run_nominatim_check.cc new file mode 100644 index 000000000..1183ef3d4 --- /dev/null +++ b/smtsemparsecpp/src/name_lexicon/run_nominatim_check.cc @@ -0,0 +1,51 @@ +#ifndef RUN_SPELL_CHECK_CC +#define RUN_SPELL_CHECK_CC + +#include "nominatim_check.cc" +#include "../parser/extractor.cc" + +#include + +#include +#include + +// bin/run_nominatim_check -n "ipc:///tmp/sa_daemon_test.ipc" -s "How many McDonald's are there in Frankenthal ?" +int main(int argc, char** argv) { + + try { + namespace po = boost::program_options; + po::options_description desc("Options"); + desc.add_options() + ("help", "Print help messages") + ("stringcheck,s", po::value()->required(), "The string to be checked") + ("nominatim_check_adress,n", po::value()->required(), "Suffix array daemon's address"); + + po::variables_map vm; + try { + po::store(po::parse_command_line(argc, argv, desc), vm); + if(vm.count("help")) { + cout << desc << endl; + return 0; + } + po::notify(vm); + } catch(po::error& e) { + cerr << "ERROR: " << e.what() << endl << endl; + cerr << desc << endl; + return 1; + } + + NominatimCheck nom(vm["nominatim_check_adress"].as().c_str()); + string nl = vm["stringcheck"].as(); + smt_semparse::tokenise(nl); + nom.protect_sentence_for_nominatim(&nl); + cout << nl << endl; + } + catch(exception& e) { + cerr << e.what() << endl; + return 1; + } + + return 0; +} + +#endif diff --git a/smtsemparsecpp/src/name_lexicon/sa_daemon.cc b/smtsemparsecpp/src/name_lexicon/sa_daemon.cc new file mode 100644 index 000000000..e88764642 --- /dev/null +++ b/smtsemparsecpp/src/name_lexicon/sa_daemon.cc @@ -0,0 +1,216 @@ +/* + * sasearch.c for libdivsufsort + * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following + * conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + */ + +# include "config.h" +# include +# include +# include +# include +# include +# include +# include +# include +# include +# include "lfs.h" + +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +static +void +print_help(const char *progname, int status) { + fprintf(stderr, + "sadaemon, a daemon to search a suffix array file %s\n", + divsufsort_version()); + fprintf(stderr, "usage: %s FILE SAFILE\n\n", progname); + exit(status); +} + +//bin/sa_daemon name_lexicon_uniq_mod sa_name_lexicon + +int +main(int argc, const char *argv[]) { + FILE *fp; + const char *P; + sauchar_t *T; + saidx_t *SA; + LFS_OFF_T n; + size_t Psize; + saidx_t size, left; + clock_t start, finish; + clock_t start2, finish2; + + if((argc == 1) || + (strcmp(argv[1], "-h") == 0) || + (strcmp(argv[1], "--help") == 0)) { print_help(argv[0], 0); } + if(argc != 3) { print_help(argv[0], 1); } + + ofstream log_file; + log_file.open("sa_daemon.log"); + + pid_t pid, sid; + pid = fork(); + if (pid < 0) { + exit(EXIT_FAILURE); + } + if (pid > 0) { + exit(EXIT_SUCCESS); + } + sid = setsid(); + if (sid < 0) { + exit(EXIT_FAILURE); + } + close(STDIN_FILENO); + close(STDOUT_FILENO); + close(STDERR_FILENO); + + log_file << "SID: " << sid << " (to kill me type \"kill " << sid << "\" on command line or \"killall run_extract_daemon\" to kill all instances)" << endl; + log_file << "Starting up...Please do not send any requests yet" << endl; + + string url = "ipc:///tmp/sa_daemon_test.ipc"; + int socket = nn_socket(AF_SP, NN_REP); + assert(socket >= 0); + assert(nn_bind(socket, url.c_str()) >= 0); + + start = clock(); + /* Open a file for reading. */ +#if HAVE_FOPEN_S + if(fopen_s(&fp, argv[1], "rb") != 0) { +#else + if((fp = LFS_FOPEN(argv[1], "rb")) == NULL) { +#endif + fprintf(stderr, "%s: Cannot open file `%s': ", argv[0], argv[1]); + perror(NULL); + exit(EXIT_FAILURE); + } + + /* Get the file size. */ + if(LFS_FSEEK(fp, 0, SEEK_END) == 0) { + n = LFS_FTELL(fp); + rewind(fp); + if(n < 0) { + fprintf(stderr, "%s: Cannot ftell `%s': ", argv[0], argv[1]); + perror(NULL); + exit(EXIT_FAILURE); + } + } else { + fprintf(stderr, "%s: Cannot fseek `%s': ", argv[0], argv[1]); + perror(NULL); + exit(EXIT_FAILURE); + } + + /* Allocate 5n bytes of memory. */ + T = (sauchar_t *)malloc((size_t)n * sizeof(sauchar_t)); + SA = (saidx_t *)malloc((size_t)n * sizeof(saidx_t)); + if((T == NULL) || (SA == NULL)) { + fprintf(stderr, "%s: Cannot allocate memory.\n", argv[0]); + exit(EXIT_FAILURE); + } + + /* Read n bytes of data. */ + if(fread(T, sizeof(sauchar_t), (size_t)n, fp) != (size_t)n) { + fprintf(stderr, "%s: %s `%s': ", + argv[0], + (ferror(fp) || !feof(fp)) ? "Cannot read from" : "Unexpected EOF in", + argv[1]); + perror(NULL); + exit(EXIT_FAILURE); + } + fclose(fp); + + /* Open the SA file for reading. */ +#if HAVE_FOPEN_S + if(fopen_s(&fp, argv[2], "rb") != 0) { +#else + if((fp = LFS_FOPEN(argv[2], "rb")) == NULL) { +#endif + fprintf(stderr, "%s: Cannot open file `%s': ", argv[0], argv[2]); + perror(NULL); + exit(EXIT_FAILURE); + } + + /* Read n * sizeof(saidx_t) bytes of data. */ + if(fread(SA, sizeof(saidx_t), (size_t)n, fp) != (size_t)n) { + fprintf(stderr, "%s: %s `%s': ", + argv[0], + (ferror(fp) || !feof(fp)) ? "Cannot read from" : "Unexpected EOF in", + argv[2]); + perror(NULL); + exit(EXIT_FAILURE); + } + fclose(fp); + finish = clock(); + fprintf(stderr, "read: %.4f sec\n", (double)(finish - start) / (double)CLOCKS_PER_SEC); + double time_startup = (double)(finish - start) / (double)CLOCKS_PER_SEC; + log_file << "Start up took " << time_startup << " seconds." << endl; + + + int count = 0; + while(1){ + start2 = clock(); + log_file << "Ready to receive requests" << endl; + char *buf = NULL; + int bytes = nn_recv(socket, &buf, NN_MSG, 0); + assert (bytes >= 0); + P = buf; + Psize = strlen(P); + + /* Search and print */ + size = sa_search(T, (saidx_t)n, + (const sauchar_t *)P, (saidx_t)Psize, + SA, (saidx_t)n, &left); + + const char *output; + if(size>0){ + log_file << "yes" << endl; + output = "1"; + } else { + log_file << "no" << endl; + output = "0"; + } + int size_msg = strlen(output) + 1; // '\0' too + bytes = nn_send(socket, output, size_msg, 0); + assert(bytes == size_msg); + + finish2 = clock(); + double time_search = (double)(finish2 - start2) / (double)CLOCKS_PER_SEC; + log_file << "Search number " << count << " took " << time_search << " seconds." << endl; + count++; + } + + /* Deallocate memory. */ + free(SA); + free(T); + + return 0; +} diff --git a/smtsemparsecpp/src/name_lexicon/sa_request.cc b/smtsemparsecpp/src/name_lexicon/sa_request.cc new file mode 100644 index 000000000..ad70a4304 --- /dev/null +++ b/smtsemparsecpp/src/name_lexicon/sa_request.cc @@ -0,0 +1,38 @@ +#include "sa_request.h" + +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +SARequester::SARequester(const char* url, int to) { + socket = nn_socket(AF_SP, NN_REQ); + assert(socket >= 0); + assert(nn_connect(socket, url) >= 0); + timeout = to; + int return_number_rcv = nn_setsockopt(socket, NN_SOL_SOCKET, NN_RCVTIMEO, &timeout, sizeof(timeout)); + assert(return_number_rcv == 0); +} + +SARequester::~SARequester() { + nn_shutdown(socket, 0); +} + +const char* SARequester::request_for_sentence(const char* sentence){ + int size_sentence = strlen(sentence) + 1; + int bytes = nn_send(socket, sentence, size_sentence, 0); + assert(bytes == size_sentence); + char *buf = NULL; + bytes = nn_recv(socket, &buf, NN_MSG, 0); + assert(bytes >= 0); + if(!(bytes >= 0)){ + cerr << "The suffix array daemon is not available or took longer than " << (timeout/100) << " seconds" << endl; + } + return buf; +} diff --git a/smtsemparsecpp/src/name_lexicon/sa_request.h b/smtsemparsecpp/src/name_lexicon/sa_request.h new file mode 100644 index 000000000..104bc2937 --- /dev/null +++ b/smtsemparsecpp/src/name_lexicon/sa_request.h @@ -0,0 +1,25 @@ +#ifndef SA_REQUEST_H +#define SA_REQUEST_H + + +using namespace std; + + + /** + * Data structure that can request grammar from the extract_daemon + */ +class SARequester { + public: + // Sets up a Requester that will connect to the supplied url + SARequester(const char *url, int to = 10000); + + ~SARequester(); + + const char* request_for_sentence(const char *sentence); + + private: + int socket; + int timeout; +}; + +#endif diff --git a/smtsemparsecpp/src/name_lexicon/sa_request_test.cc b/smtsemparsecpp/src/name_lexicon/sa_request_test.cc new file mode 100644 index 000000000..f55bc7424 --- /dev/null +++ b/smtsemparsecpp/src/name_lexicon/sa_request_test.cc @@ -0,0 +1,13 @@ +#include + +#include "sa_request.h" + +using namespace std; + +int main(int argc, char** argv) { + SARequester requester("ipc:///tmp/sa_daemon_test.ipc"); + cout << requester.request_for_sentence("SSSSSHeidelbergEEEEE") << endl; + cout << requester.request_for_sentence("SSSSSZentrum für Molekulare Biologie HeidelbergEEEEE") << endl; + cout << requester.request_for_sentence("SSSSSHeidelbergasdfawerqwerfsdafgasEEEEE") << endl; + return 0; +} diff --git a/smtsemparsecpp/src/parser/decode_test.cc b/smtsemparsecpp/src/parser/decode_test.cc new file mode 100644 index 000000000..c9cdce50f --- /dev/null +++ b/smtsemparsecpp/src/parser/decode_test.cc @@ -0,0 +1,251 @@ +#ifndef PARSE_NL_FILE_CC +#define PARSE_NL_FILE_CC + +#include "parse_nl.h" +#include "smt_semparse_config.h" +#include "functionalizer.cc" +#include "ff_register.h" +#include "decoder.h" + +#include "interpret.cc" +#include "linearise.cc" +#include "nlmaps_query.h" + +#include +#include +#include +#include "boost/program_options.hpp" +#include +#include + +using namespace std; + +namespace fs = boost::filesystem; + + +//test file needs to be preprocessed & grammar extracted +//assumes a preprocessed test file test.nl, an non_stemmed test file test.nostem.nl and +//a file with grammar links test.inline.nl +/*./decode_test \ + -d /workspace/osm/overpass/db/ \ + -m /workspace/osm/cdec/smtsemparsecpp/work/2015-11-10T19.44.12 \ + -p hyp.question \ + -a hyp.answers \ + -o hyp.latlong \ + -l hyp.mrls*/ +// ./decode_test -d /workspace/osm/overpass/db/ -m /workspace/osm/cdec/smtsemparsecpp/work// -a answers -l mrls -p question -o latlong +int main(int argc, char** argv) { + + try { + namespace po = boost::program_options; + po::options_description desc("Options"); + desc.add_options() + ("help", "Print help messages") + ("db_dir,d", po::value()->required(), "(Full) database directory path") + ("model,m", po::value()->required(), "(Full) parser model directory path") + ("print,p", po::value()->default_value(""), "Query file's output path") + ("answer,a", po::value()->required(), "Answer file's output path") + ("latlong,o", po::value()->default_value(""), "Latlong file's output path") + ("mrl,l", po::value()->default_value(""), "mrl file's output path") + ("settings,s", po::value()->default_value(""), "settings path"); + + po::variables_map vm; + try { + po::store(po::parse_command_line(argc, argv, desc), vm); + if(vm.count("help")) { + cout << desc << endl; + return 0; + } + po::notify(vm); + } catch(po::error& e) { + cerr << "ERROR: " << e.what() << endl << endl; + cerr << desc << endl; + return 1; + } + + string nl; + string db_dir = vm["db_dir"].as(); // /workspace/osm/overpass/db + string model = vm["model"].as(); // /workspace/osm/smt-semparse/work/cdec_train_test/intersect_stem_mert_@_pp.l.w + vector stemmed_lines; + vector nonstemmed_lines; + vector grammar_lines; + + ifstream nl_file_stemmed(model+"/test.nl"); + if (!nl_file_stemmed.is_open()){ + cerr << "The following file does not exist: test.nl in " << model << endl; + exit (EXIT_FAILURE); + } + while(getline(nl_file_stemmed, nl)){ + stemmed_lines.push_back(nl); + } + nl_file_stemmed.close(); + + ifstream nl_file_nonstemmed(model+"/test.nostem.nl"); + if (!nl_file_nonstemmed.is_open()){ + cerr << "The following file does not exist: test.nostem.nl in " << model << endl; + exit (EXIT_FAILURE); + } + while(getline(nl_file_nonstemmed, nl)){ + nonstemmed_lines.push_back(nl); + } + nl_file_nonstemmed.close(); + + ifstream nl_file_grammar(model+"/test.inline.nl"); + if (!nl_file_grammar.is_open()){ + cerr << "The following file does not exist: test.inline.nl in " << model << endl; + exit (EXIT_FAILURE); + } + while(getline(nl_file_grammar, nl)){ + grammar_lines.push_back(nl); + } + nl_file_grammar.close(); + + if(stemmed_lines.size()!=nonstemmed_lines.size() || stemmed_lines.size()!=grammar_lines.size()){ + cerr << "The files test.nl, test.nostem.nl and test.inline.nl need to be of equal length"<< endl; + exit (EXIT_FAILURE); + } + + ofstream outfile_answer; + outfile_answer.open(vm["answer"].as()); + if(!outfile_answer.is_open()){ + cerr << "The following file cannot be opened for writing" << vm["answer"].as() << endl; + exit (EXIT_FAILURE); + } + + ofstream outfile_mrl; + if(vm["mrl"].as() != ""){ + outfile_mrl.open(vm["mrl"].as()); + if(!outfile_mrl.is_open()){ + cerr << "The following file cannot be opened for writing" << vm["mrl"].as() << endl; + exit (EXIT_FAILURE); + } + } + + ofstream outfile_latlong; + if(vm["latlong"].as() != ""){ + outfile_latlong.open(vm["latlong"].as()); + if(!outfile_latlong.is_open()){ + cerr << "The following file cannot be opened for writing" << vm["latlong"].as() << endl; + exit (EXIT_FAILURE); + } + } + + ofstream outfile_print; + if(vm["print"].as() != ""){ + outfile_print.open(vm["print"].as()); + if(!outfile_print.is_open()){ + cerr << "The following file cannot be opened for writing" << vm["print"].as() << endl; + exit (EXIT_FAILURE); + } + } + + //load prerequisites + register_feature_functions(); + smt_semparse::SMTSemparseConfig* config = NULL; + if(vm["settings"].as()!=""){ + config = new smt_semparse::SMTSemparseConfig(vm["settings"].as(), model + "/dependencies.yaml", model, false); + } else { + config = new smt_semparse::SMTSemparseConfig(model + "/settings.yaml", model + "/dependencies.yaml", model, false); + } + + int c = 0; + Evaluator mrl_eval(db_dir); + for(vector::iterator it(grammar_lines.begin()); it != grammar_lines.end(); ++it, ++c){ + struct smt_semparse::parseResult parse_result; + struct smt_semparse::preprocessed_sentence ps; + //default result + parse_result.mrl = ""; + parse_result.answer = ""; + + //preprocessed sentence + ps.non_stemmed = nonstemmed_lines[c]; + ps.sentence = stemmed_lines[c]; + + //decode + string weights_file_name = ""; + if(config->detailed_at("weights")=="mira"){ + weights_file_name = "weights.mira-final.gz"; + } else if(config->detailed_at("weights")=="mert"){ + weights_file_name = "dpmert/weights.final"; + } else{ + fs::path weights_path(config->detailed_at("weights")); + weights_file_name = weights_path.filename().string(); + } + + stringstream ss_config; + ss_config << "formalism=scfg" << endl; + ss_config << "intersection_strategy=cube_pruning" << endl; + ss_config << "cubepruning_pop_limit=1000" << endl; + ss_config << "scfg_max_span_limit=20" << endl; + ss_config << "feature_function=KLanguageModel " << model << "/mrl.arpa" << endl; + ss_config << "feature_function=WordPenalty" << endl; + ss_config << "weights=" << model << "/" << weights_file_name << endl; + ss_config << "k_best=" << config->detailed_at("nbest") << endl; + ss_config << "unique_k_best=" << endl; + ss_config << "add_pass_through_rules=" << endl; + if(boost::contains(config->detailed_at("weights"), "mira")){ + ss_config << "feature_function=RuleIdentityFeatures" << endl; + ss_config << "feature_function=RuleSourceBigramFeatures" << endl; + ss_config << "feature_function=RuleTargetBigramFeatures" << endl; + ss_config << "feature_function=RuleShape" << endl; + } + istringstream config_file(ss_config.str()); + Decoder decoder(&config_file); + vector kbest_out; + decoder.Decode(grammar_lines[c], NULL, &kbest_out); + + if(kbest_out.size()>0){ + //convert structure + functionalize_kbest(kbest_out, (*config), ps, parse_result); //fills parse_result.recover_query & mrl + + if(parse_result.mrl!=""){ + //obtain answer + NLmaps_query query_info; + query_info.mrl = parse_result.mrl; + preprocess_mrl(&query_info); + int init_return = mrl_eval.initalise(&query_info); + if(init_return != 0){ + cerr << "Warning: Failed to initialise the following query with error code " << init_return << ": " << query_info.mrl << endl; + } + parse_result.answer = mrl_eval.interpret(&query_info); + } else { + parse_result.mrl = "no mrl found"; + parse_result.answer = "empty"; + } + } + + + if(outfile_print.is_open()){ + outfile_print << parse_result.recover_fun << endl; + } + outfile_answer << parse_result.answer << endl; + if(outfile_mrl.is_open()){ + outfile_mrl << parse_result.mrl << endl; + } + if(outfile_latlong.is_open()){ + outfile_latlong << parse_result.latlong << endl; + } + } + + delete config; + + outfile_answer.close(); + if(outfile_mrl.is_open()){ + outfile_mrl.close(); + } + if(outfile_print.is_open()){ + outfile_print.close(); + } + if(outfile_latlong.is_open()){ + outfile_latlong.close(); + } + } + catch(exception& e) { + cerr << e.what() << endl; + return 1; + } + + return 0; +} + +#endif diff --git a/smtsemparsecpp/src/parser/eval.cc b/smtsemparsecpp/src/parser/eval.cc new file mode 100644 index 000000000..fe75497be --- /dev/null +++ b/smtsemparsecpp/src/parser/eval.cc @@ -0,0 +1,116 @@ +#ifndef EVAL_CC +#define EVAL_CC + +#include +#include +#include +#include "boost/program_options.hpp" + +using namespace std; + +int main(int argc, char** argv) { + + try { + namespace po = boost::program_options; + po::options_description desc("Options"); + desc.add_options() + ("help", "Print help messages") + ("eval,e", po::value()->required(), "file path where the eval results should be written") + ("sigf,s", po::value()->required(), "file path where the sigf results should be written") + ("hyp,h", po::value()->required(), "file path to the hypothesis' answers") + ("gold,g", po::value()->default_value(""), "file path to the gold answers"); + + po::variables_map vm; + try { + po::store(po::parse_command_line(argc, argv, desc), vm); + if(vm.count("help")) { + cout << desc << endl; + return 0; + } + po::notify(vm); + } catch(po::error& e) { + cerr << "ERROR: " << e.what() << endl << endl; + cerr << desc << endl; + return 1; + } + + vector gold_answers; + int empty = 0; + int fp = 0; + int tp = 0; + + ifstream gold_file(vm["gold"].as()); // /workspace/osm/smt-semparse/data/spoc/baseship.test.en + if (!gold_file.is_open()){ + cerr << "The following file does not exist" << vm["gold"].as() << endl; + exit (EXIT_FAILURE); + } + string line; + while(getline(gold_file, line)){ + gold_answers.push_back(line); + } + gold_file.close(); + + ifstream hyp_file(vm["hyp"].as()); // /workspace/osm/smt-semparse/data/spoc/baseship.test.en + if (!hyp_file.is_open()){ + cerr << "The following file does not exist" << vm["hyp"].as() << endl; + exit (EXIT_FAILURE); + } + + ofstream outfile_sigf; + outfile_sigf.open(vm["sigf"].as()); + if(!outfile_sigf.is_open()){ + cerr << "The following file cannot be opened for writing" << vm["eval"].as() << endl; + exit (EXIT_FAILURE); + } + + int counter = 0; + while(getline(hyp_file, line)){ + if(line == "empty" || line == ""){ + empty++; + outfile_sigf << "0 0 1" << endl; + } else if(line == gold_answers[counter]){ + tp++; + outfile_sigf << "1 1 1" << endl; + } else { + fp++; + outfile_sigf << "0 1 1" << endl; + } + counter++; + } + hyp_file.close(); + + double precision = 0; + double recall = 0; + double f1 = 0; + + if((tp+fp)!=0){ + precision = 1.0 * tp / (tp + fp); + } + if(counter!=0){ + recall = 1.0 * tp /counter; + } + if((precision + recall)!=0){ + f1 = 2.0 * precision * recall / (precision + recall); + } + + outfile_sigf.close(); + + ofstream outfile_eval; + outfile_eval.open(vm["eval"].as()); + if(!outfile_eval.is_open()){ + cerr << "The following file cannot be opened for writing" << vm["eval"].as() << endl; + exit (EXIT_FAILURE); + } + outfile_eval << "p: " << precision << ", r: " << recall << ", f1: " << f1 << endl; + outfile_eval.close(); + } + catch(exception& e) { + cerr << e.what() << endl; + return 1; + } + + return 0; +} + + +#endif diff --git a/smtsemparsecpp/src/parser/external_command.cc b/smtsemparsecpp/src/parser/external_command.cc new file mode 100644 index 000000000..e6fb707d5 --- /dev/null +++ b/smtsemparsecpp/src/parser/external_command.cc @@ -0,0 +1,85 @@ +#ifndef EXTERNAL_COMMAND_CC +#define EXTERNAL_COMMAND_CC + +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +namespace smt_semparse { + + static int exec_prog(const char **argv, string* ptr_output = NULL, string* ptr_input = NULL, string* ptr_error = NULL, int *ptr_timeout = NULL){ //give timeout a value to have a timeout + pid_t my_pid; + int status; + if (0 == (my_pid = fork())) { + if(ptr_output != NULL){ + string output = *(ptr_output); + int fd = open(output.c_str(), O_WRONLY | O_CREAT, 0644); + if(fd < 0){ + perror("Error"); + return -1; + } + if (dup2(fd, 1) == -1) { + cerr << "could not redirect stdout to file: " << output << endl; + return -1; + } + close(fd); + } + if(ptr_input != NULL){ + string input = *(ptr_input); + int fd0 = open(input.c_str(), O_RDONLY); + if(fd0 < 0){ + perror("Error"); + return -1; + } + if (dup2(fd0, 0) == -1) { + cerr << "could not get stdin from file: " << input << endl; + return -1; + } + close(fd0); + } + if(ptr_error != NULL){ + string error = *(ptr_error); + int fd2 = open(error.c_str(), O_WRONLY | O_CREAT, 0644); + if(fd2 < 0){ + perror("Error"); + return -1; + } + if (dup2(fd2, 2) == -1) { + perror("Error"); + cerr << "could not redirect stderr to file: " << error << endl; + return -1; + } + close(fd2); + } + if (-1 == execve(argv[0], (char **)argv , NULL)) { + cerr << "child process execve failed" << endl; + return -1; + } + } + + while (0 == waitpid(my_pid , &status , WNOHANG)) { + if(ptr_timeout != NULL){ + if ( --*(ptr_timeout) < 0 ) { + cerr << "the child process timed out (timeout: " << *(ptr_timeout) << ")" << endl; + return -1; + } + } + sleep(1); + } + if (1 != WIFEXITED(status) || 0 != WEXITSTATUS(status)) { + cerr << "child process execve failed" << endl; + return -1; + } + + return 0; + } + +} // namespace smt_semparse + +#endif diff --git a/smtsemparsecpp/src/parser/extract_data.cc b/smtsemparsecpp/src/parser/extract_data.cc new file mode 100644 index 000000000..5cf5e0d08 --- /dev/null +++ b/smtsemparsecpp/src/parser/extract_data.cc @@ -0,0 +1,94 @@ +#include +#include +#include +#include "boost/program_options.hpp" +#include +#include +#include +#include + +#include "smt_semparse_config.h" +#include "functionalizer.cc" +#include "extractor.cc" + +using namespace std; +using namespace smt_semparse; + +// ./train_model -s settings.yaml -d dependencies.yaml -r work + +void run_test(string input, string mrl_out, string answer_out, NLParser& parser){ + + ifstream nl_file(input); + if (!nl_file.is_open()){ + cerr << "The following file could not be opened" << input << endl; + exit (EXIT_FAILURE); + } + + ofstream outfile_mrl; + outfile_mrl.open(mrl_out); + if(!outfile_mrl.is_open()){ + cerr << "The following file cannot be opened for writing" << mrl_out << endl; + exit (EXIT_FAILURE); + } + + ofstream outfile_answer; + outfile_answer.open(answer_out); + if(!outfile_answer.is_open()){ + cerr << "The following file cannot be opened for writing" << answer_out << endl; + exit (EXIT_FAILURE); + } + + string nl; + struct smt_semparse::parseResult parse_result; + while(getline(nl_file, nl)){ + parse_result = parser.parse_sentence(nl); + outfile_answer << parse_result.answer << endl; + if(outfile_mrl.is_open()){ + outfile_mrl << parse_result.mrl << endl; + } + } + + outfile_answer.close(); + outfile_mrl.close(); +} + +int main(int argc, char** argv) { + + try { + namespace po = boost::program_options; + po::options_description desc("Options"); + desc.add_options() + ("help", "Print help messages") + ("settings,s", po::value()->required(), "settings path") + ("dep,d", po::value()->required(), "dependency path") + ("dir,r", po::value()->required(), "The directory where the model will be written"); + + po::variables_map vm; + try { + po::store(po::parse_command_line(argc, argv, desc), vm); + if(vm.count("help")) { + cout << desc << endl; + return 0; + } + po::notify(vm); + } catch(po::error& e) { + cerr << "ERROR: " << e.what() << endl << endl; + cerr << desc << endl; + return 1; + } + + string exp_dir = vm["dir"].as(); + SMTSemparseConfig config(vm["settings"].as(), vm["dep"].as(), exp_dir, true); + + // extract data + cerr << "Extracting data" << endl; + extract_nlmaps(config); + + } + catch(exception& e) { + cerr << e.what() << endl; + return 1; + } + + return 0; +} diff --git a/smtsemparsecpp/src/parser/extractor.cc b/smtsemparsecpp/src/parser/extractor.cc new file mode 100644 index 000000000..64677e175 --- /dev/null +++ b/smtsemparsecpp/src/parser/extractor.cc @@ -0,0 +1,439 @@ +#ifndef EXTRACTOR_CC +#define EXTRACTOR_CC + +#include +#include +#include +#include +#include +#include +#include + +#include "porter2_stemmer.h" +#include "smt_semparse_config.h" +#include "../name_lexicon/nominatim_check.h" +#include "parse_nl.h" + +using namespace std; + +namespace smt_semparse { + + static bool check_ending(string const &full_string, string const &ending) { + if (full_string.length() >= ending.length()) { + return (0 == full_string.compare(full_string.length() - ending.length(), ending.length(), ending)); + } else { + return false; + } + } + + static int count_arguments(string s){ + bool args = false; + int parens = 0; + int commas = 0 ; + int i = 0; + //while parens >= 0 and i < len(s): + while(i < s.length() && ((!(args) && parens == 0) || (args && parens > 0))){ + const char& c = s.at(i); + if(c == '('){ + args = true; + parens += 1; + } else if(c == ')'){ + parens -= 1; + } else if(parens == 1 && c == ','){ + commas += 1; + } else if(parens < 1 && c == ','){ + break; + } + i += 1; + } + if(args){ + return commas + 1; + } + assert(commas==0); + return 0; + } + + static string after_nth(string mrl, string& token, int n){ + while(n > 0){ + try{ + boost::smatch sm; + stringstream ss_pattern; + ss_pattern << "\\b"; + ss_pattern << boost::regex_replace(token, boost::regex("[.^$|()\\[\\]{}*+?\\\\]"), "\\\\$&", boost::match_default | boost::format_perl); + ss_pattern << "\\b"; + regex_search(mrl, sm, boost::regex(ss_pattern.str())); + mrl = mrl.substr(sm.position() + sm.length()); + n = n - 1; + } catch(...){ + cerr << "Warning: error on token " << token << " in mrl " << mrl << endl; + return ""; + } + } + return mrl; + } + + static string preprocess_mrl(string mrl, bool no_arity){ + stringstream ss_lin; + boost::trim(mrl); + + //sequence of characters that does not contain ( or ) : [^\\(\\)] + mrl = boost::regex_replace(mrl, boost::regex(",' *([^\\(\\)]*?)\\((.*?) *'\\)"),",'$1BRACKETOPEN$2')"); //need to protect brackets that occur in values, assumes that there is at most one open ( and 1 close) + mrl = boost::regex_replace(mrl, boost::regex(",' *([^\\(\\)]*?)\\)([^\\(\\)]*?) *'\\)"),",'$1BRACKETCLOSE$2')"); + boost::replace_all(mrl, " ", "€"); + mrl = boost::regex_replace(mrl, boost::regex("(?<=([^,\\(\\)]))'(?=([^,\\(\\)]))"), "SAVEAPO"); + mrl = boost::regex_replace(mrl, boost::regex("and\\(' *([^\\(\\)]+?) *',' *([^\\(\\)]+?) *'\\)"), "and($1ARITY_SEPARITY_STR','$2ARITY_SEPARITY_STR)"); //for when a and() surrounds two end values + mrl = boost::regex_replace(mrl, boost::regex("\\(' *([^\\(\\)]+?) *'\\)"), "($1ARITY_SEPARITY_STR)"); //a bracket ( or ) is not allowed withing any key or value + mrl = boost::regex_replace(mrl, boost::regex("([,\\)\\(])or\\(([^\\(\\)]+?)','([^\\(\\)]+?)ARITY_SEPARITY_STR\\)"), "$1or($2ARITY_SEPARITY_STR','$3ARITY_SEPARITY_STR)"); //for when a or() surrounds two values + //mrl = boost::regex_replace(mrl, boost::regex("' *(.+?) *'"), "$1ARITY_SEPARITY_STR"); //uncomment for keyval versions and comment the above + boost::replace_all(mrl, "ARITY_SEP", ARITY_SEP); + boost::replace_all(mrl, "ARITY_STR", ARITY_STR); + mrl = boost::regex_replace(mrl, boost::regex("\\s+"), " "); + mrl = boost::regex_replace(mrl, boost::regex("'"), ""); //comment for keyval versions + string mrl_noparens = mrl; + boost::replace_all(mrl_noparens, "(", " "); + boost::replace_all(mrl_noparens, ")", " "); + mrl_noparens = boost::regex_replace(mrl_noparens, boost::regex("\\s+"), " "); + string mrl_nocommas = mrl_noparens; + boost::replace_all(mrl_nocommas, ",", " "); + mrl_nocommas = boost::regex_replace(mrl_nocommas, boost::regex("\\s+"), " "); + + map seen; + vector elements; + boost::trim(mrl_nocommas); + boost::split(elements, mrl_nocommas, boost::is_any_of(" ")); + for(vector::iterator it = elements.begin(); it != elements.end(); ++it) { + if (seen.find(*it) == seen.end()){ + seen[*it] = 1; + } else { + seen[*it]++; + } + if(check_ending(*it, "@s")){ + if(no_arity){ + ss_lin << (*it).substr(0, (*it).length()-2) << " "; + } else { + ss_lin << *it << " "; + } + continue; + } + int args = count_arguments(after_nth(mrl, *it, seen[*it])); + if(no_arity){ + ss_lin << *it << " "; + } else { + ss_lin << *it << ARITY_SEP << args << " "; + } + } + + string lin = ss_lin.str(); + boost::trim(lin); + return lin; + } + + static void tokenise(string& nl){ + if(check_ending(nl, " .") || check_ending(nl, " ?") || check_ending(nl, " !")){ + nl = nl.substr(0, nl.length()-2); + } + if(check_ending(nl, ".") || check_ending(nl, "?") || check_ending(nl, "!")){ + nl = nl.substr(0, nl.length()-1); + } + } + + static preprocessed_sentence preprocess_nl(string nl, SMTSemparseConfig& config, bool skip = false, NominatimCheck* nom = NULL){ + preprocessed_sentence ps; + boost::trim(nl); + ps.non_stemmed = nl; + ps.stemmed = nl; + + if(!skip){ + boost::to_lower(ps.non_stemmed); + boost::replace_all(ps.non_stemmed, "@", "xxatxx"); + } + + boost::to_lower(ps.stemmed); + boost::replace_all(ps.stemmed, "@", "xxatxx"); + + tokenise(ps.non_stemmed); + tokenise(ps.stemmed); + + //stem + vector words_to_stem; + stringstream ss; + boost::split(words_to_stem, ps.stemmed, boost::is_any_of(" ")); + for(vector::iterator it = words_to_stem.begin(); it != words_to_stem.end(); ++it) { + Porter2Stemmer::stem(*it); + ss << *it << " "; + } + ps.stemmed = ss.str(); + boost::trim(ps.stemmed); + + //nominatim Check + if(nom!=NULL){ + nom->protect_sentence_for_nominatim(&ps.non_stemmed, &ps.stemmed); + } + + if(config.detailed_at("stem")=="true"){ + ps.sentence = ps.stemmed; + } else { + ps.sentence = ps.non_stemmed; + } + + return ps; + } + + static void extract_nlmaps(SMTSemparseConfig& config){ + string exp_dir = config.detailed_at("experiment_dir"); + // open files for writing + ofstream out_train_nl; + stringstream ss_out_train_nl; + ss_out_train_nl << exp_dir << "/train.nl"; + out_train_nl.open(ss_out_train_nl.str()); + + ofstream out_train_mrl; + stringstream ss_out_train_mrl; + ss_out_train_mrl << exp_dir << "/train.mrl"; + out_train_mrl.open(ss_out_train_mrl.str()); + + ofstream out_train_mrl_lm; + stringstream ss_out_train_mrl_lm; + ss_out_train_mrl_lm << exp_dir << "/train.mrl.lm"; + out_train_mrl_lm.open(ss_out_train_mrl_lm.str()); + + ofstream out_train_ori; + stringstream ss_out_train_ori; + ss_out_train_ori << exp_dir << "/train.ori"; + out_train_ori.open(ss_out_train_ori.str()); + + ofstream out_train_both; + stringstream ss_out_train_both; + ss_out_train_both << exp_dir << "/train.both"; + out_train_both.open(ss_out_train_both.str()); + + ofstream out_tune_nl; + stringstream ss_out_tune_nl; + ss_out_tune_nl << exp_dir << "/tune.nl"; + out_tune_nl.open(ss_out_tune_nl.str()); + + ofstream out_tune_mrl; + stringstream ss_out_tune_mrl; + ss_out_tune_mrl << exp_dir << "/tune.mrl"; + out_tune_mrl.open(ss_out_tune_mrl.str()); + + ofstream out_tune_gold; + stringstream ss_out_tune_gold; + ss_out_tune_gold << exp_dir << "/tune.gold"; + out_tune_gold.open(ss_out_tune_gold.str()); + + ofstream out_test_nl; + stringstream ss_out_test_nl; + ss_out_test_nl << exp_dir << "/test.nl"; + out_test_nl.open(ss_out_test_nl.str()); + + ofstream out_test_nl_nostem; + stringstream ss_out_test_nl_nostem; + ss_out_test_nl_nostem << exp_dir << "/test.nostem.nl"; + out_test_nl_nostem.open(ss_out_test_nl_nostem.str()); + + ofstream out_test_mrl; + stringstream ss_out_test_mrl; + ss_out_test_mrl << exp_dir << "/test.mrl"; + out_test_mrl.open(ss_out_test_mrl.str()); + + ofstream out_test_ori; + stringstream ss_out_test_ori; + ss_out_test_ori << exp_dir << "/test.ori"; + out_test_ori.open(ss_out_test_ori.str()); + + ofstream out_test_gold; + stringstream ss_out_test_gold; + ss_out_test_gold << exp_dir << "/test.gold"; + out_test_gold.open(ss_out_test_gold.str()); + + ofstream out_test_neg_nl; + ofstream out_test_neg_nl_nostem; + ofstream out_test_neg_mrl; + ofstream out_test_neg_ori; + ofstream out_test_neg_gold; + if(config.detailed_at("neg")!=""){ + stringstream ss_out_test_neg_nl; + ss_out_test_neg_nl << exp_dir << "/test_neg.nl"; + out_test_neg_nl.open(ss_out_test_neg_nl.str()); + + stringstream ss_out_test_neg_nl_nostem; + ss_out_test_neg_nl_nostem << exp_dir << "/test_neg.nostem.nl"; + out_test_neg_nl_nostem.open(ss_out_test_neg_nl_nostem.str()); + + stringstream ss_out_test_neg_mrl; + ss_out_test_neg_mrl << exp_dir << "/test_neg.mrl"; + out_test_neg_mrl.open(ss_out_test_neg_mrl.str()); + + stringstream ss_out_test_neg_ori; + ss_out_test_neg_ori << exp_dir << "/test_neg.ori"; + out_test_neg_ori.open(ss_out_test_neg_ori.str()); + + stringstream ss_out_test_neg_gold; + ss_out_test_neg_gold << exp_dir << "/test_neg.gold"; + out_test_neg_gold.open(ss_out_test_neg_gold.str()); + } + + string nl; + string mrl; + string gold; + string data_dir = config.detailed_at("data_dir"); + string train = config.detailed_at("train"); + string tune = config.detailed_at("tune"); + string test = config.detailed_at("test"); + string test_neg = config.detailed_at("neg"); + string lang = config.detailed_at("lang"); + vector both_nl; + vector both_mrl; + + // extract train + stringstream ss_in_train_nl; + ss_in_train_nl << data_dir << "/" << train << "." << lang; + cout << "ss_in_train_nl: " << ss_in_train_nl.str() << endl; + ifstream in_train_nl(ss_in_train_nl.str()); + while(getline(in_train_nl, nl)){ + preprocessed_sentence ps = preprocess_nl(nl, config); + nl = ps.sentence; + out_train_nl << nl << endl; + both_nl.push_back(nl); + } + in_train_nl.close(); + + stringstream ss_in_train_mrl; + ss_in_train_mrl << data_dir << "/" << train << ".mrl"; + ifstream in_train_mrl(ss_in_train_mrl.str()); + while(getline(in_train_mrl, mrl)){ + out_train_ori << mrl << endl; + string lin = preprocess_mrl(mrl, false); + out_train_mrl << lin << endl; + out_train_mrl_lm << " " << lin << " " << endl; + both_mrl.push_back(lin); + } + in_train_mrl.close(); + + assert(both_nl.size()==both_mrl.size()); + + for(int i=0; i < both_nl.size(); i++){ + out_train_both << both_nl[i] << " ||| " << both_mrl[i] << endl; + } + + // extract tune + stringstream ss_in_tune_nl; + ss_in_tune_nl << data_dir << "/" << tune << "." << lang; + ifstream in_tune_nl(ss_in_tune_nl.str()); + while(getline(in_tune_nl, nl)){ + preprocessed_sentence ps = preprocess_nl(nl, config); + nl = ps.sentence; + out_tune_nl << nl << endl; + } + in_tune_nl.close(); + + stringstream ss_in_tune_mrl; + ss_in_tune_mrl << data_dir << "/" << tune << ".mrl"; + ifstream in_tune_mrl(ss_in_tune_mrl.str()); + while(getline(in_tune_mrl, mrl)){ + string lin = preprocess_mrl(mrl, false); + out_tune_mrl << lin << endl; + } + in_tune_mrl.close(); + + stringstream ss_in_tune_gold; + ss_in_tune_gold << data_dir << "/" << tune << ".gold"; + ifstream in_tune_gold(ss_in_tune_gold.str()); + while(getline(in_tune_gold, gold)){ + out_tune_gold << gold << endl; + } + in_tune_gold.close(); + + // extract test + stringstream ss_in_test_nl; + ss_in_test_nl << data_dir << "/" << test << "." << lang; + ifstream in_test_nl(ss_in_test_nl.str()); + int count=1; + while(getline(in_test_nl, nl)){ + string nl_nostem = nl; + preprocessed_sentence ps = preprocess_nl(nl, config); + nl = ps.sentence; + nl_nostem = ps.non_stemmed; + out_test_nl_nostem << nl_nostem << endl; + out_test_nl << nl << endl; + count++; + } + in_test_nl.close(); + + stringstream ss_in_test_mrl; + ss_in_test_mrl << data_dir << "/" << test << ".mrl"; + ifstream in_test_mrl(ss_in_test_mrl.str()); + while(getline(in_test_mrl, mrl)){ + out_test_ori << mrl << endl; + string lin = preprocess_mrl(mrl, false); + out_test_mrl << lin << endl; + } + in_test_mrl.close(); + + stringstream ss_in_test_gold; + ss_in_test_gold << data_dir << "/" << test << ".gold"; + ifstream in_test_gold(ss_in_test_gold.str()); + while(getline(in_test_gold, gold)){ + out_test_gold << gold << endl; + } + in_test_gold.close(); + + // extract neg test + if(config.detailed_at("neg")!=""){ + stringstream ss_in_test_neg_nl; + ss_in_test_neg_nl << data_dir << "/" << test_neg << "." << lang; + ifstream in_test_neg_nl(ss_in_test_neg_nl.str()); + while(getline(in_test_neg_nl, nl)){ + string nl_nostem = nl; + preprocessed_sentence ps = preprocess_nl(nl, config); + nl = ps.sentence; + nl_nostem = ps.non_stemmed; + out_test_neg_nl_nostem << nl_nostem << endl; + out_test_neg_nl << nl << endl; + } + in_test_neg_nl.close(); + + stringstream ss_in_test_neg_mrl; + ss_in_test_neg_mrl << data_dir << "/" << test_neg << ".mrl"; + ifstream in_test_neg_mrl(ss_in_test_neg_mrl.str()); + while(getline(in_test_neg_mrl, mrl)){ + out_test_neg_ori << mrl << endl; + string lin = preprocess_mrl(mrl, false); + out_test_neg_mrl << lin << endl; + } + in_test_neg_mrl.close(); + + stringstream ss_in_test_neg_gold; + ss_in_test_neg_gold << data_dir << "/" << test_neg << ".gold"; + ifstream in_test_neg_gold(ss_in_test_neg_gold.str()); + while(getline(in_test_neg_gold, gold)){ + out_test_neg_gold << gold << endl; + } + in_test_neg_gold.close(); + } + + // close all opened files + out_train_nl.close(); + out_train_mrl.close(); + out_train_mrl_lm.close(); + out_train_ori.close(); + out_train_both.close(); + out_tune_nl.close(); + out_tune_mrl.close(); + out_tune_gold.close(); + out_test_nl.close(); + out_test_nl_nostem.close(); + out_test_mrl.close(); + out_test_ori.close(); + out_test_gold.close(); + out_test_neg_nl.close(); + out_test_neg_nl_nostem.close(); + out_test_neg_mrl.close(); + out_test_neg_ori.close(); + out_test_neg_gold.close(); + } + +} // namespace smt_semparse + +#endif diff --git a/smtsemparsecpp/src/parser/functionalizer.cc b/smtsemparsecpp/src/parser/functionalizer.cc new file mode 100644 index 000000000..22c818c36 --- /dev/null +++ b/smtsemparsecpp/src/parser/functionalizer.cc @@ -0,0 +1,214 @@ +#ifndef FUNCTIONALIZER_CC +#define FUNCTIONALIZER_CC + +#include +#include +#include +#include + +#include "smt_semparse_config.h" +#include "parse_nl.h" +#include "ff_register.h" +#include "decoder.h" + +using namespace std; + +namespace smt_semparse { + +static string functionalize(string& mrl, SMTSemparseConfig& config, preprocessed_sentence& ps, parseResult& parse_result){ + stack stack_arity; + stringstream result; + vector words_raw; + vector words; + boost::split(words_raw, mrl, boost::is_any_of(" ")); + + //insert @ + if(config.detailed_at("insertat")=="true"){ + vector stemmed_words; + vector non_stemmed_words; + boost::split(stemmed_words, ps.sentence, boost::is_any_of(" ")); + boost::split(non_stemmed_words, ps.non_stemmed, boost::is_any_of(" ")); + int word_pos = -1; + int word_pos_counter = 0; + bool found_word_pos = false; + for(vector::iterator it = words_raw.begin(); it != words_raw.end(); ++it){ + word_pos = -1; + found_word_pos = false; + word_pos_counter = 0; + if(!boost::contains(*it, ARITY_SEP)){ + for(vector::iterator stemmed_word = stemmed_words.begin(); stemmed_word != stemmed_words.end(); ++stemmed_word, ++word_pos_counter){ + if(*it == *stemmed_word){ + word_pos = word_pos_counter; + } + if(word_pos != -1){ + found_word_pos = true; + stringstream new_word; + string& non_stemmed_word = non_stemmed_words[word_pos]; + new_word << non_stemmed_word << "@s"; + words.push_back(new_word.str()); + word_pos = -1; + } + } + } + if(!found_word_pos){ + words.push_back(*it); + } + } + } else { + words = words_raw; + } + + stringstream ss_recover_query; + stringstream ss_recover_fun; + string prev = ""; + for(vector::iterator it = words.begin(); it != words.end(); ++it){ + ss_recover_fun << *it << " "; + if(boost::contains(*it, ARITY_SEP)){ + vector text_and_arity; + boost::split(text_and_arity, *it, boost::is_any_of("@")); + if(text_and_arity.size()!=2){ + cerr << "Warning: more than 1 ARITY_SEP in following mrl: " << mrl << endl; + return ""; + } + string& text = text_and_arity[0]; + string& arity_text = text_and_arity[1]; + ss_recover_query << text << " "; + int arity; + bool arity_str = false; + if(arity_text==ARITY_STR){ + arity = -1; + arity_str = true; + } else { + try{ + arity = boost::lexical_cast(arity_text); + } catch (boost::bad_lexical_cast) { + cerr << "Arity is not a integer in following mrl: " << mrl << endl; + return ""; + } + } + if(arity > 0){ + result << text << "("; + stack_arity.push(arity); + } else { + if(arity == -1 && stack_arity.size() == 0){ + cerr << "Warning: stack size is 0 when it shouldn't be" << endl; + return ""; + } + //if the prev token is keyval, then we have a key here which also needs to be wrapped in ' + if(arity_str || prev == "keyval" || prev == "findkey"){ //findkey is unnecessary if it only holds a key but if there is additionally a topx then we need that ehre + boost::replace_all(text, "€", " "); + stringstream add_quotes; + add_quotes << "'" << text << "'"; + text = add_quotes.str(); + } + result << text; + while(stack_arity.size() > 0){ + int top = stack_arity.top(); + stack_arity.pop(); + if(top > 1){ + result << ","; + stack_arity.push(top - 1); + break; + } else { + result << ")"; + } + } + } + /*if(stack_arity.size() == 0){ + cerr << "Warning: stack size is 0 when it shouldn't be" << endl; + return ""; + }*/ + prev = text; //need this if the prev token is keyval, then we have a key here which also needs to be wrapped in ' + } else { + cerr << "Warning: no ARITY_SEP in following mrl: " << mrl << endl; + return ""; + } + + } + if(stack_arity.size() != 0){ + cerr << "Warning: stack size is not 0 when it should be: " << mrl << endl; + return ""; + } + + if(config.detailed_at("cfg")=="true"){ + //valid mrl / parse via cdec + string result_string = result.str(); + //hack + //sequence of characters that does not contain ( or ) : [^\\(\\)] + //result_string = boost::regex_replace(result_string, boost::regex("type\\("), ",type("); + result_string = boost::regex_replace(result_string, boost::regex("\\("), "( "); + result_string = boost::regex_replace(result_string, boost::regex(","), " , "); + result_string = boost::regex_replace(result_string, boost::regex("\\)"), " )"); + result_string = boost::regex_replace(result_string, boost::regex("name:.*? \\)"), "name:lg )"); + result_string = boost::regex_replace(result_string, boost::regex("keyval\\( '([^\\(\\)]+?)' , '[^\\(\\)]+?' "), "keyval( '$1' , 'variablehere' "); // the comma is there to ensure that only -value- positions are replaced with variablehere + result_string = boost::regex_replace(result_string, boost::regex("keyval\\( '([^\\(\\)]+?)' , or\\( '[^\\(\\)]+?' , '[^\\(\\)]+?' "), "keyval( '$1' , or( 'variablehere' , 'variablehere' "); //nasty hack for when we have a or() around values: or( ' greek ' , ' variablehere ' ) + result_string = boost::regex_replace(result_string, boost::regex("keyval\\( '([^\\(\\)]+?)' , and\\( '[^\\(\\)]+?' , '[^\\(\\)]+?' "), "keyval( '$1' , and( 'variablehere' , 'variablehere' "); //nasty hack for when we have a and() around values: and( ' greek ' , ' variablehere ' ) + result_string = boost::regex_replace(result_string, boost::regex(" '(.*?)' "), " ' $1 ' "); + //split up numbers into individual digits + boost::smatch match; + if(boost::regex_search(result_string, match, boost::regex("topx\\( (.*?) \\)"))){ + string number = match[1]; + stringstream split_up_digits; + for(string::iterator it = number.begin(); it != number.end(); ++it){ + split_up_digits << *it << " "; + } + result_string = boost::regex_replace(result_string, boost::regex("topx\\( .*?\\)"), "topx( "+split_up_digits.str()+")"); + } + if(boost::regex_search(result_string, match, boost::regex("maxdist\\( ([0-9]+?) \\)"))){ + string number = match[1]; + stringstream split_up_digits; + for(string::iterator it = number.begin(); it != number.end(); ++it){ + split_up_digits << *it << " "; + } + result_string = boost::regex_replace(result_string, boost::regex("maxdist\\( .*?\\)"), "maxdist( "+split_up_digits.str()+")"); + } + + stringstream ss_config; + ss_config << "formalism=scfg" << endl; + ss_config << "intersection_strategy=cube_pruning" << endl; + ss_config << "cubepruning_pop_limit=1000" << endl; + ss_config << "grammar=" << config.detailed_at("data_dir") << "/cfg/cfg_grammar_open_new_mrl" << endl; + ss_config << "scfg_max_span_limit=1000" << endl; + istringstream config_file(ss_config.str()); + bool parse = true; + Decoder decoder_validate(&config_file); + cerr << "result_string: " << result_string << endl; + decoder_validate.Decode(result_string, NULL, NULL, &parse); + if(!parse){ + return ""; + } + } + + string recover_query = ss_recover_query.str(); + boost::replace_all(recover_query, "SAVEAPO", "'"); + boost::replace_all(recover_query, "BRACKETOPEN", "("); + boost::replace_all(recover_query, "BRACKETCLOSE", ")"); + + string return_result = result.str(); + boost::replace_all(return_result, "SAVEAPO", "'"); + boost::replace_all(return_result, "BRACKETOPEN", "("); + boost::replace_all(return_result, "BRACKETCLOSE", ")"); + + parse_result.recover_query = recover_query; + boost::trim(parse_result.recover_query); + parse_result.recover_fun = ss_recover_fun.str(); + boost::trim(parse_result.recover_fun); + return return_result; +} + +static void functionalize_kbest(vector& kbest_list, SMTSemparseConfig& config, preprocessed_sentence& ps, parseResult& parse_result){ + parse_result.mrl = ""; + parse_result.recover_query = ""; + for(vector::iterator it = kbest_list.begin(); it != kbest_list.end(); ++it) { + string fun = functionalize(*it, config, ps, parse_result); + if(fun!=""){ + parse_result.mrl = fun; + break; + } + } +} + + +} // namespace smt_semparse + +#endif diff --git a/smtsemparsecpp/src/parser/parse_nl.cc b/smtsemparsecpp/src/parser/parse_nl.cc new file mode 100644 index 000000000..60610babe --- /dev/null +++ b/smtsemparsecpp/src/parser/parse_nl.cc @@ -0,0 +1,199 @@ +#ifndef PARSE_NL_CC +#define PARSE_NL_CC + +#include "parse_nl.h" +#include "functionalizer.cc" +#include "ff_register.h" +#include "decoder.h" +#include "extractor.cc" + +#include "interpret.cc" +#include "linearise.cc" +#include "nlmaps_query.h" + +#include +#include +#include +#include +#include + + +using namespace std; + +namespace fs = boost::filesystem; +using namespace extractor; //required to use Clock directly + +namespace smt_semparse { + + NLParser::NLParser(string &exp_dir, string &db_dir, SMTSemparseConfig &config_obj, string &daemon_adress): + experiment_dir(exp_dir), database_dir(db_dir), + config(config_obj), + requester(daemon_adress.c_str(), 100000){ + register_feature_functions(); + } + + NLParser::NLParser(string &exp_dir, string &db_dir, string &daemon_adress): experiment_dir(exp_dir), database_dir(db_dir), + config(experiment_dir + "/settings.yaml", experiment_dir + "/dependencies.yaml", experiment_dir), + requester(daemon_adress.c_str(), 100000){ + register_feature_functions(); + } + + parseResult& NLParser::parse_sentence(string &sentence, NominatimCheck* nom, string preset_tmp_dir, bool geojson, bool nom_lookup){ + //default result + parse_result.mrl = ""; + parse_result.answer = ""; + + //preprocess_sentence + ps = preprocess_nl(sentence, config, true, nom); + + //create tmp dir + string fs_tmp_dir_path = ""; + if(preset_tmp_dir!=""){ + fs_tmp_dir_path = preset_tmp_dir; + } else { + stringstream tmp_dir_location; + tmp_dir_location << "/tmp/parse_nl_cpp_" << fs::unique_path().string(); + fs_tmp_dir_path = tmp_dir_location.str(); + } + fs::path fs_tmp_dir(fs_tmp_dir_path); + if (!fs::is_directory(fs_tmp_dir)) { + fs::create_directory(fs_tmp_dir); + } + + //get grammar + stringstream ss_message_plus_path; + if(preset_tmp_dir==""){ //for testing puproses we wont send a tmp_dir to the daemon, thus it should be written into the grammar folder that was registered when the daemon was started and it can be inspected + ss_message_plus_path << ps.sentence; + } else { + ss_message_plus_path << ps.sentence << " <|||> " << fs_tmp_dir_path; + } + string message_plus_path = ss_message_plus_path.str(); + string sentence_to_decode = ""; + sentence_to_decode = requester.request_for_sentence(message_plus_path.c_str()); + if(sentence_to_decode == ""){ + cerr << "Warning: Extractor daemon did not return anything for this sentence: " + << ps.sentence << endl; + } + + //decode + string weights_file_name = ""; + if(config.detailed_at("weights")=="mira"){ + weights_file_name = "weights.mira-final.gz"; + } else if(config.detailed_at("weights")=="mert"){ + weights_file_name = "dpmert/weights.final"; + } else{ + fs::path weights_path(config.detailed_at("weights")); + weights_file_name = weights_path.filename().string(); + } + + stringstream ss_config; + ss_config << "formalism=scfg" << endl; + ss_config << "intersection_strategy=cube_pruning" << endl; + ss_config << "cubepruning_pop_limit=1000" << endl; + ss_config << "scfg_max_span_limit=20" << endl; + ss_config << "feature_function=KLanguageModel " << experiment_dir << "/mrl.arpa" << endl; + ss_config << "feature_function=WordPenalty" << endl; + ss_config << "weights=" << experiment_dir << "/" << weights_file_name << endl; + ss_config << "k_best=" << config.detailed_at("nbest") << endl; + ss_config << "unique_k_best=" << endl; + ss_config << "add_pass_through_rules=" << endl; + istringstream config_file(ss_config.str()); + Decoder decoder(&config_file); + vector kbest_out; + cerr << "sentence_to_decode: " << sentence_to_decode << endl; + decoder.Decode(sentence_to_decode, NULL, &kbest_out); + + + /*int count = 0; + for(vector::iterator it2(kbest_out.begin()); it2 != kbest_out.end(); ++it2, ++count){ + cerr << count<<": " << *it2 << endl; + }*/ + + + if(kbest_out.size()>0){ + //convert structure + functionalize_kbest(kbest_out, config, ps, parse_result); //fills parse_result.recover_query & mrl + + if(parse_result.mrl!=""){ + NLmaps_query query_info; + if(nom_lookup){ + boost::replace_all(parse_result.mrl, "{nominatim:Frankenthal}", "1705457707"); + } + query_info.mrl = parse_result.mrl; + preprocess_mrl(&query_info); + + Evaluator mrl_eval(database_dir); + int init_return = -1; + if(geojson){ + init_return = mrl_eval.initalise(&query_info, true); + } else { + init_return = mrl_eval.initalise(&query_info, false); + } + if(init_return != 0){ + cerr << "Warning: Failed to initialise the following query with error code " << init_return << ": " << query_info.mrl << endl; + } + parse_result.answer = mrl_eval.interpret(&query_info); + //always get latlong + stringstream ss_latlong; + stringstream ss_pre_latlong; + double center_lat = 0.0; + double center_lon = 0.0; + bool first = true; + if(geojson){ + ss_latlong << "\"features\": ["; + for(auto it = query_info.elements.begin(); it != query_info.elements.end(); it++){ + center_lat += it->lat_lon.first; + center_lon += it->lat_lon.second; + if(first){ + first = false; + } else { + ss_latlong << ","; + } + //lat and lon need to be revered for geojson + if(it->name==""){ it->name = "Unnamed"; } + ss_latlong << "{\"type\": \"Feature\",\"properties\": {\"popupContent\": \""<name<<""; + if(it->value != it->name && it->value!=""){ ss_latlong<<"
lat "<lat_lon.first<<" lon " <lat_lon.second; } + if(it->value != it->name && it->value!=""){ ss_latlong<<"
"<value; } + if(it->street_number != "" || it->street != ""){ ss_latlong<<"
"<street_number<<" "<street; } + if(it->postcode != "" || it->town != ""){ ss_latlong<<"
"<postcode<<" "<town; } + + ss_latlong << "\"},\"geometry\": {\"type\": \"Point\",\"coordinates\": [" + <lat_lon.second<<", "<lat_lon.first<<"]}}"; + } + center_lat = center_lat / query_info.elements.size(); + center_lon = center_lon / query_info.elements.size(); + ss_latlong << "]"; + //we note latlong here because we don't want the gps coordinates to be printed in the answer box + bool latlon = 0; + if(query_info.latlon){ + latlon = 1; + } + ss_pre_latlong << "{\"correctly_empty\": \""<lat_lon.first << " " << fixed<lat_lon.second; + } else { + ss_latlong << ", " << fixed<lat_lon.first << " " << fixed<lat_lon.second; + } + } + } + parse_result.latlong = ss_pre_latlong.str(); + } else { + parse_result.mrl = "no mrl found"; + parse_result.answer = "empty"; + } + } + + //delete tmp dir + if(preset_tmp_dir==""){ //if the tmp dir path was set, then we assume the calling process takes care of it + fs::remove_all(fs_tmp_dir); + } + + return parse_result; + } + +} // namespace smt_semparse + +#endif diff --git a/smtsemparsecpp/src/parser/parse_nl.h b/smtsemparsecpp/src/parser/parse_nl.h new file mode 100644 index 000000000..1e36c9558 --- /dev/null +++ b/smtsemparsecpp/src/parser/parse_nl.h @@ -0,0 +1,51 @@ +#ifndef PARSE_NL_H +#define PARSE_NL_H + +#include "smt_semparse_config.h" +#include "extract_request.h" +#include "decoder.h" +#include "../name_lexicon/nominatim_check.h" + +#include + +using namespace std; + +namespace smt_semparse { + struct parseResult{ + string recover_query; // space separated without @ + string recover_fun; // functionalised version + string mrl; + string answer; + string latlong; + }; + + struct preprocessed_sentence{ + string sentence; + string stemmed; + string non_stemmed; + }; + + /** + * Data structure that given a smt-semparse model returns the answer for a new supplied sentence + */ +class NLParser { + public: + NLParser(string &exp_dir, string &db_dir, string &daemon_adress); + NLParser(string &exp_dir, string &db_dir, SMTSemparseConfig &config_obj, string &daemon_adress); + + parseResult& parse_sentence(string &sentence, NominatimCheck* nom = NULL, string preset_tmp_dir = "", bool geojson = false, bool nom_lookup = false); + preprocessed_sentence& preprocess_sentence(string &sentence); + + private: + string sentence; + string experiment_dir; + string database_dir; + SMTSemparseConfig config; + extractor::Requester requester; + struct preprocessed_sentence ps; + struct parseResult parse_result; +}; + +} // namespace smt_semparse + +#endif diff --git a/smtsemparsecpp/src/parser/parse_nl_file.cc b/smtsemparsecpp/src/parser/parse_nl_file.cc new file mode 100644 index 000000000..bb140e5ce --- /dev/null +++ b/smtsemparsecpp/src/parser/parse_nl_file.cc @@ -0,0 +1,165 @@ +#ifndef PARSE_NL_FILE_CC +#define PARSE_NL_FILE_CC + +#include "parse_nl.h" +#include "smt_semparse_config.h" +#include "../name_lexicon/nominatim_check.h" + +#include +#include +#include + +#include +#include + +using namespace std; + +/*./parse_nl_file \ + -r ipc:///tmp/extract_daemon_2015-11-10T19.44.12.ipc \ + -d /workspace/osm/overpass/db/ \ + -m /workspace/osm/cdec/smtsemparsecpp/work/2015-11-10T19.44.12 \ + -f me \ + -p hyp.question \ + -a hyp.answers \ + -o hyp.latlong \ + -l hyp.mrls*/ +// /workspace/osm/cdec/extractor/extract_daemon -g grammar_daemon/ -c extract.ini -a "ipc:///tmp/extract_daemon_vali.ipc" --tight_phrases 0 +// bin/parse_nl_file -r "ipc:///tmp/extract_daemon_vali.ipc" -d /workspace/osm/overpass/db/ -m /workspace/osm/cdec/smtsemparsecpp/models/mytok_en/ -a answers -l mrls -p question -o latlong -g -f this +// /workspace/osm/cdec/extractor/extract_daemon -g grammar_daemon/ -c extract.ini -a "ipc:///tmp/extract_daemon_en.ipc" --tight_phrases 0 +// bin/parse_nl_file -r "ipc:///tmp/extract_daemon_en.ipc" -d /workspace/osm/overpass/db/ -m /workspace/osm/cdec/smtsemparsecpp/models/mytok_en/ -a answers -l mrls -p question -o latlong -g -f this +//nom request: bin/parse_nl_file -r "ipc:///tmp/extract_daemon_vali.ipc" -d /workspace/osm/overpass/db/ -m /workspace/osm/cdec/smtsemparsecpp/models/mytok_en/ -a answers -l mrls -p question -o latlong -g -n "ipc:///tmp/sa_daemon_test.ipc" -f 3 +//nom true: bin/parse_nl_file -r "ipc:///tmp/extract_daemon_vali.ipc" -d /workspace/osm/overpass/db/ -m /workspace/osm/cdec/smtsemparsecpp/models/mytok_en/ -a answers -l mrls -p question -o latlong -g -n "true" -f this +int main(int argc, char** argv) { + + try { + namespace po = boost::program_options; + po::options_description desc("Options"); + desc.add_options() + ("help", "Print help messages") + ("file,f", po::value()->required(), "Query file's input path") + ("db_dir,d", po::value()->required(), "(Full) database directory path") + ("daemon_adress,r", po::value()->required(), "Grammar daemon's address") + ("nominatim_check,n", po::value()->default_value(""), "Either the adress for the nominatim checker, or if that has been done already, pass true to have it evaluated against nominatim before query execution") + ("model,m", po::value()->required(), "(Full) parser model directory path") + ("print,p", po::value()->default_value(""), "Query file's output path") + ("answer,a", po::value()->required(), "Answer file's output path") + ("latlong,o", po::value()->default_value(""), "Latlong file's output path") + ("mrl,l", po::value()->default_value(""), "mrl file's output path") + ("geojson,g", po::bool_switch()->default_value(false), "output in latlong file should be in geojson format") + ("settings,s", po::value()->default_value(""), "settings path") + ("tmpdir,t", po::value()->default_value(""), "use this (tmp) directory path to write intermediate files to"); + + po::variables_map vm; + try { + po::store(po::parse_command_line(argc, argv, desc), vm); + if(vm.count("help")) { + cout << desc << endl; + return 0; + } + po::notify(vm); + } catch(po::error& e) { + cerr << "ERROR: " << e.what() << endl << endl; + cerr << desc << endl; + return 1; + } + + string db_dir = vm["db_dir"].as(); // /workspace/osm/overpass/db + string model = vm["model"].as(); // /workspace/osm/smt-semparse/work/cdec_train_test/intersect_stem_mert_@_pp.l.w + ifstream nl_file(vm["file"].as()); // /workspace/osm/smt-semparse/data/spoc/baseship.test.en + + if (!nl_file.is_open()){ + cerr << "The following file does not exist" << vm["file"].as() << endl; + exit (EXIT_FAILURE); + } + + ofstream outfile_answer; + outfile_answer.open(vm["answer"].as()); + if(!outfile_answer.is_open()){ + cerr << "The following file cannot be opened for writing" << vm["answer"].as() << endl; + exit (EXIT_FAILURE); + } + + ofstream outfile_mrl; + if(vm["mrl"].as() != ""){ + outfile_mrl.open(vm["mrl"].as()); + if(!outfile_mrl.is_open()){ + cerr << "The following file cannot be opened for writing" << vm["mrl"].as() << endl; + exit (EXIT_FAILURE); + } + } + + ofstream outfile_latlong; + if(vm["latlong"].as() != ""){ + outfile_latlong.open(vm["latlong"].as()); + if(!outfile_latlong.is_open()){ + cerr << "The following file cannot be opened for writing" << vm["latlong"].as() << endl; + exit (EXIT_FAILURE); + } + } + + ofstream outfile_print; + if(vm["print"].as() != ""){ + outfile_print.open(vm["print"].as()); + if(!outfile_print.is_open()){ + cerr << "The following file cannot be opened for writing" << vm["print"].as() << endl; + exit (EXIT_FAILURE); + } + } + + string daemon_adress = vm["daemon_adress"].as(); + smt_semparse::NLParser* parser = NULL; + if(vm["settings"].as()!=""){ + smt_semparse::SMTSemparseConfig config(vm["settings"].as(), model + "/dependencies.yaml", model, false); + parser = new smt_semparse::NLParser(model, db_dir, config, daemon_adress); + } else { + parser = new smt_semparse::NLParser(model, db_dir, daemon_adress); + } + string nl; + string tmp_dir = vm["tmpdir"].as(); + + NominatimCheck* ptr_nom = NULL; + bool nom_lookup = false; + if(vm["nominatim_check"].as()!=""){ + if(vm["nominatim_check"].as()!="true"){ + NominatimCheck nom(vm["nominatim_check"].as().c_str()); + ptr_nom = &nom; + } + nom_lookup = true; + } + + while(getline(nl_file, nl)){ + struct smt_semparse::parseResult parse_result = parser->parse_sentence(nl, ptr_nom, tmp_dir, vm["geojson"].as(), nom_lookup); + if(outfile_print.is_open()){ + outfile_print << parse_result.recover_fun << endl; + } + outfile_answer << parse_result.answer << endl; + if(outfile_mrl.is_open()){ + outfile_mrl << parse_result.mrl << endl; + } + if(outfile_latlong.is_open()){ + outfile_latlong << parse_result.latlong << endl; + } + } + + delete parser; + + outfile_answer.close(); + if(outfile_mrl.is_open()){ + outfile_mrl.close(); + } + if(outfile_print.is_open()){ + outfile_print.close(); + } + if(outfile_latlong.is_open()){ + outfile_latlong.close(); + } + } + catch(exception& e) { + cerr << e.what() << endl; + return 1; + } + + return 0; +} + +#endif diff --git a/smtsemparsecpp/src/parser/porter2_stemmer.cc b/smtsemparsecpp/src/parser/porter2_stemmer.cc new file mode 100644 index 000000000..2929c324b --- /dev/null +++ b/smtsemparsecpp/src/parser/porter2_stemmer.cc @@ -0,0 +1,544 @@ +/** + * @file porter2_stemmer.cpp + * @author Sean Massung + * @date September 2012 + * + * Implementation of + * http://snowball.tartarus.org/algorithms/english/stemmer.html + * + * Copyright (C) 2012 Sean Massung + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + *of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is furnished to + *do + * so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + *all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#include +#include +#include +#include +#include +#include "porter2_stemmer.h" + +using namespace Porter2Stemmer::internal; + +void Porter2Stemmer::stem(std::string& word) +{ + // special case short words or sentence tags + if (word.size() <= 2 || word == "" || word == "") + return; + + // max word length is 35 for English + if (word.size() > 35) + word = word.substr(0, 35); + + if (word[0] == '\'') + word = word.substr(1, word.size() - 1); + + if (special(word)) + return; + + changeY(word); + size_t startR1 = getStartR1(word); + size_t startR2 = getStartR2(word, startR1); + + step0(word); + + if (step1A(word)) + { + std::replace(word.begin(), word.end(), 'Y', 'y'); + return; + } + + step1B(word, startR1); + step1C(word); + step2(word, startR1); + step3(word, startR1, startR2); + step4(word, startR2); + step5(word, startR1, startR2); + + std::replace(word.begin(), word.end(), 'Y', 'y'); + return; +} + +void Porter2Stemmer::trim(std::string& word) +{ + if (word == "" || word == "") + return; + + std::transform(word.begin(), word.end(), word.begin(), ::tolower); + std::remove_if(word.begin(), word.end(), [](char ch) + { + return !((ch >= 'a' && ch <= 'z') || ch == '\''); + }); +} + +size_t Porter2Stemmer::internal::getStartR1(const std::string& word) +{ + // special cases + if (word.size() >= 5 && word[0] == 'g' && word[1] == 'e' && word[2] == 'n' + && word[3] == 'e' && word[4] == 'r') + return 5; + if (word.size() >= 6 && word[0] == 'c' && word[1] == 'o' && word[2] == 'm' + && word[3] == 'm' && word[4] == 'u' && word[5] == 'n') + return 6; + if (word.size() >= 5 && word[0] == 'a' && word[1] == 'r' && word[2] == 's' + && word[3] == 'e' && word[4] == 'n') + return 5; + + // general case + return firstNonVowelAfterVowel(word, 1); +} + +size_t Porter2Stemmer::internal::getStartR2(const std::string& word, + size_t startR1) +{ + if (startR1 == word.size()) + return startR1; + + return firstNonVowelAfterVowel(word, startR1 + 1); +} + +size_t + Porter2Stemmer::internal::firstNonVowelAfterVowel(const std::string& word, + size_t start) +{ + for (size_t i = start; i != 0 && i < word.size(); ++i) + { + if (!isVowelY(word[i]) && isVowelY(word[i - 1])) + return i + 1; + } + + return word.size(); +} + +void Porter2Stemmer::internal::changeY(std::string& word) +{ + if (word[0] == 'y') + word[0] = 'Y'; + + for (size_t i = 1; i < word.size(); ++i) + { + if (word[i] == 'y' && isVowel(word[i - 1])) + word[i++] = 'Y'; // skip next iteration + } +} + +/** + Step 0 +*/ +void Porter2Stemmer::internal::step0(std::string& word) +{ + // short circuit the longest suffix + replaceIfExists(word, "'s'", "", 0) || replaceIfExists(word, "'s", "", 0) + || replaceIfExists(word, "'", "", 0); +} + +/** + Step 1a: + + sses + replace by ss + + ied ies + replace by i if preceded by more than one letter, otherwise by ie + (so ties -> tie, cries -> cri) + + us ss + do nothing + + s + delete if the preceding word part contains a vowel not immediately before + the + s (so gas and this retain the s, gaps and kiwis lose it) +*/ +bool Porter2Stemmer::internal::step1A(std::string& word) +{ + if (!replaceIfExists(word, "sses", "ss", 0)) + { + if (endsWith(word, "ied") || endsWith(word, "ies")) + { + // if preceded by only one letter + if (word.size() <= 4) + word.pop_back(); + else + { + word.pop_back(); + word.pop_back(); + } + } + else if (endsWith(word, "s") && !endsWith(word, "us") + && !endsWith(word, "ss")) + { + if (word.size() > 2 && containsVowel(word, 0, word.size() - 2)) + word.pop_back(); + } + } + + // special case after step 1a + return word == "inning" || word == "outing" || word == "canning" + || word == "herring" || word == "earring" || word == "proceed" + || word == "exceed" || word == "succeed"; +} + +/** + Step 1b: + + eed eedly + replace by ee if in R1 + + ed edly ing ingly + delete if the preceding word part contains a vowel, and after the + deletion: + if the word ends at, bl or iz add e (so luxuriat -> luxuriate), or + if the word ends with a double remove the last letter (so hopp -> hop), or + if the word is short, add e (so hop -> hope) +*/ +void Porter2Stemmer::internal::step1B(std::string& word, size_t startR1) +{ + bool exists = endsWith(word, "eedly") || endsWith(word, "eed"); + + if (exists) // look only in startR1 now + replaceIfExists(word, "eedly", "ee", startR1) + || replaceIfExists(word, "eed", "ee", startR1); + else + { + size_t size = word.size(); + bool deleted = (containsVowel(word, 0, size - 2) + && replaceIfExists(word, "ed", "", 0)) + || (containsVowel(word, 0, size - 4) + && replaceIfExists(word, "edly", "", 0)) + || (containsVowel(word, 0, size - 3) + && replaceIfExists(word, "ing", "", 0)) + || (containsVowel(word, 0, size - 5) + && replaceIfExists(word, "ingly", "", 0)); + + if (deleted && (endsWith(word, "at") || endsWith(word, "bl") + || endsWith(word, "iz"))) + word.push_back('e'); + else if (deleted && endsInDouble(word)) + word.pop_back(); + else if (deleted && startR1 == word.size() && isShort(word)) + word.push_back('e'); + } +} + +/** + Step 1c: + + Replace suffix y or Y by i if preceded by a non-vowel which is not the first + letter of the word (so cry -> cri, by -> by, say -> say) +*/ +void Porter2Stemmer::internal::step1C(std::string& word) +{ + size_t size = word.size(); + if (size > 2 && (word[size - 1] == 'y' || word[size - 1] == 'Y')) + if (!isVowel(word[size - 2])) + word[size - 1] = 'i'; +} + +/** + Step 2: + + If found and in R1, perform the action indicated. + + tional: replace by tion + enci: replace by ence + anci: replace by ance + abli: replace by able + entli: replace by ent + izer, ization: replace by ize + ational, ation, ator: replace by ate + alism, aliti, alli: replace by al + fulness: replace by ful + ousli, ousness: replace by ous + iveness, iviti: replace by ive + biliti, bli: replace by ble + fulli: replace by ful + lessli: replace by less + ogi: replace by og if preceded by l + li: delete if preceded by a valid li-ending +*/ +void Porter2Stemmer::internal::step2(std::string& word, size_t startR1) +{ + static const std::vector> subs + = {{"ational", "ate"}, + {"tional", "tion"}, + {"enci", "ence"}, + {"anci", "ance"}, + {"abli", "able"}, + {"entli", "ent"}, + {"izer", "ize"}, + {"ization", "ize"}, + {"ation", "ate"}, + {"ator", "ate"}, + {"alism", "al"}, + {"aliti", "al"}, + {"alli", "al"}, + {"fulness", "ful"}, + {"ousli", "ous"}, + {"ousness", "ous"}, + {"iveness", "ive"}, + {"iviti", "ive"}, + {"biliti", "ble"}, + {"bli", "ble"}, + {"fulli", "ful"}, + {"lessli", "less"}}; + + for (auto& sub : subs) + if (replaceIfExists(word, sub.first, sub.second, startR1)) + return; + + if (!replaceIfExists(word, "logi", "log", startR1 - 1)) + { + // make sure we choose the longest suffix + if (endsWith(word, "li") && !endsWith(word, "abli") + && !endsWith(word, "entli") && !endsWith(word, "aliti") + && !endsWith(word, "alli") && !endsWith(word, "ousli") + && !endsWith(word, "bli") && !endsWith(word, "fulli") + && !endsWith(word, "lessli")) + if (word.size() > 3 && word.size() - 2 >= startR1 + && isValidLIEnding(word[word.size() - 3])) + { + word.pop_back(); + word.pop_back(); + } + } +} + +/** + Step 3: + + If found and in R1, perform the action indicated. + + ational: replace by ate + tional: replace by tion + alize: replace by al + icate, iciti, ical: replace by ic + ful, ness: delete + ative: delete if in R2 +*/ +void Porter2Stemmer::internal::step3(std::string& word, size_t startR1, + size_t startR2) +{ + static const std::vector> subs + = {{"ational", "ate"}, + {"tional", "tion"}, + {"alize", "al"}, + {"icate", "ic"}, + {"iciti", "ic"}, + {"ical", "ic"}, + {"ful", ""}, + {"ness", ""}}; + + for (auto& sub : subs) + if (replaceIfExists(word, sub.first, sub.second, startR1)) + return; + + replaceIfExists(word, "ative", "", startR2); +} + +/** + Step 4: + + If found and in R2, perform the action indicated. + + al ance ence er ic able ible ant ement ment ent ism ate + iti ous ive ize + delete + ion + delete if preceded by s or t +*/ +void Porter2Stemmer::internal::step4(std::string& word, size_t startR2) +{ + static const std::vector> subs + = {{"al", ""}, + {"ance", ""}, + {"ence", ""}, + {"er", ""}, + {"ic", ""}, + {"able", ""}, + {"ible", ""}, + {"ant", ""}, + {"ement", ""}, + {"ment", ""}, + {"ism", ""}, + {"ate", ""}, + {"iti", ""}, + {"ous", ""}, + {"ive", ""}, + {"ize", ""}}; + + for (auto& sub : subs) + if (replaceIfExists(word, sub.first, sub.second, startR2)) + return; + + // make sure we only choose the longest suffix + if (!endsWith(word, "ement") && !endsWith(word, "ment")) + if (replaceIfExists(word, "ent", "", startR2)) + return; + + // short circuit + replaceIfExists(word, "sion", "s", startR2 - 1) + || replaceIfExists(word, "tion", "t", startR2 - 1); +} + +/** + Step 5: + + e delete if in R2, or in R1 and not preceded by a short syllable + l delete if in R2 and preceded by l +*/ +void Porter2Stemmer::internal::step5(std::string& word, size_t startR1, + size_t startR2) +{ + size_t size = word.size(); + if (word[size - 1] == 'e') + { + if (size - 1 >= startR2) + word.pop_back(); + else if (size - 1 >= startR1 && !isShort(word.substr(0, size - 1))) + word.pop_back(); + } + else if (word[word.size() - 1] == 'l') + { + if (word.size() - 1 >= startR2 && word[word.size() - 2] == 'l') + word.pop_back(); + } +} + +/** + * Determines whether a word ends in a short syllable. + * Define a short syllable in a word as either + * + * (a) a vowel followed by a non-vowel other than w, x or Y and preceded by a + *non-vowel + * (b) a vowel at the beginning of the word followed by a non-vowel. + */ +bool Porter2Stemmer::internal::isShort(const std::string& word) +{ + size_t size = word.size(); + + if (size >= 3) + { + if (!isVowelY(word[size - 3]) && isVowelY(word[size - 2]) + && !isVowelY(word[size - 1]) && word[size - 1] != 'w' + && word[size - 1] != 'x' && word[size - 1] != 'Y') + return true; + } + return size == 2 && isVowelY(word[0]) && !isVowelY(word[1]); +} + +bool Porter2Stemmer::internal::special(std::string& word) +{ + static const std::unordered_map exceptions + = {{"skis", "ski"}, + {"skies", "sky"}, + {"dying", "die"}, + {"lying", "lie"}, + {"tying", "tie"}, + {"idly", "idl"}, + {"gently", "gentl"}, + {"ugly", "ugli"}, + {"early", "earli"}, + {"only", "onli"}, + {"singly", "singl"}}; + + // special cases + auto ex = exceptions.find(word); + if (ex != exceptions.end()) + { + word = ex->second; + return true; + } + + // invariants + return word == "sky" || word == "news" || word == "howe" || word == "atlas" + || word == "cosmos" || word == "bias" || word == "andes"; +} + +bool Porter2Stemmer::internal::isVowelY(char ch) +{ + return ch == 'e' || ch == 'a' || ch == 'i' || ch == 'o' || ch == 'u' + || ch == 'y'; +} + +bool Porter2Stemmer::internal::isVowel(char ch) +{ + return ch == 'e' || ch == 'a' || ch == 'i' || ch == 'o' || ch == 'u'; +} + +bool Porter2Stemmer::internal::endsWith(const std::string& word, + const std::string& str) +{ + return word.size() >= str.size() + && std::equal(word.begin() + (word.size() - str.size()), word.end(), + str.begin()); +} + +bool Porter2Stemmer::internal::endsInDouble(const std::string& word) +{ + if (word.size() >= 2) + { + char a = word[word.size() - 1]; + char b = word[word.size() - 2]; + + if (a == b) + return a == 'b' || a == 'd' || a == 'f' || a == 'g' || a == 'm' + || a == 'n' || a == 'p' || a == 'r' || a == 't'; + } + + return false; +} + +bool Porter2Stemmer::internal::replaceIfExists(std::string& word, + const std::string& suffix, + const std::string& replacement, + size_t start) +{ + size_t idx = word.size() - suffix.size(); + if (idx < start) + return false; + + if (std::equal(word.begin() + idx, word.end(), suffix.begin())) + { + word = word.substr(0, word.size() - suffix.size()) + replacement; + return true; + } + return false; +} + +bool Porter2Stemmer::internal::isValidLIEnding(char ch) +{ + return ch == 'c' || ch == 'd' || ch == 'e' || ch == 'g' || ch == 'h' + || ch == 'k' || ch == 'm' || ch == 'n' || ch == 'r' || ch == 't'; +} + +bool Porter2Stemmer::internal::containsVowel(const std::string& word, + size_t start, size_t end) +{ + if (end <= word.size()) + { + for (size_t i = start; i < end; ++i) + if (isVowelY(word[i])) + return true; + } + return false; +} diff --git a/smtsemparsecpp/src/parser/porter2_stemmer.h b/smtsemparsecpp/src/parser/porter2_stemmer.h new file mode 100644 index 000000000..1c5cf721d --- /dev/null +++ b/smtsemparsecpp/src/parser/porter2_stemmer.h @@ -0,0 +1,89 @@ +/** + * @file porter2_stemmer.h + * @author Sean Massung + * @date September 2012 + * + * Implementation of + * http://snowball.tartarus.org/algorithms/english/stemmer.html + * + * Copyright (C) 2012 Sean Massung + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#ifndef _PORTER2_STEMMER_H_ +#define _PORTER2_STEMMER_H_ + +#include +#include + +namespace Porter2Stemmer +{ +void stem(std::string& word); + +void trim(std::string& word); + +namespace internal +{ +size_t firstNonVowelAfterVowel(const std::string& word, size_t start); + +size_t getStartR1(const std::string& word); + +size_t getStartR2(const std::string& word, size_t startR1); + +void changeY(std::string& word); + +void step0(std::string& word); + +bool step1A(std::string& word); + +void step1B(std::string& word, size_t startR1); + +void step1C(std::string& word); + +void step2(std::string& word, size_t startR1); + +void step3(std::string& word, size_t startR1, size_t startR2); + +void step4(std::string& word, size_t startR2); + +void step5(std::string& word, size_t startR1, size_t startR2); + +inline bool isShort(const std::string& word); + +bool special(std::string& word); + +bool isVowel(char ch); + +bool isVowelY(char ch); + +bool endsWith(const std::string& word, const std::string& str); + +bool endsInDouble(const std::string& word); + +bool replaceIfExists(std::string& word, const std::string& suffix, + const std::string& replacement, size_t start); + +bool isValidLIEnding(char ch); + +bool containsVowel(const std::string& word, size_t start, size_t end); +} +} + +#endif diff --git a/smtsemparsecpp/src/parser/smt_semparse_config.cc b/smtsemparsecpp/src/parser/smt_semparse_config.cc new file mode 100644 index 000000000..9a6917492 --- /dev/null +++ b/smtsemparsecpp/src/parser/smt_semparse_config.cc @@ -0,0 +1,106 @@ +#ifndef SMT_SEMPARSE_CONFIG_CC +#define SMT_SEMPARSE_CONFIG_CC + +#include "smt_semparse_config.h" + +#include +#include +#include +#include + +using namespace std; + +namespace al = boost::algorithm; + +namespace smt_semparse { + SMTSemparseConfig::SMTSemparseConfig(string settings_path, string dependencies_path, string experiment_dir, bool copy){ + if(copy){ + stringstream ss_copy_location_settings; + ss_copy_location_settings << experiment_dir << "/settings.yaml"; + string copy_location_settings = ss_copy_location_settings.str(); + parse_file(settings_path, ©_location_settings); + stringstream ss_copy_location_dep; + ss_copy_location_dep << experiment_dir << "/dependencies.yaml"; + string copy_location_dep = ss_copy_location_dep.str(); + parse_file(dependencies_path, ©_location_dep); + } else { + parse_file(settings_path); + parse_file(dependencies_path); + } + + settings["experiment_dir"] = experiment_dir; + + stringstream data_dir_value; + data_dir_value << detailed_at("smt_semparse") << "/data/"; + settings["data_dir"] = data_dir_value.str(); + + if(detailed_at("np") == "true"){ + settings["train_name"] = "train.np"; + } else { + settings["train_name"] = "train"; + } + + stringstream srilm_ngram_count_value; + srilm_ngram_count_value << detailed_at("srilm") << "/bin/" << detailed_at("srilm_arch") << "/ngram-count"; + settings["srilm_ngram_count"] = srilm_ngram_count_value.str(); + + stringstream moses_train_value; + moses_train_value << detailed_at("moses") << "/scripts/training/train-model.perl"; + settings["moses_train"] = moses_train_value.str(); + + /*for(auto it = settings.begin(); it != settings.end(); ++it){ + cerr << it->first << ": " << it->second << endl; + }*/ + } + + map& SMTSemparseConfig::get_settings(){ + return settings; + } + + //if the ptr_exp_dir is not null the file is additionally written to that location + void SMTSemparseConfig::parse_file(string path, string* ptr_copy_location){ + ifstream is_settings(path.c_str()); + if (!is_settings.is_open()){ + cerr << "The following file does not exist: " << path << endl; + exit (EXIT_FAILURE); + } + string line; + ofstream copy_outfile; + if(ptr_copy_location != NULL){ + copy_outfile.open((*ptr_copy_location)); + if(!copy_outfile.is_open()){ + cerr << "The following file cannot be opened for writing" << (*ptr_copy_location) << endl; + exit (EXIT_FAILURE); + } + } + while(getline(is_settings, line)){ + istringstream is_line(line); + if(ptr_copy_location != NULL){ + copy_outfile << line << endl; + } + string key; + if(getline(is_line, key, ':')){ + string value; + if(getline(is_line, value)){ + settings[key] = al::trim_copy(value.substr(0, value.find("#", 0))); + } + } + } + if(ptr_copy_location != NULL){ + copy_outfile.close(); + } + } + + string SMTSemparseConfig::detailed_at(string key){ + try{ + return settings.at(key); + } catch(std::out_of_range e){ + cerr << "The following key is missing: " << key << endl; + exit (EXIT_FAILURE); + } + } + + +} // namespace smt_semparse + +#endif diff --git a/smtsemparsecpp/src/parser/smt_semparse_config.h b/smtsemparsecpp/src/parser/smt_semparse_config.h new file mode 100644 index 000000000..d5369a5c8 --- /dev/null +++ b/smtsemparsecpp/src/parser/smt_semparse_config.h @@ -0,0 +1,32 @@ +#ifndef SMT_SEMPARSE_CONFIG_H +#define SMT_SEMPARSE_CONFIG_H + +#include +#include + +using namespace std; + +#define ARITY_SEP "@" +#define ARITY_STR "s" + +namespace smt_semparse { + + /** + * Data structure that holds a SMT semparse configuration + */ +class SMTSemparseConfig { + public: + SMTSemparseConfig(string settings_path, string dependencies_path, string experiment_dir, bool copy = false); + void parse_file(string path, string* ptr_copy_location = NULL); + string detailed_at(string key); + + map& get_settings(); + void set_settings(string &key, string &value); + + private: + map settings; +}; + +} // namespace smt_semparse + +#endif diff --git a/smtsemparsecpp/src/parser/train_model.cc b/smtsemparsecpp/src/parser/train_model.cc new file mode 100644 index 000000000..b45b257f6 --- /dev/null +++ b/smtsemparsecpp/src/parser/train_model.cc @@ -0,0 +1,318 @@ +#include +#include +#include +#include "boost/program_options.hpp" +#include +#include +#include +#include + +#include "smt_semparse_config.h" +#include "functionalizer.cc" +#include "extractor.cc" +#include "external_command.cc" + +using namespace std; +using namespace smt_semparse; + +// ./train_model -s settings.yaml -d dependencies.yaml -r work -y intersect + +void run_test(string input, string mrl_out, string answer_out, NLParser& parser){ + + ifstream nl_file(input); + if (!nl_file.is_open()){ + cerr << "The following file could not be opened" << input << endl; + exit (EXIT_FAILURE); + } + + ofstream outfile_mrl; + outfile_mrl.open(mrl_out); + if(!outfile_mrl.is_open()){ + cerr << "The following file cannot be opened for writing" << mrl_out << endl; + exit (EXIT_FAILURE); + } + + ofstream outfile_answer; + outfile_answer.open(answer_out); + if(!outfile_answer.is_open()){ + cerr << "The following file cannot be opened for writing" << answer_out << endl; + exit (EXIT_FAILURE); + } + + string nl; + struct smt_semparse::parseResult parse_result; + while(getline(nl_file, nl)){ + parse_result = parser.parse_sentence(nl); + outfile_answer << parse_result.answer << endl; + if(outfile_mrl.is_open()){ + outfile_mrl << parse_result.mrl << endl; + } + } + + outfile_answer.close(); + outfile_mrl.close(); +} + +int main(int argc, char** argv) { + + try { + namespace po = boost::program_options; + po::options_description desc("Options"); + desc.add_options() + ("help", "Print help messages") + ("settings,s", po::value()->required(), "settings path") + ("dep,d", po::value()->required(), "dependency path") + ("symm,y", po::value()->required(), "symmetry of alignment") + ("dir,r", po::value()->required(), "The directory where the model will be written"); + + po::variables_map vm; + try { + po::store(po::parse_command_line(argc, argv, desc), vm); + if(vm.count("help")) { + cout << desc << endl; + return 0; + } + po::notify(vm); + } catch(po::error& e) { + cerr << "ERROR: " << e.what() << endl << endl; + cerr << desc << endl; + return 1; + } + + // set up settings + string original_working_directory = boost::filesystem::current_path().string(); + + string exp_dir = vm["dir"].as(); + SMTSemparseConfig config(vm["settings"].as(), vm["dep"].as(), exp_dir, true); + + // train LM + cerr << "Train LM" << endl; + string srilm_exec = config.detailed_at("srilm_ngram_count"); + stringstream ss_text; + ss_text << config.detailed_at("experiment_dir") << "/train.mrl.lm"; + stringstream ss_lm; + ss_lm << config.detailed_at("experiment_dir") << "/mrl.arpa"; + string input_lm = ss_text.str(); + const char *lm_argv[64] = + {srilm_exec.c_str(), "-text", input_lm.c_str(), + "-order", "5", + "-no-sos", + "-no-eos", + "-lm", ss_lm.str().c_str(), + "-unk", NULL}; + if(0 != exec_prog(lm_argv)){ + cerr << "Something went wrong during LM creation..exiting" << endl; + return 1; + } + + //write cdec_tune.ini + stringstream ss_cdec_tune_path; + ss_cdec_tune_path << config.detailed_at("experiment_dir") << "/cdec_tune.ini"; + string cdec_tune_path = ss_cdec_tune_path.str(); + ofstream cdec_tune_out; + cdec_tune_out.open(cdec_tune_path); + if(!cdec_tune_out.is_open()){ + cerr << "The following file cannot be opened for writing" << cdec_tune_path << endl; + return 1; + } + cdec_tune_out << "formalism=scfg" << endl + << "intersection_strategy=cube_pruning" << endl + << "cubepruning_pop_limit=200" << endl + << "add_pass_through_rules=true" << endl + << "scfg_max_span_limit=20" << endl + << "feature_function=KLanguageModel " << config.detailed_at("experiment_dir") << "/mrl.arpa" << endl + << "feature_function=WordPenalty" << endl + << "density_prune=100" << endl; + if(config.detailed_at("weights").find("mira") != std::string::npos){//TODO test + cdec_tune_out << "feature_function=RuleIdentityFeatures" << endl + << "feature_function=RuleSourceBigramFeatures" << endl + << "feature_function=RuleTargetBigramFeatures" << endl + << "feature_function=RuleShape" << endl; + } + cdec_tune_out.close(); + + //write cdec_test.ini + stringstream ss_cdec_test_path; + ss_cdec_test_path << config.detailed_at("experiment_dir") << "/cdec_test.ini"; + string cdec_test_path = ss_cdec_test_path.str(); + ofstream cdec_test_out; + cdec_test_out.open(cdec_test_path); + if(!cdec_test_out.is_open()){ + cerr << "The following file cannot be opened for writing" << cdec_test_path << endl; + return 1; + } + cdec_test_out << "formalism=scfg" << endl + << "intersection_strategy=cube_pruning" << endl + << "cubepruning_pop_limit=200" << endl + << "add_pass_through_rules=true" << endl + << "scfg_max_span_limit=20" << endl + << "feature_function=KLanguageModel " << config.detailed_at("experiment_dir") << "/mrl.arpa" << endl + << "feature_function=WordPenalty" << endl; + if(config.detailed_at("weights").find("mira") != std::string::npos){//TODO test + cdec_test_out << "feature_function=RuleIdentityFeatures" << endl + << "feature_function=RuleSourceBigramFeatures" << endl + << "feature_function=RuleTargetBigramFeatures" << endl + << "feature_function=RuleShape" << endl; + } + cdec_test_out.close(); + + //write weights.start + stringstream ss_weights_start_path; + ss_weights_start_path << config.detailed_at("experiment_dir") << "/weights.start"; + string weights_start_path = ss_weights_start_path.str(); + ofstream weights_start_out; + weights_start_out.open(weights_start_path); + if(!weights_start_out.is_open()){ + cerr << "The following file cannot be opened for writing" << weights_start_path << endl; + return 1; + } + weights_start_out << "CountEF 0.1" << endl + << "EgivenFCoherent -0.1" << endl + << "Glue 0.01" << endl + << "IsSingletonF -0.01" << endl + << "IsSingletonFE -0.01" << endl + << "LanguageModel 0.1" << endl + << "LanguageModel_OOV -1" << endl + << "MaxLexFgivenE -0.1" << endl + << "MaxLexEgivenF -0.1" << endl + << "PassThrough -0.1" << endl + << "SampleCountF -0.1" << endl + << "WordPenalty -0.1" << endl; + + weights_start_out.close(); + + //write cdec_validate.ini + stringstream ss_cdec_validate_path; + ss_cdec_validate_path << config.detailed_at("experiment_dir") << "/cdec_validate.ini"; + string cdec_validate_path = ss_cdec_validate_path.str(); + ofstream cdec_validate_out; + cdec_validate_out.open(cdec_validate_path); + if(!cdec_validate_out.is_open()){ + cerr << "The following file cannot be opened for writing" << cdec_validate_path << endl; + return 1; + } + cdec_validate_out << "formalism=scfg" << endl + << "intersection_strategy=cube_pruning" << endl + << "cubepruning_pop_limit=200" << endl + << "scfg_max_span_limit=20" << endl; + cdec_validate_out.close(); + + // tune + cerr << "Tune: "; + string weights_output = ""; + stringstream ss_weights_path; + ss_weights_path << config.detailed_at("workdir") << "/" << config.detailed_at("weights"); + string weights = ss_weights_path.str(); + if(config.detailed_at("weights") == "mert"){ + //need to cd to experiment_dir for mert + cerr << "using mert" << endl; + if(chdir(config.detailed_at("experiment_dir").c_str()) != 0){ + cerr << "Couldn't change directory for MERT" << endl; + return 1; + } + //paste files + stringstream ss_mert_paste; + ss_mert_paste << config.detailed_at("cdec") << "/corpus/paste-files.pl"; + stringstream ss_tune_inline; + ss_tune_inline << config.detailed_at("experiment_dir") << "/tune.inline.nl"; + string tune_inline= ss_tune_inline.str(); + stringstream ss_tune_mrl; + ss_tune_mrl << config.detailed_at("experiment_dir") << "/tune.mrl"; + string tune_mrl= ss_tune_mrl.str(); + stringstream ss_tune_mert_file; + ss_tune_mert_file << config.detailed_at("experiment_dir") << "/tune.mert"; + string tune_mert_file= ss_tune_mert_file.str(); + const char *mert_paste[64] = + {ss_mert_paste.str().c_str(), + tune_inline.c_str(), + tune_mrl.c_str(), + NULL}; + if(0 != exec_prog(mert_paste, &tune_mert_file)){ + cerr << "Something went wrong during the pasting of files for MERT..exiting" << endl; + return 1; + } + + //run mert + stringstream ss_run_mert; + ss_run_mert << config.detailed_at("cdec") << "/training/dpmert/dpmert.pl"; + const char *mert_args[64] = + {ss_run_mert.str().c_str(), + "-w", weights_start_path.c_str(), + "-c", cdec_tune_path.c_str(), + "-d", tune_mert_file.c_str(), + NULL}; + if(0 != exec_prog(mert_args)){ + cerr << "Something went wrong during MERT..exiting" << endl; + return 1; + } + + if(chdir(original_working_directory.c_str()) != 0){ + cerr << "Couldn't revert to original directory after MERT" << endl; + return 1; + } + } else if(config.detailed_at("weights") == "mira"){ + cerr << "using mira" << endl; + if(chdir(config.detailed_at("experiment_dir").c_str()) != 0){ + cerr << "Couldn't change directory for MIRA" << endl; + return 1; + } + stringstream ss_run_mira; + ss_run_mira << config.detailed_at("cdec") << "/training/mira/kbest_mira"; + stringstream ss_tune_inline; + ss_tune_inline << config.detailed_at("experiment_dir") << "/tune.inline.nl"; + string tune_inline= ss_tune_inline.str(); + stringstream ss_tune_mrl; + ss_tune_mrl << config.detailed_at("experiment_dir") << "/tune.mrl"; + string tune_mrl= ss_tune_mrl.str(); + const char *mira_args[64] = + {ss_run_mira.str().c_str(), + "-w", weights_start_path.c_str(), + "-c", cdec_tune_path.c_str(), + "-i", tune_inline.c_str(), + "-r", tune_mrl.c_str(), + NULL}; + if(0 != exec_prog(mira_args)){ + cerr << "Something went wrong during MIRA..exiting" << endl; + return 1; + } + + if(chdir(original_working_directory.c_str()) != 0){ + cerr << "Couldn't revert to original directory after MIRA" << endl; + return 1; + } + } else{ + cerr << "skipped. Copying weights: " << weights << endl; + boost::filesystem::path src_path = weights; + string filename = src_path.filename().string(); + stringstream ss_weights_output; + ss_weights_output << config.detailed_at("experiment_dir") << "/" << filename; + weights_output = ss_weights_output.str(); + ifstream is_weights(weights.c_str()); + if (!is_weights.is_open()){ + cerr << "The following file cannot be opened: " << weights << endl; + return 1; + } + string line; + ofstream copy_weights; + copy_weights.open(weights_output); + if(!copy_weights.is_open()){ + cerr << "The following file cannot be opened for writing" << weights_output << endl; + return 1; + } + while(getline(is_weights, line)){ + copy_weights << line << endl; + } + copy_weights.close(); + } + + cerr << "Training complete" << endl; + cerr << "-----------------" << endl; + + } + catch(exception& e) { + cerr << e.what() << endl; + return 1; + } + + return 0; +} diff --git a/smtsemparsecpp/src/spell/run_spell_check.cc b/smtsemparsecpp/src/spell/run_spell_check.cc new file mode 100644 index 000000000..aee97132c --- /dev/null +++ b/smtsemparsecpp/src/spell/run_spell_check.cc @@ -0,0 +1,55 @@ +#ifndef RUN_SPELL_CHECK_CC +#define RUN_SPELL_CHECK_CC + +#include "spell_checker.cc" + +#include + +#include +#include + +int main(int argc, char** argv) { + + try { + namespace po = boost::program_options; + po::options_description desc("Options"); + desc.add_options() + ("help", "Print help messages") + ("stringcheck,s", po::value()->required(), "The string to be checked"); + + po::variables_map vm; + try { + po::store(po::parse_command_line(argc, argv, desc), vm); + if(vm.count("help")) { + cout << desc << endl; + return 0; + } + po::notify(vm); + } catch(po::error& e) { + cerr << "ERROR: " << e.what() << endl << endl; + cerr << desc << endl; + return 1; + } + + string check_this = vm["stringcheck"].as(); + boost::replace_all(check_this, "?", ""); + boost::replace_all(check_this, "!", ""); + boost::replace_all(check_this, ".", ""); + boost::replace_all(check_this, ";", ""); + vector words; + boost::split(words, check_this, boost::is_any_of(" ")); + bool identical = 1; + string spell_checked = correct_file(words); + if(spell_checked != check_this){ identical = 0; } + cout << identical << "{{splitter}}" << spell_checked << endl; + + } + catch(exception& e) { + cerr << e.what() << endl; + return 1; + } + + return 0; +} + +#endif diff --git a/smtsemparsecpp/src/spell/spell_checker.cc b/smtsemparsecpp/src/spell/spell_checker.cc new file mode 100644 index 000000000..a0f1d01c5 --- /dev/null +++ b/smtsemparsecpp/src/spell/spell_checker.cc @@ -0,0 +1,51 @@ +#ifndef SPELL_CHECKER_CC +#define SPELL_CHECKER_CC + +#include +#include +#include +#include +#include +#include +#include + +#include "hunspell/hunspell.hxx" + +using namespace std; + +static string correct_file(vector& words){ + int dp; + char* buf; + stringstream new_sentence; + bool first = true; + + Hunspell* pMS = new Hunspell("/usr/share/hunspell/en_US.aff", + "/usr/share/hunspell/en_US.dic"); + + for(auto it = words.begin(); it != words.end(); ++it){ + buf = strdup((*it).c_str()); + if(!first){ new_sentence << " "; } + if((*it) == "?" || (*it) == "." || (*it) == ";" || (*it) == "," || (*it) == "!" || (*it) == "'" || (*it) == "-"){ //don't spell check special characters + new_sentence << (*it); + continue; + } + dp = pMS->spell(buf); + if (dp) { + new_sentence << string(buf); + } else { + char** wlst; + int ns = pMS->suggest(&wlst, buf); + for (int i = 0; i < ns; i++) { + new_sentence << string(wlst[i]); + break; + } + pMS->free_list(&wlst, ns); + } + first = false; + } + + delete pMS; + return new_sentence.str(); +} + +#endif